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

51696 строки
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. if (value.extraAttributes) {
  54. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  55. views[key].attributes[attrKey] = attrValue
  56. })
  57. }
  58. });
  59. return createEntityMaker(info, views, defaultSizes, forms);
  60. }
  61. const speciesData = {
  62. animal: {
  63. name: "Animal"
  64. },
  65. dog: {
  66. name: "Dog",
  67. parents: [
  68. "canine"
  69. ]
  70. },
  71. canine: {
  72. name: "Canine",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. crux: {
  78. name: "Crux",
  79. parents: [
  80. "mammal"
  81. ]
  82. },
  83. mammal: {
  84. name: "Mammal",
  85. parents: [
  86. "animal"
  87. ]
  88. },
  89. "rough-collie": {
  90. name: "Rough Collie",
  91. parents: [
  92. "dog"
  93. ]
  94. },
  95. dragon: {
  96. name: "Dragon",
  97. parents: [
  98. "reptile"
  99. ]
  100. },
  101. reptile: {
  102. name: "Reptile",
  103. parents: [
  104. "animal"
  105. ]
  106. },
  107. woodpecker: {
  108. name: "Woodpecker",
  109. parents: [
  110. "avian"
  111. ]
  112. },
  113. avian: {
  114. name: "Avian",
  115. parents: [
  116. "animal"
  117. ]
  118. },
  119. kitsune: {
  120. name: "Kitsune",
  121. parents: [
  122. "fox"
  123. ]
  124. },
  125. fox: {
  126. name: "Fox",
  127. parents: [
  128. "mammal"
  129. ]
  130. },
  131. pokemon: {
  132. name: "Pokemon",
  133. },
  134. tiger: {
  135. name: "Tiger",
  136. parents: [
  137. "cat"
  138. ]
  139. },
  140. cat: {
  141. name: "Cat",
  142. parents: [
  143. "feliform"
  144. ]
  145. },
  146. "blue-jay": {
  147. name: "Blue Jay",
  148. parents: [
  149. "avian"
  150. ]
  151. },
  152. wolf: {
  153. name: "Wolf",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. coyote: {
  159. name: "Coyote",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. raccoon: {
  165. name: "Raccoon",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. weasel: {
  171. name: "Weasel",
  172. parents: [
  173. "mustelid"
  174. ]
  175. },
  176. "red-panda": {
  177. name: "Red Panda",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. dolphin: {
  183. name: "Dolphin",
  184. parents: [
  185. "mammal"
  186. ]
  187. },
  188. "african-wild-dog": {
  189. name: "African Wild Dog",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "hyena": {
  195. name: "Hyena",
  196. parents: [
  197. "feliform"
  198. ]
  199. },
  200. "carbuncle": {
  201. name: "Carbuncle",
  202. parents: [
  203. "animal"
  204. ]
  205. },
  206. bat: {
  207. name: "Bat",
  208. parents: [
  209. "mammal"
  210. ]
  211. },
  212. "leaf-nosed-bat": {
  213. name: "Leaf-Nosed Bat",
  214. parents: [
  215. "bat"
  216. ]
  217. },
  218. "fish": {
  219. name: "Fish",
  220. parents: [
  221. "animal"
  222. ]
  223. },
  224. "ram": {
  225. name: "Ram",
  226. parents: [
  227. "mammal"
  228. ]
  229. },
  230. "demon": {
  231. name: "Demon",
  232. parents: [
  233. "supernatural"
  234. ]
  235. },
  236. "cougar": {
  237. name: "Cougar",
  238. parents: [
  239. "cat"
  240. ]
  241. },
  242. "goat": {
  243. name: "Goat",
  244. parents: [
  245. "mammal"
  246. ]
  247. },
  248. "lion": {
  249. name: "Lion",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "harpy-eager": {
  255. name: "Harpy Eagle",
  256. parents: [
  257. "avian"
  258. ]
  259. },
  260. "deer": {
  261. name: "Deer",
  262. parents: [
  263. "mammal"
  264. ]
  265. },
  266. "phoenix": {
  267. name: "Phoenix",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "aeromorph": {
  273. name: "Aeromorph",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "machine": {
  279. name: "Machine",
  280. },
  281. "android": {
  282. name: "Android",
  283. parents: [
  284. "machine"
  285. ]
  286. },
  287. "jackal": {
  288. name: "Jackal",
  289. parents: [
  290. "canine"
  291. ]
  292. },
  293. "corvid": {
  294. name: "Corvid",
  295. parents: [
  296. "avian"
  297. ]
  298. },
  299. "pharaoh-hound": {
  300. name: "Pharaoh Hound",
  301. parents: [
  302. "dog"
  303. ]
  304. },
  305. "skunk": {
  306. name: "Skunk",
  307. parents: [
  308. "mammal"
  309. ]
  310. },
  311. "shark": {
  312. name: "Shark",
  313. parents: [
  314. "fish"
  315. ]
  316. },
  317. "black-panther": {
  318. name: "Black Panther",
  319. parents: [
  320. "cat"
  321. ]
  322. },
  323. "umbra": {
  324. name: "Umbra",
  325. parents: [
  326. "animal"
  327. ]
  328. },
  329. "raven": {
  330. name: "Raven",
  331. parents: [
  332. "corvid"
  333. ]
  334. },
  335. "snow-leopard": {
  336. name: "Snow Leopard",
  337. parents: [
  338. "cat"
  339. ]
  340. },
  341. "barbary-lion": {
  342. name: "Barbary Lion",
  343. parents: [
  344. "lion"
  345. ]
  346. },
  347. "dra'gal": {
  348. name: "Dra'Gal",
  349. parents: [
  350. "mammal"
  351. ]
  352. },
  353. "german-shepherd": {
  354. name: "German Shepherd",
  355. parents: [
  356. "dog"
  357. ]
  358. },
  359. "bayleef": {
  360. name: "Bayleef",
  361. parents: [
  362. "pokemon",
  363. "plant",
  364. "animal"
  365. ]
  366. },
  367. "mouse": {
  368. name: "Mouse",
  369. parents: [
  370. "rodent"
  371. ]
  372. },
  373. "rat": {
  374. name: "Rat",
  375. parents: [
  376. "mammal"
  377. ]
  378. },
  379. "hoshiko-beast": {
  380. name: "Hoshiko Beast",
  381. parents: ["animal"]
  382. },
  383. "snow-jugani": {
  384. name: "Snow Jugani",
  385. parents: ["cat"]
  386. },
  387. "patamon": {
  388. name: "Patamon",
  389. parents: ["digimon", "guinea-pig"]
  390. },
  391. "digimon": {
  392. name: "Digimon",
  393. },
  394. "jugani": {
  395. name: "Jugani",
  396. parents: ["cat"]
  397. },
  398. "luxray": {
  399. name: "Luxray",
  400. parents: ["pokemon", "lion"]
  401. },
  402. "mech": {
  403. name: "Mech",
  404. parents: ["machine"]
  405. },
  406. "zoid": {
  407. name: "Zoid",
  408. parents: ["mech"]
  409. },
  410. "monster": {
  411. name: "Monster",
  412. parents: ["animal"]
  413. },
  414. "foo-dog": {
  415. name: "Foo Dog",
  416. parents: ["mammal"]
  417. },
  418. "elephant": {
  419. name: "Elephant",
  420. parents: ["mammal"]
  421. },
  422. "eagle": {
  423. name: "Eagle",
  424. parents: ["avian"]
  425. },
  426. "cow": {
  427. name: "Cow",
  428. parents: ["mammal"]
  429. },
  430. "crocodile": {
  431. name: "Crocodile",
  432. parents: ["reptile"]
  433. },
  434. "borzoi": {
  435. name: "Borzoi",
  436. parents: ["dog"]
  437. },
  438. "snake": {
  439. name: "Snake",
  440. parents: ["reptile"]
  441. },
  442. "horned-bush-viper": {
  443. name: "Horned Bush Viper",
  444. parents: ["viper"]
  445. },
  446. "cobra": {
  447. name: "Cobra",
  448. parents: ["snake"]
  449. },
  450. "harpy-eagle": {
  451. name: "Harpy Eagle",
  452. parents: ["eagle"]
  453. },
  454. "raptor": {
  455. name: "Raptor",
  456. parents: ["dinosaur"]
  457. },
  458. "dinosaur": {
  459. name: "Dinosaur",
  460. parents: ["reptile"]
  461. },
  462. "veilhound": {
  463. name: "Veilhound",
  464. parents: ["hellhound"]
  465. },
  466. "hellhound": {
  467. name: "Hellhound",
  468. parents: ["canine", "demon"]
  469. },
  470. "insect": {
  471. name: "Insect",
  472. parents: ["animal"]
  473. },
  474. "beetle": {
  475. name: "Beetle",
  476. parents: ["insect"]
  477. },
  478. "moth": {
  479. name: "Moth",
  480. parents: ["insect"]
  481. },
  482. "eastern-dragon": {
  483. name: "Eastern Dragon",
  484. parents: ["dragon"]
  485. },
  486. "jaguar": {
  487. name: "Jaguar",
  488. parents: ["cat"]
  489. },
  490. "horse": {
  491. name: "Horse",
  492. parents: ["mammal"]
  493. },
  494. "sergal": {
  495. name: "Sergal",
  496. parents: ["mammal", "avian", "vilous"]
  497. },
  498. "gryphon": {
  499. name: "Gryphon",
  500. parents: ["lion", "eagle"]
  501. },
  502. "robot": {
  503. name: "Robot",
  504. parents: ["machine"]
  505. },
  506. "medihound": {
  507. name: "Medihound",
  508. parents: ["robot", "dog"]
  509. },
  510. "sylveon": {
  511. name: "Sylveon",
  512. parents: ["pokemon"]
  513. },
  514. "catgirl": {
  515. name: "Catgirl",
  516. parents: ["mammal"]
  517. },
  518. "cowgirl": {
  519. name: "Cowgirl",
  520. parents: ["mammal"]
  521. },
  522. "pony": {
  523. name: "Pony",
  524. parents: ["horse"]
  525. },
  526. "rabbit": {
  527. name: "Rabbit",
  528. parents: ["leporidae"]
  529. },
  530. "fennec-fox": {
  531. name: "Fennec Fox",
  532. parents: ["fox"]
  533. },
  534. "azodian": {
  535. name: "Azodian",
  536. parents: ["mouse"]
  537. },
  538. "shiba-inu": {
  539. name: "Shiba Inu",
  540. parents: ["dog"]
  541. },
  542. "changeling": {
  543. name: "Changeling",
  544. parents: ["insect"]
  545. },
  546. "cheetah": {
  547. name: "Cheetah",
  548. parents: ["cat"]
  549. },
  550. "golden-jackal": {
  551. name: "Golden Jackal",
  552. parents: ["jackal"]
  553. },
  554. "manectric": {
  555. name: "Manectric",
  556. parents: ["pokemon", "wolf"]
  557. },
  558. "rat": {
  559. name: "Rat",
  560. parents: ["rodent"]
  561. },
  562. "rodent": {
  563. name: "Rodent",
  564. parents: ["mammal"]
  565. },
  566. "octocoon": {
  567. name: "Octocoon",
  568. parents: ["raccoon", "octopus"]
  569. },
  570. "octopus": {
  571. name: "Octopus",
  572. parents: ["fish"]
  573. },
  574. "werewolf": {
  575. name: "Werewolf",
  576. parents: ["wolf", "werebeast"]
  577. },
  578. "werebeast": {
  579. name: "Werebeast",
  580. parents: ["monster"]
  581. },
  582. "meerkat": {
  583. name: "Meerkat",
  584. parents: ["mammal"]
  585. },
  586. "human": {
  587. name: "Human",
  588. parents: ["mammal"]
  589. },
  590. "geth": {
  591. name: "Geth",
  592. parents: ["android"]
  593. },
  594. "husky": {
  595. name: "Husky",
  596. parents: ["dog"]
  597. },
  598. "long-eared-bat": {
  599. name: "Long Eared Bat",
  600. parents: ["bat"]
  601. },
  602. "lizard": {
  603. name: "Lizard",
  604. parents: ["reptile"]
  605. },
  606. "salamander": {
  607. name: "Salamander",
  608. parents: ["lizard"]
  609. },
  610. "chameleon": {
  611. name: "Chameleon",
  612. parents: ["lizard"]
  613. },
  614. "gecko": {
  615. name: "Gecko",
  616. parents: ["lizard"]
  617. },
  618. "kobold": {
  619. name: "Kobold",
  620. parents: ["reptile"]
  621. },
  622. "charizard": {
  623. name: "Charizard",
  624. parents: ["pokemon", "dragon"]
  625. },
  626. "lugia": {
  627. name: "Lugia",
  628. parents: ["pokemon", "avian"]
  629. },
  630. "cerberus": {
  631. name: "Cerberus",
  632. parents: ["dog"]
  633. },
  634. "tyrantrum": {
  635. name: "Tyrantrum",
  636. parents: ["pokemon"]
  637. },
  638. "lemur": {
  639. name: "Lemur",
  640. parents: ["mammal"]
  641. },
  642. "kelpie": {
  643. name: "Kelpie",
  644. parents: ["horse", "monster"]
  645. },
  646. "labrador": {
  647. name: "Labrador",
  648. parents: ["dog"]
  649. },
  650. "sylveon": {
  651. name: "Sylveon",
  652. parents: ["eeveelution"]
  653. },
  654. "eeveelution": {
  655. name: "Eeveelution",
  656. parents: ["pokemon", "cat"]
  657. },
  658. "polar-bear": {
  659. name: "Polar Bear",
  660. parents: ["bear"]
  661. },
  662. "bear": {
  663. name: "Bear",
  664. parents: ["mammal"]
  665. },
  666. "absol": {
  667. name: "Absol",
  668. parents: ["pokemon", "cat"]
  669. },
  670. "wolver": {
  671. name: "Wolver",
  672. parents: ["mammal"]
  673. },
  674. "rottweiler": {
  675. name: "Rottweiler",
  676. parents: ["dog"]
  677. },
  678. "zebra": {
  679. name: "Zebra",
  680. parents: ["horse"]
  681. },
  682. "yoshi": {
  683. name: "Yoshi",
  684. parents: ["lizard"]
  685. },
  686. "lynx": {
  687. name: "Lynx",
  688. parents: ["cat"]
  689. },
  690. "unknown": {
  691. name: "Unknown",
  692. parents: []
  693. },
  694. "thylacine": {
  695. name: "Thylacine",
  696. parents: ["mammal"]
  697. },
  698. "gabumon": {
  699. name: "Gabumon",
  700. parents: ["digimon"]
  701. },
  702. "border-collie": {
  703. name: "Border Collie",
  704. parents: ["dog"]
  705. },
  706. "imp": {
  707. name: "Imp",
  708. parents: ["demon"]
  709. },
  710. "kangaroo": {
  711. name: "Kangaroo",
  712. parents: ["marsupial"]
  713. },
  714. "renamon": {
  715. name: "Renamon",
  716. parents: ["digimon", "fox"]
  717. },
  718. "candy-orca-dragon": {
  719. name: "Candy Orca Dragon",
  720. parents: ["fish", "dragon", "candy"]
  721. },
  722. "sabertooth-tiger": {
  723. name: "Sabertooth Tiger",
  724. parents: ["cat"]
  725. },
  726. "espurr": {
  727. name: "Espurr",
  728. parents: ["pokemon", "cat"]
  729. },
  730. "otter": {
  731. name: "Otter",
  732. parents: ["mustelid"]
  733. },
  734. "elemental": {
  735. name: "Elemental",
  736. parents: ["mammal"]
  737. },
  738. "mew": {
  739. name: "Mew",
  740. parents: ["pokemon"]
  741. },
  742. "goodra": {
  743. name: "Goodra",
  744. parents: ["pokemon"]
  745. },
  746. "fairy": {
  747. name: "Fairy",
  748. parents: ["magical"]
  749. },
  750. "typhlosion": {
  751. name: "Typhlosion",
  752. parents: ["pokemon"]
  753. },
  754. "magical": {
  755. name: "Magical",
  756. parents: []
  757. },
  758. "xenomorph": {
  759. name: "Xenomorph",
  760. parents: ["monster", "alien"]
  761. },
  762. "charr": {
  763. name: "Charr",
  764. parents: ["cat"]
  765. },
  766. "siberian-husky": {
  767. name: "Siberian Husky",
  768. parents: ["husky"]
  769. },
  770. "alligator": {
  771. name: "Alligator",
  772. parents: ["reptile"]
  773. },
  774. "bernese-mountain-dog": {
  775. name: "Bernese Mountain Dog",
  776. parents: ["dog"]
  777. },
  778. "reshiram": {
  779. name: "Reshiram",
  780. parents: ["pokemon", "dragon"]
  781. },
  782. "grizzly-bear": {
  783. name: "Grizzly Bear",
  784. parents: ["bear"]
  785. },
  786. "water-monitor": {
  787. name: "Water Monitor",
  788. parents: ["lizard"]
  789. },
  790. "banchofossa": {
  791. name: "Banchofossa",
  792. parents: ["mammal"]
  793. },
  794. "kirin": {
  795. name: "Kirin",
  796. parents: ["monster"]
  797. },
  798. "quilava": {
  799. name: "Quilava",
  800. parents: ["pokemon"]
  801. },
  802. "seviper": {
  803. name: "Seviper",
  804. parents: ["pokemon", "viper"]
  805. },
  806. "flying-fox": {
  807. name: "Flying Fox",
  808. parents: ["bat"]
  809. },
  810. "keynain": {
  811. name: "Keynain",
  812. parents: ["avian"]
  813. },
  814. "lucario": {
  815. name: "Lucario",
  816. parents: ["pokemon", "jackal"]
  817. },
  818. "siamese-cat": {
  819. name: "Siamese Cat",
  820. parents: ["cat"]
  821. },
  822. "spider": {
  823. name: "Spider",
  824. parents: ["insect"]
  825. },
  826. "samurott": {
  827. name: "Samurott",
  828. parents: ["pokemon", "otter"]
  829. },
  830. "megalodon": {
  831. name: "Megalodon",
  832. parents: ["shark"]
  833. },
  834. "unicorn": {
  835. name: "Unicorn",
  836. parents: ["horse"]
  837. },
  838. "greninja": {
  839. name: "Greninja",
  840. parents: ["pokemon", "frog"]
  841. },
  842. "water-dragon": {
  843. name: "Water Dragon",
  844. parents: ["dragon"]
  845. },
  846. "cross-fox": {
  847. name: "Cross Fox",
  848. parents: ["fox"]
  849. },
  850. "synth": {
  851. name: "Synth",
  852. parents: ["machine"]
  853. },
  854. "construct": {
  855. name: "Construct",
  856. parents: []
  857. },
  858. "mexican-wolf": {
  859. name: "Mexican Wolf",
  860. parents: ["wolf"]
  861. },
  862. "leopard": {
  863. name: "Leopard",
  864. parents: ["cat"]
  865. },
  866. "pig": {
  867. name: "Pig",
  868. parents: ["mammal"]
  869. },
  870. "ampharos": {
  871. name: "Ampharos",
  872. parents: ["pokemon", "sheep"]
  873. },
  874. "orca": {
  875. name: "Orca",
  876. parents: ["fish"]
  877. },
  878. "lycanroc": {
  879. name: "Lycanroc",
  880. parents: ["pokemon", "wolf"]
  881. },
  882. "surkanu": {
  883. name: "Surkanu",
  884. parents: ["monster"]
  885. },
  886. "seal": {
  887. name: "Seal",
  888. parents: ["mammal"]
  889. },
  890. "keldeo": {
  891. name: "Keldeo",
  892. parents: ["pokemon"]
  893. },
  894. "great-dane": {
  895. name: "Great Dane",
  896. parents: ["dog"]
  897. },
  898. "black-backed-jackal": {
  899. name: "Black Backed Jackal",
  900. parents: ["jackal"]
  901. },
  902. "sheep": {
  903. name: "Sheep",
  904. parents: ["mammal"]
  905. },
  906. "leopard-seal": {
  907. name: "Leopard Seal",
  908. parents: ["seal"]
  909. },
  910. "zoroark": {
  911. name: "Zoroark",
  912. parents: ["pokemon", "fox"]
  913. },
  914. "maned-wolf": {
  915. name: "Maned Wolf",
  916. parents: ["canine"]
  917. },
  918. "dracha": {
  919. name: "Dracha",
  920. parents: ["dragon"]
  921. },
  922. "wolxi": {
  923. name: "Wolxi",
  924. parents: ["mammal", "alien"]
  925. },
  926. "dratini": {
  927. name: "Dratini",
  928. parents: ["pokemon", "dragon"]
  929. },
  930. "skaven": {
  931. name: "Skaven",
  932. parents: ["rat"]
  933. },
  934. "mongoose": {
  935. name: "Mongoose",
  936. parents: ["mammal"]
  937. },
  938. "lopunny": {
  939. name: "Lopunny",
  940. parents: ["pokemon", "rabbit"]
  941. },
  942. "feraligatr": {
  943. name: "Feraligatr",
  944. parents: ["pokemon", "alligator"]
  945. },
  946. "houndoom": {
  947. name: "Houndoom",
  948. parents: ["pokemon", "dog"]
  949. },
  950. "protogen": {
  951. name: "Protogen",
  952. parents: ["machine"]
  953. },
  954. "saint-bernard": {
  955. name: "Saint Bernard",
  956. parents: ["dog"]
  957. },
  958. "crow": {
  959. name: "Crow",
  960. parents: ["corvid"]
  961. },
  962. "delphox": {
  963. name: "Delphox",
  964. parents: ["pokemon", "fox"]
  965. },
  966. "moose": {
  967. name: "Moose",
  968. parents: ["mammal"]
  969. },
  970. "joraxian": {
  971. name: "Joraxian",
  972. parents: ["monster", "canine", "demon"]
  973. },
  974. "nimbat": {
  975. name: "Nimbat",
  976. parents: ["mammal"]
  977. },
  978. "aardwolf": {
  979. name: "Aardwolf",
  980. parents: ["canine"]
  981. },
  982. "fluudrani": {
  983. name: "Fluudrani",
  984. parents: ["animal"]
  985. },
  986. "arcanine": {
  987. name: "Arcanine",
  988. parents: ["pokemon", "dog"]
  989. },
  990. "inteleon": {
  991. name: "Inteleon",
  992. parents: ["pokemon", "fish"]
  993. },
  994. "ninetales": {
  995. name: "Ninetales",
  996. parents: ["pokemon", "kitsune"]
  997. },
  998. "tigrex": {
  999. name: "Tigrex",
  1000. parents: ["tiger"]
  1001. },
  1002. "zorua": {
  1003. name: "Zorua",
  1004. parents: ["pokemon", "fox"]
  1005. },
  1006. "vulpix": {
  1007. name: "Vulpix",
  1008. parents: ["pokemon", "fox"]
  1009. },
  1010. "barghest": {
  1011. name: "Barghest",
  1012. parents: ["monster"]
  1013. },
  1014. "gray-wolf": {
  1015. name: "Gray Wolf",
  1016. parents: ["wolf"]
  1017. },
  1018. "ruppells-fox": {
  1019. name: "Rüppell's Fox",
  1020. parents: ["fox"]
  1021. },
  1022. "bull-terrier": {
  1023. name: "Bull Terrier",
  1024. parents: ["dog"]
  1025. },
  1026. "european-honey-buzzard": {
  1027. name: "European Honey Buzzard",
  1028. parents: ["avian"]
  1029. },
  1030. "t-rex": {
  1031. name: "Tyrannosaurus Rex",
  1032. parents: ["dinosaur"]
  1033. },
  1034. "mactarian": {
  1035. name: "Mactarian",
  1036. parents: ["shark", "monster"]
  1037. },
  1038. "mewtwo-y": {
  1039. name: "Mewtwo Y",
  1040. parents: ["mewtwo"]
  1041. },
  1042. "mewtwo": {
  1043. name: "Mewtwo",
  1044. parents: ["pokemon"]
  1045. },
  1046. "eevee": {
  1047. name: "Eevee",
  1048. parents: ["eeveelution"]
  1049. },
  1050. "mienshao": {
  1051. name: "Mienshao",
  1052. parents: ["pokemon"]
  1053. },
  1054. "sugar-glider": {
  1055. name: "Sugar Glider",
  1056. parents: ["opossum"]
  1057. },
  1058. "spectral-bat": {
  1059. name: "Spectral Bat",
  1060. parents: ["bat"]
  1061. },
  1062. "scolipede": {
  1063. name: "Scolipede",
  1064. parents: ["pokemon", "insect"]
  1065. },
  1066. "jackalope": {
  1067. name: "Jackalope",
  1068. parents: ["rabbit", "antelope"]
  1069. },
  1070. "caracal": {
  1071. name: "Caracal",
  1072. parents: ["cat"]
  1073. },
  1074. "stoat": {
  1075. name: "Stoat",
  1076. parents: ["mammal"]
  1077. },
  1078. "african-golden-cat": {
  1079. name: "African Golden Cat",
  1080. parents: ["cat"]
  1081. },
  1082. "gigantosaurus": {
  1083. name: "Gigantosaurus",
  1084. parents: ["dinosaur"]
  1085. },
  1086. "zorgoia": {
  1087. name: "Zorgoia",
  1088. parents: ["mammal"]
  1089. },
  1090. "monitor-lizard": {
  1091. name: "Monitor Lizard",
  1092. parents: ["lizard"]
  1093. },
  1094. "ziralkia": {
  1095. name: "Ziralkia",
  1096. parents: ["mammal"]
  1097. },
  1098. "kiiasi": {
  1099. name: "Kiiasi",
  1100. parents: ["animal"]
  1101. },
  1102. "synx": {
  1103. name: "Synx",
  1104. parents: ["monster"]
  1105. },
  1106. "panther": {
  1107. name: "Panther",
  1108. parents: ["cat"]
  1109. },
  1110. "azumarill": {
  1111. name: "Azumarill",
  1112. parents: ["pokemon"]
  1113. },
  1114. "river-snaptail": {
  1115. name: "River Snaptail",
  1116. parents: ["otter", "crocodile"]
  1117. },
  1118. "great-blue-heron": {
  1119. name: "Great Blue Heron",
  1120. parents: ["avian"]
  1121. },
  1122. "smeargle": {
  1123. name: "Smeargle",
  1124. parents: ["pokemon"]
  1125. },
  1126. "vendeilen": {
  1127. name: "Vendeilen",
  1128. parents: ["monster"]
  1129. },
  1130. "ventura": {
  1131. name: "Ventura",
  1132. parents: ["canine"]
  1133. },
  1134. "clouded-leopard": {
  1135. name: "Clouded Leopard",
  1136. parents: ["leopard"]
  1137. },
  1138. "argonian": {
  1139. name: "Argonian",
  1140. parents: ["lizard"]
  1141. },
  1142. "salazzle": {
  1143. name: "Salazzle",
  1144. parents: ["pokemon", "lizard"]
  1145. },
  1146. "je-stoff-drachen": {
  1147. name: "Je-Stoff Drachen",
  1148. parents: ["dragon"]
  1149. },
  1150. "finnish-spitz-dog": {
  1151. name: "Finnish Spitz Dog",
  1152. parents: ["dog"]
  1153. },
  1154. "gray-fox": {
  1155. name: "Gray Fox",
  1156. parents: ["fox"]
  1157. },
  1158. "opossum": {
  1159. name: "Opossum",
  1160. parents: ["mammal"]
  1161. },
  1162. "antelope": {
  1163. name: "Antelope",
  1164. parents: ["mammal"]
  1165. },
  1166. "weavile": {
  1167. name: "Weavile",
  1168. parents: ["pokemon"]
  1169. },
  1170. "pikachu": {
  1171. name: "Pikachu",
  1172. parents: ["pokemon", "mouse"]
  1173. },
  1174. "grovyle": {
  1175. name: "Grovyle",
  1176. parents: ["pokemon", "plant"]
  1177. },
  1178. "sthara": {
  1179. name: "Sthara",
  1180. parents: ["snow-leopard", "reptile"]
  1181. },
  1182. "star-warrior": {
  1183. name: "Star Warrior",
  1184. parents: ["magical"]
  1185. },
  1186. "dragonoid": {
  1187. name: "Dragonoid",
  1188. parents: ["dragon"]
  1189. },
  1190. "suicune": {
  1191. name: "Suicune",
  1192. parents: ["pokemon"]
  1193. },
  1194. "vole": {
  1195. name: "Vole",
  1196. parents: ["mammal"]
  1197. },
  1198. "blaziken": {
  1199. name: "Blaziken",
  1200. parents: ["pokemon", "avian"]
  1201. },
  1202. "buizel": {
  1203. name: "Buizel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "floatzel": {
  1207. name: "Floatzel",
  1208. parents: ["pokemon", "fish"]
  1209. },
  1210. "umok": {
  1211. name: "Umok",
  1212. parents: ["avian"]
  1213. },
  1214. "sea-monster": {
  1215. name: "Sea Monster",
  1216. parents: ["monster", "fish"]
  1217. },
  1218. "egyptian-vulture": {
  1219. name: "Egyptian Vulture",
  1220. parents: ["avian"]
  1221. },
  1222. "doberman": {
  1223. name: "Doberman",
  1224. parents: ["dog"]
  1225. },
  1226. "zangoose": {
  1227. name: "Zangoose",
  1228. parents: ["pokemon", "mongoose"]
  1229. },
  1230. "mongoose": {
  1231. name: "Mongoose",
  1232. parents: ["mammal"]
  1233. },
  1234. "wickerbeast": {
  1235. name: "Wickerbeast",
  1236. parents: ["monster"]
  1237. },
  1238. "zenari": {
  1239. name: "Zenari",
  1240. parents: ["lizard"]
  1241. },
  1242. "plant": {
  1243. name: "Plant",
  1244. parents: []
  1245. },
  1246. "raskatox": {
  1247. name: "Raskatox",
  1248. parents: ["raccoon", "skunk", "cat", "fox"]
  1249. },
  1250. "mikromare": {
  1251. name: "mikromare",
  1252. parents: ["alien"]
  1253. },
  1254. "alien": {
  1255. name: "Alien",
  1256. parents: ["animal"]
  1257. },
  1258. "deity": {
  1259. name: "Deity",
  1260. parents: []
  1261. },
  1262. "skarlan": {
  1263. name: "Skarlan",
  1264. parents: ["slug", "dragon"]
  1265. },
  1266. "slug": {
  1267. name: "Slug",
  1268. parents: ["mollusk"]
  1269. },
  1270. "mollusk": {
  1271. name: "Mollusk",
  1272. parents: ["animal"]
  1273. },
  1274. "chimera": {
  1275. name: "Chimera",
  1276. parents: ["monster"]
  1277. },
  1278. "gestalt": {
  1279. name: "Gestalt",
  1280. parents: ["construct"]
  1281. },
  1282. "mimic": {
  1283. name: "Mimic",
  1284. parents: ["monster"]
  1285. },
  1286. "calico-rat": {
  1287. name: "Calico Rat",
  1288. parents: ["rat"]
  1289. },
  1290. "panda": {
  1291. name: "Panda",
  1292. parents: ["mammal"]
  1293. },
  1294. "oni": {
  1295. name: "Oni",
  1296. parents: ["monster"]
  1297. },
  1298. "pegasus": {
  1299. name: "Pegasus",
  1300. parents: ["horse"]
  1301. },
  1302. "vulpera": {
  1303. name: "Vulpera",
  1304. parents: ["fennec-fox"]
  1305. },
  1306. "ceratosaurus": {
  1307. name: "Ceratosaurus",
  1308. parents: ["dinosaur"]
  1309. },
  1310. "nykur": {
  1311. name: "Nykur",
  1312. parents: ["horse", "monster"]
  1313. },
  1314. "giraffe": {
  1315. name: "Giraffe",
  1316. parents: ["mammal"]
  1317. },
  1318. "tauren": {
  1319. name: "Tauren",
  1320. parents: ["cow"]
  1321. },
  1322. "draconi": {
  1323. name: "Draconi",
  1324. parents: ["alien", "cat", "cyborg"]
  1325. },
  1326. "dire-wolf": {
  1327. name: "Dire Wolf",
  1328. parents: ["wolf"]
  1329. },
  1330. "ferromorph": {
  1331. name: "Ferromorph",
  1332. parents: ["construct"]
  1333. },
  1334. "meowth": {
  1335. name: "Meowth",
  1336. parents: ["cat", "pokemon"]
  1337. },
  1338. "pavodragon": {
  1339. name: "Pavodragon",
  1340. parents: ["dragon"]
  1341. },
  1342. "aaltranae": {
  1343. name: "Aaltranae",
  1344. parents: ["dragon"]
  1345. },
  1346. "cyborg": {
  1347. name: "Cyborg",
  1348. parents: ["machine"]
  1349. },
  1350. "draptor": {
  1351. name: "Draptor",
  1352. parents: ["dragon"]
  1353. },
  1354. "candy": {
  1355. name: "Candy",
  1356. parents: []
  1357. },
  1358. "drenath": {
  1359. name: "Drenath",
  1360. parents: ["dragon", "snake", "rabbit"]
  1361. },
  1362. "coyju": {
  1363. name: "Coyju",
  1364. parents: ["coyote", "kaiju"]
  1365. },
  1366. "kaiju": {
  1367. name: "Kaiju",
  1368. parents: ["monster"]
  1369. },
  1370. "nickit": {
  1371. name: "Nickit",
  1372. parents: ["pokemon", "cat"]
  1373. },
  1374. "lopunny": {
  1375. name: "Lopunny",
  1376. parents: ["pokemon", "rabbit"]
  1377. },
  1378. "korean-jindo-dog": {
  1379. name: "Korean Jindo Dog",
  1380. parents: ["dog"]
  1381. },
  1382. "naga": {
  1383. name: "Naga",
  1384. parents: ["snake", "monster"]
  1385. },
  1386. "undead": {
  1387. name: "Undead",
  1388. parents: ["monster"]
  1389. },
  1390. "whale": {
  1391. name: "Whale",
  1392. parents: ["fish"]
  1393. },
  1394. "gelato-bee": {
  1395. name: "Gelato Bee",
  1396. parents: ["bee"]
  1397. },
  1398. "bee": {
  1399. name: "Bee",
  1400. parents: ["insect"]
  1401. },
  1402. "gardevoir": {
  1403. name: "Gardevoir",
  1404. parents: ["pokemon"]
  1405. },
  1406. "ant": {
  1407. name: "Ant",
  1408. parents: ["insect"]
  1409. },
  1410. "frog": {
  1411. name: "Frog",
  1412. parents: ["amphibian"]
  1413. },
  1414. "amphibian": {
  1415. name: "Amphibian",
  1416. parents: ["animal"]
  1417. },
  1418. "pangolin": {
  1419. name: "Pangolin",
  1420. parents: ["mammal"]
  1421. },
  1422. "uragi'viidorn": {
  1423. name: "Uragi'viidorn",
  1424. parents: ["avian", "bear"]
  1425. },
  1426. "gryphdelphais": {
  1427. name: "Gryphdelphais",
  1428. parents: ["dolphin", "gryphon"]
  1429. },
  1430. "plush": {
  1431. name: "Plush",
  1432. parents: ["construct"]
  1433. },
  1434. "draiger": {
  1435. name: "Draiger",
  1436. parents: ["dragon","tiger"]
  1437. },
  1438. "foxsky": {
  1439. name: "Foxsky",
  1440. parents: ["fox", "husky"]
  1441. },
  1442. "umbreon": {
  1443. name: "Umbreon",
  1444. parents: ["eeveelution"]
  1445. },
  1446. "slime-dragon": {
  1447. name: "Slime Dragon",
  1448. parents: ["dragon", "goo"]
  1449. },
  1450. "enderman": {
  1451. name: "Enderman",
  1452. parents: ["monster"]
  1453. },
  1454. "gremlin": {
  1455. name: "Gremlin",
  1456. parents: ["monster"]
  1457. },
  1458. "dragonsune": {
  1459. name: "Dragonsune",
  1460. parents: ["dragon", "kitsune"]
  1461. },
  1462. "ghost": {
  1463. name: "Ghost",
  1464. parents: ["supernatural"]
  1465. },
  1466. "false-vampire-bat": {
  1467. name: "False Vampire Bat",
  1468. parents: ["bat"]
  1469. },
  1470. "succubus": {
  1471. name: "Succubus",
  1472. parents: ["demon"]
  1473. },
  1474. "mia": {
  1475. name: "Mia",
  1476. parents: ["canine"]
  1477. },
  1478. "rainbow": {
  1479. name: "Rainbow",
  1480. parents: ["monster"]
  1481. },
  1482. "solgaleo": {
  1483. name: "Solgaleo",
  1484. parents: ["pokemon"]
  1485. },
  1486. "lucent-nargacuga": {
  1487. name: "Lucent Nargacuga",
  1488. parents: ["monster-hunter"]
  1489. },
  1490. "monster-hunter": {
  1491. name: "Monster Hunter",
  1492. parents: ["monster"]
  1493. },
  1494. "leviathan": {
  1495. "name": "Leviathan",
  1496. "url": "sea-monster"
  1497. },
  1498. "bull": {
  1499. name: "Bull",
  1500. parents: ["mammal"]
  1501. },
  1502. "tanuki": {
  1503. name: "Tanuki",
  1504. parents: ["monster"]
  1505. },
  1506. "chakat": {
  1507. name: "Chakat",
  1508. parents: ["cat"]
  1509. },
  1510. "hydra": {
  1511. name: "Hydra",
  1512. parents: ["monster"]
  1513. },
  1514. "zigzagoon": {
  1515. name: "Zigzagoon",
  1516. parents: ["raccoon", "pokemon"]
  1517. },
  1518. "vulture": {
  1519. name: "Vulture",
  1520. parents: ["avian"]
  1521. },
  1522. "eastern-dragon": {
  1523. name: "Eastern Dragon",
  1524. parents: ["dragon"]
  1525. },
  1526. "gryffon": {
  1527. name: "Gryffon",
  1528. parents: ["phoenix", "red-panda"]
  1529. },
  1530. "amtsvane": {
  1531. name: "Amtsvane",
  1532. parents: ["reptile"]
  1533. },
  1534. "kigavi": {
  1535. name: "Kigavi",
  1536. parents: ["avian"]
  1537. },
  1538. "turian": {
  1539. name: "Turian",
  1540. parents: ["avian"]
  1541. },
  1542. "zeraora": {
  1543. name: "Zeraora",
  1544. parents: ["pokemon", "cat"]
  1545. },
  1546. "sandshrew": {
  1547. name: "Sandshrew",
  1548. parents: ["pokemon", "pangolin"]
  1549. },
  1550. "valais-blacknose-sheep": {
  1551. name: "Valais Blacknose Sheep",
  1552. parents: ["sheep"]
  1553. },
  1554. "novaleit": {
  1555. name: "Novaleit",
  1556. parents: ["mammal"]
  1557. },
  1558. "dunnoh": {
  1559. name: "Dunnoh",
  1560. parents: ["mammal"]
  1561. },
  1562. "lunaral-dragon": {
  1563. name: "Lunaral Dragon",
  1564. parents: ["dragon"]
  1565. },
  1566. "arctic-wolf": {
  1567. name: "Arctic Wolf",
  1568. parents: ["wolf"]
  1569. },
  1570. "donkey": {
  1571. name: "Donkey",
  1572. parents: ["horse"]
  1573. },
  1574. "chinchilla": {
  1575. name: "Chinchilla",
  1576. parents: ["rodent"]
  1577. },
  1578. "felkin": {
  1579. name: "Felkin",
  1580. parents: ["dragon"]
  1581. },
  1582. "tykeriel": {
  1583. name: "Tykeriel",
  1584. parents: ["avian"]
  1585. },
  1586. "folf": {
  1587. name: "Folf",
  1588. parents: ["fox", "wolf"]
  1589. },
  1590. "pooltoy": {
  1591. name: "Pooltoy",
  1592. parents: ["construct"]
  1593. },
  1594. "demi": {
  1595. name: "Demi",
  1596. parents: ["human"]
  1597. },
  1598. "stegosaurus": {
  1599. name: "Stegosaurus",
  1600. parents: ["dinosaur"]
  1601. },
  1602. "computer-virus": {
  1603. name: "Computer Virus",
  1604. parents: ["program"]
  1605. },
  1606. "program": {
  1607. name: "Program",
  1608. parents: ["construct"]
  1609. },
  1610. "space-springhare": {
  1611. name: "Space Springhare",
  1612. parents: ["hare"]
  1613. },
  1614. "river-drake": {
  1615. name: "River Drake",
  1616. parents: ["dragon"]
  1617. },
  1618. "djinn": {
  1619. "name": "Djinn",
  1620. "url": "supernatural"
  1621. },
  1622. "supernatural": {
  1623. name: "Supernatural",
  1624. parents: ["monster"]
  1625. },
  1626. "grasshopper-mouse": {
  1627. name: "Grasshopper Mouse",
  1628. parents: ["mouse"]
  1629. },
  1630. "somali-cat": {
  1631. name: "Somali Cat",
  1632. parents: ["cat"]
  1633. },
  1634. "minccino": {
  1635. name: "Minccino",
  1636. parents: ["pokemon", "chinchilla"]
  1637. },
  1638. "pine-marten": {
  1639. name: "Pine Marten",
  1640. parents: ["marten"]
  1641. },
  1642. "marten": {
  1643. name: "Marten",
  1644. parents: ["mustelid"]
  1645. },
  1646. "mustelid": {
  1647. name: "Mustelid",
  1648. parents: ["mammal"]
  1649. },
  1650. "caribou": {
  1651. name: "Caribou",
  1652. parents: ["deer"]
  1653. },
  1654. "gnoll": {
  1655. name: "Gnoll",
  1656. parents: ["hyena", "monster"]
  1657. },
  1658. "peacekeeper": {
  1659. name: "Peacekeeper",
  1660. parents: ["human"]
  1661. },
  1662. "river-otter": {
  1663. name: "River Otter",
  1664. parents: ["otter"]
  1665. },
  1666. "dhole": {
  1667. name: "Dhole",
  1668. parents: ["canine"]
  1669. },
  1670. "springbok": {
  1671. name: "Springbok",
  1672. parents: ["antelope"]
  1673. },
  1674. "marsupial": {
  1675. name: "Marsupial",
  1676. parents: ["mammal"]
  1677. },
  1678. "townsend-big-eared-bat": {
  1679. name: "Townsend Big-eared Bat",
  1680. parents: ["bat"]
  1681. },
  1682. "squirrel": {
  1683. name: "Squirrel",
  1684. parents: ["rodent"]
  1685. },
  1686. "magpie": {
  1687. name: "Magpie",
  1688. parents: ["corvid"]
  1689. },
  1690. "civet": {
  1691. name: "Civet",
  1692. parents: ["feliform"]
  1693. },
  1694. "feliform": {
  1695. name: "Feliform",
  1696. parents: ["mammal"]
  1697. },
  1698. "tiefling": {
  1699. name: "Tiefling",
  1700. parents: ["devil"]
  1701. },
  1702. "devil": {
  1703. name: "Devil",
  1704. parents: ["supernatural"]
  1705. },
  1706. "sika-deer": {
  1707. name: "Sika Deer",
  1708. parents: ["deer"]
  1709. },
  1710. "vaporeon": {
  1711. name: "Vaporeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "leafeon": {
  1715. name: "Leafeon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "jolteon": {
  1719. name: "Jolteon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "spireborn": {
  1723. name: "Spireborn",
  1724. parents: ["zorgoia"]
  1725. },
  1726. "vampire": {
  1727. name: "Vampire",
  1728. parents: ["monster"]
  1729. },
  1730. "extraplanar": {
  1731. name: "Extraplanar",
  1732. parents: []
  1733. },
  1734. "goo": {
  1735. name: "Goo",
  1736. parents: []
  1737. },
  1738. "skink": {
  1739. name: "Skink",
  1740. parents: ["lizard"]
  1741. },
  1742. "bat-eared-fox": {
  1743. name: "Bat-eared Fox",
  1744. parents: ["fox"]
  1745. },
  1746. "belted-kingfisher": {
  1747. name: "Belted Kingfisher",
  1748. parents: ["avian"]
  1749. },
  1750. "omnifalcon": {
  1751. name: "Omnifalcon",
  1752. parents: ["gryphon", "falcon", "harpy-eagle"]
  1753. },
  1754. "falcon": {
  1755. name: "Falcon",
  1756. parents: ["avian"]
  1757. },
  1758. "avali": {
  1759. name: "Avali",
  1760. parents: ["avian", "alien"]
  1761. },
  1762. "arctic-fox": {
  1763. name: "Arctic Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "snow-tiger": {
  1767. name: "Snow Tiger",
  1768. parents: ["tiger"]
  1769. },
  1770. "marble-fox": {
  1771. name: "Marble Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "king-wickerbeast": {
  1775. name: "King Wickerbeast",
  1776. parents: ["wickerbeast"]
  1777. },
  1778. "wickerbeast": {
  1779. name: "Wickerbeast",
  1780. parents: ["mammal"]
  1781. },
  1782. "european-polecat": {
  1783. name: "European Polecat",
  1784. parents: ["mustelid"]
  1785. },
  1786. "teshari": {
  1787. name: "Teshari",
  1788. parents: ["avian", "raptor"]
  1789. },
  1790. "alicorn": {
  1791. name: "Alicorn",
  1792. parents: ["horse"]
  1793. },
  1794. "atlas-moth": {
  1795. name: "Atlas Moth",
  1796. parents: ["moth"]
  1797. },
  1798. "owlbear": {
  1799. name: "Owlbear",
  1800. parents: ["owl", "bear", "monster"]
  1801. },
  1802. "owl": {
  1803. name: "Owl",
  1804. parents: ["avian"]
  1805. },
  1806. "silvertongue": {
  1807. name: "Silvertongue",
  1808. parents: ["reptile"]
  1809. },
  1810. "ahuizotl": {
  1811. name: "Ahuizotl",
  1812. parents: ["monster"]
  1813. },
  1814. "ender-dragon": {
  1815. name: "Ender Dragon",
  1816. parents: ["dragon"]
  1817. },
  1818. "bruhathkayosaurus": {
  1819. name: "Bruhathkayosaurus",
  1820. parents: ["sauropod"]
  1821. },
  1822. "sauropod": {
  1823. name: "Sauropod",
  1824. parents: ["dinosaur"]
  1825. },
  1826. "black-sable-antelope": {
  1827. name: "Black Sable Antelope",
  1828. parents: ["antelope"]
  1829. },
  1830. "slime": {
  1831. name: "Slime",
  1832. parents: ["goo"]
  1833. },
  1834. "utahraptor": {
  1835. name: "Utahraptor",
  1836. parents: ["raptor"]
  1837. },
  1838. "indian-giant-squirrel": {
  1839. name: "Indian Giant Squirrel",
  1840. parents: ["squirrel"]
  1841. },
  1842. "golden-retriever": {
  1843. name: "Golden Retriever",
  1844. parents: ["dog"]
  1845. },
  1846. "triceratops": {
  1847. name: "Triceratops",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "drake": {
  1851. name: "Drake",
  1852. parents: ["dragon"]
  1853. },
  1854. "okapi": {
  1855. name: "Okapi",
  1856. parents: ["giraffe"]
  1857. },
  1858. "arctic-hare": {
  1859. name: "Arctic Hare",
  1860. parents: ["hare"]
  1861. },
  1862. "hare": {
  1863. name: "Hare",
  1864. parents: ["leporidae"]
  1865. },
  1866. "leporidae": {
  1867. name: "Leporidae",
  1868. parents: ["mammal"]
  1869. },
  1870. "leopard-gecko": {
  1871. name: "Leopard Gecko",
  1872. parents: ["gecko"]
  1873. },
  1874. "dreamspawn": {
  1875. name: "Dreamspawn",
  1876. parents: ["illusion"]
  1877. },
  1878. "illusion": {
  1879. name: "Illusion",
  1880. parents: []
  1881. },
  1882. "purrloin": {
  1883. name: "Purrloin",
  1884. parents: ["cat", "pokemon"]
  1885. },
  1886. "noivern": {
  1887. name: "Noivern",
  1888. parents: ["bat", "dragon", "pokemon"]
  1889. },
  1890. "hedgehog": {
  1891. name: "Hedgehog",
  1892. parents: ["mammal"]
  1893. },
  1894. "liger": {
  1895. name: "Liger",
  1896. parents: ["lion", "tiger", "hybrid"]
  1897. },
  1898. "hybrid": {
  1899. name: "Hybrid",
  1900. parents: []
  1901. },
  1902. "drider": {
  1903. name: "Drider",
  1904. parents: ["spider"]
  1905. },
  1906. "sabresune": {
  1907. name: "Sabresune",
  1908. parents: ["kitsune", "sabertooth-tiger"]
  1909. },
  1910. "ditto": {
  1911. name: "Ditto",
  1912. parents: ["pokemon", "goo"]
  1913. },
  1914. "amogus": {
  1915. name: "Amogus",
  1916. parents: ["deity"]
  1917. },
  1918. "ferret": {
  1919. name: "Ferret",
  1920. parents: ["mustelid"]
  1921. },
  1922. "guinea-pig": {
  1923. name: "Guinea Pig",
  1924. parents: ["rodent"]
  1925. },
  1926. "viper": {
  1927. name: "Viper",
  1928. parents: ["snake"]
  1929. },
  1930. "cinderace": {
  1931. name: "Cinderace",
  1932. parents: ["pokemon", "rabbit"]
  1933. },
  1934. "caudin": {
  1935. name: "Caudin",
  1936. parents: ["dragon"]
  1937. },
  1938. "red-winged-blackbird": {
  1939. name: "Red-Winged Blackbird",
  1940. parents: ["avian"]
  1941. },
  1942. "hooded-wheater": {
  1943. name: "Hooded Wheater",
  1944. parents: ["passerine"]
  1945. },
  1946. "passerine": {
  1947. name: "Passerine",
  1948. parents: ["avian"]
  1949. },
  1950. "gieeg": {
  1951. name: "Gieeg",
  1952. parents: ["alien"]
  1953. },
  1954. "ringtail": {
  1955. name: "Ringtail",
  1956. parents: ["raccoon"]
  1957. },
  1958. "hisuian-zoroark": {
  1959. name: "Hisuian Zoroark",
  1960. parents: ["zoroark", "hisuian"]
  1961. },
  1962. "hisuian": {
  1963. name: "Hisuian",
  1964. parents: ["regional-pokemon"]
  1965. },
  1966. "regional-pokemon": {
  1967. name: "Regional Pokemon",
  1968. parents: ["pokemon"]
  1969. },
  1970. "cybeast": {
  1971. name: "Cybeast",
  1972. parents: ["computer-virus"]
  1973. },
  1974. "javira-dragon": {
  1975. name: "Javira Dragon",
  1976. parents: ["dragon"]
  1977. },
  1978. "koopew": {
  1979. name: "Koopew",
  1980. parents: ["dragon", "alien"]
  1981. },
  1982. "nevrean": {
  1983. name: "Nevrean",
  1984. parents: ["avian", "vilous"]
  1985. },
  1986. "vilous": {
  1987. name: "Vilous Species",
  1988. parents: []
  1989. },
  1990. }
  1991. //species
  1992. function getSpeciesInfo(speciesList) {
  1993. let result = new Set();
  1994. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1995. result.add(entry)
  1996. });
  1997. return Array.from(result);
  1998. };
  1999. function getSpeciesInfoHelper(species) {
  2000. if (!speciesData[species]) {
  2001. console.warn(species + " doesn't exist");
  2002. return [];
  2003. }
  2004. if (speciesData[species].parents) {
  2005. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2006. } else {
  2007. return [species];
  2008. }
  2009. }
  2010. characterMakers.push(() => makeCharacter(
  2011. {
  2012. name: "Fen",
  2013. species: ["crux"],
  2014. description: {
  2015. title: "Bio",
  2016. text: "Very furry. Sheds on everything."
  2017. },
  2018. tags: [
  2019. "anthro",
  2020. "goo"
  2021. ]
  2022. },
  2023. {
  2024. front: {
  2025. height: math.unit(12, "feet"),
  2026. weight: math.unit(2400, "lb"),
  2027. name: "Front",
  2028. image: {
  2029. source: "./media/characters/fen/front.svg",
  2030. extra: 1804/1562,
  2031. bottom: 205/2009
  2032. }
  2033. },
  2034. diving: {
  2035. height: math.unit(4.9, "meters"),
  2036. weight: math.unit(2400, "lb"),
  2037. name: "Diving",
  2038. image: {
  2039. source: "./media/characters/fen/diving.svg"
  2040. }
  2041. },
  2042. goo: {
  2043. height: math.unit(12, "feet"),
  2044. weight: math.unit(3600, "lb"),
  2045. volume: math.unit(1000, "liters"),
  2046. capacity: math.unit(6, "people"),
  2047. name: "Goo",
  2048. image: {
  2049. source: "./media/characters/fen/goo.svg",
  2050. extra: 1307/1071,
  2051. bottom: 134/1441
  2052. }
  2053. },
  2054. maw: {
  2055. height: math.unit(5.03, "feet"),
  2056. name: "Maw",
  2057. image: {
  2058. source: "./media/characters/fen/maw.svg"
  2059. }
  2060. },
  2061. gooCeiling: {
  2062. height: math.unit(6.6, "feet"),
  2063. weight: math.unit(3000, "lb"),
  2064. volume: math.unit(1000, "liters"),
  2065. capacity: math.unit(6, "people"),
  2066. name: "Goo (Ceiling)",
  2067. image: {
  2068. source: "./media/characters/fen/goo-ceiling.svg"
  2069. }
  2070. },
  2071. back: {
  2072. height: math.unit(12, "feet"),
  2073. weight: math.unit(2400, "lb"),
  2074. name: "Back",
  2075. image: {
  2076. source: "./media/characters/fen/back.svg",
  2077. },
  2078. info: {
  2079. description: {
  2080. mode: "append",
  2081. text: "\n\nHe is not currently looking at you."
  2082. }
  2083. }
  2084. },
  2085. full: {
  2086. height: math.unit(1.85, "meter"),
  2087. weight: math.unit(3200, "lb"),
  2088. name: "Full",
  2089. image: {
  2090. source: "./media/characters/fen/full.svg",
  2091. extra: 1133/859,
  2092. bottom: 145/1278
  2093. },
  2094. info: {
  2095. description: {
  2096. mode: "append",
  2097. text: "\n\nMunch."
  2098. }
  2099. }
  2100. },
  2101. gooLounging: {
  2102. height: math.unit(4.53, "feet"),
  2103. weight: math.unit(3000, "lb"),
  2104. capacity: math.unit(6, "people"),
  2105. name: "Goo (Lounging)",
  2106. image: {
  2107. source: "./media/characters/fen/goo-lounging.svg",
  2108. bottom: 116 / 613
  2109. }
  2110. },
  2111. lounging: {
  2112. height: math.unit(10.52, "feet"),
  2113. weight: math.unit(2400, "lb"),
  2114. name: "Lounging",
  2115. image: {
  2116. source: "./media/characters/fen/lounging.svg"
  2117. }
  2118. },
  2119. },
  2120. [
  2121. {
  2122. name: "Small",
  2123. height: math.unit(2.2428, "meter")
  2124. },
  2125. {
  2126. name: "Normal",
  2127. height: math.unit(12, "feet"),
  2128. default: true,
  2129. },
  2130. {
  2131. name: "Big",
  2132. height: math.unit(20, "feet")
  2133. },
  2134. {
  2135. name: "Minimacro",
  2136. height: math.unit(40, "feet"),
  2137. info: {
  2138. description: {
  2139. mode: "append",
  2140. text: "\n\nTOO DAMN BIG"
  2141. }
  2142. }
  2143. },
  2144. {
  2145. name: "Macro",
  2146. height: math.unit(100, "feet"),
  2147. info: {
  2148. description: {
  2149. mode: "append",
  2150. text: "\n\nTOO DAMN BIG"
  2151. }
  2152. }
  2153. },
  2154. {
  2155. name: "Megamacro",
  2156. height: math.unit(2, "miles")
  2157. },
  2158. {
  2159. name: "Gigamacro",
  2160. height: math.unit(10, "earths")
  2161. },
  2162. ]
  2163. ))
  2164. characterMakers.push(() => makeCharacter(
  2165. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2166. {
  2167. front: {
  2168. height: math.unit(183, "cm"),
  2169. weight: math.unit(80, "kg"),
  2170. name: "Front",
  2171. image: {
  2172. source: "./media/characters/sofia-fluttertail/front.svg",
  2173. bottom: 0.01,
  2174. extra: 2154 / 2081
  2175. }
  2176. },
  2177. frontAlt: {
  2178. height: math.unit(183, "cm"),
  2179. weight: math.unit(80, "kg"),
  2180. name: "Front (alt)",
  2181. image: {
  2182. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2183. }
  2184. },
  2185. back: {
  2186. height: math.unit(183, "cm"),
  2187. weight: math.unit(80, "kg"),
  2188. name: "Back",
  2189. image: {
  2190. source: "./media/characters/sofia-fluttertail/back.svg"
  2191. }
  2192. },
  2193. kneeling: {
  2194. height: math.unit(125, "cm"),
  2195. weight: math.unit(80, "kg"),
  2196. name: "Kneeling",
  2197. image: {
  2198. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2199. extra: 1033 / 977,
  2200. bottom: 23.7 / 1057
  2201. }
  2202. },
  2203. maw: {
  2204. height: math.unit(183 / 5, "cm"),
  2205. name: "Maw",
  2206. image: {
  2207. source: "./media/characters/sofia-fluttertail/maw.svg"
  2208. }
  2209. },
  2210. mawcloseup: {
  2211. height: math.unit(183 / 5 * 0.41, "cm"),
  2212. name: "Maw (Closeup)",
  2213. image: {
  2214. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2215. }
  2216. },
  2217. paws: {
  2218. height: math.unit(1.17, "feet"),
  2219. name: "Paws",
  2220. image: {
  2221. source: "./media/characters/sofia-fluttertail/paws.svg",
  2222. extra: 851 / 851,
  2223. bottom: 17 / 868
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(1.83, "meter")
  2231. },
  2232. {
  2233. name: "Size Thief",
  2234. height: math.unit(18, "feet")
  2235. },
  2236. {
  2237. name: "50 Foot Collie",
  2238. height: math.unit(50, "feet")
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(96, "feet"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Megamerger",
  2247. height: math.unit(650, "feet")
  2248. },
  2249. ]
  2250. ))
  2251. characterMakers.push(() => makeCharacter(
  2252. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2253. {
  2254. front: {
  2255. height: math.unit(7, "feet"),
  2256. weight: math.unit(100, "kg"),
  2257. name: "Front",
  2258. image: {
  2259. source: "./media/characters/march/front.svg",
  2260. extra: 1992/1851,
  2261. bottom: 39/2031
  2262. }
  2263. },
  2264. foot: {
  2265. height: math.unit(0.9, "feet"),
  2266. name: "Foot",
  2267. image: {
  2268. source: "./media/characters/march/foot.svg"
  2269. }
  2270. },
  2271. },
  2272. [
  2273. {
  2274. name: "Normal",
  2275. height: math.unit(7.9, "feet")
  2276. },
  2277. {
  2278. name: "Macro",
  2279. height: math.unit(220, "meters")
  2280. },
  2281. {
  2282. name: "Megamacro",
  2283. height: math.unit(2.98, "km"),
  2284. default: true
  2285. },
  2286. {
  2287. name: "Gigamacro",
  2288. height: math.unit(15963, "km")
  2289. },
  2290. {
  2291. name: "Teramacro",
  2292. height: math.unit(2980000000, "km")
  2293. },
  2294. {
  2295. name: "Examacro",
  2296. height: math.unit(250, "parsecs")
  2297. },
  2298. ]
  2299. ))
  2300. characterMakers.push(() => makeCharacter(
  2301. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2302. {
  2303. front: {
  2304. height: math.unit(6, "feet"),
  2305. weight: math.unit(60, "kg"),
  2306. name: "Front",
  2307. image: {
  2308. source: "./media/characters/noir/front.svg",
  2309. extra: 1,
  2310. bottom: 0.032
  2311. }
  2312. },
  2313. },
  2314. [
  2315. {
  2316. name: "Normal",
  2317. height: math.unit(6.6, "feet")
  2318. },
  2319. {
  2320. name: "Macro",
  2321. height: math.unit(500, "feet")
  2322. },
  2323. {
  2324. name: "Megamacro",
  2325. height: math.unit(2.5, "km"),
  2326. default: true
  2327. },
  2328. {
  2329. name: "Gigamacro",
  2330. height: math.unit(22500, "km")
  2331. },
  2332. {
  2333. name: "Teramacro",
  2334. height: math.unit(2500000000, "km")
  2335. },
  2336. {
  2337. name: "Examacro",
  2338. height: math.unit(200, "parsecs")
  2339. },
  2340. ]
  2341. ))
  2342. characterMakers.push(() => makeCharacter(
  2343. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2344. {
  2345. front: {
  2346. height: math.unit(7, "feet"),
  2347. weight: math.unit(100, "kg"),
  2348. name: "Front",
  2349. image: {
  2350. source: "./media/characters/okuri/front.svg",
  2351. extra: 739/665,
  2352. bottom: 39/778
  2353. }
  2354. },
  2355. back: {
  2356. height: math.unit(7, "feet"),
  2357. weight: math.unit(100, "kg"),
  2358. name: "Back",
  2359. image: {
  2360. source: "./media/characters/okuri/back.svg",
  2361. extra: 734/653,
  2362. bottom: 13/747
  2363. }
  2364. },
  2365. sitting: {
  2366. height: math.unit(2.95, "feet"),
  2367. weight: math.unit(100, "kg"),
  2368. name: "Sitting",
  2369. image: {
  2370. source: "./media/characters/okuri/sitting.svg",
  2371. extra: 370/318,
  2372. bottom: 99/469
  2373. }
  2374. },
  2375. },
  2376. [
  2377. {
  2378. name: "Smallest",
  2379. height: math.unit(5 + 2/12, "feet")
  2380. },
  2381. {
  2382. name: "Smaller",
  2383. height: math.unit(300, "feet")
  2384. },
  2385. {
  2386. name: "Small",
  2387. height: math.unit(1000, "feet")
  2388. },
  2389. {
  2390. name: "Macro",
  2391. height: math.unit(1, "mile")
  2392. },
  2393. {
  2394. name: "Mega Macro (Small)",
  2395. height: math.unit(20, "km")
  2396. },
  2397. {
  2398. name: "Mega Macro (Large)",
  2399. height: math.unit(600, "km")
  2400. },
  2401. {
  2402. name: "Giga Macro",
  2403. height: math.unit(10000, "km")
  2404. },
  2405. {
  2406. name: "Normal",
  2407. height: math.unit(577560, "km"),
  2408. default: true
  2409. },
  2410. {
  2411. name: "Large",
  2412. height: math.unit(4, "galaxies")
  2413. },
  2414. {
  2415. name: "Largest",
  2416. height: math.unit(15, "multiverses")
  2417. },
  2418. ]
  2419. ))
  2420. characterMakers.push(() => makeCharacter(
  2421. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2422. {
  2423. front: {
  2424. height: math.unit(7, "feet"),
  2425. weight: math.unit(100, "kg"),
  2426. name: "Front",
  2427. image: {
  2428. source: "./media/characters/manny/front.svg",
  2429. extra: 1,
  2430. bottom: 0.06
  2431. }
  2432. },
  2433. back: {
  2434. height: math.unit(7, "feet"),
  2435. weight: math.unit(100, "kg"),
  2436. name: "Back",
  2437. image: {
  2438. source: "./media/characters/manny/back.svg",
  2439. extra: 1,
  2440. bottom: 0.014
  2441. }
  2442. },
  2443. },
  2444. [
  2445. {
  2446. name: "Normal",
  2447. height: math.unit(7, "feet"),
  2448. },
  2449. {
  2450. name: "Macro",
  2451. height: math.unit(78, "feet"),
  2452. default: true
  2453. },
  2454. {
  2455. name: "Macro+",
  2456. height: math.unit(300, "meters")
  2457. },
  2458. {
  2459. name: "Macro++",
  2460. height: math.unit(2400, "meters")
  2461. },
  2462. {
  2463. name: "Megamacro",
  2464. height: math.unit(5167, "meters")
  2465. },
  2466. {
  2467. name: "Gigamacro",
  2468. height: math.unit(41769, "miles")
  2469. },
  2470. ]
  2471. ))
  2472. characterMakers.push(() => makeCharacter(
  2473. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2474. {
  2475. front: {
  2476. height: math.unit(7, "feet"),
  2477. weight: math.unit(100, "kg"),
  2478. name: "Front",
  2479. image: {
  2480. source: "./media/characters/adake/front-1.svg"
  2481. }
  2482. },
  2483. frontAlt: {
  2484. height: math.unit(7, "feet"),
  2485. weight: math.unit(100, "kg"),
  2486. name: "Front (Alt)",
  2487. image: {
  2488. source: "./media/characters/adake/front-2.svg",
  2489. extra: 1,
  2490. bottom: 0.01
  2491. }
  2492. },
  2493. back: {
  2494. height: math.unit(7, "feet"),
  2495. weight: math.unit(100, "kg"),
  2496. name: "Back",
  2497. image: {
  2498. source: "./media/characters/adake/back.svg",
  2499. }
  2500. },
  2501. kneel: {
  2502. height: math.unit(5.385, "feet"),
  2503. weight: math.unit(100, "kg"),
  2504. name: "Kneeling",
  2505. image: {
  2506. source: "./media/characters/adake/kneel.svg",
  2507. bottom: 0.052
  2508. }
  2509. },
  2510. },
  2511. [
  2512. {
  2513. name: "Normal",
  2514. height: math.unit(7, "feet"),
  2515. },
  2516. {
  2517. name: "Macro",
  2518. height: math.unit(78, "feet"),
  2519. default: true
  2520. },
  2521. {
  2522. name: "Macro+",
  2523. height: math.unit(300, "meters")
  2524. },
  2525. {
  2526. name: "Macro++",
  2527. height: math.unit(2400, "meters")
  2528. },
  2529. {
  2530. name: "Megamacro",
  2531. height: math.unit(5167, "meters")
  2532. },
  2533. {
  2534. name: "Gigamacro",
  2535. height: math.unit(41769, "miles")
  2536. },
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2541. {
  2542. front: {
  2543. height: math.unit(1.65, "meters"),
  2544. weight: math.unit(50, "kg"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/elijah/front.svg",
  2548. extra: 858 / 830,
  2549. bottom: 95.5 / 953.8559
  2550. }
  2551. },
  2552. back: {
  2553. height: math.unit(1.65, "meters"),
  2554. weight: math.unit(50, "kg"),
  2555. name: "Back",
  2556. image: {
  2557. source: "./media/characters/elijah/back.svg",
  2558. extra: 895 / 850,
  2559. bottom: 5.3 / 897.956
  2560. }
  2561. },
  2562. frontNsfw: {
  2563. height: math.unit(1.65, "meters"),
  2564. weight: math.unit(50, "kg"),
  2565. name: "Front (NSFW)",
  2566. image: {
  2567. source: "./media/characters/elijah/front-nsfw.svg",
  2568. extra: 858 / 830,
  2569. bottom: 95.5 / 953.8559
  2570. }
  2571. },
  2572. backNsfw: {
  2573. height: math.unit(1.65, "meters"),
  2574. weight: math.unit(50, "kg"),
  2575. name: "Back (NSFW)",
  2576. image: {
  2577. source: "./media/characters/elijah/back-nsfw.svg",
  2578. extra: 895 / 850,
  2579. bottom: 5.3 / 897.956
  2580. }
  2581. },
  2582. dick: {
  2583. height: math.unit(1, "feet"),
  2584. name: "Dick",
  2585. image: {
  2586. source: "./media/characters/elijah/dick.svg"
  2587. }
  2588. },
  2589. beakOpen: {
  2590. height: math.unit(1.25, "feet"),
  2591. name: "Beak (Open)",
  2592. image: {
  2593. source: "./media/characters/elijah/beak-open.svg"
  2594. }
  2595. },
  2596. beakShut: {
  2597. height: math.unit(1.25, "feet"),
  2598. name: "Beak (Shut)",
  2599. image: {
  2600. source: "./media/characters/elijah/beak-shut.svg"
  2601. }
  2602. },
  2603. footFlexing: {
  2604. height: math.unit(1.61, "feet"),
  2605. name: "Foot (Flexing)",
  2606. image: {
  2607. source: "./media/characters/elijah/foot-flexing.svg"
  2608. }
  2609. },
  2610. footStepping: {
  2611. height: math.unit(1.44, "feet"),
  2612. name: "Foot (Stepping)",
  2613. image: {
  2614. source: "./media/characters/elijah/foot-stepping.svg"
  2615. }
  2616. },
  2617. plantigradeLeg: {
  2618. height: math.unit(2.34, "feet"),
  2619. name: "Plantigrade Leg",
  2620. image: {
  2621. source: "./media/characters/elijah/plantigrade-leg.svg"
  2622. }
  2623. },
  2624. plantigradeFootLeft: {
  2625. height: math.unit(0.9, "feet"),
  2626. name: "Plantigrade Foot (Left)",
  2627. image: {
  2628. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2629. }
  2630. },
  2631. plantigradeFootRight: {
  2632. height: math.unit(0.9, "feet"),
  2633. name: "Plantigrade Foot (Right)",
  2634. image: {
  2635. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Normal",
  2642. height: math.unit(1.65, "meters")
  2643. },
  2644. {
  2645. name: "Macro",
  2646. height: math.unit(55, "meters"),
  2647. default: true
  2648. },
  2649. {
  2650. name: "Macro+",
  2651. height: math.unit(105, "meters")
  2652. },
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2657. {
  2658. front: {
  2659. height: math.unit(7 + 2/12, "feet"),
  2660. weight: math.unit(320, "kg"),
  2661. name: "Front",
  2662. image: {
  2663. source: "./media/characters/rai/front.svg",
  2664. extra: 1802/1696,
  2665. bottom: 68/1870
  2666. }
  2667. },
  2668. frontDressed: {
  2669. height: math.unit(7 + 2/12, "feet"),
  2670. weight: math.unit(320, "kg"),
  2671. name: "Front (Dressed)",
  2672. image: {
  2673. source: "./media/characters/rai/front-dressed.svg",
  2674. extra: 1802/1696,
  2675. bottom: 68/1870
  2676. }
  2677. },
  2678. side: {
  2679. height: math.unit(7 + 2/12, "feet"),
  2680. weight: math.unit(320, "kg"),
  2681. name: "Side",
  2682. image: {
  2683. source: "./media/characters/rai/side.svg",
  2684. extra: 1789/1710,
  2685. bottom: 115/1904
  2686. }
  2687. },
  2688. back: {
  2689. height: math.unit(7 + 2/12, "feet"),
  2690. weight: math.unit(320, "kg"),
  2691. name: "Back",
  2692. image: {
  2693. source: "./media/characters/rai/back.svg",
  2694. extra: 1770/1707,
  2695. bottom: 28/1798
  2696. }
  2697. },
  2698. feral: {
  2699. height: math.unit(9.5, "feet"),
  2700. weight: math.unit(640, "kg"),
  2701. name: "Feral",
  2702. image: {
  2703. source: "./media/characters/rai/feral.svg",
  2704. extra: 945/553,
  2705. bottom: 176/1121
  2706. }
  2707. },
  2708. dragon: {
  2709. height: math.unit(23, "feet"),
  2710. weight: math.unit(50000, "lb"),
  2711. name: "Dragon",
  2712. image: {
  2713. source: "./media/characters/rai/dragon.svg",
  2714. extra: 2498 / 2030,
  2715. bottom: 85.2 / 2584
  2716. }
  2717. },
  2718. maw: {
  2719. height: math.unit(1.69, "feet"),
  2720. name: "Maw",
  2721. image: {
  2722. source: "./media/characters/rai/maw.svg"
  2723. }
  2724. },
  2725. },
  2726. [
  2727. {
  2728. name: "Normal",
  2729. height: math.unit(7 + 2/12, "feet")
  2730. },
  2731. {
  2732. name: "Big",
  2733. height: math.unit(11, "feet")
  2734. },
  2735. {
  2736. name: "Macro",
  2737. height: math.unit(302, "feet"),
  2738. default: true
  2739. },
  2740. ]
  2741. ))
  2742. characterMakers.push(() => makeCharacter(
  2743. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2744. {
  2745. frontDressed: {
  2746. height: math.unit(216, "feet"),
  2747. weight: math.unit(7000000, "lb"),
  2748. name: "Front (Dressed)",
  2749. image: {
  2750. source: "./media/characters/jazzy/front-dressed.svg",
  2751. extra: 2738 / 2651,
  2752. bottom: 41.8 / 2786
  2753. }
  2754. },
  2755. backDressed: {
  2756. height: math.unit(216, "feet"),
  2757. weight: math.unit(7000000, "lb"),
  2758. name: "Back (Dressed)",
  2759. image: {
  2760. source: "./media/characters/jazzy/back-dressed.svg",
  2761. extra: 2775 / 2673,
  2762. bottom: 36.8 / 2817
  2763. }
  2764. },
  2765. front: {
  2766. height: math.unit(216, "feet"),
  2767. weight: math.unit(7000000, "lb"),
  2768. name: "Front",
  2769. image: {
  2770. source: "./media/characters/jazzy/front.svg",
  2771. extra: 2738 / 2651,
  2772. bottom: 41.8 / 2786
  2773. }
  2774. },
  2775. back: {
  2776. height: math.unit(216, "feet"),
  2777. weight: math.unit(7000000, "lb"),
  2778. name: "Back",
  2779. image: {
  2780. source: "./media/characters/jazzy/back.svg",
  2781. extra: 2775 / 2673,
  2782. bottom: 36.8 / 2817
  2783. }
  2784. },
  2785. maw: {
  2786. height: math.unit(20, "feet"),
  2787. name: "Maw",
  2788. image: {
  2789. source: "./media/characters/jazzy/maw.svg"
  2790. }
  2791. },
  2792. paws: {
  2793. height: math.unit(27.5, "feet"),
  2794. name: "Paws",
  2795. image: {
  2796. source: "./media/characters/jazzy/paws.svg"
  2797. }
  2798. },
  2799. eye: {
  2800. height: math.unit(4.4, "feet"),
  2801. name: "Eye",
  2802. image: {
  2803. source: "./media/characters/jazzy/eye.svg"
  2804. }
  2805. },
  2806. droneOffense: {
  2807. height: math.unit(9.5, "inches"),
  2808. name: "Drone (Offense)",
  2809. image: {
  2810. source: "./media/characters/jazzy/drone-offense.svg"
  2811. }
  2812. },
  2813. droneRecon: {
  2814. height: math.unit(9.5, "inches"),
  2815. name: "Drone (Recon)",
  2816. image: {
  2817. source: "./media/characters/jazzy/drone-recon.svg"
  2818. }
  2819. },
  2820. droneDefense: {
  2821. height: math.unit(9.5, "inches"),
  2822. name: "Drone (Defense)",
  2823. image: {
  2824. source: "./media/characters/jazzy/drone-defense.svg"
  2825. }
  2826. },
  2827. },
  2828. [
  2829. {
  2830. name: "Macro",
  2831. height: math.unit(216, "feet"),
  2832. default: true
  2833. },
  2834. ]
  2835. ))
  2836. characterMakers.push(() => makeCharacter(
  2837. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2838. {
  2839. front: {
  2840. height: math.unit(9 + 6/12, "feet"),
  2841. weight: math.unit(700, "lb"),
  2842. name: "Front",
  2843. image: {
  2844. source: "./media/characters/flamm/front.svg",
  2845. extra: 1751/1632,
  2846. bottom: 46/1797
  2847. }
  2848. },
  2849. buff: {
  2850. height: math.unit(9 + 6/12, "feet"),
  2851. weight: math.unit(950, "lb"),
  2852. name: "Buff",
  2853. image: {
  2854. source: "./media/characters/flamm/buff.svg",
  2855. extra: 3018/2874,
  2856. bottom: 221/3239
  2857. }
  2858. },
  2859. },
  2860. [
  2861. {
  2862. name: "Normal",
  2863. height: math.unit(9.5, "feet")
  2864. },
  2865. {
  2866. name: "Macro",
  2867. height: math.unit(200, "feet"),
  2868. default: true
  2869. },
  2870. ]
  2871. ))
  2872. characterMakers.push(() => makeCharacter(
  2873. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2874. {
  2875. front: {
  2876. height: math.unit(5 + 3/12, "feet"),
  2877. weight: math.unit(60, "kg"),
  2878. name: "Front",
  2879. image: {
  2880. source: "./media/characters/zephiro/front.svg",
  2881. extra: 2309 / 2162,
  2882. bottom: 0.069
  2883. }
  2884. },
  2885. side: {
  2886. height: math.unit(5 + 3/12, "feet"),
  2887. weight: math.unit(60, "kg"),
  2888. name: "Side",
  2889. image: {
  2890. source: "./media/characters/zephiro/side.svg",
  2891. extra: 2403 / 2279,
  2892. bottom: 0.015
  2893. }
  2894. },
  2895. back: {
  2896. height: math.unit(5 + 3/12, "feet"),
  2897. weight: math.unit(60, "kg"),
  2898. name: "Back",
  2899. image: {
  2900. source: "./media/characters/zephiro/back.svg",
  2901. extra: 2373 / 2244,
  2902. bottom: 0.013
  2903. }
  2904. },
  2905. hand: {
  2906. height: math.unit(0.68, "feet"),
  2907. name: "Hand",
  2908. image: {
  2909. source: "./media/characters/zephiro/hand.svg"
  2910. }
  2911. },
  2912. paw: {
  2913. height: math.unit(1, "feet"),
  2914. name: "Paw",
  2915. image: {
  2916. source: "./media/characters/zephiro/paw.svg"
  2917. }
  2918. },
  2919. beans: {
  2920. height: math.unit(0.93, "feet"),
  2921. name: "Beans",
  2922. image: {
  2923. source: "./media/characters/zephiro/beans.svg"
  2924. }
  2925. },
  2926. },
  2927. [
  2928. {
  2929. name: "Micro",
  2930. height: math.unit(3, "inches")
  2931. },
  2932. {
  2933. name: "Normal",
  2934. height: math.unit(5 + 3 / 12, "feet"),
  2935. default: true
  2936. },
  2937. {
  2938. name: "Macro",
  2939. height: math.unit(118, "feet")
  2940. },
  2941. ]
  2942. ))
  2943. characterMakers.push(() => makeCharacter(
  2944. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2945. {
  2946. front: {
  2947. height: math.unit(5, "feet"),
  2948. weight: math.unit(90, "kg"),
  2949. name: "Front",
  2950. image: {
  2951. source: "./media/characters/fory/front.svg",
  2952. extra: 2862 / 2674,
  2953. bottom: 180 / 3043.8
  2954. }
  2955. },
  2956. back: {
  2957. height: math.unit(5, "feet"),
  2958. weight: math.unit(90, "kg"),
  2959. name: "Back",
  2960. image: {
  2961. source: "./media/characters/fory/back.svg",
  2962. extra: 2962 / 2791,
  2963. bottom: 106 / 3071.8
  2964. }
  2965. },
  2966. foot: {
  2967. height: math.unit(2.14, "feet"),
  2968. name: "Foot",
  2969. image: {
  2970. source: "./media/characters/fory/foot.svg"
  2971. }
  2972. },
  2973. },
  2974. [
  2975. {
  2976. name: "Normal",
  2977. height: math.unit(5, "feet")
  2978. },
  2979. {
  2980. name: "Macro",
  2981. height: math.unit(50, "feet"),
  2982. default: true
  2983. },
  2984. {
  2985. name: "Megamacro",
  2986. height: math.unit(10, "miles")
  2987. },
  2988. {
  2989. name: "Gigamacro",
  2990. height: math.unit(5, "earths")
  2991. },
  2992. ]
  2993. ))
  2994. characterMakers.push(() => makeCharacter(
  2995. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2996. {
  2997. front: {
  2998. height: math.unit(7, "feet"),
  2999. weight: math.unit(90, "kg"),
  3000. name: "Front",
  3001. image: {
  3002. source: "./media/characters/kurrikage/front.svg",
  3003. extra: 1845/1733,
  3004. bottom: 119/1964
  3005. }
  3006. },
  3007. back: {
  3008. height: math.unit(7, "feet"),
  3009. weight: math.unit(90, "kg"),
  3010. name: "Back",
  3011. image: {
  3012. source: "./media/characters/kurrikage/back.svg",
  3013. extra: 1790/1677,
  3014. bottom: 61/1851
  3015. }
  3016. },
  3017. dressed: {
  3018. height: math.unit(7, "feet"),
  3019. weight: math.unit(90, "kg"),
  3020. name: "Dressed",
  3021. image: {
  3022. source: "./media/characters/kurrikage/dressed.svg",
  3023. extra: 1845/1733,
  3024. bottom: 119/1964
  3025. }
  3026. },
  3027. foot: {
  3028. height: math.unit(1.5, "feet"),
  3029. name: "Foot",
  3030. image: {
  3031. source: "./media/characters/kurrikage/foot.svg"
  3032. }
  3033. },
  3034. staff: {
  3035. height: math.unit(6.7, "feet"),
  3036. name: "Staff",
  3037. image: {
  3038. source: "./media/characters/kurrikage/staff.svg"
  3039. }
  3040. },
  3041. peek: {
  3042. height: math.unit(1.05, "feet"),
  3043. name: "Peeking",
  3044. image: {
  3045. source: "./media/characters/kurrikage/peek.svg",
  3046. bottom: 0.08
  3047. }
  3048. },
  3049. },
  3050. [
  3051. {
  3052. name: "Normal",
  3053. height: math.unit(12, "feet"),
  3054. default: true
  3055. },
  3056. {
  3057. name: "Big",
  3058. height: math.unit(20, "feet")
  3059. },
  3060. {
  3061. name: "Macro",
  3062. height: math.unit(500, "feet")
  3063. },
  3064. {
  3065. name: "Megamacro",
  3066. height: math.unit(20, "miles")
  3067. },
  3068. ]
  3069. ))
  3070. characterMakers.push(() => makeCharacter(
  3071. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3072. {
  3073. front: {
  3074. height: math.unit(6, "feet"),
  3075. weight: math.unit(75, "kg"),
  3076. name: "Front",
  3077. image: {
  3078. source: "./media/characters/shingo/front.svg",
  3079. extra: 1900/1825,
  3080. bottom: 82/1982
  3081. }
  3082. },
  3083. side: {
  3084. height: math.unit(6, "feet"),
  3085. weight: math.unit(75, "kg"),
  3086. name: "Side",
  3087. image: {
  3088. source: "./media/characters/shingo/side.svg",
  3089. extra: 1930/1865,
  3090. bottom: 16/1946
  3091. }
  3092. },
  3093. back: {
  3094. height: math.unit(6, "feet"),
  3095. weight: math.unit(75, "kg"),
  3096. name: "Back",
  3097. image: {
  3098. source: "./media/characters/shingo/back.svg",
  3099. extra: 1922/1852,
  3100. bottom: 16/1938
  3101. }
  3102. },
  3103. frontDressed: {
  3104. height: math.unit(6, "feet"),
  3105. weight: math.unit(150, "lb"),
  3106. name: "Front-dressed",
  3107. image: {
  3108. source: "./media/characters/shingo/front-dressed.svg",
  3109. extra: 1900/1825,
  3110. bottom: 82/1982
  3111. }
  3112. },
  3113. paw: {
  3114. height: math.unit(1.29, "feet"),
  3115. name: "Paw",
  3116. image: {
  3117. source: "./media/characters/shingo/paw.svg"
  3118. }
  3119. },
  3120. hand: {
  3121. height: math.unit(1.07, "feet"),
  3122. name: "Hand",
  3123. image: {
  3124. source: "./media/characters/shingo/hand.svg"
  3125. }
  3126. },
  3127. frontAlt: {
  3128. height: math.unit(6, "feet"),
  3129. weight: math.unit(75, "kg"),
  3130. name: "Front (Alt)",
  3131. image: {
  3132. source: "./media/characters/shingo/front-alt.svg",
  3133. extra: 3511 / 3338,
  3134. bottom: 0.005
  3135. }
  3136. },
  3137. frontAlt2: {
  3138. height: math.unit(6, "feet"),
  3139. weight: math.unit(75, "kg"),
  3140. name: "Front (Alt 2)",
  3141. image: {
  3142. source: "./media/characters/shingo/front-alt-2.svg",
  3143. extra: 706/681,
  3144. bottom: 11/717
  3145. }
  3146. },
  3147. pawAlt: {
  3148. height: math.unit(1, "feet"),
  3149. name: "Paw (Alt)",
  3150. image: {
  3151. source: "./media/characters/shingo/paw-alt.svg"
  3152. }
  3153. },
  3154. },
  3155. [
  3156. {
  3157. name: "Micro",
  3158. height: math.unit(4, "inches")
  3159. },
  3160. {
  3161. name: "Normal",
  3162. height: math.unit(6, "feet"),
  3163. default: true
  3164. },
  3165. {
  3166. name: "Macro",
  3167. height: math.unit(108, "feet")
  3168. },
  3169. {
  3170. name: "Macro+",
  3171. height: math.unit(1500, "feet")
  3172. },
  3173. ]
  3174. ))
  3175. characterMakers.push(() => makeCharacter(
  3176. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3177. {
  3178. side: {
  3179. height: math.unit(6, "feet"),
  3180. weight: math.unit(75, "kg"),
  3181. name: "Side",
  3182. image: {
  3183. source: "./media/characters/aigey/side.svg"
  3184. }
  3185. },
  3186. },
  3187. [
  3188. {
  3189. name: "Macro",
  3190. height: math.unit(200, "feet"),
  3191. default: true
  3192. },
  3193. {
  3194. name: "Megamacro",
  3195. height: math.unit(100, "miles")
  3196. },
  3197. ]
  3198. )
  3199. )
  3200. characterMakers.push(() => makeCharacter(
  3201. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3202. {
  3203. front: {
  3204. height: math.unit(5 + 5 / 12, "feet"),
  3205. weight: math.unit(75, "kg"),
  3206. name: "Front",
  3207. image: {
  3208. source: "./media/characters/natasha/front.svg",
  3209. extra: 859 / 824,
  3210. bottom: 23 / 879.6
  3211. }
  3212. },
  3213. frontNsfw: {
  3214. height: math.unit(5 + 5 / 12, "feet"),
  3215. weight: math.unit(75, "kg"),
  3216. name: "Front (NSFW)",
  3217. image: {
  3218. source: "./media/characters/natasha/front-nsfw.svg",
  3219. extra: 859 / 824,
  3220. bottom: 23 / 879.6
  3221. }
  3222. },
  3223. frontErect: {
  3224. height: math.unit(5 + 5 / 12, "feet"),
  3225. weight: math.unit(75, "kg"),
  3226. name: "Front (Erect)",
  3227. image: {
  3228. source: "./media/characters/natasha/front-erect.svg",
  3229. extra: 859 / 824,
  3230. bottom: 23 / 879.6
  3231. }
  3232. },
  3233. back: {
  3234. height: math.unit(5 + 5 / 12, "feet"),
  3235. weight: math.unit(75, "kg"),
  3236. name: "Back",
  3237. image: {
  3238. source: "./media/characters/natasha/back.svg",
  3239. extra: 887.9 / 852.6,
  3240. bottom: 9.7 / 896.4
  3241. }
  3242. },
  3243. backAlt: {
  3244. height: math.unit(5 + 5 / 12, "feet"),
  3245. weight: math.unit(75, "kg"),
  3246. name: "Back (Alt)",
  3247. image: {
  3248. source: "./media/characters/natasha/back-alt.svg",
  3249. extra: 1236.7 / 1192,
  3250. bottom: 22.3 / 1258.2
  3251. }
  3252. },
  3253. dick: {
  3254. height: math.unit(1.772, "feet"),
  3255. name: "Dick",
  3256. image: {
  3257. source: "./media/characters/natasha/dick.svg"
  3258. }
  3259. },
  3260. paw: {
  3261. height: math.unit(0.250, "meters"),
  3262. name: "Paw",
  3263. image: {
  3264. source: "./media/characters/natasha/paw.svg"
  3265. }
  3266. },
  3267. },
  3268. [
  3269. {
  3270. name: "Normal",
  3271. height: math.unit(5 + 5 / 12, "feet")
  3272. },
  3273. {
  3274. name: "Large",
  3275. height: math.unit(12, "feet")
  3276. },
  3277. {
  3278. name: "Macro",
  3279. height: math.unit(100, "feet"),
  3280. default: true
  3281. },
  3282. {
  3283. name: "Macro+",
  3284. height: math.unit(260, "feet")
  3285. },
  3286. {
  3287. name: "Macro++",
  3288. height: math.unit(1, "mile")
  3289. },
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3294. {
  3295. front: {
  3296. height: math.unit(6, "feet"),
  3297. weight: math.unit(75, "kg"),
  3298. name: "Front",
  3299. image: {
  3300. source: "./media/characters/malik/front.svg"
  3301. }
  3302. },
  3303. side: {
  3304. height: math.unit(6, "feet"),
  3305. weight: math.unit(75, "kg"),
  3306. name: "Side",
  3307. image: {
  3308. source: "./media/characters/malik/side.svg",
  3309. extra: 1.1539
  3310. }
  3311. },
  3312. back: {
  3313. height: math.unit(6, "feet"),
  3314. weight: math.unit(75, "kg"),
  3315. name: "Back",
  3316. image: {
  3317. source: "./media/characters/malik/back.svg"
  3318. }
  3319. },
  3320. },
  3321. [
  3322. {
  3323. name: "Macro",
  3324. height: math.unit(156, "feet"),
  3325. default: true
  3326. },
  3327. {
  3328. name: "Macro+",
  3329. height: math.unit(1188, "feet")
  3330. },
  3331. ]
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3335. {
  3336. front: {
  3337. height: math.unit(6, "feet"),
  3338. weight: math.unit(75, "kg"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/sefer/front.svg",
  3342. extra: 848 / 659,
  3343. bottom: 28.3 / 876.442
  3344. }
  3345. },
  3346. back: {
  3347. height: math.unit(6, "feet"),
  3348. weight: math.unit(75, "kg"),
  3349. name: "Back",
  3350. image: {
  3351. source: "./media/characters/sefer/back.svg",
  3352. extra: 864 / 695,
  3353. bottom: 10 / 871
  3354. }
  3355. },
  3356. frontDressed: {
  3357. height: math.unit(6, "feet"),
  3358. weight: math.unit(75, "kg"),
  3359. name: "Front (Dressed)",
  3360. image: {
  3361. source: "./media/characters/sefer/front-dressed.svg",
  3362. extra: 839 / 653,
  3363. bottom: 37.6 / 878
  3364. }
  3365. },
  3366. },
  3367. [
  3368. {
  3369. name: "Normal",
  3370. height: math.unit(6, "feet"),
  3371. default: true
  3372. },
  3373. ]
  3374. ))
  3375. characterMakers.push(() => makeCharacter(
  3376. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3377. {
  3378. body: {
  3379. height: math.unit(2.2428, "meter"),
  3380. weight: math.unit(124.738, "kg"),
  3381. name: "Body",
  3382. image: {
  3383. extra: 1225 / 1050,
  3384. source: "./media/characters/north/front.svg"
  3385. }
  3386. }
  3387. },
  3388. [
  3389. {
  3390. name: "Micro",
  3391. height: math.unit(4, "inches")
  3392. },
  3393. {
  3394. name: "Macro",
  3395. height: math.unit(63, "meters")
  3396. },
  3397. {
  3398. name: "Megamacro",
  3399. height: math.unit(101, "miles"),
  3400. default: true
  3401. }
  3402. ]
  3403. ))
  3404. characterMakers.push(() => makeCharacter(
  3405. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3406. {
  3407. angled: {
  3408. height: math.unit(4, "meter"),
  3409. weight: math.unit(150, "kg"),
  3410. name: "Angled",
  3411. image: {
  3412. source: "./media/characters/talan/angled-sfw.svg",
  3413. bottom: 29 / 3734
  3414. }
  3415. },
  3416. angledNsfw: {
  3417. height: math.unit(4, "meter"),
  3418. weight: math.unit(150, "kg"),
  3419. name: "Angled (NSFW)",
  3420. image: {
  3421. source: "./media/characters/talan/angled-nsfw.svg",
  3422. bottom: 29 / 3734
  3423. }
  3424. },
  3425. frontNsfw: {
  3426. height: math.unit(4, "meter"),
  3427. weight: math.unit(150, "kg"),
  3428. name: "Front (NSFW)",
  3429. image: {
  3430. source: "./media/characters/talan/front-nsfw.svg",
  3431. bottom: 29 / 3734
  3432. }
  3433. },
  3434. sideNsfw: {
  3435. height: math.unit(4, "meter"),
  3436. weight: math.unit(150, "kg"),
  3437. name: "Side (NSFW)",
  3438. image: {
  3439. source: "./media/characters/talan/side-nsfw.svg",
  3440. bottom: 29 / 3734
  3441. }
  3442. },
  3443. back: {
  3444. height: math.unit(4, "meter"),
  3445. weight: math.unit(150, "kg"),
  3446. name: "Back",
  3447. image: {
  3448. source: "./media/characters/talan/back.svg"
  3449. }
  3450. },
  3451. dickBottom: {
  3452. height: math.unit(0.621, "meter"),
  3453. name: "Dick (Bottom)",
  3454. image: {
  3455. source: "./media/characters/talan/dick-bottom.svg"
  3456. }
  3457. },
  3458. dickTop: {
  3459. height: math.unit(0.621, "meter"),
  3460. name: "Dick (Top)",
  3461. image: {
  3462. source: "./media/characters/talan/dick-top.svg"
  3463. }
  3464. },
  3465. dickSide: {
  3466. height: math.unit(0.305, "meter"),
  3467. name: "Dick (Side)",
  3468. image: {
  3469. source: "./media/characters/talan/dick-side.svg"
  3470. }
  3471. },
  3472. dickFront: {
  3473. height: math.unit(0.305, "meter"),
  3474. name: "Dick (Front)",
  3475. image: {
  3476. source: "./media/characters/talan/dick-front.svg"
  3477. }
  3478. },
  3479. },
  3480. [
  3481. {
  3482. name: "Normal",
  3483. height: math.unit(4, "meters")
  3484. },
  3485. {
  3486. name: "Macro",
  3487. height: math.unit(100, "meters")
  3488. },
  3489. {
  3490. name: "Megamacro",
  3491. height: math.unit(2, "miles"),
  3492. default: true
  3493. },
  3494. {
  3495. name: "Gigamacro",
  3496. height: math.unit(5000, "miles")
  3497. },
  3498. {
  3499. name: "Teramacro",
  3500. height: math.unit(100, "parsecs")
  3501. }
  3502. ]
  3503. ))
  3504. characterMakers.push(() => makeCharacter(
  3505. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3506. {
  3507. front: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(90, "kg"),
  3510. name: "Front",
  3511. image: {
  3512. source: "./media/characters/gael'rathus/front.svg"
  3513. }
  3514. },
  3515. frontAlt: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(90, "kg"),
  3518. name: "Front (alt)",
  3519. image: {
  3520. source: "./media/characters/gael'rathus/front-alt.svg"
  3521. }
  3522. },
  3523. frontAlt2: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(90, "kg"),
  3526. name: "Front (alt 2)",
  3527. image: {
  3528. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3529. }
  3530. }
  3531. },
  3532. [
  3533. {
  3534. name: "Normal",
  3535. height: math.unit(9, "feet"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Large",
  3540. height: math.unit(25, "feet")
  3541. },
  3542. {
  3543. name: "Macro",
  3544. height: math.unit(0.25, "miles")
  3545. },
  3546. {
  3547. name: "Megamacro",
  3548. height: math.unit(10, "miles")
  3549. }
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3554. {
  3555. side: {
  3556. height: math.unit(2, "meter"),
  3557. weight: math.unit(140, "kg"),
  3558. name: "Side",
  3559. image: {
  3560. source: "./media/characters/sosha/side.svg",
  3561. bottom: 0.042
  3562. }
  3563. },
  3564. },
  3565. [
  3566. {
  3567. name: "Normal",
  3568. height: math.unit(12, "feet"),
  3569. default: true
  3570. }
  3571. ]
  3572. ))
  3573. characterMakers.push(() => makeCharacter(
  3574. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3575. {
  3576. side: {
  3577. height: math.unit(5 + 5 / 12, "feet"),
  3578. weight: math.unit(170, "kg"),
  3579. name: "Side",
  3580. image: {
  3581. source: "./media/characters/runnola/side.svg",
  3582. extra: 741 / 448,
  3583. bottom: 0.05
  3584. }
  3585. },
  3586. },
  3587. [
  3588. {
  3589. name: "Small",
  3590. height: math.unit(3, "feet")
  3591. },
  3592. {
  3593. name: "Normal",
  3594. height: math.unit(5 + 5 / 12, "feet"),
  3595. default: true
  3596. },
  3597. {
  3598. name: "Big",
  3599. height: math.unit(10, "feet")
  3600. },
  3601. ]
  3602. ))
  3603. characterMakers.push(() => makeCharacter(
  3604. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3605. {
  3606. front: {
  3607. height: math.unit(2, "meter"),
  3608. weight: math.unit(50, "kg"),
  3609. name: "Front",
  3610. image: {
  3611. source: "./media/characters/kurribird/front.svg",
  3612. bottom: 0.015
  3613. }
  3614. },
  3615. frontAlt: {
  3616. height: math.unit(1.5, "meter"),
  3617. weight: math.unit(50, "kg"),
  3618. name: "Front (Alt)",
  3619. image: {
  3620. source: "./media/characters/kurribird/front-alt.svg",
  3621. extra: 1.45
  3622. }
  3623. },
  3624. },
  3625. [
  3626. {
  3627. name: "Normal",
  3628. height: math.unit(7, "feet")
  3629. },
  3630. {
  3631. name: "Big",
  3632. height: math.unit(12, "feet"),
  3633. default: true
  3634. },
  3635. {
  3636. name: "Macro",
  3637. height: math.unit(1500, "feet")
  3638. },
  3639. {
  3640. name: "Megamacro",
  3641. height: math.unit(2, "miles")
  3642. }
  3643. ]
  3644. ))
  3645. characterMakers.push(() => makeCharacter(
  3646. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3647. {
  3648. front: {
  3649. height: math.unit(2, "meter"),
  3650. weight: math.unit(80, "kg"),
  3651. name: "Front",
  3652. image: {
  3653. source: "./media/characters/elbial/front.svg",
  3654. extra: 1643 / 1556,
  3655. bottom: 60.2 / 1696
  3656. }
  3657. },
  3658. side: {
  3659. height: math.unit(2, "meter"),
  3660. weight: math.unit(80, "kg"),
  3661. name: "Side",
  3662. image: {
  3663. source: "./media/characters/elbial/side.svg",
  3664. extra: 1601/1528,
  3665. bottom: 97/1698
  3666. }
  3667. },
  3668. back: {
  3669. height: math.unit(2, "meter"),
  3670. weight: math.unit(80, "kg"),
  3671. name: "Back",
  3672. image: {
  3673. source: "./media/characters/elbial/back.svg",
  3674. extra: 1653/1569,
  3675. bottom: 20/1673
  3676. }
  3677. },
  3678. frontDressed: {
  3679. height: math.unit(2, "meter"),
  3680. weight: math.unit(80, "kg"),
  3681. name: "Front (Dressed)",
  3682. image: {
  3683. source: "./media/characters/elbial/front-dressed.svg",
  3684. extra: 1638/1569,
  3685. bottom: 70/1708
  3686. }
  3687. },
  3688. genitals: {
  3689. height: math.unit(2 / 3.367, "meter"),
  3690. name: "Genitals",
  3691. image: {
  3692. source: "./media/characters/elbial/genitals.svg"
  3693. }
  3694. },
  3695. },
  3696. [
  3697. {
  3698. name: "Large",
  3699. height: math.unit(100, "feet")
  3700. },
  3701. {
  3702. name: "Macro",
  3703. height: math.unit(500, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(10, "miles")
  3709. },
  3710. {
  3711. name: "Gigamacro",
  3712. height: math.unit(25000, "miles")
  3713. },
  3714. {
  3715. name: "Full-Size",
  3716. height: math.unit(8000000, "gigaparsecs")
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3722. {
  3723. front: {
  3724. height: math.unit(2, "meter"),
  3725. weight: math.unit(60, "kg"),
  3726. name: "Front",
  3727. image: {
  3728. source: "./media/characters/noah/front.svg"
  3729. }
  3730. },
  3731. talons: {
  3732. height: math.unit(0.315, "meter"),
  3733. name: "Talons",
  3734. image: {
  3735. source: "./media/characters/noah/talons.svg"
  3736. }
  3737. }
  3738. },
  3739. [
  3740. {
  3741. name: "Large",
  3742. height: math.unit(50, "feet")
  3743. },
  3744. {
  3745. name: "Macro",
  3746. height: math.unit(750, "feet"),
  3747. default: true
  3748. },
  3749. {
  3750. name: "Megamacro",
  3751. height: math.unit(50, "miles")
  3752. },
  3753. {
  3754. name: "Gigamacro",
  3755. height: math.unit(100000, "miles")
  3756. },
  3757. {
  3758. name: "Full-Size",
  3759. height: math.unit(3000000000, "miles")
  3760. }
  3761. ]
  3762. ))
  3763. characterMakers.push(() => makeCharacter(
  3764. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3765. {
  3766. front: {
  3767. height: math.unit(2, "meter"),
  3768. weight: math.unit(80, "kg"),
  3769. name: "Front",
  3770. image: {
  3771. source: "./media/characters/natalya/front.svg"
  3772. }
  3773. },
  3774. back: {
  3775. height: math.unit(2, "meter"),
  3776. weight: math.unit(80, "kg"),
  3777. name: "Back",
  3778. image: {
  3779. source: "./media/characters/natalya/back.svg"
  3780. }
  3781. }
  3782. },
  3783. [
  3784. {
  3785. name: "Normal",
  3786. height: math.unit(150, "feet"),
  3787. default: true
  3788. },
  3789. {
  3790. name: "Megamacro",
  3791. height: math.unit(5, "miles")
  3792. },
  3793. {
  3794. name: "Full-Size",
  3795. height: math.unit(600, "kiloparsecs")
  3796. }
  3797. ]
  3798. ))
  3799. characterMakers.push(() => makeCharacter(
  3800. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3801. {
  3802. front: {
  3803. height: math.unit(2, "meter"),
  3804. weight: math.unit(50, "kg"),
  3805. name: "Front",
  3806. image: {
  3807. source: "./media/characters/erestrebah/front.svg",
  3808. extra: 1262/1162,
  3809. bottom: 96/1358
  3810. }
  3811. },
  3812. back: {
  3813. height: math.unit(2, "meter"),
  3814. weight: math.unit(50, "kg"),
  3815. name: "Back",
  3816. image: {
  3817. source: "./media/characters/erestrebah/back.svg",
  3818. extra: 1257/1139,
  3819. bottom: 13/1270
  3820. }
  3821. },
  3822. wing: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(50, "kg"),
  3825. name: "Wing",
  3826. image: {
  3827. source: "./media/characters/erestrebah/wing.svg",
  3828. extra: 1262/1162,
  3829. bottom: 96/1358
  3830. }
  3831. },
  3832. mouth: {
  3833. height: math.unit(0.39, "feet"),
  3834. name: "Mouth",
  3835. image: {
  3836. source: "./media/characters/erestrebah/mouth.svg"
  3837. }
  3838. }
  3839. },
  3840. [
  3841. {
  3842. name: "Normal",
  3843. height: math.unit(10, "feet")
  3844. },
  3845. {
  3846. name: "Large",
  3847. height: math.unit(50, "feet"),
  3848. default: true
  3849. },
  3850. {
  3851. name: "Macro",
  3852. height: math.unit(300, "feet")
  3853. },
  3854. {
  3855. name: "Macro+",
  3856. height: math.unit(750, "feet")
  3857. },
  3858. {
  3859. name: "Megamacro",
  3860. height: math.unit(3, "miles")
  3861. }
  3862. ]
  3863. ))
  3864. characterMakers.push(() => makeCharacter(
  3865. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3866. {
  3867. front: {
  3868. height: math.unit(2, "meter"),
  3869. weight: math.unit(80, "kg"),
  3870. name: "Front",
  3871. image: {
  3872. source: "./media/characters/jennifer/front.svg",
  3873. bottom: 0.11,
  3874. extra: 1.16
  3875. }
  3876. },
  3877. frontAlt: {
  3878. height: math.unit(2, "meter"),
  3879. weight: math.unit(80, "kg"),
  3880. name: "Front (Alt)",
  3881. image: {
  3882. source: "./media/characters/jennifer/front-alt.svg"
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Canon Height",
  3889. height: math.unit(120, "feet"),
  3890. default: true
  3891. },
  3892. {
  3893. name: "Macro+",
  3894. height: math.unit(300, "feet")
  3895. },
  3896. {
  3897. name: "Megamacro",
  3898. height: math.unit(20000, "feet")
  3899. }
  3900. ]
  3901. ))
  3902. characterMakers.push(() => makeCharacter(
  3903. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3904. {
  3905. front: {
  3906. height: math.unit(2, "meter"),
  3907. weight: math.unit(50, "kg"),
  3908. name: "Front",
  3909. image: {
  3910. source: "./media/characters/kalista/front.svg",
  3911. extra: 1314/1145,
  3912. bottom: 101/1415
  3913. }
  3914. },
  3915. back: {
  3916. height: math.unit(2, "meter"),
  3917. weight: math.unit(50, "kg"),
  3918. name: "Back",
  3919. image: {
  3920. source: "./media/characters/kalista/back.svg",
  3921. extra: 1366 / 1156,
  3922. bottom: 33.9 / 1362.78
  3923. }
  3924. }
  3925. },
  3926. [
  3927. {
  3928. name: "Uncomfortably Small",
  3929. height: math.unit(10, "feet")
  3930. },
  3931. {
  3932. name: "Small",
  3933. height: math.unit(30, "feet")
  3934. },
  3935. {
  3936. name: "Macro",
  3937. height: math.unit(100, "feet"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Macro+",
  3942. height: math.unit(2000, "feet")
  3943. },
  3944. {
  3945. name: "True Form",
  3946. height: math.unit(8924, "miles")
  3947. }
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(2, "meter"),
  3955. weight: math.unit(120, "kg"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/ggv/front.svg"
  3959. }
  3960. },
  3961. side: {
  3962. height: math.unit(2, "meter"),
  3963. weight: math.unit(120, "kg"),
  3964. name: "Side",
  3965. image: {
  3966. source: "./media/characters/ggv/side.svg"
  3967. }
  3968. }
  3969. },
  3970. [
  3971. {
  3972. name: "Extremely Puny",
  3973. height: math.unit(9 + 5 / 12, "feet")
  3974. },
  3975. {
  3976. name: "Horribly Small",
  3977. height: math.unit(47.7, "miles"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Reasonably Sized",
  3982. height: math.unit(25000, "parsecs")
  3983. },
  3984. {
  3985. name: "Slightly Uncompressed",
  3986. height: math.unit(7.77e31, "parsecs")
  3987. },
  3988. {
  3989. name: "Omniversal",
  3990. height: math.unit(1e300, "meters")
  3991. },
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(2, "meter"),
  3999. weight: math.unit(75, "lb"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/napalm/front.svg"
  4003. }
  4004. },
  4005. back: {
  4006. height: math.unit(2, "meter"),
  4007. weight: math.unit(75, "lb"),
  4008. name: "Back",
  4009. image: {
  4010. source: "./media/characters/napalm/back.svg"
  4011. }
  4012. }
  4013. },
  4014. [
  4015. {
  4016. name: "Standard",
  4017. height: math.unit(55, "feet"),
  4018. default: true
  4019. }
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4024. {
  4025. front: {
  4026. height: math.unit(7 + 5 / 6, "feet"),
  4027. weight: math.unit(325, "lb"),
  4028. name: "Front",
  4029. image: {
  4030. source: "./media/characters/asana/front.svg",
  4031. extra: 1133 / 1060,
  4032. bottom: 15.2 / 1148.6
  4033. }
  4034. },
  4035. back: {
  4036. height: math.unit(7 + 5 / 6, "feet"),
  4037. weight: math.unit(325, "lb"),
  4038. name: "Back",
  4039. image: {
  4040. source: "./media/characters/asana/back.svg",
  4041. extra: 1114 / 1043,
  4042. bottom: 5 / 1120
  4043. }
  4044. },
  4045. dressedDark: {
  4046. height: math.unit(7 + 5 / 6, "feet"),
  4047. weight: math.unit(325, "lb"),
  4048. name: "Dressed (Dark)",
  4049. image: {
  4050. source: "./media/characters/asana/dressed-dark.svg",
  4051. extra: 1133 / 1060,
  4052. bottom: 15.2 / 1148.6
  4053. }
  4054. },
  4055. dressedLight: {
  4056. height: math.unit(7 + 5 / 6, "feet"),
  4057. weight: math.unit(325, "lb"),
  4058. name: "Dressed (Light)",
  4059. image: {
  4060. source: "./media/characters/asana/dressed-light.svg",
  4061. extra: 1133 / 1060,
  4062. bottom: 15.2 / 1148.6
  4063. }
  4064. },
  4065. },
  4066. [
  4067. {
  4068. name: "Standard",
  4069. height: math.unit(7 + 5 / 6, "feet"),
  4070. default: true
  4071. },
  4072. {
  4073. name: "Large",
  4074. height: math.unit(10, "meters")
  4075. },
  4076. {
  4077. name: "Macro",
  4078. height: math.unit(2500, "meters")
  4079. },
  4080. {
  4081. name: "Megamacro",
  4082. height: math.unit(5e6, "meters")
  4083. },
  4084. {
  4085. name: "Examacro",
  4086. height: math.unit(5e12, "lightyears")
  4087. },
  4088. {
  4089. name: "Max Size",
  4090. height: math.unit(1e31, "lightyears")
  4091. }
  4092. ]
  4093. ))
  4094. characterMakers.push(() => makeCharacter(
  4095. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4096. {
  4097. front: {
  4098. height: math.unit(2, "meter"),
  4099. weight: math.unit(60, "kg"),
  4100. name: "Front",
  4101. image: {
  4102. source: "./media/characters/ebony/front.svg",
  4103. bottom: 0.03,
  4104. extra: 1045 / 810 + 0.03
  4105. }
  4106. },
  4107. side: {
  4108. height: math.unit(2, "meter"),
  4109. weight: math.unit(60, "kg"),
  4110. name: "Side",
  4111. image: {
  4112. source: "./media/characters/ebony/side.svg",
  4113. bottom: 0.03,
  4114. extra: 1045 / 810 + 0.03
  4115. }
  4116. },
  4117. back: {
  4118. height: math.unit(2, "meter"),
  4119. weight: math.unit(60, "kg"),
  4120. name: "Back",
  4121. image: {
  4122. source: "./media/characters/ebony/back.svg",
  4123. bottom: 0.01,
  4124. extra: 1045 / 810 + 0.01
  4125. }
  4126. },
  4127. },
  4128. [
  4129. // TODO check why I did this lol
  4130. {
  4131. name: "Standard",
  4132. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4133. default: true
  4134. },
  4135. {
  4136. name: "Macro",
  4137. height: math.unit(200, "feet")
  4138. },
  4139. {
  4140. name: "Gigamacro",
  4141. height: math.unit(13000, "km")
  4142. }
  4143. ]
  4144. ))
  4145. characterMakers.push(() => makeCharacter(
  4146. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4147. {
  4148. front: {
  4149. height: math.unit(6, "feet"),
  4150. weight: math.unit(175, "lb"),
  4151. name: "Front",
  4152. image: {
  4153. source: "./media/characters/mountain/front.svg",
  4154. extra: 972 / 955,
  4155. bottom: 64 / 1036.6
  4156. }
  4157. },
  4158. back: {
  4159. height: math.unit(6, "feet"),
  4160. weight: math.unit(175, "lb"),
  4161. name: "Back",
  4162. image: {
  4163. source: "./media/characters/mountain/back.svg",
  4164. extra: 970 / 950,
  4165. bottom: 28.25 / 999
  4166. }
  4167. },
  4168. },
  4169. [
  4170. {
  4171. name: "Large",
  4172. height: math.unit(20, "meters")
  4173. },
  4174. {
  4175. name: "Macro",
  4176. height: math.unit(300, "meters")
  4177. },
  4178. {
  4179. name: "Gigamacro",
  4180. height: math.unit(10000, "km"),
  4181. default: true
  4182. },
  4183. {
  4184. name: "Examacro",
  4185. height: math.unit(10e9, "lightyears")
  4186. }
  4187. ]
  4188. ))
  4189. characterMakers.push(() => makeCharacter(
  4190. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4191. {
  4192. front: {
  4193. height: math.unit(8, "feet"),
  4194. weight: math.unit(500, "lb"),
  4195. name: "Front",
  4196. image: {
  4197. source: "./media/characters/rick/front.svg"
  4198. }
  4199. }
  4200. },
  4201. [
  4202. {
  4203. name: "Normal",
  4204. height: math.unit(8, "feet"),
  4205. default: true
  4206. },
  4207. {
  4208. name: "Macro",
  4209. height: math.unit(5, "km")
  4210. }
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4215. {
  4216. front: {
  4217. height: math.unit(8, "feet"),
  4218. weight: math.unit(120, "lb"),
  4219. name: "Front",
  4220. image: {
  4221. source: "./media/characters/ona/front.svg"
  4222. }
  4223. },
  4224. frontAlt: {
  4225. height: math.unit(8, "feet"),
  4226. weight: math.unit(120, "lb"),
  4227. name: "Front (Alt)",
  4228. image: {
  4229. source: "./media/characters/ona/front-alt.svg"
  4230. }
  4231. },
  4232. back: {
  4233. height: math.unit(8, "feet"),
  4234. weight: math.unit(120, "lb"),
  4235. name: "Back",
  4236. image: {
  4237. source: "./media/characters/ona/back.svg"
  4238. }
  4239. },
  4240. foot: {
  4241. height: math.unit(1.1, "feet"),
  4242. name: "Foot",
  4243. image: {
  4244. source: "./media/characters/ona/foot.svg"
  4245. }
  4246. }
  4247. },
  4248. [
  4249. {
  4250. name: "Megamacro",
  4251. height: math.unit(70, "km"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Gigamacro",
  4256. height: math.unit(681818, "miles")
  4257. },
  4258. {
  4259. name: "Examacro",
  4260. height: math.unit(3800000, "lightyears")
  4261. },
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4266. {
  4267. front: {
  4268. height: math.unit(12, "feet"),
  4269. weight: math.unit(3000, "lb"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/mech/front.svg",
  4273. extra: 2900 / 2770,
  4274. bottom: 110 / 3010
  4275. }
  4276. },
  4277. back: {
  4278. height: math.unit(12, "feet"),
  4279. weight: math.unit(3000, "lb"),
  4280. name: "Back",
  4281. image: {
  4282. source: "./media/characters/mech/back.svg",
  4283. extra: 3011 / 2890,
  4284. bottom: 94 / 3105
  4285. }
  4286. },
  4287. maw: {
  4288. height: math.unit(3.07, "feet"),
  4289. name: "Maw",
  4290. image: {
  4291. source: "./media/characters/mech/maw.svg"
  4292. }
  4293. },
  4294. head: {
  4295. height: math.unit(2.82, "feet"),
  4296. name: "Head",
  4297. image: {
  4298. source: "./media/characters/mech/head.svg"
  4299. }
  4300. },
  4301. dick: {
  4302. height: math.unit(1.43, "feet"),
  4303. name: "Dick",
  4304. image: {
  4305. source: "./media/characters/mech/dick.svg"
  4306. }
  4307. },
  4308. },
  4309. [
  4310. {
  4311. name: "Normal",
  4312. height: math.unit(12, "feet")
  4313. },
  4314. {
  4315. name: "Macro",
  4316. height: math.unit(300, "feet"),
  4317. default: true
  4318. },
  4319. {
  4320. name: "Macro+",
  4321. height: math.unit(1500, "feet")
  4322. },
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4327. {
  4328. front: {
  4329. height: math.unit(1.3, "meter"),
  4330. weight: math.unit(30, "kg"),
  4331. name: "Front",
  4332. image: {
  4333. source: "./media/characters/gregory/front.svg",
  4334. }
  4335. }
  4336. },
  4337. [
  4338. {
  4339. name: "Normal",
  4340. height: math.unit(1.3, "meter"),
  4341. default: true
  4342. },
  4343. {
  4344. name: "Macro",
  4345. height: math.unit(20, "meter")
  4346. }
  4347. ]
  4348. ))
  4349. characterMakers.push(() => makeCharacter(
  4350. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4351. {
  4352. front: {
  4353. height: math.unit(2.8, "meter"),
  4354. weight: math.unit(200, "kg"),
  4355. name: "Front",
  4356. image: {
  4357. source: "./media/characters/elory/front.svg",
  4358. }
  4359. }
  4360. },
  4361. [
  4362. {
  4363. name: "Normal",
  4364. height: math.unit(2.8, "meter"),
  4365. default: true
  4366. },
  4367. {
  4368. name: "Macro",
  4369. height: math.unit(38, "meter")
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4375. {
  4376. front: {
  4377. height: math.unit(470, "feet"),
  4378. weight: math.unit(924, "tons"),
  4379. name: "Front",
  4380. image: {
  4381. source: "./media/characters/angelpatamon/front.svg",
  4382. }
  4383. }
  4384. },
  4385. [
  4386. {
  4387. name: "Normal",
  4388. height: math.unit(470, "feet"),
  4389. default: true
  4390. },
  4391. {
  4392. name: "Deity Size I",
  4393. height: math.unit(28651.2, "km")
  4394. },
  4395. {
  4396. name: "Deity Size II",
  4397. height: math.unit(171907.2, "km")
  4398. }
  4399. ]
  4400. ))
  4401. characterMakers.push(() => makeCharacter(
  4402. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4403. {
  4404. side: {
  4405. height: math.unit(7.2, "meter"),
  4406. weight: math.unit(8.2, "tons"),
  4407. name: "Side",
  4408. image: {
  4409. source: "./media/characters/cryae/side.svg",
  4410. extra: 3500 / 1500
  4411. }
  4412. }
  4413. },
  4414. [
  4415. {
  4416. name: "Normal",
  4417. height: math.unit(7.2, "meter"),
  4418. default: true
  4419. }
  4420. ]
  4421. ))
  4422. characterMakers.push(() => makeCharacter(
  4423. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4424. {
  4425. front: {
  4426. height: math.unit(6, "feet"),
  4427. weight: math.unit(175, "lb"),
  4428. name: "Front",
  4429. image: {
  4430. source: "./media/characters/xera/front.svg",
  4431. extra: 2377 / 1972,
  4432. bottom: 75.5 / 2452
  4433. }
  4434. },
  4435. side: {
  4436. height: math.unit(6, "feet"),
  4437. weight: math.unit(175, "lb"),
  4438. name: "Side",
  4439. image: {
  4440. source: "./media/characters/xera/side.svg",
  4441. extra: 2345 / 2019,
  4442. bottom: 39.7 / 2384
  4443. }
  4444. },
  4445. back: {
  4446. height: math.unit(6, "feet"),
  4447. weight: math.unit(175, "lb"),
  4448. name: "Back",
  4449. image: {
  4450. source: "./media/characters/xera/back.svg",
  4451. extra: 2095 / 1984,
  4452. bottom: 67 / 2166
  4453. }
  4454. },
  4455. },
  4456. [
  4457. {
  4458. name: "Small",
  4459. height: math.unit(10, "feet")
  4460. },
  4461. {
  4462. name: "Macro",
  4463. height: math.unit(500, "meters"),
  4464. default: true
  4465. },
  4466. {
  4467. name: "Macro+",
  4468. height: math.unit(10, "km")
  4469. },
  4470. {
  4471. name: "Gigamacro",
  4472. height: math.unit(25000, "km")
  4473. },
  4474. {
  4475. name: "Teramacro",
  4476. height: math.unit(3e6, "km")
  4477. }
  4478. ]
  4479. ))
  4480. characterMakers.push(() => makeCharacter(
  4481. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4482. {
  4483. front: {
  4484. height: math.unit(6, "feet"),
  4485. weight: math.unit(175, "lb"),
  4486. name: "Front",
  4487. image: {
  4488. source: "./media/characters/nebula/front.svg",
  4489. extra: 2566 / 2362,
  4490. bottom: 81 / 2644
  4491. }
  4492. }
  4493. },
  4494. [
  4495. {
  4496. name: "Small",
  4497. height: math.unit(4.5, "meters")
  4498. },
  4499. {
  4500. name: "Macro",
  4501. height: math.unit(1500, "meters"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(150, "km")
  4507. },
  4508. {
  4509. name: "Gigamacro",
  4510. height: math.unit(27000, "km")
  4511. }
  4512. ]
  4513. ))
  4514. characterMakers.push(() => makeCharacter(
  4515. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4516. {
  4517. front: {
  4518. height: math.unit(6, "feet"),
  4519. weight: math.unit(225, "lb"),
  4520. name: "Front",
  4521. image: {
  4522. source: "./media/characters/abysgar/front.svg",
  4523. extra: 1739/1614,
  4524. bottom: 71/1810
  4525. }
  4526. },
  4527. frontNsfw: {
  4528. height: math.unit(6, "feet"),
  4529. weight: math.unit(225, "lb"),
  4530. name: "Front (NSFW)",
  4531. image: {
  4532. source: "./media/characters/abysgar/front-nsfw.svg",
  4533. extra: 1739/1614,
  4534. bottom: 71/1810
  4535. }
  4536. },
  4537. back: {
  4538. height: math.unit(4.6, "feet"),
  4539. weight: math.unit(225, "lb"),
  4540. name: "Back",
  4541. image: {
  4542. source: "./media/characters/abysgar/back.svg",
  4543. extra: 1384/1327,
  4544. bottom: 0/1384
  4545. }
  4546. },
  4547. head: {
  4548. height: math.unit(1.25, "feet"),
  4549. name: "Head",
  4550. image: {
  4551. source: "./media/characters/abysgar/head.svg",
  4552. extra: 669/569,
  4553. bottom: 0/669
  4554. }
  4555. },
  4556. },
  4557. [
  4558. {
  4559. name: "Small",
  4560. height: math.unit(4.5, "meters")
  4561. },
  4562. {
  4563. name: "Macro",
  4564. height: math.unit(1250, "meters"),
  4565. default: true
  4566. },
  4567. {
  4568. name: "Megamacro",
  4569. height: math.unit(125, "km")
  4570. },
  4571. {
  4572. name: "Gigamacro",
  4573. height: math.unit(26000, "km")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(180, "lb"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/yakuz/front.svg"
  4586. }
  4587. }
  4588. },
  4589. [
  4590. {
  4591. name: "Small",
  4592. height: math.unit(5, "meters")
  4593. },
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(1500, "meters"),
  4597. default: true
  4598. },
  4599. {
  4600. name: "Megamacro",
  4601. height: math.unit(200, "km")
  4602. },
  4603. {
  4604. name: "Gigamacro",
  4605. height: math.unit(100000, "km")
  4606. }
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4611. {
  4612. front: {
  4613. height: math.unit(6, "feet"),
  4614. weight: math.unit(175, "lb"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/mirova/front.svg",
  4618. extra: 3334 / 3071,
  4619. bottom: 42 / 3375.6
  4620. }
  4621. }
  4622. },
  4623. [
  4624. {
  4625. name: "Small",
  4626. height: math.unit(5, "meters")
  4627. },
  4628. {
  4629. name: "Macro",
  4630. height: math.unit(900, "meters"),
  4631. default: true
  4632. },
  4633. {
  4634. name: "Megamacro",
  4635. height: math.unit(135, "km")
  4636. },
  4637. {
  4638. name: "Gigamacro",
  4639. height: math.unit(20000, "km")
  4640. }
  4641. ]
  4642. ))
  4643. characterMakers.push(() => makeCharacter(
  4644. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4645. {
  4646. side: {
  4647. height: math.unit(28.35, "feet"),
  4648. weight: math.unit(99.75, "tons"),
  4649. name: "Side",
  4650. image: {
  4651. source: "./media/characters/asana-mech/side.svg",
  4652. extra: 923 / 699,
  4653. bottom: 50 / 975
  4654. }
  4655. },
  4656. chaingun: {
  4657. height: math.unit(7, "feet"),
  4658. weight: math.unit(2400, "lb"),
  4659. name: "Chaingun",
  4660. image: {
  4661. source: "./media/characters/asana-mech/chaingun.svg"
  4662. }
  4663. },
  4664. laser: {
  4665. height: math.unit(7.12, "feet"),
  4666. weight: math.unit(2000, "lb"),
  4667. name: "Laser",
  4668. image: {
  4669. source: "./media/characters/asana-mech/laser.svg"
  4670. }
  4671. },
  4672. },
  4673. [
  4674. {
  4675. name: "Normal",
  4676. height: math.unit(28.35, "feet"),
  4677. default: true
  4678. },
  4679. {
  4680. name: "Macro",
  4681. height: math.unit(2500, "feet")
  4682. },
  4683. {
  4684. name: "Megamacro",
  4685. height: math.unit(25, "miles")
  4686. },
  4687. {
  4688. name: "Examacro",
  4689. height: math.unit(6e8, "lightyears")
  4690. },
  4691. ]
  4692. ))
  4693. characterMakers.push(() => makeCharacter(
  4694. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4695. {
  4696. front: {
  4697. height: math.unit(5, "meters"),
  4698. weight: math.unit(1000, "kg"),
  4699. name: "Front",
  4700. image: {
  4701. source: "./media/characters/asche/front.svg",
  4702. extra: 1258 / 1190,
  4703. bottom: 47 / 1305
  4704. }
  4705. },
  4706. frontUnderwear: {
  4707. height: math.unit(5, "meters"),
  4708. weight: math.unit(1000, "kg"),
  4709. name: "Front (Underwear)",
  4710. image: {
  4711. source: "./media/characters/asche/front-underwear.svg",
  4712. extra: 1258 / 1190,
  4713. bottom: 47 / 1305
  4714. }
  4715. },
  4716. frontDressed: {
  4717. height: math.unit(5, "meters"),
  4718. weight: math.unit(1000, "kg"),
  4719. name: "Front (Dressed)",
  4720. image: {
  4721. source: "./media/characters/asche/front-dressed.svg",
  4722. extra: 1258 / 1190,
  4723. bottom: 47 / 1305
  4724. }
  4725. },
  4726. frontArmor: {
  4727. height: math.unit(5, "meters"),
  4728. weight: math.unit(1000, "kg"),
  4729. name: "Front (Armored)",
  4730. image: {
  4731. source: "./media/characters/asche/front-armored.svg",
  4732. extra: 1374 / 1308,
  4733. bottom: 23 / 1397
  4734. }
  4735. },
  4736. mp724: {
  4737. height: math.unit(0.96, "meters"),
  4738. weight: math.unit(38, "kg"),
  4739. name: "H&K MP724",
  4740. image: {
  4741. source: "./media/characters/asche/h&k-mp724.svg"
  4742. }
  4743. },
  4744. side: {
  4745. height: math.unit(5, "meters"),
  4746. weight: math.unit(1000, "kg"),
  4747. name: "Side",
  4748. image: {
  4749. source: "./media/characters/asche/side.svg",
  4750. extra: 1717 / 1609,
  4751. bottom: 0.005
  4752. }
  4753. },
  4754. back: {
  4755. height: math.unit(5, "meters"),
  4756. weight: math.unit(1000, "kg"),
  4757. name: "Back",
  4758. image: {
  4759. source: "./media/characters/asche/back.svg",
  4760. extra: 1570 / 1501
  4761. }
  4762. },
  4763. },
  4764. [
  4765. {
  4766. name: "DEFCON 5",
  4767. height: math.unit(5, "meters")
  4768. },
  4769. {
  4770. name: "DEFCON 4",
  4771. height: math.unit(500, "meters"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "DEFCON 3",
  4776. height: math.unit(5, "km")
  4777. },
  4778. {
  4779. name: "DEFCON 2",
  4780. height: math.unit(500, "km")
  4781. },
  4782. {
  4783. name: "DEFCON 1",
  4784. height: math.unit(500000, "km")
  4785. },
  4786. {
  4787. name: "DEFCON 0",
  4788. height: math.unit(3, "gigaparsecs")
  4789. },
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(2, "meters"),
  4797. weight: math.unit(76, "kg"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/gale/front.svg"
  4801. }
  4802. },
  4803. frontAlt1: {
  4804. height: math.unit(2, "meters"),
  4805. weight: math.unit(76, "kg"),
  4806. name: "Front (Alt 1)",
  4807. image: {
  4808. source: "./media/characters/gale/front-alt-1.svg"
  4809. }
  4810. },
  4811. frontAlt2: {
  4812. height: math.unit(2, "meters"),
  4813. weight: math.unit(76, "kg"),
  4814. name: "Front (Alt 2)",
  4815. image: {
  4816. source: "./media/characters/gale/front-alt-2.svg"
  4817. }
  4818. },
  4819. },
  4820. [
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(7, "feet")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(150, "feet"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Macro+",
  4832. height: math.unit(300, "feet")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(5 + 10/12, "feet"),
  4841. weight: math.unit(67, "kg"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/draylen/front.svg",
  4845. extra: 832/777,
  4846. bottom: 85/917
  4847. }
  4848. }
  4849. },
  4850. [
  4851. {
  4852. name: "Normal",
  4853. height: math.unit(5 + 10/12, "feet")
  4854. },
  4855. {
  4856. name: "Macro",
  4857. height: math.unit(150, "feet"),
  4858. default: true
  4859. }
  4860. ]
  4861. ))
  4862. characterMakers.push(() => makeCharacter(
  4863. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4864. {
  4865. front: {
  4866. height: math.unit(7 + 9 / 12, "feet"),
  4867. weight: math.unit(379, "lbs"),
  4868. name: "Front",
  4869. image: {
  4870. source: "./media/characters/chez/front.svg"
  4871. }
  4872. },
  4873. side: {
  4874. height: math.unit(7 + 9 / 12, "feet"),
  4875. weight: math.unit(379, "lbs"),
  4876. name: "Side",
  4877. image: {
  4878. source: "./media/characters/chez/side.svg"
  4879. }
  4880. }
  4881. },
  4882. [
  4883. {
  4884. name: "Normal",
  4885. height: math.unit(7 + 9 / 12, "feet"),
  4886. default: true
  4887. },
  4888. {
  4889. name: "God King",
  4890. height: math.unit(9750000, "meters")
  4891. }
  4892. ]
  4893. ))
  4894. characterMakers.push(() => makeCharacter(
  4895. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4896. {
  4897. front: {
  4898. height: math.unit(6, "feet"),
  4899. weight: math.unit(275, "lbs"),
  4900. name: "Front",
  4901. image: {
  4902. source: "./media/characters/kaylum/front.svg",
  4903. bottom: 0.01,
  4904. extra: 1166 / 1031
  4905. }
  4906. },
  4907. frontWingless: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(275, "lbs"),
  4910. name: "Front (Wingless)",
  4911. image: {
  4912. source: "./media/characters/kaylum/front-wingless.svg",
  4913. bottom: 0.01,
  4914. extra: 1117 / 1031
  4915. }
  4916. }
  4917. },
  4918. [
  4919. {
  4920. name: "Normal",
  4921. height: math.unit(3.05, "meters")
  4922. },
  4923. {
  4924. name: "Master",
  4925. height: math.unit(5.5, "meters")
  4926. },
  4927. {
  4928. name: "Rampage",
  4929. height: math.unit(19, "meters")
  4930. },
  4931. {
  4932. name: "Macro Lite",
  4933. height: math.unit(37, "meters")
  4934. },
  4935. {
  4936. name: "Hyper Predator",
  4937. height: math.unit(61, "meters")
  4938. },
  4939. {
  4940. name: "Macro",
  4941. height: math.unit(138, "meters"),
  4942. default: true
  4943. }
  4944. ]
  4945. ))
  4946. characterMakers.push(() => makeCharacter(
  4947. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4948. {
  4949. front: {
  4950. height: math.unit(5 + 5 / 12, "feet"),
  4951. weight: math.unit(120, "lbs"),
  4952. name: "Front",
  4953. image: {
  4954. source: "./media/characters/geta/front.svg",
  4955. extra: 1003/933,
  4956. bottom: 21/1024
  4957. }
  4958. },
  4959. paw: {
  4960. height: math.unit(0.35, "feet"),
  4961. name: "Paw",
  4962. image: {
  4963. source: "./media/characters/geta/paw.svg"
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Micro",
  4970. height: math.unit(3, "inches"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Normal",
  4975. height: math.unit(5 + 5 / 12, "feet")
  4976. }
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4981. {
  4982. front: {
  4983. height: math.unit(6, "feet"),
  4984. weight: math.unit(300, "lbs"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/tyrnn/front.svg"
  4988. }
  4989. }
  4990. },
  4991. [
  4992. {
  4993. name: "Main Height",
  4994. height: math.unit(355, "feet"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Fave. Height",
  4999. height: math.unit(2400, "feet")
  5000. }
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(6, "feet"),
  5008. weight: math.unit(300, "lbs"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/appledectomy/front.svg"
  5012. }
  5013. }
  5014. },
  5015. [
  5016. {
  5017. name: "Macro",
  5018. height: math.unit(2500, "feet")
  5019. },
  5020. {
  5021. name: "Megamacro",
  5022. height: math.unit(50, "miles"),
  5023. default: true
  5024. },
  5025. {
  5026. name: "Gigamacro",
  5027. height: math.unit(5000, "miles")
  5028. },
  5029. {
  5030. name: "Teramacro",
  5031. height: math.unit(250000, "miles")
  5032. },
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5037. {
  5038. front: {
  5039. height: math.unit(6, "feet"),
  5040. weight: math.unit(200, "lbs"),
  5041. name: "Front",
  5042. image: {
  5043. source: "./media/characters/vulpes/front.svg",
  5044. extra: 573 / 543,
  5045. bottom: 0.033
  5046. }
  5047. },
  5048. side: {
  5049. height: math.unit(6, "feet"),
  5050. weight: math.unit(200, "lbs"),
  5051. name: "Side",
  5052. image: {
  5053. source: "./media/characters/vulpes/side.svg",
  5054. extra: 577 / 549,
  5055. bottom: 11 / 588
  5056. }
  5057. },
  5058. back: {
  5059. height: math.unit(6, "feet"),
  5060. weight: math.unit(200, "lbs"),
  5061. name: "Back",
  5062. image: {
  5063. source: "./media/characters/vulpes/back.svg",
  5064. extra: 573 / 549,
  5065. bottom: 20 / 593
  5066. }
  5067. },
  5068. feet: {
  5069. height: math.unit(1.276, "feet"),
  5070. name: "Feet",
  5071. image: {
  5072. source: "./media/characters/vulpes/feet.svg"
  5073. }
  5074. },
  5075. maw: {
  5076. height: math.unit(1.18, "feet"),
  5077. name: "Maw",
  5078. image: {
  5079. source: "./media/characters/vulpes/maw.svg"
  5080. }
  5081. },
  5082. },
  5083. [
  5084. {
  5085. name: "Micro",
  5086. height: math.unit(2, "inches")
  5087. },
  5088. {
  5089. name: "Normal",
  5090. height: math.unit(6.3, "feet")
  5091. },
  5092. {
  5093. name: "Macro",
  5094. height: math.unit(850, "feet")
  5095. },
  5096. {
  5097. name: "Megamacro",
  5098. height: math.unit(7500, "feet"),
  5099. default: true
  5100. },
  5101. {
  5102. name: "Gigamacro",
  5103. height: math.unit(570000, "miles")
  5104. }
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5109. {
  5110. front: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(210, "lbs"),
  5113. name: "Front",
  5114. image: {
  5115. source: "./media/characters/rain-fallen/front.svg"
  5116. }
  5117. },
  5118. side: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(210, "lbs"),
  5121. name: "Side",
  5122. image: {
  5123. source: "./media/characters/rain-fallen/side.svg"
  5124. }
  5125. },
  5126. back: {
  5127. height: math.unit(6, "feet"),
  5128. weight: math.unit(210, "lbs"),
  5129. name: "Back",
  5130. image: {
  5131. source: "./media/characters/rain-fallen/back.svg"
  5132. }
  5133. },
  5134. feral: {
  5135. height: math.unit(9, "feet"),
  5136. weight: math.unit(700, "lbs"),
  5137. name: "Feral",
  5138. image: {
  5139. source: "./media/characters/rain-fallen/feral.svg"
  5140. }
  5141. },
  5142. },
  5143. [
  5144. {
  5145. name: "Meddling with Mortals",
  5146. height: math.unit(8 + 8/12, "feet")
  5147. },
  5148. {
  5149. name: "Normal",
  5150. height: math.unit(5, "meter")
  5151. },
  5152. {
  5153. name: "Macro",
  5154. height: math.unit(150, "meter"),
  5155. default: true
  5156. },
  5157. {
  5158. name: "Megamacro",
  5159. height: math.unit(278e6, "meter")
  5160. },
  5161. {
  5162. name: "Gigamacro",
  5163. height: math.unit(2e9, "meter")
  5164. },
  5165. {
  5166. name: "Teramacro",
  5167. height: math.unit(8e12, "meter")
  5168. },
  5169. {
  5170. name: "Devourer",
  5171. height: math.unit(14, "zettameters")
  5172. },
  5173. {
  5174. name: "Scarlet King",
  5175. height: math.unit(18, "yottameters")
  5176. },
  5177. {
  5178. name: "Void",
  5179. height: math.unit(1e88, "yottameters")
  5180. }
  5181. ]
  5182. ))
  5183. characterMakers.push(() => makeCharacter(
  5184. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5185. {
  5186. standing: {
  5187. height: math.unit(6, "feet"),
  5188. weight: math.unit(180, "lbs"),
  5189. name: "Standing",
  5190. image: {
  5191. source: "./media/characters/zaakira/standing.svg",
  5192. extra: 1599/1504,
  5193. bottom: 39/1638
  5194. }
  5195. },
  5196. laying: {
  5197. height: math.unit(3.3, "feet"),
  5198. weight: math.unit(180, "lbs"),
  5199. name: "Laying",
  5200. image: {
  5201. source: "./media/characters/zaakira/laying.svg"
  5202. }
  5203. },
  5204. },
  5205. [
  5206. {
  5207. name: "Normal",
  5208. height: math.unit(12, "feet")
  5209. },
  5210. {
  5211. name: "Macro",
  5212. height: math.unit(279, "feet"),
  5213. default: true
  5214. }
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5219. {
  5220. femSfw: {
  5221. height: math.unit(8, "feet"),
  5222. weight: math.unit(350, "lb"),
  5223. name: "Fem",
  5224. image: {
  5225. source: "./media/characters/sigvald/fem-sfw.svg",
  5226. extra: 182 / 164,
  5227. bottom: 8.7 / 190.5
  5228. }
  5229. },
  5230. femNsfw: {
  5231. height: math.unit(8, "feet"),
  5232. weight: math.unit(350, "lb"),
  5233. name: "Fem (NSFW)",
  5234. image: {
  5235. source: "./media/characters/sigvald/fem-nsfw.svg",
  5236. extra: 182 / 164,
  5237. bottom: 8.7 / 190.5
  5238. }
  5239. },
  5240. maleNsfw: {
  5241. height: math.unit(8, "feet"),
  5242. weight: math.unit(350, "lb"),
  5243. name: "Male (NSFW)",
  5244. image: {
  5245. source: "./media/characters/sigvald/male-nsfw.svg",
  5246. extra: 182 / 164,
  5247. bottom: 8.7 / 190.5
  5248. }
  5249. },
  5250. hermNsfw: {
  5251. height: math.unit(8, "feet"),
  5252. weight: math.unit(350, "lb"),
  5253. name: "Herm (NSFW)",
  5254. image: {
  5255. source: "./media/characters/sigvald/herm-nsfw.svg",
  5256. extra: 182 / 164,
  5257. bottom: 8.7 / 190.5
  5258. }
  5259. },
  5260. dick: {
  5261. height: math.unit(2.36, "feet"),
  5262. name: "Dick",
  5263. image: {
  5264. source: "./media/characters/sigvald/dick.svg"
  5265. }
  5266. },
  5267. eye: {
  5268. height: math.unit(0.31, "feet"),
  5269. name: "Eye",
  5270. image: {
  5271. source: "./media/characters/sigvald/eye.svg"
  5272. }
  5273. },
  5274. mouth: {
  5275. height: math.unit(0.92, "feet"),
  5276. name: "Mouth",
  5277. image: {
  5278. source: "./media/characters/sigvald/mouth.svg"
  5279. }
  5280. },
  5281. paws: {
  5282. height: math.unit(2.2, "feet"),
  5283. name: "Paws",
  5284. image: {
  5285. source: "./media/characters/sigvald/paws.svg"
  5286. }
  5287. }
  5288. },
  5289. [
  5290. {
  5291. name: "Normal",
  5292. height: math.unit(8, "feet")
  5293. },
  5294. {
  5295. name: "Large",
  5296. height: math.unit(12, "feet")
  5297. },
  5298. {
  5299. name: "Larger",
  5300. height: math.unit(20, "feet")
  5301. },
  5302. {
  5303. name: "Macro",
  5304. height: math.unit(150, "feet")
  5305. },
  5306. {
  5307. name: "Macro+",
  5308. height: math.unit(200, "feet"),
  5309. default: true
  5310. },
  5311. ]
  5312. ))
  5313. characterMakers.push(() => makeCharacter(
  5314. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5315. {
  5316. side: {
  5317. height: math.unit(12, "feet"),
  5318. weight: math.unit(2000, "kg"),
  5319. name: "Side",
  5320. image: {
  5321. source: "./media/characters/scott/side.svg",
  5322. extra: 754 / 724,
  5323. bottom: 0.069
  5324. }
  5325. },
  5326. upright: {
  5327. height: math.unit(12, "feet"),
  5328. weight: math.unit(2000, "kg"),
  5329. name: "Upright",
  5330. image: {
  5331. source: "./media/characters/scott/upright.svg",
  5332. extra: 3881 / 3722,
  5333. bottom: 0.05
  5334. }
  5335. },
  5336. },
  5337. [
  5338. {
  5339. name: "Normal",
  5340. height: math.unit(12, "feet"),
  5341. default: true
  5342. },
  5343. ]
  5344. ))
  5345. characterMakers.push(() => makeCharacter(
  5346. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5347. {
  5348. side: {
  5349. height: math.unit(8, "meters"),
  5350. weight: math.unit(84755, "lbs"),
  5351. name: "Side",
  5352. image: {
  5353. source: "./media/characters/tobias/side.svg",
  5354. extra: 1474 / 1096,
  5355. bottom: 38.9 / 1513.1235
  5356. }
  5357. },
  5358. },
  5359. [
  5360. {
  5361. name: "Normal",
  5362. height: math.unit(8, "meters"),
  5363. default: true
  5364. },
  5365. ]
  5366. ))
  5367. characterMakers.push(() => makeCharacter(
  5368. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5369. {
  5370. front: {
  5371. height: math.unit(5.5, "feet"),
  5372. weight: math.unit(400, "lbs"),
  5373. name: "Front",
  5374. image: {
  5375. source: "./media/characters/kieran/front.svg",
  5376. extra: 2694 / 2364,
  5377. bottom: 217 / 2908
  5378. }
  5379. },
  5380. side: {
  5381. height: math.unit(5.5, "feet"),
  5382. weight: math.unit(400, "lbs"),
  5383. name: "Side",
  5384. image: {
  5385. source: "./media/characters/kieran/side.svg",
  5386. extra: 875 / 777,
  5387. bottom: 84.6 / 959
  5388. }
  5389. },
  5390. },
  5391. [
  5392. {
  5393. name: "Normal",
  5394. height: math.unit(5.5, "feet"),
  5395. default: true
  5396. },
  5397. ]
  5398. ))
  5399. characterMakers.push(() => makeCharacter(
  5400. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5401. {
  5402. side: {
  5403. height: math.unit(2, "meters"),
  5404. weight: math.unit(70, "kg"),
  5405. name: "Side",
  5406. image: {
  5407. source: "./media/characters/sanya/side.svg",
  5408. bottom: 0.02,
  5409. extra: 1.02
  5410. }
  5411. },
  5412. },
  5413. [
  5414. {
  5415. name: "Small",
  5416. height: math.unit(2, "meters")
  5417. },
  5418. {
  5419. name: "Normal",
  5420. height: math.unit(3, "meters")
  5421. },
  5422. {
  5423. name: "Macro",
  5424. height: math.unit(16, "meters"),
  5425. default: true
  5426. },
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5431. {
  5432. front: {
  5433. height: math.unit(2, "meters"),
  5434. weight: math.unit(120, "kg"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/miranda/front.svg",
  5438. extra: 195 / 185,
  5439. bottom: 10.9 / 206.5
  5440. }
  5441. },
  5442. back: {
  5443. height: math.unit(2, "meters"),
  5444. weight: math.unit(120, "kg"),
  5445. name: "Back",
  5446. image: {
  5447. source: "./media/characters/miranda/back.svg",
  5448. extra: 201 / 193,
  5449. bottom: 2.3 / 203.7
  5450. }
  5451. },
  5452. },
  5453. [
  5454. {
  5455. name: "Normal",
  5456. height: math.unit(10, "feet"),
  5457. default: true
  5458. }
  5459. ]
  5460. ))
  5461. characterMakers.push(() => makeCharacter(
  5462. { name: "James", species: ["deer"], tags: ["anthro"] },
  5463. {
  5464. side: {
  5465. height: math.unit(2, "meters"),
  5466. weight: math.unit(100, "kg"),
  5467. name: "Front",
  5468. image: {
  5469. source: "./media/characters/james/front.svg",
  5470. extra: 10 / 8.5
  5471. }
  5472. },
  5473. },
  5474. [
  5475. {
  5476. name: "Normal",
  5477. height: math.unit(8.5, "feet"),
  5478. default: true
  5479. }
  5480. ]
  5481. ))
  5482. characterMakers.push(() => makeCharacter(
  5483. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5484. {
  5485. side: {
  5486. height: math.unit(9.5, "feet"),
  5487. weight: math.unit(2500, "lbs"),
  5488. name: "Side",
  5489. image: {
  5490. source: "./media/characters/heather/side.svg"
  5491. }
  5492. },
  5493. },
  5494. [
  5495. {
  5496. name: "Normal",
  5497. height: math.unit(9.5, "feet"),
  5498. default: true
  5499. }
  5500. ]
  5501. ))
  5502. characterMakers.push(() => makeCharacter(
  5503. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5504. {
  5505. side: {
  5506. height: math.unit(6.5, "feet"),
  5507. weight: math.unit(400, "lbs"),
  5508. name: "Side",
  5509. image: {
  5510. source: "./media/characters/lukas/side.svg",
  5511. extra: 7.25 / 6.5
  5512. }
  5513. },
  5514. },
  5515. [
  5516. {
  5517. name: "Normal",
  5518. height: math.unit(6.5, "feet"),
  5519. default: true
  5520. }
  5521. ]
  5522. ))
  5523. characterMakers.push(() => makeCharacter(
  5524. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5525. {
  5526. side: {
  5527. height: math.unit(5, "feet"),
  5528. weight: math.unit(3000, "lbs"),
  5529. name: "Side",
  5530. image: {
  5531. source: "./media/characters/louise/side.svg"
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Normal",
  5538. height: math.unit(5, "feet"),
  5539. default: true
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5545. {
  5546. side: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(150, "lbs"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/ramona/side.svg",
  5552. extra: 871/854,
  5553. bottom: 41/912
  5554. }
  5555. },
  5556. },
  5557. [
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(5.3, "meters"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(20, "stories")
  5566. },
  5567. {
  5568. name: "Macro+",
  5569. height: math.unit(50, "stories")
  5570. },
  5571. ]
  5572. ))
  5573. characterMakers.push(() => makeCharacter(
  5574. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5575. {
  5576. standing: {
  5577. height: math.unit(5.75, "feet"),
  5578. weight: math.unit(160, "lbs"),
  5579. name: "Standing",
  5580. image: {
  5581. source: "./media/characters/deerpuff/standing.svg",
  5582. extra: 682 / 624
  5583. }
  5584. },
  5585. sitting: {
  5586. height: math.unit(5.75 / 1.79, "feet"),
  5587. weight: math.unit(160, "lbs"),
  5588. name: "Sitting",
  5589. image: {
  5590. source: "./media/characters/deerpuff/sitting.svg",
  5591. bottom: 44 / 400,
  5592. extra: 1
  5593. }
  5594. },
  5595. taurLaying: {
  5596. height: math.unit(6, "feet"),
  5597. weight: math.unit(400, "lbs"),
  5598. name: "Taur (Laying)",
  5599. image: {
  5600. source: "./media/characters/deerpuff/taur-laying.svg"
  5601. }
  5602. },
  5603. },
  5604. [
  5605. {
  5606. name: "Puffball",
  5607. height: math.unit(6, "inches")
  5608. },
  5609. {
  5610. name: "Normalpuff",
  5611. height: math.unit(5.75, "feet")
  5612. },
  5613. {
  5614. name: "Macropuff",
  5615. height: math.unit(1500, "feet"),
  5616. default: true
  5617. },
  5618. {
  5619. name: "Megapuff",
  5620. height: math.unit(500, "miles")
  5621. },
  5622. {
  5623. name: "Gigapuff",
  5624. height: math.unit(250000, "miles")
  5625. },
  5626. {
  5627. name: "Omegapuff",
  5628. height: math.unit(1000, "lightyears")
  5629. },
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5634. {
  5635. stomping: {
  5636. height: math.unit(6, "feet"),
  5637. weight: math.unit(170, "lbs"),
  5638. name: "Stomping",
  5639. image: {
  5640. source: "./media/characters/vivian/stomping.svg"
  5641. }
  5642. },
  5643. sitting: {
  5644. height: math.unit(6 / 1.75, "feet"),
  5645. weight: math.unit(170, "lbs"),
  5646. name: "Sitting",
  5647. image: {
  5648. source: "./media/characters/vivian/sitting.svg",
  5649. bottom: 1 / 6.4,
  5650. extra: 1,
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(7, "feet"),
  5658. default: true
  5659. },
  5660. {
  5661. name: "Macro",
  5662. height: math.unit(10, "stories")
  5663. },
  5664. {
  5665. name: "Macro+",
  5666. height: math.unit(30, "stories")
  5667. },
  5668. {
  5669. name: "Megamacro",
  5670. height: math.unit(10, "miles")
  5671. },
  5672. {
  5673. name: "Megamacro+",
  5674. height: math.unit(2750000, "meters")
  5675. },
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(160, "lbs"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/prince/front.svg",
  5687. extra: 3400 / 3000
  5688. }
  5689. },
  5690. jumping: {
  5691. height: math.unit(6, "feet"),
  5692. weight: math.unit(160, "lbs"),
  5693. name: "Jumping",
  5694. image: {
  5695. source: "./media/characters/prince/jump.svg",
  5696. extra: 2555 / 2134
  5697. }
  5698. },
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(7.75, "feet"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "Not cute",
  5708. height: math.unit(17, "feet")
  5709. },
  5710. {
  5711. name: "I said NOT",
  5712. height: math.unit(91, "feet")
  5713. },
  5714. {
  5715. name: "Please stop",
  5716. height: math.unit(560, "feet")
  5717. },
  5718. {
  5719. name: "What have you done",
  5720. height: math.unit(2200, "feet")
  5721. },
  5722. {
  5723. name: "Deer God",
  5724. height: math.unit(3.6, "miles")
  5725. },
  5726. ]
  5727. ))
  5728. characterMakers.push(() => makeCharacter(
  5729. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5730. {
  5731. standing: {
  5732. height: math.unit(6, "feet"),
  5733. weight: math.unit(300, "lbs"),
  5734. name: "Standing",
  5735. image: {
  5736. source: "./media/characters/psymon/standing.svg",
  5737. extra: 1888 / 1810,
  5738. bottom: 0.05
  5739. }
  5740. },
  5741. slithering: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(300, "lbs"),
  5744. name: "Slithering",
  5745. image: {
  5746. source: "./media/characters/psymon/slithering.svg",
  5747. extra: 1330 / 1224
  5748. }
  5749. },
  5750. slitheringAlt: {
  5751. height: math.unit(6, "feet"),
  5752. weight: math.unit(300, "lbs"),
  5753. name: "Slithering (Alt)",
  5754. image: {
  5755. source: "./media/characters/psymon/slithering-alt.svg",
  5756. extra: 1330 / 1224
  5757. }
  5758. },
  5759. },
  5760. [
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(11.25, "feet"),
  5764. default: true
  5765. },
  5766. {
  5767. name: "Large",
  5768. height: math.unit(27, "feet")
  5769. },
  5770. {
  5771. name: "Giant",
  5772. height: math.unit(87, "feet")
  5773. },
  5774. {
  5775. name: "Macro",
  5776. height: math.unit(365, "feet")
  5777. },
  5778. {
  5779. name: "Megamacro",
  5780. height: math.unit(3, "miles")
  5781. },
  5782. {
  5783. name: "World Serpent",
  5784. height: math.unit(8000, "miles")
  5785. },
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5790. {
  5791. front: {
  5792. height: math.unit(6, "feet"),
  5793. weight: math.unit(180, "lbs"),
  5794. name: "Front",
  5795. image: {
  5796. source: "./media/characters/daimos/front.svg",
  5797. extra: 4160 / 3897,
  5798. bottom: 0.021
  5799. }
  5800. }
  5801. },
  5802. [
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(8, "feet"),
  5806. default: true
  5807. },
  5808. {
  5809. name: "Big Dog",
  5810. height: math.unit(22, "feet")
  5811. },
  5812. {
  5813. name: "Macro",
  5814. height: math.unit(127, "feet")
  5815. },
  5816. {
  5817. name: "Megamacro",
  5818. height: math.unit(3600, "feet")
  5819. },
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5824. {
  5825. side: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(180, "lbs"),
  5828. name: "Side",
  5829. image: {
  5830. source: "./media/characters/blake/side.svg",
  5831. extra: 1212 / 1120,
  5832. bottom: 0.05
  5833. }
  5834. },
  5835. crouched: {
  5836. height: math.unit(6 * 0.57, "feet"),
  5837. weight: math.unit(180, "lbs"),
  5838. name: "Crouched",
  5839. image: {
  5840. source: "./media/characters/blake/crouched.svg",
  5841. extra: 840 / 587,
  5842. bottom: 0.04
  5843. }
  5844. },
  5845. bent: {
  5846. height: math.unit(6 * 0.75, "feet"),
  5847. weight: math.unit(180, "lbs"),
  5848. name: "Bent",
  5849. image: {
  5850. source: "./media/characters/blake/bent.svg",
  5851. extra: 592 / 544,
  5852. bottom: 0.035
  5853. }
  5854. },
  5855. },
  5856. [
  5857. {
  5858. name: "Normal",
  5859. height: math.unit(8 + 1 / 6, "feet"),
  5860. default: true
  5861. },
  5862. {
  5863. name: "Big Backside",
  5864. height: math.unit(37, "feet")
  5865. },
  5866. {
  5867. name: "Subway Shredder",
  5868. height: math.unit(72, "feet")
  5869. },
  5870. {
  5871. name: "City Carver",
  5872. height: math.unit(1675, "feet")
  5873. },
  5874. {
  5875. name: "Tectonic Tweaker",
  5876. height: math.unit(2300, "miles")
  5877. },
  5878. ]
  5879. ))
  5880. characterMakers.push(() => makeCharacter(
  5881. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5882. {
  5883. front: {
  5884. height: math.unit(6, "feet"),
  5885. weight: math.unit(180, "lbs"),
  5886. name: "Front",
  5887. image: {
  5888. source: "./media/characters/guisetto/front.svg",
  5889. extra: 856 / 817,
  5890. bottom: 0.06
  5891. }
  5892. },
  5893. airborne: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(180, "lbs"),
  5896. name: "Airborne",
  5897. image: {
  5898. source: "./media/characters/guisetto/airborne.svg",
  5899. extra: 584 / 525
  5900. }
  5901. },
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(10 + 11 / 12, "feet"),
  5907. default: true
  5908. },
  5909. {
  5910. name: "Large",
  5911. height: math.unit(35, "feet")
  5912. },
  5913. {
  5914. name: "Macro",
  5915. height: math.unit(475, "feet")
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(180, "lbs"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/luxor/front.svg",
  5928. extra: 2940 / 2152
  5929. }
  5930. },
  5931. back: {
  5932. height: math.unit(6, "feet"),
  5933. weight: math.unit(180, "lbs"),
  5934. name: "Back",
  5935. image: {
  5936. source: "./media/characters/luxor/back.svg",
  5937. extra: 1083 / 960
  5938. }
  5939. },
  5940. },
  5941. [
  5942. {
  5943. name: "Normal",
  5944. height: math.unit(5 + 5 / 6, "feet"),
  5945. default: true
  5946. },
  5947. {
  5948. name: "Lamp",
  5949. height: math.unit(50, "feet")
  5950. },
  5951. {
  5952. name: "Lämp",
  5953. height: math.unit(300, "feet")
  5954. },
  5955. {
  5956. name: "The sun is a lamp",
  5957. height: math.unit(250000, "miles")
  5958. },
  5959. ]
  5960. ))
  5961. characterMakers.push(() => makeCharacter(
  5962. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5963. {
  5964. front: {
  5965. height: math.unit(6, "feet"),
  5966. weight: math.unit(50, "lbs"),
  5967. name: "Front",
  5968. image: {
  5969. source: "./media/characters/huoyan/front.svg"
  5970. }
  5971. },
  5972. side: {
  5973. height: math.unit(6, "feet"),
  5974. weight: math.unit(180, "lbs"),
  5975. name: "Side",
  5976. image: {
  5977. source: "./media/characters/huoyan/side.svg"
  5978. }
  5979. },
  5980. },
  5981. [
  5982. {
  5983. name: "Chef",
  5984. height: math.unit(9, "feet")
  5985. },
  5986. {
  5987. name: "Normal",
  5988. height: math.unit(65, "feet"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Macro",
  5993. height: math.unit(780, "feet")
  5994. },
  5995. {
  5996. name: "Flaming Mountain",
  5997. height: math.unit(4.8, "miles")
  5998. },
  5999. {
  6000. name: "Celestial",
  6001. height: math.unit(765000, "miles")
  6002. },
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6007. {
  6008. front: {
  6009. height: math.unit(5 + 3 / 4, "feet"),
  6010. weight: math.unit(120, "lbs"),
  6011. name: "Front",
  6012. image: {
  6013. source: "./media/characters/tails/front.svg"
  6014. }
  6015. }
  6016. },
  6017. [
  6018. {
  6019. name: "Normal",
  6020. height: math.unit(5 + 3 / 4, "feet"),
  6021. default: true
  6022. }
  6023. ]
  6024. ))
  6025. characterMakers.push(() => makeCharacter(
  6026. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6027. {
  6028. front: {
  6029. height: math.unit(4, "feet"),
  6030. weight: math.unit(50, "lbs"),
  6031. name: "Front",
  6032. image: {
  6033. source: "./media/characters/rainy/front.svg"
  6034. }
  6035. }
  6036. },
  6037. [
  6038. {
  6039. name: "Macro",
  6040. height: math.unit(800, "feet"),
  6041. default: true
  6042. }
  6043. ]
  6044. ))
  6045. characterMakers.push(() => makeCharacter(
  6046. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6047. {
  6048. front: {
  6049. height: math.unit(6, "feet"),
  6050. weight: math.unit(150, "lbs"),
  6051. name: "Front",
  6052. image: {
  6053. source: "./media/characters/rainier/front.svg"
  6054. }
  6055. }
  6056. },
  6057. [
  6058. {
  6059. name: "Micro",
  6060. height: math.unit(2, "mm"),
  6061. default: true
  6062. }
  6063. ]
  6064. ))
  6065. characterMakers.push(() => makeCharacter(
  6066. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6067. {
  6068. front: {
  6069. height: math.unit(8 + 4/12, "feet"),
  6070. weight: math.unit(450, "kilograms"),
  6071. volume: math.unit(5, "cups"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/andy-renard/front.svg",
  6075. extra: 1839/1726,
  6076. bottom: 134/1973
  6077. }
  6078. },
  6079. back: {
  6080. height: math.unit(8 + 4/12, "feet"),
  6081. weight: math.unit(450, "kilograms"),
  6082. volume: math.unit(5, "cups"),
  6083. name: "Back",
  6084. image: {
  6085. source: "./media/characters/andy-renard/back.svg",
  6086. extra: 1838/1710,
  6087. bottom: 105/1943
  6088. }
  6089. },
  6090. },
  6091. [
  6092. {
  6093. name: "Tall",
  6094. height: math.unit(8 + 4/12, "feet")
  6095. },
  6096. {
  6097. name: "Mini Macro",
  6098. height: math.unit(15, "feet"),
  6099. default: true
  6100. },
  6101. {
  6102. name: "Macro",
  6103. height: math.unit(100, "feet")
  6104. },
  6105. {
  6106. name: "Mega Macro",
  6107. height: math.unit(1000, "feet")
  6108. },
  6109. {
  6110. name: "Giga Macro",
  6111. height: math.unit(10, "miles")
  6112. },
  6113. {
  6114. name: "God Macro",
  6115. height: math.unit(1, "multiverse")
  6116. },
  6117. ]
  6118. ))
  6119. characterMakers.push(() => makeCharacter(
  6120. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6121. {
  6122. front: {
  6123. height: math.unit(6, "feet"),
  6124. weight: math.unit(210, "lbs"),
  6125. name: "Front",
  6126. image: {
  6127. source: "./media/characters/cimmaron/front-sfw.svg",
  6128. extra: 701 / 676,
  6129. bottom: 0.046
  6130. }
  6131. },
  6132. back: {
  6133. height: math.unit(6, "feet"),
  6134. weight: math.unit(210, "lbs"),
  6135. name: "Back",
  6136. image: {
  6137. source: "./media/characters/cimmaron/back-sfw.svg",
  6138. extra: 701 / 676,
  6139. bottom: 0.046
  6140. }
  6141. },
  6142. frontNsfw: {
  6143. height: math.unit(6, "feet"),
  6144. weight: math.unit(210, "lbs"),
  6145. name: "Front (NSFW)",
  6146. image: {
  6147. source: "./media/characters/cimmaron/front-nsfw.svg",
  6148. extra: 701 / 676,
  6149. bottom: 0.046
  6150. }
  6151. },
  6152. backNsfw: {
  6153. height: math.unit(6, "feet"),
  6154. weight: math.unit(210, "lbs"),
  6155. name: "Back (NSFW)",
  6156. image: {
  6157. source: "./media/characters/cimmaron/back-nsfw.svg",
  6158. extra: 701 / 676,
  6159. bottom: 0.046
  6160. }
  6161. },
  6162. dick: {
  6163. height: math.unit(1.714, "feet"),
  6164. name: "Dick",
  6165. image: {
  6166. source: "./media/characters/cimmaron/dick.svg"
  6167. }
  6168. },
  6169. },
  6170. [
  6171. {
  6172. name: "Normal",
  6173. height: math.unit(6, "feet"),
  6174. default: true
  6175. },
  6176. {
  6177. name: "Macro Mayor",
  6178. height: math.unit(350, "meters")
  6179. },
  6180. ]
  6181. ))
  6182. characterMakers.push(() => makeCharacter(
  6183. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6184. {
  6185. front: {
  6186. height: math.unit(6, "feet"),
  6187. weight: math.unit(200, "lbs"),
  6188. name: "Front",
  6189. image: {
  6190. source: "./media/characters/akari/front.svg",
  6191. extra: 962 / 901,
  6192. bottom: 0.04
  6193. }
  6194. }
  6195. },
  6196. [
  6197. {
  6198. name: "Micro",
  6199. height: math.unit(5, "inches"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(7, "feet")
  6205. },
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(6, "feet"),
  6213. weight: math.unit(140, "lbs"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/cynosura/front.svg",
  6217. extra: 896 / 847
  6218. }
  6219. },
  6220. back: {
  6221. height: math.unit(6, "feet"),
  6222. weight: math.unit(140, "lbs"),
  6223. name: "Back",
  6224. image: {
  6225. source: "./media/characters/cynosura/back.svg",
  6226. extra: 1365 / 1250
  6227. }
  6228. },
  6229. },
  6230. [
  6231. {
  6232. name: "Micro",
  6233. height: math.unit(4, "inches")
  6234. },
  6235. {
  6236. name: "Normal",
  6237. height: math.unit(5.75, "feet"),
  6238. default: true
  6239. },
  6240. {
  6241. name: "Tall",
  6242. height: math.unit(10, "feet")
  6243. },
  6244. {
  6245. name: "Big",
  6246. height: math.unit(20, "feet")
  6247. },
  6248. {
  6249. name: "Macro",
  6250. height: math.unit(50, "feet")
  6251. },
  6252. ]
  6253. ))
  6254. characterMakers.push(() => makeCharacter(
  6255. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6256. {
  6257. front: {
  6258. height: math.unit(13 + 2/12, "feet"),
  6259. weight: math.unit(800, "kg"),
  6260. name: "Front",
  6261. image: {
  6262. source: "./media/characters/gin/front.svg",
  6263. extra: 1312/1191,
  6264. bottom: 45/1357
  6265. }
  6266. },
  6267. mouth: {
  6268. height: math.unit(2.39 * 1.8, "feet"),
  6269. name: "Mouth",
  6270. image: {
  6271. source: "./media/characters/gin/mouth.svg"
  6272. }
  6273. },
  6274. hand: {
  6275. height: math.unit(1.57 * 2.19, "feet"),
  6276. name: "Hand",
  6277. image: {
  6278. source: "./media/characters/gin/hand.svg"
  6279. }
  6280. },
  6281. foot: {
  6282. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6283. name: "Foot",
  6284. image: {
  6285. source: "./media/characters/gin/foot.svg"
  6286. }
  6287. },
  6288. sole: {
  6289. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6290. name: "Sole",
  6291. image: {
  6292. source: "./media/characters/gin/sole.svg"
  6293. }
  6294. },
  6295. },
  6296. [
  6297. {
  6298. name: "Very Small",
  6299. height: math.unit(13 + 2 / 12, "feet")
  6300. },
  6301. {
  6302. name: "Micro",
  6303. height: math.unit(600, "miles")
  6304. },
  6305. {
  6306. name: "Regular",
  6307. height: math.unit(20, "earths"),
  6308. default: true
  6309. },
  6310. {
  6311. name: "Macro",
  6312. height: math.unit(2.2, "solarradii")
  6313. },
  6314. {
  6315. name: "Teramacro",
  6316. height: math.unit(1.2, "galaxies")
  6317. },
  6318. {
  6319. name: "Omegamacro",
  6320. height: math.unit(200, "universes")
  6321. },
  6322. ]
  6323. ))
  6324. characterMakers.push(() => makeCharacter(
  6325. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6326. {
  6327. front: {
  6328. height: math.unit(6 + 1 / 6, "feet"),
  6329. weight: math.unit(178, "lbs"),
  6330. name: "Front",
  6331. image: {
  6332. source: "./media/characters/guy/front.svg"
  6333. }
  6334. }
  6335. },
  6336. [
  6337. {
  6338. name: "Normal",
  6339. height: math.unit(6 + 1 / 6, "feet"),
  6340. default: true
  6341. },
  6342. {
  6343. name: "Large",
  6344. height: math.unit(25 + 7 / 12, "feet")
  6345. },
  6346. {
  6347. name: "Macro",
  6348. height: math.unit(60 + 9 / 12, "feet")
  6349. },
  6350. {
  6351. name: "Macro+",
  6352. height: math.unit(246, "feet")
  6353. },
  6354. {
  6355. name: "Macro++",
  6356. height: math.unit(878, "feet")
  6357. }
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(9, "feet"),
  6365. weight: math.unit(800, "lbs"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/tiberius/front.svg",
  6369. extra: 2295 / 2071
  6370. }
  6371. },
  6372. back: {
  6373. height: math.unit(9, "feet"),
  6374. weight: math.unit(800, "lbs"),
  6375. name: "Back",
  6376. image: {
  6377. source: "./media/characters/tiberius/back.svg",
  6378. extra: 2373 / 2160
  6379. }
  6380. },
  6381. },
  6382. [
  6383. {
  6384. name: "Normal",
  6385. height: math.unit(9, "feet"),
  6386. default: true
  6387. }
  6388. ]
  6389. ))
  6390. characterMakers.push(() => makeCharacter(
  6391. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6392. {
  6393. front: {
  6394. height: math.unit(6, "feet"),
  6395. weight: math.unit(600, "lbs"),
  6396. name: "Front",
  6397. image: {
  6398. source: "./media/characters/surgo/front.svg",
  6399. extra: 3591 / 2227
  6400. }
  6401. },
  6402. back: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(600, "lbs"),
  6405. name: "Back",
  6406. image: {
  6407. source: "./media/characters/surgo/back.svg",
  6408. extra: 3557 / 2228
  6409. }
  6410. },
  6411. laying: {
  6412. height: math.unit(6 * 0.85, "feet"),
  6413. weight: math.unit(600, "lbs"),
  6414. name: "Laying",
  6415. image: {
  6416. source: "./media/characters/surgo/laying.svg"
  6417. }
  6418. },
  6419. },
  6420. [
  6421. {
  6422. name: "Normal",
  6423. height: math.unit(6, "feet"),
  6424. default: true
  6425. }
  6426. ]
  6427. ))
  6428. characterMakers.push(() => makeCharacter(
  6429. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6430. {
  6431. side: {
  6432. height: math.unit(6, "feet"),
  6433. weight: math.unit(150, "lbs"),
  6434. name: "Side",
  6435. image: {
  6436. source: "./media/characters/cibus/side.svg",
  6437. extra: 800 / 400
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(6, "feet"),
  6445. default: true
  6446. }
  6447. ]
  6448. ))
  6449. characterMakers.push(() => makeCharacter(
  6450. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6451. {
  6452. front: {
  6453. height: math.unit(6, "feet"),
  6454. weight: math.unit(240, "lbs"),
  6455. name: "Front",
  6456. image: {
  6457. source: "./media/characters/nibbles/front.svg"
  6458. }
  6459. },
  6460. side: {
  6461. height: math.unit(6, "feet"),
  6462. weight: math.unit(240, "lbs"),
  6463. name: "Side",
  6464. image: {
  6465. source: "./media/characters/nibbles/side.svg"
  6466. }
  6467. },
  6468. },
  6469. [
  6470. {
  6471. name: "Normal",
  6472. height: math.unit(9, "feet"),
  6473. default: true
  6474. }
  6475. ]
  6476. ))
  6477. characterMakers.push(() => makeCharacter(
  6478. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6479. {
  6480. side: {
  6481. height: math.unit(5 + 1 / 6, "feet"),
  6482. weight: math.unit(130, "lbs"),
  6483. name: "Side",
  6484. image: {
  6485. source: "./media/characters/rikky/side.svg",
  6486. extra: 851 / 801
  6487. }
  6488. },
  6489. },
  6490. [
  6491. {
  6492. name: "Normal",
  6493. height: math.unit(5 + 1 / 6, "feet")
  6494. },
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(152, "feet"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Megamacro",
  6502. height: math.unit(7, "miles")
  6503. }
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6508. {
  6509. side: {
  6510. height: math.unit(370, "cm"),
  6511. weight: math.unit(350, "lbs"),
  6512. name: "Side",
  6513. image: {
  6514. source: "./media/characters/malfressa/side.svg"
  6515. }
  6516. },
  6517. walking: {
  6518. height: math.unit(370, "cm"),
  6519. weight: math.unit(350, "lbs"),
  6520. name: "Walking",
  6521. image: {
  6522. source: "./media/characters/malfressa/walking.svg"
  6523. }
  6524. },
  6525. feral: {
  6526. height: math.unit(2500, "cm"),
  6527. weight: math.unit(100000, "lbs"),
  6528. name: "Feral",
  6529. image: {
  6530. source: "./media/characters/malfressa/feral.svg",
  6531. extra: 2108 / 837,
  6532. bottom: 0.02
  6533. }
  6534. },
  6535. },
  6536. [
  6537. {
  6538. name: "Normal",
  6539. height: math.unit(370, "cm")
  6540. },
  6541. {
  6542. name: "Macro",
  6543. height: math.unit(300, "meters"),
  6544. default: true
  6545. }
  6546. ]
  6547. ))
  6548. characterMakers.push(() => makeCharacter(
  6549. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6550. {
  6551. front: {
  6552. height: math.unit(6, "feet"),
  6553. weight: math.unit(60, "kg"),
  6554. name: "Front",
  6555. image: {
  6556. source: "./media/characters/jaro/front.svg",
  6557. extra: 845/817,
  6558. bottom: 45/890
  6559. }
  6560. },
  6561. back: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(60, "kg"),
  6564. name: "Back",
  6565. image: {
  6566. source: "./media/characters/jaro/back.svg",
  6567. extra: 847/817,
  6568. bottom: 34/881
  6569. }
  6570. },
  6571. },
  6572. [
  6573. {
  6574. name: "Micro",
  6575. height: math.unit(7, "inches")
  6576. },
  6577. {
  6578. name: "Normal",
  6579. height: math.unit(5.5, "feet"),
  6580. default: true
  6581. },
  6582. {
  6583. name: "Minimacro",
  6584. height: math.unit(20, "feet")
  6585. },
  6586. {
  6587. name: "Macro",
  6588. height: math.unit(200, "meters")
  6589. }
  6590. ]
  6591. ))
  6592. characterMakers.push(() => makeCharacter(
  6593. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6594. {
  6595. front: {
  6596. height: math.unit(6, "feet"),
  6597. weight: math.unit(195, "lb"),
  6598. name: "Front",
  6599. image: {
  6600. source: "./media/characters/rogue/front.svg"
  6601. }
  6602. },
  6603. },
  6604. [
  6605. {
  6606. name: "Macro",
  6607. height: math.unit(90, "feet"),
  6608. default: true
  6609. },
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6614. {
  6615. standing: {
  6616. height: math.unit(5 + 8 / 12, "feet"),
  6617. weight: math.unit(140, "lb"),
  6618. name: "Standing",
  6619. image: {
  6620. source: "./media/characters/piper/standing.svg",
  6621. extra: 1440/1284,
  6622. bottom: 66/1506
  6623. }
  6624. },
  6625. running: {
  6626. height: math.unit(5 + 8 / 12, "feet"),
  6627. weight: math.unit(140, "lb"),
  6628. name: "Running",
  6629. image: {
  6630. source: "./media/characters/piper/running.svg",
  6631. extra: 3948/3655,
  6632. bottom: 0/3948
  6633. }
  6634. },
  6635. sole: {
  6636. height: math.unit(0.81, "feet"),
  6637. weight: math.unit(2, "kg"),
  6638. name: "Sole",
  6639. image: {
  6640. source: "./media/characters/piper/sole.svg"
  6641. }
  6642. },
  6643. nipple: {
  6644. height: math.unit(0.25, "feet"),
  6645. weight: math.unit(1.5, "lb"),
  6646. name: "Nipple",
  6647. image: {
  6648. source: "./media/characters/piper/nipple.svg"
  6649. }
  6650. },
  6651. head: {
  6652. height: math.unit(1.1, "feet"),
  6653. name: "Head",
  6654. image: {
  6655. source: "./media/characters/piper/head.svg"
  6656. }
  6657. },
  6658. },
  6659. [
  6660. {
  6661. name: "Micro",
  6662. height: math.unit(2, "inches")
  6663. },
  6664. {
  6665. name: "Normal",
  6666. height: math.unit(5 + 8 / 12, "feet")
  6667. },
  6668. {
  6669. name: "Macro",
  6670. height: math.unit(250, "feet"),
  6671. default: true
  6672. },
  6673. {
  6674. name: "Megamacro",
  6675. height: math.unit(7, "miles")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(6, "feet"),
  6684. weight: math.unit(220, "lb"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/gemini/front.svg"
  6688. }
  6689. },
  6690. back: {
  6691. height: math.unit(6, "feet"),
  6692. weight: math.unit(220, "lb"),
  6693. name: "Back",
  6694. image: {
  6695. source: "./media/characters/gemini/back.svg"
  6696. }
  6697. },
  6698. kneeling: {
  6699. height: math.unit(6 / 1.5, "feet"),
  6700. weight: math.unit(220, "lb"),
  6701. name: "Kneeling",
  6702. image: {
  6703. source: "./media/characters/gemini/kneeling.svg",
  6704. bottom: 0.02
  6705. }
  6706. },
  6707. },
  6708. [
  6709. {
  6710. name: "Macro",
  6711. height: math.unit(300, "meters"),
  6712. default: true
  6713. },
  6714. {
  6715. name: "Megamacro",
  6716. height: math.unit(6900, "meters")
  6717. },
  6718. ]
  6719. ))
  6720. characterMakers.push(() => makeCharacter(
  6721. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6722. {
  6723. anthro: {
  6724. height: math.unit(2.35, "meters"),
  6725. weight: math.unit(73, "kg"),
  6726. name: "Anthro",
  6727. image: {
  6728. source: "./media/characters/alicia/anthro.svg",
  6729. extra: 2571 / 2385,
  6730. bottom: 75 / 2648
  6731. }
  6732. },
  6733. paw: {
  6734. height: math.unit(1.32, "feet"),
  6735. name: "Paw",
  6736. image: {
  6737. source: "./media/characters/alicia/paw.svg"
  6738. }
  6739. },
  6740. feral: {
  6741. height: math.unit(1.69, "meters"),
  6742. weight: math.unit(73, "kg"),
  6743. name: "Feral",
  6744. image: {
  6745. source: "./media/characters/alicia/feral.svg",
  6746. extra: 2123 / 1715,
  6747. bottom: 222 / 2349
  6748. }
  6749. },
  6750. },
  6751. [
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(2.35, "meters")
  6755. },
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(60, "meters"),
  6759. default: true
  6760. },
  6761. {
  6762. name: "Megamacro",
  6763. height: math.unit(10000, "kilometers")
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(7, "feet"),
  6772. weight: math.unit(250, "lbs"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/archy/front.svg"
  6776. }
  6777. }
  6778. },
  6779. [
  6780. {
  6781. name: "Micro",
  6782. height: math.unit(1, "inch")
  6783. },
  6784. {
  6785. name: "Shorty",
  6786. height: math.unit(5, "feet")
  6787. },
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(7, "feet")
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(600, "meters"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Megamacro",
  6799. height: math.unit(1, "mile")
  6800. },
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6805. {
  6806. front: {
  6807. height: math.unit(1.65, "meters"),
  6808. weight: math.unit(74, "kg"),
  6809. name: "Front",
  6810. image: {
  6811. source: "./media/characters/berri/front.svg",
  6812. extra: 857 / 837,
  6813. bottom: 18 / 877
  6814. }
  6815. },
  6816. bum: {
  6817. height: math.unit(1.46, "feet"),
  6818. name: "Bum",
  6819. image: {
  6820. source: "./media/characters/berri/bum.svg"
  6821. }
  6822. },
  6823. mouth: {
  6824. height: math.unit(0.44, "feet"),
  6825. name: "Mouth",
  6826. image: {
  6827. source: "./media/characters/berri/mouth.svg"
  6828. }
  6829. },
  6830. paw: {
  6831. height: math.unit(0.826, "feet"),
  6832. name: "Paw",
  6833. image: {
  6834. source: "./media/characters/berri/paw.svg"
  6835. }
  6836. },
  6837. },
  6838. [
  6839. {
  6840. name: "Normal",
  6841. height: math.unit(1.65, "meters")
  6842. },
  6843. {
  6844. name: "Macro",
  6845. height: math.unit(60, "m"),
  6846. default: true
  6847. },
  6848. {
  6849. name: "Megamacro",
  6850. height: math.unit(9.213, "km")
  6851. },
  6852. {
  6853. name: "Planet Eater",
  6854. height: math.unit(489, "megameters")
  6855. },
  6856. {
  6857. name: "Teramacro",
  6858. height: math.unit(2471635000000, "meters")
  6859. },
  6860. {
  6861. name: "Examacro",
  6862. height: math.unit(8.0624e+26, "meters")
  6863. }
  6864. ]
  6865. ))
  6866. characterMakers.push(() => makeCharacter(
  6867. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6868. {
  6869. front: {
  6870. height: math.unit(1.72, "meters"),
  6871. weight: math.unit(68, "kg"),
  6872. name: "Front",
  6873. image: {
  6874. source: "./media/characters/lexi/front.svg"
  6875. }
  6876. }
  6877. },
  6878. [
  6879. {
  6880. name: "Very Smol",
  6881. height: math.unit(10, "mm")
  6882. },
  6883. {
  6884. name: "Micro",
  6885. height: math.unit(6.8, "cm"),
  6886. default: true
  6887. },
  6888. {
  6889. name: "Normal",
  6890. height: math.unit(1.72, "m")
  6891. }
  6892. ]
  6893. ))
  6894. characterMakers.push(() => makeCharacter(
  6895. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6896. {
  6897. front: {
  6898. height: math.unit(1.69, "meters"),
  6899. weight: math.unit(68, "kg"),
  6900. name: "Front",
  6901. image: {
  6902. source: "./media/characters/martin/front.svg",
  6903. extra: 596 / 581
  6904. }
  6905. }
  6906. },
  6907. [
  6908. {
  6909. name: "Micro",
  6910. height: math.unit(6.85, "cm"),
  6911. default: true
  6912. },
  6913. {
  6914. name: "Normal",
  6915. height: math.unit(1.69, "m")
  6916. }
  6917. ]
  6918. ))
  6919. characterMakers.push(() => makeCharacter(
  6920. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6921. {
  6922. front: {
  6923. height: math.unit(1.69, "meters"),
  6924. weight: math.unit(68, "kg"),
  6925. name: "Front",
  6926. image: {
  6927. source: "./media/characters/juno/front.svg"
  6928. }
  6929. }
  6930. },
  6931. [
  6932. {
  6933. name: "Micro",
  6934. height: math.unit(7, "cm")
  6935. },
  6936. {
  6937. name: "Normal",
  6938. height: math.unit(1.89, "m")
  6939. },
  6940. {
  6941. name: "Macro",
  6942. height: math.unit(353, "meters"),
  6943. default: true
  6944. }
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(1.93, "meters"),
  6952. weight: math.unit(83, "kg"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/samantha/front.svg"
  6956. }
  6957. },
  6958. frontClothed: {
  6959. height: math.unit(1.93, "meters"),
  6960. weight: math.unit(83, "kg"),
  6961. name: "Front (Clothed)",
  6962. image: {
  6963. source: "./media/characters/samantha/front-clothed.svg"
  6964. }
  6965. },
  6966. back: {
  6967. height: math.unit(1.93, "meters"),
  6968. weight: math.unit(83, "kg"),
  6969. name: "Back",
  6970. image: {
  6971. source: "./media/characters/samantha/back.svg"
  6972. }
  6973. },
  6974. },
  6975. [
  6976. {
  6977. name: "Normal",
  6978. height: math.unit(1.93, "m")
  6979. },
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(74, "meters"),
  6983. default: true
  6984. },
  6985. {
  6986. name: "Macro+",
  6987. height: math.unit(223, "meters"),
  6988. },
  6989. {
  6990. name: "Megamacro",
  6991. height: math.unit(8381, "meters"),
  6992. },
  6993. {
  6994. name: "Megamacro+",
  6995. height: math.unit(12000, "kilometers")
  6996. },
  6997. ]
  6998. ))
  6999. characterMakers.push(() => makeCharacter(
  7000. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7001. {
  7002. front: {
  7003. height: math.unit(1.92, "meters"),
  7004. weight: math.unit(80, "kg"),
  7005. name: "Front",
  7006. image: {
  7007. source: "./media/characters/dr-clay/front.svg"
  7008. }
  7009. },
  7010. frontClothed: {
  7011. height: math.unit(1.92, "meters"),
  7012. weight: math.unit(80, "kg"),
  7013. name: "Front (Clothed)",
  7014. image: {
  7015. source: "./media/characters/dr-clay/front-clothed.svg"
  7016. }
  7017. }
  7018. },
  7019. [
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(1.92, "m")
  7023. },
  7024. {
  7025. name: "Macro",
  7026. height: math.unit(214, "meters"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Macro+",
  7031. height: math.unit(12.237, "meters"),
  7032. },
  7033. {
  7034. name: "Megamacro",
  7035. height: math.unit(557, "megameters"),
  7036. },
  7037. {
  7038. name: "Unimaginable",
  7039. height: math.unit(120e9, "lightyears")
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(2, "meters"),
  7048. weight: math.unit(80, "kg"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7052. }
  7053. }
  7054. },
  7055. [
  7056. {
  7057. name: "Teramacro",
  7058. height: math.unit(500000, "lightyears"),
  7059. default: true
  7060. },
  7061. ]
  7062. ))
  7063. characterMakers.push(() => makeCharacter(
  7064. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7065. {
  7066. crux: {
  7067. height: math.unit(2, "meters"),
  7068. weight: math.unit(150, "kg"),
  7069. name: "Crux",
  7070. image: {
  7071. source: "./media/characters/vemus/crux.svg",
  7072. extra: 1074/936,
  7073. bottom: 23/1097
  7074. }
  7075. },
  7076. skunkTanuki: {
  7077. height: math.unit(2, "meters"),
  7078. weight: math.unit(150, "kg"),
  7079. name: "Skunk-Tanuki",
  7080. image: {
  7081. source: "./media/characters/vemus/skunk-tanuki.svg",
  7082. extra: 926/893,
  7083. bottom: 20/946
  7084. }
  7085. },
  7086. },
  7087. [
  7088. {
  7089. name: "Normal",
  7090. height: math.unit(3.75, "meters"),
  7091. default: true
  7092. },
  7093. {
  7094. name: "Big",
  7095. height: math.unit(8, "meters")
  7096. },
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(100, "meters")
  7100. },
  7101. {
  7102. name: "Macro+",
  7103. height: math.unit(1500, "meters")
  7104. },
  7105. {
  7106. name: "Stellar",
  7107. height: math.unit(14e8, "meters")
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7113. {
  7114. front: {
  7115. height: math.unit(2, "meters"),
  7116. weight: math.unit(70, "kg"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/beherit/front.svg",
  7120. extra: 1234/1109,
  7121. bottom: 55/1289
  7122. }
  7123. }
  7124. },
  7125. [
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(6, "feet")
  7129. },
  7130. {
  7131. name: "Lorg",
  7132. height: math.unit(25, "feet"),
  7133. default: true
  7134. },
  7135. {
  7136. name: "Lorger",
  7137. height: math.unit(75, "feet")
  7138. },
  7139. {
  7140. name: "Macro",
  7141. height: math.unit(200, "meters")
  7142. },
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(2, "meters"),
  7150. weight: math.unit(150, "kg"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/everett/front.svg",
  7154. extra: 1017/866,
  7155. bottom: 86/1103
  7156. }
  7157. },
  7158. paw: {
  7159. height: math.unit(2 / 3.6, "meters"),
  7160. name: "Paw",
  7161. image: {
  7162. source: "./media/characters/everett/paw.svg"
  7163. }
  7164. },
  7165. },
  7166. [
  7167. {
  7168. name: "Normal",
  7169. height: math.unit(15, "feet"),
  7170. default: true
  7171. },
  7172. {
  7173. name: "Lorg",
  7174. height: math.unit(70, "feet"),
  7175. default: true
  7176. },
  7177. {
  7178. name: "Lorger",
  7179. height: math.unit(250, "feet")
  7180. },
  7181. {
  7182. name: "Macro",
  7183. height: math.unit(500, "meters")
  7184. },
  7185. ]
  7186. ))
  7187. characterMakers.push(() => makeCharacter(
  7188. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7189. {
  7190. front: {
  7191. height: math.unit(2, "meters"),
  7192. weight: math.unit(86, "kg"),
  7193. name: "Front",
  7194. image: {
  7195. source: "./media/characters/rose/front.svg",
  7196. extra: 1785/1636,
  7197. bottom: 30/1815
  7198. },
  7199. form: "liom",
  7200. default: true
  7201. },
  7202. frontSporty: {
  7203. height: math.unit(2, "meters"),
  7204. weight: math.unit(86, "kg"),
  7205. name: "Front (Sporty)",
  7206. image: {
  7207. source: "./media/characters/rose/front-sporty.svg",
  7208. extra: 350/335,
  7209. bottom: 10/360
  7210. },
  7211. form: "liom"
  7212. },
  7213. frontAlt: {
  7214. height: math.unit(1.6, "meters"),
  7215. weight: math.unit(86, "kg"),
  7216. name: "Front (Alt)",
  7217. image: {
  7218. source: "./media/characters/rose/front-alt.svg",
  7219. extra: 299/283,
  7220. bottom: 3/302
  7221. },
  7222. form: "liom"
  7223. },
  7224. plush: {
  7225. height: math.unit(2, "meters"),
  7226. weight: math.unit(86/3, "kg"),
  7227. name: "Plush",
  7228. image: {
  7229. source: "./media/characters/rose/plush.svg",
  7230. extra: 361/337,
  7231. bottom: 11/372
  7232. },
  7233. form: "plush",
  7234. default: true
  7235. },
  7236. faeStanding: {
  7237. height: math.unit(10, "cm"),
  7238. weight: math.unit(10, "grams"),
  7239. name: "Standing",
  7240. image: {
  7241. source: "./media/characters/rose/fae-standing.svg",
  7242. extra: 1189/1060,
  7243. bottom: 27/1216
  7244. },
  7245. form: "fae",
  7246. default: true
  7247. },
  7248. faeSitting: {
  7249. height: math.unit(5, "cm"),
  7250. weight: math.unit(10, "grams"),
  7251. name: "Sitting",
  7252. image: {
  7253. source: "./media/characters/rose/fae-sitting.svg",
  7254. extra: 737/577,
  7255. bottom: 356/1093
  7256. },
  7257. form: "fae"
  7258. },
  7259. faePaw: {
  7260. height: math.unit(1.35, "cm"),
  7261. name: "Paw",
  7262. image: {
  7263. source: "./media/characters/rose/fae-paw.svg"
  7264. },
  7265. form: "fae"
  7266. },
  7267. },
  7268. [
  7269. {
  7270. name: "True Micro",
  7271. height: math.unit(9, "cm"),
  7272. form: "liom"
  7273. },
  7274. {
  7275. name: "Micro",
  7276. height: math.unit(16, "cm"),
  7277. form: "liom"
  7278. },
  7279. {
  7280. name: "Normal",
  7281. height: math.unit(1.85, "meters"),
  7282. default: true,
  7283. form: "liom"
  7284. },
  7285. {
  7286. name: "Mini-Macro",
  7287. height: math.unit(5, "meters"),
  7288. form: "liom"
  7289. },
  7290. {
  7291. name: "Macro",
  7292. height: math.unit(15, "meters"),
  7293. form: "liom"
  7294. },
  7295. {
  7296. name: "True Macro",
  7297. height: math.unit(40, "meters"),
  7298. form: "liom"
  7299. },
  7300. {
  7301. name: "City Scale",
  7302. height: math.unit(1, "km"),
  7303. form: "liom"
  7304. },
  7305. {
  7306. name: "Plushie",
  7307. height: math.unit(9, "cm"),
  7308. form: "plush",
  7309. default: true
  7310. },
  7311. {
  7312. name: "Fae",
  7313. height: math.unit(10, "cm"),
  7314. form: "fae",
  7315. default: true
  7316. },
  7317. ],
  7318. {
  7319. "liom": {
  7320. name: "Liom"
  7321. },
  7322. "plush": {
  7323. name: "Plush"
  7324. },
  7325. "fae": {
  7326. name: "Fae Fox",
  7327. default: true
  7328. }
  7329. }
  7330. ))
  7331. characterMakers.push(() => makeCharacter(
  7332. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7333. {
  7334. front: {
  7335. height: math.unit(2, "meters"),
  7336. weight: math.unit(350, "lbs"),
  7337. name: "Front",
  7338. image: {
  7339. source: "./media/characters/regal/front.svg"
  7340. }
  7341. },
  7342. back: {
  7343. height: math.unit(2, "meters"),
  7344. weight: math.unit(350, "lbs"),
  7345. name: "Back",
  7346. image: {
  7347. source: "./media/characters/regal/back.svg"
  7348. }
  7349. },
  7350. },
  7351. [
  7352. {
  7353. name: "Macro",
  7354. height: math.unit(350, "feet"),
  7355. default: true
  7356. }
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7361. {
  7362. front: {
  7363. height: math.unit(4 + 11 / 12, "feet"),
  7364. weight: math.unit(100, "lbs"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/opal/front.svg"
  7368. }
  7369. },
  7370. frontAlt: {
  7371. height: math.unit(4 + 11 / 12, "feet"),
  7372. weight: math.unit(100, "lbs"),
  7373. name: "Front (Alt)",
  7374. image: {
  7375. source: "./media/characters/opal/front-alt.svg"
  7376. }
  7377. },
  7378. },
  7379. [
  7380. {
  7381. name: "Small",
  7382. height: math.unit(4 + 11 / 12, "feet")
  7383. },
  7384. {
  7385. name: "Normal",
  7386. height: math.unit(20, "feet"),
  7387. default: true
  7388. },
  7389. {
  7390. name: "Macro",
  7391. height: math.unit(120, "feet")
  7392. },
  7393. {
  7394. name: "Megamacro",
  7395. height: math.unit(80, "miles")
  7396. },
  7397. {
  7398. name: "True Size",
  7399. height: math.unit(100000, "lightyears")
  7400. },
  7401. ]
  7402. ))
  7403. characterMakers.push(() => makeCharacter(
  7404. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7405. {
  7406. front: {
  7407. height: math.unit(6, "feet"),
  7408. weight: math.unit(200, "lbs"),
  7409. name: "Front",
  7410. image: {
  7411. source: "./media/characters/vector-wuff/front.svg"
  7412. }
  7413. }
  7414. },
  7415. [
  7416. {
  7417. name: "Normal",
  7418. height: math.unit(2.8, "meters")
  7419. },
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(450, "meters"),
  7423. default: true
  7424. },
  7425. {
  7426. name: "Megamacro",
  7427. height: math.unit(15, "kilometers")
  7428. }
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7433. {
  7434. front: {
  7435. height: math.unit(6, "feet"),
  7436. weight: math.unit(256, "lbs"),
  7437. name: "Front",
  7438. image: {
  7439. source: "./media/characters/dannik/front.svg"
  7440. }
  7441. }
  7442. },
  7443. [
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(69.57, "meters"),
  7447. default: true
  7448. },
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7453. {
  7454. front: {
  7455. height: math.unit(6, "feet"),
  7456. weight: math.unit(120, "lbs"),
  7457. name: "Front",
  7458. image: {
  7459. source: "./media/characters/azura-saharah/front.svg"
  7460. }
  7461. },
  7462. back: {
  7463. height: math.unit(6, "feet"),
  7464. weight: math.unit(120, "lbs"),
  7465. name: "Back",
  7466. image: {
  7467. source: "./media/characters/azura-saharah/back.svg"
  7468. }
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "Macro",
  7474. height: math.unit(100, "feet"),
  7475. default: true
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7481. {
  7482. side: {
  7483. height: math.unit(5 + 4 / 12, "feet"),
  7484. weight: math.unit(163, "lbs"),
  7485. name: "Side",
  7486. image: {
  7487. source: "./media/characters/kennedy/side.svg"
  7488. }
  7489. }
  7490. },
  7491. [
  7492. {
  7493. name: "Standard Doggo",
  7494. height: math.unit(5 + 4 / 12, "feet")
  7495. },
  7496. {
  7497. name: "Big Doggo",
  7498. height: math.unit(25 + 3 / 12, "feet"),
  7499. default: true
  7500. },
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7505. {
  7506. front: {
  7507. height: math.unit(5 + 5/12, "feet"),
  7508. weight: math.unit(100, "lbs"),
  7509. name: "Front",
  7510. image: {
  7511. source: "./media/characters/odios-de-lunar/front.svg",
  7512. extra: 1468/1323,
  7513. bottom: 22/1490
  7514. }
  7515. }
  7516. },
  7517. [
  7518. {
  7519. name: "Micro",
  7520. height: math.unit(3, "inches")
  7521. },
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(5.5, "feet"),
  7525. default: true
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(100, "feet")
  7530. },
  7531. ]
  7532. ))
  7533. characterMakers.push(() => makeCharacter(
  7534. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7535. {
  7536. back: {
  7537. height: math.unit(6, "feet"),
  7538. weight: math.unit(220, "lbs"),
  7539. name: "Back",
  7540. image: {
  7541. source: "./media/characters/mandake/back.svg"
  7542. }
  7543. }
  7544. },
  7545. [
  7546. {
  7547. name: "Normal",
  7548. height: math.unit(7, "feet"),
  7549. default: true
  7550. },
  7551. {
  7552. name: "Macro",
  7553. height: math.unit(78, "feet")
  7554. },
  7555. {
  7556. name: "Macro+",
  7557. height: math.unit(300, "meters")
  7558. },
  7559. {
  7560. name: "Macro++",
  7561. height: math.unit(2400, "feet")
  7562. },
  7563. {
  7564. name: "Megamacro",
  7565. height: math.unit(5167, "meters")
  7566. },
  7567. {
  7568. name: "Gigamacro",
  7569. height: math.unit(41769, "miles")
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(6, "feet"),
  7578. weight: math.unit(120, "lbs"),
  7579. name: "Front",
  7580. image: {
  7581. source: "./media/characters/yozey/front.svg"
  7582. }
  7583. },
  7584. frontAlt: {
  7585. height: math.unit(6, "feet"),
  7586. weight: math.unit(120, "lbs"),
  7587. name: "Front (Alt)",
  7588. image: {
  7589. source: "./media/characters/yozey/front-alt.svg"
  7590. }
  7591. },
  7592. side: {
  7593. height: math.unit(6, "feet"),
  7594. weight: math.unit(120, "lbs"),
  7595. name: "Side",
  7596. image: {
  7597. source: "./media/characters/yozey/side.svg"
  7598. }
  7599. },
  7600. },
  7601. [
  7602. {
  7603. name: "Micro",
  7604. height: math.unit(3, "inches"),
  7605. default: true
  7606. },
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(6, "feet")
  7610. }
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7615. {
  7616. front: {
  7617. height: math.unit(6, "feet"),
  7618. weight: math.unit(103, "lbs"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/valeska-voss/front.svg"
  7622. }
  7623. }
  7624. },
  7625. [
  7626. {
  7627. name: "Mini-Sized Sub",
  7628. height: math.unit(3.1, "inches")
  7629. },
  7630. {
  7631. name: "Mid-Sized Sub",
  7632. height: math.unit(6.2, "inches")
  7633. },
  7634. {
  7635. name: "Full-Sized Sub",
  7636. height: math.unit(9.3, "inches")
  7637. },
  7638. {
  7639. name: "Normal",
  7640. height: math.unit(5 + 2 / 12, "foot"),
  7641. default: true
  7642. },
  7643. ]
  7644. ))
  7645. characterMakers.push(() => makeCharacter(
  7646. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7647. {
  7648. front: {
  7649. height: math.unit(6, "feet"),
  7650. weight: math.unit(160, "lbs"),
  7651. name: "Front",
  7652. image: {
  7653. source: "./media/characters/gene-zeta/front.svg",
  7654. extra: 3006 / 2826,
  7655. bottom: 182 / 3188
  7656. }
  7657. }
  7658. },
  7659. [
  7660. {
  7661. name: "Micro",
  7662. height: math.unit(6, "inches")
  7663. },
  7664. {
  7665. name: "Normal",
  7666. height: math.unit(5 + 11 / 12, "foot"),
  7667. default: true
  7668. },
  7669. {
  7670. name: "Macro",
  7671. height: math.unit(140, "feet")
  7672. },
  7673. {
  7674. name: "Supercharged",
  7675. height: math.unit(2500, "feet")
  7676. },
  7677. ]
  7678. ))
  7679. characterMakers.push(() => makeCharacter(
  7680. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7681. {
  7682. front: {
  7683. height: math.unit(6, "feet"),
  7684. weight: math.unit(350, "lbs"),
  7685. name: "Front",
  7686. image: {
  7687. source: "./media/characters/razinox/front.svg",
  7688. extra: 1686 / 1548,
  7689. bottom: 28.2 / 1868
  7690. }
  7691. },
  7692. back: {
  7693. height: math.unit(6, "feet"),
  7694. weight: math.unit(350, "lbs"),
  7695. name: "Back",
  7696. image: {
  7697. source: "./media/characters/razinox/back.svg",
  7698. extra: 1660 / 1590,
  7699. bottom: 15 / 1665
  7700. }
  7701. },
  7702. },
  7703. [
  7704. {
  7705. name: "Normal",
  7706. height: math.unit(10 + 8 / 12, "foot")
  7707. },
  7708. {
  7709. name: "Minimacro",
  7710. height: math.unit(15, "foot")
  7711. },
  7712. {
  7713. name: "Macro",
  7714. height: math.unit(60, "foot"),
  7715. default: true
  7716. },
  7717. {
  7718. name: "Megamacro",
  7719. height: math.unit(5, "miles")
  7720. },
  7721. {
  7722. name: "Gigamacro",
  7723. height: math.unit(6000, "miles")
  7724. },
  7725. ]
  7726. ))
  7727. characterMakers.push(() => makeCharacter(
  7728. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7729. {
  7730. front: {
  7731. height: math.unit(6, "feet"),
  7732. weight: math.unit(150, "lbs"),
  7733. name: "Front",
  7734. image: {
  7735. source: "./media/characters/cobalt/front.svg"
  7736. }
  7737. }
  7738. },
  7739. [
  7740. {
  7741. name: "Normal",
  7742. height: math.unit(8 + 1 / 12, "foot")
  7743. },
  7744. {
  7745. name: "Macro",
  7746. height: math.unit(111, "foot"),
  7747. default: true
  7748. },
  7749. {
  7750. name: "Supracosmic",
  7751. height: math.unit(1e42, "feet")
  7752. },
  7753. ]
  7754. ))
  7755. characterMakers.push(() => makeCharacter(
  7756. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7757. {
  7758. front: {
  7759. height: math.unit(5, "inches"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/amanda/front.svg",
  7763. extra: 926/791,
  7764. bottom: 38/964
  7765. }
  7766. },
  7767. back: {
  7768. height: math.unit(5, "inches"),
  7769. name: "Back",
  7770. image: {
  7771. source: "./media/characters/amanda/back.svg",
  7772. extra: 909/805,
  7773. bottom: 43/952
  7774. }
  7775. },
  7776. },
  7777. [
  7778. {
  7779. name: "Micro",
  7780. height: math.unit(5, "inches"),
  7781. default: true
  7782. },
  7783. ]
  7784. ))
  7785. characterMakers.push(() => makeCharacter(
  7786. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7787. {
  7788. front: {
  7789. height: math.unit(2.75, "meters"),
  7790. weight: math.unit(1200, "lb"),
  7791. name: "Front",
  7792. image: {
  7793. source: "./media/characters/teal/front.svg",
  7794. extra: 2463 / 2320,
  7795. bottom: 166 / 2629
  7796. }
  7797. },
  7798. back: {
  7799. height: math.unit(2.75, "meters"),
  7800. weight: math.unit(1200, "lb"),
  7801. name: "Back",
  7802. image: {
  7803. source: "./media/characters/teal/back.svg",
  7804. extra: 2580 / 2489,
  7805. bottom: 151 / 2731
  7806. }
  7807. },
  7808. sitting: {
  7809. height: math.unit(1.9, "meters"),
  7810. weight: math.unit(1200, "lb"),
  7811. name: "Sitting",
  7812. image: {
  7813. source: "./media/characters/teal/sitting.svg",
  7814. extra: 623 / 590,
  7815. bottom: 121 / 744
  7816. }
  7817. },
  7818. standing: {
  7819. height: math.unit(2.75, "meters"),
  7820. weight: math.unit(1200, "lb"),
  7821. name: "Standing",
  7822. image: {
  7823. source: "./media/characters/teal/standing.svg",
  7824. extra: 923 / 893,
  7825. bottom: 60 / 983
  7826. }
  7827. },
  7828. stretching: {
  7829. height: math.unit(3.65, "meters"),
  7830. weight: math.unit(1200, "lb"),
  7831. name: "Stretching",
  7832. image: {
  7833. source: "./media/characters/teal/stretching.svg",
  7834. extra: 1276 / 1244,
  7835. bottom: 0 / 1276
  7836. }
  7837. },
  7838. legged: {
  7839. height: math.unit(1.3, "meters"),
  7840. weight: math.unit(100, "lb"),
  7841. name: "Legged",
  7842. image: {
  7843. source: "./media/characters/teal/legged.svg",
  7844. extra: 462 / 437,
  7845. bottom: 24 / 486
  7846. }
  7847. },
  7848. naga: {
  7849. height: math.unit(5.4, "meters"),
  7850. weight: math.unit(4000, "lb"),
  7851. name: "Naga",
  7852. image: {
  7853. source: "./media/characters/teal/naga.svg",
  7854. extra: 1902 / 1858,
  7855. bottom: 0 / 1902
  7856. }
  7857. },
  7858. hand: {
  7859. height: math.unit(0.52, "meters"),
  7860. name: "Hand",
  7861. image: {
  7862. source: "./media/characters/teal/hand.svg"
  7863. }
  7864. },
  7865. maw: {
  7866. height: math.unit(0.43, "meters"),
  7867. name: "Maw",
  7868. image: {
  7869. source: "./media/characters/teal/maw.svg"
  7870. }
  7871. },
  7872. slit: {
  7873. height: math.unit(0.25, "meters"),
  7874. name: "Slit",
  7875. image: {
  7876. source: "./media/characters/teal/slit.svg"
  7877. }
  7878. },
  7879. },
  7880. [
  7881. {
  7882. name: "Normal",
  7883. height: math.unit(2.75, "meters"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(300, "feet")
  7889. },
  7890. {
  7891. name: "Macro+",
  7892. height: math.unit(2000, "feet")
  7893. },
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7898. {
  7899. frontCat: {
  7900. height: math.unit(6, "feet"),
  7901. weight: math.unit(180, "lbs"),
  7902. name: "Front (Cat)",
  7903. image: {
  7904. source: "./media/characters/ravin-amulet/front-cat.svg"
  7905. }
  7906. },
  7907. frontCatAlt: {
  7908. height: math.unit(6, "feet"),
  7909. weight: math.unit(180, "lbs"),
  7910. name: "Front (Alt, Cat)",
  7911. image: {
  7912. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7913. }
  7914. },
  7915. frontWerewolf: {
  7916. height: math.unit(6 * 1.2, "feet"),
  7917. weight: math.unit(225, "lbs"),
  7918. name: "Front (Werewolf)",
  7919. image: {
  7920. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7921. }
  7922. },
  7923. backWerewolf: {
  7924. height: math.unit(6 * 1.2, "feet"),
  7925. weight: math.unit(225, "lbs"),
  7926. name: "Back (Werewolf)",
  7927. image: {
  7928. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7929. }
  7930. },
  7931. },
  7932. [
  7933. {
  7934. name: "Nano",
  7935. height: math.unit(1, "micrometer")
  7936. },
  7937. {
  7938. name: "Micro",
  7939. height: math.unit(1, "inch")
  7940. },
  7941. {
  7942. name: "Normal",
  7943. height: math.unit(6, "feet"),
  7944. default: true
  7945. },
  7946. {
  7947. name: "Macro",
  7948. height: math.unit(60, "feet")
  7949. }
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7954. {
  7955. front: {
  7956. height: math.unit(6, "feet"),
  7957. weight: math.unit(165, "lbs"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/fluoresce/front.svg"
  7961. }
  7962. }
  7963. },
  7964. [
  7965. {
  7966. name: "Micro",
  7967. height: math.unit(6, "cm")
  7968. },
  7969. {
  7970. name: "Normal",
  7971. height: math.unit(5 + 7 / 12, "feet"),
  7972. default: true
  7973. },
  7974. {
  7975. name: "Macro",
  7976. height: math.unit(56, "feet")
  7977. },
  7978. {
  7979. name: "Megamacro",
  7980. height: math.unit(1.9, "miles")
  7981. },
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7986. {
  7987. front: {
  7988. height: math.unit(9 + 6 / 12, "feet"),
  7989. weight: math.unit(523, "lbs"),
  7990. name: "Side",
  7991. image: {
  7992. source: "./media/characters/aurora/side.svg"
  7993. }
  7994. }
  7995. },
  7996. [
  7997. {
  7998. name: "Normal",
  7999. height: math.unit(9 + 6 / 12, "feet")
  8000. },
  8001. {
  8002. name: "Macro",
  8003. height: math.unit(96, "feet"),
  8004. default: true
  8005. },
  8006. {
  8007. name: "Macro+",
  8008. height: math.unit(243, "feet")
  8009. },
  8010. ]
  8011. ))
  8012. characterMakers.push(() => makeCharacter(
  8013. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8014. {
  8015. front: {
  8016. height: math.unit(194, "cm"),
  8017. weight: math.unit(90, "kg"),
  8018. name: "Front",
  8019. image: {
  8020. source: "./media/characters/ranek/front.svg",
  8021. extra: 1862/1791,
  8022. bottom: 80/1942
  8023. }
  8024. },
  8025. back: {
  8026. height: math.unit(194, "cm"),
  8027. weight: math.unit(90, "kg"),
  8028. name: "Back",
  8029. image: {
  8030. source: "./media/characters/ranek/back.svg",
  8031. extra: 1853/1787,
  8032. bottom: 74/1927
  8033. }
  8034. },
  8035. feral: {
  8036. height: math.unit(30, "cm"),
  8037. weight: math.unit(1.6, "lbs"),
  8038. name: "Feral",
  8039. image: {
  8040. source: "./media/characters/ranek/feral.svg",
  8041. extra: 990/631,
  8042. bottom: 29/1019
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Normal",
  8049. height: math.unit(194, "cm"),
  8050. default: true
  8051. },
  8052. {
  8053. name: "Macro",
  8054. height: math.unit(100, "meters")
  8055. },
  8056. ]
  8057. ))
  8058. characterMakers.push(() => makeCharacter(
  8059. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8060. {
  8061. front: {
  8062. height: math.unit(5 + 6 / 12, "feet"),
  8063. weight: math.unit(153, "lbs"),
  8064. name: "Front",
  8065. image: {
  8066. source: "./media/characters/andrew-cooper/front.svg"
  8067. }
  8068. },
  8069. },
  8070. [
  8071. {
  8072. name: "Nano",
  8073. height: math.unit(1, "mm")
  8074. },
  8075. {
  8076. name: "Micro",
  8077. height: math.unit(2, "inches")
  8078. },
  8079. {
  8080. name: "Normal",
  8081. height: math.unit(5 + 6 / 12, "feet"),
  8082. default: true
  8083. }
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(6, "feet"),
  8091. weight: math.unit(180, "lbs"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/akane-sato/front.svg",
  8095. extra: 1219 / 1140
  8096. }
  8097. },
  8098. back: {
  8099. height: math.unit(6, "feet"),
  8100. weight: math.unit(180, "lbs"),
  8101. name: "Back",
  8102. image: {
  8103. source: "./media/characters/akane-sato/back.svg",
  8104. extra: 1219 / 1170
  8105. }
  8106. },
  8107. },
  8108. [
  8109. {
  8110. name: "Normal",
  8111. height: math.unit(2.5, "meters")
  8112. },
  8113. {
  8114. name: "Macro",
  8115. height: math.unit(250, "meters"),
  8116. default: true
  8117. },
  8118. {
  8119. name: "Megamacro",
  8120. height: math.unit(25, "km")
  8121. },
  8122. ]
  8123. ))
  8124. characterMakers.push(() => makeCharacter(
  8125. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8126. {
  8127. front: {
  8128. height: math.unit(6, "feet"),
  8129. weight: math.unit(65, "kg"),
  8130. name: "Front",
  8131. image: {
  8132. source: "./media/characters/rook/front.svg",
  8133. extra: 960 / 950
  8134. }
  8135. }
  8136. },
  8137. [
  8138. {
  8139. name: "Normal",
  8140. height: math.unit(8.8, "feet")
  8141. },
  8142. {
  8143. name: "Macro",
  8144. height: math.unit(88, "feet"),
  8145. default: true
  8146. },
  8147. {
  8148. name: "Megamacro",
  8149. height: math.unit(8, "miles")
  8150. },
  8151. ]
  8152. ))
  8153. characterMakers.push(() => makeCharacter(
  8154. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8155. {
  8156. front: {
  8157. height: math.unit(12 + 2 / 12, "feet"),
  8158. weight: math.unit(808, "lbs"),
  8159. name: "Front",
  8160. image: {
  8161. source: "./media/characters/prodigy/front.svg"
  8162. }
  8163. }
  8164. },
  8165. [
  8166. {
  8167. name: "Normal",
  8168. height: math.unit(12 + 2 / 12, "feet"),
  8169. default: true
  8170. },
  8171. {
  8172. name: "Macro",
  8173. height: math.unit(143, "feet")
  8174. },
  8175. {
  8176. name: "Macro+",
  8177. height: math.unit(400, "feet")
  8178. },
  8179. ]
  8180. ))
  8181. characterMakers.push(() => makeCharacter(
  8182. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8183. {
  8184. front: {
  8185. height: math.unit(6, "feet"),
  8186. weight: math.unit(225, "lbs"),
  8187. name: "Front",
  8188. image: {
  8189. source: "./media/characters/daniel/front.svg"
  8190. }
  8191. },
  8192. leaning: {
  8193. height: math.unit(6, "feet"),
  8194. weight: math.unit(225, "lbs"),
  8195. name: "Leaning",
  8196. image: {
  8197. source: "./media/characters/daniel/leaning.svg"
  8198. }
  8199. },
  8200. },
  8201. [
  8202. {
  8203. name: "Macro",
  8204. height: math.unit(1000, "feet"),
  8205. default: true
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8211. {
  8212. front: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(88, "lbs"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/chiros/front.svg",
  8218. extra: 306 / 226
  8219. }
  8220. },
  8221. side: {
  8222. height: math.unit(6, "feet"),
  8223. weight: math.unit(88, "lbs"),
  8224. name: "Side",
  8225. image: {
  8226. source: "./media/characters/chiros/side.svg",
  8227. extra: 306 / 226
  8228. }
  8229. },
  8230. },
  8231. [
  8232. {
  8233. name: "Normal",
  8234. height: math.unit(6, "cm"),
  8235. default: true
  8236. },
  8237. ]
  8238. ))
  8239. characterMakers.push(() => makeCharacter(
  8240. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8241. {
  8242. front: {
  8243. height: math.unit(6, "feet"),
  8244. weight: math.unit(100, "lbs"),
  8245. name: "Front",
  8246. image: {
  8247. source: "./media/characters/selka/front.svg",
  8248. extra: 947 / 887
  8249. }
  8250. }
  8251. },
  8252. [
  8253. {
  8254. name: "Normal",
  8255. height: math.unit(5, "cm"),
  8256. default: true
  8257. },
  8258. ]
  8259. ))
  8260. characterMakers.push(() => makeCharacter(
  8261. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8262. {
  8263. front: {
  8264. height: math.unit(8 + 3 / 12, "feet"),
  8265. weight: math.unit(424, "lbs"),
  8266. name: "Front",
  8267. image: {
  8268. source: "./media/characters/verin/front.svg",
  8269. extra: 1845 / 1550
  8270. }
  8271. },
  8272. frontArmored: {
  8273. height: math.unit(8 + 3 / 12, "feet"),
  8274. weight: math.unit(424, "lbs"),
  8275. name: "Front (Armored)",
  8276. image: {
  8277. source: "./media/characters/verin/front-armor.svg",
  8278. extra: 1845 / 1550,
  8279. bottom: 0.01
  8280. }
  8281. },
  8282. back: {
  8283. height: math.unit(8 + 3 / 12, "feet"),
  8284. weight: math.unit(424, "lbs"),
  8285. name: "Back",
  8286. image: {
  8287. source: "./media/characters/verin/back.svg",
  8288. bottom: 0.1,
  8289. extra: 1
  8290. }
  8291. },
  8292. foot: {
  8293. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8294. name: "Foot",
  8295. image: {
  8296. source: "./media/characters/verin/foot.svg"
  8297. }
  8298. },
  8299. },
  8300. [
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(8 + 3 / 12, "feet")
  8304. },
  8305. {
  8306. name: "Minimacro",
  8307. height: math.unit(21, "feet"),
  8308. default: true
  8309. },
  8310. {
  8311. name: "Macro",
  8312. height: math.unit(626, "feet")
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8318. {
  8319. front: {
  8320. height: math.unit(2.718, "meters"),
  8321. weight: math.unit(150, "lbs"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/sovrim-terraquian/front.svg",
  8325. extra: 1752/1689,
  8326. bottom: 36/1788
  8327. }
  8328. },
  8329. back: {
  8330. height: math.unit(2.718, "meters"),
  8331. weight: math.unit(150, "lbs"),
  8332. name: "Back",
  8333. image: {
  8334. source: "./media/characters/sovrim-terraquian/back.svg",
  8335. extra: 1698/1657,
  8336. bottom: 58/1756
  8337. }
  8338. },
  8339. tongue: {
  8340. height: math.unit(2.865, "feet"),
  8341. name: "Tongue",
  8342. image: {
  8343. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8344. }
  8345. },
  8346. hand: {
  8347. height: math.unit(1.61, "feet"),
  8348. name: "Hand",
  8349. image: {
  8350. source: "./media/characters/sovrim-terraquian/hand.svg"
  8351. }
  8352. },
  8353. foot: {
  8354. height: math.unit(1.05, "feet"),
  8355. name: "Foot",
  8356. image: {
  8357. source: "./media/characters/sovrim-terraquian/foot.svg"
  8358. }
  8359. },
  8360. footAlt: {
  8361. height: math.unit(0.88, "feet"),
  8362. name: "Foot (Alt)",
  8363. image: {
  8364. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8365. }
  8366. },
  8367. },
  8368. [
  8369. {
  8370. name: "Micro",
  8371. height: math.unit(2, "inches")
  8372. },
  8373. {
  8374. name: "Small",
  8375. height: math.unit(1, "meter")
  8376. },
  8377. {
  8378. name: "Normal",
  8379. height: math.unit(Math.E, "meters"),
  8380. default: true
  8381. },
  8382. {
  8383. name: "Macro",
  8384. height: math.unit(20, "meters")
  8385. },
  8386. {
  8387. name: "Macro+",
  8388. height: math.unit(400, "meters")
  8389. },
  8390. ]
  8391. ))
  8392. characterMakers.push(() => makeCharacter(
  8393. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8394. {
  8395. front: {
  8396. height: math.unit(7, "feet"),
  8397. weight: math.unit(489, "lbs"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/reece-silvermane/front.svg",
  8401. bottom: 0.02,
  8402. extra: 1
  8403. }
  8404. },
  8405. },
  8406. [
  8407. {
  8408. name: "Macro",
  8409. height: math.unit(1.5, "miles"),
  8410. default: true
  8411. },
  8412. ]
  8413. ))
  8414. characterMakers.push(() => makeCharacter(
  8415. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8416. {
  8417. front: {
  8418. height: math.unit(6, "feet"),
  8419. weight: math.unit(78, "kg"),
  8420. name: "Front",
  8421. image: {
  8422. source: "./media/characters/kane/front.svg",
  8423. extra: 978 / 899
  8424. }
  8425. },
  8426. },
  8427. [
  8428. {
  8429. name: "Normal",
  8430. height: math.unit(2.1, "m"),
  8431. },
  8432. {
  8433. name: "Macro",
  8434. height: math.unit(1, "km"),
  8435. default: true
  8436. },
  8437. ]
  8438. ))
  8439. characterMakers.push(() => makeCharacter(
  8440. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8441. {
  8442. front: {
  8443. height: math.unit(6, "feet"),
  8444. weight: math.unit(200, "kg"),
  8445. name: "Front",
  8446. image: {
  8447. source: "./media/characters/tegon/front.svg",
  8448. bottom: 0.01,
  8449. extra: 1
  8450. }
  8451. },
  8452. },
  8453. [
  8454. {
  8455. name: "Micro",
  8456. height: math.unit(1, "inch")
  8457. },
  8458. {
  8459. name: "Normal",
  8460. height: math.unit(6 + 3 / 12, "feet"),
  8461. default: true
  8462. },
  8463. {
  8464. name: "Macro",
  8465. height: math.unit(300, "feet")
  8466. },
  8467. {
  8468. name: "Megamacro",
  8469. height: math.unit(69, "miles")
  8470. },
  8471. ]
  8472. ))
  8473. characterMakers.push(() => makeCharacter(
  8474. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8475. {
  8476. side: {
  8477. height: math.unit(6, "feet"),
  8478. weight: math.unit(2304, "lbs"),
  8479. name: "Side",
  8480. image: {
  8481. source: "./media/characters/arcturax/side.svg",
  8482. extra: 790 / 376,
  8483. bottom: 0.01
  8484. }
  8485. },
  8486. },
  8487. [
  8488. {
  8489. name: "Micro",
  8490. height: math.unit(2, "inch")
  8491. },
  8492. {
  8493. name: "Normal",
  8494. height: math.unit(6, "feet")
  8495. },
  8496. {
  8497. name: "Macro",
  8498. height: math.unit(39, "feet"),
  8499. default: true
  8500. },
  8501. {
  8502. name: "Megamacro",
  8503. height: math.unit(7, "miles")
  8504. },
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8509. {
  8510. front: {
  8511. height: math.unit(6, "feet"),
  8512. weight: math.unit(50, "lbs"),
  8513. name: "Front",
  8514. image: {
  8515. source: "./media/characters/sentri/front.svg",
  8516. extra: 1750 / 1570,
  8517. bottom: 0.025
  8518. }
  8519. },
  8520. frontAlt: {
  8521. height: math.unit(6, "feet"),
  8522. weight: math.unit(50, "lbs"),
  8523. name: "Front (Alt)",
  8524. image: {
  8525. source: "./media/characters/sentri/front-alt.svg",
  8526. extra: 1750 / 1570,
  8527. bottom: 0.025
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Normal",
  8534. height: math.unit(15, "feet"),
  8535. default: true
  8536. },
  8537. {
  8538. name: "Macro",
  8539. height: math.unit(2500, "feet")
  8540. }
  8541. ]
  8542. ))
  8543. characterMakers.push(() => makeCharacter(
  8544. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8545. {
  8546. front: {
  8547. height: math.unit(5 + 8 / 12, "feet"),
  8548. weight: math.unit(130, "lbs"),
  8549. name: "Front",
  8550. image: {
  8551. source: "./media/characters/corvin/front.svg",
  8552. extra: 1803 / 1629
  8553. }
  8554. },
  8555. frontShirt: {
  8556. height: math.unit(5 + 8 / 12, "feet"),
  8557. weight: math.unit(130, "lbs"),
  8558. name: "Front (Shirt)",
  8559. image: {
  8560. source: "./media/characters/corvin/front-shirt.svg",
  8561. extra: 1803 / 1629
  8562. }
  8563. },
  8564. frontPoncho: {
  8565. height: math.unit(5 + 8 / 12, "feet"),
  8566. weight: math.unit(130, "lbs"),
  8567. name: "Front (Poncho)",
  8568. image: {
  8569. source: "./media/characters/corvin/front-poncho.svg",
  8570. extra: 1803 / 1629
  8571. }
  8572. },
  8573. side: {
  8574. height: math.unit(5 + 8 / 12, "feet"),
  8575. weight: math.unit(130, "lbs"),
  8576. name: "Side",
  8577. image: {
  8578. source: "./media/characters/corvin/side.svg",
  8579. extra: 1012 / 945
  8580. }
  8581. },
  8582. back: {
  8583. height: math.unit(5 + 8 / 12, "feet"),
  8584. weight: math.unit(130, "lbs"),
  8585. name: "Back",
  8586. image: {
  8587. source: "./media/characters/corvin/back.svg",
  8588. extra: 1803 / 1629
  8589. }
  8590. },
  8591. },
  8592. [
  8593. {
  8594. name: "Micro",
  8595. height: math.unit(3, "inches")
  8596. },
  8597. {
  8598. name: "Normal",
  8599. height: math.unit(5 + 8 / 12, "feet")
  8600. },
  8601. {
  8602. name: "Macro",
  8603. height: math.unit(300, "feet"),
  8604. default: true
  8605. },
  8606. {
  8607. name: "Megamacro",
  8608. height: math.unit(500, "miles")
  8609. }
  8610. ]
  8611. ))
  8612. characterMakers.push(() => makeCharacter(
  8613. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8614. {
  8615. front: {
  8616. height: math.unit(6, "feet"),
  8617. weight: math.unit(135, "lbs"),
  8618. name: "Front",
  8619. image: {
  8620. source: "./media/characters/q/front.svg",
  8621. extra: 854 / 752,
  8622. bottom: 0.005
  8623. }
  8624. },
  8625. back: {
  8626. height: math.unit(6, "feet"),
  8627. weight: math.unit(130, "lbs"),
  8628. name: "Back",
  8629. image: {
  8630. source: "./media/characters/q/back.svg",
  8631. extra: 854 / 752
  8632. }
  8633. },
  8634. },
  8635. [
  8636. {
  8637. name: "Macro",
  8638. height: math.unit(90, "feet"),
  8639. default: true
  8640. },
  8641. {
  8642. name: "Extra Macro",
  8643. height: math.unit(300, "feet"),
  8644. },
  8645. {
  8646. name: "BIG WALF",
  8647. height: math.unit(750, "feet"),
  8648. },
  8649. ]
  8650. ))
  8651. characterMakers.push(() => makeCharacter(
  8652. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8653. {
  8654. front: {
  8655. height: math.unit(6, "feet"),
  8656. weight: math.unit(150, "lbs"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/carley/front.svg",
  8660. extra: 3927 / 3540,
  8661. bottom: 29.2 / 735
  8662. }
  8663. }
  8664. },
  8665. [
  8666. {
  8667. name: "Normal",
  8668. height: math.unit(6 + 3 / 12, "feet")
  8669. },
  8670. {
  8671. name: "Macro",
  8672. height: math.unit(185, "feet"),
  8673. default: true
  8674. },
  8675. {
  8676. name: "Megamacro",
  8677. height: math.unit(8, "miles"),
  8678. },
  8679. ]
  8680. ))
  8681. characterMakers.push(() => makeCharacter(
  8682. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8683. {
  8684. front: {
  8685. height: math.unit(3, "feet"),
  8686. weight: math.unit(28, "lbs"),
  8687. name: "Front",
  8688. image: {
  8689. source: "./media/characters/citrine/front.svg"
  8690. }
  8691. }
  8692. },
  8693. [
  8694. {
  8695. name: "Normal",
  8696. height: math.unit(3, "feet"),
  8697. default: true
  8698. }
  8699. ]
  8700. ))
  8701. characterMakers.push(() => makeCharacter(
  8702. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8703. {
  8704. front: {
  8705. height: math.unit(14, "feet"),
  8706. weight: math.unit(1450, "kg"),
  8707. capacity: math.unit(15, "people"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/aura-starwind/front.svg",
  8711. extra: 1440/1327,
  8712. bottom: 11/1451
  8713. }
  8714. },
  8715. side: {
  8716. height: math.unit(14, "feet"),
  8717. weight: math.unit(1450, "kg"),
  8718. capacity: math.unit(15, "people"),
  8719. name: "Side",
  8720. image: {
  8721. source: "./media/characters/aura-starwind/side.svg",
  8722. extra: 1654 / 1497
  8723. }
  8724. },
  8725. taur: {
  8726. height: math.unit(18, "feet"),
  8727. weight: math.unit(5500, "kg"),
  8728. capacity: math.unit(50, "people"),
  8729. name: "Taur",
  8730. image: {
  8731. source: "./media/characters/aura-starwind/taur.svg",
  8732. extra: 1760 / 1650
  8733. }
  8734. },
  8735. feral: {
  8736. height: math.unit(46, "feet"),
  8737. weight: math.unit(25000, "kg"),
  8738. capacity: math.unit(120, "people"),
  8739. name: "Feral",
  8740. image: {
  8741. source: "./media/characters/aura-starwind/feral.svg"
  8742. }
  8743. },
  8744. },
  8745. [
  8746. {
  8747. name: "Normal",
  8748. height: math.unit(14, "feet"),
  8749. default: true
  8750. },
  8751. {
  8752. name: "Macro",
  8753. height: math.unit(50, "meters")
  8754. },
  8755. {
  8756. name: "Megamacro",
  8757. height: math.unit(5000, "meters")
  8758. },
  8759. {
  8760. name: "Gigamacro",
  8761. height: math.unit(100000, "kilometers")
  8762. },
  8763. ]
  8764. ))
  8765. characterMakers.push(() => makeCharacter(
  8766. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8767. {
  8768. front: {
  8769. height: math.unit(2 + 7 / 12, "feet"),
  8770. weight: math.unit(32, "lbs"),
  8771. name: "Front",
  8772. image: {
  8773. source: "./media/characters/rivet/front.svg",
  8774. extra: 1716 / 1658,
  8775. bottom: 0.03
  8776. }
  8777. },
  8778. foot: {
  8779. height: math.unit(0.551, "feet"),
  8780. name: "Rivet's Foot",
  8781. image: {
  8782. source: "./media/characters/rivet/foot.svg"
  8783. },
  8784. rename: true
  8785. }
  8786. },
  8787. [
  8788. {
  8789. name: "Micro",
  8790. height: math.unit(1.5, "inches"),
  8791. },
  8792. {
  8793. name: "Normal",
  8794. height: math.unit(2 + 7 / 12, "feet"),
  8795. default: true
  8796. },
  8797. {
  8798. name: "Macro",
  8799. height: math.unit(85, "feet")
  8800. },
  8801. {
  8802. name: "Megamacro",
  8803. height: math.unit(2.2, "km")
  8804. }
  8805. ]
  8806. ))
  8807. characterMakers.push(() => makeCharacter(
  8808. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8809. {
  8810. front: {
  8811. height: math.unit(5 + 9 / 12, "feet"),
  8812. weight: math.unit(150, "lbs"),
  8813. name: "Front",
  8814. image: {
  8815. source: "./media/characters/coffee/front.svg",
  8816. extra: 3666 / 3032,
  8817. bottom: 0.04
  8818. }
  8819. },
  8820. foot: {
  8821. height: math.unit(1.29, "feet"),
  8822. name: "Foot",
  8823. image: {
  8824. source: "./media/characters/coffee/foot.svg"
  8825. }
  8826. },
  8827. },
  8828. [
  8829. {
  8830. name: "Micro",
  8831. height: math.unit(2, "inches"),
  8832. },
  8833. {
  8834. name: "Normal",
  8835. height: math.unit(5 + 9 / 12, "feet"),
  8836. default: true
  8837. },
  8838. {
  8839. name: "Macro",
  8840. height: math.unit(800, "feet")
  8841. },
  8842. {
  8843. name: "Megamacro",
  8844. height: math.unit(25, "miles")
  8845. }
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8850. {
  8851. front: {
  8852. height: math.unit(6, "feet"),
  8853. weight: math.unit(200, "lbs"),
  8854. name: "Front",
  8855. image: {
  8856. source: "./media/characters/chari-gal/front.svg",
  8857. extra: 1568 / 1385,
  8858. bottom: 0.047
  8859. }
  8860. },
  8861. gigantamax: {
  8862. height: math.unit(6 * 16, "feet"),
  8863. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8864. name: "Gigantamax",
  8865. image: {
  8866. source: "./media/characters/chari-gal/gigantamax.svg",
  8867. extra: 1124 / 888,
  8868. bottom: 0.03
  8869. }
  8870. },
  8871. },
  8872. [
  8873. {
  8874. name: "Normal",
  8875. height: math.unit(5 + 7 / 12, "feet")
  8876. },
  8877. {
  8878. name: "Macro",
  8879. height: math.unit(200, "feet"),
  8880. default: true
  8881. }
  8882. ]
  8883. ))
  8884. characterMakers.push(() => makeCharacter(
  8885. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8886. {
  8887. front: {
  8888. height: math.unit(6, "feet"),
  8889. weight: math.unit(150, "lbs"),
  8890. name: "Front",
  8891. image: {
  8892. source: "./media/characters/nova/front.svg",
  8893. extra: 5000 / 4722,
  8894. bottom: 0.02
  8895. }
  8896. }
  8897. },
  8898. [
  8899. {
  8900. name: "Micro-",
  8901. height: math.unit(0.8, "inches")
  8902. },
  8903. {
  8904. name: "Micro",
  8905. height: math.unit(2, "inches"),
  8906. default: true
  8907. },
  8908. ]
  8909. ))
  8910. characterMakers.push(() => makeCharacter(
  8911. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8912. {
  8913. front: {
  8914. height: math.unit(3 + 1 / 12, "feet"),
  8915. weight: math.unit(21.7, "lbs"),
  8916. name: "Front",
  8917. image: {
  8918. source: "./media/characters/argent/front.svg",
  8919. extra: 1471 / 1331,
  8920. bottom: 100.8 / 1575.5
  8921. }
  8922. }
  8923. },
  8924. [
  8925. {
  8926. name: "Micro",
  8927. height: math.unit(2, "inches")
  8928. },
  8929. {
  8930. name: "Normal",
  8931. height: math.unit(3 + 1 / 12, "feet"),
  8932. default: true
  8933. },
  8934. {
  8935. name: "Macro",
  8936. height: math.unit(120, "feet")
  8937. },
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8942. {
  8943. lamp: {
  8944. height: math.unit(7 * 1559 / 989, "feet"),
  8945. name: "Magic Lamp",
  8946. image: {
  8947. source: "./media/characters/mira-al-cul/lamp.svg",
  8948. extra: 1617 / 1559
  8949. }
  8950. },
  8951. front: {
  8952. height: math.unit(7, "feet"),
  8953. name: "Front",
  8954. image: {
  8955. source: "./media/characters/mira-al-cul/front.svg",
  8956. extra: 1044 / 990
  8957. }
  8958. },
  8959. },
  8960. [
  8961. {
  8962. name: "Heavily Restricted",
  8963. height: math.unit(7 * 1559 / 989, "feet")
  8964. },
  8965. {
  8966. name: "Freshly Freed",
  8967. height: math.unit(50 * 1559 / 989, "feet")
  8968. },
  8969. {
  8970. name: "World Encompassing",
  8971. height: math.unit(10000 * 1559 / 989, "miles")
  8972. },
  8973. {
  8974. name: "Galactic",
  8975. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8976. },
  8977. {
  8978. name: "Palmed Universe",
  8979. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Multiversal Matriarch",
  8984. height: math.unit(8.87e10, "yottameters")
  8985. },
  8986. {
  8987. name: "Void Mother",
  8988. height: math.unit(3.14e110, "yottaparsecs")
  8989. },
  8990. {
  8991. name: "Toying with Transcendence",
  8992. height: math.unit(1e307, "meters")
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8998. {
  8999. front: {
  9000. height: math.unit(17 + 1 / 12, "feet"),
  9001. weight: math.unit(476.2 * 5, "lbs"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/kuro-shi-uchū/front.svg",
  9005. extra: 2329 / 1835,
  9006. bottom: 0.02
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Micro",
  9013. height: math.unit(2, "inches")
  9014. },
  9015. {
  9016. name: "Normal",
  9017. height: math.unit(12, "meters")
  9018. },
  9019. {
  9020. name: "Planetary",
  9021. height: math.unit(0.00929, "AU"),
  9022. default: true
  9023. },
  9024. {
  9025. name: "Universal",
  9026. height: math.unit(20, "gigaparsecs")
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9032. {
  9033. front: {
  9034. height: math.unit(5 + 2 / 12, "feet"),
  9035. weight: math.unit(120, "lbs"),
  9036. name: "Front",
  9037. image: {
  9038. source: "./media/characters/katherine/front.svg",
  9039. extra: 2075 / 1969
  9040. }
  9041. },
  9042. dress: {
  9043. height: math.unit(5 + 2 / 12, "feet"),
  9044. weight: math.unit(120, "lbs"),
  9045. name: "Dress",
  9046. image: {
  9047. source: "./media/characters/katherine/dress.svg",
  9048. extra: 2258 / 2064
  9049. }
  9050. },
  9051. },
  9052. [
  9053. {
  9054. name: "Micro",
  9055. height: math.unit(1, "inches"),
  9056. default: true
  9057. },
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(5 + 2 / 12, "feet")
  9061. },
  9062. {
  9063. name: "Macro",
  9064. height: math.unit(100, "meters")
  9065. },
  9066. {
  9067. name: "Megamacro",
  9068. height: math.unit(80, "miles")
  9069. },
  9070. ]
  9071. ))
  9072. characterMakers.push(() => makeCharacter(
  9073. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9074. {
  9075. front: {
  9076. height: math.unit(7 + 8 / 12, "feet"),
  9077. weight: math.unit(250, "lbs"),
  9078. name: "Front",
  9079. image: {
  9080. source: "./media/characters/yevis/front.svg",
  9081. extra: 1938 / 1755
  9082. }
  9083. }
  9084. },
  9085. [
  9086. {
  9087. name: "Mortal",
  9088. height: math.unit(7 + 8 / 12, "feet")
  9089. },
  9090. {
  9091. name: "Battle",
  9092. height: math.unit(25 + 11 / 12, "feet")
  9093. },
  9094. {
  9095. name: "Wrath",
  9096. height: math.unit(1654 + 11 / 12, "feet")
  9097. },
  9098. {
  9099. name: "Planet Destroyer",
  9100. height: math.unit(12000, "miles")
  9101. },
  9102. {
  9103. name: "Galaxy Conqueror",
  9104. height: math.unit(1.45, "zettameters"),
  9105. default: true
  9106. },
  9107. {
  9108. name: "Universal War",
  9109. height: math.unit(184, "gigaparsecs")
  9110. },
  9111. {
  9112. name: "Eternity War",
  9113. height: math.unit(1.98e55, "yottaparsecs")
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9119. {
  9120. front: {
  9121. height: math.unit(5 + 8 / 12, "feet"),
  9122. weight: math.unit(63, "kg"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/xavier/front.svg",
  9126. extra: 944 / 883
  9127. }
  9128. },
  9129. frontStretch: {
  9130. height: math.unit(5 + 8 / 12, "feet"),
  9131. weight: math.unit(63, "kg"),
  9132. name: "Stretching",
  9133. image: {
  9134. source: "./media/characters/xavier/front-stretch.svg",
  9135. extra: 962 / 820
  9136. }
  9137. },
  9138. },
  9139. [
  9140. {
  9141. name: "Normal",
  9142. height: math.unit(5 + 8 / 12, "feet")
  9143. },
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(100, "meters"),
  9147. default: true
  9148. },
  9149. {
  9150. name: "McLargeHuge",
  9151. height: math.unit(10, "miles")
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(5 + 5 / 12, "feet"),
  9160. weight: math.unit(150, "lb"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/joshii/front.svg",
  9164. extra: 765 / 653,
  9165. bottom: 51 / 816
  9166. }
  9167. },
  9168. foot: {
  9169. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9170. name: "Foot",
  9171. image: {
  9172. source: "./media/characters/joshii/foot.svg"
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Micro",
  9179. height: math.unit(2, "inches"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(5 + 5 / 12, "feet")
  9185. },
  9186. {
  9187. name: "Macro",
  9188. height: math.unit(785, "feet")
  9189. },
  9190. {
  9191. name: "Megamacro",
  9192. height: math.unit(24.5, "miles")
  9193. },
  9194. ]
  9195. ))
  9196. characterMakers.push(() => makeCharacter(
  9197. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9198. {
  9199. front: {
  9200. height: math.unit(6, "feet"),
  9201. weight: math.unit(150, "lb"),
  9202. name: "Front",
  9203. image: {
  9204. source: "./media/characters/goddess-elizabeth/front.svg",
  9205. extra: 1800 / 1525,
  9206. bottom: 0.005
  9207. }
  9208. },
  9209. foot: {
  9210. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9211. name: "Foot",
  9212. image: {
  9213. source: "./media/characters/goddess-elizabeth/foot.svg"
  9214. }
  9215. },
  9216. mouth: {
  9217. height: math.unit(6, "feet"),
  9218. name: "Mouth",
  9219. image: {
  9220. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9221. }
  9222. },
  9223. },
  9224. [
  9225. {
  9226. name: "Micro",
  9227. height: math.unit(12, "feet")
  9228. },
  9229. {
  9230. name: "Normal",
  9231. height: math.unit(80, "miles"),
  9232. default: true
  9233. },
  9234. {
  9235. name: "Macro",
  9236. height: math.unit(15000, "parsecs")
  9237. },
  9238. ]
  9239. ))
  9240. characterMakers.push(() => makeCharacter(
  9241. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9242. {
  9243. front: {
  9244. height: math.unit(5 + 9 / 12, "feet"),
  9245. weight: math.unit(144, "lb"),
  9246. name: "Front",
  9247. image: {
  9248. source: "./media/characters/kara/front.svg"
  9249. }
  9250. },
  9251. feet: {
  9252. height: math.unit(6 / 6.765, "feet"),
  9253. name: "Kara's Feet",
  9254. rename: true,
  9255. image: {
  9256. source: "./media/characters/kara/feet.svg"
  9257. }
  9258. },
  9259. },
  9260. [
  9261. {
  9262. name: "Normal",
  9263. height: math.unit(5 + 9 / 12, "feet")
  9264. },
  9265. {
  9266. name: "Macro",
  9267. height: math.unit(174, "feet"),
  9268. default: true
  9269. },
  9270. ]
  9271. ))
  9272. characterMakers.push(() => makeCharacter(
  9273. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9274. {
  9275. front: {
  9276. height: math.unit(18, "feet"),
  9277. weight: math.unit(4050, "lb"),
  9278. name: "Front",
  9279. image: {
  9280. source: "./media/characters/tyrone/front.svg",
  9281. extra: 2405 / 2270,
  9282. bottom: 182 / 2587
  9283. }
  9284. },
  9285. },
  9286. [
  9287. {
  9288. name: "Normal",
  9289. height: math.unit(18, "feet"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "Macro",
  9294. height: math.unit(300, "feet")
  9295. },
  9296. {
  9297. name: "Megamacro",
  9298. height: math.unit(15, "km")
  9299. },
  9300. {
  9301. name: "Gigamacro",
  9302. height: math.unit(500, "km")
  9303. },
  9304. {
  9305. name: "Teramacro",
  9306. height: math.unit(0.5, "gigameters")
  9307. },
  9308. {
  9309. name: "Omnimacro",
  9310. height: math.unit(1e252, "yottauniverse")
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9316. {
  9317. front: {
  9318. height: math.unit(7 + 8 / 12, "feet"),
  9319. weight: math.unit(120, "lb"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/danny/front.svg",
  9323. extra: 1490 / 1350
  9324. }
  9325. },
  9326. back: {
  9327. height: math.unit(7 + 8 / 12, "feet"),
  9328. weight: math.unit(120, "lb"),
  9329. name: "Back",
  9330. image: {
  9331. source: "./media/characters/danny/back.svg",
  9332. extra: 1490 / 1350
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Normal",
  9339. height: math.unit(7 + 8 / 12, "feet"),
  9340. default: true
  9341. },
  9342. ]
  9343. ))
  9344. characterMakers.push(() => makeCharacter(
  9345. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9346. {
  9347. front: {
  9348. height: math.unit(3.5, "inches"),
  9349. weight: math.unit(19, "grams"),
  9350. name: "Front",
  9351. image: {
  9352. source: "./media/characters/mallow/front.svg",
  9353. extra: 471 / 431
  9354. }
  9355. },
  9356. back: {
  9357. height: math.unit(3.5, "inches"),
  9358. weight: math.unit(19, "grams"),
  9359. name: "Back",
  9360. image: {
  9361. source: "./media/characters/mallow/back.svg",
  9362. extra: 471 / 431
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(3.5, "inches"),
  9370. default: true
  9371. },
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9376. {
  9377. front: {
  9378. height: math.unit(9, "feet"),
  9379. weight: math.unit(230, "kg"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/starry-aqua/front.svg"
  9383. }
  9384. },
  9385. back: {
  9386. height: math.unit(9, "feet"),
  9387. weight: math.unit(230, "kg"),
  9388. name: "Back",
  9389. image: {
  9390. source: "./media/characters/starry-aqua/back.svg"
  9391. }
  9392. },
  9393. hand: {
  9394. height: math.unit(9 * 0.1168, "feet"),
  9395. name: "Hand",
  9396. image: {
  9397. source: "./media/characters/starry-aqua/hand.svg"
  9398. }
  9399. },
  9400. foot: {
  9401. height: math.unit(9 * 0.18, "feet"),
  9402. name: "Foot",
  9403. image: {
  9404. source: "./media/characters/starry-aqua/foot.svg"
  9405. }
  9406. }
  9407. },
  9408. [
  9409. {
  9410. name: "Micro",
  9411. height: math.unit(3, "inches")
  9412. },
  9413. {
  9414. name: "Normal",
  9415. height: math.unit(9, "feet")
  9416. },
  9417. {
  9418. name: "Macro",
  9419. height: math.unit(300, "feet"),
  9420. default: true
  9421. },
  9422. {
  9423. name: "Megamacro",
  9424. height: math.unit(3200, "feet")
  9425. }
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9430. {
  9431. front: {
  9432. height: math.unit(15, "feet"),
  9433. weight: math.unit(5026, "lb"),
  9434. name: "Front",
  9435. image: {
  9436. source: "./media/characters/luka-towers/front.svg",
  9437. extra: 1269/1133,
  9438. bottom: 51/1320
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(15, "feet"),
  9446. default: true
  9447. },
  9448. {
  9449. name: "Minimacro",
  9450. height: math.unit(25, "feet")
  9451. },
  9452. {
  9453. name: "Macro",
  9454. height: math.unit(320, "feet")
  9455. },
  9456. {
  9457. name: "Megamacro",
  9458. height: math.unit(35000, "feet")
  9459. },
  9460. {
  9461. name: "Gigamacro",
  9462. height: math.unit(4000, "miles")
  9463. },
  9464. {
  9465. name: "Teramacro",
  9466. height: math.unit(15000, "miles")
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9472. {
  9473. front: {
  9474. height: math.unit(6, "feet"),
  9475. weight: math.unit(150, "lb"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/natalie-nightring/front.svg",
  9479. extra: 1,
  9480. bottom: 0.06
  9481. }
  9482. },
  9483. },
  9484. [
  9485. {
  9486. name: "Uh Oh",
  9487. height: math.unit(0.1, "mm")
  9488. },
  9489. {
  9490. name: "Small",
  9491. height: math.unit(3, "inches")
  9492. },
  9493. {
  9494. name: "Human Scale",
  9495. height: math.unit(6, "feet")
  9496. },
  9497. {
  9498. name: "Librarian",
  9499. height: math.unit(50, "feet"),
  9500. default: true
  9501. },
  9502. {
  9503. name: "Immense",
  9504. height: math.unit(200, "miles")
  9505. },
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9510. {
  9511. front: {
  9512. height: math.unit(6, "feet"),
  9513. weight: math.unit(180, "lbs"),
  9514. name: "Front",
  9515. image: {
  9516. source: "./media/characters/danni-rosie/front.svg",
  9517. extra: 1260 / 1128,
  9518. bottom: 0.022
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Micro",
  9525. height: math.unit(2, "inches"),
  9526. default: true
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9532. {
  9533. front: {
  9534. height: math.unit(5 + 9 / 12, "feet"),
  9535. weight: math.unit(220, "lb"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/samantha-kruse/front.svg",
  9539. extra: (985 / 935),
  9540. bottom: 0.03
  9541. }
  9542. },
  9543. frontUndressed: {
  9544. height: math.unit(5 + 9 / 12, "feet"),
  9545. weight: math.unit(220, "lb"),
  9546. name: "Front (Undressed)",
  9547. image: {
  9548. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9549. extra: (973 / 923),
  9550. bottom: 0.025
  9551. }
  9552. },
  9553. fat: {
  9554. height: math.unit(5 + 9 / 12, "feet"),
  9555. weight: math.unit(900, "lb"),
  9556. name: "Front (Fat)",
  9557. image: {
  9558. source: "./media/characters/samantha-kruse/fat.svg",
  9559. extra: 2688 / 2561
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(5 + 9 / 12, "feet"),
  9567. default: true
  9568. }
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9573. {
  9574. back: {
  9575. height: math.unit(5 + 4 / 12, "feet"),
  9576. weight: math.unit(4963, "lb"),
  9577. name: "Back",
  9578. image: {
  9579. source: "./media/characters/amelia-rosie/back.svg",
  9580. extra: 1113 / 963,
  9581. bottom: 0.01
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Level 0",
  9588. height: math.unit(5 + 4 / 12, "feet")
  9589. },
  9590. {
  9591. name: "Level 1",
  9592. height: math.unit(164597, "feet"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Level 2",
  9597. height: math.unit(956243, "miles")
  9598. },
  9599. {
  9600. name: "Level 3",
  9601. height: math.unit(29421709423, "miles")
  9602. },
  9603. {
  9604. name: "Level 4",
  9605. height: math.unit(154, "lightyears")
  9606. },
  9607. {
  9608. name: "Level 5",
  9609. height: math.unit(4738272, "lightyears")
  9610. },
  9611. {
  9612. name: "Level 6",
  9613. height: math.unit(145787152896, "lightyears")
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9619. {
  9620. front: {
  9621. height: math.unit(5 + 11 / 12, "feet"),
  9622. weight: math.unit(65, "kg"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/rook-kitara/front.svg",
  9626. extra: 1347 / 1274,
  9627. bottom: 0.005
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Totally Unfair",
  9634. height: math.unit(1.8, "mm")
  9635. },
  9636. {
  9637. name: "Lap Rookie",
  9638. height: math.unit(1.4, "feet")
  9639. },
  9640. {
  9641. name: "Normal",
  9642. height: math.unit(5 + 11 / 12, "feet"),
  9643. default: true
  9644. },
  9645. {
  9646. name: "How Did This Happen",
  9647. height: math.unit(80, "miles")
  9648. }
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(7, "feet"),
  9656. weight: math.unit(300, "lb"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/pisces/front.svg",
  9660. extra: 2255 / 2115,
  9661. bottom: 0.03
  9662. }
  9663. },
  9664. back: {
  9665. height: math.unit(7, "feet"),
  9666. weight: math.unit(300, "lb"),
  9667. name: "Back",
  9668. image: {
  9669. source: "./media/characters/pisces/back.svg",
  9670. extra: 2146 / 2055,
  9671. bottom: 0.04
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Normal",
  9678. height: math.unit(7, "feet"),
  9679. default: true
  9680. },
  9681. {
  9682. name: "Swimming Pool",
  9683. height: math.unit(12.2, "meters")
  9684. },
  9685. {
  9686. name: "Olympic Swimming Pool",
  9687. height: math.unit(56.3, "meters")
  9688. },
  9689. {
  9690. name: "Lake Superior",
  9691. height: math.unit(93900, "meters")
  9692. },
  9693. {
  9694. name: "Mediterranean Sea",
  9695. height: math.unit(644457, "meters")
  9696. },
  9697. {
  9698. name: "World's Oceans",
  9699. height: math.unit(4567491, "meters")
  9700. },
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(2.3, "meters"),
  9708. weight: math.unit(120, "kg"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/zelas/front.svg"
  9712. }
  9713. },
  9714. side: {
  9715. height: math.unit(2.3, "meters"),
  9716. weight: math.unit(120, "kg"),
  9717. name: "Side",
  9718. image: {
  9719. source: "./media/characters/zelas/side.svg"
  9720. }
  9721. },
  9722. back: {
  9723. height: math.unit(2.3, "meters"),
  9724. weight: math.unit(120, "kg"),
  9725. name: "Back",
  9726. image: {
  9727. source: "./media/characters/zelas/back.svg"
  9728. }
  9729. },
  9730. foot: {
  9731. height: math.unit(1.116, "feet"),
  9732. name: "Foot",
  9733. image: {
  9734. source: "./media/characters/zelas/foot.svg"
  9735. }
  9736. },
  9737. },
  9738. [
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(2.3, "meters")
  9742. },
  9743. {
  9744. name: "Macro",
  9745. height: math.unit(30, "meters"),
  9746. default: true
  9747. },
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9752. {
  9753. front: {
  9754. height: math.unit(1, "inch"),
  9755. weight: math.unit(0.21, "grams"),
  9756. name: "Front",
  9757. image: {
  9758. source: "./media/characters/talbot/front.svg",
  9759. extra: 594 / 544
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Micro",
  9766. height: math.unit(1, "inch"),
  9767. default: true
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9773. {
  9774. front: {
  9775. height: math.unit(3 + 3 / 12, "feet"),
  9776. weight: math.unit(51.8, "lb"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/fliss/front.svg",
  9780. extra: 840 / 640
  9781. }
  9782. },
  9783. },
  9784. [
  9785. {
  9786. name: "Teeny Tiny",
  9787. height: math.unit(1, "mm")
  9788. },
  9789. {
  9790. name: "Small",
  9791. height: math.unit(1, "inch"),
  9792. default: true
  9793. },
  9794. {
  9795. name: "Standard Sylveon",
  9796. height: math.unit(3 + 3 / 12, "feet")
  9797. },
  9798. {
  9799. name: "Large Nuisance",
  9800. height: math.unit(33, "feet")
  9801. },
  9802. {
  9803. name: "City Filler",
  9804. height: math.unit(3000, "feet")
  9805. },
  9806. {
  9807. name: "New Horizon",
  9808. height: math.unit(6000, "miles")
  9809. },
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9814. {
  9815. front: {
  9816. height: math.unit(5, "cm"),
  9817. weight: math.unit(1.94, "g"),
  9818. name: "Front",
  9819. image: {
  9820. source: "./media/characters/fleta/front.svg",
  9821. extra: 835 / 803
  9822. }
  9823. },
  9824. back: {
  9825. height: math.unit(5, "cm"),
  9826. weight: math.unit(1.94, "g"),
  9827. name: "Back",
  9828. image: {
  9829. source: "./media/characters/fleta/back.svg",
  9830. extra: 835 / 803
  9831. }
  9832. },
  9833. },
  9834. [
  9835. {
  9836. name: "Micro",
  9837. height: math.unit(5, "cm"),
  9838. default: true
  9839. },
  9840. ]
  9841. ))
  9842. characterMakers.push(() => makeCharacter(
  9843. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9844. {
  9845. front: {
  9846. height: math.unit(6, "feet"),
  9847. weight: math.unit(225, "lb"),
  9848. name: "Front",
  9849. image: {
  9850. source: "./media/characters/dominic/front.svg",
  9851. extra: 1770 / 1620,
  9852. bottom: 0.025
  9853. }
  9854. },
  9855. back: {
  9856. height: math.unit(6, "feet"),
  9857. weight: math.unit(225, "lb"),
  9858. name: "Back",
  9859. image: {
  9860. source: "./media/characters/dominic/back.svg",
  9861. extra: 1745 / 1620,
  9862. bottom: 0.065
  9863. }
  9864. },
  9865. },
  9866. [
  9867. {
  9868. name: "Nano",
  9869. height: math.unit(0.1, "mm")
  9870. },
  9871. {
  9872. name: "Micro-",
  9873. height: math.unit(1, "mm")
  9874. },
  9875. {
  9876. name: "Micro",
  9877. height: math.unit(4, "inches")
  9878. },
  9879. {
  9880. name: "Normal",
  9881. height: math.unit(6 + 4 / 12, "feet"),
  9882. default: true
  9883. },
  9884. {
  9885. name: "Macro",
  9886. height: math.unit(115, "feet")
  9887. },
  9888. {
  9889. name: "Macro+",
  9890. height: math.unit(955, "feet")
  9891. },
  9892. {
  9893. name: "Megamacro",
  9894. height: math.unit(8990, "feet")
  9895. },
  9896. {
  9897. name: "Gigmacro",
  9898. height: math.unit(9310, "miles")
  9899. },
  9900. {
  9901. name: "Teramacro",
  9902. height: math.unit(1567005010, "miles")
  9903. },
  9904. {
  9905. name: "Examacro",
  9906. height: math.unit(1425, "parsecs")
  9907. },
  9908. ]
  9909. ))
  9910. characterMakers.push(() => makeCharacter(
  9911. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9912. {
  9913. front: {
  9914. height: math.unit(400, "feet"),
  9915. weight: math.unit(44444444, "lb"),
  9916. name: "Front",
  9917. image: {
  9918. source: "./media/characters/major-colonel/front.svg"
  9919. }
  9920. },
  9921. back: {
  9922. height: math.unit(400, "feet"),
  9923. weight: math.unit(44444444, "lb"),
  9924. name: "Back",
  9925. image: {
  9926. source: "./media/characters/major-colonel/back.svg"
  9927. }
  9928. },
  9929. },
  9930. [
  9931. {
  9932. name: "Macro",
  9933. height: math.unit(400, "feet"),
  9934. default: true
  9935. },
  9936. ]
  9937. ))
  9938. characterMakers.push(() => makeCharacter(
  9939. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9940. {
  9941. catFront: {
  9942. height: math.unit(6, "feet"),
  9943. weight: math.unit(120, "lb"),
  9944. name: "Front (Cat Side)",
  9945. image: {
  9946. source: "./media/characters/axel-lycan/cat-front.svg",
  9947. extra: 430 / 402,
  9948. bottom: 43 / 472.35
  9949. }
  9950. },
  9951. catBack: {
  9952. height: math.unit(6, "feet"),
  9953. weight: math.unit(120, "lb"),
  9954. name: "Back (Cat Side)",
  9955. image: {
  9956. source: "./media/characters/axel-lycan/cat-back.svg",
  9957. extra: 447 / 419,
  9958. bottom: 23.3 / 469
  9959. }
  9960. },
  9961. wolfFront: {
  9962. height: math.unit(6, "feet"),
  9963. weight: math.unit(120, "lb"),
  9964. name: "Front (Wolf Side)",
  9965. image: {
  9966. source: "./media/characters/axel-lycan/wolf-front.svg",
  9967. extra: 485 / 456,
  9968. bottom: 19 / 504
  9969. }
  9970. },
  9971. wolfBack: {
  9972. height: math.unit(6, "feet"),
  9973. weight: math.unit(120, "lb"),
  9974. name: "Back (Wolf Side)",
  9975. image: {
  9976. source: "./media/characters/axel-lycan/wolf-back.svg",
  9977. extra: 475 / 438,
  9978. bottom: 39.2 / 514
  9979. }
  9980. },
  9981. },
  9982. [
  9983. {
  9984. name: "Macro",
  9985. height: math.unit(1, "km"),
  9986. default: true
  9987. },
  9988. ]
  9989. ))
  9990. characterMakers.push(() => makeCharacter(
  9991. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9992. {
  9993. front: {
  9994. height: math.unit(5 + 9 / 12, "feet"),
  9995. weight: math.unit(175, "lb"),
  9996. name: "Front",
  9997. image: {
  9998. source: "./media/characters/vanrel-hyena/front.svg",
  9999. extra: 1086 / 1010,
  10000. bottom: 0.04
  10001. }
  10002. },
  10003. },
  10004. [
  10005. {
  10006. name: "Normal",
  10007. height: math.unit(5 + 9 / 12, "feet"),
  10008. default: true
  10009. },
  10010. ]
  10011. ))
  10012. characterMakers.push(() => makeCharacter(
  10013. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10014. {
  10015. front: {
  10016. height: math.unit(6, "feet"),
  10017. weight: math.unit(103, "lb"),
  10018. name: "Front",
  10019. image: {
  10020. source: "./media/characters/abbott-absol/front.svg",
  10021. extra: 2010 / 1842
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Megamicro",
  10028. height: math.unit(0.1, "mm")
  10029. },
  10030. {
  10031. name: "Micro",
  10032. height: math.unit(1, "inch")
  10033. },
  10034. {
  10035. name: "Normal",
  10036. height: math.unit(6, "feet"),
  10037. default: true
  10038. },
  10039. ]
  10040. ))
  10041. characterMakers.push(() => makeCharacter(
  10042. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10043. {
  10044. front: {
  10045. height: math.unit(6, "feet"),
  10046. weight: math.unit(264, "lb"),
  10047. name: "Front",
  10048. image: {
  10049. source: "./media/characters/hector/front.svg",
  10050. extra: 2280 / 2130,
  10051. bottom: 0.07
  10052. }
  10053. },
  10054. },
  10055. [
  10056. {
  10057. name: "Normal",
  10058. height: math.unit(12.25, "foot"),
  10059. default: true
  10060. },
  10061. {
  10062. name: "Macro",
  10063. height: math.unit(160, "feet")
  10064. },
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10069. {
  10070. front: {
  10071. height: math.unit(6, "feet"),
  10072. weight: math.unit(150, "lb"),
  10073. name: "Front",
  10074. image: {
  10075. source: "./media/characters/sal/front.svg",
  10076. extra: 1846 / 1699,
  10077. bottom: 0.04
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Megamacro",
  10084. height: math.unit(10, "miles"),
  10085. default: true
  10086. },
  10087. ]
  10088. ))
  10089. characterMakers.push(() => makeCharacter(
  10090. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10091. {
  10092. front: {
  10093. height: math.unit(3, "meters"),
  10094. weight: math.unit(450, "kg"),
  10095. name: "front",
  10096. image: {
  10097. source: "./media/characters/ranger/front.svg",
  10098. extra: 2401 / 2243,
  10099. bottom: 0.05
  10100. }
  10101. },
  10102. },
  10103. [
  10104. {
  10105. name: "Normal",
  10106. height: math.unit(3, "meters"),
  10107. default: true
  10108. },
  10109. ]
  10110. ))
  10111. characterMakers.push(() => makeCharacter(
  10112. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10113. {
  10114. front: {
  10115. height: math.unit(14, "feet"),
  10116. weight: math.unit(800, "kg"),
  10117. name: "Front",
  10118. image: {
  10119. source: "./media/characters/theresa/front.svg",
  10120. extra: 3575 / 3346,
  10121. bottom: 0.03
  10122. }
  10123. },
  10124. },
  10125. [
  10126. {
  10127. name: "Normal",
  10128. height: math.unit(14, "feet"),
  10129. default: true
  10130. },
  10131. ]
  10132. ))
  10133. characterMakers.push(() => makeCharacter(
  10134. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10135. {
  10136. front: {
  10137. height: math.unit(6, "feet"),
  10138. weight: math.unit(3, "kg"),
  10139. name: "Front",
  10140. image: {
  10141. source: "./media/characters/ine/front.svg",
  10142. extra: 678 / 539,
  10143. bottom: 0.023
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Normal",
  10150. height: math.unit(2.265, "feet"),
  10151. default: true
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10157. {
  10158. front: {
  10159. height: math.unit(5, "feet"),
  10160. weight: math.unit(30, "kg"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/vial/front.svg",
  10164. extra: 1365 / 1277,
  10165. bottom: 0.04
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Normal",
  10172. height: math.unit(5, "feet"),
  10173. default: true
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10179. {
  10180. side: {
  10181. height: math.unit(3.4, "meters"),
  10182. weight: math.unit(1000, "lb"),
  10183. name: "Side",
  10184. image: {
  10185. source: "./media/characters/rovoska/side.svg",
  10186. extra: 4403 / 1515
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(3.4, "meters"),
  10194. default: true
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(8, "feet"),
  10203. weight: math.unit(315, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/gunner-rotthbauer/front.svg"
  10207. }
  10208. },
  10209. back: {
  10210. height: math.unit(8, "feet"),
  10211. weight: math.unit(315, "lb"),
  10212. name: "Back",
  10213. image: {
  10214. source: "./media/characters/gunner-rotthbauer/back.svg"
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Micro",
  10221. height: math.unit(3.5, "inches")
  10222. },
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(8, "feet"),
  10226. default: true
  10227. },
  10228. {
  10229. name: "Macro",
  10230. height: math.unit(250, "feet")
  10231. },
  10232. {
  10233. name: "Megamacro",
  10234. height: math.unit(1, "AU")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(5 + 5 / 12, "feet"),
  10243. weight: math.unit(140, "lb"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/allatia/front.svg",
  10247. extra: 1227 / 1180,
  10248. bottom: 0.027
  10249. }
  10250. },
  10251. },
  10252. [
  10253. {
  10254. name: "Normal",
  10255. height: math.unit(5 + 5 / 12, "feet")
  10256. },
  10257. {
  10258. name: "Macro",
  10259. height: math.unit(250, "feet"),
  10260. default: true
  10261. },
  10262. {
  10263. name: "Megamacro",
  10264. height: math.unit(8, "miles")
  10265. }
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(6, "feet"),
  10273. weight: math.unit(120, "lb"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/tene/front.svg",
  10277. extra: 814/750,
  10278. bottom: 36/850
  10279. }
  10280. },
  10281. stomping: {
  10282. height: math.unit(2.025, "meters"),
  10283. weight: math.unit(120, "lb"),
  10284. name: "Stomping",
  10285. image: {
  10286. source: "./media/characters/tene/stomping.svg",
  10287. extra: 885/821,
  10288. bottom: 15/900
  10289. }
  10290. },
  10291. sitting: {
  10292. height: math.unit(1, "meter"),
  10293. weight: math.unit(120, "lb"),
  10294. name: "Sitting",
  10295. image: {
  10296. source: "./media/characters/tene/sitting.svg",
  10297. extra: 396/366,
  10298. bottom: 79/475
  10299. }
  10300. },
  10301. smiling: {
  10302. height: math.unit(1.2, "feet"),
  10303. name: "Smiling",
  10304. image: {
  10305. source: "./media/characters/tene/smiling.svg",
  10306. extra: 1364/1071,
  10307. bottom: 0/1364
  10308. }
  10309. },
  10310. smug: {
  10311. height: math.unit(1.3, "feet"),
  10312. name: "Smug",
  10313. image: {
  10314. source: "./media/characters/tene/smug.svg",
  10315. extra: 1323/1082,
  10316. bottom: 0/1323
  10317. }
  10318. },
  10319. feral: {
  10320. height: math.unit(3.9, "feet"),
  10321. weight: math.unit(250, "lb"),
  10322. name: "Feral",
  10323. image: {
  10324. source: "./media/characters/tene/feral.svg",
  10325. extra: 717 / 458,
  10326. bottom: 0.179
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(6, "feet")
  10334. },
  10335. {
  10336. name: "Macro",
  10337. height: math.unit(300, "feet"),
  10338. default: true
  10339. },
  10340. {
  10341. name: "Megamacro",
  10342. height: math.unit(5, "miles")
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10348. {
  10349. side: {
  10350. height: math.unit(6, "feet"),
  10351. name: "Side",
  10352. image: {
  10353. source: "./media/characters/evander/side.svg",
  10354. extra: 877 / 477
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Normal",
  10361. height: math.unit(0.83, "meters"),
  10362. default: true
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10368. {
  10369. front: {
  10370. height: math.unit(12, "feet"),
  10371. weight: math.unit(1000, "lb"),
  10372. name: "Front",
  10373. image: {
  10374. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10375. extra: 1762 / 1611
  10376. }
  10377. },
  10378. back: {
  10379. height: math.unit(12, "feet"),
  10380. weight: math.unit(1000, "lb"),
  10381. name: "Back",
  10382. image: {
  10383. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10384. extra: 1762 / 1611
  10385. }
  10386. },
  10387. },
  10388. [
  10389. {
  10390. name: "Normal",
  10391. height: math.unit(12, "feet"),
  10392. default: true
  10393. },
  10394. {
  10395. name: "Kaiju",
  10396. height: math.unit(150, "feet")
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(6, "feet"),
  10405. weight: math.unit(150, "lb"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/zero-alurus/front.svg"
  10409. }
  10410. },
  10411. back: {
  10412. height: math.unit(6, "feet"),
  10413. weight: math.unit(150, "lb"),
  10414. name: "Back",
  10415. image: {
  10416. source: "./media/characters/zero-alurus/back.svg"
  10417. }
  10418. },
  10419. },
  10420. [
  10421. {
  10422. name: "Normal",
  10423. height: math.unit(5 + 10 / 12, "feet")
  10424. },
  10425. {
  10426. name: "Macro",
  10427. height: math.unit(60, "feet"),
  10428. default: true
  10429. },
  10430. {
  10431. name: "Macro+",
  10432. height: math.unit(450, "feet")
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(6, "feet"),
  10441. weight: math.unit(200, "lb"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/mega-shi/front.svg",
  10445. extra: 1279 / 1250,
  10446. bottom: 0.02
  10447. }
  10448. },
  10449. back: {
  10450. height: math.unit(6, "feet"),
  10451. weight: math.unit(200, "lb"),
  10452. name: "Back",
  10453. image: {
  10454. source: "./media/characters/mega-shi/back.svg",
  10455. extra: 1279 / 1250,
  10456. bottom: 0.02
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Micro",
  10463. height: math.unit(16 + 6 / 12, "feet")
  10464. },
  10465. {
  10466. name: "Third Dimension",
  10467. height: math.unit(40, "meters")
  10468. },
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(660, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Megamacro",
  10476. height: math.unit(10, "miles")
  10477. },
  10478. {
  10479. name: "Planetary Launch",
  10480. height: math.unit(500, "miles")
  10481. },
  10482. {
  10483. name: "Interstellar",
  10484. height: math.unit(1e9, "miles")
  10485. },
  10486. {
  10487. name: "Leaving the Universe",
  10488. height: math.unit(1, "gigaparsec")
  10489. },
  10490. {
  10491. name: "Travelling Universes",
  10492. height: math.unit(30e15, "parsecs")
  10493. },
  10494. ]
  10495. ))
  10496. characterMakers.push(() => makeCharacter(
  10497. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10498. {
  10499. front: {
  10500. height: math.unit(5 + 4/12, "feet"),
  10501. weight: math.unit(120, "lb"),
  10502. name: "Front",
  10503. image: {
  10504. source: "./media/characters/odyssey/front.svg",
  10505. extra: 1747/1571,
  10506. bottom: 47/1794
  10507. }
  10508. },
  10509. side: {
  10510. height: math.unit(5.1, "feet"),
  10511. weight: math.unit(120, "lb"),
  10512. name: "Side",
  10513. image: {
  10514. source: "./media/characters/odyssey/side.svg",
  10515. extra: 1847/1619,
  10516. bottom: 47/1894
  10517. }
  10518. },
  10519. lounging: {
  10520. height: math.unit(1.464, "feet"),
  10521. weight: math.unit(120, "lb"),
  10522. name: "Lounging",
  10523. image: {
  10524. source: "./media/characters/odyssey/lounging.svg",
  10525. extra: 1235/837,
  10526. bottom: 551/1786
  10527. }
  10528. },
  10529. },
  10530. [
  10531. {
  10532. name: "Normal",
  10533. height: math.unit(5 + 4 / 12, "feet")
  10534. },
  10535. {
  10536. name: "Macro",
  10537. height: math.unit(1, "km")
  10538. },
  10539. {
  10540. name: "Megamacro",
  10541. height: math.unit(3000, "km")
  10542. },
  10543. {
  10544. name: "Gigamacro",
  10545. height: math.unit(1, "AU"),
  10546. default: true
  10547. },
  10548. {
  10549. name: "Omniversal",
  10550. height: math.unit(100e14, "lightyears")
  10551. },
  10552. ]
  10553. ))
  10554. characterMakers.push(() => makeCharacter(
  10555. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10556. {
  10557. front: {
  10558. height: math.unit(6, "feet"),
  10559. weight: math.unit(300, "lb"),
  10560. name: "Front",
  10561. image: {
  10562. source: "./media/characters/mekuto/front.svg",
  10563. extra: 921 / 832,
  10564. bottom: 0.03
  10565. }
  10566. },
  10567. hand: {
  10568. height: math.unit(6 / 10.24, "feet"),
  10569. name: "Hand",
  10570. image: {
  10571. source: "./media/characters/mekuto/hand.svg"
  10572. }
  10573. },
  10574. foot: {
  10575. height: math.unit(6 / 5.05, "feet"),
  10576. name: "Foot",
  10577. image: {
  10578. source: "./media/characters/mekuto/foot.svg"
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Minimicro",
  10585. height: math.unit(0.2, "inches")
  10586. },
  10587. {
  10588. name: "Micro",
  10589. height: math.unit(1.5, "inches")
  10590. },
  10591. {
  10592. name: "Normal",
  10593. height: math.unit(5 + 11 / 12, "feet"),
  10594. default: true
  10595. },
  10596. {
  10597. name: "Minimacro",
  10598. height: math.unit(17 + 9 / 12, "feet")
  10599. },
  10600. {
  10601. name: "Macro",
  10602. height: math.unit(177.5, "feet")
  10603. },
  10604. {
  10605. name: "Megamacro",
  10606. height: math.unit(152, "miles")
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10612. {
  10613. front: {
  10614. height: math.unit(6.5, "inches"),
  10615. weight: math.unit(13, "oz"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/dafydd-tomos/front.svg",
  10619. extra: 2990 / 2603,
  10620. bottom: 0.03
  10621. }
  10622. },
  10623. },
  10624. [
  10625. {
  10626. name: "Micro",
  10627. height: math.unit(6.5, "inches"),
  10628. default: true
  10629. },
  10630. ]
  10631. ))
  10632. characterMakers.push(() => makeCharacter(
  10633. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10634. {
  10635. front: {
  10636. height: math.unit(6, "feet"),
  10637. weight: math.unit(150, "lb"),
  10638. name: "Front",
  10639. image: {
  10640. source: "./media/characters/splinter/front.svg",
  10641. extra: 2990 / 2882,
  10642. bottom: 0.04
  10643. }
  10644. },
  10645. back: {
  10646. height: math.unit(6, "feet"),
  10647. weight: math.unit(150, "lb"),
  10648. name: "Back",
  10649. image: {
  10650. source: "./media/characters/splinter/back.svg",
  10651. extra: 2990 / 2882,
  10652. bottom: 0.04
  10653. }
  10654. },
  10655. },
  10656. [
  10657. {
  10658. name: "Normal",
  10659. height: math.unit(6, "feet")
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(230, "meters"),
  10664. default: true
  10665. },
  10666. ]
  10667. ))
  10668. characterMakers.push(() => makeCharacter(
  10669. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10670. {
  10671. front: {
  10672. height: math.unit(4 + 10 / 12, "feet"),
  10673. weight: math.unit(480, "lb"),
  10674. name: "Front",
  10675. image: {
  10676. source: "./media/characters/snow-gabumon/front.svg",
  10677. extra: 1140 / 963,
  10678. bottom: 0.058
  10679. }
  10680. },
  10681. back: {
  10682. height: math.unit(4 + 10 / 12, "feet"),
  10683. weight: math.unit(480, "lb"),
  10684. name: "Back",
  10685. image: {
  10686. source: "./media/characters/snow-gabumon/back.svg",
  10687. extra: 1115 / 962,
  10688. bottom: 0.041
  10689. }
  10690. },
  10691. frontUndresed: {
  10692. height: math.unit(4 + 10 / 12, "feet"),
  10693. weight: math.unit(480, "lb"),
  10694. name: "Front (Undressed)",
  10695. image: {
  10696. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10697. extra: 1061 / 960,
  10698. bottom: 0.045
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Micro",
  10705. height: math.unit(1, "inch")
  10706. },
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(4 + 10 / 12, "feet"),
  10710. default: true
  10711. },
  10712. {
  10713. name: "Macro",
  10714. height: math.unit(200, "feet")
  10715. },
  10716. {
  10717. name: "Megamacro",
  10718. height: math.unit(120, "miles")
  10719. },
  10720. {
  10721. name: "Gigamacro",
  10722. height: math.unit(9800, "miles")
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(1.7, "meters"),
  10731. weight: math.unit(140, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/moody/front.svg",
  10735. extra: 3226 / 3007,
  10736. bottom: 0.087
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Micro",
  10743. height: math.unit(1, "mm")
  10744. },
  10745. {
  10746. name: "Normal",
  10747. height: math.unit(1.7, "meters"),
  10748. default: true
  10749. },
  10750. {
  10751. name: "Macro",
  10752. height: math.unit(80, "meters")
  10753. },
  10754. {
  10755. name: "Macro+",
  10756. height: math.unit(500, "meters")
  10757. },
  10758. ]
  10759. ))
  10760. characterMakers.push(() => makeCharacter(
  10761. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10762. {
  10763. front: {
  10764. height: math.unit(6, "feet"),
  10765. weight: math.unit(150, "lb"),
  10766. name: "Front",
  10767. image: {
  10768. source: "./media/characters/zyas/front.svg",
  10769. extra: 1180 / 1120,
  10770. bottom: 0.045
  10771. }
  10772. },
  10773. },
  10774. [
  10775. {
  10776. name: "Normal",
  10777. height: math.unit(10, "feet"),
  10778. default: true
  10779. },
  10780. {
  10781. name: "Macro",
  10782. height: math.unit(500, "feet")
  10783. },
  10784. {
  10785. name: "Megamacro",
  10786. height: math.unit(5, "miles")
  10787. },
  10788. {
  10789. name: "Teramacro",
  10790. height: math.unit(150000, "miles")
  10791. },
  10792. ]
  10793. ))
  10794. characterMakers.push(() => makeCharacter(
  10795. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10796. {
  10797. front: {
  10798. height: math.unit(6, "feet"),
  10799. weight: math.unit(150, "lb"),
  10800. name: "Front",
  10801. image: {
  10802. source: "./media/characters/cuon/front.svg",
  10803. extra: 1390 / 1320,
  10804. bottom: 0.008
  10805. }
  10806. },
  10807. },
  10808. [
  10809. {
  10810. name: "Micro",
  10811. height: math.unit(3, "inches")
  10812. },
  10813. {
  10814. name: "Normal",
  10815. height: math.unit(18 + 9 / 12, "feet"),
  10816. default: true
  10817. },
  10818. {
  10819. name: "Macro",
  10820. height: math.unit(360, "feet")
  10821. },
  10822. {
  10823. name: "Megamacro",
  10824. height: math.unit(360, "miles")
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10830. {
  10831. front: {
  10832. height: math.unit(2.4, "meters"),
  10833. weight: math.unit(70, "kg"),
  10834. name: "Front",
  10835. image: {
  10836. source: "./media/characters/nyanuxk/front.svg",
  10837. extra: 1172 / 1084,
  10838. bottom: 0.065
  10839. }
  10840. },
  10841. side: {
  10842. height: math.unit(2.4, "meters"),
  10843. weight: math.unit(70, "kg"),
  10844. name: "Side",
  10845. image: {
  10846. source: "./media/characters/nyanuxk/side.svg",
  10847. extra: 1190 / 1132,
  10848. bottom: 0.007
  10849. }
  10850. },
  10851. back: {
  10852. height: math.unit(2.4, "meters"),
  10853. weight: math.unit(70, "kg"),
  10854. name: "Back",
  10855. image: {
  10856. source: "./media/characters/nyanuxk/back.svg",
  10857. extra: 1200 / 1141,
  10858. bottom: 0.015
  10859. }
  10860. },
  10861. foot: {
  10862. height: math.unit(0.52, "meters"),
  10863. name: "Foot",
  10864. image: {
  10865. source: "./media/characters/nyanuxk/foot.svg"
  10866. }
  10867. },
  10868. },
  10869. [
  10870. {
  10871. name: "Micro",
  10872. height: math.unit(2, "cm")
  10873. },
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(2.4, "meters"),
  10877. default: true
  10878. },
  10879. {
  10880. name: "Smaller Macro",
  10881. height: math.unit(120, "meters")
  10882. },
  10883. {
  10884. name: "Bigger Macro",
  10885. height: math.unit(1.2, "km")
  10886. },
  10887. {
  10888. name: "Megamacro",
  10889. height: math.unit(15, "kilometers")
  10890. },
  10891. {
  10892. name: "Gigamacro",
  10893. height: math.unit(2000, "km")
  10894. },
  10895. {
  10896. name: "Teramacro",
  10897. height: math.unit(500000, "km")
  10898. },
  10899. ]
  10900. ))
  10901. characterMakers.push(() => makeCharacter(
  10902. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10903. {
  10904. side: {
  10905. height: math.unit(6, "feet"),
  10906. name: "Side",
  10907. image: {
  10908. source: "./media/characters/ailbhe/side.svg",
  10909. extra: 757 / 464,
  10910. bottom: 0.041
  10911. }
  10912. },
  10913. },
  10914. [
  10915. {
  10916. name: "Normal",
  10917. height: math.unit(1.07, "meters"),
  10918. default: true
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10924. {
  10925. front: {
  10926. height: math.unit(6, "feet"),
  10927. weight: math.unit(120, "kg"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/zevulfius/front.svg",
  10931. extra: 965 / 903
  10932. }
  10933. },
  10934. side: {
  10935. height: math.unit(6, "feet"),
  10936. weight: math.unit(120, "kg"),
  10937. name: "Side",
  10938. image: {
  10939. source: "./media/characters/zevulfius/side.svg",
  10940. extra: 939 / 900
  10941. }
  10942. },
  10943. back: {
  10944. height: math.unit(6, "feet"),
  10945. weight: math.unit(120, "kg"),
  10946. name: "Back",
  10947. image: {
  10948. source: "./media/characters/zevulfius/back.svg",
  10949. extra: 918 / 854,
  10950. bottom: 0.005
  10951. }
  10952. },
  10953. foot: {
  10954. height: math.unit(6 / 3.72, "feet"),
  10955. name: "Foot",
  10956. image: {
  10957. source: "./media/characters/zevulfius/foot.svg"
  10958. }
  10959. },
  10960. },
  10961. [
  10962. {
  10963. name: "Macro",
  10964. height: math.unit(750, "meters")
  10965. },
  10966. {
  10967. name: "Megamacro",
  10968. height: math.unit(20, "km"),
  10969. default: true
  10970. },
  10971. {
  10972. name: "Gigamacro",
  10973. height: math.unit(2000, "km")
  10974. },
  10975. {
  10976. name: "Teramacro",
  10977. height: math.unit(250000, "km")
  10978. },
  10979. ]
  10980. ))
  10981. characterMakers.push(() => makeCharacter(
  10982. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10983. {
  10984. front: {
  10985. height: math.unit(100, "feet"),
  10986. weight: math.unit(350, "kg"),
  10987. name: "Front",
  10988. image: {
  10989. source: "./media/characters/rikes/front.svg",
  10990. extra: 1565 / 1483,
  10991. bottom: 0.017
  10992. }
  10993. },
  10994. },
  10995. [
  10996. {
  10997. name: "Macro",
  10998. height: math.unit(100, "feet"),
  10999. default: true
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11005. {
  11006. front: {
  11007. height: math.unit(8, "feet"),
  11008. weight: math.unit(356, "lb"),
  11009. name: "Front",
  11010. image: {
  11011. source: "./media/characters/adam-silver-mane/front.svg",
  11012. extra: 1036/937,
  11013. bottom: 63/1099
  11014. }
  11015. },
  11016. side: {
  11017. height: math.unit(8, "feet"),
  11018. weight: math.unit(356, "lb"),
  11019. name: "Side",
  11020. image: {
  11021. source: "./media/characters/adam-silver-mane/side.svg",
  11022. extra: 997/901,
  11023. bottom: 59/1056
  11024. }
  11025. },
  11026. frontNsfw: {
  11027. height: math.unit(8, "feet"),
  11028. weight: math.unit(356, "lb"),
  11029. name: "Front (NSFW)",
  11030. image: {
  11031. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11032. extra: 1036/937,
  11033. bottom: 63/1099
  11034. }
  11035. },
  11036. sideNsfw: {
  11037. height: math.unit(8, "feet"),
  11038. weight: math.unit(356, "lb"),
  11039. name: "Side (NSFW)",
  11040. image: {
  11041. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11042. extra: 997/901,
  11043. bottom: 59/1056
  11044. }
  11045. },
  11046. dick: {
  11047. height: math.unit(2.1, "feet"),
  11048. name: "Dick",
  11049. image: {
  11050. source: "./media/characters/adam-silver-mane/dick.svg"
  11051. }
  11052. },
  11053. taur: {
  11054. height: math.unit(16, "feet"),
  11055. weight: math.unit(1500, "kg"),
  11056. name: "Taur",
  11057. image: {
  11058. source: "./media/characters/adam-silver-mane/taur.svg",
  11059. extra: 1713 / 1571,
  11060. bottom: 0.01
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Normal",
  11067. height: math.unit(8, "feet")
  11068. },
  11069. {
  11070. name: "Minimacro",
  11071. height: math.unit(80, "feet")
  11072. },
  11073. {
  11074. name: "MDA",
  11075. height: math.unit(80, "meters")
  11076. },
  11077. {
  11078. name: "Macro",
  11079. height: math.unit(800, "feet"),
  11080. default: true
  11081. },
  11082. {
  11083. name: "Megamacro",
  11084. height: math.unit(8000, "feet")
  11085. },
  11086. {
  11087. name: "Gigamacro",
  11088. height: math.unit(800, "miles")
  11089. },
  11090. {
  11091. name: "Teramacro",
  11092. height: math.unit(80000, "miles")
  11093. },
  11094. {
  11095. name: "Celestial",
  11096. height: math.unit(8e6, "miles")
  11097. },
  11098. {
  11099. name: "Star Dragon",
  11100. height: math.unit(800000, "parsecs")
  11101. },
  11102. {
  11103. name: "Godly",
  11104. height: math.unit(800, "teraparsecs")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11110. {
  11111. front: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(150, "lb"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/ky'owin/front.svg",
  11117. extra: 3888 / 3068,
  11118. bottom: 0.015
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Normal",
  11125. height: math.unit(6 + 8 / 12, "feet")
  11126. },
  11127. {
  11128. name: "Large",
  11129. height: math.unit(68, "feet")
  11130. },
  11131. {
  11132. name: "Macro",
  11133. height: math.unit(132, "feet")
  11134. },
  11135. {
  11136. name: "Macro+",
  11137. height: math.unit(340, "feet")
  11138. },
  11139. {
  11140. name: "Macro++",
  11141. height: math.unit(680, "feet"),
  11142. default: true
  11143. },
  11144. {
  11145. name: "Megamacro",
  11146. height: math.unit(1, "mile")
  11147. },
  11148. {
  11149. name: "Megamacro+",
  11150. height: math.unit(10, "miles")
  11151. },
  11152. ]
  11153. ))
  11154. characterMakers.push(() => makeCharacter(
  11155. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11156. {
  11157. front: {
  11158. height: math.unit(4, "feet"),
  11159. weight: math.unit(50, "lb"),
  11160. name: "Front",
  11161. image: {
  11162. source: "./media/characters/mal/front.svg",
  11163. extra: 785 / 724,
  11164. bottom: 0.07
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Micro",
  11171. height: math.unit(4, "inches")
  11172. },
  11173. {
  11174. name: "Normal",
  11175. height: math.unit(4, "feet"),
  11176. default: true
  11177. },
  11178. {
  11179. name: "Macro",
  11180. height: math.unit(200, "feet")
  11181. },
  11182. ]
  11183. ))
  11184. characterMakers.push(() => makeCharacter(
  11185. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11186. {
  11187. front: {
  11188. height: math.unit(6, "feet"),
  11189. weight: math.unit(150, "lb"),
  11190. name: "Front",
  11191. image: {
  11192. source: "./media/characters/jordan-deware/front.svg",
  11193. extra: 1191 / 1012
  11194. }
  11195. },
  11196. },
  11197. [
  11198. {
  11199. name: "Nano",
  11200. height: math.unit(0.01, "mm")
  11201. },
  11202. {
  11203. name: "Minimicro",
  11204. height: math.unit(1, "mm")
  11205. },
  11206. {
  11207. name: "Micro",
  11208. height: math.unit(0.5, "inches")
  11209. },
  11210. {
  11211. name: "Normal",
  11212. height: math.unit(4, "feet"),
  11213. default: true
  11214. },
  11215. {
  11216. name: "Minimacro",
  11217. height: math.unit(40, "meters")
  11218. },
  11219. {
  11220. name: "Small Macro",
  11221. height: math.unit(400, "meters")
  11222. },
  11223. {
  11224. name: "Macro",
  11225. height: math.unit(4, "miles")
  11226. },
  11227. {
  11228. name: "Megamacro",
  11229. height: math.unit(40, "miles")
  11230. },
  11231. {
  11232. name: "Megamacro+",
  11233. height: math.unit(400, "miles")
  11234. },
  11235. {
  11236. name: "Gigamacro",
  11237. height: math.unit(400000, "miles")
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11243. {
  11244. side: {
  11245. height: math.unit(6, "feet"),
  11246. weight: math.unit(150, "lb"),
  11247. name: "Side",
  11248. image: {
  11249. source: "./media/characters/kimiko/side.svg",
  11250. extra: 600 / 358
  11251. }
  11252. },
  11253. },
  11254. [
  11255. {
  11256. name: "Normal",
  11257. height: math.unit(15, "feet"),
  11258. default: true
  11259. },
  11260. {
  11261. name: "Macro",
  11262. height: math.unit(220, "feet")
  11263. },
  11264. {
  11265. name: "Macro+",
  11266. height: math.unit(1450, "feet")
  11267. },
  11268. {
  11269. name: "Megamacro",
  11270. height: math.unit(11500, "feet")
  11271. },
  11272. {
  11273. name: "Gigamacro",
  11274. height: math.unit(9500, "miles")
  11275. },
  11276. {
  11277. name: "Teramacro",
  11278. height: math.unit(2208005005, "miles")
  11279. },
  11280. {
  11281. name: "Examacro",
  11282. height: math.unit(2750, "parsecs")
  11283. },
  11284. {
  11285. name: "Zettamacro",
  11286. height: math.unit(101500, "parsecs")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(70, "kg"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/andrew-sleepy/front.svg"
  11299. }
  11300. },
  11301. side: {
  11302. height: math.unit(6, "feet"),
  11303. weight: math.unit(70, "kg"),
  11304. name: "Side",
  11305. image: {
  11306. source: "./media/characters/andrew-sleepy/side.svg"
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Micro",
  11313. height: math.unit(1, "mm"),
  11314. default: true
  11315. },
  11316. ]
  11317. ))
  11318. characterMakers.push(() => makeCharacter(
  11319. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11320. {
  11321. front: {
  11322. height: math.unit(6, "feet"),
  11323. weight: math.unit(150, "lb"),
  11324. name: "Front",
  11325. image: {
  11326. source: "./media/characters/judio/front.svg",
  11327. extra: 1258 / 1110
  11328. }
  11329. },
  11330. },
  11331. [
  11332. {
  11333. name: "Normal",
  11334. height: math.unit(5 + 6 / 12, "feet")
  11335. },
  11336. {
  11337. name: "Macro",
  11338. height: math.unit(1000, "feet"),
  11339. default: true
  11340. },
  11341. {
  11342. name: "Megamacro",
  11343. height: math.unit(10, "miles")
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11349. {
  11350. frontDressed: {
  11351. height: math.unit(6, "feet"),
  11352. weight: math.unit(68, "kg"),
  11353. name: "Front (Dressed)",
  11354. image: {
  11355. source: "./media/characters/nomaxice/front-dressed.svg",
  11356. extra: 1137/824,
  11357. bottom: 74/1211
  11358. }
  11359. },
  11360. frontShorts: {
  11361. height: math.unit(6, "feet"),
  11362. weight: math.unit(68, "kg"),
  11363. name: "Front (Shorts)",
  11364. image: {
  11365. source: "./media/characters/nomaxice/front-shorts.svg",
  11366. extra: 1137/824,
  11367. bottom: 74/1211
  11368. }
  11369. },
  11370. back: {
  11371. height: math.unit(6, "feet"),
  11372. weight: math.unit(68, "kg"),
  11373. name: "Back",
  11374. image: {
  11375. source: "./media/characters/nomaxice/back.svg",
  11376. extra: 822/786,
  11377. bottom: 39/861
  11378. }
  11379. },
  11380. hand: {
  11381. height: math.unit(0.565, "feet"),
  11382. name: "Hand",
  11383. image: {
  11384. source: "./media/characters/nomaxice/hand.svg"
  11385. }
  11386. },
  11387. foot: {
  11388. height: math.unit(1, "feet"),
  11389. name: "Foot",
  11390. image: {
  11391. source: "./media/characters/nomaxice/foot.svg"
  11392. }
  11393. },
  11394. },
  11395. [
  11396. {
  11397. name: "Micro",
  11398. height: math.unit(8, "cm")
  11399. },
  11400. {
  11401. name: "Norm",
  11402. height: math.unit(1.82, "m")
  11403. },
  11404. {
  11405. name: "Norm+",
  11406. height: math.unit(8.8, "feet"),
  11407. default: true
  11408. },
  11409. {
  11410. name: "Big",
  11411. height: math.unit(8, "meters")
  11412. },
  11413. {
  11414. name: "Macro",
  11415. height: math.unit(18, "meters")
  11416. },
  11417. {
  11418. name: "Macro+",
  11419. height: math.unit(88, "meters")
  11420. },
  11421. ]
  11422. ))
  11423. characterMakers.push(() => makeCharacter(
  11424. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11425. {
  11426. front: {
  11427. height: math.unit(12, "feet"),
  11428. weight: math.unit(1.5, "tons"),
  11429. name: "Front",
  11430. image: {
  11431. source: "./media/characters/dydros/front.svg",
  11432. extra: 863 / 800,
  11433. bottom: 0.015
  11434. }
  11435. },
  11436. back: {
  11437. height: math.unit(12, "feet"),
  11438. weight: math.unit(1.5, "tons"),
  11439. name: "Back",
  11440. image: {
  11441. source: "./media/characters/dydros/back.svg",
  11442. extra: 900 / 843,
  11443. bottom: 0.005
  11444. }
  11445. },
  11446. },
  11447. [
  11448. {
  11449. name: "Normal",
  11450. height: math.unit(12, "feet"),
  11451. default: true
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11457. {
  11458. front: {
  11459. height: math.unit(6, "feet"),
  11460. weight: math.unit(100, "kg"),
  11461. name: "Front",
  11462. image: {
  11463. source: "./media/characters/riggi/front.svg",
  11464. extra: 5787 / 5303
  11465. }
  11466. },
  11467. hyper: {
  11468. height: math.unit(6 * 5 / 3, "feet"),
  11469. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11470. name: "Hyper",
  11471. image: {
  11472. source: "./media/characters/riggi/hyper.svg",
  11473. extra: 3595 / 3485
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Small Macro",
  11480. height: math.unit(50, "feet")
  11481. },
  11482. {
  11483. name: "Default",
  11484. height: math.unit(200, "feet"),
  11485. default: true
  11486. },
  11487. {
  11488. name: "Loom",
  11489. height: math.unit(10000, "feet")
  11490. },
  11491. {
  11492. name: "Cruising Altitude",
  11493. height: math.unit(30000, "feet")
  11494. },
  11495. {
  11496. name: "Megamacro",
  11497. height: math.unit(100, "miles")
  11498. },
  11499. {
  11500. name: "Continent Sized",
  11501. height: math.unit(2800, "miles")
  11502. },
  11503. {
  11504. name: "Earth Sized",
  11505. height: math.unit(8000, "miles")
  11506. },
  11507. ]
  11508. ))
  11509. characterMakers.push(() => makeCharacter(
  11510. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11511. {
  11512. front: {
  11513. height: math.unit(6, "feet"),
  11514. weight: math.unit(250, "lb"),
  11515. name: "Front",
  11516. image: {
  11517. source: "./media/characters/alexi/front.svg",
  11518. extra: 3483 / 3291,
  11519. bottom: 0.04
  11520. }
  11521. },
  11522. back: {
  11523. height: math.unit(6, "feet"),
  11524. weight: math.unit(250, "lb"),
  11525. name: "Back",
  11526. image: {
  11527. source: "./media/characters/alexi/back.svg",
  11528. extra: 3533 / 3356,
  11529. bottom: 0.021
  11530. }
  11531. },
  11532. frontTransforming: {
  11533. height: math.unit(8.58, "feet"),
  11534. weight: math.unit(1300, "lb"),
  11535. name: "Transforming",
  11536. image: {
  11537. source: "./media/characters/alexi/front-transforming.svg",
  11538. extra: 437 / 409,
  11539. bottom: 19 / 458.66
  11540. }
  11541. },
  11542. frontTransformed: {
  11543. height: math.unit(12.5, "feet"),
  11544. weight: math.unit(4000, "lb"),
  11545. name: "Transformed",
  11546. image: {
  11547. source: "./media/characters/alexi/front-transformed.svg",
  11548. extra: 639 / 614,
  11549. bottom: 30.55 / 671
  11550. }
  11551. },
  11552. },
  11553. [
  11554. {
  11555. name: "Normal",
  11556. height: math.unit(14, "feet"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Minimacro",
  11561. height: math.unit(30, "meters")
  11562. },
  11563. {
  11564. name: "Macro",
  11565. height: math.unit(500, "meters")
  11566. },
  11567. {
  11568. name: "Megamacro",
  11569. height: math.unit(9000, "km")
  11570. },
  11571. {
  11572. name: "Teramacro",
  11573. height: math.unit(384000, "km")
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(6, "feet"),
  11582. weight: math.unit(150, "lb"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/kayroo/front.svg",
  11586. extra: 1153 / 1038,
  11587. bottom: 0.06
  11588. }
  11589. },
  11590. foot: {
  11591. height: math.unit(6, "feet"),
  11592. weight: math.unit(150, "lb"),
  11593. name: "Foot",
  11594. image: {
  11595. source: "./media/characters/kayroo/foot.svg"
  11596. }
  11597. },
  11598. },
  11599. [
  11600. {
  11601. name: "Normal",
  11602. height: math.unit(8, "feet"),
  11603. default: true
  11604. },
  11605. {
  11606. name: "Minimacro",
  11607. height: math.unit(250, "feet")
  11608. },
  11609. {
  11610. name: "Macro",
  11611. height: math.unit(2800, "feet")
  11612. },
  11613. {
  11614. name: "Megamacro",
  11615. height: math.unit(5200, "feet")
  11616. },
  11617. {
  11618. name: "Gigamacro",
  11619. height: math.unit(27000, "feet")
  11620. },
  11621. {
  11622. name: "Omega",
  11623. height: math.unit(45000, "feet")
  11624. },
  11625. ]
  11626. ))
  11627. characterMakers.push(() => makeCharacter(
  11628. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11629. {
  11630. front: {
  11631. height: math.unit(18, "feet"),
  11632. weight: math.unit(5800, "lb"),
  11633. name: "Front",
  11634. image: {
  11635. source: "./media/characters/rhys/front.svg",
  11636. extra: 3386 / 3090,
  11637. bottom: 0.07
  11638. }
  11639. },
  11640. },
  11641. [
  11642. {
  11643. name: "Normal",
  11644. height: math.unit(18, "feet"),
  11645. default: true
  11646. },
  11647. {
  11648. name: "Working Size",
  11649. height: math.unit(200, "feet")
  11650. },
  11651. {
  11652. name: "Demolition Size",
  11653. height: math.unit(2000, "feet")
  11654. },
  11655. {
  11656. name: "Maximum Licensed Size",
  11657. height: math.unit(5, "miles")
  11658. },
  11659. {
  11660. name: "Maximum Observed Size",
  11661. height: math.unit(10, "yottameters")
  11662. },
  11663. ]
  11664. ))
  11665. characterMakers.push(() => makeCharacter(
  11666. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11667. {
  11668. front: {
  11669. height: math.unit(6, "feet"),
  11670. weight: math.unit(250, "lb"),
  11671. name: "Front",
  11672. image: {
  11673. source: "./media/characters/toto/front.svg",
  11674. extra: 527 / 479,
  11675. bottom: 0.05
  11676. }
  11677. },
  11678. },
  11679. [
  11680. {
  11681. name: "Micro",
  11682. height: math.unit(3, "feet")
  11683. },
  11684. {
  11685. name: "Normal",
  11686. height: math.unit(10, "feet")
  11687. },
  11688. {
  11689. name: "Macro",
  11690. height: math.unit(150, "feet"),
  11691. default: true
  11692. },
  11693. {
  11694. name: "Megamacro",
  11695. height: math.unit(1200, "feet")
  11696. },
  11697. ]
  11698. ))
  11699. characterMakers.push(() => makeCharacter(
  11700. { name: "King", species: ["lion"], tags: ["anthro"] },
  11701. {
  11702. back: {
  11703. height: math.unit(6, "feet"),
  11704. weight: math.unit(150, "lb"),
  11705. name: "Back",
  11706. image: {
  11707. source: "./media/characters/king/back.svg"
  11708. }
  11709. },
  11710. },
  11711. [
  11712. {
  11713. name: "Micro",
  11714. height: math.unit(2, "inches")
  11715. },
  11716. {
  11717. name: "Normal",
  11718. height: math.unit(8, "feet")
  11719. },
  11720. {
  11721. name: "Macro",
  11722. height: math.unit(200, "feet"),
  11723. default: true
  11724. },
  11725. {
  11726. name: "Megamacro",
  11727. height: math.unit(50, "miles")
  11728. },
  11729. ]
  11730. ))
  11731. characterMakers.push(() => makeCharacter(
  11732. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11733. {
  11734. front: {
  11735. height: math.unit(11, "feet"),
  11736. weight: math.unit(1400, "lb"),
  11737. name: "Front",
  11738. image: {
  11739. source: "./media/characters/cordite/front.svg",
  11740. extra: 1919/1827,
  11741. bottom: 40/1959
  11742. }
  11743. },
  11744. side: {
  11745. height: math.unit(11, "feet"),
  11746. weight: math.unit(1400, "lb"),
  11747. name: "Side",
  11748. image: {
  11749. source: "./media/characters/cordite/side.svg",
  11750. extra: 1908/1793,
  11751. bottom: 38/1946
  11752. }
  11753. },
  11754. back: {
  11755. height: math.unit(11, "feet"),
  11756. weight: math.unit(1400, "lb"),
  11757. name: "Back",
  11758. image: {
  11759. source: "./media/characters/cordite/back.svg",
  11760. extra: 1938/1837,
  11761. bottom: 10/1948
  11762. }
  11763. },
  11764. feral: {
  11765. height: math.unit(2, "feet"),
  11766. weight: math.unit(90, "lb"),
  11767. name: "Feral",
  11768. image: {
  11769. source: "./media/characters/cordite/feral.svg",
  11770. extra: 1260 / 755,
  11771. bottom: 0.05
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Normal",
  11778. height: math.unit(11, "feet"),
  11779. default: true
  11780. },
  11781. ]
  11782. ))
  11783. characterMakers.push(() => makeCharacter(
  11784. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11785. {
  11786. front: {
  11787. height: math.unit(6, "feet"),
  11788. weight: math.unit(150, "lb"),
  11789. name: "Front",
  11790. image: {
  11791. source: "./media/characters/pianostrong/front.svg",
  11792. extra: 6577 / 6254,
  11793. bottom: 0.02
  11794. }
  11795. },
  11796. side: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Side",
  11800. image: {
  11801. source: "./media/characters/pianostrong/side.svg",
  11802. extra: 6106 / 5730
  11803. }
  11804. },
  11805. back: {
  11806. height: math.unit(6, "feet"),
  11807. weight: math.unit(150, "lb"),
  11808. name: "Back",
  11809. image: {
  11810. source: "./media/characters/pianostrong/back.svg",
  11811. extra: 6085 / 5733,
  11812. bottom: 0.01
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Macro",
  11819. height: math.unit(100, "feet")
  11820. },
  11821. {
  11822. name: "Macro+",
  11823. height: math.unit(300, "feet"),
  11824. default: true
  11825. },
  11826. {
  11827. name: "Macro++",
  11828. height: math.unit(1000, "feet")
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11834. {
  11835. front: {
  11836. height: math.unit(6, "feet"),
  11837. weight: math.unit(150, "lb"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/kona/front.svg",
  11841. extra: 2960 / 2629,
  11842. bottom: 0.005
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Normal",
  11849. height: math.unit(11 + 8 / 12, "feet")
  11850. },
  11851. {
  11852. name: "Macro",
  11853. height: math.unit(850, "feet"),
  11854. default: true
  11855. },
  11856. {
  11857. name: "Macro+",
  11858. height: math.unit(1.5, "km"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Megamacro",
  11863. height: math.unit(80, "miles")
  11864. },
  11865. {
  11866. name: "Gigamacro",
  11867. height: math.unit(3500, "miles")
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11873. {
  11874. side: {
  11875. height: math.unit(1.9, "meters"),
  11876. weight: math.unit(326, "kg"),
  11877. name: "Side",
  11878. image: {
  11879. source: "./media/characters/levi/side.svg",
  11880. extra: 1704 / 1334,
  11881. bottom: 0.02
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(1.9, "meters"),
  11889. default: true
  11890. },
  11891. {
  11892. name: "Macro",
  11893. height: math.unit(20, "meters")
  11894. },
  11895. {
  11896. name: "Macro+",
  11897. height: math.unit(200, "meters")
  11898. },
  11899. {
  11900. name: "Megamacro",
  11901. height: math.unit(2, "km")
  11902. },
  11903. {
  11904. name: "Megamacro+",
  11905. height: math.unit(20, "km")
  11906. },
  11907. {
  11908. name: "Gigamacro",
  11909. height: math.unit(2500, "km")
  11910. },
  11911. {
  11912. name: "Gigamacro+",
  11913. height: math.unit(120000, "km")
  11914. },
  11915. {
  11916. name: "Teramacro",
  11917. height: math.unit(7.77e6, "km")
  11918. },
  11919. ]
  11920. ))
  11921. characterMakers.push(() => makeCharacter(
  11922. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11923. {
  11924. front: {
  11925. height: math.unit(6 + 4/12, "feet"),
  11926. weight: math.unit(190, "lb"),
  11927. name: "Front",
  11928. image: {
  11929. source: "./media/characters/bmc/front.svg",
  11930. extra: 1626/1472,
  11931. bottom: 79/1705
  11932. }
  11933. },
  11934. back: {
  11935. height: math.unit(6 + 4/12, "feet"),
  11936. weight: math.unit(190, "lb"),
  11937. name: "Back",
  11938. image: {
  11939. source: "./media/characters/bmc/back.svg",
  11940. extra: 1640/1479,
  11941. bottom: 45/1685
  11942. }
  11943. },
  11944. frontArmor: {
  11945. height: math.unit(6 + 4/12, "feet"),
  11946. weight: math.unit(190, "lb"),
  11947. name: "Front-armor",
  11948. image: {
  11949. source: "./media/characters/bmc/front-armor.svg",
  11950. extra: 1538/1468,
  11951. bottom: 79/1617
  11952. }
  11953. },
  11954. },
  11955. [
  11956. {
  11957. name: "Human-sized",
  11958. height: math.unit(6 + 4 / 12, "feet")
  11959. },
  11960. {
  11961. name: "Interactive Size",
  11962. height: math.unit(25, "feet")
  11963. },
  11964. {
  11965. name: "Small",
  11966. height: math.unit(250, "feet")
  11967. },
  11968. {
  11969. name: "Normal",
  11970. height: math.unit(1250, "feet"),
  11971. default: true
  11972. },
  11973. {
  11974. name: "Good Day",
  11975. height: math.unit(88, "miles")
  11976. },
  11977. {
  11978. name: "Largest Measured Size",
  11979. height: math.unit(105.960, "galaxies")
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11985. {
  11986. front: {
  11987. height: math.unit(20, "feet"),
  11988. weight: math.unit(2016, "kg"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/sven-the-kaiju/front.svg",
  11992. extra: 1277/1250,
  11993. bottom: 35/1312
  11994. }
  11995. },
  11996. mouth: {
  11997. height: math.unit(1.85, "feet"),
  11998. name: "Mouth",
  11999. image: {
  12000. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Fairy",
  12007. height: math.unit(6, "inches")
  12008. },
  12009. {
  12010. name: "Normal",
  12011. height: math.unit(20, "feet"),
  12012. default: true
  12013. },
  12014. {
  12015. name: "Rampage",
  12016. height: math.unit(200, "feet")
  12017. },
  12018. {
  12019. name: "Archfey Forest Guardian",
  12020. height: math.unit(1, "mile")
  12021. },
  12022. ]
  12023. ))
  12024. characterMakers.push(() => makeCharacter(
  12025. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12026. {
  12027. front: {
  12028. height: math.unit(4, "meters"),
  12029. weight: math.unit(2, "tons"),
  12030. name: "Front",
  12031. image: {
  12032. source: "./media/characters/marik/front.svg",
  12033. extra: 1057 / 1003,
  12034. bottom: 0.08
  12035. }
  12036. },
  12037. },
  12038. [
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(4, "meters"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Macro",
  12046. height: math.unit(20, "meters")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(50, "km")
  12051. },
  12052. {
  12053. name: "Gigamacro",
  12054. height: math.unit(100, "km")
  12055. },
  12056. {
  12057. name: "Alpha Macro",
  12058. height: math.unit(7.88e7, "yottameters")
  12059. },
  12060. ]
  12061. ))
  12062. characterMakers.push(() => makeCharacter(
  12063. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12064. {
  12065. front: {
  12066. height: math.unit(6, "feet"),
  12067. weight: math.unit(110, "lb"),
  12068. name: "Front",
  12069. image: {
  12070. source: "./media/characters/mel/front.svg",
  12071. extra: 736 / 617,
  12072. bottom: 0.017
  12073. }
  12074. },
  12075. },
  12076. [
  12077. {
  12078. name: "Pico",
  12079. height: math.unit(3, "pm")
  12080. },
  12081. {
  12082. name: "Nano",
  12083. height: math.unit(3, "nm")
  12084. },
  12085. {
  12086. name: "Micro",
  12087. height: math.unit(0.3, "mm"),
  12088. default: true
  12089. },
  12090. {
  12091. name: "Micro+",
  12092. height: math.unit(3, "mm")
  12093. },
  12094. {
  12095. name: "Normal",
  12096. height: math.unit(5 + 10.5 / 12, "feet")
  12097. },
  12098. ]
  12099. ))
  12100. characterMakers.push(() => makeCharacter(
  12101. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12102. {
  12103. kaiju: {
  12104. height: math.unit(1.75, "meters"),
  12105. weight: math.unit(55, "kg"),
  12106. name: "Kaiju",
  12107. image: {
  12108. source: "./media/characters/lykonous/kaiju.svg",
  12109. extra: 1055 / 946,
  12110. bottom: 0.135
  12111. }
  12112. },
  12113. },
  12114. [
  12115. {
  12116. name: "Normal",
  12117. height: math.unit(2.5, "meters"),
  12118. default: true
  12119. },
  12120. {
  12121. name: "Kaiju Dragon",
  12122. height: math.unit(60, "meters")
  12123. },
  12124. {
  12125. name: "Mega Kaiju",
  12126. height: math.unit(120, "km")
  12127. },
  12128. {
  12129. name: "Giga Kaiju",
  12130. height: math.unit(200, "megameters")
  12131. },
  12132. {
  12133. name: "Terra Kaiju",
  12134. height: math.unit(400, "gigameters")
  12135. },
  12136. {
  12137. name: "Kaiju Dragon God",
  12138. height: math.unit(13000, "exaparsecs")
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(6, "feet"),
  12147. weight: math.unit(150, "lb"),
  12148. name: "Front",
  12149. image: {
  12150. source: "./media/characters/blü/front.svg",
  12151. extra: 1883 / 1564,
  12152. bottom: 0.031
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Normal",
  12159. height: math.unit(13, "feet"),
  12160. default: true
  12161. },
  12162. {
  12163. name: "Big Boi",
  12164. height: math.unit(150, "meters")
  12165. },
  12166. {
  12167. name: "Mini Stomper",
  12168. height: math.unit(300, "meters")
  12169. },
  12170. {
  12171. name: "Macro",
  12172. height: math.unit(1000, "meters")
  12173. },
  12174. {
  12175. name: "Megamacro",
  12176. height: math.unit(11000, "meters")
  12177. },
  12178. {
  12179. name: "Gigamacro",
  12180. height: math.unit(11000, "km")
  12181. },
  12182. {
  12183. name: "Teramacro",
  12184. height: math.unit(420000, "km")
  12185. },
  12186. {
  12187. name: "Examacro",
  12188. height: math.unit(120, "parsecs")
  12189. },
  12190. {
  12191. name: "God Tho",
  12192. height: math.unit(98000000000, "parsecs")
  12193. },
  12194. ]
  12195. ))
  12196. characterMakers.push(() => makeCharacter(
  12197. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12198. {
  12199. taurFront: {
  12200. height: math.unit(6, "feet"),
  12201. weight: math.unit(200, "lb"),
  12202. name: "Taur (Front)",
  12203. image: {
  12204. source: "./media/characters/scales/taur-front.svg",
  12205. extra: 1,
  12206. bottom: 0.05
  12207. }
  12208. },
  12209. taurBack: {
  12210. height: math.unit(6, "feet"),
  12211. weight: math.unit(200, "lb"),
  12212. name: "Taur (Back)",
  12213. image: {
  12214. source: "./media/characters/scales/taur-back.svg",
  12215. extra: 1,
  12216. bottom: 0.08
  12217. }
  12218. },
  12219. anthro: {
  12220. height: math.unit(6 * 7 / 12, "feet"),
  12221. weight: math.unit(100, "lb"),
  12222. name: "Anthro",
  12223. image: {
  12224. source: "./media/characters/scales/anthro.svg",
  12225. extra: 1,
  12226. bottom: 0.06
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Normal",
  12233. height: math.unit(12, "feet"),
  12234. default: true
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(6, "feet"),
  12243. weight: math.unit(150, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/koragos/front.svg",
  12247. extra: 841 / 794,
  12248. bottom: 0.035
  12249. }
  12250. },
  12251. back: {
  12252. height: math.unit(6, "feet"),
  12253. weight: math.unit(150, "lb"),
  12254. name: "Back",
  12255. image: {
  12256. source: "./media/characters/koragos/back.svg",
  12257. extra: 841 / 810,
  12258. bottom: 0.022
  12259. }
  12260. },
  12261. },
  12262. [
  12263. {
  12264. name: "Normal",
  12265. height: math.unit(6 + 11 / 12, "feet"),
  12266. default: true
  12267. },
  12268. {
  12269. name: "Macro",
  12270. height: math.unit(490, "feet")
  12271. },
  12272. {
  12273. name: "Megamacro",
  12274. height: math.unit(10, "miles")
  12275. },
  12276. {
  12277. name: "Gigamacro",
  12278. height: math.unit(50, "miles")
  12279. },
  12280. ]
  12281. ))
  12282. characterMakers.push(() => makeCharacter(
  12283. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12284. {
  12285. front: {
  12286. height: math.unit(6, "feet"),
  12287. weight: math.unit(250, "lb"),
  12288. name: "Front",
  12289. image: {
  12290. source: "./media/characters/xylrem/front.svg",
  12291. extra: 3323 / 3050,
  12292. bottom: 0.065
  12293. }
  12294. },
  12295. },
  12296. [
  12297. {
  12298. name: "Micro",
  12299. height: math.unit(4, "feet")
  12300. },
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(16, "feet"),
  12304. default: true
  12305. },
  12306. {
  12307. name: "Macro",
  12308. height: math.unit(2720, "feet")
  12309. },
  12310. {
  12311. name: "Megamacro",
  12312. height: math.unit(25000, "miles")
  12313. },
  12314. ]
  12315. ))
  12316. characterMakers.push(() => makeCharacter(
  12317. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12318. {
  12319. front: {
  12320. height: math.unit(8, "feet"),
  12321. weight: math.unit(250, "kg"),
  12322. name: "Front",
  12323. image: {
  12324. source: "./media/characters/ikideru/front.svg",
  12325. extra: 930 / 870,
  12326. bottom: 0.087
  12327. }
  12328. },
  12329. back: {
  12330. height: math.unit(8, "feet"),
  12331. weight: math.unit(250, "kg"),
  12332. name: "Back",
  12333. image: {
  12334. source: "./media/characters/ikideru/back.svg",
  12335. extra: 919 / 852,
  12336. bottom: 0.055
  12337. }
  12338. },
  12339. },
  12340. [
  12341. {
  12342. name: "Rare",
  12343. height: math.unit(8, "feet"),
  12344. default: true
  12345. },
  12346. {
  12347. name: "Playful Loom",
  12348. height: math.unit(80, "feet")
  12349. },
  12350. {
  12351. name: "City Leaner",
  12352. height: math.unit(230, "feet")
  12353. },
  12354. {
  12355. name: "Megamacro",
  12356. height: math.unit(2500, "feet")
  12357. },
  12358. {
  12359. name: "Gigamacro",
  12360. height: math.unit(26400, "feet")
  12361. },
  12362. {
  12363. name: "Tectonic Shifter",
  12364. height: math.unit(1.7, "megameters")
  12365. },
  12366. {
  12367. name: "Planet Carer",
  12368. height: math.unit(21, "megameters")
  12369. },
  12370. {
  12371. name: "God",
  12372. height: math.unit(11157.22, "parsecs")
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(6, "feet"),
  12381. weight: math.unit(120, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/neo/front.svg"
  12385. }
  12386. },
  12387. },
  12388. [
  12389. {
  12390. name: "Micro",
  12391. height: math.unit(2, "inches"),
  12392. default: true
  12393. },
  12394. {
  12395. name: "Human Size",
  12396. height: math.unit(5 + 8 / 12, "feet")
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12402. {
  12403. front: {
  12404. height: math.unit(13 + 10 / 12, "feet"),
  12405. weight: math.unit(5320, "lb"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/chauncey-chantz/front.svg",
  12409. extra: 1587 / 1435,
  12410. bottom: 0.02
  12411. }
  12412. },
  12413. },
  12414. [
  12415. {
  12416. name: "Normal",
  12417. height: math.unit(13 + 10 / 12, "feet"),
  12418. default: true
  12419. },
  12420. {
  12421. name: "Macro",
  12422. height: math.unit(45, "feet")
  12423. },
  12424. {
  12425. name: "Megamacro",
  12426. height: math.unit(250, "miles")
  12427. },
  12428. {
  12429. name: "Planetary",
  12430. height: math.unit(10000, "miles")
  12431. },
  12432. {
  12433. name: "Galactic",
  12434. height: math.unit(40000, "parsecs")
  12435. },
  12436. {
  12437. name: "Universal",
  12438. height: math.unit(1, "yottameter")
  12439. },
  12440. ]
  12441. ))
  12442. characterMakers.push(() => makeCharacter(
  12443. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12444. {
  12445. front: {
  12446. height: math.unit(6, "feet"),
  12447. weight: math.unit(150, "lb"),
  12448. name: "Front",
  12449. image: {
  12450. source: "./media/characters/epifox/front.svg",
  12451. extra: 1,
  12452. bottom: 0.075
  12453. }
  12454. },
  12455. },
  12456. [
  12457. {
  12458. name: "Micro",
  12459. height: math.unit(6, "inches")
  12460. },
  12461. {
  12462. name: "Normal",
  12463. height: math.unit(12, "feet"),
  12464. default: true
  12465. },
  12466. {
  12467. name: "Macro",
  12468. height: math.unit(3810, "feet")
  12469. },
  12470. {
  12471. name: "Megamacro",
  12472. height: math.unit(500, "miles")
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12478. {
  12479. front: {
  12480. height: math.unit(1.8796, "m"),
  12481. weight: math.unit(230, "lb"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/colin-t/front.svg",
  12485. extra: 1272 / 1193,
  12486. bottom: 0.07
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Micro",
  12493. height: math.unit(0.571, "meters")
  12494. },
  12495. {
  12496. name: "Normal",
  12497. height: math.unit(1.8796, "meters"),
  12498. default: true
  12499. },
  12500. {
  12501. name: "Tall",
  12502. height: math.unit(4, "meters")
  12503. },
  12504. {
  12505. name: "Macro",
  12506. height: math.unit(67.241, "meters")
  12507. },
  12508. {
  12509. name: "Megamacro",
  12510. height: math.unit(371.856, "meters")
  12511. },
  12512. {
  12513. name: "Planetary",
  12514. height: math.unit(12631.5689, "km")
  12515. },
  12516. ]
  12517. ))
  12518. characterMakers.push(() => makeCharacter(
  12519. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12520. {
  12521. front: {
  12522. height: math.unit(1.85, "meters"),
  12523. weight: math.unit(80, "kg"),
  12524. name: "Front",
  12525. image: {
  12526. source: "./media/characters/matvei/front.svg",
  12527. extra: 614 / 594,
  12528. bottom: 0.01
  12529. }
  12530. },
  12531. },
  12532. [
  12533. {
  12534. name: "Normal",
  12535. height: math.unit(1.85, "meters"),
  12536. default: true
  12537. },
  12538. ]
  12539. ))
  12540. characterMakers.push(() => makeCharacter(
  12541. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12542. {
  12543. front: {
  12544. height: math.unit(5 + 9 / 12, "feet"),
  12545. weight: math.unit(70, "lb"),
  12546. name: "Front",
  12547. image: {
  12548. source: "./media/characters/quincy/front.svg",
  12549. extra: 3041 / 2751
  12550. }
  12551. },
  12552. back: {
  12553. height: math.unit(5 + 9 / 12, "feet"),
  12554. weight: math.unit(70, "lb"),
  12555. name: "Back",
  12556. image: {
  12557. source: "./media/characters/quincy/back.svg",
  12558. extra: 3041 / 2751
  12559. }
  12560. },
  12561. flying: {
  12562. height: math.unit(5 + 4 / 12, "feet"),
  12563. weight: math.unit(70, "lb"),
  12564. name: "Flying",
  12565. image: {
  12566. source: "./media/characters/quincy/flying.svg",
  12567. extra: 1044 / 930
  12568. }
  12569. },
  12570. },
  12571. [
  12572. {
  12573. name: "Micro",
  12574. height: math.unit(3, "cm")
  12575. },
  12576. {
  12577. name: "Normal",
  12578. height: math.unit(5 + 9 / 12, "feet")
  12579. },
  12580. {
  12581. name: "Macro",
  12582. height: math.unit(200, "meters"),
  12583. default: true
  12584. },
  12585. {
  12586. name: "Megamacro",
  12587. height: math.unit(1000, "meters")
  12588. },
  12589. ]
  12590. ))
  12591. characterMakers.push(() => makeCharacter(
  12592. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12593. {
  12594. front: {
  12595. height: math.unit(3 + 11/12, "feet"),
  12596. weight: math.unit(50, "lb"),
  12597. name: "Front",
  12598. image: {
  12599. source: "./media/characters/vanrel/front.svg",
  12600. extra: 1104/949,
  12601. bottom: 52/1156
  12602. }
  12603. },
  12604. back: {
  12605. height: math.unit(3 + 11/12, "feet"),
  12606. weight: math.unit(50, "lb"),
  12607. name: "Back",
  12608. image: {
  12609. source: "./media/characters/vanrel/back.svg",
  12610. extra: 1119/976,
  12611. bottom: 37/1156
  12612. }
  12613. },
  12614. tome: {
  12615. height: math.unit(1.35, "feet"),
  12616. weight: math.unit(10, "lb"),
  12617. name: "Vanrel's Tome",
  12618. rename: true,
  12619. image: {
  12620. source: "./media/characters/vanrel/tome.svg"
  12621. }
  12622. },
  12623. beans: {
  12624. height: math.unit(0.89, "feet"),
  12625. name: "Beans",
  12626. image: {
  12627. source: "./media/characters/vanrel/beans.svg"
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Normal",
  12634. height: math.unit(3 + 11/12, "feet"),
  12635. default: true
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(7 + 5 / 12, "feet"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/kuiper-vanrel/front.svg",
  12647. extra: 1219/1169,
  12648. bottom: 69/1288
  12649. }
  12650. },
  12651. back: {
  12652. height: math.unit(7 + 5 / 12, "feet"),
  12653. name: "Back",
  12654. image: {
  12655. source: "./media/characters/kuiper-vanrel/back.svg",
  12656. extra: 1236/1193,
  12657. bottom: 27/1263
  12658. }
  12659. },
  12660. foot: {
  12661. height: math.unit(0.55, "meters"),
  12662. name: "Foot",
  12663. image: {
  12664. source: "./media/characters/kuiper-vanrel/foot.svg",
  12665. }
  12666. },
  12667. battle: {
  12668. height: math.unit(6.824, "feet"),
  12669. name: "Battle",
  12670. image: {
  12671. source: "./media/characters/kuiper-vanrel/battle.svg",
  12672. extra: 1466 / 1327,
  12673. bottom: 29 / 1492.5
  12674. }
  12675. },
  12676. meerkui: {
  12677. height: math.unit(18, "inches"),
  12678. name: "Meerkui",
  12679. image: {
  12680. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12681. extra: 1354/1289,
  12682. bottom: 69/1423
  12683. }
  12684. },
  12685. },
  12686. [
  12687. {
  12688. name: "Normal",
  12689. height: math.unit(7 + 5 / 12, "feet"),
  12690. default: true
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12696. {
  12697. front: {
  12698. height: math.unit(8 + 5 / 12, "feet"),
  12699. name: "Front",
  12700. image: {
  12701. source: "./media/characters/keset-vanrel/front.svg",
  12702. extra: 1231/1148,
  12703. bottom: 82/1313
  12704. }
  12705. },
  12706. back: {
  12707. height: math.unit(8 + 5 / 12, "feet"),
  12708. name: "Back",
  12709. image: {
  12710. source: "./media/characters/keset-vanrel/back.svg",
  12711. extra: 1240/1174,
  12712. bottom: 33/1273
  12713. }
  12714. },
  12715. hand: {
  12716. height: math.unit(0.6, "meters"),
  12717. name: "Hand",
  12718. image: {
  12719. source: "./media/characters/keset-vanrel/hand.svg"
  12720. }
  12721. },
  12722. foot: {
  12723. height: math.unit(0.94978, "meters"),
  12724. name: "Foot",
  12725. image: {
  12726. source: "./media/characters/keset-vanrel/foot.svg"
  12727. }
  12728. },
  12729. battle: {
  12730. height: math.unit(7.408, "feet"),
  12731. name: "Battle",
  12732. image: {
  12733. source: "./media/characters/keset-vanrel/battle.svg",
  12734. extra: 1890 / 1386,
  12735. bottom: 73.28 / 1970
  12736. }
  12737. },
  12738. },
  12739. [
  12740. {
  12741. name: "Normal",
  12742. height: math.unit(8 + 5 / 12, "feet"),
  12743. default: true
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12749. {
  12750. front: {
  12751. height: math.unit(6, "feet"),
  12752. weight: math.unit(150, "lb"),
  12753. name: "Front",
  12754. image: {
  12755. source: "./media/characters/neos/front.svg",
  12756. extra: 1696 / 992,
  12757. bottom: 0.14
  12758. }
  12759. },
  12760. },
  12761. [
  12762. {
  12763. name: "Normal",
  12764. height: math.unit(54, "cm"),
  12765. default: true
  12766. },
  12767. {
  12768. name: "Macro",
  12769. height: math.unit(100, "m")
  12770. },
  12771. {
  12772. name: "Megamacro",
  12773. height: math.unit(10, "km")
  12774. },
  12775. {
  12776. name: "Megamacro+",
  12777. height: math.unit(100, "km")
  12778. },
  12779. {
  12780. name: "Gigamacro",
  12781. height: math.unit(100, "Mm")
  12782. },
  12783. {
  12784. name: "Teramacro",
  12785. height: math.unit(100, "Gm")
  12786. },
  12787. {
  12788. name: "Examacro",
  12789. height: math.unit(100, "Em")
  12790. },
  12791. {
  12792. name: "Godly",
  12793. height: math.unit(10000, "Ym")
  12794. },
  12795. {
  12796. name: "Beyond Godly",
  12797. height: math.unit(25, "multiverses")
  12798. },
  12799. ]
  12800. ))
  12801. characterMakers.push(() => makeCharacter(
  12802. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12803. {
  12804. feminine: {
  12805. height: math.unit(5, "feet"),
  12806. weight: math.unit(100, "lb"),
  12807. name: "Feminine",
  12808. image: {
  12809. source: "./media/characters/sammy-mouse/feminine.svg",
  12810. extra: 2526 / 2425,
  12811. bottom: 0.123
  12812. }
  12813. },
  12814. masculine: {
  12815. height: math.unit(5, "feet"),
  12816. weight: math.unit(100, "lb"),
  12817. name: "Masculine",
  12818. image: {
  12819. source: "./media/characters/sammy-mouse/masculine.svg",
  12820. extra: 2526 / 2425,
  12821. bottom: 0.123
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Micro",
  12828. height: math.unit(5, "inches")
  12829. },
  12830. {
  12831. name: "Normal",
  12832. height: math.unit(5, "feet"),
  12833. default: true
  12834. },
  12835. {
  12836. name: "Macro",
  12837. height: math.unit(60, "feet")
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12843. {
  12844. front: {
  12845. height: math.unit(4, "feet"),
  12846. weight: math.unit(50, "lb"),
  12847. name: "Front",
  12848. image: {
  12849. source: "./media/characters/kole/front.svg",
  12850. extra: 1423 / 1303,
  12851. bottom: 0.025
  12852. }
  12853. },
  12854. back: {
  12855. height: math.unit(4, "feet"),
  12856. weight: math.unit(50, "lb"),
  12857. name: "Back",
  12858. image: {
  12859. source: "./media/characters/kole/back.svg",
  12860. extra: 1426 / 1280,
  12861. bottom: 0.02
  12862. }
  12863. },
  12864. },
  12865. [
  12866. {
  12867. name: "Normal",
  12868. height: math.unit(4, "feet"),
  12869. default: true
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(2.5, "feet"),
  12878. weight: math.unit(32, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/rufran/front.svg",
  12882. extra: 1313/885,
  12883. bottom: 94/1407
  12884. }
  12885. },
  12886. side: {
  12887. height: math.unit(2.5, "feet"),
  12888. weight: math.unit(32, "lb"),
  12889. name: "Side",
  12890. image: {
  12891. source: "./media/characters/rufran/side.svg",
  12892. extra: 1109/852,
  12893. bottom: 118/1227
  12894. }
  12895. },
  12896. back: {
  12897. height: math.unit(2.5, "feet"),
  12898. weight: math.unit(32, "lb"),
  12899. name: "Back",
  12900. image: {
  12901. source: "./media/characters/rufran/back.svg",
  12902. extra: 1280/878,
  12903. bottom: 131/1411
  12904. }
  12905. },
  12906. mouth: {
  12907. height: math.unit(1.13, "feet"),
  12908. name: "Mouth",
  12909. image: {
  12910. source: "./media/characters/rufran/mouth.svg"
  12911. }
  12912. },
  12913. foot: {
  12914. height: math.unit(1.33, "feet"),
  12915. name: "Foot",
  12916. image: {
  12917. source: "./media/characters/rufran/foot.svg"
  12918. }
  12919. },
  12920. koboldFront: {
  12921. height: math.unit(2 + 6 / 12, "feet"),
  12922. weight: math.unit(20, "lb"),
  12923. name: "Front (Kobold)",
  12924. image: {
  12925. source: "./media/characters/rufran/kobold-front.svg",
  12926. extra: 2041 / 1839,
  12927. bottom: 0.055
  12928. }
  12929. },
  12930. koboldBack: {
  12931. height: math.unit(2 + 6 / 12, "feet"),
  12932. weight: math.unit(20, "lb"),
  12933. name: "Back (Kobold)",
  12934. image: {
  12935. source: "./media/characters/rufran/kobold-back.svg",
  12936. extra: 2054 / 1839,
  12937. bottom: 0.01
  12938. }
  12939. },
  12940. koboldHand: {
  12941. height: math.unit(0.2166, "meters"),
  12942. name: "Hand (Kobold)",
  12943. image: {
  12944. source: "./media/characters/rufran/kobold-hand.svg"
  12945. }
  12946. },
  12947. koboldFoot: {
  12948. height: math.unit(0.185, "meters"),
  12949. name: "Foot (Kobold)",
  12950. image: {
  12951. source: "./media/characters/rufran/kobold-foot.svg"
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Micro",
  12958. height: math.unit(1, "inch")
  12959. },
  12960. {
  12961. name: "Normal",
  12962. height: math.unit(2 + 6 / 12, "feet"),
  12963. default: true
  12964. },
  12965. {
  12966. name: "Big",
  12967. height: math.unit(60, "feet")
  12968. },
  12969. {
  12970. name: "Macro",
  12971. height: math.unit(325, "feet")
  12972. },
  12973. ]
  12974. ))
  12975. characterMakers.push(() => makeCharacter(
  12976. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12977. {
  12978. front: {
  12979. height: math.unit(0.3, "meters"),
  12980. weight: math.unit(3.5, "kg"),
  12981. name: "Front",
  12982. image: {
  12983. source: "./media/characters/chip/front.svg",
  12984. extra: 748 / 674
  12985. }
  12986. },
  12987. },
  12988. [
  12989. {
  12990. name: "Micro",
  12991. height: math.unit(1, "inch"),
  12992. default: true
  12993. },
  12994. ]
  12995. ))
  12996. characterMakers.push(() => makeCharacter(
  12997. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12998. {
  12999. side: {
  13000. height: math.unit(2.3, "meters"),
  13001. weight: math.unit(3500, "lb"),
  13002. name: "Side",
  13003. image: {
  13004. source: "./media/characters/torvid/side.svg",
  13005. extra: 1972 / 722,
  13006. bottom: 0.035
  13007. }
  13008. },
  13009. },
  13010. [
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(2.3, "meters"),
  13014. default: true
  13015. },
  13016. ]
  13017. ))
  13018. characterMakers.push(() => makeCharacter(
  13019. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13020. {
  13021. front: {
  13022. height: math.unit(2, "meters"),
  13023. weight: math.unit(150.5, "kg"),
  13024. name: "Front",
  13025. image: {
  13026. source: "./media/characters/susan/front.svg",
  13027. extra: 693 / 635,
  13028. bottom: 0.05
  13029. }
  13030. },
  13031. },
  13032. [
  13033. {
  13034. name: "Megamacro",
  13035. height: math.unit(505, "miles"),
  13036. default: true
  13037. },
  13038. ]
  13039. ))
  13040. characterMakers.push(() => makeCharacter(
  13041. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13042. {
  13043. front: {
  13044. height: math.unit(6, "feet"),
  13045. weight: math.unit(150, "lb"),
  13046. name: "Front",
  13047. image: {
  13048. source: "./media/characters/raindrops/front.svg",
  13049. extra: 2655 / 2461,
  13050. bottom: 49 / 2705
  13051. }
  13052. },
  13053. back: {
  13054. height: math.unit(6, "feet"),
  13055. weight: math.unit(150, "lb"),
  13056. name: "Back",
  13057. image: {
  13058. source: "./media/characters/raindrops/back.svg",
  13059. extra: 2574 / 2400,
  13060. bottom: 65 / 2634
  13061. }
  13062. },
  13063. },
  13064. [
  13065. {
  13066. name: "Micro",
  13067. height: math.unit(6, "inches")
  13068. },
  13069. {
  13070. name: "Normal",
  13071. height: math.unit(6 + 2 / 12, "feet")
  13072. },
  13073. {
  13074. name: "Macro",
  13075. height: math.unit(131, "feet"),
  13076. default: true
  13077. },
  13078. {
  13079. name: "Megamacro",
  13080. height: math.unit(15, "miles")
  13081. },
  13082. {
  13083. name: "Gigamacro",
  13084. height: math.unit(4000, "miles")
  13085. },
  13086. {
  13087. name: "Teramacro",
  13088. height: math.unit(315000, "miles")
  13089. },
  13090. ]
  13091. ))
  13092. characterMakers.push(() => makeCharacter(
  13093. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13094. {
  13095. front: {
  13096. height: math.unit(2.794, "meters"),
  13097. weight: math.unit(325, "kg"),
  13098. name: "Front",
  13099. image: {
  13100. source: "./media/characters/tezwa/front.svg",
  13101. extra: 2083 / 1906,
  13102. bottom: 0.031
  13103. }
  13104. },
  13105. foot: {
  13106. height: math.unit(0.687, "meters"),
  13107. name: "Foot",
  13108. image: {
  13109. source: "./media/characters/tezwa/foot.svg"
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Normal",
  13116. height: math.unit(9 + 2 / 12, "feet"),
  13117. default: true
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13123. {
  13124. front: {
  13125. height: math.unit(58, "feet"),
  13126. weight: math.unit(89000, "lb"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/typhus/front.svg",
  13130. extra: 816 / 800,
  13131. bottom: 0.065
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Macro",
  13138. height: math.unit(58, "feet"),
  13139. default: true
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13145. {
  13146. front: {
  13147. height: math.unit(12, "feet"),
  13148. weight: math.unit(6, "tonnes"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/lyra-von-wulf/front.svg",
  13152. extra: 1,
  13153. bottom: 0.10
  13154. }
  13155. },
  13156. frontMecha: {
  13157. height: math.unit(12, "feet"),
  13158. weight: math.unit(12, "tonnes"),
  13159. name: "Front (Mecha)",
  13160. image: {
  13161. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13162. extra: 1,
  13163. bottom: 0.042
  13164. }
  13165. },
  13166. maw: {
  13167. height: math.unit(2.2, "feet"),
  13168. name: "Maw",
  13169. image: {
  13170. source: "./media/characters/lyra-von-wulf/maw.svg"
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Normal",
  13177. height: math.unit(12, "feet"),
  13178. default: true
  13179. },
  13180. {
  13181. name: "Classic",
  13182. height: math.unit(50, "feet")
  13183. },
  13184. {
  13185. name: "Macro",
  13186. height: math.unit(500, "feet")
  13187. },
  13188. {
  13189. name: "Megamacro",
  13190. height: math.unit(1, "mile")
  13191. },
  13192. {
  13193. name: "Gigamacro",
  13194. height: math.unit(400, "miles")
  13195. },
  13196. {
  13197. name: "Teramacro",
  13198. height: math.unit(22000, "miles")
  13199. },
  13200. {
  13201. name: "Solarmacro",
  13202. height: math.unit(8600000, "miles")
  13203. },
  13204. {
  13205. name: "Galactic",
  13206. height: math.unit(1057000, "lightyears")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(6 + 10 / 12, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/dixon/front.svg",
  13219. extra: 3361 / 3209,
  13220. bottom: 0.01
  13221. }
  13222. },
  13223. },
  13224. [
  13225. {
  13226. name: "Normal",
  13227. height: math.unit(6 + 10 / 12, "feet"),
  13228. default: true
  13229. },
  13230. {
  13231. name: "Big",
  13232. height: math.unit(12, "meters")
  13233. },
  13234. {
  13235. name: "Macro",
  13236. height: math.unit(500, "meters")
  13237. },
  13238. {
  13239. name: "Megamacro",
  13240. height: math.unit(2, "km")
  13241. },
  13242. ]
  13243. ))
  13244. characterMakers.push(() => makeCharacter(
  13245. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13246. {
  13247. front: {
  13248. height: math.unit(185, "cm"),
  13249. weight: math.unit(68, "kg"),
  13250. name: "Front",
  13251. image: {
  13252. source: "./media/characters/kauko/front.svg",
  13253. extra: 1455 / 1421,
  13254. bottom: 0.03
  13255. }
  13256. },
  13257. back: {
  13258. height: math.unit(185, "cm"),
  13259. weight: math.unit(68, "kg"),
  13260. name: "Back",
  13261. image: {
  13262. source: "./media/characters/kauko/back.svg",
  13263. extra: 1455 / 1421,
  13264. bottom: 0.004
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Normal",
  13271. height: math.unit(185, "cm"),
  13272. default: true
  13273. },
  13274. ]
  13275. ))
  13276. characterMakers.push(() => makeCharacter(
  13277. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13278. {
  13279. front: {
  13280. height: math.unit(6, "feet"),
  13281. weight: math.unit(150, "kg"),
  13282. name: "Front",
  13283. image: {
  13284. source: "./media/characters/varg/front.svg",
  13285. extra: 1108 / 1018,
  13286. bottom: 0.0375
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Normal",
  13293. height: math.unit(5, "meters")
  13294. },
  13295. {
  13296. name: "Macro",
  13297. height: math.unit(200, "meters")
  13298. },
  13299. {
  13300. name: "Megamacro",
  13301. height: math.unit(20, "kilometers")
  13302. },
  13303. {
  13304. name: "True Size",
  13305. height: math.unit(211, "km"),
  13306. default: true
  13307. },
  13308. {
  13309. name: "Gigamacro",
  13310. height: math.unit(1000, "km")
  13311. },
  13312. {
  13313. name: "Gigamacro+",
  13314. height: math.unit(8000, "km")
  13315. },
  13316. {
  13317. name: "Teramacro",
  13318. height: math.unit(1000000, "km")
  13319. },
  13320. ]
  13321. ))
  13322. characterMakers.push(() => makeCharacter(
  13323. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13324. {
  13325. front: {
  13326. height: math.unit(7 + 7 / 12, "feet"),
  13327. weight: math.unit(267, "lb"),
  13328. name: "Front",
  13329. image: {
  13330. source: "./media/characters/dayza/front.svg",
  13331. extra: 1262 / 1200,
  13332. bottom: 0.035
  13333. }
  13334. },
  13335. side: {
  13336. height: math.unit(7 + 7 / 12, "feet"),
  13337. weight: math.unit(267, "lb"),
  13338. name: "Side",
  13339. image: {
  13340. source: "./media/characters/dayza/side.svg",
  13341. extra: 1295 / 1245,
  13342. bottom: 0.05
  13343. }
  13344. },
  13345. back: {
  13346. height: math.unit(7 + 7 / 12, "feet"),
  13347. weight: math.unit(267, "lb"),
  13348. name: "Back",
  13349. image: {
  13350. source: "./media/characters/dayza/back.svg",
  13351. extra: 1241 / 1170
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Normal",
  13358. height: math.unit(7 + 7 / 12, "feet"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Macro",
  13363. height: math.unit(155, "feet")
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(6 + 5 / 12, "feet"),
  13372. weight: math.unit(160, "lb"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/xanthos/front.svg",
  13376. extra: 1,
  13377. bottom: 0.04
  13378. }
  13379. },
  13380. back: {
  13381. height: math.unit(6 + 5 / 12, "feet"),
  13382. weight: math.unit(160, "lb"),
  13383. name: "Back",
  13384. image: {
  13385. source: "./media/characters/xanthos/back.svg",
  13386. extra: 1,
  13387. bottom: 0.03
  13388. }
  13389. },
  13390. hand: {
  13391. height: math.unit(0.928, "feet"),
  13392. name: "Hand",
  13393. image: {
  13394. source: "./media/characters/xanthos/hand.svg"
  13395. }
  13396. },
  13397. foot: {
  13398. height: math.unit(1.286, "feet"),
  13399. name: "Foot",
  13400. image: {
  13401. source: "./media/characters/xanthos/foot.svg"
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Normal",
  13408. height: math.unit(6 + 5 / 12, "feet"),
  13409. default: true
  13410. },
  13411. {
  13412. name: "Normal+",
  13413. height: math.unit(6, "meters")
  13414. },
  13415. {
  13416. name: "Macro",
  13417. height: math.unit(40, "feet")
  13418. },
  13419. {
  13420. name: "Macro+",
  13421. height: math.unit(200, "meters")
  13422. },
  13423. {
  13424. name: "Megamacro",
  13425. height: math.unit(20, "km")
  13426. },
  13427. {
  13428. name: "Megamacro+",
  13429. height: math.unit(100, "km")
  13430. },
  13431. {
  13432. name: "Gigamacro",
  13433. height: math.unit(200, "megameters")
  13434. },
  13435. {
  13436. name: "Gigamacro+",
  13437. height: math.unit(1.5, "gigameters")
  13438. },
  13439. ]
  13440. ))
  13441. characterMakers.push(() => makeCharacter(
  13442. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13443. {
  13444. front: {
  13445. height: math.unit(6 + 3 / 12, "feet"),
  13446. weight: math.unit(215, "lb"),
  13447. name: "Front",
  13448. image: {
  13449. source: "./media/characters/grynn/front.svg",
  13450. extra: 4627 / 4209,
  13451. bottom: 0.047
  13452. }
  13453. },
  13454. },
  13455. [
  13456. {
  13457. name: "Micro",
  13458. height: math.unit(6, "inches")
  13459. },
  13460. {
  13461. name: "Normal",
  13462. height: math.unit(6 + 3 / 12, "feet"),
  13463. default: true
  13464. },
  13465. {
  13466. name: "Big",
  13467. height: math.unit(104, "feet")
  13468. },
  13469. {
  13470. name: "Macro",
  13471. height: math.unit(944, "feet")
  13472. },
  13473. {
  13474. name: "Macro+",
  13475. height: math.unit(9480, "feet")
  13476. },
  13477. {
  13478. name: "Megamacro",
  13479. height: math.unit(78752, "feet")
  13480. },
  13481. {
  13482. name: "Megamacro+",
  13483. height: math.unit(630128, "feet")
  13484. },
  13485. {
  13486. name: "Megamacro++",
  13487. height: math.unit(3150695, "feet")
  13488. },
  13489. ]
  13490. ))
  13491. characterMakers.push(() => makeCharacter(
  13492. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13493. {
  13494. front: {
  13495. height: math.unit(7 + 5 / 12, "feet"),
  13496. weight: math.unit(450, "lb"),
  13497. name: "Front",
  13498. image: {
  13499. source: "./media/characters/mocha-aura/front.svg",
  13500. extra: 1907 / 1817,
  13501. bottom: 0.04
  13502. }
  13503. },
  13504. back: {
  13505. height: math.unit(7 + 5 / 12, "feet"),
  13506. weight: math.unit(450, "lb"),
  13507. name: "Back",
  13508. image: {
  13509. source: "./media/characters/mocha-aura/back.svg",
  13510. extra: 1900 / 1825,
  13511. bottom: 0.045
  13512. }
  13513. },
  13514. },
  13515. [
  13516. {
  13517. name: "Nano",
  13518. height: math.unit(1, "nm")
  13519. },
  13520. {
  13521. name: "Megamicro",
  13522. height: math.unit(1, "mm")
  13523. },
  13524. {
  13525. name: "Micro",
  13526. height: math.unit(3, "inches")
  13527. },
  13528. {
  13529. name: "Normal",
  13530. height: math.unit(7 + 5 / 12, "feet"),
  13531. default: true
  13532. },
  13533. {
  13534. name: "Macro",
  13535. height: math.unit(30, "feet")
  13536. },
  13537. {
  13538. name: "Megamacro",
  13539. height: math.unit(3500, "feet")
  13540. },
  13541. {
  13542. name: "Teramacro",
  13543. height: math.unit(500000, "miles")
  13544. },
  13545. {
  13546. name: "Petamacro",
  13547. height: math.unit(50000000000000000, "parsecs")
  13548. },
  13549. ]
  13550. ))
  13551. characterMakers.push(() => makeCharacter(
  13552. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13553. {
  13554. front: {
  13555. height: math.unit(6, "feet"),
  13556. weight: math.unit(150, "lb"),
  13557. name: "Front",
  13558. image: {
  13559. source: "./media/characters/ilisha-devya/front.svg",
  13560. extra: 1053/1049,
  13561. bottom: 270/1323
  13562. }
  13563. },
  13564. back: {
  13565. height: math.unit(6, "feet"),
  13566. weight: math.unit(150, "lb"),
  13567. name: "Back",
  13568. image: {
  13569. source: "./media/characters/ilisha-devya/back.svg",
  13570. extra: 1131/1128,
  13571. bottom: 39/1170
  13572. }
  13573. },
  13574. },
  13575. [
  13576. {
  13577. name: "Macro",
  13578. height: math.unit(500, "feet"),
  13579. default: true
  13580. },
  13581. {
  13582. name: "Megamacro",
  13583. height: math.unit(10, "miles")
  13584. },
  13585. {
  13586. name: "Gigamacro",
  13587. height: math.unit(100000, "miles")
  13588. },
  13589. {
  13590. name: "Examacro",
  13591. height: math.unit(1e9, "lightyears")
  13592. },
  13593. {
  13594. name: "Omniversal",
  13595. height: math.unit(1e33, "lightyears")
  13596. },
  13597. {
  13598. name: "Beyond Infinite",
  13599. height: math.unit(1e100, "lightyears")
  13600. },
  13601. ]
  13602. ))
  13603. characterMakers.push(() => makeCharacter(
  13604. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13605. {
  13606. Side: {
  13607. height: math.unit(6, "feet"),
  13608. weight: math.unit(150, "lb"),
  13609. name: "Side",
  13610. image: {
  13611. source: "./media/characters/mira/side.svg",
  13612. extra: 900 / 799,
  13613. bottom: 0.02
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Human Size",
  13620. height: math.unit(6, "feet")
  13621. },
  13622. {
  13623. name: "Macro",
  13624. height: math.unit(100, "feet"),
  13625. default: true
  13626. },
  13627. {
  13628. name: "Megamacro",
  13629. height: math.unit(10, "miles")
  13630. },
  13631. {
  13632. name: "Gigamacro",
  13633. height: math.unit(25000, "miles")
  13634. },
  13635. {
  13636. name: "Teramacro",
  13637. height: math.unit(300, "AU")
  13638. },
  13639. {
  13640. name: "Full Size",
  13641. height: math.unit(4.5e10, "lightyears")
  13642. },
  13643. ]
  13644. ))
  13645. characterMakers.push(() => makeCharacter(
  13646. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13647. {
  13648. front: {
  13649. height: math.unit(6, "feet"),
  13650. weight: math.unit(150, "lb"),
  13651. name: "Front",
  13652. image: {
  13653. source: "./media/characters/holly/front.svg",
  13654. extra: 639 / 606
  13655. }
  13656. },
  13657. back: {
  13658. height: math.unit(6, "feet"),
  13659. weight: math.unit(150, "lb"),
  13660. name: "Back",
  13661. image: {
  13662. source: "./media/characters/holly/back.svg",
  13663. extra: 623 / 598
  13664. }
  13665. },
  13666. frontWorking: {
  13667. height: math.unit(6, "feet"),
  13668. weight: math.unit(150, "lb"),
  13669. name: "Front (Working)",
  13670. image: {
  13671. source: "./media/characters/holly/front-working.svg",
  13672. extra: 607 / 577,
  13673. bottom: 0.048
  13674. }
  13675. },
  13676. },
  13677. [
  13678. {
  13679. name: "Normal",
  13680. height: math.unit(12 + 3 / 12, "feet"),
  13681. default: true
  13682. },
  13683. ]
  13684. ))
  13685. characterMakers.push(() => makeCharacter(
  13686. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13687. {
  13688. front: {
  13689. height: math.unit(6, "feet"),
  13690. weight: math.unit(150, "lb"),
  13691. name: "Front",
  13692. image: {
  13693. source: "./media/characters/porter/front.svg",
  13694. extra: 1,
  13695. bottom: 0.01
  13696. }
  13697. },
  13698. frontRobes: {
  13699. height: math.unit(6, "feet"),
  13700. weight: math.unit(150, "lb"),
  13701. name: "Front (Robes)",
  13702. image: {
  13703. source: "./media/characters/porter/front-robes.svg",
  13704. extra: 1.01,
  13705. bottom: 0.01
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Normal",
  13712. height: math.unit(11 + 9 / 12, "feet"),
  13713. default: true
  13714. },
  13715. ]
  13716. ))
  13717. characterMakers.push(() => makeCharacter(
  13718. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13719. {
  13720. legendary: {
  13721. height: math.unit(6, "feet"),
  13722. weight: math.unit(150, "lb"),
  13723. name: "Legendary",
  13724. image: {
  13725. source: "./media/characters/lucy/legendary.svg",
  13726. extra: 1355 / 1100,
  13727. bottom: 0.045
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Legendary",
  13734. height: math.unit(86882 * 2, "miles"),
  13735. default: true
  13736. },
  13737. ]
  13738. ))
  13739. characterMakers.push(() => makeCharacter(
  13740. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13741. {
  13742. front: {
  13743. height: math.unit(6, "feet"),
  13744. weight: math.unit(150, "lb"),
  13745. name: "Front",
  13746. image: {
  13747. source: "./media/characters/drusilla/front.svg",
  13748. extra: 678 / 635,
  13749. bottom: 0.03
  13750. }
  13751. },
  13752. back: {
  13753. height: math.unit(6, "feet"),
  13754. weight: math.unit(150, "lb"),
  13755. name: "Back",
  13756. image: {
  13757. source: "./media/characters/drusilla/back.svg",
  13758. extra: 678 / 635,
  13759. bottom: 0.005
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Macro",
  13766. height: math.unit(100, "feet")
  13767. },
  13768. {
  13769. name: "Canon Height",
  13770. height: math.unit(2000, "feet"),
  13771. default: true
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(6, "feet"),
  13780. weight: math.unit(180, "lb"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/renard-thatch/front.svg",
  13784. extra: 2411 / 2275,
  13785. bottom: 0.01
  13786. }
  13787. },
  13788. frontPosing: {
  13789. height: math.unit(6, "feet"),
  13790. weight: math.unit(180, "lb"),
  13791. name: "Front (Posing)",
  13792. image: {
  13793. source: "./media/characters/renard-thatch/front-posing.svg",
  13794. extra: 2381 / 2261,
  13795. bottom: 0.01
  13796. }
  13797. },
  13798. back: {
  13799. height: math.unit(6, "feet"),
  13800. weight: math.unit(180, "lb"),
  13801. name: "Back",
  13802. image: {
  13803. source: "./media/characters/renard-thatch/back.svg",
  13804. extra: 2428 / 2288
  13805. }
  13806. },
  13807. },
  13808. [
  13809. {
  13810. name: "Micro",
  13811. height: math.unit(3, "inches")
  13812. },
  13813. {
  13814. name: "Default",
  13815. height: math.unit(6, "feet"),
  13816. default: true
  13817. },
  13818. {
  13819. name: "Macro",
  13820. height: math.unit(75, "feet")
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(1450, "feet"),
  13829. weight: math.unit(1.21e6, "tons"),
  13830. name: "Front",
  13831. image: {
  13832. source: "./media/characters/sekvra/front.svg",
  13833. extra: 1193/1190,
  13834. bottom: 78/1271
  13835. }
  13836. },
  13837. side: {
  13838. height: math.unit(1450, "feet"),
  13839. weight: math.unit(1.21e6, "tons"),
  13840. name: "Side",
  13841. image: {
  13842. source: "./media/characters/sekvra/side.svg",
  13843. extra: 1193/1190,
  13844. bottom: 52/1245
  13845. }
  13846. },
  13847. back: {
  13848. height: math.unit(1450, "feet"),
  13849. weight: math.unit(1.21e6, "tons"),
  13850. name: "Back",
  13851. image: {
  13852. source: "./media/characters/sekvra/back.svg",
  13853. extra: 1219/1216,
  13854. bottom: 21/1240
  13855. }
  13856. },
  13857. frontClothed: {
  13858. height: math.unit(1450, "feet"),
  13859. weight: math.unit(1.21e6, "tons"),
  13860. name: "Front (Clothed)",
  13861. image: {
  13862. source: "./media/characters/sekvra/front-clothed.svg",
  13863. extra: 1192/1189,
  13864. bottom: 79/1271
  13865. }
  13866. },
  13867. },
  13868. [
  13869. {
  13870. name: "Macro",
  13871. height: math.unit(1450, "feet"),
  13872. default: true
  13873. },
  13874. {
  13875. name: "Megamacro",
  13876. height: math.unit(15000, "feet")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(150, "lb"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/carmine/front.svg",
  13889. extra: 1,
  13890. bottom: 0.035
  13891. }
  13892. },
  13893. frontArmor: {
  13894. height: math.unit(6, "feet"),
  13895. weight: math.unit(150, "lb"),
  13896. name: "Front (Armor)",
  13897. image: {
  13898. source: "./media/characters/carmine/front-armor.svg",
  13899. extra: 1,
  13900. bottom: 0.035
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Large",
  13907. height: math.unit(1, "mile")
  13908. },
  13909. {
  13910. name: "Huge",
  13911. height: math.unit(40, "miles"),
  13912. default: true
  13913. },
  13914. {
  13915. name: "Colossal",
  13916. height: math.unit(2500, "miles")
  13917. },
  13918. ]
  13919. ))
  13920. characterMakers.push(() => makeCharacter(
  13921. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13922. {
  13923. front: {
  13924. height: math.unit(6, "feet"),
  13925. weight: math.unit(150, "lb"),
  13926. name: "Front",
  13927. image: {
  13928. source: "./media/characters/elyssia/front.svg",
  13929. extra: 2201 / 2035,
  13930. bottom: 0.05
  13931. }
  13932. },
  13933. frontClothed: {
  13934. height: math.unit(6, "feet"),
  13935. weight: math.unit(150, "lb"),
  13936. name: "Front (Clothed)",
  13937. image: {
  13938. source: "./media/characters/elyssia/front-clothed.svg",
  13939. extra: 2201 / 2035,
  13940. bottom: 0.05
  13941. }
  13942. },
  13943. back: {
  13944. height: math.unit(6, "feet"),
  13945. weight: math.unit(150, "lb"),
  13946. name: "Back",
  13947. image: {
  13948. source: "./media/characters/elyssia/back.svg",
  13949. extra: 2201 / 2035,
  13950. bottom: 0.013
  13951. }
  13952. },
  13953. },
  13954. [
  13955. {
  13956. name: "Smaller",
  13957. height: math.unit(150, "feet")
  13958. },
  13959. {
  13960. name: "Standard",
  13961. height: math.unit(1400, "feet"),
  13962. default: true
  13963. },
  13964. {
  13965. name: "Distracted",
  13966. height: math.unit(15000, "feet")
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13972. {
  13973. front: {
  13974. height: math.unit(7 + 4/12, "feet"),
  13975. weight: math.unit(690, "lb"),
  13976. name: "Front",
  13977. image: {
  13978. source: "./media/characters/geno-maxwell/front.svg",
  13979. extra: 984/856,
  13980. bottom: 87/1071
  13981. }
  13982. },
  13983. back: {
  13984. height: math.unit(7 + 4/12, "feet"),
  13985. weight: math.unit(690, "lb"),
  13986. name: "Back",
  13987. image: {
  13988. source: "./media/characters/geno-maxwell/back.svg",
  13989. extra: 981/854,
  13990. bottom: 57/1038
  13991. }
  13992. },
  13993. frontCostume: {
  13994. height: math.unit(7 + 4/12, "feet"),
  13995. weight: math.unit(690, "lb"),
  13996. name: "Front (Costume)",
  13997. image: {
  13998. source: "./media/characters/geno-maxwell/front-costume.svg",
  13999. extra: 984/856,
  14000. bottom: 87/1071
  14001. }
  14002. },
  14003. backcostume: {
  14004. height: math.unit(7 + 4/12, "feet"),
  14005. weight: math.unit(690, "lb"),
  14006. name: "Back (Costume)",
  14007. image: {
  14008. source: "./media/characters/geno-maxwell/back-costume.svg",
  14009. extra: 981/854,
  14010. bottom: 57/1038
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Micro",
  14017. height: math.unit(3, "inches")
  14018. },
  14019. {
  14020. name: "Normal",
  14021. height: math.unit(7 + 4 / 12, "feet"),
  14022. default: true
  14023. },
  14024. {
  14025. name: "Macro",
  14026. height: math.unit(220, "feet")
  14027. },
  14028. {
  14029. name: "Megamacro",
  14030. height: math.unit(11, "miles")
  14031. },
  14032. ]
  14033. ))
  14034. characterMakers.push(() => makeCharacter(
  14035. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14036. {
  14037. front: {
  14038. height: math.unit(7 + 4/12, "feet"),
  14039. weight: math.unit(750, "lb"),
  14040. name: "Front",
  14041. image: {
  14042. source: "./media/characters/regena-maxwell/front.svg",
  14043. extra: 984/856,
  14044. bottom: 87/1071
  14045. }
  14046. },
  14047. back: {
  14048. height: math.unit(7 + 4/12, "feet"),
  14049. weight: math.unit(750, "lb"),
  14050. name: "Back",
  14051. image: {
  14052. source: "./media/characters/regena-maxwell/back.svg",
  14053. extra: 981/854,
  14054. bottom: 57/1038
  14055. }
  14056. },
  14057. frontCostume: {
  14058. height: math.unit(7 + 4/12, "feet"),
  14059. weight: math.unit(750, "lb"),
  14060. name: "Front (Costume)",
  14061. image: {
  14062. source: "./media/characters/regena-maxwell/front-costume.svg",
  14063. extra: 984/856,
  14064. bottom: 87/1071
  14065. }
  14066. },
  14067. backcostume: {
  14068. height: math.unit(7 + 4/12, "feet"),
  14069. weight: math.unit(750, "lb"),
  14070. name: "Back (Costume)",
  14071. image: {
  14072. source: "./media/characters/regena-maxwell/back-costume.svg",
  14073. extra: 981/854,
  14074. bottom: 57/1038
  14075. }
  14076. },
  14077. },
  14078. [
  14079. {
  14080. name: "Normal",
  14081. height: math.unit(7 + 4 / 12, "feet"),
  14082. default: true
  14083. },
  14084. {
  14085. name: "Macro",
  14086. height: math.unit(220, "feet")
  14087. },
  14088. {
  14089. name: "Megamacro",
  14090. height: math.unit(11, "miles")
  14091. },
  14092. ]
  14093. ))
  14094. characterMakers.push(() => makeCharacter(
  14095. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14096. {
  14097. front: {
  14098. height: math.unit(6, "feet"),
  14099. weight: math.unit(150, "lb"),
  14100. name: "Front",
  14101. image: {
  14102. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14103. extra: 860 / 690,
  14104. bottom: 0.03
  14105. }
  14106. },
  14107. },
  14108. [
  14109. {
  14110. name: "Normal",
  14111. height: math.unit(1.7, "meters"),
  14112. default: true
  14113. },
  14114. ]
  14115. ))
  14116. characterMakers.push(() => makeCharacter(
  14117. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14118. {
  14119. front: {
  14120. height: math.unit(6, "feet"),
  14121. weight: math.unit(150, "lb"),
  14122. name: "Front",
  14123. image: {
  14124. source: "./media/characters/quilly/front.svg",
  14125. extra: 890 / 776
  14126. }
  14127. },
  14128. },
  14129. [
  14130. {
  14131. name: "Gigamacro",
  14132. height: math.unit(404090, "miles"),
  14133. default: true
  14134. },
  14135. ]
  14136. ))
  14137. characterMakers.push(() => makeCharacter(
  14138. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14139. {
  14140. front: {
  14141. height: math.unit(7 + 8 / 12, "feet"),
  14142. weight: math.unit(350, "lb"),
  14143. name: "Front",
  14144. image: {
  14145. source: "./media/characters/tempest/front.svg",
  14146. extra: 1175 / 1086,
  14147. bottom: 0.02
  14148. }
  14149. },
  14150. },
  14151. [
  14152. {
  14153. name: "Normal",
  14154. height: math.unit(7 + 8 / 12, "feet"),
  14155. default: true
  14156. },
  14157. ]
  14158. ))
  14159. characterMakers.push(() => makeCharacter(
  14160. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14161. {
  14162. side: {
  14163. height: math.unit(4 + 5 / 12, "feet"),
  14164. weight: math.unit(80, "lb"),
  14165. name: "Side",
  14166. image: {
  14167. source: "./media/characters/rodger/side.svg",
  14168. extra: 1235 / 1118
  14169. }
  14170. },
  14171. },
  14172. [
  14173. {
  14174. name: "Micro",
  14175. height: math.unit(1, "inch")
  14176. },
  14177. {
  14178. name: "Normal",
  14179. height: math.unit(4 + 5 / 12, "feet"),
  14180. default: true
  14181. },
  14182. {
  14183. name: "Macro",
  14184. height: math.unit(120, "feet")
  14185. },
  14186. ]
  14187. ))
  14188. characterMakers.push(() => makeCharacter(
  14189. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14190. {
  14191. front: {
  14192. height: math.unit(6, "feet"),
  14193. weight: math.unit(150, "lb"),
  14194. name: "Front",
  14195. image: {
  14196. source: "./media/characters/danyel/front.svg",
  14197. extra: 1185 / 1123,
  14198. bottom: 0.05
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Shrunken",
  14205. height: math.unit(0.5, "mm")
  14206. },
  14207. {
  14208. name: "Micro",
  14209. height: math.unit(1, "mm"),
  14210. default: true
  14211. },
  14212. {
  14213. name: "Upsized",
  14214. height: math.unit(5 + 5 / 12, "feet")
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14220. {
  14221. front: {
  14222. height: math.unit(5 + 6 / 12, "feet"),
  14223. weight: math.unit(200, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/vivian-bijoux/front.svg",
  14227. extra: 1217/1209,
  14228. bottom: 76/1293
  14229. }
  14230. },
  14231. back: {
  14232. height: math.unit(5 + 6 / 12, "feet"),
  14233. weight: math.unit(200, "lb"),
  14234. name: "Back",
  14235. image: {
  14236. source: "./media/characters/vivian-bijoux/back.svg",
  14237. extra: 1214/1208,
  14238. bottom: 51/1265
  14239. }
  14240. },
  14241. dressed: {
  14242. height: math.unit(5 + 6 / 12, "feet"),
  14243. weight: math.unit(200, "lb"),
  14244. name: "Dressed",
  14245. image: {
  14246. source: "./media/characters/vivian-bijoux/dressed.svg",
  14247. extra: 1217/1209,
  14248. bottom: 76/1293
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Normal",
  14255. height: math.unit(5 + 6 / 12, "feet"),
  14256. default: true
  14257. },
  14258. {
  14259. name: "Bad Dream",
  14260. height: math.unit(500, "feet")
  14261. },
  14262. {
  14263. name: "Nightmare",
  14264. height: math.unit(500, "miles")
  14265. },
  14266. ]
  14267. ))
  14268. characterMakers.push(() => makeCharacter(
  14269. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14270. {
  14271. front: {
  14272. height: math.unit(6 + 1 / 12, "feet"),
  14273. weight: math.unit(260, "lb"),
  14274. name: "Front",
  14275. image: {
  14276. source: "./media/characters/zeta/front.svg",
  14277. extra: 1968 / 1889,
  14278. bottom: 0.06
  14279. }
  14280. },
  14281. back: {
  14282. height: math.unit(6 + 1 / 12, "feet"),
  14283. weight: math.unit(260, "lb"),
  14284. name: "Back",
  14285. image: {
  14286. source: "./media/characters/zeta/back.svg",
  14287. extra: 1944 / 1858,
  14288. bottom: 0.03
  14289. }
  14290. },
  14291. hand: {
  14292. height: math.unit(1.112, "feet"),
  14293. name: "Hand",
  14294. image: {
  14295. source: "./media/characters/zeta/hand.svg"
  14296. }
  14297. },
  14298. foot: {
  14299. height: math.unit(1.48, "feet"),
  14300. name: "Foot",
  14301. image: {
  14302. source: "./media/characters/zeta/foot.svg"
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Micro",
  14309. height: math.unit(6, "inches")
  14310. },
  14311. {
  14312. name: "Normal",
  14313. height: math.unit(6 + 1 / 12, "feet"),
  14314. default: true
  14315. },
  14316. {
  14317. name: "Macro",
  14318. height: math.unit(20, "feet")
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(6, "feet"),
  14327. weight: math.unit(150, "lb"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/jamie-larsen/front.svg",
  14331. extra: 962 / 933,
  14332. bottom: 0.02
  14333. }
  14334. },
  14335. back: {
  14336. height: math.unit(6, "feet"),
  14337. weight: math.unit(150, "lb"),
  14338. name: "Back",
  14339. image: {
  14340. source: "./media/characters/jamie-larsen/back.svg",
  14341. extra: 997 / 946
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Macro",
  14348. height: math.unit(28 + 7 / 12, "feet"),
  14349. default: true
  14350. },
  14351. {
  14352. name: "Macro+",
  14353. height: math.unit(180, "feet")
  14354. },
  14355. {
  14356. name: "Megamacro",
  14357. height: math.unit(10, "miles")
  14358. },
  14359. {
  14360. name: "Gigamacro",
  14361. height: math.unit(200000, "miles")
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(6, "feet"),
  14370. weight: math.unit(120, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/vance/front.svg",
  14374. extra: 1980 / 1890,
  14375. bottom: 0.09
  14376. }
  14377. },
  14378. back: {
  14379. height: math.unit(6, "feet"),
  14380. weight: math.unit(120, "lb"),
  14381. name: "Back",
  14382. image: {
  14383. source: "./media/characters/vance/back.svg",
  14384. extra: 2081 / 1994,
  14385. bottom: 0.014
  14386. }
  14387. },
  14388. hand: {
  14389. height: math.unit(0.88, "feet"),
  14390. name: "Hand",
  14391. image: {
  14392. source: "./media/characters/vance/hand.svg"
  14393. }
  14394. },
  14395. foot: {
  14396. height: math.unit(0.64, "feet"),
  14397. name: "Foot",
  14398. image: {
  14399. source: "./media/characters/vance/foot.svg"
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Small",
  14406. height: math.unit(90, "feet"),
  14407. default: true
  14408. },
  14409. {
  14410. name: "Macro",
  14411. height: math.unit(100, "meters")
  14412. },
  14413. {
  14414. name: "Megamacro",
  14415. height: math.unit(15, "miles")
  14416. },
  14417. ]
  14418. ))
  14419. characterMakers.push(() => makeCharacter(
  14420. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14421. {
  14422. front: {
  14423. height: math.unit(6, "feet"),
  14424. weight: math.unit(180, "lb"),
  14425. name: "Front",
  14426. image: {
  14427. source: "./media/characters/xochitl/front.svg",
  14428. extra: 2297 / 2261,
  14429. bottom: 0.065
  14430. }
  14431. },
  14432. back: {
  14433. height: math.unit(6, "feet"),
  14434. weight: math.unit(180, "lb"),
  14435. name: "Back",
  14436. image: {
  14437. source: "./media/characters/xochitl/back.svg",
  14438. extra: 2386 / 2354,
  14439. bottom: 0.01
  14440. }
  14441. },
  14442. foot: {
  14443. height: math.unit(6 / 5 * 1.15, "feet"),
  14444. weight: math.unit(150, "lb"),
  14445. name: "Foot",
  14446. image: {
  14447. source: "./media/characters/xochitl/foot.svg"
  14448. }
  14449. },
  14450. },
  14451. [
  14452. {
  14453. name: "Macro",
  14454. height: math.unit(80, "feet")
  14455. },
  14456. {
  14457. name: "Macro+",
  14458. height: math.unit(400, "feet"),
  14459. default: true
  14460. },
  14461. {
  14462. name: "Gigamacro",
  14463. height: math.unit(80000, "miles")
  14464. },
  14465. {
  14466. name: "Gigamacro+",
  14467. height: math.unit(400000, "miles")
  14468. },
  14469. {
  14470. name: "Teramacro",
  14471. height: math.unit(300, "AU")
  14472. },
  14473. ]
  14474. ))
  14475. characterMakers.push(() => makeCharacter(
  14476. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14477. {
  14478. front: {
  14479. height: math.unit(6, "feet"),
  14480. weight: math.unit(150, "lb"),
  14481. name: "Front",
  14482. image: {
  14483. source: "./media/characters/vincent/front.svg",
  14484. extra: 1130 / 1080,
  14485. bottom: 0.055
  14486. }
  14487. },
  14488. beak: {
  14489. height: math.unit(6 * 0.1, "feet"),
  14490. name: "Beak",
  14491. image: {
  14492. source: "./media/characters/vincent/beak.svg"
  14493. }
  14494. },
  14495. hand: {
  14496. height: math.unit(6 * 0.85, "feet"),
  14497. weight: math.unit(150, "lb"),
  14498. name: "Hand",
  14499. image: {
  14500. source: "./media/characters/vincent/hand.svg"
  14501. }
  14502. },
  14503. foot: {
  14504. height: math.unit(6 * 0.19, "feet"),
  14505. weight: math.unit(150, "lb"),
  14506. name: "Foot",
  14507. image: {
  14508. source: "./media/characters/vincent/foot.svg"
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Base",
  14515. height: math.unit(6 + 5 / 12, "feet"),
  14516. default: true
  14517. },
  14518. {
  14519. name: "Macro",
  14520. height: math.unit(300, "feet")
  14521. },
  14522. {
  14523. name: "Megamacro",
  14524. height: math.unit(2, "miles")
  14525. },
  14526. {
  14527. name: "Gigamacro",
  14528. height: math.unit(1000, "miles")
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(2, "meters"),
  14537. weight: math.unit(500, "kg"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/coatl/front.svg",
  14541. extra: 3948 / 3500,
  14542. bottom: 0.082
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Normal",
  14549. height: math.unit(4, "meters")
  14550. },
  14551. {
  14552. name: "Macro",
  14553. height: math.unit(100, "meters"),
  14554. default: true
  14555. },
  14556. {
  14557. name: "Macro+",
  14558. height: math.unit(300, "meters")
  14559. },
  14560. {
  14561. name: "Megamacro",
  14562. height: math.unit(3, "gigameters")
  14563. },
  14564. {
  14565. name: "Megamacro+",
  14566. height: math.unit(300, "terameters")
  14567. },
  14568. {
  14569. name: "Megamacro++",
  14570. height: math.unit(3, "lightyears")
  14571. },
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14576. {
  14577. front: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(50, "kg"),
  14580. name: "front",
  14581. image: {
  14582. source: "./media/characters/shiroryu/front.svg",
  14583. extra: 1990 / 1935
  14584. }
  14585. },
  14586. },
  14587. [
  14588. {
  14589. name: "Mortal Mingling",
  14590. height: math.unit(3, "meters")
  14591. },
  14592. {
  14593. name: "Kaiju-ish",
  14594. height: math.unit(250, "meters")
  14595. },
  14596. {
  14597. name: "Somewhat Godly",
  14598. height: math.unit(400, "km"),
  14599. default: true
  14600. },
  14601. {
  14602. name: "Planetary",
  14603. height: math.unit(300, "megameters")
  14604. },
  14605. {
  14606. name: "Galaxy-dwarfing",
  14607. height: math.unit(450, "kiloparsecs")
  14608. },
  14609. {
  14610. name: "Universe Eater",
  14611. height: math.unit(150, "gigaparsecs")
  14612. },
  14613. {
  14614. name: "Almost Immeasurable",
  14615. height: math.unit(1.3e266, "yottaparsecs")
  14616. },
  14617. ]
  14618. ))
  14619. characterMakers.push(() => makeCharacter(
  14620. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14621. {
  14622. front: {
  14623. height: math.unit(6, "feet"),
  14624. weight: math.unit(150, "lb"),
  14625. name: "Front",
  14626. image: {
  14627. source: "./media/characters/umeko/front.svg",
  14628. extra: 1,
  14629. bottom: 0.019
  14630. }
  14631. },
  14632. frontArmored: {
  14633. height: math.unit(6, "feet"),
  14634. weight: math.unit(150, "lb"),
  14635. name: "Front (Armored)",
  14636. image: {
  14637. source: "./media/characters/umeko/front-armored.svg",
  14638. extra: 1,
  14639. bottom: 0.021
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Macro",
  14646. height: math.unit(220, "feet"),
  14647. default: true
  14648. },
  14649. {
  14650. name: "Guardian Dragon",
  14651. height: math.unit(50, "miles")
  14652. },
  14653. {
  14654. name: "Cosmic",
  14655. height: math.unit(800000, "miles")
  14656. },
  14657. ]
  14658. ))
  14659. characterMakers.push(() => makeCharacter(
  14660. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14661. {
  14662. front: {
  14663. height: math.unit(6, "feet"),
  14664. weight: math.unit(150, "lb"),
  14665. name: "Front",
  14666. image: {
  14667. source: "./media/characters/cassidy/front.svg",
  14668. extra: 810/808,
  14669. bottom: 41/851
  14670. }
  14671. },
  14672. },
  14673. [
  14674. {
  14675. name: "Canon Height",
  14676. height: math.unit(120, "feet"),
  14677. default: true
  14678. },
  14679. {
  14680. name: "Macro+",
  14681. height: math.unit(400, "feet")
  14682. },
  14683. {
  14684. name: "Macro++",
  14685. height: math.unit(4000, "feet")
  14686. },
  14687. {
  14688. name: "Megamacro",
  14689. height: math.unit(3, "miles")
  14690. },
  14691. ]
  14692. ))
  14693. characterMakers.push(() => makeCharacter(
  14694. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14695. {
  14696. front: {
  14697. height: math.unit(6, "feet"),
  14698. weight: math.unit(150, "lb"),
  14699. name: "Front",
  14700. image: {
  14701. source: "./media/characters/isaac/front.svg",
  14702. extra: 896 / 815,
  14703. bottom: 0.11
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Human Size",
  14710. height: math.unit(8, "feet"),
  14711. default: true
  14712. },
  14713. {
  14714. name: "Macro",
  14715. height: math.unit(400, "feet")
  14716. },
  14717. {
  14718. name: "Megamacro",
  14719. height: math.unit(50, "miles")
  14720. },
  14721. {
  14722. name: "Canon Height",
  14723. height: math.unit(200, "AU")
  14724. },
  14725. ]
  14726. ))
  14727. characterMakers.push(() => makeCharacter(
  14728. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14729. {
  14730. front: {
  14731. height: math.unit(6, "feet"),
  14732. weight: math.unit(72, "kg"),
  14733. name: "Front",
  14734. image: {
  14735. source: "./media/characters/sleekit/front.svg",
  14736. extra: 4693 / 4487,
  14737. bottom: 0.012
  14738. }
  14739. },
  14740. },
  14741. [
  14742. {
  14743. name: "Minimum Height",
  14744. height: math.unit(10, "meters")
  14745. },
  14746. {
  14747. name: "Smaller",
  14748. height: math.unit(25, "meters")
  14749. },
  14750. {
  14751. name: "Larger",
  14752. height: math.unit(38, "meters"),
  14753. default: true
  14754. },
  14755. {
  14756. name: "Maximum height",
  14757. height: math.unit(100, "meters")
  14758. },
  14759. ]
  14760. ))
  14761. characterMakers.push(() => makeCharacter(
  14762. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14763. {
  14764. front: {
  14765. height: math.unit(6, "feet"),
  14766. weight: math.unit(150, "lb"),
  14767. name: "Front",
  14768. image: {
  14769. source: "./media/characters/nillia/front.svg",
  14770. extra: 2195 / 2037,
  14771. bottom: 0.005
  14772. }
  14773. },
  14774. back: {
  14775. height: math.unit(6, "feet"),
  14776. weight: math.unit(150, "lb"),
  14777. name: "Back",
  14778. image: {
  14779. source: "./media/characters/nillia/back.svg",
  14780. extra: 2195 / 2037,
  14781. bottom: 0.005
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Canon Height",
  14788. height: math.unit(489, "feet"),
  14789. default: true
  14790. }
  14791. ]
  14792. ))
  14793. characterMakers.push(() => makeCharacter(
  14794. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14795. {
  14796. front: {
  14797. height: math.unit(6, "feet"),
  14798. weight: math.unit(150, "lb"),
  14799. name: "Front",
  14800. image: {
  14801. source: "./media/characters/mesmyriza/front.svg",
  14802. extra: 2067 / 1784,
  14803. bottom: 0.035
  14804. }
  14805. },
  14806. foot: {
  14807. height: math.unit(6 / (250 / 35), "feet"),
  14808. name: "Foot",
  14809. image: {
  14810. source: "./media/characters/mesmyriza/foot.svg"
  14811. }
  14812. },
  14813. },
  14814. [
  14815. {
  14816. name: "Macro",
  14817. height: math.unit(457, "meters"),
  14818. default: true
  14819. },
  14820. {
  14821. name: "Megamacro",
  14822. height: math.unit(8, "megameters")
  14823. },
  14824. ]
  14825. ))
  14826. characterMakers.push(() => makeCharacter(
  14827. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14828. {
  14829. front: {
  14830. height: math.unit(6, "feet"),
  14831. weight: math.unit(250, "lb"),
  14832. name: "Front",
  14833. image: {
  14834. source: "./media/characters/saudade/front.svg",
  14835. extra: 1172 / 1139,
  14836. bottom: 0.035
  14837. }
  14838. },
  14839. },
  14840. [
  14841. {
  14842. name: "Micro",
  14843. height: math.unit(3, "inches")
  14844. },
  14845. {
  14846. name: "Normal",
  14847. height: math.unit(6, "feet"),
  14848. default: true
  14849. },
  14850. {
  14851. name: "Macro",
  14852. height: math.unit(50, "feet")
  14853. },
  14854. {
  14855. name: "Megamacro",
  14856. height: math.unit(2800, "feet")
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14862. {
  14863. front: {
  14864. height: math.unit(5 + 4 / 12, "feet"),
  14865. weight: math.unit(100, "lb"),
  14866. name: "Front",
  14867. image: {
  14868. source: "./media/characters/keireer/front.svg",
  14869. extra: 716 / 666,
  14870. bottom: 0.05
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(5 + 4 / 12, "feet"),
  14878. default: true
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14884. {
  14885. front: {
  14886. height: math.unit(6, "feet"),
  14887. weight: math.unit(90, "kg"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/mirja/front.svg",
  14891. extra: 1789 / 1683,
  14892. bottom: 0.05
  14893. }
  14894. },
  14895. frontDressed: {
  14896. height: math.unit(6, "feet"),
  14897. weight: math.unit(90, "lb"),
  14898. name: "Front (Dressed)",
  14899. image: {
  14900. source: "./media/characters/mirja/front-dressed.svg",
  14901. extra: 1789 / 1683,
  14902. bottom: 0.05
  14903. }
  14904. },
  14905. back: {
  14906. height: math.unit(6, "feet"),
  14907. weight: math.unit(90, "lb"),
  14908. name: "Back",
  14909. image: {
  14910. source: "./media/characters/mirja/back.svg",
  14911. extra: 953 / 917,
  14912. bottom: 0.017
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "\"Incognito\"",
  14919. height: math.unit(3, "meters")
  14920. },
  14921. {
  14922. name: "Strolling Size",
  14923. height: math.unit(15, "km")
  14924. },
  14925. {
  14926. name: "Larger Strolling Size",
  14927. height: math.unit(400, "km")
  14928. },
  14929. {
  14930. name: "Preferred Size",
  14931. height: math.unit(5000, "km")
  14932. },
  14933. {
  14934. name: "True Size",
  14935. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14936. default: true
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14942. {
  14943. front: {
  14944. height: math.unit(15, "feet"),
  14945. weight: math.unit(880, "kg"),
  14946. name: "Front",
  14947. image: {
  14948. source: "./media/characters/nightraver/front.svg",
  14949. extra: 2444 / 2160,
  14950. bottom: 0.027
  14951. }
  14952. },
  14953. back: {
  14954. height: math.unit(15, "feet"),
  14955. weight: math.unit(880, "kg"),
  14956. name: "Back",
  14957. image: {
  14958. source: "./media/characters/nightraver/back.svg",
  14959. extra: 2309 / 2180,
  14960. bottom: 0.005
  14961. }
  14962. },
  14963. sole: {
  14964. height: math.unit(2.878, "feet"),
  14965. name: "Sole",
  14966. image: {
  14967. source: "./media/characters/nightraver/sole.svg"
  14968. }
  14969. },
  14970. foot: {
  14971. height: math.unit(2.285, "feet"),
  14972. name: "Foot",
  14973. image: {
  14974. source: "./media/characters/nightraver/foot.svg"
  14975. }
  14976. },
  14977. maw: {
  14978. height: math.unit(2.67, "feet"),
  14979. name: "Maw",
  14980. image: {
  14981. source: "./media/characters/nightraver/maw.svg"
  14982. }
  14983. },
  14984. },
  14985. [
  14986. {
  14987. name: "Micro",
  14988. height: math.unit(1, "cm")
  14989. },
  14990. {
  14991. name: "Normal",
  14992. height: math.unit(15, "feet"),
  14993. default: true
  14994. },
  14995. {
  14996. name: "Macro",
  14997. height: math.unit(300, "feet")
  14998. },
  14999. {
  15000. name: "Megamacro",
  15001. height: math.unit(300, "miles")
  15002. },
  15003. {
  15004. name: "Gigamacro",
  15005. height: math.unit(10000, "miles")
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15011. {
  15012. side: {
  15013. height: math.unit(2, "inches"),
  15014. weight: math.unit(5, "grams"),
  15015. name: "Side",
  15016. image: {
  15017. source: "./media/characters/arc/side.svg"
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Micro",
  15024. height: math.unit(2, "inches"),
  15025. default: true
  15026. },
  15027. ]
  15028. ))
  15029. characterMakers.push(() => makeCharacter(
  15030. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15031. {
  15032. front: {
  15033. height: math.unit(1.1938, "meters"),
  15034. weight: math.unit(54, "kg"),
  15035. name: "Front",
  15036. image: {
  15037. source: "./media/characters/nebula-shahar/front.svg",
  15038. extra: 1642 / 1436,
  15039. bottom: 0.06
  15040. }
  15041. },
  15042. },
  15043. [
  15044. {
  15045. name: "Megamicro",
  15046. height: math.unit(0.3, "mm")
  15047. },
  15048. {
  15049. name: "Micro",
  15050. height: math.unit(3, "cm")
  15051. },
  15052. {
  15053. name: "Normal",
  15054. height: math.unit(138, "cm"),
  15055. default: true
  15056. },
  15057. {
  15058. name: "Macro",
  15059. height: math.unit(30, "m")
  15060. },
  15061. ]
  15062. ))
  15063. characterMakers.push(() => makeCharacter(
  15064. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15065. {
  15066. front: {
  15067. height: math.unit(5.24, "feet"),
  15068. weight: math.unit(150, "lb"),
  15069. name: "Front",
  15070. image: {
  15071. source: "./media/characters/shayla/front.svg",
  15072. extra: 1512 / 1414,
  15073. bottom: 0.01
  15074. }
  15075. },
  15076. back: {
  15077. height: math.unit(5.24, "feet"),
  15078. weight: math.unit(150, "lb"),
  15079. name: "Back",
  15080. image: {
  15081. source: "./media/characters/shayla/back.svg",
  15082. extra: 1512 / 1414
  15083. }
  15084. },
  15085. hand: {
  15086. height: math.unit(0.7781496062992126, "feet"),
  15087. name: "Hand",
  15088. image: {
  15089. source: "./media/characters/shayla/hand.svg"
  15090. }
  15091. },
  15092. foot: {
  15093. height: math.unit(1.4206036745406823, "feet"),
  15094. name: "Foot",
  15095. image: {
  15096. source: "./media/characters/shayla/foot.svg"
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Micro",
  15103. height: math.unit(0.32, "feet")
  15104. },
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(5.24, "feet"),
  15108. default: true
  15109. },
  15110. {
  15111. name: "Macro",
  15112. height: math.unit(492.12, "feet")
  15113. },
  15114. {
  15115. name: "Megamacro",
  15116. height: math.unit(186.41, "miles")
  15117. },
  15118. ]
  15119. ))
  15120. characterMakers.push(() => makeCharacter(
  15121. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15122. {
  15123. front: {
  15124. height: math.unit(2.2, "m"),
  15125. weight: math.unit(120, "kg"),
  15126. name: "Front",
  15127. image: {
  15128. source: "./media/characters/pia-jr/front.svg",
  15129. extra: 1000 / 970,
  15130. bottom: 0.035
  15131. }
  15132. },
  15133. hand: {
  15134. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15135. name: "Hand",
  15136. image: {
  15137. source: "./media/characters/pia-jr/hand.svg"
  15138. }
  15139. },
  15140. paw: {
  15141. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15142. name: "Paw",
  15143. image: {
  15144. source: "./media/characters/pia-jr/paw.svg"
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Micro",
  15151. height: math.unit(1.2, "cm")
  15152. },
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(2.2, "m"),
  15156. default: true
  15157. },
  15158. {
  15159. name: "Macro",
  15160. height: math.unit(180, "m")
  15161. },
  15162. {
  15163. name: "Megamacro",
  15164. height: math.unit(420, "km")
  15165. },
  15166. ]
  15167. ))
  15168. characterMakers.push(() => makeCharacter(
  15169. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15170. {
  15171. front: {
  15172. height: math.unit(2, "m"),
  15173. weight: math.unit(115, "kg"),
  15174. name: "Front",
  15175. image: {
  15176. source: "./media/characters/pia-sr/front.svg",
  15177. extra: 760 / 730,
  15178. bottom: 0.015
  15179. }
  15180. },
  15181. back: {
  15182. height: math.unit(2, "m"),
  15183. weight: math.unit(115, "kg"),
  15184. name: "Back",
  15185. image: {
  15186. source: "./media/characters/pia-sr/back.svg",
  15187. extra: 760 / 730,
  15188. bottom: 0.01
  15189. }
  15190. },
  15191. hand: {
  15192. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15193. name: "Hand",
  15194. image: {
  15195. source: "./media/characters/pia-sr/hand.svg"
  15196. }
  15197. },
  15198. foot: {
  15199. height: math.unit(1.83, "feet"),
  15200. name: "Foot",
  15201. image: {
  15202. source: "./media/characters/pia-sr/foot.svg"
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Micro",
  15209. height: math.unit(88, "mm")
  15210. },
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(2, "m"),
  15214. default: true
  15215. },
  15216. {
  15217. name: "Macro",
  15218. height: math.unit(200, "m")
  15219. },
  15220. {
  15221. name: "Megamacro",
  15222. height: math.unit(420, "km")
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15228. {
  15229. front: {
  15230. height: math.unit(8 + 2 / 12, "feet"),
  15231. weight: math.unit(300, "lb"),
  15232. name: "Front",
  15233. image: {
  15234. source: "./media/characters/kibibyte/front.svg",
  15235. extra: 2221 / 2098,
  15236. bottom: 0.04
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(8 + 2 / 12, "feet"),
  15244. default: true
  15245. },
  15246. {
  15247. name: "Socialable Macro",
  15248. height: math.unit(50, "feet")
  15249. },
  15250. {
  15251. name: "Macro",
  15252. height: math.unit(300, "feet")
  15253. },
  15254. {
  15255. name: "Megamacro",
  15256. height: math.unit(500, "miles")
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15262. {
  15263. front: {
  15264. height: math.unit(6, "feet"),
  15265. weight: math.unit(150, "lb"),
  15266. name: "Front",
  15267. image: {
  15268. source: "./media/characters/felix/front.svg",
  15269. extra: 762 / 722,
  15270. bottom: 0.02
  15271. }
  15272. },
  15273. frontClothed: {
  15274. height: math.unit(6, "feet"),
  15275. weight: math.unit(150, "lb"),
  15276. name: "Front (Clothed)",
  15277. image: {
  15278. source: "./media/characters/felix/front-clothed.svg",
  15279. extra: 762 / 722,
  15280. bottom: 0.02
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(6 + 8 / 12, "feet"),
  15288. default: true
  15289. },
  15290. {
  15291. name: "Macro",
  15292. height: math.unit(2600, "feet")
  15293. },
  15294. {
  15295. name: "Megamacro",
  15296. height: math.unit(450, "miles")
  15297. },
  15298. ]
  15299. ))
  15300. characterMakers.push(() => makeCharacter(
  15301. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15302. {
  15303. front: {
  15304. height: math.unit(6 + 1 / 12, "feet"),
  15305. weight: math.unit(250, "lb"),
  15306. name: "Front",
  15307. image: {
  15308. source: "./media/characters/tobo/front.svg",
  15309. extra: 608 / 586,
  15310. bottom: 0.023
  15311. }
  15312. },
  15313. back: {
  15314. height: math.unit(6 + 1 / 12, "feet"),
  15315. weight: math.unit(250, "lb"),
  15316. name: "Back",
  15317. image: {
  15318. source: "./media/characters/tobo/back.svg",
  15319. extra: 608 / 586
  15320. }
  15321. },
  15322. },
  15323. [
  15324. {
  15325. name: "Nano",
  15326. height: math.unit(2, "nm")
  15327. },
  15328. {
  15329. name: "Megamicro",
  15330. height: math.unit(0.1, "mm")
  15331. },
  15332. {
  15333. name: "Micro",
  15334. height: math.unit(1, "inch"),
  15335. default: true
  15336. },
  15337. {
  15338. name: "Human-sized",
  15339. height: math.unit(6 + 1 / 12, "feet")
  15340. },
  15341. {
  15342. name: "Macro",
  15343. height: math.unit(250, "feet")
  15344. },
  15345. {
  15346. name: "Megamacro",
  15347. height: math.unit(75, "miles")
  15348. },
  15349. {
  15350. name: "Texas-sized",
  15351. height: math.unit(750, "miles")
  15352. },
  15353. {
  15354. name: "Teramacro",
  15355. height: math.unit(50000, "miles")
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(6, "feet"),
  15364. weight: math.unit(269, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/danny-kapowsky/front.svg",
  15368. extra: 766 / 736,
  15369. bottom: 0.044
  15370. }
  15371. },
  15372. back: {
  15373. height: math.unit(6, "feet"),
  15374. weight: math.unit(269, "lb"),
  15375. name: "Back",
  15376. image: {
  15377. source: "./media/characters/danny-kapowsky/back.svg",
  15378. extra: 797 / 760,
  15379. bottom: 0.025
  15380. }
  15381. },
  15382. },
  15383. [
  15384. {
  15385. name: "Macro",
  15386. height: math.unit(150, "feet"),
  15387. default: true
  15388. },
  15389. {
  15390. name: "Macro+",
  15391. height: math.unit(200, "feet")
  15392. },
  15393. {
  15394. name: "Macro++",
  15395. height: math.unit(300, "feet")
  15396. },
  15397. {
  15398. name: "Macro+++",
  15399. height: math.unit(400, "feet")
  15400. },
  15401. ]
  15402. ))
  15403. characterMakers.push(() => makeCharacter(
  15404. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15405. {
  15406. side: {
  15407. height: math.unit(6, "feet"),
  15408. weight: math.unit(170, "lb"),
  15409. name: "Side",
  15410. image: {
  15411. source: "./media/characters/finn/side.svg",
  15412. extra: 1953 / 1807,
  15413. bottom: 0.057
  15414. }
  15415. },
  15416. },
  15417. [
  15418. {
  15419. name: "Megamacro",
  15420. height: math.unit(14445, "feet"),
  15421. default: true
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(5 + 6 / 12, "feet"),
  15430. weight: math.unit(125, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/roy/front.svg",
  15434. extra: 1,
  15435. bottom: 0.11
  15436. }
  15437. },
  15438. },
  15439. [
  15440. {
  15441. name: "Micro",
  15442. height: math.unit(3, "inches"),
  15443. default: true
  15444. },
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(5 + 6 / 12, "feet")
  15448. },
  15449. {
  15450. name: "Lesser Macro",
  15451. height: math.unit(60, "feet")
  15452. },
  15453. {
  15454. name: "Greater Macro",
  15455. height: math.unit(120, "feet")
  15456. },
  15457. ]
  15458. ))
  15459. characterMakers.push(() => makeCharacter(
  15460. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15461. {
  15462. front: {
  15463. height: math.unit(6, "feet"),
  15464. weight: math.unit(100, "lb"),
  15465. name: "Front",
  15466. image: {
  15467. source: "./media/characters/aevsivs/front.svg",
  15468. extra: 1,
  15469. bottom: 0.03
  15470. }
  15471. },
  15472. back: {
  15473. height: math.unit(6, "feet"),
  15474. weight: math.unit(100, "lb"),
  15475. name: "Back",
  15476. image: {
  15477. source: "./media/characters/aevsivs/back.svg"
  15478. }
  15479. },
  15480. },
  15481. [
  15482. {
  15483. name: "Micro",
  15484. height: math.unit(2, "inches"),
  15485. default: true
  15486. },
  15487. {
  15488. name: "Normal",
  15489. height: math.unit(5, "feet")
  15490. },
  15491. ]
  15492. ))
  15493. characterMakers.push(() => makeCharacter(
  15494. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15495. {
  15496. front: {
  15497. height: math.unit(5 + 7 / 12, "feet"),
  15498. weight: math.unit(159, "lb"),
  15499. name: "Front",
  15500. image: {
  15501. source: "./media/characters/hildegard/front.svg",
  15502. extra: 289 / 269,
  15503. bottom: 7.63 / 297.8
  15504. }
  15505. },
  15506. back: {
  15507. height: math.unit(5 + 7 / 12, "feet"),
  15508. weight: math.unit(159, "lb"),
  15509. name: "Back",
  15510. image: {
  15511. source: "./media/characters/hildegard/back.svg",
  15512. extra: 280 / 260,
  15513. bottom: 2.3 / 282
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(5 + 7 / 12, "feet"),
  15521. default: true
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15527. {
  15528. bernard: {
  15529. height: math.unit(2 + 7 / 12, "feet"),
  15530. weight: math.unit(66, "lb"),
  15531. name: "Bernard",
  15532. rename: true,
  15533. image: {
  15534. source: "./media/characters/bernard-wilder/bernard.svg",
  15535. extra: 192 / 128,
  15536. bottom: 0.05
  15537. }
  15538. },
  15539. wilder: {
  15540. height: math.unit(5 + 8 / 12, "feet"),
  15541. weight: math.unit(143, "lb"),
  15542. name: "Wilder",
  15543. rename: true,
  15544. image: {
  15545. source: "./media/characters/bernard-wilder/wilder.svg",
  15546. extra: 361 / 312,
  15547. bottom: 0.02
  15548. }
  15549. },
  15550. },
  15551. [
  15552. {
  15553. name: "Normal",
  15554. height: math.unit(2 + 7 / 12, "feet"),
  15555. default: true
  15556. },
  15557. ]
  15558. ))
  15559. characterMakers.push(() => makeCharacter(
  15560. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15561. {
  15562. anthro: {
  15563. height: math.unit(6 + 1 / 12, "feet"),
  15564. weight: math.unit(155, "lb"),
  15565. name: "Anthro",
  15566. image: {
  15567. source: "./media/characters/hearth/anthro.svg",
  15568. extra: 1178/1136,
  15569. bottom: 28/1206
  15570. }
  15571. },
  15572. feral: {
  15573. height: math.unit(3.78, "feet"),
  15574. weight: math.unit(35, "kg"),
  15575. name: "Feral",
  15576. image: {
  15577. source: "./media/characters/hearth/feral.svg",
  15578. extra: 153 / 135,
  15579. bottom: 0.03
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Normal",
  15586. height: math.unit(6 + 1 / 12, "feet"),
  15587. default: true
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15593. {
  15594. front: {
  15595. height: math.unit(6, "feet"),
  15596. weight: math.unit(182, "lb"),
  15597. name: "Front",
  15598. image: {
  15599. source: "./media/characters/ingrid/front.svg",
  15600. extra: 294 / 268,
  15601. bottom: 0.027
  15602. }
  15603. },
  15604. },
  15605. [
  15606. {
  15607. name: "Normal",
  15608. height: math.unit(6, "feet"),
  15609. default: true
  15610. },
  15611. ]
  15612. ))
  15613. characterMakers.push(() => makeCharacter(
  15614. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15615. {
  15616. eevee: {
  15617. height: math.unit(2 + 10 / 12, "feet"),
  15618. weight: math.unit(86, "lb"),
  15619. name: "Malgam",
  15620. image: {
  15621. source: "./media/characters/malgam/eevee.svg",
  15622. extra: 952/784,
  15623. bottom: 38/990
  15624. }
  15625. },
  15626. sylveon: {
  15627. height: math.unit(4, "feet"),
  15628. weight: math.unit(101, "lb"),
  15629. name: "Future Malgam",
  15630. rename: true,
  15631. image: {
  15632. source: "./media/characters/malgam/sylveon.svg",
  15633. extra: 371 / 325,
  15634. bottom: 0.015
  15635. }
  15636. },
  15637. gigantamax: {
  15638. height: math.unit(50, "feet"),
  15639. name: "Gigantamax Malgam",
  15640. rename: true,
  15641. image: {
  15642. source: "./media/characters/malgam/gigantamax.svg"
  15643. }
  15644. },
  15645. },
  15646. [
  15647. {
  15648. name: "Normal",
  15649. height: math.unit(2 + 10 / 12, "feet"),
  15650. default: true
  15651. },
  15652. ]
  15653. ))
  15654. characterMakers.push(() => makeCharacter(
  15655. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15656. {
  15657. front: {
  15658. height: math.unit(5 + 11 / 12, "feet"),
  15659. weight: math.unit(188, "lb"),
  15660. name: "Front",
  15661. image: {
  15662. source: "./media/characters/fleur/front.svg",
  15663. extra: 309 / 283,
  15664. bottom: 0.007
  15665. }
  15666. },
  15667. },
  15668. [
  15669. {
  15670. name: "Normal",
  15671. height: math.unit(5 + 11 / 12, "feet"),
  15672. default: true
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15678. {
  15679. front: {
  15680. height: math.unit(5 + 4 / 12, "feet"),
  15681. weight: math.unit(122, "lb"),
  15682. name: "Front",
  15683. image: {
  15684. source: "./media/characters/jude/front.svg",
  15685. extra: 288 / 273,
  15686. bottom: 0.03
  15687. }
  15688. },
  15689. },
  15690. [
  15691. {
  15692. name: "Normal",
  15693. height: math.unit(5 + 4 / 12, "feet"),
  15694. default: true
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15700. {
  15701. front: {
  15702. height: math.unit(5 + 11 / 12, "feet"),
  15703. weight: math.unit(190, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/seara/front.svg",
  15707. extra: 1,
  15708. bottom: 0.05
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Normal",
  15715. height: math.unit(5 + 11 / 12, "feet"),
  15716. default: true
  15717. },
  15718. ]
  15719. ))
  15720. characterMakers.push(() => makeCharacter(
  15721. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15722. {
  15723. front: {
  15724. height: math.unit(16 + 5 / 12, "feet"),
  15725. weight: math.unit(524, "lb"),
  15726. name: "Front",
  15727. image: {
  15728. source: "./media/characters/caspian-lugia/front.svg",
  15729. extra: 1,
  15730. bottom: 0.04
  15731. }
  15732. },
  15733. },
  15734. [
  15735. {
  15736. name: "Normal",
  15737. height: math.unit(16 + 5 / 12, "feet"),
  15738. default: true
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15744. {
  15745. front: {
  15746. height: math.unit(5 + 7 / 12, "feet"),
  15747. weight: math.unit(170, "lb"),
  15748. name: "Front",
  15749. image: {
  15750. source: "./media/characters/mika/front.svg",
  15751. extra: 1,
  15752. bottom: 0.016
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Normal",
  15759. height: math.unit(5 + 7 / 12, "feet"),
  15760. default: true
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15766. {
  15767. front: {
  15768. height: math.unit(6 + 2 / 12, "feet"),
  15769. weight: math.unit(268, "lb"),
  15770. name: "Front",
  15771. image: {
  15772. source: "./media/characters/sol/front.svg",
  15773. extra: 247 / 231,
  15774. bottom: 0.05
  15775. }
  15776. },
  15777. },
  15778. [
  15779. {
  15780. name: "Normal",
  15781. height: math.unit(6 + 2 / 12, "feet"),
  15782. default: true
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15788. {
  15789. buizel: {
  15790. height: math.unit(2 + 5 / 12, "feet"),
  15791. weight: math.unit(87, "lb"),
  15792. name: "Front",
  15793. image: {
  15794. source: "./media/characters/umiko/buizel.svg",
  15795. extra: 172 / 157,
  15796. bottom: 0.01
  15797. },
  15798. form: "buizel",
  15799. default: true
  15800. },
  15801. floatzel: {
  15802. height: math.unit(5 + 9 / 12, "feet"),
  15803. weight: math.unit(250, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/umiko/floatzel.svg",
  15807. extra: 1076/1006,
  15808. bottom: 15/1091
  15809. },
  15810. form: "floatzel",
  15811. default: true
  15812. },
  15813. },
  15814. [
  15815. {
  15816. name: "Normal",
  15817. height: math.unit(2 + 5 / 12, "feet"),
  15818. form: "buizel",
  15819. default: true
  15820. },
  15821. {
  15822. name: "Normal",
  15823. height: math.unit(5 + 9 / 12, "feet"),
  15824. form: "floatzel",
  15825. default: true
  15826. },
  15827. ],
  15828. {
  15829. "buizel": {
  15830. name: "Buizel"
  15831. },
  15832. "floatzel": {
  15833. name: "Floatzel",
  15834. default: true
  15835. }
  15836. }
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15840. {
  15841. front: {
  15842. height: math.unit(6 + 2 / 12, "feet"),
  15843. weight: math.unit(146, "lb"),
  15844. name: "Front",
  15845. image: {
  15846. source: "./media/characters/iliac/front.svg",
  15847. extra: 389 / 365,
  15848. bottom: 0.035
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(6 + 2 / 12, "feet"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15862. {
  15863. front: {
  15864. height: math.unit(6, "feet"),
  15865. weight: math.unit(170, "lb"),
  15866. name: "Front",
  15867. image: {
  15868. source: "./media/characters/topaz/front.svg",
  15869. extra: 317 / 303,
  15870. bottom: 0.055
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Normal",
  15877. height: math.unit(6, "feet"),
  15878. default: true
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(5 + 11 / 12, "feet"),
  15887. weight: math.unit(144, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/gabriel/front.svg",
  15891. extra: 285 / 262,
  15892. bottom: 0.004
  15893. }
  15894. },
  15895. },
  15896. [
  15897. {
  15898. name: "Normal",
  15899. height: math.unit(5 + 11 / 12, "feet"),
  15900. default: true
  15901. },
  15902. ]
  15903. ))
  15904. characterMakers.push(() => makeCharacter(
  15905. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15906. {
  15907. side: {
  15908. height: math.unit(6 + 5 / 12, "feet"),
  15909. weight: math.unit(300, "lb"),
  15910. name: "Side",
  15911. image: {
  15912. source: "./media/characters/tempest-suicune/side.svg",
  15913. extra: 195 / 154,
  15914. bottom: 0.04
  15915. }
  15916. },
  15917. },
  15918. [
  15919. {
  15920. name: "Normal",
  15921. height: math.unit(6 + 5 / 12, "feet"),
  15922. default: true
  15923. },
  15924. ]
  15925. ))
  15926. characterMakers.push(() => makeCharacter(
  15927. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15928. {
  15929. front: {
  15930. height: math.unit(7 + 2 / 12, "feet"),
  15931. weight: math.unit(322, "lb"),
  15932. name: "Front",
  15933. image: {
  15934. source: "./media/characters/vulcan/front.svg",
  15935. extra: 154 / 147,
  15936. bottom: 0.04
  15937. }
  15938. },
  15939. },
  15940. [
  15941. {
  15942. name: "Normal",
  15943. height: math.unit(7 + 2 / 12, "feet"),
  15944. default: true
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15950. {
  15951. front: {
  15952. height: math.unit(5 + 10 / 12, "feet"),
  15953. weight: math.unit(264, "lb"),
  15954. name: "Front",
  15955. image: {
  15956. source: "./media/characters/gault/front.svg",
  15957. extra: 161 / 140,
  15958. bottom: 0.028
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Normal",
  15965. height: math.unit(5 + 10 / 12, "feet"),
  15966. default: true
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15972. {
  15973. front: {
  15974. height: math.unit(6, "feet"),
  15975. weight: math.unit(150, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/shard/front.svg",
  15979. extra: 273 / 238,
  15980. bottom: 0.02
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(3 + 6 / 12, "feet"),
  15988. default: true
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15994. {
  15995. front: {
  15996. height: math.unit(5 + 11 / 12, "feet"),
  15997. weight: math.unit(146, "lb"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/ashe/front.svg",
  16001. extra: 400 / 373,
  16002. bottom: 0.01
  16003. }
  16004. },
  16005. },
  16006. [
  16007. {
  16008. name: "Normal",
  16009. height: math.unit(5 + 11 / 12, "feet"),
  16010. default: true
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16016. {
  16017. front: {
  16018. height: math.unit(5 + 5 / 12, "feet"),
  16019. weight: math.unit(135, "lb"),
  16020. name: "Front",
  16021. image: {
  16022. source: "./media/characters/beatrix/front.svg",
  16023. extra: 392 / 379,
  16024. bottom: 0.01
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(6, "feet"),
  16032. default: true
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16038. {
  16039. front: {
  16040. height: math.unit(6 + 2/12, "feet"),
  16041. weight: math.unit(135, "lb"),
  16042. name: "Front",
  16043. image: {
  16044. source: "./media/characters/ignatius/front.svg",
  16045. extra: 1380/1259,
  16046. bottom: 27/1407
  16047. }
  16048. },
  16049. },
  16050. [
  16051. {
  16052. name: "Normal",
  16053. height: math.unit(6 + 2/12, "feet"),
  16054. default: true
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16060. {
  16061. front: {
  16062. height: math.unit(6 + 2 / 12, "feet"),
  16063. weight: math.unit(138, "lb"),
  16064. name: "Front",
  16065. image: {
  16066. source: "./media/characters/mei-li/front.svg",
  16067. extra: 237 / 229,
  16068. bottom: 0.03
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Normal",
  16075. height: math.unit(6 + 2 / 12, "feet"),
  16076. default: true
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(2 + 4 / 12, "feet"),
  16085. weight: math.unit(62, "lb"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/puru/front.svg",
  16089. extra: 206 / 149,
  16090. bottom: 0.06
  16091. }
  16092. },
  16093. },
  16094. [
  16095. {
  16096. name: "Normal",
  16097. height: math.unit(2 + 4 / 12, "feet"),
  16098. default: true
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16104. {
  16105. anthro: {
  16106. height: math.unit(5 + 8/12, "feet"),
  16107. weight: math.unit(200, "lb"),
  16108. energyNeed: math.unit(2000, "kcal"),
  16109. name: "Anthro",
  16110. image: {
  16111. source: "./media/characters/kee/anthro.svg",
  16112. extra: 3251/3184,
  16113. bottom: 250/3501
  16114. }
  16115. },
  16116. taur: {
  16117. height: math.unit(11, "feet"),
  16118. weight: math.unit(500, "lb"),
  16119. energyNeed: math.unit(5000, "kcal"),
  16120. name: "Taur",
  16121. image: {
  16122. source: "./media/characters/kee/taur.svg",
  16123. extra: 1362/1320,
  16124. bottom: 83/1445
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Normal",
  16131. height: math.unit(5 + 8/12, "feet"),
  16132. default: true
  16133. },
  16134. {
  16135. name: "Macro",
  16136. height: math.unit(35, "feet")
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16142. {
  16143. anthro: {
  16144. height: math.unit(7, "feet"),
  16145. weight: math.unit(190, "lb"),
  16146. name: "Anthro",
  16147. image: {
  16148. source: "./media/characters/cobalt-dracha/anthro.svg",
  16149. extra: 231 / 225,
  16150. bottom: 0.04
  16151. }
  16152. },
  16153. feral: {
  16154. height: math.unit(9 + 7 / 12, "feet"),
  16155. weight: math.unit(294, "lb"),
  16156. name: "Feral",
  16157. image: {
  16158. source: "./media/characters/cobalt-dracha/feral.svg",
  16159. extra: 692 / 633,
  16160. bottom: 0.05
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Normal",
  16167. height: math.unit(7, "feet"),
  16168. default: true
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16174. {
  16175. fallen: {
  16176. height: math.unit(11 + 8 / 12, "feet"),
  16177. weight: math.unit(485, "lb"),
  16178. name: "Java (Fallen)",
  16179. rename: true,
  16180. image: {
  16181. source: "./media/characters/java/fallen.svg",
  16182. extra: 226 / 208,
  16183. bottom: 0.005
  16184. }
  16185. },
  16186. godkin: {
  16187. height: math.unit(10 + 6 / 12, "feet"),
  16188. weight: math.unit(328, "lb"),
  16189. name: "Java (Godkin)",
  16190. rename: true,
  16191. image: {
  16192. source: "./media/characters/java/godkin.svg",
  16193. extra: 1104/1068,
  16194. bottom: 36/1140
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(11 + 8 / 12, "feet"),
  16202. default: true
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(5 + 9 / 12, "feet"),
  16211. weight: math.unit(170, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/purna/front.svg",
  16215. extra: 239 / 229,
  16216. bottom: 0.01
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Normal",
  16223. height: math.unit(5 + 9 / 12, "feet"),
  16224. default: true
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16230. {
  16231. front: {
  16232. height: math.unit(5 + 9 / 12, "feet"),
  16233. weight: math.unit(142, "lb"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/kuva/front.svg",
  16237. extra: 281 / 271,
  16238. bottom: 0.006
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(5 + 9 / 12, "feet"),
  16246. default: true
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16252. {
  16253. anthro: {
  16254. height: math.unit(9 + 2 / 12, "feet"),
  16255. weight: math.unit(270, "lb"),
  16256. name: "Anthro",
  16257. image: {
  16258. source: "./media/characters/embra/anthro.svg",
  16259. extra: 200 / 187,
  16260. bottom: 0.02
  16261. }
  16262. },
  16263. feral: {
  16264. height: math.unit(18 + 8 / 12, "feet"),
  16265. weight: math.unit(576, "lb"),
  16266. name: "Feral",
  16267. image: {
  16268. source: "./media/characters/embra/feral.svg",
  16269. extra: 152 / 137,
  16270. bottom: 0.037
  16271. }
  16272. },
  16273. },
  16274. [
  16275. {
  16276. name: "Normal",
  16277. height: math.unit(9 + 2 / 12, "feet"),
  16278. default: true
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16284. {
  16285. anthro: {
  16286. height: math.unit(10 + 9 / 12, "feet"),
  16287. weight: math.unit(224, "lb"),
  16288. name: "Anthro",
  16289. image: {
  16290. source: "./media/characters/grottos/anthro.svg",
  16291. extra: 350 / 332,
  16292. bottom: 0.045
  16293. }
  16294. },
  16295. feral: {
  16296. height: math.unit(20 + 7 / 12, "feet"),
  16297. weight: math.unit(629, "lb"),
  16298. name: "Feral",
  16299. image: {
  16300. source: "./media/characters/grottos/feral.svg",
  16301. extra: 207 / 190,
  16302. bottom: 0.05
  16303. }
  16304. },
  16305. },
  16306. [
  16307. {
  16308. name: "Normal",
  16309. height: math.unit(10 + 9 / 12, "feet"),
  16310. default: true
  16311. },
  16312. ]
  16313. ))
  16314. characterMakers.push(() => makeCharacter(
  16315. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16316. {
  16317. anthro: {
  16318. height: math.unit(9 + 6 / 12, "feet"),
  16319. weight: math.unit(298, "lb"),
  16320. name: "Anthro",
  16321. image: {
  16322. source: "./media/characters/frifna/anthro.svg",
  16323. extra: 282 / 269,
  16324. bottom: 0.015
  16325. }
  16326. },
  16327. feral: {
  16328. height: math.unit(16 + 2 / 12, "feet"),
  16329. weight: math.unit(624, "lb"),
  16330. name: "Feral",
  16331. image: {
  16332. source: "./media/characters/frifna/feral.svg"
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(9 + 6 / 12, "feet"),
  16340. default: true
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16346. {
  16347. front: {
  16348. height: math.unit(6 + 2 / 12, "feet"),
  16349. weight: math.unit(168, "lb"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/elise/front.svg",
  16353. extra: 276 / 271
  16354. }
  16355. },
  16356. },
  16357. [
  16358. {
  16359. name: "Normal",
  16360. height: math.unit(6 + 2 / 12, "feet"),
  16361. default: true
  16362. },
  16363. ]
  16364. ))
  16365. characterMakers.push(() => makeCharacter(
  16366. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16367. {
  16368. front: {
  16369. height: math.unit(5 + 10 / 12, "feet"),
  16370. weight: math.unit(210, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/glade/front.svg",
  16374. extra: 258 / 247,
  16375. bottom: 0.008
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(5 + 10 / 12, "feet"),
  16383. default: true
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(5 + 10 / 12, "feet"),
  16392. weight: math.unit(129, "lb"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/rina/front.svg",
  16396. extra: 266 / 255,
  16397. bottom: 0.005
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(5 + 10 / 12, "feet"),
  16405. default: true
  16406. },
  16407. ]
  16408. ))
  16409. characterMakers.push(() => makeCharacter(
  16410. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16411. {
  16412. front: {
  16413. height: math.unit(6 + 1 / 12, "feet"),
  16414. weight: math.unit(192, "lb"),
  16415. name: "Front",
  16416. image: {
  16417. source: "./media/characters/veronica/front.svg",
  16418. extra: 319 / 309,
  16419. bottom: 0.005
  16420. }
  16421. },
  16422. },
  16423. [
  16424. {
  16425. name: "Normal",
  16426. height: math.unit(6 + 1 / 12, "feet"),
  16427. default: true
  16428. },
  16429. ]
  16430. ))
  16431. characterMakers.push(() => makeCharacter(
  16432. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16433. {
  16434. front: {
  16435. height: math.unit(9 + 3 / 12, "feet"),
  16436. weight: math.unit(1100, "lb"),
  16437. name: "Front",
  16438. image: {
  16439. source: "./media/characters/braxton/front.svg",
  16440. extra: 1057 / 984,
  16441. bottom: 0.05
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Normal",
  16448. height: math.unit(9 + 3 / 12, "feet")
  16449. },
  16450. {
  16451. name: "Giant",
  16452. height: math.unit(300, "feet"),
  16453. default: true
  16454. },
  16455. {
  16456. name: "Macro",
  16457. height: math.unit(700, "feet")
  16458. },
  16459. {
  16460. name: "Megamacro",
  16461. height: math.unit(6000, "feet")
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16467. {
  16468. front: {
  16469. height: math.unit(6 + 7 / 12, "feet"),
  16470. weight: math.unit(150, "lb"),
  16471. name: "Front",
  16472. image: {
  16473. source: "./media/characters/blue-feyonics/front.svg",
  16474. extra: 1403 / 1306,
  16475. bottom: 0.047
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(6 + 7 / 12, "feet"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(1.8, "meters"),
  16492. weight: math.unit(60, "kg"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/maxwell/front.svg",
  16496. extra: 2060 / 1873
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Micro",
  16503. height: math.unit(1, "mm")
  16504. },
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(1.8, "meter"),
  16508. default: true
  16509. },
  16510. {
  16511. name: "Macro",
  16512. height: math.unit(30, "meters")
  16513. },
  16514. {
  16515. name: "Megamacro",
  16516. height: math.unit(10, "km")
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16522. {
  16523. front: {
  16524. height: math.unit(6, "feet"),
  16525. weight: math.unit(150, "lb"),
  16526. name: "Front",
  16527. image: {
  16528. source: "./media/characters/jack/front.svg",
  16529. extra: 1754 / 1640,
  16530. bottom: 0.01
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(80000, "feet"),
  16538. default: true
  16539. },
  16540. {
  16541. name: "Max size",
  16542. height: math.unit(10, "lightyears")
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16548. {
  16549. urban: {
  16550. height: math.unit(5, "feet"),
  16551. weight: math.unit(240, "lb"),
  16552. name: "Urban",
  16553. image: {
  16554. source: "./media/characters/cafat/urban.svg",
  16555. extra: 1223/1126,
  16556. bottom: 205/1428
  16557. }
  16558. },
  16559. summer: {
  16560. height: math.unit(5, "feet"),
  16561. weight: math.unit(240, "lb"),
  16562. name: "Summer",
  16563. image: {
  16564. source: "./media/characters/cafat/summer.svg",
  16565. extra: 1223/1126,
  16566. bottom: 205/1428
  16567. }
  16568. },
  16569. winter: {
  16570. height: math.unit(5, "feet"),
  16571. weight: math.unit(240, "lb"),
  16572. name: "Winter",
  16573. image: {
  16574. source: "./media/characters/cafat/winter.svg",
  16575. extra: 1223/1126,
  16576. bottom: 205/1428
  16577. }
  16578. },
  16579. lingerie: {
  16580. height: math.unit(5, "feet"),
  16581. weight: math.unit(240, "lb"),
  16582. name: "Lingerie",
  16583. image: {
  16584. source: "./media/characters/cafat/lingerie.svg",
  16585. extra: 1223/1126,
  16586. bottom: 205/1428
  16587. }
  16588. },
  16589. upright: {
  16590. height: math.unit(6.3, "feet"),
  16591. weight: math.unit(240, "lb"),
  16592. name: "Upright",
  16593. image: {
  16594. source: "./media/characters/cafat/upright.svg",
  16595. bottom: 0.01
  16596. }
  16597. },
  16598. uprightFull: {
  16599. height: math.unit(6.3, "feet"),
  16600. weight: math.unit(240, "lb"),
  16601. name: "Upright (Full)",
  16602. image: {
  16603. source: "./media/characters/cafat/upright-full.svg",
  16604. bottom: 0.01
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Small",
  16611. height: math.unit(5, "feet"),
  16612. default: true
  16613. },
  16614. {
  16615. name: "Large",
  16616. height: math.unit(13, "feet")
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16622. {
  16623. front: {
  16624. height: math.unit(6, "feet"),
  16625. weight: math.unit(150, "lb"),
  16626. name: "Front",
  16627. image: {
  16628. source: "./media/characters/verin-raharra/front.svg",
  16629. extra: 5019 / 4835,
  16630. bottom: 0.023
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Normal",
  16637. height: math.unit(7 + 5 / 12, "feet"),
  16638. default: true
  16639. },
  16640. {
  16641. name: "Upsized",
  16642. height: math.unit(20, "feet")
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16648. {
  16649. front: {
  16650. height: math.unit(7, "feet"),
  16651. weight: math.unit(230, "lb"),
  16652. name: "Front",
  16653. image: {
  16654. source: "./media/characters/nakata/front.svg",
  16655. extra: 1.005,
  16656. bottom: 0.01
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(7, "feet"),
  16664. default: true
  16665. },
  16666. {
  16667. name: "Big",
  16668. height: math.unit(14, "feet")
  16669. },
  16670. {
  16671. name: "Macro",
  16672. height: math.unit(400, "feet")
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16678. {
  16679. front: {
  16680. height: math.unit(4.91, "feet"),
  16681. weight: math.unit(100, "lb"),
  16682. name: "Front",
  16683. image: {
  16684. source: "./media/characters/lily/front.svg",
  16685. extra: 1585 / 1415,
  16686. bottom: 0.02
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(4.91, "feet"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16700. {
  16701. laying: {
  16702. height: math.unit(4 + 4 / 12, "feet"),
  16703. weight: math.unit(600, "lb"),
  16704. name: "Laying",
  16705. image: {
  16706. source: "./media/characters/sheila/laying.svg",
  16707. extra: 1333 / 1265,
  16708. bottom: 0.16
  16709. }
  16710. },
  16711. },
  16712. [
  16713. {
  16714. name: "Normal",
  16715. height: math.unit(4 + 4 / 12, "feet"),
  16716. default: true
  16717. },
  16718. ]
  16719. ))
  16720. characterMakers.push(() => makeCharacter(
  16721. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16722. {
  16723. front: {
  16724. height: math.unit(6, "feet"),
  16725. weight: math.unit(190, "lb"),
  16726. name: "Front",
  16727. image: {
  16728. source: "./media/characters/sax/front.svg",
  16729. extra: 1187 / 973,
  16730. bottom: 0.042
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Micro",
  16737. height: math.unit(4, "inches"),
  16738. default: true
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16744. {
  16745. front: {
  16746. height: math.unit(6, "feet"),
  16747. weight: math.unit(150, "lb"),
  16748. name: "Front",
  16749. image: {
  16750. source: "./media/characters/pandora/front.svg",
  16751. extra: 2720 / 2556,
  16752. bottom: 0.015
  16753. }
  16754. },
  16755. back: {
  16756. height: math.unit(6, "feet"),
  16757. weight: math.unit(150, "lb"),
  16758. name: "Back",
  16759. image: {
  16760. source: "./media/characters/pandora/back.svg",
  16761. extra: 2720 / 2556,
  16762. bottom: 0.01
  16763. }
  16764. },
  16765. beans: {
  16766. height: math.unit(6 / 8, "feet"),
  16767. name: "Beans",
  16768. image: {
  16769. source: "./media/characters/pandora/beans.svg"
  16770. }
  16771. },
  16772. collar: {
  16773. height: math.unit(0.31, "feet"),
  16774. name: "Collar",
  16775. image: {
  16776. source: "./media/characters/pandora/collar.svg"
  16777. }
  16778. },
  16779. skirt: {
  16780. height: math.unit(6, "feet"),
  16781. weight: math.unit(150, "lb"),
  16782. name: "Skirt",
  16783. image: {
  16784. source: "./media/characters/pandora/skirt.svg",
  16785. extra: 1622 / 1525,
  16786. bottom: 0.015
  16787. }
  16788. },
  16789. hoodie: {
  16790. height: math.unit(6, "feet"),
  16791. weight: math.unit(150, "lb"),
  16792. name: "Hoodie",
  16793. image: {
  16794. source: "./media/characters/pandora/hoodie.svg",
  16795. extra: 1622 / 1525,
  16796. bottom: 0.015
  16797. }
  16798. },
  16799. casual: {
  16800. height: math.unit(6, "feet"),
  16801. weight: math.unit(150, "lb"),
  16802. name: "Casual",
  16803. image: {
  16804. source: "./media/characters/pandora/casual.svg",
  16805. extra: 1622 / 1525,
  16806. bottom: 0.015
  16807. }
  16808. },
  16809. },
  16810. [
  16811. {
  16812. name: "Normal",
  16813. height: math.unit(6, "feet")
  16814. },
  16815. {
  16816. name: "Big Steppy",
  16817. height: math.unit(1, "km"),
  16818. default: true
  16819. },
  16820. {
  16821. name: "Galactic Steppy",
  16822. height: math.unit(2, "gigameters")
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16828. {
  16829. side: {
  16830. height: math.unit(10, "feet"),
  16831. weight: math.unit(800, "kg"),
  16832. name: "Side",
  16833. image: {
  16834. source: "./media/characters/venio-darcony/side.svg",
  16835. extra: 1373 / 1003,
  16836. bottom: 0.037
  16837. }
  16838. },
  16839. front: {
  16840. height: math.unit(19, "feet"),
  16841. weight: math.unit(800, "kg"),
  16842. name: "Front",
  16843. image: {
  16844. source: "./media/characters/venio-darcony/front.svg"
  16845. }
  16846. },
  16847. back: {
  16848. height: math.unit(19, "feet"),
  16849. weight: math.unit(800, "kg"),
  16850. name: "Back",
  16851. image: {
  16852. source: "./media/characters/venio-darcony/back.svg"
  16853. }
  16854. },
  16855. sideNsfw: {
  16856. height: math.unit(10, "feet"),
  16857. weight: math.unit(800, "kg"),
  16858. name: "Side (NSFW)",
  16859. image: {
  16860. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16861. extra: 1373 / 1003,
  16862. bottom: 0.037
  16863. }
  16864. },
  16865. frontNsfw: {
  16866. height: math.unit(19, "feet"),
  16867. weight: math.unit(800, "kg"),
  16868. name: "Front (NSFW)",
  16869. image: {
  16870. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16871. }
  16872. },
  16873. backNsfw: {
  16874. height: math.unit(19, "feet"),
  16875. weight: math.unit(800, "kg"),
  16876. name: "Back (NSFW)",
  16877. image: {
  16878. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16879. }
  16880. },
  16881. sideArmored: {
  16882. height: math.unit(10, "feet"),
  16883. weight: math.unit(800, "kg"),
  16884. name: "Side (Armored)",
  16885. image: {
  16886. source: "./media/characters/venio-darcony/side-armored.svg",
  16887. extra: 1373 / 1003,
  16888. bottom: 0.037
  16889. }
  16890. },
  16891. frontArmored: {
  16892. height: math.unit(19, "feet"),
  16893. weight: math.unit(900, "kg"),
  16894. name: "Front (Armored)",
  16895. image: {
  16896. source: "./media/characters/venio-darcony/front-armored.svg"
  16897. }
  16898. },
  16899. backArmored: {
  16900. height: math.unit(19, "feet"),
  16901. weight: math.unit(900, "kg"),
  16902. name: "Back (Armored)",
  16903. image: {
  16904. source: "./media/characters/venio-darcony/back-armored.svg"
  16905. }
  16906. },
  16907. sword: {
  16908. height: math.unit(10, "feet"),
  16909. weight: math.unit(50, "lb"),
  16910. name: "Sword",
  16911. image: {
  16912. source: "./media/characters/venio-darcony/sword.svg"
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Normal",
  16919. height: math.unit(10, "feet")
  16920. },
  16921. {
  16922. name: "Macro",
  16923. height: math.unit(130, "feet"),
  16924. default: true
  16925. },
  16926. {
  16927. name: "Macro+",
  16928. height: math.unit(240, "feet")
  16929. },
  16930. ]
  16931. ))
  16932. characterMakers.push(() => makeCharacter(
  16933. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16934. {
  16935. front: {
  16936. height: math.unit(6, "feet"),
  16937. weight: math.unit(150, "lb"),
  16938. name: "Front",
  16939. image: {
  16940. source: "./media/characters/veski/front.svg",
  16941. extra: 1299 / 1225,
  16942. bottom: 0.04
  16943. }
  16944. },
  16945. back: {
  16946. height: math.unit(6, "feet"),
  16947. weight: math.unit(150, "lb"),
  16948. name: "Back",
  16949. image: {
  16950. source: "./media/characters/veski/back.svg",
  16951. extra: 1299 / 1225,
  16952. bottom: 0.008
  16953. }
  16954. },
  16955. maw: {
  16956. height: math.unit(1.5 * 1.21, "feet"),
  16957. name: "Maw",
  16958. image: {
  16959. source: "./media/characters/veski/maw.svg"
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Macro",
  16966. height: math.unit(2, "km"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(5 + 7 / 12, "feet"),
  16976. name: "Front",
  16977. image: {
  16978. source: "./media/characters/isabelle/front.svg",
  16979. extra: 2130 / 1976,
  16980. bottom: 0.05
  16981. }
  16982. },
  16983. },
  16984. [
  16985. {
  16986. name: "Supermicro",
  16987. height: math.unit(10, "micrometers")
  16988. },
  16989. {
  16990. name: "Micro",
  16991. height: math.unit(1, "inch")
  16992. },
  16993. {
  16994. name: "Tiny",
  16995. height: math.unit(5, "inches")
  16996. },
  16997. {
  16998. name: "Standard",
  16999. height: math.unit(5 + 7 / 12, "inches")
  17000. },
  17001. {
  17002. name: "Macro",
  17003. height: math.unit(80, "meters"),
  17004. default: true
  17005. },
  17006. {
  17007. name: "Megamacro",
  17008. height: math.unit(250, "meters")
  17009. },
  17010. {
  17011. name: "Gigamacro",
  17012. height: math.unit(5, "km")
  17013. },
  17014. {
  17015. name: "Cosmic",
  17016. height: math.unit(2.5e6, "miles")
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17022. {
  17023. front: {
  17024. height: math.unit(6, "feet"),
  17025. weight: math.unit(150, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/hanzo/front.svg",
  17029. extra: 374 / 344,
  17030. bottom: 0.02
  17031. }
  17032. },
  17033. },
  17034. [
  17035. {
  17036. name: "Normal",
  17037. height: math.unit(8, "feet"),
  17038. default: true
  17039. },
  17040. ]
  17041. ))
  17042. characterMakers.push(() => makeCharacter(
  17043. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17044. {
  17045. front: {
  17046. height: math.unit(7, "feet"),
  17047. weight: math.unit(130, "lb"),
  17048. name: "Front",
  17049. image: {
  17050. source: "./media/characters/anna/front.svg",
  17051. extra: 169 / 145,
  17052. bottom: 0.06
  17053. }
  17054. },
  17055. full: {
  17056. height: math.unit(4.96, "feet"),
  17057. weight: math.unit(220, "lb"),
  17058. name: "Full",
  17059. image: {
  17060. source: "./media/characters/anna/full.svg",
  17061. extra: 138 / 114,
  17062. bottom: 0.15
  17063. }
  17064. },
  17065. tongue: {
  17066. height: math.unit(2.53, "feet"),
  17067. name: "Tongue",
  17068. image: {
  17069. source: "./media/characters/anna/tongue.svg"
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Normal",
  17076. height: math.unit(7, "feet"),
  17077. default: true
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17083. {
  17084. front: {
  17085. height: math.unit(7, "feet"),
  17086. weight: math.unit(150, "lb"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/ian-corvid/front.svg",
  17090. extra: 150 / 142,
  17091. bottom: 0.02
  17092. }
  17093. },
  17094. back: {
  17095. height: math.unit(7, "feet"),
  17096. weight: math.unit(150, "lb"),
  17097. name: "Back",
  17098. image: {
  17099. source: "./media/characters/ian-corvid/back.svg",
  17100. extra: 150 / 143,
  17101. bottom: 0.01
  17102. }
  17103. },
  17104. stomping: {
  17105. height: math.unit(7, "feet"),
  17106. weight: math.unit(150, "lb"),
  17107. name: "Stomping",
  17108. image: {
  17109. source: "./media/characters/ian-corvid/stomping.svg",
  17110. extra: 76 / 72
  17111. }
  17112. },
  17113. sitting: {
  17114. height: math.unit(7 / 1.8, "feet"),
  17115. weight: math.unit(150, "lb"),
  17116. name: "Sitting",
  17117. image: {
  17118. source: "./media/characters/ian-corvid/sitting.svg",
  17119. extra: 1400 / 1269,
  17120. bottom: 0.15
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Tiny Microw",
  17127. height: math.unit(1, "inch")
  17128. },
  17129. {
  17130. name: "Microw",
  17131. height: math.unit(6, "inches")
  17132. },
  17133. {
  17134. name: "Crow",
  17135. height: math.unit(7 + 1 / 12, "feet"),
  17136. default: true
  17137. },
  17138. {
  17139. name: "Macrow",
  17140. height: math.unit(176, "feet")
  17141. },
  17142. ]
  17143. ))
  17144. characterMakers.push(() => makeCharacter(
  17145. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17146. {
  17147. front: {
  17148. height: math.unit(5 + 7 / 12, "feet"),
  17149. weight: math.unit(147, "lb"),
  17150. name: "Front",
  17151. image: {
  17152. source: "./media/characters/natalie-kellon/front.svg",
  17153. extra: 1214 / 1141,
  17154. bottom: 0.02
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Micro",
  17161. height: math.unit(1 / 16, "inch")
  17162. },
  17163. {
  17164. name: "Tiny",
  17165. height: math.unit(4, "inches")
  17166. },
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(5 + 7 / 12, "feet"),
  17170. default: true
  17171. },
  17172. {
  17173. name: "Amazon",
  17174. height: math.unit(12, "feet")
  17175. },
  17176. {
  17177. name: "Giantess",
  17178. height: math.unit(160, "meters")
  17179. },
  17180. {
  17181. name: "Titaness",
  17182. height: math.unit(800, "meters")
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17188. {
  17189. front: {
  17190. height: math.unit(6, "feet"),
  17191. weight: math.unit(150, "lb"),
  17192. name: "Front",
  17193. image: {
  17194. source: "./media/characters/alluria/front.svg",
  17195. extra: 806 / 738,
  17196. bottom: 0.01
  17197. }
  17198. },
  17199. side: {
  17200. height: math.unit(6, "feet"),
  17201. weight: math.unit(150, "lb"),
  17202. name: "Side",
  17203. image: {
  17204. source: "./media/characters/alluria/side.svg",
  17205. extra: 800 / 750,
  17206. }
  17207. },
  17208. back: {
  17209. height: math.unit(6, "feet"),
  17210. weight: math.unit(150, "lb"),
  17211. name: "Back",
  17212. image: {
  17213. source: "./media/characters/alluria/back.svg",
  17214. extra: 806 / 738,
  17215. }
  17216. },
  17217. frontMaid: {
  17218. height: math.unit(6, "feet"),
  17219. weight: math.unit(150, "lb"),
  17220. name: "Front (Maid)",
  17221. image: {
  17222. source: "./media/characters/alluria/front-maid.svg",
  17223. extra: 806 / 738,
  17224. bottom: 0.01
  17225. }
  17226. },
  17227. sideMaid: {
  17228. height: math.unit(6, "feet"),
  17229. weight: math.unit(150, "lb"),
  17230. name: "Side (Maid)",
  17231. image: {
  17232. source: "./media/characters/alluria/side-maid.svg",
  17233. extra: 800 / 750,
  17234. bottom: 0.005
  17235. }
  17236. },
  17237. backMaid: {
  17238. height: math.unit(6, "feet"),
  17239. weight: math.unit(150, "lb"),
  17240. name: "Back (Maid)",
  17241. image: {
  17242. source: "./media/characters/alluria/back-maid.svg",
  17243. extra: 806 / 738,
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Micro",
  17250. height: math.unit(6, "inches"),
  17251. default: true
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17257. {
  17258. front: {
  17259. height: math.unit(6, "feet"),
  17260. weight: math.unit(150, "lb"),
  17261. name: "Front",
  17262. image: {
  17263. source: "./media/characters/kyle/front.svg",
  17264. extra: 1069 / 962,
  17265. bottom: 77.228 / 1727.45
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Macro",
  17272. height: math.unit(150, "feet"),
  17273. default: true
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17279. {
  17280. front: {
  17281. height: math.unit(6, "feet"),
  17282. weight: math.unit(300, "lb"),
  17283. name: "Front",
  17284. image: {
  17285. source: "./media/characters/duncan/front.svg",
  17286. extra: 1650 / 1482,
  17287. bottom: 0.05
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Macro",
  17294. height: math.unit(100, "feet"),
  17295. default: true
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17301. {
  17302. front: {
  17303. height: math.unit(5 + 4 / 12, "feet"),
  17304. weight: math.unit(220, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/memory/front.svg",
  17308. extra: 3641 / 3545,
  17309. bottom: 0.03
  17310. }
  17311. },
  17312. back: {
  17313. height: math.unit(5 + 4 / 12, "feet"),
  17314. weight: math.unit(220, "lb"),
  17315. name: "Back",
  17316. image: {
  17317. source: "./media/characters/memory/back.svg",
  17318. extra: 3641 / 3545,
  17319. bottom: 0.025
  17320. }
  17321. },
  17322. frontSkirt: {
  17323. height: math.unit(5 + 4 / 12, "feet"),
  17324. weight: math.unit(220, "lb"),
  17325. name: "Front (Skirt)",
  17326. image: {
  17327. source: "./media/characters/memory/front-skirt.svg",
  17328. extra: 3641 / 3545,
  17329. bottom: 0.03
  17330. }
  17331. },
  17332. frontDress: {
  17333. height: math.unit(5 + 4 / 12, "feet"),
  17334. weight: math.unit(220, "lb"),
  17335. name: "Front (Dress)",
  17336. image: {
  17337. source: "./media/characters/memory/front-dress.svg",
  17338. extra: 3641 / 3545,
  17339. bottom: 0.03
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Micro",
  17346. height: math.unit(6, "inches"),
  17347. default: true
  17348. },
  17349. {
  17350. name: "Normal",
  17351. height: math.unit(5 + 4 / 12, "feet")
  17352. },
  17353. ]
  17354. ))
  17355. characterMakers.push(() => makeCharacter(
  17356. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17357. {
  17358. front: {
  17359. height: math.unit(4 + 11 / 12, "feet"),
  17360. weight: math.unit(100, "lb"),
  17361. name: "Front",
  17362. image: {
  17363. source: "./media/characters/luno/front.svg",
  17364. extra: 1535 / 1487,
  17365. bottom: 0.03
  17366. }
  17367. },
  17368. },
  17369. [
  17370. {
  17371. name: "Micro",
  17372. height: math.unit(3, "inches")
  17373. },
  17374. {
  17375. name: "Normal",
  17376. height: math.unit(4 + 11 / 12, "feet"),
  17377. default: true
  17378. },
  17379. {
  17380. name: "Macro",
  17381. height: math.unit(300, "feet")
  17382. },
  17383. {
  17384. name: "Megamacro",
  17385. height: math.unit(700, "miles")
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17391. {
  17392. front: {
  17393. height: math.unit(6 + 2 / 12, "feet"),
  17394. weight: math.unit(170, "lb"),
  17395. name: "Front",
  17396. image: {
  17397. source: "./media/characters/jamesy/front.svg",
  17398. extra: 440 / 382,
  17399. bottom: 0.005
  17400. }
  17401. },
  17402. },
  17403. [
  17404. {
  17405. name: "Micro",
  17406. height: math.unit(3, "inches")
  17407. },
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(6 + 2 / 12, "feet"),
  17411. default: true
  17412. },
  17413. {
  17414. name: "Macro",
  17415. height: math.unit(300, "feet")
  17416. },
  17417. {
  17418. name: "Megamacro",
  17419. height: math.unit(700, "miles")
  17420. },
  17421. ]
  17422. ))
  17423. characterMakers.push(() => makeCharacter(
  17424. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17425. {
  17426. front: {
  17427. height: math.unit(6, "feet"),
  17428. weight: math.unit(160, "lb"),
  17429. name: "Front",
  17430. image: {
  17431. source: "./media/characters/mark/front.svg",
  17432. extra: 3300 / 3100,
  17433. bottom: 136.42 / 3440.47
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Macro",
  17440. height: math.unit(120, "meters")
  17441. },
  17442. {
  17443. name: "Bigger Macro",
  17444. height: math.unit(350, "meters")
  17445. },
  17446. {
  17447. name: "Megamacro",
  17448. height: math.unit(8, "km"),
  17449. default: true
  17450. },
  17451. {
  17452. name: "Continental",
  17453. height: math.unit(4550, "km")
  17454. },
  17455. {
  17456. name: "Planetary",
  17457. height: math.unit(65000, "km")
  17458. },
  17459. ]
  17460. ))
  17461. characterMakers.push(() => makeCharacter(
  17462. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17463. {
  17464. front: {
  17465. height: math.unit(6, "feet"),
  17466. weight: math.unit(400, "lb"),
  17467. name: "Front",
  17468. image: {
  17469. source: "./media/characters/mac/front.svg",
  17470. extra: 1048 / 987.7,
  17471. bottom: 60 / 1107.6,
  17472. }
  17473. },
  17474. },
  17475. [
  17476. {
  17477. name: "Macro",
  17478. height: math.unit(500, "feet"),
  17479. default: true
  17480. },
  17481. ]
  17482. ))
  17483. characterMakers.push(() => makeCharacter(
  17484. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17485. {
  17486. front: {
  17487. height: math.unit(5 + 2 / 12, "feet"),
  17488. weight: math.unit(190, "lb"),
  17489. name: "Front",
  17490. image: {
  17491. source: "./media/characters/bari/front.svg",
  17492. extra: 3156 / 2880,
  17493. bottom: 0.03
  17494. }
  17495. },
  17496. back: {
  17497. height: math.unit(5 + 2 / 12, "feet"),
  17498. weight: math.unit(190, "lb"),
  17499. name: "Back",
  17500. image: {
  17501. source: "./media/characters/bari/back.svg",
  17502. extra: 3260 / 2834,
  17503. bottom: 0.025
  17504. }
  17505. },
  17506. frontPlush: {
  17507. height: math.unit(5 + 2 / 12, "feet"),
  17508. weight: math.unit(190, "lb"),
  17509. name: "Front (Plush)",
  17510. image: {
  17511. source: "./media/characters/bari/front-plush.svg",
  17512. extra: 1112 / 1061,
  17513. bottom: 0.002
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Micro",
  17520. height: math.unit(3, "inches")
  17521. },
  17522. {
  17523. name: "Normal",
  17524. height: math.unit(5 + 2 / 12, "feet"),
  17525. default: true
  17526. },
  17527. {
  17528. name: "Macro",
  17529. height: math.unit(20, "feet")
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17535. {
  17536. front: {
  17537. height: math.unit(6 + 1 / 12, "feet"),
  17538. weight: math.unit(275, "lb"),
  17539. name: "Front",
  17540. image: {
  17541. source: "./media/characters/hunter-misha-raven/front.svg"
  17542. }
  17543. },
  17544. },
  17545. [
  17546. {
  17547. name: "Mortal",
  17548. height: math.unit(6 + 1 / 12, "feet")
  17549. },
  17550. {
  17551. name: "Divine",
  17552. height: math.unit(1.12134e34, "parsecs"),
  17553. default: true
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17559. {
  17560. front: {
  17561. height: math.unit(6 + 3 / 12, "feet"),
  17562. weight: math.unit(220, "lb"),
  17563. name: "Front",
  17564. image: {
  17565. source: "./media/characters/max-calore/front.svg",
  17566. extra: 1700 / 1648,
  17567. bottom: 0.01
  17568. }
  17569. },
  17570. back: {
  17571. height: math.unit(6 + 3 / 12, "feet"),
  17572. weight: math.unit(220, "lb"),
  17573. name: "Back",
  17574. image: {
  17575. source: "./media/characters/max-calore/back.svg",
  17576. extra: 1700 / 1648,
  17577. bottom: 0.01
  17578. }
  17579. },
  17580. },
  17581. [
  17582. {
  17583. name: "Normal",
  17584. height: math.unit(6 + 3 / 12, "feet"),
  17585. default: true
  17586. },
  17587. ]
  17588. ))
  17589. characterMakers.push(() => makeCharacter(
  17590. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17591. {
  17592. side: {
  17593. height: math.unit(2 + 8 / 12, "feet"),
  17594. weight: math.unit(99, "lb"),
  17595. name: "Side",
  17596. image: {
  17597. source: "./media/characters/aspen/side.svg",
  17598. extra: 152 / 138,
  17599. bottom: 0.032
  17600. }
  17601. },
  17602. },
  17603. [
  17604. {
  17605. name: "Normal",
  17606. height: math.unit(2 + 8 / 12, "feet"),
  17607. default: true
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17613. {
  17614. side: {
  17615. height: math.unit(3 + 2 / 12, "feet"),
  17616. weight: math.unit(224, "lb"),
  17617. name: "Side",
  17618. image: {
  17619. source: "./media/characters/sheila-feral-wolf/side.svg",
  17620. extra: 179 / 166,
  17621. bottom: 0.03
  17622. }
  17623. },
  17624. },
  17625. [
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(3 + 2 / 12, "feet"),
  17629. default: true
  17630. },
  17631. ]
  17632. ))
  17633. characterMakers.push(() => makeCharacter(
  17634. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17635. {
  17636. side: {
  17637. height: math.unit(1 + 9 / 12, "feet"),
  17638. weight: math.unit(38, "lb"),
  17639. name: "Side",
  17640. image: {
  17641. source: "./media/characters/michelle/side.svg",
  17642. extra: 147 / 136.7,
  17643. bottom: 0.03
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(1 + 9 / 12, "feet"),
  17651. default: true
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17657. {
  17658. front: {
  17659. height: math.unit(1.54, "feet"),
  17660. weight: math.unit(50, "lb"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/nino/front.svg"
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Normal",
  17670. height: math.unit(1.54, "feet"),
  17671. default: true
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17677. {
  17678. front: {
  17679. height: math.unit(1.49, "feet"),
  17680. weight: math.unit(45, "lb"),
  17681. name: "Front",
  17682. image: {
  17683. source: "./media/characters/viola/front.svg"
  17684. }
  17685. },
  17686. },
  17687. [
  17688. {
  17689. name: "Normal",
  17690. height: math.unit(1.49, "feet"),
  17691. default: true
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(6 + 5 / 12, "feet"),
  17700. weight: math.unit(580, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/atlas/front.svg",
  17704. extra: 298.5 / 290,
  17705. bottom: 0.015
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(6 + 5 / 12, "feet"),
  17713. default: true
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17719. {
  17720. side: {
  17721. height: math.unit(15.6, "inches"),
  17722. weight: math.unit(10, "lb"),
  17723. name: "Side",
  17724. image: {
  17725. source: "./media/characters/davy/side.svg",
  17726. extra: 200 / 170,
  17727. bottom: 0.01
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(15.6, "inches"),
  17735. default: true
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17741. {
  17742. side: {
  17743. height: math.unit(4 + 8 / 12, "feet"),
  17744. weight: math.unit(166, "lb"),
  17745. name: "Side",
  17746. image: {
  17747. source: "./media/characters/fiona/side.svg",
  17748. extra: 232 / 220,
  17749. bottom: 0.03
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(4 + 8 / 12, "feet"),
  17757. default: true
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17763. {
  17764. front: {
  17765. height: math.unit(26, "inches"),
  17766. weight: math.unit(35, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/lyla/front.svg",
  17770. bottom: 0.1
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Normal",
  17777. height: math.unit(3, "feet"),
  17778. default: true
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17784. {
  17785. side: {
  17786. height: math.unit(1.8, "feet"),
  17787. weight: math.unit(44, "lb"),
  17788. name: "Side",
  17789. image: {
  17790. source: "./media/characters/perseus/side.svg",
  17791. bottom: 0.21
  17792. }
  17793. },
  17794. },
  17795. [
  17796. {
  17797. name: "Normal",
  17798. height: math.unit(1.8, "feet"),
  17799. default: true
  17800. },
  17801. ]
  17802. ))
  17803. characterMakers.push(() => makeCharacter(
  17804. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17805. {
  17806. side: {
  17807. height: math.unit(4 + 2 / 12, "feet"),
  17808. weight: math.unit(20, "lb"),
  17809. name: "Side",
  17810. image: {
  17811. source: "./media/characters/remus/side.svg"
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(4 + 2 / 12, "feet"),
  17819. default: true
  17820. },
  17821. ]
  17822. ))
  17823. characterMakers.push(() => makeCharacter(
  17824. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17825. {
  17826. front: {
  17827. height: math.unit(4 + 11 / 12, "feet"),
  17828. weight: math.unit(114, "lb"),
  17829. name: "Front",
  17830. image: {
  17831. source: "./media/characters/raf/front.svg",
  17832. extra: 1504/1339,
  17833. bottom: 26/1530
  17834. }
  17835. },
  17836. side: {
  17837. height: math.unit(4 + 11 / 12, "feet"),
  17838. weight: math.unit(114, "lb"),
  17839. name: "Side",
  17840. image: {
  17841. source: "./media/characters/raf/side.svg",
  17842. extra: 1466/1316,
  17843. bottom: 29/1495
  17844. }
  17845. },
  17846. },
  17847. [
  17848. {
  17849. name: "Micro",
  17850. height: math.unit(2, "inches")
  17851. },
  17852. {
  17853. name: "Normal",
  17854. height: math.unit(4 + 11 / 12, "feet"),
  17855. default: true
  17856. },
  17857. {
  17858. name: "Macro",
  17859. height: math.unit(70, "feet")
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(1.5, "meters"),
  17868. weight: math.unit(68, "kg"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/liam-einarr/front.svg",
  17872. extra: 2822 / 2666
  17873. }
  17874. },
  17875. back: {
  17876. height: math.unit(1.5, "meters"),
  17877. weight: math.unit(68, "kg"),
  17878. name: "Back",
  17879. image: {
  17880. source: "./media/characters/liam-einarr/back.svg",
  17881. extra: 2822 / 2666,
  17882. bottom: 0.015
  17883. }
  17884. },
  17885. },
  17886. [
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(1.5, "meters"),
  17890. default: true
  17891. },
  17892. {
  17893. name: "Macro",
  17894. height: math.unit(150, "meters")
  17895. },
  17896. {
  17897. name: "Megamacro",
  17898. height: math.unit(35, "km")
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17904. {
  17905. front: {
  17906. height: math.unit(6, "feet"),
  17907. weight: math.unit(75, "kg"),
  17908. name: "Front",
  17909. image: {
  17910. source: "./media/characters/linda/front.svg",
  17911. extra: 930 / 874,
  17912. bottom: 0.004
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(6, "feet"),
  17920. default: true
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(6 + 8 / 12, "feet"),
  17929. weight: math.unit(220, "lb"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/caylex/front.svg",
  17933. extra: 821 / 772,
  17934. bottom: 0.07
  17935. }
  17936. },
  17937. back: {
  17938. height: math.unit(6 + 8 / 12, "feet"),
  17939. weight: math.unit(220, "lb"),
  17940. name: "Back",
  17941. image: {
  17942. source: "./media/characters/caylex/back.svg",
  17943. extra: 821 / 772,
  17944. bottom: 0.022
  17945. }
  17946. },
  17947. hand: {
  17948. height: math.unit(1.25, "feet"),
  17949. name: "Hand",
  17950. image: {
  17951. source: "./media/characters/caylex/hand.svg"
  17952. }
  17953. },
  17954. foot: {
  17955. height: math.unit(1.6, "feet"),
  17956. name: "Foot",
  17957. image: {
  17958. source: "./media/characters/caylex/foot.svg"
  17959. }
  17960. },
  17961. armored: {
  17962. height: math.unit(6 + 8 / 12, "feet"),
  17963. weight: math.unit(250, "lb"),
  17964. name: "Armored",
  17965. image: {
  17966. source: "./media/characters/caylex/armored.svg",
  17967. extra: 1420 / 1310,
  17968. bottom: 0.045
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(6 + 8 / 12, "feet"),
  17976. default: true
  17977. },
  17978. {
  17979. name: "Normal+",
  17980. height: math.unit(12, "feet")
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17986. {
  17987. front: {
  17988. height: math.unit(7 + 6 / 12, "feet"),
  17989. weight: math.unit(288, "lb"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/alana/front.svg",
  17993. extra: 679 / 653,
  17994. bottom: 22.5 / 701
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Normal",
  18001. height: math.unit(7 + 6 / 12, "feet")
  18002. },
  18003. {
  18004. name: "Large",
  18005. height: math.unit(50, "feet")
  18006. },
  18007. {
  18008. name: "Macro",
  18009. height: math.unit(100, "feet"),
  18010. default: true
  18011. },
  18012. {
  18013. name: "Macro+",
  18014. height: math.unit(200, "feet")
  18015. },
  18016. ]
  18017. ))
  18018. characterMakers.push(() => makeCharacter(
  18019. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18020. {
  18021. front: {
  18022. height: math.unit(6 + 1 / 12, "feet"),
  18023. weight: math.unit(210, "lb"),
  18024. name: "Front",
  18025. image: {
  18026. source: "./media/characters/hasani/front.svg",
  18027. extra: 244 / 232,
  18028. bottom: 0.01
  18029. }
  18030. },
  18031. back: {
  18032. height: math.unit(6 + 1 / 12, "feet"),
  18033. weight: math.unit(210, "lb"),
  18034. name: "Back",
  18035. image: {
  18036. source: "./media/characters/hasani/back.svg",
  18037. extra: 244 / 232,
  18038. bottom: 0.01
  18039. }
  18040. },
  18041. },
  18042. [
  18043. {
  18044. name: "Normal",
  18045. height: math.unit(6 + 1 / 12, "feet")
  18046. },
  18047. {
  18048. name: "Macro",
  18049. height: math.unit(175, "feet"),
  18050. default: true
  18051. },
  18052. ]
  18053. ))
  18054. characterMakers.push(() => makeCharacter(
  18055. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18056. {
  18057. front: {
  18058. height: math.unit(1.82, "meters"),
  18059. weight: math.unit(140, "lb"),
  18060. name: "Front",
  18061. image: {
  18062. source: "./media/characters/nita/front.svg",
  18063. extra: 2473 / 2363,
  18064. bottom: 0.01
  18065. }
  18066. },
  18067. },
  18068. [
  18069. {
  18070. name: "Normal",
  18071. height: math.unit(1.82, "m")
  18072. },
  18073. {
  18074. name: "Macro",
  18075. height: math.unit(300, "m")
  18076. },
  18077. {
  18078. name: "Mistake Canon",
  18079. height: math.unit(0.5, "miles"),
  18080. default: true
  18081. },
  18082. {
  18083. name: "Big Mistake",
  18084. height: math.unit(13, "miles")
  18085. },
  18086. {
  18087. name: "Playing God",
  18088. height: math.unit(2450, "miles")
  18089. },
  18090. ]
  18091. ))
  18092. characterMakers.push(() => makeCharacter(
  18093. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18094. {
  18095. front: {
  18096. height: math.unit(4, "feet"),
  18097. weight: math.unit(120, "lb"),
  18098. name: "Front",
  18099. image: {
  18100. source: "./media/characters/shiriko/front.svg",
  18101. extra: 970/934,
  18102. bottom: 5/975
  18103. }
  18104. },
  18105. },
  18106. [
  18107. {
  18108. name: "Normal",
  18109. height: math.unit(4, "feet"),
  18110. default: true
  18111. },
  18112. ]
  18113. ))
  18114. characterMakers.push(() => makeCharacter(
  18115. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18116. {
  18117. front: {
  18118. height: math.unit(6, "feet"),
  18119. name: "front",
  18120. image: {
  18121. source: "./media/characters/deja/front.svg",
  18122. extra: 926 / 840,
  18123. bottom: 0.07
  18124. }
  18125. },
  18126. },
  18127. [
  18128. {
  18129. name: "Planck Length",
  18130. height: math.unit(1.6e-35, "meters")
  18131. },
  18132. {
  18133. name: "Normal",
  18134. height: math.unit(30.48, "meters"),
  18135. default: true
  18136. },
  18137. {
  18138. name: "Universal",
  18139. height: math.unit(8.8e26, "meters")
  18140. },
  18141. ]
  18142. ))
  18143. characterMakers.push(() => makeCharacter(
  18144. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18145. {
  18146. side: {
  18147. height: math.unit(8, "feet"),
  18148. weight: math.unit(6300, "lb"),
  18149. name: "Side",
  18150. image: {
  18151. source: "./media/characters/anima/side.svg",
  18152. bottom: 0.035
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(8, "feet"),
  18160. default: true
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18166. {
  18167. front: {
  18168. height: math.unit(8, "feet"),
  18169. weight: math.unit(350, "lb"),
  18170. name: "Front",
  18171. image: {
  18172. source: "./media/characters/bianca/front.svg",
  18173. extra: 234 / 225,
  18174. bottom: 0.03
  18175. }
  18176. },
  18177. },
  18178. [
  18179. {
  18180. name: "Normal",
  18181. height: math.unit(8, "feet"),
  18182. default: true
  18183. },
  18184. ]
  18185. ))
  18186. characterMakers.push(() => makeCharacter(
  18187. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18188. {
  18189. front: {
  18190. height: math.unit(6, "feet"),
  18191. weight: math.unit(150, "lb"),
  18192. name: "Front",
  18193. image: {
  18194. source: "./media/characters/adinia/front.svg",
  18195. extra: 1845 / 1672,
  18196. bottom: 0.02
  18197. }
  18198. },
  18199. back: {
  18200. height: math.unit(6, "feet"),
  18201. weight: math.unit(150, "lb"),
  18202. name: "Back",
  18203. image: {
  18204. source: "./media/characters/adinia/back.svg",
  18205. extra: 1845 / 1672,
  18206. bottom: 0.002
  18207. }
  18208. },
  18209. },
  18210. [
  18211. {
  18212. name: "Normal",
  18213. height: math.unit(11 + 5 / 12, "feet"),
  18214. default: true
  18215. },
  18216. ]
  18217. ))
  18218. characterMakers.push(() => makeCharacter(
  18219. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18220. {
  18221. front: {
  18222. height: math.unit(3, "meters"),
  18223. weight: math.unit(200, "kg"),
  18224. name: "Front",
  18225. image: {
  18226. source: "./media/characters/lykasa/front.svg",
  18227. extra: 1076 / 976,
  18228. bottom: 0.06
  18229. }
  18230. },
  18231. },
  18232. [
  18233. {
  18234. name: "Normal",
  18235. height: math.unit(3, "meters")
  18236. },
  18237. {
  18238. name: "Kaiju",
  18239. height: math.unit(120, "meters"),
  18240. default: true
  18241. },
  18242. {
  18243. name: "Mega Kaiju",
  18244. height: math.unit(240, "km")
  18245. },
  18246. {
  18247. name: "Giga Kaiju",
  18248. height: math.unit(400, "megameters")
  18249. },
  18250. {
  18251. name: "Tera Kaiju",
  18252. height: math.unit(800, "gigameters")
  18253. },
  18254. {
  18255. name: "Kaiju Dragon Goddess",
  18256. height: math.unit(26, "zettaparsecs")
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18262. {
  18263. side: {
  18264. height: math.unit(283 / 124 * 6, "feet"),
  18265. weight: math.unit(35000, "lb"),
  18266. name: "Side",
  18267. image: {
  18268. source: "./media/characters/malfaren/side.svg",
  18269. extra: 1310/529,
  18270. bottom: 24/1334
  18271. }
  18272. },
  18273. front: {
  18274. height: math.unit(22.36, "feet"),
  18275. weight: math.unit(35000, "lb"),
  18276. name: "Front",
  18277. image: {
  18278. source: "./media/characters/malfaren/front.svg",
  18279. extra: 1237/1115,
  18280. bottom: 32/1269
  18281. }
  18282. },
  18283. maw: {
  18284. height: math.unit(6.9, "feet"),
  18285. name: "Maw",
  18286. image: {
  18287. source: "./media/characters/malfaren/maw.svg"
  18288. }
  18289. },
  18290. dick: {
  18291. height: math.unit(6.19, "feet"),
  18292. name: "Dick",
  18293. image: {
  18294. source: "./media/characters/malfaren/dick.svg"
  18295. }
  18296. },
  18297. eye: {
  18298. height: math.unit(0.69, "feet"),
  18299. name: "Eye",
  18300. image: {
  18301. source: "./media/characters/malfaren/eye.svg"
  18302. }
  18303. },
  18304. },
  18305. [
  18306. {
  18307. name: "Big",
  18308. height: math.unit(283 / 162 * 6, "feet"),
  18309. },
  18310. {
  18311. name: "Bigger",
  18312. height: math.unit(283 / 124 * 6, "feet")
  18313. },
  18314. {
  18315. name: "Massive",
  18316. height: math.unit(283 / 92 * 6, "feet"),
  18317. default: true
  18318. },
  18319. {
  18320. name: "👀💦",
  18321. height: math.unit(283 / 73 * 6, "feet"),
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18327. {
  18328. front: {
  18329. height: math.unit(1.7, "m"),
  18330. weight: math.unit(70, "kg"),
  18331. name: "Front",
  18332. image: {
  18333. source: "./media/characters/kernel/front.svg",
  18334. extra: 222 / 210,
  18335. bottom: 0.007
  18336. }
  18337. },
  18338. },
  18339. [
  18340. {
  18341. name: "Nano",
  18342. height: math.unit(17, "micrometers")
  18343. },
  18344. {
  18345. name: "Micro",
  18346. height: math.unit(1.7, "mm")
  18347. },
  18348. {
  18349. name: "Small",
  18350. height: math.unit(1.7, "cm")
  18351. },
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(1.7, "m"),
  18355. default: true
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(1.75, "meters"),
  18364. weight: math.unit(65, "kg"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/jayne-folest/front.svg",
  18368. extra: 2115 / 2007,
  18369. bottom: 0.02
  18370. }
  18371. },
  18372. back: {
  18373. height: math.unit(1.75, "meters"),
  18374. weight: math.unit(65, "kg"),
  18375. name: "Back",
  18376. image: {
  18377. source: "./media/characters/jayne-folest/back.svg",
  18378. extra: 2115 / 2007,
  18379. bottom: 0.005
  18380. }
  18381. },
  18382. frontClothed: {
  18383. height: math.unit(1.75, "meters"),
  18384. weight: math.unit(65, "kg"),
  18385. name: "Front (Clothed)",
  18386. image: {
  18387. source: "./media/characters/jayne-folest/front-clothed.svg",
  18388. extra: 2115 / 2007,
  18389. bottom: 0.035
  18390. }
  18391. },
  18392. hand: {
  18393. height: math.unit(1 / 1.260, "feet"),
  18394. name: "Hand",
  18395. image: {
  18396. source: "./media/characters/jayne-folest/hand.svg"
  18397. }
  18398. },
  18399. foot: {
  18400. height: math.unit(1 / 0.918, "feet"),
  18401. name: "Foot",
  18402. image: {
  18403. source: "./media/characters/jayne-folest/foot.svg"
  18404. }
  18405. },
  18406. },
  18407. [
  18408. {
  18409. name: "Micro",
  18410. height: math.unit(4, "cm")
  18411. },
  18412. {
  18413. name: "Normal",
  18414. height: math.unit(1.75, "meters")
  18415. },
  18416. {
  18417. name: "Macro",
  18418. height: math.unit(47.5, "meters"),
  18419. default: true
  18420. },
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18425. {
  18426. front: {
  18427. height: math.unit(180, "cm"),
  18428. weight: math.unit(70, "kg"),
  18429. name: "Front",
  18430. image: {
  18431. source: "./media/characters/algier/front.svg",
  18432. extra: 596 / 572,
  18433. bottom: 0.04
  18434. }
  18435. },
  18436. back: {
  18437. height: math.unit(180, "cm"),
  18438. weight: math.unit(70, "kg"),
  18439. name: "Back",
  18440. image: {
  18441. source: "./media/characters/algier/back.svg",
  18442. extra: 596 / 572,
  18443. bottom: 0.025
  18444. }
  18445. },
  18446. frontdressed: {
  18447. height: math.unit(180, "cm"),
  18448. weight: math.unit(150, "kg"),
  18449. name: "Front-dressed",
  18450. image: {
  18451. source: "./media/characters/algier/front-dressed.svg",
  18452. extra: 596 / 572,
  18453. bottom: 0.038
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Micro",
  18460. height: math.unit(5, "cm")
  18461. },
  18462. {
  18463. name: "Normal",
  18464. height: math.unit(180, "cm"),
  18465. default: true
  18466. },
  18467. {
  18468. name: "Macro",
  18469. height: math.unit(64, "m")
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18475. {
  18476. upright: {
  18477. height: math.unit(7, "feet"),
  18478. weight: math.unit(300, "lb"),
  18479. name: "Upright",
  18480. image: {
  18481. source: "./media/characters/pretzel/upright.svg",
  18482. extra: 534 / 522,
  18483. bottom: 0.065
  18484. }
  18485. },
  18486. sprawling: {
  18487. height: math.unit(3.75, "feet"),
  18488. weight: math.unit(300, "lb"),
  18489. name: "Sprawling",
  18490. image: {
  18491. source: "./media/characters/pretzel/sprawling.svg",
  18492. extra: 314 / 281,
  18493. bottom: 0.1
  18494. }
  18495. },
  18496. tongue: {
  18497. height: math.unit(2, "feet"),
  18498. name: "Tongue",
  18499. image: {
  18500. source: "./media/characters/pretzel/tongue.svg"
  18501. }
  18502. },
  18503. },
  18504. [
  18505. {
  18506. name: "Normal",
  18507. height: math.unit(7, "feet"),
  18508. default: true
  18509. },
  18510. {
  18511. name: "Oversized",
  18512. height: math.unit(15, "feet")
  18513. },
  18514. {
  18515. name: "Huge",
  18516. height: math.unit(30, "feet")
  18517. },
  18518. {
  18519. name: "Macro",
  18520. height: math.unit(250, "feet")
  18521. },
  18522. ]
  18523. ))
  18524. characterMakers.push(() => makeCharacter(
  18525. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18526. {
  18527. sideFront: {
  18528. height: math.unit(5 + 2 / 12, "feet"),
  18529. weight: math.unit(120, "lb"),
  18530. name: "Front Side",
  18531. image: {
  18532. source: "./media/characters/roxi/side-front.svg",
  18533. extra: 2924 / 2717,
  18534. bottom: 0.08
  18535. }
  18536. },
  18537. sideBack: {
  18538. height: math.unit(5 + 2 / 12, "feet"),
  18539. weight: math.unit(120, "lb"),
  18540. name: "Back Side",
  18541. image: {
  18542. source: "./media/characters/roxi/side-back.svg",
  18543. extra: 2904 / 2693,
  18544. bottom: 0.06
  18545. }
  18546. },
  18547. front: {
  18548. height: math.unit(5 + 2 / 12, "feet"),
  18549. weight: math.unit(120, "lb"),
  18550. name: "Front",
  18551. image: {
  18552. source: "./media/characters/roxi/front.svg",
  18553. extra: 2028 / 1907,
  18554. bottom: 0.01
  18555. }
  18556. },
  18557. frontAlt: {
  18558. height: math.unit(5 + 2 / 12, "feet"),
  18559. weight: math.unit(120, "lb"),
  18560. name: "Front (Alt)",
  18561. image: {
  18562. source: "./media/characters/roxi/front-alt.svg",
  18563. extra: 1828 / 1798,
  18564. bottom: 0.01
  18565. }
  18566. },
  18567. sitting: {
  18568. height: math.unit(2.8, "feet"),
  18569. weight: math.unit(120, "lb"),
  18570. name: "Sitting",
  18571. image: {
  18572. source: "./media/characters/roxi/sitting.svg",
  18573. extra: 2660 / 2462,
  18574. bottom: 0.1
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(5 + 2 / 12, "feet"),
  18582. default: true
  18583. },
  18584. ]
  18585. ))
  18586. characterMakers.push(() => makeCharacter(
  18587. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18588. {
  18589. side: {
  18590. height: math.unit(55, "feet"),
  18591. weight: math.unit(153, "tons"),
  18592. name: "Side",
  18593. image: {
  18594. source: "./media/characters/shadow/side.svg",
  18595. extra: 701 / 628,
  18596. bottom: 0.02
  18597. }
  18598. },
  18599. flying: {
  18600. height: math.unit(145, "feet"),
  18601. weight: math.unit(153, "tons"),
  18602. name: "Flying",
  18603. image: {
  18604. source: "./media/characters/shadow/flying.svg"
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Normal",
  18611. height: math.unit(55, "feet"),
  18612. default: true
  18613. },
  18614. ]
  18615. ))
  18616. characterMakers.push(() => makeCharacter(
  18617. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18618. {
  18619. front: {
  18620. height: math.unit(6, "feet"),
  18621. weight: math.unit(200, "lb"),
  18622. name: "Front",
  18623. image: {
  18624. source: "./media/characters/marcie/front.svg",
  18625. extra: 960 / 876,
  18626. bottom: 58 / 1017.87
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Macro",
  18633. height: math.unit(1, "mile"),
  18634. default: true
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18640. {
  18641. front: {
  18642. height: math.unit(7, "feet"),
  18643. weight: math.unit(200, "lb"),
  18644. name: "Front",
  18645. image: {
  18646. source: "./media/characters/kachina/front.svg",
  18647. extra: 1290.68 / 1119,
  18648. bottom: 36.5 / 1327.18
  18649. }
  18650. },
  18651. },
  18652. [
  18653. {
  18654. name: "Normal",
  18655. height: math.unit(7, "feet"),
  18656. default: true
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18662. {
  18663. looking: {
  18664. height: math.unit(2, "meters"),
  18665. weight: math.unit(300, "kg"),
  18666. name: "Looking",
  18667. image: {
  18668. source: "./media/characters/kash/looking.svg",
  18669. extra: 474 / 344,
  18670. bottom: 0.03
  18671. }
  18672. },
  18673. side: {
  18674. height: math.unit(2, "meters"),
  18675. weight: math.unit(300, "kg"),
  18676. name: "Side",
  18677. image: {
  18678. source: "./media/characters/kash/side.svg",
  18679. extra: 302 / 251,
  18680. bottom: 0.03
  18681. }
  18682. },
  18683. front: {
  18684. height: math.unit(2, "meters"),
  18685. weight: math.unit(300, "kg"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/kash/front.svg",
  18689. extra: 495 / 360,
  18690. bottom: 0.015
  18691. }
  18692. },
  18693. },
  18694. [
  18695. {
  18696. name: "Normal",
  18697. height: math.unit(2, "meters"),
  18698. default: true
  18699. },
  18700. {
  18701. name: "Big",
  18702. height: math.unit(3, "meters")
  18703. },
  18704. {
  18705. name: "Large",
  18706. height: math.unit(5, "meters")
  18707. },
  18708. ]
  18709. ))
  18710. characterMakers.push(() => makeCharacter(
  18711. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18712. {
  18713. feeding: {
  18714. height: math.unit(6.7, "feet"),
  18715. weight: math.unit(350, "lb"),
  18716. name: "Feeding",
  18717. image: {
  18718. source: "./media/characters/lalim/feeding.svg",
  18719. }
  18720. },
  18721. },
  18722. [
  18723. {
  18724. name: "Normal",
  18725. height: math.unit(6.7, "feet"),
  18726. default: true
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18732. {
  18733. front: {
  18734. height: math.unit(9.5, "feet"),
  18735. weight: math.unit(600, "lb"),
  18736. name: "Front",
  18737. image: {
  18738. source: "./media/characters/de'vout/front.svg",
  18739. extra: 1443 / 1328,
  18740. bottom: 0.025
  18741. }
  18742. },
  18743. back: {
  18744. height: math.unit(9.5, "feet"),
  18745. weight: math.unit(600, "lb"),
  18746. name: "Back",
  18747. image: {
  18748. source: "./media/characters/de'vout/back.svg",
  18749. extra: 1443 / 1328
  18750. }
  18751. },
  18752. frontDressed: {
  18753. height: math.unit(9.5, "feet"),
  18754. weight: math.unit(600, "lb"),
  18755. name: "Front (Dressed",
  18756. image: {
  18757. source: "./media/characters/de'vout/front-dressed.svg",
  18758. extra: 1443 / 1328,
  18759. bottom: 0.025
  18760. }
  18761. },
  18762. backDressed: {
  18763. height: math.unit(9.5, "feet"),
  18764. weight: math.unit(600, "lb"),
  18765. name: "Back (Dressed",
  18766. image: {
  18767. source: "./media/characters/de'vout/back-dressed.svg",
  18768. extra: 1443 / 1328
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(9.5, "feet"),
  18776. default: true
  18777. },
  18778. ]
  18779. ))
  18780. characterMakers.push(() => makeCharacter(
  18781. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18782. {
  18783. front: {
  18784. height: math.unit(8, "feet"),
  18785. weight: math.unit(225, "lb"),
  18786. name: "Front",
  18787. image: {
  18788. source: "./media/characters/talana/front.svg",
  18789. extra: 1410 / 1300,
  18790. bottom: 0.015
  18791. }
  18792. },
  18793. frontDressed: {
  18794. height: math.unit(8, "feet"),
  18795. weight: math.unit(225, "lb"),
  18796. name: "Front (Dressed",
  18797. image: {
  18798. source: "./media/characters/talana/front-dressed.svg",
  18799. extra: 1410 / 1300,
  18800. bottom: 0.015
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Normal",
  18807. height: math.unit(8, "feet"),
  18808. default: true
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18814. {
  18815. side: {
  18816. height: math.unit(7.2, "feet"),
  18817. weight: math.unit(150, "lb"),
  18818. name: "Side",
  18819. image: {
  18820. source: "./media/characters/xeauvok/side.svg",
  18821. extra: 1975 / 1523,
  18822. bottom: 0.07
  18823. }
  18824. },
  18825. },
  18826. [
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(7.2, "feet"),
  18830. default: true
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18836. {
  18837. side: {
  18838. height: math.unit(10, "feet"),
  18839. weight: math.unit(900, "kg"),
  18840. name: "Side",
  18841. image: {
  18842. source: "./media/characters/zara/side.svg",
  18843. extra: 504 / 498
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(10, "feet"),
  18851. default: true
  18852. },
  18853. ]
  18854. ))
  18855. characterMakers.push(() => makeCharacter(
  18856. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18857. {
  18858. side: {
  18859. height: math.unit(6, "feet"),
  18860. weight: math.unit(150, "lb"),
  18861. name: "Side",
  18862. image: {
  18863. source: "./media/characters/richard-dragon/side.svg",
  18864. extra: 845 / 340,
  18865. bottom: 0.017
  18866. }
  18867. },
  18868. maw: {
  18869. height: math.unit(2.97, "feet"),
  18870. name: "Maw",
  18871. image: {
  18872. source: "./media/characters/richard-dragon/maw.svg"
  18873. }
  18874. },
  18875. },
  18876. [
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(4, "feet"),
  18884. weight: math.unit(100, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/richard-smeargle/front.svg",
  18888. extra: 2952 / 2820,
  18889. bottom: 0.028
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Normal",
  18896. height: math.unit(4, "feet"),
  18897. default: true
  18898. },
  18899. {
  18900. name: "Dynamax",
  18901. height: math.unit(20, "meters")
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18907. {
  18908. front: {
  18909. height: math.unit(6, "feet"),
  18910. weight: math.unit(110, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/klay/front.svg",
  18914. extra: 962 / 883,
  18915. bottom: 0.04
  18916. }
  18917. },
  18918. back: {
  18919. height: math.unit(6, "feet"),
  18920. weight: math.unit(110, "lb"),
  18921. name: "Back",
  18922. image: {
  18923. source: "./media/characters/klay/back.svg",
  18924. extra: 962 / 883
  18925. }
  18926. },
  18927. beans: {
  18928. height: math.unit(1.15, "feet"),
  18929. name: "Beans",
  18930. image: {
  18931. source: "./media/characters/klay/beans.svg"
  18932. }
  18933. },
  18934. },
  18935. [
  18936. {
  18937. name: "Micro",
  18938. height: math.unit(6, "inches")
  18939. },
  18940. {
  18941. name: "Mini",
  18942. height: math.unit(3, "feet")
  18943. },
  18944. {
  18945. name: "Normal",
  18946. height: math.unit(6, "feet"),
  18947. default: true
  18948. },
  18949. {
  18950. name: "Big",
  18951. height: math.unit(25, "feet")
  18952. },
  18953. {
  18954. name: "Macro",
  18955. height: math.unit(100, "feet")
  18956. },
  18957. {
  18958. name: "Megamacro",
  18959. height: math.unit(400, "feet")
  18960. },
  18961. ]
  18962. ))
  18963. characterMakers.push(() => makeCharacter(
  18964. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18965. {
  18966. front: {
  18967. height: math.unit(6, "feet"),
  18968. weight: math.unit(160, "lb"),
  18969. name: "Front",
  18970. image: {
  18971. source: "./media/characters/marcus/front.svg",
  18972. extra: 734 / 676,
  18973. bottom: 0.03
  18974. }
  18975. },
  18976. },
  18977. [
  18978. {
  18979. name: "Little",
  18980. height: math.unit(6, "feet")
  18981. },
  18982. {
  18983. name: "Normal",
  18984. height: math.unit(110, "feet"),
  18985. default: true
  18986. },
  18987. {
  18988. name: "Macro",
  18989. height: math.unit(250, "feet")
  18990. },
  18991. {
  18992. name: "Megamacro",
  18993. height: math.unit(1000, "feet")
  18994. },
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18999. {
  19000. front: {
  19001. height: math.unit(7, "feet"),
  19002. weight: math.unit(275, "lb"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/claude-delroute/front.svg",
  19006. extra: 902/827,
  19007. bottom: 26/928
  19008. }
  19009. },
  19010. side: {
  19011. height: math.unit(7, "feet"),
  19012. weight: math.unit(275, "lb"),
  19013. name: "Side",
  19014. image: {
  19015. source: "./media/characters/claude-delroute/side.svg",
  19016. extra: 908/853,
  19017. bottom: 16/924
  19018. }
  19019. },
  19020. back: {
  19021. height: math.unit(7, "feet"),
  19022. weight: math.unit(275, "lb"),
  19023. name: "Back",
  19024. image: {
  19025. source: "./media/characters/claude-delroute/back.svg",
  19026. extra: 911/829,
  19027. bottom: 18/929
  19028. }
  19029. },
  19030. maw: {
  19031. height: math.unit(0.6407, "meters"),
  19032. name: "Maw",
  19033. image: {
  19034. source: "./media/characters/claude-delroute/maw.svg"
  19035. }
  19036. },
  19037. },
  19038. [
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(7, "feet"),
  19042. default: true
  19043. },
  19044. {
  19045. name: "Lorge",
  19046. height: math.unit(20, "feet")
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19052. {
  19053. front: {
  19054. height: math.unit(8 + 4 / 12, "feet"),
  19055. weight: math.unit(600, "lb"),
  19056. name: "Front",
  19057. image: {
  19058. source: "./media/characters/dragonien/front.svg",
  19059. extra: 100 / 94,
  19060. bottom: 3.3 / 103.3445
  19061. }
  19062. },
  19063. back: {
  19064. height: math.unit(8 + 4 / 12, "feet"),
  19065. weight: math.unit(600, "lb"),
  19066. name: "Back",
  19067. image: {
  19068. source: "./media/characters/dragonien/back.svg",
  19069. extra: 776 / 746,
  19070. bottom: 6.4 / 782.0616
  19071. }
  19072. },
  19073. foot: {
  19074. height: math.unit(1.54, "feet"),
  19075. name: "Foot",
  19076. image: {
  19077. source: "./media/characters/dragonien/foot.svg",
  19078. }
  19079. },
  19080. },
  19081. [
  19082. {
  19083. name: "Normal",
  19084. height: math.unit(8 + 4 / 12, "feet"),
  19085. default: true
  19086. },
  19087. {
  19088. name: "Macro",
  19089. height: math.unit(200, "feet")
  19090. },
  19091. {
  19092. name: "Megamacro",
  19093. height: math.unit(1, "mile")
  19094. },
  19095. {
  19096. name: "Gigamacro",
  19097. height: math.unit(1000, "miles")
  19098. },
  19099. ]
  19100. ))
  19101. characterMakers.push(() => makeCharacter(
  19102. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19103. {
  19104. front: {
  19105. height: math.unit(5 + 2 / 12, "feet"),
  19106. weight: math.unit(110, "lb"),
  19107. name: "Front",
  19108. image: {
  19109. source: "./media/characters/desta/front.svg",
  19110. extra: 767 / 726,
  19111. bottom: 11.7 / 779
  19112. }
  19113. },
  19114. back: {
  19115. height: math.unit(5 + 2 / 12, "feet"),
  19116. weight: math.unit(110, "lb"),
  19117. name: "Back",
  19118. image: {
  19119. source: "./media/characters/desta/back.svg",
  19120. extra: 777 / 728,
  19121. bottom: 6 / 784
  19122. }
  19123. },
  19124. frontAlt: {
  19125. height: math.unit(5 + 2 / 12, "feet"),
  19126. weight: math.unit(110, "lb"),
  19127. name: "Front",
  19128. image: {
  19129. source: "./media/characters/desta/front-alt.svg",
  19130. extra: 1482 / 1417
  19131. }
  19132. },
  19133. side: {
  19134. height: math.unit(5 + 2 / 12, "feet"),
  19135. weight: math.unit(110, "lb"),
  19136. name: "Side",
  19137. image: {
  19138. source: "./media/characters/desta/side.svg",
  19139. extra: 2579 / 2491,
  19140. bottom: 0.053
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Micro",
  19147. height: math.unit(6, "inches")
  19148. },
  19149. {
  19150. name: "Normal",
  19151. height: math.unit(5 + 2 / 12, "feet"),
  19152. default: true
  19153. },
  19154. {
  19155. name: "Macro",
  19156. height: math.unit(62, "feet")
  19157. },
  19158. {
  19159. name: "Megamacro",
  19160. height: math.unit(1800, "feet")
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19166. {
  19167. front: {
  19168. height: math.unit(10, "feet"),
  19169. weight: math.unit(700, "lb"),
  19170. name: "Front",
  19171. image: {
  19172. source: "./media/characters/storm-alystar/front.svg",
  19173. extra: 2112 / 1898,
  19174. bottom: 0.034
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Micro",
  19181. height: math.unit(3.5, "inches")
  19182. },
  19183. {
  19184. name: "Normal",
  19185. height: math.unit(10, "feet"),
  19186. default: true
  19187. },
  19188. {
  19189. name: "Macro",
  19190. height: math.unit(400, "feet")
  19191. },
  19192. {
  19193. name: "Deific",
  19194. height: math.unit(60, "miles")
  19195. },
  19196. ]
  19197. ))
  19198. characterMakers.push(() => makeCharacter(
  19199. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19200. {
  19201. front: {
  19202. height: math.unit(2.35, "meters"),
  19203. weight: math.unit(119, "kg"),
  19204. name: "Front",
  19205. image: {
  19206. source: "./media/characters/ilia/front.svg",
  19207. extra: 1285 / 1255,
  19208. bottom: 0.06
  19209. }
  19210. },
  19211. },
  19212. [
  19213. {
  19214. name: "Normal",
  19215. height: math.unit(2.35, "meters")
  19216. },
  19217. {
  19218. name: "Macro",
  19219. height: math.unit(140, "meters"),
  19220. default: true
  19221. },
  19222. {
  19223. name: "Megamacro",
  19224. height: math.unit(100, "miles")
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19230. {
  19231. front: {
  19232. height: math.unit(6 + 5 / 12, "feet"),
  19233. weight: math.unit(190, "lb"),
  19234. name: "Front",
  19235. image: {
  19236. source: "./media/characters/kingdead/front.svg",
  19237. extra: 1228 / 1177
  19238. }
  19239. },
  19240. },
  19241. [
  19242. {
  19243. name: "Micro",
  19244. height: math.unit(7, "inches")
  19245. },
  19246. {
  19247. name: "Normal",
  19248. height: math.unit(6 + 5 / 12, "feet")
  19249. },
  19250. {
  19251. name: "Macro",
  19252. height: math.unit(150, "feet"),
  19253. default: true
  19254. },
  19255. {
  19256. name: "Megamacro",
  19257. height: math.unit(200, "miles")
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19263. {
  19264. front: {
  19265. height: math.unit(8, "feet"),
  19266. weight: math.unit(600, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/kyrehx/front.svg",
  19270. extra: 1195 / 1095,
  19271. bottom: 0.034
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Micro",
  19278. height: math.unit(2, "inches")
  19279. },
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(8, "feet"),
  19283. default: true
  19284. },
  19285. {
  19286. name: "Macro",
  19287. height: math.unit(255, "feet")
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19296. weight: math.unit(184, "lb"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/xang/front.svg",
  19300. extra: 845 / 755
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19308. default: true
  19309. },
  19310. {
  19311. name: "Macro",
  19312. height: math.unit(0.935 * 146, "feet")
  19313. },
  19314. {
  19315. name: "Megamacro",
  19316. height: math.unit(0.935 * 3, "miles")
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19322. {
  19323. frontDressed: {
  19324. height: math.unit(5 + 7 / 12, "feet"),
  19325. weight: math.unit(140, "lb"),
  19326. name: "Front (Dressed)",
  19327. image: {
  19328. source: "./media/characters/doc-weardno/front-dressed.svg",
  19329. extra: 263 / 234
  19330. }
  19331. },
  19332. backDressed: {
  19333. height: math.unit(5 + 7 / 12, "feet"),
  19334. weight: math.unit(140, "lb"),
  19335. name: "Back (Dressed)",
  19336. image: {
  19337. source: "./media/characters/doc-weardno/back-dressed.svg",
  19338. extra: 266 / 238
  19339. }
  19340. },
  19341. front: {
  19342. height: math.unit(5 + 7 / 12, "feet"),
  19343. weight: math.unit(140, "lb"),
  19344. name: "Front",
  19345. image: {
  19346. source: "./media/characters/doc-weardno/front.svg",
  19347. extra: 254 / 233
  19348. }
  19349. },
  19350. },
  19351. [
  19352. {
  19353. name: "Micro",
  19354. height: math.unit(3, "inches")
  19355. },
  19356. {
  19357. name: "Normal",
  19358. height: math.unit(5 + 7 / 12, "feet"),
  19359. default: true
  19360. },
  19361. {
  19362. name: "Macro",
  19363. height: math.unit(25, "feet")
  19364. },
  19365. {
  19366. name: "Megamacro",
  19367. height: math.unit(2, "miles")
  19368. },
  19369. ]
  19370. ))
  19371. characterMakers.push(() => makeCharacter(
  19372. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19373. {
  19374. front: {
  19375. height: math.unit(6 + 2 / 12, "feet"),
  19376. weight: math.unit(153, "lb"),
  19377. name: "Front",
  19378. image: {
  19379. source: "./media/characters/seth-whilst/front.svg",
  19380. bottom: 0.07
  19381. }
  19382. },
  19383. },
  19384. [
  19385. {
  19386. name: "Micro",
  19387. height: math.unit(5, "inches")
  19388. },
  19389. {
  19390. name: "Normal",
  19391. height: math.unit(6 + 2 / 12, "feet"),
  19392. default: true
  19393. },
  19394. ]
  19395. ))
  19396. characterMakers.push(() => makeCharacter(
  19397. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19398. {
  19399. front: {
  19400. height: math.unit(3, "inches"),
  19401. weight: math.unit(8, "grams"),
  19402. name: "Front",
  19403. image: {
  19404. source: "./media/characters/pocket-jabari/front.svg",
  19405. extra: 1024 / 974,
  19406. bottom: 0.039
  19407. }
  19408. },
  19409. },
  19410. [
  19411. {
  19412. name: "Minimicro",
  19413. height: math.unit(8, "mm")
  19414. },
  19415. {
  19416. name: "Micro",
  19417. height: math.unit(3, "inches"),
  19418. default: true
  19419. },
  19420. {
  19421. name: "Normal",
  19422. height: math.unit(3, "feet")
  19423. },
  19424. ]
  19425. ))
  19426. characterMakers.push(() => makeCharacter(
  19427. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19428. {
  19429. frontDressed: {
  19430. height: math.unit(15, "feet"),
  19431. weight: math.unit(3280, "lb"),
  19432. name: "Front (Dressed)",
  19433. image: {
  19434. source: "./media/characters/sapphy/front-dressed.svg",
  19435. extra: 1951/1654,
  19436. bottom: 194/2145
  19437. },
  19438. form: "anthro",
  19439. default: true
  19440. },
  19441. backDressed: {
  19442. height: math.unit(15, "feet"),
  19443. weight: math.unit(3280, "lb"),
  19444. name: "Back (Dressed)",
  19445. image: {
  19446. source: "./media/characters/sapphy/back-dressed.svg",
  19447. extra: 2058/1918,
  19448. bottom: 125/2183
  19449. },
  19450. form: "anthro"
  19451. },
  19452. frontNude: {
  19453. height: math.unit(15, "feet"),
  19454. weight: math.unit(3280, "lb"),
  19455. name: "Front (Nude)",
  19456. image: {
  19457. source: "./media/characters/sapphy/front-nude.svg",
  19458. extra: 1951/1654,
  19459. bottom: 194/2145
  19460. },
  19461. form: "anthro"
  19462. },
  19463. backNude: {
  19464. height: math.unit(15, "feet"),
  19465. weight: math.unit(3280, "lb"),
  19466. name: "Back (Nude)",
  19467. image: {
  19468. source: "./media/characters/sapphy/back-nude.svg",
  19469. extra: 2058/1918,
  19470. bottom: 125/2183
  19471. },
  19472. form: "anthro"
  19473. },
  19474. full: {
  19475. height: math.unit(15, "feet"),
  19476. weight: math.unit(3280, "lb"),
  19477. name: "Full",
  19478. image: {
  19479. source: "./media/characters/sapphy/full.svg",
  19480. extra: 1396/1317,
  19481. bottom: 44/1440
  19482. },
  19483. form: "anthro"
  19484. },
  19485. dick: {
  19486. height: math.unit(3.8, "feet"),
  19487. name: "Dick",
  19488. image: {
  19489. source: "./media/characters/sapphy/dick.svg"
  19490. },
  19491. form: "anthro"
  19492. },
  19493. feral: {
  19494. height: math.unit(35, "feet"),
  19495. weight: math.unit(160, "tons"),
  19496. name: "Feral",
  19497. image: {
  19498. source: "./media/characters/sapphy/feral.svg",
  19499. extra: 1050/573,
  19500. bottom: 60/1110
  19501. },
  19502. form: "feral",
  19503. default: true
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Normal",
  19509. height: math.unit(15, "feet"),
  19510. form: "anthro"
  19511. },
  19512. {
  19513. name: "Casual Macro",
  19514. height: math.unit(120, "feet"),
  19515. form: "anthro"
  19516. },
  19517. {
  19518. name: "Macro",
  19519. height: math.unit(2150, "feet"),
  19520. default: true,
  19521. form: "anthro"
  19522. },
  19523. {
  19524. name: "Megamacro",
  19525. height: math.unit(8, "miles"),
  19526. form: "anthro"
  19527. },
  19528. {
  19529. name: "Galaxy Mom",
  19530. height: math.unit(6, "megalightyears"),
  19531. form: "anthro"
  19532. },
  19533. {
  19534. name: "Normal",
  19535. height: math.unit(35, "feet"),
  19536. form: "feral",
  19537. default: true
  19538. },
  19539. {
  19540. name: "Macro",
  19541. height: math.unit(300, "feet"),
  19542. form: "feral"
  19543. },
  19544. {
  19545. name: "Galaxy Mom",
  19546. height: math.unit(10, "megalightyears"),
  19547. form: "feral"
  19548. },
  19549. ],
  19550. {
  19551. "anthro": {
  19552. name: "Anthro",
  19553. default: true
  19554. },
  19555. "feral": {
  19556. name: "Feral"
  19557. }
  19558. }
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(6, "feet"),
  19565. weight: math.unit(170, "lb"),
  19566. name: "Front",
  19567. image: {
  19568. source: "./media/characters/kiro/front.svg",
  19569. extra: 1064 / 1012,
  19570. bottom: 0.052
  19571. }
  19572. },
  19573. },
  19574. [
  19575. {
  19576. name: "Micro",
  19577. height: math.unit(6, "inches")
  19578. },
  19579. {
  19580. name: "Normal",
  19581. height: math.unit(6, "feet"),
  19582. default: true
  19583. },
  19584. {
  19585. name: "Macro",
  19586. height: math.unit(72, "feet")
  19587. },
  19588. ]
  19589. ))
  19590. characterMakers.push(() => makeCharacter(
  19591. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19592. {
  19593. front: {
  19594. height: math.unit(5 + 9 / 12, "feet"),
  19595. weight: math.unit(175, "lb"),
  19596. name: "Front",
  19597. image: {
  19598. source: "./media/characters/irishfox/front.svg",
  19599. extra: 1912 / 1680,
  19600. bottom: 0.02
  19601. }
  19602. },
  19603. },
  19604. [
  19605. {
  19606. name: "Nano",
  19607. height: math.unit(1, "mm")
  19608. },
  19609. {
  19610. name: "Micro",
  19611. height: math.unit(2, "inches")
  19612. },
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(5 + 9 / 12, "feet"),
  19616. default: true
  19617. },
  19618. {
  19619. name: "Macro",
  19620. height: math.unit(45, "feet")
  19621. },
  19622. ]
  19623. ))
  19624. characterMakers.push(() => makeCharacter(
  19625. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19626. {
  19627. front: {
  19628. height: math.unit(6 + 1 / 12, "feet"),
  19629. weight: math.unit(75, "lb"),
  19630. name: "Front",
  19631. image: {
  19632. source: "./media/characters/aronai-sieyes/front.svg",
  19633. extra: 1532/1450,
  19634. bottom: 42/1574
  19635. }
  19636. },
  19637. side: {
  19638. height: math.unit(6 + 1 / 12, "feet"),
  19639. weight: math.unit(75, "lb"),
  19640. name: "Side",
  19641. image: {
  19642. source: "./media/characters/aronai-sieyes/side.svg",
  19643. extra: 1422/1365,
  19644. bottom: 148/1570
  19645. }
  19646. },
  19647. back: {
  19648. height: math.unit(6 + 1 / 12, "feet"),
  19649. weight: math.unit(75, "lb"),
  19650. name: "Back",
  19651. image: {
  19652. source: "./media/characters/aronai-sieyes/back.svg",
  19653. extra: 1526/1464,
  19654. bottom: 51/1577
  19655. }
  19656. },
  19657. dressed: {
  19658. height: math.unit(6 + 1 / 12, "feet"),
  19659. weight: math.unit(75, "lb"),
  19660. name: "Dressed",
  19661. image: {
  19662. source: "./media/characters/aronai-sieyes/dressed.svg",
  19663. extra: 1559/1483,
  19664. bottom: 39/1598
  19665. }
  19666. },
  19667. slit: {
  19668. height: math.unit(1.3, "feet"),
  19669. name: "Slit",
  19670. image: {
  19671. source: "./media/characters/aronai-sieyes/slit.svg"
  19672. }
  19673. },
  19674. slitSpread: {
  19675. height: math.unit(0.9, "feet"),
  19676. name: "Slit (Spread)",
  19677. image: {
  19678. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19679. }
  19680. },
  19681. rump: {
  19682. height: math.unit(1.3, "feet"),
  19683. name: "Rump",
  19684. image: {
  19685. source: "./media/characters/aronai-sieyes/rump.svg"
  19686. }
  19687. },
  19688. maw: {
  19689. height: math.unit(1.25, "feet"),
  19690. name: "Maw",
  19691. image: {
  19692. source: "./media/characters/aronai-sieyes/maw.svg"
  19693. }
  19694. },
  19695. feral: {
  19696. height: math.unit(18, "feet"),
  19697. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19698. name: "Feral",
  19699. image: {
  19700. source: "./media/characters/aronai-sieyes/feral.svg",
  19701. extra: 1530 / 1240,
  19702. bottom: 0.035
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Micro",
  19709. height: math.unit(2, "inches")
  19710. },
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(6 + 1 / 12, "feet"),
  19714. default: true
  19715. }
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19720. {
  19721. front: {
  19722. height: math.unit(12, "feet"),
  19723. weight: math.unit(410, "kg"),
  19724. name: "Front",
  19725. image: {
  19726. source: "./media/characters/xuna/front.svg",
  19727. extra: 2184 / 1980
  19728. }
  19729. },
  19730. side: {
  19731. height: math.unit(12, "feet"),
  19732. weight: math.unit(410, "kg"),
  19733. name: "Side",
  19734. image: {
  19735. source: "./media/characters/xuna/side.svg",
  19736. extra: 2184 / 1980
  19737. }
  19738. },
  19739. back: {
  19740. height: math.unit(12, "feet"),
  19741. weight: math.unit(410, "kg"),
  19742. name: "Back",
  19743. image: {
  19744. source: "./media/characters/xuna/back.svg",
  19745. extra: 2184 / 1980
  19746. }
  19747. },
  19748. },
  19749. [
  19750. {
  19751. name: "Nano glow",
  19752. height: math.unit(10, "nm")
  19753. },
  19754. {
  19755. name: "Micro floof",
  19756. height: math.unit(0.3, "m")
  19757. },
  19758. {
  19759. name: "Huggable softy boi",
  19760. height: math.unit(3.6576, "m"),
  19761. default: true
  19762. },
  19763. {
  19764. name: "Admirable floof",
  19765. height: math.unit(80, "meters")
  19766. },
  19767. {
  19768. name: "Gentle macro",
  19769. height: math.unit(300, "meters")
  19770. },
  19771. {
  19772. name: "Very careful floof",
  19773. height: math.unit(3200, "meters")
  19774. },
  19775. {
  19776. name: "The mega floof",
  19777. height: math.unit(36000, "meters")
  19778. },
  19779. {
  19780. name: "Giga-fur-Wicker",
  19781. height: math.unit(4800000, "meters")
  19782. },
  19783. {
  19784. name: "Licky world",
  19785. height: math.unit(20000000, "meters")
  19786. },
  19787. {
  19788. name: "Floofy cyan sun",
  19789. height: math.unit(1500000000, "meters")
  19790. },
  19791. {
  19792. name: "Milky Wicker",
  19793. height: math.unit(1000000000000000000000, "meters")
  19794. },
  19795. {
  19796. name: "The observing Wicker",
  19797. height: math.unit(999999999999999999999999999, "meters")
  19798. },
  19799. ]
  19800. ))
  19801. characterMakers.push(() => makeCharacter(
  19802. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19803. {
  19804. front: {
  19805. height: math.unit(5 + 9 / 12, "feet"),
  19806. weight: math.unit(150, "lb"),
  19807. name: "Front",
  19808. image: {
  19809. source: "./media/characters/arokha-sieyes/front.svg",
  19810. extra: 1425 / 1284,
  19811. bottom: 0.05
  19812. }
  19813. },
  19814. },
  19815. [
  19816. {
  19817. name: "Normal",
  19818. height: math.unit(5 + 9 / 12, "feet")
  19819. },
  19820. {
  19821. name: "Macro",
  19822. height: math.unit(30, "meters"),
  19823. default: true
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19829. {
  19830. front: {
  19831. height: math.unit(6, "feet"),
  19832. weight: math.unit(180, "lb"),
  19833. name: "Front",
  19834. image: {
  19835. source: "./media/characters/arokh-sieyes/front.svg",
  19836. extra: 1830 / 1769,
  19837. bottom: 0.01
  19838. }
  19839. },
  19840. },
  19841. [
  19842. {
  19843. name: "Normal",
  19844. height: math.unit(6, "feet")
  19845. },
  19846. {
  19847. name: "Macro",
  19848. height: math.unit(30, "meters"),
  19849. default: true
  19850. },
  19851. ]
  19852. ))
  19853. characterMakers.push(() => makeCharacter(
  19854. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19855. {
  19856. side: {
  19857. height: math.unit(13 + 1 / 12, "feet"),
  19858. weight: math.unit(8.5, "tonnes"),
  19859. name: "Side",
  19860. image: {
  19861. source: "./media/characters/goldeneye/side.svg",
  19862. extra: 1182 / 778,
  19863. bottom: 0.067
  19864. }
  19865. },
  19866. paw: {
  19867. height: math.unit(3.4, "feet"),
  19868. name: "Paw",
  19869. image: {
  19870. source: "./media/characters/goldeneye/paw.svg"
  19871. }
  19872. },
  19873. },
  19874. [
  19875. {
  19876. name: "Normal",
  19877. height: math.unit(13 + 1 / 12, "feet"),
  19878. default: true
  19879. },
  19880. ]
  19881. ))
  19882. characterMakers.push(() => makeCharacter(
  19883. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19884. {
  19885. front: {
  19886. height: math.unit(6 + 1 / 12, "feet"),
  19887. weight: math.unit(210, "lb"),
  19888. name: "Front",
  19889. image: {
  19890. source: "./media/characters/leonardo-lycheborne/front.svg",
  19891. extra: 776/723,
  19892. bottom: 34/810
  19893. }
  19894. },
  19895. side: {
  19896. height: math.unit(6 + 1 / 12, "feet"),
  19897. weight: math.unit(210, "lb"),
  19898. name: "Side",
  19899. image: {
  19900. source: "./media/characters/leonardo-lycheborne/side.svg",
  19901. extra: 780/728,
  19902. bottom: 12/792
  19903. }
  19904. },
  19905. back: {
  19906. height: math.unit(6 + 1 / 12, "feet"),
  19907. weight: math.unit(210, "lb"),
  19908. name: "Back",
  19909. image: {
  19910. source: "./media/characters/leonardo-lycheborne/back.svg",
  19911. extra: 775/721,
  19912. bottom: 17/792
  19913. }
  19914. },
  19915. hand: {
  19916. height: math.unit(1.08, "feet"),
  19917. name: "Hand",
  19918. image: {
  19919. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19920. }
  19921. },
  19922. foot: {
  19923. height: math.unit(1.32, "feet"),
  19924. name: "Foot",
  19925. image: {
  19926. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19927. }
  19928. },
  19929. maw: {
  19930. height: math.unit(1, "feet"),
  19931. name: "Maw",
  19932. image: {
  19933. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19934. }
  19935. },
  19936. were: {
  19937. height: math.unit(20, "feet"),
  19938. weight: math.unit(7800, "lb"),
  19939. name: "Were",
  19940. image: {
  19941. source: "./media/characters/leonardo-lycheborne/were.svg",
  19942. extra: 1224/1165,
  19943. bottom: 72/1296
  19944. }
  19945. },
  19946. feral: {
  19947. height: math.unit(7.5, "feet"),
  19948. weight: math.unit(600, "lb"),
  19949. name: "Feral",
  19950. image: {
  19951. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19952. extra: 797/702,
  19953. bottom: 139/936
  19954. }
  19955. },
  19956. taur: {
  19957. height: math.unit(11, "feet"),
  19958. weight: math.unit(3300, "lb"),
  19959. name: "Taur",
  19960. image: {
  19961. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19962. extra: 1271/1197,
  19963. bottom: 47/1318
  19964. }
  19965. },
  19966. barghest: {
  19967. height: math.unit(11, "feet"),
  19968. weight: math.unit(1300, "lb"),
  19969. name: "Barghest",
  19970. image: {
  19971. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19972. extra: 1291/1204,
  19973. bottom: 37/1328
  19974. }
  19975. },
  19976. dick: {
  19977. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19978. name: "Dick",
  19979. image: {
  19980. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19981. }
  19982. },
  19983. dickWere: {
  19984. height: math.unit((20) / 3.8, "feet"),
  19985. name: "Dick (Were)",
  19986. image: {
  19987. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19988. }
  19989. },
  19990. },
  19991. [
  19992. {
  19993. name: "Normal",
  19994. height: math.unit(6 + 1 / 12, "feet"),
  19995. default: true
  19996. },
  19997. ]
  19998. ))
  19999. characterMakers.push(() => makeCharacter(
  20000. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20001. {
  20002. front: {
  20003. height: math.unit(10, "feet"),
  20004. weight: math.unit(350, "lb"),
  20005. name: "Front",
  20006. image: {
  20007. source: "./media/characters/jet/front.svg",
  20008. extra: 2050 / 1980,
  20009. bottom: 0.013
  20010. }
  20011. },
  20012. back: {
  20013. height: math.unit(10, "feet"),
  20014. weight: math.unit(350, "lb"),
  20015. name: "Back",
  20016. image: {
  20017. source: "./media/characters/jet/back.svg",
  20018. extra: 2050 / 1980,
  20019. bottom: 0.013
  20020. }
  20021. },
  20022. },
  20023. [
  20024. {
  20025. name: "Micro",
  20026. height: math.unit(6, "inches")
  20027. },
  20028. {
  20029. name: "Normal",
  20030. height: math.unit(10, "feet"),
  20031. default: true
  20032. },
  20033. {
  20034. name: "Macro",
  20035. height: math.unit(100, "feet")
  20036. },
  20037. ]
  20038. ))
  20039. characterMakers.push(() => makeCharacter(
  20040. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20041. {
  20042. front: {
  20043. height: math.unit(15, "feet"),
  20044. weight: math.unit(2800, "lb"),
  20045. name: "Front",
  20046. image: {
  20047. source: "./media/characters/tanarath/front.svg",
  20048. extra: 2392 / 2220,
  20049. bottom: 0.03
  20050. }
  20051. },
  20052. back: {
  20053. height: math.unit(15, "feet"),
  20054. weight: math.unit(2800, "lb"),
  20055. name: "Back",
  20056. image: {
  20057. source: "./media/characters/tanarath/back.svg",
  20058. extra: 2392 / 2220,
  20059. bottom: 0.03
  20060. }
  20061. },
  20062. },
  20063. [
  20064. {
  20065. name: "Normal",
  20066. height: math.unit(15, "feet"),
  20067. default: true
  20068. },
  20069. ]
  20070. ))
  20071. characterMakers.push(() => makeCharacter(
  20072. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20073. {
  20074. front: {
  20075. height: math.unit(7 + 1 / 12, "feet"),
  20076. weight: math.unit(175, "lb"),
  20077. name: "Front",
  20078. image: {
  20079. source: "./media/characters/patty-cattybatty/front.svg",
  20080. extra: 908 / 874,
  20081. bottom: 0.025
  20082. }
  20083. },
  20084. },
  20085. [
  20086. {
  20087. name: "Micro",
  20088. height: math.unit(1, "inch")
  20089. },
  20090. {
  20091. name: "Normal",
  20092. height: math.unit(7 + 1 / 12, "feet")
  20093. },
  20094. {
  20095. name: "Mini Macro",
  20096. height: math.unit(155, "feet")
  20097. },
  20098. {
  20099. name: "Macro",
  20100. height: math.unit(1077, "feet")
  20101. },
  20102. {
  20103. name: "Mega Macro",
  20104. height: math.unit(47650, "feet"),
  20105. default: true
  20106. },
  20107. {
  20108. name: "Giga Macro",
  20109. height: math.unit(440, "miles")
  20110. },
  20111. {
  20112. name: "Tera Macro",
  20113. height: math.unit(8700, "miles")
  20114. },
  20115. {
  20116. name: "Planetary Macro",
  20117. height: math.unit(32700, "miles")
  20118. },
  20119. {
  20120. name: "Solar Macro",
  20121. height: math.unit(550000, "miles")
  20122. },
  20123. {
  20124. name: "Celestial Macro",
  20125. height: math.unit(2.5, "AU")
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20131. {
  20132. front: {
  20133. height: math.unit(4 + 5 / 12, "feet"),
  20134. weight: math.unit(90, "lb"),
  20135. name: "Front",
  20136. image: {
  20137. source: "./media/characters/cappu/front.svg",
  20138. extra: 1247 / 1152,
  20139. bottom: 0.012
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(4 + 5 / 12, "feet"),
  20147. default: true
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20153. {
  20154. frontDressed: {
  20155. height: math.unit(70, "cm"),
  20156. weight: math.unit(6, "kg"),
  20157. name: "Front (Dressed)",
  20158. image: {
  20159. source: "./media/characters/sebi/front-dressed.svg",
  20160. extra: 713.5 / 686.5,
  20161. bottom: 0.003
  20162. }
  20163. },
  20164. front: {
  20165. height: math.unit(70, "cm"),
  20166. weight: math.unit(5, "kg"),
  20167. name: "Front",
  20168. image: {
  20169. source: "./media/characters/sebi/front.svg",
  20170. extra: 713.5 / 686.5,
  20171. bottom: 0.003
  20172. }
  20173. }
  20174. },
  20175. [
  20176. {
  20177. name: "Normal",
  20178. height: math.unit(70, "cm"),
  20179. default: true
  20180. },
  20181. {
  20182. name: "Macro",
  20183. height: math.unit(8, "meters")
  20184. },
  20185. ]
  20186. ))
  20187. characterMakers.push(() => makeCharacter(
  20188. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20189. {
  20190. front: {
  20191. height: math.unit(6, "feet"),
  20192. weight: math.unit(150, "lb"),
  20193. name: "Front",
  20194. image: {
  20195. source: "./media/characters/typhek/front.svg",
  20196. extra: 1948 / 1929,
  20197. bottom: 0.025
  20198. }
  20199. },
  20200. side: {
  20201. height: math.unit(6, "feet"),
  20202. weight: math.unit(150, "lb"),
  20203. name: "Side",
  20204. image: {
  20205. source: "./media/characters/typhek/side.svg",
  20206. extra: 2034 / 2010,
  20207. bottom: 0.003
  20208. }
  20209. },
  20210. back: {
  20211. height: math.unit(6, "feet"),
  20212. weight: math.unit(150, "lb"),
  20213. name: "Back",
  20214. image: {
  20215. source: "./media/characters/typhek/back.svg",
  20216. extra: 2005 / 1978,
  20217. bottom: 0.004
  20218. }
  20219. },
  20220. palm: {
  20221. height: math.unit(1.2, "feet"),
  20222. name: "Palm",
  20223. image: {
  20224. source: "./media/characters/typhek/palm.svg"
  20225. }
  20226. },
  20227. fist: {
  20228. height: math.unit(1.1, "feet"),
  20229. name: "Fist",
  20230. image: {
  20231. source: "./media/characters/typhek/fist.svg"
  20232. }
  20233. },
  20234. foot: {
  20235. height: math.unit(1.57, "feet"),
  20236. name: "Foot",
  20237. image: {
  20238. source: "./media/characters/typhek/foot.svg"
  20239. }
  20240. },
  20241. sole: {
  20242. height: math.unit(2.05, "feet"),
  20243. name: "Sole",
  20244. image: {
  20245. source: "./media/characters/typhek/sole.svg"
  20246. }
  20247. },
  20248. },
  20249. [
  20250. {
  20251. name: "Macro",
  20252. height: math.unit(40, "stories"),
  20253. default: true
  20254. },
  20255. {
  20256. name: "Megamacro",
  20257. height: math.unit(1, "mile")
  20258. },
  20259. {
  20260. name: "Gigamacro",
  20261. height: math.unit(4000, "solarradii")
  20262. },
  20263. {
  20264. name: "Universal",
  20265. height: math.unit(1.1, "universes")
  20266. }
  20267. ]
  20268. ))
  20269. characterMakers.push(() => makeCharacter(
  20270. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20271. {
  20272. side: {
  20273. height: math.unit(5 + 7 / 12, "feet"),
  20274. weight: math.unit(150, "lb"),
  20275. name: "Side",
  20276. image: {
  20277. source: "./media/characters/kassy/side.svg",
  20278. extra: 1280 / 1225,
  20279. bottom: 0.002
  20280. }
  20281. },
  20282. front: {
  20283. height: math.unit(5 + 7 / 12, "feet"),
  20284. weight: math.unit(150, "lb"),
  20285. name: "Front",
  20286. image: {
  20287. source: "./media/characters/kassy/front.svg",
  20288. extra: 1280 / 1225,
  20289. bottom: 0.025
  20290. }
  20291. },
  20292. back: {
  20293. height: math.unit(5 + 7 / 12, "feet"),
  20294. weight: math.unit(150, "lb"),
  20295. name: "Back",
  20296. image: {
  20297. source: "./media/characters/kassy/back.svg",
  20298. extra: 1280 / 1225,
  20299. bottom: 0.002
  20300. }
  20301. },
  20302. foot: {
  20303. height: math.unit(1.266, "feet"),
  20304. name: "Foot",
  20305. image: {
  20306. source: "./media/characters/kassy/foot.svg"
  20307. }
  20308. },
  20309. },
  20310. [
  20311. {
  20312. name: "Normal",
  20313. height: math.unit(5 + 7 / 12, "feet")
  20314. },
  20315. {
  20316. name: "Macro",
  20317. height: math.unit(137, "feet"),
  20318. default: true
  20319. },
  20320. {
  20321. name: "Megamacro",
  20322. height: math.unit(1, "mile")
  20323. },
  20324. ]
  20325. ))
  20326. characterMakers.push(() => makeCharacter(
  20327. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20328. {
  20329. front: {
  20330. height: math.unit(6 + 1 / 12, "feet"),
  20331. weight: math.unit(200, "lb"),
  20332. name: "Front",
  20333. image: {
  20334. source: "./media/characters/neil/front.svg",
  20335. extra: 1326 / 1250,
  20336. bottom: 0.023
  20337. }
  20338. },
  20339. },
  20340. [
  20341. {
  20342. name: "Normal",
  20343. height: math.unit(6 + 1 / 12, "feet"),
  20344. default: true
  20345. },
  20346. {
  20347. name: "Macro",
  20348. height: math.unit(200, "feet")
  20349. },
  20350. ]
  20351. ))
  20352. characterMakers.push(() => makeCharacter(
  20353. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20354. {
  20355. front: {
  20356. height: math.unit(5 + 9 / 12, "feet"),
  20357. weight: math.unit(190, "lb"),
  20358. name: "Front",
  20359. image: {
  20360. source: "./media/characters/atticus/front.svg",
  20361. extra: 2934 / 2785,
  20362. bottom: 0.025
  20363. }
  20364. },
  20365. },
  20366. [
  20367. {
  20368. name: "Normal",
  20369. height: math.unit(5 + 9 / 12, "feet"),
  20370. default: true
  20371. },
  20372. {
  20373. name: "Macro",
  20374. height: math.unit(180, "feet")
  20375. },
  20376. ]
  20377. ))
  20378. characterMakers.push(() => makeCharacter(
  20379. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20380. {
  20381. side: {
  20382. height: math.unit(9, "feet"),
  20383. weight: math.unit(650, "lb"),
  20384. name: "Side",
  20385. image: {
  20386. source: "./media/characters/milo/side.svg",
  20387. extra: 2644 / 2310,
  20388. bottom: 0.032
  20389. }
  20390. },
  20391. },
  20392. [
  20393. {
  20394. name: "Normal",
  20395. height: math.unit(9, "feet"),
  20396. default: true
  20397. },
  20398. {
  20399. name: "Macro",
  20400. height: math.unit(300, "feet")
  20401. },
  20402. ]
  20403. ))
  20404. characterMakers.push(() => makeCharacter(
  20405. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20406. {
  20407. side: {
  20408. height: math.unit(8, "meters"),
  20409. weight: math.unit(90000, "kg"),
  20410. name: "Side",
  20411. image: {
  20412. source: "./media/characters/ijzer/side.svg",
  20413. extra: 2756 / 1600,
  20414. bottom: 0.01
  20415. }
  20416. },
  20417. },
  20418. [
  20419. {
  20420. name: "Small",
  20421. height: math.unit(3, "meters")
  20422. },
  20423. {
  20424. name: "Normal",
  20425. height: math.unit(8, "meters"),
  20426. default: true
  20427. },
  20428. {
  20429. name: "Normal+",
  20430. height: math.unit(10, "meters")
  20431. },
  20432. {
  20433. name: "Bigger",
  20434. height: math.unit(24, "meters")
  20435. },
  20436. {
  20437. name: "Huge",
  20438. height: math.unit(80, "meters")
  20439. },
  20440. ]
  20441. ))
  20442. characterMakers.push(() => makeCharacter(
  20443. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20444. {
  20445. front: {
  20446. height: math.unit(6 + 2 / 12, "feet"),
  20447. weight: math.unit(153, "lb"),
  20448. name: "Front",
  20449. image: {
  20450. source: "./media/characters/luca-cervicum/front.svg",
  20451. extra: 370 / 327,
  20452. bottom: 0.015
  20453. }
  20454. },
  20455. back: {
  20456. height: math.unit(6 + 2 / 12, "feet"),
  20457. weight: math.unit(153, "lb"),
  20458. name: "Back",
  20459. image: {
  20460. source: "./media/characters/luca-cervicum/back.svg",
  20461. extra: 367 / 333,
  20462. bottom: 0.005
  20463. }
  20464. },
  20465. frontGear: {
  20466. height: math.unit(6 + 2 / 12, "feet"),
  20467. weight: math.unit(173, "lb"),
  20468. name: "Front (Gear)",
  20469. image: {
  20470. source: "./media/characters/luca-cervicum/front-gear.svg",
  20471. extra: 377 / 333,
  20472. bottom: 0.006
  20473. }
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "Normal",
  20479. height: math.unit(6 + 2 / 12, "feet"),
  20480. default: true
  20481. },
  20482. ]
  20483. ))
  20484. characterMakers.push(() => makeCharacter(
  20485. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20486. {
  20487. front: {
  20488. height: math.unit(6 + 1 / 12, "feet"),
  20489. weight: math.unit(304, "lb"),
  20490. name: "Front",
  20491. image: {
  20492. source: "./media/characters/oliver/front.svg",
  20493. extra: 157 / 143,
  20494. bottom: 0.08
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(6 + 1 / 12, "feet"),
  20502. default: true
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20508. {
  20509. front: {
  20510. height: math.unit(5 + 7 / 12, "feet"),
  20511. weight: math.unit(140, "lb"),
  20512. name: "Front",
  20513. image: {
  20514. source: "./media/characters/shane/front.svg",
  20515. extra: 304 / 289,
  20516. bottom: 0.005
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(5 + 7 / 12, "feet"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20530. {
  20531. front: {
  20532. height: math.unit(5 + 9 / 12, "feet"),
  20533. weight: math.unit(178, "lb"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/shin/front.svg",
  20537. extra: 159 / 151,
  20538. bottom: 0.015
  20539. }
  20540. },
  20541. },
  20542. [
  20543. {
  20544. name: "Normal",
  20545. height: math.unit(5 + 9 / 12, "feet"),
  20546. default: true
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20552. {
  20553. front: {
  20554. height: math.unit(5 + 10 / 12, "feet"),
  20555. weight: math.unit(168, "lb"),
  20556. name: "Front",
  20557. image: {
  20558. source: "./media/characters/xerxes/front.svg",
  20559. extra: 282 / 260,
  20560. bottom: 0.045
  20561. }
  20562. },
  20563. },
  20564. [
  20565. {
  20566. name: "Normal",
  20567. height: math.unit(5 + 10 / 12, "feet"),
  20568. default: true
  20569. },
  20570. ]
  20571. ))
  20572. characterMakers.push(() => makeCharacter(
  20573. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20574. {
  20575. front: {
  20576. height: math.unit(6 + 7 / 12, "feet"),
  20577. weight: math.unit(208, "lb"),
  20578. name: "Front",
  20579. image: {
  20580. source: "./media/characters/chaska/front.svg",
  20581. extra: 332 / 319,
  20582. bottom: 0.015
  20583. }
  20584. },
  20585. },
  20586. [
  20587. {
  20588. name: "Normal",
  20589. height: math.unit(6 + 7 / 12, "feet"),
  20590. default: true
  20591. },
  20592. ]
  20593. ))
  20594. characterMakers.push(() => makeCharacter(
  20595. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20596. {
  20597. front: {
  20598. height: math.unit(5 + 8 / 12, "feet"),
  20599. weight: math.unit(208, "lb"),
  20600. name: "Front",
  20601. image: {
  20602. source: "./media/characters/enuk/front.svg",
  20603. extra: 437 / 406,
  20604. bottom: 0.02
  20605. }
  20606. },
  20607. },
  20608. [
  20609. {
  20610. name: "Normal",
  20611. height: math.unit(5 + 8 / 12, "feet"),
  20612. default: true
  20613. },
  20614. ]
  20615. ))
  20616. characterMakers.push(() => makeCharacter(
  20617. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20618. {
  20619. front: {
  20620. height: math.unit(5 + 10 / 12, "feet"),
  20621. weight: math.unit(252, "lb"),
  20622. name: "Front",
  20623. image: {
  20624. source: "./media/characters/bruun/front.svg",
  20625. extra: 197 / 187,
  20626. bottom: 0.012
  20627. }
  20628. },
  20629. },
  20630. [
  20631. {
  20632. name: "Normal",
  20633. height: math.unit(5 + 10 / 12, "feet"),
  20634. default: true
  20635. },
  20636. ]
  20637. ))
  20638. characterMakers.push(() => makeCharacter(
  20639. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20640. {
  20641. front: {
  20642. height: math.unit(6 + 10 / 12, "feet"),
  20643. weight: math.unit(255, "lb"),
  20644. name: "Front",
  20645. image: {
  20646. source: "./media/characters/alexeev/front.svg",
  20647. extra: 213 / 200,
  20648. bottom: 0.05
  20649. }
  20650. },
  20651. },
  20652. [
  20653. {
  20654. name: "Normal",
  20655. height: math.unit(6 + 10 / 12, "feet"),
  20656. default: true
  20657. },
  20658. ]
  20659. ))
  20660. characterMakers.push(() => makeCharacter(
  20661. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20662. {
  20663. front: {
  20664. height: math.unit(2 + 8 / 12, "feet"),
  20665. weight: math.unit(22, "lb"),
  20666. name: "Front",
  20667. image: {
  20668. source: "./media/characters/evelyn/front.svg",
  20669. extra: 208 / 180
  20670. }
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(2 + 8 / 12, "feet"),
  20677. default: true
  20678. },
  20679. ]
  20680. ))
  20681. characterMakers.push(() => makeCharacter(
  20682. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20683. {
  20684. front: {
  20685. height: math.unit(5 + 9 / 12, "feet"),
  20686. weight: math.unit(139, "lb"),
  20687. name: "Front",
  20688. image: {
  20689. source: "./media/characters/inca/front.svg",
  20690. extra: 294 / 291,
  20691. bottom: 0.03
  20692. }
  20693. },
  20694. },
  20695. [
  20696. {
  20697. name: "Normal",
  20698. height: math.unit(5 + 9 / 12, "feet"),
  20699. default: true
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20705. {
  20706. front: {
  20707. height: math.unit(6 + 3 / 12, "feet"),
  20708. weight: math.unit(185, "lb"),
  20709. name: "Front",
  20710. image: {
  20711. source: "./media/characters/mera/front.svg",
  20712. extra: 291 / 277,
  20713. bottom: 0.03
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(6 + 3 / 12, "feet"),
  20721. default: true
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(6 + 7 / 12, "feet"),
  20730. weight: math.unit(160, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/ceres/front.svg",
  20734. extra: 1023 / 950,
  20735. bottom: 0.027
  20736. }
  20737. },
  20738. back: {
  20739. height: math.unit(6 + 7 / 12, "feet"),
  20740. weight: math.unit(160, "lb"),
  20741. name: "Back",
  20742. image: {
  20743. source: "./media/characters/ceres/back.svg",
  20744. extra: 1023 / 950
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Normal",
  20751. height: math.unit(6 + 7 / 12, "feet"),
  20752. default: true
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(5 + 10 / 12, "feet"),
  20761. weight: math.unit(150, "lb"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/kris/front.svg",
  20765. extra: 885 / 803,
  20766. bottom: 0.03
  20767. }
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Normal",
  20773. height: math.unit(5 + 10 / 12, "feet"),
  20774. default: true
  20775. },
  20776. ]
  20777. ))
  20778. characterMakers.push(() => makeCharacter(
  20779. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20780. {
  20781. front: {
  20782. height: math.unit(7, "feet"),
  20783. weight: math.unit(120, "kg"),
  20784. name: "Front",
  20785. image: {
  20786. source: "./media/characters/taluthus/front.svg",
  20787. extra: 903 / 833,
  20788. bottom: 0.015
  20789. }
  20790. },
  20791. },
  20792. [
  20793. {
  20794. name: "Normal",
  20795. height: math.unit(7, "feet"),
  20796. default: true
  20797. },
  20798. {
  20799. name: "Macro",
  20800. height: math.unit(300, "feet")
  20801. },
  20802. ]
  20803. ))
  20804. characterMakers.push(() => makeCharacter(
  20805. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20806. {
  20807. front: {
  20808. height: math.unit(5 + 9 / 12, "feet"),
  20809. weight: math.unit(145, "lb"),
  20810. name: "Front",
  20811. image: {
  20812. source: "./media/characters/dawn/front.svg",
  20813. extra: 2094 / 2016,
  20814. bottom: 0.025
  20815. }
  20816. },
  20817. back: {
  20818. height: math.unit(5 + 9 / 12, "feet"),
  20819. weight: math.unit(160, "lb"),
  20820. name: "Back",
  20821. image: {
  20822. source: "./media/characters/dawn/back.svg",
  20823. extra: 2112 / 2080,
  20824. bottom: 0.005
  20825. }
  20826. },
  20827. },
  20828. [
  20829. {
  20830. name: "Normal",
  20831. height: math.unit(6 + 7 / 12, "feet"),
  20832. default: true
  20833. },
  20834. ]
  20835. ))
  20836. characterMakers.push(() => makeCharacter(
  20837. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20838. {
  20839. anthro: {
  20840. height: math.unit(8 + 3 / 12, "feet"),
  20841. weight: math.unit(450, "lb"),
  20842. name: "Anthro",
  20843. image: {
  20844. source: "./media/characters/arador/anthro.svg",
  20845. extra: 1835 / 1718,
  20846. bottom: 0.025
  20847. }
  20848. },
  20849. feral: {
  20850. height: math.unit(4, "feet"),
  20851. weight: math.unit(200, "lb"),
  20852. name: "Feral",
  20853. image: {
  20854. source: "./media/characters/arador/feral.svg",
  20855. extra: 1683 / 1514,
  20856. bottom: 0.07
  20857. }
  20858. },
  20859. },
  20860. [
  20861. {
  20862. name: "Normal",
  20863. height: math.unit(8 + 3 / 12, "feet")
  20864. },
  20865. {
  20866. name: "Macro",
  20867. height: math.unit(82.5, "feet"),
  20868. default: true
  20869. },
  20870. ]
  20871. ))
  20872. characterMakers.push(() => makeCharacter(
  20873. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20874. {
  20875. front: {
  20876. height: math.unit(5 + 10 / 12, "feet"),
  20877. weight: math.unit(125, "lb"),
  20878. name: "Front",
  20879. image: {
  20880. source: "./media/characters/dharsi/front.svg",
  20881. extra: 716 / 630,
  20882. bottom: 0.035
  20883. }
  20884. },
  20885. },
  20886. [
  20887. {
  20888. name: "Nano",
  20889. height: math.unit(100, "nm")
  20890. },
  20891. {
  20892. name: "Micro",
  20893. height: math.unit(2, "inches")
  20894. },
  20895. {
  20896. name: "Normal",
  20897. height: math.unit(5 + 10 / 12, "feet"),
  20898. default: true
  20899. },
  20900. {
  20901. name: "Macro",
  20902. height: math.unit(1000, "feet")
  20903. },
  20904. {
  20905. name: "Megamacro",
  20906. height: math.unit(10, "miles")
  20907. },
  20908. {
  20909. name: "Gigamacro",
  20910. height: math.unit(3000, "miles")
  20911. },
  20912. {
  20913. name: "Teramacro",
  20914. height: math.unit(500000, "miles")
  20915. },
  20916. {
  20917. name: "Teramacro+",
  20918. height: math.unit(30, "galaxies")
  20919. },
  20920. ]
  20921. ))
  20922. characterMakers.push(() => makeCharacter(
  20923. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20924. {
  20925. front: {
  20926. height: math.unit(6, "feet"),
  20927. weight: math.unit(150, "lb"),
  20928. name: "Front",
  20929. image: {
  20930. source: "./media/characters/deathy/front.svg",
  20931. extra: 1552 / 1463,
  20932. bottom: 0.025
  20933. }
  20934. },
  20935. side: {
  20936. height: math.unit(6, "feet"),
  20937. weight: math.unit(150, "lb"),
  20938. name: "Side",
  20939. image: {
  20940. source: "./media/characters/deathy/side.svg",
  20941. extra: 1604 / 1455,
  20942. bottom: 0.025
  20943. }
  20944. },
  20945. back: {
  20946. height: math.unit(6, "feet"),
  20947. weight: math.unit(150, "lb"),
  20948. name: "Back",
  20949. image: {
  20950. source: "./media/characters/deathy/back.svg",
  20951. extra: 1580 / 1463,
  20952. bottom: 0.005
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Micro",
  20959. height: math.unit(5, "millimeters")
  20960. },
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(6 + 5 / 12, "feet"),
  20964. default: true
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20970. {
  20971. front: {
  20972. height: math.unit(16, "feet"),
  20973. weight: math.unit(4000, "lb"),
  20974. name: "Front",
  20975. image: {
  20976. source: "./media/characters/juniper/front.svg",
  20977. bottom: 0.04
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(16, "feet"),
  20985. default: true
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20991. {
  20992. front: {
  20993. height: math.unit(6, "feet"),
  20994. weight: math.unit(150, "lb"),
  20995. name: "Front",
  20996. image: {
  20997. source: "./media/characters/hipster/front.svg",
  20998. extra: 1312 / 1209,
  20999. bottom: 0.025
  21000. }
  21001. },
  21002. back: {
  21003. height: math.unit(6, "feet"),
  21004. weight: math.unit(150, "lb"),
  21005. name: "Back",
  21006. image: {
  21007. source: "./media/characters/hipster/back.svg",
  21008. extra: 1281 / 1196,
  21009. bottom: 0.01
  21010. }
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Micro",
  21016. height: math.unit(1, "mm")
  21017. },
  21018. {
  21019. name: "Normal",
  21020. height: math.unit(4, "inches"),
  21021. default: true
  21022. },
  21023. {
  21024. name: "Macro",
  21025. height: math.unit(500, "feet")
  21026. },
  21027. {
  21028. name: "Megamacro",
  21029. height: math.unit(1000, "miles")
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21035. {
  21036. front: {
  21037. height: math.unit(6, "feet"),
  21038. weight: math.unit(150, "lb"),
  21039. name: "Front",
  21040. image: {
  21041. source: "./media/characters/tendirmuldr/front.svg",
  21042. extra: 1878 / 1772,
  21043. bottom: 0.015
  21044. }
  21045. },
  21046. },
  21047. [
  21048. {
  21049. name: "Megamacro",
  21050. height: math.unit(1500, "miles"),
  21051. default: true
  21052. },
  21053. ]
  21054. ))
  21055. characterMakers.push(() => makeCharacter(
  21056. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21057. {
  21058. front: {
  21059. height: math.unit(14, "feet"),
  21060. weight: math.unit(12000, "lb"),
  21061. name: "Front",
  21062. image: {
  21063. source: "./media/characters/mort/front.svg",
  21064. extra: 365 / 318,
  21065. bottom: 0.01
  21066. }
  21067. },
  21068. side: {
  21069. height: math.unit(14, "feet"),
  21070. weight: math.unit(12000, "lb"),
  21071. name: "Side",
  21072. image: {
  21073. source: "./media/characters/mort/side.svg",
  21074. extra: 365 / 318,
  21075. bottom: 0.052
  21076. },
  21077. default: true
  21078. },
  21079. back: {
  21080. height: math.unit(14, "feet"),
  21081. weight: math.unit(12000, "lb"),
  21082. name: "Back",
  21083. image: {
  21084. source: "./media/characters/mort/back.svg",
  21085. extra: 371 / 332,
  21086. bottom: 0.18
  21087. }
  21088. },
  21089. },
  21090. [
  21091. {
  21092. name: "Normal",
  21093. height: math.unit(14, "feet"),
  21094. default: true
  21095. },
  21096. ]
  21097. ))
  21098. characterMakers.push(() => makeCharacter(
  21099. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21100. {
  21101. front: {
  21102. height: math.unit(8, "feet"),
  21103. weight: math.unit(1, "ton"),
  21104. name: "Front",
  21105. image: {
  21106. source: "./media/characters/lycoa/front.svg",
  21107. extra: 1836/1728,
  21108. bottom: 81/1917
  21109. }
  21110. },
  21111. back: {
  21112. height: math.unit(8, "feet"),
  21113. weight: math.unit(1, "ton"),
  21114. name: "Back",
  21115. image: {
  21116. source: "./media/characters/lycoa/back.svg",
  21117. extra: 1785/1720,
  21118. bottom: 91/1876
  21119. }
  21120. },
  21121. head: {
  21122. height: math.unit(1.6243, "feet"),
  21123. name: "Head",
  21124. image: {
  21125. source: "./media/characters/lycoa/head.svg",
  21126. extra: 1011/782,
  21127. bottom: 0/1011
  21128. }
  21129. },
  21130. tailmaw: {
  21131. height: math.unit(1.9, "feet"),
  21132. name: "Tailmaw",
  21133. image: {
  21134. source: "./media/characters/lycoa/tailmaw.svg"
  21135. }
  21136. },
  21137. tentacles: {
  21138. height: math.unit(2.1, "feet"),
  21139. name: "Tentacles",
  21140. image: {
  21141. source: "./media/characters/lycoa/tentacles.svg"
  21142. }
  21143. },
  21144. dick: {
  21145. height: math.unit(1.73, "feet"),
  21146. name: "Dick",
  21147. image: {
  21148. source: "./media/characters/lycoa/dick.svg"
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(8, "feet"),
  21156. default: true
  21157. },
  21158. {
  21159. name: "Macro",
  21160. height: math.unit(30, "feet")
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21166. {
  21167. front: {
  21168. height: math.unit(4 + 2 / 12, "feet"),
  21169. weight: math.unit(70, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/naldara/front.svg",
  21173. extra: 1664/1387,
  21174. bottom: 81/1745
  21175. },
  21176. form: "anthro",
  21177. default: true
  21178. },
  21179. naga: {
  21180. height: math.unit(20, "feet"),
  21181. weight: math.unit(15000, "kg"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/naldara/naga.svg",
  21185. extra: 1590/1396,
  21186. bottom: 285/1875
  21187. },
  21188. form: "naga",
  21189. default: true
  21190. },
  21191. },
  21192. [
  21193. {
  21194. name: "Normal",
  21195. height: math.unit(4 + 2 / 12, "feet"),
  21196. form: "anthro",
  21197. default: true
  21198. },
  21199. {
  21200. name: "Normal",
  21201. height: math.unit(20, "feet"),
  21202. form: "naga",
  21203. default: true
  21204. },
  21205. ],
  21206. {
  21207. "anthro": {
  21208. name: "Anthro",
  21209. default: true
  21210. },
  21211. "naga": {
  21212. name: "Naga"
  21213. }
  21214. }
  21215. ))
  21216. characterMakers.push(() => makeCharacter(
  21217. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21218. {
  21219. front: {
  21220. height: math.unit(13 + 7 / 12, "feet"),
  21221. weight: math.unit(1500, "lb"),
  21222. name: "Front",
  21223. image: {
  21224. source: "./media/characters/briar/front.svg",
  21225. extra: 1223/1157,
  21226. bottom: 123/1346
  21227. }
  21228. },
  21229. },
  21230. [
  21231. {
  21232. name: "Normal",
  21233. height: math.unit(13 + 7 / 12, "feet"),
  21234. default: true
  21235. },
  21236. ]
  21237. ))
  21238. characterMakers.push(() => makeCharacter(
  21239. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21240. {
  21241. side: {
  21242. height: math.unit(16, "feet"),
  21243. weight: math.unit(500, "lb"),
  21244. name: "Side",
  21245. image: {
  21246. source: "./media/characters/vanguard/side.svg",
  21247. extra: 1022/914,
  21248. bottom: 30/1052
  21249. }
  21250. },
  21251. sideAlt: {
  21252. height: math.unit(10, "feet"),
  21253. weight: math.unit(500, "lb"),
  21254. name: "Side (Alt)",
  21255. image: {
  21256. source: "./media/characters/vanguard/side-alt.svg",
  21257. extra: 502 / 425,
  21258. bottom: 0.087
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(17.71, "feet"),
  21266. default: true
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(7.5, "feet"),
  21275. weight: math.unit(2, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/artemis/work-safe-front.svg",
  21279. extra: 1192 / 1075,
  21280. bottom: 0.07
  21281. },
  21282. form: "work-safe",
  21283. default: true
  21284. },
  21285. frontNsfw: {
  21286. height: math.unit(7.5, "feet"),
  21287. weight: math.unit(2, "lb"),
  21288. name: "Front",
  21289. image: {
  21290. source: "./media/characters/artemis/calibrating-front.svg",
  21291. extra: 1192 / 1075,
  21292. bottom: 0.07
  21293. },
  21294. form: "calibrating",
  21295. default: true
  21296. },
  21297. frontNsfwer: {
  21298. height: math.unit(7.5, "feet"),
  21299. weight: math.unit(2, "lb"),
  21300. name: "Front",
  21301. image: {
  21302. source: "./media/characters/artemis/oversize-load-front.svg",
  21303. extra: 1192 / 1075,
  21304. bottom: 0.07
  21305. },
  21306. form: "oversize-load",
  21307. default: true
  21308. },
  21309. side: {
  21310. height: math.unit(7.5, "feet"),
  21311. weight: math.unit(2, "lb"),
  21312. name: "Side",
  21313. image: {
  21314. source: "./media/characters/artemis/work-safe-side.svg",
  21315. extra: 1192 / 1075,
  21316. bottom: 0.07
  21317. },
  21318. form: "work-safe"
  21319. },
  21320. sideNsfw: {
  21321. height: math.unit(7.5, "feet"),
  21322. weight: math.unit(2, "lb"),
  21323. name: "Side",
  21324. image: {
  21325. source: "./media/characters/artemis/calibrating-side.svg",
  21326. extra: 1192 / 1075,
  21327. bottom: 0.07
  21328. },
  21329. form: "calibrating"
  21330. },
  21331. sideNsfwer: {
  21332. height: math.unit(7.5, "feet"),
  21333. weight: math.unit(2, "lb"),
  21334. name: "Side",
  21335. image: {
  21336. source: "./media/characters/artemis/oversize-load-side.svg",
  21337. extra: 1192 / 1075,
  21338. bottom: 0.07
  21339. },
  21340. form: "oversize-load"
  21341. },
  21342. maw: {
  21343. height: math.unit(1.1, "feet"),
  21344. name: "Maw",
  21345. image: {
  21346. source: "./media/characters/artemis/maw.svg"
  21347. },
  21348. form: "work-safe"
  21349. },
  21350. stomach: {
  21351. height: math.unit(0.95, "feet"),
  21352. name: "Stomach",
  21353. image: {
  21354. source: "./media/characters/artemis/stomach.svg"
  21355. },
  21356. form: "work-safe"
  21357. },
  21358. dickCanine: {
  21359. height: math.unit(1, "feet"),
  21360. name: "Dick (Canine)",
  21361. image: {
  21362. source: "./media/characters/artemis/dick-canine.svg"
  21363. },
  21364. form: "calibrating"
  21365. },
  21366. dickEquine: {
  21367. height: math.unit(0.85, "feet"),
  21368. name: "Dick (Equine)",
  21369. image: {
  21370. source: "./media/characters/artemis/dick-equine.svg"
  21371. },
  21372. form: "calibrating"
  21373. },
  21374. dickExotic: {
  21375. height: math.unit(0.85, "feet"),
  21376. name: "Dick (Exotic)",
  21377. image: {
  21378. source: "./media/characters/artemis/dick-exotic.svg"
  21379. },
  21380. form: "calibrating"
  21381. },
  21382. dickCanineBigger: {
  21383. height: math.unit(1 * 1.33, "feet"),
  21384. name: "Dick (Canine)",
  21385. image: {
  21386. source: "./media/characters/artemis/dick-canine.svg"
  21387. },
  21388. form: "oversize-load"
  21389. },
  21390. dickEquineBigger: {
  21391. height: math.unit(0.85 * 1.33, "feet"),
  21392. name: "Dick (Equine)",
  21393. image: {
  21394. source: "./media/characters/artemis/dick-equine.svg"
  21395. },
  21396. form: "oversize-load"
  21397. },
  21398. dickExoticBigger: {
  21399. height: math.unit(0.85 * 1.33, "feet"),
  21400. name: "Dick (Exotic)",
  21401. image: {
  21402. source: "./media/characters/artemis/dick-exotic.svg"
  21403. },
  21404. form: "oversize-load"
  21405. },
  21406. },
  21407. [
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(7.5, "feet"),
  21411. form: "work-safe",
  21412. default: true
  21413. },
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(7.5, "feet"),
  21417. form: "calibrating",
  21418. default: true
  21419. },
  21420. {
  21421. name: "Normal",
  21422. height: math.unit(7.5, "feet"),
  21423. form: "oversize-load",
  21424. default: true
  21425. },
  21426. {
  21427. name: "Enlarged",
  21428. height: math.unit(12, "feet"),
  21429. form: "work-safe",
  21430. },
  21431. {
  21432. name: "Enlarged",
  21433. height: math.unit(12, "feet"),
  21434. form: "calibrating",
  21435. },
  21436. {
  21437. name: "Enlarged",
  21438. height: math.unit(12, "feet"),
  21439. form: "oversize-load",
  21440. },
  21441. ],
  21442. {
  21443. "work-safe": {
  21444. name: "Work-Safe",
  21445. default: true
  21446. },
  21447. "calibrating": {
  21448. name: "Calibrating"
  21449. },
  21450. "oversize-load": {
  21451. name: "Oversize Load"
  21452. }
  21453. }
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21457. {
  21458. front: {
  21459. height: math.unit(5 + 3 / 12, "feet"),
  21460. weight: math.unit(160, "lb"),
  21461. name: "Front",
  21462. image: {
  21463. source: "./media/characters/kira/front.svg",
  21464. extra: 906 / 786,
  21465. bottom: 0.01
  21466. }
  21467. },
  21468. back: {
  21469. height: math.unit(5 + 3 / 12, "feet"),
  21470. weight: math.unit(160, "lb"),
  21471. name: "Back",
  21472. image: {
  21473. source: "./media/characters/kira/back.svg",
  21474. extra: 882 / 757,
  21475. bottom: 0.005
  21476. }
  21477. },
  21478. frontDressed: {
  21479. height: math.unit(5 + 3 / 12, "feet"),
  21480. weight: math.unit(160, "lb"),
  21481. name: "Front (Dressed)",
  21482. image: {
  21483. source: "./media/characters/kira/front-dressed.svg",
  21484. extra: 906 / 786,
  21485. bottom: 0.01
  21486. }
  21487. },
  21488. beans: {
  21489. height: math.unit(0.92, "feet"),
  21490. name: "Beans",
  21491. image: {
  21492. source: "./media/characters/kira/beans.svg"
  21493. }
  21494. },
  21495. },
  21496. [
  21497. {
  21498. name: "Normal",
  21499. height: math.unit(5 + 3 / 12, "feet"),
  21500. default: true
  21501. },
  21502. ]
  21503. ))
  21504. characterMakers.push(() => makeCharacter(
  21505. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21506. {
  21507. front: {
  21508. height: math.unit(5 + 4 / 12, "feet"),
  21509. weight: math.unit(145, "lb"),
  21510. name: "Front",
  21511. image: {
  21512. source: "./media/characters/scramble/front.svg",
  21513. extra: 763 / 727,
  21514. bottom: 0.05
  21515. }
  21516. },
  21517. back: {
  21518. height: math.unit(5 + 4 / 12, "feet"),
  21519. weight: math.unit(145, "lb"),
  21520. name: "Back",
  21521. image: {
  21522. source: "./media/characters/scramble/back.svg",
  21523. extra: 826 / 737,
  21524. bottom: 0.002
  21525. }
  21526. },
  21527. },
  21528. [
  21529. {
  21530. name: "Normal",
  21531. height: math.unit(5 + 4 / 12, "feet"),
  21532. default: true
  21533. },
  21534. ]
  21535. ))
  21536. characterMakers.push(() => makeCharacter(
  21537. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21538. {
  21539. side: {
  21540. height: math.unit(6 + 2 / 12, "feet"),
  21541. weight: math.unit(190, "lb"),
  21542. name: "Side",
  21543. image: {
  21544. source: "./media/characters/biscuit/side.svg",
  21545. extra: 858 / 791,
  21546. bottom: 0.044
  21547. }
  21548. },
  21549. },
  21550. [
  21551. {
  21552. name: "Normal",
  21553. height: math.unit(6 + 2 / 12, "feet"),
  21554. default: true
  21555. },
  21556. ]
  21557. ))
  21558. characterMakers.push(() => makeCharacter(
  21559. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21560. {
  21561. front: {
  21562. height: math.unit(5 + 2 / 12, "feet"),
  21563. weight: math.unit(120, "lb"),
  21564. name: "Front",
  21565. image: {
  21566. source: "./media/characters/poffin/front.svg",
  21567. extra: 786 / 680,
  21568. bottom: 0.005
  21569. }
  21570. },
  21571. },
  21572. [
  21573. {
  21574. name: "Normal",
  21575. height: math.unit(5 + 2 / 12, "feet"),
  21576. default: true
  21577. },
  21578. ]
  21579. ))
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21582. {
  21583. front: {
  21584. height: math.unit(6 + 3 / 12, "feet"),
  21585. weight: math.unit(519, "lb"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/dhari/front.svg",
  21589. extra: 1048 / 946,
  21590. bottom: 0.015
  21591. }
  21592. },
  21593. back: {
  21594. height: math.unit(6 + 3 / 12, "feet"),
  21595. weight: math.unit(519, "lb"),
  21596. name: "Back",
  21597. image: {
  21598. source: "./media/characters/dhari/back.svg",
  21599. extra: 1048 / 931,
  21600. bottom: 0.005
  21601. }
  21602. },
  21603. frontDressed: {
  21604. height: math.unit(6 + 3 / 12, "feet"),
  21605. weight: math.unit(519, "lb"),
  21606. name: "Front (Dressed)",
  21607. image: {
  21608. source: "./media/characters/dhari/front-dressed.svg",
  21609. extra: 1713 / 1546,
  21610. bottom: 0.02
  21611. }
  21612. },
  21613. backDressed: {
  21614. height: math.unit(6 + 3 / 12, "feet"),
  21615. weight: math.unit(519, "lb"),
  21616. name: "Back (Dressed)",
  21617. image: {
  21618. source: "./media/characters/dhari/back-dressed.svg",
  21619. extra: 1699 / 1537,
  21620. bottom: 0.01
  21621. }
  21622. },
  21623. maw: {
  21624. height: math.unit(0.95, "feet"),
  21625. name: "Maw",
  21626. image: {
  21627. source: "./media/characters/dhari/maw.svg"
  21628. }
  21629. },
  21630. wereFront: {
  21631. height: math.unit(12 + 8 / 12, "feet"),
  21632. weight: math.unit(4000, "lb"),
  21633. name: "Front (Were)",
  21634. image: {
  21635. source: "./media/characters/dhari/were-front.svg",
  21636. extra: 1065 / 969,
  21637. bottom: 0.015
  21638. }
  21639. },
  21640. wereBack: {
  21641. height: math.unit(12 + 8 / 12, "feet"),
  21642. weight: math.unit(4000, "lb"),
  21643. name: "Back (Were)",
  21644. image: {
  21645. source: "./media/characters/dhari/were-back.svg",
  21646. extra: 1065 / 969,
  21647. bottom: 0.012
  21648. }
  21649. },
  21650. wereMaw: {
  21651. height: math.unit(0.625, "meters"),
  21652. name: "Maw (Were)",
  21653. image: {
  21654. source: "./media/characters/dhari/were-maw.svg"
  21655. }
  21656. },
  21657. },
  21658. [
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(6 + 3 / 12, "feet"),
  21662. default: true
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21668. {
  21669. anthro: {
  21670. height: math.unit(5 + 7 / 12, "feet"),
  21671. weight: math.unit(175, "lb"),
  21672. name: "Anthro",
  21673. image: {
  21674. source: "./media/characters/rena-dyne/anthro.svg",
  21675. extra: 1849 / 1785,
  21676. bottom: 0.005
  21677. }
  21678. },
  21679. taur: {
  21680. height: math.unit(15 + 6 / 12, "feet"),
  21681. weight: math.unit(8000, "lb"),
  21682. name: "Taur",
  21683. image: {
  21684. source: "./media/characters/rena-dyne/taur.svg",
  21685. extra: 2315 / 2234,
  21686. bottom: 0.033
  21687. }
  21688. },
  21689. },
  21690. [
  21691. {
  21692. name: "Normal",
  21693. height: math.unit(5 + 7 / 12, "feet"),
  21694. default: true
  21695. },
  21696. ]
  21697. ))
  21698. characterMakers.push(() => makeCharacter(
  21699. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21700. {
  21701. front: {
  21702. height: math.unit(8, "feet"),
  21703. weight: math.unit(600, "lb"),
  21704. name: "Front",
  21705. image: {
  21706. source: "./media/characters/weremeep/front.svg",
  21707. extra: 967 / 862,
  21708. bottom: 0.01
  21709. }
  21710. },
  21711. },
  21712. [
  21713. {
  21714. name: "Normal",
  21715. height: math.unit(8, "feet"),
  21716. default: true
  21717. },
  21718. {
  21719. name: "Lorg",
  21720. height: math.unit(12, "feet")
  21721. },
  21722. {
  21723. name: "Oh Lawd She Comin'",
  21724. height: math.unit(20, "feet")
  21725. },
  21726. ]
  21727. ))
  21728. characterMakers.push(() => makeCharacter(
  21729. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21730. {
  21731. front: {
  21732. height: math.unit(4, "feet"),
  21733. weight: math.unit(90, "lb"),
  21734. name: "Front",
  21735. image: {
  21736. source: "./media/characters/reza/front.svg",
  21737. extra: 1183 / 1111,
  21738. bottom: 0.017
  21739. }
  21740. },
  21741. back: {
  21742. height: math.unit(4, "feet"),
  21743. weight: math.unit(90, "lb"),
  21744. name: "Back",
  21745. image: {
  21746. source: "./media/characters/reza/back.svg",
  21747. extra: 1183 / 1111,
  21748. bottom: 0.01
  21749. }
  21750. },
  21751. drake: {
  21752. height: math.unit(30, "feet"),
  21753. weight: math.unit(246960, "lb"),
  21754. name: "Drake",
  21755. image: {
  21756. source: "./media/characters/reza/drake.svg",
  21757. extra: 2350 / 2024,
  21758. bottom: 60.7 / 2403
  21759. }
  21760. },
  21761. },
  21762. [
  21763. {
  21764. name: "Normal",
  21765. height: math.unit(4, "feet"),
  21766. default: true
  21767. },
  21768. ]
  21769. ))
  21770. characterMakers.push(() => makeCharacter(
  21771. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21772. {
  21773. side: {
  21774. height: math.unit(15, "feet"),
  21775. weight: math.unit(14, "tons"),
  21776. name: "Side",
  21777. image: {
  21778. source: "./media/characters/athea/side.svg",
  21779. extra: 960 / 540,
  21780. bottom: 0.003
  21781. }
  21782. },
  21783. sitting: {
  21784. height: math.unit(6 * 2.85, "feet"),
  21785. weight: math.unit(14, "tons"),
  21786. name: "Sitting",
  21787. image: {
  21788. source: "./media/characters/athea/sitting.svg",
  21789. extra: 621 / 581,
  21790. bottom: 0.075
  21791. }
  21792. },
  21793. maw: {
  21794. height: math.unit(7.59498031496063, "feet"),
  21795. name: "Maw",
  21796. image: {
  21797. source: "./media/characters/athea/maw.svg"
  21798. }
  21799. },
  21800. },
  21801. [
  21802. {
  21803. name: "Lap Cat",
  21804. height: math.unit(2.5, "feet")
  21805. },
  21806. {
  21807. name: "Minimacro",
  21808. height: math.unit(15, "feet"),
  21809. default: true
  21810. },
  21811. {
  21812. name: "Macro",
  21813. height: math.unit(120, "feet")
  21814. },
  21815. {
  21816. name: "Macro+",
  21817. height: math.unit(640, "feet")
  21818. },
  21819. {
  21820. name: "Colossus",
  21821. height: math.unit(2.2, "miles")
  21822. },
  21823. ]
  21824. ))
  21825. characterMakers.push(() => makeCharacter(
  21826. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21827. {
  21828. front: {
  21829. height: math.unit(8 + 8 / 12, "feet"),
  21830. weight: math.unit(130, "kg"),
  21831. name: "Front",
  21832. image: {
  21833. source: "./media/characters/seroko/front.svg",
  21834. extra: 1385 / 1280,
  21835. bottom: 0.025
  21836. }
  21837. },
  21838. back: {
  21839. height: math.unit(8 + 8 / 12, "feet"),
  21840. weight: math.unit(130, "kg"),
  21841. name: "Back",
  21842. image: {
  21843. source: "./media/characters/seroko/back.svg",
  21844. extra: 1369 / 1238,
  21845. bottom: 0.018
  21846. }
  21847. },
  21848. frontDressed: {
  21849. height: math.unit(8 + 8 / 12, "feet"),
  21850. weight: math.unit(130, "kg"),
  21851. name: "Front (Dressed)",
  21852. image: {
  21853. source: "./media/characters/seroko/front-dressed.svg",
  21854. extra: 1366 / 1275,
  21855. bottom: 0.03
  21856. }
  21857. },
  21858. },
  21859. [
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(8 + 8 / 12, "feet"),
  21863. default: true
  21864. },
  21865. ]
  21866. ))
  21867. characterMakers.push(() => makeCharacter(
  21868. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21869. {
  21870. front: {
  21871. height: math.unit(5.5, "feet"),
  21872. weight: math.unit(160, "lb"),
  21873. name: "Front",
  21874. image: {
  21875. source: "./media/characters/quatzi/front.svg",
  21876. extra: 2346 / 2242,
  21877. bottom: 0.015
  21878. }
  21879. },
  21880. },
  21881. [
  21882. {
  21883. name: "Normal",
  21884. height: math.unit(5.5, "feet"),
  21885. default: true
  21886. },
  21887. {
  21888. name: "Big",
  21889. height: math.unit(7.7, "feet")
  21890. },
  21891. ]
  21892. ))
  21893. characterMakers.push(() => makeCharacter(
  21894. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21895. {
  21896. front: {
  21897. height: math.unit(5 + 11 / 12, "feet"),
  21898. weight: math.unit(180, "lb"),
  21899. name: "Front",
  21900. image: {
  21901. source: "./media/characters/sen/front.svg",
  21902. extra: 1321 / 1254,
  21903. bottom: 0.015
  21904. }
  21905. },
  21906. side: {
  21907. height: math.unit(5 + 11 / 12, "feet"),
  21908. weight: math.unit(180, "lb"),
  21909. name: "Side",
  21910. image: {
  21911. source: "./media/characters/sen/side.svg",
  21912. extra: 1321 / 1254,
  21913. bottom: 0.007
  21914. }
  21915. },
  21916. back: {
  21917. height: math.unit(5 + 11 / 12, "feet"),
  21918. weight: math.unit(180, "lb"),
  21919. name: "Back",
  21920. image: {
  21921. source: "./media/characters/sen/back.svg",
  21922. extra: 1321 / 1254
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(5 + 11 / 12, "feet"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21936. {
  21937. front: {
  21938. height: math.unit(166.6, "cm"),
  21939. weight: math.unit(66.6, "kg"),
  21940. name: "Front",
  21941. image: {
  21942. source: "./media/characters/fruity/front.svg",
  21943. extra: 1510 / 1386,
  21944. bottom: 0.04
  21945. }
  21946. },
  21947. back: {
  21948. height: math.unit(166.6, "cm"),
  21949. weight: math.unit(66.6, "lb"),
  21950. name: "Back",
  21951. image: {
  21952. source: "./media/characters/fruity/back.svg",
  21953. extra: 1563 / 1435,
  21954. bottom: 0.005
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Normal",
  21961. height: math.unit(166.6, "cm"),
  21962. default: true
  21963. },
  21964. {
  21965. name: "Demonic",
  21966. height: math.unit(166.6, "feet")
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21972. {
  21973. side: {
  21974. height: math.unit(10, "feet"),
  21975. weight: math.unit(500, "lb"),
  21976. name: "Side",
  21977. image: {
  21978. source: "./media/characters/zost/side.svg",
  21979. extra: 2870/2533,
  21980. bottom: 252/3122
  21981. }
  21982. },
  21983. mawFront: {
  21984. height: math.unit(1.08, "meters"),
  21985. name: "Maw (Front)",
  21986. image: {
  21987. source: "./media/characters/zost/maw-front.svg"
  21988. }
  21989. },
  21990. mawSide: {
  21991. height: math.unit(2.66, "feet"),
  21992. name: "Maw (Side)",
  21993. image: {
  21994. source: "./media/characters/zost/maw-side.svg"
  21995. }
  21996. },
  21997. wingspan: {
  21998. height: math.unit(7.4, "feet"),
  21999. name: "Wingspan",
  22000. image: {
  22001. source: "./media/characters/zost/wingspan.svg"
  22002. }
  22003. },
  22004. },
  22005. [
  22006. {
  22007. name: "Normal",
  22008. height: math.unit(10, "feet"),
  22009. default: true
  22010. },
  22011. ]
  22012. ))
  22013. characterMakers.push(() => makeCharacter(
  22014. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22015. {
  22016. front: {
  22017. height: math.unit(5 + 4 / 12, "feet"),
  22018. weight: math.unit(120, "lb"),
  22019. name: "Front",
  22020. image: {
  22021. source: "./media/characters/luci/front.svg",
  22022. extra: 1985 / 1884,
  22023. bottom: 0.04
  22024. }
  22025. },
  22026. back: {
  22027. height: math.unit(5 + 4 / 12, "feet"),
  22028. weight: math.unit(120, "lb"),
  22029. name: "Back",
  22030. image: {
  22031. source: "./media/characters/luci/back.svg",
  22032. extra: 1892 / 1791,
  22033. bottom: 0.002
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Normal",
  22040. height: math.unit(5 + 4 / 12, "feet"),
  22041. default: true
  22042. },
  22043. ]
  22044. ))
  22045. characterMakers.push(() => makeCharacter(
  22046. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22047. {
  22048. front: {
  22049. height: math.unit(1500, "feet"),
  22050. weight: math.unit(3.8e6, "tons"),
  22051. name: "Front",
  22052. image: {
  22053. source: "./media/characters/2th/front.svg",
  22054. extra: 3489 / 3350,
  22055. bottom: 0.1
  22056. }
  22057. },
  22058. foot: {
  22059. height: math.unit(461, "feet"),
  22060. name: "Foot",
  22061. image: {
  22062. source: "./media/characters/2th/foot.svg"
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "\"Micro\"",
  22069. height: math.unit(15 + 7 / 12, "feet")
  22070. },
  22071. {
  22072. name: "Normal",
  22073. height: math.unit(1500, "feet"),
  22074. default: true
  22075. },
  22076. {
  22077. name: "Macro",
  22078. height: math.unit(5000, "feet")
  22079. },
  22080. {
  22081. name: "Megamacro",
  22082. height: math.unit(15, "miles")
  22083. },
  22084. {
  22085. name: "Gigamacro",
  22086. height: math.unit(4000, "miles")
  22087. },
  22088. {
  22089. name: "Galactic",
  22090. height: math.unit(50, "AU")
  22091. },
  22092. ]
  22093. ))
  22094. characterMakers.push(() => makeCharacter(
  22095. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22096. {
  22097. front: {
  22098. height: math.unit(5 + 6 / 12, "feet"),
  22099. weight: math.unit(220, "lb"),
  22100. name: "Front",
  22101. image: {
  22102. source: "./media/characters/amethyst/front.svg",
  22103. extra: 2078 / 2040,
  22104. bottom: 0.045
  22105. }
  22106. },
  22107. back: {
  22108. height: math.unit(5 + 6 / 12, "feet"),
  22109. weight: math.unit(220, "lb"),
  22110. name: "Back",
  22111. image: {
  22112. source: "./media/characters/amethyst/back.svg",
  22113. extra: 2021 / 1989,
  22114. bottom: 0.02
  22115. }
  22116. },
  22117. },
  22118. [
  22119. {
  22120. name: "Normal",
  22121. height: math.unit(5 + 6 / 12, "feet"),
  22122. default: true
  22123. },
  22124. ]
  22125. ))
  22126. characterMakers.push(() => makeCharacter(
  22127. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22128. {
  22129. front: {
  22130. height: math.unit(4 + 11 / 12, "feet"),
  22131. weight: math.unit(120, "lb"),
  22132. name: "Front",
  22133. image: {
  22134. source: "./media/characters/yumi-akiyama/front.svg",
  22135. extra: 1327 / 1235,
  22136. bottom: 0.02
  22137. }
  22138. },
  22139. back: {
  22140. height: math.unit(4 + 11 / 12, "feet"),
  22141. weight: math.unit(120, "lb"),
  22142. name: "Back",
  22143. image: {
  22144. source: "./media/characters/yumi-akiyama/back.svg",
  22145. extra: 1287 / 1245,
  22146. bottom: 0.002
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Galactic",
  22153. height: math.unit(50, "galaxies"),
  22154. default: true
  22155. },
  22156. {
  22157. name: "Universal",
  22158. height: math.unit(100, "universes")
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22164. {
  22165. front: {
  22166. height: math.unit(8, "feet"),
  22167. weight: math.unit(500, "lb"),
  22168. name: "Front",
  22169. image: {
  22170. source: "./media/characters/rifter-yrmori/front.svg",
  22171. extra: 1180 / 1125,
  22172. bottom: 0.02
  22173. }
  22174. },
  22175. back: {
  22176. height: math.unit(8, "feet"),
  22177. weight: math.unit(500, "lb"),
  22178. name: "Back",
  22179. image: {
  22180. source: "./media/characters/rifter-yrmori/back.svg",
  22181. extra: 1190 / 1145,
  22182. bottom: 0.001
  22183. }
  22184. },
  22185. wings: {
  22186. height: math.unit(7.75, "feet"),
  22187. weight: math.unit(500, "lb"),
  22188. name: "Wings",
  22189. image: {
  22190. source: "./media/characters/rifter-yrmori/wings.svg",
  22191. extra: 1357 / 1285
  22192. }
  22193. },
  22194. maw: {
  22195. height: math.unit(0.8, "feet"),
  22196. name: "Maw",
  22197. image: {
  22198. source: "./media/characters/rifter-yrmori/maw.svg"
  22199. }
  22200. },
  22201. mawfront: {
  22202. height: math.unit(1.45, "feet"),
  22203. name: "Maw (Front)",
  22204. image: {
  22205. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22206. }
  22207. },
  22208. },
  22209. [
  22210. {
  22211. name: "Normal",
  22212. height: math.unit(8, "feet"),
  22213. default: true
  22214. },
  22215. {
  22216. name: "Macro",
  22217. height: math.unit(42, "meters")
  22218. },
  22219. ]
  22220. ))
  22221. characterMakers.push(() => makeCharacter(
  22222. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22223. {
  22224. were: {
  22225. height: math.unit(25 + 6 / 12, "feet"),
  22226. weight: math.unit(10000, "lb"),
  22227. name: "Were",
  22228. image: {
  22229. source: "./media/characters/tahajin/were.svg",
  22230. extra: 801 / 770,
  22231. bottom: 0.042
  22232. }
  22233. },
  22234. aquatic: {
  22235. height: math.unit(6 + 4 / 12, "feet"),
  22236. weight: math.unit(160, "lb"),
  22237. name: "Aquatic",
  22238. image: {
  22239. source: "./media/characters/tahajin/aquatic.svg",
  22240. extra: 572 / 542,
  22241. bottom: 0.04
  22242. }
  22243. },
  22244. chow: {
  22245. height: math.unit(8 + 11 / 12, "feet"),
  22246. weight: math.unit(450, "lb"),
  22247. name: "Chow",
  22248. image: {
  22249. source: "./media/characters/tahajin/chow.svg",
  22250. extra: 660 / 640,
  22251. bottom: 0.015
  22252. }
  22253. },
  22254. demiNaga: {
  22255. height: math.unit(6 + 8 / 12, "feet"),
  22256. weight: math.unit(300, "lb"),
  22257. name: "Demi Naga",
  22258. image: {
  22259. source: "./media/characters/tahajin/demi-naga.svg",
  22260. extra: 643 / 615,
  22261. bottom: 0.1
  22262. }
  22263. },
  22264. data: {
  22265. height: math.unit(5, "inches"),
  22266. weight: math.unit(0.1, "lb"),
  22267. name: "Data",
  22268. image: {
  22269. source: "./media/characters/tahajin/data.svg"
  22270. }
  22271. },
  22272. fluu: {
  22273. height: math.unit(5 + 7 / 12, "feet"),
  22274. weight: math.unit(140, "lb"),
  22275. name: "Fluu",
  22276. image: {
  22277. source: "./media/characters/tahajin/fluu.svg",
  22278. extra: 628 / 592,
  22279. bottom: 0.02
  22280. }
  22281. },
  22282. starWarrior: {
  22283. height: math.unit(4 + 5 / 12, "feet"),
  22284. weight: math.unit(50, "lb"),
  22285. name: "Star Warrior",
  22286. image: {
  22287. source: "./media/characters/tahajin/star-warrior.svg"
  22288. }
  22289. },
  22290. },
  22291. [
  22292. {
  22293. name: "Normal",
  22294. height: math.unit(25 + 6 / 12, "feet"),
  22295. default: true
  22296. },
  22297. ]
  22298. ))
  22299. characterMakers.push(() => makeCharacter(
  22300. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22301. {
  22302. front: {
  22303. height: math.unit(8, "feet"),
  22304. weight: math.unit(350, "lb"),
  22305. name: "Front",
  22306. image: {
  22307. source: "./media/characters/gabira/front.svg",
  22308. extra: 608 / 580,
  22309. bottom: 0.03
  22310. }
  22311. },
  22312. back: {
  22313. height: math.unit(8, "feet"),
  22314. weight: math.unit(350, "lb"),
  22315. name: "Back",
  22316. image: {
  22317. source: "./media/characters/gabira/back.svg",
  22318. extra: 608 / 580,
  22319. bottom: 0.03
  22320. }
  22321. },
  22322. },
  22323. [
  22324. {
  22325. name: "Normal",
  22326. height: math.unit(8, "feet"),
  22327. default: true
  22328. },
  22329. ]
  22330. ))
  22331. characterMakers.push(() => makeCharacter(
  22332. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22333. {
  22334. front: {
  22335. height: math.unit(5 + 3 / 12, "feet"),
  22336. weight: math.unit(137, "lb"),
  22337. name: "Front",
  22338. image: {
  22339. source: "./media/characters/sasha-katraine/front.svg",
  22340. extra: 1745/1694,
  22341. bottom: 37/1782
  22342. }
  22343. },
  22344. back: {
  22345. height: math.unit(5 + 3 / 12, "feet"),
  22346. weight: math.unit(137, "lb"),
  22347. name: "Back",
  22348. image: {
  22349. source: "./media/characters/sasha-katraine/back.svg",
  22350. extra: 1776/1699,
  22351. bottom: 26/1802
  22352. }
  22353. },
  22354. },
  22355. [
  22356. {
  22357. name: "Micro",
  22358. height: math.unit(5, "inches")
  22359. },
  22360. {
  22361. name: "Normal",
  22362. height: math.unit(5 + 3 / 12, "feet"),
  22363. default: true
  22364. },
  22365. ]
  22366. ))
  22367. characterMakers.push(() => makeCharacter(
  22368. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22369. {
  22370. side: {
  22371. height: math.unit(4, "inches"),
  22372. weight: math.unit(200, "grams"),
  22373. name: "Side",
  22374. image: {
  22375. source: "./media/characters/der/side.svg",
  22376. extra: 719 / 400,
  22377. bottom: 30.6 / 749.9187
  22378. }
  22379. },
  22380. },
  22381. [
  22382. {
  22383. name: "Micro",
  22384. height: math.unit(4, "inches"),
  22385. default: true
  22386. },
  22387. ]
  22388. ))
  22389. characterMakers.push(() => makeCharacter(
  22390. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22391. {
  22392. side: {
  22393. height: math.unit(30, "meters"),
  22394. weight: math.unit(700, "tonnes"),
  22395. name: "Side",
  22396. image: {
  22397. source: "./media/characters/fixerdragon/side.svg",
  22398. extra: (1293.0514 - 116.03) / 1106.86,
  22399. bottom: 116.03 / 1293.0514
  22400. }
  22401. },
  22402. },
  22403. [
  22404. {
  22405. name: "Planck",
  22406. height: math.unit(1.6e-35, "meters")
  22407. },
  22408. {
  22409. name: "Micro",
  22410. height: math.unit(0.4, "meters")
  22411. },
  22412. {
  22413. name: "Normal",
  22414. height: math.unit(30, "meters"),
  22415. default: true
  22416. },
  22417. {
  22418. name: "Megamacro",
  22419. height: math.unit(1.2, "megameters")
  22420. },
  22421. {
  22422. name: "Teramacro",
  22423. height: math.unit(130, "terameters")
  22424. },
  22425. {
  22426. name: "Yottamacro",
  22427. height: math.unit(6200, "yottameters")
  22428. },
  22429. ]
  22430. ));
  22431. characterMakers.push(() => makeCharacter(
  22432. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22433. {
  22434. front: {
  22435. height: math.unit(8, "feet"),
  22436. weight: math.unit(250, "lb"),
  22437. name: "Front",
  22438. image: {
  22439. source: "./media/characters/kite/front.svg",
  22440. extra: 2796 / 2659,
  22441. bottom: 0.002
  22442. }
  22443. },
  22444. },
  22445. [
  22446. {
  22447. name: "Normal",
  22448. height: math.unit(8, "feet"),
  22449. default: true
  22450. },
  22451. {
  22452. name: "Macro",
  22453. height: math.unit(360, "feet")
  22454. },
  22455. {
  22456. name: "Megamacro",
  22457. height: math.unit(1500, "feet")
  22458. },
  22459. ]
  22460. ))
  22461. characterMakers.push(() => makeCharacter(
  22462. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22463. {
  22464. front: {
  22465. height: math.unit(5 + 11/12, "feet"),
  22466. weight: math.unit(170, "lb"),
  22467. name: "Front",
  22468. image: {
  22469. source: "./media/characters/poojawa-vynar/front.svg",
  22470. extra: 1735/1585,
  22471. bottom: 96/1831
  22472. }
  22473. },
  22474. back: {
  22475. height: math.unit(5 + 11/12, "feet"),
  22476. weight: math.unit(170, "lb"),
  22477. name: "Back",
  22478. image: {
  22479. source: "./media/characters/poojawa-vynar/back.svg",
  22480. extra: 1749/1607,
  22481. bottom: 28/1777
  22482. }
  22483. },
  22484. male: {
  22485. height: math.unit(5 + 11/12, "feet"),
  22486. weight: math.unit(170, "lb"),
  22487. name: "Male",
  22488. image: {
  22489. source: "./media/characters/poojawa-vynar/male.svg",
  22490. extra: 1855/1713,
  22491. bottom: 63/1918
  22492. }
  22493. },
  22494. taur: {
  22495. height: math.unit(5 + 11/12, "feet"),
  22496. weight: math.unit(170, "lb"),
  22497. name: "Taur",
  22498. image: {
  22499. source: "./media/characters/poojawa-vynar/taur.svg",
  22500. extra: 1151/1059,
  22501. bottom: 356/1507
  22502. }
  22503. },
  22504. frontDressed: {
  22505. height: math.unit(5 + 11/12, "feet"),
  22506. weight: math.unit(170, "lb"),
  22507. name: "Front (Dressed)",
  22508. image: {
  22509. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22510. extra: 1735/1585,
  22511. bottom: 96/1831
  22512. }
  22513. },
  22514. backDressed: {
  22515. height: math.unit(5 + 11/12, "feet"),
  22516. weight: math.unit(170, "lb"),
  22517. name: "Back (Dressed)",
  22518. image: {
  22519. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22520. extra: 1749/1607,
  22521. bottom: 28/1777
  22522. }
  22523. },
  22524. maleDressed: {
  22525. height: math.unit(5 + 11/12, "feet"),
  22526. weight: math.unit(170, "lb"),
  22527. name: "Male (Dressed)",
  22528. image: {
  22529. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22530. extra: 1855/1713,
  22531. bottom: 63/1918
  22532. }
  22533. },
  22534. taurDressed: {
  22535. height: math.unit(5 + 11/12, "feet"),
  22536. weight: math.unit(170, "lb"),
  22537. name: "Taur (Dressed)",
  22538. image: {
  22539. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22540. extra: 1151/1059,
  22541. bottom: 356/1507
  22542. }
  22543. },
  22544. maw: {
  22545. height: math.unit(1.46, "feet"),
  22546. name: "Maw",
  22547. image: {
  22548. source: "./media/characters/poojawa-vynar/maw.svg"
  22549. }
  22550. },
  22551. head: {
  22552. height: math.unit(2.34, "feet"),
  22553. name: "Head",
  22554. image: {
  22555. source: "./media/characters/poojawa-vynar/head.svg"
  22556. }
  22557. },
  22558. paw: {
  22559. height: math.unit(1.61, "feet"),
  22560. name: "Paw",
  22561. image: {
  22562. source: "./media/characters/poojawa-vynar/paw.svg"
  22563. }
  22564. },
  22565. pawToering: {
  22566. height: math.unit(1.72, "feet"),
  22567. name: "Paw (Toering)",
  22568. image: {
  22569. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22570. }
  22571. },
  22572. toering: {
  22573. height: math.unit(2.9, "inches"),
  22574. name: "Toering",
  22575. image: {
  22576. source: "./media/characters/poojawa-vynar/toering.svg"
  22577. }
  22578. },
  22579. shaft: {
  22580. height: math.unit(0.625, "feet"),
  22581. name: "Shaft",
  22582. image: {
  22583. source: "./media/characters/poojawa-vynar/shaft.svg"
  22584. }
  22585. },
  22586. spade: {
  22587. height: math.unit(0.42, "feet"),
  22588. name: "Spade",
  22589. image: {
  22590. source: "./media/characters/poojawa-vynar/spade.svg"
  22591. }
  22592. },
  22593. },
  22594. [
  22595. {
  22596. name: "Shortstack",
  22597. height: math.unit(4, "feet")
  22598. },
  22599. {
  22600. name: "Normal",
  22601. height: math.unit(5 + 11 / 12, "feet"),
  22602. default: true
  22603. },
  22604. {
  22605. name: "Tauric",
  22606. height: math.unit(4, "meters")
  22607. },
  22608. ]
  22609. ))
  22610. characterMakers.push(() => makeCharacter(
  22611. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22612. {
  22613. front: {
  22614. height: math.unit(293, "meters"),
  22615. weight: math.unit(70400, "tons"),
  22616. name: "Front",
  22617. image: {
  22618. source: "./media/characters/violette/front.svg",
  22619. extra: 1227 / 1180,
  22620. bottom: 0.005
  22621. }
  22622. },
  22623. back: {
  22624. height: math.unit(293, "meters"),
  22625. weight: math.unit(70400, "tons"),
  22626. name: "Back",
  22627. image: {
  22628. source: "./media/characters/violette/back.svg",
  22629. extra: 1227 / 1180,
  22630. bottom: 0.005
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Macro",
  22637. height: math.unit(293, "meters"),
  22638. default: true
  22639. },
  22640. ]
  22641. ))
  22642. characterMakers.push(() => makeCharacter(
  22643. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22644. {
  22645. front: {
  22646. height: math.unit(1050, "feet"),
  22647. weight: math.unit(200000, "tons"),
  22648. name: "Front",
  22649. image: {
  22650. source: "./media/characters/alessandra/front.svg",
  22651. extra: 960 / 912,
  22652. bottom: 0.06
  22653. }
  22654. },
  22655. },
  22656. [
  22657. {
  22658. name: "Macro",
  22659. height: math.unit(1050, "feet")
  22660. },
  22661. {
  22662. name: "Macro+",
  22663. height: math.unit(900, "meters"),
  22664. default: true
  22665. },
  22666. ]
  22667. ))
  22668. characterMakers.push(() => makeCharacter(
  22669. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22670. {
  22671. front: {
  22672. height: math.unit(5, "feet"),
  22673. weight: math.unit(187, "lb"),
  22674. name: "Front",
  22675. image: {
  22676. source: "./media/characters/person/front.svg",
  22677. extra: 3087 / 2945,
  22678. bottom: 91 / 3181
  22679. }
  22680. },
  22681. },
  22682. [
  22683. {
  22684. name: "Micro",
  22685. height: math.unit(3, "inches")
  22686. },
  22687. {
  22688. name: "Normal",
  22689. height: math.unit(5, "feet"),
  22690. default: true
  22691. },
  22692. {
  22693. name: "Macro",
  22694. height: math.unit(90, "feet")
  22695. },
  22696. {
  22697. name: "Max Size",
  22698. height: math.unit(280, "feet")
  22699. },
  22700. ]
  22701. ))
  22702. characterMakers.push(() => makeCharacter(
  22703. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22704. {
  22705. front: {
  22706. height: math.unit(4.5, "meters"),
  22707. weight: math.unit(3200, "lb"),
  22708. name: "Front",
  22709. image: {
  22710. source: "./media/characters/ty/front.svg",
  22711. extra: 1038 / 960,
  22712. bottom: 31.156 / 1068
  22713. }
  22714. },
  22715. back: {
  22716. height: math.unit(4.5, "meters"),
  22717. weight: math.unit(3200, "lb"),
  22718. name: "Back",
  22719. image: {
  22720. source: "./media/characters/ty/back.svg",
  22721. extra: 1044 / 966,
  22722. bottom: 7.48 / 1049
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(4.5, "meters"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22736. {
  22737. front: {
  22738. height: math.unit(5 + 4 / 12, "feet"),
  22739. weight: math.unit(115, "lb"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/rocky/front.svg",
  22743. extra: 1012 / 975,
  22744. bottom: 54 / 1066
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Normal",
  22751. height: math.unit(5 + 4 / 12, "feet"),
  22752. default: true
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22758. {
  22759. upright: {
  22760. height: math.unit(6, "meters"),
  22761. weight: math.unit(4000, "kg"),
  22762. name: "Upright",
  22763. image: {
  22764. source: "./media/characters/ruin/upright.svg",
  22765. extra: 668 / 661,
  22766. bottom: 42 / 799.8396
  22767. }
  22768. },
  22769. },
  22770. [
  22771. {
  22772. name: "Normal",
  22773. height: math.unit(6, "meters"),
  22774. default: true
  22775. },
  22776. ]
  22777. ))
  22778. characterMakers.push(() => makeCharacter(
  22779. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22780. {
  22781. front: {
  22782. height: math.unit(5, "feet"),
  22783. weight: math.unit(106, "lb"),
  22784. name: "Front",
  22785. image: {
  22786. source: "./media/characters/robin/front.svg",
  22787. extra: 862 / 799,
  22788. bottom: 42.4 / 914.8856
  22789. }
  22790. },
  22791. },
  22792. [
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(5, "feet"),
  22796. default: true
  22797. },
  22798. ]
  22799. ))
  22800. characterMakers.push(() => makeCharacter(
  22801. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22802. {
  22803. side: {
  22804. height: math.unit(3, "feet"),
  22805. weight: math.unit(225, "lb"),
  22806. name: "Side",
  22807. image: {
  22808. source: "./media/characters/saian/side.svg",
  22809. extra: 566 / 356,
  22810. bottom: 79.7 / 643
  22811. }
  22812. },
  22813. maw: {
  22814. height: math.unit(2.85, "feet"),
  22815. name: "Maw",
  22816. image: {
  22817. source: "./media/characters/saian/maw.svg"
  22818. }
  22819. },
  22820. },
  22821. [
  22822. {
  22823. name: "Normal",
  22824. height: math.unit(3, "feet"),
  22825. default: true
  22826. },
  22827. ]
  22828. ))
  22829. characterMakers.push(() => makeCharacter(
  22830. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22831. {
  22832. side: {
  22833. height: math.unit(8, "feet"),
  22834. weight: math.unit(300, "lb"),
  22835. name: "Side",
  22836. image: {
  22837. source: "./media/characters/equus-silvermane/side.svg",
  22838. extra: 2176 / 2050,
  22839. bottom: 65.7 / 2245
  22840. }
  22841. },
  22842. front: {
  22843. height: math.unit(8, "feet"),
  22844. weight: math.unit(300, "lb"),
  22845. name: "Front",
  22846. image: {
  22847. source: "./media/characters/equus-silvermane/front.svg",
  22848. extra: 4633 / 4400,
  22849. bottom: 71.3 / 4706.915
  22850. }
  22851. },
  22852. sideStepping: {
  22853. height: math.unit(8, "feet"),
  22854. weight: math.unit(300, "lb"),
  22855. name: "Side (Stepping)",
  22856. image: {
  22857. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22858. extra: 1968 / 1860,
  22859. bottom: 16.4 / 1989
  22860. }
  22861. },
  22862. },
  22863. [
  22864. {
  22865. name: "Normal",
  22866. height: math.unit(8, "feet")
  22867. },
  22868. {
  22869. name: "Minimacro",
  22870. height: math.unit(75, "feet"),
  22871. default: true
  22872. },
  22873. {
  22874. name: "Macro",
  22875. height: math.unit(150, "feet")
  22876. },
  22877. {
  22878. name: "Macro+",
  22879. height: math.unit(1000, "feet")
  22880. },
  22881. {
  22882. name: "Megamacro",
  22883. height: math.unit(1, "mile")
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22889. {
  22890. side: {
  22891. height: math.unit(20, "feet"),
  22892. weight: math.unit(30000, "kg"),
  22893. name: "Side",
  22894. image: {
  22895. source: "./media/characters/windar/side.svg",
  22896. extra: 1491 / 1248,
  22897. bottom: 82.56 / 1568
  22898. }
  22899. },
  22900. },
  22901. [
  22902. {
  22903. name: "Normal",
  22904. height: math.unit(20, "feet"),
  22905. default: true
  22906. },
  22907. ]
  22908. ))
  22909. characterMakers.push(() => makeCharacter(
  22910. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22911. {
  22912. side: {
  22913. height: math.unit(15.66, "feet"),
  22914. weight: math.unit(150, "lb"),
  22915. name: "Side",
  22916. image: {
  22917. source: "./media/characters/melody/side.svg",
  22918. extra: 1097 / 944,
  22919. bottom: 11.8 / 1109
  22920. }
  22921. },
  22922. sideOutfit: {
  22923. height: math.unit(15.66, "feet"),
  22924. weight: math.unit(150, "lb"),
  22925. name: "Side (Outfit)",
  22926. image: {
  22927. source: "./media/characters/melody/side-outfit.svg",
  22928. extra: 1097 / 944,
  22929. bottom: 11.8 / 1109
  22930. }
  22931. },
  22932. },
  22933. [
  22934. {
  22935. name: "Normal",
  22936. height: math.unit(15.66, "feet"),
  22937. default: true
  22938. },
  22939. ]
  22940. ))
  22941. characterMakers.push(() => makeCharacter(
  22942. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22943. {
  22944. front: {
  22945. height: math.unit(8, "feet"),
  22946. weight: math.unit(325, "lb"),
  22947. name: "Front",
  22948. image: {
  22949. source: "./media/characters/windera/front.svg",
  22950. extra: 3180 / 2845,
  22951. bottom: 178 / 3365
  22952. }
  22953. },
  22954. },
  22955. [
  22956. {
  22957. name: "Normal",
  22958. height: math.unit(8, "feet"),
  22959. default: true
  22960. },
  22961. ]
  22962. ))
  22963. characterMakers.push(() => makeCharacter(
  22964. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22965. {
  22966. front: {
  22967. height: math.unit(28.75, "feet"),
  22968. weight: math.unit(2000, "kg"),
  22969. name: "Front",
  22970. image: {
  22971. source: "./media/characters/sonear/front.svg",
  22972. extra: 1041.1 / 964.9,
  22973. bottom: 53.7 / 1096.6
  22974. }
  22975. },
  22976. },
  22977. [
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(28.75, "feet"),
  22981. default: true
  22982. },
  22983. ]
  22984. ))
  22985. characterMakers.push(() => makeCharacter(
  22986. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22987. {
  22988. side: {
  22989. height: math.unit(25.5, "feet"),
  22990. weight: math.unit(23000, "kg"),
  22991. name: "Side",
  22992. image: {
  22993. source: "./media/characters/kanara/side.svg"
  22994. }
  22995. },
  22996. },
  22997. [
  22998. {
  22999. name: "Normal",
  23000. height: math.unit(25.5, "feet"),
  23001. default: true
  23002. },
  23003. ]
  23004. ))
  23005. characterMakers.push(() => makeCharacter(
  23006. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23007. {
  23008. side: {
  23009. height: math.unit(10, "feet"),
  23010. weight: math.unit(1000, "kg"),
  23011. name: "Side",
  23012. image: {
  23013. source: "./media/characters/ereus/side.svg",
  23014. extra: 1157 / 959,
  23015. bottom: 153 / 1312.5
  23016. }
  23017. },
  23018. },
  23019. [
  23020. {
  23021. name: "Normal",
  23022. height: math.unit(10, "feet"),
  23023. default: true
  23024. },
  23025. ]
  23026. ))
  23027. characterMakers.push(() => makeCharacter(
  23028. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23029. {
  23030. side: {
  23031. height: math.unit(4.5, "feet"),
  23032. weight: math.unit(500, "lb"),
  23033. name: "Side",
  23034. image: {
  23035. source: "./media/characters/e-ter/side.svg",
  23036. extra: 1550 / 1248,
  23037. bottom: 146 / 1694
  23038. }
  23039. },
  23040. },
  23041. [
  23042. {
  23043. name: "Normal",
  23044. height: math.unit(4.5, "feet"),
  23045. default: true
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23051. {
  23052. side: {
  23053. height: math.unit(9.7, "feet"),
  23054. weight: math.unit(4000, "kg"),
  23055. name: "Side",
  23056. image: {
  23057. source: "./media/characters/yamie/side.svg"
  23058. }
  23059. },
  23060. },
  23061. [
  23062. {
  23063. name: "Normal",
  23064. height: math.unit(9.7, "feet"),
  23065. default: true
  23066. },
  23067. ]
  23068. ))
  23069. characterMakers.push(() => makeCharacter(
  23070. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23071. {
  23072. front: {
  23073. height: math.unit(50, "feet"),
  23074. weight: math.unit(50000, "kg"),
  23075. name: "Front",
  23076. image: {
  23077. source: "./media/characters/anders/front.svg",
  23078. extra: 570 / 539,
  23079. bottom: 14.7 / 586.7
  23080. }
  23081. },
  23082. },
  23083. [
  23084. {
  23085. name: "Large",
  23086. height: math.unit(50, "feet")
  23087. },
  23088. {
  23089. name: "Macro",
  23090. height: math.unit(2000, "feet"),
  23091. default: true
  23092. },
  23093. {
  23094. name: "Megamacro",
  23095. height: math.unit(12, "miles")
  23096. },
  23097. ]
  23098. ))
  23099. characterMakers.push(() => makeCharacter(
  23100. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23101. {
  23102. front: {
  23103. height: math.unit(7 + 2 / 12, "feet"),
  23104. weight: math.unit(300, "lb"),
  23105. name: "Front",
  23106. image: {
  23107. source: "./media/characters/reban/front.svg",
  23108. extra: 1287/1212,
  23109. bottom: 148/1435
  23110. }
  23111. },
  23112. head: {
  23113. height: math.unit(1.95, "feet"),
  23114. name: "Head",
  23115. image: {
  23116. source: "./media/characters/reban/head.svg"
  23117. }
  23118. },
  23119. maw: {
  23120. height: math.unit(0.95, "feet"),
  23121. name: "Maw",
  23122. image: {
  23123. source: "./media/characters/reban/maw.svg"
  23124. }
  23125. },
  23126. foot: {
  23127. height: math.unit(1.65, "feet"),
  23128. name: "Foot",
  23129. image: {
  23130. source: "./media/characters/reban/foot.svg"
  23131. }
  23132. },
  23133. dick: {
  23134. height: math.unit(7 / 5, "feet"),
  23135. name: "Dick",
  23136. image: {
  23137. source: "./media/characters/reban/dick.svg"
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Natural Height",
  23144. height: math.unit(7 + 2 / 12, "feet")
  23145. },
  23146. {
  23147. name: "Macro",
  23148. height: math.unit(500, "feet"),
  23149. default: true
  23150. },
  23151. {
  23152. name: "Canon Height",
  23153. height: math.unit(50, "AU")
  23154. },
  23155. ]
  23156. ))
  23157. characterMakers.push(() => makeCharacter(
  23158. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23159. {
  23160. front: {
  23161. height: math.unit(6, "feet"),
  23162. weight: math.unit(150, "lb"),
  23163. name: "Front",
  23164. image: {
  23165. source: "./media/characters/terrance-keayes/front.svg",
  23166. extra: 1.005,
  23167. bottom: 151 / 1615
  23168. }
  23169. },
  23170. side: {
  23171. height: math.unit(6, "feet"),
  23172. weight: math.unit(150, "lb"),
  23173. name: "Side",
  23174. image: {
  23175. source: "./media/characters/terrance-keayes/side.svg",
  23176. extra: 1.005,
  23177. bottom: 129.4 / 1544
  23178. }
  23179. },
  23180. back: {
  23181. height: math.unit(6, "feet"),
  23182. weight: math.unit(150, "lb"),
  23183. name: "Back",
  23184. image: {
  23185. source: "./media/characters/terrance-keayes/back.svg",
  23186. extra: 1.005,
  23187. bottom: 58.4 / 1557.3
  23188. }
  23189. },
  23190. dick: {
  23191. height: math.unit(6 * 0.208, "feet"),
  23192. name: "Dick",
  23193. image: {
  23194. source: "./media/characters/terrance-keayes/dick.svg"
  23195. }
  23196. },
  23197. },
  23198. [
  23199. {
  23200. name: "Canon Height",
  23201. height: math.unit(35, "miles"),
  23202. default: true
  23203. },
  23204. ]
  23205. ))
  23206. characterMakers.push(() => makeCharacter(
  23207. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23208. {
  23209. front: {
  23210. height: math.unit(6, "feet"),
  23211. weight: math.unit(150, "lb"),
  23212. name: "Front",
  23213. image: {
  23214. source: "./media/characters/ofelia/front.svg",
  23215. extra: 1130/1117,
  23216. bottom: 91/1221
  23217. }
  23218. },
  23219. back: {
  23220. height: math.unit(6, "feet"),
  23221. weight: math.unit(150, "lb"),
  23222. name: "Back",
  23223. image: {
  23224. source: "./media/characters/ofelia/back.svg",
  23225. extra: 1172/1159,
  23226. bottom: 28/1200
  23227. }
  23228. },
  23229. maw: {
  23230. height: math.unit(1, "feet"),
  23231. name: "Maw",
  23232. image: {
  23233. source: "./media/characters/ofelia/maw.svg"
  23234. }
  23235. },
  23236. foot: {
  23237. height: math.unit(1.949, "feet"),
  23238. name: "Foot",
  23239. image: {
  23240. source: "./media/characters/ofelia/foot.svg"
  23241. }
  23242. },
  23243. },
  23244. [
  23245. {
  23246. name: "Canon Height",
  23247. height: math.unit(2000, "miles"),
  23248. default: true
  23249. },
  23250. ]
  23251. ))
  23252. characterMakers.push(() => makeCharacter(
  23253. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23254. {
  23255. front: {
  23256. height: math.unit(6, "feet"),
  23257. weight: math.unit(150, "lb"),
  23258. name: "Front",
  23259. image: {
  23260. source: "./media/characters/samuel/front.svg",
  23261. extra: 265 / 258,
  23262. bottom: 2 / 266.1566
  23263. }
  23264. },
  23265. },
  23266. [
  23267. {
  23268. name: "Macro",
  23269. height: math.unit(100, "feet"),
  23270. default: true
  23271. },
  23272. {
  23273. name: "Full Size",
  23274. height: math.unit(1000, "miles")
  23275. },
  23276. ]
  23277. ))
  23278. characterMakers.push(() => makeCharacter(
  23279. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23280. {
  23281. front: {
  23282. height: math.unit(6, "feet"),
  23283. weight: math.unit(300, "lb"),
  23284. name: "Front",
  23285. image: {
  23286. source: "./media/characters/beishir-kiel/front.svg",
  23287. extra: 569 / 547,
  23288. bottom: 41.9 / 609
  23289. }
  23290. },
  23291. maw: {
  23292. height: math.unit(6 * 0.202, "feet"),
  23293. name: "Maw",
  23294. image: {
  23295. source: "./media/characters/beishir-kiel/maw.svg"
  23296. }
  23297. },
  23298. },
  23299. [
  23300. {
  23301. name: "Macro",
  23302. height: math.unit(300, "feet"),
  23303. default: true
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23309. {
  23310. front: {
  23311. height: math.unit(5 + 7/12, "feet"),
  23312. weight: math.unit(120, "lb"),
  23313. name: "Front",
  23314. image: {
  23315. source: "./media/characters/logan-grey/front.svg",
  23316. extra: 1836/1738,
  23317. bottom: 108/1944
  23318. }
  23319. },
  23320. back: {
  23321. height: math.unit(5 + 7/12, "feet"),
  23322. weight: math.unit(120, "lb"),
  23323. name: "Back",
  23324. image: {
  23325. source: "./media/characters/logan-grey/back.svg",
  23326. extra: 1880/1794,
  23327. bottom: 24/1904
  23328. }
  23329. },
  23330. frontSfw: {
  23331. height: math.unit(5 + 7/12, "feet"),
  23332. weight: math.unit(120, "lb"),
  23333. name: "Front (SFW)",
  23334. image: {
  23335. source: "./media/characters/logan-grey/front-sfw.svg",
  23336. extra: 1836/1738,
  23337. bottom: 108/1944
  23338. }
  23339. },
  23340. backSfw: {
  23341. height: math.unit(5 + 7/12, "feet"),
  23342. weight: math.unit(120, "lb"),
  23343. name: "Back (SFW)",
  23344. image: {
  23345. source: "./media/characters/logan-grey/back-sfw.svg",
  23346. extra: 1880/1794,
  23347. bottom: 24/1904
  23348. }
  23349. },
  23350. hands: {
  23351. height: math.unit(0.84, "feet"),
  23352. name: "Hands",
  23353. image: {
  23354. source: "./media/characters/logan-grey/hands.svg"
  23355. }
  23356. },
  23357. paws: {
  23358. height: math.unit(0.72, "feet"),
  23359. name: "Paws",
  23360. image: {
  23361. source: "./media/characters/logan-grey/paws.svg"
  23362. }
  23363. },
  23364. cock: {
  23365. height: math.unit(1.45, "feet"),
  23366. name: "Cock",
  23367. image: {
  23368. source: "./media/characters/logan-grey/cock.svg"
  23369. }
  23370. },
  23371. cockAlt: {
  23372. height: math.unit(1.437, "feet"),
  23373. name: "Cock (alt)",
  23374. image: {
  23375. source: "./media/characters/logan-grey/cock-alt.svg"
  23376. }
  23377. },
  23378. },
  23379. [
  23380. {
  23381. name: "Normal",
  23382. height: math.unit(5 + 8 / 12, "feet")
  23383. },
  23384. {
  23385. name: "The 500 Foot Femboy",
  23386. height: math.unit(500, "feet"),
  23387. default: true
  23388. },
  23389. {
  23390. name: "Megmacro",
  23391. height: math.unit(20, "miles")
  23392. },
  23393. ]
  23394. ))
  23395. characterMakers.push(() => makeCharacter(
  23396. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23397. {
  23398. front: {
  23399. height: math.unit(8 + 2 / 12, "feet"),
  23400. weight: math.unit(275, "lb"),
  23401. name: "Front",
  23402. image: {
  23403. source: "./media/characters/draganta/front.svg",
  23404. extra: 1177 / 1135,
  23405. bottom: 33.46 / 1212.1
  23406. }
  23407. },
  23408. },
  23409. [
  23410. {
  23411. name: "Normal",
  23412. height: math.unit(8 + 6 / 12, "feet"),
  23413. default: true
  23414. },
  23415. {
  23416. name: "Macro",
  23417. height: math.unit(150, "feet")
  23418. },
  23419. {
  23420. name: "Megamacro",
  23421. height: math.unit(1000, "miles")
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(1.72, "m"),
  23430. weight: math.unit(80, "lb"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/voski/front.svg",
  23434. extra: 2076.22 / 2022.4,
  23435. bottom: 102.7 / 2177.3866
  23436. }
  23437. },
  23438. frontFlaccid: {
  23439. height: math.unit(1.72, "m"),
  23440. weight: math.unit(80, "lb"),
  23441. name: "Front (Flaccid)",
  23442. image: {
  23443. source: "./media/characters/voski/front-flaccid.svg",
  23444. extra: 2076.22 / 2022.4,
  23445. bottom: 102.7 / 2177.3866
  23446. }
  23447. },
  23448. frontErect: {
  23449. height: math.unit(1.72, "m"),
  23450. weight: math.unit(80, "lb"),
  23451. name: "Front (Erect)",
  23452. image: {
  23453. source: "./media/characters/voski/front-erect.svg",
  23454. extra: 2076.22 / 2022.4,
  23455. bottom: 102.7 / 2177.3866
  23456. }
  23457. },
  23458. back: {
  23459. height: math.unit(1.72, "m"),
  23460. weight: math.unit(80, "lb"),
  23461. name: "Back",
  23462. image: {
  23463. source: "./media/characters/voski/back.svg",
  23464. extra: 2104 / 2051,
  23465. bottom: 10.45 / 2113.63
  23466. }
  23467. },
  23468. },
  23469. [
  23470. {
  23471. name: "Normal",
  23472. height: math.unit(1.72, "m")
  23473. },
  23474. {
  23475. name: "Macro",
  23476. height: math.unit(55, "m"),
  23477. default: true
  23478. },
  23479. {
  23480. name: "Macro+",
  23481. height: math.unit(300, "m")
  23482. },
  23483. {
  23484. name: "Macro++",
  23485. height: math.unit(700, "m")
  23486. },
  23487. {
  23488. name: "Macro+++",
  23489. height: math.unit(4500, "m")
  23490. },
  23491. {
  23492. name: "Macro++++",
  23493. height: math.unit(45, "km")
  23494. },
  23495. {
  23496. name: "Macro+++++",
  23497. height: math.unit(1220, "km")
  23498. },
  23499. ]
  23500. ))
  23501. characterMakers.push(() => makeCharacter(
  23502. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23503. {
  23504. front: {
  23505. height: math.unit(2.3, "m"),
  23506. weight: math.unit(304, "kg"),
  23507. name: "Front",
  23508. image: {
  23509. source: "./media/characters/icowom-lee/front.svg",
  23510. extra: 985 / 955,
  23511. bottom: 25.4 / 1012
  23512. }
  23513. },
  23514. fronttentacles: {
  23515. height: math.unit(2.3, "m"),
  23516. weight: math.unit(304, "kg"),
  23517. name: "Front-tentacles",
  23518. image: {
  23519. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23520. extra: 985 / 955,
  23521. bottom: 25.4 / 1012
  23522. }
  23523. },
  23524. back: {
  23525. height: math.unit(2.3, "m"),
  23526. weight: math.unit(304, "kg"),
  23527. name: "Back",
  23528. image: {
  23529. source: "./media/characters/icowom-lee/back.svg",
  23530. extra: 975 / 954,
  23531. bottom: 9.5 / 985
  23532. }
  23533. },
  23534. backtentacles: {
  23535. height: math.unit(2.3, "m"),
  23536. weight: math.unit(304, "kg"),
  23537. name: "Back-tentacles",
  23538. image: {
  23539. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23540. extra: 975 / 954,
  23541. bottom: 9.5 / 985
  23542. }
  23543. },
  23544. frontDressed: {
  23545. height: math.unit(2.3, "m"),
  23546. weight: math.unit(304, "kg"),
  23547. name: "Front (Dressed)",
  23548. image: {
  23549. source: "./media/characters/icowom-lee/front-dressed.svg",
  23550. extra: 3076 / 2933,
  23551. bottom: 51.4 / 3125.1889
  23552. }
  23553. },
  23554. rump: {
  23555. height: math.unit(0.776, "meters"),
  23556. name: "Rump",
  23557. image: {
  23558. source: "./media/characters/icowom-lee/rump.svg"
  23559. }
  23560. },
  23561. genitals: {
  23562. height: math.unit(0.78, "meters"),
  23563. name: "Genitals",
  23564. image: {
  23565. source: "./media/characters/icowom-lee/genitals.svg"
  23566. }
  23567. },
  23568. },
  23569. [
  23570. {
  23571. name: "Normal",
  23572. height: math.unit(2.3, "meters"),
  23573. default: true
  23574. },
  23575. {
  23576. name: "Macro",
  23577. height: math.unit(94, "meters"),
  23578. default: true
  23579. },
  23580. ]
  23581. ))
  23582. characterMakers.push(() => makeCharacter(
  23583. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23584. {
  23585. front: {
  23586. height: math.unit(22, "meters"),
  23587. weight: math.unit(21000, "kg"),
  23588. name: "Front",
  23589. image: {
  23590. source: "./media/characters/shock-diamond/front.svg",
  23591. extra: 2204 / 2053,
  23592. bottom: 65 / 2239.47
  23593. }
  23594. },
  23595. frontNude: {
  23596. height: math.unit(22, "meters"),
  23597. weight: math.unit(21000, "kg"),
  23598. name: "Front (Nude)",
  23599. image: {
  23600. source: "./media/characters/shock-diamond/front-nude.svg",
  23601. extra: 2514 / 2285,
  23602. bottom: 13 / 2527.56
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Normal",
  23609. height: math.unit(3, "meters")
  23610. },
  23611. {
  23612. name: "Macro",
  23613. height: math.unit(22, "meters"),
  23614. default: true
  23615. },
  23616. ]
  23617. ))
  23618. characterMakers.push(() => makeCharacter(
  23619. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23620. {
  23621. front: {
  23622. height: math.unit(5 + 4 / 12, "feet"),
  23623. weight: math.unit(120, "lb"),
  23624. name: "Front",
  23625. image: {
  23626. source: "./media/characters/rory/front.svg",
  23627. extra: 1318/1241,
  23628. bottom: 42/1360
  23629. }
  23630. },
  23631. back: {
  23632. height: math.unit(5 + 4 / 12, "feet"),
  23633. weight: math.unit(120, "lb"),
  23634. name: "Back",
  23635. image: {
  23636. source: "./media/characters/rory/back.svg",
  23637. extra: 1318/1241,
  23638. bottom: 42/1360
  23639. }
  23640. },
  23641. butt: {
  23642. height: math.unit(1.74, "feet"),
  23643. name: "Butt",
  23644. image: {
  23645. source: "./media/characters/rory/butt.svg"
  23646. }
  23647. },
  23648. dick: {
  23649. height: math.unit(1.02, "feet"),
  23650. name: "Dick",
  23651. image: {
  23652. source: "./media/characters/rory/dick.svg"
  23653. }
  23654. },
  23655. paws: {
  23656. height: math.unit(1, "feet"),
  23657. name: "Paws",
  23658. image: {
  23659. source: "./media/characters/rory/paws.svg"
  23660. }
  23661. },
  23662. frontAlt: {
  23663. height: math.unit(5 + 4 / 12, "feet"),
  23664. weight: math.unit(120, "lb"),
  23665. name: "Front (Alt)",
  23666. image: {
  23667. source: "./media/characters/rory/front-alt.svg",
  23668. extra: 589 / 556,
  23669. bottom: 45.7 / 635.76
  23670. }
  23671. },
  23672. frontAltNude: {
  23673. height: math.unit(5 + 4 / 12, "feet"),
  23674. weight: math.unit(120, "lb"),
  23675. name: "Front (Alt, Nude)",
  23676. image: {
  23677. source: "./media/characters/rory/front-alt-nude.svg",
  23678. extra: 589 / 556,
  23679. bottom: 45.7 / 635.76
  23680. }
  23681. },
  23682. side: {
  23683. height: math.unit(5 + 4 / 12, "feet"),
  23684. weight: math.unit(120, "lb"),
  23685. name: "Side",
  23686. image: {
  23687. source: "./media/characters/rory/side.svg",
  23688. extra: 597 / 564,
  23689. bottom: 55 / 653
  23690. }
  23691. },
  23692. backAlt: {
  23693. height: math.unit(5 + 4 / 12, "feet"),
  23694. weight: math.unit(120, "lb"),
  23695. name: "Back (Alt)",
  23696. image: {
  23697. source: "./media/characters/rory/back-alt.svg",
  23698. extra: 620 / 585,
  23699. bottom: 8.86 / 630.43
  23700. }
  23701. },
  23702. dickAlt: {
  23703. height: math.unit(0.86, "feet"),
  23704. name: "Dick (Alt)",
  23705. image: {
  23706. source: "./media/characters/rory/dick-alt.svg"
  23707. }
  23708. },
  23709. },
  23710. [
  23711. {
  23712. name: "Normal",
  23713. height: math.unit(5 + 4 / 12, "feet"),
  23714. default: true
  23715. },
  23716. {
  23717. name: "Macro",
  23718. height: math.unit(100, "feet")
  23719. },
  23720. {
  23721. name: "Macro+",
  23722. height: math.unit(140, "feet")
  23723. },
  23724. {
  23725. name: "Macro++",
  23726. height: math.unit(300, "feet")
  23727. },
  23728. ]
  23729. ))
  23730. characterMakers.push(() => makeCharacter(
  23731. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23732. {
  23733. front: {
  23734. height: math.unit(5 + 9 / 12, "feet"),
  23735. weight: math.unit(190, "lb"),
  23736. name: "Front",
  23737. image: {
  23738. source: "./media/characters/sprisk/front.svg",
  23739. extra: 1225 / 1180,
  23740. bottom: 42.7 / 1266.4
  23741. }
  23742. },
  23743. frontNsfw: {
  23744. height: math.unit(5 + 9 / 12, "feet"),
  23745. weight: math.unit(190, "lb"),
  23746. name: "Front (NSFW)",
  23747. image: {
  23748. source: "./media/characters/sprisk/front-nsfw.svg",
  23749. extra: 1225 / 1180,
  23750. bottom: 42.7 / 1266.4
  23751. }
  23752. },
  23753. back: {
  23754. height: math.unit(5 + 9 / 12, "feet"),
  23755. weight: math.unit(190, "lb"),
  23756. name: "Back",
  23757. image: {
  23758. source: "./media/characters/sprisk/back.svg",
  23759. extra: 1247 / 1200,
  23760. bottom: 5.6 / 1253.04
  23761. }
  23762. },
  23763. },
  23764. [
  23765. {
  23766. name: "Tiny",
  23767. height: math.unit(2, "inches")
  23768. },
  23769. {
  23770. name: "Normal",
  23771. height: math.unit(5 + 9 / 12, "feet"),
  23772. default: true
  23773. },
  23774. {
  23775. name: "Mini Macro",
  23776. height: math.unit(18, "feet")
  23777. },
  23778. {
  23779. name: "Macro",
  23780. height: math.unit(100, "feet")
  23781. },
  23782. {
  23783. name: "MACRO",
  23784. height: math.unit(50, "miles")
  23785. },
  23786. {
  23787. name: "M A C R O",
  23788. height: math.unit(300, "miles")
  23789. },
  23790. ]
  23791. ))
  23792. characterMakers.push(() => makeCharacter(
  23793. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23794. {
  23795. side: {
  23796. height: math.unit(15.6, "meters"),
  23797. weight: math.unit(700000, "kg"),
  23798. name: "Side",
  23799. image: {
  23800. source: "./media/characters/bunsen/side.svg",
  23801. extra: 1644 / 358
  23802. }
  23803. },
  23804. foot: {
  23805. height: math.unit(1.611 * 1644 / 358, "meter"),
  23806. name: "Foot",
  23807. image: {
  23808. source: "./media/characters/bunsen/foot.svg"
  23809. }
  23810. },
  23811. },
  23812. [
  23813. {
  23814. name: "Small",
  23815. height: math.unit(10, "feet")
  23816. },
  23817. {
  23818. name: "Normal",
  23819. height: math.unit(15.6, "meters"),
  23820. default: true
  23821. },
  23822. ]
  23823. ))
  23824. characterMakers.push(() => makeCharacter(
  23825. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23826. {
  23827. front: {
  23828. height: math.unit(4 + 11 / 12, "feet"),
  23829. weight: math.unit(140, "lb"),
  23830. name: "Front",
  23831. image: {
  23832. source: "./media/characters/sesh/front.svg",
  23833. extra: 3420 / 3231,
  23834. bottom: 72 / 3949.5
  23835. }
  23836. },
  23837. },
  23838. [
  23839. {
  23840. name: "Normal",
  23841. height: math.unit(4 + 11 / 12, "feet")
  23842. },
  23843. {
  23844. name: "Grown",
  23845. height: math.unit(15, "feet"),
  23846. default: true
  23847. },
  23848. {
  23849. name: "Macro",
  23850. height: math.unit(1500, "feet")
  23851. },
  23852. {
  23853. name: "Megamacro",
  23854. height: math.unit(30, "miles")
  23855. },
  23856. {
  23857. name: "Continental",
  23858. height: math.unit(3000, "miles")
  23859. },
  23860. {
  23861. name: "Gravity Mass",
  23862. height: math.unit(300000, "miles")
  23863. },
  23864. {
  23865. name: "Planet Buster",
  23866. height: math.unit(30000000, "miles")
  23867. },
  23868. {
  23869. name: "Big",
  23870. height: math.unit(3000000000, "miles")
  23871. },
  23872. ]
  23873. ))
  23874. characterMakers.push(() => makeCharacter(
  23875. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23876. {
  23877. front: {
  23878. height: math.unit(9, "feet"),
  23879. weight: math.unit(350, "lb"),
  23880. name: "Front",
  23881. image: {
  23882. source: "./media/characters/pepper/front.svg",
  23883. extra: 1448 / 1312,
  23884. bottom: 9.4 / 1457.88
  23885. }
  23886. },
  23887. back: {
  23888. height: math.unit(9, "feet"),
  23889. weight: math.unit(350, "lb"),
  23890. name: "Back",
  23891. image: {
  23892. source: "./media/characters/pepper/back.svg",
  23893. extra: 1423 / 1300,
  23894. bottom: 4.6 / 1429
  23895. }
  23896. },
  23897. maw: {
  23898. height: math.unit(0.932, "feet"),
  23899. name: "Maw",
  23900. image: {
  23901. source: "./media/characters/pepper/maw.svg"
  23902. }
  23903. },
  23904. },
  23905. [
  23906. {
  23907. name: "Normal",
  23908. height: math.unit(9, "feet"),
  23909. default: true
  23910. },
  23911. ]
  23912. ))
  23913. characterMakers.push(() => makeCharacter(
  23914. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23915. {
  23916. front: {
  23917. height: math.unit(6, "feet"),
  23918. weight: math.unit(150, "lb"),
  23919. name: "Front",
  23920. image: {
  23921. source: "./media/characters/maelstrom/front.svg",
  23922. extra: 2100 / 1883,
  23923. bottom: 94 / 2196.7
  23924. }
  23925. },
  23926. },
  23927. [
  23928. {
  23929. name: "Less Kaiju",
  23930. height: math.unit(200, "feet")
  23931. },
  23932. {
  23933. name: "Kaiju",
  23934. height: math.unit(400, "feet"),
  23935. default: true
  23936. },
  23937. {
  23938. name: "Kaiju-er",
  23939. height: math.unit(600, "feet")
  23940. },
  23941. ]
  23942. ))
  23943. characterMakers.push(() => makeCharacter(
  23944. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23945. {
  23946. front: {
  23947. height: math.unit(6 + 5 / 12, "feet"),
  23948. weight: math.unit(180, "lb"),
  23949. name: "Front",
  23950. image: {
  23951. source: "./media/characters/lexir/front.svg",
  23952. extra: 180 / 172,
  23953. bottom: 12 / 192
  23954. }
  23955. },
  23956. back: {
  23957. height: math.unit(6 + 5 / 12, "feet"),
  23958. weight: math.unit(180, "lb"),
  23959. name: "Back",
  23960. image: {
  23961. source: "./media/characters/lexir/back.svg",
  23962. extra: 1273/1201,
  23963. bottom: 39/1312
  23964. }
  23965. },
  23966. },
  23967. [
  23968. {
  23969. name: "Very Smal",
  23970. height: math.unit(1, "nm")
  23971. },
  23972. {
  23973. name: "Normal",
  23974. height: math.unit(6 + 5 / 12, "feet"),
  23975. default: true
  23976. },
  23977. {
  23978. name: "Macro",
  23979. height: math.unit(1, "mile")
  23980. },
  23981. {
  23982. name: "Megamacro",
  23983. height: math.unit(50, "miles")
  23984. },
  23985. ]
  23986. ))
  23987. characterMakers.push(() => makeCharacter(
  23988. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23989. {
  23990. front: {
  23991. height: math.unit(1.5, "meters"),
  23992. weight: math.unit(100, "lb"),
  23993. name: "Front",
  23994. image: {
  23995. source: "./media/characters/maksio/front.svg",
  23996. extra: 1549 / 1531,
  23997. bottom: 123.7 / 1674.5429
  23998. }
  23999. },
  24000. back: {
  24001. height: math.unit(1.5, "meters"),
  24002. weight: math.unit(100, "lb"),
  24003. name: "Back",
  24004. image: {
  24005. source: "./media/characters/maksio/back.svg",
  24006. extra: 1541 / 1509,
  24007. bottom: 97 / 1639
  24008. }
  24009. },
  24010. hand: {
  24011. height: math.unit(0.621, "feet"),
  24012. name: "Hand",
  24013. image: {
  24014. source: "./media/characters/maksio/hand.svg"
  24015. }
  24016. },
  24017. foot: {
  24018. height: math.unit(1.611, "feet"),
  24019. name: "Foot",
  24020. image: {
  24021. source: "./media/characters/maksio/foot.svg"
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Shrunken",
  24028. height: math.unit(10, "cm")
  24029. },
  24030. {
  24031. name: "Normal",
  24032. height: math.unit(150, "cm"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24039. {
  24040. front: {
  24041. height: math.unit(100, "feet"),
  24042. name: "Front",
  24043. image: {
  24044. source: "./media/characters/erza-bear/front.svg",
  24045. extra: 2449 / 2390,
  24046. bottom: 46 / 2494
  24047. }
  24048. },
  24049. back: {
  24050. height: math.unit(100, "feet"),
  24051. name: "Back",
  24052. image: {
  24053. source: "./media/characters/erza-bear/back.svg",
  24054. extra: 2489 / 2430,
  24055. bottom: 85.4 / 2480
  24056. }
  24057. },
  24058. tail: {
  24059. height: math.unit(42, "feet"),
  24060. name: "Tail",
  24061. image: {
  24062. source: "./media/characters/erza-bear/tail.svg"
  24063. }
  24064. },
  24065. tongue: {
  24066. height: math.unit(8, "feet"),
  24067. name: "Tongue",
  24068. image: {
  24069. source: "./media/characters/erza-bear/tongue.svg"
  24070. }
  24071. },
  24072. dick: {
  24073. height: math.unit(10.5, "feet"),
  24074. name: "Dick",
  24075. image: {
  24076. source: "./media/characters/erza-bear/dick.svg"
  24077. }
  24078. },
  24079. dickVertical: {
  24080. height: math.unit(16.9, "feet"),
  24081. name: "Dick (Vertical)",
  24082. image: {
  24083. source: "./media/characters/erza-bear/dick-vertical.svg"
  24084. }
  24085. },
  24086. },
  24087. [
  24088. {
  24089. name: "Macro",
  24090. height: math.unit(100, "feet"),
  24091. default: true
  24092. },
  24093. ]
  24094. ))
  24095. characterMakers.push(() => makeCharacter(
  24096. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24097. {
  24098. front: {
  24099. height: math.unit(172, "cm"),
  24100. weight: math.unit(73, "kg"),
  24101. name: "Front",
  24102. image: {
  24103. source: "./media/characters/violet-flor/front.svg",
  24104. extra: 1530 / 1442,
  24105. bottom: 61.9 / 1588.8
  24106. }
  24107. },
  24108. back: {
  24109. height: math.unit(180, "cm"),
  24110. weight: math.unit(73, "kg"),
  24111. name: "Back",
  24112. image: {
  24113. source: "./media/characters/violet-flor/back.svg",
  24114. extra: 1692 / 1630,
  24115. bottom: 20 / 1712
  24116. }
  24117. },
  24118. },
  24119. [
  24120. {
  24121. name: "Normal",
  24122. height: math.unit(172, "cm"),
  24123. default: true
  24124. },
  24125. ]
  24126. ))
  24127. characterMakers.push(() => makeCharacter(
  24128. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24129. {
  24130. front: {
  24131. height: math.unit(6, "feet"),
  24132. weight: math.unit(220, "lb"),
  24133. name: "Front",
  24134. image: {
  24135. source: "./media/characters/lynn-rhea/front.svg",
  24136. extra: 310 / 273
  24137. }
  24138. },
  24139. back: {
  24140. height: math.unit(6, "feet"),
  24141. weight: math.unit(220, "lb"),
  24142. name: "Back",
  24143. image: {
  24144. source: "./media/characters/lynn-rhea/back.svg",
  24145. extra: 310 / 273
  24146. }
  24147. },
  24148. dicks: {
  24149. height: math.unit(0.9, "feet"),
  24150. name: "Dicks",
  24151. image: {
  24152. source: "./media/characters/lynn-rhea/dicks.svg"
  24153. }
  24154. },
  24155. slit: {
  24156. height: math.unit(0.4, "feet"),
  24157. name: "Slit",
  24158. image: {
  24159. source: "./media/characters/lynn-rhea/slit.svg"
  24160. }
  24161. },
  24162. },
  24163. [
  24164. {
  24165. name: "Micro",
  24166. height: math.unit(1, "inch")
  24167. },
  24168. {
  24169. name: "Macro",
  24170. height: math.unit(60, "feet"),
  24171. default: true
  24172. },
  24173. {
  24174. name: "Megamacro",
  24175. height: math.unit(2, "miles")
  24176. },
  24177. {
  24178. name: "Gigamacro",
  24179. height: math.unit(3, "earths")
  24180. },
  24181. {
  24182. name: "Galactic",
  24183. height: math.unit(0.8, "galaxies")
  24184. },
  24185. ]
  24186. ))
  24187. characterMakers.push(() => makeCharacter(
  24188. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24189. {
  24190. front: {
  24191. height: math.unit(1600, "feet"),
  24192. weight: math.unit(85758785169, "kg"),
  24193. name: "Front",
  24194. image: {
  24195. source: "./media/characters/valathos/front.svg",
  24196. extra: 1451 / 1339
  24197. }
  24198. },
  24199. },
  24200. [
  24201. {
  24202. name: "Macro",
  24203. height: math.unit(1600, "feet"),
  24204. default: true
  24205. },
  24206. ]
  24207. ))
  24208. characterMakers.push(() => makeCharacter(
  24209. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24210. {
  24211. front: {
  24212. height: math.unit(7 + 5 / 12, "feet"),
  24213. weight: math.unit(300, "lb"),
  24214. name: "Front",
  24215. image: {
  24216. source: "./media/characters/azula/front.svg",
  24217. extra: 3208 / 2880,
  24218. bottom: 80.2 / 3277
  24219. }
  24220. },
  24221. back: {
  24222. height: math.unit(7 + 5 / 12, "feet"),
  24223. weight: math.unit(300, "lb"),
  24224. name: "Back",
  24225. image: {
  24226. source: "./media/characters/azula/back.svg",
  24227. extra: 3169 / 2822,
  24228. bottom: 150.6 / 3321
  24229. }
  24230. },
  24231. },
  24232. [
  24233. {
  24234. name: "Normal",
  24235. height: math.unit(7 + 5 / 12, "feet"),
  24236. default: true
  24237. },
  24238. {
  24239. name: "Big",
  24240. height: math.unit(20, "feet")
  24241. },
  24242. ]
  24243. ))
  24244. characterMakers.push(() => makeCharacter(
  24245. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24246. {
  24247. front: {
  24248. height: math.unit(5 + 1 / 12, "feet"),
  24249. weight: math.unit(110, "lb"),
  24250. name: "Front",
  24251. image: {
  24252. source: "./media/characters/rupert/front.svg",
  24253. extra: 1549 / 1495,
  24254. bottom: 54.2 / 1604.4
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Normal",
  24261. height: math.unit(5 + 1 / 12, "feet"),
  24262. default: true
  24263. },
  24264. ]
  24265. ))
  24266. characterMakers.push(() => makeCharacter(
  24267. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24268. {
  24269. front: {
  24270. height: math.unit(8 + 4 / 12, "feet"),
  24271. weight: math.unit(350, "lb"),
  24272. name: "Front",
  24273. image: {
  24274. source: "./media/characters/sheera-castellar/front.svg",
  24275. extra: 1957 / 1894,
  24276. bottom: 26.97 / 1975.017
  24277. }
  24278. },
  24279. side: {
  24280. height: math.unit(8 + 4 / 12, "feet"),
  24281. weight: math.unit(350, "lb"),
  24282. name: "Side",
  24283. image: {
  24284. source: "./media/characters/sheera-castellar/side.svg",
  24285. extra: 1957 / 1894
  24286. }
  24287. },
  24288. back: {
  24289. height: math.unit(8 + 4 / 12, "feet"),
  24290. weight: math.unit(350, "lb"),
  24291. name: "Back",
  24292. image: {
  24293. source: "./media/characters/sheera-castellar/back.svg",
  24294. extra: 1957 / 1894
  24295. }
  24296. },
  24297. angled: {
  24298. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24299. weight: math.unit(350, "lb"),
  24300. name: "Angled",
  24301. image: {
  24302. source: "./media/characters/sheera-castellar/angled.svg",
  24303. extra: 1807 / 1707,
  24304. bottom: 68 / 1875
  24305. }
  24306. },
  24307. genitals: {
  24308. height: math.unit(2.2, "feet"),
  24309. name: "Genitals",
  24310. image: {
  24311. source: "./media/characters/sheera-castellar/genitals.svg"
  24312. }
  24313. },
  24314. taur: {
  24315. height: math.unit(10 + 6/12, "feet"),
  24316. name: "Taur",
  24317. image: {
  24318. source: "./media/characters/sheera-castellar/taur.svg",
  24319. extra: 2017/1909,
  24320. bottom: 185/2202
  24321. }
  24322. },
  24323. },
  24324. [
  24325. {
  24326. name: "Normal",
  24327. height: math.unit(8 + 4 / 12, "feet")
  24328. },
  24329. {
  24330. name: "Macro",
  24331. height: math.unit(150, "feet"),
  24332. default: true
  24333. },
  24334. {
  24335. name: "Macro+",
  24336. height: math.unit(800, "feet")
  24337. },
  24338. ]
  24339. ))
  24340. characterMakers.push(() => makeCharacter(
  24341. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24342. {
  24343. front: {
  24344. height: math.unit(6, "feet"),
  24345. weight: math.unit(150, "lb"),
  24346. name: "Front",
  24347. image: {
  24348. source: "./media/characters/jaipur/front.svg",
  24349. extra: 3860 / 3731,
  24350. bottom: 287 / 4140
  24351. }
  24352. },
  24353. back: {
  24354. height: math.unit(6, "feet"),
  24355. weight: math.unit(150, "lb"),
  24356. name: "Back",
  24357. image: {
  24358. source: "./media/characters/jaipur/back.svg",
  24359. extra: 1637/1561,
  24360. bottom: 154/1791
  24361. }
  24362. },
  24363. },
  24364. [
  24365. {
  24366. name: "Normal",
  24367. height: math.unit(1.85, "meters"),
  24368. default: true
  24369. },
  24370. {
  24371. name: "Macro",
  24372. height: math.unit(150, "meters")
  24373. },
  24374. {
  24375. name: "Macro+",
  24376. height: math.unit(0.5, "miles")
  24377. },
  24378. {
  24379. name: "Macro++",
  24380. height: math.unit(2.5, "miles")
  24381. },
  24382. {
  24383. name: "Macro+++",
  24384. height: math.unit(12, "miles")
  24385. },
  24386. {
  24387. name: "Macro++++",
  24388. height: math.unit(120, "miles")
  24389. },
  24390. {
  24391. name: "Macro+++++",
  24392. height: math.unit(1200, "miles")
  24393. },
  24394. ]
  24395. ))
  24396. characterMakers.push(() => makeCharacter(
  24397. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24398. {
  24399. front: {
  24400. height: math.unit(6, "feet"),
  24401. weight: math.unit(150, "lb"),
  24402. name: "Front",
  24403. image: {
  24404. source: "./media/characters/sheila-wolf/front.svg",
  24405. extra: 1931 / 1808,
  24406. bottom: 29.5 / 1960
  24407. }
  24408. },
  24409. dick: {
  24410. height: math.unit(1.464, "feet"),
  24411. name: "Dick",
  24412. image: {
  24413. source: "./media/characters/sheila-wolf/dick.svg"
  24414. }
  24415. },
  24416. muzzle: {
  24417. height: math.unit(0.513, "feet"),
  24418. name: "Muzzle",
  24419. image: {
  24420. source: "./media/characters/sheila-wolf/muzzle.svg"
  24421. }
  24422. },
  24423. },
  24424. [
  24425. {
  24426. name: "Macro",
  24427. height: math.unit(70, "feet"),
  24428. default: true
  24429. },
  24430. ]
  24431. ))
  24432. characterMakers.push(() => makeCharacter(
  24433. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24434. {
  24435. front: {
  24436. height: math.unit(32, "meters"),
  24437. weight: math.unit(300000, "kg"),
  24438. name: "Front",
  24439. image: {
  24440. source: "./media/characters/almor/front.svg",
  24441. extra: 1408 / 1322,
  24442. bottom: 94.6 / 1506.5
  24443. }
  24444. },
  24445. },
  24446. [
  24447. {
  24448. name: "Macro",
  24449. height: math.unit(32, "meters"),
  24450. default: true
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24456. {
  24457. front: {
  24458. height: math.unit(7, "feet"),
  24459. weight: math.unit(200, "lb"),
  24460. name: "Front",
  24461. image: {
  24462. source: "./media/characters/silver/front.svg",
  24463. extra: 472.1 / 450.5,
  24464. bottom: 26.5 / 499.424
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "Normal",
  24471. height: math.unit(7, "feet"),
  24472. default: true
  24473. },
  24474. {
  24475. name: "Macro",
  24476. height: math.unit(800, "feet")
  24477. },
  24478. {
  24479. name: "Megamacro",
  24480. height: math.unit(250, "miles")
  24481. },
  24482. ]
  24483. ))
  24484. characterMakers.push(() => makeCharacter(
  24485. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24486. {
  24487. front: {
  24488. height: math.unit(6, "feet"),
  24489. weight: math.unit(150, "lb"),
  24490. name: "Front",
  24491. image: {
  24492. source: "./media/characters/pliskin/front.svg",
  24493. extra: 1469 / 1359,
  24494. bottom: 70 / 1540
  24495. }
  24496. },
  24497. },
  24498. [
  24499. {
  24500. name: "Micro",
  24501. height: math.unit(3, "inches")
  24502. },
  24503. {
  24504. name: "Normal",
  24505. height: math.unit(5 + 11 / 12, "feet"),
  24506. default: true
  24507. },
  24508. {
  24509. name: "Macro",
  24510. height: math.unit(120, "feet")
  24511. },
  24512. ]
  24513. ))
  24514. characterMakers.push(() => makeCharacter(
  24515. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24516. {
  24517. front: {
  24518. height: math.unit(6, "feet"),
  24519. weight: math.unit(150, "lb"),
  24520. name: "Front",
  24521. image: {
  24522. source: "./media/characters/sammy/front.svg",
  24523. extra: 1193 / 1089,
  24524. bottom: 30.5 / 1226
  24525. }
  24526. },
  24527. },
  24528. [
  24529. {
  24530. name: "Macro",
  24531. height: math.unit(1700, "feet"),
  24532. default: true
  24533. },
  24534. {
  24535. name: "Examacro",
  24536. height: math.unit(2.5e9, "lightyears")
  24537. },
  24538. ]
  24539. ))
  24540. characterMakers.push(() => makeCharacter(
  24541. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24542. {
  24543. front: {
  24544. height: math.unit(21, "meters"),
  24545. weight: math.unit(12, "tonnes"),
  24546. name: "Front",
  24547. image: {
  24548. source: "./media/characters/kuru/front.svg",
  24549. extra: 4301 / 3785,
  24550. bottom: 371.3 / 4691
  24551. }
  24552. },
  24553. },
  24554. [
  24555. {
  24556. name: "Macro",
  24557. height: math.unit(21, "meters"),
  24558. default: true
  24559. },
  24560. ]
  24561. ))
  24562. characterMakers.push(() => makeCharacter(
  24563. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24564. {
  24565. front: {
  24566. height: math.unit(23, "meters"),
  24567. weight: math.unit(12.2, "tonnes"),
  24568. name: "Front",
  24569. image: {
  24570. source: "./media/characters/rakka/front.svg",
  24571. extra: 4670 / 4169,
  24572. bottom: 301 / 4968.7
  24573. }
  24574. },
  24575. },
  24576. [
  24577. {
  24578. name: "Macro",
  24579. height: math.unit(23, "meters"),
  24580. default: true
  24581. },
  24582. ]
  24583. ))
  24584. characterMakers.push(() => makeCharacter(
  24585. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24586. {
  24587. front: {
  24588. height: math.unit(6, "feet"),
  24589. weight: math.unit(150, "lb"),
  24590. name: "Front",
  24591. image: {
  24592. source: "./media/characters/rhys-feline/front.svg",
  24593. extra: 2488 / 2308,
  24594. bottom: 35.67 / 2519.19
  24595. }
  24596. },
  24597. },
  24598. [
  24599. {
  24600. name: "Really Small",
  24601. height: math.unit(1, "nm")
  24602. },
  24603. {
  24604. name: "Micro",
  24605. height: math.unit(4, "inches")
  24606. },
  24607. {
  24608. name: "Normal",
  24609. height: math.unit(4 + 10 / 12, "feet"),
  24610. default: true
  24611. },
  24612. {
  24613. name: "Macro",
  24614. height: math.unit(100, "feet")
  24615. },
  24616. {
  24617. name: "Megamacto",
  24618. height: math.unit(50, "miles")
  24619. },
  24620. ]
  24621. ))
  24622. characterMakers.push(() => makeCharacter(
  24623. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24624. {
  24625. side: {
  24626. height: math.unit(30, "feet"),
  24627. weight: math.unit(35000, "kg"),
  24628. name: "Side",
  24629. image: {
  24630. source: "./media/characters/alydar/side.svg",
  24631. extra: 234 / 222,
  24632. bottom: 6.5 / 241
  24633. }
  24634. },
  24635. front: {
  24636. height: math.unit(30, "feet"),
  24637. weight: math.unit(35000, "kg"),
  24638. name: "Front",
  24639. image: {
  24640. source: "./media/characters/alydar/front.svg",
  24641. extra: 223.37 / 210.2,
  24642. bottom: 22.3 / 246.76
  24643. }
  24644. },
  24645. top: {
  24646. height: math.unit(64.54, "feet"),
  24647. weight: math.unit(35000, "kg"),
  24648. name: "Top",
  24649. image: {
  24650. source: "./media/characters/alydar/top.svg"
  24651. }
  24652. },
  24653. anthro: {
  24654. height: math.unit(30, "feet"),
  24655. weight: math.unit(9000, "kg"),
  24656. name: "Anthro",
  24657. image: {
  24658. source: "./media/characters/alydar/anthro.svg",
  24659. extra: 432 / 421,
  24660. bottom: 7.18 / 440
  24661. }
  24662. },
  24663. maw: {
  24664. height: math.unit(11.693, "feet"),
  24665. name: "Maw",
  24666. image: {
  24667. source: "./media/characters/alydar/maw.svg"
  24668. }
  24669. },
  24670. head: {
  24671. height: math.unit(11.693, "feet"),
  24672. name: "Head",
  24673. image: {
  24674. source: "./media/characters/alydar/head.svg"
  24675. }
  24676. },
  24677. headAlt: {
  24678. height: math.unit(12.861, "feet"),
  24679. name: "Head (Alt)",
  24680. image: {
  24681. source: "./media/characters/alydar/head-alt.svg"
  24682. }
  24683. },
  24684. wing: {
  24685. height: math.unit(20.712, "feet"),
  24686. name: "Wing",
  24687. image: {
  24688. source: "./media/characters/alydar/wing.svg"
  24689. }
  24690. },
  24691. wingFeather: {
  24692. height: math.unit(9.662, "feet"),
  24693. name: "Wing Feather",
  24694. image: {
  24695. source: "./media/characters/alydar/wing-feather.svg"
  24696. }
  24697. },
  24698. countourFeather: {
  24699. height: math.unit(4.154, "feet"),
  24700. name: "Contour Feather",
  24701. image: {
  24702. source: "./media/characters/alydar/contour-feather.svg"
  24703. }
  24704. },
  24705. },
  24706. [
  24707. {
  24708. name: "Diplomatic",
  24709. height: math.unit(13, "feet"),
  24710. default: true
  24711. },
  24712. {
  24713. name: "Small",
  24714. height: math.unit(30, "feet")
  24715. },
  24716. {
  24717. name: "Normal",
  24718. height: math.unit(95, "feet"),
  24719. default: true
  24720. },
  24721. {
  24722. name: "Large",
  24723. height: math.unit(285, "feet")
  24724. },
  24725. {
  24726. name: "Incomprehensible",
  24727. height: math.unit(450, "megameters")
  24728. },
  24729. ]
  24730. ))
  24731. characterMakers.push(() => makeCharacter(
  24732. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24733. {
  24734. side: {
  24735. height: math.unit(11, "feet"),
  24736. weight: math.unit(1750, "kg"),
  24737. name: "Side",
  24738. image: {
  24739. source: "./media/characters/selicia/side.svg",
  24740. extra: 440 / 396,
  24741. bottom: 24.8 / 465.979
  24742. }
  24743. },
  24744. maw: {
  24745. height: math.unit(4.665, "feet"),
  24746. name: "Maw",
  24747. image: {
  24748. source: "./media/characters/selicia/maw.svg"
  24749. }
  24750. },
  24751. },
  24752. [
  24753. {
  24754. name: "Normal",
  24755. height: math.unit(11, "feet"),
  24756. default: true
  24757. },
  24758. ]
  24759. ))
  24760. characterMakers.push(() => makeCharacter(
  24761. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24762. {
  24763. side: {
  24764. height: math.unit(2 + 6 / 12, "feet"),
  24765. weight: math.unit(30, "lb"),
  24766. name: "Side",
  24767. image: {
  24768. source: "./media/characters/layla/side.svg",
  24769. extra: 244 / 188,
  24770. bottom: 18.2 / 262.1
  24771. }
  24772. },
  24773. back: {
  24774. height: math.unit(2 + 6 / 12, "feet"),
  24775. weight: math.unit(30, "lb"),
  24776. name: "Back",
  24777. image: {
  24778. source: "./media/characters/layla/back.svg",
  24779. extra: 308 / 241.5,
  24780. bottom: 8.9 / 316.8
  24781. }
  24782. },
  24783. cumming: {
  24784. height: math.unit(2 + 6 / 12, "feet"),
  24785. weight: math.unit(30, "lb"),
  24786. name: "Cumming",
  24787. image: {
  24788. source: "./media/characters/layla/cumming.svg",
  24789. extra: 342 / 279,
  24790. bottom: 595 / 938
  24791. }
  24792. },
  24793. dickFlaccid: {
  24794. height: math.unit(2.595, "feet"),
  24795. name: "Flaccid Genitals",
  24796. image: {
  24797. source: "./media/characters/layla/dick-flaccid.svg"
  24798. }
  24799. },
  24800. dickErect: {
  24801. height: math.unit(2.359, "feet"),
  24802. name: "Erect Genitals",
  24803. image: {
  24804. source: "./media/characters/layla/dick-erect.svg"
  24805. }
  24806. },
  24807. dragon: {
  24808. height: math.unit(40, "feet"),
  24809. name: "Dragon",
  24810. image: {
  24811. source: "./media/characters/layla/dragon.svg",
  24812. extra: 610/535,
  24813. bottom: 367/977
  24814. }
  24815. },
  24816. taur: {
  24817. height: math.unit(30, "feet"),
  24818. name: "Taur",
  24819. image: {
  24820. source: "./media/characters/layla/taur.svg",
  24821. extra: 1268/1199,
  24822. bottom: 112/1380
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Micro",
  24829. height: math.unit(1, "inch")
  24830. },
  24831. {
  24832. name: "Small",
  24833. height: math.unit(1, "foot")
  24834. },
  24835. {
  24836. name: "Normal",
  24837. height: math.unit(2 + 6 / 12, "feet"),
  24838. default: true
  24839. },
  24840. {
  24841. name: "Macro",
  24842. height: math.unit(200, "feet")
  24843. },
  24844. {
  24845. name: "Megamacro",
  24846. height: math.unit(1000, "miles")
  24847. },
  24848. {
  24849. name: "Planetary",
  24850. height: math.unit(8000, "miles")
  24851. },
  24852. {
  24853. name: "True Layla",
  24854. height: math.unit(200000 * 7, "multiverses")
  24855. },
  24856. ]
  24857. ))
  24858. characterMakers.push(() => makeCharacter(
  24859. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24860. {
  24861. back: {
  24862. height: math.unit(10.5, "feet"),
  24863. weight: math.unit(800, "lb"),
  24864. name: "Back",
  24865. image: {
  24866. source: "./media/characters/knox/back.svg",
  24867. extra: 1486 / 1089,
  24868. bottom: 107 / 1601.4
  24869. }
  24870. },
  24871. side: {
  24872. height: math.unit(10.5, "feet"),
  24873. weight: math.unit(800, "lb"),
  24874. name: "Side",
  24875. image: {
  24876. source: "./media/characters/knox/side.svg",
  24877. extra: 244 / 218,
  24878. bottom: 14 / 260
  24879. }
  24880. },
  24881. },
  24882. [
  24883. {
  24884. name: "Compact",
  24885. height: math.unit(10.5, "feet"),
  24886. default: true
  24887. },
  24888. {
  24889. name: "Dynamax",
  24890. height: math.unit(210, "feet")
  24891. },
  24892. {
  24893. name: "Full Macro",
  24894. height: math.unit(850, "feet")
  24895. },
  24896. ]
  24897. ))
  24898. characterMakers.push(() => makeCharacter(
  24899. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24900. {
  24901. front: {
  24902. height: math.unit(28, "feet"),
  24903. weight: math.unit(10500, "lb"),
  24904. name: "Front",
  24905. image: {
  24906. source: "./media/characters/kayda/front.svg",
  24907. extra: 1536 / 1428,
  24908. bottom: 68.7 / 1603
  24909. }
  24910. },
  24911. back: {
  24912. height: math.unit(28, "feet"),
  24913. weight: math.unit(10500, "lb"),
  24914. name: "Back",
  24915. image: {
  24916. source: "./media/characters/kayda/back.svg",
  24917. extra: 1557 / 1464,
  24918. bottom: 39.5 / 1597.49
  24919. }
  24920. },
  24921. dick: {
  24922. height: math.unit(3.858, "feet"),
  24923. name: "Dick",
  24924. image: {
  24925. source: "./media/characters/kayda/dick.svg"
  24926. }
  24927. },
  24928. },
  24929. [
  24930. {
  24931. name: "Macro",
  24932. height: math.unit(28, "feet"),
  24933. default: true
  24934. },
  24935. ]
  24936. ))
  24937. characterMakers.push(() => makeCharacter(
  24938. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24939. {
  24940. front: {
  24941. height: math.unit(10 + 11 / 12, "feet"),
  24942. weight: math.unit(1400, "lb"),
  24943. name: "Front",
  24944. image: {
  24945. source: "./media/characters/brian/front.svg",
  24946. extra: 737 / 692,
  24947. bottom: 55.4 / 785
  24948. }
  24949. },
  24950. },
  24951. [
  24952. {
  24953. name: "Normal",
  24954. height: math.unit(10 + 11 / 12, "feet"),
  24955. default: true
  24956. },
  24957. ]
  24958. ))
  24959. characterMakers.push(() => makeCharacter(
  24960. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24961. {
  24962. front: {
  24963. height: math.unit(5 + 8 / 12, "feet"),
  24964. weight: math.unit(140, "lb"),
  24965. name: "Front",
  24966. image: {
  24967. source: "./media/characters/khemri/front.svg",
  24968. extra: 4780 / 4059,
  24969. bottom: 80.1 / 4859.25
  24970. }
  24971. },
  24972. },
  24973. [
  24974. {
  24975. name: "Micro",
  24976. height: math.unit(6, "inches")
  24977. },
  24978. {
  24979. name: "Normal",
  24980. height: math.unit(5 + 8 / 12, "feet"),
  24981. default: true
  24982. },
  24983. ]
  24984. ))
  24985. characterMakers.push(() => makeCharacter(
  24986. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24987. {
  24988. front: {
  24989. height: math.unit(13, "feet"),
  24990. weight: math.unit(1700, "lb"),
  24991. name: "Front",
  24992. image: {
  24993. source: "./media/characters/felix-braveheart/front.svg",
  24994. extra: 1222 / 1157,
  24995. bottom: 53.2 / 1280
  24996. }
  24997. },
  24998. back: {
  24999. height: math.unit(13, "feet"),
  25000. weight: math.unit(1700, "lb"),
  25001. name: "Back",
  25002. image: {
  25003. source: "./media/characters/felix-braveheart/back.svg",
  25004. extra: 1277 / 1203,
  25005. bottom: 50.2 / 1327
  25006. }
  25007. },
  25008. feral: {
  25009. height: math.unit(6, "feet"),
  25010. weight: math.unit(400, "lb"),
  25011. name: "Feral",
  25012. image: {
  25013. source: "./media/characters/felix-braveheart/feral.svg",
  25014. extra: 682 / 625,
  25015. bottom: 6.9 / 688
  25016. }
  25017. },
  25018. },
  25019. [
  25020. {
  25021. name: "Normal",
  25022. height: math.unit(13, "feet"),
  25023. default: true
  25024. },
  25025. ]
  25026. ))
  25027. characterMakers.push(() => makeCharacter(
  25028. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25029. {
  25030. side: {
  25031. height: math.unit(5 + 11 / 12, "feet"),
  25032. weight: math.unit(1400, "lb"),
  25033. name: "Side",
  25034. image: {
  25035. source: "./media/characters/shadow-blade/side.svg",
  25036. extra: 1726 / 1267,
  25037. bottom: 58.4 / 1785
  25038. }
  25039. },
  25040. },
  25041. [
  25042. {
  25043. name: "Normal",
  25044. height: math.unit(5 + 11 / 12, "feet"),
  25045. default: true
  25046. },
  25047. ]
  25048. ))
  25049. characterMakers.push(() => makeCharacter(
  25050. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25051. {
  25052. front: {
  25053. height: math.unit(1 + 6 / 12, "feet"),
  25054. weight: math.unit(25, "lb"),
  25055. name: "Front",
  25056. image: {
  25057. source: "./media/characters/karla-halldor/front.svg",
  25058. extra: 1459 / 1383,
  25059. bottom: 12 / 1472
  25060. }
  25061. },
  25062. },
  25063. [
  25064. {
  25065. name: "Normal",
  25066. height: math.unit(1 + 6 / 12, "feet"),
  25067. default: true
  25068. },
  25069. ]
  25070. ))
  25071. characterMakers.push(() => makeCharacter(
  25072. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25073. {
  25074. front: {
  25075. height: math.unit(6 + 2 / 12, "feet"),
  25076. weight: math.unit(160, "lb"),
  25077. name: "Front",
  25078. image: {
  25079. source: "./media/characters/ariam/front.svg",
  25080. extra: 1073/976,
  25081. bottom: 52/1125
  25082. }
  25083. },
  25084. back: {
  25085. height: math.unit(6 + 2/12, "feet"),
  25086. weight: math.unit(160, "lb"),
  25087. name: "Back",
  25088. image: {
  25089. source: "./media/characters/ariam/back.svg",
  25090. extra: 1103/1023,
  25091. bottom: 9/1112
  25092. }
  25093. },
  25094. dressed: {
  25095. height: math.unit(6 + 2/12, "feet"),
  25096. weight: math.unit(160, "lb"),
  25097. name: "Dressed",
  25098. image: {
  25099. source: "./media/characters/ariam/dressed.svg",
  25100. extra: 1099/1009,
  25101. bottom: 25/1124
  25102. }
  25103. },
  25104. squatting: {
  25105. height: math.unit(4.1, "feet"),
  25106. weight: math.unit(160, "lb"),
  25107. name: "Squatting",
  25108. image: {
  25109. source: "./media/characters/ariam/squatting.svg",
  25110. extra: 2617 / 2112,
  25111. bottom: 61.2 / 2681,
  25112. }
  25113. },
  25114. },
  25115. [
  25116. {
  25117. name: "Normal",
  25118. height: math.unit(6 + 2 / 12, "feet"),
  25119. default: true
  25120. },
  25121. {
  25122. name: "Normal+",
  25123. height: math.unit(4, "meters")
  25124. },
  25125. {
  25126. name: "Macro",
  25127. height: math.unit(50, "meters")
  25128. },
  25129. {
  25130. name: "Macro+",
  25131. height: math.unit(100, "meters")
  25132. },
  25133. {
  25134. name: "Megamacro",
  25135. height: math.unit(20, "km")
  25136. },
  25137. {
  25138. name: "Caretaker",
  25139. height: math.unit(444, "megameters")
  25140. },
  25141. ]
  25142. ))
  25143. characterMakers.push(() => makeCharacter(
  25144. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25145. {
  25146. front: {
  25147. height: math.unit(1.67, "meters"),
  25148. weight: math.unit(140, "lb"),
  25149. name: "Front",
  25150. image: {
  25151. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25152. extra: 438 / 410,
  25153. bottom: 0.75 / 439
  25154. }
  25155. },
  25156. },
  25157. [
  25158. {
  25159. name: "Shrunken",
  25160. height: math.unit(7.6, "cm")
  25161. },
  25162. {
  25163. name: "Human Scale",
  25164. height: math.unit(1.67, "meters")
  25165. },
  25166. {
  25167. name: "Wolxi Scale",
  25168. height: math.unit(36.7, "meters"),
  25169. default: true
  25170. },
  25171. ]
  25172. ))
  25173. characterMakers.push(() => makeCharacter(
  25174. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25175. {
  25176. front: {
  25177. height: math.unit(1.73, "meters"),
  25178. weight: math.unit(240, "lb"),
  25179. name: "Front",
  25180. image: {
  25181. source: "./media/characters/izue-two-mothers/front.svg",
  25182. extra: 469 / 437,
  25183. bottom: 1.24 / 470.6
  25184. }
  25185. },
  25186. },
  25187. [
  25188. {
  25189. name: "Shrunken",
  25190. height: math.unit(7.86, "cm")
  25191. },
  25192. {
  25193. name: "Human Scale",
  25194. height: math.unit(1.73, "meters")
  25195. },
  25196. {
  25197. name: "Wolxi Scale",
  25198. height: math.unit(38, "meters"),
  25199. default: true
  25200. },
  25201. ]
  25202. ))
  25203. characterMakers.push(() => makeCharacter(
  25204. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25205. {
  25206. front: {
  25207. height: math.unit(1.55, "meters"),
  25208. weight: math.unit(120, "lb"),
  25209. name: "Front",
  25210. image: {
  25211. source: "./media/characters/teeku-love-shack/front.svg",
  25212. extra: 387 / 362,
  25213. bottom: 1.51 / 388
  25214. }
  25215. },
  25216. },
  25217. [
  25218. {
  25219. name: "Shrunken",
  25220. height: math.unit(7, "cm")
  25221. },
  25222. {
  25223. name: "Human Scale",
  25224. height: math.unit(1.55, "meters")
  25225. },
  25226. {
  25227. name: "Wolxi Scale",
  25228. height: math.unit(34.1, "meters"),
  25229. default: true
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(1.83, "meters"),
  25238. weight: math.unit(135, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/dejma-the-red/front.svg",
  25242. extra: 480 / 458,
  25243. bottom: 1.8 / 482
  25244. }
  25245. },
  25246. },
  25247. [
  25248. {
  25249. name: "Shrunken",
  25250. height: math.unit(8.3, "cm")
  25251. },
  25252. {
  25253. name: "Human Scale",
  25254. height: math.unit(1.83, "meters")
  25255. },
  25256. {
  25257. name: "Wolxi Scale",
  25258. height: math.unit(40, "meters"),
  25259. default: true
  25260. },
  25261. ]
  25262. ))
  25263. characterMakers.push(() => makeCharacter(
  25264. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25265. {
  25266. front: {
  25267. height: math.unit(1.78, "meters"),
  25268. weight: math.unit(65, "kg"),
  25269. name: "Front",
  25270. image: {
  25271. source: "./media/characters/aki/front.svg",
  25272. extra: 452 / 415
  25273. }
  25274. },
  25275. frontNsfw: {
  25276. height: math.unit(1.78, "meters"),
  25277. weight: math.unit(65, "kg"),
  25278. name: "Front (NSFW)",
  25279. image: {
  25280. source: "./media/characters/aki/front-nsfw.svg",
  25281. extra: 452 / 415
  25282. }
  25283. },
  25284. back: {
  25285. height: math.unit(1.78, "meters"),
  25286. weight: math.unit(65, "kg"),
  25287. name: "Back",
  25288. image: {
  25289. source: "./media/characters/aki/back.svg",
  25290. extra: 452 / 415
  25291. }
  25292. },
  25293. rump: {
  25294. height: math.unit(2.05, "feet"),
  25295. name: "Rump",
  25296. image: {
  25297. source: "./media/characters/aki/rump.svg"
  25298. }
  25299. },
  25300. dick: {
  25301. height: math.unit(0.95, "feet"),
  25302. name: "Dick",
  25303. image: {
  25304. source: "./media/characters/aki/dick.svg"
  25305. }
  25306. },
  25307. },
  25308. [
  25309. {
  25310. name: "Micro",
  25311. height: math.unit(15, "cm")
  25312. },
  25313. {
  25314. name: "Normal",
  25315. height: math.unit(178, "cm"),
  25316. default: true
  25317. },
  25318. {
  25319. name: "Macro",
  25320. height: math.unit(214, "m")
  25321. },
  25322. {
  25323. name: "Macro+",
  25324. height: math.unit(534, "m")
  25325. },
  25326. ]
  25327. ))
  25328. characterMakers.push(() => makeCharacter(
  25329. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25330. {
  25331. front: {
  25332. height: math.unit(5 + 5 / 12, "feet"),
  25333. weight: math.unit(120, "lb"),
  25334. name: "Front",
  25335. image: {
  25336. source: "./media/characters/ari/front.svg",
  25337. extra: 1550/1471,
  25338. bottom: 39/1589
  25339. }
  25340. },
  25341. },
  25342. [
  25343. {
  25344. name: "Normal",
  25345. height: math.unit(5 + 5 / 12, "feet")
  25346. },
  25347. {
  25348. name: "Macro",
  25349. height: math.unit(100, "feet"),
  25350. default: true
  25351. },
  25352. {
  25353. name: "Megamacro",
  25354. height: math.unit(100, "miles")
  25355. },
  25356. {
  25357. name: "Gigamacro",
  25358. height: math.unit(80000, "miles")
  25359. },
  25360. ]
  25361. ))
  25362. characterMakers.push(() => makeCharacter(
  25363. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25364. {
  25365. side: {
  25366. height: math.unit(9, "feet"),
  25367. weight: math.unit(400, "kg"),
  25368. name: "Side",
  25369. image: {
  25370. source: "./media/characters/bolt/side.svg",
  25371. extra: 1126 / 896,
  25372. bottom: 60 / 1187.3,
  25373. }
  25374. },
  25375. },
  25376. [
  25377. {
  25378. name: "Micro",
  25379. height: math.unit(5, "inches")
  25380. },
  25381. {
  25382. name: "Normal",
  25383. height: math.unit(9, "feet"),
  25384. default: true
  25385. },
  25386. {
  25387. name: "Macro",
  25388. height: math.unit(700, "feet")
  25389. },
  25390. {
  25391. name: "Max Size",
  25392. height: math.unit(1.52e22, "yottameters")
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25398. {
  25399. front: {
  25400. height: math.unit(4.3, "meters"),
  25401. weight: math.unit(3, "tons"),
  25402. name: "Front",
  25403. image: {
  25404. source: "./media/characters/draekon-sylviar/front.svg",
  25405. extra: 2072/1512,
  25406. bottom: 74/2146
  25407. }
  25408. },
  25409. back: {
  25410. height: math.unit(4.3, "meters"),
  25411. weight: math.unit(3, "tons"),
  25412. name: "Back",
  25413. image: {
  25414. source: "./media/characters/draekon-sylviar/back.svg",
  25415. extra: 1639/1483,
  25416. bottom: 41/1680
  25417. }
  25418. },
  25419. feral: {
  25420. height: math.unit(1.15, "meters"),
  25421. weight: math.unit(3, "tons"),
  25422. name: "Feral",
  25423. image: {
  25424. source: "./media/characters/draekon-sylviar/feral.svg",
  25425. extra: 1033/395,
  25426. bottom: 130/1163
  25427. }
  25428. },
  25429. maw: {
  25430. height: math.unit(1.3, "meters"),
  25431. name: "Maw",
  25432. image: {
  25433. source: "./media/characters/draekon-sylviar/maw.svg"
  25434. }
  25435. },
  25436. mawSeparated: {
  25437. height: math.unit(1.53, "meters"),
  25438. name: "Separated Maw",
  25439. image: {
  25440. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25441. }
  25442. },
  25443. tail: {
  25444. height: math.unit(1.15, "meters"),
  25445. name: "Tail",
  25446. image: {
  25447. source: "./media/characters/draekon-sylviar/tail.svg"
  25448. }
  25449. },
  25450. tailDick: {
  25451. height: math.unit(1.15, "meters"),
  25452. name: "Tail (Dick)",
  25453. image: {
  25454. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25455. }
  25456. },
  25457. tailDickSeparated: {
  25458. height: math.unit(1.19, "meters"),
  25459. name: "Tail (Separated Dick)",
  25460. image: {
  25461. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25462. }
  25463. },
  25464. slit: {
  25465. height: math.unit(1, "meters"),
  25466. name: "Slit",
  25467. image: {
  25468. source: "./media/characters/draekon-sylviar/slit.svg"
  25469. }
  25470. },
  25471. dick: {
  25472. height: math.unit(1.15, "meters"),
  25473. name: "Dick",
  25474. image: {
  25475. source: "./media/characters/draekon-sylviar/dick.svg"
  25476. }
  25477. },
  25478. dickSeparated: {
  25479. height: math.unit(1.1, "meters"),
  25480. name: "Separated Dick",
  25481. image: {
  25482. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25483. }
  25484. },
  25485. sheath: {
  25486. height: math.unit(1.15, "meters"),
  25487. name: "Sheath",
  25488. image: {
  25489. source: "./media/characters/draekon-sylviar/sheath.svg"
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Small",
  25496. height: math.unit(4.53 / 2, "meters"),
  25497. default: true
  25498. },
  25499. {
  25500. name: "Normal",
  25501. height: math.unit(4.53, "meters"),
  25502. default: true
  25503. },
  25504. {
  25505. name: "Large",
  25506. height: math.unit(4.53 * 2, "meters"),
  25507. },
  25508. ]
  25509. ))
  25510. characterMakers.push(() => makeCharacter(
  25511. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25512. {
  25513. front: {
  25514. height: math.unit(6 + 2 / 12, "feet"),
  25515. weight: math.unit(180, "lb"),
  25516. name: "Front",
  25517. image: {
  25518. source: "./media/characters/brawler/front.svg",
  25519. extra: 3301 / 3027,
  25520. bottom: 138 / 3439
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Normal",
  25527. height: math.unit(6 + 2 / 12, "feet"),
  25528. default: true
  25529. },
  25530. ]
  25531. ))
  25532. characterMakers.push(() => makeCharacter(
  25533. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25534. {
  25535. front: {
  25536. height: math.unit(11, "feet"),
  25537. weight: math.unit(1000, "lb"),
  25538. name: "Front",
  25539. image: {
  25540. source: "./media/characters/alex/front.svg",
  25541. bottom: 44.5 / 620
  25542. }
  25543. },
  25544. },
  25545. [
  25546. {
  25547. name: "Micro",
  25548. height: math.unit(5, "inches")
  25549. },
  25550. {
  25551. name: "Normal",
  25552. height: math.unit(11, "feet"),
  25553. default: true
  25554. },
  25555. {
  25556. name: "Macro",
  25557. height: math.unit(9.5e9, "feet")
  25558. },
  25559. {
  25560. name: "Max Size",
  25561. height: math.unit(1.4e283, "yottameters")
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25567. {
  25568. female: {
  25569. height: math.unit(29.9, "m"),
  25570. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25571. name: "Female",
  25572. image: {
  25573. source: "./media/characters/zenari/female.svg",
  25574. extra: 3281.6 / 3217,
  25575. bottom: 72.2 / 3353
  25576. }
  25577. },
  25578. male: {
  25579. height: math.unit(27.7, "m"),
  25580. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25581. name: "Male",
  25582. image: {
  25583. source: "./media/characters/zenari/male.svg",
  25584. extra: 3008 / 2991,
  25585. bottom: 54.6 / 3069
  25586. }
  25587. },
  25588. },
  25589. [
  25590. {
  25591. name: "Macro",
  25592. height: math.unit(29.7, "meters"),
  25593. default: true
  25594. },
  25595. ]
  25596. ))
  25597. characterMakers.push(() => makeCharacter(
  25598. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25599. {
  25600. female: {
  25601. height: math.unit(23.8, "m"),
  25602. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25603. name: "Female",
  25604. image: {
  25605. source: "./media/characters/mactarian/female.svg",
  25606. extra: 2662 / 2569,
  25607. bottom: 73 / 2736
  25608. }
  25609. },
  25610. male: {
  25611. height: math.unit(23.8, "m"),
  25612. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25613. name: "Male",
  25614. image: {
  25615. source: "./media/characters/mactarian/male.svg",
  25616. extra: 2673 / 2600,
  25617. bottom: 76 / 2750
  25618. }
  25619. },
  25620. },
  25621. [
  25622. {
  25623. name: "Macro",
  25624. height: math.unit(23.8, "meters"),
  25625. default: true
  25626. },
  25627. ]
  25628. ))
  25629. characterMakers.push(() => makeCharacter(
  25630. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25631. {
  25632. female: {
  25633. height: math.unit(19.3, "m"),
  25634. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25635. name: "Female",
  25636. image: {
  25637. source: "./media/characters/umok/female.svg",
  25638. extra: 2186 / 2078,
  25639. bottom: 87 / 2277
  25640. }
  25641. },
  25642. male: {
  25643. height: math.unit(19.5, "m"),
  25644. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25645. name: "Male",
  25646. image: {
  25647. source: "./media/characters/umok/male.svg",
  25648. extra: 2233 / 2140,
  25649. bottom: 24.4 / 2258
  25650. }
  25651. },
  25652. },
  25653. [
  25654. {
  25655. name: "Macro",
  25656. height: math.unit(19.3, "meters"),
  25657. default: true
  25658. },
  25659. ]
  25660. ))
  25661. characterMakers.push(() => makeCharacter(
  25662. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25663. {
  25664. female: {
  25665. height: math.unit(26.15, "m"),
  25666. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25667. name: "Female",
  25668. image: {
  25669. source: "./media/characters/joraxian/female.svg",
  25670. extra: 2912 / 2824,
  25671. bottom: 36 / 2956
  25672. }
  25673. },
  25674. male: {
  25675. height: math.unit(25.4, "m"),
  25676. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25677. name: "Male",
  25678. image: {
  25679. source: "./media/characters/joraxian/male.svg",
  25680. extra: 2877 / 2721,
  25681. bottom: 82 / 2967
  25682. }
  25683. },
  25684. },
  25685. [
  25686. {
  25687. name: "Macro",
  25688. height: math.unit(26.15, "meters"),
  25689. default: true
  25690. },
  25691. ]
  25692. ))
  25693. characterMakers.push(() => makeCharacter(
  25694. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25695. {
  25696. female: {
  25697. height: math.unit(21.6, "m"),
  25698. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25699. name: "Female",
  25700. image: {
  25701. source: "./media/characters/sthara/female.svg",
  25702. extra: 2516 / 2347,
  25703. bottom: 21.5 / 2537
  25704. }
  25705. },
  25706. male: {
  25707. height: math.unit(24, "m"),
  25708. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25709. name: "Male",
  25710. image: {
  25711. source: "./media/characters/sthara/male.svg",
  25712. extra: 2732 / 2607,
  25713. bottom: 23 / 2732
  25714. }
  25715. },
  25716. },
  25717. [
  25718. {
  25719. name: "Macro",
  25720. height: math.unit(21.6, "meters"),
  25721. default: true
  25722. },
  25723. ]
  25724. ))
  25725. characterMakers.push(() => makeCharacter(
  25726. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25727. {
  25728. front: {
  25729. height: math.unit(6 + 4 / 12, "feet"),
  25730. weight: math.unit(175, "lb"),
  25731. name: "Front",
  25732. image: {
  25733. source: "./media/characters/luka-bryzant/front.svg",
  25734. extra: 311 / 289,
  25735. bottom: 4 / 315
  25736. }
  25737. },
  25738. back: {
  25739. height: math.unit(6 + 4 / 12, "feet"),
  25740. weight: math.unit(175, "lb"),
  25741. name: "Back",
  25742. image: {
  25743. source: "./media/characters/luka-bryzant/back.svg",
  25744. extra: 311 / 289,
  25745. bottom: 3.8 / 313.7
  25746. }
  25747. },
  25748. },
  25749. [
  25750. {
  25751. name: "Micro",
  25752. height: math.unit(10, "inches")
  25753. },
  25754. {
  25755. name: "Normal",
  25756. height: math.unit(6 + 4 / 12, "feet"),
  25757. default: true
  25758. },
  25759. {
  25760. name: "Large",
  25761. height: math.unit(12, "feet")
  25762. },
  25763. ]
  25764. ))
  25765. characterMakers.push(() => makeCharacter(
  25766. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25767. {
  25768. front: {
  25769. height: math.unit(5 + 7 / 12, "feet"),
  25770. weight: math.unit(185, "lb"),
  25771. name: "Front",
  25772. image: {
  25773. source: "./media/characters/aman-aquila/front.svg",
  25774. extra: 1013 / 976,
  25775. bottom: 45.6 / 1057
  25776. }
  25777. },
  25778. side: {
  25779. height: math.unit(5 + 7 / 12, "feet"),
  25780. weight: math.unit(185, "lb"),
  25781. name: "Side",
  25782. image: {
  25783. source: "./media/characters/aman-aquila/side.svg",
  25784. extra: 1054 / 1011,
  25785. bottom: 15 / 1070
  25786. }
  25787. },
  25788. back: {
  25789. height: math.unit(5 + 7 / 12, "feet"),
  25790. weight: math.unit(185, "lb"),
  25791. name: "Back",
  25792. image: {
  25793. source: "./media/characters/aman-aquila/back.svg",
  25794. extra: 1026 / 970,
  25795. bottom: 12 / 1039
  25796. }
  25797. },
  25798. head: {
  25799. height: math.unit(1.211, "feet"),
  25800. name: "Head",
  25801. image: {
  25802. source: "./media/characters/aman-aquila/head.svg",
  25803. }
  25804. },
  25805. },
  25806. [
  25807. {
  25808. name: "Minimicro",
  25809. height: math.unit(0.057, "inches")
  25810. },
  25811. {
  25812. name: "Micro",
  25813. height: math.unit(7, "inches")
  25814. },
  25815. {
  25816. name: "Mini",
  25817. height: math.unit(3 + 7 / 12, "feet")
  25818. },
  25819. {
  25820. name: "Normal",
  25821. height: math.unit(5 + 7 / 12, "feet"),
  25822. default: true
  25823. },
  25824. {
  25825. name: "Macro",
  25826. height: math.unit(157 + 7 / 12, "feet")
  25827. },
  25828. {
  25829. name: "Megamacro",
  25830. height: math.unit(1557 + 7 / 12, "feet")
  25831. },
  25832. {
  25833. name: "Gigamacro",
  25834. height: math.unit(15557 + 7 / 12, "feet")
  25835. },
  25836. ]
  25837. ))
  25838. characterMakers.push(() => makeCharacter(
  25839. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25840. {
  25841. front: {
  25842. height: math.unit(3 + 2 / 12, "inches"),
  25843. weight: math.unit(0.3, "ounces"),
  25844. name: "Front",
  25845. image: {
  25846. source: "./media/characters/hiphae/front.svg",
  25847. extra: 1931 / 1683,
  25848. bottom: 24 / 1955
  25849. }
  25850. },
  25851. },
  25852. [
  25853. {
  25854. name: "Normal",
  25855. height: math.unit(3 + 1 / 2, "inches"),
  25856. default: true
  25857. },
  25858. ]
  25859. ))
  25860. characterMakers.push(() => makeCharacter(
  25861. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25862. {
  25863. front: {
  25864. height: math.unit(5 + 10 / 12, "feet"),
  25865. weight: math.unit(165, "lb"),
  25866. name: "Front",
  25867. image: {
  25868. source: "./media/characters/nicky/front.svg",
  25869. extra: 3144 / 2886,
  25870. bottom: 45.6 / 3192
  25871. }
  25872. },
  25873. back: {
  25874. height: math.unit(5 + 10 / 12, "feet"),
  25875. weight: math.unit(165, "lb"),
  25876. name: "Back",
  25877. image: {
  25878. source: "./media/characters/nicky/back.svg",
  25879. extra: 3055 / 2804,
  25880. bottom: 28.4 / 3087
  25881. }
  25882. },
  25883. frontclothed: {
  25884. height: math.unit(5 + 10 / 12, "feet"),
  25885. weight: math.unit(165, "lb"),
  25886. name: "Front-clothed",
  25887. image: {
  25888. source: "./media/characters/nicky/front-clothed.svg",
  25889. extra: 3184.9 / 2926.9,
  25890. bottom: 86.5 / 3239.9
  25891. }
  25892. },
  25893. foot: {
  25894. height: math.unit(1.16, "feet"),
  25895. name: "Foot",
  25896. image: {
  25897. source: "./media/characters/nicky/foot.svg"
  25898. }
  25899. },
  25900. feet: {
  25901. height: math.unit(1.34, "feet"),
  25902. name: "Feet",
  25903. image: {
  25904. source: "./media/characters/nicky/feet.svg"
  25905. }
  25906. },
  25907. maw: {
  25908. height: math.unit(0.9, "feet"),
  25909. name: "Maw",
  25910. image: {
  25911. source: "./media/characters/nicky/maw.svg"
  25912. }
  25913. },
  25914. },
  25915. [
  25916. {
  25917. name: "Normal",
  25918. height: math.unit(5 + 10 / 12, "feet"),
  25919. default: true
  25920. },
  25921. {
  25922. name: "Macro",
  25923. height: math.unit(60, "feet")
  25924. },
  25925. {
  25926. name: "Megamacro",
  25927. height: math.unit(1, "mile")
  25928. },
  25929. ]
  25930. ))
  25931. characterMakers.push(() => makeCharacter(
  25932. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25933. {
  25934. side: {
  25935. height: math.unit(10, "feet"),
  25936. weight: math.unit(600, "lb"),
  25937. name: "Side",
  25938. image: {
  25939. source: "./media/characters/blair/side.svg",
  25940. bottom: 16.6 / 475,
  25941. extra: 458 / 431
  25942. }
  25943. },
  25944. },
  25945. [
  25946. {
  25947. name: "Micro",
  25948. height: math.unit(8, "inches")
  25949. },
  25950. {
  25951. name: "Normal",
  25952. height: math.unit(10, "feet"),
  25953. default: true
  25954. },
  25955. {
  25956. name: "Macro",
  25957. height: math.unit(180, "feet")
  25958. },
  25959. ]
  25960. ))
  25961. characterMakers.push(() => makeCharacter(
  25962. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25963. {
  25964. front: {
  25965. height: math.unit(5 + 4 / 12, "feet"),
  25966. weight: math.unit(125, "lb"),
  25967. name: "Front",
  25968. image: {
  25969. source: "./media/characters/fisher/front.svg",
  25970. extra: 444 / 390,
  25971. bottom: 2 / 444.8
  25972. }
  25973. },
  25974. },
  25975. [
  25976. {
  25977. name: "Micro",
  25978. height: math.unit(4, "inches")
  25979. },
  25980. {
  25981. name: "Normal",
  25982. height: math.unit(5 + 4 / 12, "feet"),
  25983. default: true
  25984. },
  25985. {
  25986. name: "Macro",
  25987. height: math.unit(100, "feet")
  25988. },
  25989. ]
  25990. ))
  25991. characterMakers.push(() => makeCharacter(
  25992. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25993. {
  25994. front: {
  25995. height: math.unit(6.71, "feet"),
  25996. weight: math.unit(200, "lb"),
  25997. capacity: math.unit(1000000, "people"),
  25998. name: "Front",
  25999. image: {
  26000. source: "./media/characters/gliss/front.svg",
  26001. extra: 2347 / 2231,
  26002. bottom: 113 / 2462
  26003. }
  26004. },
  26005. hammerspaceSize: {
  26006. height: math.unit(6.71 * 717, "feet"),
  26007. weight: math.unit(200, "lb"),
  26008. capacity: math.unit(1000000, "people"),
  26009. name: "Hammerspace Size",
  26010. image: {
  26011. source: "./media/characters/gliss/front.svg",
  26012. extra: 2347 / 2231,
  26013. bottom: 113 / 2462
  26014. }
  26015. },
  26016. },
  26017. [
  26018. {
  26019. name: "Normal",
  26020. height: math.unit(6.71, "feet"),
  26021. default: true
  26022. },
  26023. ]
  26024. ))
  26025. characterMakers.push(() => makeCharacter(
  26026. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26027. {
  26028. side: {
  26029. height: math.unit(1.44, "m"),
  26030. weight: math.unit(80, "kg"),
  26031. name: "Side",
  26032. image: {
  26033. source: "./media/characters/dune-anderson/side.svg",
  26034. bottom: 49 / 1426
  26035. }
  26036. },
  26037. },
  26038. [
  26039. {
  26040. name: "Wolf-sized",
  26041. height: math.unit(1.44, "meters")
  26042. },
  26043. {
  26044. name: "Normal",
  26045. height: math.unit(5.05, "meters"),
  26046. default: true
  26047. },
  26048. {
  26049. name: "Big",
  26050. height: math.unit(14.4, "meters")
  26051. },
  26052. {
  26053. name: "Huge",
  26054. height: math.unit(144, "meters")
  26055. },
  26056. ]
  26057. ))
  26058. characterMakers.push(() => makeCharacter(
  26059. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26060. {
  26061. front: {
  26062. height: math.unit(7, "feet"),
  26063. weight: math.unit(425, "lb"),
  26064. name: "Front",
  26065. image: {
  26066. source: "./media/characters/hind/front.svg",
  26067. extra: 2091 / 1860,
  26068. bottom: 129 / 2220
  26069. }
  26070. },
  26071. back: {
  26072. height: math.unit(7, "feet"),
  26073. weight: math.unit(425, "lb"),
  26074. name: "Back",
  26075. image: {
  26076. source: "./media/characters/hind/back.svg",
  26077. extra: 2091 / 1860,
  26078. bottom: 24.6 / 2309
  26079. }
  26080. },
  26081. tail: {
  26082. height: math.unit(2.8, "feet"),
  26083. name: "Tail",
  26084. image: {
  26085. source: "./media/characters/hind/tail.svg"
  26086. }
  26087. },
  26088. head: {
  26089. height: math.unit(2.55, "feet"),
  26090. name: "Head",
  26091. image: {
  26092. source: "./media/characters/hind/head.svg"
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "XS",
  26099. height: math.unit(0.7, "feet")
  26100. },
  26101. {
  26102. name: "Normal",
  26103. height: math.unit(7, "feet"),
  26104. default: true
  26105. },
  26106. {
  26107. name: "XL",
  26108. height: math.unit(70, "feet")
  26109. },
  26110. ]
  26111. ))
  26112. characterMakers.push(() => makeCharacter(
  26113. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26114. {
  26115. front: {
  26116. height: math.unit(2.1, "meters"),
  26117. weight: math.unit(150, "lb"),
  26118. name: "Front",
  26119. image: {
  26120. source: "./media/characters/tharquench-sizestealer/front.svg",
  26121. extra: 1605/1470,
  26122. bottom: 36/1641
  26123. }
  26124. },
  26125. frontAlt: {
  26126. height: math.unit(2.1, "meters"),
  26127. weight: math.unit(150, "lb"),
  26128. name: "Front (Alt)",
  26129. image: {
  26130. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26131. extra: 2318 / 2063,
  26132. bottom: 93.4 / 2410
  26133. }
  26134. },
  26135. },
  26136. [
  26137. {
  26138. name: "Nano",
  26139. height: math.unit(1, "mm")
  26140. },
  26141. {
  26142. name: "Micro",
  26143. height: math.unit(1, "cm")
  26144. },
  26145. {
  26146. name: "Normal",
  26147. height: math.unit(2.1, "meters"),
  26148. default: true
  26149. },
  26150. ]
  26151. ))
  26152. characterMakers.push(() => makeCharacter(
  26153. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26154. {
  26155. front: {
  26156. height: math.unit(7 + 5 / 12, "feet"),
  26157. weight: math.unit(357, "lb"),
  26158. name: "Front",
  26159. image: {
  26160. source: "./media/characters/solex-draconov/front.svg",
  26161. extra: 1993 / 1865,
  26162. bottom: 117 / 2111
  26163. }
  26164. },
  26165. },
  26166. [
  26167. {
  26168. name: "Natural Height",
  26169. height: math.unit(7 + 5 / 12, "feet"),
  26170. default: true
  26171. },
  26172. {
  26173. name: "Macro",
  26174. height: math.unit(350, "feet")
  26175. },
  26176. {
  26177. name: "Macro+",
  26178. height: math.unit(1000, "feet")
  26179. },
  26180. {
  26181. name: "Megamacro",
  26182. height: math.unit(20, "km")
  26183. },
  26184. {
  26185. name: "Megamacro+",
  26186. height: math.unit(1000, "km")
  26187. },
  26188. {
  26189. name: "Gigamacro",
  26190. height: math.unit(2.5, "Gm")
  26191. },
  26192. {
  26193. name: "Teramacro",
  26194. height: math.unit(15, "Tm")
  26195. },
  26196. {
  26197. name: "Galactic",
  26198. height: math.unit(30, "Zm")
  26199. },
  26200. {
  26201. name: "Universal",
  26202. height: math.unit(21000, "Ym")
  26203. },
  26204. {
  26205. name: "Omniversal",
  26206. height: math.unit(9.861e50, "Ym")
  26207. },
  26208. {
  26209. name: "Existential",
  26210. height: math.unit(1e300, "meters")
  26211. },
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26216. {
  26217. side: {
  26218. height: math.unit(25, "feet"),
  26219. weight: math.unit(90000, "lb"),
  26220. name: "Side",
  26221. image: {
  26222. source: "./media/characters/mandarax/side.svg",
  26223. extra: 614 / 332,
  26224. bottom: 55 / 630
  26225. }
  26226. },
  26227. lounging: {
  26228. height: math.unit(15.4, "feet"),
  26229. weight: math.unit(90000, "lb"),
  26230. name: "Lounging",
  26231. image: {
  26232. source: "./media/characters/mandarax/lounging.svg",
  26233. extra: 817/609,
  26234. bottom: 685/1502
  26235. }
  26236. },
  26237. head: {
  26238. height: math.unit(11.4, "feet"),
  26239. name: "Head",
  26240. image: {
  26241. source: "./media/characters/mandarax/head.svg"
  26242. }
  26243. },
  26244. belly: {
  26245. height: math.unit(33, "feet"),
  26246. name: "Belly",
  26247. capacity: math.unit(500, "people"),
  26248. image: {
  26249. source: "./media/characters/mandarax/belly.svg"
  26250. }
  26251. },
  26252. dick: {
  26253. height: math.unit(8.46, "feet"),
  26254. name: "Dick",
  26255. image: {
  26256. source: "./media/characters/mandarax/dick.svg"
  26257. }
  26258. },
  26259. top: {
  26260. height: math.unit(28, "meters"),
  26261. name: "Top",
  26262. image: {
  26263. source: "./media/characters/mandarax/top.svg"
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Normal",
  26270. height: math.unit(25, "feet"),
  26271. default: true
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26277. {
  26278. front: {
  26279. height: math.unit(5, "feet"),
  26280. weight: math.unit(90, "lb"),
  26281. name: "Front",
  26282. image: {
  26283. source: "./media/characters/pixil/front.svg",
  26284. extra: 2000 / 1618,
  26285. bottom: 12.3 / 2011
  26286. }
  26287. },
  26288. },
  26289. [
  26290. {
  26291. name: "Normal",
  26292. height: math.unit(5, "feet"),
  26293. default: true
  26294. },
  26295. {
  26296. name: "Megamacro",
  26297. height: math.unit(10, "miles"),
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26303. {
  26304. front: {
  26305. height: math.unit(7 + 2 / 12, "feet"),
  26306. weight: math.unit(200, "lb"),
  26307. name: "Front",
  26308. image: {
  26309. source: "./media/characters/angel/front.svg",
  26310. extra: 1830 / 1737,
  26311. bottom: 22.6 / 1854,
  26312. }
  26313. },
  26314. },
  26315. [
  26316. {
  26317. name: "Normal",
  26318. height: math.unit(7 + 2 / 12, "feet"),
  26319. default: true
  26320. },
  26321. {
  26322. name: "Macro",
  26323. height: math.unit(1000, "feet")
  26324. },
  26325. {
  26326. name: "Megamacro",
  26327. height: math.unit(2, "miles")
  26328. },
  26329. {
  26330. name: "Gigamacro",
  26331. height: math.unit(20, "earths")
  26332. },
  26333. ]
  26334. ))
  26335. characterMakers.push(() => makeCharacter(
  26336. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26337. {
  26338. front: {
  26339. height: math.unit(5, "feet"),
  26340. weight: math.unit(180, "lb"),
  26341. name: "Front",
  26342. image: {
  26343. source: "./media/characters/mekana/front.svg",
  26344. extra: 1671 / 1605,
  26345. bottom: 3.5 / 1691
  26346. }
  26347. },
  26348. side: {
  26349. height: math.unit(5, "feet"),
  26350. weight: math.unit(180, "lb"),
  26351. name: "Side",
  26352. image: {
  26353. source: "./media/characters/mekana/side.svg",
  26354. extra: 1671 / 1605,
  26355. bottom: 3.5 / 1691
  26356. }
  26357. },
  26358. back: {
  26359. height: math.unit(5, "feet"),
  26360. weight: math.unit(180, "lb"),
  26361. name: "Back",
  26362. image: {
  26363. source: "./media/characters/mekana/back.svg",
  26364. extra: 1671 / 1605,
  26365. bottom: 3.5 / 1691
  26366. }
  26367. },
  26368. },
  26369. [
  26370. {
  26371. name: "Normal",
  26372. height: math.unit(5, "feet"),
  26373. default: true
  26374. },
  26375. ]
  26376. ))
  26377. characterMakers.push(() => makeCharacter(
  26378. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26379. {
  26380. front: {
  26381. height: math.unit(4 + 6 / 12, "feet"),
  26382. weight: math.unit(80, "lb"),
  26383. name: "Front",
  26384. image: {
  26385. source: "./media/characters/pixie/front.svg",
  26386. extra: 1924 / 1825,
  26387. bottom: 22.4 / 1946
  26388. }
  26389. },
  26390. },
  26391. [
  26392. {
  26393. name: "Normal",
  26394. height: math.unit(4 + 6 / 12, "feet"),
  26395. default: true
  26396. },
  26397. {
  26398. name: "Macro",
  26399. height: math.unit(40, "feet")
  26400. },
  26401. ]
  26402. ))
  26403. characterMakers.push(() => makeCharacter(
  26404. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26405. {
  26406. front: {
  26407. height: math.unit(2.1, "meters"),
  26408. weight: math.unit(200, "lb"),
  26409. name: "Front",
  26410. image: {
  26411. source: "./media/characters/the-lascivious/front.svg",
  26412. extra: 1 / 0.893,
  26413. bottom: 3.5 / 573.7
  26414. }
  26415. },
  26416. },
  26417. [
  26418. {
  26419. name: "Human Scale",
  26420. height: math.unit(2.1, "meters")
  26421. },
  26422. {
  26423. name: "Wolxi Scale",
  26424. height: math.unit(46.2, "m"),
  26425. default: true
  26426. },
  26427. {
  26428. name: "Boinker of Buildings",
  26429. height: math.unit(10, "km")
  26430. },
  26431. {
  26432. name: "Shagger of Skyscrapers",
  26433. height: math.unit(40, "km")
  26434. },
  26435. {
  26436. name: "Banger of Boroughs",
  26437. height: math.unit(4000, "km")
  26438. },
  26439. {
  26440. name: "Screwer of States",
  26441. height: math.unit(100000, "km")
  26442. },
  26443. {
  26444. name: "Pounder of Planets",
  26445. height: math.unit(2000000, "km")
  26446. },
  26447. ]
  26448. ))
  26449. characterMakers.push(() => makeCharacter(
  26450. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26451. {
  26452. front: {
  26453. height: math.unit(6, "feet"),
  26454. weight: math.unit(150, "lb"),
  26455. name: "Front",
  26456. image: {
  26457. source: "./media/characters/aj/front.svg",
  26458. extra: 2039 / 1562,
  26459. bottom: 40 / 2079
  26460. }
  26461. },
  26462. },
  26463. [
  26464. {
  26465. name: "Normal",
  26466. height: math.unit(11 + 6 / 12, "feet"),
  26467. default: true
  26468. },
  26469. {
  26470. name: "Megamacro",
  26471. height: math.unit(60, "megameters")
  26472. },
  26473. ]
  26474. ))
  26475. characterMakers.push(() => makeCharacter(
  26476. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26477. {
  26478. side: {
  26479. height: math.unit(31 + 8 / 12, "feet"),
  26480. weight: math.unit(75000, "kg"),
  26481. name: "Side",
  26482. image: {
  26483. source: "./media/characters/koros/side.svg",
  26484. extra: 1442 / 1297,
  26485. bottom: 122.7 / 1562
  26486. }
  26487. },
  26488. dicksKingsCrown: {
  26489. height: math.unit(6, "feet"),
  26490. name: "Dicks (King's Crown)",
  26491. image: {
  26492. source: "./media/characters/koros/dicks-kings-crown.svg"
  26493. }
  26494. },
  26495. dicksTailSet: {
  26496. height: math.unit(3, "feet"),
  26497. name: "Dicks (Tail Set)",
  26498. image: {
  26499. source: "./media/characters/koros/dicks-tail-set.svg"
  26500. }
  26501. },
  26502. dickCumming: {
  26503. height: math.unit(7.98, "feet"),
  26504. name: "Dick (Cumming)",
  26505. image: {
  26506. source: "./media/characters/koros/dick-cumming.svg"
  26507. }
  26508. },
  26509. dicksBack: {
  26510. height: math.unit(5.9, "feet"),
  26511. name: "Dicks (Back)",
  26512. image: {
  26513. source: "./media/characters/koros/dicks-back.svg"
  26514. }
  26515. },
  26516. dicksFront: {
  26517. height: math.unit(3.72, "feet"),
  26518. name: "Dicks (Front)",
  26519. image: {
  26520. source: "./media/characters/koros/dicks-front.svg"
  26521. }
  26522. },
  26523. dicksPeeking: {
  26524. height: math.unit(3.0, "feet"),
  26525. name: "Dicks (Peeking)",
  26526. image: {
  26527. source: "./media/characters/koros/dicks-peeking.svg"
  26528. }
  26529. },
  26530. eye: {
  26531. height: math.unit(1.7, "feet"),
  26532. name: "Eye",
  26533. image: {
  26534. source: "./media/characters/koros/eye.svg"
  26535. }
  26536. },
  26537. headFront: {
  26538. height: math.unit(11.69, "feet"),
  26539. name: "Head (Front)",
  26540. image: {
  26541. source: "./media/characters/koros/head-front.svg"
  26542. }
  26543. },
  26544. headSide: {
  26545. height: math.unit(14, "feet"),
  26546. name: "Head (Side)",
  26547. image: {
  26548. source: "./media/characters/koros/head-side.svg"
  26549. }
  26550. },
  26551. leg: {
  26552. height: math.unit(17, "feet"),
  26553. name: "Leg",
  26554. image: {
  26555. source: "./media/characters/koros/leg.svg"
  26556. }
  26557. },
  26558. mawSide: {
  26559. height: math.unit(12.8, "feet"),
  26560. name: "Maw (Side)",
  26561. image: {
  26562. source: "./media/characters/koros/maw-side.svg"
  26563. }
  26564. },
  26565. mawSpitting: {
  26566. height: math.unit(17, "feet"),
  26567. name: "Maw (Spitting)",
  26568. image: {
  26569. source: "./media/characters/koros/maw-spitting.svg"
  26570. }
  26571. },
  26572. slit: {
  26573. height: math.unit(2.8, "feet"),
  26574. name: "Slit",
  26575. image: {
  26576. source: "./media/characters/koros/slit.svg"
  26577. }
  26578. },
  26579. stomach: {
  26580. height: math.unit(6.8, "feet"),
  26581. capacity: math.unit(20, "people"),
  26582. name: "Stomach",
  26583. image: {
  26584. source: "./media/characters/koros/stomach.svg"
  26585. }
  26586. },
  26587. wingspanBottom: {
  26588. height: math.unit(114, "feet"),
  26589. name: "Wingspan (Bottom)",
  26590. image: {
  26591. source: "./media/characters/koros/wingspan-bottom.svg"
  26592. }
  26593. },
  26594. wingspanTop: {
  26595. height: math.unit(104, "feet"),
  26596. name: "Wingspan (Top)",
  26597. image: {
  26598. source: "./media/characters/koros/wingspan-top.svg"
  26599. }
  26600. },
  26601. },
  26602. [
  26603. {
  26604. name: "Normal",
  26605. height: math.unit(31 + 8 / 12, "feet"),
  26606. default: true
  26607. },
  26608. ]
  26609. ))
  26610. characterMakers.push(() => makeCharacter(
  26611. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26612. {
  26613. front: {
  26614. height: math.unit(18 + 5 / 12, "feet"),
  26615. weight: math.unit(3750, "kg"),
  26616. name: "Front",
  26617. image: {
  26618. source: "./media/characters/vexx/front.svg",
  26619. extra: 426 / 396,
  26620. bottom: 31.5 / 458
  26621. }
  26622. },
  26623. maw: {
  26624. height: math.unit(6, "feet"),
  26625. name: "Maw",
  26626. image: {
  26627. source: "./media/characters/vexx/maw.svg"
  26628. }
  26629. },
  26630. },
  26631. [
  26632. {
  26633. name: "Normal",
  26634. height: math.unit(18 + 5 / 12, "feet"),
  26635. default: true
  26636. },
  26637. ]
  26638. ))
  26639. characterMakers.push(() => makeCharacter(
  26640. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26641. {
  26642. front: {
  26643. height: math.unit(17 + 6 / 12, "feet"),
  26644. weight: math.unit(150, "lb"),
  26645. name: "Front",
  26646. image: {
  26647. source: "./media/characters/baadra/front.svg",
  26648. extra: 1694/1553,
  26649. bottom: 179/1873
  26650. }
  26651. },
  26652. frontAlt: {
  26653. height: math.unit(17 + 6 / 12, "feet"),
  26654. weight: math.unit(150, "lb"),
  26655. name: "Front (Alt)",
  26656. image: {
  26657. source: "./media/characters/baadra/front-alt.svg",
  26658. extra: 3137 / 2890,
  26659. bottom: 168.4 / 3305
  26660. }
  26661. },
  26662. back: {
  26663. height: math.unit(17 + 6 / 12, "feet"),
  26664. weight: math.unit(150, "lb"),
  26665. name: "Back",
  26666. image: {
  26667. source: "./media/characters/baadra/back.svg",
  26668. extra: 3142 / 2890,
  26669. bottom: 220 / 3371
  26670. }
  26671. },
  26672. head: {
  26673. height: math.unit(5.45, "feet"),
  26674. name: "Head",
  26675. image: {
  26676. source: "./media/characters/baadra/head.svg"
  26677. }
  26678. },
  26679. headAngry: {
  26680. height: math.unit(4.95, "feet"),
  26681. name: "Head (Angry)",
  26682. image: {
  26683. source: "./media/characters/baadra/head-angry.svg"
  26684. }
  26685. },
  26686. headOpen: {
  26687. height: math.unit(6, "feet"),
  26688. name: "Head (Open)",
  26689. image: {
  26690. source: "./media/characters/baadra/head-open.svg"
  26691. }
  26692. },
  26693. },
  26694. [
  26695. {
  26696. name: "Normal",
  26697. height: math.unit(17 + 6 / 12, "feet"),
  26698. default: true
  26699. },
  26700. ]
  26701. ))
  26702. characterMakers.push(() => makeCharacter(
  26703. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26704. {
  26705. front: {
  26706. height: math.unit(7 + 3 / 12, "feet"),
  26707. weight: math.unit(180, "lb"),
  26708. name: "Front",
  26709. image: {
  26710. source: "./media/characters/juri/front.svg",
  26711. extra: 1401 / 1237,
  26712. bottom: 18.5 / 1418
  26713. }
  26714. },
  26715. side: {
  26716. height: math.unit(7 + 3 / 12, "feet"),
  26717. weight: math.unit(180, "lb"),
  26718. name: "Side",
  26719. image: {
  26720. source: "./media/characters/juri/side.svg",
  26721. extra: 1424 / 1242,
  26722. bottom: 18.5 / 1447
  26723. }
  26724. },
  26725. sitting: {
  26726. height: math.unit(6, "feet"),
  26727. weight: math.unit(180, "lb"),
  26728. name: "Sitting",
  26729. image: {
  26730. source: "./media/characters/juri/sitting.svg",
  26731. extra: 1270 / 1143,
  26732. bottom: 100 / 1343
  26733. }
  26734. },
  26735. back: {
  26736. height: math.unit(7 + 3 / 12, "feet"),
  26737. weight: math.unit(180, "lb"),
  26738. name: "Back",
  26739. image: {
  26740. source: "./media/characters/juri/back.svg",
  26741. extra: 1377 / 1240,
  26742. bottom: 23.7 / 1405
  26743. }
  26744. },
  26745. maw: {
  26746. height: math.unit(2.8, "feet"),
  26747. name: "Maw",
  26748. image: {
  26749. source: "./media/characters/juri/maw.svg"
  26750. }
  26751. },
  26752. stomach: {
  26753. height: math.unit(0.89, "feet"),
  26754. capacity: math.unit(4, "liters"),
  26755. name: "Stomach",
  26756. image: {
  26757. source: "./media/characters/juri/stomach.svg"
  26758. }
  26759. },
  26760. },
  26761. [
  26762. {
  26763. name: "Normal",
  26764. height: math.unit(7 + 3 / 12, "feet"),
  26765. default: true
  26766. },
  26767. ]
  26768. ))
  26769. characterMakers.push(() => makeCharacter(
  26770. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26771. {
  26772. fox: {
  26773. height: math.unit(5 + 6 / 12, "feet"),
  26774. weight: math.unit(140, "lb"),
  26775. name: "Fox",
  26776. image: {
  26777. source: "./media/characters/maxene-sita/fox.svg",
  26778. extra: 146 / 138,
  26779. bottom: 2.1 / 148.19
  26780. }
  26781. },
  26782. foxLaying: {
  26783. height: math.unit(1.70, "feet"),
  26784. weight: math.unit(140, "lb"),
  26785. name: "Fox (Laying)",
  26786. image: {
  26787. source: "./media/characters/maxene-sita/fox-laying.svg",
  26788. extra: 910 / 572,
  26789. bottom: 71 / 981
  26790. }
  26791. },
  26792. kitsune: {
  26793. height: math.unit(10, "feet"),
  26794. weight: math.unit(800, "lb"),
  26795. name: "Kitsune",
  26796. image: {
  26797. source: "./media/characters/maxene-sita/kitsune.svg",
  26798. extra: 185 / 176,
  26799. bottom: 4.7 / 189.9
  26800. }
  26801. },
  26802. hellhound: {
  26803. height: math.unit(10, "feet"),
  26804. weight: math.unit(700, "lb"),
  26805. name: "Hellhound",
  26806. image: {
  26807. source: "./media/characters/maxene-sita/hellhound.svg",
  26808. extra: 1600 / 1545,
  26809. bottom: 81 / 1681
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(5 + 6 / 12, "feet"),
  26817. default: true
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26823. {
  26824. front: {
  26825. height: math.unit(3 + 4 / 12, "feet"),
  26826. weight: math.unit(70, "lb"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/maia/front.svg",
  26830. extra: 227 / 219.5,
  26831. bottom: 40 / 267
  26832. }
  26833. },
  26834. back: {
  26835. height: math.unit(3 + 4 / 12, "feet"),
  26836. weight: math.unit(70, "lb"),
  26837. name: "Back",
  26838. image: {
  26839. source: "./media/characters/maia/back.svg",
  26840. extra: 237 / 225
  26841. }
  26842. },
  26843. },
  26844. [
  26845. {
  26846. name: "Normal",
  26847. height: math.unit(3 + 4 / 12, "feet"),
  26848. default: true
  26849. },
  26850. ]
  26851. ))
  26852. characterMakers.push(() => makeCharacter(
  26853. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26854. {
  26855. front: {
  26856. height: math.unit(5 + 10 / 12, "feet"),
  26857. weight: math.unit(197, "lb"),
  26858. name: "Front",
  26859. image: {
  26860. source: "./media/characters/jabaro/front.svg",
  26861. extra: 225 / 216,
  26862. bottom: 5.06 / 230
  26863. }
  26864. },
  26865. back: {
  26866. height: math.unit(5 + 10 / 12, "feet"),
  26867. weight: math.unit(197, "lb"),
  26868. name: "Back",
  26869. image: {
  26870. source: "./media/characters/jabaro/back.svg",
  26871. extra: 225 / 219,
  26872. bottom: 1.9 / 227
  26873. }
  26874. },
  26875. },
  26876. [
  26877. {
  26878. name: "Normal",
  26879. height: math.unit(5 + 10 / 12, "feet"),
  26880. default: true
  26881. },
  26882. ]
  26883. ))
  26884. characterMakers.push(() => makeCharacter(
  26885. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26886. {
  26887. front: {
  26888. height: math.unit(5 + 8 / 12, "feet"),
  26889. weight: math.unit(139, "lb"),
  26890. name: "Front",
  26891. image: {
  26892. source: "./media/characters/risa/front.svg",
  26893. extra: 270 / 260,
  26894. bottom: 11.2 / 282
  26895. }
  26896. },
  26897. back: {
  26898. height: math.unit(5 + 8 / 12, "feet"),
  26899. weight: math.unit(139, "lb"),
  26900. name: "Back",
  26901. image: {
  26902. source: "./media/characters/risa/back.svg",
  26903. extra: 264 / 255,
  26904. bottom: 4 / 268
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Normal",
  26911. height: math.unit(5 + 8 / 12, "feet"),
  26912. default: true
  26913. },
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26918. {
  26919. front: {
  26920. height: math.unit(2 + 11 / 12, "feet"),
  26921. weight: math.unit(30, "lb"),
  26922. name: "Front",
  26923. image: {
  26924. source: "./media/characters/weatley/front.svg",
  26925. bottom: 10.7 / 414,
  26926. extra: 403.5 / 362
  26927. }
  26928. },
  26929. back: {
  26930. height: math.unit(2 + 11 / 12, "feet"),
  26931. weight: math.unit(30, "lb"),
  26932. name: "Back",
  26933. image: {
  26934. source: "./media/characters/weatley/back.svg",
  26935. bottom: 10.7 / 414,
  26936. extra: 403.5 / 362
  26937. }
  26938. },
  26939. },
  26940. [
  26941. {
  26942. name: "Normal",
  26943. height: math.unit(2 + 11 / 12, "feet"),
  26944. default: true
  26945. },
  26946. ]
  26947. ))
  26948. characterMakers.push(() => makeCharacter(
  26949. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26950. {
  26951. front: {
  26952. height: math.unit(5 + 2 / 12, "feet"),
  26953. weight: math.unit(50, "kg"),
  26954. name: "Front",
  26955. image: {
  26956. source: "./media/characters/mercury-crescent/front.svg",
  26957. extra: 1088 / 1033,
  26958. bottom: 18.9 / 1109
  26959. }
  26960. },
  26961. },
  26962. [
  26963. {
  26964. name: "Normal",
  26965. height: math.unit(5 + 2 / 12, "feet"),
  26966. default: true
  26967. },
  26968. ]
  26969. ))
  26970. characterMakers.push(() => makeCharacter(
  26971. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26972. {
  26973. front: {
  26974. height: math.unit(2, "feet"),
  26975. weight: math.unit(15, "kg"),
  26976. name: "Front",
  26977. image: {
  26978. source: "./media/characters/diamond-jones/front.svg",
  26979. extra: 727/723,
  26980. bottom: 46/773
  26981. }
  26982. },
  26983. },
  26984. [
  26985. {
  26986. name: "Normal",
  26987. height: math.unit(2, "feet"),
  26988. default: true
  26989. },
  26990. ]
  26991. ))
  26992. characterMakers.push(() => makeCharacter(
  26993. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26994. {
  26995. front: {
  26996. height: math.unit(3, "feet"),
  26997. weight: math.unit(30, "kg"),
  26998. name: "Front",
  26999. image: {
  27000. source: "./media/characters/sweet-bit/front.svg",
  27001. extra: 675 / 567,
  27002. bottom: 27.7 / 703
  27003. }
  27004. },
  27005. },
  27006. [
  27007. {
  27008. name: "Normal",
  27009. height: math.unit(3, "feet"),
  27010. default: true
  27011. },
  27012. ]
  27013. ))
  27014. characterMakers.push(() => makeCharacter(
  27015. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27016. {
  27017. side: {
  27018. height: math.unit(9.178, "feet"),
  27019. weight: math.unit(500, "lb"),
  27020. name: "Side",
  27021. image: {
  27022. source: "./media/characters/umbrazen/side.svg",
  27023. extra: 1730 / 1473,
  27024. bottom: 34.6 / 1765
  27025. }
  27026. },
  27027. },
  27028. [
  27029. {
  27030. name: "Normal",
  27031. height: math.unit(9.178, "feet"),
  27032. default: true
  27033. },
  27034. ]
  27035. ))
  27036. characterMakers.push(() => makeCharacter(
  27037. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27038. {
  27039. front: {
  27040. height: math.unit(10, "feet"),
  27041. weight: math.unit(750, "lb"),
  27042. name: "Front",
  27043. image: {
  27044. source: "./media/characters/arlist/front.svg",
  27045. extra: 961 / 778,
  27046. bottom: 6.2 / 986
  27047. }
  27048. },
  27049. },
  27050. [
  27051. {
  27052. name: "Normal",
  27053. height: math.unit(10, "feet"),
  27054. default: true
  27055. },
  27056. ]
  27057. ))
  27058. characterMakers.push(() => makeCharacter(
  27059. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27060. {
  27061. front: {
  27062. height: math.unit(5 + 1 / 12, "feet"),
  27063. weight: math.unit(110, "lb"),
  27064. name: "Front",
  27065. image: {
  27066. source: "./media/characters/aradel/front.svg",
  27067. extra: 324 / 303,
  27068. bottom: 3.6 / 329.4
  27069. }
  27070. },
  27071. },
  27072. [
  27073. {
  27074. name: "Normal",
  27075. height: math.unit(5 + 1 / 12, "feet"),
  27076. default: true
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27082. {
  27083. dressed: {
  27084. height: math.unit(3 + 8 / 12, "feet"),
  27085. weight: math.unit(50, "lb"),
  27086. name: "Dressed",
  27087. image: {
  27088. source: "./media/characters/serryn/dressed.svg",
  27089. extra: 1792 / 1656,
  27090. bottom: 43.5 / 1840
  27091. }
  27092. },
  27093. nude: {
  27094. height: math.unit(3 + 8 / 12, "feet"),
  27095. weight: math.unit(50, "lb"),
  27096. name: "Nude",
  27097. image: {
  27098. source: "./media/characters/serryn/nude.svg",
  27099. extra: 1792 / 1656,
  27100. bottom: 43.5 / 1840
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Normal",
  27107. height: math.unit(3 + 8 / 12, "feet"),
  27108. default: true
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(7 + 10 / 12, "feet"),
  27117. weight: math.unit(255, "lb"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/xavier-thyme/front.svg",
  27121. extra: 3733 / 3642,
  27122. bottom: 131 / 3869
  27123. }
  27124. },
  27125. frontRaven: {
  27126. height: math.unit(7 + 10 / 12, "feet"),
  27127. weight: math.unit(255, "lb"),
  27128. name: "Front (Raven)",
  27129. image: {
  27130. source: "./media/characters/xavier-thyme/front-raven.svg",
  27131. extra: 4385 / 3642,
  27132. bottom: 131 / 4517
  27133. }
  27134. },
  27135. },
  27136. [
  27137. {
  27138. name: "Normal",
  27139. height: math.unit(7 + 10 / 12, "feet"),
  27140. default: true
  27141. },
  27142. ]
  27143. ))
  27144. characterMakers.push(() => makeCharacter(
  27145. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27146. {
  27147. front: {
  27148. height: math.unit(1.6, "m"),
  27149. weight: math.unit(50, "kg"),
  27150. name: "Front",
  27151. image: {
  27152. source: "./media/characters/kiki/front.svg",
  27153. extra: 4682 / 3610,
  27154. bottom: 115 / 4777
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(1.6, "meters"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(50, "m"),
  27171. weight: math.unit(500, "tonnes"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/ryoko/front.svg",
  27175. extra: 4632 / 3926,
  27176. bottom: 193 / 4823
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Normal",
  27183. height: math.unit(50, "meters"),
  27184. default: true
  27185. },
  27186. ]
  27187. ))
  27188. characterMakers.push(() => makeCharacter(
  27189. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27190. {
  27191. front: {
  27192. height: math.unit(30, "m"),
  27193. weight: math.unit(22, "tonnes"),
  27194. name: "Front",
  27195. image: {
  27196. source: "./media/characters/elio/front.svg",
  27197. extra: 4582 / 3720,
  27198. bottom: 236 / 4828
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Normal",
  27205. height: math.unit(30, "meters"),
  27206. default: true
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27212. {
  27213. front: {
  27214. height: math.unit(6 + 3 / 12, "feet"),
  27215. weight: math.unit(120, "lb"),
  27216. name: "Front",
  27217. image: {
  27218. source: "./media/characters/azura/front.svg",
  27219. extra: 1149 / 1135,
  27220. bottom: 45 / 1194
  27221. }
  27222. },
  27223. frontClothed: {
  27224. height: math.unit(6 + 3 / 12, "feet"),
  27225. weight: math.unit(120, "lb"),
  27226. name: "Front (Clothed)",
  27227. image: {
  27228. source: "./media/characters/azura/front-clothed.svg",
  27229. extra: 1149 / 1135,
  27230. bottom: 45 / 1194
  27231. }
  27232. },
  27233. },
  27234. [
  27235. {
  27236. name: "Normal",
  27237. height: math.unit(6 + 3 / 12, "feet"),
  27238. default: true
  27239. },
  27240. {
  27241. name: "Macro",
  27242. height: math.unit(20 + 6 / 12, "feet")
  27243. },
  27244. {
  27245. name: "Megamacro",
  27246. height: math.unit(12, "miles")
  27247. },
  27248. {
  27249. name: "Gigamacro",
  27250. height: math.unit(10000, "miles")
  27251. },
  27252. {
  27253. name: "Teramacro",
  27254. height: math.unit(900000, "miles")
  27255. },
  27256. ]
  27257. ))
  27258. characterMakers.push(() => makeCharacter(
  27259. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27260. {
  27261. front: {
  27262. height: math.unit(12, "feet"),
  27263. weight: math.unit(1, "ton"),
  27264. capacity: math.unit(660000, "gallons"),
  27265. name: "Front",
  27266. image: {
  27267. source: "./media/characters/zeus/front.svg",
  27268. extra: 5005 / 4717,
  27269. bottom: 363 / 5388
  27270. }
  27271. },
  27272. },
  27273. [
  27274. {
  27275. name: "Normal",
  27276. height: math.unit(12, "feet")
  27277. },
  27278. {
  27279. name: "Preferred Size",
  27280. height: math.unit(0.5, "miles"),
  27281. default: true
  27282. },
  27283. {
  27284. name: "Giga Horse",
  27285. height: math.unit(300, "miles")
  27286. },
  27287. {
  27288. name: "Riding Planets",
  27289. height: math.unit(30, "megameters")
  27290. },
  27291. {
  27292. name: "Cosmic Giant",
  27293. height: math.unit(3, "zettameters")
  27294. },
  27295. {
  27296. name: "Breeding God",
  27297. height: math.unit(9.92e22, "yottameters")
  27298. },
  27299. ]
  27300. ))
  27301. characterMakers.push(() => makeCharacter(
  27302. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27303. {
  27304. side: {
  27305. height: math.unit(9, "feet"),
  27306. weight: math.unit(1500, "kg"),
  27307. name: "Side",
  27308. image: {
  27309. source: "./media/characters/fang/side.svg",
  27310. extra: 924 / 866,
  27311. bottom: 47.5 / 972.3
  27312. }
  27313. },
  27314. },
  27315. [
  27316. {
  27317. name: "Normal",
  27318. height: math.unit(9, "feet"),
  27319. default: true
  27320. },
  27321. {
  27322. name: "Macro",
  27323. height: math.unit(75 + 6 / 12, "feet")
  27324. },
  27325. {
  27326. name: "Teramacro",
  27327. height: math.unit(50000, "miles")
  27328. },
  27329. ]
  27330. ))
  27331. characterMakers.push(() => makeCharacter(
  27332. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27333. {
  27334. front: {
  27335. height: math.unit(10, "feet"),
  27336. weight: math.unit(2, "tons"),
  27337. name: "Front",
  27338. image: {
  27339. source: "./media/characters/rekhit/front.svg",
  27340. extra: 2796 / 2590,
  27341. bottom: 225 / 3022
  27342. }
  27343. },
  27344. },
  27345. [
  27346. {
  27347. name: "Normal",
  27348. height: math.unit(10, "feet"),
  27349. default: true
  27350. },
  27351. {
  27352. name: "Macro",
  27353. height: math.unit(500, "feet")
  27354. },
  27355. ]
  27356. ))
  27357. characterMakers.push(() => makeCharacter(
  27358. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27359. {
  27360. front: {
  27361. height: math.unit(7 + 6.451 / 12, "feet"),
  27362. weight: math.unit(310, "lb"),
  27363. name: "Front",
  27364. image: {
  27365. source: "./media/characters/dahlia-verrick/front.svg",
  27366. extra: 1488 / 1365,
  27367. bottom: 6.2 / 1495
  27368. }
  27369. },
  27370. back: {
  27371. height: math.unit(7 + 6.451 / 12, "feet"),
  27372. weight: math.unit(310, "lb"),
  27373. name: "Back",
  27374. image: {
  27375. source: "./media/characters/dahlia-verrick/back.svg",
  27376. extra: 1472 / 1351,
  27377. bottom: 5.28 / 1477
  27378. }
  27379. },
  27380. frontBusiness: {
  27381. height: math.unit(7 + 6.451 / 12, "feet"),
  27382. weight: math.unit(200, "lb"),
  27383. name: "Front (Business)",
  27384. image: {
  27385. source: "./media/characters/dahlia-verrick/front-business.svg",
  27386. extra: 1478 / 1381,
  27387. bottom: 5.5 / 1484
  27388. }
  27389. },
  27390. frontCasual: {
  27391. height: math.unit(7 + 6.451 / 12, "feet"),
  27392. weight: math.unit(200, "lb"),
  27393. name: "Front (Casual)",
  27394. image: {
  27395. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27396. extra: 1478 / 1381,
  27397. bottom: 5.5 / 1484
  27398. }
  27399. },
  27400. },
  27401. [
  27402. {
  27403. name: "Travel-Sized",
  27404. height: math.unit(7.45, "inches")
  27405. },
  27406. {
  27407. name: "Normal",
  27408. height: math.unit(7 + 6.451 / 12, "feet"),
  27409. default: true
  27410. },
  27411. {
  27412. name: "Hitting the Town",
  27413. height: math.unit(37 + 8 / 12, "feet")
  27414. },
  27415. {
  27416. name: "Stomp in the Suburbs",
  27417. height: math.unit(964 + 9.728 / 12, "feet")
  27418. },
  27419. {
  27420. name: "Sit on the City",
  27421. height: math.unit(61747 + 10.592 / 12, "feet")
  27422. },
  27423. {
  27424. name: "Glomp the Globe",
  27425. height: math.unit(252919327 + 4.832 / 12, "feet")
  27426. },
  27427. ]
  27428. ))
  27429. characterMakers.push(() => makeCharacter(
  27430. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27431. {
  27432. front: {
  27433. height: math.unit(6 + 4 / 12, "feet"),
  27434. weight: math.unit(320, "lb"),
  27435. name: "Front",
  27436. image: {
  27437. source: "./media/characters/balina-mahigan/front.svg",
  27438. extra: 447 / 428,
  27439. bottom: 18 / 466
  27440. }
  27441. },
  27442. back: {
  27443. height: math.unit(6 + 4 / 12, "feet"),
  27444. weight: math.unit(320, "lb"),
  27445. name: "Back",
  27446. image: {
  27447. source: "./media/characters/balina-mahigan/back.svg",
  27448. extra: 445 / 428,
  27449. bottom: 4.07 / 448
  27450. }
  27451. },
  27452. arm: {
  27453. height: math.unit(1.88, "feet"),
  27454. name: "Arm",
  27455. image: {
  27456. source: "./media/characters/balina-mahigan/arm.svg"
  27457. }
  27458. },
  27459. backPort: {
  27460. height: math.unit(0.685, "feet"),
  27461. name: "Back Port",
  27462. image: {
  27463. source: "./media/characters/balina-mahigan/back-port.svg"
  27464. }
  27465. },
  27466. hoofpaw: {
  27467. height: math.unit(1.41, "feet"),
  27468. name: "Hoofpaw",
  27469. image: {
  27470. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27471. }
  27472. },
  27473. leftHandBack: {
  27474. height: math.unit(0.938, "feet"),
  27475. name: "Left Hand (Back)",
  27476. image: {
  27477. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27478. }
  27479. },
  27480. leftHandFront: {
  27481. height: math.unit(0.938, "feet"),
  27482. name: "Left Hand (Front)",
  27483. image: {
  27484. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27485. }
  27486. },
  27487. rightHandBack: {
  27488. height: math.unit(0.95, "feet"),
  27489. name: "Right Hand (Back)",
  27490. image: {
  27491. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27492. }
  27493. },
  27494. rightHandFront: {
  27495. height: math.unit(0.95, "feet"),
  27496. name: "Right Hand (Front)",
  27497. image: {
  27498. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(6 + 4 / 12, "feet"),
  27506. default: true
  27507. },
  27508. ]
  27509. ))
  27510. characterMakers.push(() => makeCharacter(
  27511. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27512. {
  27513. front: {
  27514. height: math.unit(6, "feet"),
  27515. weight: math.unit(320, "lb"),
  27516. name: "Front",
  27517. image: {
  27518. source: "./media/characters/balina-mejeri/front.svg",
  27519. extra: 517 / 488,
  27520. bottom: 44.2 / 561
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Normal",
  27527. height: math.unit(6 + 4 / 12, "feet")
  27528. },
  27529. {
  27530. name: "Business",
  27531. height: math.unit(155, "feet"),
  27532. default: true
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27538. {
  27539. kneeling: {
  27540. height: math.unit(6 + 4 / 12, "feet"),
  27541. weight: math.unit(300 * 20, "lb"),
  27542. name: "Kneeling",
  27543. image: {
  27544. source: "./media/characters/balbarian/kneeling.svg",
  27545. extra: 922 / 862,
  27546. bottom: 42.4 / 965
  27547. }
  27548. },
  27549. },
  27550. [
  27551. {
  27552. name: "Normal",
  27553. height: math.unit(6 + 4 / 12, "feet")
  27554. },
  27555. {
  27556. name: "Treasured",
  27557. height: math.unit(18 + 9 / 12, "feet"),
  27558. default: true
  27559. },
  27560. {
  27561. name: "Macro",
  27562. height: math.unit(900, "feet")
  27563. },
  27564. ]
  27565. ))
  27566. characterMakers.push(() => makeCharacter(
  27567. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27568. {
  27569. front: {
  27570. height: math.unit(6 + 4 / 12, "feet"),
  27571. weight: math.unit(325, "lb"),
  27572. name: "Front",
  27573. image: {
  27574. source: "./media/characters/balina-amarini/front.svg",
  27575. extra: 415 / 403,
  27576. bottom: 19 / 433.4
  27577. }
  27578. },
  27579. back: {
  27580. height: math.unit(6 + 4 / 12, "feet"),
  27581. weight: math.unit(325, "lb"),
  27582. name: "Back",
  27583. image: {
  27584. source: "./media/characters/balina-amarini/back.svg",
  27585. extra: 415 / 403,
  27586. bottom: 13.5 / 432
  27587. }
  27588. },
  27589. overdrive: {
  27590. height: math.unit(6 + 4 / 12, "feet"),
  27591. weight: math.unit(400, "lb"),
  27592. name: "Overdrive",
  27593. image: {
  27594. source: "./media/characters/balina-amarini/overdrive.svg",
  27595. extra: 269 / 259,
  27596. bottom: 12 / 282
  27597. }
  27598. },
  27599. },
  27600. [
  27601. {
  27602. name: "Boom",
  27603. height: math.unit(9 + 10 / 12, "feet"),
  27604. default: true
  27605. },
  27606. {
  27607. name: "Macro",
  27608. height: math.unit(280, "feet")
  27609. },
  27610. ]
  27611. ))
  27612. characterMakers.push(() => makeCharacter(
  27613. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27614. {
  27615. goddess: {
  27616. height: math.unit(600, "feet"),
  27617. weight: math.unit(2000000, "tons"),
  27618. name: "Goddess",
  27619. image: {
  27620. source: "./media/characters/lady-kubwa/goddess.svg",
  27621. extra: 1240.5 / 1223,
  27622. bottom: 22 / 1263
  27623. }
  27624. },
  27625. goddesser: {
  27626. height: math.unit(900, "feet"),
  27627. weight: math.unit(20000000, "lb"),
  27628. name: "Goddess-er",
  27629. image: {
  27630. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27631. extra: 899 / 888,
  27632. bottom: 12.6 / 912
  27633. }
  27634. },
  27635. },
  27636. [
  27637. {
  27638. name: "Macro",
  27639. height: math.unit(600, "feet"),
  27640. default: true
  27641. },
  27642. {
  27643. name: "Megamacro",
  27644. height: math.unit(250, "miles")
  27645. },
  27646. ]
  27647. ))
  27648. characterMakers.push(() => makeCharacter(
  27649. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27650. {
  27651. front: {
  27652. height: math.unit(7 + 7 / 12, "feet"),
  27653. weight: math.unit(250, "lb"),
  27654. name: "Front",
  27655. image: {
  27656. source: "./media/characters/tala-grovehorn/front.svg",
  27657. extra: 2636 / 2525,
  27658. bottom: 147 / 2781
  27659. }
  27660. },
  27661. back: {
  27662. height: math.unit(7 + 7 / 12, "feet"),
  27663. weight: math.unit(250, "lb"),
  27664. name: "Back",
  27665. image: {
  27666. source: "./media/characters/tala-grovehorn/back.svg",
  27667. extra: 2635 / 2539,
  27668. bottom: 100 / 2732.8
  27669. }
  27670. },
  27671. mouth: {
  27672. height: math.unit(1.15, "feet"),
  27673. name: "Mouth",
  27674. image: {
  27675. source: "./media/characters/tala-grovehorn/mouth.svg"
  27676. }
  27677. },
  27678. dick: {
  27679. height: math.unit(2.36, "feet"),
  27680. name: "Dick",
  27681. image: {
  27682. source: "./media/characters/tala-grovehorn/dick.svg"
  27683. }
  27684. },
  27685. slit: {
  27686. height: math.unit(0.61, "feet"),
  27687. name: "Slit",
  27688. image: {
  27689. source: "./media/characters/tala-grovehorn/slit.svg"
  27690. }
  27691. },
  27692. },
  27693. [
  27694. ]
  27695. ))
  27696. characterMakers.push(() => makeCharacter(
  27697. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27698. {
  27699. front: {
  27700. height: math.unit(7 + 7 / 12, "feet"),
  27701. weight: math.unit(225, "lb"),
  27702. name: "Front",
  27703. image: {
  27704. source: "./media/characters/epona/front.svg",
  27705. extra: 2445 / 2290,
  27706. bottom: 251 / 2696
  27707. }
  27708. },
  27709. back: {
  27710. height: math.unit(7 + 7 / 12, "feet"),
  27711. weight: math.unit(225, "lb"),
  27712. name: "Back",
  27713. image: {
  27714. source: "./media/characters/epona/back.svg",
  27715. extra: 2546 / 2408,
  27716. bottom: 44 / 2589
  27717. }
  27718. },
  27719. genitals: {
  27720. height: math.unit(1.5, "feet"),
  27721. name: "Genitals",
  27722. image: {
  27723. source: "./media/characters/epona/genitals.svg"
  27724. }
  27725. },
  27726. },
  27727. [
  27728. {
  27729. name: "Normal",
  27730. height: math.unit(7 + 7 / 12, "feet"),
  27731. default: true
  27732. },
  27733. ]
  27734. ))
  27735. characterMakers.push(() => makeCharacter(
  27736. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27737. {
  27738. front: {
  27739. height: math.unit(7, "feet"),
  27740. weight: math.unit(518, "lb"),
  27741. name: "Front",
  27742. image: {
  27743. source: "./media/characters/avia-bloodbourn/front.svg",
  27744. extra: 1466 / 1350,
  27745. bottom: 65 / 1527
  27746. }
  27747. },
  27748. },
  27749. [
  27750. ]
  27751. ))
  27752. characterMakers.push(() => makeCharacter(
  27753. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27754. {
  27755. front: {
  27756. height: math.unit(9.35, "feet"),
  27757. weight: math.unit(600, "lb"),
  27758. name: "Front",
  27759. image: {
  27760. source: "./media/characters/amera/front.svg",
  27761. extra: 891 / 818,
  27762. bottom: 30 / 922.7
  27763. }
  27764. },
  27765. back: {
  27766. height: math.unit(9.35, "feet"),
  27767. weight: math.unit(600, "lb"),
  27768. name: "Back",
  27769. image: {
  27770. source: "./media/characters/amera/back.svg",
  27771. extra: 876 / 824,
  27772. bottom: 6.8 / 884
  27773. }
  27774. },
  27775. dick: {
  27776. height: math.unit(2.14, "feet"),
  27777. name: "Dick",
  27778. image: {
  27779. source: "./media/characters/amera/dick.svg"
  27780. }
  27781. },
  27782. },
  27783. [
  27784. {
  27785. name: "Normal",
  27786. height: math.unit(9.35, "feet"),
  27787. default: true
  27788. },
  27789. ]
  27790. ))
  27791. characterMakers.push(() => makeCharacter(
  27792. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27793. {
  27794. kneeling: {
  27795. height: math.unit(3 + 4 / 12, "feet"),
  27796. weight: math.unit(90, "lb"),
  27797. name: "Kneeling",
  27798. image: {
  27799. source: "./media/characters/rosewen/kneeling.svg",
  27800. extra: 1835 / 1571,
  27801. bottom: 27.7 / 1862
  27802. }
  27803. },
  27804. },
  27805. [
  27806. {
  27807. name: "Normal",
  27808. height: math.unit(3 + 4 / 12, "feet"),
  27809. default: true
  27810. },
  27811. ]
  27812. ))
  27813. characterMakers.push(() => makeCharacter(
  27814. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27815. {
  27816. front: {
  27817. height: math.unit(5 + 10 / 12, "feet"),
  27818. weight: math.unit(200, "lb"),
  27819. name: "Front",
  27820. image: {
  27821. source: "./media/characters/sabah/front.svg",
  27822. extra: 849 / 763,
  27823. bottom: 33.9 / 881
  27824. }
  27825. },
  27826. },
  27827. [
  27828. {
  27829. name: "Normal",
  27830. height: math.unit(5 + 10 / 12, "feet"),
  27831. default: true
  27832. },
  27833. ]
  27834. ))
  27835. characterMakers.push(() => makeCharacter(
  27836. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27837. {
  27838. front: {
  27839. height: math.unit(3 + 5 / 12, "feet"),
  27840. weight: math.unit(40, "kg"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/purple-flame/front.svg",
  27844. extra: 1577 / 1412,
  27845. bottom: 97 / 1694
  27846. }
  27847. },
  27848. frontDressed: {
  27849. height: math.unit(3 + 5 / 12, "feet"),
  27850. weight: math.unit(40, "kg"),
  27851. name: "Front (Dressed)",
  27852. image: {
  27853. source: "./media/characters/purple-flame/front-dressed.svg",
  27854. extra: 1577 / 1412,
  27855. bottom: 97 / 1694
  27856. }
  27857. },
  27858. headphones: {
  27859. height: math.unit(0.85, "feet"),
  27860. name: "Headphones",
  27861. image: {
  27862. source: "./media/characters/purple-flame/headphones.svg"
  27863. }
  27864. },
  27865. },
  27866. [
  27867. {
  27868. name: "Really Small",
  27869. height: math.unit(5, "cm")
  27870. },
  27871. {
  27872. name: "Micro",
  27873. height: math.unit(1 + 5 / 12, "feet")
  27874. },
  27875. {
  27876. name: "Normal",
  27877. height: math.unit(3 + 5 / 12, "feet"),
  27878. default: true
  27879. },
  27880. {
  27881. name: "Minimacro",
  27882. height: math.unit(125, "feet")
  27883. },
  27884. {
  27885. name: "Macro",
  27886. height: math.unit(0.5, "miles")
  27887. },
  27888. {
  27889. name: "Megamacro",
  27890. height: math.unit(50, "miles")
  27891. },
  27892. {
  27893. name: "Gigantic",
  27894. height: math.unit(750, "miles")
  27895. },
  27896. {
  27897. name: "Planetary",
  27898. height: math.unit(15000, "miles")
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(14, "feet"),
  27907. weight: math.unit(959, "lb"),
  27908. name: "Front",
  27909. image: {
  27910. source: "./media/characters/arsenal/front.svg",
  27911. extra: 2357 / 2157,
  27912. bottom: 93 / 2458
  27913. }
  27914. },
  27915. },
  27916. [
  27917. {
  27918. name: "Normal",
  27919. height: math.unit(14, "feet"),
  27920. default: true
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27926. {
  27927. front: {
  27928. height: math.unit(6, "feet"),
  27929. weight: math.unit(150, "lb"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/adira/front.svg",
  27933. extra: 1078 / 1029,
  27934. bottom: 87 / 1166
  27935. }
  27936. },
  27937. },
  27938. [
  27939. {
  27940. name: "Micro",
  27941. height: math.unit(4, "inches"),
  27942. default: true
  27943. },
  27944. {
  27945. name: "Macro",
  27946. height: math.unit(50, "feet")
  27947. },
  27948. ]
  27949. ))
  27950. characterMakers.push(() => makeCharacter(
  27951. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27952. {
  27953. front: {
  27954. height: math.unit(16, "feet"),
  27955. weight: math.unit(1000, "lb"),
  27956. name: "Front",
  27957. image: {
  27958. source: "./media/characters/grim/front.svg",
  27959. extra: 622 / 614,
  27960. bottom: 18.1 / 642
  27961. }
  27962. },
  27963. back: {
  27964. height: math.unit(16, "feet"),
  27965. weight: math.unit(1000, "lb"),
  27966. name: "Back",
  27967. image: {
  27968. source: "./media/characters/grim/back.svg",
  27969. extra: 610.6 / 602,
  27970. bottom: 40.8 / 652
  27971. }
  27972. },
  27973. hunched: {
  27974. height: math.unit(9.75, "feet"),
  27975. weight: math.unit(1000, "lb"),
  27976. name: "Hunched",
  27977. image: {
  27978. source: "./media/characters/grim/hunched.svg",
  27979. extra: 304 / 297,
  27980. bottom: 35.4 / 394
  27981. }
  27982. },
  27983. },
  27984. [
  27985. {
  27986. name: "Normal",
  27987. height: math.unit(16, "feet"),
  27988. default: true
  27989. },
  27990. ]
  27991. ))
  27992. characterMakers.push(() => makeCharacter(
  27993. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27994. {
  27995. front: {
  27996. height: math.unit(2.3, "meters"),
  27997. weight: math.unit(300, "lb"),
  27998. name: "Front",
  27999. image: {
  28000. source: "./media/characters/sinja/front-sfw.svg",
  28001. extra: 1393 / 1294,
  28002. bottom: 70 / 1463
  28003. }
  28004. },
  28005. frontNsfw: {
  28006. height: math.unit(2.3, "meters"),
  28007. weight: math.unit(300, "lb"),
  28008. name: "Front (NSFW)",
  28009. image: {
  28010. source: "./media/characters/sinja/front-nsfw.svg",
  28011. extra: 1393 / 1294,
  28012. bottom: 70 / 1463
  28013. }
  28014. },
  28015. back: {
  28016. height: math.unit(2.3, "meters"),
  28017. weight: math.unit(300, "lb"),
  28018. name: "Back",
  28019. image: {
  28020. source: "./media/characters/sinja/back.svg",
  28021. extra: 1393 / 1294,
  28022. bottom: 70 / 1463
  28023. }
  28024. },
  28025. head: {
  28026. height: math.unit(1.771, "feet"),
  28027. name: "Head",
  28028. image: {
  28029. source: "./media/characters/sinja/head.svg"
  28030. }
  28031. },
  28032. slit: {
  28033. height: math.unit(0.8, "feet"),
  28034. name: "Slit",
  28035. image: {
  28036. source: "./media/characters/sinja/slit.svg"
  28037. }
  28038. },
  28039. },
  28040. [
  28041. {
  28042. name: "Normal",
  28043. height: math.unit(2.3, "meters")
  28044. },
  28045. {
  28046. name: "Macro",
  28047. height: math.unit(91, "meters"),
  28048. default: true
  28049. },
  28050. {
  28051. name: "Megamacro",
  28052. height: math.unit(91440, "meters")
  28053. },
  28054. {
  28055. name: "Gigamacro",
  28056. height: math.unit(60960000, "meters")
  28057. },
  28058. {
  28059. name: "Teramacro",
  28060. height: math.unit(9144000000, "meters")
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28066. {
  28067. front: {
  28068. height: math.unit(1.7, "meters"),
  28069. weight: math.unit(130, "lb"),
  28070. name: "Front",
  28071. image: {
  28072. source: "./media/characters/kyu/front.svg",
  28073. extra: 415 / 395,
  28074. bottom: 5 / 420
  28075. }
  28076. },
  28077. head: {
  28078. height: math.unit(1.75, "feet"),
  28079. name: "Head",
  28080. image: {
  28081. source: "./media/characters/kyu/head.svg"
  28082. }
  28083. },
  28084. foot: {
  28085. height: math.unit(0.81, "feet"),
  28086. name: "Foot",
  28087. image: {
  28088. source: "./media/characters/kyu/foot.svg"
  28089. }
  28090. },
  28091. },
  28092. [
  28093. {
  28094. name: "Normal",
  28095. height: math.unit(1.7, "meters")
  28096. },
  28097. {
  28098. name: "Macro",
  28099. height: math.unit(131, "feet"),
  28100. default: true
  28101. },
  28102. {
  28103. name: "Megamacro",
  28104. height: math.unit(91440, "meters")
  28105. },
  28106. {
  28107. name: "Gigamacro",
  28108. height: math.unit(60960000, "meters")
  28109. },
  28110. {
  28111. name: "Teramacro",
  28112. height: math.unit(9144000000, "meters")
  28113. },
  28114. ]
  28115. ))
  28116. characterMakers.push(() => makeCharacter(
  28117. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28118. {
  28119. front: {
  28120. height: math.unit(7 + 1 / 12, "feet"),
  28121. weight: math.unit(250, "lb"),
  28122. name: "Front",
  28123. image: {
  28124. source: "./media/characters/joey/front.svg",
  28125. extra: 1791 / 1537,
  28126. bottom: 28 / 1816
  28127. }
  28128. },
  28129. },
  28130. [
  28131. {
  28132. name: "Micro",
  28133. height: math.unit(3, "inches")
  28134. },
  28135. {
  28136. name: "Normal",
  28137. height: math.unit(7 + 1 / 12, "feet"),
  28138. default: true
  28139. },
  28140. ]
  28141. ))
  28142. characterMakers.push(() => makeCharacter(
  28143. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28144. {
  28145. front: {
  28146. height: math.unit(165, "cm"),
  28147. weight: math.unit(140, "lb"),
  28148. name: "Front",
  28149. image: {
  28150. source: "./media/characters/sam-evans/front.svg",
  28151. extra: 3417 / 3230,
  28152. bottom: 41.3 / 3417
  28153. }
  28154. },
  28155. frontSixTails: {
  28156. height: math.unit(165, "cm"),
  28157. weight: math.unit(140, "lb"),
  28158. name: "Front-six-tails",
  28159. image: {
  28160. source: "./media/characters/sam-evans/front-six-tails.svg",
  28161. extra: 3417 / 3230,
  28162. bottom: 41.3 / 3417
  28163. }
  28164. },
  28165. back: {
  28166. height: math.unit(165, "cm"),
  28167. weight: math.unit(140, "lb"),
  28168. name: "Back",
  28169. image: {
  28170. source: "./media/characters/sam-evans/back.svg",
  28171. extra: 3227 / 3032,
  28172. bottom: 6.8 / 3234
  28173. }
  28174. },
  28175. face: {
  28176. height: math.unit(0.68, "feet"),
  28177. name: "Face",
  28178. image: {
  28179. source: "./media/characters/sam-evans/face.svg"
  28180. }
  28181. },
  28182. },
  28183. [
  28184. {
  28185. name: "Normal",
  28186. height: math.unit(165, "cm"),
  28187. default: true
  28188. },
  28189. {
  28190. name: "Macro",
  28191. height: math.unit(100, "meters")
  28192. },
  28193. {
  28194. name: "Macro+",
  28195. height: math.unit(800, "meters")
  28196. },
  28197. {
  28198. name: "Macro++",
  28199. height: math.unit(3, "km")
  28200. },
  28201. {
  28202. name: "Macro+++",
  28203. height: math.unit(30, "km")
  28204. },
  28205. ]
  28206. ))
  28207. characterMakers.push(() => makeCharacter(
  28208. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28209. {
  28210. front: {
  28211. height: math.unit(10, "feet"),
  28212. weight: math.unit(750, "lb"),
  28213. name: "Front",
  28214. image: {
  28215. source: "./media/characters/juliet-a/front.svg",
  28216. extra: 1766 / 1720,
  28217. bottom: 43 / 1809
  28218. }
  28219. },
  28220. back: {
  28221. height: math.unit(10, "feet"),
  28222. weight: math.unit(750, "lb"),
  28223. name: "Back",
  28224. image: {
  28225. source: "./media/characters/juliet-a/back.svg",
  28226. extra: 1781 / 1734,
  28227. bottom: 35 / 1810,
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Normal",
  28234. height: math.unit(10, "feet"),
  28235. default: true
  28236. },
  28237. {
  28238. name: "Dragon Form",
  28239. height: math.unit(250, "feet")
  28240. },
  28241. {
  28242. name: "Macro",
  28243. height: math.unit(1000, "feet")
  28244. },
  28245. {
  28246. name: "Megamacro",
  28247. height: math.unit(10000, "feet")
  28248. }
  28249. ]
  28250. ))
  28251. characterMakers.push(() => makeCharacter(
  28252. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28253. {
  28254. regular: {
  28255. height: math.unit(7 + 3 / 12, "feet"),
  28256. weight: math.unit(260, "lb"),
  28257. name: "Regular",
  28258. image: {
  28259. source: "./media/characters/wild/regular.svg",
  28260. extra: 97.45 / 92,
  28261. bottom: 6.8 / 104.3
  28262. }
  28263. },
  28264. biggums: {
  28265. height: math.unit(8 + 6 / 12, "feet"),
  28266. weight: math.unit(425, "lb"),
  28267. name: "Biggums",
  28268. image: {
  28269. source: "./media/characters/wild/biggums.svg",
  28270. extra: 97.45 / 92,
  28271. bottom: 7.5 / 132.34
  28272. }
  28273. },
  28274. mawRegular: {
  28275. height: math.unit(1.24, "feet"),
  28276. name: "Maw (Regular)",
  28277. image: {
  28278. source: "./media/characters/wild/maw.svg"
  28279. }
  28280. },
  28281. mawBiggums: {
  28282. height: math.unit(1.47, "feet"),
  28283. name: "Maw (Biggums)",
  28284. image: {
  28285. source: "./media/characters/wild/maw.svg"
  28286. }
  28287. },
  28288. },
  28289. [
  28290. {
  28291. name: "Normal",
  28292. height: math.unit(7 + 3 / 12, "feet"),
  28293. default: true
  28294. },
  28295. ]
  28296. ))
  28297. characterMakers.push(() => makeCharacter(
  28298. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28299. {
  28300. front: {
  28301. height: math.unit(2.5, "meters"),
  28302. weight: math.unit(200, "kg"),
  28303. name: "Front",
  28304. image: {
  28305. source: "./media/characters/vidar/front.svg",
  28306. extra: 2994 / 2795,
  28307. bottom: 56 / 3061
  28308. }
  28309. },
  28310. back: {
  28311. height: math.unit(2.5, "meters"),
  28312. weight: math.unit(200, "kg"),
  28313. name: "Back",
  28314. image: {
  28315. source: "./media/characters/vidar/back.svg",
  28316. extra: 3131 / 2928,
  28317. bottom: 13.5 / 3141.5
  28318. }
  28319. },
  28320. feral: {
  28321. height: math.unit(2.5, "meters"),
  28322. weight: math.unit(2000, "kg"),
  28323. name: "Feral",
  28324. image: {
  28325. source: "./media/characters/vidar/feral.svg",
  28326. extra: 2790 / 1765,
  28327. bottom: 6 / 2796
  28328. }
  28329. },
  28330. },
  28331. [
  28332. {
  28333. name: "Normal",
  28334. height: math.unit(2.5, "meters"),
  28335. default: true
  28336. },
  28337. {
  28338. name: "Macro",
  28339. height: math.unit(100, "meters")
  28340. },
  28341. ]
  28342. ))
  28343. characterMakers.push(() => makeCharacter(
  28344. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28345. {
  28346. front: {
  28347. height: math.unit(5 + 9 / 12, "feet"),
  28348. weight: math.unit(120, "lb"),
  28349. name: "Front",
  28350. image: {
  28351. source: "./media/characters/ash/front.svg",
  28352. extra: 2189 / 1961,
  28353. bottom: 5.2 / 2194
  28354. }
  28355. },
  28356. },
  28357. [
  28358. {
  28359. name: "Normal",
  28360. height: math.unit(5 + 9 / 12, "feet"),
  28361. default: true
  28362. },
  28363. ]
  28364. ))
  28365. characterMakers.push(() => makeCharacter(
  28366. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28367. {
  28368. front: {
  28369. height: math.unit(9, "feet"),
  28370. weight: math.unit(10000, "lb"),
  28371. name: "Front",
  28372. image: {
  28373. source: "./media/characters/gygabite/front.svg",
  28374. bottom: 31.7 / 537.8,
  28375. extra: 505 / 370
  28376. }
  28377. },
  28378. },
  28379. [
  28380. {
  28381. name: "Normal",
  28382. height: math.unit(9, "feet"),
  28383. default: true
  28384. },
  28385. ]
  28386. ))
  28387. characterMakers.push(() => makeCharacter(
  28388. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28389. {
  28390. front: {
  28391. height: math.unit(12, "feet"),
  28392. weight: math.unit(35000, "lb"),
  28393. name: "Front",
  28394. image: {
  28395. source: "./media/characters/p0tat0/front.svg",
  28396. extra: 1065 / 921,
  28397. bottom: 55.7 / 1121.25
  28398. }
  28399. },
  28400. },
  28401. [
  28402. {
  28403. name: "Normal",
  28404. height: math.unit(12, "feet"),
  28405. default: true
  28406. },
  28407. ]
  28408. ))
  28409. characterMakers.push(() => makeCharacter(
  28410. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28411. {
  28412. side: {
  28413. height: math.unit(6.5, "feet"),
  28414. weight: math.unit(800, "lb"),
  28415. name: "Side",
  28416. image: {
  28417. source: "./media/characters/dusk/side.svg",
  28418. extra: 615 / 373,
  28419. bottom: 53 / 664
  28420. }
  28421. },
  28422. sitting: {
  28423. height: math.unit(7, "feet"),
  28424. weight: math.unit(800, "lb"),
  28425. name: "Sitting",
  28426. image: {
  28427. source: "./media/characters/dusk/sitting.svg",
  28428. extra: 753 / 425,
  28429. bottom: 33 / 774
  28430. }
  28431. },
  28432. head: {
  28433. height: math.unit(6.1, "feet"),
  28434. name: "Head",
  28435. image: {
  28436. source: "./media/characters/dusk/head.svg"
  28437. }
  28438. },
  28439. },
  28440. [
  28441. {
  28442. name: "Normal",
  28443. height: math.unit(7, "feet"),
  28444. default: true
  28445. },
  28446. ]
  28447. ))
  28448. characterMakers.push(() => makeCharacter(
  28449. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28450. {
  28451. front: {
  28452. height: math.unit(15, "feet"),
  28453. weight: math.unit(7000, "lb"),
  28454. name: "Front",
  28455. image: {
  28456. source: "./media/characters/jay-direwolf/front.svg",
  28457. extra: 1810 / 1732,
  28458. bottom: 66 / 1892
  28459. }
  28460. },
  28461. },
  28462. [
  28463. {
  28464. name: "Normal",
  28465. height: math.unit(15, "feet"),
  28466. default: true
  28467. },
  28468. ]
  28469. ))
  28470. characterMakers.push(() => makeCharacter(
  28471. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28472. {
  28473. front: {
  28474. height: math.unit(4 + 9 / 12, "feet"),
  28475. weight: math.unit(130, "lb"),
  28476. name: "Front",
  28477. image: {
  28478. source: "./media/characters/anchovie/front.svg",
  28479. extra: 382 / 350,
  28480. bottom: 25 / 409
  28481. }
  28482. },
  28483. back: {
  28484. height: math.unit(4 + 9 / 12, "feet"),
  28485. weight: math.unit(130, "lb"),
  28486. name: "Back",
  28487. image: {
  28488. source: "./media/characters/anchovie/back.svg",
  28489. extra: 385 / 352,
  28490. bottom: 16.6 / 402
  28491. }
  28492. },
  28493. frontDressed: {
  28494. height: math.unit(4 + 9 / 12, "feet"),
  28495. weight: math.unit(130, "lb"),
  28496. name: "Front (Dressed)",
  28497. image: {
  28498. source: "./media/characters/anchovie/front-dressed.svg",
  28499. extra: 382 / 350,
  28500. bottom: 25 / 409
  28501. }
  28502. },
  28503. backDressed: {
  28504. height: math.unit(4 + 9 / 12, "feet"),
  28505. weight: math.unit(130, "lb"),
  28506. name: "Back (Dressed)",
  28507. image: {
  28508. source: "./media/characters/anchovie/back-dressed.svg",
  28509. extra: 385 / 352,
  28510. bottom: 16.6 / 402
  28511. }
  28512. },
  28513. },
  28514. [
  28515. {
  28516. name: "Micro",
  28517. height: math.unit(6.4, "inches")
  28518. },
  28519. {
  28520. name: "Normal",
  28521. height: math.unit(4 + 9 / 12, "feet"),
  28522. default: true
  28523. },
  28524. ]
  28525. ))
  28526. characterMakers.push(() => makeCharacter(
  28527. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28528. {
  28529. front: {
  28530. height: math.unit(2, "meters"),
  28531. weight: math.unit(180, "lb"),
  28532. name: "Front",
  28533. image: {
  28534. source: "./media/characters/acidrenamon/front.svg",
  28535. extra: 987 / 890,
  28536. bottom: 22.8 / 1009
  28537. }
  28538. },
  28539. back: {
  28540. height: math.unit(2, "meters"),
  28541. weight: math.unit(180, "lb"),
  28542. name: "Back",
  28543. image: {
  28544. source: "./media/characters/acidrenamon/back.svg",
  28545. extra: 983 / 891,
  28546. bottom: 8.4 / 992
  28547. }
  28548. },
  28549. head: {
  28550. height: math.unit(1.92, "feet"),
  28551. name: "Head",
  28552. image: {
  28553. source: "./media/characters/acidrenamon/head.svg"
  28554. }
  28555. },
  28556. rump: {
  28557. height: math.unit(1.72, "feet"),
  28558. name: "Rump",
  28559. image: {
  28560. source: "./media/characters/acidrenamon/rump.svg"
  28561. }
  28562. },
  28563. tail: {
  28564. height: math.unit(4.2, "feet"),
  28565. name: "Tail",
  28566. image: {
  28567. source: "./media/characters/acidrenamon/tail.svg"
  28568. }
  28569. },
  28570. },
  28571. [
  28572. {
  28573. name: "Normal",
  28574. height: math.unit(2, "meters"),
  28575. default: true
  28576. },
  28577. {
  28578. name: "Minimacro",
  28579. height: math.unit(7, "meters")
  28580. },
  28581. {
  28582. name: "Macro",
  28583. height: math.unit(200, "meters")
  28584. },
  28585. {
  28586. name: "Gigamacro",
  28587. height: math.unit(0.2, "earths")
  28588. },
  28589. ]
  28590. ))
  28591. characterMakers.push(() => makeCharacter(
  28592. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28593. {
  28594. front: {
  28595. height: math.unit(152, "feet"),
  28596. name: "Front",
  28597. image: {
  28598. source: "./media/characters/kenzie-lee/front.svg",
  28599. extra: 1869/1774,
  28600. bottom: 128/1997
  28601. }
  28602. },
  28603. side: {
  28604. height: math.unit(86, "feet"),
  28605. name: "Side",
  28606. image: {
  28607. source: "./media/characters/kenzie-lee/side.svg",
  28608. extra: 930/815,
  28609. bottom: 177/1107
  28610. }
  28611. },
  28612. paw: {
  28613. height: math.unit(15, "feet"),
  28614. name: "Paw",
  28615. image: {
  28616. source: "./media/characters/kenzie-lee/paw.svg"
  28617. }
  28618. },
  28619. },
  28620. [
  28621. {
  28622. name: "Kenzie Flea",
  28623. height: math.unit(2, "mm"),
  28624. default: true
  28625. },
  28626. {
  28627. name: "Micro",
  28628. height: math.unit(2, "inches")
  28629. },
  28630. {
  28631. name: "Normal",
  28632. height: math.unit(152, "feet")
  28633. },
  28634. {
  28635. name: "Megamacro",
  28636. height: math.unit(7, "miles")
  28637. },
  28638. {
  28639. name: "Gigamacro",
  28640. height: math.unit(8000, "miles")
  28641. },
  28642. ]
  28643. ))
  28644. characterMakers.push(() => makeCharacter(
  28645. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28646. {
  28647. front: {
  28648. height: math.unit(6, "feet"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/withers/front.svg",
  28652. extra: 1935/1760,
  28653. bottom: 72/2007
  28654. }
  28655. },
  28656. back: {
  28657. height: math.unit(6, "feet"),
  28658. name: "Back",
  28659. image: {
  28660. source: "./media/characters/withers/back.svg",
  28661. extra: 1944/1792,
  28662. bottom: 12/1956
  28663. }
  28664. },
  28665. dressed: {
  28666. height: math.unit(6, "feet"),
  28667. name: "Dressed",
  28668. image: {
  28669. source: "./media/characters/withers/dressed.svg",
  28670. extra: 1937/1765,
  28671. bottom: 73/2010
  28672. }
  28673. },
  28674. phase1: {
  28675. height: math.unit(1.1, "feet"),
  28676. name: "Phase 1",
  28677. image: {
  28678. source: "./media/characters/withers/phase-1.svg",
  28679. extra: 1885/1232,
  28680. bottom: 0/1885
  28681. }
  28682. },
  28683. phase2: {
  28684. height: math.unit(1.05, "feet"),
  28685. name: "Phase 2",
  28686. image: {
  28687. source: "./media/characters/withers/phase-2.svg",
  28688. extra: 1792/1090,
  28689. bottom: 0/1792
  28690. }
  28691. },
  28692. partyWipe: {
  28693. height: math.unit(1.1, "feet"),
  28694. name: "Party Wipe",
  28695. image: {
  28696. source: "./media/characters/withers/party-wipe.svg",
  28697. extra: 1864/1207,
  28698. bottom: 0/1864
  28699. }
  28700. },
  28701. },
  28702. [
  28703. {
  28704. name: "Macro",
  28705. height: math.unit(167, "feet"),
  28706. default: true
  28707. },
  28708. {
  28709. name: "Megamacro",
  28710. height: math.unit(15, "miles")
  28711. }
  28712. ]
  28713. ))
  28714. characterMakers.push(() => makeCharacter(
  28715. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28716. {
  28717. front: {
  28718. height: math.unit(6 + 7 / 12, "feet"),
  28719. weight: math.unit(250, "lb"),
  28720. name: "Front",
  28721. image: {
  28722. source: "./media/characters/nemoskii/front.svg",
  28723. extra: 2270 / 1734,
  28724. bottom: 86 / 2354
  28725. }
  28726. },
  28727. back: {
  28728. height: math.unit(6 + 7 / 12, "feet"),
  28729. weight: math.unit(250, "lb"),
  28730. name: "Back",
  28731. image: {
  28732. source: "./media/characters/nemoskii/back.svg",
  28733. extra: 1845 / 1788,
  28734. bottom: 10.5 / 1852
  28735. }
  28736. },
  28737. head: {
  28738. height: math.unit(1.31, "feet"),
  28739. name: "Head",
  28740. image: {
  28741. source: "./media/characters/nemoskii/head.svg"
  28742. }
  28743. },
  28744. },
  28745. [
  28746. {
  28747. name: "Micro",
  28748. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28749. },
  28750. {
  28751. name: "Normal",
  28752. height: math.unit(6 + 7 / 12, "feet"),
  28753. default: true
  28754. },
  28755. {
  28756. name: "Macro",
  28757. height: math.unit((6 + 7 / 12) * 150, "feet")
  28758. },
  28759. {
  28760. name: "Macro+",
  28761. height: math.unit((6 + 7 / 12) * 500, "feet")
  28762. },
  28763. {
  28764. name: "Megamacro",
  28765. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28766. },
  28767. ]
  28768. ))
  28769. characterMakers.push(() => makeCharacter(
  28770. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28771. {
  28772. front: {
  28773. height: math.unit(1, "mile"),
  28774. weight: math.unit(265261.9, "lb"),
  28775. name: "Front",
  28776. image: {
  28777. source: "./media/characters/shui/front.svg",
  28778. extra: 1633 / 1564,
  28779. bottom: 91.5 / 1726
  28780. }
  28781. },
  28782. },
  28783. [
  28784. {
  28785. name: "Macro",
  28786. height: math.unit(1, "mile"),
  28787. default: true
  28788. },
  28789. ]
  28790. ))
  28791. characterMakers.push(() => makeCharacter(
  28792. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28793. {
  28794. front: {
  28795. height: math.unit(12 + 6 / 12, "feet"),
  28796. weight: math.unit(1342, "lb"),
  28797. name: "Front",
  28798. image: {
  28799. source: "./media/characters/arokh-takakura/front.svg",
  28800. extra: 1089 / 1043,
  28801. bottom: 77.4 / 1176.7
  28802. }
  28803. },
  28804. back: {
  28805. height: math.unit(12 + 6 / 12, "feet"),
  28806. weight: math.unit(1342, "lb"),
  28807. name: "Back",
  28808. image: {
  28809. source: "./media/characters/arokh-takakura/back.svg",
  28810. extra: 1046 / 1019,
  28811. bottom: 102 / 1150
  28812. }
  28813. },
  28814. },
  28815. [
  28816. {
  28817. name: "Big",
  28818. height: math.unit(12 + 6 / 12, "feet"),
  28819. default: true
  28820. },
  28821. ]
  28822. ))
  28823. characterMakers.push(() => makeCharacter(
  28824. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28825. {
  28826. front: {
  28827. height: math.unit(5 + 6 / 12, "feet"),
  28828. weight: math.unit(150, "lb"),
  28829. name: "Front",
  28830. image: {
  28831. source: "./media/characters/theo/front.svg",
  28832. extra: 1184 / 1131,
  28833. bottom: 7.4 / 1191
  28834. }
  28835. },
  28836. },
  28837. [
  28838. {
  28839. name: "Micro",
  28840. height: math.unit(5, "inches")
  28841. },
  28842. {
  28843. name: "Normal",
  28844. height: math.unit(5 + 6 / 12, "feet"),
  28845. default: true
  28846. },
  28847. ]
  28848. ))
  28849. characterMakers.push(() => makeCharacter(
  28850. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28851. {
  28852. front: {
  28853. height: math.unit(5 + 9 / 12, "feet"),
  28854. weight: math.unit(130, "lb"),
  28855. name: "Front",
  28856. image: {
  28857. source: "./media/characters/cecelia-swift/front.svg",
  28858. extra: 502 / 484,
  28859. bottom: 23 / 523
  28860. }
  28861. },
  28862. back: {
  28863. height: math.unit(5 + 9 / 12, "feet"),
  28864. weight: math.unit(130, "lb"),
  28865. name: "Back",
  28866. image: {
  28867. source: "./media/characters/cecelia-swift/back.svg",
  28868. extra: 499 / 485,
  28869. bottom: 12 / 511
  28870. }
  28871. },
  28872. head: {
  28873. height: math.unit(0.90, "feet"),
  28874. name: "Head",
  28875. image: {
  28876. source: "./media/characters/cecelia-swift/head.svg"
  28877. }
  28878. },
  28879. rump: {
  28880. height: math.unit(1.75, "feet"),
  28881. name: "Rump",
  28882. image: {
  28883. source: "./media/characters/cecelia-swift/rump.svg"
  28884. }
  28885. },
  28886. },
  28887. [
  28888. {
  28889. name: "Normal",
  28890. height: math.unit(5 + 9 / 12, "feet"),
  28891. default: true
  28892. },
  28893. {
  28894. name: "Big",
  28895. height: math.unit(50, "feet")
  28896. },
  28897. {
  28898. name: "Macro",
  28899. height: math.unit(100, "feet")
  28900. },
  28901. {
  28902. name: "Macro+",
  28903. height: math.unit(500, "feet")
  28904. },
  28905. {
  28906. name: "Macro++",
  28907. height: math.unit(1000, "feet")
  28908. },
  28909. ]
  28910. ))
  28911. characterMakers.push(() => makeCharacter(
  28912. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28913. {
  28914. front: {
  28915. height: math.unit(6, "feet"),
  28916. weight: math.unit(150, "lb"),
  28917. name: "Front",
  28918. image: {
  28919. source: "./media/characters/kaunan/front.svg",
  28920. extra: 2890 / 2523,
  28921. bottom: 49 / 2939
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Macro",
  28928. height: math.unit(150, "feet"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28935. {
  28936. front: {
  28937. height: math.unit(175, "cm"),
  28938. weight: math.unit(60, "kg"),
  28939. name: "Front",
  28940. image: {
  28941. source: "./media/characters/fei/front.svg",
  28942. extra: 1873/1723,
  28943. bottom: 53/1926
  28944. }
  28945. },
  28946. },
  28947. [
  28948. {
  28949. name: "Mortal",
  28950. height: math.unit(175, "cm")
  28951. },
  28952. {
  28953. name: "Normal",
  28954. height: math.unit(3500, "m"),
  28955. default: true
  28956. },
  28957. {
  28958. name: "Stroll",
  28959. height: math.unit(17.5, "km")
  28960. },
  28961. {
  28962. name: "Showoff",
  28963. height: math.unit(175, "km")
  28964. },
  28965. ]
  28966. ))
  28967. characterMakers.push(() => makeCharacter(
  28968. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28969. {
  28970. front: {
  28971. height: math.unit(7, "feet"),
  28972. weight: math.unit(1000, "kg"),
  28973. name: "Front",
  28974. image: {
  28975. source: "./media/characters/edrax/front.svg",
  28976. extra: 2838 / 2550,
  28977. bottom: 130 / 2968
  28978. }
  28979. },
  28980. },
  28981. [
  28982. {
  28983. name: "Small",
  28984. height: math.unit(7, "feet")
  28985. },
  28986. {
  28987. name: "Normal",
  28988. height: math.unit(1500, "meters")
  28989. },
  28990. {
  28991. name: "Mega",
  28992. height: math.unit(12000000, "km"),
  28993. default: true
  28994. },
  28995. {
  28996. name: "Megamacro",
  28997. height: math.unit(10600000, "lightyears")
  28998. },
  28999. {
  29000. name: "Hypermacro",
  29001. height: math.unit(256, "yottameters")
  29002. },
  29003. ]
  29004. ))
  29005. characterMakers.push(() => makeCharacter(
  29006. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29007. {
  29008. front: {
  29009. height: math.unit(10, "feet"),
  29010. weight: math.unit(750, "lb"),
  29011. name: "Front",
  29012. image: {
  29013. source: "./media/characters/clove/front.svg",
  29014. extra: 1918/1751,
  29015. bottom: 52/1970
  29016. }
  29017. },
  29018. back: {
  29019. height: math.unit(10, "feet"),
  29020. weight: math.unit(750, "lb"),
  29021. name: "Back",
  29022. image: {
  29023. source: "./media/characters/clove/back.svg",
  29024. extra: 1912/1747,
  29025. bottom: 50/1962
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Normal",
  29032. height: math.unit(10, "feet"),
  29033. default: true
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(4, "feet"),
  29042. weight: math.unit(50, "lb"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/alex-rabbit/front.svg",
  29046. extra: 507 / 458,
  29047. bottom: 18.5 / 527
  29048. }
  29049. },
  29050. back: {
  29051. height: math.unit(4, "feet"),
  29052. weight: math.unit(50, "lb"),
  29053. name: "Back",
  29054. image: {
  29055. source: "./media/characters/alex-rabbit/back.svg",
  29056. extra: 502 / 460,
  29057. bottom: 18.9 / 521
  29058. }
  29059. },
  29060. },
  29061. [
  29062. {
  29063. name: "Normal",
  29064. height: math.unit(4, "feet"),
  29065. default: true
  29066. },
  29067. ]
  29068. ))
  29069. characterMakers.push(() => makeCharacter(
  29070. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29071. {
  29072. front: {
  29073. height: math.unit(1 + 3 / 12, "feet"),
  29074. weight: math.unit(80, "lb"),
  29075. name: "Front",
  29076. image: {
  29077. source: "./media/characters/zander-rose/front.svg",
  29078. extra: 916 / 797,
  29079. bottom: 17 / 933
  29080. }
  29081. },
  29082. back: {
  29083. height: math.unit(1 + 3 / 12, "feet"),
  29084. weight: math.unit(80, "lb"),
  29085. name: "Back",
  29086. image: {
  29087. source: "./media/characters/zander-rose/back.svg",
  29088. extra: 903 / 779,
  29089. bottom: 31 / 934
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Normal",
  29096. height: math.unit(1 + 3 / 12, "feet"),
  29097. default: true
  29098. },
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29103. {
  29104. anthro: {
  29105. height: math.unit(6, "feet"),
  29106. weight: math.unit(150, "lb"),
  29107. name: "Anthro",
  29108. image: {
  29109. source: "./media/characters/razz/anthro.svg",
  29110. extra: 1437 / 1343,
  29111. bottom: 48 / 1485
  29112. }
  29113. },
  29114. feral: {
  29115. height: math.unit(6, "feet"),
  29116. weight: math.unit(150, "lb"),
  29117. name: "Feral",
  29118. image: {
  29119. source: "./media/characters/razz/feral.svg",
  29120. extra: 2569 / 1385,
  29121. bottom: 95 / 2664
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Normal",
  29128. height: math.unit(6, "feet"),
  29129. default: true
  29130. },
  29131. ]
  29132. ))
  29133. characterMakers.push(() => makeCharacter(
  29134. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29135. {
  29136. front: {
  29137. height: math.unit(9 + 4 / 12, "feet"),
  29138. weight: math.unit(500, "lb"),
  29139. name: "Front",
  29140. image: {
  29141. source: "./media/characters/morrigan/front.svg",
  29142. extra: 2707 / 2579,
  29143. bottom: 156 / 2863
  29144. }
  29145. },
  29146. },
  29147. [
  29148. {
  29149. name: "Normal",
  29150. height: math.unit(9 + 4 / 12, "feet"),
  29151. default: true
  29152. },
  29153. ]
  29154. ))
  29155. characterMakers.push(() => makeCharacter(
  29156. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29157. {
  29158. front: {
  29159. height: math.unit(5, "stories"),
  29160. weight: math.unit(4000, "lb"),
  29161. name: "Front",
  29162. image: {
  29163. source: "./media/characters/jenene/front.svg",
  29164. extra: 1780 / 1710,
  29165. bottom: 57 / 1837
  29166. }
  29167. },
  29168. },
  29169. [
  29170. {
  29171. name: "Normal",
  29172. height: math.unit(5, "stories"),
  29173. default: true
  29174. },
  29175. ]
  29176. ))
  29177. characterMakers.push(() => makeCharacter(
  29178. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29179. {
  29180. taurSfw: {
  29181. height: math.unit(10, "meters"),
  29182. weight: math.unit(17500, "kg"),
  29183. name: "Taur",
  29184. image: {
  29185. source: "./media/characters/faey/taur-sfw.svg",
  29186. extra: 1200 / 968,
  29187. bottom: 41 / 1241
  29188. }
  29189. },
  29190. chestmaw: {
  29191. height: math.unit(2.01, "meters"),
  29192. name: "Chestmaw",
  29193. image: {
  29194. source: "./media/characters/faey/chestmaw.svg"
  29195. }
  29196. },
  29197. foot: {
  29198. height: math.unit(2.43, "meters"),
  29199. name: "Foot",
  29200. image: {
  29201. source: "./media/characters/faey/foot.svg"
  29202. }
  29203. },
  29204. jaws: {
  29205. height: math.unit(1.66, "meters"),
  29206. name: "Jaws",
  29207. image: {
  29208. source: "./media/characters/faey/jaws.svg"
  29209. }
  29210. },
  29211. tongues: {
  29212. height: math.unit(2.01, "meters"),
  29213. name: "Tongues",
  29214. image: {
  29215. source: "./media/characters/faey/tongues.svg"
  29216. }
  29217. },
  29218. },
  29219. [
  29220. {
  29221. name: "Small",
  29222. height: math.unit(10, "meters"),
  29223. default: true
  29224. },
  29225. {
  29226. name: "Big",
  29227. height: math.unit(500000, "km")
  29228. },
  29229. ]
  29230. ))
  29231. characterMakers.push(() => makeCharacter(
  29232. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29233. {
  29234. front: {
  29235. height: math.unit(7, "feet"),
  29236. weight: math.unit(275, "lb"),
  29237. name: "Front",
  29238. image: {
  29239. source: "./media/characters/roku/front.svg",
  29240. extra: 903 / 878,
  29241. bottom: 37 / 940
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Normal",
  29248. height: math.unit(7, "feet"),
  29249. default: true
  29250. },
  29251. {
  29252. name: "Macro",
  29253. height: math.unit(500, "feet")
  29254. },
  29255. {
  29256. name: "Megamacro",
  29257. height: math.unit(200, "miles")
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29263. {
  29264. front: {
  29265. height: math.unit(6 + 2 / 12, "feet"),
  29266. weight: math.unit(150, "lb"),
  29267. name: "Front",
  29268. image: {
  29269. source: "./media/characters/lira/front.svg",
  29270. extra: 1727 / 1605,
  29271. bottom: 26 / 1753
  29272. }
  29273. },
  29274. back: {
  29275. height: math.unit(6 + 2 / 12, "feet"),
  29276. weight: math.unit(150, "lb"),
  29277. name: "Back",
  29278. image: {
  29279. source: "./media/characters/lira/back.svg",
  29280. extra: 1713/1621,
  29281. bottom: 20/1733
  29282. }
  29283. },
  29284. hand: {
  29285. height: math.unit(0.75, "feet"),
  29286. name: "Hand",
  29287. image: {
  29288. source: "./media/characters/lira/hand.svg"
  29289. }
  29290. },
  29291. maw: {
  29292. height: math.unit(0.65, "feet"),
  29293. name: "Maw",
  29294. image: {
  29295. source: "./media/characters/lira/maw.svg"
  29296. }
  29297. },
  29298. pawDigi: {
  29299. height: math.unit(1.6, "feet"),
  29300. name: "Paw Digi",
  29301. image: {
  29302. source: "./media/characters/lira/paw-digi.svg"
  29303. }
  29304. },
  29305. pawPlanti: {
  29306. height: math.unit(1.4, "feet"),
  29307. name: "Paw Planti",
  29308. image: {
  29309. source: "./media/characters/lira/paw-planti.svg"
  29310. }
  29311. },
  29312. },
  29313. [
  29314. {
  29315. name: "Normal",
  29316. height: math.unit(6 + 2 / 12, "feet"),
  29317. default: true
  29318. },
  29319. {
  29320. name: "Macro",
  29321. height: math.unit(100, "feet")
  29322. },
  29323. {
  29324. name: "Macro²",
  29325. height: math.unit(1600, "feet")
  29326. },
  29327. {
  29328. name: "Planetary",
  29329. height: math.unit(20, "earths")
  29330. },
  29331. ]
  29332. ))
  29333. characterMakers.push(() => makeCharacter(
  29334. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29335. {
  29336. front: {
  29337. height: math.unit(6, "feet"),
  29338. weight: math.unit(150, "lb"),
  29339. name: "Front",
  29340. image: {
  29341. source: "./media/characters/hadjet/front.svg",
  29342. extra: 1480 / 1346,
  29343. bottom: 26 / 1506
  29344. }
  29345. },
  29346. frontNsfw: {
  29347. height: math.unit(6, "feet"),
  29348. weight: math.unit(150, "lb"),
  29349. name: "Front (NSFW)",
  29350. image: {
  29351. source: "./media/characters/hadjet/front-nsfw.svg",
  29352. extra: 1440 / 1358,
  29353. bottom: 52 / 1492
  29354. }
  29355. },
  29356. },
  29357. [
  29358. {
  29359. name: "Macro",
  29360. height: math.unit(10, "stories"),
  29361. default: true
  29362. },
  29363. {
  29364. name: "Megamacro",
  29365. height: math.unit(1.5, "miles")
  29366. },
  29367. {
  29368. name: "Megamacro+",
  29369. height: math.unit(5, "miles")
  29370. },
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29375. {
  29376. side: {
  29377. height: math.unit(106, "feet"),
  29378. weight: math.unit(500, "tonnes"),
  29379. name: "Side",
  29380. image: {
  29381. source: "./media/characters/kodran/side.svg",
  29382. extra: 553 / 480,
  29383. bottom: 33 / 586
  29384. }
  29385. },
  29386. front: {
  29387. height: math.unit(132, "feet"),
  29388. weight: math.unit(500, "tonnes"),
  29389. name: "Front",
  29390. image: {
  29391. source: "./media/characters/kodran/front.svg",
  29392. extra: 667 / 643,
  29393. bottom: 42 / 709
  29394. }
  29395. },
  29396. flying: {
  29397. height: math.unit(350, "feet"),
  29398. weight: math.unit(500, "tonnes"),
  29399. name: "Flying",
  29400. image: {
  29401. source: "./media/characters/kodran/flying.svg"
  29402. }
  29403. },
  29404. foot: {
  29405. height: math.unit(33, "feet"),
  29406. name: "Foot",
  29407. image: {
  29408. source: "./media/characters/kodran/foot.svg"
  29409. }
  29410. },
  29411. footFront: {
  29412. height: math.unit(19, "feet"),
  29413. name: "Foot (Front)",
  29414. image: {
  29415. source: "./media/characters/kodran/foot-front.svg",
  29416. extra: 261 / 261,
  29417. bottom: 91 / 352
  29418. }
  29419. },
  29420. headFront: {
  29421. height: math.unit(53, "feet"),
  29422. name: "Head (Front)",
  29423. image: {
  29424. source: "./media/characters/kodran/head-front.svg"
  29425. }
  29426. },
  29427. headSide: {
  29428. height: math.unit(65, "feet"),
  29429. name: "Head (Side)",
  29430. image: {
  29431. source: "./media/characters/kodran/head-side.svg"
  29432. }
  29433. },
  29434. throat: {
  29435. height: math.unit(79, "feet"),
  29436. name: "Throat",
  29437. image: {
  29438. source: "./media/characters/kodran/throat.svg"
  29439. }
  29440. },
  29441. },
  29442. [
  29443. {
  29444. name: "Large",
  29445. height: math.unit(106, "feet"),
  29446. default: true
  29447. },
  29448. ]
  29449. ))
  29450. characterMakers.push(() => makeCharacter(
  29451. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29452. {
  29453. side: {
  29454. height: math.unit(11, "feet"),
  29455. weight: math.unit(150, "lb"),
  29456. name: "Side",
  29457. image: {
  29458. source: "./media/characters/pyxaron/side.svg",
  29459. extra: 305 / 195,
  29460. bottom: 17 / 322
  29461. }
  29462. },
  29463. },
  29464. [
  29465. {
  29466. name: "Normal",
  29467. height: math.unit(11, "feet"),
  29468. default: true
  29469. },
  29470. ]
  29471. ))
  29472. characterMakers.push(() => makeCharacter(
  29473. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29474. {
  29475. front: {
  29476. height: math.unit(6, "feet"),
  29477. weight: math.unit(150, "lb"),
  29478. name: "Front",
  29479. image: {
  29480. source: "./media/characters/meep/front.svg",
  29481. extra: 88 / 80,
  29482. bottom: 6 / 94
  29483. }
  29484. },
  29485. },
  29486. [
  29487. {
  29488. name: "Fun Sized",
  29489. height: math.unit(2, "inches"),
  29490. default: true
  29491. },
  29492. {
  29493. name: "Friend Sized",
  29494. height: math.unit(8, "inches")
  29495. },
  29496. ]
  29497. ))
  29498. characterMakers.push(() => makeCharacter(
  29499. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29500. {
  29501. front: {
  29502. height: math.unit(15, "feet"),
  29503. weight: math.unit(2500, "lb"),
  29504. name: "Front",
  29505. image: {
  29506. source: "./media/characters/holly-rabbit/front.svg",
  29507. extra: 1433 / 1233,
  29508. bottom: 125 / 1558
  29509. }
  29510. },
  29511. dick: {
  29512. height: math.unit(4.6, "feet"),
  29513. name: "Dick",
  29514. image: {
  29515. source: "./media/characters/holly-rabbit/dick.svg"
  29516. }
  29517. },
  29518. },
  29519. [
  29520. {
  29521. name: "Normal",
  29522. height: math.unit(15, "feet"),
  29523. default: true
  29524. },
  29525. {
  29526. name: "Macro",
  29527. height: math.unit(250, "feet")
  29528. },
  29529. {
  29530. name: "Macro+",
  29531. height: math.unit(2500, "feet")
  29532. },
  29533. ]
  29534. ))
  29535. characterMakers.push(() => makeCharacter(
  29536. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29537. {
  29538. front: {
  29539. height: math.unit(3.02, "meters"),
  29540. weight: math.unit(500, "kg"),
  29541. name: "Front",
  29542. image: {
  29543. source: "./media/characters/drena/front.svg",
  29544. extra: 282 / 243,
  29545. bottom: 8 / 290
  29546. }
  29547. },
  29548. side: {
  29549. height: math.unit(3.02, "meters"),
  29550. weight: math.unit(500, "kg"),
  29551. name: "Side",
  29552. image: {
  29553. source: "./media/characters/drena/side.svg",
  29554. extra: 280 / 245,
  29555. bottom: 10 / 290
  29556. }
  29557. },
  29558. back: {
  29559. height: math.unit(3.02, "meters"),
  29560. weight: math.unit(500, "kg"),
  29561. name: "Back",
  29562. image: {
  29563. source: "./media/characters/drena/back.svg",
  29564. extra: 278 / 243,
  29565. bottom: 2 / 280
  29566. }
  29567. },
  29568. foot: {
  29569. height: math.unit(0.75, "meters"),
  29570. name: "Foot",
  29571. image: {
  29572. source: "./media/characters/drena/foot.svg"
  29573. }
  29574. },
  29575. maw: {
  29576. height: math.unit(0.82, "meters"),
  29577. name: "Maw",
  29578. image: {
  29579. source: "./media/characters/drena/maw.svg"
  29580. }
  29581. },
  29582. eating: {
  29583. height: math.unit(0.75, "meters"),
  29584. name: "Eating",
  29585. image: {
  29586. source: "./media/characters/drena/eating.svg"
  29587. }
  29588. },
  29589. rump: {
  29590. height: math.unit(0.93, "meters"),
  29591. name: "Rump",
  29592. image: {
  29593. source: "./media/characters/drena/rump.svg"
  29594. }
  29595. },
  29596. },
  29597. [
  29598. {
  29599. name: "Normal",
  29600. height: math.unit(3.02, "meters"),
  29601. default: true
  29602. },
  29603. ]
  29604. ))
  29605. characterMakers.push(() => makeCharacter(
  29606. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29607. {
  29608. front: {
  29609. height: math.unit(6 + 4 / 12, "feet"),
  29610. weight: math.unit(250, "lb"),
  29611. name: "Front",
  29612. image: {
  29613. source: "./media/characters/remmyzilla/front.svg",
  29614. extra: 4033 / 3588,
  29615. bottom: 123 / 4156
  29616. }
  29617. },
  29618. back: {
  29619. height: math.unit(6 + 4 / 12, "feet"),
  29620. weight: math.unit(250, "lb"),
  29621. name: "Back",
  29622. image: {
  29623. source: "./media/characters/remmyzilla/back.svg",
  29624. extra: 2687 / 2555,
  29625. bottom: 48 / 2735
  29626. }
  29627. },
  29628. paw: {
  29629. height: math.unit(1.73, "feet"),
  29630. name: "Paw",
  29631. image: {
  29632. source: "./media/characters/remmyzilla/paw.svg"
  29633. }
  29634. },
  29635. maw: {
  29636. height: math.unit(1.73, "feet"),
  29637. name: "Maw",
  29638. image: {
  29639. source: "./media/characters/remmyzilla/maw.svg"
  29640. }
  29641. },
  29642. },
  29643. [
  29644. {
  29645. name: "Normal",
  29646. height: math.unit(6 + 4 / 12, "feet")
  29647. },
  29648. {
  29649. name: "Minimacro",
  29650. height: math.unit(12 + 8 / 12, "feet")
  29651. },
  29652. {
  29653. name: "Normal",
  29654. height: math.unit(640, "feet"),
  29655. default: true
  29656. },
  29657. {
  29658. name: "Megamacro",
  29659. height: math.unit(6400, "feet")
  29660. },
  29661. {
  29662. name: "Gigamacro",
  29663. height: math.unit(64000, "miles")
  29664. },
  29665. ]
  29666. ))
  29667. characterMakers.push(() => makeCharacter(
  29668. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29669. {
  29670. front: {
  29671. height: math.unit(2.5, "meters"),
  29672. weight: math.unit(300, "lb"),
  29673. name: "Front",
  29674. image: {
  29675. source: "./media/characters/lawrence/front.svg",
  29676. extra: 357 / 335,
  29677. bottom: 30 / 387
  29678. }
  29679. },
  29680. back: {
  29681. height: math.unit(2.5, "meters"),
  29682. weight: math.unit(300, "lb"),
  29683. name: "Back",
  29684. image: {
  29685. source: "./media/characters/lawrence/back.svg",
  29686. extra: 357 / 338,
  29687. bottom: 16 / 373
  29688. }
  29689. },
  29690. head: {
  29691. height: math.unit(0.9, "meter"),
  29692. name: "Head",
  29693. image: {
  29694. source: "./media/characters/lawrence/head.svg"
  29695. }
  29696. },
  29697. maw: {
  29698. height: math.unit(0.7, "meter"),
  29699. name: "Maw",
  29700. image: {
  29701. source: "./media/characters/lawrence/maw.svg"
  29702. }
  29703. },
  29704. footBottom: {
  29705. height: math.unit(0.5, "meter"),
  29706. name: "Foot (Bottom)",
  29707. image: {
  29708. source: "./media/characters/lawrence/foot-bottom.svg"
  29709. }
  29710. },
  29711. footTop: {
  29712. height: math.unit(0.5, "meter"),
  29713. name: "Foot (Top)",
  29714. image: {
  29715. source: "./media/characters/lawrence/foot-top.svg"
  29716. }
  29717. },
  29718. },
  29719. [
  29720. {
  29721. name: "Normal",
  29722. height: math.unit(2.5, "meters"),
  29723. default: true
  29724. },
  29725. {
  29726. name: "Macro",
  29727. height: math.unit(95, "meters")
  29728. },
  29729. {
  29730. name: "Megamacro",
  29731. height: math.unit(150, "km")
  29732. },
  29733. ]
  29734. ))
  29735. characterMakers.push(() => makeCharacter(
  29736. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29737. {
  29738. front: {
  29739. height: math.unit(4.2, "meters"),
  29740. name: "Front",
  29741. image: {
  29742. source: "./media/characters/sydney/front.svg",
  29743. extra: 1323 / 1277,
  29744. bottom: 111 / 1434
  29745. }
  29746. },
  29747. },
  29748. [
  29749. {
  29750. name: "Normal",
  29751. height: math.unit(4.2, "meters"),
  29752. default: true
  29753. },
  29754. ]
  29755. ))
  29756. characterMakers.push(() => makeCharacter(
  29757. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29758. {
  29759. back: {
  29760. height: math.unit(201, "feet"),
  29761. name: "Back",
  29762. image: {
  29763. source: "./media/characters/jessica/back.svg",
  29764. extra: 273 / 259,
  29765. bottom: 7 / 280
  29766. }
  29767. },
  29768. },
  29769. [
  29770. {
  29771. name: "Normal",
  29772. height: math.unit(201, "feet"),
  29773. default: true
  29774. },
  29775. {
  29776. name: "Megamacro",
  29777. height: math.unit(8, "miles")
  29778. },
  29779. ]
  29780. ))
  29781. characterMakers.push(() => makeCharacter(
  29782. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29783. {
  29784. side: {
  29785. height: math.unit(5.6, "m"),
  29786. weight: math.unit(8000, "kg"),
  29787. name: "Side",
  29788. image: {
  29789. source: "./media/characters/victoria/side.svg",
  29790. extra: 1542/1229,
  29791. bottom: 124/1666
  29792. }
  29793. },
  29794. maw: {
  29795. height: math.unit(7.14, "feet"),
  29796. name: "Maw",
  29797. image: {
  29798. source: "./media/characters/victoria/maw.svg"
  29799. }
  29800. },
  29801. },
  29802. [
  29803. {
  29804. name: "Normal",
  29805. height: math.unit(5.6, "m"),
  29806. default: true
  29807. },
  29808. ]
  29809. ))
  29810. characterMakers.push(() => makeCharacter(
  29811. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29812. {
  29813. front: {
  29814. height: math.unit(5 + 6 / 12, "feet"),
  29815. name: "Front",
  29816. image: {
  29817. source: "./media/characters/cat/front.svg",
  29818. extra: 1449/1295,
  29819. bottom: 34/1483
  29820. },
  29821. form: "cat",
  29822. default: true
  29823. },
  29824. back: {
  29825. height: math.unit(5 + 6 / 12, "feet"),
  29826. name: "Back",
  29827. image: {
  29828. source: "./media/characters/cat/back.svg",
  29829. extra: 1466/1301,
  29830. bottom: 19/1485
  29831. },
  29832. form: "cat"
  29833. },
  29834. taur: {
  29835. height: math.unit(7, "feet"),
  29836. name: "Taur",
  29837. image: {
  29838. source: "./media/characters/cat/taur.svg",
  29839. extra: 1389/1233,
  29840. bottom: 83/1472
  29841. },
  29842. form: "taur",
  29843. default: true
  29844. },
  29845. lucarioFront: {
  29846. height: math.unit(4, "feet"),
  29847. name: "Lucario (Front)",
  29848. image: {
  29849. source: "./media/characters/cat/lucario-front.svg",
  29850. extra: 1149/1019,
  29851. bottom: 84/1233
  29852. },
  29853. form: "lucario",
  29854. default: true
  29855. },
  29856. lucarioBack: {
  29857. height: math.unit(4, "feet"),
  29858. name: "Lucario (Back)",
  29859. image: {
  29860. source: "./media/characters/cat/lucario-back.svg",
  29861. extra: 1190/1059,
  29862. bottom: 33/1223
  29863. },
  29864. form: "lucario"
  29865. },
  29866. megaLucario: {
  29867. height: math.unit(4, "feet"),
  29868. name: "Mega Lucario",
  29869. image: {
  29870. source: "./media/characters/cat/mega-lucario.svg",
  29871. extra: 1515 / 1319,
  29872. bottom: 63 / 1578
  29873. },
  29874. form: "lucario"
  29875. },
  29876. nickit: {
  29877. height: math.unit(2, "feet"),
  29878. name: "Nickit",
  29879. image: {
  29880. source: "./media/characters/cat/nickit.svg",
  29881. extra: 1980 / 1585,
  29882. bottom: 102 / 2082
  29883. },
  29884. form: "nickit",
  29885. default: true
  29886. },
  29887. lopunnyFront: {
  29888. height: math.unit(5, "feet"),
  29889. name: "Lopunny (Front)",
  29890. image: {
  29891. source: "./media/characters/cat/lopunny-front.svg",
  29892. extra: 1782 / 1469,
  29893. bottom: 38 / 1820
  29894. },
  29895. form: "lopunny",
  29896. default: true
  29897. },
  29898. lopunnyBack: {
  29899. height: math.unit(5, "feet"),
  29900. name: "Lopunny (Back)",
  29901. image: {
  29902. source: "./media/characters/cat/lopunny-back.svg",
  29903. extra: 1660 / 1490,
  29904. bottom: 25 / 1685
  29905. },
  29906. form: "lopunny"
  29907. },
  29908. },
  29909. [
  29910. {
  29911. name: "Really small",
  29912. height: math.unit(1, "nm")
  29913. },
  29914. {
  29915. name: "Micro",
  29916. height: math.unit(5, "inches")
  29917. },
  29918. {
  29919. name: "Normal",
  29920. height: math.unit(5 + 6 / 12, "feet"),
  29921. default: true
  29922. },
  29923. {
  29924. name: "Macro",
  29925. height: math.unit(50, "feet")
  29926. },
  29927. {
  29928. name: "Macro+",
  29929. height: math.unit(150, "feet")
  29930. },
  29931. {
  29932. name: "Megamacro",
  29933. height: math.unit(100, "miles")
  29934. },
  29935. ]
  29936. ))
  29937. characterMakers.push(() => makeCharacter(
  29938. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29939. {
  29940. front: {
  29941. height: math.unit(63.4, "meters"),
  29942. weight: math.unit(3.28349e+6, "kilograms"),
  29943. name: "Front",
  29944. image: {
  29945. source: "./media/characters/kirina-violet/front.svg",
  29946. extra: 2812 / 2725,
  29947. bottom: 0 / 2812
  29948. }
  29949. },
  29950. back: {
  29951. height: math.unit(63.4, "meters"),
  29952. weight: math.unit(3.28349e+6, "kilograms"),
  29953. name: "Back",
  29954. image: {
  29955. source: "./media/characters/kirina-violet/back.svg",
  29956. extra: 2812 / 2725,
  29957. bottom: 0 / 2812
  29958. }
  29959. },
  29960. mouth: {
  29961. height: math.unit(4.35, "meters"),
  29962. name: "Mouth",
  29963. image: {
  29964. source: "./media/characters/kirina-violet/mouth.svg"
  29965. }
  29966. },
  29967. paw: {
  29968. height: math.unit(5.6, "meters"),
  29969. name: "Paw",
  29970. image: {
  29971. source: "./media/characters/kirina-violet/paw.svg"
  29972. }
  29973. },
  29974. tail: {
  29975. height: math.unit(18, "meters"),
  29976. name: "Tail",
  29977. image: {
  29978. source: "./media/characters/kirina-violet/tail.svg"
  29979. }
  29980. },
  29981. },
  29982. [
  29983. {
  29984. name: "Macro",
  29985. height: math.unit(63.4, "meters"),
  29986. default: true
  29987. },
  29988. ]
  29989. ))
  29990. characterMakers.push(() => makeCharacter(
  29991. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29992. {
  29993. front: {
  29994. height: math.unit(75, "feet"),
  29995. name: "Front",
  29996. image: {
  29997. source: "./media/characters/cat-gigachu/front.svg",
  29998. extra: 1239/1027,
  29999. bottom: 32/1271
  30000. }
  30001. },
  30002. back: {
  30003. height: math.unit(75, "feet"),
  30004. name: "Back",
  30005. image: {
  30006. source: "./media/characters/cat-gigachu/back.svg",
  30007. extra: 1229/1030,
  30008. bottom: 9/1238
  30009. }
  30010. },
  30011. },
  30012. [
  30013. {
  30014. name: "Dynamax",
  30015. height: math.unit(75, "feet"),
  30016. default: true
  30017. },
  30018. ]
  30019. ))
  30020. characterMakers.push(() => makeCharacter(
  30021. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30022. {
  30023. front: {
  30024. height: math.unit(6, "feet"),
  30025. weight: math.unit(150, "lb"),
  30026. name: "Front",
  30027. image: {
  30028. source: "./media/characters/sfaiyan/front.svg",
  30029. extra: 999 / 978,
  30030. bottom: 5 / 1004
  30031. }
  30032. },
  30033. },
  30034. [
  30035. {
  30036. name: "Normal",
  30037. height: math.unit(1.82, "meters")
  30038. },
  30039. {
  30040. name: "Giant",
  30041. height: math.unit(2.27, "km"),
  30042. default: true
  30043. },
  30044. ]
  30045. ))
  30046. characterMakers.push(() => makeCharacter(
  30047. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30048. {
  30049. front: {
  30050. height: math.unit(179, "cm"),
  30051. weight: math.unit(100, "kg"),
  30052. name: "Front",
  30053. image: {
  30054. source: "./media/characters/raunehkeli/front.svg",
  30055. extra: 1934 / 1926,
  30056. bottom: 0 / 1934
  30057. }
  30058. },
  30059. },
  30060. [
  30061. {
  30062. name: "Normal",
  30063. height: math.unit(179, "cm")
  30064. },
  30065. {
  30066. name: "Maximum",
  30067. height: math.unit(575, "meters"),
  30068. default: true
  30069. },
  30070. ]
  30071. ))
  30072. characterMakers.push(() => makeCharacter(
  30073. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30074. {
  30075. front: {
  30076. height: math.unit(6, "feet"),
  30077. weight: math.unit(150, "lb"),
  30078. name: "Front",
  30079. image: {
  30080. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30081. extra: 2625 / 2518,
  30082. bottom: 60 / 2685
  30083. }
  30084. },
  30085. },
  30086. [
  30087. {
  30088. name: "Normal",
  30089. height: math.unit(6 + 2 / 12, "feet")
  30090. },
  30091. {
  30092. name: "Macro",
  30093. height: math.unit(1180, "feet"),
  30094. default: true
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30100. {
  30101. front: {
  30102. height: math.unit(5 + 6 / 12, "feet"),
  30103. weight: math.unit(108, "lb"),
  30104. name: "Front",
  30105. image: {
  30106. source: "./media/characters/lilith-zott/front.svg",
  30107. extra: 2510 / 2238,
  30108. bottom: 100 / 2610
  30109. }
  30110. },
  30111. frontDressed: {
  30112. height: math.unit(5 + 6 / 12, "feet"),
  30113. weight: math.unit(108, "lb"),
  30114. name: "Front (Dressed)",
  30115. image: {
  30116. source: "./media/characters/lilith-zott/front-dressed.svg",
  30117. extra: 2510 / 2238,
  30118. bottom: 100 / 2610
  30119. }
  30120. },
  30121. },
  30122. [
  30123. {
  30124. name: "Normal",
  30125. height: math.unit(5 + 6 / 12, "feet")
  30126. },
  30127. {
  30128. name: "Macro",
  30129. height: math.unit(1030, "feet"),
  30130. default: true
  30131. },
  30132. ]
  30133. ))
  30134. characterMakers.push(() => makeCharacter(
  30135. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30136. {
  30137. front: {
  30138. height: math.unit(6, "feet"),
  30139. weight: math.unit(150, "lb"),
  30140. name: "Front",
  30141. image: {
  30142. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30143. extra: 2567 / 2435,
  30144. bottom: 39 / 2606
  30145. }
  30146. },
  30147. frontSuper: {
  30148. height: math.unit(6, "feet"),
  30149. name: "Front (Super)",
  30150. image: {
  30151. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30152. extra: 2567 / 2435,
  30153. bottom: 39 / 2606
  30154. }
  30155. },
  30156. },
  30157. [
  30158. {
  30159. name: "Normal",
  30160. height: math.unit(5 + 10 / 12, "feet")
  30161. },
  30162. {
  30163. name: "Macro",
  30164. height: math.unit(1100, "feet"),
  30165. default: true
  30166. },
  30167. ]
  30168. ))
  30169. characterMakers.push(() => makeCharacter(
  30170. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30171. {
  30172. front: {
  30173. height: math.unit(100, "miles"),
  30174. name: "Front",
  30175. image: {
  30176. source: "./media/characters/sona/front.svg",
  30177. extra: 2433 / 2201,
  30178. bottom: 53 / 2486
  30179. }
  30180. },
  30181. foot: {
  30182. height: math.unit(16.1, "miles"),
  30183. name: "Foot",
  30184. image: {
  30185. source: "./media/characters/sona/foot.svg"
  30186. }
  30187. },
  30188. },
  30189. [
  30190. {
  30191. name: "Macro",
  30192. height: math.unit(100, "miles"),
  30193. default: true
  30194. },
  30195. ]
  30196. ))
  30197. characterMakers.push(() => makeCharacter(
  30198. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30199. {
  30200. front: {
  30201. height: math.unit(6, "feet"),
  30202. weight: math.unit(150, "lb"),
  30203. name: "Front",
  30204. image: {
  30205. source: "./media/characters/bailey/front.svg",
  30206. extra: 1778 / 1724,
  30207. bottom: 30 / 1808
  30208. }
  30209. },
  30210. },
  30211. [
  30212. {
  30213. name: "Micro",
  30214. height: math.unit(4, "inches")
  30215. },
  30216. {
  30217. name: "Normal",
  30218. height: math.unit(5 + 5 / 12, "feet"),
  30219. default: true
  30220. },
  30221. {
  30222. name: "Macro",
  30223. height: math.unit(250, "feet")
  30224. },
  30225. {
  30226. name: "Megamacro",
  30227. height: math.unit(100, "miles")
  30228. },
  30229. ]
  30230. ))
  30231. characterMakers.push(() => makeCharacter(
  30232. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30233. {
  30234. front: {
  30235. height: math.unit(5 + 2 / 12, "feet"),
  30236. weight: math.unit(120, "lb"),
  30237. name: "Front",
  30238. image: {
  30239. source: "./media/characters/snaps/front.svg",
  30240. extra: 2370 / 2177,
  30241. bottom: 48 / 2418
  30242. }
  30243. },
  30244. back: {
  30245. height: math.unit(5 + 2 / 12, "feet"),
  30246. weight: math.unit(120, "lb"),
  30247. name: "Back",
  30248. image: {
  30249. source: "./media/characters/snaps/back.svg",
  30250. extra: 2408 / 2258,
  30251. bottom: 15 / 2423
  30252. }
  30253. },
  30254. },
  30255. [
  30256. {
  30257. name: "Micro",
  30258. height: math.unit(9, "inches")
  30259. },
  30260. {
  30261. name: "Normal",
  30262. height: math.unit(5 + 2 / 12, "feet"),
  30263. default: true
  30264. },
  30265. {
  30266. name: "Mini Macro",
  30267. height: math.unit(10, "feet")
  30268. },
  30269. ]
  30270. ))
  30271. characterMakers.push(() => makeCharacter(
  30272. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30273. {
  30274. front: {
  30275. height: math.unit(1.8, "meters"),
  30276. weight: math.unit(85, "kg"),
  30277. name: "Front",
  30278. image: {
  30279. source: "./media/characters/azteck/front.svg",
  30280. extra: 2815 / 2625,
  30281. bottom: 89 / 2904
  30282. }
  30283. },
  30284. back: {
  30285. height: math.unit(1.8, "meters"),
  30286. weight: math.unit(85, "kg"),
  30287. name: "Back",
  30288. image: {
  30289. source: "./media/characters/azteck/back.svg",
  30290. extra: 2856 / 2648,
  30291. bottom: 85 / 2941
  30292. }
  30293. },
  30294. frontDressed: {
  30295. height: math.unit(1.8, "meters"),
  30296. weight: math.unit(85, "kg"),
  30297. name: "Front (Dressed)",
  30298. image: {
  30299. source: "./media/characters/azteck/front-dressed.svg",
  30300. extra: 2147 / 2003,
  30301. bottom: 68 / 2215
  30302. }
  30303. },
  30304. head: {
  30305. height: math.unit(0.47, "meters"),
  30306. weight: math.unit(85, "kg"),
  30307. name: "Head",
  30308. image: {
  30309. source: "./media/characters/azteck/head.svg"
  30310. }
  30311. },
  30312. },
  30313. [
  30314. {
  30315. name: "Bite sized",
  30316. height: math.unit(16, "cm")
  30317. },
  30318. {
  30319. name: "Normal",
  30320. height: math.unit(1.8, "meters"),
  30321. default: true
  30322. },
  30323. ]
  30324. ))
  30325. characterMakers.push(() => makeCharacter(
  30326. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30327. {
  30328. front: {
  30329. height: math.unit(6, "feet"),
  30330. weight: math.unit(150, "lb"),
  30331. name: "Front",
  30332. image: {
  30333. source: "./media/characters/pidge/front.svg",
  30334. extra: 1936/1820,
  30335. bottom: 0/1936
  30336. }
  30337. },
  30338. back: {
  30339. height: math.unit(6, "feet"),
  30340. weight: math.unit(150, "lb"),
  30341. name: "Back",
  30342. image: {
  30343. source: "./media/characters/pidge/back.svg",
  30344. extra: 1938/1843,
  30345. bottom: 0/1938
  30346. }
  30347. },
  30348. casual: {
  30349. height: math.unit(6, "feet"),
  30350. weight: math.unit(150, "lb"),
  30351. name: "Casual",
  30352. image: {
  30353. source: "./media/characters/pidge/casual.svg",
  30354. extra: 1936/1820,
  30355. bottom: 0/1936
  30356. }
  30357. },
  30358. tech: {
  30359. height: math.unit(6, "feet"),
  30360. weight: math.unit(150, "lb"),
  30361. name: "Tech",
  30362. image: {
  30363. source: "./media/characters/pidge/tech.svg",
  30364. extra: 1802/1682,
  30365. bottom: 0/1802
  30366. }
  30367. },
  30368. head: {
  30369. height: math.unit(1.61, "feet"),
  30370. name: "Head",
  30371. image: {
  30372. source: "./media/characters/pidge/head.svg"
  30373. }
  30374. },
  30375. collar: {
  30376. height: math.unit(0.82, "feet"),
  30377. name: "Collar",
  30378. image: {
  30379. source: "./media/characters/pidge/collar.svg"
  30380. }
  30381. },
  30382. },
  30383. [
  30384. {
  30385. name: "Macro",
  30386. height: math.unit(2, "mile"),
  30387. default: true
  30388. },
  30389. {
  30390. name: "PUPPY",
  30391. height: math.unit(20, "miles")
  30392. },
  30393. ]
  30394. ))
  30395. characterMakers.push(() => makeCharacter(
  30396. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30397. {
  30398. front: {
  30399. height: math.unit(6, "feet"),
  30400. weight: math.unit(150, "lb"),
  30401. name: "Front",
  30402. image: {
  30403. source: "./media/characters/en/front.svg",
  30404. extra: 1697 / 1563,
  30405. bottom: 103 / 1800
  30406. }
  30407. },
  30408. back: {
  30409. height: math.unit(6, "feet"),
  30410. weight: math.unit(150, "lb"),
  30411. name: "Back",
  30412. image: {
  30413. source: "./media/characters/en/back.svg",
  30414. extra: 1700 / 1570,
  30415. bottom: 51 / 1751
  30416. }
  30417. },
  30418. frontDressed: {
  30419. height: math.unit(6, "feet"),
  30420. weight: math.unit(150, "lb"),
  30421. name: "Front (Dressed)",
  30422. image: {
  30423. source: "./media/characters/en/front-dressed.svg",
  30424. extra: 1697 / 1563,
  30425. bottom: 103 / 1800
  30426. }
  30427. },
  30428. backDressed: {
  30429. height: math.unit(6, "feet"),
  30430. weight: math.unit(150, "lb"),
  30431. name: "Back (Dressed)",
  30432. image: {
  30433. source: "./media/characters/en/back-dressed.svg",
  30434. extra: 1700 / 1570,
  30435. bottom: 51 / 1751
  30436. }
  30437. },
  30438. },
  30439. [
  30440. {
  30441. name: "Macro",
  30442. height: math.unit(210, "feet"),
  30443. default: true
  30444. },
  30445. ]
  30446. ))
  30447. characterMakers.push(() => makeCharacter(
  30448. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30449. {
  30450. front: {
  30451. height: math.unit(6, "feet"),
  30452. weight: math.unit(150, "lb"),
  30453. name: "Front",
  30454. image: {
  30455. source: "./media/characters/haze-orris/front.svg",
  30456. extra: 3975 / 3525,
  30457. bottom: 137 / 4112
  30458. }
  30459. },
  30460. },
  30461. [
  30462. {
  30463. name: "Micro",
  30464. height: math.unit(150, "mm"),
  30465. default: true
  30466. },
  30467. ]
  30468. ))
  30469. characterMakers.push(() => makeCharacter(
  30470. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30471. {
  30472. front: {
  30473. height: math.unit(6, "feet"),
  30474. weight: math.unit(150, "lb"),
  30475. name: "Front",
  30476. image: {
  30477. source: "./media/characters/casselene-yaro/front.svg",
  30478. extra: 4721 / 4541,
  30479. bottom: 82 / 4803
  30480. }
  30481. },
  30482. back: {
  30483. height: math.unit(6, "feet"),
  30484. weight: math.unit(150, "lb"),
  30485. name: "Back",
  30486. image: {
  30487. source: "./media/characters/casselene-yaro/back.svg",
  30488. extra: 4569 / 4377,
  30489. bottom: 69 / 4638
  30490. }
  30491. },
  30492. dressed: {
  30493. height: math.unit(6, "feet"),
  30494. weight: math.unit(150, "lb"),
  30495. name: "Dressed",
  30496. image: {
  30497. source: "./media/characters/casselene-yaro/dressed.svg",
  30498. extra: 4721 / 4541,
  30499. bottom: 82 / 4803
  30500. }
  30501. },
  30502. maw: {
  30503. height: math.unit(1, "feet"),
  30504. name: "Maw",
  30505. image: {
  30506. source: "./media/characters/casselene-yaro/maw.svg"
  30507. }
  30508. },
  30509. },
  30510. [
  30511. {
  30512. name: "Macro",
  30513. height: math.unit(190, "feet"),
  30514. default: true
  30515. },
  30516. ]
  30517. ))
  30518. characterMakers.push(() => makeCharacter(
  30519. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30520. {
  30521. front: {
  30522. height: math.unit(10, "feet"),
  30523. weight: math.unit(15015, "lb"),
  30524. name: "Front",
  30525. image: {
  30526. source: "./media/characters/platine/front.svg",
  30527. extra: 1428/1353,
  30528. bottom: 31/1459
  30529. }
  30530. },
  30531. },
  30532. [
  30533. {
  30534. name: "Normal",
  30535. height: math.unit(10, "feet"),
  30536. default: true
  30537. },
  30538. {
  30539. name: "Macro",
  30540. height: math.unit(100, "feet")
  30541. },
  30542. {
  30543. name: "Megamacro",
  30544. height: math.unit(1000, "feet")
  30545. },
  30546. ]
  30547. ))
  30548. characterMakers.push(() => makeCharacter(
  30549. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30550. {
  30551. front: {
  30552. height: math.unit(15 + 5 / 12, "feet"),
  30553. weight: math.unit(4600, "lb"),
  30554. name: "Front",
  30555. image: {
  30556. source: "./media/characters/neapolitan-ananassa/front.svg",
  30557. extra: 2903 / 2736,
  30558. bottom: 0 / 2903
  30559. }
  30560. },
  30561. side: {
  30562. height: math.unit(15 + 5 / 12, "feet"),
  30563. weight: math.unit(4600, "lb"),
  30564. name: "Side",
  30565. image: {
  30566. source: "./media/characters/neapolitan-ananassa/side.svg",
  30567. extra: 2925 / 2719,
  30568. bottom: 0 / 2925
  30569. }
  30570. },
  30571. back: {
  30572. height: math.unit(15 + 5 / 12, "feet"),
  30573. weight: math.unit(4600, "lb"),
  30574. name: "Back",
  30575. image: {
  30576. source: "./media/characters/neapolitan-ananassa/back.svg",
  30577. extra: 2903 / 2736,
  30578. bottom: 0 / 2903
  30579. }
  30580. },
  30581. },
  30582. [
  30583. {
  30584. name: "Normal",
  30585. height: math.unit(15 + 5 / 12, "feet"),
  30586. default: true
  30587. },
  30588. {
  30589. name: "Post-Millenium",
  30590. height: math.unit(35 + 5 / 12, "feet")
  30591. },
  30592. {
  30593. name: "Post-Era",
  30594. height: math.unit(450 + 5 / 12, "feet")
  30595. },
  30596. ]
  30597. ))
  30598. characterMakers.push(() => makeCharacter(
  30599. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30600. {
  30601. front: {
  30602. height: math.unit(300, "meters"),
  30603. weight: math.unit(125000, "tonnes"),
  30604. name: "Front",
  30605. image: {
  30606. source: "./media/characters/pazuzu/front.svg",
  30607. extra: 877 / 794,
  30608. bottom: 47 / 924
  30609. }
  30610. },
  30611. },
  30612. [
  30613. {
  30614. name: "Macro",
  30615. height: math.unit(300, "meters"),
  30616. default: true
  30617. },
  30618. ]
  30619. ))
  30620. characterMakers.push(() => makeCharacter(
  30621. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30622. {
  30623. side: {
  30624. height: math.unit(10 + 7 / 12, "feet"),
  30625. weight: math.unit(2.5, "tons"),
  30626. name: "Side",
  30627. image: {
  30628. source: "./media/characters/aasha/side.svg",
  30629. extra: 1345 / 1245,
  30630. bottom: 111 / 1456
  30631. }
  30632. },
  30633. back: {
  30634. height: math.unit(10 + 7 / 12, "feet"),
  30635. weight: math.unit(2.5, "tons"),
  30636. name: "Back",
  30637. image: {
  30638. source: "./media/characters/aasha/back.svg",
  30639. extra: 1133 / 1057,
  30640. bottom: 257 / 1390
  30641. }
  30642. },
  30643. },
  30644. [
  30645. {
  30646. name: "Normal",
  30647. height: math.unit(10 + 7 / 12, "feet"),
  30648. default: true
  30649. },
  30650. ]
  30651. ))
  30652. characterMakers.push(() => makeCharacter(
  30653. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30654. {
  30655. front: {
  30656. height: math.unit(6 + 3 / 12, "feet"),
  30657. name: "Front",
  30658. image: {
  30659. source: "./media/characters/nevan/front.svg",
  30660. extra: 704 / 704,
  30661. bottom: 28 / 732
  30662. }
  30663. },
  30664. back: {
  30665. height: math.unit(6 + 3 / 12, "feet"),
  30666. name: "Back",
  30667. image: {
  30668. source: "./media/characters/nevan/back.svg",
  30669. extra: 714 / 714,
  30670. bottom: 21 / 735
  30671. }
  30672. },
  30673. frontFlaccid: {
  30674. height: math.unit(6 + 3 / 12, "feet"),
  30675. name: "Front (Flaccid)",
  30676. image: {
  30677. source: "./media/characters/nevan/front-flaccid.svg",
  30678. extra: 704 / 704,
  30679. bottom: 28 / 732
  30680. }
  30681. },
  30682. frontErect: {
  30683. height: math.unit(6 + 3 / 12, "feet"),
  30684. name: "Front (Erect)",
  30685. image: {
  30686. source: "./media/characters/nevan/front-erect.svg",
  30687. extra: 704 / 704,
  30688. bottom: 28 / 732
  30689. }
  30690. },
  30691. backFlaccid: {
  30692. height: math.unit(6 + 3 / 12, "feet"),
  30693. name: "Back (Flaccid)",
  30694. image: {
  30695. source: "./media/characters/nevan/back-flaccid.svg",
  30696. extra: 714 / 714,
  30697. bottom: 21 / 735
  30698. }
  30699. },
  30700. },
  30701. [
  30702. {
  30703. name: "Normal",
  30704. height: math.unit(6 + 3 / 12, "feet"),
  30705. default: true
  30706. },
  30707. ]
  30708. ))
  30709. characterMakers.push(() => makeCharacter(
  30710. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30711. {
  30712. front: {
  30713. height: math.unit(4, "feet"),
  30714. name: "Front",
  30715. image: {
  30716. source: "./media/characters/arhan/front.svg",
  30717. extra: 3368 / 3133,
  30718. bottom: 0 / 3368
  30719. }
  30720. },
  30721. side: {
  30722. height: math.unit(4, "feet"),
  30723. name: "Side",
  30724. image: {
  30725. source: "./media/characters/arhan/side.svg",
  30726. extra: 3347 / 3105,
  30727. bottom: 0 / 3347
  30728. }
  30729. },
  30730. tongue: {
  30731. height: math.unit(1.42, "feet"),
  30732. name: "Tongue",
  30733. image: {
  30734. source: "./media/characters/arhan/tongue.svg"
  30735. }
  30736. },
  30737. head: {
  30738. height: math.unit(0.85, "feet"),
  30739. name: "Head",
  30740. image: {
  30741. source: "./media/characters/arhan/head.svg"
  30742. }
  30743. },
  30744. },
  30745. [
  30746. {
  30747. name: "Normal",
  30748. height: math.unit(4, "feet"),
  30749. default: true
  30750. },
  30751. ]
  30752. ))
  30753. characterMakers.push(() => makeCharacter(
  30754. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30755. {
  30756. front: {
  30757. height: math.unit(5 + 7.5 / 12, "feet"),
  30758. weight: math.unit(120, "lb"),
  30759. name: "Front",
  30760. image: {
  30761. source: "./media/characters/digi-duncan/front.svg",
  30762. extra: 330 / 326,
  30763. bottom: 16 / 346
  30764. }
  30765. },
  30766. side: {
  30767. height: math.unit(5 + 7.5 / 12, "feet"),
  30768. weight: math.unit(120, "lb"),
  30769. name: "Side",
  30770. image: {
  30771. source: "./media/characters/digi-duncan/side.svg",
  30772. extra: 341 / 337,
  30773. bottom: 1 / 342
  30774. }
  30775. },
  30776. back: {
  30777. height: math.unit(5 + 7.5 / 12, "feet"),
  30778. weight: math.unit(120, "lb"),
  30779. name: "Back",
  30780. image: {
  30781. source: "./media/characters/digi-duncan/back.svg",
  30782. extra: 330 / 326,
  30783. bottom: 12 / 342
  30784. }
  30785. },
  30786. },
  30787. [
  30788. {
  30789. name: "Speck",
  30790. height: math.unit(0.25, "mm")
  30791. },
  30792. {
  30793. name: "Micro",
  30794. height: math.unit(5, "mm")
  30795. },
  30796. {
  30797. name: "Tiny",
  30798. height: math.unit(0.5, "inches"),
  30799. default: true
  30800. },
  30801. {
  30802. name: "Human",
  30803. height: math.unit(5 + 7.5 / 12, "feet")
  30804. },
  30805. {
  30806. name: "Minigiant",
  30807. height: math.unit(8 + 5.25, "feet")
  30808. },
  30809. {
  30810. name: "Giant",
  30811. height: math.unit(2000, "feet")
  30812. },
  30813. {
  30814. name: "Mega",
  30815. height: math.unit(371.1, "miles")
  30816. },
  30817. ]
  30818. ))
  30819. characterMakers.push(() => makeCharacter(
  30820. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30821. {
  30822. front: {
  30823. height: math.unit(2, "meters"),
  30824. weight: math.unit(350, "kg"),
  30825. name: "Front",
  30826. image: {
  30827. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30828. extra: 898 / 838,
  30829. bottom: 9 / 907
  30830. }
  30831. },
  30832. },
  30833. [
  30834. {
  30835. name: "Micro",
  30836. height: math.unit(8, "meters")
  30837. },
  30838. {
  30839. name: "Normal",
  30840. height: math.unit(50, "meters"),
  30841. default: true
  30842. },
  30843. {
  30844. name: "Macro",
  30845. height: math.unit(500, "meters")
  30846. },
  30847. ]
  30848. ))
  30849. characterMakers.push(() => makeCharacter(
  30850. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30851. {
  30852. front: {
  30853. height: math.unit(6 + 6 / 12, "feet"),
  30854. name: "Front",
  30855. image: {
  30856. source: "./media/characters/khardesh/front.svg",
  30857. extra: 1788/1596,
  30858. bottom: 66/1854
  30859. }
  30860. },
  30861. back: {
  30862. height: math.unit(6 + 6 / 12, "feet"),
  30863. name: "Back",
  30864. image: {
  30865. source: "./media/characters/khardesh/back.svg",
  30866. extra: 1781/1584,
  30867. bottom: 68/1849
  30868. }
  30869. },
  30870. },
  30871. [
  30872. {
  30873. name: "Normal",
  30874. height: math.unit(6 + 6 / 12, "feet"),
  30875. default: true
  30876. },
  30877. {
  30878. name: "Normal+",
  30879. height: math.unit(4, "meters")
  30880. },
  30881. {
  30882. name: "Macro",
  30883. height: math.unit(50, "meters")
  30884. },
  30885. {
  30886. name: "Macro+",
  30887. height: math.unit(100, "meters")
  30888. },
  30889. {
  30890. name: "Megamacro",
  30891. height: math.unit(20, "km")
  30892. },
  30893. ]
  30894. ))
  30895. characterMakers.push(() => makeCharacter(
  30896. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30897. {
  30898. front: {
  30899. height: math.unit(6, "feet"),
  30900. weight: math.unit(150, "lb"),
  30901. name: "Front",
  30902. image: {
  30903. source: "./media/characters/kosho/front.svg",
  30904. extra: 1847 / 1847,
  30905. bottom: 86 / 1933
  30906. }
  30907. },
  30908. },
  30909. [
  30910. {
  30911. name: "Second-stage micro",
  30912. height: math.unit(0.5, "inches")
  30913. },
  30914. {
  30915. name: "First-stage micro",
  30916. height: math.unit(6, "inches")
  30917. },
  30918. {
  30919. name: "Normal",
  30920. height: math.unit(6, "feet"),
  30921. default: true
  30922. },
  30923. {
  30924. name: "First-stage macro",
  30925. height: math.unit(72, "feet")
  30926. },
  30927. {
  30928. name: "Second-stage macro",
  30929. height: math.unit(864, "feet")
  30930. },
  30931. ]
  30932. ))
  30933. characterMakers.push(() => makeCharacter(
  30934. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30935. {
  30936. normal: {
  30937. height: math.unit(4 + 6 / 12, "feet"),
  30938. name: "Normal",
  30939. image: {
  30940. source: "./media/characters/hydra/normal.svg",
  30941. extra: 2833 / 2634,
  30942. bottom: 68 / 2901
  30943. }
  30944. },
  30945. smol: {
  30946. height: math.unit(0.705, "inches"),
  30947. name: "Smol",
  30948. image: {
  30949. source: "./media/characters/hydra/smol.svg",
  30950. extra: 2715 / 2540,
  30951. bottom: 0 / 2715
  30952. }
  30953. },
  30954. },
  30955. [
  30956. {
  30957. name: "Normal",
  30958. height: math.unit(4 + 6 / 12, "feet"),
  30959. default: true
  30960. }
  30961. ]
  30962. ))
  30963. characterMakers.push(() => makeCharacter(
  30964. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30965. {
  30966. front: {
  30967. height: math.unit(0.6, "cm"),
  30968. name: "Front",
  30969. image: {
  30970. source: "./media/characters/daz/front.svg",
  30971. extra: 1682 / 1164,
  30972. bottom: 42 / 1724
  30973. }
  30974. },
  30975. },
  30976. [
  30977. {
  30978. name: "Normal",
  30979. height: math.unit(0.6, "cm"),
  30980. default: true
  30981. },
  30982. ]
  30983. ))
  30984. characterMakers.push(() => makeCharacter(
  30985. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30986. {
  30987. front: {
  30988. height: math.unit(6, "feet"),
  30989. weight: math.unit(235, "lb"),
  30990. name: "Front",
  30991. image: {
  30992. source: "./media/characters/theo-pangolin/front.svg",
  30993. extra: 1996 / 1969,
  30994. bottom: 115 / 2111
  30995. }
  30996. },
  30997. back: {
  30998. height: math.unit(6, "feet"),
  30999. weight: math.unit(235, "lb"),
  31000. name: "Back",
  31001. image: {
  31002. source: "./media/characters/theo-pangolin/back.svg",
  31003. extra: 1979 / 1979,
  31004. bottom: 40 / 2019
  31005. }
  31006. },
  31007. feral: {
  31008. height: math.unit(2, "feet"),
  31009. weight: math.unit(30, "lb"),
  31010. name: "Feral",
  31011. image: {
  31012. source: "./media/characters/theo-pangolin/feral.svg",
  31013. extra: 803 / 791,
  31014. bottom: 181 / 984
  31015. }
  31016. },
  31017. footFive: {
  31018. height: math.unit(1.43, "feet"),
  31019. name: "Foot (Five Toes)",
  31020. image: {
  31021. source: "./media/characters/theo-pangolin/foot-five.svg"
  31022. }
  31023. },
  31024. footFour: {
  31025. height: math.unit(1.43, "feet"),
  31026. name: "Foot (Four Toes)",
  31027. image: {
  31028. source: "./media/characters/theo-pangolin/foot-four.svg"
  31029. }
  31030. },
  31031. handFour: {
  31032. height: math.unit(0.81, "feet"),
  31033. name: "Hand (Four Fingers)",
  31034. image: {
  31035. source: "./media/characters/theo-pangolin/hand-four.svg"
  31036. }
  31037. },
  31038. handThree: {
  31039. height: math.unit(0.81, "feet"),
  31040. name: "Hand (Three Fingers)",
  31041. image: {
  31042. source: "./media/characters/theo-pangolin/hand-three.svg"
  31043. }
  31044. },
  31045. headFront: {
  31046. height: math.unit(1.37, "feet"),
  31047. name: "Head (Front)",
  31048. image: {
  31049. source: "./media/characters/theo-pangolin/head-front.svg"
  31050. }
  31051. },
  31052. headSide: {
  31053. height: math.unit(1.43, "feet"),
  31054. name: "Head (Side)",
  31055. image: {
  31056. source: "./media/characters/theo-pangolin/head-side.svg"
  31057. }
  31058. },
  31059. tongue: {
  31060. height: math.unit(2.29, "feet"),
  31061. name: "Tongue",
  31062. image: {
  31063. source: "./media/characters/theo-pangolin/tongue.svg"
  31064. }
  31065. },
  31066. },
  31067. [
  31068. {
  31069. name: "Normal",
  31070. height: math.unit(6, "feet")
  31071. },
  31072. {
  31073. name: "Macro",
  31074. height: math.unit(400, "feet"),
  31075. default: true
  31076. },
  31077. ]
  31078. ))
  31079. characterMakers.push(() => makeCharacter(
  31080. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31081. {
  31082. front: {
  31083. height: math.unit(6, "inches"),
  31084. weight: math.unit(0.036, "kg"),
  31085. name: "Front",
  31086. image: {
  31087. source: "./media/characters/renée/front.svg",
  31088. extra: 900 / 886,
  31089. bottom: 8 / 908
  31090. }
  31091. },
  31092. },
  31093. [
  31094. {
  31095. name: "Nano",
  31096. height: math.unit(1, "nm")
  31097. },
  31098. {
  31099. name: "Micro",
  31100. height: math.unit(1, "mm")
  31101. },
  31102. {
  31103. name: "Normal",
  31104. height: math.unit(6, "inches")
  31105. },
  31106. {
  31107. name: "Macro",
  31108. height: math.unit(2000, "feet"),
  31109. default: true
  31110. },
  31111. {
  31112. name: "Megamacro",
  31113. height: math.unit(2, "km")
  31114. },
  31115. {
  31116. name: "Gigamacro",
  31117. height: math.unit(2000, "km")
  31118. },
  31119. {
  31120. name: "Teramacro",
  31121. height: math.unit(250000, "km")
  31122. },
  31123. ]
  31124. ))
  31125. characterMakers.push(() => makeCharacter(
  31126. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31127. {
  31128. front: {
  31129. height: math.unit(4, "meters"),
  31130. weight: math.unit(150, "kg"),
  31131. name: "Front",
  31132. image: {
  31133. source: "./media/characters/caledvwlch/front.svg",
  31134. extra: 1760 / 1551,
  31135. bottom: 28 / 1788
  31136. }
  31137. },
  31138. side: {
  31139. height: math.unit(4, "meters"),
  31140. weight: math.unit(150, "kg"),
  31141. name: "Side",
  31142. image: {
  31143. source: "./media/characters/caledvwlch/side.svg",
  31144. extra: 1605 / 1536,
  31145. bottom: 31 / 1636
  31146. }
  31147. },
  31148. back: {
  31149. height: math.unit(4, "meters"),
  31150. weight: math.unit(150, "kg"),
  31151. name: "Back",
  31152. image: {
  31153. source: "./media/characters/caledvwlch/back.svg",
  31154. extra: 1635 / 1565,
  31155. bottom: 27 / 1662
  31156. }
  31157. },
  31158. },
  31159. [
  31160. {
  31161. name: "\"Incognito\"",
  31162. height: math.unit(4, "meters")
  31163. },
  31164. {
  31165. name: "Small rampage",
  31166. height: math.unit(600, "meters")
  31167. },
  31168. {
  31169. name: "Mega",
  31170. height: math.unit(30, "km")
  31171. },
  31172. {
  31173. name: "Home-size",
  31174. height: math.unit(50, "km"),
  31175. default: true
  31176. },
  31177. {
  31178. name: "Giga",
  31179. height: math.unit(300, "km")
  31180. },
  31181. {
  31182. name: "Lounging",
  31183. height: math.unit(11000, "km")
  31184. },
  31185. {
  31186. name: "Planet snacking",
  31187. height: math.unit(2000000, "km")
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31193. {
  31194. front: {
  31195. height: math.unit(6, "feet"),
  31196. weight: math.unit(215, "lb"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/sapphire-svell/front.svg",
  31200. extra: 495 / 455,
  31201. bottom: 20 / 515
  31202. }
  31203. },
  31204. back: {
  31205. height: math.unit(6, "feet"),
  31206. weight: math.unit(216, "lb"),
  31207. name: "Back",
  31208. image: {
  31209. source: "./media/characters/sapphire-svell/back.svg",
  31210. extra: 497 / 477,
  31211. bottom: 7 / 504
  31212. }
  31213. },
  31214. maw: {
  31215. height: math.unit(1.57, "feet"),
  31216. name: "Maw",
  31217. image: {
  31218. source: "./media/characters/sapphire-svell/maw.svg"
  31219. }
  31220. },
  31221. foot: {
  31222. height: math.unit(1.07, "feet"),
  31223. name: "Foot",
  31224. image: {
  31225. source: "./media/characters/sapphire-svell/foot.svg"
  31226. }
  31227. },
  31228. toering: {
  31229. height: math.unit(1.7, "inch"),
  31230. name: "Toering",
  31231. image: {
  31232. source: "./media/characters/sapphire-svell/toering.svg"
  31233. }
  31234. },
  31235. },
  31236. [
  31237. {
  31238. name: "Normal",
  31239. height: math.unit(300, "feet"),
  31240. default: true
  31241. },
  31242. {
  31243. name: "Augmented",
  31244. height: math.unit(1250, "feet")
  31245. },
  31246. {
  31247. name: "Unleashed",
  31248. height: math.unit(3000, "feet")
  31249. },
  31250. ]
  31251. ))
  31252. characterMakers.push(() => makeCharacter(
  31253. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31254. {
  31255. side: {
  31256. height: math.unit(2 + 3 / 12, "feet"),
  31257. weight: math.unit(110, "lb"),
  31258. name: "Side",
  31259. image: {
  31260. source: "./media/characters/glitch-flux/side.svg",
  31261. extra: 997 / 805,
  31262. bottom: 20 / 1017
  31263. }
  31264. },
  31265. },
  31266. [
  31267. {
  31268. name: "Normal",
  31269. height: math.unit(2 + 3 / 12, "feet"),
  31270. default: true
  31271. },
  31272. ]
  31273. ))
  31274. characterMakers.push(() => makeCharacter(
  31275. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31276. {
  31277. front: {
  31278. height: math.unit(4, "meters"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/mid/front.svg",
  31282. extra: 507 / 476,
  31283. bottom: 17 / 524
  31284. }
  31285. },
  31286. back: {
  31287. height: math.unit(4, "meters"),
  31288. name: "Back",
  31289. image: {
  31290. source: "./media/characters/mid/back.svg",
  31291. extra: 519 / 487,
  31292. bottom: 7 / 526
  31293. }
  31294. },
  31295. stuck: {
  31296. height: math.unit(2.2, "meters"),
  31297. name: "Stuck",
  31298. image: {
  31299. source: "./media/characters/mid/stuck.svg",
  31300. extra: 1951 / 1869,
  31301. bottom: 88 / 2039
  31302. }
  31303. }
  31304. },
  31305. [
  31306. {
  31307. name: "Normal",
  31308. height: math.unit(4, "meters"),
  31309. default: true
  31310. },
  31311. {
  31312. name: "Big",
  31313. height: math.unit(10, "meters")
  31314. },
  31315. {
  31316. name: "Macro",
  31317. height: math.unit(800, "meters")
  31318. },
  31319. {
  31320. name: "Megamacro",
  31321. height: math.unit(100, "km")
  31322. },
  31323. {
  31324. name: "Overgrown",
  31325. height: math.unit(1, "parsec")
  31326. },
  31327. ]
  31328. ))
  31329. characterMakers.push(() => makeCharacter(
  31330. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31331. {
  31332. front: {
  31333. height: math.unit(2.5, "meters"),
  31334. weight: math.unit(225, "kg"),
  31335. name: "Front",
  31336. image: {
  31337. source: "./media/characters/iris/front.svg",
  31338. extra: 3348 / 3251,
  31339. bottom: 205 / 3553
  31340. }
  31341. },
  31342. maw: {
  31343. height: math.unit(0.56, "meter"),
  31344. name: "Maw",
  31345. image: {
  31346. source: "./media/characters/iris/maw.svg"
  31347. }
  31348. },
  31349. },
  31350. [
  31351. {
  31352. name: "Mewter cat",
  31353. height: math.unit(1.2, "meters")
  31354. },
  31355. {
  31356. name: "Minimacro",
  31357. height: math.unit(2.5, "meters"),
  31358. default: true
  31359. },
  31360. {
  31361. name: "Macro",
  31362. height: math.unit(180, "meters")
  31363. },
  31364. {
  31365. name: "Megamacro",
  31366. height: math.unit(2746, "meters")
  31367. },
  31368. ]
  31369. ))
  31370. characterMakers.push(() => makeCharacter(
  31371. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31372. {
  31373. front: {
  31374. height: math.unit(6, "feet"),
  31375. weight: math.unit(135, "lb"),
  31376. name: "Front",
  31377. image: {
  31378. source: "./media/characters/axel/front.svg",
  31379. extra: 908 / 908,
  31380. bottom: 58 / 966
  31381. }
  31382. },
  31383. side: {
  31384. height: math.unit(6, "feet"),
  31385. weight: math.unit(135, "lb"),
  31386. name: "Side",
  31387. image: {
  31388. source: "./media/characters/axel/side.svg",
  31389. extra: 958 / 958,
  31390. bottom: 11 / 969
  31391. }
  31392. },
  31393. back: {
  31394. height: math.unit(6, "feet"),
  31395. weight: math.unit(135, "lb"),
  31396. name: "Back",
  31397. image: {
  31398. source: "./media/characters/axel/back.svg",
  31399. extra: 887 / 887,
  31400. bottom: 34 / 921
  31401. }
  31402. },
  31403. head: {
  31404. height: math.unit(1.07, "feet"),
  31405. name: "Head",
  31406. image: {
  31407. source: "./media/characters/axel/head.svg"
  31408. }
  31409. },
  31410. beak: {
  31411. height: math.unit(1.4, "feet"),
  31412. name: "Beak",
  31413. image: {
  31414. source: "./media/characters/axel/beak.svg"
  31415. }
  31416. },
  31417. beakSide: {
  31418. height: math.unit(1.4, "feet"),
  31419. name: "Beak Side",
  31420. image: {
  31421. source: "./media/characters/axel/beak-side.svg"
  31422. }
  31423. },
  31424. sheath: {
  31425. height: math.unit(0.5, "feet"),
  31426. name: "Sheath",
  31427. image: {
  31428. source: "./media/characters/axel/sheath.svg"
  31429. }
  31430. },
  31431. dick: {
  31432. height: math.unit(0.98, "feet"),
  31433. name: "Dick",
  31434. image: {
  31435. source: "./media/characters/axel/dick.svg"
  31436. }
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Macro",
  31442. height: math.unit(68, "meters"),
  31443. default: true
  31444. },
  31445. ]
  31446. ))
  31447. characterMakers.push(() => makeCharacter(
  31448. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31449. {
  31450. front: {
  31451. height: math.unit(3.5, "meters"),
  31452. weight: math.unit(1200, "kg"),
  31453. name: "Front",
  31454. image: {
  31455. source: "./media/characters/joanna/front.svg",
  31456. extra: 1596 / 1488,
  31457. bottom: 29 / 1625
  31458. }
  31459. },
  31460. back: {
  31461. height: math.unit(3.5, "meters"),
  31462. weight: math.unit(1200, "kg"),
  31463. name: "Back",
  31464. image: {
  31465. source: "./media/characters/joanna/back.svg",
  31466. extra: 1594 / 1495,
  31467. bottom: 26 / 1620
  31468. }
  31469. },
  31470. frontShorts: {
  31471. height: math.unit(3.5, "meters"),
  31472. weight: math.unit(1200, "kg"),
  31473. name: "Front (Shorts)",
  31474. image: {
  31475. source: "./media/characters/joanna/front-shorts.svg",
  31476. extra: 1596 / 1488,
  31477. bottom: 29 / 1625
  31478. }
  31479. },
  31480. frontBiker: {
  31481. height: math.unit(3.5, "meters"),
  31482. weight: math.unit(1200, "kg"),
  31483. name: "Front (Biker)",
  31484. image: {
  31485. source: "./media/characters/joanna/front-biker.svg",
  31486. extra: 1596 / 1488,
  31487. bottom: 29 / 1625
  31488. }
  31489. },
  31490. backBiker: {
  31491. height: math.unit(3.5, "meters"),
  31492. weight: math.unit(1200, "kg"),
  31493. name: "Back (Biker)",
  31494. image: {
  31495. source: "./media/characters/joanna/back-biker.svg",
  31496. extra: 1594 / 1495,
  31497. bottom: 88 / 1682
  31498. }
  31499. },
  31500. bikeLeft: {
  31501. height: math.unit(2.4, "meters"),
  31502. weight: math.unit(1600, "kg"),
  31503. name: "Bike (Left)",
  31504. image: {
  31505. source: "./media/characters/joanna/bike-left.svg",
  31506. extra: 720 / 720,
  31507. bottom: 8 / 728
  31508. }
  31509. },
  31510. bikeRight: {
  31511. height: math.unit(2.4, "meters"),
  31512. weight: math.unit(1600, "kg"),
  31513. name: "Bike (Right)",
  31514. image: {
  31515. source: "./media/characters/joanna/bike-right.svg",
  31516. extra: 720 / 720,
  31517. bottom: 8 / 728
  31518. }
  31519. },
  31520. },
  31521. [
  31522. {
  31523. name: "Incognito",
  31524. height: math.unit(3.5, "meters")
  31525. },
  31526. {
  31527. name: "Casual Big",
  31528. height: math.unit(200, "meters")
  31529. },
  31530. {
  31531. name: "Macro",
  31532. height: math.unit(600, "meters")
  31533. },
  31534. {
  31535. name: "Original",
  31536. height: math.unit(20, "km"),
  31537. default: true
  31538. },
  31539. {
  31540. name: "Giga",
  31541. height: math.unit(400, "km")
  31542. },
  31543. {
  31544. name: "Lounging",
  31545. height: math.unit(1500, "km")
  31546. },
  31547. {
  31548. name: "Planetary",
  31549. height: math.unit(200000, "km")
  31550. },
  31551. ]
  31552. ))
  31553. characterMakers.push(() => makeCharacter(
  31554. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31555. {
  31556. front: {
  31557. height: math.unit(6, "feet"),
  31558. weight: math.unit(150, "lb"),
  31559. name: "Front",
  31560. image: {
  31561. source: "./media/characters/hugo-sigil/front.svg",
  31562. extra: 522 / 500,
  31563. bottom: 2 / 524
  31564. }
  31565. },
  31566. back: {
  31567. height: math.unit(6, "feet"),
  31568. weight: math.unit(150, "lb"),
  31569. name: "Back",
  31570. image: {
  31571. source: "./media/characters/hugo-sigil/back.svg",
  31572. extra: 519 / 495,
  31573. bottom: 5 / 524
  31574. }
  31575. },
  31576. maw: {
  31577. height: math.unit(1.4, "feet"),
  31578. weight: math.unit(150, "lb"),
  31579. name: "Maw",
  31580. image: {
  31581. source: "./media/characters/hugo-sigil/maw.svg"
  31582. }
  31583. },
  31584. feet: {
  31585. height: math.unit(1.56, "feet"),
  31586. weight: math.unit(150, "lb"),
  31587. name: "Feet",
  31588. image: {
  31589. source: "./media/characters/hugo-sigil/feet.svg",
  31590. extra: 177 / 177,
  31591. bottom: 12 / 189
  31592. }
  31593. },
  31594. },
  31595. [
  31596. {
  31597. name: "Normal",
  31598. height: math.unit(6, "feet")
  31599. },
  31600. {
  31601. name: "Macro",
  31602. height: math.unit(200, "feet"),
  31603. default: true
  31604. },
  31605. ]
  31606. ))
  31607. characterMakers.push(() => makeCharacter(
  31608. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31609. {
  31610. front: {
  31611. height: math.unit(6, "feet"),
  31612. weight: math.unit(150, "lb"),
  31613. name: "Front",
  31614. image: {
  31615. source: "./media/characters/peri/front.svg",
  31616. extra: 2354 / 2233,
  31617. bottom: 49 / 2403
  31618. }
  31619. },
  31620. },
  31621. [
  31622. {
  31623. name: "Really Small",
  31624. height: math.unit(1, "nm")
  31625. },
  31626. {
  31627. name: "Micro",
  31628. height: math.unit(4, "inches")
  31629. },
  31630. {
  31631. name: "Normal",
  31632. height: math.unit(7, "inches"),
  31633. default: true
  31634. },
  31635. {
  31636. name: "Macro",
  31637. height: math.unit(400, "feet")
  31638. },
  31639. {
  31640. name: "Megamacro",
  31641. height: math.unit(100, "miles")
  31642. },
  31643. ]
  31644. ))
  31645. characterMakers.push(() => makeCharacter(
  31646. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31647. {
  31648. frontSlim: {
  31649. height: math.unit(7, "feet"),
  31650. name: "Front (Slim)",
  31651. image: {
  31652. source: "./media/characters/issilora/front-slim.svg",
  31653. extra: 529 / 449,
  31654. bottom: 53 / 582
  31655. }
  31656. },
  31657. sideSlim: {
  31658. height: math.unit(7, "feet"),
  31659. name: "Side (Slim)",
  31660. image: {
  31661. source: "./media/characters/issilora/side-slim.svg",
  31662. extra: 570 / 480,
  31663. bottom: 30 / 600
  31664. }
  31665. },
  31666. backSlim: {
  31667. height: math.unit(7, "feet"),
  31668. name: "Back (Slim)",
  31669. image: {
  31670. source: "./media/characters/issilora/back-slim.svg",
  31671. extra: 537 / 455,
  31672. bottom: 46 / 583
  31673. }
  31674. },
  31675. frontBuff: {
  31676. height: math.unit(7, "feet"),
  31677. name: "Front (Buff)",
  31678. image: {
  31679. source: "./media/characters/issilora/front-buff.svg",
  31680. extra: 2310 / 2035,
  31681. bottom: 335 / 2645
  31682. }
  31683. },
  31684. head: {
  31685. height: math.unit(1.94, "feet"),
  31686. name: "Head",
  31687. image: {
  31688. source: "./media/characters/issilora/head.svg"
  31689. }
  31690. },
  31691. },
  31692. [
  31693. {
  31694. name: "Minimum",
  31695. height: math.unit(7, "feet")
  31696. },
  31697. {
  31698. name: "Comfortable",
  31699. height: math.unit(17, "feet")
  31700. },
  31701. {
  31702. name: "Fun Size",
  31703. height: math.unit(47, "feet")
  31704. },
  31705. {
  31706. name: "Natural Macro",
  31707. height: math.unit(137, "feet"),
  31708. default: true
  31709. },
  31710. {
  31711. name: "Maximum Kaiju",
  31712. height: math.unit(397, "feet")
  31713. },
  31714. ]
  31715. ))
  31716. characterMakers.push(() => makeCharacter(
  31717. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31718. {
  31719. front: {
  31720. height: math.unit(50 + 9/12, "feet"),
  31721. weight: math.unit(32.8, "tons"),
  31722. name: "Front",
  31723. image: {
  31724. source: "./media/characters/irb'iiritaahn/front.svg",
  31725. extra: 1878/1826,
  31726. bottom: 326/2204
  31727. }
  31728. },
  31729. back: {
  31730. height: math.unit(50 + 9/12, "feet"),
  31731. weight: math.unit(32.8, "tons"),
  31732. name: "Back",
  31733. image: {
  31734. source: "./media/characters/irb'iiritaahn/back.svg",
  31735. extra: 2052/2018,
  31736. bottom: 152/2204
  31737. }
  31738. },
  31739. head: {
  31740. height: math.unit(12.86, "feet"),
  31741. name: "Head",
  31742. image: {
  31743. source: "./media/characters/irb'iiritaahn/head.svg"
  31744. }
  31745. },
  31746. maw: {
  31747. height: math.unit(9.66, "feet"),
  31748. name: "Maw",
  31749. image: {
  31750. source: "./media/characters/irb'iiritaahn/maw.svg"
  31751. }
  31752. },
  31753. frontDick: {
  31754. height: math.unit(8.78461, "feet"),
  31755. name: "Front Dick",
  31756. image: {
  31757. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31758. }
  31759. },
  31760. rearDick: {
  31761. height: math.unit(8.78461, "feet"),
  31762. name: "Rear Dick",
  31763. image: {
  31764. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31765. }
  31766. },
  31767. rearDickUnfolded: {
  31768. height: math.unit(8.78, "feet"),
  31769. name: "Rear Dick (Unfolded)",
  31770. image: {
  31771. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31772. }
  31773. },
  31774. wings: {
  31775. height: math.unit(43, "feet"),
  31776. name: "Wings",
  31777. image: {
  31778. source: "./media/characters/irb'iiritaahn/wings.svg"
  31779. }
  31780. },
  31781. },
  31782. [
  31783. {
  31784. name: "Macro",
  31785. height: math.unit(50 + 9/12, "feet"),
  31786. default: true
  31787. },
  31788. ]
  31789. ))
  31790. characterMakers.push(() => makeCharacter(
  31791. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31792. {
  31793. front: {
  31794. height: math.unit(205, "cm"),
  31795. weight: math.unit(102, "kg"),
  31796. name: "Front",
  31797. image: {
  31798. source: "./media/characters/irbisgreif/front.svg",
  31799. extra: 785/706,
  31800. bottom: 13/798
  31801. }
  31802. },
  31803. back: {
  31804. height: math.unit(205, "cm"),
  31805. weight: math.unit(102, "kg"),
  31806. name: "Back",
  31807. image: {
  31808. source: "./media/characters/irbisgreif/back.svg",
  31809. extra: 713/701,
  31810. bottom: 26/739
  31811. }
  31812. },
  31813. frontDressed: {
  31814. height: math.unit(216, "cm"),
  31815. weight: math.unit(102, "kg"),
  31816. name: "Front-dressed",
  31817. image: {
  31818. source: "./media/characters/irbisgreif/front-dressed.svg",
  31819. extra: 902/776,
  31820. bottom: 14/916
  31821. }
  31822. },
  31823. sideDressed: {
  31824. height: math.unit(195, "cm"),
  31825. weight: math.unit(102, "kg"),
  31826. name: "Side-dressed",
  31827. image: {
  31828. source: "./media/characters/irbisgreif/side-dressed.svg",
  31829. extra: 788/688,
  31830. bottom: 21/809
  31831. }
  31832. },
  31833. backDressed: {
  31834. height: math.unit(216, "cm"),
  31835. weight: math.unit(102, "kg"),
  31836. name: "Back-dressed",
  31837. image: {
  31838. source: "./media/characters/irbisgreif/back-dressed.svg",
  31839. extra: 901/783,
  31840. bottom: 10/911
  31841. }
  31842. },
  31843. dick: {
  31844. height: math.unit(0.49, "feet"),
  31845. name: "Dick",
  31846. image: {
  31847. source: "./media/characters/irbisgreif/dick.svg"
  31848. }
  31849. },
  31850. wingTop: {
  31851. height: math.unit(1.93 , "feet"),
  31852. name: "Wing-top",
  31853. image: {
  31854. source: "./media/characters/irbisgreif/wing-top.svg"
  31855. }
  31856. },
  31857. wingBottom: {
  31858. height: math.unit(1.93 , "feet"),
  31859. name: "Wing-bottom",
  31860. image: {
  31861. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31862. }
  31863. },
  31864. },
  31865. [
  31866. {
  31867. name: "Normal",
  31868. height: math.unit(216, "cm"),
  31869. default: true
  31870. },
  31871. ]
  31872. ))
  31873. characterMakers.push(() => makeCharacter(
  31874. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31875. {
  31876. front: {
  31877. height: math.unit(6, "feet"),
  31878. weight: math.unit(150, "lb"),
  31879. name: "Front",
  31880. image: {
  31881. source: "./media/characters/pride/front.svg",
  31882. extra: 1299/1230,
  31883. bottom: 18/1317
  31884. }
  31885. },
  31886. },
  31887. [
  31888. {
  31889. name: "Normal",
  31890. height: math.unit(7, "feet")
  31891. },
  31892. {
  31893. name: "Mini-macro",
  31894. height: math.unit(11, "feet")
  31895. },
  31896. {
  31897. name: "Macro",
  31898. height: math.unit(15, "meters"),
  31899. default: true
  31900. },
  31901. {
  31902. name: "Macro+",
  31903. height: math.unit(40, "meters")
  31904. },
  31905. ]
  31906. ))
  31907. characterMakers.push(() => makeCharacter(
  31908. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31909. {
  31910. front: {
  31911. height: math.unit(4 + 2 / 12, "feet"),
  31912. weight: math.unit(95, "lb"),
  31913. name: "Front",
  31914. image: {
  31915. source: "./media/characters/vaelophis-nyx/front.svg",
  31916. extra: 2532/2330,
  31917. bottom: 0/2532
  31918. }
  31919. },
  31920. back: {
  31921. height: math.unit(4 + 2 / 12, "feet"),
  31922. weight: math.unit(95, "lb"),
  31923. name: "Back",
  31924. image: {
  31925. source: "./media/characters/vaelophis-nyx/back.svg",
  31926. extra: 2484/2361,
  31927. bottom: 0/2484
  31928. }
  31929. },
  31930. feralSide: {
  31931. height: math.unit(2 + 1/12, "feet"),
  31932. weight: math.unit(20, "lb"),
  31933. name: "Feral (Side)",
  31934. image: {
  31935. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31936. extra: 1721/1581,
  31937. bottom: 70/1791
  31938. }
  31939. },
  31940. feralLazing: {
  31941. height: math.unit(1.08, "feet"),
  31942. weight: math.unit(20, "lb"),
  31943. name: "Feral (Lazing)",
  31944. image: {
  31945. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31946. extra: 822/822,
  31947. bottom: 248/1070
  31948. }
  31949. },
  31950. ear: {
  31951. height: math.unit(0.416, "feet"),
  31952. name: "Ear",
  31953. image: {
  31954. source: "./media/characters/vaelophis-nyx/ear.svg"
  31955. }
  31956. },
  31957. eye: {
  31958. height: math.unit(0.0748, "feet"),
  31959. name: "Eye",
  31960. image: {
  31961. source: "./media/characters/vaelophis-nyx/eye.svg"
  31962. }
  31963. },
  31964. mouth: {
  31965. height: math.unit(0.378, "feet"),
  31966. name: "Mouth",
  31967. image: {
  31968. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31969. }
  31970. },
  31971. spade: {
  31972. height: math.unit(0.55, "feet"),
  31973. name: "Spade",
  31974. image: {
  31975. source: "./media/characters/vaelophis-nyx/spade.svg"
  31976. }
  31977. },
  31978. },
  31979. [
  31980. {
  31981. name: "Normal",
  31982. height: math.unit(4 + 2/12, "feet"),
  31983. default: true
  31984. },
  31985. ]
  31986. ))
  31987. characterMakers.push(() => makeCharacter(
  31988. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31989. {
  31990. front: {
  31991. height: math.unit(7, "feet"),
  31992. weight: math.unit(231, "lb"),
  31993. name: "Front",
  31994. image: {
  31995. source: "./media/characters/flux/front.svg",
  31996. extra: 919/871,
  31997. bottom: 0/919
  31998. }
  31999. },
  32000. back: {
  32001. height: math.unit(7, "feet"),
  32002. weight: math.unit(231, "lb"),
  32003. name: "Back",
  32004. image: {
  32005. source: "./media/characters/flux/back.svg",
  32006. extra: 1040/992,
  32007. bottom: 0/1040
  32008. }
  32009. },
  32010. frontDressed: {
  32011. height: math.unit(7, "feet"),
  32012. weight: math.unit(231, "lb"),
  32013. name: "Front (Dressed)",
  32014. image: {
  32015. source: "./media/characters/flux/front-dressed.svg",
  32016. extra: 919/871,
  32017. bottom: 0/919
  32018. }
  32019. },
  32020. feralSide: {
  32021. height: math.unit(5, "feet"),
  32022. weight: math.unit(150, "lb"),
  32023. name: "Feral (Side)",
  32024. image: {
  32025. source: "./media/characters/flux/feral-side.svg",
  32026. extra: 598/528,
  32027. bottom: 28/626
  32028. }
  32029. },
  32030. head: {
  32031. height: math.unit(1.585, "feet"),
  32032. name: "Head",
  32033. image: {
  32034. source: "./media/characters/flux/head.svg"
  32035. }
  32036. },
  32037. headSide: {
  32038. height: math.unit(1.74, "feet"),
  32039. name: "Head (Side)",
  32040. image: {
  32041. source: "./media/characters/flux/head-side.svg"
  32042. }
  32043. },
  32044. headSideFire: {
  32045. height: math.unit(1.76, "feet"),
  32046. name: "Head (Side, Fire)",
  32047. image: {
  32048. source: "./media/characters/flux/head-side-fire.svg"
  32049. }
  32050. },
  32051. },
  32052. [
  32053. {
  32054. name: "Normal",
  32055. height: math.unit(7, "feet"),
  32056. default: true
  32057. },
  32058. ]
  32059. ))
  32060. characterMakers.push(() => makeCharacter(
  32061. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32062. {
  32063. front: {
  32064. height: math.unit(9, "feet"),
  32065. weight: math.unit(1012, "lb"),
  32066. name: "Front",
  32067. image: {
  32068. source: "./media/characters/ulfra-lupae/front.svg",
  32069. extra: 1083/1011,
  32070. bottom: 67/1150
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "Micro",
  32077. height: math.unit(6, "inches")
  32078. },
  32079. {
  32080. name: "Socializing",
  32081. height: math.unit(6 + 5/12, "feet")
  32082. },
  32083. {
  32084. name: "Normal",
  32085. height: math.unit(9, "feet"),
  32086. default: true
  32087. },
  32088. {
  32089. name: "Macro",
  32090. height: math.unit(150, "feet")
  32091. },
  32092. ]
  32093. ))
  32094. characterMakers.push(() => makeCharacter(
  32095. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32096. {
  32097. front: {
  32098. height: math.unit(5 + 2/12, "feet"),
  32099. weight: math.unit(120, "lb"),
  32100. name: "Front",
  32101. image: {
  32102. source: "./media/characters/timber/front.svg",
  32103. extra: 2814/2705,
  32104. bottom: 181/2995
  32105. }
  32106. },
  32107. },
  32108. [
  32109. {
  32110. name: "Normal",
  32111. height: math.unit(5 + 2/12, "feet"),
  32112. default: true
  32113. },
  32114. ]
  32115. ))
  32116. characterMakers.push(() => makeCharacter(
  32117. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32118. {
  32119. front: {
  32120. height: math.unit(9, "feet"),
  32121. name: "Front",
  32122. image: {
  32123. source: "./media/characters/nicki/front.svg",
  32124. extra: 1240/990,
  32125. bottom: 45/1285
  32126. },
  32127. form: "anthro",
  32128. default: true
  32129. },
  32130. side: {
  32131. height: math.unit(9, "feet"),
  32132. name: "Side",
  32133. image: {
  32134. source: "./media/characters/nicki/side.svg",
  32135. extra: 1047/973,
  32136. bottom: 61/1108
  32137. },
  32138. form: "anthro"
  32139. },
  32140. back: {
  32141. height: math.unit(9, "feet"),
  32142. name: "Back",
  32143. image: {
  32144. source: "./media/characters/nicki/back.svg",
  32145. extra: 1006/965,
  32146. bottom: 39/1045
  32147. },
  32148. form: "anthro"
  32149. },
  32150. taur: {
  32151. height: math.unit(15, "feet"),
  32152. name: "Taur",
  32153. image: {
  32154. source: "./media/characters/nicki/taur.svg",
  32155. extra: 1592/1347,
  32156. bottom: 0/1592
  32157. },
  32158. form: "taur",
  32159. default: true
  32160. },
  32161. },
  32162. [
  32163. {
  32164. name: "Normal",
  32165. height: math.unit(9, "feet"),
  32166. form: "anthro",
  32167. default: true
  32168. },
  32169. {
  32170. name: "Normal",
  32171. height: math.unit(15, "feet"),
  32172. form: "taur",
  32173. default: true
  32174. }
  32175. ],
  32176. {
  32177. "anthro": {
  32178. name: "Anthro",
  32179. default: true
  32180. },
  32181. "taur": {
  32182. name: "Taur"
  32183. }
  32184. }
  32185. ))
  32186. characterMakers.push(() => makeCharacter(
  32187. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32188. {
  32189. front: {
  32190. height: math.unit(7 + 10/12, "feet"),
  32191. weight: math.unit(3.5, "tons"),
  32192. name: "Front",
  32193. image: {
  32194. source: "./media/characters/lee/front.svg",
  32195. extra: 1773/1615,
  32196. bottom: 86/1859
  32197. }
  32198. },
  32199. hand: {
  32200. height: math.unit(1.78, "feet"),
  32201. name: "Hand",
  32202. image: {
  32203. source: "./media/characters/lee/hand.svg"
  32204. }
  32205. },
  32206. maw: {
  32207. height: math.unit(1.18, "feet"),
  32208. name: "Maw",
  32209. image: {
  32210. source: "./media/characters/lee/maw.svg"
  32211. }
  32212. },
  32213. },
  32214. [
  32215. {
  32216. name: "Normal",
  32217. height: math.unit(7 + 10/12, "feet"),
  32218. default: true
  32219. },
  32220. ]
  32221. ))
  32222. characterMakers.push(() => makeCharacter(
  32223. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32224. {
  32225. front: {
  32226. height: math.unit(9, "feet"),
  32227. name: "Front",
  32228. image: {
  32229. source: "./media/characters/guti/front.svg",
  32230. extra: 4551/4355,
  32231. bottom: 123/4674
  32232. }
  32233. },
  32234. tongue: {
  32235. height: math.unit(1, "feet"),
  32236. name: "Tongue",
  32237. image: {
  32238. source: "./media/characters/guti/tongue.svg"
  32239. }
  32240. },
  32241. paw: {
  32242. height: math.unit(1.18, "feet"),
  32243. name: "Paw",
  32244. image: {
  32245. source: "./media/characters/guti/paw.svg"
  32246. }
  32247. },
  32248. },
  32249. [
  32250. {
  32251. name: "Normal",
  32252. height: math.unit(9, "feet"),
  32253. default: true
  32254. },
  32255. ]
  32256. ))
  32257. characterMakers.push(() => makeCharacter(
  32258. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32259. {
  32260. side: {
  32261. height: math.unit(5, "meters"),
  32262. name: "Side",
  32263. image: {
  32264. source: "./media/characters/vesper/side.svg",
  32265. extra: 1605/1518,
  32266. bottom: 0/1605
  32267. }
  32268. },
  32269. },
  32270. [
  32271. {
  32272. name: "Small",
  32273. height: math.unit(5, "meters")
  32274. },
  32275. {
  32276. name: "Sage",
  32277. height: math.unit(100, "meters"),
  32278. default: true
  32279. },
  32280. {
  32281. name: "Fun Size",
  32282. height: math.unit(600, "meters")
  32283. },
  32284. {
  32285. name: "Goddess",
  32286. height: math.unit(20000, "km")
  32287. },
  32288. {
  32289. name: "Maximum",
  32290. height: math.unit(5, "galaxies")
  32291. },
  32292. ]
  32293. ))
  32294. characterMakers.push(() => makeCharacter(
  32295. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32296. {
  32297. front: {
  32298. height: math.unit(6 + 3/12, "feet"),
  32299. weight: math.unit(190, "lb"),
  32300. name: "Front",
  32301. image: {
  32302. source: "./media/characters/gawain/front.svg",
  32303. extra: 2222/2139,
  32304. bottom: 90/2312
  32305. }
  32306. },
  32307. back: {
  32308. height: math.unit(6 + 3/12, "feet"),
  32309. weight: math.unit(190, "lb"),
  32310. name: "Back",
  32311. image: {
  32312. source: "./media/characters/gawain/back.svg",
  32313. extra: 2199/2111,
  32314. bottom: 73/2272
  32315. }
  32316. },
  32317. },
  32318. [
  32319. {
  32320. name: "Normal",
  32321. height: math.unit(6 + 3/12, "feet"),
  32322. default: true
  32323. },
  32324. ]
  32325. ))
  32326. characterMakers.push(() => makeCharacter(
  32327. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32328. {
  32329. side: {
  32330. height: math.unit(3.5, "meters"),
  32331. weight: math.unit(16000, "lb"),
  32332. name: "Side",
  32333. image: {
  32334. source: "./media/characters/dascalti/side.svg",
  32335. extra: 392/273,
  32336. bottom: 47/439
  32337. }
  32338. },
  32339. breath: {
  32340. height: math.unit(7.4, "feet"),
  32341. name: "Breath",
  32342. image: {
  32343. source: "./media/characters/dascalti/breath.svg"
  32344. }
  32345. },
  32346. fed: {
  32347. height: math.unit(3.6, "meters"),
  32348. weight: math.unit(16000, "lb"),
  32349. name: "Fed",
  32350. image: {
  32351. source: "./media/characters/dascalti/fed.svg",
  32352. extra: 1419/820,
  32353. bottom: 95/1514
  32354. }
  32355. },
  32356. },
  32357. [
  32358. {
  32359. name: "Normal",
  32360. height: math.unit(3.5, "meters"),
  32361. default: true
  32362. },
  32363. ]
  32364. ))
  32365. characterMakers.push(() => makeCharacter(
  32366. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32367. {
  32368. front: {
  32369. height: math.unit(3 + 5/12, "feet"),
  32370. name: "Front",
  32371. image: {
  32372. source: "./media/characters/mauve/front.svg",
  32373. extra: 1126/1033,
  32374. bottom: 65/1191
  32375. }
  32376. },
  32377. side: {
  32378. height: math.unit(3 + 5/12, "feet"),
  32379. name: "Side",
  32380. image: {
  32381. source: "./media/characters/mauve/side.svg",
  32382. extra: 1089/1001,
  32383. bottom: 29/1118
  32384. }
  32385. },
  32386. back: {
  32387. height: math.unit(3 + 5/12, "feet"),
  32388. name: "Back",
  32389. image: {
  32390. source: "./media/characters/mauve/back.svg",
  32391. extra: 1173/1053,
  32392. bottom: 109/1282
  32393. }
  32394. },
  32395. },
  32396. [
  32397. {
  32398. name: "Normal",
  32399. height: math.unit(3 + 5/12, "feet"),
  32400. default: true
  32401. },
  32402. ]
  32403. ))
  32404. characterMakers.push(() => makeCharacter(
  32405. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32406. {
  32407. front: {
  32408. height: math.unit(6 + 3/12, "feet"),
  32409. weight: math.unit(430, "lb"),
  32410. name: "Front",
  32411. image: {
  32412. source: "./media/characters/carlos/front.svg",
  32413. extra: 1964/1913,
  32414. bottom: 70/2034
  32415. }
  32416. },
  32417. },
  32418. [
  32419. {
  32420. name: "Normal",
  32421. height: math.unit(6 + 3/12, "feet"),
  32422. default: true
  32423. },
  32424. ]
  32425. ))
  32426. characterMakers.push(() => makeCharacter(
  32427. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32428. {
  32429. back: {
  32430. height: math.unit(5 + 10/12, "feet"),
  32431. weight: math.unit(200, "lb"),
  32432. name: "Back",
  32433. image: {
  32434. source: "./media/characters/jax/back.svg",
  32435. extra: 764/739,
  32436. bottom: 25/789
  32437. }
  32438. },
  32439. },
  32440. [
  32441. {
  32442. name: "Normal",
  32443. height: math.unit(5 + 10/12, "feet"),
  32444. default: true
  32445. },
  32446. ]
  32447. ))
  32448. characterMakers.push(() => makeCharacter(
  32449. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32450. {
  32451. front: {
  32452. height: math.unit(8, "feet"),
  32453. weight: math.unit(250, "lb"),
  32454. name: "Front",
  32455. image: {
  32456. source: "./media/characters/eikthynir/front.svg",
  32457. extra: 1332/1166,
  32458. bottom: 82/1414
  32459. }
  32460. },
  32461. back: {
  32462. height: math.unit(8, "feet"),
  32463. weight: math.unit(250, "lb"),
  32464. name: "Back",
  32465. image: {
  32466. source: "./media/characters/eikthynir/back.svg",
  32467. extra: 1342/1190,
  32468. bottom: 19/1361
  32469. }
  32470. },
  32471. dick: {
  32472. height: math.unit(2.35, "feet"),
  32473. name: "Dick",
  32474. image: {
  32475. source: "./media/characters/eikthynir/dick.svg"
  32476. }
  32477. },
  32478. },
  32479. [
  32480. {
  32481. name: "Normal",
  32482. height: math.unit(8, "feet"),
  32483. default: true
  32484. },
  32485. ]
  32486. ))
  32487. characterMakers.push(() => makeCharacter(
  32488. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32489. {
  32490. front: {
  32491. height: math.unit(99, "meters"),
  32492. weight: math.unit(13000, "tons"),
  32493. name: "Front",
  32494. image: {
  32495. source: "./media/characters/zlmos/front.svg",
  32496. extra: 2202/1992,
  32497. bottom: 315/2517
  32498. }
  32499. },
  32500. },
  32501. [
  32502. {
  32503. name: "Macro",
  32504. height: math.unit(99, "meters"),
  32505. default: true
  32506. },
  32507. ]
  32508. ))
  32509. characterMakers.push(() => makeCharacter(
  32510. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32511. {
  32512. front: {
  32513. height: math.unit(6 + 5/12, "feet"),
  32514. name: "Front",
  32515. image: {
  32516. source: "./media/characters/purri/front.svg",
  32517. extra: 1698/1610,
  32518. bottom: 32/1730
  32519. }
  32520. },
  32521. frontAlt: {
  32522. height: math.unit(6 + 5/12, "feet"),
  32523. name: "Front (Alt)",
  32524. image: {
  32525. source: "./media/characters/purri/front-alt.svg",
  32526. extra: 450/420,
  32527. bottom: 26/476
  32528. }
  32529. },
  32530. boots: {
  32531. height: math.unit(5.5, "feet"),
  32532. name: "Boots",
  32533. image: {
  32534. source: "./media/characters/purri/boots.svg",
  32535. extra: 905/853,
  32536. bottom: 18/923
  32537. }
  32538. },
  32539. lying: {
  32540. height: math.unit(2, "feet"),
  32541. name: "Lying",
  32542. image: {
  32543. source: "./media/characters/purri/lying.svg",
  32544. extra: 940/843,
  32545. bottom: 146/1086
  32546. }
  32547. },
  32548. devious: {
  32549. height: math.unit(1.77, "feet"),
  32550. name: "Devious",
  32551. image: {
  32552. source: "./media/characters/purri/devious.svg",
  32553. extra: 1440/1155,
  32554. bottom: 147/1587
  32555. }
  32556. },
  32557. bean: {
  32558. height: math.unit(1.94, "feet"),
  32559. name: "Bean",
  32560. image: {
  32561. source: "./media/characters/purri/bean.svg"
  32562. }
  32563. },
  32564. },
  32565. [
  32566. {
  32567. name: "Micro",
  32568. height: math.unit(1, "mm")
  32569. },
  32570. {
  32571. name: "Normal",
  32572. height: math.unit(6 + 5/12, "feet"),
  32573. default: true
  32574. },
  32575. {
  32576. name: "Macro :3c",
  32577. height: math.unit(2, "miles")
  32578. },
  32579. ]
  32580. ))
  32581. characterMakers.push(() => makeCharacter(
  32582. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32583. {
  32584. front: {
  32585. height: math.unit(6 + 2/12, "feet"),
  32586. weight: math.unit(250, "lb"),
  32587. name: "Front",
  32588. image: {
  32589. source: "./media/characters/moonlight/front.svg",
  32590. extra: 1044/908,
  32591. bottom: 56/1100
  32592. }
  32593. },
  32594. feral: {
  32595. height: math.unit(3 + 1/12, "feet"),
  32596. weight: math.unit(50, "kg"),
  32597. name: "Feral",
  32598. image: {
  32599. source: "./media/characters/moonlight/feral.svg",
  32600. extra: 3705/2791,
  32601. bottom: 145/3850
  32602. }
  32603. },
  32604. paw: {
  32605. height: math.unit(1, "feet"),
  32606. name: "Paw",
  32607. image: {
  32608. source: "./media/characters/moonlight/paw.svg"
  32609. }
  32610. },
  32611. paws: {
  32612. height: math.unit(0.98, "feet"),
  32613. name: "Paws",
  32614. image: {
  32615. source: "./media/characters/moonlight/paws.svg",
  32616. extra: 939/939,
  32617. bottom: 50/989
  32618. }
  32619. },
  32620. mouth: {
  32621. height: math.unit(0.48, "feet"),
  32622. name: "Mouth",
  32623. image: {
  32624. source: "./media/characters/moonlight/mouth.svg"
  32625. }
  32626. },
  32627. dick: {
  32628. height: math.unit(1.46, "feet"),
  32629. name: "Dick",
  32630. image: {
  32631. source: "./media/characters/moonlight/dick.svg"
  32632. }
  32633. },
  32634. },
  32635. [
  32636. {
  32637. name: "Normal",
  32638. height: math.unit(6 + 2/12, "feet"),
  32639. default: true
  32640. },
  32641. {
  32642. name: "Macro",
  32643. height: math.unit(300, "feet")
  32644. },
  32645. {
  32646. name: "Macro+",
  32647. height: math.unit(1, "mile")
  32648. },
  32649. {
  32650. name: "Mt. Moon",
  32651. height: math.unit(5, "miles")
  32652. },
  32653. {
  32654. name: "Megamacro",
  32655. height: math.unit(15, "miles")
  32656. },
  32657. ]
  32658. ))
  32659. characterMakers.push(() => makeCharacter(
  32660. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32661. {
  32662. back: {
  32663. height: math.unit(6, "feet"),
  32664. weight: math.unit(150, "lb"),
  32665. name: "Back",
  32666. image: {
  32667. source: "./media/characters/sylen/back.svg",
  32668. extra: 1335/1273,
  32669. bottom: 107/1442
  32670. }
  32671. },
  32672. },
  32673. [
  32674. {
  32675. name: "Normal",
  32676. height: math.unit(5 + 5/12, "feet")
  32677. },
  32678. {
  32679. name: "Megamacro",
  32680. height: math.unit(3, "miles"),
  32681. default: true
  32682. },
  32683. ]
  32684. ))
  32685. characterMakers.push(() => makeCharacter(
  32686. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32687. {
  32688. front: {
  32689. height: math.unit(6, "feet"),
  32690. weight: math.unit(190, "lb"),
  32691. name: "Front",
  32692. image: {
  32693. source: "./media/characters/huttser/front.svg",
  32694. extra: 1152/1058,
  32695. bottom: 23/1175
  32696. }
  32697. },
  32698. side: {
  32699. height: math.unit(6, "feet"),
  32700. weight: math.unit(190, "lb"),
  32701. name: "Side",
  32702. image: {
  32703. source: "./media/characters/huttser/side.svg",
  32704. extra: 1174/1065,
  32705. bottom: 18/1192
  32706. }
  32707. },
  32708. back: {
  32709. height: math.unit(6, "feet"),
  32710. weight: math.unit(190, "lb"),
  32711. name: "Back",
  32712. image: {
  32713. source: "./media/characters/huttser/back.svg",
  32714. extra: 1158/1056,
  32715. bottom: 12/1170
  32716. }
  32717. },
  32718. },
  32719. [
  32720. ]
  32721. ))
  32722. characterMakers.push(() => makeCharacter(
  32723. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32724. {
  32725. side: {
  32726. height: math.unit(12 + 9/12, "feet"),
  32727. weight: math.unit(15000, "lb"),
  32728. name: "Side",
  32729. image: {
  32730. source: "./media/characters/faan/side.svg",
  32731. extra: 2747/2697,
  32732. bottom: 0/2747
  32733. }
  32734. },
  32735. front: {
  32736. height: math.unit(12 + 9/12, "feet"),
  32737. weight: math.unit(15000, "lb"),
  32738. name: "Front",
  32739. image: {
  32740. source: "./media/characters/faan/front.svg",
  32741. extra: 607/571,
  32742. bottom: 24/631
  32743. }
  32744. },
  32745. head: {
  32746. height: math.unit(2.85, "feet"),
  32747. name: "Head",
  32748. image: {
  32749. source: "./media/characters/faan/head.svg"
  32750. }
  32751. },
  32752. headAlt: {
  32753. height: math.unit(3.13, "feet"),
  32754. name: "Head-alt",
  32755. image: {
  32756. source: "./media/characters/faan/head-alt.svg"
  32757. }
  32758. },
  32759. },
  32760. [
  32761. {
  32762. name: "Normal",
  32763. height: math.unit(12 + 9/12, "feet"),
  32764. default: true
  32765. },
  32766. ]
  32767. ))
  32768. characterMakers.push(() => makeCharacter(
  32769. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32770. {
  32771. front: {
  32772. height: math.unit(6, "feet"),
  32773. weight: math.unit(300, "lb"),
  32774. name: "Front",
  32775. image: {
  32776. source: "./media/characters/tanio/front.svg",
  32777. extra: 711/673,
  32778. bottom: 25/736
  32779. }
  32780. },
  32781. },
  32782. [
  32783. {
  32784. name: "Normal",
  32785. height: math.unit(6, "feet"),
  32786. default: true
  32787. },
  32788. ]
  32789. ))
  32790. characterMakers.push(() => makeCharacter(
  32791. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32792. {
  32793. front: {
  32794. height: math.unit(3, "inches"),
  32795. name: "Front",
  32796. image: {
  32797. source: "./media/characters/noboru/front.svg",
  32798. extra: 1039/932,
  32799. bottom: 18/1057
  32800. }
  32801. },
  32802. },
  32803. [
  32804. {
  32805. name: "Micro",
  32806. height: math.unit(3, "inches"),
  32807. default: true
  32808. },
  32809. ]
  32810. ))
  32811. characterMakers.push(() => makeCharacter(
  32812. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32813. {
  32814. front: {
  32815. height: math.unit(1.85, "meters"),
  32816. weight: math.unit(80, "kg"),
  32817. name: "Front",
  32818. image: {
  32819. source: "./media/characters/daniel-barrett/front.svg",
  32820. extra: 355/337,
  32821. bottom: 9/364
  32822. }
  32823. },
  32824. },
  32825. [
  32826. {
  32827. name: "Pico",
  32828. height: math.unit(0.0433, "mm")
  32829. },
  32830. {
  32831. name: "Nano",
  32832. height: math.unit(1.5, "mm")
  32833. },
  32834. {
  32835. name: "Micro",
  32836. height: math.unit(5.3, "cm"),
  32837. default: true
  32838. },
  32839. {
  32840. name: "Normal",
  32841. height: math.unit(1.85, "meters")
  32842. },
  32843. {
  32844. name: "Macro",
  32845. height: math.unit(64.7, "meters")
  32846. },
  32847. {
  32848. name: "Megamacro",
  32849. height: math.unit(2.26, "km")
  32850. },
  32851. {
  32852. name: "Gigamacro",
  32853. height: math.unit(79, "km")
  32854. },
  32855. {
  32856. name: "Teramacro",
  32857. height: math.unit(2765, "km")
  32858. },
  32859. {
  32860. name: "Petamacro",
  32861. height: math.unit(96678, "km")
  32862. },
  32863. ]
  32864. ))
  32865. characterMakers.push(() => makeCharacter(
  32866. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32867. {
  32868. front: {
  32869. height: math.unit(30, "meters"),
  32870. weight: math.unit(400, "tons"),
  32871. name: "Front",
  32872. image: {
  32873. source: "./media/characters/zeel/front.svg",
  32874. extra: 2599/2599,
  32875. bottom: 226/2825
  32876. }
  32877. },
  32878. },
  32879. [
  32880. {
  32881. name: "Macro",
  32882. height: math.unit(30, "meters"),
  32883. default: true
  32884. },
  32885. ]
  32886. ))
  32887. characterMakers.push(() => makeCharacter(
  32888. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32889. {
  32890. front: {
  32891. height: math.unit(6 + 7/12, "feet"),
  32892. weight: math.unit(210, "lb"),
  32893. name: "Front",
  32894. image: {
  32895. source: "./media/characters/tarn/front.svg",
  32896. extra: 3517/3220,
  32897. bottom: 91/3608
  32898. }
  32899. },
  32900. back: {
  32901. height: math.unit(6 + 7/12, "feet"),
  32902. weight: math.unit(210, "lb"),
  32903. name: "Back",
  32904. image: {
  32905. source: "./media/characters/tarn/back.svg",
  32906. extra: 3566/3241,
  32907. bottom: 34/3600
  32908. }
  32909. },
  32910. dick: {
  32911. height: math.unit(1.65, "feet"),
  32912. name: "Dick",
  32913. image: {
  32914. source: "./media/characters/tarn/dick.svg"
  32915. }
  32916. },
  32917. paw: {
  32918. height: math.unit(1.80, "feet"),
  32919. name: "Paw",
  32920. image: {
  32921. source: "./media/characters/tarn/paw.svg"
  32922. }
  32923. },
  32924. tongue: {
  32925. height: math.unit(0.97, "feet"),
  32926. name: "Tongue",
  32927. image: {
  32928. source: "./media/characters/tarn/tongue.svg"
  32929. }
  32930. },
  32931. },
  32932. [
  32933. {
  32934. name: "Micro",
  32935. height: math.unit(4, "inches")
  32936. },
  32937. {
  32938. name: "Normal",
  32939. height: math.unit(6 + 7/12, "feet"),
  32940. default: true
  32941. },
  32942. {
  32943. name: "Macro",
  32944. height: math.unit(300, "feet")
  32945. },
  32946. ]
  32947. ))
  32948. characterMakers.push(() => makeCharacter(
  32949. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32950. {
  32951. front: {
  32952. height: math.unit(5 + 7/12, "feet"),
  32953. weight: math.unit(80, "kg"),
  32954. name: "Front",
  32955. image: {
  32956. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32957. extra: 3023/2865,
  32958. bottom: 33/3056
  32959. }
  32960. },
  32961. back: {
  32962. height: math.unit(5 + 7/12, "feet"),
  32963. weight: math.unit(80, "kg"),
  32964. name: "Back",
  32965. image: {
  32966. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32967. extra: 3020/2886,
  32968. bottom: 30/3050
  32969. }
  32970. },
  32971. dick: {
  32972. height: math.unit(0.98, "feet"),
  32973. name: "Dick",
  32974. image: {
  32975. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32976. }
  32977. },
  32978. anatomy: {
  32979. height: math.unit(2.86, "feet"),
  32980. name: "Anatomy",
  32981. image: {
  32982. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32983. }
  32984. },
  32985. },
  32986. [
  32987. {
  32988. name: "Really Small",
  32989. height: math.unit(2, "inches")
  32990. },
  32991. {
  32992. name: "Micro",
  32993. height: math.unit(5.583, "inches")
  32994. },
  32995. {
  32996. name: "Normal",
  32997. height: math.unit(5 + 7/12, "feet"),
  32998. default: true
  32999. },
  33000. {
  33001. name: "Macro",
  33002. height: math.unit(67, "feet")
  33003. },
  33004. {
  33005. name: "Megamacro",
  33006. height: math.unit(134, "feet")
  33007. },
  33008. ]
  33009. ))
  33010. characterMakers.push(() => makeCharacter(
  33011. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33012. {
  33013. front: {
  33014. height: math.unit(9, "feet"),
  33015. weight: math.unit(120, "lb"),
  33016. name: "Front",
  33017. image: {
  33018. source: "./media/characters/sally/front.svg",
  33019. extra: 1506/1349,
  33020. bottom: 66/1572
  33021. }
  33022. },
  33023. },
  33024. [
  33025. {
  33026. name: "Normal",
  33027. height: math.unit(9, "feet"),
  33028. default: true
  33029. },
  33030. ]
  33031. ))
  33032. characterMakers.push(() => makeCharacter(
  33033. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33034. {
  33035. front: {
  33036. height: math.unit(8, "feet"),
  33037. weight: math.unit(900, "lb"),
  33038. name: "Front",
  33039. image: {
  33040. source: "./media/characters/owen/front.svg",
  33041. extra: 1761/1657,
  33042. bottom: 74/1835
  33043. }
  33044. },
  33045. side: {
  33046. height: math.unit(8, "feet"),
  33047. weight: math.unit(900, "lb"),
  33048. name: "Side",
  33049. image: {
  33050. source: "./media/characters/owen/side.svg",
  33051. extra: 1797/1734,
  33052. bottom: 30/1827
  33053. }
  33054. },
  33055. back: {
  33056. height: math.unit(8, "feet"),
  33057. weight: math.unit(900, "lb"),
  33058. name: "Back",
  33059. image: {
  33060. source: "./media/characters/owen/back.svg",
  33061. extra: 1796/1706,
  33062. bottom: 59/1855
  33063. }
  33064. },
  33065. maw: {
  33066. height: math.unit(1.76, "feet"),
  33067. name: "Maw",
  33068. image: {
  33069. source: "./media/characters/owen/maw.svg"
  33070. }
  33071. },
  33072. },
  33073. [
  33074. {
  33075. name: "Normal",
  33076. height: math.unit(8, "feet"),
  33077. default: true
  33078. },
  33079. ]
  33080. ))
  33081. characterMakers.push(() => makeCharacter(
  33082. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33083. {
  33084. front: {
  33085. height: math.unit(4, "feet"),
  33086. weight: math.unit(400, "lb"),
  33087. name: "Front",
  33088. image: {
  33089. source: "./media/characters/ryth/front.svg",
  33090. extra: 1920/1748,
  33091. bottom: 42/1962
  33092. }
  33093. },
  33094. back: {
  33095. height: math.unit(4, "feet"),
  33096. weight: math.unit(400, "lb"),
  33097. name: "Back",
  33098. image: {
  33099. source: "./media/characters/ryth/back.svg",
  33100. extra: 1897/1690,
  33101. bottom: 89/1986
  33102. }
  33103. },
  33104. mouth: {
  33105. height: math.unit(1.39, "feet"),
  33106. name: "Mouth",
  33107. image: {
  33108. source: "./media/characters/ryth/mouth.svg"
  33109. }
  33110. },
  33111. tailmaw: {
  33112. height: math.unit(1.23, "feet"),
  33113. name: "Tailmaw",
  33114. image: {
  33115. source: "./media/characters/ryth/tailmaw.svg"
  33116. }
  33117. },
  33118. goia: {
  33119. height: math.unit(4, "meters"),
  33120. weight: math.unit(10800, "lb"),
  33121. name: "Goia",
  33122. image: {
  33123. source: "./media/characters/ryth/goia.svg",
  33124. extra: 745/640,
  33125. bottom: 107/852
  33126. }
  33127. },
  33128. goiaFront: {
  33129. height: math.unit(4, "meters"),
  33130. weight: math.unit(10800, "lb"),
  33131. name: "Goia (Front)",
  33132. image: {
  33133. source: "./media/characters/ryth/goia-front.svg",
  33134. extra: 750/586,
  33135. bottom: 114/864
  33136. }
  33137. },
  33138. goiaMaw: {
  33139. height: math.unit(5.55, "feet"),
  33140. name: "Goia Maw",
  33141. image: {
  33142. source: "./media/characters/ryth/goia-maw.svg"
  33143. }
  33144. },
  33145. goiaForepaw: {
  33146. height: math.unit(3.5, "feet"),
  33147. name: "Goia Forepaw",
  33148. image: {
  33149. source: "./media/characters/ryth/goia-forepaw.svg"
  33150. }
  33151. },
  33152. goiaHindpaw: {
  33153. height: math.unit(5.55, "feet"),
  33154. name: "Goia Hindpaw",
  33155. image: {
  33156. source: "./media/characters/ryth/goia-hindpaw.svg"
  33157. }
  33158. },
  33159. },
  33160. [
  33161. {
  33162. name: "Normal",
  33163. height: math.unit(4, "feet"),
  33164. default: true
  33165. },
  33166. ]
  33167. ))
  33168. characterMakers.push(() => makeCharacter(
  33169. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33170. {
  33171. front: {
  33172. height: math.unit(7, "feet"),
  33173. weight: math.unit(180, "lb"),
  33174. name: "Front",
  33175. image: {
  33176. source: "./media/characters/necrolance/front.svg",
  33177. extra: 1062/947,
  33178. bottom: 41/1103
  33179. }
  33180. },
  33181. back: {
  33182. height: math.unit(7, "feet"),
  33183. weight: math.unit(180, "lb"),
  33184. name: "Back",
  33185. image: {
  33186. source: "./media/characters/necrolance/back.svg",
  33187. extra: 1045/984,
  33188. bottom: 14/1059
  33189. }
  33190. },
  33191. wing: {
  33192. height: math.unit(2.67, "feet"),
  33193. name: "Wing",
  33194. image: {
  33195. source: "./media/characters/necrolance/wing.svg"
  33196. }
  33197. },
  33198. },
  33199. [
  33200. {
  33201. name: "Normal",
  33202. height: math.unit(7, "feet"),
  33203. default: true
  33204. },
  33205. ]
  33206. ))
  33207. characterMakers.push(() => makeCharacter(
  33208. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33209. {
  33210. front: {
  33211. height: math.unit(76, "meters"),
  33212. weight: math.unit(30000, "tons"),
  33213. name: "Front",
  33214. image: {
  33215. source: "./media/characters/tyler/front.svg",
  33216. extra: 1640/1640,
  33217. bottom: 114/1754
  33218. }
  33219. },
  33220. },
  33221. [
  33222. {
  33223. name: "Macro",
  33224. height: math.unit(76, "meters"),
  33225. default: true
  33226. },
  33227. ]
  33228. ))
  33229. characterMakers.push(() => makeCharacter(
  33230. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33231. {
  33232. front: {
  33233. height: math.unit(4 + 11/12, "feet"),
  33234. weight: math.unit(132, "lb"),
  33235. name: "Front",
  33236. image: {
  33237. source: "./media/characters/icey/front.svg",
  33238. extra: 2750/2550,
  33239. bottom: 33/2783
  33240. }
  33241. },
  33242. back: {
  33243. height: math.unit(4 + 11/12, "feet"),
  33244. weight: math.unit(132, "lb"),
  33245. name: "Back",
  33246. image: {
  33247. source: "./media/characters/icey/back.svg",
  33248. extra: 2624/2481,
  33249. bottom: 35/2659
  33250. }
  33251. },
  33252. },
  33253. [
  33254. {
  33255. name: "Normal",
  33256. height: math.unit(4 + 11/12, "feet"),
  33257. default: true
  33258. },
  33259. ]
  33260. ))
  33261. characterMakers.push(() => makeCharacter(
  33262. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33263. {
  33264. front: {
  33265. height: math.unit(100, "feet"),
  33266. weight: math.unit(0, "lb"),
  33267. name: "Front",
  33268. image: {
  33269. source: "./media/characters/smile/front.svg",
  33270. extra: 2983/2912,
  33271. bottom: 162/3145
  33272. }
  33273. },
  33274. back: {
  33275. height: math.unit(100, "feet"),
  33276. weight: math.unit(0, "lb"),
  33277. name: "Back",
  33278. image: {
  33279. source: "./media/characters/smile/back.svg",
  33280. extra: 3143/3031,
  33281. bottom: 91/3234
  33282. }
  33283. },
  33284. head: {
  33285. height: math.unit(26.3, "feet"),
  33286. weight: math.unit(0, "lb"),
  33287. name: "Head",
  33288. image: {
  33289. source: "./media/characters/smile/head.svg"
  33290. }
  33291. },
  33292. collar: {
  33293. height: math.unit(5.3, "feet"),
  33294. weight: math.unit(0, "lb"),
  33295. name: "Collar",
  33296. image: {
  33297. source: "./media/characters/smile/collar.svg"
  33298. }
  33299. },
  33300. },
  33301. [
  33302. {
  33303. name: "Macro",
  33304. height: math.unit(100, "feet"),
  33305. default: true
  33306. },
  33307. ]
  33308. ))
  33309. characterMakers.push(() => makeCharacter(
  33310. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33311. {
  33312. dragon: {
  33313. height: math.unit(26, "feet"),
  33314. weight: math.unit(36, "tons"),
  33315. name: "Dragon",
  33316. image: {
  33317. source: "./media/characters/arimphae/dragon.svg",
  33318. extra: 1574/983,
  33319. bottom: 357/1931
  33320. }
  33321. },
  33322. drake: {
  33323. height: math.unit(9, "feet"),
  33324. weight: math.unit(1.5, "tons"),
  33325. name: "Drake",
  33326. image: {
  33327. source: "./media/characters/arimphae/drake.svg",
  33328. extra: 1120/925,
  33329. bottom: 435/1555
  33330. }
  33331. },
  33332. },
  33333. [
  33334. {
  33335. name: "Small",
  33336. height: math.unit(26*5/9, "feet")
  33337. },
  33338. {
  33339. name: "Normal",
  33340. height: math.unit(26, "feet"),
  33341. default: true
  33342. },
  33343. ]
  33344. ))
  33345. characterMakers.push(() => makeCharacter(
  33346. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33347. {
  33348. front: {
  33349. height: math.unit(8 + 9/12, "feet"),
  33350. name: "Front",
  33351. image: {
  33352. source: "./media/characters/xander/front.svg",
  33353. extra: 1237/974,
  33354. bottom: 94/1331
  33355. }
  33356. },
  33357. },
  33358. [
  33359. {
  33360. name: "Normal",
  33361. height: math.unit(8 + 9/12, "feet"),
  33362. default: true
  33363. },
  33364. {
  33365. name: "Gaze Grabber",
  33366. height: math.unit(13 + 8/12, "feet")
  33367. },
  33368. {
  33369. name: "Jaw Dropper",
  33370. height: math.unit(27, "feet")
  33371. },
  33372. {
  33373. name: "Show Stopper",
  33374. height: math.unit(136, "feet")
  33375. },
  33376. {
  33377. name: "Superstar",
  33378. height: math.unit(1.9e6, "miles")
  33379. },
  33380. ]
  33381. ))
  33382. characterMakers.push(() => makeCharacter(
  33383. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33384. {
  33385. side: {
  33386. height: math.unit(2100, "feet"),
  33387. name: "Side",
  33388. image: {
  33389. source: "./media/characters/osiris/side.svg",
  33390. extra: 1105/939,
  33391. bottom: 167/1272
  33392. }
  33393. },
  33394. },
  33395. [
  33396. {
  33397. name: "Macro",
  33398. height: math.unit(2100, "feet"),
  33399. default: true
  33400. },
  33401. ]
  33402. ))
  33403. characterMakers.push(() => makeCharacter(
  33404. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33405. {
  33406. front: {
  33407. height: math.unit(6 + 8/12, "feet"),
  33408. weight: math.unit(225, "lb"),
  33409. name: "Front",
  33410. image: {
  33411. source: "./media/characters/rhys-londe/front.svg",
  33412. extra: 2258/2141,
  33413. bottom: 188/2446
  33414. }
  33415. },
  33416. back: {
  33417. height: math.unit(6 + 8/12, "feet"),
  33418. weight: math.unit(225, "lb"),
  33419. name: "Back",
  33420. image: {
  33421. source: "./media/characters/rhys-londe/back.svg",
  33422. extra: 2237/2137,
  33423. bottom: 63/2300
  33424. }
  33425. },
  33426. frontNsfw: {
  33427. height: math.unit(6 + 8/12, "feet"),
  33428. weight: math.unit(225, "lb"),
  33429. name: "Front (NSFW)",
  33430. image: {
  33431. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33432. extra: 2258/2141,
  33433. bottom: 188/2446
  33434. }
  33435. },
  33436. backNsfw: {
  33437. height: math.unit(6 + 8/12, "feet"),
  33438. weight: math.unit(225, "lb"),
  33439. name: "Back (NSFW)",
  33440. image: {
  33441. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33442. extra: 2237/2137,
  33443. bottom: 63/2300
  33444. }
  33445. },
  33446. dick: {
  33447. height: math.unit(30, "inches"),
  33448. name: "Dick",
  33449. image: {
  33450. source: "./media/characters/rhys-londe/dick.svg"
  33451. }
  33452. },
  33453. maw: {
  33454. height: math.unit(1.6, "feet"),
  33455. name: "Maw",
  33456. image: {
  33457. source: "./media/characters/rhys-londe/maw.svg"
  33458. }
  33459. },
  33460. },
  33461. [
  33462. {
  33463. name: "Normal",
  33464. height: math.unit(6 + 8/12, "feet"),
  33465. default: true
  33466. },
  33467. ]
  33468. ))
  33469. characterMakers.push(() => makeCharacter(
  33470. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33471. {
  33472. front: {
  33473. height: math.unit(3 + 10/12, "feet"),
  33474. weight: math.unit(90, "lb"),
  33475. name: "Front",
  33476. image: {
  33477. source: "./media/characters/taivas-ensim/front.svg",
  33478. extra: 1327/1216,
  33479. bottom: 96/1423
  33480. }
  33481. },
  33482. back: {
  33483. height: math.unit(3 + 10/12, "feet"),
  33484. weight: math.unit(90, "lb"),
  33485. name: "Back",
  33486. image: {
  33487. source: "./media/characters/taivas-ensim/back.svg",
  33488. extra: 1355/1247,
  33489. bottom: 11/1366
  33490. }
  33491. },
  33492. frontNsfw: {
  33493. height: math.unit(3 + 10/12, "feet"),
  33494. weight: math.unit(90, "lb"),
  33495. name: "Front (NSFW)",
  33496. image: {
  33497. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33498. extra: 1327/1216,
  33499. bottom: 96/1423
  33500. }
  33501. },
  33502. backNsfw: {
  33503. height: math.unit(3 + 10/12, "feet"),
  33504. weight: math.unit(90, "lb"),
  33505. name: "Back (NSFW)",
  33506. image: {
  33507. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33508. extra: 1355/1247,
  33509. bottom: 11/1366
  33510. }
  33511. },
  33512. },
  33513. [
  33514. {
  33515. name: "Normal",
  33516. height: math.unit(3 + 10/12, "feet"),
  33517. default: true
  33518. },
  33519. ]
  33520. ))
  33521. characterMakers.push(() => makeCharacter(
  33522. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33523. {
  33524. front: {
  33525. height: math.unit(9 + 6/12, "feet"),
  33526. weight: math.unit(940, "lb"),
  33527. name: "Front",
  33528. image: {
  33529. source: "./media/characters/byliss/front.svg",
  33530. extra: 1327/1290,
  33531. bottom: 82/1409
  33532. }
  33533. },
  33534. back: {
  33535. height: math.unit(9 + 6/12, "feet"),
  33536. weight: math.unit(940, "lb"),
  33537. name: "Back",
  33538. image: {
  33539. source: "./media/characters/byliss/back.svg",
  33540. extra: 1376/1349,
  33541. bottom: 9/1385
  33542. }
  33543. },
  33544. frontNsfw: {
  33545. height: math.unit(9 + 6/12, "feet"),
  33546. weight: math.unit(940, "lb"),
  33547. name: "Front (NSFW)",
  33548. image: {
  33549. source: "./media/characters/byliss/front-nsfw.svg",
  33550. extra: 1327/1290,
  33551. bottom: 82/1409
  33552. }
  33553. },
  33554. backNsfw: {
  33555. height: math.unit(9 + 6/12, "feet"),
  33556. weight: math.unit(940, "lb"),
  33557. name: "Back (NSFW)",
  33558. image: {
  33559. source: "./media/characters/byliss/back-nsfw.svg",
  33560. extra: 1376/1349,
  33561. bottom: 9/1385
  33562. }
  33563. },
  33564. },
  33565. [
  33566. {
  33567. name: "Normal",
  33568. height: math.unit(9 + 6/12, "feet"),
  33569. default: true
  33570. },
  33571. ]
  33572. ))
  33573. characterMakers.push(() => makeCharacter(
  33574. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33575. {
  33576. front: {
  33577. height: math.unit(5 + 2/12, "feet"),
  33578. weight: math.unit(200, "lb"),
  33579. name: "Front",
  33580. image: {
  33581. source: "./media/characters/noraly/front.svg",
  33582. extra: 4985/4773,
  33583. bottom: 150/5135
  33584. }
  33585. },
  33586. full: {
  33587. height: math.unit(5 + 2/12, "feet"),
  33588. weight: math.unit(164, "lb"),
  33589. name: "Full",
  33590. image: {
  33591. source: "./media/characters/noraly/full.svg",
  33592. extra: 1114/1059,
  33593. bottom: 35/1149
  33594. }
  33595. },
  33596. fuller: {
  33597. height: math.unit(5 + 2/12, "feet"),
  33598. weight: math.unit(230, "lb"),
  33599. name: "Fuller",
  33600. image: {
  33601. source: "./media/characters/noraly/fuller.svg",
  33602. extra: 1114/1059,
  33603. bottom: 35/1149
  33604. }
  33605. },
  33606. fullest: {
  33607. height: math.unit(5 + 2/12, "feet"),
  33608. weight: math.unit(300, "lb"),
  33609. name: "Fullest",
  33610. image: {
  33611. source: "./media/characters/noraly/fullest.svg",
  33612. extra: 1114/1059,
  33613. bottom: 35/1149
  33614. }
  33615. },
  33616. },
  33617. [
  33618. {
  33619. name: "Normal",
  33620. height: math.unit(5 + 2/12, "feet"),
  33621. default: true
  33622. },
  33623. ]
  33624. ))
  33625. characterMakers.push(() => makeCharacter(
  33626. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33627. {
  33628. front: {
  33629. height: math.unit(5 + 2/12, "feet"),
  33630. weight: math.unit(210, "lb"),
  33631. name: "Front",
  33632. image: {
  33633. source: "./media/characters/pera/front.svg",
  33634. extra: 1560/1531,
  33635. bottom: 165/1725
  33636. }
  33637. },
  33638. back: {
  33639. height: math.unit(5 + 2/12, "feet"),
  33640. weight: math.unit(210, "lb"),
  33641. name: "Back",
  33642. image: {
  33643. source: "./media/characters/pera/back.svg",
  33644. extra: 1523/1493,
  33645. bottom: 152/1675
  33646. }
  33647. },
  33648. dick: {
  33649. height: math.unit(2.4, "feet"),
  33650. name: "Dick",
  33651. image: {
  33652. source: "./media/characters/pera/dick.svg"
  33653. }
  33654. },
  33655. },
  33656. [
  33657. {
  33658. name: "Normal",
  33659. height: math.unit(5 + 2/12, "feet"),
  33660. default: true
  33661. },
  33662. ]
  33663. ))
  33664. characterMakers.push(() => makeCharacter(
  33665. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33666. {
  33667. front: {
  33668. height: math.unit(12, "feet"),
  33669. weight: math.unit(3200, "lb"),
  33670. name: "Front",
  33671. image: {
  33672. source: "./media/characters/julian/front.svg",
  33673. extra: 2962/2701,
  33674. bottom: 184/3146
  33675. }
  33676. },
  33677. maw: {
  33678. height: math.unit(5.35, "feet"),
  33679. name: "Maw",
  33680. image: {
  33681. source: "./media/characters/julian/maw.svg"
  33682. }
  33683. },
  33684. paw: {
  33685. height: math.unit(3.07, "feet"),
  33686. name: "Paw",
  33687. image: {
  33688. source: "./media/characters/julian/paw.svg"
  33689. }
  33690. },
  33691. },
  33692. [
  33693. {
  33694. name: "Default",
  33695. height: math.unit(12, "feet"),
  33696. default: true
  33697. },
  33698. {
  33699. name: "Big",
  33700. height: math.unit(50, "feet")
  33701. },
  33702. {
  33703. name: "Really Big",
  33704. height: math.unit(1, "mile")
  33705. },
  33706. {
  33707. name: "Extremely Big",
  33708. height: math.unit(100, "miles")
  33709. },
  33710. {
  33711. name: "Planet Hugger",
  33712. height: math.unit(200, "megameters")
  33713. },
  33714. {
  33715. name: "Unreasonably Big",
  33716. height: math.unit(1e300, "meters")
  33717. },
  33718. ]
  33719. ))
  33720. characterMakers.push(() => makeCharacter(
  33721. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33722. {
  33723. solgooleo: {
  33724. height: math.unit(4, "meters"),
  33725. weight: math.unit(6000*1.5, "kg"),
  33726. volume: math.unit(6000, "liters"),
  33727. name: "Solgooleo",
  33728. image: {
  33729. source: "./media/characters/pi/solgooleo.svg",
  33730. extra: 388/331,
  33731. bottom: 29/417
  33732. }
  33733. },
  33734. },
  33735. [
  33736. {
  33737. name: "Normal",
  33738. height: math.unit(4, "meters"),
  33739. default: true
  33740. },
  33741. ]
  33742. ))
  33743. characterMakers.push(() => makeCharacter(
  33744. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33745. {
  33746. front: {
  33747. height: math.unit(8, "feet"),
  33748. weight: math.unit(4, "tons"),
  33749. name: "Front",
  33750. image: {
  33751. source: "./media/characters/shaun/front.svg",
  33752. extra: 503/495,
  33753. bottom: 20/523
  33754. }
  33755. },
  33756. back: {
  33757. height: math.unit(8, "feet"),
  33758. weight: math.unit(4, "tons"),
  33759. name: "Back",
  33760. image: {
  33761. source: "./media/characters/shaun/back.svg",
  33762. extra: 487/480,
  33763. bottom: 20/507
  33764. }
  33765. },
  33766. },
  33767. [
  33768. {
  33769. name: "Lorg",
  33770. height: math.unit(8, "feet"),
  33771. default: true
  33772. },
  33773. ]
  33774. ))
  33775. characterMakers.push(() => makeCharacter(
  33776. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33777. {
  33778. frontAnthro: {
  33779. height: math.unit(7, "feet"),
  33780. name: "Front",
  33781. image: {
  33782. source: "./media/characters/sini/front-anthro.svg",
  33783. extra: 726/678,
  33784. bottom: 35/761
  33785. },
  33786. form: "anthro",
  33787. default: true
  33788. },
  33789. backAnthro: {
  33790. height: math.unit(7, "feet"),
  33791. name: "Back",
  33792. image: {
  33793. source: "./media/characters/sini/back-anthro.svg",
  33794. extra: 743/701,
  33795. bottom: 12/755
  33796. },
  33797. form: "anthro",
  33798. },
  33799. frontAnthroNsfw: {
  33800. height: math.unit(7, "feet"),
  33801. name: "Front (NSFW)",
  33802. image: {
  33803. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33804. extra: 726/678,
  33805. bottom: 35/761
  33806. },
  33807. form: "anthro"
  33808. },
  33809. backAnthroNsfw: {
  33810. height: math.unit(7, "feet"),
  33811. name: "Back (NSFW)",
  33812. image: {
  33813. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33814. extra: 743/701,
  33815. bottom: 12/755
  33816. },
  33817. form: "anthro",
  33818. },
  33819. mawAnthro: {
  33820. height: math.unit(2.14, "feet"),
  33821. name: "Maw",
  33822. image: {
  33823. source: "./media/characters/sini/maw-anthro.svg"
  33824. },
  33825. form: "anthro"
  33826. },
  33827. dick: {
  33828. height: math.unit(1.45, "feet"),
  33829. name: "Dick",
  33830. image: {
  33831. source: "./media/characters/sini/dick-anthro.svg"
  33832. },
  33833. form: "anthro"
  33834. },
  33835. feral: {
  33836. height: math.unit(16, "feet"),
  33837. name: "Feral",
  33838. image: {
  33839. source: "./media/characters/sini/feral.svg",
  33840. extra: 814/605,
  33841. bottom: 11/825
  33842. },
  33843. form: "feral",
  33844. default: true
  33845. },
  33846. feralNsfw: {
  33847. height: math.unit(16, "feet"),
  33848. name: "Feral (NSFW)",
  33849. image: {
  33850. source: "./media/characters/sini/feral-nsfw.svg",
  33851. extra: 814/605,
  33852. bottom: 11/825
  33853. },
  33854. form: "feral"
  33855. },
  33856. mawFeral: {
  33857. height: math.unit(5.66, "feet"),
  33858. name: "Maw",
  33859. image: {
  33860. source: "./media/characters/sini/maw-feral.svg"
  33861. },
  33862. form: "feral",
  33863. },
  33864. pawFeral: {
  33865. height: math.unit(5.17, "feet"),
  33866. name: "Paw",
  33867. image: {
  33868. source: "./media/characters/sini/paw-feral.svg"
  33869. },
  33870. form: "feral",
  33871. },
  33872. rumpFeral: {
  33873. height: math.unit(13.11, "feet"),
  33874. name: "Rump",
  33875. image: {
  33876. source: "./media/characters/sini/rump-feral.svg"
  33877. },
  33878. form: "feral",
  33879. },
  33880. dickFeral: {
  33881. height: math.unit(1, "feet"),
  33882. name: "Dick",
  33883. image: {
  33884. source: "./media/characters/sini/dick-feral.svg"
  33885. },
  33886. form: "feral",
  33887. },
  33888. eyeFeral: {
  33889. height: math.unit(1.23, "feet"),
  33890. name: "Eye",
  33891. image: {
  33892. source: "./media/characters/sini/eye-feral.svg"
  33893. },
  33894. form: "feral",
  33895. },
  33896. },
  33897. [
  33898. {
  33899. name: "Normal",
  33900. height: math.unit(7, "feet"),
  33901. default: true,
  33902. form: "anthro"
  33903. },
  33904. {
  33905. name: "Normal",
  33906. height: math.unit(16, "feet"),
  33907. default: true,
  33908. form: "feral"
  33909. },
  33910. ],
  33911. {
  33912. "anthro": {
  33913. name: "Anthro",
  33914. default: true
  33915. },
  33916. "feral": {
  33917. name: "Feral",
  33918. }
  33919. }
  33920. ))
  33921. characterMakers.push(() => makeCharacter(
  33922. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33923. {
  33924. side: {
  33925. height: math.unit(47.2, "meters"),
  33926. weight: math.unit(10000, "tons"),
  33927. name: "Side",
  33928. image: {
  33929. source: "./media/characters/raylldo/side.svg",
  33930. extra: 2363/642,
  33931. bottom: 221/2584
  33932. }
  33933. },
  33934. top: {
  33935. height: math.unit(240, "meters"),
  33936. weight: math.unit(10000, "tons"),
  33937. name: "Top",
  33938. image: {
  33939. source: "./media/characters/raylldo/top.svg"
  33940. }
  33941. },
  33942. bottom: {
  33943. height: math.unit(240, "meters"),
  33944. weight: math.unit(10000, "tons"),
  33945. name: "Bottom",
  33946. image: {
  33947. source: "./media/characters/raylldo/bottom.svg"
  33948. }
  33949. },
  33950. head: {
  33951. height: math.unit(38.6, "meters"),
  33952. name: "Head",
  33953. image: {
  33954. source: "./media/characters/raylldo/head.svg",
  33955. extra: 1335/1112,
  33956. bottom: 0/1335
  33957. }
  33958. },
  33959. maw: {
  33960. height: math.unit(16.37, "meters"),
  33961. name: "Maw",
  33962. image: {
  33963. source: "./media/characters/raylldo/maw.svg",
  33964. extra: 883/660,
  33965. bottom: 0/883
  33966. },
  33967. extraAttributes: {
  33968. preyCapacity: {
  33969. name: "Capacity",
  33970. power: 3,
  33971. type: "volume",
  33972. base: math.unit(1000, "people")
  33973. },
  33974. tongueSize: {
  33975. name: "Tongue Size",
  33976. power: 2,
  33977. type: "area",
  33978. base: math.unit(21, "m^2")
  33979. }
  33980. }
  33981. },
  33982. forepaw: {
  33983. height: math.unit(18, "meters"),
  33984. name: "Forepaw",
  33985. image: {
  33986. source: "./media/characters/raylldo/forepaw.svg"
  33987. }
  33988. },
  33989. hindpaw: {
  33990. height: math.unit(23, "meters"),
  33991. name: "Hindpaw",
  33992. image: {
  33993. source: "./media/characters/raylldo/hindpaw.svg"
  33994. }
  33995. },
  33996. genitals: {
  33997. height: math.unit(42, "meters"),
  33998. name: "Genitals",
  33999. image: {
  34000. source: "./media/characters/raylldo/genitals.svg"
  34001. }
  34002. },
  34003. },
  34004. [
  34005. {
  34006. name: "Normal",
  34007. height: math.unit(47.2, "meters"),
  34008. default: true
  34009. },
  34010. ]
  34011. ))
  34012. characterMakers.push(() => makeCharacter(
  34013. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34014. {
  34015. anthroFront: {
  34016. height: math.unit(9, "feet"),
  34017. weight: math.unit(600, "lb"),
  34018. name: "Anthro (Front)",
  34019. image: {
  34020. source: "./media/characters/glint/anthro-front.svg",
  34021. extra: 1097/1018,
  34022. bottom: 28/1125
  34023. }
  34024. },
  34025. anthroBack: {
  34026. height: math.unit(9, "feet"),
  34027. weight: math.unit(600, "lb"),
  34028. name: "Anthro (Back)",
  34029. image: {
  34030. source: "./media/characters/glint/anthro-back.svg",
  34031. extra: 1154/997,
  34032. bottom: 36/1190
  34033. }
  34034. },
  34035. feral: {
  34036. height: math.unit(11, "feet"),
  34037. weight: math.unit(50000, "lb"),
  34038. name: "Feral",
  34039. image: {
  34040. source: "./media/characters/glint/feral.svg",
  34041. extra: 3035/1585,
  34042. bottom: 1169/4204
  34043. }
  34044. },
  34045. dickAnthro: {
  34046. height: math.unit(0.7, "meters"),
  34047. name: "Dick (Anthro)",
  34048. image: {
  34049. source: "./media/characters/glint/dick-anthro.svg"
  34050. }
  34051. },
  34052. dickFeral: {
  34053. height: math.unit(2.65, "meters"),
  34054. name: "Dick (Feral)",
  34055. image: {
  34056. source: "./media/characters/glint/dick-feral.svg"
  34057. }
  34058. },
  34059. slitHidden: {
  34060. height: math.unit(5.85, "meters"),
  34061. name: "Slit (Hidden)",
  34062. image: {
  34063. source: "./media/characters/glint/slit-hidden.svg"
  34064. }
  34065. },
  34066. slitErect: {
  34067. height: math.unit(5.85, "meters"),
  34068. name: "Slit (Erect)",
  34069. image: {
  34070. source: "./media/characters/glint/slit-erect.svg"
  34071. }
  34072. },
  34073. mawAnthro: {
  34074. height: math.unit(0.63, "meters"),
  34075. name: "Maw (Anthro)",
  34076. image: {
  34077. source: "./media/characters/glint/maw.svg"
  34078. }
  34079. },
  34080. mawFeral: {
  34081. height: math.unit(2.89, "meters"),
  34082. name: "Maw (Feral)",
  34083. image: {
  34084. source: "./media/characters/glint/maw.svg"
  34085. }
  34086. },
  34087. },
  34088. [
  34089. {
  34090. name: "Normal",
  34091. height: math.unit(9, "feet"),
  34092. default: true
  34093. },
  34094. ]
  34095. ))
  34096. characterMakers.push(() => makeCharacter(
  34097. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34098. {
  34099. side: {
  34100. height: math.unit(15, "feet"),
  34101. weight: math.unit(5000, "kg"),
  34102. name: "Side",
  34103. image: {
  34104. source: "./media/characters/kairne/side.svg",
  34105. extra: 979/811,
  34106. bottom: 13/992
  34107. }
  34108. },
  34109. front: {
  34110. height: math.unit(15, "feet"),
  34111. weight: math.unit(5000, "kg"),
  34112. name: "Front",
  34113. image: {
  34114. source: "./media/characters/kairne/front.svg",
  34115. extra: 908/814,
  34116. bottom: 26/934
  34117. }
  34118. },
  34119. sideNsfw: {
  34120. height: math.unit(15, "feet"),
  34121. weight: math.unit(5000, "kg"),
  34122. name: "Side (NSFW)",
  34123. image: {
  34124. source: "./media/characters/kairne/side-nsfw.svg",
  34125. extra: 979/811,
  34126. bottom: 13/992
  34127. }
  34128. },
  34129. frontNsfw: {
  34130. height: math.unit(15, "feet"),
  34131. weight: math.unit(5000, "kg"),
  34132. name: "Front (NSFW)",
  34133. image: {
  34134. source: "./media/characters/kairne/front-nsfw.svg",
  34135. extra: 908/814,
  34136. bottom: 26/934
  34137. }
  34138. },
  34139. dickCaged: {
  34140. height: math.unit(0.65, "meters"),
  34141. name: "Dick-caged",
  34142. image: {
  34143. source: "./media/characters/kairne/dick-caged.svg"
  34144. }
  34145. },
  34146. dick: {
  34147. height: math.unit(0.79, "meters"),
  34148. name: "Dick",
  34149. image: {
  34150. source: "./media/characters/kairne/dick.svg"
  34151. }
  34152. },
  34153. genitals: {
  34154. height: math.unit(1.29, "meters"),
  34155. name: "Genitals",
  34156. image: {
  34157. source: "./media/characters/kairne/genitals.svg"
  34158. }
  34159. },
  34160. maw: {
  34161. height: math.unit(1.73, "meters"),
  34162. name: "Maw",
  34163. image: {
  34164. source: "./media/characters/kairne/maw.svg"
  34165. }
  34166. },
  34167. },
  34168. [
  34169. {
  34170. name: "Normal",
  34171. height: math.unit(15, "feet"),
  34172. default: true
  34173. },
  34174. ]
  34175. ))
  34176. characterMakers.push(() => makeCharacter(
  34177. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34178. {
  34179. front: {
  34180. height: math.unit(5 + 8/12, "feet"),
  34181. weight: math.unit(139, "lb"),
  34182. name: "Front",
  34183. image: {
  34184. source: "./media/characters/biscuit-jackal/front.svg",
  34185. extra: 2106/1961,
  34186. bottom: 58/2164
  34187. }
  34188. },
  34189. back: {
  34190. height: math.unit(5 + 8/12, "feet"),
  34191. weight: math.unit(139, "lb"),
  34192. name: "Back",
  34193. image: {
  34194. source: "./media/characters/biscuit-jackal/back.svg",
  34195. extra: 2132/1976,
  34196. bottom: 57/2189
  34197. }
  34198. },
  34199. werejackal: {
  34200. height: math.unit(6 + 3/12, "feet"),
  34201. weight: math.unit(188, "lb"),
  34202. name: "Werejackal",
  34203. image: {
  34204. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34205. extra: 2373/2178,
  34206. bottom: 53/2426
  34207. }
  34208. },
  34209. },
  34210. [
  34211. {
  34212. name: "Normal",
  34213. height: math.unit(5 + 8/12, "feet"),
  34214. default: true
  34215. },
  34216. ]
  34217. ))
  34218. characterMakers.push(() => makeCharacter(
  34219. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34220. {
  34221. front: {
  34222. height: math.unit(140, "cm"),
  34223. weight: math.unit(45, "kg"),
  34224. name: "Front",
  34225. image: {
  34226. source: "./media/characters/tayra-white/front.svg",
  34227. extra: 2229/2192,
  34228. bottom: 75/2304
  34229. }
  34230. },
  34231. },
  34232. [
  34233. {
  34234. name: "Normal",
  34235. height: math.unit(140, "cm"),
  34236. default: true
  34237. },
  34238. ]
  34239. ))
  34240. characterMakers.push(() => makeCharacter(
  34241. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34242. {
  34243. front: {
  34244. height: math.unit(4 + 5/12, "feet"),
  34245. name: "Front",
  34246. image: {
  34247. source: "./media/characters/scoop/front.svg",
  34248. extra: 1257/1136,
  34249. bottom: 69/1326
  34250. }
  34251. },
  34252. back: {
  34253. height: math.unit(4 + 5/12, "feet"),
  34254. name: "Back",
  34255. image: {
  34256. source: "./media/characters/scoop/back.svg",
  34257. extra: 1321/1152,
  34258. bottom: 32/1353
  34259. }
  34260. },
  34261. maw: {
  34262. height: math.unit(0.68, "feet"),
  34263. name: "Maw",
  34264. image: {
  34265. source: "./media/characters/scoop/maw.svg"
  34266. }
  34267. },
  34268. },
  34269. [
  34270. {
  34271. name: "Really Small",
  34272. height: math.unit(1, "mm")
  34273. },
  34274. {
  34275. name: "Micro",
  34276. height: math.unit(1, "inch")
  34277. },
  34278. {
  34279. name: "Normal",
  34280. height: math.unit(4 + 5/12, "feet"),
  34281. default: true
  34282. },
  34283. {
  34284. name: "Macro",
  34285. height: math.unit(200, "feet")
  34286. },
  34287. {
  34288. name: "Megamacro",
  34289. height: math.unit(3240, "feet")
  34290. },
  34291. {
  34292. name: "Teramacro",
  34293. height: math.unit(2500, "miles")
  34294. },
  34295. ]
  34296. ))
  34297. characterMakers.push(() => makeCharacter(
  34298. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34299. {
  34300. front: {
  34301. height: math.unit(15 + 7/12, "feet"),
  34302. weight: math.unit(1150, "tons"),
  34303. name: "Front",
  34304. image: {
  34305. source: "./media/characters/saphinara/front.svg",
  34306. extra: 1837/1643,
  34307. bottom: 84/1921
  34308. },
  34309. form: "normal",
  34310. default: true
  34311. },
  34312. side: {
  34313. height: math.unit(15 + 7/12, "feet"),
  34314. weight: math.unit(1150, "tons"),
  34315. name: "Side",
  34316. image: {
  34317. source: "./media/characters/saphinara/side.svg",
  34318. extra: 605/547,
  34319. bottom: 6/611
  34320. },
  34321. form: "normal"
  34322. },
  34323. back: {
  34324. height: math.unit(15 + 7/12, "feet"),
  34325. weight: math.unit(1150, "tons"),
  34326. name: "Back",
  34327. image: {
  34328. source: "./media/characters/saphinara/back.svg",
  34329. extra: 591/531,
  34330. bottom: 13/604
  34331. },
  34332. form: "normal"
  34333. },
  34334. frontTail: {
  34335. height: math.unit(15 + 7/12, "feet"),
  34336. weight: math.unit(1150, "tons"),
  34337. name: "Front (Full Tail)",
  34338. image: {
  34339. source: "./media/characters/saphinara/front-tail.svg",
  34340. extra: 2256/1630,
  34341. bottom: 261/2517
  34342. },
  34343. form: "normal"
  34344. },
  34345. insides: {
  34346. height: math.unit(11.92, "feet"),
  34347. name: "Insides",
  34348. image: {
  34349. source: "./media/characters/saphinara/insides.svg"
  34350. },
  34351. form: "normal"
  34352. },
  34353. head: {
  34354. height: math.unit(4.17, "feet"),
  34355. name: "Head",
  34356. image: {
  34357. source: "./media/characters/saphinara/head.svg"
  34358. },
  34359. form: "normal"
  34360. },
  34361. tongue: {
  34362. height: math.unit(4.60, "feet"),
  34363. name: "Tongue",
  34364. image: {
  34365. source: "./media/characters/saphinara/tongue.svg"
  34366. },
  34367. form: "normal"
  34368. },
  34369. headEnraged: {
  34370. height: math.unit(5.55, "feet"),
  34371. name: "Head (Enraged)",
  34372. image: {
  34373. source: "./media/characters/saphinara/head-enraged.svg"
  34374. },
  34375. form: "normal"
  34376. },
  34377. wings: {
  34378. height: math.unit(11.95, "feet"),
  34379. name: "Wings",
  34380. image: {
  34381. source: "./media/characters/saphinara/wings.svg"
  34382. },
  34383. form: "normal"
  34384. },
  34385. feathers: {
  34386. height: math.unit(8.92, "feet"),
  34387. name: "Feathers",
  34388. image: {
  34389. source: "./media/characters/saphinara/feathers.svg"
  34390. },
  34391. form: "normal"
  34392. },
  34393. shackles: {
  34394. height: math.unit(2, "feet"),
  34395. name: "Shackles",
  34396. image: {
  34397. source: "./media/characters/saphinara/shackles.svg"
  34398. },
  34399. form: "normal"
  34400. },
  34401. eyes: {
  34402. height: math.unit(1.331, "feet"),
  34403. name: "Eyes",
  34404. image: {
  34405. source: "./media/characters/saphinara/eyes.svg"
  34406. },
  34407. form: "normal"
  34408. },
  34409. eyesEnraged: {
  34410. height: math.unit(1.331, "feet"),
  34411. name: "Eyes (Enraged)",
  34412. image: {
  34413. source: "./media/characters/saphinara/eyes-enraged.svg"
  34414. },
  34415. form: "normal"
  34416. },
  34417. trueFormSide: {
  34418. height: math.unit(200, "feet"),
  34419. weight: math.unit(1e7, "tons"),
  34420. name: "Side",
  34421. image: {
  34422. source: "./media/characters/saphinara/true-form-side.svg",
  34423. extra: 1399/770,
  34424. bottom: 97/1496
  34425. },
  34426. form: "true-form",
  34427. default: true
  34428. },
  34429. trueFormMaw: {
  34430. height: math.unit(71.5, "feet"),
  34431. name: "Maw",
  34432. image: {
  34433. source: "./media/characters/saphinara/true-form-maw.svg",
  34434. extra: 2302/1453,
  34435. bottom: 0/2302
  34436. },
  34437. form: "true-form"
  34438. },
  34439. },
  34440. [
  34441. {
  34442. name: "Normal",
  34443. height: math.unit(15 + 7/12, "feet"),
  34444. default: true,
  34445. form: "normal"
  34446. },
  34447. {
  34448. name: "Angry",
  34449. height: math.unit(30 + 6/12, "feet"),
  34450. form: "normal"
  34451. },
  34452. {
  34453. name: "Enraged",
  34454. height: math.unit(102 + 1/12, "feet"),
  34455. form: "normal"
  34456. },
  34457. {
  34458. name: "True",
  34459. height: math.unit(200, "feet"),
  34460. default: true,
  34461. form: "true-form"
  34462. }
  34463. ],
  34464. {
  34465. "normal": {
  34466. name: "Normal",
  34467. default: true
  34468. },
  34469. "true-form": {
  34470. name: "True Form"
  34471. }
  34472. }
  34473. ))
  34474. characterMakers.push(() => makeCharacter(
  34475. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34476. {
  34477. front: {
  34478. height: math.unit(6 + 8/12, "feet"),
  34479. weight: math.unit(300, "lb"),
  34480. name: "Front",
  34481. image: {
  34482. source: "./media/characters/jrain/front.svg",
  34483. extra: 3039/2865,
  34484. bottom: 399/3438
  34485. }
  34486. },
  34487. back: {
  34488. height: math.unit(6 + 8/12, "feet"),
  34489. weight: math.unit(300, "lb"),
  34490. name: "Back",
  34491. image: {
  34492. source: "./media/characters/jrain/back.svg",
  34493. extra: 3089/2938,
  34494. bottom: 172/3261
  34495. }
  34496. },
  34497. head: {
  34498. height: math.unit(2.14, "feet"),
  34499. name: "Head",
  34500. image: {
  34501. source: "./media/characters/jrain/head.svg"
  34502. }
  34503. },
  34504. maw: {
  34505. height: math.unit(1.77, "feet"),
  34506. name: "Maw",
  34507. image: {
  34508. source: "./media/characters/jrain/maw.svg"
  34509. }
  34510. },
  34511. leftHand: {
  34512. height: math.unit(1.1, "feet"),
  34513. name: "Left Hand",
  34514. image: {
  34515. source: "./media/characters/jrain/left-hand.svg"
  34516. }
  34517. },
  34518. rightHand: {
  34519. height: math.unit(1.1, "feet"),
  34520. name: "Right Hand",
  34521. image: {
  34522. source: "./media/characters/jrain/right-hand.svg"
  34523. }
  34524. },
  34525. eye: {
  34526. height: math.unit(0.35, "feet"),
  34527. name: "Eye",
  34528. image: {
  34529. source: "./media/characters/jrain/eye.svg"
  34530. }
  34531. },
  34532. },
  34533. [
  34534. {
  34535. name: "Normal",
  34536. height: math.unit(6 + 8/12, "feet"),
  34537. default: true
  34538. },
  34539. {
  34540. name: "Casually Large",
  34541. height: math.unit(25, "feet")
  34542. },
  34543. {
  34544. name: "Giant",
  34545. height: math.unit(100, "feet")
  34546. },
  34547. {
  34548. name: "Kaiju",
  34549. height: math.unit(300, "feet")
  34550. },
  34551. ]
  34552. ))
  34553. characterMakers.push(() => makeCharacter(
  34554. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34555. {
  34556. dragon: {
  34557. height: math.unit(5, "meters"),
  34558. name: "Dragon",
  34559. image: {
  34560. source: "./media/characters/sabrina/dragon.svg",
  34561. extra: 3670 / 2365,
  34562. bottom: 333 / 4003
  34563. }
  34564. },
  34565. gryphon: {
  34566. height: math.unit(3, "meters"),
  34567. name: "Gryphon",
  34568. image: {
  34569. source: "./media/characters/sabrina/gryphon.svg",
  34570. extra: 1576 / 945,
  34571. bottom: 71 / 1647
  34572. }
  34573. },
  34574. snake: {
  34575. height: math.unit(12, "meters"),
  34576. name: "Snake",
  34577. image: {
  34578. source: "./media/characters/sabrina/snake.svg",
  34579. extra: 1758 / 1320,
  34580. bottom: 186 / 1944
  34581. }
  34582. },
  34583. collar: {
  34584. height: math.unit(1.86, "meters"),
  34585. name: "Collar",
  34586. image: {
  34587. source: "./media/characters/sabrina/collar.svg"
  34588. }
  34589. },
  34590. eye: {
  34591. height: math.unit(0.53, "meters"),
  34592. name: "Eye",
  34593. image: {
  34594. source: "./media/characters/sabrina/eye.svg"
  34595. }
  34596. },
  34597. foot: {
  34598. height: math.unit(1.86, "meters"),
  34599. name: "Foot",
  34600. image: {
  34601. source: "./media/characters/sabrina/foot.svg"
  34602. }
  34603. },
  34604. hand: {
  34605. height: math.unit(1.32, "meters"),
  34606. name: "Hand",
  34607. image: {
  34608. source: "./media/characters/sabrina/hand.svg"
  34609. }
  34610. },
  34611. head: {
  34612. height: math.unit(2.44, "meters"),
  34613. name: "Head",
  34614. image: {
  34615. source: "./media/characters/sabrina/head.svg"
  34616. }
  34617. },
  34618. headAngry: {
  34619. height: math.unit(2.44, "meters"),
  34620. name: "Head (Angry))",
  34621. image: {
  34622. source: "./media/characters/sabrina/head-angry.svg"
  34623. }
  34624. },
  34625. maw: {
  34626. height: math.unit(1.65, "meters"),
  34627. name: "Maw",
  34628. image: {
  34629. source: "./media/characters/sabrina/maw.svg"
  34630. }
  34631. },
  34632. spikes: {
  34633. height: math.unit(1.69, "meters"),
  34634. name: "Spikes",
  34635. image: {
  34636. source: "./media/characters/sabrina/spikes.svg"
  34637. }
  34638. },
  34639. stomach: {
  34640. height: math.unit(1.15, "meters"),
  34641. name: "Stomach",
  34642. image: {
  34643. source: "./media/characters/sabrina/stomach.svg"
  34644. }
  34645. },
  34646. tongue: {
  34647. height: math.unit(1.27, "meters"),
  34648. name: "Tongue",
  34649. image: {
  34650. source: "./media/characters/sabrina/tongue.svg"
  34651. }
  34652. },
  34653. wingDorsal: {
  34654. height: math.unit(4.85, "meters"),
  34655. name: "Wing (Dorsal)",
  34656. image: {
  34657. source: "./media/characters/sabrina/wing-dorsal.svg"
  34658. }
  34659. },
  34660. wingVentral: {
  34661. height: math.unit(4.85, "meters"),
  34662. name: "Wing (Ventral)",
  34663. image: {
  34664. source: "./media/characters/sabrina/wing-ventral.svg"
  34665. }
  34666. },
  34667. },
  34668. [
  34669. {
  34670. name: "Normal",
  34671. height: math.unit(5, "meters"),
  34672. default: true
  34673. },
  34674. ]
  34675. ))
  34676. characterMakers.push(() => makeCharacter(
  34677. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34678. {
  34679. frontMaid: {
  34680. height: math.unit(5 + 5/12, "feet"),
  34681. weight: math.unit(130, "lb"),
  34682. name: "Front (Maid)",
  34683. image: {
  34684. source: "./media/characters/midnight-tales/front-maid.svg",
  34685. extra: 489/454,
  34686. bottom: 61/550
  34687. }
  34688. },
  34689. frontFormal: {
  34690. height: math.unit(5 + 5/12, "feet"),
  34691. weight: math.unit(130, "lb"),
  34692. name: "Front (Formal)",
  34693. image: {
  34694. source: "./media/characters/midnight-tales/front-formal.svg",
  34695. extra: 489/454,
  34696. bottom: 61/550
  34697. }
  34698. },
  34699. back: {
  34700. height: math.unit(5 + 5/12, "feet"),
  34701. weight: math.unit(130, "lb"),
  34702. name: "Back",
  34703. image: {
  34704. source: "./media/characters/midnight-tales/back.svg",
  34705. extra: 498/456,
  34706. bottom: 33/531
  34707. }
  34708. },
  34709. frontBeast: {
  34710. height: math.unit(40, "feet"),
  34711. weight: math.unit(64000, "lb"),
  34712. name: "Front (Beast)",
  34713. image: {
  34714. source: "./media/characters/midnight-tales/front-beast.svg",
  34715. extra: 927/860,
  34716. bottom: 53/980
  34717. }
  34718. },
  34719. backBeast: {
  34720. height: math.unit(40, "feet"),
  34721. weight: math.unit(64000, "lb"),
  34722. name: "Back (Beast)",
  34723. image: {
  34724. source: "./media/characters/midnight-tales/back-beast.svg",
  34725. extra: 929/855,
  34726. bottom: 16/945
  34727. }
  34728. },
  34729. footBeast: {
  34730. height: math.unit(6.7, "feet"),
  34731. name: "Foot (Beast)",
  34732. image: {
  34733. source: "./media/characters/midnight-tales/foot-beast.svg"
  34734. }
  34735. },
  34736. headBeast: {
  34737. height: math.unit(8, "feet"),
  34738. name: "Head (Beast)",
  34739. image: {
  34740. source: "./media/characters/midnight-tales/head-beast.svg"
  34741. }
  34742. },
  34743. },
  34744. [
  34745. {
  34746. name: "Normal",
  34747. height: math.unit(5 + 5 / 12, "feet"),
  34748. default: true
  34749. },
  34750. {
  34751. name: "Macro",
  34752. height: math.unit(25, "feet")
  34753. },
  34754. ]
  34755. ))
  34756. characterMakers.push(() => makeCharacter(
  34757. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34758. {
  34759. front: {
  34760. height: math.unit(5 + 10/12, "feet"),
  34761. name: "Front",
  34762. image: {
  34763. source: "./media/characters/argon/front.svg",
  34764. extra: 2009/1935,
  34765. bottom: 118/2127
  34766. }
  34767. },
  34768. back: {
  34769. height: math.unit(5 + 10/12, "feet"),
  34770. name: "Back",
  34771. image: {
  34772. source: "./media/characters/argon/back.svg",
  34773. extra: 2047/1992,
  34774. bottom: 20/2067
  34775. }
  34776. },
  34777. frontDressed: {
  34778. height: math.unit(5 + 10/12, "feet"),
  34779. name: "Front (Dressed)",
  34780. image: {
  34781. source: "./media/characters/argon/front-dressed.svg",
  34782. extra: 2009/1935,
  34783. bottom: 118/2127
  34784. }
  34785. },
  34786. },
  34787. [
  34788. {
  34789. name: "Normal",
  34790. height: math.unit(5 + 10/12, "feet"),
  34791. default: true
  34792. },
  34793. ]
  34794. ))
  34795. characterMakers.push(() => makeCharacter(
  34796. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34797. {
  34798. front: {
  34799. height: math.unit(8 + 6/12, "feet"),
  34800. weight: math.unit(1150, "lb"),
  34801. name: "Front",
  34802. image: {
  34803. source: "./media/characters/kichi/front.svg",
  34804. extra: 1267/1164,
  34805. bottom: 61/1328
  34806. }
  34807. },
  34808. back: {
  34809. height: math.unit(8 + 6/12, "feet"),
  34810. weight: math.unit(1150, "lb"),
  34811. name: "Back",
  34812. image: {
  34813. source: "./media/characters/kichi/back.svg",
  34814. extra: 1273/1166,
  34815. bottom: 33/1306
  34816. }
  34817. },
  34818. },
  34819. [
  34820. {
  34821. name: "Normal",
  34822. height: math.unit(8 + 6/12, "feet"),
  34823. default: true
  34824. },
  34825. ]
  34826. ))
  34827. characterMakers.push(() => makeCharacter(
  34828. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34829. {
  34830. front: {
  34831. height: math.unit(6, "feet"),
  34832. weight: math.unit(210, "lb"),
  34833. name: "Front",
  34834. image: {
  34835. source: "./media/characters/manetel-greyscale/front.svg",
  34836. extra: 350/312,
  34837. bottom: 8/358
  34838. }
  34839. },
  34840. },
  34841. [
  34842. {
  34843. name: "Micro",
  34844. height: math.unit(2, "inches")
  34845. },
  34846. {
  34847. name: "Normal",
  34848. height: math.unit(6, "feet"),
  34849. default: true
  34850. },
  34851. {
  34852. name: "Minimacro",
  34853. height: math.unit(17, "feet")
  34854. },
  34855. {
  34856. name: "Macro",
  34857. height: math.unit(117, "feet")
  34858. },
  34859. ]
  34860. ))
  34861. characterMakers.push(() => makeCharacter(
  34862. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34863. {
  34864. side: {
  34865. height: math.unit(5 + 1/12, "feet"),
  34866. weight: math.unit(418, "lb"),
  34867. name: "Side",
  34868. image: {
  34869. source: "./media/characters/softpurr/side.svg",
  34870. extra: 1993/1945,
  34871. bottom: 134/2127
  34872. }
  34873. },
  34874. front: {
  34875. height: math.unit(5 + 1/12, "feet"),
  34876. weight: math.unit(418, "lb"),
  34877. name: "Front",
  34878. image: {
  34879. source: "./media/characters/softpurr/front.svg",
  34880. extra: 1950/1856,
  34881. bottom: 174/2124
  34882. }
  34883. },
  34884. paw: {
  34885. height: math.unit(1, "feet"),
  34886. name: "Paw",
  34887. image: {
  34888. source: "./media/characters/softpurr/paw.svg"
  34889. }
  34890. },
  34891. },
  34892. [
  34893. {
  34894. name: "Normal",
  34895. height: math.unit(5 + 1/12, "feet"),
  34896. default: true
  34897. },
  34898. ]
  34899. ))
  34900. characterMakers.push(() => makeCharacter(
  34901. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34902. {
  34903. front: {
  34904. height: math.unit(260, "meters"),
  34905. name: "Front",
  34906. image: {
  34907. source: "./media/characters/anahita/front.svg",
  34908. extra: 665/635,
  34909. bottom: 89/754
  34910. }
  34911. },
  34912. },
  34913. [
  34914. {
  34915. name: "Macro",
  34916. height: math.unit(260, "meters"),
  34917. default: true
  34918. },
  34919. ]
  34920. ))
  34921. characterMakers.push(() => makeCharacter(
  34922. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34923. {
  34924. front: {
  34925. height: math.unit(4 + 10/12, "feet"),
  34926. weight: math.unit(160, "lb"),
  34927. name: "Front",
  34928. image: {
  34929. source: "./media/characters/chip-mouse/front.svg",
  34930. extra: 3528/3408,
  34931. bottom: 0/3528
  34932. }
  34933. },
  34934. frontNsfw: {
  34935. height: math.unit(4 + 10/12, "feet"),
  34936. weight: math.unit(160, "lb"),
  34937. name: "Front (NSFW)",
  34938. image: {
  34939. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34940. extra: 3528/3408,
  34941. bottom: 0/3528
  34942. }
  34943. },
  34944. },
  34945. [
  34946. {
  34947. name: "Normal",
  34948. height: math.unit(4 + 10/12, "feet"),
  34949. default: true
  34950. },
  34951. ]
  34952. ))
  34953. characterMakers.push(() => makeCharacter(
  34954. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34955. {
  34956. side: {
  34957. height: math.unit(10, "feet"),
  34958. weight: math.unit(14000, "lb"),
  34959. name: "Side",
  34960. image: {
  34961. source: "./media/characters/kremm/side.svg",
  34962. extra: 1390/1053,
  34963. bottom: 90/1480
  34964. }
  34965. },
  34966. gut: {
  34967. height: math.unit(5.8, "feet"),
  34968. name: "Gut",
  34969. image: {
  34970. source: "./media/characters/kremm/gut.svg"
  34971. }
  34972. },
  34973. ass: {
  34974. height: math.unit(6.1, "feet"),
  34975. name: "Ass",
  34976. image: {
  34977. source: "./media/characters/kremm/ass.svg"
  34978. }
  34979. },
  34980. jaws: {
  34981. height: math.unit(2.2, "feet"),
  34982. name: "Jaws",
  34983. image: {
  34984. source: "./media/characters/kremm/jaws.svg"
  34985. }
  34986. },
  34987. dick: {
  34988. height: math.unit(4.26, "feet"),
  34989. name: "Dick",
  34990. image: {
  34991. source: "./media/characters/kremm/dick.svg"
  34992. }
  34993. },
  34994. },
  34995. [
  34996. {
  34997. name: "Normal",
  34998. height: math.unit(10, "feet"),
  34999. default: true
  35000. },
  35001. ]
  35002. ))
  35003. characterMakers.push(() => makeCharacter(
  35004. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35005. {
  35006. front: {
  35007. height: math.unit(30, "stories"),
  35008. name: "Front",
  35009. image: {
  35010. source: "./media/characters/kai/front.svg",
  35011. extra: 1892/1718,
  35012. bottom: 162/2054
  35013. }
  35014. },
  35015. },
  35016. [
  35017. {
  35018. name: "Macro",
  35019. height: math.unit(30, "stories"),
  35020. default: true
  35021. },
  35022. ]
  35023. ))
  35024. characterMakers.push(() => makeCharacter(
  35025. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35026. {
  35027. front: {
  35028. height: math.unit(6 + 4/12, "feet"),
  35029. weight: math.unit(145, "lb"),
  35030. name: "Front",
  35031. image: {
  35032. source: "./media/characters/sykes/front.svg",
  35033. extra: 1321 / 1187,
  35034. bottom: 66 / 1387
  35035. }
  35036. },
  35037. back: {
  35038. height: math.unit(6 + 4/12, "feet"),
  35039. weight: math.unit(145, "lb"),
  35040. name: "Back",
  35041. image: {
  35042. source: "./media/characters/sykes/back.svg",
  35043. extra: 1326/1181,
  35044. bottom: 31/1357
  35045. }
  35046. },
  35047. traditionalOutfit: {
  35048. height: math.unit(6 + 4/12, "feet"),
  35049. weight: math.unit(145, "lb"),
  35050. name: "Traditional Outfit",
  35051. image: {
  35052. source: "./media/characters/sykes/traditional-outfit.svg",
  35053. extra: 1321 / 1187,
  35054. bottom: 66 / 1387
  35055. }
  35056. },
  35057. adventureOutfit: {
  35058. height: math.unit(6 + 4/12, "feet"),
  35059. weight: math.unit(145, "lb"),
  35060. name: "Adventure Outfit",
  35061. image: {
  35062. source: "./media/characters/sykes/adventure-outfit.svg",
  35063. extra: 1321 / 1187,
  35064. bottom: 66 / 1387
  35065. }
  35066. },
  35067. handLeft: {
  35068. height: math.unit(0.9, "feet"),
  35069. name: "Hand (Left)",
  35070. image: {
  35071. source: "./media/characters/sykes/hand-left.svg"
  35072. }
  35073. },
  35074. handRight: {
  35075. height: math.unit(0.839, "feet"),
  35076. name: "Hand (Right)",
  35077. image: {
  35078. source: "./media/characters/sykes/hand-right.svg"
  35079. }
  35080. },
  35081. leftFoot: {
  35082. height: math.unit(1.2, "feet"),
  35083. name: "Foot (Left)",
  35084. image: {
  35085. source: "./media/characters/sykes/foot-left.svg"
  35086. }
  35087. },
  35088. rightFoot: {
  35089. height: math.unit(1.2, "feet"),
  35090. name: "Foot (Right)",
  35091. image: {
  35092. source: "./media/characters/sykes/foot-right.svg"
  35093. }
  35094. },
  35095. maw: {
  35096. height: math.unit(1.93, "feet"),
  35097. name: "Maw",
  35098. image: {
  35099. source: "./media/characters/sykes/maw.svg"
  35100. }
  35101. },
  35102. teeth: {
  35103. height: math.unit(0.51, "feet"),
  35104. name: "Teeth",
  35105. image: {
  35106. source: "./media/characters/sykes/teeth.svg"
  35107. }
  35108. },
  35109. tongue: {
  35110. height: math.unit(2.13, "feet"),
  35111. name: "Tongue",
  35112. image: {
  35113. source: "./media/characters/sykes/tongue.svg"
  35114. }
  35115. },
  35116. uvula: {
  35117. height: math.unit(0.16, "feet"),
  35118. name: "Uvula",
  35119. image: {
  35120. source: "./media/characters/sykes/uvula.svg"
  35121. }
  35122. },
  35123. collar: {
  35124. height: math.unit(0.287, "feet"),
  35125. name: "Collar",
  35126. image: {
  35127. source: "./media/characters/sykes/collar.svg"
  35128. }
  35129. },
  35130. tail: {
  35131. height: math.unit(3.8, "feet"),
  35132. name: "Tail",
  35133. image: {
  35134. source: "./media/characters/sykes/tail.svg"
  35135. }
  35136. },
  35137. },
  35138. [
  35139. {
  35140. name: "Shrunken",
  35141. height: math.unit(5, "inches")
  35142. },
  35143. {
  35144. name: "Normal",
  35145. height: math.unit(6 + 4 / 12, "feet"),
  35146. default: true
  35147. },
  35148. {
  35149. name: "Big",
  35150. height: math.unit(15, "feet")
  35151. },
  35152. ]
  35153. ))
  35154. characterMakers.push(() => makeCharacter(
  35155. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35156. {
  35157. front: {
  35158. height: math.unit(5 + 8/12, "feet"),
  35159. weight: math.unit(190, "lb"),
  35160. name: "Front",
  35161. image: {
  35162. source: "./media/characters/oven-otter/front.svg",
  35163. extra: 1809/1740,
  35164. bottom: 181/1990
  35165. }
  35166. },
  35167. back: {
  35168. height: math.unit(5 + 8/12, "feet"),
  35169. weight: math.unit(190, "lb"),
  35170. name: "Back",
  35171. image: {
  35172. source: "./media/characters/oven-otter/back.svg",
  35173. extra: 1709/1635,
  35174. bottom: 118/1827
  35175. }
  35176. },
  35177. hand: {
  35178. height: math.unit(1.07, "feet"),
  35179. name: "Hand",
  35180. image: {
  35181. source: "./media/characters/oven-otter/hand.svg"
  35182. }
  35183. },
  35184. beans: {
  35185. height: math.unit(1.74, "feet"),
  35186. name: "Beans",
  35187. image: {
  35188. source: "./media/characters/oven-otter/beans.svg"
  35189. }
  35190. },
  35191. },
  35192. [
  35193. {
  35194. name: "Micro",
  35195. height: math.unit(0.5, "inches")
  35196. },
  35197. {
  35198. name: "Normal",
  35199. height: math.unit(5 + 8/12, "feet"),
  35200. default: true
  35201. },
  35202. {
  35203. name: "Macro",
  35204. height: math.unit(250, "feet")
  35205. },
  35206. {
  35207. name: "Really High",
  35208. height: math.unit(420, "feet")
  35209. },
  35210. ]
  35211. ))
  35212. characterMakers.push(() => makeCharacter(
  35213. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35214. {
  35215. front: {
  35216. height: math.unit(5, "meters"),
  35217. weight: math.unit(292000000000000, "kg"),
  35218. name: "Front",
  35219. image: {
  35220. source: "./media/characters/devourer/front.svg",
  35221. extra: 1800/1733,
  35222. bottom: 211/2011
  35223. }
  35224. },
  35225. maw: {
  35226. height: math.unit(1.1, "meter"),
  35227. name: "Maw",
  35228. image: {
  35229. source: "./media/characters/devourer/maw.svg"
  35230. }
  35231. },
  35232. },
  35233. [
  35234. {
  35235. name: "Small",
  35236. height: math.unit(3, "meters")
  35237. },
  35238. {
  35239. name: "Large",
  35240. height: math.unit(5, "meters"),
  35241. default: true
  35242. },
  35243. ]
  35244. ))
  35245. characterMakers.push(() => makeCharacter(
  35246. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35247. {
  35248. front: {
  35249. height: math.unit(6, "feet"),
  35250. weight: math.unit(400, "lb"),
  35251. name: "Front",
  35252. image: {
  35253. source: "./media/characters/ellarby/front.svg",
  35254. extra: 1909/1763,
  35255. bottom: 80/1989
  35256. }
  35257. },
  35258. back: {
  35259. height: math.unit(6, "feet"),
  35260. weight: math.unit(400, "lb"),
  35261. name: "Back",
  35262. image: {
  35263. source: "./media/characters/ellarby/back.svg",
  35264. extra: 1914/1784,
  35265. bottom: 172/2086
  35266. }
  35267. },
  35268. },
  35269. [
  35270. {
  35271. name: "Mischief",
  35272. height: math.unit(18, "inches")
  35273. },
  35274. {
  35275. name: "Trouble",
  35276. height: math.unit(12, "feet")
  35277. },
  35278. {
  35279. name: "Havoc",
  35280. height: math.unit(200, "feet"),
  35281. default: true
  35282. },
  35283. {
  35284. name: "Pandemonium",
  35285. height: math.unit(1, "mile")
  35286. },
  35287. {
  35288. name: "Catastrophe",
  35289. height: math.unit(100, "miles")
  35290. },
  35291. ]
  35292. ))
  35293. characterMakers.push(() => makeCharacter(
  35294. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35295. {
  35296. front: {
  35297. height: math.unit(4.7, "meters"),
  35298. weight: math.unit(6500, "kg"),
  35299. name: "Front",
  35300. image: {
  35301. source: "./media/characters/vex/front.svg",
  35302. extra: 1288/1140,
  35303. bottom: 100/1388
  35304. }
  35305. },
  35306. },
  35307. [
  35308. {
  35309. name: "Normal",
  35310. height: math.unit(4.7, "meters"),
  35311. default: true
  35312. },
  35313. ]
  35314. ))
  35315. characterMakers.push(() => makeCharacter(
  35316. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35317. {
  35318. normal: {
  35319. height: math.unit(6, "feet"),
  35320. weight: math.unit(350, "lb"),
  35321. name: "Normal",
  35322. image: {
  35323. source: "./media/characters/teshy/normal.svg",
  35324. extra: 1795/1735,
  35325. bottom: 16/1811
  35326. }
  35327. },
  35328. monsterFront: {
  35329. height: math.unit(12, "feet"),
  35330. weight: math.unit(4700, "lb"),
  35331. name: "Monster (Front)",
  35332. image: {
  35333. source: "./media/characters/teshy/monster-front.svg",
  35334. extra: 2042/2034,
  35335. bottom: 128/2170
  35336. }
  35337. },
  35338. monsterSide: {
  35339. height: math.unit(12, "feet"),
  35340. weight: math.unit(4700, "lb"),
  35341. name: "Monster (Side)",
  35342. image: {
  35343. source: "./media/characters/teshy/monster-side.svg",
  35344. extra: 2067/2056,
  35345. bottom: 70/2137
  35346. }
  35347. },
  35348. monsterBack: {
  35349. height: math.unit(12, "feet"),
  35350. weight: math.unit(4700, "lb"),
  35351. name: "Monster (Back)",
  35352. image: {
  35353. source: "./media/characters/teshy/monster-back.svg",
  35354. extra: 1921/1914,
  35355. bottom: 171/2092
  35356. }
  35357. },
  35358. },
  35359. [
  35360. {
  35361. name: "Normal",
  35362. height: math.unit(6, "feet"),
  35363. default: true
  35364. },
  35365. ]
  35366. ))
  35367. characterMakers.push(() => makeCharacter(
  35368. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35369. {
  35370. front: {
  35371. height: math.unit(6, "feet"),
  35372. name: "Front",
  35373. image: {
  35374. source: "./media/characters/ramey/front.svg",
  35375. extra: 790/787,
  35376. bottom: 27/817
  35377. }
  35378. },
  35379. },
  35380. [
  35381. {
  35382. name: "Normal",
  35383. height: math.unit(6, "feet"),
  35384. default: true
  35385. },
  35386. ]
  35387. ))
  35388. characterMakers.push(() => makeCharacter(
  35389. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35390. {
  35391. front: {
  35392. height: math.unit(5 + 5/12, "feet"),
  35393. weight: math.unit(120, "lb"),
  35394. name: "Front",
  35395. image: {
  35396. source: "./media/characters/phirae/front.svg",
  35397. extra: 2491/2436,
  35398. bottom: 38/2529
  35399. }
  35400. },
  35401. },
  35402. [
  35403. {
  35404. name: "Normal",
  35405. height: math.unit(5 + 5/12, "feet"),
  35406. default: true
  35407. },
  35408. ]
  35409. ))
  35410. characterMakers.push(() => makeCharacter(
  35411. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35412. {
  35413. front: {
  35414. height: math.unit(5 + 3/12, "feet"),
  35415. name: "Front",
  35416. image: {
  35417. source: "./media/characters/stagglas/front.svg",
  35418. extra: 962/882,
  35419. bottom: 53/1015
  35420. }
  35421. },
  35422. feral: {
  35423. height: math.unit(335, "cm"),
  35424. name: "Feral",
  35425. image: {
  35426. source: "./media/characters/stagglas/feral.svg",
  35427. extra: 1732/1090,
  35428. bottom: 48/1780
  35429. }
  35430. },
  35431. },
  35432. [
  35433. {
  35434. name: "Normal",
  35435. height: math.unit(5 + 3/12, "feet"),
  35436. default: true
  35437. },
  35438. ]
  35439. ))
  35440. characterMakers.push(() => makeCharacter(
  35441. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35442. {
  35443. front: {
  35444. height: math.unit(5 + 4/12, "feet"),
  35445. weight: math.unit(145, "lb"),
  35446. name: "Front",
  35447. image: {
  35448. source: "./media/characters/starra/front.svg",
  35449. extra: 1790/1691,
  35450. bottom: 91/1881
  35451. }
  35452. },
  35453. },
  35454. [
  35455. {
  35456. name: "Normal",
  35457. height: math.unit(5 + 4/12, "feet"),
  35458. default: true
  35459. },
  35460. ]
  35461. ))
  35462. characterMakers.push(() => makeCharacter(
  35463. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35464. {
  35465. front: {
  35466. height: math.unit(2.2, "meters"),
  35467. name: "Front",
  35468. image: {
  35469. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35470. extra: 1194/1005,
  35471. bottom: 25/1219
  35472. }
  35473. },
  35474. },
  35475. [
  35476. {
  35477. name: "Normal",
  35478. height: math.unit(2.2, "meters"),
  35479. default: true
  35480. },
  35481. ]
  35482. ))
  35483. characterMakers.push(() => makeCharacter(
  35484. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35485. {
  35486. side: {
  35487. height: math.unit(8 + 2/12, "feet"),
  35488. weight: math.unit(1240, "lb"),
  35489. name: "Side",
  35490. image: {
  35491. source: "./media/characters/mika-valentine/side.svg",
  35492. extra: 2670/2501,
  35493. bottom: 250/2920
  35494. }
  35495. },
  35496. },
  35497. [
  35498. {
  35499. name: "Normal",
  35500. height: math.unit(8 + 2/12, "feet"),
  35501. default: true
  35502. },
  35503. ]
  35504. ))
  35505. characterMakers.push(() => makeCharacter(
  35506. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35507. {
  35508. front: {
  35509. height: math.unit(7 + 2/12, "feet"),
  35510. name: "Front",
  35511. image: {
  35512. source: "./media/characters/xoltol/front.svg",
  35513. extra: 2212/2124,
  35514. bottom: 84/2296
  35515. }
  35516. },
  35517. side: {
  35518. height: math.unit(7 + 2/12, "feet"),
  35519. name: "Side",
  35520. image: {
  35521. source: "./media/characters/xoltol/side.svg",
  35522. extra: 2273/2197,
  35523. bottom: 26/2299
  35524. }
  35525. },
  35526. hand: {
  35527. height: math.unit(2.5, "feet"),
  35528. name: "Hand",
  35529. image: {
  35530. source: "./media/characters/xoltol/hand.svg"
  35531. }
  35532. },
  35533. },
  35534. [
  35535. {
  35536. name: "Small-ish",
  35537. height: math.unit(5 + 11/12, "feet")
  35538. },
  35539. {
  35540. name: "Normal",
  35541. height: math.unit(7 + 2/12, "feet")
  35542. },
  35543. {
  35544. name: "\"Macro\"",
  35545. height: math.unit(14 + 9/12, "feet"),
  35546. default: true
  35547. },
  35548. {
  35549. name: "Alternate Height",
  35550. height: math.unit(20, "feet")
  35551. },
  35552. {
  35553. name: "Actually Macro",
  35554. height: math.unit(100, "feet")
  35555. },
  35556. ]
  35557. ))
  35558. characterMakers.push(() => makeCharacter(
  35559. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35560. {
  35561. front: {
  35562. height: math.unit(5 + 2/12, "feet"),
  35563. name: "Front",
  35564. image: {
  35565. source: "./media/characters/kotetsu-redwood/front.svg",
  35566. extra: 1053/942,
  35567. bottom: 60/1113
  35568. }
  35569. },
  35570. },
  35571. [
  35572. {
  35573. name: "Normal",
  35574. height: math.unit(5 + 2/12, "feet"),
  35575. default: true
  35576. },
  35577. ]
  35578. ))
  35579. characterMakers.push(() => makeCharacter(
  35580. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35581. {
  35582. front: {
  35583. height: math.unit(2.4, "meters"),
  35584. weight: math.unit(125, "kg"),
  35585. name: "Front",
  35586. image: {
  35587. source: "./media/characters/lilith/front.svg",
  35588. extra: 1590/1513,
  35589. bottom: 203/1793
  35590. }
  35591. },
  35592. },
  35593. [
  35594. {
  35595. name: "Humanoid",
  35596. height: math.unit(2.4, "meters")
  35597. },
  35598. {
  35599. name: "Normal",
  35600. height: math.unit(6, "meters"),
  35601. default: true
  35602. },
  35603. {
  35604. name: "Largest",
  35605. height: math.unit(55, "meters")
  35606. },
  35607. ]
  35608. ))
  35609. characterMakers.push(() => makeCharacter(
  35610. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35611. {
  35612. front: {
  35613. height: math.unit(8 + 4/12, "feet"),
  35614. weight: math.unit(535, "lb"),
  35615. name: "Front",
  35616. image: {
  35617. source: "./media/characters/beh'kah-bolger/front.svg",
  35618. extra: 1660/1603,
  35619. bottom: 37/1697
  35620. }
  35621. },
  35622. },
  35623. [
  35624. {
  35625. name: "Normal",
  35626. height: math.unit(8 + 4/12, "feet"),
  35627. default: true
  35628. },
  35629. {
  35630. name: "Kaiju",
  35631. height: math.unit(250, "feet")
  35632. },
  35633. {
  35634. name: "Still Growing",
  35635. height: math.unit(10, "miles")
  35636. },
  35637. {
  35638. name: "Continental",
  35639. height: math.unit(5000, "miles")
  35640. },
  35641. {
  35642. name: "Final Form",
  35643. height: math.unit(2500000, "miles")
  35644. },
  35645. ]
  35646. ))
  35647. characterMakers.push(() => makeCharacter(
  35648. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35649. {
  35650. front: {
  35651. height: math.unit(7 + 2/12, "feet"),
  35652. weight: math.unit(230, "kg"),
  35653. name: "Front",
  35654. image: {
  35655. source: "./media/characters/tatyana-milewska/front.svg",
  35656. extra: 1199/1150,
  35657. bottom: 86/1285
  35658. }
  35659. },
  35660. },
  35661. [
  35662. {
  35663. name: "Normal",
  35664. height: math.unit(7 + 2/12, "feet"),
  35665. default: true
  35666. },
  35667. {
  35668. name: "Big",
  35669. height: math.unit(12, "feet")
  35670. },
  35671. {
  35672. name: "Minimacro",
  35673. height: math.unit(20, "feet")
  35674. },
  35675. {
  35676. name: "Macro",
  35677. height: math.unit(120, "feet")
  35678. },
  35679. ]
  35680. ))
  35681. characterMakers.push(() => makeCharacter(
  35682. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35683. {
  35684. front: {
  35685. height: math.unit(7 + 8/12, "feet"),
  35686. weight: math.unit(152, "kg"),
  35687. name: "Front",
  35688. image: {
  35689. source: "./media/characters/helen-arri/front.svg",
  35690. extra: 440/423,
  35691. bottom: 14/454
  35692. }
  35693. },
  35694. back: {
  35695. height: math.unit(7 + 8/12, "feet"),
  35696. weight: math.unit(152, "kg"),
  35697. name: "Back",
  35698. image: {
  35699. source: "./media/characters/helen-arri/back.svg",
  35700. extra: 443/426,
  35701. bottom: 8/451
  35702. }
  35703. },
  35704. },
  35705. [
  35706. {
  35707. name: "Normal",
  35708. height: math.unit(7 + 8/12, "feet"),
  35709. default: true
  35710. },
  35711. {
  35712. name: "Big",
  35713. height: math.unit(14, "feet")
  35714. },
  35715. {
  35716. name: "Minimacro",
  35717. height: math.unit(24, "feet")
  35718. },
  35719. {
  35720. name: "Macro",
  35721. height: math.unit(140, "feet")
  35722. },
  35723. ]
  35724. ))
  35725. characterMakers.push(() => makeCharacter(
  35726. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35727. {
  35728. front: {
  35729. height: math.unit(6, "meters"),
  35730. name: "Front",
  35731. image: {
  35732. source: "./media/characters/ehanu-rehu/front.svg",
  35733. extra: 1800/1800,
  35734. bottom: 59/1859
  35735. }
  35736. },
  35737. },
  35738. [
  35739. {
  35740. name: "Normal",
  35741. height: math.unit(6, "meters"),
  35742. default: true
  35743. },
  35744. ]
  35745. ))
  35746. characterMakers.push(() => makeCharacter(
  35747. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35748. {
  35749. front: {
  35750. height: math.unit(7 + 3/12, "feet"),
  35751. name: "Front",
  35752. image: {
  35753. source: "./media/characters/renholder/front.svg",
  35754. extra: 3096/2960,
  35755. bottom: 250/3346
  35756. }
  35757. },
  35758. },
  35759. [
  35760. {
  35761. name: "Normal Bat",
  35762. height: math.unit(7 + 3/12, "feet"),
  35763. default: true
  35764. },
  35765. {
  35766. name: "Slightly Tall Bat",
  35767. height: math.unit(100, "feet")
  35768. },
  35769. {
  35770. name: "Big Bat",
  35771. height: math.unit(1000, "feet")
  35772. },
  35773. {
  35774. name: "City-Sized Bat",
  35775. height: math.unit(200000, "feet")
  35776. },
  35777. {
  35778. name: "Bigger Bat",
  35779. height: math.unit(10000, "miles")
  35780. },
  35781. {
  35782. name: "Solar Sized Bat",
  35783. height: math.unit(100, "AU")
  35784. },
  35785. {
  35786. name: "Galactic Bat",
  35787. height: math.unit(200000, "lightyears")
  35788. },
  35789. {
  35790. name: "Universally Known Bat",
  35791. height: math.unit(1, "universe")
  35792. },
  35793. ]
  35794. ))
  35795. characterMakers.push(() => makeCharacter(
  35796. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35797. {
  35798. front: {
  35799. height: math.unit(6 + 11/12, "feet"),
  35800. weight: math.unit(250, "lb"),
  35801. name: "Front",
  35802. image: {
  35803. source: "./media/characters/cookiecat/front.svg",
  35804. extra: 893/827,
  35805. bottom: 14/907
  35806. }
  35807. },
  35808. },
  35809. [
  35810. {
  35811. name: "Micro",
  35812. height: math.unit(3, "inches")
  35813. },
  35814. {
  35815. name: "Normal",
  35816. height: math.unit(6 + 11/12, "feet"),
  35817. default: true
  35818. },
  35819. {
  35820. name: "Macro",
  35821. height: math.unit(100, "feet")
  35822. },
  35823. {
  35824. name: "Macro+",
  35825. height: math.unit(404, "feet")
  35826. },
  35827. {
  35828. name: "Megamacro",
  35829. height: math.unit(165, "miles")
  35830. },
  35831. {
  35832. name: "Planetary",
  35833. height: math.unit(4600, "miles")
  35834. },
  35835. ]
  35836. ))
  35837. characterMakers.push(() => makeCharacter(
  35838. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35839. {
  35840. front: {
  35841. height: math.unit(10 + 3/12, "feet"),
  35842. weight: math.unit(1500, "lb"),
  35843. name: "Front",
  35844. image: {
  35845. source: "./media/characters/tux-kusanagi/front.svg",
  35846. extra: 944/840,
  35847. bottom: 39/983
  35848. }
  35849. },
  35850. back: {
  35851. height: math.unit(10 + 3/12, "feet"),
  35852. weight: math.unit(1500, "lb"),
  35853. name: "Back",
  35854. image: {
  35855. source: "./media/characters/tux-kusanagi/back.svg",
  35856. extra: 941/842,
  35857. bottom: 28/969
  35858. }
  35859. },
  35860. rump: {
  35861. height: math.unit(5.25, "feet"),
  35862. name: "Rump",
  35863. image: {
  35864. source: "./media/characters/tux-kusanagi/rump.svg"
  35865. }
  35866. },
  35867. beak: {
  35868. height: math.unit(1.54, "feet"),
  35869. name: "Beak",
  35870. image: {
  35871. source: "./media/characters/tux-kusanagi/beak.svg"
  35872. }
  35873. },
  35874. },
  35875. [
  35876. {
  35877. name: "Normal",
  35878. height: math.unit(10 + 3/12, "feet"),
  35879. default: true
  35880. },
  35881. ]
  35882. ))
  35883. characterMakers.push(() => makeCharacter(
  35884. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35885. {
  35886. front: {
  35887. height: math.unit(58, "feet"),
  35888. weight: math.unit(200, "tons"),
  35889. name: "Front",
  35890. image: {
  35891. source: "./media/characters/uzarmazari/front.svg",
  35892. extra: 1575/1455,
  35893. bottom: 152/1727
  35894. }
  35895. },
  35896. back: {
  35897. height: math.unit(58, "feet"),
  35898. weight: math.unit(200, "tons"),
  35899. name: "Back",
  35900. image: {
  35901. source: "./media/characters/uzarmazari/back.svg",
  35902. extra: 1585/1510,
  35903. bottom: 157/1742
  35904. }
  35905. },
  35906. head: {
  35907. height: math.unit(26, "feet"),
  35908. name: "Head",
  35909. image: {
  35910. source: "./media/characters/uzarmazari/head.svg"
  35911. }
  35912. },
  35913. },
  35914. [
  35915. {
  35916. name: "Normal",
  35917. height: math.unit(58, "feet"),
  35918. default: true
  35919. },
  35920. ]
  35921. ))
  35922. characterMakers.push(() => makeCharacter(
  35923. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35924. {
  35925. side: {
  35926. height: math.unit(15, "feet"),
  35927. name: "Side",
  35928. image: {
  35929. source: "./media/characters/akitu/side.svg",
  35930. extra: 1421/1321,
  35931. bottom: 157/1578
  35932. }
  35933. },
  35934. front: {
  35935. height: math.unit(15, "feet"),
  35936. name: "Front",
  35937. image: {
  35938. source: "./media/characters/akitu/front.svg",
  35939. extra: 1435/1326,
  35940. bottom: 232/1667
  35941. }
  35942. },
  35943. },
  35944. [
  35945. {
  35946. name: "Normal",
  35947. height: math.unit(15, "feet"),
  35948. default: true
  35949. },
  35950. ]
  35951. ))
  35952. characterMakers.push(() => makeCharacter(
  35953. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35954. {
  35955. front: {
  35956. height: math.unit(10 + 8/12, "feet"),
  35957. name: "Front",
  35958. image: {
  35959. source: "./media/characters/azalie-croixland/front.svg",
  35960. extra: 1972/1856,
  35961. bottom: 31/2003
  35962. }
  35963. },
  35964. },
  35965. [
  35966. {
  35967. name: "Original Height",
  35968. height: math.unit(5 + 4/12, "feet")
  35969. },
  35970. {
  35971. name: "Normal Height",
  35972. height: math.unit(10 + 8/12, "feet"),
  35973. default: true
  35974. },
  35975. ]
  35976. ))
  35977. characterMakers.push(() => makeCharacter(
  35978. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35979. {
  35980. side: {
  35981. height: math.unit(7 + 1/12, "feet"),
  35982. weight: math.unit(245, "lb"),
  35983. name: "Side",
  35984. image: {
  35985. source: "./media/characters/kavus-kazian/side.svg",
  35986. extra: 349/342,
  35987. bottom: 15/364
  35988. }
  35989. },
  35990. },
  35991. [
  35992. {
  35993. name: "Normal",
  35994. height: math.unit(7 + 1/12, "feet"),
  35995. default: true
  35996. },
  35997. ]
  35998. ))
  35999. characterMakers.push(() => makeCharacter(
  36000. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36001. {
  36002. normalFront: {
  36003. height: math.unit(5 + 11/12, "feet"),
  36004. name: "Front",
  36005. image: {
  36006. source: "./media/characters/moonlight-rose/normal-front.svg",
  36007. extra: 1980/1825,
  36008. bottom: 18/1998
  36009. },
  36010. form: "normal",
  36011. default: true
  36012. },
  36013. normalBack: {
  36014. height: math.unit(5 + 11/12, "feet"),
  36015. name: "Back",
  36016. image: {
  36017. source: "./media/characters/moonlight-rose/normal-back.svg",
  36018. extra: 2010/1839,
  36019. bottom: 10/2020
  36020. },
  36021. form: "normal"
  36022. },
  36023. demonFront: {
  36024. height: math.unit(1.5, "earths"),
  36025. name: "Front",
  36026. image: {
  36027. source: "./media/characters/moonlight-rose/demon.svg",
  36028. extra: 1400/1294,
  36029. bottom: 45/1445
  36030. },
  36031. form: "demon",
  36032. default: true
  36033. },
  36034. terraFront: {
  36035. height: math.unit(1.5, "earths"),
  36036. name: "Front",
  36037. image: {
  36038. source: "./media/characters/moonlight-rose/terra.svg"
  36039. },
  36040. form: "terra",
  36041. default: true
  36042. },
  36043. jupiterFront: {
  36044. height: math.unit(69911*2, "km"),
  36045. name: "Front",
  36046. image: {
  36047. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36048. extra: 1367/1286,
  36049. bottom: 55/1422
  36050. },
  36051. form: "jupiter",
  36052. default: true
  36053. },
  36054. neptuneFront: {
  36055. height: math.unit(24622*2, "feet"),
  36056. name: "Front",
  36057. image: {
  36058. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36059. extra: 1851/1712,
  36060. bottom: 0/1851
  36061. },
  36062. form: "neptune",
  36063. default: true
  36064. },
  36065. },
  36066. [
  36067. {
  36068. name: "\"Natural\" Height",
  36069. height: math.unit(5 + 11/12, "feet"),
  36070. form: "normal"
  36071. },
  36072. {
  36073. name: "Smallest comfortable size",
  36074. height: math.unit(40, "meters"),
  36075. form: "normal"
  36076. },
  36077. {
  36078. name: "Common size",
  36079. height: math.unit(50, "km"),
  36080. form: "normal",
  36081. default: true
  36082. },
  36083. {
  36084. name: "Normal",
  36085. height: math.unit(1.5, "earths"),
  36086. form: "demon",
  36087. default: true
  36088. },
  36089. {
  36090. name: "Universal",
  36091. height: math.unit(15, "universes"),
  36092. form: "demon"
  36093. },
  36094. {
  36095. name: "Earth",
  36096. height: math.unit(1.5, "earths"),
  36097. form: "terra",
  36098. default: true
  36099. },
  36100. {
  36101. name: "Super Earth",
  36102. height: math.unit(67.5, "earths"),
  36103. form: "terra"
  36104. },
  36105. {
  36106. name: "Doesn't fit in a solar system...",
  36107. height: math.unit(1, "galaxy"),
  36108. form: "terra"
  36109. },
  36110. {
  36111. name: "Saturn",
  36112. height: math.unit(58232*2, "km"),
  36113. form: "jupiter"
  36114. },
  36115. {
  36116. name: "Jupiter",
  36117. height: math.unit(69911*2, "km"),
  36118. form: "jupiter",
  36119. default: true
  36120. },
  36121. {
  36122. name: "HD 100546 b",
  36123. height: math.unit(482938, "km"),
  36124. form: "jupiter"
  36125. },
  36126. {
  36127. name: "Enceladus",
  36128. height: math.unit(513*2, "km"),
  36129. form: "neptune"
  36130. },
  36131. {
  36132. name: "Europe",
  36133. height: math.unit(1560*2, "km"),
  36134. form: "neptune"
  36135. },
  36136. {
  36137. name: "Neptune",
  36138. height: math.unit(24622*2, "km"),
  36139. form: "neptune",
  36140. default: true
  36141. },
  36142. {
  36143. name: "CoRoT-9b",
  36144. height: math.unit(75067*2, "km"),
  36145. form: "neptune"
  36146. },
  36147. ],
  36148. {
  36149. "normal": {
  36150. name: "Normal",
  36151. default: true
  36152. },
  36153. "demon": {
  36154. name: "Demon"
  36155. },
  36156. "terra": {
  36157. name: "Terra"
  36158. },
  36159. "jupiter": {
  36160. name: "Jupiter"
  36161. },
  36162. "neptune": {
  36163. name: "Neptune"
  36164. }
  36165. }
  36166. ))
  36167. characterMakers.push(() => makeCharacter(
  36168. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36169. {
  36170. front: {
  36171. height: math.unit(16, "feet"),
  36172. weight: math.unit(610, "kg"),
  36173. name: "Front",
  36174. image: {
  36175. source: "./media/characters/huckle/front.svg",
  36176. extra: 1731/1625,
  36177. bottom: 33/1764
  36178. }
  36179. },
  36180. back: {
  36181. height: math.unit(16, "feet"),
  36182. weight: math.unit(610, "kg"),
  36183. name: "Back",
  36184. image: {
  36185. source: "./media/characters/huckle/back.svg",
  36186. extra: 1738/1651,
  36187. bottom: 37/1775
  36188. }
  36189. },
  36190. laughing: {
  36191. height: math.unit(3.75, "feet"),
  36192. name: "Laughing",
  36193. image: {
  36194. source: "./media/characters/huckle/laughing.svg"
  36195. }
  36196. },
  36197. angry: {
  36198. height: math.unit(4.15, "feet"),
  36199. name: "Angry",
  36200. image: {
  36201. source: "./media/characters/huckle/angry.svg"
  36202. }
  36203. },
  36204. },
  36205. [
  36206. {
  36207. name: "Normal",
  36208. height: math.unit(16, "feet"),
  36209. default: true
  36210. },
  36211. {
  36212. name: "Mini Macro",
  36213. height: math.unit(463, "feet")
  36214. },
  36215. {
  36216. name: "Macro",
  36217. height: math.unit(1680, "meters")
  36218. },
  36219. {
  36220. name: "Mega Macro",
  36221. height: math.unit(175, "km")
  36222. },
  36223. {
  36224. name: "Terra Macro",
  36225. height: math.unit(32, "gigameters")
  36226. },
  36227. {
  36228. name: "Multiverse+",
  36229. height: math.unit(2.56e23, "yottameters")
  36230. },
  36231. ]
  36232. ))
  36233. characterMakers.push(() => makeCharacter(
  36234. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36235. {
  36236. front: {
  36237. height: math.unit(6 + 9/12, "feet"),
  36238. weight: math.unit(280, "lb"),
  36239. name: "Front",
  36240. image: {
  36241. source: "./media/characters/candy/front.svg",
  36242. extra: 234/217,
  36243. bottom: 11/245
  36244. }
  36245. },
  36246. },
  36247. [
  36248. {
  36249. name: "Really Small",
  36250. height: math.unit(0.1, "nm")
  36251. },
  36252. {
  36253. name: "Micro",
  36254. height: math.unit(2, "inches")
  36255. },
  36256. {
  36257. name: "Normal",
  36258. height: math.unit(6 + 9/12, "feet"),
  36259. default: true
  36260. },
  36261. {
  36262. name: "Small Macro",
  36263. height: math.unit(69, "feet")
  36264. },
  36265. {
  36266. name: "Macro",
  36267. height: math.unit(160, "feet")
  36268. },
  36269. {
  36270. name: "Megamacro",
  36271. height: math.unit(22000, "miles")
  36272. },
  36273. {
  36274. name: "Gigamacro",
  36275. height: math.unit(50000, "miles")
  36276. },
  36277. ]
  36278. ))
  36279. characterMakers.push(() => makeCharacter(
  36280. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36281. {
  36282. front: {
  36283. height: math.unit(4, "feet"),
  36284. weight: math.unit(90, "lb"),
  36285. name: "Front",
  36286. image: {
  36287. source: "./media/characters/joey-mcdonald/front.svg",
  36288. extra: 1059/852,
  36289. bottom: 33/1092
  36290. }
  36291. },
  36292. back: {
  36293. height: math.unit(4, "feet"),
  36294. weight: math.unit(90, "lb"),
  36295. name: "Back",
  36296. image: {
  36297. source: "./media/characters/joey-mcdonald/back.svg",
  36298. extra: 1077/879,
  36299. bottom: 5/1082
  36300. }
  36301. },
  36302. frontKobold: {
  36303. height: math.unit(4, "feet"),
  36304. weight: math.unit(100, "lb"),
  36305. name: "Front-kobold",
  36306. image: {
  36307. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36308. extra: 1480/1367,
  36309. bottom: 0/1480
  36310. }
  36311. },
  36312. backKobold: {
  36313. height: math.unit(4, "feet"),
  36314. weight: math.unit(100, "lb"),
  36315. name: "Back-kobold",
  36316. image: {
  36317. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36318. extra: 1449/1361,
  36319. bottom: 0/1449
  36320. }
  36321. },
  36322. },
  36323. [
  36324. {
  36325. name: "Normal",
  36326. height: math.unit(4, "feet"),
  36327. default: true
  36328. },
  36329. ]
  36330. ))
  36331. characterMakers.push(() => makeCharacter(
  36332. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36333. {
  36334. front: {
  36335. height: math.unit(12 + 6/12, "feet"),
  36336. name: "Front",
  36337. image: {
  36338. source: "./media/characters/kass-lockheed/front.svg",
  36339. extra: 354/343,
  36340. bottom: 9/363
  36341. }
  36342. },
  36343. back: {
  36344. height: math.unit(12 + 6/12, "feet"),
  36345. name: "Back",
  36346. image: {
  36347. source: "./media/characters/kass-lockheed/back.svg",
  36348. extra: 364/352,
  36349. bottom: 3/367
  36350. }
  36351. },
  36352. dick: {
  36353. height: math.unit(3.12, "feet"),
  36354. name: "Dick",
  36355. image: {
  36356. source: "./media/characters/kass-lockheed/dick.svg"
  36357. }
  36358. },
  36359. head: {
  36360. height: math.unit(2.6, "feet"),
  36361. name: "Head",
  36362. image: {
  36363. source: "./media/characters/kass-lockheed/head.svg"
  36364. }
  36365. },
  36366. bleh: {
  36367. height: math.unit(2.85, "feet"),
  36368. name: "Bleh",
  36369. image: {
  36370. source: "./media/characters/kass-lockheed/bleh.svg"
  36371. }
  36372. },
  36373. smug: {
  36374. height: math.unit(2.85, "feet"),
  36375. name: "Smug",
  36376. image: {
  36377. source: "./media/characters/kass-lockheed/smug.svg"
  36378. }
  36379. },
  36380. },
  36381. [
  36382. {
  36383. name: "Normal",
  36384. height: math.unit(12 + 6/12, "feet"),
  36385. default: true
  36386. },
  36387. ]
  36388. ))
  36389. characterMakers.push(() => makeCharacter(
  36390. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36391. {
  36392. front: {
  36393. height: math.unit(6 + 2/12, "feet"),
  36394. name: "Front",
  36395. image: {
  36396. source: "./media/characters/taylor/front.svg",
  36397. extra: 639/495,
  36398. bottom: 12/651
  36399. }
  36400. },
  36401. },
  36402. [
  36403. {
  36404. name: "Normal",
  36405. height: math.unit(6 + 2/12, "feet"),
  36406. default: true
  36407. },
  36408. {
  36409. name: "Big",
  36410. height: math.unit(15, "feet")
  36411. },
  36412. {
  36413. name: "Lorg",
  36414. height: math.unit(80, "feet")
  36415. },
  36416. {
  36417. name: "Too Lorg",
  36418. height: math.unit(120, "feet")
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36424. {
  36425. front: {
  36426. height: math.unit(15, "feet"),
  36427. name: "Front",
  36428. image: {
  36429. source: "./media/characters/kaizer/front.svg",
  36430. extra: 1612/1436,
  36431. bottom: 43/1655
  36432. }
  36433. },
  36434. },
  36435. [
  36436. {
  36437. name: "Normal",
  36438. height: math.unit(15, "feet"),
  36439. default: true
  36440. },
  36441. ]
  36442. ))
  36443. characterMakers.push(() => makeCharacter(
  36444. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36445. {
  36446. front: {
  36447. height: math.unit(2, "feet"),
  36448. weight: math.unit(30, "lb"),
  36449. name: "Front",
  36450. image: {
  36451. source: "./media/characters/sandy/front.svg",
  36452. extra: 1439/1307,
  36453. bottom: 194/1633
  36454. }
  36455. },
  36456. },
  36457. [
  36458. {
  36459. name: "Normal",
  36460. height: math.unit(2, "feet"),
  36461. default: true
  36462. },
  36463. ]
  36464. ))
  36465. characterMakers.push(() => makeCharacter(
  36466. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36467. {
  36468. front: {
  36469. height: math.unit(3, "feet"),
  36470. name: "Front",
  36471. image: {
  36472. source: "./media/characters/mellvi/front.svg",
  36473. extra: 1831/1630,
  36474. bottom: 58/1889
  36475. }
  36476. },
  36477. },
  36478. [
  36479. {
  36480. name: "Normal",
  36481. height: math.unit(3, "feet"),
  36482. default: true
  36483. },
  36484. ]
  36485. ))
  36486. characterMakers.push(() => makeCharacter(
  36487. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36488. {
  36489. front: {
  36490. height: math.unit(5 + 11/12, "feet"),
  36491. weight: math.unit(200, "lb"),
  36492. name: "Front",
  36493. image: {
  36494. source: "./media/characters/shirou/front.svg",
  36495. extra: 2491/2383,
  36496. bottom: 189/2680
  36497. }
  36498. },
  36499. back: {
  36500. height: math.unit(5 + 11/12, "feet"),
  36501. weight: math.unit(200, "lb"),
  36502. name: "Back",
  36503. image: {
  36504. source: "./media/characters/shirou/back.svg",
  36505. extra: 2554/2450,
  36506. bottom: 76/2630
  36507. }
  36508. },
  36509. },
  36510. [
  36511. {
  36512. name: "Normal",
  36513. height: math.unit(5 + 11/12, "feet"),
  36514. default: true
  36515. },
  36516. ]
  36517. ))
  36518. characterMakers.push(() => makeCharacter(
  36519. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36520. {
  36521. front: {
  36522. height: math.unit(6 + 3/12, "feet"),
  36523. weight: math.unit(177, "lb"),
  36524. name: "Front",
  36525. image: {
  36526. source: "./media/characters/noryu/front.svg",
  36527. extra: 973/885,
  36528. bottom: 10/983
  36529. }
  36530. },
  36531. },
  36532. [
  36533. {
  36534. name: "Normal",
  36535. height: math.unit(6 + 3/12, "feet"),
  36536. default: true
  36537. },
  36538. ]
  36539. ))
  36540. characterMakers.push(() => makeCharacter(
  36541. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36542. {
  36543. front: {
  36544. height: math.unit(5 + 6/12, "feet"),
  36545. weight: math.unit(170, "lb"),
  36546. name: "Front",
  36547. image: {
  36548. source: "./media/characters/mevolas-rubenido/front.svg",
  36549. extra: 2109/1901,
  36550. bottom: 96/2205
  36551. }
  36552. },
  36553. },
  36554. [
  36555. {
  36556. name: "Normal",
  36557. height: math.unit(5 + 6/12, "feet"),
  36558. default: true
  36559. },
  36560. ]
  36561. ))
  36562. characterMakers.push(() => makeCharacter(
  36563. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36564. {
  36565. front: {
  36566. height: math.unit(100, "feet"),
  36567. name: "Front",
  36568. image: {
  36569. source: "./media/characters/dee/front.svg",
  36570. extra: 2153/2036,
  36571. bottom: 59/2212
  36572. }
  36573. },
  36574. back: {
  36575. height: math.unit(100, "feet"),
  36576. name: "Back",
  36577. image: {
  36578. source: "./media/characters/dee/back.svg",
  36579. extra: 2183/2058,
  36580. bottom: 75/2258
  36581. }
  36582. },
  36583. foot: {
  36584. height: math.unit(19.43, "feet"),
  36585. name: "Foot",
  36586. image: {
  36587. source: "./media/characters/dee/foot.svg"
  36588. }
  36589. },
  36590. hoof: {
  36591. height: math.unit(20.6, "feet"),
  36592. name: "Hoof",
  36593. image: {
  36594. source: "./media/characters/dee/hoof.svg"
  36595. }
  36596. },
  36597. },
  36598. [
  36599. {
  36600. name: "Macro",
  36601. height: math.unit(100, "feet"),
  36602. default: true
  36603. },
  36604. ]
  36605. ))
  36606. characterMakers.push(() => makeCharacter(
  36607. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36608. {
  36609. front: {
  36610. height: math.unit(5 + 6/12, "feet"),
  36611. name: "Front",
  36612. image: {
  36613. source: "./media/characters/teh/front.svg",
  36614. extra: 1002/847,
  36615. bottom: 62/1064
  36616. }
  36617. },
  36618. },
  36619. [
  36620. {
  36621. name: "Normal",
  36622. height: math.unit(5 + 6/12, "feet"),
  36623. default: true
  36624. },
  36625. ]
  36626. ))
  36627. characterMakers.push(() => makeCharacter(
  36628. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36629. {
  36630. side: {
  36631. height: math.unit(6 + 1/12, "feet"),
  36632. weight: math.unit(204, "lb"),
  36633. name: "Side",
  36634. image: {
  36635. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36636. extra: 974/775,
  36637. bottom: 169/1143
  36638. }
  36639. },
  36640. sitting: {
  36641. height: math.unit(6 + 2/12, "feet"),
  36642. weight: math.unit(204, "lb"),
  36643. name: "Sitting",
  36644. image: {
  36645. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36646. extra: 1175/964,
  36647. bottom: 378/1553
  36648. }
  36649. },
  36650. },
  36651. [
  36652. {
  36653. name: "Normal",
  36654. height: math.unit(6 + 1/12, "feet"),
  36655. default: true
  36656. },
  36657. ]
  36658. ))
  36659. characterMakers.push(() => makeCharacter(
  36660. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36661. {
  36662. front: {
  36663. height: math.unit(6, "inches"),
  36664. name: "Front",
  36665. image: {
  36666. source: "./media/characters/tululi/front.svg",
  36667. extra: 1997/1876,
  36668. bottom: 20/2017
  36669. }
  36670. },
  36671. },
  36672. [
  36673. {
  36674. name: "Normal",
  36675. height: math.unit(6, "inches"),
  36676. default: true
  36677. },
  36678. ]
  36679. ))
  36680. characterMakers.push(() => makeCharacter(
  36681. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36682. {
  36683. front: {
  36684. height: math.unit(4 + 1/12, "feet"),
  36685. name: "Front",
  36686. image: {
  36687. source: "./media/characters/star/front.svg",
  36688. extra: 1493/1189,
  36689. bottom: 48/1541
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "Normal",
  36696. height: math.unit(4 + 1/12, "feet"),
  36697. default: true
  36698. },
  36699. ]
  36700. ))
  36701. characterMakers.push(() => makeCharacter(
  36702. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36703. {
  36704. front: {
  36705. height: math.unit(6 + 3/12, "feet"),
  36706. name: "Front",
  36707. image: {
  36708. source: "./media/characters/comet/front.svg",
  36709. extra: 1681/1462,
  36710. bottom: 26/1707
  36711. }
  36712. },
  36713. },
  36714. [
  36715. {
  36716. name: "Normal",
  36717. height: math.unit(6 + 3/12, "feet"),
  36718. default: true
  36719. },
  36720. ]
  36721. ))
  36722. characterMakers.push(() => makeCharacter(
  36723. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36724. {
  36725. front: {
  36726. height: math.unit(950, "feet"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/vortex/front.svg",
  36730. extra: 1497/1434,
  36731. bottom: 56/1553
  36732. }
  36733. },
  36734. maw: {
  36735. height: math.unit(285, "feet"),
  36736. name: "Maw",
  36737. image: {
  36738. source: "./media/characters/vortex/maw.svg"
  36739. }
  36740. },
  36741. },
  36742. [
  36743. {
  36744. name: "Macro",
  36745. height: math.unit(950, "feet"),
  36746. default: true
  36747. },
  36748. ]
  36749. ))
  36750. characterMakers.push(() => makeCharacter(
  36751. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36752. {
  36753. front: {
  36754. height: math.unit(600, "feet"),
  36755. weight: math.unit(0.02, "grams"),
  36756. name: "Front",
  36757. image: {
  36758. source: "./media/characters/doodle/front.svg",
  36759. extra: 1578/1413,
  36760. bottom: 37/1615
  36761. }
  36762. },
  36763. },
  36764. [
  36765. {
  36766. name: "Macro",
  36767. height: math.unit(600, "feet"),
  36768. default: true
  36769. },
  36770. ]
  36771. ))
  36772. characterMakers.push(() => makeCharacter(
  36773. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36774. {
  36775. front: {
  36776. height: math.unit(6 + 6/12, "feet"),
  36777. name: "Front",
  36778. image: {
  36779. source: "./media/characters/jai/front.svg",
  36780. extra: 1645/1534,
  36781. bottom: 115/1760
  36782. }
  36783. },
  36784. },
  36785. [
  36786. {
  36787. name: "Normal",
  36788. height: math.unit(6 + 6/12, "feet"),
  36789. default: true
  36790. },
  36791. ]
  36792. ))
  36793. characterMakers.push(() => makeCharacter(
  36794. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36795. {
  36796. front: {
  36797. height: math.unit(6 + 8/12, "feet"),
  36798. name: "Front",
  36799. image: {
  36800. source: "./media/characters/pixel/front.svg",
  36801. extra: 1900/1735,
  36802. bottom: 63/1963
  36803. }
  36804. },
  36805. },
  36806. [
  36807. {
  36808. name: "Normal",
  36809. height: math.unit(6 + 8/12, "feet"),
  36810. default: true
  36811. },
  36812. ]
  36813. ))
  36814. characterMakers.push(() => makeCharacter(
  36815. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36816. {
  36817. back: {
  36818. height: math.unit(4 + 1/12, "feet"),
  36819. weight: math.unit(75, "lb"),
  36820. name: "Back",
  36821. image: {
  36822. source: "./media/characters/rhett/back.svg",
  36823. extra: 930/878,
  36824. bottom: 25/955
  36825. }
  36826. },
  36827. front: {
  36828. height: math.unit(4 + 1/12, "feet"),
  36829. weight: math.unit(75, "lb"),
  36830. name: "Front",
  36831. image: {
  36832. source: "./media/characters/rhett/front.svg",
  36833. extra: 1682/1586,
  36834. bottom: 92/1774
  36835. }
  36836. },
  36837. },
  36838. [
  36839. {
  36840. name: "Micro",
  36841. height: math.unit(8, "inches")
  36842. },
  36843. {
  36844. name: "Tiny",
  36845. height: math.unit(2, "feet")
  36846. },
  36847. {
  36848. name: "Normal",
  36849. height: math.unit(4 + 1/12, "feet"),
  36850. default: true
  36851. },
  36852. ]
  36853. ))
  36854. characterMakers.push(() => makeCharacter(
  36855. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36856. {
  36857. front: {
  36858. height: math.unit(3 + 3/12, "feet"),
  36859. name: "Front",
  36860. image: {
  36861. source: "./media/characters/penny/front.svg",
  36862. extra: 1406/1311,
  36863. bottom: 26/1432
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Normal",
  36870. height: math.unit(3 + 3/12, "feet"),
  36871. default: true
  36872. },
  36873. ]
  36874. ))
  36875. characterMakers.push(() => makeCharacter(
  36876. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36877. {
  36878. front: {
  36879. height: math.unit(4 + 11/12, "feet"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/monty/front.svg",
  36883. extra: 1479/1209,
  36884. bottom: 0/1479
  36885. }
  36886. },
  36887. },
  36888. [
  36889. {
  36890. name: "Normal",
  36891. height: math.unit(4 + 11/12, "feet"),
  36892. default: true
  36893. },
  36894. ]
  36895. ))
  36896. characterMakers.push(() => makeCharacter(
  36897. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36898. {
  36899. front: {
  36900. height: math.unit(8 + 4/12, "feet"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/sterling/front.svg",
  36904. extra: 1420/1236,
  36905. bottom: 27/1447
  36906. }
  36907. },
  36908. },
  36909. [
  36910. {
  36911. name: "Normal",
  36912. height: math.unit(8 + 4/12, "feet"),
  36913. default: true
  36914. },
  36915. ]
  36916. ))
  36917. characterMakers.push(() => makeCharacter(
  36918. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36919. {
  36920. front: {
  36921. height: math.unit(15, "feet"),
  36922. name: "Front",
  36923. image: {
  36924. source: "./media/characters/marble/front.svg",
  36925. extra: 973/937,
  36926. bottom: 32/1005
  36927. }
  36928. },
  36929. },
  36930. [
  36931. {
  36932. name: "Normal",
  36933. height: math.unit(15, "feet"),
  36934. default: true
  36935. },
  36936. ]
  36937. ))
  36938. characterMakers.push(() => makeCharacter(
  36939. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36940. {
  36941. front: {
  36942. height: math.unit(3, "inches"),
  36943. name: "Front",
  36944. image: {
  36945. source: "./media/characters/powder/front.svg",
  36946. extra: 1504/1334,
  36947. bottom: 518/2022
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Normal",
  36954. height: math.unit(3, "inches"),
  36955. default: true
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36961. {
  36962. front: {
  36963. height: math.unit(4 + 5/12, "feet"),
  36964. name: "Front",
  36965. image: {
  36966. source: "./media/characters/joey-raccoon/front.svg",
  36967. extra: 1273/1197,
  36968. bottom: 0/1273
  36969. }
  36970. },
  36971. },
  36972. [
  36973. {
  36974. name: "Normal",
  36975. height: math.unit(4 + 5/12, "feet"),
  36976. default: true
  36977. },
  36978. ]
  36979. ))
  36980. characterMakers.push(() => makeCharacter(
  36981. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36982. {
  36983. front: {
  36984. height: math.unit(8 + 4/12, "feet"),
  36985. name: "Front",
  36986. image: {
  36987. source: "./media/characters/vick/front.svg",
  36988. extra: 2187/2118,
  36989. bottom: 47/2234
  36990. }
  36991. },
  36992. },
  36993. [
  36994. {
  36995. name: "Normal",
  36996. height: math.unit(8 + 4/12, "feet"),
  36997. default: true
  36998. },
  36999. ]
  37000. ))
  37001. characterMakers.push(() => makeCharacter(
  37002. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37003. {
  37004. front: {
  37005. height: math.unit(5 + 5/12, "feet"),
  37006. name: "Front",
  37007. image: {
  37008. source: "./media/characters/mitsy/front.svg",
  37009. extra: 1842/1695,
  37010. bottom: 0/1842
  37011. }
  37012. },
  37013. },
  37014. [
  37015. {
  37016. name: "Normal",
  37017. height: math.unit(5 + 5/12, "feet"),
  37018. default: true
  37019. },
  37020. ]
  37021. ))
  37022. characterMakers.push(() => makeCharacter(
  37023. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37024. {
  37025. front: {
  37026. height: math.unit(6 + 3/12, "feet"),
  37027. name: "Front",
  37028. image: {
  37029. source: "./media/characters/silvy/front.svg",
  37030. extra: 1995/1836,
  37031. bottom: 225/2220
  37032. }
  37033. },
  37034. },
  37035. [
  37036. {
  37037. name: "Normal",
  37038. height: math.unit(6 + 3/12, "feet"),
  37039. default: true
  37040. },
  37041. ]
  37042. ))
  37043. characterMakers.push(() => makeCharacter(
  37044. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37045. {
  37046. front: {
  37047. height: math.unit(3 + 8/12, "feet"),
  37048. name: "Front",
  37049. image: {
  37050. source: "./media/characters/rodney/front.svg",
  37051. extra: 1956/1747,
  37052. bottom: 31/1987
  37053. }
  37054. },
  37055. frontDressed: {
  37056. height: math.unit(2.9, "feet"),
  37057. name: "Front (Dressed)",
  37058. image: {
  37059. source: "./media/characters/rodney/front-dressed.svg",
  37060. extra: 1382/1241,
  37061. bottom: 385/1767
  37062. }
  37063. },
  37064. },
  37065. [
  37066. {
  37067. name: "Normal",
  37068. height: math.unit(3 + 8/12, "feet"),
  37069. default: true
  37070. },
  37071. ]
  37072. ))
  37073. characterMakers.push(() => makeCharacter(
  37074. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37075. {
  37076. front: {
  37077. height: math.unit(5 + 9/12, "feet"),
  37078. weight: math.unit(194, "lbs"),
  37079. name: "Front",
  37080. image: {
  37081. source: "./media/characters/zakail-sudekai/front.svg",
  37082. extra: 2696/2533,
  37083. bottom: 248/2944
  37084. }
  37085. },
  37086. maw: {
  37087. height: math.unit(1.35, "feet"),
  37088. name: "Maw",
  37089. image: {
  37090. source: "./media/characters/zakail-sudekai/maw.svg"
  37091. }
  37092. },
  37093. },
  37094. [
  37095. {
  37096. name: "Normal",
  37097. height: math.unit(5 + 9/12, "feet"),
  37098. default: true
  37099. },
  37100. ]
  37101. ))
  37102. characterMakers.push(() => makeCharacter(
  37103. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37104. {
  37105. front: {
  37106. height: math.unit(8 + 4/12, "feet"),
  37107. weight: math.unit(1200, "lb"),
  37108. name: "Front",
  37109. image: {
  37110. source: "./media/characters/eleanor/front.svg",
  37111. extra: 1226/1192,
  37112. bottom: 52/1278
  37113. }
  37114. },
  37115. back: {
  37116. height: math.unit(8 + 4/12, "feet"),
  37117. weight: math.unit(1200, "lb"),
  37118. name: "Back",
  37119. image: {
  37120. source: "./media/characters/eleanor/back.svg",
  37121. extra: 1242/1184,
  37122. bottom: 60/1302
  37123. }
  37124. },
  37125. head: {
  37126. height: math.unit(2.62, "feet"),
  37127. name: "Head",
  37128. image: {
  37129. source: "./media/characters/eleanor/head.svg"
  37130. }
  37131. },
  37132. },
  37133. [
  37134. {
  37135. name: "Normal",
  37136. height: math.unit(8 + 4/12, "feet"),
  37137. default: true
  37138. },
  37139. ]
  37140. ))
  37141. characterMakers.push(() => makeCharacter(
  37142. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37143. {
  37144. front: {
  37145. height: math.unit(8 + 4/12, "feet"),
  37146. weight: math.unit(750, "lb"),
  37147. name: "Front",
  37148. image: {
  37149. source: "./media/characters/tanya/front.svg",
  37150. extra: 1749/1615,
  37151. bottom: 33/1782
  37152. }
  37153. },
  37154. },
  37155. [
  37156. {
  37157. name: "Normal",
  37158. height: math.unit(8 + 4/12, "feet"),
  37159. default: true
  37160. },
  37161. ]
  37162. ))
  37163. characterMakers.push(() => makeCharacter(
  37164. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37165. {
  37166. front: {
  37167. height: math.unit(5, "feet"),
  37168. weight: math.unit(225, "lb"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/cindy/front.svg",
  37172. extra: 1320/1250,
  37173. bottom: 42/1362
  37174. }
  37175. },
  37176. frontDressed: {
  37177. height: math.unit(5, "feet"),
  37178. weight: math.unit(225, "lb"),
  37179. name: "Front (Dressed)",
  37180. image: {
  37181. source: "./media/characters/cindy/front-dressed.svg",
  37182. extra: 1320/1250,
  37183. bottom: 42/1362
  37184. }
  37185. },
  37186. back: {
  37187. height: math.unit(5, "feet"),
  37188. weight: math.unit(225, "lb"),
  37189. name: "Back",
  37190. image: {
  37191. source: "./media/characters/cindy/back.svg",
  37192. extra: 1384/1346,
  37193. bottom: 14/1398
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(5, "feet"),
  37201. default: true
  37202. },
  37203. ]
  37204. ))
  37205. characterMakers.push(() => makeCharacter(
  37206. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37207. {
  37208. front: {
  37209. height: math.unit(6 + 9/12, "feet"),
  37210. weight: math.unit(440, "lb"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/wilbur-owen/front.svg",
  37214. extra: 1575/1448,
  37215. bottom: 72/1647
  37216. }
  37217. },
  37218. back: {
  37219. height: math.unit(6 + 9/12, "feet"),
  37220. weight: math.unit(440, "lb"),
  37221. name: "Back",
  37222. image: {
  37223. source: "./media/characters/wilbur-owen/back.svg",
  37224. extra: 1578/1445,
  37225. bottom: 36/1614
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Normal",
  37232. height: math.unit(6 + 9/12, "feet"),
  37233. default: true
  37234. },
  37235. ]
  37236. ))
  37237. characterMakers.push(() => makeCharacter(
  37238. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37239. {
  37240. front: {
  37241. height: math.unit(6 + 5/12, "feet"),
  37242. weight: math.unit(650, "lb"),
  37243. name: "Front",
  37244. image: {
  37245. source: "./media/characters/keegan/front.svg",
  37246. extra: 2387/2198,
  37247. bottom: 33/2420
  37248. }
  37249. },
  37250. side: {
  37251. height: math.unit(6 + 5/12, "feet"),
  37252. weight: math.unit(650, "lb"),
  37253. name: "Side",
  37254. image: {
  37255. source: "./media/characters/keegan/side.svg",
  37256. extra: 2390/2202,
  37257. bottom: 47/2437
  37258. }
  37259. },
  37260. back: {
  37261. height: math.unit(6 + 5/12, "feet"),
  37262. weight: math.unit(650, "lb"),
  37263. name: "Back",
  37264. image: {
  37265. source: "./media/characters/keegan/back.svg",
  37266. extra: 2418/2268,
  37267. bottom: 15/2433
  37268. }
  37269. },
  37270. frontSfw: {
  37271. height: math.unit(6 + 5/12, "feet"),
  37272. weight: math.unit(650, "lb"),
  37273. name: "Front (SFW)",
  37274. image: {
  37275. source: "./media/characters/keegan/front-sfw.svg",
  37276. extra: 2387/2198,
  37277. bottom: 33/2420
  37278. }
  37279. },
  37280. beans: {
  37281. height: math.unit(1.85, "feet"),
  37282. name: "Beans",
  37283. image: {
  37284. source: "./media/characters/keegan/beans.svg"
  37285. }
  37286. },
  37287. },
  37288. [
  37289. {
  37290. name: "Normal",
  37291. height: math.unit(6 + 5/12, "feet"),
  37292. default: true
  37293. },
  37294. ]
  37295. ))
  37296. characterMakers.push(() => makeCharacter(
  37297. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37298. {
  37299. front: {
  37300. height: math.unit(9, "feet"),
  37301. name: "Front",
  37302. image: {
  37303. source: "./media/characters/colton/front.svg",
  37304. extra: 1589/1326,
  37305. bottom: 139/1728
  37306. }
  37307. },
  37308. },
  37309. [
  37310. {
  37311. name: "Normal",
  37312. height: math.unit(9, "feet"),
  37313. default: true
  37314. },
  37315. ]
  37316. ))
  37317. characterMakers.push(() => makeCharacter(
  37318. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37319. {
  37320. front: {
  37321. height: math.unit(2 + 9/12, "feet"),
  37322. name: "Front",
  37323. image: {
  37324. source: "./media/characters/bora/front.svg",
  37325. extra: 1265/1250,
  37326. bottom: 24/1289
  37327. }
  37328. },
  37329. },
  37330. [
  37331. {
  37332. name: "Normal",
  37333. height: math.unit(2 + 9/12, "feet"),
  37334. default: true
  37335. },
  37336. ]
  37337. ))
  37338. characterMakers.push(() => makeCharacter(
  37339. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37340. {
  37341. front: {
  37342. height: math.unit(8, "feet"),
  37343. name: "Front",
  37344. image: {
  37345. source: "./media/characters/myu-myu/front.svg",
  37346. extra: 1949/1857,
  37347. bottom: 90/2039
  37348. }
  37349. },
  37350. },
  37351. [
  37352. {
  37353. name: "Normal",
  37354. height: math.unit(8, "feet"),
  37355. default: true
  37356. },
  37357. {
  37358. name: "Big",
  37359. height: math.unit(15, "feet")
  37360. },
  37361. {
  37362. name: "BIG",
  37363. height: math.unit(25, "feet")
  37364. },
  37365. ]
  37366. ))
  37367. characterMakers.push(() => makeCharacter(
  37368. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37369. {
  37370. side: {
  37371. height: math.unit(7 + 5/12, "feet"),
  37372. weight: math.unit(2800, "lb"),
  37373. name: "Side",
  37374. image: {
  37375. source: "./media/characters/haloren/side.svg",
  37376. extra: 1793/409,
  37377. bottom: 59/1852
  37378. }
  37379. },
  37380. frontPaw: {
  37381. height: math.unit(2.36, "feet"),
  37382. name: "Front paw",
  37383. image: {
  37384. source: "./media/characters/haloren/front-paw.svg"
  37385. }
  37386. },
  37387. hindPaw: {
  37388. height: math.unit(3.18, "feet"),
  37389. name: "Hind paw",
  37390. image: {
  37391. source: "./media/characters/haloren/hind-paw.svg"
  37392. }
  37393. },
  37394. maw: {
  37395. height: math.unit(5.05, "feet"),
  37396. name: "Maw",
  37397. image: {
  37398. source: "./media/characters/haloren/maw.svg"
  37399. }
  37400. },
  37401. dick: {
  37402. height: math.unit(2.90, "feet"),
  37403. name: "Dick",
  37404. image: {
  37405. source: "./media/characters/haloren/dick.svg"
  37406. }
  37407. },
  37408. },
  37409. [
  37410. {
  37411. name: "Normal",
  37412. height: math.unit(7 + 5/12, "feet"),
  37413. default: true
  37414. },
  37415. {
  37416. name: "Enhanced",
  37417. height: math.unit(14 + 3/12, "feet")
  37418. },
  37419. ]
  37420. ))
  37421. characterMakers.push(() => makeCharacter(
  37422. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37423. {
  37424. front: {
  37425. height: math.unit(171, "cm"),
  37426. name: "Front",
  37427. image: {
  37428. source: "./media/characters/kimmy/front.svg",
  37429. extra: 1491/1435,
  37430. bottom: 53/1544
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Small",
  37437. height: math.unit(9, "cm")
  37438. },
  37439. {
  37440. name: "Normal",
  37441. height: math.unit(171, "cm"),
  37442. default: true
  37443. },
  37444. ]
  37445. ))
  37446. characterMakers.push(() => makeCharacter(
  37447. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37448. {
  37449. front: {
  37450. height: math.unit(8, "feet"),
  37451. weight: math.unit(300, "lb"),
  37452. name: "Front",
  37453. image: {
  37454. source: "./media/characters/galeboomer/front.svg",
  37455. extra: 4651/4415,
  37456. bottom: 162/4813
  37457. }
  37458. },
  37459. back: {
  37460. height: math.unit(8, "feet"),
  37461. weight: math.unit(300, "lb"),
  37462. name: "Back",
  37463. image: {
  37464. source: "./media/characters/galeboomer/back.svg",
  37465. extra: 4544/4314,
  37466. bottom: 16/4560
  37467. }
  37468. },
  37469. frontAlt: {
  37470. height: math.unit(8, "feet"),
  37471. weight: math.unit(300, "lb"),
  37472. name: "Front (Alt)",
  37473. image: {
  37474. source: "./media/characters/galeboomer/front-alt.svg",
  37475. extra: 4458/4228,
  37476. bottom: 68/4526
  37477. }
  37478. },
  37479. maw: {
  37480. height: math.unit(1.2, "feet"),
  37481. name: "Maw",
  37482. image: {
  37483. source: "./media/characters/galeboomer/maw.svg"
  37484. }
  37485. },
  37486. },
  37487. [
  37488. {
  37489. name: "Normal",
  37490. height: math.unit(8, "feet"),
  37491. default: true
  37492. },
  37493. ]
  37494. ))
  37495. characterMakers.push(() => makeCharacter(
  37496. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37497. {
  37498. front: {
  37499. height: math.unit(5 + 9/12, "feet"),
  37500. weight: math.unit(120, "lb"),
  37501. name: "Front",
  37502. image: {
  37503. source: "./media/characters/chyr/front.svg",
  37504. extra: 1323/1254,
  37505. bottom: 63/1386
  37506. }
  37507. },
  37508. back: {
  37509. height: math.unit(5 + 9/12, "feet"),
  37510. weight: math.unit(120, "lb"),
  37511. name: "Back",
  37512. image: {
  37513. source: "./media/characters/chyr/back.svg",
  37514. extra: 1323/1252,
  37515. bottom: 48/1371
  37516. }
  37517. },
  37518. },
  37519. [
  37520. {
  37521. name: "Normal",
  37522. height: math.unit(5 + 9/12, "feet"),
  37523. default: true
  37524. },
  37525. ]
  37526. ))
  37527. characterMakers.push(() => makeCharacter(
  37528. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37529. {
  37530. front: {
  37531. height: math.unit(7, "feet"),
  37532. weight: math.unit(310, "lb"),
  37533. name: "Front",
  37534. image: {
  37535. source: "./media/characters/solarus/front.svg",
  37536. extra: 2415/2021,
  37537. bottom: 103/2518
  37538. }
  37539. },
  37540. back: {
  37541. height: math.unit(7, "feet"),
  37542. weight: math.unit(310, "lb"),
  37543. name: "Back",
  37544. image: {
  37545. source: "./media/characters/solarus/back.svg",
  37546. extra: 2463/2089,
  37547. bottom: 79/2542
  37548. }
  37549. },
  37550. },
  37551. [
  37552. {
  37553. name: "Normal",
  37554. height: math.unit(7, "feet"),
  37555. default: true
  37556. },
  37557. ]
  37558. ))
  37559. characterMakers.push(() => makeCharacter(
  37560. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37561. {
  37562. front: {
  37563. height: math.unit(16, "feet"),
  37564. name: "Front",
  37565. image: {
  37566. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37567. extra: 1844/1780,
  37568. bottom: 58/1902
  37569. }
  37570. },
  37571. winterCoat: {
  37572. height: math.unit(16, "feet"),
  37573. name: "Winter Coat",
  37574. image: {
  37575. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37576. extra: 1807/1775,
  37577. bottom: 69/1876
  37578. }
  37579. },
  37580. },
  37581. [
  37582. {
  37583. name: "Normal",
  37584. height: math.unit(16, "feet"),
  37585. default: true
  37586. },
  37587. {
  37588. name: "Chicago Size",
  37589. height: math.unit(560, "feet")
  37590. },
  37591. ]
  37592. ))
  37593. characterMakers.push(() => makeCharacter(
  37594. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37595. {
  37596. front: {
  37597. height: math.unit(11 + 6/12, "feet"),
  37598. weight: math.unit(1366, "lb"),
  37599. name: "Front",
  37600. image: {
  37601. source: "./media/characters/lexor/front.svg",
  37602. extra: 1560/1481,
  37603. bottom: 211/1771
  37604. }
  37605. },
  37606. back: {
  37607. height: math.unit(11 + 6/12, "feet"),
  37608. weight: math.unit(1366, "lb"),
  37609. name: "Back",
  37610. image: {
  37611. source: "./media/characters/lexor/back.svg",
  37612. extra: 1614/1533,
  37613. bottom: 76/1690
  37614. }
  37615. },
  37616. maw: {
  37617. height: math.unit(3, "feet"),
  37618. name: "Maw",
  37619. image: {
  37620. source: "./media/characters/lexor/maw.svg"
  37621. }
  37622. },
  37623. dick: {
  37624. height: math.unit(2.59, "feet"),
  37625. name: "Dick",
  37626. image: {
  37627. source: "./media/characters/lexor/dick.svg"
  37628. }
  37629. },
  37630. },
  37631. [
  37632. {
  37633. name: "Normal",
  37634. height: math.unit(11 + 6/12, "feet"),
  37635. default: true
  37636. },
  37637. ]
  37638. ))
  37639. characterMakers.push(() => makeCharacter(
  37640. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37641. {
  37642. front: {
  37643. height: math.unit(5 + 8/12, "feet"),
  37644. name: "Front",
  37645. image: {
  37646. source: "./media/characters/magnum/front.svg",
  37647. extra: 942/855,
  37648. bottom: 26/968
  37649. }
  37650. },
  37651. },
  37652. [
  37653. {
  37654. name: "Normal",
  37655. height: math.unit(5 + 8/12, "feet"),
  37656. default: true
  37657. },
  37658. ]
  37659. ))
  37660. characterMakers.push(() => makeCharacter(
  37661. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37662. {
  37663. front: {
  37664. height: math.unit(18 + 4/12, "feet"),
  37665. weight: math.unit(1500, "kg"),
  37666. name: "Front",
  37667. image: {
  37668. source: "./media/characters/solas-sharpsman/front.svg",
  37669. extra: 1698/1589,
  37670. bottom: 0/1698
  37671. }
  37672. },
  37673. },
  37674. [
  37675. {
  37676. name: "Normal",
  37677. height: math.unit(18 + 4/12, "feet"),
  37678. default: true
  37679. },
  37680. ]
  37681. ))
  37682. characterMakers.push(() => makeCharacter(
  37683. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37684. {
  37685. front: {
  37686. height: math.unit(5 + 5/12, "feet"),
  37687. weight: math.unit(180, "lb"),
  37688. name: "Front",
  37689. image: {
  37690. source: "./media/characters/october/front.svg",
  37691. extra: 1800/1650,
  37692. bottom: 0/1800
  37693. }
  37694. },
  37695. frontNsfw: {
  37696. height: math.unit(5 + 5/12, "feet"),
  37697. weight: math.unit(180, "lb"),
  37698. name: "Front (NSFW)",
  37699. image: {
  37700. source: "./media/characters/october/front-nsfw.svg",
  37701. extra: 1392/1307,
  37702. bottom: 42/1434
  37703. }
  37704. },
  37705. },
  37706. [
  37707. {
  37708. name: "Normal",
  37709. height: math.unit(5 + 5/12, "feet"),
  37710. default: true
  37711. },
  37712. ]
  37713. ))
  37714. characterMakers.push(() => makeCharacter(
  37715. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37716. {
  37717. front: {
  37718. height: math.unit(8 + 6/12, "feet"),
  37719. name: "Front",
  37720. image: {
  37721. source: "./media/characters/essynkardi/front.svg",
  37722. extra: 1914/1846,
  37723. bottom: 22/1936
  37724. }
  37725. },
  37726. },
  37727. [
  37728. {
  37729. name: "Normal",
  37730. height: math.unit(8 + 6/12, "feet"),
  37731. default: true
  37732. },
  37733. ]
  37734. ))
  37735. characterMakers.push(() => makeCharacter(
  37736. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37737. {
  37738. front: {
  37739. height: math.unit(6 + 6/12, "feet"),
  37740. weight: math.unit(7, "lb"),
  37741. name: "Front",
  37742. image: {
  37743. source: "./media/characters/icky/front.svg",
  37744. extra: 813/782,
  37745. bottom: 66/879
  37746. }
  37747. },
  37748. back: {
  37749. height: math.unit(6 + 6/12, "feet"),
  37750. weight: math.unit(7, "lb"),
  37751. name: "Back",
  37752. image: {
  37753. source: "./media/characters/icky/back.svg",
  37754. extra: 754/735,
  37755. bottom: 56/810
  37756. }
  37757. },
  37758. },
  37759. [
  37760. {
  37761. name: "Normal",
  37762. height: math.unit(6 + 6/12, "feet"),
  37763. default: true
  37764. },
  37765. ]
  37766. ))
  37767. characterMakers.push(() => makeCharacter(
  37768. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37769. {
  37770. front: {
  37771. height: math.unit(15, "feet"),
  37772. name: "Front",
  37773. image: {
  37774. source: "./media/characters/rojas/front.svg",
  37775. extra: 1462/1408,
  37776. bottom: 95/1557
  37777. }
  37778. },
  37779. back: {
  37780. height: math.unit(15, "feet"),
  37781. name: "Back",
  37782. image: {
  37783. source: "./media/characters/rojas/back.svg",
  37784. extra: 1023/954,
  37785. bottom: 28/1051
  37786. }
  37787. },
  37788. },
  37789. [
  37790. {
  37791. name: "Normal",
  37792. height: math.unit(15, "feet"),
  37793. default: true
  37794. },
  37795. ]
  37796. ))
  37797. characterMakers.push(() => makeCharacter(
  37798. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37799. {
  37800. frontHuman: {
  37801. height: math.unit(5 + 7/12, "feet"),
  37802. name: "Front (Human)",
  37803. image: {
  37804. source: "./media/characters/alek-dryagan/front-human.svg",
  37805. extra: 1687/1667,
  37806. bottom: 69/1756
  37807. }
  37808. },
  37809. backHuman: {
  37810. height: math.unit(5 + 7/12, "feet"),
  37811. name: "Back (Human)",
  37812. image: {
  37813. source: "./media/characters/alek-dryagan/back-human.svg",
  37814. extra: 1670/1649,
  37815. bottom: 65/1735
  37816. }
  37817. },
  37818. frontDemi: {
  37819. height: math.unit(65, "feet"),
  37820. name: "Front (Demi)",
  37821. image: {
  37822. source: "./media/characters/alek-dryagan/front-demi.svg",
  37823. extra: 1669/1642,
  37824. bottom: 49/1718
  37825. }
  37826. },
  37827. backDemi: {
  37828. height: math.unit(65, "feet"),
  37829. name: "Back (Demi)",
  37830. image: {
  37831. source: "./media/characters/alek-dryagan/back-demi.svg",
  37832. extra: 1658/1637,
  37833. bottom: 40/1698
  37834. }
  37835. },
  37836. mawHuman: {
  37837. height: math.unit(0.3, "feet"),
  37838. name: "Maw (Human)",
  37839. image: {
  37840. source: "./media/characters/alek-dryagan/maw-human.svg"
  37841. }
  37842. },
  37843. mawDemi: {
  37844. height: math.unit(3.8, "feet"),
  37845. name: "Maw (Demi)",
  37846. image: {
  37847. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37848. }
  37849. },
  37850. },
  37851. [
  37852. {
  37853. name: "Normal",
  37854. height: math.unit(5 + 7/12, "feet"),
  37855. default: true
  37856. },
  37857. ]
  37858. ))
  37859. characterMakers.push(() => makeCharacter(
  37860. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37861. {
  37862. frontHuman: {
  37863. height: math.unit(5 + 2/12, "feet"),
  37864. name: "Front (Human)",
  37865. image: {
  37866. source: "./media/characters/gen/front-human.svg",
  37867. extra: 1627/1538,
  37868. bottom: 71/1698
  37869. }
  37870. },
  37871. backHuman: {
  37872. height: math.unit(5 + 2/12, "feet"),
  37873. name: "Back (Human)",
  37874. image: {
  37875. source: "./media/characters/gen/back-human.svg",
  37876. extra: 1638/1548,
  37877. bottom: 69/1707
  37878. }
  37879. },
  37880. frontDemi: {
  37881. height: math.unit(5 + 2/12, "feet"),
  37882. name: "Front (Demi)",
  37883. image: {
  37884. source: "./media/characters/gen/front-demi.svg",
  37885. extra: 1627/1538,
  37886. bottom: 71/1698
  37887. }
  37888. },
  37889. backDemi: {
  37890. height: math.unit(5 + 2/12, "feet"),
  37891. name: "Back (Demi)",
  37892. image: {
  37893. source: "./media/characters/gen/back-demi.svg",
  37894. extra: 1638/1548,
  37895. bottom: 69/1707
  37896. }
  37897. },
  37898. },
  37899. [
  37900. {
  37901. name: "Normal",
  37902. height: math.unit(5 + 2/12, "feet"),
  37903. default: true
  37904. },
  37905. ]
  37906. ))
  37907. characterMakers.push(() => makeCharacter(
  37908. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37909. {
  37910. frontImp: {
  37911. height: math.unit(1 + 11/12, "feet"),
  37912. name: "Front (Imp)",
  37913. image: {
  37914. source: "./media/characters/max-kobold/front-imp.svg",
  37915. extra: 1238/1134,
  37916. bottom: 81/1319
  37917. }
  37918. },
  37919. backImp: {
  37920. height: math.unit(1 + 11/12, "feet"),
  37921. name: "Back (Imp)",
  37922. image: {
  37923. source: "./media/characters/max-kobold/back-imp.svg",
  37924. extra: 1334/1175,
  37925. bottom: 34/1368
  37926. }
  37927. },
  37928. frontDemi: {
  37929. height: math.unit(5 + 9/12, "feet"),
  37930. name: "Front (Demi)",
  37931. image: {
  37932. source: "./media/characters/max-kobold/front-demi.svg",
  37933. extra: 1715/1685,
  37934. bottom: 54/1769
  37935. }
  37936. },
  37937. backDemi: {
  37938. height: math.unit(5 + 9/12, "feet"),
  37939. name: "Back (Demi)",
  37940. image: {
  37941. source: "./media/characters/max-kobold/back-demi.svg",
  37942. extra: 1752/1729,
  37943. bottom: 41/1793
  37944. }
  37945. },
  37946. handImp: {
  37947. height: math.unit(0.45, "feet"),
  37948. name: "Hand (Imp)",
  37949. image: {
  37950. source: "./media/characters/max-kobold/hand.svg"
  37951. }
  37952. },
  37953. pawImp: {
  37954. height: math.unit(0.46, "feet"),
  37955. name: "Paw (Imp)",
  37956. image: {
  37957. source: "./media/characters/max-kobold/paw.svg"
  37958. }
  37959. },
  37960. handDemi: {
  37961. height: math.unit(0.80, "feet"),
  37962. name: "Hand (Demi)",
  37963. image: {
  37964. source: "./media/characters/max-kobold/hand.svg"
  37965. }
  37966. },
  37967. pawDemi: {
  37968. height: math.unit(1.1, "feet"),
  37969. name: "Paw (Demi)",
  37970. image: {
  37971. source: "./media/characters/max-kobold/paw.svg"
  37972. }
  37973. },
  37974. headImp: {
  37975. height: math.unit(1.33, "feet"),
  37976. name: "Head (Imp)",
  37977. image: {
  37978. source: "./media/characters/max-kobold/head-imp.svg"
  37979. }
  37980. },
  37981. mawImp: {
  37982. height: math.unit(0.75, "feet"),
  37983. name: "Maw (Imp)",
  37984. image: {
  37985. source: "./media/characters/max-kobold/maw-imp.svg"
  37986. }
  37987. },
  37988. mawDemi: {
  37989. height: math.unit(0.42, "feet"),
  37990. name: "Maw (Demi)",
  37991. image: {
  37992. source: "./media/characters/max-kobold/maw-demi.svg"
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Normal",
  37999. height: math.unit(1 + 11/12, "feet"),
  38000. default: true
  38001. },
  38002. ]
  38003. ))
  38004. characterMakers.push(() => makeCharacter(
  38005. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38006. {
  38007. front: {
  38008. height: math.unit(7 + 5/12, "feet"),
  38009. name: "Front",
  38010. image: {
  38011. source: "./media/characters/carbon/front.svg",
  38012. extra: 1754/1689,
  38013. bottom: 65/1819
  38014. }
  38015. },
  38016. back: {
  38017. height: math.unit(7 + 5/12, "feet"),
  38018. name: "Back",
  38019. image: {
  38020. source: "./media/characters/carbon/back.svg",
  38021. extra: 1762/1695,
  38022. bottom: 24/1786
  38023. }
  38024. },
  38025. frontGigantamax: {
  38026. height: math.unit(150, "feet"),
  38027. name: "Front (Gigantamax)",
  38028. image: {
  38029. source: "./media/characters/carbon/front-gigantamax.svg",
  38030. extra: 1826/1669,
  38031. bottom: 59/1885
  38032. }
  38033. },
  38034. backGigantamax: {
  38035. height: math.unit(150, "feet"),
  38036. name: "Back (Gigantamax)",
  38037. image: {
  38038. source: "./media/characters/carbon/back-gigantamax.svg",
  38039. extra: 1796/1653,
  38040. bottom: 53/1849
  38041. }
  38042. },
  38043. maw: {
  38044. height: math.unit(0.48, "feet"),
  38045. name: "Maw",
  38046. image: {
  38047. source: "./media/characters/carbon/maw.svg"
  38048. }
  38049. },
  38050. mawGigantamax: {
  38051. height: math.unit(7.5, "feet"),
  38052. name: "Maw (Gigantamax)",
  38053. image: {
  38054. source: "./media/characters/carbon/maw-gigantamax.svg"
  38055. }
  38056. },
  38057. },
  38058. [
  38059. {
  38060. name: "Normal",
  38061. height: math.unit(7 + 5/12, "feet"),
  38062. default: true
  38063. },
  38064. ]
  38065. ))
  38066. characterMakers.push(() => makeCharacter(
  38067. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38068. {
  38069. front: {
  38070. height: math.unit(6, "feet"),
  38071. name: "Front",
  38072. image: {
  38073. source: "./media/characters/maverick/front.svg",
  38074. extra: 1672/1661,
  38075. bottom: 85/1757
  38076. }
  38077. },
  38078. back: {
  38079. height: math.unit(6, "feet"),
  38080. name: "Back",
  38081. image: {
  38082. source: "./media/characters/maverick/back.svg",
  38083. extra: 1642/1631,
  38084. bottom: 38/1680
  38085. }
  38086. },
  38087. },
  38088. [
  38089. {
  38090. name: "Normal",
  38091. height: math.unit(6, "feet"),
  38092. default: true
  38093. },
  38094. ]
  38095. ))
  38096. characterMakers.push(() => makeCharacter(
  38097. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38098. {
  38099. front: {
  38100. height: math.unit(15, "feet"),
  38101. weight: math.unit(615, "lb"),
  38102. name: "Front",
  38103. image: {
  38104. source: "./media/characters/grockle/front.svg",
  38105. extra: 1535/1427,
  38106. bottom: 56/1591
  38107. }
  38108. },
  38109. },
  38110. [
  38111. {
  38112. name: "Normal",
  38113. height: math.unit(15, "feet"),
  38114. default: true
  38115. },
  38116. {
  38117. name: "Large",
  38118. height: math.unit(150, "feet")
  38119. },
  38120. {
  38121. name: "Macro",
  38122. height: math.unit(1876, "feet")
  38123. },
  38124. {
  38125. name: "Mega Macro",
  38126. height: math.unit(121940, "feet")
  38127. },
  38128. {
  38129. name: "Giga Macro",
  38130. height: math.unit(750, "km")
  38131. },
  38132. {
  38133. name: "Tera Macro",
  38134. height: math.unit(750000, "km")
  38135. },
  38136. {
  38137. name: "Galactic",
  38138. height: math.unit(1.4e5, "km")
  38139. },
  38140. {
  38141. name: "Godlike",
  38142. height: math.unit(9.8e280, "galaxies")
  38143. },
  38144. ]
  38145. ))
  38146. characterMakers.push(() => makeCharacter(
  38147. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38148. {
  38149. front: {
  38150. height: math.unit(11, "meters"),
  38151. weight: math.unit(20, "tonnes"),
  38152. name: "Front",
  38153. image: {
  38154. source: "./media/characters/alistair/front.svg",
  38155. extra: 1265/1009,
  38156. bottom: 93/1358
  38157. }
  38158. },
  38159. },
  38160. [
  38161. {
  38162. name: "Normal",
  38163. height: math.unit(11, "meters"),
  38164. default: true
  38165. },
  38166. ]
  38167. ))
  38168. characterMakers.push(() => makeCharacter(
  38169. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38170. {
  38171. front: {
  38172. height: math.unit(5 + 8/12, "feet"),
  38173. name: "Front",
  38174. image: {
  38175. source: "./media/characters/haruka/front.svg",
  38176. extra: 2012/1952,
  38177. bottom: 0/2012
  38178. }
  38179. },
  38180. },
  38181. [
  38182. {
  38183. name: "Normal",
  38184. height: math.unit(5 + 8/12, "feet"),
  38185. default: true
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38191. {
  38192. back: {
  38193. height: math.unit(9, "feet"),
  38194. name: "Back",
  38195. image: {
  38196. source: "./media/characters/vivian-sylveon/back.svg",
  38197. extra: 1853/1714,
  38198. bottom: 0/1853
  38199. }
  38200. },
  38201. },
  38202. [
  38203. {
  38204. name: "Normal",
  38205. height: math.unit(9, "feet"),
  38206. default: true
  38207. },
  38208. {
  38209. name: "Macro",
  38210. height: math.unit(500, "feet")
  38211. },
  38212. {
  38213. name: "Megamacro",
  38214. height: math.unit(600, "miles")
  38215. },
  38216. {
  38217. name: "Gigamacro",
  38218. height: math.unit(30000, "miles")
  38219. },
  38220. ]
  38221. ))
  38222. characterMakers.push(() => makeCharacter(
  38223. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38224. {
  38225. anthro: {
  38226. height: math.unit(5 + 10/12, "feet"),
  38227. weight: math.unit(100, "lb"),
  38228. name: "Anthro",
  38229. image: {
  38230. source: "./media/characters/daiki/anthro.svg",
  38231. extra: 1115/1027,
  38232. bottom: 69/1184
  38233. }
  38234. },
  38235. feral: {
  38236. height: math.unit(200, "feet"),
  38237. name: "Feral",
  38238. image: {
  38239. source: "./media/characters/daiki/feral.svg",
  38240. extra: 1256/313,
  38241. bottom: 39/1295
  38242. }
  38243. },
  38244. feralHead: {
  38245. height: math.unit(171, "feet"),
  38246. name: "Feral Head",
  38247. image: {
  38248. source: "./media/characters/daiki/feral-head.svg"
  38249. }
  38250. },
  38251. manaDragon: {
  38252. height: math.unit(170, "meters"),
  38253. name: "Mana-dragon",
  38254. image: {
  38255. source: "./media/characters/daiki/mana-dragon.svg",
  38256. extra: 763/420,
  38257. bottom: 97/860
  38258. }
  38259. },
  38260. },
  38261. [
  38262. {
  38263. name: "Normal",
  38264. height: math.unit(5 + 10/12, "feet"),
  38265. default: true
  38266. },
  38267. ]
  38268. ))
  38269. characterMakers.push(() => makeCharacter(
  38270. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38271. {
  38272. fullyEquippedFront: {
  38273. height: math.unit(3 + 1/12, "feet"),
  38274. weight: math.unit(24, "lb"),
  38275. name: "Fully Equipped (Front)",
  38276. image: {
  38277. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38278. extra: 687/605,
  38279. bottom: 18/705
  38280. }
  38281. },
  38282. fullyEquippedBack: {
  38283. height: math.unit(3 + 1/12, "feet"),
  38284. weight: math.unit(24, "lb"),
  38285. name: "Fully Equipped (Back)",
  38286. image: {
  38287. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38288. extra: 689/590,
  38289. bottom: 18/707
  38290. }
  38291. },
  38292. dailyWear: {
  38293. height: math.unit(3 + 1/12, "feet"),
  38294. weight: math.unit(24, "lb"),
  38295. name: "Daily Wear",
  38296. image: {
  38297. source: "./media/characters/tea-spot/daily-wear.svg",
  38298. extra: 701/620,
  38299. bottom: 21/722
  38300. }
  38301. },
  38302. maidWork: {
  38303. height: math.unit(3 + 1/12, "feet"),
  38304. weight: math.unit(24, "lb"),
  38305. name: "Maid Work",
  38306. image: {
  38307. source: "./media/characters/tea-spot/maid-work.svg",
  38308. extra: 693/609,
  38309. bottom: 15/708
  38310. }
  38311. },
  38312. },
  38313. [
  38314. {
  38315. name: "Normal",
  38316. height: math.unit(3 + 1/12, "feet"),
  38317. default: true
  38318. },
  38319. ]
  38320. ))
  38321. characterMakers.push(() => makeCharacter(
  38322. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38323. {
  38324. front: {
  38325. height: math.unit(175, "cm"),
  38326. weight: math.unit(75, "kg"),
  38327. name: "Front",
  38328. image: {
  38329. source: "./media/characters/chee/front.svg",
  38330. extra: 1796/1740,
  38331. bottom: 40/1836
  38332. }
  38333. },
  38334. },
  38335. [
  38336. {
  38337. name: "Micro-Micro",
  38338. height: math.unit(1, "nm")
  38339. },
  38340. {
  38341. name: "Micro-erst",
  38342. height: math.unit(1, "micrometer")
  38343. },
  38344. {
  38345. name: "Micro-er",
  38346. height: math.unit(1, "cm")
  38347. },
  38348. {
  38349. name: "Normal",
  38350. height: math.unit(175, "cm"),
  38351. default: true
  38352. },
  38353. {
  38354. name: "Macro",
  38355. height: math.unit(100, "m")
  38356. },
  38357. {
  38358. name: "Macro-er",
  38359. height: math.unit(1, "km")
  38360. },
  38361. {
  38362. name: "Macro-erst",
  38363. height: math.unit(10, "km")
  38364. },
  38365. {
  38366. name: "Macro-Macro",
  38367. height: math.unit(100, "km")
  38368. },
  38369. ]
  38370. ))
  38371. characterMakers.push(() => makeCharacter(
  38372. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38373. {
  38374. front: {
  38375. height: math.unit(11 + 9/12, "feet"),
  38376. weight: math.unit(935, "lb"),
  38377. name: "Front",
  38378. image: {
  38379. source: "./media/characters/kingsley/front.svg",
  38380. extra: 1803/1674,
  38381. bottom: 127/1930
  38382. }
  38383. },
  38384. frontNude: {
  38385. height: math.unit(11 + 9/12, "feet"),
  38386. weight: math.unit(935, "lb"),
  38387. name: "Front (Nude)",
  38388. image: {
  38389. source: "./media/characters/kingsley/front-nude.svg",
  38390. extra: 1803/1674,
  38391. bottom: 127/1930
  38392. }
  38393. },
  38394. },
  38395. [
  38396. {
  38397. name: "Normal",
  38398. height: math.unit(11 + 9/12, "feet"),
  38399. default: true
  38400. },
  38401. ]
  38402. ))
  38403. characterMakers.push(() => makeCharacter(
  38404. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38405. {
  38406. side: {
  38407. height: math.unit(9, "feet"),
  38408. name: "Side",
  38409. image: {
  38410. source: "./media/characters/rymel/side.svg",
  38411. extra: 792/469,
  38412. bottom: 121/913
  38413. }
  38414. },
  38415. maw: {
  38416. height: math.unit(2.4, "meters"),
  38417. name: "Maw",
  38418. image: {
  38419. source: "./media/characters/rymel/maw.svg"
  38420. }
  38421. },
  38422. },
  38423. [
  38424. {
  38425. name: "House Drake",
  38426. height: math.unit(2, "feet")
  38427. },
  38428. {
  38429. name: "Reduced",
  38430. height: math.unit(4.5, "feet")
  38431. },
  38432. {
  38433. name: "Normal",
  38434. height: math.unit(9, "feet"),
  38435. default: true
  38436. },
  38437. ]
  38438. ))
  38439. characterMakers.push(() => makeCharacter(
  38440. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38441. {
  38442. front: {
  38443. height: math.unit(1.74, "meters"),
  38444. weight: math.unit(55, "kg"),
  38445. name: "Front",
  38446. image: {
  38447. source: "./media/characters/rubus/front.svg",
  38448. extra: 1894/1742,
  38449. bottom: 44/1938
  38450. }
  38451. },
  38452. },
  38453. [
  38454. {
  38455. name: "Normal",
  38456. height: math.unit(1.74, "meters"),
  38457. default: true
  38458. },
  38459. ]
  38460. ))
  38461. characterMakers.push(() => makeCharacter(
  38462. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38463. {
  38464. front: {
  38465. height: math.unit(5 + 2/12, "feet"),
  38466. weight: math.unit(112, "lb"),
  38467. name: "Front",
  38468. image: {
  38469. source: "./media/characters/cassie-kingston/front.svg",
  38470. extra: 1438/1390,
  38471. bottom: 47/1485
  38472. }
  38473. },
  38474. },
  38475. [
  38476. {
  38477. name: "Normal",
  38478. height: math.unit(5 + 2/12, "feet"),
  38479. default: true
  38480. },
  38481. {
  38482. name: "Macro",
  38483. height: math.unit(128, "feet")
  38484. },
  38485. {
  38486. name: "Megamacro",
  38487. height: math.unit(2.56, "miles")
  38488. },
  38489. ]
  38490. ))
  38491. characterMakers.push(() => makeCharacter(
  38492. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38493. {
  38494. front: {
  38495. height: math.unit(7, "feet"),
  38496. name: "Front",
  38497. image: {
  38498. source: "./media/characters/fox/front.svg",
  38499. extra: 1798/1703,
  38500. bottom: 55/1853
  38501. }
  38502. },
  38503. back: {
  38504. height: math.unit(7, "feet"),
  38505. name: "Back",
  38506. image: {
  38507. source: "./media/characters/fox/back.svg",
  38508. extra: 1748/1649,
  38509. bottom: 32/1780
  38510. }
  38511. },
  38512. head: {
  38513. height: math.unit(1.95, "feet"),
  38514. name: "Head",
  38515. image: {
  38516. source: "./media/characters/fox/head.svg"
  38517. }
  38518. },
  38519. dick: {
  38520. height: math.unit(1.33, "feet"),
  38521. name: "Dick",
  38522. image: {
  38523. source: "./media/characters/fox/dick.svg"
  38524. }
  38525. },
  38526. foot: {
  38527. height: math.unit(1, "feet"),
  38528. name: "Foot",
  38529. image: {
  38530. source: "./media/characters/fox/foot.svg"
  38531. }
  38532. },
  38533. paw: {
  38534. height: math.unit(0.92, "feet"),
  38535. name: "Paw",
  38536. image: {
  38537. source: "./media/characters/fox/paw.svg"
  38538. }
  38539. },
  38540. },
  38541. [
  38542. {
  38543. name: "Small",
  38544. height: math.unit(3, "inches")
  38545. },
  38546. {
  38547. name: "\"Realistic\"",
  38548. height: math.unit(7, "feet")
  38549. },
  38550. {
  38551. name: "Normal",
  38552. height: math.unit(150, "feet"),
  38553. default: true
  38554. },
  38555. {
  38556. name: "BIG",
  38557. height: math.unit(1200, "feet")
  38558. },
  38559. {
  38560. name: "👀",
  38561. height: math.unit(5, "miles")
  38562. },
  38563. {
  38564. name: "👀👀👀",
  38565. height: math.unit(64, "miles")
  38566. },
  38567. ]
  38568. ))
  38569. characterMakers.push(() => makeCharacter(
  38570. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38571. {
  38572. front: {
  38573. height: math.unit(625, "feet"),
  38574. name: "Front",
  38575. image: {
  38576. source: "./media/characters/asonja-rossa/front.svg",
  38577. extra: 1833/1686,
  38578. bottom: 24/1857
  38579. }
  38580. },
  38581. back: {
  38582. height: math.unit(625, "feet"),
  38583. name: "Back",
  38584. image: {
  38585. source: "./media/characters/asonja-rossa/back.svg",
  38586. extra: 1852/1753,
  38587. bottom: 26/1878
  38588. }
  38589. },
  38590. },
  38591. [
  38592. {
  38593. name: "Macro",
  38594. height: math.unit(625, "feet"),
  38595. default: true
  38596. },
  38597. ]
  38598. ))
  38599. characterMakers.push(() => makeCharacter(
  38600. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38601. {
  38602. side: {
  38603. height: math.unit(8, "feet"),
  38604. name: "Side",
  38605. image: {
  38606. source: "./media/characters/rezukii/side.svg",
  38607. extra: 979/542,
  38608. bottom: 87/1066
  38609. }
  38610. },
  38611. sitting: {
  38612. height: math.unit(14.6, "feet"),
  38613. name: "Sitting",
  38614. image: {
  38615. source: "./media/characters/rezukii/sitting.svg",
  38616. extra: 1023/813,
  38617. bottom: 45/1068
  38618. }
  38619. },
  38620. },
  38621. [
  38622. {
  38623. name: "Tiny",
  38624. height: math.unit(2, "feet")
  38625. },
  38626. {
  38627. name: "Smol",
  38628. height: math.unit(4, "feet")
  38629. },
  38630. {
  38631. name: "Normal",
  38632. height: math.unit(8, "feet"),
  38633. default: true
  38634. },
  38635. {
  38636. name: "Big",
  38637. height: math.unit(12, "feet")
  38638. },
  38639. {
  38640. name: "Macro",
  38641. height: math.unit(30, "feet")
  38642. },
  38643. ]
  38644. ))
  38645. characterMakers.push(() => makeCharacter(
  38646. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38647. {
  38648. front: {
  38649. height: math.unit(14, "feet"),
  38650. weight: math.unit(9.5, "tonnes"),
  38651. name: "Front",
  38652. image: {
  38653. source: "./media/characters/dawnheart/front.svg",
  38654. extra: 2792/2675,
  38655. bottom: 64/2856
  38656. }
  38657. },
  38658. },
  38659. [
  38660. {
  38661. name: "Normal",
  38662. height: math.unit(14, "feet"),
  38663. default: true
  38664. },
  38665. ]
  38666. ))
  38667. characterMakers.push(() => makeCharacter(
  38668. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38669. {
  38670. front: {
  38671. height: math.unit(1.7, "m"),
  38672. name: "Front",
  38673. image: {
  38674. source: "./media/characters/gladi/front.svg",
  38675. extra: 1460/1362,
  38676. bottom: 19/1479
  38677. }
  38678. },
  38679. back: {
  38680. height: math.unit(1.7, "m"),
  38681. name: "Back",
  38682. image: {
  38683. source: "./media/characters/gladi/back.svg",
  38684. extra: 1459/1357,
  38685. bottom: 12/1471
  38686. }
  38687. },
  38688. feral: {
  38689. height: math.unit(2.05, "m"),
  38690. name: "Feral",
  38691. image: {
  38692. source: "./media/characters/gladi/feral.svg",
  38693. extra: 821/557,
  38694. bottom: 91/912
  38695. }
  38696. },
  38697. },
  38698. [
  38699. {
  38700. name: "Shortest",
  38701. height: math.unit(70, "cm")
  38702. },
  38703. {
  38704. name: "Normal",
  38705. height: math.unit(1.7, "m")
  38706. },
  38707. {
  38708. name: "Macro",
  38709. height: math.unit(10, "m"),
  38710. default: true
  38711. },
  38712. {
  38713. name: "Tallest",
  38714. height: math.unit(200, "m")
  38715. },
  38716. ]
  38717. ))
  38718. characterMakers.push(() => makeCharacter(
  38719. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38720. {
  38721. front: {
  38722. height: math.unit(5 + 7/12, "feet"),
  38723. weight: math.unit(2, "tons"),
  38724. name: "Front",
  38725. image: {
  38726. source: "./media/characters/erdno/front.svg",
  38727. extra: 1234/1129,
  38728. bottom: 35/1269
  38729. }
  38730. },
  38731. angled: {
  38732. height: math.unit(5 + 7/12, "feet"),
  38733. weight: math.unit(2, "tons"),
  38734. name: "Angled",
  38735. image: {
  38736. source: "./media/characters/erdno/angled.svg",
  38737. extra: 1185/1139,
  38738. bottom: 36/1221
  38739. }
  38740. },
  38741. side: {
  38742. height: math.unit(5 + 7/12, "feet"),
  38743. weight: math.unit(2, "tons"),
  38744. name: "Side",
  38745. image: {
  38746. source: "./media/characters/erdno/side.svg",
  38747. extra: 1191/1144,
  38748. bottom: 40/1231
  38749. }
  38750. },
  38751. back: {
  38752. height: math.unit(5 + 7/12, "feet"),
  38753. weight: math.unit(2, "tons"),
  38754. name: "Back",
  38755. image: {
  38756. source: "./media/characters/erdno/back.svg",
  38757. extra: 1202/1146,
  38758. bottom: 17/1219
  38759. }
  38760. },
  38761. frontNsfw: {
  38762. height: math.unit(5 + 7/12, "feet"),
  38763. weight: math.unit(2, "tons"),
  38764. name: "Front (NSFW)",
  38765. image: {
  38766. source: "./media/characters/erdno/front-nsfw.svg",
  38767. extra: 1234/1129,
  38768. bottom: 35/1269
  38769. }
  38770. },
  38771. angledNsfw: {
  38772. height: math.unit(5 + 7/12, "feet"),
  38773. weight: math.unit(2, "tons"),
  38774. name: "Angled (NSFW)",
  38775. image: {
  38776. source: "./media/characters/erdno/angled-nsfw.svg",
  38777. extra: 1185/1139,
  38778. bottom: 36/1221
  38779. }
  38780. },
  38781. sideNsfw: {
  38782. height: math.unit(5 + 7/12, "feet"),
  38783. weight: math.unit(2, "tons"),
  38784. name: "Side (NSFW)",
  38785. image: {
  38786. source: "./media/characters/erdno/side-nsfw.svg",
  38787. extra: 1191/1144,
  38788. bottom: 40/1231
  38789. }
  38790. },
  38791. backNsfw: {
  38792. height: math.unit(5 + 7/12, "feet"),
  38793. weight: math.unit(2, "tons"),
  38794. name: "Back (NSFW)",
  38795. image: {
  38796. source: "./media/characters/erdno/back-nsfw.svg",
  38797. extra: 1202/1146,
  38798. bottom: 17/1219
  38799. }
  38800. },
  38801. frontHyper: {
  38802. height: math.unit(5 + 7/12, "feet"),
  38803. weight: math.unit(2, "tons"),
  38804. name: "Front (Hyper)",
  38805. image: {
  38806. source: "./media/characters/erdno/front-hyper.svg",
  38807. extra: 1298/1136,
  38808. bottom: 35/1333
  38809. }
  38810. },
  38811. },
  38812. [
  38813. {
  38814. name: "Normal",
  38815. height: math.unit(5 + 7/12, "feet"),
  38816. default: true
  38817. },
  38818. {
  38819. name: "Big",
  38820. height: math.unit(5.7, "meters")
  38821. },
  38822. {
  38823. name: "Macro",
  38824. height: math.unit(5.7, "kilometers")
  38825. },
  38826. {
  38827. name: "Megamacro",
  38828. height: math.unit(5.7, "earths")
  38829. },
  38830. ]
  38831. ))
  38832. characterMakers.push(() => makeCharacter(
  38833. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38834. {
  38835. front: {
  38836. height: math.unit(5 + 10/12, "feet"),
  38837. weight: math.unit(150, "lb"),
  38838. name: "Front",
  38839. image: {
  38840. source: "./media/characters/jamie/front.svg",
  38841. extra: 1908/1768,
  38842. bottom: 19/1927
  38843. }
  38844. },
  38845. },
  38846. [
  38847. {
  38848. name: "Minimum",
  38849. height: math.unit(2, "cm")
  38850. },
  38851. {
  38852. name: "Micro",
  38853. height: math.unit(3, "inches")
  38854. },
  38855. {
  38856. name: "Normal",
  38857. height: math.unit(5 + 10/12, "feet"),
  38858. default: true
  38859. },
  38860. {
  38861. name: "Macro",
  38862. height: math.unit(150, "feet")
  38863. },
  38864. {
  38865. name: "Megamacro",
  38866. height: math.unit(10000, "m")
  38867. },
  38868. ]
  38869. ))
  38870. characterMakers.push(() => makeCharacter(
  38871. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38872. {
  38873. front: {
  38874. height: math.unit(2, "meters"),
  38875. weight: math.unit(100, "kg"),
  38876. name: "Front",
  38877. image: {
  38878. source: "./media/characters/shiron/front.svg",
  38879. extra: 2103/1985,
  38880. bottom: 98/2201
  38881. }
  38882. },
  38883. back: {
  38884. height: math.unit(2, "meters"),
  38885. weight: math.unit(100, "kg"),
  38886. name: "Back",
  38887. image: {
  38888. source: "./media/characters/shiron/back.svg",
  38889. extra: 2110/2015,
  38890. bottom: 89/2199
  38891. }
  38892. },
  38893. hand: {
  38894. height: math.unit(0.96, "feet"),
  38895. name: "Hand",
  38896. image: {
  38897. source: "./media/characters/shiron/hand.svg"
  38898. }
  38899. },
  38900. foot: {
  38901. height: math.unit(1.464, "feet"),
  38902. name: "Foot",
  38903. image: {
  38904. source: "./media/characters/shiron/foot.svg"
  38905. }
  38906. },
  38907. },
  38908. [
  38909. {
  38910. name: "Normal",
  38911. height: math.unit(2, "meters")
  38912. },
  38913. {
  38914. name: "Macro",
  38915. height: math.unit(500, "meters"),
  38916. default: true
  38917. },
  38918. {
  38919. name: "Megamacro",
  38920. height: math.unit(20, "km")
  38921. },
  38922. ]
  38923. ))
  38924. characterMakers.push(() => makeCharacter(
  38925. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38926. {
  38927. front: {
  38928. height: math.unit(6, "feet"),
  38929. name: "Front",
  38930. image: {
  38931. source: "./media/characters/sam/front.svg",
  38932. extra: 849/826,
  38933. bottom: 19/868
  38934. }
  38935. },
  38936. },
  38937. [
  38938. {
  38939. name: "Normal",
  38940. height: math.unit(6, "feet"),
  38941. default: true
  38942. },
  38943. ]
  38944. ))
  38945. characterMakers.push(() => makeCharacter(
  38946. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38947. {
  38948. front: {
  38949. height: math.unit(8 + 4/12, "feet"),
  38950. weight: math.unit(122, "kg"),
  38951. name: "Front",
  38952. image: {
  38953. source: "./media/characters/namori-kurogawa/front.svg",
  38954. extra: 1894/1576,
  38955. bottom: 34/1928
  38956. }
  38957. },
  38958. },
  38959. [
  38960. {
  38961. name: "Normal",
  38962. height: math.unit(8 + 4/12, "feet"),
  38963. default: true
  38964. },
  38965. ]
  38966. ))
  38967. characterMakers.push(() => makeCharacter(
  38968. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38969. {
  38970. front: {
  38971. height: math.unit(9, "feet"),
  38972. weight: math.unit(621, "lb"),
  38973. name: "Front",
  38974. image: {
  38975. source: "./media/characters/unmru/front.svg",
  38976. extra: 1853/1747,
  38977. bottom: 73/1926
  38978. }
  38979. },
  38980. side: {
  38981. height: math.unit(9, "feet"),
  38982. weight: math.unit(621, "lb"),
  38983. name: "Side",
  38984. image: {
  38985. source: "./media/characters/unmru/side.svg",
  38986. extra: 1781/1671,
  38987. bottom: 127/1908
  38988. }
  38989. },
  38990. back: {
  38991. height: math.unit(9, "feet"),
  38992. weight: math.unit(621, "lb"),
  38993. name: "Back",
  38994. image: {
  38995. source: "./media/characters/unmru/back.svg",
  38996. extra: 1894/1765,
  38997. bottom: 75/1969
  38998. }
  38999. },
  39000. dick: {
  39001. height: math.unit(3, "feet"),
  39002. weight: math.unit(35, "lb"),
  39003. name: "Dick",
  39004. image: {
  39005. source: "./media/characters/unmru/dick.svg"
  39006. }
  39007. },
  39008. },
  39009. [
  39010. {
  39011. name: "Normal",
  39012. height: math.unit(9, "feet")
  39013. },
  39014. {
  39015. name: "Natural",
  39016. height: math.unit(27, "feet"),
  39017. default: true
  39018. },
  39019. {
  39020. name: "Giant",
  39021. height: math.unit(90, "feet")
  39022. },
  39023. {
  39024. name: "Kaiju",
  39025. height: math.unit(270, "feet")
  39026. },
  39027. {
  39028. name: "Macro",
  39029. height: math.unit(900, "feet")
  39030. },
  39031. {
  39032. name: "Macro+",
  39033. height: math.unit(2700, "feet")
  39034. },
  39035. {
  39036. name: "Megamacro",
  39037. height: math.unit(9000, "feet")
  39038. },
  39039. {
  39040. name: "City-Crushing",
  39041. height: math.unit(27000, "feet")
  39042. },
  39043. {
  39044. name: "Mountain-Mashing",
  39045. height: math.unit(90000, "feet")
  39046. },
  39047. {
  39048. name: "Earth-Eclipsing",
  39049. height: math.unit(2.7e8, "feet")
  39050. },
  39051. {
  39052. name: "Sol-Swallowing",
  39053. height: math.unit(9e10, "feet")
  39054. },
  39055. {
  39056. name: "Majoris-Munching",
  39057. height: math.unit(2.7e13, "feet")
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39063. {
  39064. front: {
  39065. height: math.unit(1, "inch"),
  39066. name: "Front",
  39067. image: {
  39068. source: "./media/characters/squeaks-mouse/front.svg",
  39069. extra: 352/308,
  39070. bottom: 25/377
  39071. }
  39072. },
  39073. },
  39074. [
  39075. {
  39076. name: "Micro",
  39077. height: math.unit(1, "inch"),
  39078. default: true
  39079. },
  39080. ]
  39081. ))
  39082. characterMakers.push(() => makeCharacter(
  39083. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39084. {
  39085. side: {
  39086. height: math.unit(35, "feet"),
  39087. name: "Side",
  39088. image: {
  39089. source: "./media/characters/sayko/side.svg",
  39090. extra: 1697/1021,
  39091. bottom: 82/1779
  39092. }
  39093. },
  39094. head: {
  39095. height: math.unit(16, "feet"),
  39096. name: "Head",
  39097. image: {
  39098. source: "./media/characters/sayko/head.svg"
  39099. }
  39100. },
  39101. forepaw: {
  39102. height: math.unit(7.85, "feet"),
  39103. name: "Forepaw",
  39104. image: {
  39105. source: "./media/characters/sayko/forepaw.svg"
  39106. }
  39107. },
  39108. hindpaw: {
  39109. height: math.unit(8.8, "feet"),
  39110. name: "Hindpaw",
  39111. image: {
  39112. source: "./media/characters/sayko/hindpaw.svg"
  39113. }
  39114. },
  39115. },
  39116. [
  39117. {
  39118. name: "Normal",
  39119. height: math.unit(35, "feet"),
  39120. default: true
  39121. },
  39122. {
  39123. name: "Colossus",
  39124. height: math.unit(100, "meters")
  39125. },
  39126. {
  39127. name: "\"Small\" Deity",
  39128. height: math.unit(1, "km")
  39129. },
  39130. {
  39131. name: "\"Large\" Deity",
  39132. height: math.unit(15, "km")
  39133. },
  39134. ]
  39135. ))
  39136. characterMakers.push(() => makeCharacter(
  39137. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39138. {
  39139. front: {
  39140. height: math.unit(6, "feet"),
  39141. weight: math.unit(250, "lb"),
  39142. name: "Front",
  39143. image: {
  39144. source: "./media/characters/mukiro/front.svg",
  39145. extra: 1368/1310,
  39146. bottom: 34/1402
  39147. }
  39148. },
  39149. },
  39150. [
  39151. {
  39152. name: "Normal",
  39153. height: math.unit(6, "feet"),
  39154. default: true
  39155. },
  39156. ]
  39157. ))
  39158. characterMakers.push(() => makeCharacter(
  39159. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39160. {
  39161. front: {
  39162. height: math.unit(12 + 4/12, "feet"),
  39163. name: "Front",
  39164. image: {
  39165. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39166. extra: 1346/1311,
  39167. bottom: 65/1411
  39168. }
  39169. },
  39170. },
  39171. [
  39172. {
  39173. name: "Base",
  39174. height: math.unit(12 + 4/12, "feet"),
  39175. default: true
  39176. },
  39177. {
  39178. name: "Macro",
  39179. height: math.unit(150, "feet")
  39180. },
  39181. {
  39182. name: "Mega",
  39183. height: math.unit(2, "miles")
  39184. },
  39185. {
  39186. name: "Demi God",
  39187. height: math.unit(4, "AU")
  39188. },
  39189. {
  39190. name: "God Size",
  39191. height: math.unit(1, "universe")
  39192. },
  39193. ]
  39194. ))
  39195. characterMakers.push(() => makeCharacter(
  39196. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39197. {
  39198. front: {
  39199. height: math.unit(3 + 3/12, "feet"),
  39200. weight: math.unit(88, "lb"),
  39201. name: "Front",
  39202. image: {
  39203. source: "./media/characters/trey/front.svg",
  39204. extra: 1815/1509,
  39205. bottom: 60/1875
  39206. }
  39207. },
  39208. },
  39209. [
  39210. {
  39211. name: "Normal",
  39212. height: math.unit(3 + 3/12, "feet"),
  39213. default: true
  39214. },
  39215. ]
  39216. ))
  39217. characterMakers.push(() => makeCharacter(
  39218. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39219. {
  39220. front: {
  39221. height: math.unit(4, "meters"),
  39222. name: "Front",
  39223. image: {
  39224. source: "./media/characters/adelonda/front.svg",
  39225. extra: 1077/982,
  39226. bottom: 39/1116
  39227. }
  39228. },
  39229. back: {
  39230. height: math.unit(4, "meters"),
  39231. name: "Back",
  39232. image: {
  39233. source: "./media/characters/adelonda/back.svg",
  39234. extra: 1105/1003,
  39235. bottom: 25/1130
  39236. }
  39237. },
  39238. feral: {
  39239. height: math.unit(40/1.5, "meters"),
  39240. name: "Feral",
  39241. image: {
  39242. source: "./media/characters/adelonda/feral.svg",
  39243. extra: 597/271,
  39244. bottom: 387/984
  39245. }
  39246. },
  39247. },
  39248. [
  39249. {
  39250. name: "Normal",
  39251. height: math.unit(4, "meters"),
  39252. default: true
  39253. },
  39254. ]
  39255. ))
  39256. characterMakers.push(() => makeCharacter(
  39257. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39258. {
  39259. front: {
  39260. height: math.unit(8 + 4/12, "feet"),
  39261. weight: math.unit(670, "lb"),
  39262. name: "Front",
  39263. image: {
  39264. source: "./media/characters/acadiel/front.svg",
  39265. extra: 1901/1595,
  39266. bottom: 142/2043
  39267. }
  39268. },
  39269. },
  39270. [
  39271. {
  39272. name: "Normal",
  39273. height: math.unit(8 + 4/12, "feet"),
  39274. default: true
  39275. },
  39276. {
  39277. name: "Macro",
  39278. height: math.unit(200, "feet")
  39279. },
  39280. ]
  39281. ))
  39282. characterMakers.push(() => makeCharacter(
  39283. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39284. {
  39285. front: {
  39286. height: math.unit(6 + 2/12, "feet"),
  39287. weight: math.unit(185, "lb"),
  39288. name: "Front",
  39289. image: {
  39290. source: "./media/characters/kayne-ein/front.svg",
  39291. extra: 1780/1560,
  39292. bottom: 81/1861
  39293. }
  39294. },
  39295. },
  39296. [
  39297. {
  39298. name: "Normal",
  39299. height: math.unit(6 + 2/12, "feet"),
  39300. default: true
  39301. },
  39302. {
  39303. name: "Transformation Stage",
  39304. height: math.unit(15, "feet")
  39305. },
  39306. {
  39307. name: "Macro",
  39308. height: math.unit(150, "feet")
  39309. },
  39310. {
  39311. name: "Earth's Shadow",
  39312. height: math.unit(6200, "miles")
  39313. },
  39314. {
  39315. name: "Universal Demon",
  39316. height: math.unit(28e9, "parsecs")
  39317. },
  39318. {
  39319. name: "Multiverse God",
  39320. height: math.unit(3, "multiverses")
  39321. },
  39322. ]
  39323. ))
  39324. characterMakers.push(() => makeCharacter(
  39325. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39326. {
  39327. front: {
  39328. height: math.unit(5 + 5/12, "feet"),
  39329. name: "Front",
  39330. image: {
  39331. source: "./media/characters/fawn/front.svg",
  39332. extra: 1873/1731,
  39333. bottom: 95/1968
  39334. }
  39335. },
  39336. back: {
  39337. height: math.unit(5 + 5/12, "feet"),
  39338. name: "Back",
  39339. image: {
  39340. source: "./media/characters/fawn/back.svg",
  39341. extra: 1813/1700,
  39342. bottom: 14/1827
  39343. }
  39344. },
  39345. hoof: {
  39346. height: math.unit(1.45, "feet"),
  39347. name: "Hoof",
  39348. image: {
  39349. source: "./media/characters/fawn/hoof.svg"
  39350. }
  39351. },
  39352. },
  39353. [
  39354. {
  39355. name: "Normal",
  39356. height: math.unit(5 + 5/12, "feet"),
  39357. default: true
  39358. },
  39359. ]
  39360. ))
  39361. characterMakers.push(() => makeCharacter(
  39362. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39363. {
  39364. front: {
  39365. height: math.unit(2 + 5/12, "feet"),
  39366. name: "Front",
  39367. image: {
  39368. source: "./media/characters/orion/front.svg",
  39369. extra: 1366/1304,
  39370. bottom: 43/1409
  39371. }
  39372. },
  39373. paw: {
  39374. height: math.unit(0.52, "feet"),
  39375. name: "Paw",
  39376. image: {
  39377. source: "./media/characters/orion/paw.svg"
  39378. }
  39379. },
  39380. },
  39381. [
  39382. {
  39383. name: "Normal",
  39384. height: math.unit(2 + 5/12, "feet"),
  39385. default: true
  39386. },
  39387. ]
  39388. ))
  39389. characterMakers.push(() => makeCharacter(
  39390. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39391. {
  39392. front: {
  39393. height: math.unit(5 + 10/12, "feet"),
  39394. name: "Front",
  39395. image: {
  39396. source: "./media/characters/vera/front.svg",
  39397. extra: 1680/1575,
  39398. bottom: 49/1729
  39399. }
  39400. },
  39401. back: {
  39402. height: math.unit(5 + 10/12, "feet"),
  39403. name: "Back",
  39404. image: {
  39405. source: "./media/characters/vera/back.svg",
  39406. extra: 1700/1588,
  39407. bottom: 18/1718
  39408. }
  39409. },
  39410. arcanine: {
  39411. height: math.unit(6 + 8/12, "feet"),
  39412. name: "Arcanine",
  39413. image: {
  39414. source: "./media/characters/vera/arcanine.svg",
  39415. extra: 1590/1511,
  39416. bottom: 71/1661
  39417. }
  39418. },
  39419. maw: {
  39420. height: math.unit(0.82, "feet"),
  39421. name: "Maw",
  39422. image: {
  39423. source: "./media/characters/vera/maw.svg"
  39424. }
  39425. },
  39426. mawArcanine: {
  39427. height: math.unit(0.97, "feet"),
  39428. name: "Maw (Arcanine)",
  39429. image: {
  39430. source: "./media/characters/vera/maw-arcanine.svg"
  39431. }
  39432. },
  39433. paw: {
  39434. height: math.unit(0.75, "feet"),
  39435. name: "Paw",
  39436. image: {
  39437. source: "./media/characters/vera/paw.svg"
  39438. }
  39439. },
  39440. pawprint: {
  39441. height: math.unit(0.52, "feet"),
  39442. name: "Pawprint",
  39443. image: {
  39444. source: "./media/characters/vera/pawprint.svg"
  39445. }
  39446. },
  39447. },
  39448. [
  39449. {
  39450. name: "Normal",
  39451. height: math.unit(5 + 10/12, "feet"),
  39452. default: true
  39453. },
  39454. {
  39455. name: "Macro",
  39456. height: math.unit(75, "feet")
  39457. },
  39458. ]
  39459. ))
  39460. characterMakers.push(() => makeCharacter(
  39461. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39462. {
  39463. front: {
  39464. height: math.unit(4, "feet"),
  39465. weight: math.unit(40, "lb"),
  39466. name: "Front",
  39467. image: {
  39468. source: "./media/characters/orvan-rabbit/front.svg",
  39469. extra: 1896/1642,
  39470. bottom: 29/1925
  39471. }
  39472. },
  39473. },
  39474. [
  39475. {
  39476. name: "Normal",
  39477. height: math.unit(4, "feet"),
  39478. default: true
  39479. },
  39480. ]
  39481. ))
  39482. characterMakers.push(() => makeCharacter(
  39483. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39484. {
  39485. front: {
  39486. height: math.unit(6, "feet"),
  39487. weight: math.unit(168, "lb"),
  39488. name: "Front",
  39489. image: {
  39490. source: "./media/characters/lisa/front.svg",
  39491. extra: 2065/1867,
  39492. bottom: 46/2111
  39493. }
  39494. },
  39495. back: {
  39496. height: math.unit(6, "feet"),
  39497. weight: math.unit(168, "lb"),
  39498. name: "Back",
  39499. image: {
  39500. source: "./media/characters/lisa/back.svg",
  39501. extra: 1982/1838,
  39502. bottom: 29/2011
  39503. }
  39504. },
  39505. maw: {
  39506. height: math.unit(0.81, "feet"),
  39507. name: "Maw",
  39508. image: {
  39509. source: "./media/characters/lisa/maw.svg"
  39510. }
  39511. },
  39512. paw: {
  39513. height: math.unit(0.9, "feet"),
  39514. name: "Paw",
  39515. image: {
  39516. source: "./media/characters/lisa/paw.svg"
  39517. }
  39518. },
  39519. caribousune: {
  39520. height: math.unit(7 + 2/12, "feet"),
  39521. weight: math.unit(268, "lb"),
  39522. name: "Caribousune",
  39523. image: {
  39524. source: "./media/characters/lisa/caribousune.svg",
  39525. extra: 1843/1633,
  39526. bottom: 29/1872
  39527. }
  39528. },
  39529. frontCaribousune: {
  39530. height: math.unit(7 + 2/12, "feet"),
  39531. weight: math.unit(268, "lb"),
  39532. name: "Front (Caribousune)",
  39533. image: {
  39534. source: "./media/characters/lisa/front-caribousune.svg",
  39535. extra: 1818/1638,
  39536. bottom: 52/1870
  39537. }
  39538. },
  39539. sideCaribousune: {
  39540. height: math.unit(7 + 2/12, "feet"),
  39541. weight: math.unit(268, "lb"),
  39542. name: "Side (Caribousune)",
  39543. image: {
  39544. source: "./media/characters/lisa/side-caribousune.svg",
  39545. extra: 1851/1635,
  39546. bottom: 16/1867
  39547. }
  39548. },
  39549. backCaribousune: {
  39550. height: math.unit(7 + 2/12, "feet"),
  39551. weight: math.unit(268, "lb"),
  39552. name: "Back (Caribousune)",
  39553. image: {
  39554. source: "./media/characters/lisa/back-caribousune.svg",
  39555. extra: 1801/1604,
  39556. bottom: 44/1845
  39557. }
  39558. },
  39559. caribou: {
  39560. height: math.unit(7 + 2/12, "feet"),
  39561. weight: math.unit(268, "lb"),
  39562. name: "Caribou",
  39563. image: {
  39564. source: "./media/characters/lisa/caribou.svg",
  39565. extra: 1843/1633,
  39566. bottom: 29/1872
  39567. }
  39568. },
  39569. frontCaribou: {
  39570. height: math.unit(7 + 2/12, "feet"),
  39571. weight: math.unit(268, "lb"),
  39572. name: "Front (Caribou)",
  39573. image: {
  39574. source: "./media/characters/lisa/front-caribou.svg",
  39575. extra: 1818/1638,
  39576. bottom: 52/1870
  39577. }
  39578. },
  39579. sideCaribou: {
  39580. height: math.unit(7 + 2/12, "feet"),
  39581. weight: math.unit(268, "lb"),
  39582. name: "Side (Caribou)",
  39583. image: {
  39584. source: "./media/characters/lisa/side-caribou.svg",
  39585. extra: 1851/1635,
  39586. bottom: 16/1867
  39587. }
  39588. },
  39589. backCaribou: {
  39590. height: math.unit(7 + 2/12, "feet"),
  39591. weight: math.unit(268, "lb"),
  39592. name: "Back (Caribou)",
  39593. image: {
  39594. source: "./media/characters/lisa/back-caribou.svg",
  39595. extra: 1801/1604,
  39596. bottom: 44/1845
  39597. }
  39598. },
  39599. mawCaribou: {
  39600. height: math.unit(1.45, "feet"),
  39601. name: "Maw (Caribou)",
  39602. image: {
  39603. source: "./media/characters/lisa/maw-caribou.svg"
  39604. }
  39605. },
  39606. mawCaribousune: {
  39607. height: math.unit(1.45, "feet"),
  39608. name: "Maw (Caribousune)",
  39609. image: {
  39610. source: "./media/characters/lisa/maw-caribousune.svg"
  39611. }
  39612. },
  39613. pawCaribousune: {
  39614. height: math.unit(1.61, "feet"),
  39615. name: "Paw (Caribou)",
  39616. image: {
  39617. source: "./media/characters/lisa/paw-caribousune.svg"
  39618. }
  39619. },
  39620. },
  39621. [
  39622. {
  39623. name: "Normal",
  39624. height: math.unit(6, "feet")
  39625. },
  39626. {
  39627. name: "God Size",
  39628. height: math.unit(72, "feet"),
  39629. default: true
  39630. },
  39631. {
  39632. name: "Towering",
  39633. height: math.unit(288, "feet")
  39634. },
  39635. {
  39636. name: "City Size",
  39637. height: math.unit(48384, "feet")
  39638. },
  39639. {
  39640. name: "Continental",
  39641. height: math.unit(4200, "miles")
  39642. },
  39643. {
  39644. name: "Planet Eater",
  39645. height: math.unit(42, "earths")
  39646. },
  39647. {
  39648. name: "Star Swallower",
  39649. height: math.unit(42, "solarradii")
  39650. },
  39651. {
  39652. name: "System Swallower",
  39653. height: math.unit(84000, "AU")
  39654. },
  39655. {
  39656. name: "Galaxy Gobbler",
  39657. height: math.unit(42, "galaxies")
  39658. },
  39659. {
  39660. name: "Universe Devourer",
  39661. height: math.unit(42, "universes")
  39662. },
  39663. {
  39664. name: "Multiverse Muncher",
  39665. height: math.unit(42, "multiverses")
  39666. },
  39667. ]
  39668. ))
  39669. characterMakers.push(() => makeCharacter(
  39670. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39671. {
  39672. front: {
  39673. height: math.unit(36, "feet"),
  39674. name: "Front",
  39675. image: {
  39676. source: "./media/characters/shadow-rat/front.svg",
  39677. extra: 1845/1758,
  39678. bottom: 83/1928
  39679. }
  39680. },
  39681. },
  39682. [
  39683. {
  39684. name: "Macro",
  39685. height: math.unit(36, "feet"),
  39686. default: true
  39687. },
  39688. ]
  39689. ))
  39690. characterMakers.push(() => makeCharacter(
  39691. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39692. {
  39693. side: {
  39694. height: math.unit(8, "feet"),
  39695. weight: math.unit(2630, "lb"),
  39696. name: "Side",
  39697. image: {
  39698. source: "./media/characters/torallia/side.svg",
  39699. extra: 2164/2021,
  39700. bottom: 371/2535
  39701. }
  39702. },
  39703. },
  39704. [
  39705. {
  39706. name: "Mortal Interaction",
  39707. height: math.unit(8, "feet")
  39708. },
  39709. {
  39710. name: "Natural",
  39711. height: math.unit(24, "feet"),
  39712. default: true
  39713. },
  39714. {
  39715. name: "Giant",
  39716. height: math.unit(80, "feet")
  39717. },
  39718. {
  39719. name: "Kaiju",
  39720. height: math.unit(240, "feet")
  39721. },
  39722. {
  39723. name: "Macro",
  39724. height: math.unit(800, "feet")
  39725. },
  39726. {
  39727. name: "Macro+",
  39728. height: math.unit(2400, "feet")
  39729. },
  39730. {
  39731. name: "Macro++",
  39732. height: math.unit(8000, "feet")
  39733. },
  39734. {
  39735. name: "City-Crushing",
  39736. height: math.unit(24000, "feet")
  39737. },
  39738. {
  39739. name: "Mountain-Mashing",
  39740. height: math.unit(80000, "feet")
  39741. },
  39742. {
  39743. name: "District Demolisher",
  39744. height: math.unit(240000, "feet")
  39745. },
  39746. {
  39747. name: "Tri-County Terror",
  39748. height: math.unit(800000, "feet")
  39749. },
  39750. {
  39751. name: "State Smasher",
  39752. height: math.unit(2.4e6, "feet")
  39753. },
  39754. {
  39755. name: "Nation Nemesis",
  39756. height: math.unit(8e6, "feet")
  39757. },
  39758. {
  39759. name: "Continent Cracker",
  39760. height: math.unit(2.4e7, "feet")
  39761. },
  39762. {
  39763. name: "Planet-Pillaging",
  39764. height: math.unit(8e7, "feet")
  39765. },
  39766. {
  39767. name: "Earth-Eclipsing",
  39768. height: math.unit(2.4e8, "feet")
  39769. },
  39770. {
  39771. name: "Jovian-Jostling",
  39772. height: math.unit(8e8, "feet")
  39773. },
  39774. {
  39775. name: "Gas Giant Gulper",
  39776. height: math.unit(2.4e9, "feet")
  39777. },
  39778. {
  39779. name: "Astral Annihilator",
  39780. height: math.unit(8e9, "feet")
  39781. },
  39782. {
  39783. name: "Celestial Conqueror",
  39784. height: math.unit(2.4e10, "feet")
  39785. },
  39786. {
  39787. name: "Sol-Swallowing",
  39788. height: math.unit(8e10, "feet")
  39789. },
  39790. {
  39791. name: "Hunter of the Heavens",
  39792. height: math.unit(2.4e13, "feet")
  39793. },
  39794. ]
  39795. ))
  39796. characterMakers.push(() => makeCharacter(
  39797. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39798. {
  39799. front: {
  39800. height: math.unit(6 + 8/12, "feet"),
  39801. weight: math.unit(250, "kilograms"),
  39802. volume: math.unit(28, "liters"),
  39803. name: "Front",
  39804. image: {
  39805. source: "./media/characters/rebecca-pawlson/front.svg",
  39806. extra: 1737/1596,
  39807. bottom: 107/1844
  39808. }
  39809. },
  39810. back: {
  39811. height: math.unit(6 + 8/12, "feet"),
  39812. weight: math.unit(250, "kilograms"),
  39813. volume: math.unit(28, "liters"),
  39814. name: "Back",
  39815. image: {
  39816. source: "./media/characters/rebecca-pawlson/back.svg",
  39817. extra: 1702/1523,
  39818. bottom: 86/1788
  39819. }
  39820. },
  39821. },
  39822. [
  39823. {
  39824. name: "Normal",
  39825. height: math.unit(6 + 8/12, "feet")
  39826. },
  39827. {
  39828. name: "Mini Macro",
  39829. height: math.unit(10, "feet"),
  39830. default: true
  39831. },
  39832. {
  39833. name: "Macro",
  39834. height: math.unit(100, "feet")
  39835. },
  39836. {
  39837. name: "Mega Macro",
  39838. height: math.unit(2500, "feet")
  39839. },
  39840. {
  39841. name: "Giga Macro",
  39842. height: math.unit(50, "miles")
  39843. },
  39844. ]
  39845. ))
  39846. characterMakers.push(() => makeCharacter(
  39847. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39848. {
  39849. front: {
  39850. height: math.unit(7 + 6/12, "feet"),
  39851. weight: math.unit(600, "lb"),
  39852. name: "Front",
  39853. image: {
  39854. source: "./media/characters/moxie-nova/front.svg",
  39855. extra: 1734/1652,
  39856. bottom: 41/1775
  39857. }
  39858. },
  39859. },
  39860. [
  39861. {
  39862. name: "Normal",
  39863. height: math.unit(7 + 6/12, "feet"),
  39864. default: true
  39865. },
  39866. ]
  39867. ))
  39868. characterMakers.push(() => makeCharacter(
  39869. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39870. {
  39871. goat: {
  39872. height: math.unit(4, "feet"),
  39873. weight: math.unit(180, "lb"),
  39874. name: "Goat",
  39875. image: {
  39876. source: "./media/characters/tiffany/goat.svg",
  39877. extra: 1845/1595,
  39878. bottom: 106/1951
  39879. }
  39880. },
  39881. front: {
  39882. height: math.unit(5, "feet"),
  39883. weight: math.unit(150, "lb"),
  39884. name: "Foxcoon",
  39885. image: {
  39886. source: "./media/characters/tiffany/foxcoon.svg",
  39887. extra: 1941/1845,
  39888. bottom: 58/1999
  39889. }
  39890. },
  39891. },
  39892. [
  39893. {
  39894. name: "Normal",
  39895. height: math.unit(5, "feet"),
  39896. default: true
  39897. },
  39898. ]
  39899. ))
  39900. characterMakers.push(() => makeCharacter(
  39901. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39902. {
  39903. front: {
  39904. height: math.unit(8, "feet"),
  39905. weight: math.unit(300, "lb"),
  39906. name: "Front",
  39907. image: {
  39908. source: "./media/characters/raxinath/front.svg",
  39909. extra: 1407/1309,
  39910. bottom: 39/1446
  39911. }
  39912. },
  39913. back: {
  39914. height: math.unit(8, "feet"),
  39915. weight: math.unit(300, "lb"),
  39916. name: "Back",
  39917. image: {
  39918. source: "./media/characters/raxinath/back.svg",
  39919. extra: 1405/1315,
  39920. bottom: 9/1414
  39921. }
  39922. },
  39923. },
  39924. [
  39925. {
  39926. name: "Speck",
  39927. height: math.unit(0.5, "nm")
  39928. },
  39929. {
  39930. name: "Micro",
  39931. height: math.unit(3, "inches")
  39932. },
  39933. {
  39934. name: "Kobold",
  39935. height: math.unit(3, "feet")
  39936. },
  39937. {
  39938. name: "Normal",
  39939. height: math.unit(8, "feet"),
  39940. default: true
  39941. },
  39942. {
  39943. name: "Giant",
  39944. height: math.unit(50, "feet")
  39945. },
  39946. {
  39947. name: "Macro",
  39948. height: math.unit(1000, "feet")
  39949. },
  39950. {
  39951. name: "Megamacro",
  39952. height: math.unit(1, "mile")
  39953. },
  39954. ]
  39955. ))
  39956. characterMakers.push(() => makeCharacter(
  39957. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39958. {
  39959. front: {
  39960. height: math.unit(10, "feet"),
  39961. weight: math.unit(1442, "lb"),
  39962. name: "Front",
  39963. image: {
  39964. source: "./media/characters/mal-dragon/front.svg",
  39965. extra: 1515/1444,
  39966. bottom: 113/1628
  39967. }
  39968. },
  39969. back: {
  39970. height: math.unit(10, "feet"),
  39971. weight: math.unit(1442, "lb"),
  39972. name: "Back",
  39973. image: {
  39974. source: "./media/characters/mal-dragon/back.svg",
  39975. extra: 1527/1434,
  39976. bottom: 25/1552
  39977. }
  39978. },
  39979. },
  39980. [
  39981. {
  39982. name: "Mortal Interaction",
  39983. height: math.unit(10, "feet"),
  39984. default: true
  39985. },
  39986. {
  39987. name: "Large",
  39988. height: math.unit(30, "feet")
  39989. },
  39990. {
  39991. name: "Kaiju",
  39992. height: math.unit(300, "feet")
  39993. },
  39994. {
  39995. name: "Megamacro",
  39996. height: math.unit(10000, "feet")
  39997. },
  39998. {
  39999. name: "Continent Cracker",
  40000. height: math.unit(30000000, "feet")
  40001. },
  40002. {
  40003. name: "Sol-Swallowing",
  40004. height: math.unit(1e11, "feet")
  40005. },
  40006. {
  40007. name: "Light Universal",
  40008. height: math.unit(5, "universes")
  40009. },
  40010. {
  40011. name: "Universe Atoms",
  40012. height: math.unit(1.829e9, "universes")
  40013. },
  40014. {
  40015. name: "Light Multiversal",
  40016. height: math.unit(5, "multiverses")
  40017. },
  40018. {
  40019. name: "Multiverse Atoms",
  40020. height: math.unit(1.829e9, "multiverses")
  40021. },
  40022. {
  40023. name: "Fabric of Time",
  40024. height: math.unit(1e262, "multiverses")
  40025. },
  40026. ]
  40027. ))
  40028. characterMakers.push(() => makeCharacter(
  40029. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40030. {
  40031. front: {
  40032. height: math.unit(9, "feet"),
  40033. weight: math.unit(1050, "lb"),
  40034. name: "Front",
  40035. image: {
  40036. source: "./media/characters/tabitha/front.svg",
  40037. extra: 2083/1994,
  40038. bottom: 68/2151
  40039. }
  40040. },
  40041. },
  40042. [
  40043. {
  40044. name: "Baseline",
  40045. height: math.unit(9, "feet"),
  40046. default: true
  40047. },
  40048. {
  40049. name: "Giant",
  40050. height: math.unit(90, "feet")
  40051. },
  40052. {
  40053. name: "Macro",
  40054. height: math.unit(900, "feet")
  40055. },
  40056. {
  40057. name: "Megamacro",
  40058. height: math.unit(9000, "feet")
  40059. },
  40060. {
  40061. name: "City-Crushing",
  40062. height: math.unit(27000, "feet")
  40063. },
  40064. {
  40065. name: "Mountain-Mashing",
  40066. height: math.unit(90000, "feet")
  40067. },
  40068. {
  40069. name: "Nation Nemesis",
  40070. height: math.unit(9e6, "feet")
  40071. },
  40072. {
  40073. name: "Continent Cracker",
  40074. height: math.unit(27e6, "feet")
  40075. },
  40076. {
  40077. name: "Earth-Eclipsing",
  40078. height: math.unit(2.7e8, "feet")
  40079. },
  40080. {
  40081. name: "Gas Giant Gulper",
  40082. height: math.unit(2.7e9, "feet")
  40083. },
  40084. {
  40085. name: "Sol-Swallowing",
  40086. height: math.unit(9e10, "feet")
  40087. },
  40088. {
  40089. name: "Galaxy Gulper",
  40090. height: math.unit(9, "galaxies")
  40091. },
  40092. {
  40093. name: "Cosmos Churner",
  40094. height: math.unit(9, "universes")
  40095. },
  40096. ]
  40097. ))
  40098. characterMakers.push(() => makeCharacter(
  40099. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40100. {
  40101. front: {
  40102. height: math.unit(160, "cm"),
  40103. weight: math.unit(55, "kg"),
  40104. name: "Front",
  40105. image: {
  40106. source: "./media/characters/tow/front.svg",
  40107. extra: 1751/1722,
  40108. bottom: 74/1825
  40109. }
  40110. },
  40111. },
  40112. [
  40113. {
  40114. name: "Norm",
  40115. height: math.unit(160, "cm")
  40116. },
  40117. {
  40118. name: "Casual",
  40119. height: math.unit(3200, "m"),
  40120. default: true
  40121. },
  40122. {
  40123. name: "Show-Off",
  40124. height: math.unit(160, "km")
  40125. },
  40126. ]
  40127. ))
  40128. characterMakers.push(() => makeCharacter(
  40129. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40130. {
  40131. front: {
  40132. height: math.unit(7 + 11/12, "feet"),
  40133. weight: math.unit(342.8, "lb"),
  40134. name: "Front",
  40135. image: {
  40136. source: "./media/characters/vivian-orca-dragon/front.svg",
  40137. extra: 1890/1865,
  40138. bottom: 28/1918
  40139. }
  40140. },
  40141. },
  40142. [
  40143. {
  40144. name: "Micro",
  40145. height: math.unit(5, "inches")
  40146. },
  40147. {
  40148. name: "Normal",
  40149. height: math.unit(7 + 11/12, "feet"),
  40150. default: true
  40151. },
  40152. {
  40153. name: "Macro",
  40154. height: math.unit(395 + 7/12, "feet")
  40155. },
  40156. ]
  40157. ))
  40158. characterMakers.push(() => makeCharacter(
  40159. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40160. {
  40161. side: {
  40162. height: math.unit(10, "feet"),
  40163. weight: math.unit(1442, "lb"),
  40164. name: "Side",
  40165. image: {
  40166. source: "./media/characters/lotherakon/side.svg",
  40167. extra: 1604/1497,
  40168. bottom: 89/1693
  40169. }
  40170. },
  40171. },
  40172. [
  40173. {
  40174. name: "Mortal Interaction",
  40175. height: math.unit(10, "feet")
  40176. },
  40177. {
  40178. name: "Large",
  40179. height: math.unit(30, "feet"),
  40180. default: true
  40181. },
  40182. {
  40183. name: "Giant",
  40184. height: math.unit(100, "feet")
  40185. },
  40186. {
  40187. name: "Kaiju",
  40188. height: math.unit(300, "feet")
  40189. },
  40190. {
  40191. name: "Macro",
  40192. height: math.unit(1000, "feet")
  40193. },
  40194. {
  40195. name: "Macro+",
  40196. height: math.unit(3000, "feet")
  40197. },
  40198. {
  40199. name: "Megamacro",
  40200. height: math.unit(10000, "feet")
  40201. },
  40202. {
  40203. name: "City-Crushing",
  40204. height: math.unit(30000, "feet")
  40205. },
  40206. {
  40207. name: "Continent Cracker",
  40208. height: math.unit(30e6, "feet")
  40209. },
  40210. {
  40211. name: "Earth Eclipsing",
  40212. height: math.unit(3e8, "feet")
  40213. },
  40214. {
  40215. name: "Gas Giant Gulper",
  40216. height: math.unit(3e9, "feet")
  40217. },
  40218. {
  40219. name: "Sol-Swallowing",
  40220. height: math.unit(1e11, "feet")
  40221. },
  40222. {
  40223. name: "System Swallower",
  40224. height: math.unit(3e14, "feet")
  40225. },
  40226. {
  40227. name: "Galaxy Gulper",
  40228. height: math.unit(10, "galaxies")
  40229. },
  40230. {
  40231. name: "Light Universal",
  40232. height: math.unit(5, "universes")
  40233. },
  40234. {
  40235. name: "Universe Palm",
  40236. height: math.unit(20, "universes")
  40237. },
  40238. {
  40239. name: "Light Multiversal",
  40240. height: math.unit(5, "multiverses")
  40241. },
  40242. {
  40243. name: "Multiverse Palm",
  40244. height: math.unit(20, "multiverses")
  40245. },
  40246. {
  40247. name: "Inferno Incarnate",
  40248. height: math.unit(1e7, "multiverses")
  40249. },
  40250. ]
  40251. ))
  40252. characterMakers.push(() => makeCharacter(
  40253. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40254. {
  40255. front: {
  40256. height: math.unit(8, "feet"),
  40257. weight: math.unit(1200, "lb"),
  40258. name: "Front",
  40259. image: {
  40260. source: "./media/characters/malithee/front.svg",
  40261. extra: 1675/1640,
  40262. bottom: 162/1837
  40263. }
  40264. },
  40265. },
  40266. [
  40267. {
  40268. name: "Mortal Interaction",
  40269. height: math.unit(8, "feet"),
  40270. default: true
  40271. },
  40272. {
  40273. name: "Large",
  40274. height: math.unit(24, "feet")
  40275. },
  40276. {
  40277. name: "Kaiju",
  40278. height: math.unit(240, "feet")
  40279. },
  40280. {
  40281. name: "Megamacro",
  40282. height: math.unit(8000, "feet")
  40283. },
  40284. {
  40285. name: "Continent Cracker",
  40286. height: math.unit(24e6, "feet")
  40287. },
  40288. {
  40289. name: "Earth-Eclipsing",
  40290. height: math.unit(2.4e8, "feet")
  40291. },
  40292. {
  40293. name: "Sol-Swallowing",
  40294. height: math.unit(8e10, "feet")
  40295. },
  40296. {
  40297. name: "Galaxy Gulper",
  40298. height: math.unit(8, "galaxies")
  40299. },
  40300. {
  40301. name: "Light Universal",
  40302. height: math.unit(4, "universes")
  40303. },
  40304. {
  40305. name: "Universe Atoms",
  40306. height: math.unit(1.829e9, "universes")
  40307. },
  40308. {
  40309. name: "Light Multiversal",
  40310. height: math.unit(4, "multiverses")
  40311. },
  40312. {
  40313. name: "Multiverse Atoms",
  40314. height: math.unit(1.829e9, "multiverses")
  40315. },
  40316. {
  40317. name: "Nigh-Omnipresence",
  40318. height: math.unit(8e261, "multiverses")
  40319. },
  40320. ]
  40321. ))
  40322. characterMakers.push(() => makeCharacter(
  40323. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40324. {
  40325. front: {
  40326. height: math.unit(10, "feet"),
  40327. weight: math.unit(1500, "lb"),
  40328. name: "Front",
  40329. image: {
  40330. source: "./media/characters/miles-thestia/front.svg",
  40331. extra: 1812/1727,
  40332. bottom: 86/1898
  40333. }
  40334. },
  40335. back: {
  40336. height: math.unit(10, "feet"),
  40337. weight: math.unit(1500, "lb"),
  40338. name: "Back",
  40339. image: {
  40340. source: "./media/characters/miles-thestia/back.svg",
  40341. extra: 1799/1690,
  40342. bottom: 47/1846
  40343. }
  40344. },
  40345. frontNsfw: {
  40346. height: math.unit(10, "feet"),
  40347. weight: math.unit(1500, "lb"),
  40348. name: "Front (NSFW)",
  40349. image: {
  40350. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40351. extra: 1812/1727,
  40352. bottom: 86/1898
  40353. }
  40354. },
  40355. },
  40356. [
  40357. {
  40358. name: "Mini-Macro",
  40359. height: math.unit(10, "feet"),
  40360. default: true
  40361. },
  40362. ]
  40363. ))
  40364. characterMakers.push(() => makeCharacter(
  40365. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40366. {
  40367. front: {
  40368. height: math.unit(25, "feet"),
  40369. name: "Front",
  40370. image: {
  40371. source: "./media/characters/titan-s-wulf/front.svg",
  40372. extra: 1560/1484,
  40373. bottom: 76/1636
  40374. }
  40375. },
  40376. },
  40377. [
  40378. {
  40379. name: "Smallest",
  40380. height: math.unit(25, "feet"),
  40381. default: true
  40382. },
  40383. {
  40384. name: "Normal",
  40385. height: math.unit(200, "feet")
  40386. },
  40387. {
  40388. name: "Macro",
  40389. height: math.unit(200000, "feet")
  40390. },
  40391. {
  40392. name: "Multiversal Original",
  40393. height: math.unit(10000, "multiverses")
  40394. },
  40395. ]
  40396. ))
  40397. characterMakers.push(() => makeCharacter(
  40398. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40399. {
  40400. front: {
  40401. height: math.unit(8, "feet"),
  40402. weight: math.unit(553, "lb"),
  40403. name: "Front",
  40404. image: {
  40405. source: "./media/characters/tawendeh/front.svg",
  40406. extra: 2365/2268,
  40407. bottom: 83/2448
  40408. }
  40409. },
  40410. frontClothed: {
  40411. height: math.unit(8, "feet"),
  40412. weight: math.unit(553, "lb"),
  40413. name: "Front (Clothed)",
  40414. image: {
  40415. source: "./media/characters/tawendeh/front-clothed.svg",
  40416. extra: 2365/2268,
  40417. bottom: 83/2448
  40418. }
  40419. },
  40420. back: {
  40421. height: math.unit(8, "feet"),
  40422. weight: math.unit(553, "lb"),
  40423. name: "Back",
  40424. image: {
  40425. source: "./media/characters/tawendeh/back.svg",
  40426. extra: 2397/2294,
  40427. bottom: 42/2439
  40428. }
  40429. },
  40430. },
  40431. [
  40432. {
  40433. name: "Mortal Interaction",
  40434. height: math.unit(8, "feet"),
  40435. default: true
  40436. },
  40437. {
  40438. name: "Giant",
  40439. height: math.unit(80, "feet")
  40440. },
  40441. {
  40442. name: "Macro",
  40443. height: math.unit(800, "feet")
  40444. },
  40445. {
  40446. name: "Megamacro",
  40447. height: math.unit(8000, "feet")
  40448. },
  40449. {
  40450. name: "City-Crushing",
  40451. height: math.unit(24000, "feet")
  40452. },
  40453. {
  40454. name: "Mountain-Mashing",
  40455. height: math.unit(80000, "feet")
  40456. },
  40457. {
  40458. name: "Nation Nemesis",
  40459. height: math.unit(8e6, "feet")
  40460. },
  40461. {
  40462. name: "Continent Cracker",
  40463. height: math.unit(24e6, "feet")
  40464. },
  40465. {
  40466. name: "Earth-Eclipsing",
  40467. height: math.unit(2.4e8, "feet")
  40468. },
  40469. {
  40470. name: "Gas Giant Gulper",
  40471. height: math.unit(2.4e9, "feet")
  40472. },
  40473. {
  40474. name: "Sol-Swallowing",
  40475. height: math.unit(8e10, "feet")
  40476. },
  40477. {
  40478. name: "Galaxy Gulper",
  40479. height: math.unit(8, "galaxies")
  40480. },
  40481. {
  40482. name: "Cosmos Churner",
  40483. height: math.unit(8, "universes")
  40484. },
  40485. {
  40486. name: "Omnipotent Otter",
  40487. height: math.unit(80, "universes")
  40488. },
  40489. ]
  40490. ))
  40491. characterMakers.push(() => makeCharacter(
  40492. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40493. {
  40494. front: {
  40495. height: math.unit(2.6, "meters"),
  40496. weight: math.unit(900, "kg"),
  40497. name: "Front",
  40498. image: {
  40499. source: "./media/characters/neesha/front.svg",
  40500. extra: 1803/1653,
  40501. bottom: 128/1931
  40502. }
  40503. },
  40504. },
  40505. [
  40506. {
  40507. name: "Normal",
  40508. height: math.unit(2.6, "meters"),
  40509. default: true
  40510. },
  40511. {
  40512. name: "Macro",
  40513. height: math.unit(50, "meters")
  40514. },
  40515. ]
  40516. ))
  40517. characterMakers.push(() => makeCharacter(
  40518. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40519. {
  40520. front: {
  40521. height: math.unit(5, "feet"),
  40522. weight: math.unit(185, "lb"),
  40523. name: "Front",
  40524. image: {
  40525. source: "./media/characters/kyera/front.svg",
  40526. extra: 1875/1790,
  40527. bottom: 96/1971
  40528. }
  40529. },
  40530. },
  40531. [
  40532. {
  40533. name: "Normal",
  40534. height: math.unit(5, "feet"),
  40535. default: true
  40536. },
  40537. ]
  40538. ))
  40539. characterMakers.push(() => makeCharacter(
  40540. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40541. {
  40542. front: {
  40543. height: math.unit(7 + 6/12, "feet"),
  40544. weight: math.unit(540, "lb"),
  40545. name: "Front",
  40546. image: {
  40547. source: "./media/characters/yuko/front.svg",
  40548. extra: 1282/1222,
  40549. bottom: 101/1383
  40550. }
  40551. },
  40552. frontClothed: {
  40553. height: math.unit(7 + 6/12, "feet"),
  40554. weight: math.unit(540, "lb"),
  40555. name: "Front (Clothed)",
  40556. image: {
  40557. source: "./media/characters/yuko/front-clothed.svg",
  40558. extra: 1282/1222,
  40559. bottom: 101/1383
  40560. }
  40561. },
  40562. },
  40563. [
  40564. {
  40565. name: "Normal",
  40566. height: math.unit(7 + 6/12, "feet"),
  40567. default: true
  40568. },
  40569. {
  40570. name: "Macro",
  40571. height: math.unit(26 + 9/12, "feet")
  40572. },
  40573. {
  40574. name: "Megamacro",
  40575. height: math.unit(300, "feet")
  40576. },
  40577. {
  40578. name: "Gigamacro",
  40579. height: math.unit(5000, "feet")
  40580. },
  40581. {
  40582. name: "Planetary",
  40583. height: math.unit(10000, "miles")
  40584. },
  40585. ]
  40586. ))
  40587. characterMakers.push(() => makeCharacter(
  40588. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40589. {
  40590. front: {
  40591. height: math.unit(8 + 2/12, "feet"),
  40592. weight: math.unit(600, "lb"),
  40593. name: "Front",
  40594. image: {
  40595. source: "./media/characters/deam-nitrel/front.svg",
  40596. extra: 1308/1234,
  40597. bottom: 125/1433
  40598. }
  40599. },
  40600. },
  40601. [
  40602. {
  40603. name: "Normal",
  40604. height: math.unit(8 + 2/12, "feet"),
  40605. default: true
  40606. },
  40607. ]
  40608. ))
  40609. characterMakers.push(() => makeCharacter(
  40610. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40611. {
  40612. front: {
  40613. height: math.unit(6.1, "feet"),
  40614. weight: math.unit(180, "lb"),
  40615. name: "Front",
  40616. image: {
  40617. source: "./media/characters/skyress/front.svg",
  40618. extra: 1045/915,
  40619. bottom: 28/1073
  40620. }
  40621. },
  40622. maw: {
  40623. height: math.unit(1, "feet"),
  40624. name: "Maw",
  40625. image: {
  40626. source: "./media/characters/skyress/maw.svg"
  40627. }
  40628. },
  40629. },
  40630. [
  40631. {
  40632. name: "Normal",
  40633. height: math.unit(6.1, "feet"),
  40634. default: true
  40635. },
  40636. {
  40637. name: "Macro",
  40638. height: math.unit(200, "feet")
  40639. },
  40640. ]
  40641. ))
  40642. characterMakers.push(() => makeCharacter(
  40643. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40644. {
  40645. front: {
  40646. height: math.unit(4 + 2/12, "feet"),
  40647. weight: math.unit(40, "kg"),
  40648. name: "Front",
  40649. image: {
  40650. source: "./media/characters/amethyst-jones/front.svg",
  40651. extra: 1220/1150,
  40652. bottom: 101/1321
  40653. }
  40654. },
  40655. },
  40656. [
  40657. {
  40658. name: "Normal",
  40659. height: math.unit(4 + 2/12, "feet"),
  40660. default: true
  40661. },
  40662. ]
  40663. ))
  40664. characterMakers.push(() => makeCharacter(
  40665. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40666. {
  40667. front: {
  40668. height: math.unit(1.7, "m"),
  40669. weight: math.unit(135, "lb"),
  40670. name: "Front",
  40671. image: {
  40672. source: "./media/characters/jade/front.svg",
  40673. extra: 1818/1767,
  40674. bottom: 32/1850
  40675. }
  40676. },
  40677. back: {
  40678. height: math.unit(1.7, "m"),
  40679. weight: math.unit(135, "lb"),
  40680. name: "Back",
  40681. image: {
  40682. source: "./media/characters/jade/back.svg",
  40683. extra: 1869/1809,
  40684. bottom: 35/1904
  40685. }
  40686. },
  40687. hand: {
  40688. height: math.unit(0.24, "m"),
  40689. name: "Hand",
  40690. image: {
  40691. source: "./media/characters/jade/hand.svg"
  40692. }
  40693. },
  40694. foot: {
  40695. height: math.unit(0.263, "m"),
  40696. name: "Foot",
  40697. image: {
  40698. source: "./media/characters/jade/foot.svg"
  40699. }
  40700. },
  40701. dick: {
  40702. height: math.unit(0.47, "m"),
  40703. name: "Dick",
  40704. image: {
  40705. source: "./media/characters/jade/dick.svg"
  40706. }
  40707. },
  40708. },
  40709. [
  40710. {
  40711. name: "Micro",
  40712. height: math.unit(22, "cm")
  40713. },
  40714. {
  40715. name: "Normal",
  40716. height: math.unit(1.7, "m"),
  40717. default: true
  40718. },
  40719. {
  40720. name: "Macro",
  40721. height: math.unit(152, "m")
  40722. },
  40723. ]
  40724. ))
  40725. characterMakers.push(() => makeCharacter(
  40726. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40727. {
  40728. front: {
  40729. height: math.unit(100, "miles"),
  40730. weight: math.unit(20000, "tons"),
  40731. name: "Front",
  40732. image: {
  40733. source: "./media/characters/cookie/front.svg",
  40734. extra: 1125/1070,
  40735. bottom: 30/1155
  40736. }
  40737. },
  40738. },
  40739. [
  40740. {
  40741. name: "Big",
  40742. height: math.unit(50, "feet")
  40743. },
  40744. {
  40745. name: "Macro",
  40746. height: math.unit(100, "miles"),
  40747. default: true
  40748. },
  40749. {
  40750. name: "Megamacro",
  40751. height: math.unit(90000, "miles")
  40752. },
  40753. ]
  40754. ))
  40755. characterMakers.push(() => makeCharacter(
  40756. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40757. {
  40758. front: {
  40759. height: math.unit(6, "feet"),
  40760. weight: math.unit(145, "lb"),
  40761. name: "Front",
  40762. image: {
  40763. source: "./media/characters/farzian/front.svg",
  40764. extra: 1902/1693,
  40765. bottom: 108/2010
  40766. }
  40767. },
  40768. },
  40769. [
  40770. {
  40771. name: "Macro",
  40772. height: math.unit(500, "feet"),
  40773. default: true
  40774. },
  40775. ]
  40776. ))
  40777. characterMakers.push(() => makeCharacter(
  40778. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40779. {
  40780. front: {
  40781. height: math.unit(3 + 6/12, "feet"),
  40782. weight: math.unit(50, "lb"),
  40783. name: "Front",
  40784. image: {
  40785. source: "./media/characters/kimberly-tilson/front.svg",
  40786. extra: 1400/1322,
  40787. bottom: 36/1436
  40788. }
  40789. },
  40790. back: {
  40791. height: math.unit(3 + 6/12, "feet"),
  40792. weight: math.unit(50, "lb"),
  40793. name: "Back",
  40794. image: {
  40795. source: "./media/characters/kimberly-tilson/back.svg",
  40796. extra: 1370/1307,
  40797. bottom: 20/1390
  40798. }
  40799. },
  40800. },
  40801. [
  40802. {
  40803. name: "Normal",
  40804. height: math.unit(3 + 6/12, "feet"),
  40805. default: true
  40806. },
  40807. ]
  40808. ))
  40809. characterMakers.push(() => makeCharacter(
  40810. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40811. {
  40812. front: {
  40813. height: math.unit(1148, "feet"),
  40814. weight: math.unit(34057, "lb"),
  40815. name: "Front",
  40816. image: {
  40817. source: "./media/characters/harthos/front.svg",
  40818. extra: 1391/1339,
  40819. bottom: 13/1404
  40820. }
  40821. },
  40822. },
  40823. [
  40824. {
  40825. name: "Macro",
  40826. height: math.unit(1148, "feet"),
  40827. default: true
  40828. },
  40829. ]
  40830. ))
  40831. characterMakers.push(() => makeCharacter(
  40832. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40833. {
  40834. front: {
  40835. height: math.unit(15, "feet"),
  40836. name: "Front",
  40837. image: {
  40838. source: "./media/characters/hypatia/front.svg",
  40839. extra: 1653/1591,
  40840. bottom: 79/1732
  40841. }
  40842. },
  40843. },
  40844. [
  40845. {
  40846. name: "Normal",
  40847. height: math.unit(15, "feet")
  40848. },
  40849. {
  40850. name: "Small",
  40851. height: math.unit(300, "feet")
  40852. },
  40853. {
  40854. name: "Macro",
  40855. height: math.unit(2500, "feet"),
  40856. default: true
  40857. },
  40858. {
  40859. name: "Mega Macro",
  40860. height: math.unit(1500, "miles")
  40861. },
  40862. {
  40863. name: "Giga Macro",
  40864. height: math.unit(1.5e6, "miles")
  40865. },
  40866. ]
  40867. ))
  40868. characterMakers.push(() => makeCharacter(
  40869. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40870. {
  40871. front: {
  40872. height: math.unit(6, "feet"),
  40873. weight: math.unit(200, "lb"),
  40874. name: "Front",
  40875. image: {
  40876. source: "./media/characters/wulver/front.svg",
  40877. extra: 1724/1632,
  40878. bottom: 130/1854
  40879. }
  40880. },
  40881. frontNsfw: {
  40882. height: math.unit(6, "feet"),
  40883. weight: math.unit(200, "lb"),
  40884. name: "Front (NSFW)",
  40885. image: {
  40886. source: "./media/characters/wulver/front-nsfw.svg",
  40887. extra: 1724/1632,
  40888. bottom: 130/1854
  40889. }
  40890. },
  40891. },
  40892. [
  40893. {
  40894. name: "Human-Sized",
  40895. height: math.unit(6, "feet")
  40896. },
  40897. {
  40898. name: "Normal",
  40899. height: math.unit(4, "meters"),
  40900. default: true
  40901. },
  40902. {
  40903. name: "Large",
  40904. height: math.unit(6, "m")
  40905. },
  40906. ]
  40907. ))
  40908. characterMakers.push(() => makeCharacter(
  40909. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40910. {
  40911. front: {
  40912. height: math.unit(7, "feet"),
  40913. name: "Front",
  40914. image: {
  40915. source: "./media/characters/maru/front.svg",
  40916. extra: 1595/1570,
  40917. bottom: 0/1595
  40918. }
  40919. },
  40920. },
  40921. [
  40922. {
  40923. name: "Normal",
  40924. height: math.unit(7, "feet"),
  40925. default: true
  40926. },
  40927. {
  40928. name: "Macro",
  40929. height: math.unit(700, "feet")
  40930. },
  40931. {
  40932. name: "Mega Macro",
  40933. height: math.unit(25, "miles")
  40934. },
  40935. ]
  40936. ))
  40937. characterMakers.push(() => makeCharacter(
  40938. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40939. {
  40940. front: {
  40941. height: math.unit(6, "feet"),
  40942. weight: math.unit(170, "lb"),
  40943. name: "Front",
  40944. image: {
  40945. source: "./media/characters/xenon/front.svg",
  40946. extra: 1376/1305,
  40947. bottom: 56/1432
  40948. }
  40949. },
  40950. back: {
  40951. height: math.unit(6, "feet"),
  40952. weight: math.unit(170, "lb"),
  40953. name: "Back",
  40954. image: {
  40955. source: "./media/characters/xenon/back.svg",
  40956. extra: 1328/1259,
  40957. bottom: 95/1423
  40958. }
  40959. },
  40960. maw: {
  40961. height: math.unit(0.52, "feet"),
  40962. name: "Maw",
  40963. image: {
  40964. source: "./media/characters/xenon/maw.svg"
  40965. }
  40966. },
  40967. hand: {
  40968. height: math.unit(0.82, "feet"),
  40969. name: "Hand",
  40970. image: {
  40971. source: "./media/characters/xenon/hand.svg"
  40972. }
  40973. },
  40974. foot: {
  40975. height: math.unit(1.13, "feet"),
  40976. name: "Foot",
  40977. image: {
  40978. source: "./media/characters/xenon/foot.svg"
  40979. }
  40980. },
  40981. },
  40982. [
  40983. {
  40984. name: "Micro",
  40985. height: math.unit(0.8, "inches")
  40986. },
  40987. {
  40988. name: "Normal",
  40989. height: math.unit(6, "feet")
  40990. },
  40991. {
  40992. name: "Macro",
  40993. height: math.unit(50, "feet"),
  40994. default: true
  40995. },
  40996. {
  40997. name: "Macro+",
  40998. height: math.unit(250, "feet")
  40999. },
  41000. {
  41001. name: "Megamacro",
  41002. height: math.unit(1500, "feet")
  41003. },
  41004. ]
  41005. ))
  41006. characterMakers.push(() => makeCharacter(
  41007. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41008. {
  41009. front: {
  41010. height: math.unit(7 + 5/12, "feet"),
  41011. name: "Front",
  41012. image: {
  41013. source: "./media/characters/zane/front.svg",
  41014. extra: 1260/1203,
  41015. bottom: 94/1354
  41016. }
  41017. },
  41018. back: {
  41019. height: math.unit(5.05, "feet"),
  41020. name: "Back",
  41021. image: {
  41022. source: "./media/characters/zane/back.svg",
  41023. extra: 893/829,
  41024. bottom: 30/923
  41025. }
  41026. },
  41027. werewolf: {
  41028. height: math.unit(11, "feet"),
  41029. name: "Werewolf",
  41030. image: {
  41031. source: "./media/characters/zane/werewolf.svg",
  41032. extra: 1383/1323,
  41033. bottom: 89/1472
  41034. }
  41035. },
  41036. foot: {
  41037. height: math.unit(1.46, "feet"),
  41038. name: "Foot",
  41039. image: {
  41040. source: "./media/characters/zane/foot.svg"
  41041. }
  41042. },
  41043. footFront: {
  41044. height: math.unit(0.784, "feet"),
  41045. name: "Foot (Front)",
  41046. image: {
  41047. source: "./media/characters/zane/foot-front.svg"
  41048. }
  41049. },
  41050. dick: {
  41051. height: math.unit(1.95, "feet"),
  41052. name: "Dick",
  41053. image: {
  41054. source: "./media/characters/zane/dick.svg"
  41055. }
  41056. },
  41057. dickWerewolf: {
  41058. height: math.unit(3.77, "feet"),
  41059. name: "Dick (Werewolf)",
  41060. image: {
  41061. source: "./media/characters/zane/dick.svg"
  41062. }
  41063. },
  41064. },
  41065. [
  41066. {
  41067. name: "Normal",
  41068. height: math.unit(7 + 5/12, "feet"),
  41069. default: true
  41070. },
  41071. ]
  41072. ))
  41073. characterMakers.push(() => makeCharacter(
  41074. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41075. {
  41076. front: {
  41077. height: math.unit(6 + 2/12, "feet"),
  41078. weight: math.unit(284, "lb"),
  41079. name: "Front",
  41080. image: {
  41081. source: "./media/characters/benni-desparque/front.svg",
  41082. extra: 1353/1126,
  41083. bottom: 69/1422
  41084. }
  41085. },
  41086. },
  41087. [
  41088. {
  41089. name: "Civilian",
  41090. height: math.unit(6 + 2/12, "feet")
  41091. },
  41092. {
  41093. name: "Normal",
  41094. height: math.unit(98, "feet"),
  41095. default: true
  41096. },
  41097. {
  41098. name: "Kaiju Fighter",
  41099. height: math.unit(268, "feet")
  41100. },
  41101. ]
  41102. ))
  41103. characterMakers.push(() => makeCharacter(
  41104. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41105. {
  41106. front: {
  41107. height: math.unit(5, "feet"),
  41108. weight: math.unit(105, "lb"),
  41109. name: "Front",
  41110. image: {
  41111. source: "./media/characters/maxine/front.svg",
  41112. extra: 1386/1250,
  41113. bottom: 71/1457
  41114. }
  41115. },
  41116. },
  41117. [
  41118. {
  41119. name: "Normal",
  41120. height: math.unit(5, "feet"),
  41121. default: true
  41122. },
  41123. ]
  41124. ))
  41125. characterMakers.push(() => makeCharacter(
  41126. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41127. {
  41128. front: {
  41129. height: math.unit(11 + 7/12, "feet"),
  41130. weight: math.unit(9576, "lb"),
  41131. name: "Front",
  41132. image: {
  41133. source: "./media/characters/scaly/front.svg",
  41134. extra: 888/867,
  41135. bottom: 36/924
  41136. }
  41137. },
  41138. },
  41139. [
  41140. {
  41141. name: "Normal",
  41142. height: math.unit(11 + 7/12, "feet"),
  41143. default: true
  41144. },
  41145. ]
  41146. ))
  41147. characterMakers.push(() => makeCharacter(
  41148. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41149. {
  41150. front: {
  41151. height: math.unit(6 + 3/12, "feet"),
  41152. name: "Front",
  41153. image: {
  41154. source: "./media/characters/saelria/front.svg",
  41155. extra: 1243/1138,
  41156. bottom: 46/1289
  41157. }
  41158. },
  41159. },
  41160. [
  41161. {
  41162. name: "Micro",
  41163. height: math.unit(6, "inches"),
  41164. },
  41165. {
  41166. name: "Normal",
  41167. height: math.unit(6 + 3/12, "feet"),
  41168. default: true
  41169. },
  41170. {
  41171. name: "Macro",
  41172. height: math.unit(25, "feet")
  41173. },
  41174. ]
  41175. ))
  41176. characterMakers.push(() => makeCharacter(
  41177. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41178. {
  41179. front: {
  41180. height: math.unit(80, "meters"),
  41181. weight: math.unit(7000, "tonnes"),
  41182. name: "Front",
  41183. image: {
  41184. source: "./media/characters/tef/front.svg",
  41185. extra: 2036/1991,
  41186. bottom: 54/2090
  41187. }
  41188. },
  41189. back: {
  41190. height: math.unit(80, "meters"),
  41191. weight: math.unit(7000, "tonnes"),
  41192. name: "Back",
  41193. image: {
  41194. source: "./media/characters/tef/back.svg",
  41195. extra: 2036/1991,
  41196. bottom: 54/2090
  41197. }
  41198. },
  41199. },
  41200. [
  41201. {
  41202. name: "Macro",
  41203. height: math.unit(80, "meters"),
  41204. default: true
  41205. },
  41206. ]
  41207. ))
  41208. characterMakers.push(() => makeCharacter(
  41209. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41210. {
  41211. front: {
  41212. height: math.unit(13, "feet"),
  41213. weight: math.unit(6, "tons"),
  41214. name: "Front",
  41215. image: {
  41216. source: "./media/characters/rover/front.svg",
  41217. extra: 1233/1156,
  41218. bottom: 50/1283
  41219. }
  41220. },
  41221. back: {
  41222. height: math.unit(13, "feet"),
  41223. weight: math.unit(6, "tons"),
  41224. name: "Back",
  41225. image: {
  41226. source: "./media/characters/rover/back.svg",
  41227. extra: 1327/1258,
  41228. bottom: 39/1366
  41229. }
  41230. },
  41231. },
  41232. [
  41233. {
  41234. name: "Normal",
  41235. height: math.unit(13, "feet"),
  41236. default: true
  41237. },
  41238. {
  41239. name: "Macro",
  41240. height: math.unit(1300, "feet")
  41241. },
  41242. {
  41243. name: "Megamacro",
  41244. height: math.unit(1300, "miles")
  41245. },
  41246. {
  41247. name: "Gigamacro",
  41248. height: math.unit(1300000, "miles")
  41249. },
  41250. ]
  41251. ))
  41252. characterMakers.push(() => makeCharacter(
  41253. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41254. {
  41255. front: {
  41256. height: math.unit(6, "feet"),
  41257. weight: math.unit(150, "lb"),
  41258. name: "Front",
  41259. image: {
  41260. source: "./media/characters/ariz/front.svg",
  41261. extra: 1401/1346,
  41262. bottom: 5/1406
  41263. }
  41264. },
  41265. },
  41266. [
  41267. {
  41268. name: "Normal",
  41269. height: math.unit(10, "feet"),
  41270. default: true
  41271. },
  41272. ]
  41273. ))
  41274. characterMakers.push(() => makeCharacter(
  41275. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41276. {
  41277. front: {
  41278. height: math.unit(6, "feet"),
  41279. weight: math.unit(140, "lb"),
  41280. name: "Front",
  41281. image: {
  41282. source: "./media/characters/sigrun/front.svg",
  41283. extra: 1418/1359,
  41284. bottom: 27/1445
  41285. }
  41286. },
  41287. },
  41288. [
  41289. {
  41290. name: "Macro",
  41291. height: math.unit(35, "feet"),
  41292. default: true
  41293. },
  41294. ]
  41295. ))
  41296. characterMakers.push(() => makeCharacter(
  41297. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41298. {
  41299. front: {
  41300. height: math.unit(6, "feet"),
  41301. weight: math.unit(150, "lb"),
  41302. name: "Front",
  41303. image: {
  41304. source: "./media/characters/numin/front.svg",
  41305. extra: 1433/1388,
  41306. bottom: 12/1445
  41307. }
  41308. },
  41309. },
  41310. [
  41311. {
  41312. name: "Macro",
  41313. height: math.unit(21.5, "km"),
  41314. default: true
  41315. },
  41316. ]
  41317. ))
  41318. characterMakers.push(() => makeCharacter(
  41319. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41320. {
  41321. front: {
  41322. height: math.unit(6, "feet"),
  41323. weight: math.unit(463, "lb"),
  41324. name: "Front",
  41325. image: {
  41326. source: "./media/characters/melwa/front.svg",
  41327. extra: 1307/1248,
  41328. bottom: 93/1400
  41329. }
  41330. },
  41331. },
  41332. [
  41333. {
  41334. name: "Macro",
  41335. height: math.unit(50, "meters"),
  41336. default: true
  41337. },
  41338. ]
  41339. ))
  41340. characterMakers.push(() => makeCharacter(
  41341. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41342. {
  41343. front: {
  41344. height: math.unit(325, "feet"),
  41345. name: "Front",
  41346. image: {
  41347. source: "./media/characters/zorkaiju/front.svg",
  41348. extra: 1955/1814,
  41349. bottom: 40/1995
  41350. }
  41351. },
  41352. frontExtended: {
  41353. height: math.unit(325, "feet"),
  41354. name: "Front (Extended)",
  41355. image: {
  41356. source: "./media/characters/zorkaiju/front-extended.svg",
  41357. extra: 1955/1814,
  41358. bottom: 40/1995
  41359. }
  41360. },
  41361. side: {
  41362. height: math.unit(325, "feet"),
  41363. name: "Side",
  41364. image: {
  41365. source: "./media/characters/zorkaiju/side.svg",
  41366. extra: 1495/1396,
  41367. bottom: 17/1512
  41368. }
  41369. },
  41370. sideExtended: {
  41371. height: math.unit(325, "feet"),
  41372. name: "Side (Extended)",
  41373. image: {
  41374. source: "./media/characters/zorkaiju/side-extended.svg",
  41375. extra: 1495/1396,
  41376. bottom: 17/1512
  41377. }
  41378. },
  41379. back: {
  41380. height: math.unit(325, "feet"),
  41381. name: "Back",
  41382. image: {
  41383. source: "./media/characters/zorkaiju/back.svg",
  41384. extra: 1959/1821,
  41385. bottom: 31/1990
  41386. }
  41387. },
  41388. backExtended: {
  41389. height: math.unit(325, "feet"),
  41390. name: "Back (Extended)",
  41391. image: {
  41392. source: "./media/characters/zorkaiju/back-extended.svg",
  41393. extra: 1959/1821,
  41394. bottom: 31/1990
  41395. }
  41396. },
  41397. hand: {
  41398. height: math.unit(58.4, "feet"),
  41399. name: "Hand",
  41400. image: {
  41401. source: "./media/characters/zorkaiju/hand.svg"
  41402. }
  41403. },
  41404. handExtended: {
  41405. height: math.unit(61.4, "feet"),
  41406. name: "Hand (Extended)",
  41407. image: {
  41408. source: "./media/characters/zorkaiju/hand-extended.svg"
  41409. }
  41410. },
  41411. foot: {
  41412. height: math.unit(95, "feet"),
  41413. name: "Foot",
  41414. image: {
  41415. source: "./media/characters/zorkaiju/foot.svg"
  41416. }
  41417. },
  41418. leftArm: {
  41419. height: math.unit(59, "feet"),
  41420. name: "Left Arm",
  41421. image: {
  41422. source: "./media/characters/zorkaiju/left-arm.svg"
  41423. }
  41424. },
  41425. rightArm: {
  41426. height: math.unit(59, "feet"),
  41427. name: "Right Arm",
  41428. image: {
  41429. source: "./media/characters/zorkaiju/right-arm.svg"
  41430. }
  41431. },
  41432. tail: {
  41433. height: math.unit(104, "feet"),
  41434. name: "Tail",
  41435. image: {
  41436. source: "./media/characters/zorkaiju/tail.svg"
  41437. }
  41438. },
  41439. tailExtended: {
  41440. height: math.unit(104, "feet"),
  41441. name: "Tail (Extended)",
  41442. image: {
  41443. source: "./media/characters/zorkaiju/tail-extended.svg"
  41444. }
  41445. },
  41446. tailBottom: {
  41447. height: math.unit(104, "feet"),
  41448. name: "Tail Bottom",
  41449. image: {
  41450. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41451. }
  41452. },
  41453. crystal: {
  41454. height: math.unit(27.54, "feet"),
  41455. name: "Crystal",
  41456. image: {
  41457. source: "./media/characters/zorkaiju/crystal.svg"
  41458. }
  41459. },
  41460. },
  41461. [
  41462. {
  41463. name: "Kaiju",
  41464. height: math.unit(325, "feet"),
  41465. default: true
  41466. },
  41467. ]
  41468. ))
  41469. characterMakers.push(() => makeCharacter(
  41470. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41471. {
  41472. front: {
  41473. height: math.unit(6 + 1/12, "feet"),
  41474. weight: math.unit(115, "lb"),
  41475. name: "Front",
  41476. image: {
  41477. source: "./media/characters/bailey-belfry/front.svg",
  41478. extra: 1240/1121,
  41479. bottom: 101/1341
  41480. }
  41481. },
  41482. },
  41483. [
  41484. {
  41485. name: "Normal",
  41486. height: math.unit(6 + 1/12, "feet"),
  41487. default: true
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41493. {
  41494. side: {
  41495. height: math.unit(4, "meters"),
  41496. weight: math.unit(250, "kg"),
  41497. name: "Side",
  41498. image: {
  41499. source: "./media/characters/blacky/side.svg",
  41500. extra: 1027/919,
  41501. bottom: 43/1070
  41502. }
  41503. },
  41504. maw: {
  41505. height: math.unit(1, "meters"),
  41506. name: "Maw",
  41507. image: {
  41508. source: "./media/characters/blacky/maw.svg"
  41509. }
  41510. },
  41511. paw: {
  41512. height: math.unit(1, "meters"),
  41513. name: "Paw",
  41514. image: {
  41515. source: "./media/characters/blacky/paw.svg"
  41516. }
  41517. },
  41518. },
  41519. [
  41520. {
  41521. name: "Normal",
  41522. height: math.unit(4, "meters"),
  41523. default: true
  41524. },
  41525. ]
  41526. ))
  41527. characterMakers.push(() => makeCharacter(
  41528. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41529. {
  41530. front: {
  41531. height: math.unit(170, "cm"),
  41532. weight: math.unit(66, "kg"),
  41533. name: "Front",
  41534. image: {
  41535. source: "./media/characters/thux-ei/front.svg",
  41536. extra: 1109/1011,
  41537. bottom: 8/1117
  41538. }
  41539. },
  41540. },
  41541. [
  41542. {
  41543. name: "Normal",
  41544. height: math.unit(170, "cm"),
  41545. default: true
  41546. },
  41547. ]
  41548. ))
  41549. characterMakers.push(() => makeCharacter(
  41550. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41551. {
  41552. front: {
  41553. height: math.unit(5, "feet"),
  41554. weight: math.unit(120, "lb"),
  41555. name: "Front",
  41556. image: {
  41557. source: "./media/characters/roxanne-voltaire/front.svg",
  41558. extra: 1901/1779,
  41559. bottom: 53/1954
  41560. }
  41561. },
  41562. },
  41563. [
  41564. {
  41565. name: "Normal",
  41566. height: math.unit(5, "feet"),
  41567. default: true
  41568. },
  41569. {
  41570. name: "Giant",
  41571. height: math.unit(50, "feet")
  41572. },
  41573. {
  41574. name: "Titan",
  41575. height: math.unit(500, "feet")
  41576. },
  41577. {
  41578. name: "Macro",
  41579. height: math.unit(5000, "feet")
  41580. },
  41581. {
  41582. name: "Megamacro",
  41583. height: math.unit(50000, "feet")
  41584. },
  41585. {
  41586. name: "Gigamacro",
  41587. height: math.unit(500000, "feet")
  41588. },
  41589. {
  41590. name: "Teramacro",
  41591. height: math.unit(5e6, "feet")
  41592. },
  41593. ]
  41594. ))
  41595. characterMakers.push(() => makeCharacter(
  41596. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41597. {
  41598. front: {
  41599. height: math.unit(6 + 2/12, "feet"),
  41600. name: "Front",
  41601. image: {
  41602. source: "./media/characters/squeaks/front.svg",
  41603. extra: 1823/1768,
  41604. bottom: 138/1961
  41605. }
  41606. },
  41607. },
  41608. [
  41609. {
  41610. name: "Micro",
  41611. height: math.unit(0.5, "inches")
  41612. },
  41613. {
  41614. name: "Normal",
  41615. height: math.unit(6 + 2/12, "feet"),
  41616. default: true
  41617. },
  41618. {
  41619. name: "Macro",
  41620. height: math.unit(600, "feet")
  41621. },
  41622. ]
  41623. ))
  41624. characterMakers.push(() => makeCharacter(
  41625. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41626. {
  41627. front: {
  41628. height: math.unit(1.72, "meters"),
  41629. name: "Front",
  41630. image: {
  41631. source: "./media/characters/archinger/front.svg",
  41632. extra: 1861/1675,
  41633. bottom: 125/1986
  41634. }
  41635. },
  41636. back: {
  41637. height: math.unit(1.72, "meters"),
  41638. name: "Back",
  41639. image: {
  41640. source: "./media/characters/archinger/back.svg",
  41641. extra: 1844/1701,
  41642. bottom: 104/1948
  41643. }
  41644. },
  41645. cock: {
  41646. height: math.unit(0.59, "feet"),
  41647. name: "Cock",
  41648. image: {
  41649. source: "./media/characters/archinger/cock.svg"
  41650. }
  41651. },
  41652. },
  41653. [
  41654. {
  41655. name: "Normal",
  41656. height: math.unit(1.72, "meters"),
  41657. default: true
  41658. },
  41659. {
  41660. name: "Macro",
  41661. height: math.unit(84, "meters")
  41662. },
  41663. {
  41664. name: "Macro+",
  41665. height: math.unit(112, "meters")
  41666. },
  41667. {
  41668. name: "Macro++",
  41669. height: math.unit(960, "meters")
  41670. },
  41671. {
  41672. name: "Macro+++",
  41673. height: math.unit(4, "km")
  41674. },
  41675. {
  41676. name: "Macro++++",
  41677. height: math.unit(48, "km")
  41678. },
  41679. {
  41680. name: "Macro+++++",
  41681. height: math.unit(4500, "km")
  41682. },
  41683. ]
  41684. ))
  41685. characterMakers.push(() => makeCharacter(
  41686. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41687. {
  41688. front: {
  41689. height: math.unit(5 + 5/12, "feet"),
  41690. name: "Front",
  41691. image: {
  41692. source: "./media/characters/alsnapz/front.svg",
  41693. extra: 1157/1065,
  41694. bottom: 42/1199
  41695. }
  41696. },
  41697. },
  41698. [
  41699. {
  41700. name: "Normal",
  41701. height: math.unit(5 + 5/12, "feet"),
  41702. default: true
  41703. },
  41704. ]
  41705. ))
  41706. characterMakers.push(() => makeCharacter(
  41707. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41708. {
  41709. side: {
  41710. height: math.unit(3.2, "earths"),
  41711. name: "Side",
  41712. image: {
  41713. source: "./media/characters/mag/side.svg",
  41714. extra: 1331/1008,
  41715. bottom: 52/1383
  41716. }
  41717. },
  41718. wing: {
  41719. height: math.unit(1.94, "earths"),
  41720. name: "Wing",
  41721. image: {
  41722. source: "./media/characters/mag/wing.svg"
  41723. }
  41724. },
  41725. dick: {
  41726. height: math.unit(1.8, "earths"),
  41727. name: "Dick",
  41728. image: {
  41729. source: "./media/characters/mag/dick.svg"
  41730. }
  41731. },
  41732. ass: {
  41733. height: math.unit(1.33, "earths"),
  41734. name: "Ass",
  41735. image: {
  41736. source: "./media/characters/mag/ass.svg"
  41737. }
  41738. },
  41739. head: {
  41740. height: math.unit(1.1, "earths"),
  41741. name: "Head",
  41742. image: {
  41743. source: "./media/characters/mag/head.svg"
  41744. }
  41745. },
  41746. maw: {
  41747. height: math.unit(1.62, "earths"),
  41748. name: "Maw",
  41749. image: {
  41750. source: "./media/characters/mag/maw.svg"
  41751. }
  41752. },
  41753. },
  41754. [
  41755. {
  41756. name: "Small",
  41757. height: math.unit(162, "feet")
  41758. },
  41759. {
  41760. name: "Normal",
  41761. height: math.unit(3.2, "earths"),
  41762. default: true
  41763. },
  41764. ]
  41765. ))
  41766. characterMakers.push(() => makeCharacter(
  41767. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41768. {
  41769. front: {
  41770. height: math.unit(512, "feet"),
  41771. weight: math.unit(63509, "tonnes"),
  41772. name: "Front",
  41773. image: {
  41774. source: "./media/characters/vorrel-harroc/front.svg",
  41775. extra: 1075/1063,
  41776. bottom: 62/1137
  41777. }
  41778. },
  41779. },
  41780. [
  41781. {
  41782. name: "Normal",
  41783. height: math.unit(10, "feet")
  41784. },
  41785. {
  41786. name: "Macro",
  41787. height: math.unit(512, "feet"),
  41788. default: true
  41789. },
  41790. {
  41791. name: "Megamacro",
  41792. height: math.unit(256, "miles")
  41793. },
  41794. {
  41795. name: "Gigamacro",
  41796. height: math.unit(4096, "miles")
  41797. },
  41798. ]
  41799. ))
  41800. characterMakers.push(() => makeCharacter(
  41801. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41802. {
  41803. side: {
  41804. height: math.unit(50, "feet"),
  41805. name: "Side",
  41806. image: {
  41807. source: "./media/characters/froimar/side.svg",
  41808. extra: 855/638,
  41809. bottom: 99/954
  41810. }
  41811. },
  41812. },
  41813. [
  41814. {
  41815. name: "Macro",
  41816. height: math.unit(50, "feet"),
  41817. default: true
  41818. },
  41819. ]
  41820. ))
  41821. characterMakers.push(() => makeCharacter(
  41822. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41823. {
  41824. front: {
  41825. height: math.unit(210, "miles"),
  41826. name: "Front",
  41827. image: {
  41828. source: "./media/characters/timothy/front.svg",
  41829. extra: 1007/943,
  41830. bottom: 62/1069
  41831. }
  41832. },
  41833. frontSkirt: {
  41834. height: math.unit(210, "miles"),
  41835. name: "Front (Skirt)",
  41836. image: {
  41837. source: "./media/characters/timothy/front-skirt.svg",
  41838. extra: 1007/943,
  41839. bottom: 62/1069
  41840. }
  41841. },
  41842. frontCoat: {
  41843. height: math.unit(210, "miles"),
  41844. name: "Front (Coat)",
  41845. image: {
  41846. source: "./media/characters/timothy/front-coat.svg",
  41847. extra: 1007/943,
  41848. bottom: 62/1069
  41849. }
  41850. },
  41851. },
  41852. [
  41853. {
  41854. name: "Macro",
  41855. height: math.unit(210, "miles"),
  41856. default: true
  41857. },
  41858. {
  41859. name: "Megamacro",
  41860. height: math.unit(210000, "miles")
  41861. },
  41862. ]
  41863. ))
  41864. characterMakers.push(() => makeCharacter(
  41865. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41866. {
  41867. front: {
  41868. height: math.unit(188, "feet"),
  41869. name: "Front",
  41870. image: {
  41871. source: "./media/characters/pyotr/front.svg",
  41872. extra: 1912/1826,
  41873. bottom: 18/1930
  41874. }
  41875. },
  41876. },
  41877. [
  41878. {
  41879. name: "Macro",
  41880. height: math.unit(188, "feet"),
  41881. default: true
  41882. },
  41883. {
  41884. name: "Megamacro",
  41885. height: math.unit(8, "miles")
  41886. },
  41887. ]
  41888. ))
  41889. characterMakers.push(() => makeCharacter(
  41890. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41891. {
  41892. side: {
  41893. height: math.unit(10, "feet"),
  41894. weight: math.unit(4500, "lb"),
  41895. name: "Side",
  41896. image: {
  41897. source: "./media/characters/ackart/side.svg",
  41898. extra: 1776/1668,
  41899. bottom: 116/1892
  41900. }
  41901. },
  41902. },
  41903. [
  41904. {
  41905. name: "Normal",
  41906. height: math.unit(10, "feet"),
  41907. default: true
  41908. },
  41909. ]
  41910. ))
  41911. characterMakers.push(() => makeCharacter(
  41912. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41913. {
  41914. side: {
  41915. height: math.unit(21, "feet"),
  41916. name: "Side",
  41917. image: {
  41918. source: "./media/characters/nolow/side.svg",
  41919. extra: 1484/1434,
  41920. bottom: 85/1569
  41921. }
  41922. },
  41923. sideErect: {
  41924. height: math.unit(21, "feet"),
  41925. name: "Side-erect",
  41926. image: {
  41927. source: "./media/characters/nolow/side-erect.svg",
  41928. extra: 1484/1434,
  41929. bottom: 85/1569
  41930. }
  41931. },
  41932. },
  41933. [
  41934. {
  41935. name: "Regular",
  41936. height: math.unit(12, "feet")
  41937. },
  41938. {
  41939. name: "Big Chee",
  41940. height: math.unit(21, "feet"),
  41941. default: true
  41942. },
  41943. ]
  41944. ))
  41945. characterMakers.push(() => makeCharacter(
  41946. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41947. {
  41948. front: {
  41949. height: math.unit(7, "feet"),
  41950. weight: math.unit(250, "lb"),
  41951. name: "Front",
  41952. image: {
  41953. source: "./media/characters/nines/front.svg",
  41954. extra: 1741/1607,
  41955. bottom: 41/1782
  41956. }
  41957. },
  41958. side: {
  41959. height: math.unit(7, "feet"),
  41960. weight: math.unit(250, "lb"),
  41961. name: "Side",
  41962. image: {
  41963. source: "./media/characters/nines/side.svg",
  41964. extra: 1854/1735,
  41965. bottom: 93/1947
  41966. }
  41967. },
  41968. back: {
  41969. height: math.unit(7, "feet"),
  41970. weight: math.unit(250, "lb"),
  41971. name: "Back",
  41972. image: {
  41973. source: "./media/characters/nines/back.svg",
  41974. extra: 1748/1615,
  41975. bottom: 20/1768
  41976. }
  41977. },
  41978. },
  41979. [
  41980. {
  41981. name: "Megamacro",
  41982. height: math.unit(99, "km"),
  41983. default: true
  41984. },
  41985. ]
  41986. ))
  41987. characterMakers.push(() => makeCharacter(
  41988. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41989. {
  41990. front: {
  41991. height: math.unit(5 + 10/12, "feet"),
  41992. weight: math.unit(210, "lb"),
  41993. name: "Front",
  41994. image: {
  41995. source: "./media/characters/zenith/front.svg",
  41996. extra: 1531/1452,
  41997. bottom: 198/1729
  41998. }
  41999. },
  42000. back: {
  42001. height: math.unit(5 + 10/12, "feet"),
  42002. weight: math.unit(210, "lb"),
  42003. name: "Back",
  42004. image: {
  42005. source: "./media/characters/zenith/back.svg",
  42006. extra: 1571/1487,
  42007. bottom: 75/1646
  42008. }
  42009. },
  42010. },
  42011. [
  42012. {
  42013. name: "Normal",
  42014. height: math.unit(5 + 10/12, "feet"),
  42015. default: true
  42016. }
  42017. ]
  42018. ))
  42019. characterMakers.push(() => makeCharacter(
  42020. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42021. {
  42022. front: {
  42023. height: math.unit(4, "feet"),
  42024. weight: math.unit(60, "lb"),
  42025. name: "Front",
  42026. image: {
  42027. source: "./media/characters/jasper/front.svg",
  42028. extra: 1450/1379,
  42029. bottom: 19/1469
  42030. }
  42031. },
  42032. },
  42033. [
  42034. {
  42035. name: "Normal",
  42036. height: math.unit(4, "feet"),
  42037. default: true
  42038. },
  42039. ]
  42040. ))
  42041. characterMakers.push(() => makeCharacter(
  42042. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42043. {
  42044. front: {
  42045. height: math.unit(6 + 5/12, "feet"),
  42046. weight: math.unit(290, "lb"),
  42047. name: "Front",
  42048. image: {
  42049. source: "./media/characters/tiberius-thyben/front.svg",
  42050. extra: 757/739,
  42051. bottom: 39/796
  42052. }
  42053. },
  42054. },
  42055. [
  42056. {
  42057. name: "Micro",
  42058. height: math.unit(1.5, "inches")
  42059. },
  42060. {
  42061. name: "Normal",
  42062. height: math.unit(6 + 5/12, "feet"),
  42063. default: true
  42064. },
  42065. {
  42066. name: "Macro",
  42067. height: math.unit(300, "feet")
  42068. },
  42069. ]
  42070. ))
  42071. characterMakers.push(() => makeCharacter(
  42072. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42073. {
  42074. front: {
  42075. height: math.unit(5 + 6/12, "feet"),
  42076. weight: math.unit(60, "kg"),
  42077. name: "Front",
  42078. image: {
  42079. source: "./media/characters/sabre/front.svg",
  42080. extra: 738/671,
  42081. bottom: 27/765
  42082. }
  42083. },
  42084. },
  42085. [
  42086. {
  42087. name: "Teeny",
  42088. height: math.unit(2, "inches")
  42089. },
  42090. {
  42091. name: "Smol",
  42092. height: math.unit(8, "inches")
  42093. },
  42094. {
  42095. name: "Normal",
  42096. height: math.unit(5 + 6/12, "feet"),
  42097. default: true
  42098. },
  42099. {
  42100. name: "Mini-Macro",
  42101. height: math.unit(15, "feet")
  42102. },
  42103. {
  42104. name: "Macro",
  42105. height: math.unit(50, "feet")
  42106. },
  42107. ]
  42108. ))
  42109. characterMakers.push(() => makeCharacter(
  42110. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42111. {
  42112. front: {
  42113. height: math.unit(6 + 4/12, "feet"),
  42114. weight: math.unit(170, "lb"),
  42115. name: "Front",
  42116. image: {
  42117. source: "./media/characters/charlie/front.svg",
  42118. extra: 1348/1228,
  42119. bottom: 15/1363
  42120. }
  42121. },
  42122. },
  42123. [
  42124. {
  42125. name: "Macro",
  42126. height: math.unit(1700, "meters"),
  42127. default: true
  42128. },
  42129. {
  42130. name: "MegaMacro",
  42131. height: math.unit(20400, "meters")
  42132. },
  42133. ]
  42134. ))
  42135. characterMakers.push(() => makeCharacter(
  42136. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42137. {
  42138. front: {
  42139. height: math.unit(6 + 3/12, "feet"),
  42140. weight: math.unit(185, "lb"),
  42141. name: "Front",
  42142. image: {
  42143. source: "./media/characters/susan-grant/front.svg",
  42144. extra: 1351/1327,
  42145. bottom: 26/1377
  42146. }
  42147. },
  42148. },
  42149. [
  42150. {
  42151. name: "Normal",
  42152. height: math.unit(6 + 3/12, "feet"),
  42153. default: true
  42154. },
  42155. {
  42156. name: "Macro",
  42157. height: math.unit(225, "feet")
  42158. },
  42159. {
  42160. name: "Macro+",
  42161. height: math.unit(900, "feet")
  42162. },
  42163. {
  42164. name: "MegaMacro",
  42165. height: math.unit(14400, "feet")
  42166. },
  42167. ]
  42168. ))
  42169. characterMakers.push(() => makeCharacter(
  42170. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42171. {
  42172. front: {
  42173. height: math.unit(5 + 4/12, "feet"),
  42174. weight: math.unit(110, "lb"),
  42175. name: "Front",
  42176. image: {
  42177. source: "./media/characters/axel-isanov/front.svg",
  42178. extra: 1096/1065,
  42179. bottom: 13/1109
  42180. }
  42181. },
  42182. },
  42183. [
  42184. {
  42185. name: "Normal",
  42186. height: math.unit(5 + 4/12, "feet"),
  42187. default: true
  42188. },
  42189. ]
  42190. ))
  42191. characterMakers.push(() => makeCharacter(
  42192. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42193. {
  42194. front: {
  42195. height: math.unit(9, "feet"),
  42196. weight: math.unit(467, "lb"),
  42197. name: "Front",
  42198. image: {
  42199. source: "./media/characters/necahual/front.svg",
  42200. extra: 920/873,
  42201. bottom: 26/946
  42202. }
  42203. },
  42204. back: {
  42205. height: math.unit(9, "feet"),
  42206. weight: math.unit(467, "lb"),
  42207. name: "Back",
  42208. image: {
  42209. source: "./media/characters/necahual/back.svg",
  42210. extra: 930/884,
  42211. bottom: 16/946
  42212. }
  42213. },
  42214. frontUnderwear: {
  42215. height: math.unit(9, "feet"),
  42216. weight: math.unit(467, "lb"),
  42217. name: "Front (Underwear)",
  42218. image: {
  42219. source: "./media/characters/necahual/front-underwear.svg",
  42220. extra: 920/873,
  42221. bottom: 26/946
  42222. }
  42223. },
  42224. frontDressed: {
  42225. height: math.unit(9, "feet"),
  42226. weight: math.unit(467, "lb"),
  42227. name: "Front (Dressed)",
  42228. image: {
  42229. source: "./media/characters/necahual/front-dressed.svg",
  42230. extra: 920/873,
  42231. bottom: 26/946
  42232. }
  42233. },
  42234. },
  42235. [
  42236. {
  42237. name: "Comprsesed",
  42238. height: math.unit(9, "feet")
  42239. },
  42240. {
  42241. name: "Natural",
  42242. height: math.unit(15, "feet"),
  42243. default: true
  42244. },
  42245. {
  42246. name: "Boosted",
  42247. height: math.unit(50, "feet")
  42248. },
  42249. {
  42250. name: "Boosted+",
  42251. height: math.unit(150, "feet")
  42252. },
  42253. {
  42254. name: "Max",
  42255. height: math.unit(500, "feet")
  42256. },
  42257. ]
  42258. ))
  42259. characterMakers.push(() => makeCharacter(
  42260. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42261. {
  42262. front: {
  42263. height: math.unit(22 + 1/12, "feet"),
  42264. weight: math.unit(3200, "lb"),
  42265. name: "Front",
  42266. image: {
  42267. source: "./media/characters/theo-acacia/front.svg",
  42268. extra: 1796/1741,
  42269. bottom: 83/1879
  42270. }
  42271. },
  42272. frontUnderwear: {
  42273. height: math.unit(22 + 1/12, "feet"),
  42274. weight: math.unit(3200, "lb"),
  42275. name: "Front (Underwear)",
  42276. image: {
  42277. source: "./media/characters/theo-acacia/front-underwear.svg",
  42278. extra: 1796/1741,
  42279. bottom: 83/1879
  42280. }
  42281. },
  42282. frontNude: {
  42283. height: math.unit(22 + 1/12, "feet"),
  42284. weight: math.unit(3200, "lb"),
  42285. name: "Front (Nude)",
  42286. image: {
  42287. source: "./media/characters/theo-acacia/front-nude.svg",
  42288. extra: 1796/1741,
  42289. bottom: 83/1879
  42290. }
  42291. },
  42292. },
  42293. [
  42294. {
  42295. name: "Normal",
  42296. height: math.unit(22 + 1/12, "feet"),
  42297. default: true
  42298. },
  42299. ]
  42300. ))
  42301. characterMakers.push(() => makeCharacter(
  42302. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42303. {
  42304. front: {
  42305. height: math.unit(20, "feet"),
  42306. name: "Front",
  42307. image: {
  42308. source: "./media/characters/astra/front.svg",
  42309. extra: 1850/1714,
  42310. bottom: 106/1956
  42311. }
  42312. },
  42313. frontUndressed: {
  42314. height: math.unit(20, "feet"),
  42315. name: "Front (Undressed)",
  42316. image: {
  42317. source: "./media/characters/astra/front-undressed.svg",
  42318. extra: 1926/1749,
  42319. bottom: 0/1926
  42320. }
  42321. },
  42322. hand: {
  42323. height: math.unit(1.53, "feet"),
  42324. name: "Hand",
  42325. image: {
  42326. source: "./media/characters/astra/hand.svg"
  42327. }
  42328. },
  42329. paw: {
  42330. height: math.unit(1.53, "feet"),
  42331. name: "Paw",
  42332. image: {
  42333. source: "./media/characters/astra/paw.svg"
  42334. }
  42335. },
  42336. },
  42337. [
  42338. {
  42339. name: "Smallest",
  42340. height: math.unit(20, "feet")
  42341. },
  42342. {
  42343. name: "Normal",
  42344. height: math.unit(1e9, "miles"),
  42345. default: true
  42346. },
  42347. {
  42348. name: "Larger",
  42349. height: math.unit(5, "multiverses")
  42350. },
  42351. {
  42352. name: "Largest",
  42353. height: math.unit(1e9, "multiverses")
  42354. },
  42355. ]
  42356. ))
  42357. characterMakers.push(() => makeCharacter(
  42358. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42359. {
  42360. front: {
  42361. height: math.unit(8, "feet"),
  42362. name: "Front",
  42363. image: {
  42364. source: "./media/characters/breanna/front.svg",
  42365. extra: 1912/1632,
  42366. bottom: 33/1945
  42367. }
  42368. },
  42369. },
  42370. [
  42371. {
  42372. name: "Smallest",
  42373. height: math.unit(8, "feet")
  42374. },
  42375. {
  42376. name: "Normal",
  42377. height: math.unit(1, "mile"),
  42378. default: true
  42379. },
  42380. {
  42381. name: "Maximum",
  42382. height: math.unit(1500000000000, "lightyears")
  42383. },
  42384. ]
  42385. ))
  42386. characterMakers.push(() => makeCharacter(
  42387. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42388. {
  42389. front: {
  42390. height: math.unit(5 + 11/12, "feet"),
  42391. weight: math.unit(155, "lb"),
  42392. name: "Front",
  42393. image: {
  42394. source: "./media/characters/cai/front.svg",
  42395. extra: 1823/1702,
  42396. bottom: 32/1855
  42397. }
  42398. },
  42399. back: {
  42400. height: math.unit(5 + 11/12, "feet"),
  42401. weight: math.unit(155, "lb"),
  42402. name: "Back",
  42403. image: {
  42404. source: "./media/characters/cai/back.svg",
  42405. extra: 1809/1708,
  42406. bottom: 31/1840
  42407. }
  42408. },
  42409. },
  42410. [
  42411. {
  42412. name: "Normal",
  42413. height: math.unit(5 + 11/12, "feet"),
  42414. default: true
  42415. },
  42416. {
  42417. name: "Big",
  42418. height: math.unit(15, "feet")
  42419. },
  42420. {
  42421. name: "Macro",
  42422. height: math.unit(200, "feet")
  42423. },
  42424. ]
  42425. ))
  42426. characterMakers.push(() => makeCharacter(
  42427. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42428. {
  42429. front: {
  42430. height: math.unit(5 + 6/12, "feet"),
  42431. weight: math.unit(160, "lb"),
  42432. name: "Front",
  42433. image: {
  42434. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42435. extra: 1227/1174,
  42436. bottom: 37/1264
  42437. }
  42438. },
  42439. },
  42440. [
  42441. {
  42442. name: "Macro",
  42443. height: math.unit(444, "meters"),
  42444. default: true
  42445. },
  42446. ]
  42447. ))
  42448. characterMakers.push(() => makeCharacter(
  42449. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42450. {
  42451. front: {
  42452. height: math.unit(18 + 7/12, "feet"),
  42453. name: "Front",
  42454. image: {
  42455. source: "./media/characters/rex/front.svg",
  42456. extra: 1941/1807,
  42457. bottom: 66/2007
  42458. }
  42459. },
  42460. back: {
  42461. height: math.unit(18 + 7/12, "feet"),
  42462. name: "Back",
  42463. image: {
  42464. source: "./media/characters/rex/back.svg",
  42465. extra: 1937/1822,
  42466. bottom: 42/1979
  42467. }
  42468. },
  42469. boot: {
  42470. height: math.unit(3.45, "feet"),
  42471. name: "Boot",
  42472. image: {
  42473. source: "./media/characters/rex/boot.svg"
  42474. }
  42475. },
  42476. paw: {
  42477. height: math.unit(4.17, "feet"),
  42478. name: "Paw",
  42479. image: {
  42480. source: "./media/characters/rex/paw.svg"
  42481. }
  42482. },
  42483. head: {
  42484. height: math.unit(6.728, "feet"),
  42485. name: "Head",
  42486. image: {
  42487. source: "./media/characters/rex/head.svg"
  42488. }
  42489. },
  42490. },
  42491. [
  42492. {
  42493. name: "Nano",
  42494. height: math.unit(18 + 7/12, "feet")
  42495. },
  42496. {
  42497. name: "Micro",
  42498. height: math.unit(1.5, "megameters")
  42499. },
  42500. {
  42501. name: "Normal",
  42502. height: math.unit(440, "megameters"),
  42503. default: true
  42504. },
  42505. {
  42506. name: "Macro",
  42507. height: math.unit(2.5, "gigameters")
  42508. },
  42509. {
  42510. name: "Gigamacro",
  42511. height: math.unit(2, "galaxies")
  42512. },
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42517. {
  42518. side: {
  42519. height: math.unit(32, "feet"),
  42520. weight: math.unit(250000, "lb"),
  42521. name: "Side",
  42522. image: {
  42523. source: "./media/characters/silverwing/side.svg",
  42524. extra: 1100/1019,
  42525. bottom: 204/1304
  42526. }
  42527. },
  42528. },
  42529. [
  42530. {
  42531. name: "Normal",
  42532. height: math.unit(32, "feet"),
  42533. default: true
  42534. },
  42535. ]
  42536. ))
  42537. characterMakers.push(() => makeCharacter(
  42538. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42539. {
  42540. front: {
  42541. height: math.unit(6 + 6/12, "feet"),
  42542. weight: math.unit(350, "lb"),
  42543. name: "Front",
  42544. image: {
  42545. source: "./media/characters/tristan-hawthorne/front.svg",
  42546. extra: 1159/1124,
  42547. bottom: 37/1196
  42548. },
  42549. form: "labrador",
  42550. default: true
  42551. },
  42552. skunkFront: {
  42553. height: math.unit(4 + 6/12, "feet"),
  42554. weight: math.unit(120, "lb"),
  42555. name: "Front",
  42556. image: {
  42557. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42558. extra: 1609/1551,
  42559. bottom: 169/1778
  42560. },
  42561. form: "skunk",
  42562. default: true
  42563. },
  42564. },
  42565. [
  42566. {
  42567. name: "Normal",
  42568. height: math.unit(6 + 6/12, "feet"),
  42569. form: "labrador",
  42570. default: true
  42571. },
  42572. {
  42573. name: "Normal",
  42574. height: math.unit(4 + 6/12, "feet"),
  42575. form: "skunk",
  42576. default: true
  42577. },
  42578. ],
  42579. {
  42580. "labrador": {
  42581. name: "Labrador",
  42582. default: true
  42583. },
  42584. "skunk": {
  42585. name: "Skunk"
  42586. }
  42587. }
  42588. ))
  42589. characterMakers.push(() => makeCharacter(
  42590. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42591. {
  42592. front: {
  42593. height: math.unit(5 + 11/12, "feet"),
  42594. weight: math.unit(190, "lb"),
  42595. name: "Front",
  42596. image: {
  42597. source: "./media/characters/mizu/front.svg",
  42598. extra: 1988/1788,
  42599. bottom: 14/2002
  42600. }
  42601. },
  42602. },
  42603. [
  42604. {
  42605. name: "Normal",
  42606. height: math.unit(5 + 11/12, "feet"),
  42607. default: true
  42608. },
  42609. ]
  42610. ))
  42611. characterMakers.push(() => makeCharacter(
  42612. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42613. {
  42614. front: {
  42615. height: math.unit(1.7, "feet"),
  42616. weight: math.unit(50, "lb"),
  42617. name: "Front",
  42618. image: {
  42619. source: "./media/characters/dechroma/front.svg",
  42620. extra: 1095/859,
  42621. bottom: 64/1159
  42622. }
  42623. },
  42624. },
  42625. [
  42626. {
  42627. name: "Normal",
  42628. height: math.unit(1.7, "feet"),
  42629. default: true
  42630. },
  42631. ]
  42632. ))
  42633. characterMakers.push(() => makeCharacter(
  42634. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42635. {
  42636. side: {
  42637. height: math.unit(30, "feet"),
  42638. name: "Side",
  42639. image: {
  42640. source: "./media/characters/veluren-thanazel/side.svg",
  42641. extra: 1611/633,
  42642. bottom: 118/1729
  42643. }
  42644. },
  42645. front: {
  42646. height: math.unit(30, "feet"),
  42647. name: "Front",
  42648. image: {
  42649. source: "./media/characters/veluren-thanazel/front.svg",
  42650. extra: 1486/636,
  42651. bottom: 238/1724
  42652. }
  42653. },
  42654. head: {
  42655. height: math.unit(21.4, "feet"),
  42656. name: "Head",
  42657. image: {
  42658. source: "./media/characters/veluren-thanazel/head.svg"
  42659. }
  42660. },
  42661. genitals: {
  42662. height: math.unit(19.4, "feet"),
  42663. name: "Genitals",
  42664. image: {
  42665. source: "./media/characters/veluren-thanazel/genitals.svg"
  42666. }
  42667. },
  42668. },
  42669. [
  42670. {
  42671. name: "Social",
  42672. height: math.unit(6, "feet")
  42673. },
  42674. {
  42675. name: "Play",
  42676. height: math.unit(12, "feet")
  42677. },
  42678. {
  42679. name: "True",
  42680. height: math.unit(30, "feet"),
  42681. default: true
  42682. },
  42683. ]
  42684. ))
  42685. characterMakers.push(() => makeCharacter(
  42686. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42687. {
  42688. front: {
  42689. height: math.unit(7 + 6/12, "feet"),
  42690. weight: math.unit(500, "kg"),
  42691. name: "Front",
  42692. image: {
  42693. source: "./media/characters/arcturas/front.svg",
  42694. extra: 1700/1500,
  42695. bottom: 145/1845
  42696. }
  42697. },
  42698. },
  42699. [
  42700. {
  42701. name: "Normal",
  42702. height: math.unit(7 + 6/12, "feet"),
  42703. default: true
  42704. },
  42705. ]
  42706. ))
  42707. characterMakers.push(() => makeCharacter(
  42708. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42709. {
  42710. side: {
  42711. height: math.unit(6, "feet"),
  42712. weight: math.unit(2, "tons"),
  42713. name: "Side",
  42714. image: {
  42715. source: "./media/characters/vitaen/side.svg",
  42716. extra: 1157/617,
  42717. bottom: 122/1279
  42718. }
  42719. },
  42720. },
  42721. [
  42722. {
  42723. name: "Normal",
  42724. height: math.unit(6, "feet"),
  42725. default: true
  42726. },
  42727. ]
  42728. ))
  42729. characterMakers.push(() => makeCharacter(
  42730. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42731. {
  42732. front: {
  42733. height: math.unit(19, "feet"),
  42734. name: "Front",
  42735. image: {
  42736. source: "./media/characters/fia-dreamweaver/front.svg",
  42737. extra: 1630/1504,
  42738. bottom: 25/1655
  42739. }
  42740. },
  42741. },
  42742. [
  42743. {
  42744. name: "Normal",
  42745. height: math.unit(19, "feet"),
  42746. default: true
  42747. },
  42748. ]
  42749. ))
  42750. characterMakers.push(() => makeCharacter(
  42751. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42752. {
  42753. front: {
  42754. height: math.unit(5 + 4/12, "feet"),
  42755. name: "Front",
  42756. image: {
  42757. source: "./media/characters/artan/front.svg",
  42758. extra: 1618/1535,
  42759. bottom: 46/1664
  42760. }
  42761. },
  42762. back: {
  42763. height: math.unit(5 + 4/12, "feet"),
  42764. name: "Back",
  42765. image: {
  42766. source: "./media/characters/artan/back.svg",
  42767. extra: 1618/1543,
  42768. bottom: 31/1649
  42769. }
  42770. },
  42771. },
  42772. [
  42773. {
  42774. name: "Normal",
  42775. height: math.unit(5 + 4/12, "feet"),
  42776. default: true
  42777. },
  42778. ]
  42779. ))
  42780. characterMakers.push(() => makeCharacter(
  42781. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42782. {
  42783. side: {
  42784. height: math.unit(182, "cm"),
  42785. weight: math.unit(1000, "lb"),
  42786. name: "Side",
  42787. image: {
  42788. source: "./media/characters/silver-dragon/side.svg",
  42789. extra: 710/287,
  42790. bottom: 88/798
  42791. }
  42792. },
  42793. },
  42794. [
  42795. {
  42796. name: "Normal",
  42797. height: math.unit(182, "cm"),
  42798. default: true
  42799. },
  42800. ]
  42801. ))
  42802. characterMakers.push(() => makeCharacter(
  42803. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42804. {
  42805. side: {
  42806. height: math.unit(6 + 6/12, "feet"),
  42807. weight: math.unit(1.5, "tons"),
  42808. name: "Side",
  42809. image: {
  42810. source: "./media/characters/zephyr/side.svg",
  42811. extra: 1433/586,
  42812. bottom: 109/1542
  42813. }
  42814. },
  42815. },
  42816. [
  42817. {
  42818. name: "Normal",
  42819. height: math.unit(6 + 6/12, "feet"),
  42820. default: true
  42821. },
  42822. ]
  42823. ))
  42824. characterMakers.push(() => makeCharacter(
  42825. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42826. {
  42827. side: {
  42828. height: math.unit(1, "feet"),
  42829. name: "Side",
  42830. image: {
  42831. source: "./media/characters/vixye/side.svg",
  42832. extra: 632/541,
  42833. bottom: 0/632
  42834. }
  42835. },
  42836. },
  42837. [
  42838. {
  42839. name: "Normal",
  42840. height: math.unit(1, "feet"),
  42841. default: true
  42842. },
  42843. {
  42844. name: "True",
  42845. height: math.unit(1e15, "multiverses")
  42846. },
  42847. ]
  42848. ))
  42849. characterMakers.push(() => makeCharacter(
  42850. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42851. {
  42852. front: {
  42853. height: math.unit(8 + 2/12, "feet"),
  42854. weight: math.unit(650, "lb"),
  42855. name: "Front",
  42856. image: {
  42857. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42858. extra: 1174/1137,
  42859. bottom: 82/1256
  42860. }
  42861. },
  42862. back: {
  42863. height: math.unit(8 + 2/12, "feet"),
  42864. weight: math.unit(650, "lb"),
  42865. name: "Back",
  42866. image: {
  42867. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42868. extra: 1204/1157,
  42869. bottom: 46/1250
  42870. }
  42871. },
  42872. },
  42873. [
  42874. {
  42875. name: "Wildform",
  42876. height: math.unit(8 + 2/12, "feet"),
  42877. default: true
  42878. },
  42879. ]
  42880. ))
  42881. characterMakers.push(() => makeCharacter(
  42882. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42883. {
  42884. front: {
  42885. height: math.unit(18, "feet"),
  42886. name: "Front",
  42887. image: {
  42888. source: "./media/characters/cyphin/front.svg",
  42889. extra: 970/886,
  42890. bottom: 42/1012
  42891. }
  42892. },
  42893. back: {
  42894. height: math.unit(18, "feet"),
  42895. name: "Back",
  42896. image: {
  42897. source: "./media/characters/cyphin/back.svg",
  42898. extra: 1009/894,
  42899. bottom: 24/1033
  42900. }
  42901. },
  42902. head: {
  42903. height: math.unit(5.05, "feet"),
  42904. name: "Head",
  42905. image: {
  42906. source: "./media/characters/cyphin/head.svg"
  42907. }
  42908. },
  42909. tailbud: {
  42910. height: math.unit(5, "feet"),
  42911. name: "Tailbud",
  42912. image: {
  42913. source: "./media/characters/cyphin/tailbud.svg"
  42914. }
  42915. },
  42916. },
  42917. [
  42918. ]
  42919. ))
  42920. characterMakers.push(() => makeCharacter(
  42921. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42922. {
  42923. side: {
  42924. height: math.unit(10, "feet"),
  42925. weight: math.unit(6, "tons"),
  42926. name: "Side",
  42927. image: {
  42928. source: "./media/characters/raijin/side.svg",
  42929. extra: 1529/613,
  42930. bottom: 337/1866
  42931. }
  42932. },
  42933. },
  42934. [
  42935. {
  42936. name: "Normal",
  42937. height: math.unit(10, "feet"),
  42938. default: true
  42939. },
  42940. ]
  42941. ))
  42942. characterMakers.push(() => makeCharacter(
  42943. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42944. {
  42945. side: {
  42946. height: math.unit(9, "feet"),
  42947. name: "Side",
  42948. image: {
  42949. source: "./media/characters/nilghais/side.svg",
  42950. extra: 1047/744,
  42951. bottom: 91/1138
  42952. }
  42953. },
  42954. head: {
  42955. height: math.unit(3.14, "feet"),
  42956. name: "Head",
  42957. image: {
  42958. source: "./media/characters/nilghais/head.svg"
  42959. }
  42960. },
  42961. mouth: {
  42962. height: math.unit(4.6, "feet"),
  42963. name: "Mouth",
  42964. image: {
  42965. source: "./media/characters/nilghais/mouth.svg"
  42966. }
  42967. },
  42968. wings: {
  42969. height: math.unit(24, "feet"),
  42970. name: "Wings",
  42971. image: {
  42972. source: "./media/characters/nilghais/wings.svg"
  42973. }
  42974. },
  42975. ass: {
  42976. height: math.unit(6.12, "feet"),
  42977. name: "Ass",
  42978. image: {
  42979. source: "./media/characters/nilghais/ass.svg"
  42980. }
  42981. },
  42982. },
  42983. [
  42984. {
  42985. name: "Normal",
  42986. height: math.unit(9, "feet"),
  42987. default: true
  42988. },
  42989. ]
  42990. ))
  42991. characterMakers.push(() => makeCharacter(
  42992. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42993. {
  42994. regular: {
  42995. height: math.unit(16 + 2/12, "feet"),
  42996. weight: math.unit(2300, "lb"),
  42997. name: "Regular",
  42998. image: {
  42999. source: "./media/characters/zolgar/regular.svg",
  43000. extra: 1246/1004,
  43001. bottom: 124/1370
  43002. }
  43003. },
  43004. boxers: {
  43005. height: math.unit(16 + 2/12, "feet"),
  43006. weight: math.unit(2300, "lb"),
  43007. name: "Boxers",
  43008. image: {
  43009. source: "./media/characters/zolgar/boxers.svg",
  43010. extra: 1246/1004,
  43011. bottom: 124/1370
  43012. }
  43013. },
  43014. armored: {
  43015. height: math.unit(16 + 2/12, "feet"),
  43016. weight: math.unit(2300, "lb"),
  43017. name: "Armored",
  43018. image: {
  43019. source: "./media/characters/zolgar/armored.svg",
  43020. extra: 1246/1004,
  43021. bottom: 124/1370
  43022. }
  43023. },
  43024. goth: {
  43025. height: math.unit(16 + 2/12, "feet"),
  43026. weight: math.unit(2300, "lb"),
  43027. name: "Goth",
  43028. image: {
  43029. source: "./media/characters/zolgar/goth.svg",
  43030. extra: 1246/1004,
  43031. bottom: 124/1370
  43032. }
  43033. },
  43034. },
  43035. [
  43036. {
  43037. name: "Shrunken Down",
  43038. height: math.unit(9 + 2/12, "feet")
  43039. },
  43040. {
  43041. name: "Normal",
  43042. height: math.unit(16 + 2/12, "feet"),
  43043. default: true
  43044. },
  43045. ]
  43046. ))
  43047. characterMakers.push(() => makeCharacter(
  43048. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43049. {
  43050. front: {
  43051. height: math.unit(6, "feet"),
  43052. weight: math.unit(168, "lb"),
  43053. name: "Front",
  43054. image: {
  43055. source: "./media/characters/luca/front.svg",
  43056. extra: 841/667,
  43057. bottom: 102/943
  43058. }
  43059. },
  43060. },
  43061. [
  43062. {
  43063. name: "Normal",
  43064. height: math.unit(6, "feet"),
  43065. default: true
  43066. },
  43067. ]
  43068. ))
  43069. characterMakers.push(() => makeCharacter(
  43070. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43071. {
  43072. side: {
  43073. height: math.unit(7 + 3/12, "feet"),
  43074. weight: math.unit(312, "lb"),
  43075. name: "Side",
  43076. image: {
  43077. source: "./media/characters/zezo/side.svg",
  43078. extra: 1192/1067,
  43079. bottom: 63/1255
  43080. }
  43081. },
  43082. },
  43083. [
  43084. {
  43085. name: "Normal",
  43086. height: math.unit(7 + 3/12, "feet"),
  43087. default: true
  43088. },
  43089. ]
  43090. ))
  43091. characterMakers.push(() => makeCharacter(
  43092. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43093. {
  43094. front: {
  43095. height: math.unit(5 + 5/12, "feet"),
  43096. weight: math.unit(170, "lb"),
  43097. name: "Front",
  43098. image: {
  43099. source: "./media/characters/mayso/front.svg",
  43100. extra: 1215/1108,
  43101. bottom: 16/1231
  43102. }
  43103. },
  43104. },
  43105. [
  43106. {
  43107. name: "Normal",
  43108. height: math.unit(5 + 5/12, "feet"),
  43109. default: true
  43110. },
  43111. ]
  43112. ))
  43113. characterMakers.push(() => makeCharacter(
  43114. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43115. {
  43116. front: {
  43117. height: math.unit(4 + 3/12, "feet"),
  43118. weight: math.unit(80, "lb"),
  43119. name: "Front",
  43120. image: {
  43121. source: "./media/characters/hess/front.svg",
  43122. extra: 1200/1123,
  43123. bottom: 16/1216
  43124. }
  43125. },
  43126. },
  43127. [
  43128. {
  43129. name: "Normal",
  43130. height: math.unit(4 + 3/12, "feet"),
  43131. default: true
  43132. },
  43133. ]
  43134. ))
  43135. characterMakers.push(() => makeCharacter(
  43136. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43137. {
  43138. front: {
  43139. height: math.unit(1.9, "meters"),
  43140. name: "Front",
  43141. image: {
  43142. source: "./media/characters/ashgar/front.svg",
  43143. extra: 1177/1146,
  43144. bottom: 99/1276
  43145. }
  43146. },
  43147. back: {
  43148. height: math.unit(1.9, "meters"),
  43149. name: "Back",
  43150. image: {
  43151. source: "./media/characters/ashgar/back.svg",
  43152. extra: 1201/1183,
  43153. bottom: 53/1254
  43154. }
  43155. },
  43156. feral: {
  43157. height: math.unit(1.4, "meters"),
  43158. name: "Feral",
  43159. image: {
  43160. source: "./media/characters/ashgar/feral.svg",
  43161. extra: 370/345,
  43162. bottom: 45/415
  43163. }
  43164. },
  43165. },
  43166. [
  43167. {
  43168. name: "Normal",
  43169. height: math.unit(1.9, "meters"),
  43170. default: true
  43171. },
  43172. ]
  43173. ))
  43174. characterMakers.push(() => makeCharacter(
  43175. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43176. {
  43177. regular: {
  43178. height: math.unit(6, "feet"),
  43179. weight: math.unit(220, "lb"),
  43180. name: "Regular",
  43181. image: {
  43182. source: "./media/characters/phillip/regular.svg",
  43183. extra: 1373/1277,
  43184. bottom: 75/1448
  43185. }
  43186. },
  43187. dressed: {
  43188. height: math.unit(6, "feet"),
  43189. weight: math.unit(220, "lb"),
  43190. name: "Dressed",
  43191. image: {
  43192. source: "./media/characters/phillip/dressed.svg",
  43193. extra: 1373/1277,
  43194. bottom: 75/1448
  43195. }
  43196. },
  43197. paw: {
  43198. height: math.unit(1.44, "feet"),
  43199. name: "Paw",
  43200. image: {
  43201. source: "./media/characters/phillip/paw.svg"
  43202. }
  43203. },
  43204. },
  43205. [
  43206. {
  43207. name: "Normal",
  43208. height: math.unit(6, "feet"),
  43209. default: true
  43210. },
  43211. ]
  43212. ))
  43213. characterMakers.push(() => makeCharacter(
  43214. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43215. {
  43216. side: {
  43217. height: math.unit(42, "feet"),
  43218. name: "Side",
  43219. image: {
  43220. source: "./media/characters/uvula/side.svg",
  43221. extra: 683/586,
  43222. bottom: 60/743
  43223. }
  43224. },
  43225. front: {
  43226. height: math.unit(42, "feet"),
  43227. name: "Front",
  43228. image: {
  43229. source: "./media/characters/uvula/front.svg",
  43230. extra: 705/613,
  43231. bottom: 54/759
  43232. }
  43233. },
  43234. maw: {
  43235. height: math.unit(23.5, "feet"),
  43236. name: "Maw",
  43237. image: {
  43238. source: "./media/characters/uvula/maw.svg"
  43239. }
  43240. },
  43241. },
  43242. [
  43243. {
  43244. name: "Original Size",
  43245. height: math.unit(14, "inches")
  43246. },
  43247. {
  43248. name: "Human Size",
  43249. height: math.unit(6, "feet")
  43250. },
  43251. {
  43252. name: "Big",
  43253. height: math.unit(42, "feet"),
  43254. default: true
  43255. },
  43256. {
  43257. name: "Bigger",
  43258. height: math.unit(100, "feet")
  43259. },
  43260. ]
  43261. ))
  43262. characterMakers.push(() => makeCharacter(
  43263. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43264. {
  43265. front: {
  43266. height: math.unit(5 + 11/12, "feet"),
  43267. name: "Front",
  43268. image: {
  43269. source: "./media/characters/lannah/front.svg",
  43270. extra: 1208/1113,
  43271. bottom: 97/1305
  43272. }
  43273. },
  43274. },
  43275. [
  43276. {
  43277. name: "Normal",
  43278. height: math.unit(5 + 11/12, "feet"),
  43279. default: true
  43280. },
  43281. ]
  43282. ))
  43283. characterMakers.push(() => makeCharacter(
  43284. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43285. {
  43286. front: {
  43287. height: math.unit(6 + 3/12, "feet"),
  43288. weight: math.unit(3.5, "tons"),
  43289. name: "Front",
  43290. image: {
  43291. source: "./media/characters/emberflame/front.svg",
  43292. extra: 1198/672,
  43293. bottom: 82/1280
  43294. }
  43295. },
  43296. side: {
  43297. height: math.unit(6 + 3/12, "feet"),
  43298. weight: math.unit(3.5, "tons"),
  43299. name: "Side",
  43300. image: {
  43301. source: "./media/characters/emberflame/side.svg",
  43302. extra: 938/527,
  43303. bottom: 56/994
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Normal",
  43310. height: math.unit(6 + 3/12, "feet"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43317. {
  43318. side: {
  43319. height: math.unit(17.5, "feet"),
  43320. weight: math.unit(35, "tons"),
  43321. name: "Side",
  43322. image: {
  43323. source: "./media/characters/sophie-ambrose/side.svg",
  43324. extra: 1573/1242,
  43325. bottom: 71/1644
  43326. }
  43327. },
  43328. maw: {
  43329. height: math.unit(7.4, "feet"),
  43330. name: "Maw",
  43331. image: {
  43332. source: "./media/characters/sophie-ambrose/maw.svg"
  43333. }
  43334. },
  43335. },
  43336. [
  43337. {
  43338. name: "Normal",
  43339. height: math.unit(17.5, "feet"),
  43340. default: true
  43341. },
  43342. ]
  43343. ))
  43344. characterMakers.push(() => makeCharacter(
  43345. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43346. {
  43347. front: {
  43348. height: math.unit(280, "feet"),
  43349. weight: math.unit(550, "tons"),
  43350. name: "Front",
  43351. image: {
  43352. source: "./media/characters/king-mugi/front.svg",
  43353. extra: 1102/947,
  43354. bottom: 104/1206
  43355. }
  43356. },
  43357. },
  43358. [
  43359. {
  43360. name: "King Mugi",
  43361. height: math.unit(280, "feet"),
  43362. default: true
  43363. },
  43364. ]
  43365. ))
  43366. characterMakers.push(() => makeCharacter(
  43367. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43368. {
  43369. front: {
  43370. height: math.unit(64, "meters"),
  43371. name: "Front",
  43372. image: {
  43373. source: "./media/characters/nova-fox/front.svg",
  43374. extra: 1310/1246,
  43375. bottom: 65/1375
  43376. }
  43377. },
  43378. },
  43379. [
  43380. {
  43381. name: "Macro",
  43382. height: math.unit(64, "meters"),
  43383. default: true
  43384. },
  43385. ]
  43386. ))
  43387. characterMakers.push(() => makeCharacter(
  43388. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43389. {
  43390. front: {
  43391. height: math.unit(6 + 3/12, "feet"),
  43392. weight: math.unit(170, "lb"),
  43393. name: "Front",
  43394. image: {
  43395. source: "./media/characters/sam-bat/front.svg",
  43396. extra: 1601/1411,
  43397. bottom: 125/1726
  43398. }
  43399. },
  43400. back: {
  43401. height: math.unit(6 + 3/12, "feet"),
  43402. weight: math.unit(170, "lb"),
  43403. name: "Back",
  43404. image: {
  43405. source: "./media/characters/sam-bat/back.svg",
  43406. extra: 1577/1405,
  43407. bottom: 58/1635
  43408. }
  43409. },
  43410. },
  43411. [
  43412. {
  43413. name: "Normal",
  43414. height: math.unit(6 + 3/12, "feet"),
  43415. default: true
  43416. },
  43417. ]
  43418. ))
  43419. characterMakers.push(() => makeCharacter(
  43420. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43421. {
  43422. front: {
  43423. height: math.unit(59, "feet"),
  43424. weight: math.unit(40000, "lb"),
  43425. name: "Front",
  43426. image: {
  43427. source: "./media/characters/inari/front.svg",
  43428. extra: 1884/1350,
  43429. bottom: 95/1979
  43430. }
  43431. },
  43432. },
  43433. [
  43434. {
  43435. name: "Gigantamax",
  43436. height: math.unit(59, "feet"),
  43437. default: true
  43438. },
  43439. ]
  43440. ))
  43441. characterMakers.push(() => makeCharacter(
  43442. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43443. {
  43444. front: {
  43445. height: math.unit(5 + 8/12, "feet"),
  43446. name: "Front",
  43447. image: {
  43448. source: "./media/characters/elizabeth/front.svg",
  43449. extra: 1395/1298,
  43450. bottom: 54/1449
  43451. }
  43452. },
  43453. mouth: {
  43454. height: math.unit(1.97, "feet"),
  43455. name: "Mouth",
  43456. image: {
  43457. source: "./media/characters/elizabeth/mouth.svg"
  43458. }
  43459. },
  43460. foot: {
  43461. height: math.unit(1.17, "feet"),
  43462. name: "Foot",
  43463. image: {
  43464. source: "./media/characters/elizabeth/foot.svg"
  43465. }
  43466. },
  43467. },
  43468. [
  43469. {
  43470. name: "Normal",
  43471. height: math.unit(5 + 8/12, "feet"),
  43472. default: true
  43473. },
  43474. {
  43475. name: "Minimacro",
  43476. height: math.unit(18, "feet")
  43477. },
  43478. {
  43479. name: "Macro",
  43480. height: math.unit(180, "feet")
  43481. },
  43482. ]
  43483. ))
  43484. characterMakers.push(() => makeCharacter(
  43485. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43486. {
  43487. front: {
  43488. height: math.unit(5 + 2/12, "feet"),
  43489. name: "Front",
  43490. image: {
  43491. source: "./media/characters/october-gossamer/front.svg",
  43492. extra: 505/454,
  43493. bottom: 7/512
  43494. }
  43495. },
  43496. back: {
  43497. height: math.unit(5 + 2/12, "feet"),
  43498. name: "Back",
  43499. image: {
  43500. source: "./media/characters/october-gossamer/back.svg",
  43501. extra: 501/454,
  43502. bottom: 11/512
  43503. }
  43504. },
  43505. },
  43506. [
  43507. {
  43508. name: "Normal",
  43509. height: math.unit(5 + 2/12, "feet"),
  43510. default: true
  43511. },
  43512. ]
  43513. ))
  43514. characterMakers.push(() => makeCharacter(
  43515. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43516. {
  43517. front: {
  43518. height: math.unit(5, "feet"),
  43519. name: "Front",
  43520. image: {
  43521. source: "./media/characters/epiglottis/front.svg",
  43522. extra: 923/849,
  43523. bottom: 17/940
  43524. }
  43525. },
  43526. },
  43527. [
  43528. {
  43529. name: "Original Size",
  43530. height: math.unit(10, "inches")
  43531. },
  43532. {
  43533. name: "Human Size",
  43534. height: math.unit(5, "feet"),
  43535. default: true
  43536. },
  43537. {
  43538. name: "Big",
  43539. height: math.unit(25, "feet")
  43540. },
  43541. {
  43542. name: "Bigger",
  43543. height: math.unit(50, "feet")
  43544. },
  43545. {
  43546. name: "oh lawd",
  43547. height: math.unit(75, "feet")
  43548. },
  43549. ]
  43550. ))
  43551. characterMakers.push(() => makeCharacter(
  43552. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43553. {
  43554. front: {
  43555. height: math.unit(2 + 4/12, "feet"),
  43556. weight: math.unit(60, "lb"),
  43557. name: "Front",
  43558. image: {
  43559. source: "./media/characters/lerm/front.svg",
  43560. extra: 796/790,
  43561. bottom: 79/875
  43562. }
  43563. },
  43564. },
  43565. [
  43566. {
  43567. name: "Normal",
  43568. height: math.unit(2 + 4/12, "feet"),
  43569. default: true
  43570. },
  43571. ]
  43572. ))
  43573. characterMakers.push(() => makeCharacter(
  43574. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43575. {
  43576. front: {
  43577. height: math.unit(5.5, "feet"),
  43578. weight: math.unit(130, "lb"),
  43579. name: "Front",
  43580. image: {
  43581. source: "./media/characters/xena-nebadon/front.svg",
  43582. extra: 1828/1730,
  43583. bottom: 79/1907
  43584. }
  43585. },
  43586. },
  43587. [
  43588. {
  43589. name: "Tiny Puppy",
  43590. height: math.unit(3, "inches")
  43591. },
  43592. {
  43593. name: "Normal",
  43594. height: math.unit(5.5, "feet"),
  43595. default: true
  43596. },
  43597. {
  43598. name: "Lotta Lady",
  43599. height: math.unit(12, "feet")
  43600. },
  43601. {
  43602. name: "Pretty Big",
  43603. height: math.unit(100, "feet")
  43604. },
  43605. {
  43606. name: "Big",
  43607. height: math.unit(500, "feet")
  43608. },
  43609. {
  43610. name: "Skyscraper Toys",
  43611. height: math.unit(2500, "feet")
  43612. },
  43613. {
  43614. name: "Plane Catcher",
  43615. height: math.unit(8, "miles")
  43616. },
  43617. {
  43618. name: "Planet Toys",
  43619. height: math.unit(15, "earths")
  43620. },
  43621. {
  43622. name: "Stardust",
  43623. height: math.unit(0.25, "galaxies")
  43624. },
  43625. {
  43626. name: "Snacks",
  43627. height: math.unit(70, "universes")
  43628. },
  43629. ]
  43630. ))
  43631. characterMakers.push(() => makeCharacter(
  43632. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43633. {
  43634. front: {
  43635. height: math.unit(1.6, "meters"),
  43636. weight: math.unit(60, "kg"),
  43637. name: "Front",
  43638. image: {
  43639. source: "./media/characters/bounty/front.svg",
  43640. extra: 1426/1308,
  43641. bottom: 15/1441
  43642. }
  43643. },
  43644. back: {
  43645. height: math.unit(1.6, "meters"),
  43646. weight: math.unit(60, "kg"),
  43647. name: "Back",
  43648. image: {
  43649. source: "./media/characters/bounty/back.svg",
  43650. extra: 1417/1307,
  43651. bottom: 8/1425
  43652. }
  43653. },
  43654. },
  43655. [
  43656. {
  43657. name: "Normal",
  43658. height: math.unit(1.6, "meters"),
  43659. default: true
  43660. },
  43661. {
  43662. name: "Macro",
  43663. height: math.unit(300, "meters")
  43664. },
  43665. ]
  43666. ))
  43667. characterMakers.push(() => makeCharacter(
  43668. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43669. {
  43670. front: {
  43671. height: math.unit(2 + 8/12, "feet"),
  43672. weight: math.unit(15, "lb"),
  43673. name: "Front",
  43674. image: {
  43675. source: "./media/characters/mochi/front.svg",
  43676. extra: 1022/852,
  43677. bottom: 435/1457
  43678. }
  43679. },
  43680. back: {
  43681. height: math.unit(2 + 8/12, "feet"),
  43682. weight: math.unit(15, "lb"),
  43683. name: "Back",
  43684. image: {
  43685. source: "./media/characters/mochi/back.svg",
  43686. extra: 1335/1119,
  43687. bottom: 39/1374
  43688. }
  43689. },
  43690. bird: {
  43691. height: math.unit(2 + 8/12, "feet"),
  43692. weight: math.unit(15, "lb"),
  43693. name: "Bird",
  43694. image: {
  43695. source: "./media/characters/mochi/bird.svg",
  43696. extra: 1251/1113,
  43697. bottom: 178/1429
  43698. }
  43699. },
  43700. kaiju: {
  43701. height: math.unit(154, "feet"),
  43702. weight: math.unit(1e7, "lb"),
  43703. name: "Kaiju",
  43704. image: {
  43705. source: "./media/characters/mochi/kaiju.svg",
  43706. extra: 460/324,
  43707. bottom: 40/500
  43708. }
  43709. },
  43710. head: {
  43711. height: math.unit(1.21, "feet"),
  43712. name: "Head",
  43713. image: {
  43714. source: "./media/characters/mochi/head.svg"
  43715. }
  43716. },
  43717. alternateTail: {
  43718. height: math.unit(2 + 8/12, "feet"),
  43719. weight: math.unit(45, "lb"),
  43720. name: "Alternate Tail",
  43721. image: {
  43722. source: "./media/characters/mochi/alternate-tail.svg",
  43723. extra: 139/76,
  43724. bottom: 45/184
  43725. }
  43726. },
  43727. },
  43728. [
  43729. {
  43730. name: "Micro",
  43731. height: math.unit(2, "inches")
  43732. },
  43733. {
  43734. name: "Normal",
  43735. height: math.unit(2 + 8/12, "feet"),
  43736. default: true
  43737. },
  43738. {
  43739. name: "Macro",
  43740. height: math.unit(106, "feet")
  43741. },
  43742. ]
  43743. ))
  43744. characterMakers.push(() => makeCharacter(
  43745. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43746. {
  43747. front: {
  43748. height: math.unit(5.67, "feet"),
  43749. weight: math.unit(135, "lb"),
  43750. name: "Front",
  43751. image: {
  43752. source: "./media/characters/sarel/front.svg",
  43753. extra: 865/788,
  43754. bottom: 97/962
  43755. }
  43756. },
  43757. back: {
  43758. height: math.unit(5.67, "feet"),
  43759. weight: math.unit(135, "lb"),
  43760. name: "Back",
  43761. image: {
  43762. source: "./media/characters/sarel/back.svg",
  43763. extra: 857/777,
  43764. bottom: 32/889
  43765. }
  43766. },
  43767. chozoan: {
  43768. height: math.unit(5.67, "feet"),
  43769. weight: math.unit(135, "lb"),
  43770. name: "Chozoan",
  43771. image: {
  43772. source: "./media/characters/sarel/chozoan.svg",
  43773. extra: 865/788,
  43774. bottom: 97/962
  43775. }
  43776. },
  43777. current: {
  43778. height: math.unit(5.67, "feet"),
  43779. weight: math.unit(135, "lb"),
  43780. name: "Current",
  43781. image: {
  43782. source: "./media/characters/sarel/current.svg",
  43783. extra: 865/788,
  43784. bottom: 97/962
  43785. }
  43786. },
  43787. head: {
  43788. height: math.unit(1.77, "feet"),
  43789. name: "Head",
  43790. image: {
  43791. source: "./media/characters/sarel/head.svg"
  43792. }
  43793. },
  43794. claws: {
  43795. height: math.unit(1.8, "feet"),
  43796. name: "Claws",
  43797. image: {
  43798. source: "./media/characters/sarel/claws.svg"
  43799. }
  43800. },
  43801. clawsAlt: {
  43802. height: math.unit(1.8, "feet"),
  43803. name: "Claws-alt",
  43804. image: {
  43805. source: "./media/characters/sarel/claws-alt.svg"
  43806. }
  43807. },
  43808. },
  43809. [
  43810. {
  43811. name: "Normal",
  43812. height: math.unit(5.67, "feet"),
  43813. default: true
  43814. },
  43815. ]
  43816. ))
  43817. characterMakers.push(() => makeCharacter(
  43818. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43819. {
  43820. front: {
  43821. height: math.unit(5500, "feet"),
  43822. name: "Front",
  43823. image: {
  43824. source: "./media/characters/alyonia/front.svg",
  43825. extra: 1200/1135,
  43826. bottom: 29/1229
  43827. }
  43828. },
  43829. back: {
  43830. height: math.unit(5500, "feet"),
  43831. name: "Back",
  43832. image: {
  43833. source: "./media/characters/alyonia/back.svg",
  43834. extra: 1205/1138,
  43835. bottom: 10/1215
  43836. }
  43837. },
  43838. },
  43839. [
  43840. {
  43841. name: "Small",
  43842. height: math.unit(10, "feet")
  43843. },
  43844. {
  43845. name: "Macro",
  43846. height: math.unit(500, "feet")
  43847. },
  43848. {
  43849. name: "Mega Macro",
  43850. height: math.unit(5500, "feet"),
  43851. default: true
  43852. },
  43853. {
  43854. name: "Mega Macro+",
  43855. height: math.unit(500000, "feet")
  43856. },
  43857. {
  43858. name: "Giga Macro",
  43859. height: math.unit(3000, "miles")
  43860. },
  43861. {
  43862. name: "Tera Macro",
  43863. height: math.unit(2.8e6, "miles")
  43864. },
  43865. {
  43866. name: "Galactic",
  43867. height: math.unit(120000, "lightyears")
  43868. },
  43869. ]
  43870. ))
  43871. characterMakers.push(() => makeCharacter(
  43872. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43873. {
  43874. werewolf: {
  43875. height: math.unit(8, "feet"),
  43876. weight: math.unit(425, "lb"),
  43877. name: "Werewolf",
  43878. image: {
  43879. source: "./media/characters/autumn/werewolf.svg",
  43880. extra: 2154/2031,
  43881. bottom: 160/2314
  43882. }
  43883. },
  43884. human: {
  43885. height: math.unit(5 + 8/12, "feet"),
  43886. weight: math.unit(150, "lb"),
  43887. name: "Human",
  43888. image: {
  43889. source: "./media/characters/autumn/human.svg",
  43890. extra: 1200/1149,
  43891. bottom: 30/1230
  43892. }
  43893. },
  43894. },
  43895. [
  43896. {
  43897. name: "Normal",
  43898. height: math.unit(8, "feet"),
  43899. default: true
  43900. },
  43901. ]
  43902. ))
  43903. characterMakers.push(() => makeCharacter(
  43904. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43905. {
  43906. front: {
  43907. height: math.unit(8 + 5/12, "feet"),
  43908. weight: math.unit(825, "lb"),
  43909. name: "Front",
  43910. image: {
  43911. source: "./media/characters/cobalt-charizard/front.svg",
  43912. extra: 1268/1155,
  43913. bottom: 122/1390
  43914. }
  43915. },
  43916. side: {
  43917. height: math.unit(8 + 5/12, "feet"),
  43918. weight: math.unit(825, "lb"),
  43919. name: "Side",
  43920. image: {
  43921. source: "./media/characters/cobalt-charizard/side.svg",
  43922. extra: 1348/1257,
  43923. bottom: 58/1406
  43924. }
  43925. },
  43926. gMax: {
  43927. height: math.unit(134 + 11/12, "feet"),
  43928. name: "G-Max",
  43929. image: {
  43930. source: "./media/characters/cobalt-charizard/g-max.svg",
  43931. extra: 1835/1541,
  43932. bottom: 151/1986
  43933. }
  43934. },
  43935. },
  43936. [
  43937. {
  43938. name: "Normal",
  43939. height: math.unit(8 + 5/12, "feet"),
  43940. default: true
  43941. },
  43942. ]
  43943. ))
  43944. characterMakers.push(() => makeCharacter(
  43945. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43946. {
  43947. front: {
  43948. height: math.unit(6 + 3/12, "feet"),
  43949. weight: math.unit(210, "lb"),
  43950. name: "Front",
  43951. image: {
  43952. source: "./media/characters/stella/front.svg",
  43953. extra: 3549/3335,
  43954. bottom: 51/3600
  43955. }
  43956. },
  43957. },
  43958. [
  43959. {
  43960. name: "Normal",
  43961. height: math.unit(6 + 3/12, "feet"),
  43962. default: true
  43963. },
  43964. ]
  43965. ))
  43966. characterMakers.push(() => makeCharacter(
  43967. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43968. {
  43969. front: {
  43970. height: math.unit(5, "feet"),
  43971. weight: math.unit(90, "lb"),
  43972. name: "Front",
  43973. image: {
  43974. source: "./media/characters/riley-bishop/front.svg",
  43975. extra: 1450/1428,
  43976. bottom: 152/1602
  43977. }
  43978. },
  43979. },
  43980. [
  43981. {
  43982. name: "Normal",
  43983. height: math.unit(5, "feet"),
  43984. default: true
  43985. },
  43986. ]
  43987. ))
  43988. characterMakers.push(() => makeCharacter(
  43989. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43990. {
  43991. side: {
  43992. height: math.unit(8 + 2/12, "feet"),
  43993. weight: math.unit(500, "kg"),
  43994. name: "Side",
  43995. image: {
  43996. source: "./media/characters/theo-arcanine/side.svg",
  43997. extra: 1342/1074,
  43998. bottom: 111/1453
  43999. }
  44000. },
  44001. },
  44002. [
  44003. {
  44004. name: "Normal",
  44005. height: math.unit(8 + 2/12, "feet"),
  44006. default: true
  44007. },
  44008. ]
  44009. ))
  44010. characterMakers.push(() => makeCharacter(
  44011. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44012. {
  44013. front: {
  44014. height: math.unit(4, "feet"),
  44015. name: "Front",
  44016. image: {
  44017. source: "./media/characters/kali/front.svg",
  44018. extra: 1921/1357,
  44019. bottom: 70/1991
  44020. }
  44021. },
  44022. },
  44023. [
  44024. {
  44025. name: "Normal",
  44026. height: math.unit(4, "feet"),
  44027. default: true
  44028. },
  44029. {
  44030. name: "Macro",
  44031. height: math.unit(32, "meters")
  44032. },
  44033. {
  44034. name: "Macro+",
  44035. height: math.unit(150, "meters")
  44036. },
  44037. {
  44038. name: "Megamacro",
  44039. height: math.unit(7500, "meters")
  44040. },
  44041. {
  44042. name: "Megamacro+",
  44043. height: math.unit(80, "kilometers")
  44044. },
  44045. ]
  44046. ))
  44047. characterMakers.push(() => makeCharacter(
  44048. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44049. {
  44050. side: {
  44051. height: math.unit(5 + 11/12, "feet"),
  44052. weight: math.unit(236, "lb"),
  44053. name: "Side",
  44054. image: {
  44055. source: "./media/characters/gapp/side.svg",
  44056. extra: 775/340,
  44057. bottom: 58/833
  44058. }
  44059. },
  44060. mouth: {
  44061. height: math.unit(2.98, "feet"),
  44062. name: "Mouth",
  44063. image: {
  44064. source: "./media/characters/gapp/mouth.svg"
  44065. }
  44066. },
  44067. },
  44068. [
  44069. {
  44070. name: "Normal",
  44071. height: math.unit(5 + 1/12, "feet"),
  44072. default: true
  44073. },
  44074. ]
  44075. ))
  44076. characterMakers.push(() => makeCharacter(
  44077. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44078. {
  44079. front: {
  44080. height: math.unit(6, "feet"),
  44081. name: "Front",
  44082. image: {
  44083. source: "./media/characters/persephone/front.svg",
  44084. extra: 1895/1717,
  44085. bottom: 96/1991
  44086. }
  44087. },
  44088. back: {
  44089. height: math.unit(6, "feet"),
  44090. name: "Back",
  44091. image: {
  44092. source: "./media/characters/persephone/back.svg",
  44093. extra: 1868/1679,
  44094. bottom: 26/1894
  44095. }
  44096. },
  44097. casual: {
  44098. height: math.unit(6, "feet"),
  44099. name: "Casual",
  44100. image: {
  44101. source: "./media/characters/persephone/casual.svg",
  44102. extra: 1713/1541,
  44103. bottom: 76/1789
  44104. }
  44105. },
  44106. },
  44107. [
  44108. {
  44109. name: "Human Size",
  44110. height: math.unit(6, "feet")
  44111. },
  44112. {
  44113. name: "Big Steppy",
  44114. height: math.unit(600, "meters"),
  44115. default: true
  44116. },
  44117. {
  44118. name: "Galaxy Brain",
  44119. height: math.unit(1, "zettameter")
  44120. },
  44121. ]
  44122. ))
  44123. characterMakers.push(() => makeCharacter(
  44124. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44125. {
  44126. front: {
  44127. height: math.unit(1.85, "meters"),
  44128. name: "Front",
  44129. image: {
  44130. source: "./media/characters/riley-foxthing/front.svg",
  44131. extra: 1495/1354,
  44132. bottom: 122/1617
  44133. }
  44134. },
  44135. frontAlt: {
  44136. height: math.unit(1.85, "meters"),
  44137. name: "Front (Alt)",
  44138. image: {
  44139. source: "./media/characters/riley-foxthing/front-alt.svg",
  44140. extra: 1572/1389,
  44141. bottom: 116/1688
  44142. }
  44143. },
  44144. },
  44145. [
  44146. {
  44147. name: "Normal Sized",
  44148. height: math.unit(1.85, "meters"),
  44149. default: true
  44150. },
  44151. {
  44152. name: "Quite Sizable",
  44153. height: math.unit(5, "meters")
  44154. },
  44155. {
  44156. name: "Rather Large",
  44157. height: math.unit(20, "meters")
  44158. },
  44159. {
  44160. name: "Macro",
  44161. height: math.unit(450, "meters")
  44162. },
  44163. {
  44164. name: "Giga",
  44165. height: math.unit(5, "km")
  44166. },
  44167. ]
  44168. ))
  44169. characterMakers.push(() => makeCharacter(
  44170. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44171. {
  44172. front: {
  44173. height: math.unit(6, "feet"),
  44174. weight: math.unit(200, "lb"),
  44175. name: "Front",
  44176. image: {
  44177. source: "./media/characters/blizzard/front.svg",
  44178. extra: 1136/990,
  44179. bottom: 136/1272
  44180. }
  44181. },
  44182. back: {
  44183. height: math.unit(6, "feet"),
  44184. weight: math.unit(200, "lb"),
  44185. name: "Back",
  44186. image: {
  44187. source: "./media/characters/blizzard/back.svg",
  44188. extra: 1175/1034,
  44189. bottom: 97/1272
  44190. }
  44191. },
  44192. sitting: {
  44193. height: math.unit(3.725, "feet"),
  44194. weight: math.unit(200, "lb"),
  44195. name: "Sitting",
  44196. image: {
  44197. source: "./media/characters/blizzard/sitting.svg",
  44198. extra: 581/485,
  44199. bottom: 90/671
  44200. }
  44201. },
  44202. frontWizard: {
  44203. height: math.unit(7.9, "feet"),
  44204. weight: math.unit(200, "lb"),
  44205. name: "Front (Wizard)",
  44206. image: {
  44207. source: "./media/characters/blizzard/front-wizard.svg"
  44208. }
  44209. },
  44210. backWizard: {
  44211. height: math.unit(7.9, "feet"),
  44212. weight: math.unit(200, "lb"),
  44213. name: "Back (Wizard)",
  44214. image: {
  44215. source: "./media/characters/blizzard/back-wizard.svg"
  44216. }
  44217. },
  44218. frontNsfw: {
  44219. height: math.unit(6, "feet"),
  44220. weight: math.unit(200, "lb"),
  44221. name: "Front (NSFW)",
  44222. image: {
  44223. source: "./media/characters/blizzard/front-nsfw.svg",
  44224. extra: 1136/990,
  44225. bottom: 136/1272
  44226. }
  44227. },
  44228. backNsfw: {
  44229. height: math.unit(6, "feet"),
  44230. weight: math.unit(200, "lb"),
  44231. name: "Back (NSFW)",
  44232. image: {
  44233. source: "./media/characters/blizzard/back-nsfw.svg",
  44234. extra: 1175/1034,
  44235. bottom: 97/1272
  44236. }
  44237. },
  44238. sittingNsfw: {
  44239. height: math.unit(3.725, "feet"),
  44240. weight: math.unit(200, "lb"),
  44241. name: "Sitting (NSFW)",
  44242. image: {
  44243. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44244. extra: 581/485,
  44245. bottom: 90/671
  44246. }
  44247. },
  44248. wizardFrontNsfw: {
  44249. height: math.unit(7.9, "feet"),
  44250. weight: math.unit(200, "lb"),
  44251. name: "Wizard (Front, NSFW)",
  44252. image: {
  44253. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44254. }
  44255. },
  44256. },
  44257. [
  44258. {
  44259. name: "Normal",
  44260. height: math.unit(6, "feet"),
  44261. default: true
  44262. },
  44263. ]
  44264. ))
  44265. characterMakers.push(() => makeCharacter(
  44266. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44267. {
  44268. front: {
  44269. height: math.unit(5 + 2/12, "feet"),
  44270. name: "Front",
  44271. image: {
  44272. source: "./media/characters/lumi/front.svg",
  44273. extra: 1328/1268,
  44274. bottom: 103/1431
  44275. }
  44276. },
  44277. back: {
  44278. height: math.unit(5 + 2/12, "feet"),
  44279. name: "Back",
  44280. image: {
  44281. source: "./media/characters/lumi/back.svg",
  44282. extra: 1381/1327,
  44283. bottom: 43/1424
  44284. }
  44285. },
  44286. },
  44287. [
  44288. {
  44289. name: "Normal",
  44290. height: math.unit(5 + 2/12, "feet"),
  44291. default: true
  44292. },
  44293. ]
  44294. ))
  44295. characterMakers.push(() => makeCharacter(
  44296. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44297. {
  44298. front: {
  44299. height: math.unit(5 + 9/12, "feet"),
  44300. name: "Front",
  44301. image: {
  44302. source: "./media/characters/aliya-cotton/front.svg",
  44303. extra: 577/564,
  44304. bottom: 29/606
  44305. }
  44306. },
  44307. },
  44308. [
  44309. {
  44310. name: "Normal",
  44311. height: math.unit(5 + 9/12, "feet"),
  44312. default: true
  44313. },
  44314. ]
  44315. ))
  44316. characterMakers.push(() => makeCharacter(
  44317. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44318. {
  44319. front: {
  44320. height: math.unit(2.7, "meters"),
  44321. weight: math.unit(25000, "lb"),
  44322. name: "Front",
  44323. image: {
  44324. source: "./media/characters/noah-luxray/front.svg",
  44325. extra: 1644/825,
  44326. bottom: 339/1983
  44327. }
  44328. },
  44329. side: {
  44330. height: math.unit(2.97, "meters"),
  44331. weight: math.unit(25000, "lb"),
  44332. name: "Side",
  44333. image: {
  44334. source: "./media/characters/noah-luxray/side.svg",
  44335. extra: 1319/650,
  44336. bottom: 163/1482
  44337. }
  44338. },
  44339. dick: {
  44340. height: math.unit(7.4, "feet"),
  44341. weight: math.unit(2500, "lb"),
  44342. name: "Dick",
  44343. image: {
  44344. source: "./media/characters/noah-luxray/dick.svg"
  44345. }
  44346. },
  44347. dickAlt: {
  44348. height: math.unit(10.83, "feet"),
  44349. weight: math.unit(2500, "lb"),
  44350. name: "Dick-alt",
  44351. image: {
  44352. source: "./media/characters/noah-luxray/dick-alt.svg"
  44353. }
  44354. },
  44355. },
  44356. [
  44357. {
  44358. name: "BIG",
  44359. height: math.unit(2.7, "meters"),
  44360. default: true
  44361. },
  44362. ]
  44363. ))
  44364. characterMakers.push(() => makeCharacter(
  44365. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44366. {
  44367. standing: {
  44368. height: math.unit(183, "cm"),
  44369. weight: math.unit(68, "kg"),
  44370. name: "Standing",
  44371. image: {
  44372. source: "./media/characters/arion/standing.svg",
  44373. extra: 1869/1807,
  44374. bottom: 93/1962
  44375. }
  44376. },
  44377. reclining: {
  44378. height: math.unit(70.5, "cm"),
  44379. weight: math.unit(68, "lb"),
  44380. name: "Reclining",
  44381. image: {
  44382. source: "./media/characters/arion/reclining.svg",
  44383. extra: 937/870,
  44384. bottom: 63/1000
  44385. }
  44386. },
  44387. },
  44388. [
  44389. {
  44390. name: "Colossus Size, Low",
  44391. height: math.unit(33, "meters"),
  44392. default: true
  44393. },
  44394. {
  44395. name: "Colossus Size, Mid",
  44396. height: math.unit(52, "meters")
  44397. },
  44398. {
  44399. name: "Colossus Size, High",
  44400. height: math.unit(60, "meters")
  44401. },
  44402. {
  44403. name: "Titan Size, Low",
  44404. height: math.unit(91, "meters"),
  44405. },
  44406. {
  44407. name: "Titan Size, Mid",
  44408. height: math.unit(122, "meters")
  44409. },
  44410. {
  44411. name: "Titan Size, High",
  44412. height: math.unit(162, "meters")
  44413. },
  44414. ]
  44415. ))
  44416. characterMakers.push(() => makeCharacter(
  44417. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44418. {
  44419. front: {
  44420. height: math.unit(53, "meters"),
  44421. name: "Front",
  44422. image: {
  44423. source: "./media/characters/stellar-marbey/front.svg",
  44424. extra: 1913/1805,
  44425. bottom: 92/2005
  44426. }
  44427. },
  44428. back: {
  44429. height: math.unit(53, "meters"),
  44430. name: "Back",
  44431. image: {
  44432. source: "./media/characters/stellar-marbey/back.svg",
  44433. extra: 1960/1851,
  44434. bottom: 28/1988
  44435. }
  44436. },
  44437. mouth: {
  44438. height: math.unit(3.5, "meters"),
  44439. name: "Mouth",
  44440. image: {
  44441. source: "./media/characters/stellar-marbey/mouth.svg"
  44442. }
  44443. },
  44444. },
  44445. [
  44446. {
  44447. name: "Macro",
  44448. height: math.unit(53, "meters"),
  44449. default: true
  44450. },
  44451. ]
  44452. ))
  44453. characterMakers.push(() => makeCharacter(
  44454. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44455. {
  44456. front: {
  44457. height: math.unit(8 + 1/12, "feet"),
  44458. weight: math.unit(233, "lb"),
  44459. name: "Front",
  44460. image: {
  44461. source: "./media/characters/matsu/front.svg",
  44462. extra: 832/772,
  44463. bottom: 40/872
  44464. }
  44465. },
  44466. back: {
  44467. height: math.unit(8 + 1/12, "feet"),
  44468. weight: math.unit(233, "lb"),
  44469. name: "Back",
  44470. image: {
  44471. source: "./media/characters/matsu/back.svg",
  44472. extra: 839/780,
  44473. bottom: 47/886
  44474. }
  44475. },
  44476. },
  44477. [
  44478. {
  44479. name: "Normal",
  44480. height: math.unit(8 + 1/12, "feet"),
  44481. default: true
  44482. },
  44483. ]
  44484. ))
  44485. characterMakers.push(() => makeCharacter(
  44486. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44487. {
  44488. front: {
  44489. height: math.unit(4, "feet"),
  44490. weight: math.unit(148, "lb"),
  44491. name: "Front",
  44492. image: {
  44493. source: "./media/characters/thiz/front.svg",
  44494. extra: 1913/1748,
  44495. bottom: 62/1975
  44496. }
  44497. },
  44498. },
  44499. [
  44500. {
  44501. name: "Normal",
  44502. height: math.unit(4, "feet"),
  44503. default: true
  44504. },
  44505. ]
  44506. ))
  44507. characterMakers.push(() => makeCharacter(
  44508. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44509. {
  44510. front: {
  44511. height: math.unit(7 + 6/12, "feet"),
  44512. weight: math.unit(267, "lb"),
  44513. name: "Front",
  44514. image: {
  44515. source: "./media/characters/marcel/front.svg",
  44516. extra: 1221/1096,
  44517. bottom: 76/1297
  44518. }
  44519. },
  44520. },
  44521. [
  44522. {
  44523. name: "Normal",
  44524. height: math.unit(7 + 6/12, "feet"),
  44525. default: true
  44526. },
  44527. ]
  44528. ))
  44529. characterMakers.push(() => makeCharacter(
  44530. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44531. {
  44532. side: {
  44533. height: math.unit(42, "meters"),
  44534. name: "Side",
  44535. image: {
  44536. source: "./media/characters/flake/side.svg",
  44537. extra: 1525/1306,
  44538. bottom: 209/1734
  44539. }
  44540. },
  44541. },
  44542. [
  44543. {
  44544. name: "Normal",
  44545. height: math.unit(42, "meters"),
  44546. default: true
  44547. },
  44548. ]
  44549. ))
  44550. characterMakers.push(() => makeCharacter(
  44551. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44552. {
  44553. dressed: {
  44554. height: math.unit(6 + 4/12, "feet"),
  44555. weight: math.unit(520, "lb"),
  44556. name: "Dressed",
  44557. image: {
  44558. source: "./media/characters/someonne/dressed.svg",
  44559. extra: 1020/1010,
  44560. bottom: 178/1198
  44561. }
  44562. },
  44563. undressed: {
  44564. height: math.unit(6 + 4/12, "feet"),
  44565. weight: math.unit(520, "lb"),
  44566. name: "Undressed",
  44567. image: {
  44568. source: "./media/characters/someonne/undressed.svg",
  44569. extra: 1019/1014,
  44570. bottom: 169/1188
  44571. }
  44572. },
  44573. },
  44574. [
  44575. {
  44576. name: "Normal",
  44577. height: math.unit(6 + 4/12, "feet"),
  44578. default: true
  44579. },
  44580. ]
  44581. ))
  44582. characterMakers.push(() => makeCharacter(
  44583. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44584. {
  44585. front: {
  44586. height: math.unit(3, "feet"),
  44587. weight: math.unit(30, "lb"),
  44588. name: "Front",
  44589. image: {
  44590. source: "./media/characters/till/front.svg",
  44591. extra: 892/823,
  44592. bottom: 55/947
  44593. }
  44594. },
  44595. },
  44596. [
  44597. {
  44598. name: "Normal",
  44599. height: math.unit(3, "feet"),
  44600. default: true
  44601. },
  44602. ]
  44603. ))
  44604. characterMakers.push(() => makeCharacter(
  44605. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44606. {
  44607. front: {
  44608. height: math.unit(9 + 8/12, "feet"),
  44609. weight: math.unit(800, "lb"),
  44610. name: "Front",
  44611. image: {
  44612. source: "./media/characters/sydney-heki/front.svg",
  44613. extra: 1360/1300,
  44614. bottom: 22/1382
  44615. }
  44616. },
  44617. back: {
  44618. height: math.unit(9 + 8/12, "feet"),
  44619. weight: math.unit(800, "lb"),
  44620. name: "Back",
  44621. image: {
  44622. source: "./media/characters/sydney-heki/back.svg",
  44623. extra: 1356/1293,
  44624. bottom: 12/1368
  44625. }
  44626. },
  44627. frontDressed: {
  44628. height: math.unit(9 + 8/12, "feet"),
  44629. weight: math.unit(800, "lb"),
  44630. name: "Front-dressed",
  44631. image: {
  44632. source: "./media/characters/sydney-heki/front-dressed.svg",
  44633. extra: 1360/1300,
  44634. bottom: 22/1382
  44635. }
  44636. },
  44637. },
  44638. [
  44639. {
  44640. name: "Normal",
  44641. height: math.unit(9 + 8/12, "feet"),
  44642. default: true
  44643. },
  44644. {
  44645. name: "Macro",
  44646. height: math.unit(500, "feet")
  44647. },
  44648. {
  44649. name: "Megamacro",
  44650. height: math.unit(3.6, "miles")
  44651. },
  44652. ]
  44653. ))
  44654. characterMakers.push(() => makeCharacter(
  44655. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44656. {
  44657. front: {
  44658. height: math.unit(200, "cm"),
  44659. weight: math.unit(250, "lb"),
  44660. name: "Front",
  44661. image: {
  44662. source: "./media/characters/fowler-karlsson/front.svg",
  44663. extra: 897/845,
  44664. bottom: 123/1020
  44665. }
  44666. },
  44667. back: {
  44668. height: math.unit(200, "cm"),
  44669. weight: math.unit(250, "lb"),
  44670. name: "Back",
  44671. image: {
  44672. source: "./media/characters/fowler-karlsson/back.svg",
  44673. extra: 999/944,
  44674. bottom: 26/1025
  44675. }
  44676. },
  44677. dick: {
  44678. height: math.unit(1.92, "feet"),
  44679. weight: math.unit(150, "lb"),
  44680. name: "Dick",
  44681. image: {
  44682. source: "./media/characters/fowler-karlsson/dick.svg"
  44683. }
  44684. },
  44685. },
  44686. [
  44687. {
  44688. name: "Normal",
  44689. height: math.unit(200, "cm"),
  44690. default: true
  44691. },
  44692. {
  44693. name: "Smaller Macro",
  44694. height: math.unit(90, "m")
  44695. },
  44696. {
  44697. name: "Macro",
  44698. height: math.unit(150, "m")
  44699. },
  44700. {
  44701. name: "Bigger Macro",
  44702. height: math.unit(300, "m")
  44703. },
  44704. ]
  44705. ))
  44706. characterMakers.push(() => makeCharacter(
  44707. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44708. {
  44709. side: {
  44710. height: math.unit(8 + 2/12, "feet"),
  44711. weight: math.unit(1, "tonne"),
  44712. name: "Side",
  44713. image: {
  44714. source: "./media/characters/rylide/side.svg",
  44715. extra: 1318/1034,
  44716. bottom: 106/1424
  44717. }
  44718. },
  44719. sitting: {
  44720. height: math.unit(303, "cm"),
  44721. weight: math.unit(1, "tonne"),
  44722. name: "Sitting",
  44723. image: {
  44724. source: "./media/characters/rylide/sitting.svg",
  44725. extra: 1303/1103,
  44726. bottom: 36/1339
  44727. }
  44728. },
  44729. },
  44730. [
  44731. {
  44732. name: "Normal",
  44733. height: math.unit(8 + 2/12, "feet"),
  44734. default: true
  44735. },
  44736. ]
  44737. ))
  44738. characterMakers.push(() => makeCharacter(
  44739. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44740. {
  44741. front: {
  44742. height: math.unit(5 + 10/12, "feet"),
  44743. weight: math.unit(160, "lb"),
  44744. name: "Front",
  44745. image: {
  44746. source: "./media/characters/pudask/front.svg",
  44747. extra: 1616/1590,
  44748. bottom: 161/1777
  44749. }
  44750. },
  44751. },
  44752. [
  44753. {
  44754. name: "Ferret Height",
  44755. height: math.unit(2 + 5/12, "feet")
  44756. },
  44757. {
  44758. name: "Canon Height",
  44759. height: math.unit(5 + 10/12, "feet"),
  44760. default: true
  44761. },
  44762. ]
  44763. ))
  44764. characterMakers.push(() => makeCharacter(
  44765. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44766. {
  44767. front: {
  44768. height: math.unit(3 + 6/12, "feet"),
  44769. weight: math.unit(60, "lb"),
  44770. name: "Front",
  44771. image: {
  44772. source: "./media/characters/ramita/front.svg",
  44773. extra: 1402/1232,
  44774. bottom: 62/1464
  44775. }
  44776. },
  44777. dressed: {
  44778. height: math.unit(3 + 6/12, "feet"),
  44779. weight: math.unit(60, "lb"),
  44780. name: "Dressed",
  44781. image: {
  44782. source: "./media/characters/ramita/dressed.svg",
  44783. extra: 1534/1249,
  44784. bottom: 50/1584
  44785. }
  44786. },
  44787. },
  44788. [
  44789. {
  44790. name: "Normal",
  44791. height: math.unit(3 + 6/12, "feet"),
  44792. default: true
  44793. },
  44794. ]
  44795. ))
  44796. characterMakers.push(() => makeCharacter(
  44797. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44798. {
  44799. front: {
  44800. height: math.unit(8, "feet"),
  44801. name: "Front",
  44802. image: {
  44803. source: "./media/characters/ark/front.svg",
  44804. extra: 772/693,
  44805. bottom: 45/817
  44806. }
  44807. },
  44808. },
  44809. [
  44810. {
  44811. name: "Normal",
  44812. height: math.unit(8, "feet"),
  44813. default: true
  44814. },
  44815. ]
  44816. ))
  44817. characterMakers.push(() => makeCharacter(
  44818. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44819. {
  44820. front: {
  44821. height: math.unit(6, "feet"),
  44822. weight: math.unit(250, "lb"),
  44823. volume: math.unit(5/8, "gallons"),
  44824. name: "Front",
  44825. image: {
  44826. source: "./media/characters/ludwig-horn/front.svg",
  44827. extra: 1782/1635,
  44828. bottom: 96/1878
  44829. }
  44830. },
  44831. back: {
  44832. height: math.unit(6, "feet"),
  44833. weight: math.unit(250, "lb"),
  44834. volume: math.unit(5/8, "gallons"),
  44835. name: "Back",
  44836. image: {
  44837. source: "./media/characters/ludwig-horn/back.svg",
  44838. extra: 1874/1729,
  44839. bottom: 27/1901
  44840. }
  44841. },
  44842. dick: {
  44843. height: math.unit(1.05, "feet"),
  44844. weight: math.unit(15, "lb"),
  44845. volume: math.unit(5/8, "gallons"),
  44846. name: "Dick",
  44847. image: {
  44848. source: "./media/characters/ludwig-horn/dick.svg"
  44849. }
  44850. },
  44851. },
  44852. [
  44853. {
  44854. name: "Small",
  44855. height: math.unit(6, "feet")
  44856. },
  44857. {
  44858. name: "Typical",
  44859. height: math.unit(12, "feet"),
  44860. default: true
  44861. },
  44862. {
  44863. name: "Building",
  44864. height: math.unit(80, "feet")
  44865. },
  44866. {
  44867. name: "Town",
  44868. height: math.unit(800, "feet")
  44869. },
  44870. {
  44871. name: "Kingdom",
  44872. height: math.unit(80000, "feet")
  44873. },
  44874. {
  44875. name: "Planet",
  44876. height: math.unit(8000000, "feet")
  44877. },
  44878. {
  44879. name: "Universe",
  44880. height: math.unit(8000000000, "feet")
  44881. },
  44882. {
  44883. name: "Transcended",
  44884. height: math.unit(8e27, "feet")
  44885. },
  44886. ]
  44887. ))
  44888. characterMakers.push(() => makeCharacter(
  44889. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44890. {
  44891. front: {
  44892. height: math.unit(5, "feet"),
  44893. weight: math.unit(50, "kg"),
  44894. name: "Front",
  44895. image: {
  44896. source: "./media/characters/biot-avery/front.svg",
  44897. extra: 1295/1232,
  44898. bottom: 86/1381
  44899. }
  44900. },
  44901. },
  44902. [
  44903. {
  44904. name: "Normal",
  44905. height: math.unit(5, "feet"),
  44906. default: true
  44907. },
  44908. ]
  44909. ))
  44910. characterMakers.push(() => makeCharacter(
  44911. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44912. {
  44913. front: {
  44914. height: math.unit(6, "feet"),
  44915. name: "Front",
  44916. image: {
  44917. source: "./media/characters/kitsune-kiro/front.svg",
  44918. extra: 1270/1158,
  44919. bottom: 42/1312
  44920. }
  44921. },
  44922. frontAlt: {
  44923. height: math.unit(6, "feet"),
  44924. name: "Front-alt",
  44925. image: {
  44926. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44927. extra: 1130/1081,
  44928. bottom: 36/1166
  44929. }
  44930. },
  44931. },
  44932. [
  44933. {
  44934. name: "Smol",
  44935. height: math.unit(3, "feet")
  44936. },
  44937. {
  44938. name: "Normal",
  44939. height: math.unit(6, "feet"),
  44940. default: true
  44941. },
  44942. ]
  44943. ))
  44944. characterMakers.push(() => makeCharacter(
  44945. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44946. {
  44947. front: {
  44948. height: math.unit(6, "feet"),
  44949. weight: math.unit(125, "lb"),
  44950. name: "Front",
  44951. image: {
  44952. source: "./media/characters/jack-thatcher/front.svg",
  44953. extra: 1474/1370,
  44954. bottom: 26/1500
  44955. }
  44956. },
  44957. back: {
  44958. height: math.unit(6, "feet"),
  44959. weight: math.unit(125, "lb"),
  44960. name: "Back",
  44961. image: {
  44962. source: "./media/characters/jack-thatcher/back.svg",
  44963. extra: 1489/1384,
  44964. bottom: 18/1507
  44965. }
  44966. },
  44967. },
  44968. [
  44969. {
  44970. name: "Normal",
  44971. height: math.unit(6, "feet"),
  44972. default: true
  44973. },
  44974. {
  44975. name: "Macro",
  44976. height: math.unit(75, "feet")
  44977. },
  44978. {
  44979. name: "Macro-er",
  44980. height: math.unit(250, "feet")
  44981. },
  44982. ]
  44983. ))
  44984. characterMakers.push(() => makeCharacter(
  44985. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44986. {
  44987. front: {
  44988. height: math.unit(7, "feet"),
  44989. weight: math.unit(110, "kg"),
  44990. name: "Front",
  44991. image: {
  44992. source: "./media/characters/max-hyper/front.svg",
  44993. extra: 1969/1881,
  44994. bottom: 49/2018
  44995. }
  44996. },
  44997. },
  44998. [
  44999. {
  45000. name: "Normal",
  45001. height: math.unit(7, "feet"),
  45002. default: true
  45003. },
  45004. ]
  45005. ))
  45006. characterMakers.push(() => makeCharacter(
  45007. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45008. {
  45009. front: {
  45010. height: math.unit(5 + 5/12, "feet"),
  45011. weight: math.unit(160, "lb"),
  45012. name: "Front",
  45013. image: {
  45014. source: "./media/characters/spook/front.svg",
  45015. extra: 794/791,
  45016. bottom: 54/848
  45017. }
  45018. },
  45019. back: {
  45020. height: math.unit(5 + 5/12, "feet"),
  45021. weight: math.unit(160, "lb"),
  45022. name: "Back",
  45023. image: {
  45024. source: "./media/characters/spook/back.svg",
  45025. extra: 812/798,
  45026. bottom: 32/844
  45027. }
  45028. },
  45029. },
  45030. [
  45031. {
  45032. name: "Normal",
  45033. height: math.unit(5 + 5/12, "feet"),
  45034. default: true
  45035. },
  45036. ]
  45037. ))
  45038. characterMakers.push(() => makeCharacter(
  45039. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45040. {
  45041. front: {
  45042. height: math.unit(18, "feet"),
  45043. name: "Front",
  45044. image: {
  45045. source: "./media/characters/xeaduulix/front.svg",
  45046. extra: 1380/1166,
  45047. bottom: 110/1490
  45048. }
  45049. },
  45050. back: {
  45051. height: math.unit(18, "feet"),
  45052. name: "Back",
  45053. image: {
  45054. source: "./media/characters/xeaduulix/back.svg",
  45055. extra: 1592/1170,
  45056. bottom: 128/1720
  45057. }
  45058. },
  45059. frontNsfw: {
  45060. height: math.unit(18, "feet"),
  45061. name: "Front (NSFW)",
  45062. image: {
  45063. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45064. extra: 1380/1166,
  45065. bottom: 110/1490
  45066. }
  45067. },
  45068. backNsfw: {
  45069. height: math.unit(18, "feet"),
  45070. name: "Back (NSFW)",
  45071. image: {
  45072. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45073. extra: 1592/1170,
  45074. bottom: 128/1720
  45075. }
  45076. },
  45077. },
  45078. [
  45079. {
  45080. name: "Normal",
  45081. height: math.unit(18, "feet"),
  45082. default: true
  45083. },
  45084. ]
  45085. ))
  45086. characterMakers.push(() => makeCharacter(
  45087. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45088. {
  45089. spreadWings: {
  45090. height: math.unit(20, "feet"),
  45091. name: "Spread Wings",
  45092. image: {
  45093. source: "./media/characters/fledge/spread-wings.svg",
  45094. extra: 693/635,
  45095. bottom: 26/719
  45096. }
  45097. },
  45098. front: {
  45099. height: math.unit(20, "feet"),
  45100. name: "Front",
  45101. image: {
  45102. source: "./media/characters/fledge/front.svg",
  45103. extra: 684/637,
  45104. bottom: 18/702
  45105. }
  45106. },
  45107. frontAlt: {
  45108. height: math.unit(20, "feet"),
  45109. name: "Front (Alt)",
  45110. image: {
  45111. source: "./media/characters/fledge/front-alt.svg",
  45112. extra: 708/664,
  45113. bottom: 13/721
  45114. }
  45115. },
  45116. back: {
  45117. height: math.unit(20, "feet"),
  45118. name: "Back",
  45119. image: {
  45120. source: "./media/characters/fledge/back.svg",
  45121. extra: 718/634,
  45122. bottom: 22/740
  45123. }
  45124. },
  45125. head: {
  45126. height: math.unit(5.55, "feet"),
  45127. name: "Head",
  45128. image: {
  45129. source: "./media/characters/fledge/head.svg"
  45130. }
  45131. },
  45132. headAlt: {
  45133. height: math.unit(5.1, "feet"),
  45134. name: "Head (Alt)",
  45135. image: {
  45136. source: "./media/characters/fledge/head-alt.svg"
  45137. }
  45138. },
  45139. },
  45140. [
  45141. {
  45142. name: "Small",
  45143. height: math.unit(6 + 2/12, "feet")
  45144. },
  45145. {
  45146. name: "Big",
  45147. height: math.unit(20, "feet"),
  45148. default: true
  45149. },
  45150. {
  45151. name: "Giant",
  45152. height: math.unit(100, "feet")
  45153. },
  45154. {
  45155. name: "Macro",
  45156. height: math.unit(200, "feet")
  45157. },
  45158. ]
  45159. ))
  45160. characterMakers.push(() => makeCharacter(
  45161. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45162. {
  45163. front: {
  45164. height: math.unit(1, "meter"),
  45165. name: "Front",
  45166. image: {
  45167. source: "./media/characters/atlas-morenai/front.svg",
  45168. extra: 1275/1043,
  45169. bottom: 19/1294
  45170. }
  45171. },
  45172. back: {
  45173. height: math.unit(1, "meter"),
  45174. name: "Back",
  45175. image: {
  45176. source: "./media/characters/atlas-morenai/back.svg",
  45177. extra: 1141/1001,
  45178. bottom: 25/1166
  45179. }
  45180. },
  45181. },
  45182. [
  45183. {
  45184. name: "Normal",
  45185. height: math.unit(1, "meter"),
  45186. default: true
  45187. },
  45188. {
  45189. name: "Magic-Infused",
  45190. height: math.unit(5, "meters")
  45191. },
  45192. ]
  45193. ))
  45194. characterMakers.push(() => makeCharacter(
  45195. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45196. {
  45197. front: {
  45198. height: math.unit(5, "meters"),
  45199. name: "Front",
  45200. image: {
  45201. source: "./media/characters/cintia/front.svg",
  45202. extra: 1312/1228,
  45203. bottom: 38/1350
  45204. }
  45205. },
  45206. back: {
  45207. height: math.unit(5, "meters"),
  45208. name: "Back",
  45209. image: {
  45210. source: "./media/characters/cintia/back.svg",
  45211. extra: 1260/1166,
  45212. bottom: 98/1358
  45213. }
  45214. },
  45215. frontDick: {
  45216. height: math.unit(5, "meters"),
  45217. name: "Front (Dick)",
  45218. image: {
  45219. source: "./media/characters/cintia/front-dick.svg",
  45220. extra: 1312/1228,
  45221. bottom: 38/1350
  45222. }
  45223. },
  45224. backDick: {
  45225. height: math.unit(5, "meters"),
  45226. name: "Back (Dick)",
  45227. image: {
  45228. source: "./media/characters/cintia/back-dick.svg",
  45229. extra: 1260/1166,
  45230. bottom: 98/1358
  45231. }
  45232. },
  45233. bust: {
  45234. height: math.unit(1.97, "meters"),
  45235. name: "Bust",
  45236. image: {
  45237. source: "./media/characters/cintia/bust.svg",
  45238. extra: 617/565,
  45239. bottom: 0/617
  45240. }
  45241. },
  45242. },
  45243. [
  45244. {
  45245. name: "Normal",
  45246. height: math.unit(5, "meters"),
  45247. default: true
  45248. },
  45249. ]
  45250. ))
  45251. characterMakers.push(() => makeCharacter(
  45252. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45253. {
  45254. side: {
  45255. height: math.unit(100, "feet"),
  45256. name: "Side",
  45257. image: {
  45258. source: "./media/characters/denora/side.svg",
  45259. extra: 875/803,
  45260. bottom: 9/884
  45261. }
  45262. },
  45263. },
  45264. [
  45265. {
  45266. name: "Standard",
  45267. height: math.unit(100, "feet"),
  45268. default: true
  45269. },
  45270. {
  45271. name: "Grand",
  45272. height: math.unit(1000, "feet")
  45273. },
  45274. {
  45275. name: "Conquering",
  45276. height: math.unit(10000, "feet")
  45277. },
  45278. ]
  45279. ))
  45280. characterMakers.push(() => makeCharacter(
  45281. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45282. {
  45283. dressed: {
  45284. height: math.unit(8 + 5/12, "feet"),
  45285. weight: math.unit(700, "lb"),
  45286. name: "Dressed",
  45287. image: {
  45288. source: "./media/characters/kiva/dressed.svg",
  45289. extra: 1102/1055,
  45290. bottom: 60/1162
  45291. }
  45292. },
  45293. nude: {
  45294. height: math.unit(8 + 5/12, "feet"),
  45295. weight: math.unit(700, "lb"),
  45296. name: "Nude",
  45297. image: {
  45298. source: "./media/characters/kiva/nude.svg",
  45299. extra: 1102/1055,
  45300. bottom: 60/1162
  45301. }
  45302. },
  45303. },
  45304. [
  45305. {
  45306. name: "Base Height",
  45307. height: math.unit(8 + 5/12, "feet"),
  45308. default: true
  45309. },
  45310. {
  45311. name: "Macro",
  45312. height: math.unit(100, "feet")
  45313. },
  45314. {
  45315. name: "Max",
  45316. height: math.unit(3280, "feet")
  45317. },
  45318. ]
  45319. ))
  45320. characterMakers.push(() => makeCharacter(
  45321. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45322. {
  45323. front: {
  45324. height: math.unit(6 + 8/12, "feet"),
  45325. weight: math.unit(250, "lb"),
  45326. name: "Front",
  45327. image: {
  45328. source: "./media/characters/ztragon/front.svg",
  45329. extra: 1825/1684,
  45330. bottom: 98/1923
  45331. }
  45332. },
  45333. },
  45334. [
  45335. {
  45336. name: "Normal",
  45337. height: math.unit(6 + 8/12, "feet"),
  45338. default: true
  45339. },
  45340. {
  45341. name: "Macro",
  45342. height: math.unit(80, "feet")
  45343. },
  45344. ]
  45345. ))
  45346. characterMakers.push(() => makeCharacter(
  45347. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45348. {
  45349. front: {
  45350. height: math.unit(10.4, "feet"),
  45351. weight: math.unit(2, "tons"),
  45352. name: "Front",
  45353. image: {
  45354. source: "./media/characters/yesenia/front.svg",
  45355. extra: 1479/1474,
  45356. bottom: 233/1712
  45357. }
  45358. },
  45359. },
  45360. [
  45361. {
  45362. name: "Normal",
  45363. height: math.unit(10.4, "feet"),
  45364. default: true
  45365. },
  45366. ]
  45367. ))
  45368. characterMakers.push(() => makeCharacter(
  45369. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45370. {
  45371. normal: {
  45372. height: math.unit(6 + 1/12, "feet"),
  45373. weight: math.unit(180, "lb"),
  45374. name: "Normal",
  45375. image: {
  45376. source: "./media/characters/leanne-lycheborne/normal.svg",
  45377. extra: 1748/1660,
  45378. bottom: 98/1846
  45379. }
  45380. },
  45381. were: {
  45382. height: math.unit(12, "feet"),
  45383. weight: math.unit(1600, "lb"),
  45384. name: "Were",
  45385. image: {
  45386. source: "./media/characters/leanne-lycheborne/were.svg",
  45387. extra: 1485/1432,
  45388. bottom: 66/1551
  45389. }
  45390. },
  45391. },
  45392. [
  45393. {
  45394. name: "Normal",
  45395. height: math.unit(6 + 1/12, "feet"),
  45396. default: true
  45397. },
  45398. ]
  45399. ))
  45400. characterMakers.push(() => makeCharacter(
  45401. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45402. {
  45403. side: {
  45404. height: math.unit(13, "feet"),
  45405. name: "Side",
  45406. image: {
  45407. source: "./media/characters/kira-tyler/side.svg",
  45408. extra: 693/393,
  45409. bottom: 58/751
  45410. }
  45411. },
  45412. },
  45413. [
  45414. {
  45415. name: "Normal",
  45416. height: math.unit(13, "feet"),
  45417. default: true
  45418. },
  45419. ]
  45420. ))
  45421. characterMakers.push(() => makeCharacter(
  45422. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45423. {
  45424. front: {
  45425. height: math.unit(10.3, "feet"),
  45426. weight: math.unit(150, "lb"),
  45427. name: "Front",
  45428. image: {
  45429. source: "./media/characters/blaze/front.svg",
  45430. extra: 1378/1286,
  45431. bottom: 172/1550
  45432. }
  45433. },
  45434. },
  45435. [
  45436. {
  45437. name: "Normal",
  45438. height: math.unit(10.3, "feet"),
  45439. default: true
  45440. },
  45441. ]
  45442. ))
  45443. characterMakers.push(() => makeCharacter(
  45444. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45445. {
  45446. side: {
  45447. height: math.unit(2, "meters"),
  45448. weight: math.unit(400, "kg"),
  45449. name: "Side",
  45450. image: {
  45451. source: "./media/characters/anu/side.svg",
  45452. extra: 506/394,
  45453. bottom: 18/524
  45454. }
  45455. },
  45456. },
  45457. [
  45458. {
  45459. name: "Humanoid",
  45460. height: math.unit(2, "meters")
  45461. },
  45462. {
  45463. name: "Normal",
  45464. height: math.unit(5, "meters"),
  45465. default: true
  45466. },
  45467. ]
  45468. ))
  45469. characterMakers.push(() => makeCharacter(
  45470. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45471. {
  45472. front: {
  45473. height: math.unit(5 + 5/12, "feet"),
  45474. weight: math.unit(170, "lb"),
  45475. name: "Front",
  45476. image: {
  45477. source: "./media/characters/synx-the-lynx/front.svg",
  45478. extra: 1893/1745,
  45479. bottom: 17/1910
  45480. }
  45481. },
  45482. side: {
  45483. height: math.unit(5 + 5/12, "feet"),
  45484. weight: math.unit(170, "lb"),
  45485. name: "Side",
  45486. image: {
  45487. source: "./media/characters/synx-the-lynx/side.svg",
  45488. extra: 1884/1740,
  45489. bottom: 39/1923
  45490. }
  45491. },
  45492. back: {
  45493. height: math.unit(5 + 5/12, "feet"),
  45494. weight: math.unit(170, "lb"),
  45495. name: "Back",
  45496. image: {
  45497. source: "./media/characters/synx-the-lynx/back.svg",
  45498. extra: 1903/1755,
  45499. bottom: 14/1917
  45500. }
  45501. },
  45502. },
  45503. [
  45504. {
  45505. name: "Normal",
  45506. height: math.unit(5 + 5/12, "feet"),
  45507. default: true
  45508. },
  45509. ]
  45510. ))
  45511. characterMakers.push(() => makeCharacter(
  45512. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45513. {
  45514. back: {
  45515. height: math.unit(15, "feet"),
  45516. name: "Back",
  45517. image: {
  45518. source: "./media/characters/nadezda-fex/back.svg",
  45519. extra: 1695/1481,
  45520. bottom: 25/1720
  45521. }
  45522. },
  45523. },
  45524. [
  45525. {
  45526. name: "Normal",
  45527. height: math.unit(15, "feet"),
  45528. default: true
  45529. },
  45530. {
  45531. name: "Macro",
  45532. height: math.unit(2.5, "miles")
  45533. },
  45534. {
  45535. name: "Goddess",
  45536. height: math.unit(2, "multiverses")
  45537. },
  45538. ]
  45539. ))
  45540. characterMakers.push(() => makeCharacter(
  45541. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45542. {
  45543. front: {
  45544. height: math.unit(216, "cm"),
  45545. name: "Front",
  45546. image: {
  45547. source: "./media/characters/lev/front.svg",
  45548. extra: 1728/1670,
  45549. bottom: 82/1810
  45550. }
  45551. },
  45552. back: {
  45553. height: math.unit(216, "cm"),
  45554. name: "Back",
  45555. image: {
  45556. source: "./media/characters/lev/back.svg",
  45557. extra: 1738/1675,
  45558. bottom: 24/1762
  45559. }
  45560. },
  45561. dressed: {
  45562. height: math.unit(216, "cm"),
  45563. name: "Dressed",
  45564. image: {
  45565. source: "./media/characters/lev/dressed.svg",
  45566. extra: 1397/1351,
  45567. bottom: 73/1470
  45568. }
  45569. },
  45570. head: {
  45571. height: math.unit(0.51, "meter"),
  45572. name: "Head",
  45573. image: {
  45574. source: "./media/characters/lev/head.svg"
  45575. }
  45576. },
  45577. },
  45578. [
  45579. {
  45580. name: "Normal",
  45581. height: math.unit(216, "cm"),
  45582. default: true
  45583. },
  45584. {
  45585. name: "Relatively Macro",
  45586. height: math.unit(80, "meters")
  45587. },
  45588. {
  45589. name: "Megamacro",
  45590. height: math.unit(21600, "meters")
  45591. },
  45592. {
  45593. name: "Megamacro+",
  45594. height: math.unit(64800, "meters")
  45595. },
  45596. ]
  45597. ))
  45598. characterMakers.push(() => makeCharacter(
  45599. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45600. {
  45601. front: {
  45602. height: math.unit(2, "meters"),
  45603. weight: math.unit(80, "kg"),
  45604. name: "Front",
  45605. image: {
  45606. source: "./media/characters/moka/front.svg",
  45607. extra: 1337/1255,
  45608. bottom: 58/1395
  45609. }
  45610. },
  45611. },
  45612. [
  45613. {
  45614. name: "Micro",
  45615. height: math.unit(15, "cm")
  45616. },
  45617. {
  45618. name: "Normal",
  45619. height: math.unit(2, "meters"),
  45620. default: true
  45621. },
  45622. {
  45623. name: "Macro",
  45624. height: math.unit(20, "meters"),
  45625. },
  45626. ]
  45627. ))
  45628. characterMakers.push(() => makeCharacter(
  45629. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45630. {
  45631. front: {
  45632. height: math.unit(9, "feet"),
  45633. weight: math.unit(240, "lb"),
  45634. name: "Front",
  45635. image: {
  45636. source: "./media/characters/kuzco/front.svg",
  45637. extra: 1593/1487,
  45638. bottom: 32/1625
  45639. }
  45640. },
  45641. side: {
  45642. height: math.unit(9, "feet"),
  45643. weight: math.unit(240, "lb"),
  45644. name: "Side",
  45645. image: {
  45646. source: "./media/characters/kuzco/side.svg",
  45647. extra: 1575/1485,
  45648. bottom: 30/1605
  45649. }
  45650. },
  45651. back: {
  45652. height: math.unit(9, "feet"),
  45653. weight: math.unit(240, "lb"),
  45654. name: "Back",
  45655. image: {
  45656. source: "./media/characters/kuzco/back.svg",
  45657. extra: 1603/1514,
  45658. bottom: 14/1617
  45659. }
  45660. },
  45661. },
  45662. [
  45663. {
  45664. name: "Normal",
  45665. height: math.unit(9, "feet"),
  45666. default: true
  45667. },
  45668. ]
  45669. ))
  45670. characterMakers.push(() => makeCharacter(
  45671. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45672. {
  45673. side: {
  45674. height: math.unit(2, "meters"),
  45675. weight: math.unit(300, "kg"),
  45676. name: "Side",
  45677. image: {
  45678. source: "./media/characters/ceruleus/side.svg",
  45679. extra: 1068/974,
  45680. bottom: 126/1194
  45681. }
  45682. },
  45683. },
  45684. [
  45685. {
  45686. name: "Normal",
  45687. height: math.unit(16, "meters"),
  45688. default: true
  45689. },
  45690. ]
  45691. ))
  45692. characterMakers.push(() => makeCharacter(
  45693. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45694. {
  45695. front: {
  45696. height: math.unit(9, "feet"),
  45697. weight: math.unit(500, "kg"),
  45698. name: "Front",
  45699. image: {
  45700. source: "./media/characters/acouya/front.svg",
  45701. extra: 1660/1473,
  45702. bottom: 28/1688
  45703. }
  45704. },
  45705. },
  45706. [
  45707. {
  45708. name: "Normal",
  45709. height: math.unit(9, "feet"),
  45710. default: true
  45711. },
  45712. ]
  45713. ))
  45714. characterMakers.push(() => makeCharacter(
  45715. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45716. {
  45717. front: {
  45718. height: math.unit(5 + 6/12, "feet"),
  45719. weight: math.unit(195, "lb"),
  45720. name: "Front",
  45721. image: {
  45722. source: "./media/characters/vant/front.svg",
  45723. extra: 1396/1320,
  45724. bottom: 20/1416
  45725. }
  45726. },
  45727. back: {
  45728. height: math.unit(5 + 6/12, "feet"),
  45729. weight: math.unit(195, "lb"),
  45730. name: "Back",
  45731. image: {
  45732. source: "./media/characters/vant/back.svg",
  45733. extra: 1396/1320,
  45734. bottom: 20/1416
  45735. }
  45736. },
  45737. maw: {
  45738. height: math.unit(0.75, "feet"),
  45739. name: "Maw",
  45740. image: {
  45741. source: "./media/characters/vant/maw.svg"
  45742. }
  45743. },
  45744. paw: {
  45745. height: math.unit(1.07, "feet"),
  45746. name: "Paw",
  45747. image: {
  45748. source: "./media/characters/vant/paw.svg"
  45749. }
  45750. },
  45751. },
  45752. [
  45753. {
  45754. name: "Micro",
  45755. height: math.unit(0.25, "inches")
  45756. },
  45757. {
  45758. name: "Normal",
  45759. height: math.unit(5 + 6/12, "feet"),
  45760. default: true
  45761. },
  45762. {
  45763. name: "Macro",
  45764. height: math.unit(75, "feet")
  45765. },
  45766. ]
  45767. ))
  45768. characterMakers.push(() => makeCharacter(
  45769. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45770. {
  45771. front: {
  45772. height: math.unit(30, "meters"),
  45773. weight: math.unit(363, "tons"),
  45774. name: "Front",
  45775. image: {
  45776. source: "./media/characters/ahra/front.svg",
  45777. extra: 1914/1814,
  45778. bottom: 46/1960
  45779. }
  45780. },
  45781. },
  45782. [
  45783. {
  45784. name: "Macro",
  45785. height: math.unit(30, "meters"),
  45786. default: true
  45787. },
  45788. ]
  45789. ))
  45790. characterMakers.push(() => makeCharacter(
  45791. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45792. {
  45793. undressed: {
  45794. height: math.unit(2, "m"),
  45795. weight: math.unit(250, "kg"),
  45796. name: "Undressed",
  45797. image: {
  45798. source: "./media/characters/coriander/undressed.svg",
  45799. extra: 1757/1606,
  45800. bottom: 107/1864
  45801. }
  45802. },
  45803. dressed: {
  45804. height: math.unit(2, "m"),
  45805. weight: math.unit(250, "kg"),
  45806. name: "Dressed",
  45807. image: {
  45808. source: "./media/characters/coriander/dressed.svg",
  45809. extra: 1757/1606,
  45810. bottom: 107/1864
  45811. }
  45812. },
  45813. },
  45814. [
  45815. {
  45816. name: "Normal",
  45817. height: math.unit(4, "meters"),
  45818. default: true
  45819. },
  45820. {
  45821. name: "XL",
  45822. height: math.unit(6, "meters")
  45823. },
  45824. {
  45825. name: "XXL",
  45826. height: math.unit(8, "meters")
  45827. },
  45828. ]
  45829. ))
  45830. characterMakers.push(() => makeCharacter(
  45831. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45832. {
  45833. front: {
  45834. height: math.unit(6, "feet"),
  45835. name: "Front",
  45836. image: {
  45837. source: "./media/characters/syrinx/front.svg",
  45838. extra: 1557/1259,
  45839. bottom: 171/1728
  45840. }
  45841. },
  45842. },
  45843. [
  45844. {
  45845. name: "Normal",
  45846. height: math.unit(6 + 3/12, "feet"),
  45847. default: true
  45848. },
  45849. ]
  45850. ))
  45851. characterMakers.push(() => makeCharacter(
  45852. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45853. {
  45854. front: {
  45855. height: math.unit(11 + 6/12, "feet"),
  45856. weight: math.unit(1.5, "tons"),
  45857. name: "Front",
  45858. image: {
  45859. source: "./media/characters/bor/front.svg",
  45860. extra: 1189/1109,
  45861. bottom: 170/1359
  45862. }
  45863. },
  45864. },
  45865. [
  45866. {
  45867. name: "Normal",
  45868. height: math.unit(11 + 6/12, "feet"),
  45869. default: true
  45870. },
  45871. {
  45872. name: "Macro",
  45873. height: math.unit(32 + 9/12, "feet")
  45874. },
  45875. ]
  45876. ))
  45877. characterMakers.push(() => makeCharacter(
  45878. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45879. {
  45880. anthro: {
  45881. height: math.unit(9, "feet"),
  45882. weight: math.unit(2076, "lb"),
  45883. name: "Anthro",
  45884. image: {
  45885. source: "./media/characters/abacus/anthro.svg",
  45886. extra: 1540/1494,
  45887. bottom: 233/1773
  45888. }
  45889. },
  45890. pigeon: {
  45891. height: math.unit(1, "feet"),
  45892. name: "Pigeon",
  45893. image: {
  45894. source: "./media/characters/abacus/pigeon.svg",
  45895. extra: 528/525,
  45896. bottom: 46/574
  45897. }
  45898. },
  45899. },
  45900. [
  45901. {
  45902. name: "Normal",
  45903. height: math.unit(9, "feet"),
  45904. default: true
  45905. },
  45906. ]
  45907. ))
  45908. characterMakers.push(() => makeCharacter(
  45909. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45910. {
  45911. side: {
  45912. height: math.unit(6, "feet"),
  45913. name: "Side",
  45914. image: {
  45915. source: "./media/characters/delkhan/side.svg",
  45916. extra: 1884/1786,
  45917. bottom: 308/2192
  45918. }
  45919. },
  45920. head: {
  45921. height: math.unit(3.38, "feet"),
  45922. name: "Head",
  45923. image: {
  45924. source: "./media/characters/delkhan/head.svg"
  45925. }
  45926. },
  45927. },
  45928. [
  45929. {
  45930. name: "Normal",
  45931. height: math.unit(72, "feet"),
  45932. default: true
  45933. },
  45934. {
  45935. name: "Giant",
  45936. height: math.unit(172, "feet")
  45937. },
  45938. ]
  45939. ))
  45940. characterMakers.push(() => makeCharacter(
  45941. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45942. {
  45943. standing: {
  45944. height: math.unit(6, "feet"),
  45945. name: "Standing",
  45946. image: {
  45947. source: "./media/characters/euchidat/standing.svg",
  45948. extra: 1612/1553,
  45949. bottom: 116/1728
  45950. }
  45951. },
  45952. leaning: {
  45953. height: math.unit(6, "feet"),
  45954. name: "Leaning",
  45955. image: {
  45956. source: "./media/characters/euchidat/leaning.svg",
  45957. extra: 1719/1674,
  45958. bottom: 27/1746
  45959. }
  45960. },
  45961. },
  45962. [
  45963. {
  45964. name: "Normal",
  45965. height: math.unit(175, "feet"),
  45966. default: true
  45967. },
  45968. {
  45969. name: "Megamacro",
  45970. height: math.unit(190, "miles")
  45971. },
  45972. {
  45973. name: "Gigamacro",
  45974. height: math.unit(190000, "miles")
  45975. },
  45976. ]
  45977. ))
  45978. characterMakers.push(() => makeCharacter(
  45979. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45980. {
  45981. front: {
  45982. height: math.unit(6, "feet"),
  45983. weight: math.unit(150, "lb"),
  45984. name: "Front",
  45985. image: {
  45986. source: "./media/characters/rebecca-stack/front.svg",
  45987. extra: 1256/1201,
  45988. bottom: 18/1274
  45989. }
  45990. },
  45991. },
  45992. [
  45993. {
  45994. name: "Normal",
  45995. height: math.unit(5 + 8/12, "feet"),
  45996. default: true
  45997. },
  45998. {
  45999. name: "Demolitionist",
  46000. height: math.unit(200, "feet")
  46001. },
  46002. {
  46003. name: "Out of Control",
  46004. height: math.unit(2, "miles")
  46005. },
  46006. {
  46007. name: "Giga",
  46008. height: math.unit(7200, "miles")
  46009. },
  46010. ]
  46011. ))
  46012. characterMakers.push(() => makeCharacter(
  46013. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46014. {
  46015. front: {
  46016. height: math.unit(6, "feet"),
  46017. weight: math.unit(150, "lb"),
  46018. name: "Front",
  46019. image: {
  46020. source: "./media/characters/jenny-cartwright/front.svg",
  46021. extra: 1384/1376,
  46022. bottom: 58/1442
  46023. }
  46024. },
  46025. },
  46026. [
  46027. {
  46028. name: "Normal",
  46029. height: math.unit(6 + 7/12, "feet"),
  46030. default: true
  46031. },
  46032. {
  46033. name: "Librarian",
  46034. height: math.unit(55, "feet")
  46035. },
  46036. {
  46037. name: "Sightseer",
  46038. height: math.unit(50, "miles")
  46039. },
  46040. {
  46041. name: "Giga",
  46042. height: math.unit(30000, "miles")
  46043. },
  46044. ]
  46045. ))
  46046. characterMakers.push(() => makeCharacter(
  46047. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46048. {
  46049. nude: {
  46050. height: math.unit(8, "feet"),
  46051. weight: math.unit(225, "lb"),
  46052. name: "Nude",
  46053. image: {
  46054. source: "./media/characters/marvy/nude.svg",
  46055. extra: 1900/1683,
  46056. bottom: 89/1989
  46057. }
  46058. },
  46059. dressed: {
  46060. height: math.unit(8, "feet"),
  46061. weight: math.unit(225, "lb"),
  46062. name: "Dressed",
  46063. image: {
  46064. source: "./media/characters/marvy/dressed.svg",
  46065. extra: 1900/1683,
  46066. bottom: 89/1989
  46067. }
  46068. },
  46069. head: {
  46070. height: math.unit(2.85, "feet"),
  46071. name: "Head",
  46072. image: {
  46073. source: "./media/characters/marvy/head.svg"
  46074. }
  46075. },
  46076. },
  46077. [
  46078. {
  46079. name: "Normal",
  46080. height: math.unit(8, "feet"),
  46081. default: true
  46082. },
  46083. ]
  46084. ))
  46085. characterMakers.push(() => makeCharacter(
  46086. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46087. {
  46088. front: {
  46089. height: math.unit(8, "feet"),
  46090. weight: math.unit(250, "lb"),
  46091. name: "Front",
  46092. image: {
  46093. source: "./media/characters/leah/front.svg",
  46094. extra: 1257/1149,
  46095. bottom: 109/1366
  46096. }
  46097. },
  46098. },
  46099. [
  46100. {
  46101. name: "Normal",
  46102. height: math.unit(8, "feet"),
  46103. default: true
  46104. },
  46105. {
  46106. name: "Minimacro",
  46107. height: math.unit(40, "feet")
  46108. },
  46109. {
  46110. name: "Macro",
  46111. height: math.unit(124, "feet")
  46112. },
  46113. {
  46114. name: "Megamacro",
  46115. height: math.unit(850, "feet")
  46116. },
  46117. ]
  46118. ))
  46119. characterMakers.push(() => makeCharacter(
  46120. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46121. {
  46122. side: {
  46123. height: math.unit(13 + 6/12, "feet"),
  46124. weight: math.unit(3200, "lb"),
  46125. name: "Side",
  46126. image: {
  46127. source: "./media/characters/alvir/side.svg",
  46128. extra: 896/589,
  46129. bottom: 26/922
  46130. }
  46131. },
  46132. },
  46133. [
  46134. {
  46135. name: "Normal",
  46136. height: math.unit(13 + 6/12, "feet"),
  46137. default: true
  46138. },
  46139. ]
  46140. ))
  46141. characterMakers.push(() => makeCharacter(
  46142. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46143. {
  46144. front: {
  46145. height: math.unit(5 + 4/12, "feet"),
  46146. weight: math.unit(236, "lb"),
  46147. name: "Front",
  46148. image: {
  46149. source: "./media/characters/zaina-khalil/front.svg",
  46150. extra: 1533/1485,
  46151. bottom: 94/1627
  46152. }
  46153. },
  46154. side: {
  46155. height: math.unit(5 + 4/12, "feet"),
  46156. weight: math.unit(236, "lb"),
  46157. name: "Side",
  46158. image: {
  46159. source: "./media/characters/zaina-khalil/side.svg",
  46160. extra: 1537/1498,
  46161. bottom: 66/1603
  46162. }
  46163. },
  46164. back: {
  46165. height: math.unit(5 + 4/12, "feet"),
  46166. weight: math.unit(236, "lb"),
  46167. name: "Back",
  46168. image: {
  46169. source: "./media/characters/zaina-khalil/back.svg",
  46170. extra: 1546/1494,
  46171. bottom: 89/1635
  46172. }
  46173. },
  46174. },
  46175. [
  46176. {
  46177. name: "Normal",
  46178. height: math.unit(5 + 4/12, "feet"),
  46179. default: true
  46180. },
  46181. ]
  46182. ))
  46183. characterMakers.push(() => makeCharacter(
  46184. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46185. {
  46186. side: {
  46187. height: math.unit(12, "feet"),
  46188. weight: math.unit(4000, "lb"),
  46189. name: "Side",
  46190. image: {
  46191. source: "./media/characters/terry/side.svg",
  46192. extra: 1518/1439,
  46193. bottom: 149/1667
  46194. }
  46195. },
  46196. },
  46197. [
  46198. {
  46199. name: "Normal",
  46200. height: math.unit(12, "feet"),
  46201. default: true
  46202. },
  46203. ]
  46204. ))
  46205. characterMakers.push(() => makeCharacter(
  46206. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46207. {
  46208. front: {
  46209. height: math.unit(12, "feet"),
  46210. weight: math.unit(1500, "lb"),
  46211. name: "Front",
  46212. image: {
  46213. source: "./media/characters/kahea/front.svg",
  46214. extra: 1722/1617,
  46215. bottom: 179/1901
  46216. }
  46217. },
  46218. },
  46219. [
  46220. {
  46221. name: "Normal",
  46222. height: math.unit(12, "feet"),
  46223. default: true
  46224. },
  46225. ]
  46226. ))
  46227. characterMakers.push(() => makeCharacter(
  46228. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46229. {
  46230. demonFront: {
  46231. height: math.unit(36, "feet"),
  46232. name: "Front",
  46233. image: {
  46234. source: "./media/characters/alex-xuria/demon-front.svg",
  46235. extra: 1705/1673,
  46236. bottom: 198/1903
  46237. },
  46238. form: "demon",
  46239. default: true
  46240. },
  46241. demonBack: {
  46242. height: math.unit(36, "feet"),
  46243. name: "Back",
  46244. image: {
  46245. source: "./media/characters/alex-xuria/demon-back.svg",
  46246. extra: 1725/1693,
  46247. bottom: 70/1795
  46248. },
  46249. form: "demon"
  46250. },
  46251. demonHead: {
  46252. height: math.unit(2.14, "meters"),
  46253. name: "Head",
  46254. image: {
  46255. source: "./media/characters/alex-xuria/demon-head.svg"
  46256. },
  46257. form: "demon"
  46258. },
  46259. demonHand: {
  46260. height: math.unit(1.61, "meters"),
  46261. name: "Hand",
  46262. image: {
  46263. source: "./media/characters/alex-xuria/demon-hand.svg"
  46264. },
  46265. form: "demon"
  46266. },
  46267. demonPaw: {
  46268. height: math.unit(1.35, "meters"),
  46269. name: "Paw",
  46270. image: {
  46271. source: "./media/characters/alex-xuria/demon-paw.svg"
  46272. },
  46273. form: "demon"
  46274. },
  46275. demonFoot: {
  46276. height: math.unit(2.2, "meters"),
  46277. name: "Foot",
  46278. image: {
  46279. source: "./media/characters/alex-xuria/demon-foot.svg"
  46280. },
  46281. form: "demon"
  46282. },
  46283. demonCock: {
  46284. height: math.unit(1.74, "meters"),
  46285. name: "Cock",
  46286. image: {
  46287. source: "./media/characters/alex-xuria/demon-cock.svg"
  46288. },
  46289. form: "demon"
  46290. },
  46291. demonTailClosed: {
  46292. height: math.unit(1.47, "meters"),
  46293. name: "Tail (Closed)",
  46294. image: {
  46295. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46296. },
  46297. form: "demon"
  46298. },
  46299. demonTailOpen: {
  46300. height: math.unit(2.85, "meters"),
  46301. name: "Tail (Open)",
  46302. image: {
  46303. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46304. },
  46305. form: "demon"
  46306. },
  46307. incubusFront: {
  46308. height: math.unit(12, "feet"),
  46309. name: "Front",
  46310. image: {
  46311. source: "./media/characters/alex-xuria/incubus-front.svg",
  46312. extra: 1754/1677,
  46313. bottom: 125/1879
  46314. },
  46315. form: "incubus",
  46316. default: true
  46317. },
  46318. incubusBack: {
  46319. height: math.unit(12, "feet"),
  46320. name: "Back",
  46321. image: {
  46322. source: "./media/characters/alex-xuria/incubus-back.svg",
  46323. extra: 1702/1647,
  46324. bottom: 30/1732
  46325. },
  46326. form: "incubus"
  46327. },
  46328. incubusHead: {
  46329. height: math.unit(3.45, "feet"),
  46330. name: "Head",
  46331. image: {
  46332. source: "./media/characters/alex-xuria/incubus-head.svg"
  46333. },
  46334. form: "incubus"
  46335. },
  46336. rabbitFront: {
  46337. height: math.unit(6, "feet"),
  46338. name: "Front",
  46339. image: {
  46340. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46341. extra: 1369/1349,
  46342. bottom: 45/1414
  46343. },
  46344. form: "rabbit",
  46345. default: true
  46346. },
  46347. rabbitSide: {
  46348. height: math.unit(6, "feet"),
  46349. name: "Side",
  46350. image: {
  46351. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46352. extra: 1370/1356,
  46353. bottom: 37/1407
  46354. },
  46355. form: "rabbit"
  46356. },
  46357. rabbitBack: {
  46358. height: math.unit(6, "feet"),
  46359. name: "Back",
  46360. image: {
  46361. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46362. extra: 1375/1358,
  46363. bottom: 43/1418
  46364. },
  46365. form: "rabbit"
  46366. },
  46367. },
  46368. [
  46369. {
  46370. name: "Normal",
  46371. height: math.unit(6, "feet"),
  46372. default: true,
  46373. form: "rabbit"
  46374. },
  46375. {
  46376. name: "Incubus",
  46377. height: math.unit(12, "feet"),
  46378. default: true,
  46379. form: "incubus"
  46380. },
  46381. {
  46382. name: "Demon",
  46383. height: math.unit(36, "feet"),
  46384. default: true,
  46385. form: "demon"
  46386. }
  46387. ],
  46388. {
  46389. "demon": {
  46390. name: "Demon",
  46391. default: true
  46392. },
  46393. "incubus": {
  46394. name: "Incubus",
  46395. },
  46396. "rabbit": {
  46397. name: "Rabbit"
  46398. }
  46399. }
  46400. ))
  46401. characterMakers.push(() => makeCharacter(
  46402. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46403. {
  46404. front: {
  46405. height: math.unit(7 + 5/12, "feet"),
  46406. weight: math.unit(510, "lb"),
  46407. name: "Front",
  46408. image: {
  46409. source: "./media/characters/syrup/front.svg",
  46410. extra: 932/916,
  46411. bottom: 26/958
  46412. }
  46413. },
  46414. },
  46415. [
  46416. {
  46417. name: "Normal",
  46418. height: math.unit(7 + 5/12, "feet"),
  46419. default: true
  46420. },
  46421. {
  46422. name: "Big",
  46423. height: math.unit(50, "feet")
  46424. },
  46425. {
  46426. name: "Macro",
  46427. height: math.unit(300, "feet")
  46428. },
  46429. {
  46430. name: "Megamacro",
  46431. height: math.unit(1, "mile")
  46432. },
  46433. ]
  46434. ))
  46435. characterMakers.push(() => makeCharacter(
  46436. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46437. {
  46438. front: {
  46439. height: math.unit(6 + 9/12, "feet"),
  46440. name: "Front",
  46441. image: {
  46442. source: "./media/characters/zeimne/front.svg",
  46443. extra: 1969/1806,
  46444. bottom: 53/2022
  46445. }
  46446. },
  46447. },
  46448. [
  46449. {
  46450. name: "Normal",
  46451. height: math.unit(6 + 9/12, "feet"),
  46452. default: true
  46453. },
  46454. {
  46455. name: "Giant",
  46456. height: math.unit(550, "feet")
  46457. },
  46458. {
  46459. name: "Mega",
  46460. height: math.unit(3, "miles")
  46461. },
  46462. {
  46463. name: "Giga",
  46464. height: math.unit(250, "miles")
  46465. },
  46466. {
  46467. name: "Tera",
  46468. height: math.unit(1, "AU")
  46469. },
  46470. ]
  46471. ))
  46472. characterMakers.push(() => makeCharacter(
  46473. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46474. {
  46475. front: {
  46476. height: math.unit(5 + 2/12, "feet"),
  46477. name: "Front",
  46478. image: {
  46479. source: "./media/characters/grar/front.svg",
  46480. extra: 1331/1119,
  46481. bottom: 60/1391
  46482. }
  46483. },
  46484. back: {
  46485. height: math.unit(5 + 2/12, "feet"),
  46486. name: "Back",
  46487. image: {
  46488. source: "./media/characters/grar/back.svg",
  46489. extra: 1385/1169,
  46490. bottom: 23/1408
  46491. }
  46492. },
  46493. },
  46494. [
  46495. {
  46496. name: "Normal",
  46497. height: math.unit(5 + 2/12, "feet"),
  46498. default: true
  46499. },
  46500. ]
  46501. ))
  46502. characterMakers.push(() => makeCharacter(
  46503. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46504. {
  46505. front: {
  46506. height: math.unit(13 + 7/12, "feet"),
  46507. weight: math.unit(2200, "lb"),
  46508. name: "Front",
  46509. image: {
  46510. source: "./media/characters/endraya/front.svg",
  46511. extra: 1289/1215,
  46512. bottom: 50/1339
  46513. }
  46514. },
  46515. nude: {
  46516. height: math.unit(13 + 7/12, "feet"),
  46517. weight: math.unit(2200, "lb"),
  46518. name: "Nude",
  46519. image: {
  46520. source: "./media/characters/endraya/nude.svg",
  46521. extra: 1247/1171,
  46522. bottom: 40/1287
  46523. }
  46524. },
  46525. head: {
  46526. height: math.unit(2.6, "feet"),
  46527. name: "Head",
  46528. image: {
  46529. source: "./media/characters/endraya/head.svg"
  46530. }
  46531. },
  46532. slit: {
  46533. height: math.unit(3.4, "feet"),
  46534. name: "Slit",
  46535. image: {
  46536. source: "./media/characters/endraya/slit.svg"
  46537. }
  46538. },
  46539. },
  46540. [
  46541. {
  46542. name: "Normal",
  46543. height: math.unit(13 + 7/12, "feet"),
  46544. default: true
  46545. },
  46546. {
  46547. name: "Macro",
  46548. height: math.unit(200, "feet")
  46549. },
  46550. ]
  46551. ))
  46552. characterMakers.push(() => makeCharacter(
  46553. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46554. {
  46555. front: {
  46556. height: math.unit(1.81, "meters"),
  46557. weight: math.unit(69, "kg"),
  46558. name: "Front",
  46559. image: {
  46560. source: "./media/characters/rodryana/front.svg",
  46561. extra: 2002/1921,
  46562. bottom: 53/2055
  46563. }
  46564. },
  46565. back: {
  46566. height: math.unit(1.81, "meters"),
  46567. weight: math.unit(69, "kg"),
  46568. name: "Back",
  46569. image: {
  46570. source: "./media/characters/rodryana/back.svg",
  46571. extra: 1993/1926,
  46572. bottom: 48/2041
  46573. }
  46574. },
  46575. maw: {
  46576. height: math.unit(0.19769417475, "meters"),
  46577. name: "Maw",
  46578. image: {
  46579. source: "./media/characters/rodryana/maw.svg"
  46580. }
  46581. },
  46582. slit: {
  46583. height: math.unit(0.31631067961, "meters"),
  46584. name: "Slit",
  46585. image: {
  46586. source: "./media/characters/rodryana/slit.svg"
  46587. }
  46588. },
  46589. },
  46590. [
  46591. {
  46592. name: "Normal",
  46593. height: math.unit(1.81, "meters")
  46594. },
  46595. {
  46596. name: "Mini Macro",
  46597. height: math.unit(181, "meters")
  46598. },
  46599. {
  46600. name: "Macro",
  46601. height: math.unit(452, "meters"),
  46602. default: true
  46603. },
  46604. {
  46605. name: "Mega Macro",
  46606. height: math.unit(1.375, "km")
  46607. },
  46608. {
  46609. name: "Giga Macro",
  46610. height: math.unit(13.575, "km")
  46611. },
  46612. ]
  46613. ))
  46614. characterMakers.push(() => makeCharacter(
  46615. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46616. {
  46617. front: {
  46618. height: math.unit(6, "feet"),
  46619. weight: math.unit(1000, "lb"),
  46620. name: "Front",
  46621. image: {
  46622. source: "./media/characters/asaya/front.svg",
  46623. extra: 1460/1200,
  46624. bottom: 71/1531
  46625. }
  46626. },
  46627. },
  46628. [
  46629. {
  46630. name: "Normal",
  46631. height: math.unit(8, "km"),
  46632. default: true
  46633. },
  46634. ]
  46635. ))
  46636. characterMakers.push(() => makeCharacter(
  46637. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46638. {
  46639. front: {
  46640. height: math.unit(3.5, "meters"),
  46641. name: "Front",
  46642. image: {
  46643. source: "./media/characters/sarzu-and-israz/front.svg",
  46644. extra: 1570/1558,
  46645. bottom: 150/1720
  46646. },
  46647. },
  46648. back: {
  46649. height: math.unit(3.5, "meters"),
  46650. name: "Back",
  46651. image: {
  46652. source: "./media/characters/sarzu-and-israz/back.svg",
  46653. extra: 1523/1509,
  46654. bottom: 132/1655
  46655. },
  46656. },
  46657. frontFemale: {
  46658. height: math.unit(3.5, "meters"),
  46659. name: "Front (Female)",
  46660. image: {
  46661. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46662. extra: 1570/1558,
  46663. bottom: 150/1720
  46664. },
  46665. },
  46666. frontHerm: {
  46667. height: math.unit(3.5, "meters"),
  46668. name: "Front (Herm)",
  46669. image: {
  46670. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46671. extra: 1570/1558,
  46672. bottom: 150/1720
  46673. },
  46674. },
  46675. },
  46676. [
  46677. {
  46678. name: "Normal",
  46679. height: math.unit(3.5, "meters"),
  46680. default: true,
  46681. },
  46682. {
  46683. name: "Macro",
  46684. height: math.unit(65.5, "meters"),
  46685. },
  46686. ],
  46687. ))
  46688. characterMakers.push(() => makeCharacter(
  46689. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46690. {
  46691. front: {
  46692. height: math.unit(6, "feet"),
  46693. weight: math.unit(250, "lb"),
  46694. name: "Front",
  46695. image: {
  46696. source: "./media/characters/zenimma/front.svg",
  46697. extra: 1346/1320,
  46698. bottom: 58/1404
  46699. }
  46700. },
  46701. back: {
  46702. height: math.unit(6, "feet"),
  46703. weight: math.unit(250, "lb"),
  46704. name: "Back",
  46705. image: {
  46706. source: "./media/characters/zenimma/back.svg",
  46707. extra: 1324/1308,
  46708. bottom: 44/1368
  46709. }
  46710. },
  46711. dick: {
  46712. height: math.unit(1.44, "feet"),
  46713. name: "Dick",
  46714. image: {
  46715. source: "./media/characters/zenimma/dick.svg"
  46716. }
  46717. },
  46718. },
  46719. [
  46720. {
  46721. name: "Canon Height",
  46722. height: math.unit(66, "miles"),
  46723. default: true
  46724. },
  46725. ]
  46726. ))
  46727. characterMakers.push(() => makeCharacter(
  46728. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46729. {
  46730. nude: {
  46731. height: math.unit(6, "feet"),
  46732. weight: math.unit(150, "lb"),
  46733. name: "Nude",
  46734. image: {
  46735. source: "./media/characters/shavon/nude.svg",
  46736. extra: 1242/1096,
  46737. bottom: 98/1340
  46738. }
  46739. },
  46740. dressed: {
  46741. height: math.unit(6, "feet"),
  46742. weight: math.unit(150, "lb"),
  46743. name: "Dressed",
  46744. image: {
  46745. source: "./media/characters/shavon/dressed.svg",
  46746. extra: 1242/1096,
  46747. bottom: 98/1340
  46748. }
  46749. },
  46750. },
  46751. [
  46752. {
  46753. name: "Macro",
  46754. height: math.unit(255, "feet"),
  46755. default: true
  46756. },
  46757. ]
  46758. ))
  46759. characterMakers.push(() => makeCharacter(
  46760. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46761. {
  46762. front: {
  46763. height: math.unit(6, "feet"),
  46764. name: "Front",
  46765. image: {
  46766. source: "./media/characters/steph/front.svg",
  46767. extra: 1430/1330,
  46768. bottom: 54/1484
  46769. }
  46770. },
  46771. },
  46772. [
  46773. {
  46774. name: "Normal",
  46775. height: math.unit(6, "feet"),
  46776. default: true
  46777. },
  46778. ]
  46779. ))
  46780. characterMakers.push(() => makeCharacter(
  46781. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46782. {
  46783. front: {
  46784. height: math.unit(9, "feet"),
  46785. weight: math.unit(400, "lb"),
  46786. name: "Front",
  46787. image: {
  46788. source: "./media/characters/kil'aman/front.svg",
  46789. extra: 1210/1159,
  46790. bottom: 109/1319
  46791. }
  46792. },
  46793. head: {
  46794. height: math.unit(2.14, "feet"),
  46795. name: "Head",
  46796. image: {
  46797. source: "./media/characters/kil'aman/head.svg"
  46798. }
  46799. },
  46800. maw: {
  46801. height: math.unit(1.21, "feet"),
  46802. name: "Maw",
  46803. image: {
  46804. source: "./media/characters/kil'aman/maw.svg"
  46805. }
  46806. },
  46807. foot: {
  46808. height: math.unit(1.7, "feet"),
  46809. name: "Foot",
  46810. image: {
  46811. source: "./media/characters/kil'aman/foot.svg"
  46812. }
  46813. },
  46814. dick: {
  46815. height: math.unit(2.1, "feet"),
  46816. name: "Dick",
  46817. image: {
  46818. source: "./media/characters/kil'aman/dick.svg"
  46819. }
  46820. },
  46821. },
  46822. [
  46823. {
  46824. name: "Normal",
  46825. height: math.unit(9, "feet")
  46826. },
  46827. {
  46828. name: "Canon Height",
  46829. height: math.unit(10, "miles"),
  46830. default: true
  46831. },
  46832. {
  46833. name: "Maximum",
  46834. height: math.unit(6e9, "miles")
  46835. },
  46836. ]
  46837. ))
  46838. characterMakers.push(() => makeCharacter(
  46839. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46840. {
  46841. front: {
  46842. height: math.unit(90, "feet"),
  46843. weight: math.unit(675000, "lb"),
  46844. name: "Front",
  46845. image: {
  46846. source: "./media/characters/qadan/front.svg",
  46847. extra: 1012/1004,
  46848. bottom: 78/1090
  46849. }
  46850. },
  46851. back: {
  46852. height: math.unit(90, "feet"),
  46853. weight: math.unit(675000, "lb"),
  46854. name: "Back",
  46855. image: {
  46856. source: "./media/characters/qadan/back.svg",
  46857. extra: 1042/1031,
  46858. bottom: 55/1097
  46859. }
  46860. },
  46861. armored: {
  46862. height: math.unit(90, "feet"),
  46863. weight: math.unit(675000, "lb"),
  46864. name: "Armored",
  46865. image: {
  46866. source: "./media/characters/qadan/armored.svg",
  46867. extra: 1047/1037,
  46868. bottom: 48/1095
  46869. }
  46870. },
  46871. },
  46872. [
  46873. {
  46874. name: "Normal",
  46875. height: math.unit(90, "feet"),
  46876. default: true
  46877. },
  46878. ]
  46879. ))
  46880. characterMakers.push(() => makeCharacter(
  46881. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46882. {
  46883. front: {
  46884. height: math.unit(6, "feet"),
  46885. weight: math.unit(225, "lb"),
  46886. name: "Front",
  46887. image: {
  46888. source: "./media/characters/brooke/front.svg",
  46889. extra: 1050/1010,
  46890. bottom: 66/1116
  46891. }
  46892. },
  46893. back: {
  46894. height: math.unit(6, "feet"),
  46895. weight: math.unit(225, "lb"),
  46896. name: "Back",
  46897. image: {
  46898. source: "./media/characters/brooke/back.svg",
  46899. extra: 1053/1013,
  46900. bottom: 41/1094
  46901. }
  46902. },
  46903. dressed: {
  46904. height: math.unit(6, "feet"),
  46905. weight: math.unit(225, "lb"),
  46906. name: "Dressed",
  46907. image: {
  46908. source: "./media/characters/brooke/dressed.svg",
  46909. extra: 1050/1010,
  46910. bottom: 66/1116
  46911. }
  46912. },
  46913. },
  46914. [
  46915. {
  46916. name: "Canon Height",
  46917. height: math.unit(500, "miles"),
  46918. default: true
  46919. },
  46920. ]
  46921. ))
  46922. characterMakers.push(() => makeCharacter(
  46923. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46924. {
  46925. front: {
  46926. height: math.unit(6 + 2/12, "feet"),
  46927. weight: math.unit(210, "lb"),
  46928. name: "Front",
  46929. image: {
  46930. source: "./media/characters/wubs/front.svg",
  46931. extra: 1345/1325,
  46932. bottom: 70/1415
  46933. }
  46934. },
  46935. back: {
  46936. height: math.unit(6 + 2/12, "feet"),
  46937. weight: math.unit(210, "lb"),
  46938. name: "Back",
  46939. image: {
  46940. source: "./media/characters/wubs/back.svg",
  46941. extra: 1296/1275,
  46942. bottom: 58/1354
  46943. }
  46944. },
  46945. },
  46946. [
  46947. {
  46948. name: "Normal",
  46949. height: math.unit(6 + 2/12, "feet"),
  46950. default: true
  46951. },
  46952. {
  46953. name: "Macro",
  46954. height: math.unit(1000, "feet")
  46955. },
  46956. {
  46957. name: "Megamacro",
  46958. height: math.unit(1, "mile")
  46959. },
  46960. ]
  46961. ))
  46962. characterMakers.push(() => makeCharacter(
  46963. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46964. {
  46965. front: {
  46966. height: math.unit(4, "feet"),
  46967. weight: math.unit(120, "lb"),
  46968. name: "Front",
  46969. image: {
  46970. source: "./media/characters/blue/front.svg",
  46971. extra: 1636/1525,
  46972. bottom: 43/1679
  46973. }
  46974. },
  46975. back: {
  46976. height: math.unit(4, "feet"),
  46977. weight: math.unit(120, "lb"),
  46978. name: "Back",
  46979. image: {
  46980. source: "./media/characters/blue/back.svg",
  46981. extra: 1660/1560,
  46982. bottom: 57/1717
  46983. }
  46984. },
  46985. paws: {
  46986. height: math.unit(0.826, "feet"),
  46987. name: "Paws",
  46988. image: {
  46989. source: "./media/characters/blue/paws.svg"
  46990. }
  46991. },
  46992. },
  46993. [
  46994. {
  46995. name: "Micro",
  46996. height: math.unit(3, "inches")
  46997. },
  46998. {
  46999. name: "Normal",
  47000. height: math.unit(4, "feet"),
  47001. default: true
  47002. },
  47003. {
  47004. name: "Femenine Form",
  47005. height: math.unit(14, "feet")
  47006. },
  47007. {
  47008. name: "Werebat Form",
  47009. height: math.unit(18, "feet")
  47010. },
  47011. ]
  47012. ))
  47013. characterMakers.push(() => makeCharacter(
  47014. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47015. {
  47016. female: {
  47017. height: math.unit(7 + 4/12, "feet"),
  47018. weight: math.unit(243, "lb"),
  47019. name: "Female",
  47020. image: {
  47021. source: "./media/characters/kaya/female.svg",
  47022. extra: 975/898,
  47023. bottom: 34/1009
  47024. }
  47025. },
  47026. herm: {
  47027. height: math.unit(7 + 4/12, "feet"),
  47028. weight: math.unit(243, "lb"),
  47029. name: "Herm",
  47030. image: {
  47031. source: "./media/characters/kaya/herm.svg",
  47032. extra: 975/898,
  47033. bottom: 34/1009
  47034. }
  47035. },
  47036. },
  47037. [
  47038. {
  47039. name: "Normal",
  47040. height: math.unit(7 + 4/12, "feet"),
  47041. default: true
  47042. },
  47043. ]
  47044. ))
  47045. characterMakers.push(() => makeCharacter(
  47046. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47047. {
  47048. female: {
  47049. height: math.unit(9 + 4/12, "feet"),
  47050. weight: math.unit(398, "lb"),
  47051. name: "Female",
  47052. image: {
  47053. source: "./media/characters/kassandra/female.svg",
  47054. extra: 908/839,
  47055. bottom: 61/969
  47056. }
  47057. },
  47058. intersex: {
  47059. height: math.unit(9 + 4/12, "feet"),
  47060. weight: math.unit(398, "lb"),
  47061. name: "Intersex",
  47062. image: {
  47063. source: "./media/characters/kassandra/intersex.svg",
  47064. extra: 908/839,
  47065. bottom: 61/969
  47066. }
  47067. },
  47068. },
  47069. [
  47070. {
  47071. name: "Normal",
  47072. height: math.unit(9 + 4/12, "feet"),
  47073. default: true
  47074. },
  47075. ]
  47076. ))
  47077. characterMakers.push(() => makeCharacter(
  47078. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47079. {
  47080. front: {
  47081. height: math.unit(3, "meters"),
  47082. name: "Front",
  47083. image: {
  47084. source: "./media/characters/amy/front.svg",
  47085. extra: 1380/1343,
  47086. bottom: 70/1450
  47087. }
  47088. },
  47089. back: {
  47090. height: math.unit(3, "meters"),
  47091. name: "Back",
  47092. image: {
  47093. source: "./media/characters/amy/back.svg",
  47094. extra: 1380/1347,
  47095. bottom: 66/1446
  47096. }
  47097. },
  47098. },
  47099. [
  47100. {
  47101. name: "Normal",
  47102. height: math.unit(3, "meters"),
  47103. default: true
  47104. },
  47105. ]
  47106. ))
  47107. characterMakers.push(() => makeCharacter(
  47108. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47109. {
  47110. side: {
  47111. height: math.unit(47, "cm"),
  47112. weight: math.unit(10.8, "kg"),
  47113. name: "Side",
  47114. image: {
  47115. source: "./media/characters/alphaschakal/side.svg",
  47116. extra: 1058/568,
  47117. bottom: 62/1120
  47118. }
  47119. },
  47120. back: {
  47121. height: math.unit(78, "cm"),
  47122. weight: math.unit(10.8, "kg"),
  47123. name: "Back",
  47124. image: {
  47125. source: "./media/characters/alphaschakal/back.svg",
  47126. extra: 1102/942,
  47127. bottom: 185/1287
  47128. }
  47129. },
  47130. head: {
  47131. height: math.unit(28, "cm"),
  47132. name: "Head",
  47133. image: {
  47134. source: "./media/characters/alphaschakal/head.svg",
  47135. extra: 696/508,
  47136. bottom: 0/696
  47137. }
  47138. },
  47139. paw: {
  47140. height: math.unit(16, "cm"),
  47141. name: "Paw",
  47142. image: {
  47143. source: "./media/characters/alphaschakal/paw.svg"
  47144. }
  47145. },
  47146. },
  47147. [
  47148. {
  47149. name: "Normal",
  47150. height: math.unit(47, "cm"),
  47151. default: true
  47152. },
  47153. {
  47154. name: "Macro",
  47155. height: math.unit(340, "cm")
  47156. },
  47157. ]
  47158. ))
  47159. characterMakers.push(() => makeCharacter(
  47160. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47161. {
  47162. front: {
  47163. height: math.unit(36, "earths"),
  47164. name: "Front",
  47165. image: {
  47166. source: "./media/characters/ecobyss/front.svg",
  47167. extra: 1282/1215,
  47168. bottom: 11/1293
  47169. }
  47170. },
  47171. back: {
  47172. height: math.unit(36, "earths"),
  47173. name: "Back",
  47174. image: {
  47175. source: "./media/characters/ecobyss/back.svg",
  47176. extra: 1291/1222,
  47177. bottom: 8/1299
  47178. }
  47179. },
  47180. },
  47181. [
  47182. {
  47183. name: "Normal",
  47184. height: math.unit(36, "earths"),
  47185. default: true
  47186. },
  47187. ]
  47188. ))
  47189. characterMakers.push(() => makeCharacter(
  47190. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47191. {
  47192. front: {
  47193. height: math.unit(12, "feet"),
  47194. name: "Front",
  47195. image: {
  47196. source: "./media/characters/vasuk/front.svg",
  47197. extra: 1326/1207,
  47198. bottom: 64/1390
  47199. }
  47200. },
  47201. },
  47202. [
  47203. {
  47204. name: "Normal",
  47205. height: math.unit(12, "feet"),
  47206. default: true
  47207. },
  47208. ]
  47209. ))
  47210. characterMakers.push(() => makeCharacter(
  47211. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47212. {
  47213. side: {
  47214. height: math.unit(100, "feet"),
  47215. name: "Side",
  47216. image: {
  47217. source: "./media/characters/linneaus/side.svg",
  47218. extra: 987/807,
  47219. bottom: 47/1034
  47220. }
  47221. },
  47222. },
  47223. [
  47224. {
  47225. name: "Macro",
  47226. height: math.unit(100, "feet"),
  47227. default: true
  47228. },
  47229. ]
  47230. ))
  47231. characterMakers.push(() => makeCharacter(
  47232. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47233. {
  47234. front: {
  47235. height: math.unit(8, "feet"),
  47236. weight: math.unit(1200, "lb"),
  47237. name: "Front",
  47238. image: {
  47239. source: "./media/characters/nyterious-daligdig/front.svg",
  47240. extra: 1284/1094,
  47241. bottom: 84/1368
  47242. }
  47243. },
  47244. back: {
  47245. height: math.unit(8, "feet"),
  47246. weight: math.unit(1200, "lb"),
  47247. name: "Back",
  47248. image: {
  47249. source: "./media/characters/nyterious-daligdig/back.svg",
  47250. extra: 1301/1121,
  47251. bottom: 129/1430
  47252. }
  47253. },
  47254. mouth: {
  47255. height: math.unit(1.464, "feet"),
  47256. name: "Mouth",
  47257. image: {
  47258. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47259. }
  47260. },
  47261. },
  47262. [
  47263. {
  47264. name: "Small",
  47265. height: math.unit(8, "feet"),
  47266. default: true
  47267. },
  47268. {
  47269. name: "Normal",
  47270. height: math.unit(15, "feet")
  47271. },
  47272. {
  47273. name: "Macro",
  47274. height: math.unit(90, "feet")
  47275. },
  47276. ]
  47277. ))
  47278. characterMakers.push(() => makeCharacter(
  47279. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47280. {
  47281. front: {
  47282. height: math.unit(7 + 4/12, "feet"),
  47283. weight: math.unit(252, "lb"),
  47284. name: "Front",
  47285. image: {
  47286. source: "./media/characters/bandel/front.svg",
  47287. extra: 1946/1775,
  47288. bottom: 26/1972
  47289. }
  47290. },
  47291. back: {
  47292. height: math.unit(7 + 4/12, "feet"),
  47293. weight: math.unit(252, "lb"),
  47294. name: "Back",
  47295. image: {
  47296. source: "./media/characters/bandel/back.svg",
  47297. extra: 1940/1770,
  47298. bottom: 25/1965
  47299. }
  47300. },
  47301. maw: {
  47302. height: math.unit(2.15, "feet"),
  47303. name: "Maw",
  47304. image: {
  47305. source: "./media/characters/bandel/maw.svg"
  47306. }
  47307. },
  47308. stomach: {
  47309. height: math.unit(1.95, "feet"),
  47310. name: "Stomach",
  47311. image: {
  47312. source: "./media/characters/bandel/stomach.svg"
  47313. }
  47314. },
  47315. },
  47316. [
  47317. {
  47318. name: "Normal",
  47319. height: math.unit(7 + 4/12, "feet"),
  47320. default: true
  47321. },
  47322. ]
  47323. ))
  47324. characterMakers.push(() => makeCharacter(
  47325. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47326. {
  47327. front: {
  47328. height: math.unit(10 + 5/12, "feet"),
  47329. weight: math.unit(773.5, "kg"),
  47330. name: "Front",
  47331. image: {
  47332. source: "./media/characters/zed/front.svg",
  47333. extra: 987/941,
  47334. bottom: 52/1039
  47335. }
  47336. },
  47337. },
  47338. [
  47339. {
  47340. name: "Short",
  47341. height: math.unit(5 + 4/12, "feet")
  47342. },
  47343. {
  47344. name: "Average",
  47345. height: math.unit(10 + 5/12, "feet"),
  47346. default: true
  47347. },
  47348. {
  47349. name: "Mini-Macro",
  47350. height: math.unit(24 + 9/12, "feet")
  47351. },
  47352. {
  47353. name: "Macro",
  47354. height: math.unit(249, "feet")
  47355. },
  47356. {
  47357. name: "Mega-Macro",
  47358. height: math.unit(12490, "feet")
  47359. },
  47360. {
  47361. name: "Giga-Macro",
  47362. height: math.unit(24.9, "miles")
  47363. },
  47364. {
  47365. name: "Tera-Macro",
  47366. height: math.unit(24900, "miles")
  47367. },
  47368. {
  47369. name: "Cosmic Scale",
  47370. height: math.unit(38.9, "lightyears")
  47371. },
  47372. {
  47373. name: "Universal Scale",
  47374. height: math.unit(138e12, "lightyears")
  47375. },
  47376. ]
  47377. ))
  47378. characterMakers.push(() => makeCharacter(
  47379. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47380. {
  47381. front: {
  47382. height: math.unit(1561, "inches"),
  47383. name: "Front",
  47384. image: {
  47385. source: "./media/characters/ivan/front.svg",
  47386. extra: 1126/1071,
  47387. bottom: 26/1152
  47388. }
  47389. },
  47390. back: {
  47391. height: math.unit(1561, "inches"),
  47392. name: "Back",
  47393. image: {
  47394. source: "./media/characters/ivan/back.svg",
  47395. extra: 1134/1079,
  47396. bottom: 30/1164
  47397. }
  47398. },
  47399. },
  47400. [
  47401. {
  47402. name: "Normal",
  47403. height: math.unit(1561, "inches"),
  47404. default: true
  47405. },
  47406. ]
  47407. ))
  47408. characterMakers.push(() => makeCharacter(
  47409. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47410. {
  47411. front: {
  47412. height: math.unit(5 + 7/12, "feet"),
  47413. weight: math.unit(150, "lb"),
  47414. name: "Front",
  47415. image: {
  47416. source: "./media/characters/robin-arctic-hare/front.svg",
  47417. extra: 1148/974,
  47418. bottom: 20/1168
  47419. }
  47420. },
  47421. },
  47422. [
  47423. {
  47424. name: "Normal",
  47425. height: math.unit(5 + 7/12, "feet"),
  47426. default: true
  47427. },
  47428. ]
  47429. ))
  47430. characterMakers.push(() => makeCharacter(
  47431. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47432. {
  47433. side: {
  47434. height: math.unit(5, "feet"),
  47435. name: "Side",
  47436. image: {
  47437. source: "./media/characters/birch/side.svg",
  47438. extra: 985/796,
  47439. bottom: 111/1096
  47440. }
  47441. },
  47442. },
  47443. [
  47444. {
  47445. name: "Normal",
  47446. height: math.unit(5, "feet"),
  47447. default: true
  47448. },
  47449. ]
  47450. ))
  47451. characterMakers.push(() => makeCharacter(
  47452. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47453. {
  47454. front: {
  47455. height: math.unit(4, "feet"),
  47456. name: "Front",
  47457. image: {
  47458. source: "./media/characters/rasp/front.svg",
  47459. extra: 561/478,
  47460. bottom: 74/635
  47461. }
  47462. },
  47463. },
  47464. [
  47465. {
  47466. name: "Normal",
  47467. height: math.unit(4, "feet"),
  47468. default: true
  47469. },
  47470. ]
  47471. ))
  47472. characterMakers.push(() => makeCharacter(
  47473. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47474. {
  47475. front: {
  47476. height: math.unit(4 + 6/12, "feet"),
  47477. name: "Front",
  47478. image: {
  47479. source: "./media/characters/agatha/front.svg",
  47480. extra: 947/933,
  47481. bottom: 42/989
  47482. }
  47483. },
  47484. back: {
  47485. height: math.unit(4 + 6/12, "feet"),
  47486. name: "Back",
  47487. image: {
  47488. source: "./media/characters/agatha/back.svg",
  47489. extra: 935/922,
  47490. bottom: 48/983
  47491. }
  47492. },
  47493. },
  47494. [
  47495. {
  47496. name: "Normal",
  47497. height: math.unit(4 + 6 /12, "feet"),
  47498. default: true
  47499. },
  47500. {
  47501. name: "Max Size",
  47502. height: math.unit(500, "feet")
  47503. },
  47504. ]
  47505. ))
  47506. characterMakers.push(() => makeCharacter(
  47507. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47508. {
  47509. side: {
  47510. height: math.unit(30, "feet"),
  47511. name: "Side",
  47512. image: {
  47513. source: "./media/characters/roggy/side.svg",
  47514. extra: 909/643,
  47515. bottom: 63/972
  47516. }
  47517. },
  47518. lounging: {
  47519. height: math.unit(20, "feet"),
  47520. name: "Lounging",
  47521. image: {
  47522. source: "./media/characters/roggy/lounging.svg",
  47523. extra: 643/479,
  47524. bottom: 145/788
  47525. }
  47526. },
  47527. handpaw: {
  47528. height: math.unit(13.1, "feet"),
  47529. name: "Handpaw",
  47530. image: {
  47531. source: "./media/characters/roggy/handpaw.svg"
  47532. }
  47533. },
  47534. footpaw: {
  47535. height: math.unit(15.8, "feet"),
  47536. name: "Footpaw",
  47537. image: {
  47538. source: "./media/characters/roggy/footpaw.svg"
  47539. }
  47540. },
  47541. },
  47542. [
  47543. {
  47544. name: "Menacing",
  47545. height: math.unit(30, "feet"),
  47546. default: true
  47547. },
  47548. ]
  47549. ))
  47550. characterMakers.push(() => makeCharacter(
  47551. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47552. {
  47553. front: {
  47554. height: math.unit(5 + 7/12, "feet"),
  47555. weight: math.unit(135, "lb"),
  47556. name: "Front",
  47557. image: {
  47558. source: "./media/characters/naomi/front.svg",
  47559. extra: 1209/1154,
  47560. bottom: 129/1338
  47561. }
  47562. },
  47563. back: {
  47564. height: math.unit(5 + 7/12, "feet"),
  47565. weight: math.unit(135, "lb"),
  47566. name: "Back",
  47567. image: {
  47568. source: "./media/characters/naomi/back.svg",
  47569. extra: 1252/1190,
  47570. bottom: 23/1275
  47571. }
  47572. },
  47573. },
  47574. [
  47575. {
  47576. name: "Normal",
  47577. height: math.unit(5 + 7 /12, "feet"),
  47578. default: true
  47579. },
  47580. ]
  47581. ))
  47582. characterMakers.push(() => makeCharacter(
  47583. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47584. {
  47585. side: {
  47586. height: math.unit(35, "meters"),
  47587. name: "Side",
  47588. image: {
  47589. source: "./media/characters/kimpi/side.svg",
  47590. extra: 419/382,
  47591. bottom: 63/482
  47592. }
  47593. },
  47594. hand: {
  47595. height: math.unit(8.96, "meters"),
  47596. name: "Hand",
  47597. image: {
  47598. source: "./media/characters/kimpi/hand.svg"
  47599. }
  47600. },
  47601. },
  47602. [
  47603. {
  47604. name: "Normal",
  47605. height: math.unit(35, "meters"),
  47606. default: true
  47607. },
  47608. ]
  47609. ))
  47610. characterMakers.push(() => makeCharacter(
  47611. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47612. {
  47613. front: {
  47614. height: math.unit(4 + 4/12, "feet"),
  47615. name: "Front",
  47616. image: {
  47617. source: "./media/characters/pepper-purrloin/front.svg",
  47618. extra: 1141/1024,
  47619. bottom: 21/1162
  47620. }
  47621. },
  47622. },
  47623. [
  47624. {
  47625. name: "Normal",
  47626. height: math.unit(4 + 4/12, "feet"),
  47627. default: true
  47628. },
  47629. ]
  47630. ))
  47631. characterMakers.push(() => makeCharacter(
  47632. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47633. {
  47634. front: {
  47635. height: math.unit(6 + 2/12, "feet"),
  47636. name: "Front",
  47637. image: {
  47638. source: "./media/characters/raphael/front.svg",
  47639. extra: 1101/962,
  47640. bottom: 59/1160
  47641. }
  47642. },
  47643. },
  47644. [
  47645. {
  47646. name: "Normal",
  47647. height: math.unit(6 + 2/12, "feet"),
  47648. default: true
  47649. },
  47650. ]
  47651. ))
  47652. characterMakers.push(() => makeCharacter(
  47653. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47654. {
  47655. front: {
  47656. height: math.unit(6, "feet"),
  47657. weight: math.unit(150, "lb"),
  47658. name: "Front",
  47659. image: {
  47660. source: "./media/characters/victor-williams/front.svg",
  47661. extra: 1894/1825,
  47662. bottom: 67/1961
  47663. }
  47664. },
  47665. },
  47666. [
  47667. {
  47668. name: "Normal",
  47669. height: math.unit(6, "feet"),
  47670. default: true
  47671. },
  47672. ]
  47673. ))
  47674. characterMakers.push(() => makeCharacter(
  47675. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47676. {
  47677. front: {
  47678. height: math.unit(5 + 8/12, "feet"),
  47679. weight: math.unit(150, "lb"),
  47680. name: "Front",
  47681. image: {
  47682. source: "./media/characters/rachel/front.svg",
  47683. extra: 1902/1787,
  47684. bottom: 46/1948
  47685. }
  47686. },
  47687. },
  47688. [
  47689. {
  47690. name: "Base Height",
  47691. height: math.unit(5 + 8/12, "feet"),
  47692. default: true
  47693. },
  47694. {
  47695. name: "Macro",
  47696. height: math.unit(200, "feet")
  47697. },
  47698. {
  47699. name: "Mega Macro",
  47700. height: math.unit(1, "mile")
  47701. },
  47702. {
  47703. name: "Giga Macro",
  47704. height: math.unit(1500, "miles")
  47705. },
  47706. {
  47707. name: "Tera Macro",
  47708. height: math.unit(8000, "miles")
  47709. },
  47710. {
  47711. name: "Tera Macro+",
  47712. height: math.unit(2e5, "miles")
  47713. },
  47714. ]
  47715. ))
  47716. characterMakers.push(() => makeCharacter(
  47717. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47718. {
  47719. front: {
  47720. height: math.unit(6.5, "feet"),
  47721. name: "Front",
  47722. image: {
  47723. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47724. extra: 860/819,
  47725. bottom: 307/1167
  47726. }
  47727. },
  47728. back: {
  47729. height: math.unit(6.5, "feet"),
  47730. name: "Back",
  47731. image: {
  47732. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47733. extra: 880/837,
  47734. bottom: 395/1275
  47735. }
  47736. },
  47737. sleeping: {
  47738. height: math.unit(2.79, "feet"),
  47739. name: "Sleeping",
  47740. image: {
  47741. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47742. extra: 465/383,
  47743. bottom: 263/728
  47744. }
  47745. },
  47746. maw: {
  47747. height: math.unit(2.52, "feet"),
  47748. name: "Maw",
  47749. image: {
  47750. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47751. }
  47752. },
  47753. },
  47754. [
  47755. {
  47756. name: "Normal",
  47757. height: math.unit(6.5, "feet"),
  47758. default: true
  47759. },
  47760. ]
  47761. ))
  47762. characterMakers.push(() => makeCharacter(
  47763. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47764. {
  47765. front: {
  47766. height: math.unit(5, "feet"),
  47767. name: "Front",
  47768. image: {
  47769. source: "./media/characters/nova-nerium/front.svg",
  47770. extra: 1548/1392,
  47771. bottom: 374/1922
  47772. }
  47773. },
  47774. back: {
  47775. height: math.unit(5, "feet"),
  47776. name: "Back",
  47777. image: {
  47778. source: "./media/characters/nova-nerium/back.svg",
  47779. extra: 1658/1468,
  47780. bottom: 257/1915
  47781. }
  47782. },
  47783. },
  47784. [
  47785. {
  47786. name: "Normal",
  47787. height: math.unit(5, "feet"),
  47788. default: true
  47789. },
  47790. ]
  47791. ))
  47792. characterMakers.push(() => makeCharacter(
  47793. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47794. {
  47795. front: {
  47796. height: math.unit(5 + 4/12, "feet"),
  47797. name: "Front",
  47798. image: {
  47799. source: "./media/characters/ashe-pyriph/front.svg",
  47800. extra: 1935/1747,
  47801. bottom: 60/1995
  47802. }
  47803. },
  47804. },
  47805. [
  47806. {
  47807. name: "Normal",
  47808. height: math.unit(5 + 4/12, "feet"),
  47809. default: true
  47810. },
  47811. ]
  47812. ))
  47813. characterMakers.push(() => makeCharacter(
  47814. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47815. {
  47816. front: {
  47817. height: math.unit(8.7, "feet"),
  47818. name: "Front",
  47819. image: {
  47820. source: "./media/characters/flicker-wisp/front.svg",
  47821. extra: 1835/1613,
  47822. bottom: 449/2284
  47823. }
  47824. },
  47825. side: {
  47826. height: math.unit(8.7, "feet"),
  47827. name: "Side",
  47828. image: {
  47829. source: "./media/characters/flicker-wisp/side.svg",
  47830. extra: 1841/1642,
  47831. bottom: 336/2177
  47832. },
  47833. default: true
  47834. },
  47835. maw: {
  47836. height: math.unit(3.35, "feet"),
  47837. name: "Maw",
  47838. image: {
  47839. source: "./media/characters/flicker-wisp/maw.svg",
  47840. extra: 2338/1506,
  47841. bottom: 0/2338
  47842. }
  47843. },
  47844. ovipositor: {
  47845. height: math.unit(4.95, "feet"),
  47846. name: "Ovipositor",
  47847. image: {
  47848. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47849. }
  47850. },
  47851. egg: {
  47852. height: math.unit(0.385, "feet"),
  47853. weight: math.unit(2, "lb"),
  47854. name: "Egg",
  47855. image: {
  47856. source: "./media/characters/flicker-wisp/egg.svg"
  47857. }
  47858. },
  47859. },
  47860. [
  47861. {
  47862. name: "Normal",
  47863. height: math.unit(8.7, "feet"),
  47864. default: true
  47865. },
  47866. ]
  47867. ))
  47868. characterMakers.push(() => makeCharacter(
  47869. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47870. {
  47871. side: {
  47872. height: math.unit(11, "feet"),
  47873. name: "Side",
  47874. image: {
  47875. source: "./media/characters/faefnul/side.svg",
  47876. extra: 1100/1007,
  47877. bottom: 0/1100
  47878. }
  47879. },
  47880. },
  47881. [
  47882. {
  47883. name: "Normal",
  47884. height: math.unit(11, "feet"),
  47885. default: true
  47886. },
  47887. ]
  47888. ))
  47889. characterMakers.push(() => makeCharacter(
  47890. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47891. {
  47892. front: {
  47893. height: math.unit(6 + 2/12, "feet"),
  47894. name: "Front",
  47895. image: {
  47896. source: "./media/characters/shady/front.svg",
  47897. extra: 502/461,
  47898. bottom: 9/511
  47899. }
  47900. },
  47901. kneeling: {
  47902. height: math.unit(4.6, "feet"),
  47903. name: "Kneeling",
  47904. image: {
  47905. source: "./media/characters/shady/kneeling.svg",
  47906. extra: 1328/1219,
  47907. bottom: 117/1445
  47908. }
  47909. },
  47910. maw: {
  47911. height: math.unit(2, "feet"),
  47912. name: "Maw",
  47913. image: {
  47914. source: "./media/characters/shady/maw.svg"
  47915. }
  47916. },
  47917. },
  47918. [
  47919. {
  47920. name: "Nano",
  47921. height: math.unit(1, "mm")
  47922. },
  47923. {
  47924. name: "Micro",
  47925. height: math.unit(12, "mm")
  47926. },
  47927. {
  47928. name: "Tiny",
  47929. height: math.unit(3, "inches")
  47930. },
  47931. {
  47932. name: "Normal",
  47933. height: math.unit(6 + 2/12, "feet"),
  47934. default: true
  47935. },
  47936. {
  47937. name: "Big",
  47938. height: math.unit(15, "feet")
  47939. },
  47940. {
  47941. name: "Macro",
  47942. height: math.unit(150, "feet")
  47943. },
  47944. {
  47945. name: "Titanic",
  47946. height: math.unit(500, "feet")
  47947. },
  47948. ]
  47949. ))
  47950. characterMakers.push(() => makeCharacter(
  47951. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47952. {
  47953. front: {
  47954. height: math.unit(12, "feet"),
  47955. name: "Front",
  47956. image: {
  47957. source: "./media/characters/fenrir/front.svg",
  47958. extra: 968/875,
  47959. bottom: 22/990
  47960. }
  47961. },
  47962. },
  47963. [
  47964. {
  47965. name: "Big",
  47966. height: math.unit(12, "feet"),
  47967. default: true
  47968. },
  47969. ]
  47970. ))
  47971. characterMakers.push(() => makeCharacter(
  47972. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47973. {
  47974. front: {
  47975. height: math.unit(5 + 4/12, "feet"),
  47976. name: "Front",
  47977. image: {
  47978. source: "./media/characters/makar/front.svg",
  47979. extra: 1181/1112,
  47980. bottom: 78/1259
  47981. }
  47982. },
  47983. },
  47984. [
  47985. {
  47986. name: "Normal",
  47987. height: math.unit(5 + 4/12, "feet"),
  47988. default: true
  47989. },
  47990. ]
  47991. ))
  47992. characterMakers.push(() => makeCharacter(
  47993. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47994. {
  47995. front: {
  47996. height: math.unit(5 + 7/12, "feet"),
  47997. name: "Front",
  47998. image: {
  47999. source: "./media/characters/callow/front.svg",
  48000. extra: 1482/1304,
  48001. bottom: 23/1505
  48002. }
  48003. },
  48004. back: {
  48005. height: math.unit(5 + 7/12, "feet"),
  48006. name: "Back",
  48007. image: {
  48008. source: "./media/characters/callow/back.svg",
  48009. extra: 1484/1296,
  48010. bottom: 25/1509
  48011. }
  48012. },
  48013. },
  48014. [
  48015. {
  48016. name: "Micro",
  48017. height: math.unit(3, "inches"),
  48018. default: true
  48019. },
  48020. {
  48021. name: "Normal",
  48022. height: math.unit(5 + 7/12, "feet")
  48023. },
  48024. ]
  48025. ))
  48026. characterMakers.push(() => makeCharacter(
  48027. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48028. {
  48029. front: {
  48030. height: math.unit(6 + 2/12, "feet"),
  48031. name: "Front",
  48032. image: {
  48033. source: "./media/characters/natel/front.svg",
  48034. extra: 1833/1692,
  48035. bottom: 166/1999
  48036. }
  48037. },
  48038. },
  48039. [
  48040. {
  48041. name: "Normal",
  48042. height: math.unit(6 + 2/12, "feet"),
  48043. default: true
  48044. },
  48045. ]
  48046. ))
  48047. characterMakers.push(() => makeCharacter(
  48048. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48049. {
  48050. front: {
  48051. height: math.unit(1.75, "meters"),
  48052. name: "Front",
  48053. image: {
  48054. source: "./media/characters/misu/front.svg",
  48055. extra: 1690/1558,
  48056. bottom: 234/1924
  48057. }
  48058. },
  48059. back: {
  48060. height: math.unit(1.75, "meters"),
  48061. name: "Back",
  48062. image: {
  48063. source: "./media/characters/misu/back.svg",
  48064. extra: 1762/1618,
  48065. bottom: 146/1908
  48066. }
  48067. },
  48068. frontNude: {
  48069. height: math.unit(1.75, "meters"),
  48070. name: "Front (Nude)",
  48071. image: {
  48072. source: "./media/characters/misu/front-nude.svg",
  48073. extra: 1690/1558,
  48074. bottom: 234/1924
  48075. }
  48076. },
  48077. backNude: {
  48078. height: math.unit(1.75, "meters"),
  48079. name: "Back (Nude)",
  48080. image: {
  48081. source: "./media/characters/misu/back-nude.svg",
  48082. extra: 1762/1618,
  48083. bottom: 146/1908
  48084. }
  48085. },
  48086. frontErect: {
  48087. height: math.unit(1.75, "meters"),
  48088. name: "Front (Erect)",
  48089. image: {
  48090. source: "./media/characters/misu/front-erect.svg",
  48091. extra: 1690/1558,
  48092. bottom: 234/1924
  48093. }
  48094. },
  48095. maw: {
  48096. height: math.unit(0.47, "meters"),
  48097. name: "Maw",
  48098. image: {
  48099. source: "./media/characters/misu/maw.svg"
  48100. }
  48101. },
  48102. head: {
  48103. height: math.unit(0.35, "meters"),
  48104. name: "Head",
  48105. image: {
  48106. source: "./media/characters/misu/head.svg"
  48107. }
  48108. },
  48109. rear: {
  48110. height: math.unit(0.47, "meters"),
  48111. name: "Rear",
  48112. image: {
  48113. source: "./media/characters/misu/rear.svg"
  48114. }
  48115. },
  48116. },
  48117. [
  48118. {
  48119. name: "Normal",
  48120. height: math.unit(1.75, "meters")
  48121. },
  48122. {
  48123. name: "Not good for the people",
  48124. height: math.unit(42, "meters")
  48125. },
  48126. {
  48127. name: "Not good for the neighborhood",
  48128. height: math.unit(135, "meters")
  48129. },
  48130. {
  48131. name: "Bit bigger problem",
  48132. height: math.unit(380, "meters"),
  48133. default: true
  48134. },
  48135. {
  48136. name: "Not good for the city",
  48137. height: math.unit(1.5, "km")
  48138. },
  48139. {
  48140. name: "Not good for the county",
  48141. height: math.unit(5.5, "km")
  48142. },
  48143. {
  48144. name: "Not good for the state",
  48145. height: math.unit(25, "km")
  48146. },
  48147. {
  48148. name: "Not good for the country",
  48149. height: math.unit(125, "km")
  48150. },
  48151. {
  48152. name: "Not good for the continent",
  48153. height: math.unit(2100, "km")
  48154. },
  48155. {
  48156. name: "Not good for the planet",
  48157. height: math.unit(35000, "km")
  48158. },
  48159. {
  48160. name: "Just no",
  48161. height: math.unit(8.5e18, "km")
  48162. },
  48163. ]
  48164. ))
  48165. characterMakers.push(() => makeCharacter(
  48166. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48167. {
  48168. front: {
  48169. height: math.unit(6.5, "feet"),
  48170. name: "Front",
  48171. image: {
  48172. source: "./media/characters/poppy/front.svg",
  48173. extra: 1878/1812,
  48174. bottom: 43/1921
  48175. }
  48176. },
  48177. feet: {
  48178. height: math.unit(1.06, "feet"),
  48179. name: "Feet",
  48180. image: {
  48181. source: "./media/characters/poppy/feet.svg",
  48182. extra: 1083/1083,
  48183. bottom: 87/1170
  48184. }
  48185. },
  48186. },
  48187. [
  48188. {
  48189. name: "Human",
  48190. height: math.unit(6.5, "feet")
  48191. },
  48192. {
  48193. name: "Default",
  48194. height: math.unit(300, "feet"),
  48195. default: true
  48196. },
  48197. {
  48198. name: "Huge",
  48199. height: math.unit(850, "feet")
  48200. },
  48201. {
  48202. name: "Mega",
  48203. height: math.unit(8000, "feet")
  48204. },
  48205. {
  48206. name: "Giga",
  48207. height: math.unit(300, "miles")
  48208. },
  48209. ]
  48210. ))
  48211. characterMakers.push(() => makeCharacter(
  48212. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48213. {
  48214. bipedal: {
  48215. height: math.unit(7, "feet"),
  48216. name: "Bipedal",
  48217. image: {
  48218. source: "./media/characters/zener/bipedal.svg",
  48219. extra: 874/805,
  48220. bottom: 109/983
  48221. }
  48222. },
  48223. quadrupedal: {
  48224. height: math.unit(4.64, "feet"),
  48225. name: "Quadrupedal",
  48226. image: {
  48227. source: "./media/characters/zener/quadrupedal.svg",
  48228. extra: 638/507,
  48229. bottom: 190/828
  48230. }
  48231. },
  48232. cock: {
  48233. height: math.unit(18, "inches"),
  48234. name: "Cock",
  48235. image: {
  48236. source: "./media/characters/zener/cock.svg"
  48237. }
  48238. },
  48239. },
  48240. [
  48241. {
  48242. name: "Normal",
  48243. height: math.unit(7, "feet"),
  48244. default: true
  48245. },
  48246. ]
  48247. ))
  48248. characterMakers.push(() => makeCharacter(
  48249. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48250. {
  48251. nude: {
  48252. height: math.unit(5 + 6/12, "feet"),
  48253. name: "Nude",
  48254. image: {
  48255. source: "./media/characters/charlie-dog/nude.svg",
  48256. extra: 768/734,
  48257. bottom: 26/794
  48258. }
  48259. },
  48260. dressed: {
  48261. height: math.unit(5 + 6/12, "feet"),
  48262. name: "Dressed",
  48263. image: {
  48264. source: "./media/characters/charlie-dog/dressed.svg",
  48265. extra: 768/734,
  48266. bottom: 26/794
  48267. }
  48268. },
  48269. },
  48270. [
  48271. {
  48272. name: "Normal",
  48273. height: math.unit(5 + 6/12, "feet"),
  48274. default: true
  48275. },
  48276. ]
  48277. ))
  48278. characterMakers.push(() => makeCharacter(
  48279. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48280. {
  48281. front: {
  48282. height: math.unit(6 + 4/12, "feet"),
  48283. name: "Front",
  48284. image: {
  48285. source: "./media/characters/ir'istrasz/front.svg",
  48286. extra: 1014/977,
  48287. bottom: 65/1079
  48288. }
  48289. },
  48290. back: {
  48291. height: math.unit(6 + 4/12, "feet"),
  48292. name: "Back",
  48293. image: {
  48294. source: "./media/characters/ir'istrasz/back.svg",
  48295. extra: 1024/992,
  48296. bottom: 34/1058
  48297. }
  48298. },
  48299. },
  48300. [
  48301. {
  48302. name: "Normal",
  48303. height: math.unit(6 + 4/12, "feet"),
  48304. default: true
  48305. },
  48306. ]
  48307. ))
  48308. characterMakers.push(() => makeCharacter(
  48309. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48310. {
  48311. front: {
  48312. height: math.unit(5 + 8/12, "feet"),
  48313. name: "Front",
  48314. image: {
  48315. source: "./media/characters/dee-ditto/front.svg",
  48316. extra: 1874/1785,
  48317. bottom: 68/1942
  48318. }
  48319. },
  48320. back: {
  48321. height: math.unit(5 + 8/12, "feet"),
  48322. name: "Back",
  48323. image: {
  48324. source: "./media/characters/dee-ditto/back.svg",
  48325. extra: 1870/1783,
  48326. bottom: 77/1947
  48327. }
  48328. },
  48329. },
  48330. [
  48331. {
  48332. name: "Normal",
  48333. height: math.unit(5 + 8/12, "feet"),
  48334. default: true
  48335. },
  48336. ]
  48337. ))
  48338. characterMakers.push(() => makeCharacter(
  48339. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48340. {
  48341. front: {
  48342. height: math.unit(7 + 6/12, "feet"),
  48343. name: "Front",
  48344. image: {
  48345. source: "./media/characters/fey/front.svg",
  48346. extra: 995/979,
  48347. bottom: 30/1025
  48348. }
  48349. },
  48350. back: {
  48351. height: math.unit(7 + 6/12, "feet"),
  48352. name: "Back",
  48353. image: {
  48354. source: "./media/characters/fey/back.svg",
  48355. extra: 1079/1008,
  48356. bottom: 5/1084
  48357. }
  48358. },
  48359. dressed: {
  48360. height: math.unit(7 + 6/12, "feet"),
  48361. name: "Dressed",
  48362. image: {
  48363. source: "./media/characters/fey/dressed.svg",
  48364. extra: 995/979,
  48365. bottom: 30/1025
  48366. }
  48367. },
  48368. },
  48369. [
  48370. {
  48371. name: "Normal",
  48372. height: math.unit(7 + 6/12, "feet"),
  48373. default: true
  48374. },
  48375. ]
  48376. ))
  48377. characterMakers.push(() => makeCharacter(
  48378. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48379. {
  48380. standing: {
  48381. height: math.unit(17, "feet"),
  48382. name: "Standing",
  48383. image: {
  48384. source: "./media/characters/aster/standing.svg",
  48385. extra: 1798/1598,
  48386. bottom: 117/1915
  48387. }
  48388. },
  48389. },
  48390. [
  48391. {
  48392. name: "Normal",
  48393. height: math.unit(17, "feet"),
  48394. default: true
  48395. },
  48396. {
  48397. name: "Homewrecker",
  48398. height: math.unit(95, "feet")
  48399. },
  48400. {
  48401. name: "Planet Devourer",
  48402. height: math.unit(1008000, "miles")
  48403. },
  48404. ]
  48405. ))
  48406. characterMakers.push(() => makeCharacter(
  48407. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48408. {
  48409. front: {
  48410. height: math.unit(6 + 5/12, "feet"),
  48411. weight: math.unit(265, "lb"),
  48412. name: "Front",
  48413. image: {
  48414. source: "./media/characters/devon-childs/front.svg",
  48415. extra: 1795/1721,
  48416. bottom: 41/1836
  48417. }
  48418. },
  48419. side: {
  48420. height: math.unit(6 + 5/12, "feet"),
  48421. weight: math.unit(265, "lb"),
  48422. name: "Side",
  48423. image: {
  48424. source: "./media/characters/devon-childs/side.svg",
  48425. extra: 1812/1738,
  48426. bottom: 30/1842
  48427. }
  48428. },
  48429. back: {
  48430. height: math.unit(6 + 5/12, "feet"),
  48431. weight: math.unit(265, "lb"),
  48432. name: "Back",
  48433. image: {
  48434. source: "./media/characters/devon-childs/back.svg",
  48435. extra: 1808/1735,
  48436. bottom: 23/1831
  48437. }
  48438. },
  48439. hand: {
  48440. height: math.unit(1.464, "feet"),
  48441. name: "Hand",
  48442. image: {
  48443. source: "./media/characters/devon-childs/hand.svg"
  48444. }
  48445. },
  48446. foot: {
  48447. height: math.unit(1.6, "feet"),
  48448. name: "Foot",
  48449. image: {
  48450. source: "./media/characters/devon-childs/foot.svg"
  48451. }
  48452. },
  48453. },
  48454. [
  48455. {
  48456. name: "Micro",
  48457. height: math.unit(7, "cm")
  48458. },
  48459. {
  48460. name: "Normal",
  48461. height: math.unit(6 + 5/12, "feet"),
  48462. default: true
  48463. },
  48464. {
  48465. name: "Macro",
  48466. height: math.unit(154, "feet")
  48467. },
  48468. ]
  48469. ))
  48470. characterMakers.push(() => makeCharacter(
  48471. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48472. {
  48473. front: {
  48474. height: math.unit(6, "feet"),
  48475. weight: math.unit(180, "lb"),
  48476. name: "Front",
  48477. image: {
  48478. source: "./media/characters/lydemox-vir/front.svg",
  48479. extra: 1632/1435,
  48480. bottom: 58/1690
  48481. }
  48482. },
  48483. frontSFW: {
  48484. height: math.unit(6, "feet"),
  48485. weight: math.unit(180, "lb"),
  48486. name: "Front (SFW)",
  48487. image: {
  48488. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48489. extra: 1632/1435,
  48490. bottom: 58/1690
  48491. }
  48492. },
  48493. back: {
  48494. height: math.unit(6, "feet"),
  48495. weight: math.unit(180, "lb"),
  48496. name: "Back",
  48497. image: {
  48498. source: "./media/characters/lydemox-vir/back.svg",
  48499. extra: 1593/1408,
  48500. bottom: 31/1624
  48501. }
  48502. },
  48503. paw: {
  48504. height: math.unit(1.85, "feet"),
  48505. name: "Paw",
  48506. image: {
  48507. source: "./media/characters/lydemox-vir/paw.svg"
  48508. }
  48509. },
  48510. dick: {
  48511. height: math.unit(1.8, "feet"),
  48512. name: "Dick",
  48513. image: {
  48514. source: "./media/characters/lydemox-vir/dick.svg"
  48515. }
  48516. },
  48517. },
  48518. [
  48519. {
  48520. name: "Macro",
  48521. height: math.unit(100, "feet"),
  48522. default: true
  48523. },
  48524. {
  48525. name: "Teramacro",
  48526. height: math.unit(1, "earth")
  48527. },
  48528. {
  48529. name: "Planetary",
  48530. height: math.unit(20, "earths")
  48531. },
  48532. ]
  48533. ))
  48534. characterMakers.push(() => makeCharacter(
  48535. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48536. {
  48537. front: {
  48538. height: math.unit(15 + 8/12, "feet"),
  48539. weight: math.unit(1237, "kg"),
  48540. name: "Front",
  48541. image: {
  48542. source: "./media/characters/mia/front.svg",
  48543. extra: 1573/1446,
  48544. bottom: 58/1631
  48545. }
  48546. },
  48547. },
  48548. [
  48549. {
  48550. name: "Small",
  48551. height: math.unit(9 + 5/12, "feet")
  48552. },
  48553. {
  48554. name: "Normal",
  48555. height: math.unit(15 + 8/12, "feet"),
  48556. default: true
  48557. },
  48558. ]
  48559. ))
  48560. characterMakers.push(() => makeCharacter(
  48561. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48562. {
  48563. front: {
  48564. height: math.unit(10 + 6/12, "feet"),
  48565. weight: math.unit(1.3, "tons"),
  48566. name: "Front",
  48567. image: {
  48568. source: "./media/characters/mr-graves/front.svg",
  48569. extra: 1779/1695,
  48570. bottom: 198/1977
  48571. }
  48572. },
  48573. },
  48574. [
  48575. {
  48576. name: "Normal",
  48577. height: math.unit(10 + 6 /12, "feet"),
  48578. default: true
  48579. },
  48580. ]
  48581. ))
  48582. characterMakers.push(() => makeCharacter(
  48583. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48584. {
  48585. dressedFront: {
  48586. height: math.unit(5 + 8/12, "feet"),
  48587. weight: math.unit(125, "lb"),
  48588. name: "Dressed (Front)",
  48589. image: {
  48590. source: "./media/characters/jess/dressed-front.svg",
  48591. extra: 1176/1152,
  48592. bottom: 42/1218
  48593. }
  48594. },
  48595. dressedSide: {
  48596. height: math.unit(5 + 8/12, "feet"),
  48597. weight: math.unit(125, "lb"),
  48598. name: "Dressed (Side)",
  48599. image: {
  48600. source: "./media/characters/jess/dressed-side.svg",
  48601. extra: 1204/1190,
  48602. bottom: 6/1210
  48603. }
  48604. },
  48605. nudeFront: {
  48606. height: math.unit(5 + 8/12, "feet"),
  48607. weight: math.unit(125, "lb"),
  48608. name: "Nude (Front)",
  48609. image: {
  48610. source: "./media/characters/jess/nude-front.svg",
  48611. extra: 1176/1152,
  48612. bottom: 42/1218
  48613. }
  48614. },
  48615. nudeSide: {
  48616. height: math.unit(5 + 8/12, "feet"),
  48617. weight: math.unit(125, "lb"),
  48618. name: "Nude (Side)",
  48619. image: {
  48620. source: "./media/characters/jess/nude-side.svg",
  48621. extra: 1204/1190,
  48622. bottom: 6/1210
  48623. }
  48624. },
  48625. organsFront: {
  48626. height: math.unit(2.83799342105, "feet"),
  48627. name: "Organs (Front)",
  48628. image: {
  48629. source: "./media/characters/jess/organs-front.svg"
  48630. }
  48631. },
  48632. organsSide: {
  48633. height: math.unit(2.64225290474, "feet"),
  48634. name: "Organs (Side)",
  48635. image: {
  48636. source: "./media/characters/jess/organs-side.svg"
  48637. }
  48638. },
  48639. digestiveTractFront: {
  48640. height: math.unit(2.8106580871, "feet"),
  48641. name: "Digestive Tract (Front)",
  48642. image: {
  48643. source: "./media/characters/jess/digestive-tract-front.svg"
  48644. }
  48645. },
  48646. digestiveTractSide: {
  48647. height: math.unit(2.54365045014, "feet"),
  48648. name: "Digestive Tract (Side)",
  48649. image: {
  48650. source: "./media/characters/jess/digestive-tract-side.svg"
  48651. }
  48652. },
  48653. respiratorySystemFront: {
  48654. height: math.unit(1.11196233456, "feet"),
  48655. name: "Respiratory System (Front)",
  48656. image: {
  48657. source: "./media/characters/jess/respiratory-system-front.svg"
  48658. }
  48659. },
  48660. respiratorySystemSide: {
  48661. height: math.unit(0.89327966297, "feet"),
  48662. name: "Respiratory System (Side)",
  48663. image: {
  48664. source: "./media/characters/jess/respiratory-system-side.svg"
  48665. }
  48666. },
  48667. urinaryTractFront: {
  48668. height: math.unit(1.16126356186, "feet"),
  48669. name: "Urinary Tract (Front)",
  48670. image: {
  48671. source: "./media/characters/jess/urinary-tract-front.svg"
  48672. }
  48673. },
  48674. urinaryTractSide: {
  48675. height: math.unit(1.20910039627, "feet"),
  48676. name: "Urinary Tract (Side)",
  48677. image: {
  48678. source: "./media/characters/jess/urinary-tract-side.svg"
  48679. }
  48680. },
  48681. reproductiveOrgansFront: {
  48682. height: math.unit(0.48422591566, "feet"),
  48683. name: "Reproductive Organs (Front)",
  48684. image: {
  48685. source: "./media/characters/jess/reproductive-organs-front.svg"
  48686. }
  48687. },
  48688. reproductiveOrgansSide: {
  48689. height: math.unit(0.61553314481, "feet"),
  48690. name: "Reproductive Organs (Side)",
  48691. image: {
  48692. source: "./media/characters/jess/reproductive-organs-side.svg"
  48693. }
  48694. },
  48695. breastsFront: {
  48696. height: math.unit(0.47690395121, "feet"),
  48697. name: "Breasts (Front)",
  48698. image: {
  48699. source: "./media/characters/jess/breasts-front.svg"
  48700. }
  48701. },
  48702. breastsSide: {
  48703. height: math.unit(0.30556998307, "feet"),
  48704. name: "Breasts (Side)",
  48705. image: {
  48706. source: "./media/characters/jess/breasts-side.svg"
  48707. }
  48708. },
  48709. heartFront: {
  48710. height: math.unit(0.53011022622, "feet"),
  48711. name: "Heart (Front)",
  48712. image: {
  48713. source: "./media/characters/jess/heart-front.svg"
  48714. }
  48715. },
  48716. heartSide: {
  48717. height: math.unit(0.51790695213, "feet"),
  48718. name: "Heart (Side)",
  48719. image: {
  48720. source: "./media/characters/jess/heart-side.svg"
  48721. }
  48722. },
  48723. earsAndNoseFront: {
  48724. height: math.unit(0.29385483995, "feet"),
  48725. name: "Ears and Nose (Front)",
  48726. image: {
  48727. source: "./media/characters/jess/ears-and-nose-front.svg"
  48728. }
  48729. },
  48730. earsAndNoseSide: {
  48731. height: math.unit(0.18109658741, "feet"),
  48732. name: "Ears and Nose (Side)",
  48733. image: {
  48734. source: "./media/characters/jess/ears-and-nose-side.svg"
  48735. }
  48736. },
  48737. },
  48738. [
  48739. {
  48740. name: "Normal",
  48741. height: math.unit(5 + 8/12, "feet"),
  48742. default: true
  48743. },
  48744. ]
  48745. ))
  48746. characterMakers.push(() => makeCharacter(
  48747. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48748. {
  48749. front: {
  48750. height: math.unit(6, "feet"),
  48751. weight: math.unit(6.64467e-7, "grams"),
  48752. name: "Front",
  48753. image: {
  48754. source: "./media/characters/wimpering/front.svg",
  48755. extra: 597/587,
  48756. bottom: 34/631
  48757. }
  48758. },
  48759. },
  48760. [
  48761. {
  48762. name: "Micro",
  48763. height: math.unit(0.4, "mm"),
  48764. default: true
  48765. },
  48766. ]
  48767. ))
  48768. characterMakers.push(() => makeCharacter(
  48769. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48770. {
  48771. front: {
  48772. height: math.unit(5 + 2/12, "feet"),
  48773. weight: math.unit(110, "lb"),
  48774. name: "Front",
  48775. image: {
  48776. source: "./media/characters/keltre/front.svg",
  48777. extra: 1099/1057,
  48778. bottom: 22/1121
  48779. }
  48780. },
  48781. back: {
  48782. height: math.unit(5 + 2/12, "feet"),
  48783. weight: math.unit(110, "lb"),
  48784. name: "Back",
  48785. image: {
  48786. source: "./media/characters/keltre/back.svg",
  48787. extra: 1095/1053,
  48788. bottom: 17/1112
  48789. }
  48790. },
  48791. dressed: {
  48792. height: math.unit(5 + 2/12, "feet"),
  48793. weight: math.unit(110, "lb"),
  48794. name: "Dressed",
  48795. image: {
  48796. source: "./media/characters/keltre/dressed.svg",
  48797. extra: 1099/1057,
  48798. bottom: 22/1121
  48799. }
  48800. },
  48801. winter: {
  48802. height: math.unit(5 + 2/12, "feet"),
  48803. weight: math.unit(110, "lb"),
  48804. name: "Winter",
  48805. image: {
  48806. source: "./media/characters/keltre/winter.svg",
  48807. extra: 1099/1057,
  48808. bottom: 22/1121
  48809. }
  48810. },
  48811. head: {
  48812. height: math.unit(1.61 * 0.86, "feet"),
  48813. name: "Head",
  48814. image: {
  48815. source: "./media/characters/keltre/head.svg",
  48816. extra: 534/421,
  48817. bottom: 0/534
  48818. }
  48819. },
  48820. hand: {
  48821. height: math.unit(1.3 * 0.86, "feet"),
  48822. name: "Hand",
  48823. image: {
  48824. source: "./media/characters/keltre/hand.svg"
  48825. }
  48826. },
  48827. foot: {
  48828. height: math.unit(1.8 * 0.86, "feet"),
  48829. name: "Foot",
  48830. image: {
  48831. source: "./media/characters/keltre/foot.svg"
  48832. }
  48833. },
  48834. },
  48835. [
  48836. {
  48837. name: "Fine",
  48838. height: math.unit(1, "inch")
  48839. },
  48840. {
  48841. name: "Dimnutive",
  48842. height: math.unit(4, "inches")
  48843. },
  48844. {
  48845. name: "Tiny",
  48846. height: math.unit(1, "foot")
  48847. },
  48848. {
  48849. name: "Small",
  48850. height: math.unit(3, "feet")
  48851. },
  48852. {
  48853. name: "Normal",
  48854. height: math.unit(5 + 2/12, "feet"),
  48855. default: true
  48856. },
  48857. ]
  48858. ))
  48859. characterMakers.push(() => makeCharacter(
  48860. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48861. {
  48862. front: {
  48863. height: math.unit(6 + 2/12, "feet"),
  48864. name: "Front",
  48865. image: {
  48866. source: "./media/characters/nox/front.svg",
  48867. extra: 1917/1830,
  48868. bottom: 74/1991
  48869. }
  48870. },
  48871. back: {
  48872. height: math.unit(6 + 2/12, "feet"),
  48873. name: "Back",
  48874. image: {
  48875. source: "./media/characters/nox/back.svg",
  48876. extra: 1896/1815,
  48877. bottom: 21/1917
  48878. }
  48879. },
  48880. head: {
  48881. height: math.unit(1.1, "feet"),
  48882. name: "Head",
  48883. image: {
  48884. source: "./media/characters/nox/head.svg",
  48885. extra: 874/704,
  48886. bottom: 0/874
  48887. }
  48888. },
  48889. tattoo: {
  48890. height: math.unit(0.729, "feet"),
  48891. name: "Tattoo",
  48892. image: {
  48893. source: "./media/characters/nox/tattoo.svg"
  48894. }
  48895. },
  48896. },
  48897. [
  48898. {
  48899. name: "Normal",
  48900. height: math.unit(6 + 2/12, "feet")
  48901. },
  48902. {
  48903. name: "Gigamacro",
  48904. height: math.unit(2, "earths"),
  48905. default: true
  48906. },
  48907. {
  48908. name: "Cosmic",
  48909. height: math.unit(867, "yottameters")
  48910. },
  48911. ]
  48912. ))
  48913. characterMakers.push(() => makeCharacter(
  48914. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48915. {
  48916. front: {
  48917. height: math.unit(6, "feet"),
  48918. weight: math.unit(150, "lb"),
  48919. name: "Front",
  48920. image: {
  48921. source: "./media/characters/caspian/front.svg",
  48922. extra: 1443/1359,
  48923. bottom: 0/1443
  48924. }
  48925. },
  48926. back: {
  48927. height: math.unit(6, "feet"),
  48928. weight: math.unit(150, "lb"),
  48929. name: "Back",
  48930. image: {
  48931. source: "./media/characters/caspian/back.svg",
  48932. extra: 1379/1309,
  48933. bottom: 0/1379
  48934. }
  48935. },
  48936. head: {
  48937. height: math.unit(0.9, "feet"),
  48938. name: "Head",
  48939. image: {
  48940. source: "./media/characters/caspian/head.svg",
  48941. extra: 692/492,
  48942. bottom: 0/692
  48943. }
  48944. },
  48945. headAlt: {
  48946. height: math.unit(0.95, "feet"),
  48947. name: "Head (Alt)",
  48948. image: {
  48949. source: "./media/characters/caspian/head-alt.svg",
  48950. extra: 668/508,
  48951. bottom: 0/668
  48952. }
  48953. },
  48954. hand: {
  48955. height: math.unit(0.8, "feet"),
  48956. name: "Hand",
  48957. image: {
  48958. source: "./media/characters/caspian/hand.svg"
  48959. }
  48960. },
  48961. paw: {
  48962. height: math.unit(0.95, "feet"),
  48963. name: "Paw",
  48964. image: {
  48965. source: "./media/characters/caspian/paw.svg"
  48966. }
  48967. },
  48968. },
  48969. [
  48970. {
  48971. name: "Normal",
  48972. height: math.unit(162, "feet"),
  48973. default: true
  48974. },
  48975. ]
  48976. ))
  48977. characterMakers.push(() => makeCharacter(
  48978. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48979. {
  48980. front: {
  48981. height: math.unit(6, "feet"),
  48982. name: "Front",
  48983. image: {
  48984. source: "./media/characters/myra-aisling/front.svg",
  48985. extra: 1268/1166,
  48986. bottom: 73/1341
  48987. }
  48988. },
  48989. back: {
  48990. height: math.unit(6, "feet"),
  48991. name: "Back",
  48992. image: {
  48993. source: "./media/characters/myra-aisling/back.svg",
  48994. extra: 1249/1149,
  48995. bottom: 79/1328
  48996. }
  48997. },
  48998. dressed: {
  48999. height: math.unit(6, "feet"),
  49000. name: "Dressed",
  49001. image: {
  49002. source: "./media/characters/myra-aisling/dressed.svg",
  49003. extra: 1290/1189,
  49004. bottom: 47/1337
  49005. }
  49006. },
  49007. hand: {
  49008. height: math.unit(1.1, "feet"),
  49009. name: "Hand",
  49010. image: {
  49011. source: "./media/characters/myra-aisling/hand.svg"
  49012. }
  49013. },
  49014. paw: {
  49015. height: math.unit(1.23, "feet"),
  49016. name: "Paw",
  49017. image: {
  49018. source: "./media/characters/myra-aisling/paw.svg"
  49019. }
  49020. },
  49021. },
  49022. [
  49023. {
  49024. name: "Normal",
  49025. height: math.unit(160, "feet"),
  49026. default: true
  49027. },
  49028. ]
  49029. ))
  49030. characterMakers.push(() => makeCharacter(
  49031. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49032. {
  49033. front: {
  49034. height: math.unit(6, "feet"),
  49035. name: "Front",
  49036. image: {
  49037. source: "./media/characters/tenley-sidero/front.svg",
  49038. extra: 1365/1276,
  49039. bottom: 47/1412
  49040. }
  49041. },
  49042. back: {
  49043. height: math.unit(6, "feet"),
  49044. name: "Back",
  49045. image: {
  49046. source: "./media/characters/tenley-sidero/back.svg",
  49047. extra: 1383/1283,
  49048. bottom: 35/1418
  49049. }
  49050. },
  49051. dressed: {
  49052. height: math.unit(6, "feet"),
  49053. name: "Dressed",
  49054. image: {
  49055. source: "./media/characters/tenley-sidero/dressed.svg",
  49056. extra: 1364/1275,
  49057. bottom: 42/1406
  49058. }
  49059. },
  49060. head: {
  49061. height: math.unit(1.47, "feet"),
  49062. name: "Head",
  49063. image: {
  49064. source: "./media/characters/tenley-sidero/head.svg",
  49065. extra: 610/490,
  49066. bottom: 0/610
  49067. }
  49068. },
  49069. },
  49070. [
  49071. {
  49072. name: "Normal",
  49073. height: math.unit(154, "feet"),
  49074. default: true
  49075. },
  49076. ]
  49077. ))
  49078. characterMakers.push(() => makeCharacter(
  49079. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49080. {
  49081. front: {
  49082. height: math.unit(5, "inches"),
  49083. name: "Front",
  49084. image: {
  49085. source: "./media/characters/mallory/front.svg",
  49086. extra: 1919/1678,
  49087. bottom: 29/1948
  49088. }
  49089. },
  49090. hand: {
  49091. height: math.unit(0.73, "inches"),
  49092. name: "Hand",
  49093. image: {
  49094. source: "./media/characters/mallory/hand.svg"
  49095. }
  49096. },
  49097. paw: {
  49098. height: math.unit(0.68, "inches"),
  49099. name: "Paw",
  49100. image: {
  49101. source: "./media/characters/mallory/paw.svg"
  49102. }
  49103. },
  49104. },
  49105. [
  49106. {
  49107. name: "Small",
  49108. height: math.unit(5, "inches"),
  49109. default: true
  49110. },
  49111. ]
  49112. ))
  49113. characterMakers.push(() => makeCharacter(
  49114. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49115. {
  49116. naked: {
  49117. height: math.unit(6, "feet"),
  49118. name: "Naked",
  49119. image: {
  49120. source: "./media/characters/mab/naked.svg",
  49121. extra: 1855/1757,
  49122. bottom: 208/2063
  49123. }
  49124. },
  49125. outside: {
  49126. height: math.unit(6, "feet"),
  49127. name: "Outside",
  49128. image: {
  49129. source: "./media/characters/mab/outside.svg",
  49130. extra: 1855/1757,
  49131. bottom: 208/2063
  49132. }
  49133. },
  49134. party: {
  49135. height: math.unit(6, "feet"),
  49136. name: "Party",
  49137. image: {
  49138. source: "./media/characters/mab/party.svg",
  49139. extra: 1855/1757,
  49140. bottom: 208/2063
  49141. }
  49142. },
  49143. },
  49144. [
  49145. {
  49146. name: "Normal",
  49147. height: math.unit(165, "feet"),
  49148. default: true
  49149. },
  49150. ]
  49151. ))
  49152. characterMakers.push(() => makeCharacter(
  49153. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49154. {
  49155. front: {
  49156. height: math.unit(12, "feet"),
  49157. weight: math.unit(4000, "lb"),
  49158. name: "Front",
  49159. image: {
  49160. source: "./media/characters/winter/front.svg",
  49161. extra: 1286/943,
  49162. bottom: 112/1398
  49163. }
  49164. },
  49165. frontNsfw: {
  49166. height: math.unit(12, "feet"),
  49167. weight: math.unit(4000, "lb"),
  49168. name: "Front (NSFW)",
  49169. image: {
  49170. source: "./media/characters/winter/front-nsfw.svg",
  49171. extra: 1286/943,
  49172. bottom: 112/1398
  49173. }
  49174. },
  49175. dick: {
  49176. height: math.unit(3.79, "feet"),
  49177. name: "Dick",
  49178. image: {
  49179. source: "./media/characters/winter/dick.svg"
  49180. }
  49181. },
  49182. },
  49183. [
  49184. {
  49185. name: "Big",
  49186. height: math.unit(12, "feet"),
  49187. default: true
  49188. },
  49189. ]
  49190. ))
  49191. characterMakers.push(() => makeCharacter(
  49192. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49193. {
  49194. front: {
  49195. height: math.unit(4.1, "inches"),
  49196. name: "Front",
  49197. image: {
  49198. source: "./media/characters/alto/front.svg",
  49199. extra: 736/627,
  49200. bottom: 90/826
  49201. }
  49202. },
  49203. },
  49204. [
  49205. {
  49206. name: "Normal",
  49207. height: math.unit(4.1, "inches"),
  49208. default: true
  49209. },
  49210. ]
  49211. ))
  49212. characterMakers.push(() => makeCharacter(
  49213. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49214. {
  49215. sitting: {
  49216. height: math.unit(3, "feet"),
  49217. name: "Sitting",
  49218. image: {
  49219. source: "./media/characters/ratstrid-v/sitting.svg",
  49220. extra: 355/310,
  49221. bottom: 136/491
  49222. }
  49223. },
  49224. },
  49225. [
  49226. {
  49227. name: "Normal",
  49228. height: math.unit(3, "feet"),
  49229. default: true
  49230. },
  49231. ]
  49232. ))
  49233. characterMakers.push(() => makeCharacter(
  49234. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49235. {
  49236. back: {
  49237. height: math.unit(6, "feet"),
  49238. weight: math.unit(350, "lb"),
  49239. name: "Back",
  49240. image: {
  49241. source: "./media/characters/siz/back.svg",
  49242. extra: 1449/1274,
  49243. bottom: 13/1462
  49244. }
  49245. },
  49246. },
  49247. [
  49248. {
  49249. name: "Over-Overcompressed",
  49250. height: math.unit(8, "feet")
  49251. },
  49252. {
  49253. name: "Overcompressed",
  49254. height: math.unit(32, "feet")
  49255. },
  49256. {
  49257. name: "Compressed",
  49258. height: math.unit(128, "feet"),
  49259. default: true
  49260. },
  49261. {
  49262. name: "Half-Compressed",
  49263. height: math.unit(512, "feet")
  49264. },
  49265. {
  49266. name: "Quarter-Compressed",
  49267. height: math.unit(2048, "feet")
  49268. },
  49269. {
  49270. name: "Uncompressed?",
  49271. height: math.unit(8192, "feet")
  49272. },
  49273. ]
  49274. ))
  49275. characterMakers.push(() => makeCharacter(
  49276. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49277. {
  49278. front: {
  49279. height: math.unit(5 + 9/12, "feet"),
  49280. weight: math.unit(150, "lb"),
  49281. name: "Front",
  49282. image: {
  49283. source: "./media/characters/ven/front.svg",
  49284. extra: 1372/1320,
  49285. bottom: 73/1445
  49286. }
  49287. },
  49288. side: {
  49289. height: math.unit(5 + 9/12, "feet"),
  49290. weight: math.unit(1150, "lb"),
  49291. name: "Side",
  49292. image: {
  49293. source: "./media/characters/ven/side.svg",
  49294. extra: 1119/1070,
  49295. bottom: 42/1161
  49296. },
  49297. default: true
  49298. },
  49299. },
  49300. [
  49301. {
  49302. name: "Normal",
  49303. height: math.unit(5 + 9/12, "feet"),
  49304. default: true
  49305. },
  49306. ]
  49307. ))
  49308. characterMakers.push(() => makeCharacter(
  49309. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49310. {
  49311. front: {
  49312. height: math.unit(12, "feet"),
  49313. weight: math.unit(1000, "kg"),
  49314. name: "Front",
  49315. image: {
  49316. source: "./media/characters/maple/front.svg",
  49317. extra: 1193/1081,
  49318. bottom: 22/1215
  49319. }
  49320. },
  49321. },
  49322. [
  49323. {
  49324. name: "Compressed",
  49325. height: math.unit(7, "feet")
  49326. },
  49327. {
  49328. name: "Normal",
  49329. height: math.unit(12, "feet"),
  49330. default: true
  49331. },
  49332. ]
  49333. ))
  49334. characterMakers.push(() => makeCharacter(
  49335. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49336. {
  49337. front: {
  49338. height: math.unit(9, "feet"),
  49339. weight: math.unit(1500, "lb"),
  49340. name: "Front",
  49341. image: {
  49342. source: "./media/characters/nora/front.svg",
  49343. extra: 1348/1286,
  49344. bottom: 218/1566
  49345. }
  49346. },
  49347. erect: {
  49348. height: math.unit(9, "feet"),
  49349. weight: math.unit(11500, "lb"),
  49350. name: "Erect",
  49351. image: {
  49352. source: "./media/characters/nora/erect.svg",
  49353. extra: 1488/1433,
  49354. bottom: 133/1621
  49355. }
  49356. },
  49357. },
  49358. [
  49359. {
  49360. name: "Normal",
  49361. height: math.unit(9, "feet"),
  49362. default: true
  49363. },
  49364. ]
  49365. ))
  49366. characterMakers.push(() => makeCharacter(
  49367. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49368. {
  49369. front: {
  49370. height: math.unit(25, "feet"),
  49371. weight: math.unit(27500, "lb"),
  49372. name: "Front",
  49373. image: {
  49374. source: "./media/characters/north-caudin/front.svg",
  49375. extra: 1184/1082,
  49376. bottom: 23/1207
  49377. }
  49378. },
  49379. },
  49380. [
  49381. {
  49382. name: "Compressed",
  49383. height: math.unit(10, "feet")
  49384. },
  49385. {
  49386. name: "Normal",
  49387. height: math.unit(25, "feet"),
  49388. default: true
  49389. },
  49390. ]
  49391. ))
  49392. characterMakers.push(() => makeCharacter(
  49393. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49394. {
  49395. front: {
  49396. height: math.unit(9, "feet"),
  49397. weight: math.unit(1250, "lb"),
  49398. name: "Front",
  49399. image: {
  49400. source: "./media/characters/merrian/front.svg",
  49401. extra: 2393/2304,
  49402. bottom: 40/2433
  49403. }
  49404. },
  49405. },
  49406. [
  49407. {
  49408. name: "Normal",
  49409. height: math.unit(9, "feet"),
  49410. default: true
  49411. },
  49412. ]
  49413. ))
  49414. characterMakers.push(() => makeCharacter(
  49415. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49416. {
  49417. front: {
  49418. height: math.unit(9, "feet"),
  49419. weight: math.unit(1000, "lb"),
  49420. name: "Front",
  49421. image: {
  49422. source: "./media/characters/hazel/front.svg",
  49423. extra: 2351/2298,
  49424. bottom: 38/2389
  49425. }
  49426. },
  49427. },
  49428. [
  49429. {
  49430. name: "Normal",
  49431. height: math.unit(9, "feet"),
  49432. default: true
  49433. },
  49434. ]
  49435. ))
  49436. characterMakers.push(() => makeCharacter(
  49437. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49438. {
  49439. front: {
  49440. height: math.unit(13, "feet"),
  49441. weight: math.unit(3200, "lb"),
  49442. name: "Front",
  49443. image: {
  49444. source: "./media/characters/emma/front.svg",
  49445. extra: 2263/2029,
  49446. bottom: 68/2331
  49447. }
  49448. },
  49449. },
  49450. [
  49451. {
  49452. name: "Normal",
  49453. height: math.unit(13, "feet"),
  49454. default: true
  49455. },
  49456. ]
  49457. ))
  49458. characterMakers.push(() => makeCharacter(
  49459. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49460. {
  49461. front: {
  49462. height: math.unit(11 + 9/12, "feet"),
  49463. weight: math.unit(2500, "lb"),
  49464. name: "Front",
  49465. image: {
  49466. source: "./media/characters/ilumina/front.svg",
  49467. extra: 2248/2209,
  49468. bottom: 164/2412
  49469. }
  49470. },
  49471. },
  49472. [
  49473. {
  49474. name: "Normal",
  49475. height: math.unit(11 + 9/12, "feet"),
  49476. default: true
  49477. },
  49478. ]
  49479. ))
  49480. characterMakers.push(() => makeCharacter(
  49481. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49482. {
  49483. front: {
  49484. height: math.unit(8 + 10/12, "feet"),
  49485. weight: math.unit(1350, "lb"),
  49486. name: "Front",
  49487. image: {
  49488. source: "./media/characters/moonshine/front.svg",
  49489. extra: 2395/2288,
  49490. bottom: 40/2435
  49491. }
  49492. },
  49493. },
  49494. [
  49495. {
  49496. name: "Normal",
  49497. height: math.unit(8 + 10/12, "feet"),
  49498. default: true
  49499. },
  49500. ]
  49501. ))
  49502. characterMakers.push(() => makeCharacter(
  49503. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49504. {
  49505. front: {
  49506. height: math.unit(14, "feet"),
  49507. weight: math.unit(3400, "lb"),
  49508. name: "Front",
  49509. image: {
  49510. source: "./media/characters/aletia/front.svg",
  49511. extra: 1185/1052,
  49512. bottom: 21/1206
  49513. }
  49514. },
  49515. },
  49516. [
  49517. {
  49518. name: "Compressed",
  49519. height: math.unit(8, "feet")
  49520. },
  49521. {
  49522. name: "Normal",
  49523. height: math.unit(14, "feet"),
  49524. default: true
  49525. },
  49526. ]
  49527. ))
  49528. characterMakers.push(() => makeCharacter(
  49529. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49530. {
  49531. front: {
  49532. height: math.unit(17, "feet"),
  49533. weight: math.unit(6500, "lb"),
  49534. name: "Front",
  49535. image: {
  49536. source: "./media/characters/deidra/front.svg",
  49537. extra: 1201/1081,
  49538. bottom: 16/1217
  49539. }
  49540. },
  49541. },
  49542. [
  49543. {
  49544. name: "Compressed",
  49545. height: math.unit(9 + 6/12, "feet")
  49546. },
  49547. {
  49548. name: "Normal",
  49549. height: math.unit(17, "feet"),
  49550. default: true
  49551. },
  49552. ]
  49553. ))
  49554. characterMakers.push(() => makeCharacter(
  49555. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49556. {
  49557. front: {
  49558. height: math.unit(7 + 4/12, "feet"),
  49559. weight: math.unit(280, "lb"),
  49560. name: "Front",
  49561. image: {
  49562. source: "./media/characters/freki-yrmori/front.svg",
  49563. extra: 1286/1182,
  49564. bottom: 29/1315
  49565. }
  49566. },
  49567. maw: {
  49568. height: math.unit(0.9, "feet"),
  49569. name: "Maw",
  49570. image: {
  49571. source: "./media/characters/freki-yrmori/maw.svg"
  49572. }
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Normal",
  49578. height: math.unit(7 + 4/12, "feet"),
  49579. default: true
  49580. },
  49581. {
  49582. name: "Macro",
  49583. height: math.unit(38.5, "meters")
  49584. },
  49585. ]
  49586. ))
  49587. characterMakers.push(() => makeCharacter(
  49588. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49589. {
  49590. side: {
  49591. height: math.unit(47.2, "meters"),
  49592. weight: math.unit(10000, "tons"),
  49593. name: "Side",
  49594. image: {
  49595. source: "./media/characters/aetherios/side.svg",
  49596. extra: 2363/642,
  49597. bottom: 221/2584
  49598. }
  49599. },
  49600. top: {
  49601. height: math.unit(240, "meters"),
  49602. weight: math.unit(10000, "tons"),
  49603. name: "Top",
  49604. image: {
  49605. source: "./media/characters/aetherios/top.svg"
  49606. }
  49607. },
  49608. bottom: {
  49609. height: math.unit(240, "meters"),
  49610. weight: math.unit(10000, "tons"),
  49611. name: "Bottom",
  49612. image: {
  49613. source: "./media/characters/aetherios/bottom.svg"
  49614. }
  49615. },
  49616. head: {
  49617. height: math.unit(38.6, "meters"),
  49618. name: "Head",
  49619. image: {
  49620. source: "./media/characters/aetherios/head.svg",
  49621. extra: 1335/1112,
  49622. bottom: 0/1335
  49623. }
  49624. },
  49625. front: {
  49626. height: math.unit(29, "meters"),
  49627. name: "Front",
  49628. image: {
  49629. source: "./media/characters/aetherios/front.svg",
  49630. extra: 1266/953,
  49631. bottom: 158/1424
  49632. }
  49633. },
  49634. maw: {
  49635. height: math.unit(16.37, "meters"),
  49636. name: "Maw",
  49637. image: {
  49638. source: "./media/characters/aetherios/maw.svg",
  49639. extra: 748/637,
  49640. bottom: 0/748
  49641. },
  49642. extraAttributes: {
  49643. preyCapacity: {
  49644. name: "Capacity",
  49645. power: 3,
  49646. type: "volume",
  49647. base: math.unit(1000, "people")
  49648. },
  49649. tongueSize: {
  49650. name: "Tongue Size",
  49651. power: 2,
  49652. type: "area",
  49653. base: math.unit(21, "m^2")
  49654. }
  49655. }
  49656. },
  49657. forepaw: {
  49658. height: math.unit(18, "meters"),
  49659. name: "Forepaw",
  49660. image: {
  49661. source: "./media/characters/aetherios/forepaw.svg"
  49662. }
  49663. },
  49664. hindpaw: {
  49665. height: math.unit(23, "meters"),
  49666. name: "Hindpaw",
  49667. image: {
  49668. source: "./media/characters/aetherios/hindpaw.svg"
  49669. }
  49670. },
  49671. genitals: {
  49672. height: math.unit(42, "meters"),
  49673. name: "Genitals",
  49674. image: {
  49675. source: "./media/characters/aetherios/genitals.svg"
  49676. }
  49677. },
  49678. },
  49679. [
  49680. {
  49681. name: "Normal",
  49682. height: math.unit(47.2, "meters"),
  49683. default: true
  49684. },
  49685. {
  49686. name: "Macro",
  49687. height: math.unit(160, "meters")
  49688. },
  49689. {
  49690. name: "Mega",
  49691. height: math.unit(1.87, "km")
  49692. },
  49693. {
  49694. name: "Giga",
  49695. height: math.unit(40000, "km")
  49696. },
  49697. {
  49698. name: "Stellar",
  49699. height: math.unit(158000000, "km")
  49700. },
  49701. {
  49702. name: "Cosmic",
  49703. height: math.unit(9.46e12, "km")
  49704. },
  49705. ]
  49706. ))
  49707. characterMakers.push(() => makeCharacter(
  49708. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49709. {
  49710. front: {
  49711. height: math.unit(5 + 4/12, "feet"),
  49712. weight: math.unit(80, "lb"),
  49713. name: "Front",
  49714. image: {
  49715. source: "./media/characters/mizu-gieeg/front.svg",
  49716. extra: 850/709,
  49717. bottom: 52/902
  49718. }
  49719. },
  49720. back: {
  49721. height: math.unit(5 + 4/12, "feet"),
  49722. weight: math.unit(80, "lb"),
  49723. name: "Back",
  49724. image: {
  49725. source: "./media/characters/mizu-gieeg/back.svg",
  49726. extra: 882/745,
  49727. bottom: 25/907
  49728. }
  49729. },
  49730. },
  49731. [
  49732. {
  49733. name: "Normal",
  49734. height: math.unit(5 + 4/12, "feet"),
  49735. default: true
  49736. },
  49737. ]
  49738. ))
  49739. characterMakers.push(() => makeCharacter(
  49740. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49741. {
  49742. front: {
  49743. height: math.unit(6, "feet"),
  49744. name: "Front",
  49745. image: {
  49746. source: "./media/characters/roselle-st-papier/front.svg",
  49747. extra: 1430/1280,
  49748. bottom: 37/1467
  49749. }
  49750. },
  49751. back: {
  49752. height: math.unit(6, "feet"),
  49753. name: "Back",
  49754. image: {
  49755. source: "./media/characters/roselle-st-papier/back.svg",
  49756. extra: 1491/1296,
  49757. bottom: 23/1514
  49758. }
  49759. },
  49760. ear: {
  49761. height: math.unit(1.26, "feet"),
  49762. name: "Ear",
  49763. image: {
  49764. source: "./media/characters/roselle-st-papier/ear.svg"
  49765. }
  49766. },
  49767. },
  49768. [
  49769. {
  49770. name: "Normal",
  49771. height: math.unit(150, "feet"),
  49772. default: true
  49773. },
  49774. ]
  49775. ))
  49776. characterMakers.push(() => makeCharacter(
  49777. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49778. {
  49779. front: {
  49780. height: math.unit(1, "inches"),
  49781. name: "Front",
  49782. image: {
  49783. source: "./media/characters/valargent/front.svg",
  49784. extra: 1825/1694,
  49785. bottom: 62/1887
  49786. }
  49787. },
  49788. back: {
  49789. height: math.unit(1, "inches"),
  49790. name: "Back",
  49791. image: {
  49792. source: "./media/characters/valargent/back.svg",
  49793. extra: 1775/1682,
  49794. bottom: 88/1863
  49795. }
  49796. },
  49797. },
  49798. [
  49799. {
  49800. name: "Micro",
  49801. height: math.unit(1, "inch"),
  49802. default: true
  49803. },
  49804. ]
  49805. ))
  49806. characterMakers.push(() => makeCharacter(
  49807. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49808. {
  49809. front: {
  49810. height: math.unit(3.4, "meters"),
  49811. name: "Front",
  49812. image: {
  49813. source: "./media/characters/zarina/front.svg",
  49814. extra: 1733/1425,
  49815. bottom: 93/1826
  49816. }
  49817. },
  49818. squatting: {
  49819. height: math.unit(2.14, "meters"),
  49820. name: "Squatting",
  49821. image: {
  49822. source: "./media/characters/zarina/squatting.svg",
  49823. extra: 1073/788,
  49824. bottom: 63/1136
  49825. }
  49826. },
  49827. back: {
  49828. height: math.unit(2.14, "meters"),
  49829. name: "Back",
  49830. image: {
  49831. source: "./media/characters/zarina/back.svg",
  49832. extra: 1128/885,
  49833. bottom: 0/1128
  49834. }
  49835. },
  49836. },
  49837. [
  49838. {
  49839. name: "Normal",
  49840. height: math.unit(3.4, "meters"),
  49841. default: true
  49842. },
  49843. {
  49844. name: "Big",
  49845. height: math.unit(5, "meters")
  49846. },
  49847. {
  49848. name: "Macro",
  49849. height: math.unit(110, "meters")
  49850. },
  49851. ]
  49852. ))
  49853. characterMakers.push(() => makeCharacter(
  49854. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  49855. {
  49856. front: {
  49857. height: math.unit(7, "feet"),
  49858. name: "Front",
  49859. image: {
  49860. source: "./media/characters/ventus-astro-fox/front.svg",
  49861. extra: 1792/1623,
  49862. bottom: 28/1820
  49863. }
  49864. },
  49865. back: {
  49866. height: math.unit(7, "feet"),
  49867. name: "Back",
  49868. image: {
  49869. source: "./media/characters/ventus-astro-fox/back.svg",
  49870. extra: 1789/1620,
  49871. bottom: 31/1820
  49872. }
  49873. },
  49874. outfit: {
  49875. height: math.unit(7, "feet"),
  49876. name: "Outfit",
  49877. image: {
  49878. source: "./media/characters/ventus-astro-fox/outfit.svg",
  49879. extra: 1054/925,
  49880. bottom: 15/1069
  49881. }
  49882. },
  49883. head: {
  49884. height: math.unit(1.12, "feet"),
  49885. name: "Head",
  49886. image: {
  49887. source: "./media/characters/ventus-astro-fox/head.svg",
  49888. extra: 866/504,
  49889. bottom: 0/866
  49890. }
  49891. },
  49892. hand: {
  49893. height: math.unit(1, "feet"),
  49894. name: "Hand",
  49895. image: {
  49896. source: "./media/characters/ventus-astro-fox/hand.svg"
  49897. }
  49898. },
  49899. paw: {
  49900. height: math.unit(1.5, "feet"),
  49901. name: "Paw",
  49902. image: {
  49903. source: "./media/characters/ventus-astro-fox/paw.svg"
  49904. }
  49905. },
  49906. },
  49907. [
  49908. {
  49909. name: "Normal",
  49910. height: math.unit(7, "feet"),
  49911. default: true
  49912. },
  49913. {
  49914. name: "Macro",
  49915. height: math.unit(200, "feet")
  49916. },
  49917. {
  49918. name: "Cosmic",
  49919. height: math.unit(3, "universes")
  49920. },
  49921. ]
  49922. ))
  49923. characterMakers.push(() => makeCharacter(
  49924. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  49925. {
  49926. front: {
  49927. height: math.unit(3, "meters"),
  49928. weight: math.unit(7000, "lb"),
  49929. name: "Front",
  49930. image: {
  49931. source: "./media/characters/core-t/front.svg",
  49932. extra: 5729/4941,
  49933. bottom: 1129/6858
  49934. }
  49935. },
  49936. },
  49937. [
  49938. {
  49939. name: "Big",
  49940. height: math.unit(3, "meters"),
  49941. default: true
  49942. },
  49943. ]
  49944. ))
  49945. characterMakers.push(() => makeCharacter(
  49946. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  49947. {
  49948. normal: {
  49949. height: math.unit(6 + 6/12, "feet"),
  49950. weight: math.unit(275, "lb"),
  49951. name: "Front",
  49952. image: {
  49953. source: "./media/characters/cadbunny/normal.svg",
  49954. extra: 1129/947,
  49955. bottom: 93/1222
  49956. },
  49957. default: true,
  49958. form: "normal"
  49959. },
  49960. gigantamax: {
  49961. height: math.unit(26, "feet"),
  49962. weight: math.unit(16000, "lb"),
  49963. name: "Front",
  49964. image: {
  49965. source: "./media/characters/cadbunny/gigantamax.svg",
  49966. extra: 1133/944,
  49967. bottom: 90/1223
  49968. },
  49969. default: true,
  49970. form: "gigantamax"
  49971. },
  49972. },
  49973. [
  49974. {
  49975. name: "Normal",
  49976. height: math.unit(6 + 6/12, "feet"),
  49977. default: true,
  49978. form: "normal"
  49979. },
  49980. {
  49981. name: "Small",
  49982. height: math.unit(26, "feet"),
  49983. default: true,
  49984. form: "gigantamax"
  49985. },
  49986. {
  49987. name: "Large",
  49988. height: math.unit(78, "feet"),
  49989. form: "gigantamax"
  49990. },
  49991. ],
  49992. {
  49993. "normal": {
  49994. name: "Normal",
  49995. default: true
  49996. },
  49997. "gigantamax": {
  49998. name: "Gigantamax"
  49999. }
  50000. }
  50001. ))
  50002. characterMakers.push(() => makeCharacter(
  50003. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50004. {
  50005. anthroFront: {
  50006. height: math.unit(8, "feet"),
  50007. weight: math.unit(300, "lb"),
  50008. name: "Front",
  50009. image: {
  50010. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50011. extra: 1272/1176,
  50012. bottom: 53/1325
  50013. },
  50014. form: "anthro",
  50015. default: true
  50016. },
  50017. feralSide: {
  50018. height: math.unit(4, "feet"),
  50019. weight: math.unit(250, "lb"),
  50020. name: "Side",
  50021. image: {
  50022. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50023. extra: 731/621,
  50024. bottom: 0/731
  50025. },
  50026. form: "feral",
  50027. default: true
  50028. },
  50029. },
  50030. [
  50031. {
  50032. name: "Regular",
  50033. height: math.unit(8, "feet"),
  50034. form: "anthro"
  50035. },
  50036. {
  50037. name: "Macro",
  50038. height: math.unit(250, "feet"),
  50039. form: "anthro",
  50040. default: true
  50041. },
  50042. {
  50043. name: "Regular",
  50044. height: math.unit(4, "feet"),
  50045. form: "feral"
  50046. },
  50047. {
  50048. name: "Macro",
  50049. height: math.unit(125, "feet"),
  50050. form: "feral",
  50051. default: true
  50052. },
  50053. ],
  50054. {
  50055. "anthro": {
  50056. name: "Anthro",
  50057. default: true
  50058. },
  50059. "feral": {
  50060. name: "Feral",
  50061. },
  50062. }
  50063. ))
  50064. characterMakers.push(() => makeCharacter(
  50065. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50066. {
  50067. front: {
  50068. height: math.unit(11 + 10/12, "feet"),
  50069. weight: math.unit(1587, "kg"),
  50070. name: "Front",
  50071. image: {
  50072. source: "./media/characters/maple-javira-dragon/front.svg",
  50073. extra: 1136/744,
  50074. bottom: 73/1209
  50075. }
  50076. },
  50077. side: {
  50078. height: math.unit(11 + 10/12, "feet"),
  50079. weight: math.unit(1587, "kg"),
  50080. name: "Side",
  50081. image: {
  50082. source: "./media/characters/maple-javira-dragon/side.svg",
  50083. extra: 712/505,
  50084. bottom: 17/729
  50085. }
  50086. },
  50087. head: {
  50088. height: math.unit(8.05, "feet"),
  50089. name: "Head",
  50090. image: {
  50091. source: "./media/characters/maple-javira-dragon/head.svg",
  50092. extra: 1420/1344,
  50093. bottom: 0/1420
  50094. }
  50095. },
  50096. },
  50097. [
  50098. {
  50099. name: "Normal",
  50100. height: math.unit(11 + 10/12, "feet"),
  50101. default: true
  50102. },
  50103. ]
  50104. ))
  50105. characterMakers.push(() => makeCharacter(
  50106. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50107. {
  50108. front: {
  50109. height: math.unit(117, "cm"),
  50110. weight: math.unit(50, "kg"),
  50111. name: "Front",
  50112. image: {
  50113. source: "./media/characters/sonia-wyverntail/front.svg",
  50114. extra: 708/592,
  50115. bottom: 25/733
  50116. }
  50117. },
  50118. },
  50119. [
  50120. {
  50121. name: "Normal",
  50122. height: math.unit(117, "cm"),
  50123. default: true
  50124. },
  50125. ]
  50126. ))
  50127. characterMakers.push(() => makeCharacter(
  50128. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50129. {
  50130. front: {
  50131. height: math.unit(6 + 5/12, "feet"),
  50132. name: "Front",
  50133. image: {
  50134. source: "./media/characters/micah/front.svg",
  50135. extra: 1758/1546,
  50136. bottom: 214/1972
  50137. }
  50138. },
  50139. },
  50140. [
  50141. {
  50142. name: "Normal",
  50143. height: math.unit(6 + 5/12, "feet"),
  50144. default: true
  50145. },
  50146. ]
  50147. ))
  50148. characterMakers.push(() => makeCharacter(
  50149. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50150. {
  50151. front: {
  50152. height: math.unit(5 + 10/12, "feet"),
  50153. weight: math.unit(220, "lb"),
  50154. name: "Front",
  50155. image: {
  50156. source: "./media/characters/zarya/front.svg",
  50157. extra: 593/572,
  50158. bottom: 50/643
  50159. }
  50160. },
  50161. back: {
  50162. height: math.unit(5 + 10/12, "feet"),
  50163. weight: math.unit(220, "lb"),
  50164. name: "Back",
  50165. image: {
  50166. source: "./media/characters/zarya/back.svg",
  50167. extra: 603/582,
  50168. bottom: 38/641
  50169. }
  50170. },
  50171. },
  50172. [
  50173. {
  50174. name: "Normal",
  50175. height: math.unit(5 + 10/12, "feet"),
  50176. default: true
  50177. },
  50178. ]
  50179. ))
  50180. characterMakers.push(() => makeCharacter(
  50181. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50182. {
  50183. front: {
  50184. height: math.unit(7.5, "feet"),
  50185. name: "Front",
  50186. image: {
  50187. source: "./media/characters/sven-hatisson/front.svg",
  50188. extra: 917/857,
  50189. bottom: 42/959
  50190. }
  50191. },
  50192. back: {
  50193. height: math.unit(7.5, "feet"),
  50194. name: "Back",
  50195. image: {
  50196. source: "./media/characters/sven-hatisson/back.svg",
  50197. extra: 903/856,
  50198. bottom: 15/918
  50199. }
  50200. },
  50201. },
  50202. [
  50203. {
  50204. name: "Base Height",
  50205. height: math.unit(7.5, "feet")
  50206. },
  50207. {
  50208. name: "Usual Height",
  50209. height: math.unit(13.5, "feet"),
  50210. default: true
  50211. },
  50212. {
  50213. name: "Smaller Macro",
  50214. height: math.unit(85, "feet")
  50215. },
  50216. {
  50217. name: "Moderate Macro",
  50218. height: math.unit(320, "feet")
  50219. },
  50220. {
  50221. name: "Large Macro",
  50222. height: math.unit(1000, "feet")
  50223. },
  50224. {
  50225. name: "Largest Size",
  50226. height: math.unit(2, "miles")
  50227. },
  50228. ]
  50229. ))
  50230. characterMakers.push(() => makeCharacter(
  50231. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50232. {
  50233. side: {
  50234. height: math.unit(1.8, "meters"),
  50235. weight: math.unit(275, "kg"),
  50236. name: "Side",
  50237. image: {
  50238. source: "./media/characters/terra/side.svg",
  50239. extra: 1273/1147,
  50240. bottom: 0/1273
  50241. }
  50242. },
  50243. },
  50244. [
  50245. {
  50246. name: "Normal",
  50247. height: math.unit(16.2, "meters"),
  50248. default: true
  50249. },
  50250. ]
  50251. ))
  50252. characterMakers.push(() => makeCharacter(
  50253. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50254. {
  50255. borzoiFront: {
  50256. height: math.unit(6 + 9/12, "feet"),
  50257. name: "Front",
  50258. image: {
  50259. source: "./media/characters/rae/borzoi-front.svg",
  50260. extra: 1161/1098,
  50261. bottom: 31/1192
  50262. },
  50263. form: "borzoi",
  50264. default: true
  50265. },
  50266. werewolfFront: {
  50267. height: math.unit(8 + 7/12, "feet"),
  50268. name: "Front",
  50269. image: {
  50270. source: "./media/characters/rae/werewolf-front.svg",
  50271. extra: 1411/1334,
  50272. bottom: 127/1538
  50273. },
  50274. form: "werewolf",
  50275. default: true
  50276. },
  50277. },
  50278. [
  50279. {
  50280. name: "Normal",
  50281. height: math.unit(6 + 9/12, "feet"),
  50282. default: true,
  50283. form: "borzoi"
  50284. },
  50285. {
  50286. name: "Normal",
  50287. height: math.unit(8 + 7/12, "feet"),
  50288. default: true,
  50289. form: "werewolf"
  50290. },
  50291. ],
  50292. {
  50293. "borzoi": {
  50294. name: "Borzoi",
  50295. default: true
  50296. },
  50297. "werewolf": {
  50298. name: "Werewolf",
  50299. },
  50300. }
  50301. ))
  50302. characterMakers.push(() => makeCharacter(
  50303. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50304. {
  50305. front: {
  50306. height: math.unit(8 + 7/12, "feet"),
  50307. weight: math.unit(482, "lb"),
  50308. name: "Front",
  50309. image: {
  50310. source: "./media/characters/kit/front.svg",
  50311. extra: 1247/1103,
  50312. bottom: 41/1288
  50313. }
  50314. },
  50315. back: {
  50316. height: math.unit(8 + 7/12, "feet"),
  50317. weight: math.unit(482, "lb"),
  50318. name: "Back",
  50319. image: {
  50320. source: "./media/characters/kit/back.svg",
  50321. extra: 1252/1123,
  50322. bottom: 21/1273
  50323. }
  50324. },
  50325. paw: {
  50326. height: math.unit(1.46, "feet"),
  50327. name: "Paw",
  50328. image: {
  50329. source: "./media/characters/kit/paw.svg"
  50330. }
  50331. },
  50332. },
  50333. [
  50334. {
  50335. name: "Normal",
  50336. height: math.unit(8 + 7/12, "feet"),
  50337. default: true
  50338. },
  50339. ]
  50340. ))
  50341. characterMakers.push(() => makeCharacter(
  50342. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50343. {
  50344. side: {
  50345. height: math.unit(0.6, "meters"),
  50346. weight: math.unit(24, "kg"),
  50347. name: "Side",
  50348. image: {
  50349. source: "./media/characters/celeste/side.svg",
  50350. extra: 810/517,
  50351. bottom: 53/863
  50352. }
  50353. },
  50354. },
  50355. [
  50356. {
  50357. name: "Velociraptor",
  50358. height: math.unit(0.6, "meters"),
  50359. default: true
  50360. },
  50361. {
  50362. name: "Utahraptor",
  50363. height: math.unit(1.8, "meters")
  50364. },
  50365. {
  50366. name: "Gallimimus",
  50367. height: math.unit(4.0, "meters")
  50368. },
  50369. {
  50370. name: "Large",
  50371. height: math.unit(20, "meters")
  50372. },
  50373. {
  50374. name: "Planetary",
  50375. height: math.unit(50, "megameters")
  50376. },
  50377. {
  50378. name: "Stellar",
  50379. height: math.unit(1.5, "gigameters")
  50380. },
  50381. {
  50382. name: "Galactic",
  50383. height: math.unit(100, "exameters")
  50384. },
  50385. ]
  50386. ))
  50387. characterMakers.push(() => makeCharacter(
  50388. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50389. {
  50390. front: {
  50391. height: math.unit(6, "feet"),
  50392. weight: math.unit(210, "lb"),
  50393. name: "Front",
  50394. image: {
  50395. source: "./media/characters/glacia/front.svg",
  50396. extra: 958/901,
  50397. bottom: 45/1003
  50398. }
  50399. },
  50400. },
  50401. [
  50402. {
  50403. name: "Macro",
  50404. height: math.unit(1000, "meters"),
  50405. default: true
  50406. },
  50407. ]
  50408. ))
  50409. characterMakers.push(() => makeCharacter(
  50410. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50411. {
  50412. front: {
  50413. height: math.unit(4, "meters"),
  50414. name: "Front",
  50415. image: {
  50416. source: "./media/characters/giri/front.svg",
  50417. extra: 966/894,
  50418. bottom: 21/987
  50419. }
  50420. },
  50421. },
  50422. [
  50423. {
  50424. name: "Normal",
  50425. height: math.unit(4, "meters"),
  50426. default: true
  50427. },
  50428. ]
  50429. ))
  50430. characterMakers.push(() => makeCharacter(
  50431. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50432. {
  50433. back: {
  50434. height: math.unit(4, "feet"),
  50435. weight: math.unit(37, "lb"),
  50436. name: "Back",
  50437. image: {
  50438. source: "./media/characters/tin/back.svg",
  50439. extra: 845/780,
  50440. bottom: 28/873
  50441. }
  50442. },
  50443. },
  50444. [
  50445. {
  50446. name: "Normal",
  50447. height: math.unit(4, "feet"),
  50448. default: true
  50449. },
  50450. ]
  50451. ))
  50452. //characters
  50453. function makeCharacters() {
  50454. const results = [];
  50455. characterMakers.forEach(character => {
  50456. results.push(character());
  50457. });
  50458. return results;
  50459. }