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

53378 строки
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. }
  2043. //species
  2044. function getSpeciesInfo(speciesList) {
  2045. let result = new Set();
  2046. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2047. result.add(entry)
  2048. });
  2049. return Array.from(result);
  2050. };
  2051. function getSpeciesInfoHelper(species) {
  2052. if (!speciesData[species]) {
  2053. console.warn(species + " doesn't exist");
  2054. return [];
  2055. }
  2056. if (speciesData[species].parents) {
  2057. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2058. } else {
  2059. return [species];
  2060. }
  2061. }
  2062. characterMakers.push(() => makeCharacter(
  2063. {
  2064. name: "Fen",
  2065. species: ["crux"],
  2066. description: {
  2067. title: "Bio",
  2068. text: "Very furry. Sheds on everything."
  2069. },
  2070. tags: [
  2071. "anthro",
  2072. "goo"
  2073. ]
  2074. },
  2075. {
  2076. front: {
  2077. height: math.unit(12, "feet"),
  2078. weight: math.unit(2400, "lb"),
  2079. name: "Front",
  2080. image: {
  2081. source: "./media/characters/fen/front.svg",
  2082. extra: 1804/1562,
  2083. bottom: 205/2009
  2084. },
  2085. extraAttributes: {
  2086. pawSize: {
  2087. name: "Paw Size",
  2088. power: 2,
  2089. type: "area",
  2090. base: math.unit(0.35, "m^2")
  2091. }
  2092. }
  2093. },
  2094. diving: {
  2095. height: math.unit(4.9, "meters"),
  2096. weight: math.unit(2400, "lb"),
  2097. name: "Diving",
  2098. image: {
  2099. source: "./media/characters/fen/diving.svg"
  2100. }
  2101. },
  2102. goo: {
  2103. height: math.unit(12, "feet"),
  2104. weight: math.unit(3600, "lb"),
  2105. volume: math.unit(1000, "liters"),
  2106. preyCapacity: math.unit(6, "people"),
  2107. name: "Goo",
  2108. image: {
  2109. source: "./media/characters/fen/goo.svg",
  2110. extra: 1307/1071,
  2111. bottom: 134/1441
  2112. }
  2113. },
  2114. maw: {
  2115. height: math.unit(5.03, "feet"),
  2116. name: "Maw",
  2117. image: {
  2118. source: "./media/characters/fen/maw.svg"
  2119. }
  2120. },
  2121. gooCeiling: {
  2122. height: math.unit(6.6, "feet"),
  2123. weight: math.unit(3000, "lb"),
  2124. volume: math.unit(1000, "liters"),
  2125. preyCapacity: math.unit(6, "people"),
  2126. name: "Goo (Ceiling)",
  2127. image: {
  2128. source: "./media/characters/fen/goo-ceiling.svg"
  2129. }
  2130. },
  2131. paw: {
  2132. height: math.unit(3.77, "feet"),
  2133. name: "Paw",
  2134. image: {
  2135. source: "./media/characters/fen/paw.svg"
  2136. },
  2137. extraAttributes: {
  2138. "toeSize": {
  2139. name: "Toe Size",
  2140. power: 2,
  2141. type: "area",
  2142. base: math.unit(0.02875, "m^2")
  2143. },
  2144. "pawSize": {
  2145. name: "Paw Size",
  2146. power: 2,
  2147. type: "area",
  2148. base: math.unit(0.378, "m^2")
  2149. },
  2150. }
  2151. },
  2152. tail: {
  2153. height: math.unit(12.1, "feet"),
  2154. name: "Tail",
  2155. image: {
  2156. source: "./media/characters/fen/tail.svg"
  2157. }
  2158. },
  2159. tailFull: {
  2160. height: math.unit(12.1, "feet"),
  2161. name: "Full Tail",
  2162. image: {
  2163. source: "./media/characters/fen/tail-full.svg"
  2164. }
  2165. },
  2166. back: {
  2167. height: math.unit(12, "feet"),
  2168. weight: math.unit(2400, "lb"),
  2169. name: "Back",
  2170. image: {
  2171. source: "./media/characters/fen/back.svg",
  2172. },
  2173. info: {
  2174. description: {
  2175. mode: "append",
  2176. text: "\n\nHe is not currently looking at you."
  2177. }
  2178. }
  2179. },
  2180. full: {
  2181. height: math.unit(1.85, "meter"),
  2182. weight: math.unit(3200, "lb"),
  2183. name: "Full",
  2184. image: {
  2185. source: "./media/characters/fen/full.svg",
  2186. extra: 1133/859,
  2187. bottom: 145/1278
  2188. },
  2189. info: {
  2190. description: {
  2191. mode: "append",
  2192. text: "\n\nMunch."
  2193. }
  2194. }
  2195. },
  2196. gooLounging: {
  2197. height: math.unit(4.53, "feet"),
  2198. weight: math.unit(3000, "lb"),
  2199. preyCapacity: math.unit(6, "people"),
  2200. name: "Goo (Lounging)",
  2201. image: {
  2202. source: "./media/characters/fen/goo-lounging.svg",
  2203. bottom: 116 / 613
  2204. }
  2205. },
  2206. lounging: {
  2207. height: math.unit(10.52, "feet"),
  2208. weight: math.unit(2400, "lb"),
  2209. name: "Lounging",
  2210. image: {
  2211. source: "./media/characters/fen/lounging.svg"
  2212. }
  2213. },
  2214. },
  2215. [
  2216. {
  2217. name: "Small",
  2218. height: math.unit(2.2428, "meter")
  2219. },
  2220. {
  2221. name: "Normal",
  2222. height: math.unit(12, "feet"),
  2223. default: true,
  2224. },
  2225. {
  2226. name: "Big",
  2227. height: math.unit(20, "feet")
  2228. },
  2229. {
  2230. name: "Minimacro",
  2231. height: math.unit(40, "feet"),
  2232. info: {
  2233. description: {
  2234. mode: "append",
  2235. text: "\n\nTOO DAMN BIG"
  2236. }
  2237. }
  2238. },
  2239. {
  2240. name: "Macro",
  2241. height: math.unit(100, "feet"),
  2242. info: {
  2243. description: {
  2244. mode: "append",
  2245. text: "\n\nTOO DAMN BIG"
  2246. }
  2247. }
  2248. },
  2249. {
  2250. name: "Megamacro",
  2251. height: math.unit(2, "miles")
  2252. },
  2253. {
  2254. name: "Gigamacro",
  2255. height: math.unit(10, "earths")
  2256. },
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2261. {
  2262. front: {
  2263. height: math.unit(183, "cm"),
  2264. weight: math.unit(80, "kg"),
  2265. name: "Front",
  2266. image: {
  2267. source: "./media/characters/sofia-fluttertail/front.svg",
  2268. bottom: 0.01,
  2269. extra: 2154 / 2081
  2270. }
  2271. },
  2272. frontAlt: {
  2273. height: math.unit(183, "cm"),
  2274. weight: math.unit(80, "kg"),
  2275. name: "Front (alt)",
  2276. image: {
  2277. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2278. }
  2279. },
  2280. back: {
  2281. height: math.unit(183, "cm"),
  2282. weight: math.unit(80, "kg"),
  2283. name: "Back",
  2284. image: {
  2285. source: "./media/characters/sofia-fluttertail/back.svg"
  2286. }
  2287. },
  2288. kneeling: {
  2289. height: math.unit(125, "cm"),
  2290. weight: math.unit(80, "kg"),
  2291. name: "Kneeling",
  2292. image: {
  2293. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2294. extra: 1033 / 977,
  2295. bottom: 23.7 / 1057
  2296. }
  2297. },
  2298. maw: {
  2299. height: math.unit(183 / 5, "cm"),
  2300. name: "Maw",
  2301. image: {
  2302. source: "./media/characters/sofia-fluttertail/maw.svg"
  2303. }
  2304. },
  2305. mawcloseup: {
  2306. height: math.unit(183 / 5 * 0.41, "cm"),
  2307. name: "Maw (Closeup)",
  2308. image: {
  2309. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2310. }
  2311. },
  2312. paws: {
  2313. height: math.unit(1.17, "feet"),
  2314. name: "Paws",
  2315. image: {
  2316. source: "./media/characters/sofia-fluttertail/paws.svg",
  2317. extra: 851 / 851,
  2318. bottom: 17 / 868
  2319. }
  2320. },
  2321. },
  2322. [
  2323. {
  2324. name: "Normal",
  2325. height: math.unit(1.83, "meter")
  2326. },
  2327. {
  2328. name: "Size Thief",
  2329. height: math.unit(18, "feet")
  2330. },
  2331. {
  2332. name: "50 Foot Collie",
  2333. height: math.unit(50, "feet")
  2334. },
  2335. {
  2336. name: "Macro",
  2337. height: math.unit(96, "feet"),
  2338. default: true
  2339. },
  2340. {
  2341. name: "Megamerger",
  2342. height: math.unit(650, "feet")
  2343. },
  2344. ]
  2345. ))
  2346. characterMakers.push(() => makeCharacter(
  2347. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2348. {
  2349. front: {
  2350. height: math.unit(7, "feet"),
  2351. weight: math.unit(100, "kg"),
  2352. name: "Front",
  2353. image: {
  2354. source: "./media/characters/march/front.svg",
  2355. extra: 1992/1851,
  2356. bottom: 39/2031
  2357. }
  2358. },
  2359. foot: {
  2360. height: math.unit(0.9, "feet"),
  2361. name: "Foot",
  2362. image: {
  2363. source: "./media/characters/march/foot.svg"
  2364. }
  2365. },
  2366. },
  2367. [
  2368. {
  2369. name: "Normal",
  2370. height: math.unit(7.9, "feet")
  2371. },
  2372. {
  2373. name: "Macro",
  2374. height: math.unit(220, "meters")
  2375. },
  2376. {
  2377. name: "Megamacro",
  2378. height: math.unit(2.98, "km"),
  2379. default: true
  2380. },
  2381. {
  2382. name: "Gigamacro",
  2383. height: math.unit(15963, "km")
  2384. },
  2385. {
  2386. name: "Teramacro",
  2387. height: math.unit(2980000000, "km")
  2388. },
  2389. {
  2390. name: "Examacro",
  2391. height: math.unit(250, "parsecs")
  2392. },
  2393. ]
  2394. ))
  2395. characterMakers.push(() => makeCharacter(
  2396. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2397. {
  2398. front: {
  2399. height: math.unit(6, "feet"),
  2400. weight: math.unit(60, "kg"),
  2401. name: "Front",
  2402. image: {
  2403. source: "./media/characters/noir/front.svg",
  2404. extra: 1,
  2405. bottom: 0.032
  2406. }
  2407. },
  2408. },
  2409. [
  2410. {
  2411. name: "Normal",
  2412. height: math.unit(6.6, "feet")
  2413. },
  2414. {
  2415. name: "Macro",
  2416. height: math.unit(500, "feet")
  2417. },
  2418. {
  2419. name: "Megamacro",
  2420. height: math.unit(2.5, "km"),
  2421. default: true
  2422. },
  2423. {
  2424. name: "Gigamacro",
  2425. height: math.unit(22500, "km")
  2426. },
  2427. {
  2428. name: "Teramacro",
  2429. height: math.unit(2500000000, "km")
  2430. },
  2431. {
  2432. name: "Examacro",
  2433. height: math.unit(200, "parsecs")
  2434. },
  2435. ]
  2436. ))
  2437. characterMakers.push(() => makeCharacter(
  2438. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2439. {
  2440. front: {
  2441. height: math.unit(7, "feet"),
  2442. weight: math.unit(100, "kg"),
  2443. name: "Front",
  2444. image: {
  2445. source: "./media/characters/okuri/front.svg",
  2446. extra: 739/665,
  2447. bottom: 39/778
  2448. }
  2449. },
  2450. back: {
  2451. height: math.unit(7, "feet"),
  2452. weight: math.unit(100, "kg"),
  2453. name: "Back",
  2454. image: {
  2455. source: "./media/characters/okuri/back.svg",
  2456. extra: 734/653,
  2457. bottom: 13/747
  2458. }
  2459. },
  2460. sitting: {
  2461. height: math.unit(2.95, "feet"),
  2462. weight: math.unit(100, "kg"),
  2463. name: "Sitting",
  2464. image: {
  2465. source: "./media/characters/okuri/sitting.svg",
  2466. extra: 370/318,
  2467. bottom: 99/469
  2468. }
  2469. },
  2470. },
  2471. [
  2472. {
  2473. name: "Smallest",
  2474. height: math.unit(5 + 2/12, "feet")
  2475. },
  2476. {
  2477. name: "Smaller",
  2478. height: math.unit(300, "feet")
  2479. },
  2480. {
  2481. name: "Small",
  2482. height: math.unit(1000, "feet")
  2483. },
  2484. {
  2485. name: "Macro",
  2486. height: math.unit(1, "mile")
  2487. },
  2488. {
  2489. name: "Mega Macro (Small)",
  2490. height: math.unit(20, "km")
  2491. },
  2492. {
  2493. name: "Mega Macro (Large)",
  2494. height: math.unit(600, "km")
  2495. },
  2496. {
  2497. name: "Giga Macro",
  2498. height: math.unit(10000, "km")
  2499. },
  2500. {
  2501. name: "Normal",
  2502. height: math.unit(577560, "km"),
  2503. default: true
  2504. },
  2505. {
  2506. name: "Large",
  2507. height: math.unit(4, "galaxies")
  2508. },
  2509. {
  2510. name: "Largest",
  2511. height: math.unit(15, "multiverses")
  2512. },
  2513. ]
  2514. ))
  2515. characterMakers.push(() => makeCharacter(
  2516. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2517. {
  2518. front: {
  2519. height: math.unit(7, "feet"),
  2520. weight: math.unit(100, "kg"),
  2521. name: "Front",
  2522. image: {
  2523. source: "./media/characters/manny/front.svg",
  2524. extra: 1,
  2525. bottom: 0.06
  2526. }
  2527. },
  2528. back: {
  2529. height: math.unit(7, "feet"),
  2530. weight: math.unit(100, "kg"),
  2531. name: "Back",
  2532. image: {
  2533. source: "./media/characters/manny/back.svg",
  2534. extra: 1,
  2535. bottom: 0.014
  2536. }
  2537. },
  2538. },
  2539. [
  2540. {
  2541. name: "Normal",
  2542. height: math.unit(7, "feet"),
  2543. },
  2544. {
  2545. name: "Macro",
  2546. height: math.unit(78, "feet"),
  2547. default: true
  2548. },
  2549. {
  2550. name: "Macro+",
  2551. height: math.unit(300, "meters")
  2552. },
  2553. {
  2554. name: "Macro++",
  2555. height: math.unit(2400, "meters")
  2556. },
  2557. {
  2558. name: "Megamacro",
  2559. height: math.unit(5167, "meters")
  2560. },
  2561. {
  2562. name: "Gigamacro",
  2563. height: math.unit(41769, "miles")
  2564. },
  2565. ]
  2566. ))
  2567. characterMakers.push(() => makeCharacter(
  2568. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2569. {
  2570. front: {
  2571. height: math.unit(7, "feet"),
  2572. weight: math.unit(100, "kg"),
  2573. name: "Front",
  2574. image: {
  2575. source: "./media/characters/adake/front-1.svg"
  2576. }
  2577. },
  2578. frontAlt: {
  2579. height: math.unit(7, "feet"),
  2580. weight: math.unit(100, "kg"),
  2581. name: "Front (Alt)",
  2582. image: {
  2583. source: "./media/characters/adake/front-2.svg",
  2584. extra: 1,
  2585. bottom: 0.01
  2586. }
  2587. },
  2588. back: {
  2589. height: math.unit(7, "feet"),
  2590. weight: math.unit(100, "kg"),
  2591. name: "Back",
  2592. image: {
  2593. source: "./media/characters/adake/back.svg",
  2594. }
  2595. },
  2596. kneel: {
  2597. height: math.unit(5.385, "feet"),
  2598. weight: math.unit(100, "kg"),
  2599. name: "Kneeling",
  2600. image: {
  2601. source: "./media/characters/adake/kneel.svg",
  2602. bottom: 0.052
  2603. }
  2604. },
  2605. },
  2606. [
  2607. {
  2608. name: "Normal",
  2609. height: math.unit(7, "feet"),
  2610. },
  2611. {
  2612. name: "Macro",
  2613. height: math.unit(78, "feet"),
  2614. default: true
  2615. },
  2616. {
  2617. name: "Macro+",
  2618. height: math.unit(300, "meters")
  2619. },
  2620. {
  2621. name: "Macro++",
  2622. height: math.unit(2400, "meters")
  2623. },
  2624. {
  2625. name: "Megamacro",
  2626. height: math.unit(5167, "meters")
  2627. },
  2628. {
  2629. name: "Gigamacro",
  2630. height: math.unit(41769, "miles")
  2631. },
  2632. ]
  2633. ))
  2634. characterMakers.push(() => makeCharacter(
  2635. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2636. {
  2637. front: {
  2638. height: math.unit(1.65, "meters"),
  2639. weight: math.unit(50, "kg"),
  2640. name: "Front",
  2641. image: {
  2642. source: "./media/characters/elijah/front.svg",
  2643. extra: 858 / 830,
  2644. bottom: 95.5 / 953.8559
  2645. }
  2646. },
  2647. back: {
  2648. height: math.unit(1.65, "meters"),
  2649. weight: math.unit(50, "kg"),
  2650. name: "Back",
  2651. image: {
  2652. source: "./media/characters/elijah/back.svg",
  2653. extra: 895 / 850,
  2654. bottom: 5.3 / 897.956
  2655. }
  2656. },
  2657. frontNsfw: {
  2658. height: math.unit(1.65, "meters"),
  2659. weight: math.unit(50, "kg"),
  2660. name: "Front (NSFW)",
  2661. image: {
  2662. source: "./media/characters/elijah/front-nsfw.svg",
  2663. extra: 858 / 830,
  2664. bottom: 95.5 / 953.8559
  2665. }
  2666. },
  2667. backNsfw: {
  2668. height: math.unit(1.65, "meters"),
  2669. weight: math.unit(50, "kg"),
  2670. name: "Back (NSFW)",
  2671. image: {
  2672. source: "./media/characters/elijah/back-nsfw.svg",
  2673. extra: 895 / 850,
  2674. bottom: 5.3 / 897.956
  2675. }
  2676. },
  2677. dick: {
  2678. height: math.unit(1, "feet"),
  2679. name: "Dick",
  2680. image: {
  2681. source: "./media/characters/elijah/dick.svg"
  2682. }
  2683. },
  2684. beakOpen: {
  2685. height: math.unit(1.25, "feet"),
  2686. name: "Beak (Open)",
  2687. image: {
  2688. source: "./media/characters/elijah/beak-open.svg"
  2689. }
  2690. },
  2691. beakShut: {
  2692. height: math.unit(1.25, "feet"),
  2693. name: "Beak (Shut)",
  2694. image: {
  2695. source: "./media/characters/elijah/beak-shut.svg"
  2696. }
  2697. },
  2698. footFlexing: {
  2699. height: math.unit(1.61, "feet"),
  2700. name: "Foot (Flexing)",
  2701. image: {
  2702. source: "./media/characters/elijah/foot-flexing.svg"
  2703. }
  2704. },
  2705. footStepping: {
  2706. height: math.unit(1.44, "feet"),
  2707. name: "Foot (Stepping)",
  2708. image: {
  2709. source: "./media/characters/elijah/foot-stepping.svg"
  2710. }
  2711. },
  2712. plantigradeLeg: {
  2713. height: math.unit(2.34, "feet"),
  2714. name: "Plantigrade Leg",
  2715. image: {
  2716. source: "./media/characters/elijah/plantigrade-leg.svg"
  2717. }
  2718. },
  2719. plantigradeFootLeft: {
  2720. height: math.unit(0.9, "feet"),
  2721. name: "Plantigrade Foot (Left)",
  2722. image: {
  2723. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2724. }
  2725. },
  2726. plantigradeFootRight: {
  2727. height: math.unit(0.9, "feet"),
  2728. name: "Plantigrade Foot (Right)",
  2729. image: {
  2730. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2731. }
  2732. },
  2733. },
  2734. [
  2735. {
  2736. name: "Normal",
  2737. height: math.unit(1.65, "meters")
  2738. },
  2739. {
  2740. name: "Macro",
  2741. height: math.unit(55, "meters"),
  2742. default: true
  2743. },
  2744. {
  2745. name: "Macro+",
  2746. height: math.unit(105, "meters")
  2747. },
  2748. ]
  2749. ))
  2750. characterMakers.push(() => makeCharacter(
  2751. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2752. {
  2753. front: {
  2754. height: math.unit(7 + 2/12, "feet"),
  2755. weight: math.unit(320, "kg"),
  2756. name: "Front",
  2757. image: {
  2758. source: "./media/characters/rai/front.svg",
  2759. extra: 1802/1696,
  2760. bottom: 68/1870
  2761. }
  2762. },
  2763. frontDressed: {
  2764. height: math.unit(7 + 2/12, "feet"),
  2765. weight: math.unit(320, "kg"),
  2766. name: "Front (Dressed)",
  2767. image: {
  2768. source: "./media/characters/rai/front-dressed.svg",
  2769. extra: 1802/1696,
  2770. bottom: 68/1870
  2771. }
  2772. },
  2773. side: {
  2774. height: math.unit(7 + 2/12, "feet"),
  2775. weight: math.unit(320, "kg"),
  2776. name: "Side",
  2777. image: {
  2778. source: "./media/characters/rai/side.svg",
  2779. extra: 1789/1710,
  2780. bottom: 115/1904
  2781. }
  2782. },
  2783. back: {
  2784. height: math.unit(7 + 2/12, "feet"),
  2785. weight: math.unit(320, "kg"),
  2786. name: "Back",
  2787. image: {
  2788. source: "./media/characters/rai/back.svg",
  2789. extra: 1770/1707,
  2790. bottom: 28/1798
  2791. }
  2792. },
  2793. feral: {
  2794. height: math.unit(9.5, "feet"),
  2795. weight: math.unit(640, "kg"),
  2796. name: "Feral",
  2797. image: {
  2798. source: "./media/characters/rai/feral.svg",
  2799. extra: 945/553,
  2800. bottom: 176/1121
  2801. }
  2802. },
  2803. dragon: {
  2804. height: math.unit(23, "feet"),
  2805. weight: math.unit(50000, "lb"),
  2806. name: "Dragon",
  2807. image: {
  2808. source: "./media/characters/rai/dragon.svg",
  2809. extra: 2498 / 2030,
  2810. bottom: 85.2 / 2584
  2811. }
  2812. },
  2813. maw: {
  2814. height: math.unit(1.69, "feet"),
  2815. name: "Maw",
  2816. image: {
  2817. source: "./media/characters/rai/maw.svg"
  2818. }
  2819. },
  2820. },
  2821. [
  2822. {
  2823. name: "Normal",
  2824. height: math.unit(7 + 2/12, "feet")
  2825. },
  2826. {
  2827. name: "Big",
  2828. height: math.unit(11, "feet")
  2829. },
  2830. {
  2831. name: "Macro",
  2832. height: math.unit(302, "feet"),
  2833. default: true
  2834. },
  2835. ]
  2836. ))
  2837. characterMakers.push(() => makeCharacter(
  2838. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2839. {
  2840. frontDressed: {
  2841. height: math.unit(216, "feet"),
  2842. weight: math.unit(7000000, "lb"),
  2843. name: "Front (Dressed)",
  2844. image: {
  2845. source: "./media/characters/jazzy/front-dressed.svg",
  2846. extra: 2738 / 2651,
  2847. bottom: 41.8 / 2786
  2848. }
  2849. },
  2850. backDressed: {
  2851. height: math.unit(216, "feet"),
  2852. weight: math.unit(7000000, "lb"),
  2853. name: "Back (Dressed)",
  2854. image: {
  2855. source: "./media/characters/jazzy/back-dressed.svg",
  2856. extra: 2775 / 2673,
  2857. bottom: 36.8 / 2817
  2858. }
  2859. },
  2860. front: {
  2861. height: math.unit(216, "feet"),
  2862. weight: math.unit(7000000, "lb"),
  2863. name: "Front",
  2864. image: {
  2865. source: "./media/characters/jazzy/front.svg",
  2866. extra: 2738 / 2651,
  2867. bottom: 41.8 / 2786
  2868. }
  2869. },
  2870. back: {
  2871. height: math.unit(216, "feet"),
  2872. weight: math.unit(7000000, "lb"),
  2873. name: "Back",
  2874. image: {
  2875. source: "./media/characters/jazzy/back.svg",
  2876. extra: 2775 / 2673,
  2877. bottom: 36.8 / 2817
  2878. }
  2879. },
  2880. maw: {
  2881. height: math.unit(20, "feet"),
  2882. name: "Maw",
  2883. image: {
  2884. source: "./media/characters/jazzy/maw.svg"
  2885. }
  2886. },
  2887. paws: {
  2888. height: math.unit(27.5, "feet"),
  2889. name: "Paws",
  2890. image: {
  2891. source: "./media/characters/jazzy/paws.svg"
  2892. }
  2893. },
  2894. eye: {
  2895. height: math.unit(4.4, "feet"),
  2896. name: "Eye",
  2897. image: {
  2898. source: "./media/characters/jazzy/eye.svg"
  2899. }
  2900. },
  2901. droneOffense: {
  2902. height: math.unit(9.5, "inches"),
  2903. name: "Drone (Offense)",
  2904. image: {
  2905. source: "./media/characters/jazzy/drone-offense.svg"
  2906. }
  2907. },
  2908. droneRecon: {
  2909. height: math.unit(9.5, "inches"),
  2910. name: "Drone (Recon)",
  2911. image: {
  2912. source: "./media/characters/jazzy/drone-recon.svg"
  2913. }
  2914. },
  2915. droneDefense: {
  2916. height: math.unit(9.5, "inches"),
  2917. name: "Drone (Defense)",
  2918. image: {
  2919. source: "./media/characters/jazzy/drone-defense.svg"
  2920. }
  2921. },
  2922. },
  2923. [
  2924. {
  2925. name: "Macro",
  2926. height: math.unit(216, "feet"),
  2927. default: true
  2928. },
  2929. ]
  2930. ))
  2931. characterMakers.push(() => makeCharacter(
  2932. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2933. {
  2934. front: {
  2935. height: math.unit(9 + 6/12, "feet"),
  2936. weight: math.unit(700, "lb"),
  2937. name: "Front",
  2938. image: {
  2939. source: "./media/characters/flamm/front.svg",
  2940. extra: 1751/1632,
  2941. bottom: 46/1797
  2942. }
  2943. },
  2944. buff: {
  2945. height: math.unit(9 + 6/12, "feet"),
  2946. weight: math.unit(950, "lb"),
  2947. name: "Buff",
  2948. image: {
  2949. source: "./media/characters/flamm/buff.svg",
  2950. extra: 3018/2874,
  2951. bottom: 221/3239
  2952. }
  2953. },
  2954. },
  2955. [
  2956. {
  2957. name: "Normal",
  2958. height: math.unit(9.5, "feet")
  2959. },
  2960. {
  2961. name: "Macro",
  2962. height: math.unit(200, "feet"),
  2963. default: true
  2964. },
  2965. ]
  2966. ))
  2967. characterMakers.push(() => makeCharacter(
  2968. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2969. {
  2970. front: {
  2971. height: math.unit(5 + 3/12, "feet"),
  2972. weight: math.unit(60, "kg"),
  2973. name: "Front",
  2974. image: {
  2975. source: "./media/characters/zephiro/front.svg",
  2976. extra: 2309 / 2162,
  2977. bottom: 0.069
  2978. }
  2979. },
  2980. side: {
  2981. height: math.unit(5 + 3/12, "feet"),
  2982. weight: math.unit(60, "kg"),
  2983. name: "Side",
  2984. image: {
  2985. source: "./media/characters/zephiro/side.svg",
  2986. extra: 2403 / 2279,
  2987. bottom: 0.015
  2988. }
  2989. },
  2990. back: {
  2991. height: math.unit(5 + 3/12, "feet"),
  2992. weight: math.unit(60, "kg"),
  2993. name: "Back",
  2994. image: {
  2995. source: "./media/characters/zephiro/back.svg",
  2996. extra: 2373 / 2244,
  2997. bottom: 0.013
  2998. }
  2999. },
  3000. hand: {
  3001. height: math.unit(0.68, "feet"),
  3002. name: "Hand",
  3003. image: {
  3004. source: "./media/characters/zephiro/hand.svg"
  3005. }
  3006. },
  3007. paw: {
  3008. height: math.unit(1, "feet"),
  3009. name: "Paw",
  3010. image: {
  3011. source: "./media/characters/zephiro/paw.svg"
  3012. }
  3013. },
  3014. beans: {
  3015. height: math.unit(0.93, "feet"),
  3016. name: "Beans",
  3017. image: {
  3018. source: "./media/characters/zephiro/beans.svg"
  3019. }
  3020. },
  3021. },
  3022. [
  3023. {
  3024. name: "Micro",
  3025. height: math.unit(3, "inches")
  3026. },
  3027. {
  3028. name: "Normal",
  3029. height: math.unit(5 + 3 / 12, "feet"),
  3030. default: true
  3031. },
  3032. {
  3033. name: "Macro",
  3034. height: math.unit(118, "feet")
  3035. },
  3036. ]
  3037. ))
  3038. characterMakers.push(() => makeCharacter(
  3039. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3040. {
  3041. front: {
  3042. height: math.unit(5, "feet"),
  3043. weight: math.unit(90, "kg"),
  3044. name: "Front",
  3045. image: {
  3046. source: "./media/characters/fory/front.svg",
  3047. extra: 2862 / 2674,
  3048. bottom: 180 / 3043.8
  3049. }
  3050. },
  3051. back: {
  3052. height: math.unit(5, "feet"),
  3053. weight: math.unit(90, "kg"),
  3054. name: "Back",
  3055. image: {
  3056. source: "./media/characters/fory/back.svg",
  3057. extra: 2962 / 2791,
  3058. bottom: 106 / 3071.8
  3059. }
  3060. },
  3061. foot: {
  3062. height: math.unit(2.14, "feet"),
  3063. name: "Foot",
  3064. image: {
  3065. source: "./media/characters/fory/foot.svg"
  3066. }
  3067. },
  3068. },
  3069. [
  3070. {
  3071. name: "Normal",
  3072. height: math.unit(5, "feet")
  3073. },
  3074. {
  3075. name: "Macro",
  3076. height: math.unit(50, "feet"),
  3077. default: true
  3078. },
  3079. {
  3080. name: "Megamacro",
  3081. height: math.unit(10, "miles")
  3082. },
  3083. {
  3084. name: "Gigamacro",
  3085. height: math.unit(5, "earths")
  3086. },
  3087. ]
  3088. ))
  3089. characterMakers.push(() => makeCharacter(
  3090. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3091. {
  3092. front: {
  3093. height: math.unit(7, "feet"),
  3094. weight: math.unit(90, "kg"),
  3095. name: "Front",
  3096. image: {
  3097. source: "./media/characters/kurrikage/front.svg",
  3098. extra: 1845/1733,
  3099. bottom: 119/1964
  3100. }
  3101. },
  3102. back: {
  3103. height: math.unit(7, "feet"),
  3104. weight: math.unit(90, "kg"),
  3105. name: "Back",
  3106. image: {
  3107. source: "./media/characters/kurrikage/back.svg",
  3108. extra: 1790/1677,
  3109. bottom: 61/1851
  3110. }
  3111. },
  3112. dressed: {
  3113. height: math.unit(7, "feet"),
  3114. weight: math.unit(90, "kg"),
  3115. name: "Dressed",
  3116. image: {
  3117. source: "./media/characters/kurrikage/dressed.svg",
  3118. extra: 1845/1733,
  3119. bottom: 119/1964
  3120. }
  3121. },
  3122. foot: {
  3123. height: math.unit(1.5, "feet"),
  3124. name: "Foot",
  3125. image: {
  3126. source: "./media/characters/kurrikage/foot.svg"
  3127. }
  3128. },
  3129. staff: {
  3130. height: math.unit(6.7, "feet"),
  3131. name: "Staff",
  3132. image: {
  3133. source: "./media/characters/kurrikage/staff.svg"
  3134. }
  3135. },
  3136. peek: {
  3137. height: math.unit(1.05, "feet"),
  3138. name: "Peeking",
  3139. image: {
  3140. source: "./media/characters/kurrikage/peek.svg",
  3141. bottom: 0.08
  3142. }
  3143. },
  3144. },
  3145. [
  3146. {
  3147. name: "Normal",
  3148. height: math.unit(12, "feet"),
  3149. default: true
  3150. },
  3151. {
  3152. name: "Big",
  3153. height: math.unit(20, "feet")
  3154. },
  3155. {
  3156. name: "Macro",
  3157. height: math.unit(500, "feet")
  3158. },
  3159. {
  3160. name: "Megamacro",
  3161. height: math.unit(20, "miles")
  3162. },
  3163. ]
  3164. ))
  3165. characterMakers.push(() => makeCharacter(
  3166. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3167. {
  3168. front: {
  3169. height: math.unit(6, "feet"),
  3170. weight: math.unit(75, "kg"),
  3171. name: "Front",
  3172. image: {
  3173. source: "./media/characters/shingo/front.svg",
  3174. extra: 1900/1825,
  3175. bottom: 82/1982
  3176. }
  3177. },
  3178. side: {
  3179. height: math.unit(6, "feet"),
  3180. weight: math.unit(75, "kg"),
  3181. name: "Side",
  3182. image: {
  3183. source: "./media/characters/shingo/side.svg",
  3184. extra: 1930/1865,
  3185. bottom: 16/1946
  3186. }
  3187. },
  3188. back: {
  3189. height: math.unit(6, "feet"),
  3190. weight: math.unit(75, "kg"),
  3191. name: "Back",
  3192. image: {
  3193. source: "./media/characters/shingo/back.svg",
  3194. extra: 1922/1852,
  3195. bottom: 16/1938
  3196. }
  3197. },
  3198. frontDressed: {
  3199. height: math.unit(6, "feet"),
  3200. weight: math.unit(150, "lb"),
  3201. name: "Front-dressed",
  3202. image: {
  3203. source: "./media/characters/shingo/front-dressed.svg",
  3204. extra: 1900/1825,
  3205. bottom: 82/1982
  3206. }
  3207. },
  3208. paw: {
  3209. height: math.unit(1.29, "feet"),
  3210. name: "Paw",
  3211. image: {
  3212. source: "./media/characters/shingo/paw.svg"
  3213. }
  3214. },
  3215. hand: {
  3216. height: math.unit(1.07, "feet"),
  3217. name: "Hand",
  3218. image: {
  3219. source: "./media/characters/shingo/hand.svg"
  3220. }
  3221. },
  3222. frontAlt: {
  3223. height: math.unit(6, "feet"),
  3224. weight: math.unit(75, "kg"),
  3225. name: "Front (Alt)",
  3226. image: {
  3227. source: "./media/characters/shingo/front-alt.svg",
  3228. extra: 3511 / 3338,
  3229. bottom: 0.005
  3230. }
  3231. },
  3232. frontAlt2: {
  3233. height: math.unit(6, "feet"),
  3234. weight: math.unit(75, "kg"),
  3235. name: "Front (Alt 2)",
  3236. image: {
  3237. source: "./media/characters/shingo/front-alt-2.svg",
  3238. extra: 706/681,
  3239. bottom: 11/717
  3240. }
  3241. },
  3242. pawAlt: {
  3243. height: math.unit(1, "feet"),
  3244. name: "Paw (Alt)",
  3245. image: {
  3246. source: "./media/characters/shingo/paw-alt.svg"
  3247. }
  3248. },
  3249. },
  3250. [
  3251. {
  3252. name: "Micro",
  3253. height: math.unit(4, "inches")
  3254. },
  3255. {
  3256. name: "Normal",
  3257. height: math.unit(6, "feet"),
  3258. default: true
  3259. },
  3260. {
  3261. name: "Macro",
  3262. height: math.unit(108, "feet")
  3263. },
  3264. {
  3265. name: "Macro+",
  3266. height: math.unit(1500, "feet")
  3267. },
  3268. ]
  3269. ))
  3270. characterMakers.push(() => makeCharacter(
  3271. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3272. {
  3273. side: {
  3274. height: math.unit(6, "feet"),
  3275. weight: math.unit(75, "kg"),
  3276. name: "Side",
  3277. image: {
  3278. source: "./media/characters/aigey/side.svg"
  3279. }
  3280. },
  3281. },
  3282. [
  3283. {
  3284. name: "Macro",
  3285. height: math.unit(200, "feet"),
  3286. default: true
  3287. },
  3288. {
  3289. name: "Megamacro",
  3290. height: math.unit(100, "miles")
  3291. },
  3292. ]
  3293. )
  3294. )
  3295. characterMakers.push(() => makeCharacter(
  3296. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3297. {
  3298. front: {
  3299. height: math.unit(5 + 5 / 12, "feet"),
  3300. weight: math.unit(75, "kg"),
  3301. name: "Front",
  3302. image: {
  3303. source: "./media/characters/natasha/front.svg",
  3304. extra: 859 / 824,
  3305. bottom: 23 / 879.6
  3306. }
  3307. },
  3308. frontNsfw: {
  3309. height: math.unit(5 + 5 / 12, "feet"),
  3310. weight: math.unit(75, "kg"),
  3311. name: "Front (NSFW)",
  3312. image: {
  3313. source: "./media/characters/natasha/front-nsfw.svg",
  3314. extra: 859 / 824,
  3315. bottom: 23 / 879.6
  3316. }
  3317. },
  3318. frontErect: {
  3319. height: math.unit(5 + 5 / 12, "feet"),
  3320. weight: math.unit(75, "kg"),
  3321. name: "Front (Erect)",
  3322. image: {
  3323. source: "./media/characters/natasha/front-erect.svg",
  3324. extra: 859 / 824,
  3325. bottom: 23 / 879.6
  3326. }
  3327. },
  3328. back: {
  3329. height: math.unit(5 + 5 / 12, "feet"),
  3330. weight: math.unit(75, "kg"),
  3331. name: "Back",
  3332. image: {
  3333. source: "./media/characters/natasha/back.svg",
  3334. extra: 887.9 / 852.6,
  3335. bottom: 9.7 / 896.4
  3336. }
  3337. },
  3338. backAlt: {
  3339. height: math.unit(5 + 5 / 12, "feet"),
  3340. weight: math.unit(75, "kg"),
  3341. name: "Back (Alt)",
  3342. image: {
  3343. source: "./media/characters/natasha/back-alt.svg",
  3344. extra: 1236.7 / 1192,
  3345. bottom: 22.3 / 1258.2
  3346. }
  3347. },
  3348. dick: {
  3349. height: math.unit(1.772, "feet"),
  3350. name: "Dick",
  3351. image: {
  3352. source: "./media/characters/natasha/dick.svg"
  3353. }
  3354. },
  3355. paw: {
  3356. height: math.unit(0.250, "meters"),
  3357. name: "Paw",
  3358. image: {
  3359. source: "./media/characters/natasha/paw.svg"
  3360. },
  3361. extraAttributes: {
  3362. "toeSize": {
  3363. name: "Toe Size",
  3364. power: 2,
  3365. type: "area",
  3366. base: math.unit(0.0024, "m^2")
  3367. },
  3368. "padSize": {
  3369. name: "Pad Size",
  3370. power: 2,
  3371. type: "area",
  3372. base: math.unit(0.00889, "m^2")
  3373. },
  3374. "pawSize": {
  3375. name: "Paw Size",
  3376. power: 2,
  3377. type: "area",
  3378. base: math.unit(0.023667, "m^2")
  3379. },
  3380. }
  3381. },
  3382. },
  3383. [
  3384. {
  3385. name: "Shortstack",
  3386. height: math.unit(3, "feet"),
  3387. default: true
  3388. },
  3389. {
  3390. name: "Normal",
  3391. height: math.unit(5 + 5 / 12, "feet")
  3392. },
  3393. {
  3394. name: "Large",
  3395. height: math.unit(12, "feet")
  3396. },
  3397. {
  3398. name: "Macro",
  3399. height: math.unit(100, "feet")
  3400. },
  3401. {
  3402. name: "Macro+",
  3403. height: math.unit(260, "feet")
  3404. },
  3405. {
  3406. name: "Macro++",
  3407. height: math.unit(1, "mile")
  3408. },
  3409. ]
  3410. ))
  3411. characterMakers.push(() => makeCharacter(
  3412. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3413. {
  3414. front: {
  3415. height: math.unit(6, "feet"),
  3416. weight: math.unit(75, "kg"),
  3417. name: "Front",
  3418. image: {
  3419. source: "./media/characters/malik/front.svg",
  3420. extra: 1750/1561,
  3421. bottom: 80/1830
  3422. },
  3423. extraAttributes: {
  3424. "toeSize": {
  3425. name: "Toe Size",
  3426. power: 2,
  3427. type: "area",
  3428. base: math.unit(0.0159, "m^2")
  3429. },
  3430. "pawSize": {
  3431. name: "Paw Size",
  3432. power: 2,
  3433. type: "area",
  3434. base: math.unit(0.09834, "m^2")
  3435. },
  3436. }
  3437. },
  3438. side: {
  3439. height: math.unit(6, "feet"),
  3440. weight: math.unit(75, "kg"),
  3441. name: "Side",
  3442. image: {
  3443. source: "./media/characters/malik/side.svg",
  3444. extra: 1802/1685,
  3445. bottom: 42/1844
  3446. },
  3447. extraAttributes: {
  3448. "toeSize": {
  3449. name: "Toe Size",
  3450. power: 2,
  3451. type: "area",
  3452. base: math.unit(0.0159, "m^2")
  3453. },
  3454. "pawSize": {
  3455. name: "Paw Size",
  3456. power: 2,
  3457. type: "area",
  3458. base: math.unit(0.09834, "m^2")
  3459. },
  3460. }
  3461. },
  3462. back: {
  3463. height: math.unit(6, "feet"),
  3464. weight: math.unit(75, "kg"),
  3465. name: "Back",
  3466. image: {
  3467. source: "./media/characters/malik/back.svg",
  3468. extra: 1803/1607,
  3469. bottom: 33/1836
  3470. },
  3471. extraAttributes: {
  3472. "toeSize": {
  3473. name: "Toe Size",
  3474. power: 2,
  3475. type: "area",
  3476. base: math.unit(0.0159, "m^2")
  3477. },
  3478. "pawSize": {
  3479. name: "Paw Size",
  3480. power: 2,
  3481. type: "area",
  3482. base: math.unit(0.09834, "m^2")
  3483. },
  3484. }
  3485. },
  3486. },
  3487. [
  3488. {
  3489. name: "Macro",
  3490. height: math.unit(156, "feet"),
  3491. default: true
  3492. },
  3493. {
  3494. name: "Macro+",
  3495. height: math.unit(1188, "feet")
  3496. },
  3497. ]
  3498. ))
  3499. characterMakers.push(() => makeCharacter(
  3500. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3501. {
  3502. front: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(75, "kg"),
  3505. name: "Front",
  3506. image: {
  3507. source: "./media/characters/sefer/front.svg",
  3508. extra: 848 / 659,
  3509. bottom: 28.3 / 876.442
  3510. }
  3511. },
  3512. back: {
  3513. height: math.unit(6, "feet"),
  3514. weight: math.unit(75, "kg"),
  3515. name: "Back",
  3516. image: {
  3517. source: "./media/characters/sefer/back.svg",
  3518. extra: 864 / 695,
  3519. bottom: 10 / 871
  3520. }
  3521. },
  3522. frontDressed: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(75, "kg"),
  3525. name: "Front (Dressed)",
  3526. image: {
  3527. source: "./media/characters/sefer/front-dressed.svg",
  3528. extra: 839 / 653,
  3529. bottom: 37.6 / 878
  3530. }
  3531. },
  3532. },
  3533. [
  3534. {
  3535. name: "Normal",
  3536. height: math.unit(6, "feet"),
  3537. default: true
  3538. },
  3539. ]
  3540. ))
  3541. characterMakers.push(() => makeCharacter(
  3542. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3543. {
  3544. body: {
  3545. height: math.unit(2.2428, "meter"),
  3546. weight: math.unit(124.738, "kg"),
  3547. name: "Body",
  3548. image: {
  3549. extra: 1225 / 1050,
  3550. source: "./media/characters/north/front.svg"
  3551. }
  3552. }
  3553. },
  3554. [
  3555. {
  3556. name: "Micro",
  3557. height: math.unit(4, "inches")
  3558. },
  3559. {
  3560. name: "Macro",
  3561. height: math.unit(63, "meters")
  3562. },
  3563. {
  3564. name: "Megamacro",
  3565. height: math.unit(101, "miles"),
  3566. default: true
  3567. }
  3568. ]
  3569. ))
  3570. characterMakers.push(() => makeCharacter(
  3571. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3572. {
  3573. angled: {
  3574. height: math.unit(4, "meter"),
  3575. weight: math.unit(150, "kg"),
  3576. name: "Angled",
  3577. image: {
  3578. source: "./media/characters/talan/angled-sfw.svg",
  3579. bottom: 29 / 3734
  3580. }
  3581. },
  3582. angledNsfw: {
  3583. height: math.unit(4, "meter"),
  3584. weight: math.unit(150, "kg"),
  3585. name: "Angled (NSFW)",
  3586. image: {
  3587. source: "./media/characters/talan/angled-nsfw.svg",
  3588. bottom: 29 / 3734
  3589. }
  3590. },
  3591. frontNsfw: {
  3592. height: math.unit(4, "meter"),
  3593. weight: math.unit(150, "kg"),
  3594. name: "Front (NSFW)",
  3595. image: {
  3596. source: "./media/characters/talan/front-nsfw.svg",
  3597. bottom: 29 / 3734
  3598. }
  3599. },
  3600. sideNsfw: {
  3601. height: math.unit(4, "meter"),
  3602. weight: math.unit(150, "kg"),
  3603. name: "Side (NSFW)",
  3604. image: {
  3605. source: "./media/characters/talan/side-nsfw.svg",
  3606. bottom: 29 / 3734
  3607. }
  3608. },
  3609. back: {
  3610. height: math.unit(4, "meter"),
  3611. weight: math.unit(150, "kg"),
  3612. name: "Back",
  3613. image: {
  3614. source: "./media/characters/talan/back.svg"
  3615. }
  3616. },
  3617. dickBottom: {
  3618. height: math.unit(0.621, "meter"),
  3619. name: "Dick (Bottom)",
  3620. image: {
  3621. source: "./media/characters/talan/dick-bottom.svg"
  3622. }
  3623. },
  3624. dickTop: {
  3625. height: math.unit(0.621, "meter"),
  3626. name: "Dick (Top)",
  3627. image: {
  3628. source: "./media/characters/talan/dick-top.svg"
  3629. }
  3630. },
  3631. dickSide: {
  3632. height: math.unit(0.305, "meter"),
  3633. name: "Dick (Side)",
  3634. image: {
  3635. source: "./media/characters/talan/dick-side.svg"
  3636. }
  3637. },
  3638. dickFront: {
  3639. height: math.unit(0.305, "meter"),
  3640. name: "Dick (Front)",
  3641. image: {
  3642. source: "./media/characters/talan/dick-front.svg"
  3643. }
  3644. },
  3645. },
  3646. [
  3647. {
  3648. name: "Normal",
  3649. height: math.unit(4, "meters")
  3650. },
  3651. {
  3652. name: "Macro",
  3653. height: math.unit(100, "meters")
  3654. },
  3655. {
  3656. name: "Megamacro",
  3657. height: math.unit(2, "miles"),
  3658. default: true
  3659. },
  3660. {
  3661. name: "Gigamacro",
  3662. height: math.unit(5000, "miles")
  3663. },
  3664. {
  3665. name: "Teramacro",
  3666. height: math.unit(100, "parsecs")
  3667. }
  3668. ]
  3669. ))
  3670. characterMakers.push(() => makeCharacter(
  3671. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3672. {
  3673. front: {
  3674. height: math.unit(2, "meter"),
  3675. weight: math.unit(90, "kg"),
  3676. name: "Front",
  3677. image: {
  3678. source: "./media/characters/gael'rathus/front.svg"
  3679. }
  3680. },
  3681. frontAlt: {
  3682. height: math.unit(2, "meter"),
  3683. weight: math.unit(90, "kg"),
  3684. name: "Front (alt)",
  3685. image: {
  3686. source: "./media/characters/gael'rathus/front-alt.svg"
  3687. }
  3688. },
  3689. frontAlt2: {
  3690. height: math.unit(2, "meter"),
  3691. weight: math.unit(90, "kg"),
  3692. name: "Front (alt 2)",
  3693. image: {
  3694. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3695. }
  3696. }
  3697. },
  3698. [
  3699. {
  3700. name: "Normal",
  3701. height: math.unit(9, "feet"),
  3702. default: true
  3703. },
  3704. {
  3705. name: "Large",
  3706. height: math.unit(25, "feet")
  3707. },
  3708. {
  3709. name: "Macro",
  3710. height: math.unit(0.25, "miles")
  3711. },
  3712. {
  3713. name: "Megamacro",
  3714. height: math.unit(10, "miles")
  3715. }
  3716. ]
  3717. ))
  3718. characterMakers.push(() => makeCharacter(
  3719. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3720. {
  3721. side: {
  3722. height: math.unit(2, "meter"),
  3723. weight: math.unit(140, "kg"),
  3724. name: "Side",
  3725. image: {
  3726. source: "./media/characters/sosha/side.svg",
  3727. extra: 1170/1006,
  3728. bottom: 94/1264
  3729. }
  3730. },
  3731. maw: {
  3732. height: math.unit(2.87, "feet"),
  3733. name: "Maw",
  3734. image: {
  3735. source: "./media/characters/sosha/maw.svg",
  3736. extra: 966/865,
  3737. bottom: 0/966
  3738. }
  3739. },
  3740. cooch: {
  3741. height: math.unit(5.6, "feet"),
  3742. name: "Cooch",
  3743. image: {
  3744. source: "./media/characters/sosha/cooch.svg"
  3745. }
  3746. },
  3747. },
  3748. [
  3749. {
  3750. name: "Normal",
  3751. height: math.unit(12, "feet"),
  3752. default: true
  3753. }
  3754. ]
  3755. ))
  3756. characterMakers.push(() => makeCharacter(
  3757. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3758. {
  3759. side: {
  3760. height: math.unit(5 + 5 / 12, "feet"),
  3761. weight: math.unit(170, "kg"),
  3762. name: "Side",
  3763. image: {
  3764. source: "./media/characters/runnola/side.svg",
  3765. extra: 741 / 448,
  3766. bottom: 0.05
  3767. }
  3768. },
  3769. },
  3770. [
  3771. {
  3772. name: "Small",
  3773. height: math.unit(3, "feet")
  3774. },
  3775. {
  3776. name: "Normal",
  3777. height: math.unit(5 + 5 / 12, "feet"),
  3778. default: true
  3779. },
  3780. {
  3781. name: "Big",
  3782. height: math.unit(10, "feet")
  3783. },
  3784. ]
  3785. ))
  3786. characterMakers.push(() => makeCharacter(
  3787. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3788. {
  3789. front: {
  3790. height: math.unit(2, "meter"),
  3791. weight: math.unit(50, "kg"),
  3792. name: "Front",
  3793. image: {
  3794. source: "./media/characters/kurribird/front.svg",
  3795. bottom: 0.015
  3796. }
  3797. },
  3798. frontAlt: {
  3799. height: math.unit(1.5, "meter"),
  3800. weight: math.unit(50, "kg"),
  3801. name: "Front (Alt)",
  3802. image: {
  3803. source: "./media/characters/kurribird/front-alt.svg",
  3804. extra: 1.45
  3805. }
  3806. },
  3807. },
  3808. [
  3809. {
  3810. name: "Normal",
  3811. height: math.unit(7, "feet")
  3812. },
  3813. {
  3814. name: "Big",
  3815. height: math.unit(12, "feet"),
  3816. default: true
  3817. },
  3818. {
  3819. name: "Macro",
  3820. height: math.unit(1500, "feet")
  3821. },
  3822. {
  3823. name: "Megamacro",
  3824. height: math.unit(2, "miles")
  3825. }
  3826. ]
  3827. ))
  3828. characterMakers.push(() => makeCharacter(
  3829. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3830. {
  3831. front: {
  3832. height: math.unit(2, "meter"),
  3833. weight: math.unit(80, "kg"),
  3834. name: "Front",
  3835. image: {
  3836. source: "./media/characters/elbial/front.svg",
  3837. extra: 1643 / 1556,
  3838. bottom: 60.2 / 1696
  3839. }
  3840. },
  3841. side: {
  3842. height: math.unit(2, "meter"),
  3843. weight: math.unit(80, "kg"),
  3844. name: "Side",
  3845. image: {
  3846. source: "./media/characters/elbial/side.svg",
  3847. extra: 1601/1528,
  3848. bottom: 97/1698
  3849. }
  3850. },
  3851. back: {
  3852. height: math.unit(2, "meter"),
  3853. weight: math.unit(80, "kg"),
  3854. name: "Back",
  3855. image: {
  3856. source: "./media/characters/elbial/back.svg",
  3857. extra: 1653/1569,
  3858. bottom: 20/1673
  3859. }
  3860. },
  3861. frontDressed: {
  3862. height: math.unit(2, "meter"),
  3863. weight: math.unit(80, "kg"),
  3864. name: "Front (Dressed)",
  3865. image: {
  3866. source: "./media/characters/elbial/front-dressed.svg",
  3867. extra: 1638/1569,
  3868. bottom: 70/1708
  3869. }
  3870. },
  3871. genitals: {
  3872. height: math.unit(2 / 3.367, "meter"),
  3873. name: "Genitals",
  3874. image: {
  3875. source: "./media/characters/elbial/genitals.svg"
  3876. }
  3877. },
  3878. },
  3879. [
  3880. {
  3881. name: "Large",
  3882. height: math.unit(100, "feet")
  3883. },
  3884. {
  3885. name: "Macro",
  3886. height: math.unit(500, "feet"),
  3887. default: true
  3888. },
  3889. {
  3890. name: "Megamacro",
  3891. height: math.unit(10, "miles")
  3892. },
  3893. {
  3894. name: "Gigamacro",
  3895. height: math.unit(25000, "miles")
  3896. },
  3897. {
  3898. name: "Full-Size",
  3899. height: math.unit(8000000, "gigaparsecs")
  3900. }
  3901. ]
  3902. ))
  3903. characterMakers.push(() => makeCharacter(
  3904. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3905. {
  3906. front: {
  3907. height: math.unit(2, "meter"),
  3908. weight: math.unit(60, "kg"),
  3909. name: "Front",
  3910. image: {
  3911. source: "./media/characters/noah/front.svg"
  3912. }
  3913. },
  3914. talons: {
  3915. height: math.unit(0.315, "meter"),
  3916. name: "Talons",
  3917. image: {
  3918. source: "./media/characters/noah/talons.svg"
  3919. }
  3920. }
  3921. },
  3922. [
  3923. {
  3924. name: "Large",
  3925. height: math.unit(50, "feet")
  3926. },
  3927. {
  3928. name: "Macro",
  3929. height: math.unit(750, "feet"),
  3930. default: true
  3931. },
  3932. {
  3933. name: "Megamacro",
  3934. height: math.unit(50, "miles")
  3935. },
  3936. {
  3937. name: "Gigamacro",
  3938. height: math.unit(100000, "miles")
  3939. },
  3940. {
  3941. name: "Full-Size",
  3942. height: math.unit(3000000000, "miles")
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(2, "meter"),
  3951. weight: math.unit(80, "kg"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/natalya/front.svg"
  3955. }
  3956. },
  3957. back: {
  3958. height: math.unit(2, "meter"),
  3959. weight: math.unit(80, "kg"),
  3960. name: "Back",
  3961. image: {
  3962. source: "./media/characters/natalya/back.svg"
  3963. }
  3964. }
  3965. },
  3966. [
  3967. {
  3968. name: "Normal",
  3969. height: math.unit(150, "feet"),
  3970. default: true
  3971. },
  3972. {
  3973. name: "Megamacro",
  3974. height: math.unit(5, "miles")
  3975. },
  3976. {
  3977. name: "Full-Size",
  3978. height: math.unit(600, "kiloparsecs")
  3979. }
  3980. ]
  3981. ))
  3982. characterMakers.push(() => makeCharacter(
  3983. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3984. {
  3985. front: {
  3986. height: math.unit(2, "meter"),
  3987. weight: math.unit(50, "kg"),
  3988. name: "Front",
  3989. image: {
  3990. source: "./media/characters/erestrebah/front.svg",
  3991. extra: 1262/1162,
  3992. bottom: 96/1358
  3993. }
  3994. },
  3995. back: {
  3996. height: math.unit(2, "meter"),
  3997. weight: math.unit(50, "kg"),
  3998. name: "Back",
  3999. image: {
  4000. source: "./media/characters/erestrebah/back.svg",
  4001. extra: 1257/1139,
  4002. bottom: 13/1270
  4003. }
  4004. },
  4005. wing: {
  4006. height: math.unit(2, "meter"),
  4007. weight: math.unit(50, "kg"),
  4008. name: "Wing",
  4009. image: {
  4010. source: "./media/characters/erestrebah/wing.svg",
  4011. extra: 1262/1162,
  4012. bottom: 96/1358
  4013. }
  4014. },
  4015. mouth: {
  4016. height: math.unit(0.39, "feet"),
  4017. name: "Mouth",
  4018. image: {
  4019. source: "./media/characters/erestrebah/mouth.svg"
  4020. }
  4021. }
  4022. },
  4023. [
  4024. {
  4025. name: "Normal",
  4026. height: math.unit(10, "feet")
  4027. },
  4028. {
  4029. name: "Large",
  4030. height: math.unit(50, "feet"),
  4031. default: true
  4032. },
  4033. {
  4034. name: "Macro",
  4035. height: math.unit(300, "feet")
  4036. },
  4037. {
  4038. name: "Macro+",
  4039. height: math.unit(750, "feet")
  4040. },
  4041. {
  4042. name: "Megamacro",
  4043. height: math.unit(3, "miles")
  4044. }
  4045. ]
  4046. ))
  4047. characterMakers.push(() => makeCharacter(
  4048. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4049. {
  4050. front: {
  4051. height: math.unit(2, "meter"),
  4052. weight: math.unit(80, "kg"),
  4053. name: "Front",
  4054. image: {
  4055. source: "./media/characters/jennifer/front.svg",
  4056. bottom: 0.11,
  4057. extra: 1.16
  4058. }
  4059. },
  4060. frontAlt: {
  4061. height: math.unit(2, "meter"),
  4062. weight: math.unit(80, "kg"),
  4063. name: "Front (Alt)",
  4064. image: {
  4065. source: "./media/characters/jennifer/front-alt.svg"
  4066. }
  4067. }
  4068. },
  4069. [
  4070. {
  4071. name: "Canon Height",
  4072. height: math.unit(120, "feet"),
  4073. default: true
  4074. },
  4075. {
  4076. name: "Macro+",
  4077. height: math.unit(300, "feet")
  4078. },
  4079. {
  4080. name: "Megamacro",
  4081. height: math.unit(20000, "feet")
  4082. }
  4083. ]
  4084. ))
  4085. characterMakers.push(() => makeCharacter(
  4086. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4087. {
  4088. front: {
  4089. height: math.unit(2, "meter"),
  4090. weight: math.unit(50, "kg"),
  4091. name: "Front",
  4092. image: {
  4093. source: "./media/characters/kalista/front.svg",
  4094. extra: 1314/1145,
  4095. bottom: 101/1415
  4096. }
  4097. },
  4098. back: {
  4099. height: math.unit(2, "meter"),
  4100. weight: math.unit(50, "kg"),
  4101. name: "Back",
  4102. image: {
  4103. source: "./media/characters/kalista/back.svg",
  4104. extra: 1366 / 1156,
  4105. bottom: 33.9 / 1362.78
  4106. }
  4107. }
  4108. },
  4109. [
  4110. {
  4111. name: "Uncomfortably Small",
  4112. height: math.unit(10, "feet")
  4113. },
  4114. {
  4115. name: "Small",
  4116. height: math.unit(30, "feet")
  4117. },
  4118. {
  4119. name: "Macro",
  4120. height: math.unit(100, "feet"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Macro+",
  4125. height: math.unit(2000, "feet")
  4126. },
  4127. {
  4128. name: "True Form",
  4129. height: math.unit(8924, "miles")
  4130. }
  4131. ]
  4132. ))
  4133. characterMakers.push(() => makeCharacter(
  4134. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4135. {
  4136. front: {
  4137. height: math.unit(2, "meter"),
  4138. weight: math.unit(120, "kg"),
  4139. name: "Front",
  4140. image: {
  4141. source: "./media/characters/ggv/front.svg"
  4142. }
  4143. },
  4144. side: {
  4145. height: math.unit(2, "meter"),
  4146. weight: math.unit(120, "kg"),
  4147. name: "Side",
  4148. image: {
  4149. source: "./media/characters/ggv/side.svg"
  4150. }
  4151. }
  4152. },
  4153. [
  4154. {
  4155. name: "Extremely Puny",
  4156. height: math.unit(9 + 5 / 12, "feet")
  4157. },
  4158. {
  4159. name: "Horribly Small",
  4160. height: math.unit(47.7, "miles"),
  4161. default: true
  4162. },
  4163. {
  4164. name: "Reasonably Sized",
  4165. height: math.unit(25000, "parsecs")
  4166. },
  4167. {
  4168. name: "Slightly Uncompressed",
  4169. height: math.unit(7.77e31, "parsecs")
  4170. },
  4171. {
  4172. name: "Omniversal",
  4173. height: math.unit(1e300, "meters")
  4174. },
  4175. ]
  4176. ))
  4177. characterMakers.push(() => makeCharacter(
  4178. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4179. {
  4180. front: {
  4181. height: math.unit(2, "meter"),
  4182. weight: math.unit(75, "lb"),
  4183. name: "Front",
  4184. image: {
  4185. source: "./media/characters/napalm/front.svg"
  4186. }
  4187. },
  4188. back: {
  4189. height: math.unit(2, "meter"),
  4190. weight: math.unit(75, "lb"),
  4191. name: "Back",
  4192. image: {
  4193. source: "./media/characters/napalm/back.svg"
  4194. }
  4195. }
  4196. },
  4197. [
  4198. {
  4199. name: "Standard",
  4200. height: math.unit(55, "feet"),
  4201. default: true
  4202. }
  4203. ]
  4204. ))
  4205. characterMakers.push(() => makeCharacter(
  4206. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4207. {
  4208. front: {
  4209. height: math.unit(7 + 5 / 6, "feet"),
  4210. weight: math.unit(325, "lb"),
  4211. name: "Front",
  4212. image: {
  4213. source: "./media/characters/asana/front.svg",
  4214. extra: 1133 / 1060,
  4215. bottom: 15.2 / 1148.6
  4216. }
  4217. },
  4218. back: {
  4219. height: math.unit(7 + 5 / 6, "feet"),
  4220. weight: math.unit(325, "lb"),
  4221. name: "Back",
  4222. image: {
  4223. source: "./media/characters/asana/back.svg",
  4224. extra: 1114 / 1043,
  4225. bottom: 5 / 1120
  4226. }
  4227. },
  4228. dressedDark: {
  4229. height: math.unit(7 + 5 / 6, "feet"),
  4230. weight: math.unit(325, "lb"),
  4231. name: "Dressed (Dark)",
  4232. image: {
  4233. source: "./media/characters/asana/dressed-dark.svg",
  4234. extra: 1133 / 1060,
  4235. bottom: 15.2 / 1148.6
  4236. }
  4237. },
  4238. dressedLight: {
  4239. height: math.unit(7 + 5 / 6, "feet"),
  4240. weight: math.unit(325, "lb"),
  4241. name: "Dressed (Light)",
  4242. image: {
  4243. source: "./media/characters/asana/dressed-light.svg",
  4244. extra: 1133 / 1060,
  4245. bottom: 15.2 / 1148.6
  4246. }
  4247. },
  4248. },
  4249. [
  4250. {
  4251. name: "Standard",
  4252. height: math.unit(7 + 5 / 6, "feet"),
  4253. default: true
  4254. },
  4255. {
  4256. name: "Large",
  4257. height: math.unit(10, "meters")
  4258. },
  4259. {
  4260. name: "Macro",
  4261. height: math.unit(2500, "meters")
  4262. },
  4263. {
  4264. name: "Megamacro",
  4265. height: math.unit(5e6, "meters")
  4266. },
  4267. {
  4268. name: "Examacro",
  4269. height: math.unit(5e12, "lightyears")
  4270. },
  4271. {
  4272. name: "Max Size",
  4273. height: math.unit(1e31, "lightyears")
  4274. }
  4275. ]
  4276. ))
  4277. characterMakers.push(() => makeCharacter(
  4278. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4279. {
  4280. front: {
  4281. height: math.unit(2, "meter"),
  4282. weight: math.unit(60, "kg"),
  4283. name: "Front",
  4284. image: {
  4285. source: "./media/characters/ebony/front.svg",
  4286. bottom: 0.03,
  4287. extra: 1045 / 810 + 0.03
  4288. }
  4289. },
  4290. side: {
  4291. height: math.unit(2, "meter"),
  4292. weight: math.unit(60, "kg"),
  4293. name: "Side",
  4294. image: {
  4295. source: "./media/characters/ebony/side.svg",
  4296. bottom: 0.03,
  4297. extra: 1045 / 810 + 0.03
  4298. }
  4299. },
  4300. back: {
  4301. height: math.unit(2, "meter"),
  4302. weight: math.unit(60, "kg"),
  4303. name: "Back",
  4304. image: {
  4305. source: "./media/characters/ebony/back.svg",
  4306. bottom: 0.01,
  4307. extra: 1045 / 810 + 0.01
  4308. }
  4309. },
  4310. },
  4311. [
  4312. // TODO check why I did this lol
  4313. {
  4314. name: "Standard",
  4315. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4316. default: true
  4317. },
  4318. {
  4319. name: "Macro",
  4320. height: math.unit(200, "feet")
  4321. },
  4322. {
  4323. name: "Gigamacro",
  4324. height: math.unit(13000, "km")
  4325. }
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4330. {
  4331. front: {
  4332. height: math.unit(6, "feet"),
  4333. weight: math.unit(175, "lb"),
  4334. name: "Front",
  4335. image: {
  4336. source: "./media/characters/mountain/front.svg",
  4337. extra: 972 / 955,
  4338. bottom: 64 / 1036.6
  4339. }
  4340. },
  4341. back: {
  4342. height: math.unit(6, "feet"),
  4343. weight: math.unit(175, "lb"),
  4344. name: "Back",
  4345. image: {
  4346. source: "./media/characters/mountain/back.svg",
  4347. extra: 970 / 950,
  4348. bottom: 28.25 / 999
  4349. }
  4350. },
  4351. },
  4352. [
  4353. {
  4354. name: "Large",
  4355. height: math.unit(20, "meters")
  4356. },
  4357. {
  4358. name: "Macro",
  4359. height: math.unit(300, "meters")
  4360. },
  4361. {
  4362. name: "Gigamacro",
  4363. height: math.unit(10000, "km"),
  4364. default: true
  4365. },
  4366. {
  4367. name: "Examacro",
  4368. height: math.unit(10e9, "lightyears")
  4369. }
  4370. ]
  4371. ))
  4372. characterMakers.push(() => makeCharacter(
  4373. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4374. {
  4375. front: {
  4376. height: math.unit(8, "feet"),
  4377. weight: math.unit(500, "lb"),
  4378. name: "Front",
  4379. image: {
  4380. source: "./media/characters/rick/front.svg"
  4381. }
  4382. }
  4383. },
  4384. [
  4385. {
  4386. name: "Normal",
  4387. height: math.unit(8, "feet"),
  4388. default: true
  4389. },
  4390. {
  4391. name: "Macro",
  4392. height: math.unit(5, "km")
  4393. }
  4394. ]
  4395. ))
  4396. characterMakers.push(() => makeCharacter(
  4397. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4398. {
  4399. front: {
  4400. height: math.unit(8, "feet"),
  4401. weight: math.unit(120, "lb"),
  4402. name: "Front",
  4403. image: {
  4404. source: "./media/characters/ona/front.svg"
  4405. }
  4406. },
  4407. frontAlt: {
  4408. height: math.unit(8, "feet"),
  4409. weight: math.unit(120, "lb"),
  4410. name: "Front (Alt)",
  4411. image: {
  4412. source: "./media/characters/ona/front-alt.svg"
  4413. }
  4414. },
  4415. back: {
  4416. height: math.unit(8, "feet"),
  4417. weight: math.unit(120, "lb"),
  4418. name: "Back",
  4419. image: {
  4420. source: "./media/characters/ona/back.svg"
  4421. }
  4422. },
  4423. foot: {
  4424. height: math.unit(1.1, "feet"),
  4425. name: "Foot",
  4426. image: {
  4427. source: "./media/characters/ona/foot.svg"
  4428. }
  4429. }
  4430. },
  4431. [
  4432. {
  4433. name: "Megamacro",
  4434. height: math.unit(70, "km"),
  4435. default: true
  4436. },
  4437. {
  4438. name: "Gigamacro",
  4439. height: math.unit(681818, "miles")
  4440. },
  4441. {
  4442. name: "Examacro",
  4443. height: math.unit(3800000, "lightyears")
  4444. },
  4445. ]
  4446. ))
  4447. characterMakers.push(() => makeCharacter(
  4448. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4449. {
  4450. front: {
  4451. height: math.unit(12, "feet"),
  4452. weight: math.unit(3000, "lb"),
  4453. name: "Front",
  4454. image: {
  4455. source: "./media/characters/mech/front.svg",
  4456. extra: 2900 / 2770,
  4457. bottom: 110 / 3010
  4458. }
  4459. },
  4460. back: {
  4461. height: math.unit(12, "feet"),
  4462. weight: math.unit(3000, "lb"),
  4463. name: "Back",
  4464. image: {
  4465. source: "./media/characters/mech/back.svg",
  4466. extra: 3011 / 2890,
  4467. bottom: 94 / 3105
  4468. }
  4469. },
  4470. maw: {
  4471. height: math.unit(3.07, "feet"),
  4472. name: "Maw",
  4473. image: {
  4474. source: "./media/characters/mech/maw.svg"
  4475. }
  4476. },
  4477. head: {
  4478. height: math.unit(3.07, "feet"),
  4479. name: "Head",
  4480. image: {
  4481. source: "./media/characters/mech/head.svg"
  4482. }
  4483. },
  4484. dick: {
  4485. height: math.unit(1.43, "feet"),
  4486. name: "Dick",
  4487. image: {
  4488. source: "./media/characters/mech/dick.svg"
  4489. }
  4490. },
  4491. },
  4492. [
  4493. {
  4494. name: "Normal",
  4495. height: math.unit(12, "feet")
  4496. },
  4497. {
  4498. name: "Macro",
  4499. height: math.unit(300, "feet"),
  4500. default: true
  4501. },
  4502. {
  4503. name: "Macro+",
  4504. height: math.unit(1500, "feet")
  4505. },
  4506. ]
  4507. ))
  4508. characterMakers.push(() => makeCharacter(
  4509. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4510. {
  4511. front: {
  4512. height: math.unit(1.3, "meter"),
  4513. weight: math.unit(30, "kg"),
  4514. name: "Front",
  4515. image: {
  4516. source: "./media/characters/gregory/front.svg",
  4517. }
  4518. }
  4519. },
  4520. [
  4521. {
  4522. name: "Normal",
  4523. height: math.unit(1.3, "meter"),
  4524. default: true
  4525. },
  4526. {
  4527. name: "Macro",
  4528. height: math.unit(20, "meter")
  4529. }
  4530. ]
  4531. ))
  4532. characterMakers.push(() => makeCharacter(
  4533. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4534. {
  4535. front: {
  4536. height: math.unit(2.8, "meter"),
  4537. weight: math.unit(200, "kg"),
  4538. name: "Front",
  4539. image: {
  4540. source: "./media/characters/elory/front.svg",
  4541. }
  4542. }
  4543. },
  4544. [
  4545. {
  4546. name: "Normal",
  4547. height: math.unit(2.8, "meter"),
  4548. default: true
  4549. },
  4550. {
  4551. name: "Macro",
  4552. height: math.unit(38, "meter")
  4553. }
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4558. {
  4559. front: {
  4560. height: math.unit(470, "feet"),
  4561. weight: math.unit(924, "tons"),
  4562. name: "Front",
  4563. image: {
  4564. source: "./media/characters/angelpatamon/front.svg",
  4565. }
  4566. }
  4567. },
  4568. [
  4569. {
  4570. name: "Normal",
  4571. height: math.unit(470, "feet"),
  4572. default: true
  4573. },
  4574. {
  4575. name: "Deity Size I",
  4576. height: math.unit(28651.2, "km")
  4577. },
  4578. {
  4579. name: "Deity Size II",
  4580. height: math.unit(171907.2, "km")
  4581. }
  4582. ]
  4583. ))
  4584. characterMakers.push(() => makeCharacter(
  4585. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4586. {
  4587. side: {
  4588. height: math.unit(7.2, "meter"),
  4589. weight: math.unit(8.2, "tons"),
  4590. name: "Side",
  4591. image: {
  4592. source: "./media/characters/cryae/side.svg",
  4593. extra: 3500 / 1500
  4594. }
  4595. }
  4596. },
  4597. [
  4598. {
  4599. name: "Normal",
  4600. height: math.unit(7.2, "meter"),
  4601. default: true
  4602. }
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4607. {
  4608. front: {
  4609. height: math.unit(6, "feet"),
  4610. weight: math.unit(175, "lb"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/xera/front.svg",
  4614. extra: 2377 / 1972,
  4615. bottom: 75.5 / 2452
  4616. }
  4617. },
  4618. side: {
  4619. height: math.unit(6, "feet"),
  4620. weight: math.unit(175, "lb"),
  4621. name: "Side",
  4622. image: {
  4623. source: "./media/characters/xera/side.svg",
  4624. extra: 2345 / 2019,
  4625. bottom: 39.7 / 2384
  4626. }
  4627. },
  4628. back: {
  4629. height: math.unit(6, "feet"),
  4630. weight: math.unit(175, "lb"),
  4631. name: "Back",
  4632. image: {
  4633. source: "./media/characters/xera/back.svg",
  4634. extra: 2095 / 1984,
  4635. bottom: 67 / 2166
  4636. }
  4637. },
  4638. },
  4639. [
  4640. {
  4641. name: "Small",
  4642. height: math.unit(10, "feet")
  4643. },
  4644. {
  4645. name: "Macro",
  4646. height: math.unit(500, "meters"),
  4647. default: true
  4648. },
  4649. {
  4650. name: "Macro+",
  4651. height: math.unit(10, "km")
  4652. },
  4653. {
  4654. name: "Gigamacro",
  4655. height: math.unit(25000, "km")
  4656. },
  4657. {
  4658. name: "Teramacro",
  4659. height: math.unit(3e6, "km")
  4660. }
  4661. ]
  4662. ))
  4663. characterMakers.push(() => makeCharacter(
  4664. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4665. {
  4666. front: {
  4667. height: math.unit(6, "feet"),
  4668. weight: math.unit(175, "lb"),
  4669. name: "Front",
  4670. image: {
  4671. source: "./media/characters/nebula/front.svg",
  4672. extra: 2566 / 2362,
  4673. bottom: 81 / 2644
  4674. }
  4675. }
  4676. },
  4677. [
  4678. {
  4679. name: "Small",
  4680. height: math.unit(4.5, "meters")
  4681. },
  4682. {
  4683. name: "Macro",
  4684. height: math.unit(1500, "meters"),
  4685. default: true
  4686. },
  4687. {
  4688. name: "Megamacro",
  4689. height: math.unit(150, "km")
  4690. },
  4691. {
  4692. name: "Gigamacro",
  4693. height: math.unit(27000, "km")
  4694. }
  4695. ]
  4696. ))
  4697. characterMakers.push(() => makeCharacter(
  4698. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4699. {
  4700. front: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(225, "lb"),
  4703. name: "Front",
  4704. image: {
  4705. source: "./media/characters/abysgar/front.svg",
  4706. extra: 1739/1614,
  4707. bottom: 71/1810
  4708. }
  4709. },
  4710. frontNsfw: {
  4711. height: math.unit(6, "feet"),
  4712. weight: math.unit(225, "lb"),
  4713. name: "Front (NSFW)",
  4714. image: {
  4715. source: "./media/characters/abysgar/front-nsfw.svg",
  4716. extra: 1739/1614,
  4717. bottom: 71/1810
  4718. }
  4719. },
  4720. back: {
  4721. height: math.unit(4.6, "feet"),
  4722. weight: math.unit(225, "lb"),
  4723. name: "Back",
  4724. image: {
  4725. source: "./media/characters/abysgar/back.svg",
  4726. extra: 1384/1327,
  4727. bottom: 0/1384
  4728. }
  4729. },
  4730. head: {
  4731. height: math.unit(1.25, "feet"),
  4732. name: "Head",
  4733. image: {
  4734. source: "./media/characters/abysgar/head.svg",
  4735. extra: 669/569,
  4736. bottom: 0/669
  4737. }
  4738. },
  4739. },
  4740. [
  4741. {
  4742. name: "Small",
  4743. height: math.unit(4.5, "meters")
  4744. },
  4745. {
  4746. name: "Macro",
  4747. height: math.unit(1250, "meters"),
  4748. default: true
  4749. },
  4750. {
  4751. name: "Megamacro",
  4752. height: math.unit(125, "km")
  4753. },
  4754. {
  4755. name: "Gigamacro",
  4756. height: math.unit(26000, "km")
  4757. }
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4762. {
  4763. front: {
  4764. height: math.unit(6, "feet"),
  4765. weight: math.unit(180, "lb"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/yakuz/front.svg"
  4769. }
  4770. }
  4771. },
  4772. [
  4773. {
  4774. name: "Small",
  4775. height: math.unit(5, "meters")
  4776. },
  4777. {
  4778. name: "Macro",
  4779. height: math.unit(1500, "meters"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "Megamacro",
  4784. height: math.unit(200, "km")
  4785. },
  4786. {
  4787. name: "Gigamacro",
  4788. height: math.unit(100000, "km")
  4789. }
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(175, "lb"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/mirova/front.svg",
  4801. extra: 3334 / 3071,
  4802. bottom: 42 / 3375.6
  4803. }
  4804. }
  4805. },
  4806. [
  4807. {
  4808. name: "Small",
  4809. height: math.unit(5, "meters")
  4810. },
  4811. {
  4812. name: "Macro",
  4813. height: math.unit(900, "meters"),
  4814. default: true
  4815. },
  4816. {
  4817. name: "Megamacro",
  4818. height: math.unit(135, "km")
  4819. },
  4820. {
  4821. name: "Gigamacro",
  4822. height: math.unit(20000, "km")
  4823. }
  4824. ]
  4825. ))
  4826. characterMakers.push(() => makeCharacter(
  4827. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4828. {
  4829. side: {
  4830. height: math.unit(28.35, "feet"),
  4831. weight: math.unit(99.75, "tons"),
  4832. name: "Side",
  4833. image: {
  4834. source: "./media/characters/asana-mech/side.svg",
  4835. extra: 923 / 699,
  4836. bottom: 50 / 975
  4837. }
  4838. },
  4839. chaingun: {
  4840. height: math.unit(7, "feet"),
  4841. weight: math.unit(2400, "lb"),
  4842. name: "Chaingun",
  4843. image: {
  4844. source: "./media/characters/asana-mech/chaingun.svg"
  4845. }
  4846. },
  4847. laser: {
  4848. height: math.unit(7.12, "feet"),
  4849. weight: math.unit(2000, "lb"),
  4850. name: "Laser",
  4851. image: {
  4852. source: "./media/characters/asana-mech/laser.svg"
  4853. }
  4854. },
  4855. },
  4856. [
  4857. {
  4858. name: "Normal",
  4859. height: math.unit(28.35, "feet"),
  4860. default: true
  4861. },
  4862. {
  4863. name: "Macro",
  4864. height: math.unit(2500, "feet")
  4865. },
  4866. {
  4867. name: "Megamacro",
  4868. height: math.unit(25, "miles")
  4869. },
  4870. {
  4871. name: "Examacro",
  4872. height: math.unit(6e8, "lightyears")
  4873. },
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4878. {
  4879. front: {
  4880. height: math.unit(5, "meters"),
  4881. weight: math.unit(1000, "kg"),
  4882. name: "Front",
  4883. image: {
  4884. source: "./media/characters/asche/front.svg",
  4885. extra: 1258 / 1190,
  4886. bottom: 47 / 1305
  4887. }
  4888. },
  4889. frontUnderwear: {
  4890. height: math.unit(5, "meters"),
  4891. weight: math.unit(1000, "kg"),
  4892. name: "Front (Underwear)",
  4893. image: {
  4894. source: "./media/characters/asche/front-underwear.svg",
  4895. extra: 1258 / 1190,
  4896. bottom: 47 / 1305
  4897. }
  4898. },
  4899. frontDressed: {
  4900. height: math.unit(5, "meters"),
  4901. weight: math.unit(1000, "kg"),
  4902. name: "Front (Dressed)",
  4903. image: {
  4904. source: "./media/characters/asche/front-dressed.svg",
  4905. extra: 1258 / 1190,
  4906. bottom: 47 / 1305
  4907. }
  4908. },
  4909. frontArmor: {
  4910. height: math.unit(5, "meters"),
  4911. weight: math.unit(1000, "kg"),
  4912. name: "Front (Armored)",
  4913. image: {
  4914. source: "./media/characters/asche/front-armored.svg",
  4915. extra: 1374 / 1308,
  4916. bottom: 23 / 1397
  4917. }
  4918. },
  4919. mp724: {
  4920. height: math.unit(0.96, "meters"),
  4921. weight: math.unit(38, "kg"),
  4922. name: "H&K MP724",
  4923. image: {
  4924. source: "./media/characters/asche/h&k-mp724.svg"
  4925. }
  4926. },
  4927. side: {
  4928. height: math.unit(5, "meters"),
  4929. weight: math.unit(1000, "kg"),
  4930. name: "Side",
  4931. image: {
  4932. source: "./media/characters/asche/side.svg",
  4933. extra: 1717 / 1609,
  4934. bottom: 0.005
  4935. }
  4936. },
  4937. back: {
  4938. height: math.unit(5, "meters"),
  4939. weight: math.unit(1000, "kg"),
  4940. name: "Back",
  4941. image: {
  4942. source: "./media/characters/asche/back.svg",
  4943. extra: 1570 / 1501
  4944. }
  4945. },
  4946. },
  4947. [
  4948. {
  4949. name: "DEFCON 5",
  4950. height: math.unit(5, "meters")
  4951. },
  4952. {
  4953. name: "DEFCON 4",
  4954. height: math.unit(500, "meters"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "DEFCON 3",
  4959. height: math.unit(5, "km")
  4960. },
  4961. {
  4962. name: "DEFCON 2",
  4963. height: math.unit(500, "km")
  4964. },
  4965. {
  4966. name: "DEFCON 1",
  4967. height: math.unit(500000, "km")
  4968. },
  4969. {
  4970. name: "DEFCON 0",
  4971. height: math.unit(3, "gigaparsecs")
  4972. },
  4973. ]
  4974. ))
  4975. characterMakers.push(() => makeCharacter(
  4976. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4977. {
  4978. front: {
  4979. height: math.unit(2, "meters"),
  4980. weight: math.unit(76, "kg"),
  4981. name: "Front",
  4982. image: {
  4983. source: "./media/characters/gale/front.svg"
  4984. }
  4985. },
  4986. frontAlt1: {
  4987. height: math.unit(2, "meters"),
  4988. weight: math.unit(76, "kg"),
  4989. name: "Front (Alt 1)",
  4990. image: {
  4991. source: "./media/characters/gale/front-alt-1.svg"
  4992. }
  4993. },
  4994. frontAlt2: {
  4995. height: math.unit(2, "meters"),
  4996. weight: math.unit(76, "kg"),
  4997. name: "Front (Alt 2)",
  4998. image: {
  4999. source: "./media/characters/gale/front-alt-2.svg"
  5000. }
  5001. },
  5002. },
  5003. [
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(7, "feet")
  5007. },
  5008. {
  5009. name: "Macro",
  5010. height: math.unit(150, "feet"),
  5011. default: true
  5012. },
  5013. {
  5014. name: "Macro+",
  5015. height: math.unit(300, "feet")
  5016. },
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5021. {
  5022. front: {
  5023. height: math.unit(5 + 10/12, "feet"),
  5024. weight: math.unit(67, "kg"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/draylen/front.svg",
  5028. extra: 832/777,
  5029. bottom: 85/917
  5030. }
  5031. }
  5032. },
  5033. [
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(5 + 10/12, "feet")
  5037. },
  5038. {
  5039. name: "Macro",
  5040. height: math.unit(150, "feet"),
  5041. default: true
  5042. }
  5043. ]
  5044. ))
  5045. characterMakers.push(() => makeCharacter(
  5046. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5047. {
  5048. front: {
  5049. height: math.unit(7 + 9 / 12, "feet"),
  5050. weight: math.unit(379, "lbs"),
  5051. name: "Front",
  5052. image: {
  5053. source: "./media/characters/chez/front.svg"
  5054. }
  5055. },
  5056. side: {
  5057. height: math.unit(7 + 9 / 12, "feet"),
  5058. weight: math.unit(379, "lbs"),
  5059. name: "Side",
  5060. image: {
  5061. source: "./media/characters/chez/side.svg"
  5062. }
  5063. }
  5064. },
  5065. [
  5066. {
  5067. name: "Normal",
  5068. height: math.unit(7 + 9 / 12, "feet"),
  5069. default: true
  5070. },
  5071. {
  5072. name: "God King",
  5073. height: math.unit(9750000, "meters")
  5074. }
  5075. ]
  5076. ))
  5077. characterMakers.push(() => makeCharacter(
  5078. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5079. {
  5080. front: {
  5081. height: math.unit(6, "feet"),
  5082. weight: math.unit(275, "lbs"),
  5083. name: "Front",
  5084. image: {
  5085. source: "./media/characters/kaylum/front.svg",
  5086. bottom: 0.01,
  5087. extra: 1166 / 1031
  5088. }
  5089. },
  5090. frontWingless: {
  5091. height: math.unit(6, "feet"),
  5092. weight: math.unit(275, "lbs"),
  5093. name: "Front (Wingless)",
  5094. image: {
  5095. source: "./media/characters/kaylum/front-wingless.svg",
  5096. bottom: 0.01,
  5097. extra: 1117 / 1031
  5098. }
  5099. }
  5100. },
  5101. [
  5102. {
  5103. name: "Normal",
  5104. height: math.unit(3.05, "meters")
  5105. },
  5106. {
  5107. name: "Master",
  5108. height: math.unit(5.5, "meters")
  5109. },
  5110. {
  5111. name: "Rampage",
  5112. height: math.unit(19, "meters")
  5113. },
  5114. {
  5115. name: "Macro Lite",
  5116. height: math.unit(37, "meters")
  5117. },
  5118. {
  5119. name: "Hyper Predator",
  5120. height: math.unit(61, "meters")
  5121. },
  5122. {
  5123. name: "Macro",
  5124. height: math.unit(138, "meters"),
  5125. default: true
  5126. }
  5127. ]
  5128. ))
  5129. characterMakers.push(() => makeCharacter(
  5130. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5131. {
  5132. front: {
  5133. height: math.unit(5 + 5 / 12, "feet"),
  5134. weight: math.unit(120, "lbs"),
  5135. name: "Front",
  5136. image: {
  5137. source: "./media/characters/geta/front.svg",
  5138. extra: 1003/933,
  5139. bottom: 21/1024
  5140. }
  5141. },
  5142. paw: {
  5143. height: math.unit(0.35, "feet"),
  5144. name: "Paw",
  5145. image: {
  5146. source: "./media/characters/geta/paw.svg"
  5147. }
  5148. },
  5149. },
  5150. [
  5151. {
  5152. name: "Micro",
  5153. height: math.unit(3, "inches"),
  5154. default: true
  5155. },
  5156. {
  5157. name: "Normal",
  5158. height: math.unit(5 + 5 / 12, "feet")
  5159. }
  5160. ]
  5161. ))
  5162. characterMakers.push(() => makeCharacter(
  5163. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5164. {
  5165. front: {
  5166. height: math.unit(6, "feet"),
  5167. weight: math.unit(300, "lbs"),
  5168. name: "Front",
  5169. image: {
  5170. source: "./media/characters/tyrnn/front.svg"
  5171. }
  5172. }
  5173. },
  5174. [
  5175. {
  5176. name: "Main Height",
  5177. height: math.unit(355, "feet"),
  5178. default: true
  5179. },
  5180. {
  5181. name: "Fave. Height",
  5182. height: math.unit(2400, "feet")
  5183. }
  5184. ]
  5185. ))
  5186. characterMakers.push(() => makeCharacter(
  5187. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5188. {
  5189. front: {
  5190. height: math.unit(6, "feet"),
  5191. weight: math.unit(300, "lbs"),
  5192. name: "Front",
  5193. image: {
  5194. source: "./media/characters/appledectomy/front.svg"
  5195. }
  5196. }
  5197. },
  5198. [
  5199. {
  5200. name: "Macro",
  5201. height: math.unit(2500, "feet")
  5202. },
  5203. {
  5204. name: "Megamacro",
  5205. height: math.unit(50, "miles"),
  5206. default: true
  5207. },
  5208. {
  5209. name: "Gigamacro",
  5210. height: math.unit(5000, "miles")
  5211. },
  5212. {
  5213. name: "Teramacro",
  5214. height: math.unit(250000, "miles")
  5215. },
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5220. {
  5221. front: {
  5222. height: math.unit(6, "feet"),
  5223. weight: math.unit(200, "lbs"),
  5224. name: "Front",
  5225. image: {
  5226. source: "./media/characters/vulpes/front.svg",
  5227. extra: 573 / 543,
  5228. bottom: 0.033
  5229. }
  5230. },
  5231. side: {
  5232. height: math.unit(6, "feet"),
  5233. weight: math.unit(200, "lbs"),
  5234. name: "Side",
  5235. image: {
  5236. source: "./media/characters/vulpes/side.svg",
  5237. extra: 577 / 549,
  5238. bottom: 11 / 588
  5239. }
  5240. },
  5241. back: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(200, "lbs"),
  5244. name: "Back",
  5245. image: {
  5246. source: "./media/characters/vulpes/back.svg",
  5247. extra: 573 / 549,
  5248. bottom: 20 / 593
  5249. }
  5250. },
  5251. feet: {
  5252. height: math.unit(1.276, "feet"),
  5253. name: "Feet",
  5254. image: {
  5255. source: "./media/characters/vulpes/feet.svg"
  5256. }
  5257. },
  5258. maw: {
  5259. height: math.unit(1.18, "feet"),
  5260. name: "Maw",
  5261. image: {
  5262. source: "./media/characters/vulpes/maw.svg"
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Micro",
  5269. height: math.unit(2, "inches")
  5270. },
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(6.3, "feet")
  5274. },
  5275. {
  5276. name: "Macro",
  5277. height: math.unit(850, "feet")
  5278. },
  5279. {
  5280. name: "Megamacro",
  5281. height: math.unit(7500, "feet"),
  5282. default: true
  5283. },
  5284. {
  5285. name: "Gigamacro",
  5286. height: math.unit(570000, "miles")
  5287. }
  5288. ]
  5289. ))
  5290. characterMakers.push(() => makeCharacter(
  5291. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5292. {
  5293. front: {
  5294. height: math.unit(6, "feet"),
  5295. weight: math.unit(210, "lbs"),
  5296. name: "Front",
  5297. image: {
  5298. source: "./media/characters/rain-fallen/front.svg"
  5299. }
  5300. },
  5301. side: {
  5302. height: math.unit(6, "feet"),
  5303. weight: math.unit(210, "lbs"),
  5304. name: "Side",
  5305. image: {
  5306. source: "./media/characters/rain-fallen/side.svg"
  5307. }
  5308. },
  5309. back: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(210, "lbs"),
  5312. name: "Back",
  5313. image: {
  5314. source: "./media/characters/rain-fallen/back.svg"
  5315. }
  5316. },
  5317. feral: {
  5318. height: math.unit(9, "feet"),
  5319. weight: math.unit(700, "lbs"),
  5320. name: "Feral",
  5321. image: {
  5322. source: "./media/characters/rain-fallen/feral.svg"
  5323. }
  5324. },
  5325. },
  5326. [
  5327. {
  5328. name: "Meddling with Mortals",
  5329. height: math.unit(8 + 8/12, "feet")
  5330. },
  5331. {
  5332. name: "Normal",
  5333. height: math.unit(5, "meter")
  5334. },
  5335. {
  5336. name: "Macro",
  5337. height: math.unit(150, "meter"),
  5338. default: true
  5339. },
  5340. {
  5341. name: "Megamacro",
  5342. height: math.unit(278e6, "meter")
  5343. },
  5344. {
  5345. name: "Gigamacro",
  5346. height: math.unit(2e9, "meter")
  5347. },
  5348. {
  5349. name: "Teramacro",
  5350. height: math.unit(8e12, "meter")
  5351. },
  5352. {
  5353. name: "Devourer",
  5354. height: math.unit(14, "zettameters")
  5355. },
  5356. {
  5357. name: "Scarlet King",
  5358. height: math.unit(18, "yottameters")
  5359. },
  5360. {
  5361. name: "Void",
  5362. height: math.unit(1e88, "yottameters")
  5363. }
  5364. ]
  5365. ))
  5366. characterMakers.push(() => makeCharacter(
  5367. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5368. {
  5369. standing: {
  5370. height: math.unit(6, "feet"),
  5371. weight: math.unit(180, "lbs"),
  5372. name: "Standing",
  5373. image: {
  5374. source: "./media/characters/zaakira/standing.svg",
  5375. extra: 1599/1504,
  5376. bottom: 39/1638
  5377. }
  5378. },
  5379. laying: {
  5380. height: math.unit(3.3, "feet"),
  5381. weight: math.unit(180, "lbs"),
  5382. name: "Laying",
  5383. image: {
  5384. source: "./media/characters/zaakira/laying.svg"
  5385. }
  5386. },
  5387. },
  5388. [
  5389. {
  5390. name: "Normal",
  5391. height: math.unit(12, "feet")
  5392. },
  5393. {
  5394. name: "Macro",
  5395. height: math.unit(279, "feet"),
  5396. default: true
  5397. }
  5398. ]
  5399. ))
  5400. characterMakers.push(() => makeCharacter(
  5401. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5402. {
  5403. femSfw: {
  5404. height: math.unit(8, "feet"),
  5405. weight: math.unit(350, "lb"),
  5406. name: "Fem",
  5407. image: {
  5408. source: "./media/characters/sigvald/fem-sfw.svg",
  5409. extra: 182 / 164,
  5410. bottom: 8.7 / 190.5
  5411. }
  5412. },
  5413. femNsfw: {
  5414. height: math.unit(8, "feet"),
  5415. weight: math.unit(350, "lb"),
  5416. name: "Fem (NSFW)",
  5417. image: {
  5418. source: "./media/characters/sigvald/fem-nsfw.svg",
  5419. extra: 182 / 164,
  5420. bottom: 8.7 / 190.5
  5421. }
  5422. },
  5423. maleNsfw: {
  5424. height: math.unit(8, "feet"),
  5425. weight: math.unit(350, "lb"),
  5426. name: "Male (NSFW)",
  5427. image: {
  5428. source: "./media/characters/sigvald/male-nsfw.svg",
  5429. extra: 182 / 164,
  5430. bottom: 8.7 / 190.5
  5431. }
  5432. },
  5433. hermNsfw: {
  5434. height: math.unit(8, "feet"),
  5435. weight: math.unit(350, "lb"),
  5436. name: "Herm (NSFW)",
  5437. image: {
  5438. source: "./media/characters/sigvald/herm-nsfw.svg",
  5439. extra: 182 / 164,
  5440. bottom: 8.7 / 190.5
  5441. }
  5442. },
  5443. dick: {
  5444. height: math.unit(2.36, "feet"),
  5445. name: "Dick",
  5446. image: {
  5447. source: "./media/characters/sigvald/dick.svg"
  5448. }
  5449. },
  5450. eye: {
  5451. height: math.unit(0.31, "feet"),
  5452. name: "Eye",
  5453. image: {
  5454. source: "./media/characters/sigvald/eye.svg"
  5455. }
  5456. },
  5457. mouth: {
  5458. height: math.unit(0.92, "feet"),
  5459. name: "Mouth",
  5460. image: {
  5461. source: "./media/characters/sigvald/mouth.svg"
  5462. }
  5463. },
  5464. paws: {
  5465. height: math.unit(2.2, "feet"),
  5466. name: "Paws",
  5467. image: {
  5468. source: "./media/characters/sigvald/paws.svg"
  5469. }
  5470. }
  5471. },
  5472. [
  5473. {
  5474. name: "Normal",
  5475. height: math.unit(8, "feet")
  5476. },
  5477. {
  5478. name: "Large",
  5479. height: math.unit(12, "feet")
  5480. },
  5481. {
  5482. name: "Larger",
  5483. height: math.unit(20, "feet")
  5484. },
  5485. {
  5486. name: "Macro",
  5487. height: math.unit(150, "feet")
  5488. },
  5489. {
  5490. name: "Macro+",
  5491. height: math.unit(200, "feet"),
  5492. default: true
  5493. },
  5494. ]
  5495. ))
  5496. characterMakers.push(() => makeCharacter(
  5497. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5498. {
  5499. side: {
  5500. height: math.unit(12, "feet"),
  5501. weight: math.unit(2000, "kg"),
  5502. name: "Side",
  5503. image: {
  5504. source: "./media/characters/scott/side.svg",
  5505. extra: 754 / 724,
  5506. bottom: 0.069
  5507. }
  5508. },
  5509. upright: {
  5510. height: math.unit(12, "feet"),
  5511. weight: math.unit(2000, "kg"),
  5512. name: "Upright",
  5513. image: {
  5514. source: "./media/characters/scott/upright.svg",
  5515. extra: 3881 / 3722,
  5516. bottom: 0.05
  5517. }
  5518. },
  5519. },
  5520. [
  5521. {
  5522. name: "Normal",
  5523. height: math.unit(12, "feet"),
  5524. default: true
  5525. },
  5526. ]
  5527. ))
  5528. characterMakers.push(() => makeCharacter(
  5529. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5530. {
  5531. side: {
  5532. height: math.unit(8, "meters"),
  5533. weight: math.unit(84755, "lbs"),
  5534. name: "Side",
  5535. image: {
  5536. source: "./media/characters/tobias/side.svg",
  5537. extra: 1474 / 1096,
  5538. bottom: 38.9 / 1513.1235
  5539. }
  5540. },
  5541. },
  5542. [
  5543. {
  5544. name: "Normal",
  5545. height: math.unit(8, "meters"),
  5546. default: true
  5547. },
  5548. ]
  5549. ))
  5550. characterMakers.push(() => makeCharacter(
  5551. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5552. {
  5553. front: {
  5554. height: math.unit(5.5, "feet"),
  5555. weight: math.unit(400, "lbs"),
  5556. name: "Front",
  5557. image: {
  5558. source: "./media/characters/kieran/front.svg",
  5559. extra: 2694 / 2364,
  5560. bottom: 217 / 2908
  5561. }
  5562. },
  5563. side: {
  5564. height: math.unit(5.5, "feet"),
  5565. weight: math.unit(400, "lbs"),
  5566. name: "Side",
  5567. image: {
  5568. source: "./media/characters/kieran/side.svg",
  5569. extra: 875 / 777,
  5570. bottom: 84.6 / 959
  5571. }
  5572. },
  5573. },
  5574. [
  5575. {
  5576. name: "Normal",
  5577. height: math.unit(5.5, "feet"),
  5578. default: true
  5579. },
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5584. {
  5585. side: {
  5586. height: math.unit(2, "meters"),
  5587. weight: math.unit(70, "kg"),
  5588. name: "Side",
  5589. image: {
  5590. source: "./media/characters/sanya/side.svg",
  5591. bottom: 0.02,
  5592. extra: 1.02
  5593. }
  5594. },
  5595. },
  5596. [
  5597. {
  5598. name: "Small",
  5599. height: math.unit(2, "meters")
  5600. },
  5601. {
  5602. name: "Normal",
  5603. height: math.unit(3, "meters")
  5604. },
  5605. {
  5606. name: "Macro",
  5607. height: math.unit(16, "meters"),
  5608. default: true
  5609. },
  5610. ]
  5611. ))
  5612. characterMakers.push(() => makeCharacter(
  5613. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5614. {
  5615. front: {
  5616. height: math.unit(2, "meters"),
  5617. weight: math.unit(120, "kg"),
  5618. name: "Front",
  5619. image: {
  5620. source: "./media/characters/miranda/front.svg",
  5621. extra: 195 / 185,
  5622. bottom: 10.9 / 206.5
  5623. }
  5624. },
  5625. back: {
  5626. height: math.unit(2, "meters"),
  5627. weight: math.unit(120, "kg"),
  5628. name: "Back",
  5629. image: {
  5630. source: "./media/characters/miranda/back.svg",
  5631. extra: 201 / 193,
  5632. bottom: 2.3 / 203.7
  5633. }
  5634. },
  5635. },
  5636. [
  5637. {
  5638. name: "Normal",
  5639. height: math.unit(10, "feet"),
  5640. default: true
  5641. }
  5642. ]
  5643. ))
  5644. characterMakers.push(() => makeCharacter(
  5645. { name: "James", species: ["deer"], tags: ["anthro"] },
  5646. {
  5647. side: {
  5648. height: math.unit(2, "meters"),
  5649. weight: math.unit(100, "kg"),
  5650. name: "Front",
  5651. image: {
  5652. source: "./media/characters/james/front.svg",
  5653. extra: 10 / 8.5
  5654. }
  5655. },
  5656. },
  5657. [
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(8.5, "feet"),
  5661. default: true
  5662. }
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5667. {
  5668. side: {
  5669. height: math.unit(9.5, "feet"),
  5670. weight: math.unit(2500, "lbs"),
  5671. name: "Side",
  5672. image: {
  5673. source: "./media/characters/heather/side.svg"
  5674. }
  5675. },
  5676. },
  5677. [
  5678. {
  5679. name: "Normal",
  5680. height: math.unit(9.5, "feet"),
  5681. default: true
  5682. }
  5683. ]
  5684. ))
  5685. characterMakers.push(() => makeCharacter(
  5686. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5687. {
  5688. side: {
  5689. height: math.unit(6.5, "feet"),
  5690. weight: math.unit(400, "lbs"),
  5691. name: "Side",
  5692. image: {
  5693. source: "./media/characters/lukas/side.svg",
  5694. extra: 7.25 / 6.5
  5695. }
  5696. },
  5697. },
  5698. [
  5699. {
  5700. name: "Normal",
  5701. height: math.unit(6.5, "feet"),
  5702. default: true
  5703. }
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5708. {
  5709. side: {
  5710. height: math.unit(5, "feet"),
  5711. weight: math.unit(3000, "lbs"),
  5712. name: "Side",
  5713. image: {
  5714. source: "./media/characters/louise/side.svg"
  5715. }
  5716. },
  5717. },
  5718. [
  5719. {
  5720. name: "Normal",
  5721. height: math.unit(5, "feet"),
  5722. default: true
  5723. }
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5728. {
  5729. side: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(150, "lbs"),
  5732. name: "Side",
  5733. image: {
  5734. source: "./media/characters/ramona/side.svg",
  5735. extra: 871/854,
  5736. bottom: 41/912
  5737. }
  5738. },
  5739. },
  5740. [
  5741. {
  5742. name: "Normal",
  5743. height: math.unit(6 + 4/12, "feet")
  5744. },
  5745. {
  5746. name: "Minimacro",
  5747. height: math.unit(5.3, "meters"),
  5748. default: true
  5749. },
  5750. {
  5751. name: "Macro",
  5752. height: math.unit(20, "stories")
  5753. },
  5754. {
  5755. name: "Macro+",
  5756. height: math.unit(50, "stories")
  5757. },
  5758. ]
  5759. ))
  5760. characterMakers.push(() => makeCharacter(
  5761. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5762. {
  5763. standing: {
  5764. height: math.unit(5.75, "feet"),
  5765. weight: math.unit(160, "lbs"),
  5766. name: "Standing",
  5767. image: {
  5768. source: "./media/characters/deerpuff/standing.svg",
  5769. extra: 682 / 624
  5770. }
  5771. },
  5772. sitting: {
  5773. height: math.unit(5.75 / 1.79, "feet"),
  5774. weight: math.unit(160, "lbs"),
  5775. name: "Sitting",
  5776. image: {
  5777. source: "./media/characters/deerpuff/sitting.svg",
  5778. bottom: 44 / 400,
  5779. extra: 1
  5780. }
  5781. },
  5782. taurLaying: {
  5783. height: math.unit(6, "feet"),
  5784. weight: math.unit(400, "lbs"),
  5785. name: "Taur (Laying)",
  5786. image: {
  5787. source: "./media/characters/deerpuff/taur-laying.svg"
  5788. }
  5789. },
  5790. },
  5791. [
  5792. {
  5793. name: "Puffball",
  5794. height: math.unit(6, "inches")
  5795. },
  5796. {
  5797. name: "Normalpuff",
  5798. height: math.unit(5.75, "feet")
  5799. },
  5800. {
  5801. name: "Macropuff",
  5802. height: math.unit(1500, "feet"),
  5803. default: true
  5804. },
  5805. {
  5806. name: "Megapuff",
  5807. height: math.unit(500, "miles")
  5808. },
  5809. {
  5810. name: "Gigapuff",
  5811. height: math.unit(250000, "miles")
  5812. },
  5813. {
  5814. name: "Omegapuff",
  5815. height: math.unit(1000, "lightyears")
  5816. },
  5817. ]
  5818. ))
  5819. characterMakers.push(() => makeCharacter(
  5820. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5821. {
  5822. stomping: {
  5823. height: math.unit(6, "feet"),
  5824. weight: math.unit(170, "lbs"),
  5825. name: "Stomping",
  5826. image: {
  5827. source: "./media/characters/vivian/stomping.svg"
  5828. }
  5829. },
  5830. sitting: {
  5831. height: math.unit(6 / 1.75, "feet"),
  5832. weight: math.unit(170, "lbs"),
  5833. name: "Sitting",
  5834. image: {
  5835. source: "./media/characters/vivian/sitting.svg",
  5836. bottom: 1 / 6.4,
  5837. extra: 1,
  5838. }
  5839. },
  5840. },
  5841. [
  5842. {
  5843. name: "Normal",
  5844. height: math.unit(7, "feet"),
  5845. default: true
  5846. },
  5847. {
  5848. name: "Macro",
  5849. height: math.unit(10, "stories")
  5850. },
  5851. {
  5852. name: "Macro+",
  5853. height: math.unit(30, "stories")
  5854. },
  5855. {
  5856. name: "Megamacro",
  5857. height: math.unit(10, "miles")
  5858. },
  5859. {
  5860. name: "Megamacro+",
  5861. height: math.unit(2750000, "meters")
  5862. },
  5863. ]
  5864. ))
  5865. characterMakers.push(() => makeCharacter(
  5866. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5867. {
  5868. front: {
  5869. height: math.unit(6, "feet"),
  5870. weight: math.unit(160, "lbs"),
  5871. name: "Front",
  5872. image: {
  5873. source: "./media/characters/prince/front.svg",
  5874. extra: 3400 / 3000
  5875. }
  5876. },
  5877. jumping: {
  5878. height: math.unit(6, "feet"),
  5879. weight: math.unit(160, "lbs"),
  5880. name: "Jumping",
  5881. image: {
  5882. source: "./media/characters/prince/jump.svg",
  5883. extra: 2555 / 2134
  5884. }
  5885. },
  5886. },
  5887. [
  5888. {
  5889. name: "Normal",
  5890. height: math.unit(7.75, "feet"),
  5891. default: true
  5892. },
  5893. {
  5894. name: "Not cute",
  5895. height: math.unit(17, "feet")
  5896. },
  5897. {
  5898. name: "I said NOT",
  5899. height: math.unit(91, "feet")
  5900. },
  5901. {
  5902. name: "Please stop",
  5903. height: math.unit(560, "feet")
  5904. },
  5905. {
  5906. name: "What have you done",
  5907. height: math.unit(2200, "feet")
  5908. },
  5909. {
  5910. name: "Deer God",
  5911. height: math.unit(3.6, "miles")
  5912. },
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5917. {
  5918. standing: {
  5919. height: math.unit(6, "feet"),
  5920. weight: math.unit(300, "lbs"),
  5921. name: "Standing",
  5922. image: {
  5923. source: "./media/characters/psymon/standing.svg",
  5924. extra: 1888 / 1810,
  5925. bottom: 0.05
  5926. }
  5927. },
  5928. slithering: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(300, "lbs"),
  5931. name: "Slithering",
  5932. image: {
  5933. source: "./media/characters/psymon/slithering.svg",
  5934. extra: 1330 / 1224
  5935. }
  5936. },
  5937. slitheringAlt: {
  5938. height: math.unit(6, "feet"),
  5939. weight: math.unit(300, "lbs"),
  5940. name: "Slithering (Alt)",
  5941. image: {
  5942. source: "./media/characters/psymon/slithering-alt.svg",
  5943. extra: 1330 / 1224
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(11.25, "feet"),
  5951. default: true
  5952. },
  5953. {
  5954. name: "Large",
  5955. height: math.unit(27, "feet")
  5956. },
  5957. {
  5958. name: "Giant",
  5959. height: math.unit(87, "feet")
  5960. },
  5961. {
  5962. name: "Macro",
  5963. height: math.unit(365, "feet")
  5964. },
  5965. {
  5966. name: "Megamacro",
  5967. height: math.unit(3, "miles")
  5968. },
  5969. {
  5970. name: "World Serpent",
  5971. height: math.unit(8000, "miles")
  5972. },
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5977. {
  5978. front: {
  5979. height: math.unit(6, "feet"),
  5980. weight: math.unit(180, "lbs"),
  5981. name: "Front",
  5982. image: {
  5983. source: "./media/characters/daimos/front.svg",
  5984. extra: 4160 / 3897,
  5985. bottom: 0.021
  5986. }
  5987. }
  5988. },
  5989. [
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(8, "feet"),
  5993. default: true
  5994. },
  5995. {
  5996. name: "Big Dog",
  5997. height: math.unit(22, "feet")
  5998. },
  5999. {
  6000. name: "Macro",
  6001. height: math.unit(127, "feet")
  6002. },
  6003. {
  6004. name: "Megamacro",
  6005. height: math.unit(3600, "feet")
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6011. {
  6012. side: {
  6013. height: math.unit(6, "feet"),
  6014. weight: math.unit(180, "lbs"),
  6015. name: "Side",
  6016. image: {
  6017. source: "./media/characters/blake/side.svg",
  6018. extra: 1212 / 1120,
  6019. bottom: 0.05
  6020. }
  6021. },
  6022. crouched: {
  6023. height: math.unit(6 * 0.57, "feet"),
  6024. weight: math.unit(180, "lbs"),
  6025. name: "Crouched",
  6026. image: {
  6027. source: "./media/characters/blake/crouched.svg",
  6028. extra: 840 / 587,
  6029. bottom: 0.04
  6030. }
  6031. },
  6032. bent: {
  6033. height: math.unit(6 * 0.75, "feet"),
  6034. weight: math.unit(180, "lbs"),
  6035. name: "Bent",
  6036. image: {
  6037. source: "./media/characters/blake/bent.svg",
  6038. extra: 592 / 544,
  6039. bottom: 0.035
  6040. }
  6041. },
  6042. },
  6043. [
  6044. {
  6045. name: "Normal",
  6046. height: math.unit(8 + 1 / 6, "feet"),
  6047. default: true
  6048. },
  6049. {
  6050. name: "Big Backside",
  6051. height: math.unit(37, "feet")
  6052. },
  6053. {
  6054. name: "Subway Shredder",
  6055. height: math.unit(72, "feet")
  6056. },
  6057. {
  6058. name: "City Carver",
  6059. height: math.unit(1675, "feet")
  6060. },
  6061. {
  6062. name: "Tectonic Tweaker",
  6063. height: math.unit(2300, "miles")
  6064. },
  6065. ]
  6066. ))
  6067. characterMakers.push(() => makeCharacter(
  6068. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6069. {
  6070. front: {
  6071. height: math.unit(6, "feet"),
  6072. weight: math.unit(180, "lbs"),
  6073. name: "Front",
  6074. image: {
  6075. source: "./media/characters/guisetto/front.svg",
  6076. extra: 856 / 817,
  6077. bottom: 0.06
  6078. }
  6079. },
  6080. airborne: {
  6081. height: math.unit(6, "feet"),
  6082. weight: math.unit(180, "lbs"),
  6083. name: "Airborne",
  6084. image: {
  6085. source: "./media/characters/guisetto/airborne.svg",
  6086. extra: 584 / 525
  6087. }
  6088. },
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(10 + 11 / 12, "feet"),
  6094. default: true
  6095. },
  6096. {
  6097. name: "Large",
  6098. height: math.unit(35, "feet")
  6099. },
  6100. {
  6101. name: "Macro",
  6102. height: math.unit(475, "feet")
  6103. },
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6108. {
  6109. front: {
  6110. height: math.unit(6, "feet"),
  6111. weight: math.unit(180, "lbs"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/luxor/front.svg",
  6115. extra: 2940 / 2152
  6116. }
  6117. },
  6118. back: {
  6119. height: math.unit(6, "feet"),
  6120. weight: math.unit(180, "lbs"),
  6121. name: "Back",
  6122. image: {
  6123. source: "./media/characters/luxor/back.svg",
  6124. extra: 1083 / 960
  6125. }
  6126. },
  6127. },
  6128. [
  6129. {
  6130. name: "Normal",
  6131. height: math.unit(5 + 5 / 6, "feet"),
  6132. default: true
  6133. },
  6134. {
  6135. name: "Lamp",
  6136. height: math.unit(50, "feet")
  6137. },
  6138. {
  6139. name: "Lämp",
  6140. height: math.unit(300, "feet")
  6141. },
  6142. {
  6143. name: "The sun is a lamp",
  6144. height: math.unit(250000, "miles")
  6145. },
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6150. {
  6151. front: {
  6152. height: math.unit(6, "feet"),
  6153. weight: math.unit(50, "lbs"),
  6154. name: "Front",
  6155. image: {
  6156. source: "./media/characters/huoyan/front.svg"
  6157. }
  6158. },
  6159. side: {
  6160. height: math.unit(6, "feet"),
  6161. weight: math.unit(180, "lbs"),
  6162. name: "Side",
  6163. image: {
  6164. source: "./media/characters/huoyan/side.svg"
  6165. }
  6166. },
  6167. },
  6168. [
  6169. {
  6170. name: "Chef",
  6171. height: math.unit(9, "feet")
  6172. },
  6173. {
  6174. name: "Normal",
  6175. height: math.unit(65, "feet"),
  6176. default: true
  6177. },
  6178. {
  6179. name: "Macro",
  6180. height: math.unit(780, "feet")
  6181. },
  6182. {
  6183. name: "Flaming Mountain",
  6184. height: math.unit(4.8, "miles")
  6185. },
  6186. {
  6187. name: "Celestial",
  6188. height: math.unit(765000, "miles")
  6189. },
  6190. ]
  6191. ))
  6192. characterMakers.push(() => makeCharacter(
  6193. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6194. {
  6195. front: {
  6196. height: math.unit(5 + 3 / 4, "feet"),
  6197. weight: math.unit(120, "lbs"),
  6198. name: "Front",
  6199. image: {
  6200. source: "./media/characters/tails/front.svg"
  6201. }
  6202. }
  6203. },
  6204. [
  6205. {
  6206. name: "Normal",
  6207. height: math.unit(5 + 3 / 4, "feet"),
  6208. default: true
  6209. }
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6214. {
  6215. front: {
  6216. height: math.unit(4, "feet"),
  6217. weight: math.unit(50, "lbs"),
  6218. name: "Front",
  6219. image: {
  6220. source: "./media/characters/rainy/front.svg"
  6221. }
  6222. }
  6223. },
  6224. [
  6225. {
  6226. name: "Macro",
  6227. height: math.unit(800, "feet"),
  6228. default: true
  6229. }
  6230. ]
  6231. ))
  6232. characterMakers.push(() => makeCharacter(
  6233. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6234. {
  6235. front: {
  6236. height: math.unit(6, "feet"),
  6237. weight: math.unit(150, "lbs"),
  6238. name: "Front",
  6239. image: {
  6240. source: "./media/characters/rainier/front.svg"
  6241. }
  6242. }
  6243. },
  6244. [
  6245. {
  6246. name: "Micro",
  6247. height: math.unit(2, "mm"),
  6248. default: true
  6249. }
  6250. ]
  6251. ))
  6252. characterMakers.push(() => makeCharacter(
  6253. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6254. {
  6255. front: {
  6256. height: math.unit(8 + 4/12, "feet"),
  6257. weight: math.unit(450, "kilograms"),
  6258. volume: math.unit(5, "cups"),
  6259. name: "Front",
  6260. image: {
  6261. source: "./media/characters/andy-renard/front.svg",
  6262. extra: 1839/1726,
  6263. bottom: 134/1973
  6264. }
  6265. },
  6266. back: {
  6267. height: math.unit(8 + 4/12, "feet"),
  6268. weight: math.unit(450, "kilograms"),
  6269. volume: math.unit(5, "cups"),
  6270. name: "Back",
  6271. image: {
  6272. source: "./media/characters/andy-renard/back.svg",
  6273. extra: 1838/1710,
  6274. bottom: 105/1943
  6275. }
  6276. },
  6277. },
  6278. [
  6279. {
  6280. name: "Tall",
  6281. height: math.unit(8 + 4/12, "feet")
  6282. },
  6283. {
  6284. name: "Mini Macro",
  6285. height: math.unit(15, "feet"),
  6286. default: true
  6287. },
  6288. {
  6289. name: "Macro",
  6290. height: math.unit(100, "feet")
  6291. },
  6292. {
  6293. name: "Mega Macro",
  6294. height: math.unit(1000, "feet")
  6295. },
  6296. {
  6297. name: "Giga Macro",
  6298. height: math.unit(10, "miles")
  6299. },
  6300. {
  6301. name: "God Macro",
  6302. height: math.unit(1, "multiverse")
  6303. },
  6304. ]
  6305. ))
  6306. characterMakers.push(() => makeCharacter(
  6307. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6308. {
  6309. front: {
  6310. height: math.unit(6, "feet"),
  6311. weight: math.unit(210, "lbs"),
  6312. name: "Front",
  6313. image: {
  6314. source: "./media/characters/cimmaron/front-sfw.svg",
  6315. extra: 701 / 676,
  6316. bottom: 0.046
  6317. }
  6318. },
  6319. back: {
  6320. height: math.unit(6, "feet"),
  6321. weight: math.unit(210, "lbs"),
  6322. name: "Back",
  6323. image: {
  6324. source: "./media/characters/cimmaron/back-sfw.svg",
  6325. extra: 701 / 676,
  6326. bottom: 0.046
  6327. }
  6328. },
  6329. frontNsfw: {
  6330. height: math.unit(6, "feet"),
  6331. weight: math.unit(210, "lbs"),
  6332. name: "Front (NSFW)",
  6333. image: {
  6334. source: "./media/characters/cimmaron/front-nsfw.svg",
  6335. extra: 701 / 676,
  6336. bottom: 0.046
  6337. }
  6338. },
  6339. backNsfw: {
  6340. height: math.unit(6, "feet"),
  6341. weight: math.unit(210, "lbs"),
  6342. name: "Back (NSFW)",
  6343. image: {
  6344. source: "./media/characters/cimmaron/back-nsfw.svg",
  6345. extra: 701 / 676,
  6346. bottom: 0.046
  6347. }
  6348. },
  6349. dick: {
  6350. height: math.unit(1.714, "feet"),
  6351. name: "Dick",
  6352. image: {
  6353. source: "./media/characters/cimmaron/dick.svg"
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(6, "feet"),
  6361. default: true
  6362. },
  6363. {
  6364. name: "Macro Mayor",
  6365. height: math.unit(350, "meters")
  6366. },
  6367. ]
  6368. ))
  6369. characterMakers.push(() => makeCharacter(
  6370. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6371. {
  6372. front: {
  6373. height: math.unit(6, "feet"),
  6374. weight: math.unit(200, "lbs"),
  6375. name: "Front",
  6376. image: {
  6377. source: "./media/characters/akari/front.svg",
  6378. extra: 962 / 901,
  6379. bottom: 0.04
  6380. }
  6381. }
  6382. },
  6383. [
  6384. {
  6385. name: "Micro",
  6386. height: math.unit(5, "inches"),
  6387. default: true
  6388. },
  6389. {
  6390. name: "Normal",
  6391. height: math.unit(7, "feet")
  6392. },
  6393. ]
  6394. ))
  6395. characterMakers.push(() => makeCharacter(
  6396. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6397. {
  6398. front: {
  6399. height: math.unit(6, "feet"),
  6400. weight: math.unit(140, "lbs"),
  6401. name: "Front",
  6402. image: {
  6403. source: "./media/characters/cynosura/front.svg",
  6404. extra: 896 / 847
  6405. }
  6406. },
  6407. back: {
  6408. height: math.unit(6, "feet"),
  6409. weight: math.unit(140, "lbs"),
  6410. name: "Back",
  6411. image: {
  6412. source: "./media/characters/cynosura/back.svg",
  6413. extra: 1365 / 1250
  6414. }
  6415. },
  6416. },
  6417. [
  6418. {
  6419. name: "Micro",
  6420. height: math.unit(4, "inches")
  6421. },
  6422. {
  6423. name: "Normal",
  6424. height: math.unit(5.75, "feet"),
  6425. default: true
  6426. },
  6427. {
  6428. name: "Tall",
  6429. height: math.unit(10, "feet")
  6430. },
  6431. {
  6432. name: "Big",
  6433. height: math.unit(20, "feet")
  6434. },
  6435. {
  6436. name: "Macro",
  6437. height: math.unit(50, "feet")
  6438. },
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6443. {
  6444. front: {
  6445. height: math.unit(13 + 2/12, "feet"),
  6446. weight: math.unit(800, "kg"),
  6447. name: "Front",
  6448. image: {
  6449. source: "./media/characters/gin/front.svg",
  6450. extra: 1312/1191,
  6451. bottom: 45/1357
  6452. }
  6453. },
  6454. mouth: {
  6455. height: math.unit(2.39 * 1.8, "feet"),
  6456. name: "Mouth",
  6457. image: {
  6458. source: "./media/characters/gin/mouth.svg"
  6459. }
  6460. },
  6461. hand: {
  6462. height: math.unit(1.57 * 2.19, "feet"),
  6463. name: "Hand",
  6464. image: {
  6465. source: "./media/characters/gin/hand.svg"
  6466. }
  6467. },
  6468. foot: {
  6469. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6470. name: "Foot",
  6471. image: {
  6472. source: "./media/characters/gin/foot.svg"
  6473. }
  6474. },
  6475. sole: {
  6476. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6477. name: "Sole",
  6478. image: {
  6479. source: "./media/characters/gin/sole.svg"
  6480. }
  6481. },
  6482. },
  6483. [
  6484. {
  6485. name: "Very Small",
  6486. height: math.unit(13 + 2 / 12, "feet")
  6487. },
  6488. {
  6489. name: "Micro",
  6490. height: math.unit(600, "miles")
  6491. },
  6492. {
  6493. name: "Regular",
  6494. height: math.unit(20, "earths"),
  6495. default: true
  6496. },
  6497. {
  6498. name: "Macro",
  6499. height: math.unit(2.2, "solarradii")
  6500. },
  6501. {
  6502. name: "Teramacro",
  6503. height: math.unit(1.2, "galaxies")
  6504. },
  6505. {
  6506. name: "Omegamacro",
  6507. height: math.unit(200, "universes")
  6508. },
  6509. ]
  6510. ))
  6511. characterMakers.push(() => makeCharacter(
  6512. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6513. {
  6514. front: {
  6515. height: math.unit(6 + 1 / 6, "feet"),
  6516. weight: math.unit(178, "lbs"),
  6517. name: "Front",
  6518. image: {
  6519. source: "./media/characters/guy/front.svg"
  6520. }
  6521. }
  6522. },
  6523. [
  6524. {
  6525. name: "Normal",
  6526. height: math.unit(6 + 1 / 6, "feet"),
  6527. default: true
  6528. },
  6529. {
  6530. name: "Large",
  6531. height: math.unit(25 + 7 / 12, "feet")
  6532. },
  6533. {
  6534. name: "Macro",
  6535. height: math.unit(60 + 9 / 12, "feet")
  6536. },
  6537. {
  6538. name: "Macro+",
  6539. height: math.unit(246, "feet")
  6540. },
  6541. {
  6542. name: "Macro++",
  6543. height: math.unit(878, "feet")
  6544. }
  6545. ]
  6546. ))
  6547. characterMakers.push(() => makeCharacter(
  6548. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6549. {
  6550. front: {
  6551. height: math.unit(9, "feet"),
  6552. weight: math.unit(800, "lbs"),
  6553. name: "Front",
  6554. image: {
  6555. source: "./media/characters/tiberius/front.svg",
  6556. extra: 2295 / 2071
  6557. }
  6558. },
  6559. back: {
  6560. height: math.unit(9, "feet"),
  6561. weight: math.unit(800, "lbs"),
  6562. name: "Back",
  6563. image: {
  6564. source: "./media/characters/tiberius/back.svg",
  6565. extra: 2373 / 2160
  6566. }
  6567. },
  6568. },
  6569. [
  6570. {
  6571. name: "Normal",
  6572. height: math.unit(9, "feet"),
  6573. default: true
  6574. }
  6575. ]
  6576. ))
  6577. characterMakers.push(() => makeCharacter(
  6578. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6579. {
  6580. front: {
  6581. height: math.unit(6, "feet"),
  6582. weight: math.unit(600, "lbs"),
  6583. name: "Front",
  6584. image: {
  6585. source: "./media/characters/surgo/front.svg",
  6586. extra: 3591 / 2227
  6587. }
  6588. },
  6589. back: {
  6590. height: math.unit(6, "feet"),
  6591. weight: math.unit(600, "lbs"),
  6592. name: "Back",
  6593. image: {
  6594. source: "./media/characters/surgo/back.svg",
  6595. extra: 3557 / 2228
  6596. }
  6597. },
  6598. laying: {
  6599. height: math.unit(6 * 0.85, "feet"),
  6600. weight: math.unit(600, "lbs"),
  6601. name: "Laying",
  6602. image: {
  6603. source: "./media/characters/surgo/laying.svg"
  6604. }
  6605. },
  6606. },
  6607. [
  6608. {
  6609. name: "Normal",
  6610. height: math.unit(6, "feet"),
  6611. default: true
  6612. }
  6613. ]
  6614. ))
  6615. characterMakers.push(() => makeCharacter(
  6616. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6617. {
  6618. side: {
  6619. height: math.unit(6, "feet"),
  6620. weight: math.unit(150, "lbs"),
  6621. name: "Side",
  6622. image: {
  6623. source: "./media/characters/cibus/side.svg",
  6624. extra: 800 / 400
  6625. }
  6626. },
  6627. },
  6628. [
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(6, "feet"),
  6632. default: true
  6633. }
  6634. ]
  6635. ))
  6636. characterMakers.push(() => makeCharacter(
  6637. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6638. {
  6639. front: {
  6640. height: math.unit(6, "feet"),
  6641. weight: math.unit(240, "lbs"),
  6642. name: "Front",
  6643. image: {
  6644. source: "./media/characters/nibbles/front.svg"
  6645. }
  6646. },
  6647. side: {
  6648. height: math.unit(6, "feet"),
  6649. weight: math.unit(240, "lbs"),
  6650. name: "Side",
  6651. image: {
  6652. source: "./media/characters/nibbles/side.svg"
  6653. }
  6654. },
  6655. },
  6656. [
  6657. {
  6658. name: "Normal",
  6659. height: math.unit(9, "feet"),
  6660. default: true
  6661. }
  6662. ]
  6663. ))
  6664. characterMakers.push(() => makeCharacter(
  6665. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6666. {
  6667. side: {
  6668. height: math.unit(5 + 1 / 6, "feet"),
  6669. weight: math.unit(130, "lbs"),
  6670. name: "Side",
  6671. image: {
  6672. source: "./media/characters/rikky/side.svg",
  6673. extra: 851 / 801
  6674. }
  6675. },
  6676. },
  6677. [
  6678. {
  6679. name: "Normal",
  6680. height: math.unit(5 + 1 / 6, "feet")
  6681. },
  6682. {
  6683. name: "Macro",
  6684. height: math.unit(152, "feet"),
  6685. default: true
  6686. },
  6687. {
  6688. name: "Megamacro",
  6689. height: math.unit(7, "miles")
  6690. }
  6691. ]
  6692. ))
  6693. characterMakers.push(() => makeCharacter(
  6694. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6695. {
  6696. side: {
  6697. height: math.unit(370, "cm"),
  6698. weight: math.unit(350, "lbs"),
  6699. name: "Side",
  6700. image: {
  6701. source: "./media/characters/malfressa/side.svg"
  6702. }
  6703. },
  6704. walking: {
  6705. height: math.unit(370, "cm"),
  6706. weight: math.unit(350, "lbs"),
  6707. name: "Walking",
  6708. image: {
  6709. source: "./media/characters/malfressa/walking.svg"
  6710. }
  6711. },
  6712. feral: {
  6713. height: math.unit(2500, "cm"),
  6714. weight: math.unit(100000, "lbs"),
  6715. name: "Feral",
  6716. image: {
  6717. source: "./media/characters/malfressa/feral.svg",
  6718. extra: 2108 / 837,
  6719. bottom: 0.02
  6720. }
  6721. },
  6722. },
  6723. [
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(370, "cm")
  6727. },
  6728. {
  6729. name: "Macro",
  6730. height: math.unit(300, "meters"),
  6731. default: true
  6732. }
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6737. {
  6738. front: {
  6739. height: math.unit(6, "feet"),
  6740. weight: math.unit(60, "kg"),
  6741. name: "Front",
  6742. image: {
  6743. source: "./media/characters/jaro/front.svg",
  6744. extra: 845/817,
  6745. bottom: 45/890
  6746. }
  6747. },
  6748. back: {
  6749. height: math.unit(6, "feet"),
  6750. weight: math.unit(60, "kg"),
  6751. name: "Back",
  6752. image: {
  6753. source: "./media/characters/jaro/back.svg",
  6754. extra: 847/817,
  6755. bottom: 34/881
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Micro",
  6762. height: math.unit(7, "inches")
  6763. },
  6764. {
  6765. name: "Normal",
  6766. height: math.unit(5.5, "feet"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Minimacro",
  6771. height: math.unit(20, "feet")
  6772. },
  6773. {
  6774. name: "Macro",
  6775. height: math.unit(200, "meters")
  6776. }
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6781. {
  6782. front: {
  6783. height: math.unit(6, "feet"),
  6784. weight: math.unit(195, "lb"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/rogue/front.svg"
  6788. }
  6789. },
  6790. },
  6791. [
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(90, "feet"),
  6795. default: true
  6796. },
  6797. ]
  6798. ))
  6799. characterMakers.push(() => makeCharacter(
  6800. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6801. {
  6802. standing: {
  6803. height: math.unit(5 + 8 / 12, "feet"),
  6804. weight: math.unit(140, "lb"),
  6805. name: "Standing",
  6806. image: {
  6807. source: "./media/characters/piper/standing.svg",
  6808. extra: 1440/1284,
  6809. bottom: 66/1506
  6810. }
  6811. },
  6812. running: {
  6813. height: math.unit(5 + 8 / 12, "feet"),
  6814. weight: math.unit(140, "lb"),
  6815. name: "Running",
  6816. image: {
  6817. source: "./media/characters/piper/running.svg",
  6818. extra: 3948/3655,
  6819. bottom: 0/3948
  6820. }
  6821. },
  6822. sole: {
  6823. height: math.unit(0.81, "feet"),
  6824. weight: math.unit(2, "kg"),
  6825. name: "Sole",
  6826. image: {
  6827. source: "./media/characters/piper/sole.svg"
  6828. }
  6829. },
  6830. nipple: {
  6831. height: math.unit(0.25, "feet"),
  6832. weight: math.unit(1.5, "lb"),
  6833. name: "Nipple",
  6834. image: {
  6835. source: "./media/characters/piper/nipple.svg"
  6836. }
  6837. },
  6838. head: {
  6839. height: math.unit(1.1, "feet"),
  6840. name: "Head",
  6841. image: {
  6842. source: "./media/characters/piper/head.svg"
  6843. }
  6844. },
  6845. },
  6846. [
  6847. {
  6848. name: "Micro",
  6849. height: math.unit(2, "inches")
  6850. },
  6851. {
  6852. name: "Normal",
  6853. height: math.unit(5 + 8 / 12, "feet")
  6854. },
  6855. {
  6856. name: "Macro",
  6857. height: math.unit(250, "feet"),
  6858. default: true
  6859. },
  6860. {
  6861. name: "Megamacro",
  6862. height: math.unit(7, "miles")
  6863. },
  6864. ]
  6865. ))
  6866. characterMakers.push(() => makeCharacter(
  6867. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6868. {
  6869. front: {
  6870. height: math.unit(6, "feet"),
  6871. weight: math.unit(220, "lb"),
  6872. name: "Front",
  6873. image: {
  6874. source: "./media/characters/gemini/front.svg"
  6875. }
  6876. },
  6877. back: {
  6878. height: math.unit(6, "feet"),
  6879. weight: math.unit(220, "lb"),
  6880. name: "Back",
  6881. image: {
  6882. source: "./media/characters/gemini/back.svg"
  6883. }
  6884. },
  6885. kneeling: {
  6886. height: math.unit(6 / 1.5, "feet"),
  6887. weight: math.unit(220, "lb"),
  6888. name: "Kneeling",
  6889. image: {
  6890. source: "./media/characters/gemini/kneeling.svg",
  6891. bottom: 0.02
  6892. }
  6893. },
  6894. },
  6895. [
  6896. {
  6897. name: "Macro",
  6898. height: math.unit(300, "meters"),
  6899. default: true
  6900. },
  6901. {
  6902. name: "Megamacro",
  6903. height: math.unit(6900, "meters")
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6909. {
  6910. anthro: {
  6911. height: math.unit(2.35, "meters"),
  6912. weight: math.unit(73, "kg"),
  6913. name: "Anthro",
  6914. image: {
  6915. source: "./media/characters/alicia/anthro.svg",
  6916. extra: 2571 / 2385,
  6917. bottom: 75 / 2648
  6918. }
  6919. },
  6920. paw: {
  6921. height: math.unit(1.32, "feet"),
  6922. name: "Paw",
  6923. image: {
  6924. source: "./media/characters/alicia/paw.svg"
  6925. }
  6926. },
  6927. feral: {
  6928. height: math.unit(1.69, "meters"),
  6929. weight: math.unit(73, "kg"),
  6930. name: "Feral",
  6931. image: {
  6932. source: "./media/characters/alicia/feral.svg",
  6933. extra: 2123 / 1715,
  6934. bottom: 222 / 2349
  6935. }
  6936. },
  6937. },
  6938. [
  6939. {
  6940. name: "Normal",
  6941. height: math.unit(2.35, "meters")
  6942. },
  6943. {
  6944. name: "Macro",
  6945. height: math.unit(60, "meters"),
  6946. default: true
  6947. },
  6948. {
  6949. name: "Megamacro",
  6950. height: math.unit(10000, "kilometers")
  6951. },
  6952. ]
  6953. ))
  6954. characterMakers.push(() => makeCharacter(
  6955. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6956. {
  6957. front: {
  6958. height: math.unit(7, "feet"),
  6959. weight: math.unit(250, "lbs"),
  6960. name: "Front",
  6961. image: {
  6962. source: "./media/characters/archy/front.svg"
  6963. }
  6964. }
  6965. },
  6966. [
  6967. {
  6968. name: "Micro",
  6969. height: math.unit(1, "inch")
  6970. },
  6971. {
  6972. name: "Shorty",
  6973. height: math.unit(5, "feet")
  6974. },
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(7, "feet")
  6978. },
  6979. {
  6980. name: "Macro",
  6981. height: math.unit(600, "meters"),
  6982. default: true
  6983. },
  6984. {
  6985. name: "Megamacro",
  6986. height: math.unit(1, "mile")
  6987. },
  6988. ]
  6989. ))
  6990. characterMakers.push(() => makeCharacter(
  6991. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6992. {
  6993. front: {
  6994. height: math.unit(1.65, "meters"),
  6995. weight: math.unit(74, "kg"),
  6996. name: "Front",
  6997. image: {
  6998. source: "./media/characters/berri/front.svg",
  6999. extra: 857 / 837,
  7000. bottom: 18 / 877
  7001. }
  7002. },
  7003. bum: {
  7004. height: math.unit(1.46, "feet"),
  7005. name: "Bum",
  7006. image: {
  7007. source: "./media/characters/berri/bum.svg"
  7008. }
  7009. },
  7010. mouth: {
  7011. height: math.unit(0.44, "feet"),
  7012. name: "Mouth",
  7013. image: {
  7014. source: "./media/characters/berri/mouth.svg"
  7015. }
  7016. },
  7017. paw: {
  7018. height: math.unit(0.826, "feet"),
  7019. name: "Paw",
  7020. image: {
  7021. source: "./media/characters/berri/paw.svg"
  7022. }
  7023. },
  7024. },
  7025. [
  7026. {
  7027. name: "Normal",
  7028. height: math.unit(1.65, "meters")
  7029. },
  7030. {
  7031. name: "Macro",
  7032. height: math.unit(60, "m"),
  7033. default: true
  7034. },
  7035. {
  7036. name: "Megamacro",
  7037. height: math.unit(9.213, "km")
  7038. },
  7039. {
  7040. name: "Planet Eater",
  7041. height: math.unit(489, "megameters")
  7042. },
  7043. {
  7044. name: "Teramacro",
  7045. height: math.unit(2471635000000, "meters")
  7046. },
  7047. {
  7048. name: "Examacro",
  7049. height: math.unit(8.0624e+26, "meters")
  7050. }
  7051. ]
  7052. ))
  7053. characterMakers.push(() => makeCharacter(
  7054. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7055. {
  7056. front: {
  7057. height: math.unit(1.72, "meters"),
  7058. weight: math.unit(68, "kg"),
  7059. name: "Front",
  7060. image: {
  7061. source: "./media/characters/lexi/front.svg"
  7062. }
  7063. }
  7064. },
  7065. [
  7066. {
  7067. name: "Very Smol",
  7068. height: math.unit(10, "mm")
  7069. },
  7070. {
  7071. name: "Micro",
  7072. height: math.unit(6.8, "cm"),
  7073. default: true
  7074. },
  7075. {
  7076. name: "Normal",
  7077. height: math.unit(1.72, "m")
  7078. }
  7079. ]
  7080. ))
  7081. characterMakers.push(() => makeCharacter(
  7082. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7083. {
  7084. front: {
  7085. height: math.unit(1.69, "meters"),
  7086. weight: math.unit(68, "kg"),
  7087. name: "Front",
  7088. image: {
  7089. source: "./media/characters/martin/front.svg",
  7090. extra: 596 / 581
  7091. }
  7092. }
  7093. },
  7094. [
  7095. {
  7096. name: "Micro",
  7097. height: math.unit(6.85, "cm"),
  7098. default: true
  7099. },
  7100. {
  7101. name: "Normal",
  7102. height: math.unit(1.69, "m")
  7103. }
  7104. ]
  7105. ))
  7106. characterMakers.push(() => makeCharacter(
  7107. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7108. {
  7109. front: {
  7110. height: math.unit(1.69, "meters"),
  7111. weight: math.unit(68, "kg"),
  7112. name: "Front",
  7113. image: {
  7114. source: "./media/characters/juno/front.svg"
  7115. }
  7116. }
  7117. },
  7118. [
  7119. {
  7120. name: "Micro",
  7121. height: math.unit(7, "cm")
  7122. },
  7123. {
  7124. name: "Normal",
  7125. height: math.unit(1.89, "m")
  7126. },
  7127. {
  7128. name: "Macro",
  7129. height: math.unit(353, "meters"),
  7130. default: true
  7131. }
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7136. {
  7137. front: {
  7138. height: math.unit(1.93, "meters"),
  7139. weight: math.unit(83, "kg"),
  7140. name: "Front",
  7141. image: {
  7142. source: "./media/characters/samantha/front.svg"
  7143. }
  7144. },
  7145. frontClothed: {
  7146. height: math.unit(1.93, "meters"),
  7147. weight: math.unit(83, "kg"),
  7148. name: "Front (Clothed)",
  7149. image: {
  7150. source: "./media/characters/samantha/front-clothed.svg"
  7151. }
  7152. },
  7153. back: {
  7154. height: math.unit(1.93, "meters"),
  7155. weight: math.unit(83, "kg"),
  7156. name: "Back",
  7157. image: {
  7158. source: "./media/characters/samantha/back.svg"
  7159. }
  7160. },
  7161. },
  7162. [
  7163. {
  7164. name: "Normal",
  7165. height: math.unit(1.93, "m")
  7166. },
  7167. {
  7168. name: "Macro",
  7169. height: math.unit(74, "meters"),
  7170. default: true
  7171. },
  7172. {
  7173. name: "Macro+",
  7174. height: math.unit(223, "meters"),
  7175. },
  7176. {
  7177. name: "Megamacro",
  7178. height: math.unit(8381, "meters"),
  7179. },
  7180. {
  7181. name: "Megamacro+",
  7182. height: math.unit(12000, "kilometers")
  7183. },
  7184. ]
  7185. ))
  7186. characterMakers.push(() => makeCharacter(
  7187. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7188. {
  7189. front: {
  7190. height: math.unit(1.92, "meters"),
  7191. weight: math.unit(80, "kg"),
  7192. name: "Front",
  7193. image: {
  7194. source: "./media/characters/dr-clay/front.svg"
  7195. }
  7196. },
  7197. frontClothed: {
  7198. height: math.unit(1.92, "meters"),
  7199. weight: math.unit(80, "kg"),
  7200. name: "Front (Clothed)",
  7201. image: {
  7202. source: "./media/characters/dr-clay/front-clothed.svg"
  7203. }
  7204. }
  7205. },
  7206. [
  7207. {
  7208. name: "Normal",
  7209. height: math.unit(1.92, "m")
  7210. },
  7211. {
  7212. name: "Macro",
  7213. height: math.unit(214, "meters"),
  7214. default: true
  7215. },
  7216. {
  7217. name: "Macro+",
  7218. height: math.unit(12.237, "meters"),
  7219. },
  7220. {
  7221. name: "Megamacro",
  7222. height: math.unit(557, "megameters"),
  7223. },
  7224. {
  7225. name: "Unimaginable",
  7226. height: math.unit(120e9, "lightyears")
  7227. },
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7232. {
  7233. front: {
  7234. height: math.unit(2, "meters"),
  7235. weight: math.unit(80, "kg"),
  7236. name: "Front",
  7237. image: {
  7238. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7239. }
  7240. }
  7241. },
  7242. [
  7243. {
  7244. name: "Teramacro",
  7245. height: math.unit(500000, "lightyears"),
  7246. default: true
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7252. {
  7253. crux: {
  7254. height: math.unit(2, "meters"),
  7255. weight: math.unit(150, "kg"),
  7256. name: "Crux",
  7257. image: {
  7258. source: "./media/characters/vemus/crux.svg",
  7259. extra: 1074/936,
  7260. bottom: 23/1097
  7261. }
  7262. },
  7263. skunkTanuki: {
  7264. height: math.unit(2, "meters"),
  7265. weight: math.unit(150, "kg"),
  7266. name: "Skunk-Tanuki",
  7267. image: {
  7268. source: "./media/characters/vemus/skunk-tanuki.svg",
  7269. extra: 926/893,
  7270. bottom: 20/946
  7271. }
  7272. },
  7273. },
  7274. [
  7275. {
  7276. name: "Normal",
  7277. height: math.unit(4, "meters"),
  7278. default: true
  7279. },
  7280. {
  7281. name: "Big",
  7282. height: math.unit(8, "meters")
  7283. },
  7284. {
  7285. name: "Macro",
  7286. height: math.unit(100, "meters")
  7287. },
  7288. {
  7289. name: "Macro+",
  7290. height: math.unit(1500, "meters")
  7291. },
  7292. {
  7293. name: "Stellar",
  7294. height: math.unit(14e8, "meters")
  7295. },
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(2, "meters"),
  7303. weight: math.unit(70, "kg"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/beherit/front.svg",
  7307. extra: 1234/1109,
  7308. bottom: 55/1289
  7309. }
  7310. }
  7311. },
  7312. [
  7313. {
  7314. name: "Normal",
  7315. height: math.unit(6, "feet")
  7316. },
  7317. {
  7318. name: "Lorg",
  7319. height: math.unit(25, "feet"),
  7320. default: true
  7321. },
  7322. {
  7323. name: "Lorger",
  7324. height: math.unit(75, "feet")
  7325. },
  7326. {
  7327. name: "Macro",
  7328. height: math.unit(200, "meters")
  7329. },
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7334. {
  7335. front: {
  7336. height: math.unit(2, "meters"),
  7337. weight: math.unit(150, "kg"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/everett/front.svg",
  7341. extra: 1017/866,
  7342. bottom: 86/1103
  7343. }
  7344. },
  7345. paw: {
  7346. height: math.unit(2 / 3.6, "meters"),
  7347. name: "Paw",
  7348. image: {
  7349. source: "./media/characters/everett/paw.svg"
  7350. }
  7351. },
  7352. },
  7353. [
  7354. {
  7355. name: "Normal",
  7356. height: math.unit(15, "feet"),
  7357. default: true
  7358. },
  7359. {
  7360. name: "Lorg",
  7361. height: math.unit(70, "feet"),
  7362. default: true
  7363. },
  7364. {
  7365. name: "Lorger",
  7366. height: math.unit(250, "feet")
  7367. },
  7368. {
  7369. name: "Macro",
  7370. height: math.unit(500, "meters")
  7371. },
  7372. ]
  7373. ))
  7374. characterMakers.push(() => makeCharacter(
  7375. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7376. {
  7377. front: {
  7378. height: math.unit(2, "meters"),
  7379. weight: math.unit(86, "kg"),
  7380. name: "Front",
  7381. image: {
  7382. source: "./media/characters/rose/front.svg",
  7383. extra: 1785/1636,
  7384. bottom: 30/1815
  7385. },
  7386. form: "liom",
  7387. default: true
  7388. },
  7389. frontSporty: {
  7390. height: math.unit(2, "meters"),
  7391. weight: math.unit(86, "kg"),
  7392. name: "Front (Sporty)",
  7393. image: {
  7394. source: "./media/characters/rose/front-sporty.svg",
  7395. extra: 350/335,
  7396. bottom: 10/360
  7397. },
  7398. form: "liom"
  7399. },
  7400. frontAlt: {
  7401. height: math.unit(1.6, "meters"),
  7402. weight: math.unit(86, "kg"),
  7403. name: "Front (Alt)",
  7404. image: {
  7405. source: "./media/characters/rose/front-alt.svg",
  7406. extra: 299/283,
  7407. bottom: 3/302
  7408. },
  7409. form: "liom"
  7410. },
  7411. plush: {
  7412. height: math.unit(2, "meters"),
  7413. weight: math.unit(86/3, "kg"),
  7414. name: "Plush",
  7415. image: {
  7416. source: "./media/characters/rose/plush.svg",
  7417. extra: 361/337,
  7418. bottom: 11/372
  7419. },
  7420. form: "plush",
  7421. default: true
  7422. },
  7423. faeStanding: {
  7424. height: math.unit(10, "cm"),
  7425. weight: math.unit(10, "grams"),
  7426. name: "Standing",
  7427. image: {
  7428. source: "./media/characters/rose/fae-standing.svg",
  7429. extra: 1189/1060,
  7430. bottom: 27/1216
  7431. },
  7432. form: "fae",
  7433. default: true
  7434. },
  7435. faeSitting: {
  7436. height: math.unit(5, "cm"),
  7437. weight: math.unit(10, "grams"),
  7438. name: "Sitting",
  7439. image: {
  7440. source: "./media/characters/rose/fae-sitting.svg",
  7441. extra: 737/577,
  7442. bottom: 356/1093
  7443. },
  7444. form: "fae"
  7445. },
  7446. faePaw: {
  7447. height: math.unit(1.35, "cm"),
  7448. name: "Paw",
  7449. image: {
  7450. source: "./media/characters/rose/fae-paw.svg"
  7451. },
  7452. form: "fae"
  7453. },
  7454. },
  7455. [
  7456. {
  7457. name: "True Micro",
  7458. height: math.unit(9, "cm"),
  7459. form: "liom"
  7460. },
  7461. {
  7462. name: "Micro",
  7463. height: math.unit(16, "cm"),
  7464. form: "liom"
  7465. },
  7466. {
  7467. name: "Normal",
  7468. height: math.unit(1.85, "meters"),
  7469. default: true,
  7470. form: "liom"
  7471. },
  7472. {
  7473. name: "Mini-Macro",
  7474. height: math.unit(5, "meters"),
  7475. form: "liom"
  7476. },
  7477. {
  7478. name: "Macro",
  7479. height: math.unit(15, "meters"),
  7480. form: "liom"
  7481. },
  7482. {
  7483. name: "True Macro",
  7484. height: math.unit(40, "meters"),
  7485. form: "liom"
  7486. },
  7487. {
  7488. name: "City Scale",
  7489. height: math.unit(1, "km"),
  7490. form: "liom"
  7491. },
  7492. {
  7493. name: "Plushie",
  7494. height: math.unit(9, "cm"),
  7495. form: "plush",
  7496. default: true
  7497. },
  7498. {
  7499. name: "Fae",
  7500. height: math.unit(10, "cm"),
  7501. form: "fae",
  7502. default: true
  7503. },
  7504. ],
  7505. {
  7506. "liom": {
  7507. name: "Liom"
  7508. },
  7509. "plush": {
  7510. name: "Plush"
  7511. },
  7512. "fae": {
  7513. name: "Fae Fox",
  7514. default: true
  7515. }
  7516. }
  7517. ))
  7518. characterMakers.push(() => makeCharacter(
  7519. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7520. {
  7521. front: {
  7522. height: math.unit(2, "meters"),
  7523. weight: math.unit(350, "lbs"),
  7524. name: "Front",
  7525. image: {
  7526. source: "./media/characters/regal/front.svg"
  7527. }
  7528. },
  7529. back: {
  7530. height: math.unit(2, "meters"),
  7531. weight: math.unit(350, "lbs"),
  7532. name: "Back",
  7533. image: {
  7534. source: "./media/characters/regal/back.svg"
  7535. }
  7536. },
  7537. },
  7538. [
  7539. {
  7540. name: "Macro",
  7541. height: math.unit(350, "feet"),
  7542. default: true
  7543. }
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(4 + 11 / 12, "feet"),
  7551. weight: math.unit(100, "lbs"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/opal/front.svg"
  7555. }
  7556. },
  7557. frontAlt: {
  7558. height: math.unit(4 + 11 / 12, "feet"),
  7559. weight: math.unit(100, "lbs"),
  7560. name: "Front (Alt)",
  7561. image: {
  7562. source: "./media/characters/opal/front-alt.svg"
  7563. }
  7564. },
  7565. },
  7566. [
  7567. {
  7568. name: "Small",
  7569. height: math.unit(4 + 11 / 12, "feet")
  7570. },
  7571. {
  7572. name: "Normal",
  7573. height: math.unit(20, "feet"),
  7574. default: true
  7575. },
  7576. {
  7577. name: "Macro",
  7578. height: math.unit(120, "feet")
  7579. },
  7580. {
  7581. name: "Megamacro",
  7582. height: math.unit(80, "miles")
  7583. },
  7584. {
  7585. name: "True Size",
  7586. height: math.unit(100000, "lightyears")
  7587. },
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7592. {
  7593. front: {
  7594. height: math.unit(6, "feet"),
  7595. weight: math.unit(200, "lbs"),
  7596. name: "Front",
  7597. image: {
  7598. source: "./media/characters/vector-wuff/front.svg"
  7599. }
  7600. }
  7601. },
  7602. [
  7603. {
  7604. name: "Normal",
  7605. height: math.unit(2.8, "meters")
  7606. },
  7607. {
  7608. name: "Macro",
  7609. height: math.unit(450, "meters"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Megamacro",
  7614. height: math.unit(15, "kilometers")
  7615. }
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(256, "lbs"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/dannik/front.svg"
  7627. }
  7628. }
  7629. },
  7630. [
  7631. {
  7632. name: "Macro",
  7633. height: math.unit(69.57, "meters"),
  7634. default: true
  7635. },
  7636. ]
  7637. ))
  7638. characterMakers.push(() => makeCharacter(
  7639. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7640. {
  7641. front: {
  7642. height: math.unit(6, "feet"),
  7643. weight: math.unit(120, "lbs"),
  7644. name: "Front",
  7645. image: {
  7646. source: "./media/characters/azura-saharah/front.svg"
  7647. }
  7648. },
  7649. back: {
  7650. height: math.unit(6, "feet"),
  7651. weight: math.unit(120, "lbs"),
  7652. name: "Back",
  7653. image: {
  7654. source: "./media/characters/azura-saharah/back.svg"
  7655. }
  7656. },
  7657. },
  7658. [
  7659. {
  7660. name: "Macro",
  7661. height: math.unit(100, "feet"),
  7662. default: true
  7663. },
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7668. {
  7669. side: {
  7670. height: math.unit(5 + 4 / 12, "feet"),
  7671. weight: math.unit(163, "lbs"),
  7672. name: "Side",
  7673. image: {
  7674. source: "./media/characters/kennedy/side.svg"
  7675. }
  7676. }
  7677. },
  7678. [
  7679. {
  7680. name: "Standard Doggo",
  7681. height: math.unit(5 + 4 / 12, "feet")
  7682. },
  7683. {
  7684. name: "Big Doggo",
  7685. height: math.unit(25 + 3 / 12, "feet"),
  7686. default: true
  7687. },
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7692. {
  7693. front: {
  7694. height: math.unit(5 + 5/12, "feet"),
  7695. weight: math.unit(100, "lbs"),
  7696. name: "Front",
  7697. image: {
  7698. source: "./media/characters/odios-de-lunar/front.svg",
  7699. extra: 1468/1323,
  7700. bottom: 22/1490
  7701. }
  7702. }
  7703. },
  7704. [
  7705. {
  7706. name: "Micro",
  7707. height: math.unit(3, "inches")
  7708. },
  7709. {
  7710. name: "Normal",
  7711. height: math.unit(5.5, "feet"),
  7712. default: true
  7713. },
  7714. {
  7715. name: "Macro",
  7716. height: math.unit(100, "feet")
  7717. },
  7718. ]
  7719. ))
  7720. characterMakers.push(() => makeCharacter(
  7721. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7722. {
  7723. back: {
  7724. height: math.unit(6, "feet"),
  7725. weight: math.unit(220, "lbs"),
  7726. name: "Back",
  7727. image: {
  7728. source: "./media/characters/mandake/back.svg"
  7729. }
  7730. }
  7731. },
  7732. [
  7733. {
  7734. name: "Normal",
  7735. height: math.unit(7, "feet"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Macro",
  7740. height: math.unit(78, "feet")
  7741. },
  7742. {
  7743. name: "Macro+",
  7744. height: math.unit(300, "meters")
  7745. },
  7746. {
  7747. name: "Macro++",
  7748. height: math.unit(2400, "feet")
  7749. },
  7750. {
  7751. name: "Megamacro",
  7752. height: math.unit(5167, "meters")
  7753. },
  7754. {
  7755. name: "Gigamacro",
  7756. height: math.unit(41769, "miles")
  7757. },
  7758. ]
  7759. ))
  7760. characterMakers.push(() => makeCharacter(
  7761. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7762. {
  7763. front: {
  7764. height: math.unit(6, "feet"),
  7765. weight: math.unit(120, "lbs"),
  7766. name: "Front",
  7767. image: {
  7768. source: "./media/characters/yozey/front.svg"
  7769. }
  7770. },
  7771. frontAlt: {
  7772. height: math.unit(6, "feet"),
  7773. weight: math.unit(120, "lbs"),
  7774. name: "Front (Alt)",
  7775. image: {
  7776. source: "./media/characters/yozey/front-alt.svg"
  7777. }
  7778. },
  7779. side: {
  7780. height: math.unit(6, "feet"),
  7781. weight: math.unit(120, "lbs"),
  7782. name: "Side",
  7783. image: {
  7784. source: "./media/characters/yozey/side.svg"
  7785. }
  7786. },
  7787. },
  7788. [
  7789. {
  7790. name: "Micro",
  7791. height: math.unit(3, "inches"),
  7792. default: true
  7793. },
  7794. {
  7795. name: "Normal",
  7796. height: math.unit(6, "feet")
  7797. }
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(103, "lbs"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/valeska-voss/front.svg"
  7809. }
  7810. }
  7811. },
  7812. [
  7813. {
  7814. name: "Mini-Sized Sub",
  7815. height: math.unit(3.1, "inches")
  7816. },
  7817. {
  7818. name: "Mid-Sized Sub",
  7819. height: math.unit(6.2, "inches")
  7820. },
  7821. {
  7822. name: "Full-Sized Sub",
  7823. height: math.unit(9.3, "inches")
  7824. },
  7825. {
  7826. name: "Normal",
  7827. height: math.unit(5 + 2 / 12, "foot"),
  7828. default: true
  7829. },
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(160, "lbs"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/gene-zeta/front.svg",
  7841. extra: 3006 / 2826,
  7842. bottom: 182 / 3188
  7843. }
  7844. }
  7845. },
  7846. [
  7847. {
  7848. name: "Micro",
  7849. height: math.unit(6, "inches")
  7850. },
  7851. {
  7852. name: "Normal",
  7853. height: math.unit(5 + 11 / 12, "foot"),
  7854. default: true
  7855. },
  7856. {
  7857. name: "Macro",
  7858. height: math.unit(140, "feet")
  7859. },
  7860. {
  7861. name: "Supercharged",
  7862. height: math.unit(2500, "feet")
  7863. },
  7864. ]
  7865. ))
  7866. characterMakers.push(() => makeCharacter(
  7867. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7868. {
  7869. front: {
  7870. height: math.unit(6, "feet"),
  7871. weight: math.unit(350, "lbs"),
  7872. name: "Front",
  7873. image: {
  7874. source: "./media/characters/razinox/front.svg",
  7875. extra: 1686 / 1548,
  7876. bottom: 28.2 / 1868
  7877. }
  7878. },
  7879. back: {
  7880. height: math.unit(6, "feet"),
  7881. weight: math.unit(350, "lbs"),
  7882. name: "Back",
  7883. image: {
  7884. source: "./media/characters/razinox/back.svg",
  7885. extra: 1660 / 1590,
  7886. bottom: 15 / 1665
  7887. }
  7888. },
  7889. },
  7890. [
  7891. {
  7892. name: "Normal",
  7893. height: math.unit(10 + 8 / 12, "foot")
  7894. },
  7895. {
  7896. name: "Minimacro",
  7897. height: math.unit(15, "foot")
  7898. },
  7899. {
  7900. name: "Macro",
  7901. height: math.unit(60, "foot"),
  7902. default: true
  7903. },
  7904. {
  7905. name: "Megamacro",
  7906. height: math.unit(5, "miles")
  7907. },
  7908. {
  7909. name: "Gigamacro",
  7910. height: math.unit(6000, "miles")
  7911. },
  7912. ]
  7913. ))
  7914. characterMakers.push(() => makeCharacter(
  7915. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7916. {
  7917. front: {
  7918. height: math.unit(6, "feet"),
  7919. weight: math.unit(150, "lbs"),
  7920. name: "Front",
  7921. image: {
  7922. source: "./media/characters/cobalt/front.svg"
  7923. }
  7924. }
  7925. },
  7926. [
  7927. {
  7928. name: "Normal",
  7929. height: math.unit(8 + 1 / 12, "foot")
  7930. },
  7931. {
  7932. name: "Macro",
  7933. height: math.unit(111, "foot"),
  7934. default: true
  7935. },
  7936. {
  7937. name: "Supracosmic",
  7938. height: math.unit(1e42, "feet")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(5, "inches"),
  7947. name: "Front",
  7948. image: {
  7949. source: "./media/characters/amanda/front.svg",
  7950. extra: 926/791,
  7951. bottom: 38/964
  7952. }
  7953. },
  7954. back: {
  7955. height: math.unit(5, "inches"),
  7956. name: "Back",
  7957. image: {
  7958. source: "./media/characters/amanda/back.svg",
  7959. extra: 909/805,
  7960. bottom: 43/952
  7961. }
  7962. },
  7963. },
  7964. [
  7965. {
  7966. name: "Micro",
  7967. height: math.unit(5, "inches"),
  7968. default: true
  7969. },
  7970. ]
  7971. ))
  7972. characterMakers.push(() => makeCharacter(
  7973. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7974. {
  7975. front: {
  7976. height: math.unit(2.75, "meters"),
  7977. weight: math.unit(1200, "lb"),
  7978. name: "Front",
  7979. image: {
  7980. source: "./media/characters/teal/front.svg",
  7981. extra: 2463 / 2320,
  7982. bottom: 166 / 2629
  7983. }
  7984. },
  7985. back: {
  7986. height: math.unit(2.75, "meters"),
  7987. weight: math.unit(1200, "lb"),
  7988. name: "Back",
  7989. image: {
  7990. source: "./media/characters/teal/back.svg",
  7991. extra: 2580 / 2489,
  7992. bottom: 151 / 2731
  7993. }
  7994. },
  7995. sitting: {
  7996. height: math.unit(1.9, "meters"),
  7997. weight: math.unit(1200, "lb"),
  7998. name: "Sitting",
  7999. image: {
  8000. source: "./media/characters/teal/sitting.svg",
  8001. extra: 623 / 590,
  8002. bottom: 121 / 744
  8003. }
  8004. },
  8005. standing: {
  8006. height: math.unit(2.75, "meters"),
  8007. weight: math.unit(1200, "lb"),
  8008. name: "Standing",
  8009. image: {
  8010. source: "./media/characters/teal/standing.svg",
  8011. extra: 923 / 893,
  8012. bottom: 60 / 983
  8013. }
  8014. },
  8015. stretching: {
  8016. height: math.unit(3.65, "meters"),
  8017. weight: math.unit(1200, "lb"),
  8018. name: "Stretching",
  8019. image: {
  8020. source: "./media/characters/teal/stretching.svg",
  8021. extra: 1276 / 1244,
  8022. bottom: 0 / 1276
  8023. }
  8024. },
  8025. legged: {
  8026. height: math.unit(1.3, "meters"),
  8027. weight: math.unit(100, "lb"),
  8028. name: "Legged",
  8029. image: {
  8030. source: "./media/characters/teal/legged.svg",
  8031. extra: 462 / 437,
  8032. bottom: 24 / 486
  8033. }
  8034. },
  8035. naga: {
  8036. height: math.unit(5.4, "meters"),
  8037. weight: math.unit(4000, "lb"),
  8038. name: "Naga",
  8039. image: {
  8040. source: "./media/characters/teal/naga.svg",
  8041. extra: 1902 / 1858,
  8042. bottom: 0 / 1902
  8043. }
  8044. },
  8045. hand: {
  8046. height: math.unit(0.52, "meters"),
  8047. name: "Hand",
  8048. image: {
  8049. source: "./media/characters/teal/hand.svg"
  8050. }
  8051. },
  8052. maw: {
  8053. height: math.unit(0.43, "meters"),
  8054. name: "Maw",
  8055. image: {
  8056. source: "./media/characters/teal/maw.svg"
  8057. }
  8058. },
  8059. slit: {
  8060. height: math.unit(0.25, "meters"),
  8061. name: "Slit",
  8062. image: {
  8063. source: "./media/characters/teal/slit.svg"
  8064. }
  8065. },
  8066. },
  8067. [
  8068. {
  8069. name: "Normal",
  8070. height: math.unit(2.75, "meters"),
  8071. default: true
  8072. },
  8073. {
  8074. name: "Macro",
  8075. height: math.unit(300, "feet")
  8076. },
  8077. {
  8078. name: "Macro+",
  8079. height: math.unit(2000, "feet")
  8080. },
  8081. ]
  8082. ))
  8083. characterMakers.push(() => makeCharacter(
  8084. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8085. {
  8086. frontCat: {
  8087. height: math.unit(6, "feet"),
  8088. weight: math.unit(180, "lbs"),
  8089. name: "Front (Cat)",
  8090. image: {
  8091. source: "./media/characters/ravin-amulet/front-cat.svg"
  8092. }
  8093. },
  8094. frontCatAlt: {
  8095. height: math.unit(6, "feet"),
  8096. weight: math.unit(180, "lbs"),
  8097. name: "Front (Alt, Cat)",
  8098. image: {
  8099. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8100. }
  8101. },
  8102. frontWerewolf: {
  8103. height: math.unit(6 * 1.2, "feet"),
  8104. weight: math.unit(225, "lbs"),
  8105. name: "Front (Werewolf)",
  8106. image: {
  8107. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8108. }
  8109. },
  8110. backWerewolf: {
  8111. height: math.unit(6 * 1.2, "feet"),
  8112. weight: math.unit(225, "lbs"),
  8113. name: "Back (Werewolf)",
  8114. image: {
  8115. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8116. }
  8117. },
  8118. },
  8119. [
  8120. {
  8121. name: "Nano",
  8122. height: math.unit(1, "micrometer")
  8123. },
  8124. {
  8125. name: "Micro",
  8126. height: math.unit(1, "inch")
  8127. },
  8128. {
  8129. name: "Normal",
  8130. height: math.unit(6, "feet"),
  8131. default: true
  8132. },
  8133. {
  8134. name: "Macro",
  8135. height: math.unit(60, "feet")
  8136. }
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8141. {
  8142. front: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(165, "lbs"),
  8145. name: "Front",
  8146. image: {
  8147. source: "./media/characters/fluoresce/front.svg"
  8148. }
  8149. }
  8150. },
  8151. [
  8152. {
  8153. name: "Micro",
  8154. height: math.unit(6, "cm")
  8155. },
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(5 + 7 / 12, "feet"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "Macro",
  8163. height: math.unit(56, "feet")
  8164. },
  8165. {
  8166. name: "Megamacro",
  8167. height: math.unit(1.9, "miles")
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8173. {
  8174. front: {
  8175. height: math.unit(9 + 6 / 12, "feet"),
  8176. weight: math.unit(523, "lbs"),
  8177. name: "Side",
  8178. image: {
  8179. source: "./media/characters/aurora/side.svg"
  8180. }
  8181. }
  8182. },
  8183. [
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(9 + 6 / 12, "feet")
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(96, "feet"),
  8191. default: true
  8192. },
  8193. {
  8194. name: "Macro+",
  8195. height: math.unit(243, "feet")
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(194, "cm"),
  8204. weight: math.unit(90, "kg"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/ranek/front.svg",
  8208. extra: 1862/1791,
  8209. bottom: 80/1942
  8210. }
  8211. },
  8212. back: {
  8213. height: math.unit(194, "cm"),
  8214. weight: math.unit(90, "kg"),
  8215. name: "Back",
  8216. image: {
  8217. source: "./media/characters/ranek/back.svg",
  8218. extra: 1853/1787,
  8219. bottom: 74/1927
  8220. }
  8221. },
  8222. feral: {
  8223. height: math.unit(30, "cm"),
  8224. weight: math.unit(1.6, "lbs"),
  8225. name: "Feral",
  8226. image: {
  8227. source: "./media/characters/ranek/feral.svg",
  8228. extra: 990/631,
  8229. bottom: 29/1019
  8230. }
  8231. },
  8232. },
  8233. [
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(194, "cm"),
  8237. default: true
  8238. },
  8239. {
  8240. name: "Macro",
  8241. height: math.unit(100, "meters")
  8242. },
  8243. ]
  8244. ))
  8245. characterMakers.push(() => makeCharacter(
  8246. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8247. {
  8248. front: {
  8249. height: math.unit(5 + 6 / 12, "feet"),
  8250. weight: math.unit(153, "lbs"),
  8251. name: "Front",
  8252. image: {
  8253. source: "./media/characters/andrew-cooper/front.svg"
  8254. }
  8255. },
  8256. },
  8257. [
  8258. {
  8259. name: "Nano",
  8260. height: math.unit(1, "mm")
  8261. },
  8262. {
  8263. name: "Micro",
  8264. height: math.unit(2, "inches")
  8265. },
  8266. {
  8267. name: "Normal",
  8268. height: math.unit(5 + 6 / 12, "feet"),
  8269. default: true
  8270. }
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8275. {
  8276. front: {
  8277. height: math.unit(6, "feet"),
  8278. weight: math.unit(180, "lbs"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/akane-sato/front.svg",
  8282. extra: 1219 / 1140
  8283. }
  8284. },
  8285. back: {
  8286. height: math.unit(6, "feet"),
  8287. weight: math.unit(180, "lbs"),
  8288. name: "Back",
  8289. image: {
  8290. source: "./media/characters/akane-sato/back.svg",
  8291. extra: 1219 / 1170
  8292. }
  8293. },
  8294. },
  8295. [
  8296. {
  8297. name: "Normal",
  8298. height: math.unit(2.5, "meters")
  8299. },
  8300. {
  8301. name: "Macro",
  8302. height: math.unit(250, "meters"),
  8303. default: true
  8304. },
  8305. {
  8306. name: "Megamacro",
  8307. height: math.unit(25, "km")
  8308. },
  8309. ]
  8310. ))
  8311. characterMakers.push(() => makeCharacter(
  8312. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8313. {
  8314. front: {
  8315. height: math.unit(6, "feet"),
  8316. weight: math.unit(65, "kg"),
  8317. name: "Front",
  8318. image: {
  8319. source: "./media/characters/rook/front.svg",
  8320. extra: 960 / 950
  8321. }
  8322. }
  8323. },
  8324. [
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(8.8, "feet")
  8328. },
  8329. {
  8330. name: "Macro",
  8331. height: math.unit(88, "feet"),
  8332. default: true
  8333. },
  8334. {
  8335. name: "Megamacro",
  8336. height: math.unit(8, "miles")
  8337. },
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8342. {
  8343. front: {
  8344. height: math.unit(12 + 2 / 12, "feet"),
  8345. weight: math.unit(808, "lbs"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/prodigy/front.svg"
  8349. }
  8350. }
  8351. },
  8352. [
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(12 + 2 / 12, "feet"),
  8356. default: true
  8357. },
  8358. {
  8359. name: "Macro",
  8360. height: math.unit(143, "feet")
  8361. },
  8362. {
  8363. name: "Macro+",
  8364. height: math.unit(400, "feet")
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(225, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/daniel/front.svg"
  8377. }
  8378. },
  8379. leaning: {
  8380. height: math.unit(6, "feet"),
  8381. weight: math.unit(225, "lbs"),
  8382. name: "Leaning",
  8383. image: {
  8384. source: "./media/characters/daniel/leaning.svg"
  8385. }
  8386. },
  8387. },
  8388. [
  8389. {
  8390. name: "Macro",
  8391. height: math.unit(1000, "feet"),
  8392. default: true
  8393. },
  8394. ]
  8395. ))
  8396. characterMakers.push(() => makeCharacter(
  8397. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8398. {
  8399. front: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(88, "lbs"),
  8402. name: "Front",
  8403. image: {
  8404. source: "./media/characters/chiros/front.svg",
  8405. extra: 306 / 226
  8406. }
  8407. },
  8408. side: {
  8409. height: math.unit(6, "feet"),
  8410. weight: math.unit(88, "lbs"),
  8411. name: "Side",
  8412. image: {
  8413. source: "./media/characters/chiros/side.svg",
  8414. extra: 306 / 226
  8415. }
  8416. },
  8417. },
  8418. [
  8419. {
  8420. name: "Normal",
  8421. height: math.unit(6, "cm"),
  8422. default: true
  8423. },
  8424. ]
  8425. ))
  8426. characterMakers.push(() => makeCharacter(
  8427. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8428. {
  8429. front: {
  8430. height: math.unit(6, "feet"),
  8431. weight: math.unit(100, "lbs"),
  8432. name: "Front",
  8433. image: {
  8434. source: "./media/characters/selka/front.svg",
  8435. extra: 947 / 887
  8436. }
  8437. }
  8438. },
  8439. [
  8440. {
  8441. name: "Normal",
  8442. height: math.unit(5, "cm"),
  8443. default: true
  8444. },
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8449. {
  8450. front: {
  8451. height: math.unit(8 + 3 / 12, "feet"),
  8452. weight: math.unit(424, "lbs"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/verin/front.svg",
  8456. extra: 1845 / 1550
  8457. }
  8458. },
  8459. frontArmored: {
  8460. height: math.unit(8 + 3 / 12, "feet"),
  8461. weight: math.unit(424, "lbs"),
  8462. name: "Front (Armored)",
  8463. image: {
  8464. source: "./media/characters/verin/front-armor.svg",
  8465. extra: 1845 / 1550,
  8466. bottom: 0.01
  8467. }
  8468. },
  8469. back: {
  8470. height: math.unit(8 + 3 / 12, "feet"),
  8471. weight: math.unit(424, "lbs"),
  8472. name: "Back",
  8473. image: {
  8474. source: "./media/characters/verin/back.svg",
  8475. bottom: 0.1,
  8476. extra: 1
  8477. }
  8478. },
  8479. foot: {
  8480. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8481. name: "Foot",
  8482. image: {
  8483. source: "./media/characters/verin/foot.svg"
  8484. }
  8485. },
  8486. },
  8487. [
  8488. {
  8489. name: "Normal",
  8490. height: math.unit(8 + 3 / 12, "feet")
  8491. },
  8492. {
  8493. name: "Minimacro",
  8494. height: math.unit(21, "feet"),
  8495. default: true
  8496. },
  8497. {
  8498. name: "Macro",
  8499. height: math.unit(626, "feet")
  8500. },
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8505. {
  8506. front: {
  8507. height: math.unit(2.718, "meters"),
  8508. weight: math.unit(150, "lbs"),
  8509. name: "Front",
  8510. image: {
  8511. source: "./media/characters/sovrim-terraquian/front.svg",
  8512. extra: 1752/1689,
  8513. bottom: 36/1788
  8514. }
  8515. },
  8516. back: {
  8517. height: math.unit(2.718, "meters"),
  8518. weight: math.unit(150, "lbs"),
  8519. name: "Back",
  8520. image: {
  8521. source: "./media/characters/sovrim-terraquian/back.svg",
  8522. extra: 1698/1657,
  8523. bottom: 58/1756
  8524. }
  8525. },
  8526. tongue: {
  8527. height: math.unit(2.865, "feet"),
  8528. name: "Tongue",
  8529. image: {
  8530. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8531. }
  8532. },
  8533. hand: {
  8534. height: math.unit(1.61, "feet"),
  8535. name: "Hand",
  8536. image: {
  8537. source: "./media/characters/sovrim-terraquian/hand.svg"
  8538. }
  8539. },
  8540. foot: {
  8541. height: math.unit(1.05, "feet"),
  8542. name: "Foot",
  8543. image: {
  8544. source: "./media/characters/sovrim-terraquian/foot.svg"
  8545. }
  8546. },
  8547. footAlt: {
  8548. height: math.unit(0.88, "feet"),
  8549. name: "Foot (Alt)",
  8550. image: {
  8551. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8552. }
  8553. },
  8554. },
  8555. [
  8556. {
  8557. name: "Micro",
  8558. height: math.unit(2, "inches")
  8559. },
  8560. {
  8561. name: "Small",
  8562. height: math.unit(1, "meter")
  8563. },
  8564. {
  8565. name: "Normal",
  8566. height: math.unit(Math.E, "meters"),
  8567. default: true
  8568. },
  8569. {
  8570. name: "Macro",
  8571. height: math.unit(20, "meters")
  8572. },
  8573. {
  8574. name: "Macro+",
  8575. height: math.unit(400, "meters")
  8576. },
  8577. ]
  8578. ))
  8579. characterMakers.push(() => makeCharacter(
  8580. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8581. {
  8582. front: {
  8583. height: math.unit(7, "feet"),
  8584. weight: math.unit(489, "lbs"),
  8585. name: "Front",
  8586. image: {
  8587. source: "./media/characters/reece-silvermane/front.svg",
  8588. bottom: 0.02,
  8589. extra: 1
  8590. }
  8591. },
  8592. },
  8593. [
  8594. {
  8595. name: "Macro",
  8596. height: math.unit(1.5, "miles"),
  8597. default: true
  8598. },
  8599. ]
  8600. ))
  8601. characterMakers.push(() => makeCharacter(
  8602. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8603. {
  8604. front: {
  8605. height: math.unit(6, "feet"),
  8606. weight: math.unit(78, "kg"),
  8607. name: "Front",
  8608. image: {
  8609. source: "./media/characters/kane/front.svg",
  8610. extra: 978 / 899
  8611. }
  8612. },
  8613. },
  8614. [
  8615. {
  8616. name: "Normal",
  8617. height: math.unit(2.1, "m"),
  8618. },
  8619. {
  8620. name: "Macro",
  8621. height: math.unit(1, "km"),
  8622. default: true
  8623. },
  8624. ]
  8625. ))
  8626. characterMakers.push(() => makeCharacter(
  8627. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8628. {
  8629. front: {
  8630. height: math.unit(6, "feet"),
  8631. weight: math.unit(200, "kg"),
  8632. name: "Front",
  8633. image: {
  8634. source: "./media/characters/tegon/front.svg",
  8635. bottom: 0.01,
  8636. extra: 1
  8637. }
  8638. },
  8639. },
  8640. [
  8641. {
  8642. name: "Micro",
  8643. height: math.unit(1, "inch")
  8644. },
  8645. {
  8646. name: "Normal",
  8647. height: math.unit(6 + 3 / 12, "feet"),
  8648. default: true
  8649. },
  8650. {
  8651. name: "Macro",
  8652. height: math.unit(300, "feet")
  8653. },
  8654. {
  8655. name: "Megamacro",
  8656. height: math.unit(69, "miles")
  8657. },
  8658. ]
  8659. ))
  8660. characterMakers.push(() => makeCharacter(
  8661. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8662. {
  8663. side: {
  8664. height: math.unit(6, "feet"),
  8665. weight: math.unit(2304, "lbs"),
  8666. name: "Side",
  8667. image: {
  8668. source: "./media/characters/arcturax/side.svg",
  8669. extra: 790 / 376,
  8670. bottom: 0.01
  8671. }
  8672. },
  8673. },
  8674. [
  8675. {
  8676. name: "Micro",
  8677. height: math.unit(2, "inch")
  8678. },
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(6, "feet")
  8682. },
  8683. {
  8684. name: "Macro",
  8685. height: math.unit(39, "feet"),
  8686. default: true
  8687. },
  8688. {
  8689. name: "Megamacro",
  8690. height: math.unit(7, "miles")
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(6, "feet"),
  8699. weight: math.unit(50, "lbs"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/sentri/front.svg",
  8703. extra: 1750 / 1570,
  8704. bottom: 0.025
  8705. }
  8706. },
  8707. frontAlt: {
  8708. height: math.unit(6, "feet"),
  8709. weight: math.unit(50, "lbs"),
  8710. name: "Front (Alt)",
  8711. image: {
  8712. source: "./media/characters/sentri/front-alt.svg",
  8713. extra: 1750 / 1570,
  8714. bottom: 0.025
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Normal",
  8721. height: math.unit(15, "feet"),
  8722. default: true
  8723. },
  8724. {
  8725. name: "Macro",
  8726. height: math.unit(2500, "feet")
  8727. }
  8728. ]
  8729. ))
  8730. characterMakers.push(() => makeCharacter(
  8731. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8732. {
  8733. front: {
  8734. height: math.unit(5 + 8 / 12, "feet"),
  8735. weight: math.unit(130, "lbs"),
  8736. name: "Front",
  8737. image: {
  8738. source: "./media/characters/corvin/front.svg",
  8739. extra: 1803 / 1629
  8740. }
  8741. },
  8742. frontShirt: {
  8743. height: math.unit(5 + 8 / 12, "feet"),
  8744. weight: math.unit(130, "lbs"),
  8745. name: "Front (Shirt)",
  8746. image: {
  8747. source: "./media/characters/corvin/front-shirt.svg",
  8748. extra: 1803 / 1629
  8749. }
  8750. },
  8751. frontPoncho: {
  8752. height: math.unit(5 + 8 / 12, "feet"),
  8753. weight: math.unit(130, "lbs"),
  8754. name: "Front (Poncho)",
  8755. image: {
  8756. source: "./media/characters/corvin/front-poncho.svg",
  8757. extra: 1803 / 1629
  8758. }
  8759. },
  8760. side: {
  8761. height: math.unit(5 + 8 / 12, "feet"),
  8762. weight: math.unit(130, "lbs"),
  8763. name: "Side",
  8764. image: {
  8765. source: "./media/characters/corvin/side.svg",
  8766. extra: 1012 / 945
  8767. }
  8768. },
  8769. back: {
  8770. height: math.unit(5 + 8 / 12, "feet"),
  8771. weight: math.unit(130, "lbs"),
  8772. name: "Back",
  8773. image: {
  8774. source: "./media/characters/corvin/back.svg",
  8775. extra: 1803 / 1629
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Micro",
  8782. height: math.unit(3, "inches")
  8783. },
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(5 + 8 / 12, "feet")
  8787. },
  8788. {
  8789. name: "Macro",
  8790. height: math.unit(300, "feet"),
  8791. default: true
  8792. },
  8793. {
  8794. name: "Megamacro",
  8795. height: math.unit(500, "miles")
  8796. }
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8801. {
  8802. front: {
  8803. height: math.unit(6, "feet"),
  8804. weight: math.unit(135, "lbs"),
  8805. name: "Front",
  8806. image: {
  8807. source: "./media/characters/q/front.svg",
  8808. extra: 854 / 752,
  8809. bottom: 0.005
  8810. }
  8811. },
  8812. back: {
  8813. height: math.unit(6, "feet"),
  8814. weight: math.unit(130, "lbs"),
  8815. name: "Back",
  8816. image: {
  8817. source: "./media/characters/q/back.svg",
  8818. extra: 854 / 752
  8819. }
  8820. },
  8821. },
  8822. [
  8823. {
  8824. name: "Macro",
  8825. height: math.unit(90, "feet"),
  8826. default: true
  8827. },
  8828. {
  8829. name: "Extra Macro",
  8830. height: math.unit(300, "feet"),
  8831. },
  8832. {
  8833. name: "BIG WALF",
  8834. height: math.unit(750, "feet"),
  8835. },
  8836. ]
  8837. ))
  8838. characterMakers.push(() => makeCharacter(
  8839. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8840. {
  8841. front: {
  8842. height: math.unit(6, "feet"),
  8843. weight: math.unit(150, "lbs"),
  8844. name: "Front",
  8845. image: {
  8846. source: "./media/characters/carley/front.svg",
  8847. extra: 3927 / 3540,
  8848. bottom: 29.2 / 735
  8849. }
  8850. }
  8851. },
  8852. [
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(6 + 3 / 12, "feet")
  8856. },
  8857. {
  8858. name: "Macro",
  8859. height: math.unit(185, "feet"),
  8860. default: true
  8861. },
  8862. {
  8863. name: "Megamacro",
  8864. height: math.unit(8, "miles"),
  8865. },
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(3, "feet"),
  8873. weight: math.unit(28, "lbs"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/citrine/front.svg"
  8877. }
  8878. }
  8879. },
  8880. [
  8881. {
  8882. name: "Normal",
  8883. height: math.unit(3, "feet"),
  8884. default: true
  8885. }
  8886. ]
  8887. ))
  8888. characterMakers.push(() => makeCharacter(
  8889. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8890. {
  8891. front: {
  8892. height: math.unit(14, "feet"),
  8893. weight: math.unit(1450, "kg"),
  8894. preyCapacity: math.unit(15, "people"),
  8895. name: "Front",
  8896. image: {
  8897. source: "./media/characters/aura-starwind/front.svg",
  8898. extra: 1440/1327,
  8899. bottom: 11/1451
  8900. }
  8901. },
  8902. side: {
  8903. height: math.unit(14, "feet"),
  8904. weight: math.unit(1450, "kg"),
  8905. preyCapacity: math.unit(15, "people"),
  8906. name: "Side",
  8907. image: {
  8908. source: "./media/characters/aura-starwind/side.svg",
  8909. extra: 1654 / 1497
  8910. }
  8911. },
  8912. taur: {
  8913. height: math.unit(18, "feet"),
  8914. weight: math.unit(5500, "kg"),
  8915. preyCapacity: math.unit(50, "people"),
  8916. name: "Taur",
  8917. image: {
  8918. source: "./media/characters/aura-starwind/taur.svg",
  8919. extra: 1760 / 1650
  8920. }
  8921. },
  8922. feral: {
  8923. height: math.unit(46, "feet"),
  8924. weight: math.unit(25000, "kg"),
  8925. preyCapacity: math.unit(120, "people"),
  8926. name: "Feral",
  8927. image: {
  8928. source: "./media/characters/aura-starwind/feral.svg"
  8929. }
  8930. },
  8931. },
  8932. [
  8933. {
  8934. name: "Normal",
  8935. height: math.unit(14, "feet"),
  8936. default: true
  8937. },
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(50, "meters")
  8941. },
  8942. {
  8943. name: "Megamacro",
  8944. height: math.unit(5000, "meters")
  8945. },
  8946. {
  8947. name: "Gigamacro",
  8948. height: math.unit(100000, "kilometers")
  8949. },
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8954. {
  8955. front: {
  8956. height: math.unit(2 + 7 / 12, "feet"),
  8957. weight: math.unit(32, "lbs"),
  8958. name: "Front",
  8959. image: {
  8960. source: "./media/characters/rivet/front.svg",
  8961. extra: 1716 / 1658,
  8962. bottom: 0.03
  8963. }
  8964. },
  8965. foot: {
  8966. height: math.unit(0.551, "feet"),
  8967. name: "Rivet's Foot",
  8968. image: {
  8969. source: "./media/characters/rivet/foot.svg"
  8970. },
  8971. rename: true
  8972. }
  8973. },
  8974. [
  8975. {
  8976. name: "Micro",
  8977. height: math.unit(1.5, "inches"),
  8978. },
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(2 + 7 / 12, "feet"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Macro",
  8986. height: math.unit(85, "feet")
  8987. },
  8988. {
  8989. name: "Megamacro",
  8990. height: math.unit(2.2, "km")
  8991. }
  8992. ]
  8993. ))
  8994. characterMakers.push(() => makeCharacter(
  8995. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8996. {
  8997. front: {
  8998. height: math.unit(5 + 9 / 12, "feet"),
  8999. weight: math.unit(150, "lbs"),
  9000. name: "Front",
  9001. image: {
  9002. source: "./media/characters/coffee/front.svg",
  9003. extra: 3666 / 3032,
  9004. bottom: 0.04
  9005. }
  9006. },
  9007. foot: {
  9008. height: math.unit(1.29, "feet"),
  9009. name: "Foot",
  9010. image: {
  9011. source: "./media/characters/coffee/foot.svg"
  9012. }
  9013. },
  9014. },
  9015. [
  9016. {
  9017. name: "Micro",
  9018. height: math.unit(2, "inches"),
  9019. },
  9020. {
  9021. name: "Normal",
  9022. height: math.unit(5 + 9 / 12, "feet"),
  9023. default: true
  9024. },
  9025. {
  9026. name: "Macro",
  9027. height: math.unit(800, "feet")
  9028. },
  9029. {
  9030. name: "Megamacro",
  9031. height: math.unit(25, "miles")
  9032. }
  9033. ]
  9034. ))
  9035. characterMakers.push(() => makeCharacter(
  9036. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9037. {
  9038. front: {
  9039. height: math.unit(6, "feet"),
  9040. weight: math.unit(200, "lbs"),
  9041. name: "Front",
  9042. image: {
  9043. source: "./media/characters/chari-gal/front.svg",
  9044. extra: 1568 / 1385,
  9045. bottom: 0.047
  9046. }
  9047. },
  9048. gigantamax: {
  9049. height: math.unit(6 * 16, "feet"),
  9050. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9051. name: "Gigantamax",
  9052. image: {
  9053. source: "./media/characters/chari-gal/gigantamax.svg",
  9054. extra: 1124 / 888,
  9055. bottom: 0.03
  9056. }
  9057. },
  9058. },
  9059. [
  9060. {
  9061. name: "Normal",
  9062. height: math.unit(5 + 7 / 12, "feet")
  9063. },
  9064. {
  9065. name: "Macro",
  9066. height: math.unit(200, "feet"),
  9067. default: true
  9068. }
  9069. ]
  9070. ))
  9071. characterMakers.push(() => makeCharacter(
  9072. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9073. {
  9074. front: {
  9075. height: math.unit(6, "feet"),
  9076. weight: math.unit(150, "lbs"),
  9077. name: "Front",
  9078. image: {
  9079. source: "./media/characters/nova/front.svg",
  9080. extra: 5000 / 4722,
  9081. bottom: 0.02
  9082. }
  9083. }
  9084. },
  9085. [
  9086. {
  9087. name: "Micro-",
  9088. height: math.unit(0.8, "inches")
  9089. },
  9090. {
  9091. name: "Micro",
  9092. height: math.unit(2, "inches"),
  9093. default: true
  9094. },
  9095. ]
  9096. ))
  9097. characterMakers.push(() => makeCharacter(
  9098. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9099. {
  9100. front: {
  9101. height: math.unit(3 + 1 / 12, "feet"),
  9102. weight: math.unit(21.7, "lbs"),
  9103. name: "Front",
  9104. image: {
  9105. source: "./media/characters/argent/front.svg",
  9106. extra: 1471 / 1331,
  9107. bottom: 100.8 / 1575.5
  9108. }
  9109. }
  9110. },
  9111. [
  9112. {
  9113. name: "Micro",
  9114. height: math.unit(2, "inches")
  9115. },
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(3 + 1 / 12, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(120, "feet")
  9124. },
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9129. {
  9130. lamp: {
  9131. height: math.unit(7 * 1559 / 989, "feet"),
  9132. name: "Magic Lamp",
  9133. image: {
  9134. source: "./media/characters/mira-al-cul/lamp.svg",
  9135. extra: 1617 / 1559
  9136. }
  9137. },
  9138. front: {
  9139. height: math.unit(7, "feet"),
  9140. name: "Front",
  9141. image: {
  9142. source: "./media/characters/mira-al-cul/front.svg",
  9143. extra: 1044 / 990
  9144. }
  9145. },
  9146. },
  9147. [
  9148. {
  9149. name: "Heavily Restricted",
  9150. height: math.unit(7 * 1559 / 989, "feet")
  9151. },
  9152. {
  9153. name: "Freshly Freed",
  9154. height: math.unit(50 * 1559 / 989, "feet")
  9155. },
  9156. {
  9157. name: "World Encompassing",
  9158. height: math.unit(10000 * 1559 / 989, "miles")
  9159. },
  9160. {
  9161. name: "Galactic",
  9162. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9163. },
  9164. {
  9165. name: "Palmed Universe",
  9166. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9167. default: true
  9168. },
  9169. {
  9170. name: "Multiversal Matriarch",
  9171. height: math.unit(8.87e10, "yottameters")
  9172. },
  9173. {
  9174. name: "Void Mother",
  9175. height: math.unit(3.14e110, "yottaparsecs")
  9176. },
  9177. {
  9178. name: "Toying with Transcendence",
  9179. height: math.unit(1e307, "meters")
  9180. },
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9185. {
  9186. front: {
  9187. height: math.unit(17 + 1 / 12, "feet"),
  9188. weight: math.unit(476.2 * 5, "lbs"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/kuro-shi-uchū/front.svg",
  9192. extra: 2329 / 1835,
  9193. bottom: 0.02
  9194. }
  9195. },
  9196. },
  9197. [
  9198. {
  9199. name: "Micro",
  9200. height: math.unit(2, "inches")
  9201. },
  9202. {
  9203. name: "Normal",
  9204. height: math.unit(12, "meters")
  9205. },
  9206. {
  9207. name: "Planetary",
  9208. height: math.unit(0.00929, "AU"),
  9209. default: true
  9210. },
  9211. {
  9212. name: "Universal",
  9213. height: math.unit(20, "gigaparsecs")
  9214. },
  9215. ]
  9216. ))
  9217. characterMakers.push(() => makeCharacter(
  9218. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9219. {
  9220. front: {
  9221. height: math.unit(5 + 2 / 12, "feet"),
  9222. weight: math.unit(120, "lbs"),
  9223. name: "Front",
  9224. image: {
  9225. source: "./media/characters/katherine/front.svg",
  9226. extra: 2075 / 1969
  9227. }
  9228. },
  9229. dress: {
  9230. height: math.unit(5 + 2 / 12, "feet"),
  9231. weight: math.unit(120, "lbs"),
  9232. name: "Dress",
  9233. image: {
  9234. source: "./media/characters/katherine/dress.svg",
  9235. extra: 2258 / 2064
  9236. }
  9237. },
  9238. },
  9239. [
  9240. {
  9241. name: "Micro",
  9242. height: math.unit(1, "inches"),
  9243. default: true
  9244. },
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(5 + 2 / 12, "feet")
  9248. },
  9249. {
  9250. name: "Macro",
  9251. height: math.unit(100, "meters")
  9252. },
  9253. {
  9254. name: "Megamacro",
  9255. height: math.unit(80, "miles")
  9256. },
  9257. ]
  9258. ))
  9259. characterMakers.push(() => makeCharacter(
  9260. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9261. {
  9262. front: {
  9263. height: math.unit(7 + 8 / 12, "feet"),
  9264. weight: math.unit(250, "lbs"),
  9265. name: "Front",
  9266. image: {
  9267. source: "./media/characters/yevis/front.svg",
  9268. extra: 1938 / 1755
  9269. }
  9270. }
  9271. },
  9272. [
  9273. {
  9274. name: "Mortal",
  9275. height: math.unit(7 + 8 / 12, "feet")
  9276. },
  9277. {
  9278. name: "Battle",
  9279. height: math.unit(25 + 11 / 12, "feet")
  9280. },
  9281. {
  9282. name: "Wrath",
  9283. height: math.unit(1654 + 11 / 12, "feet")
  9284. },
  9285. {
  9286. name: "Planet Destroyer",
  9287. height: math.unit(12000, "miles")
  9288. },
  9289. {
  9290. name: "Galaxy Conqueror",
  9291. height: math.unit(1.45, "zettameters"),
  9292. default: true
  9293. },
  9294. {
  9295. name: "Universal War",
  9296. height: math.unit(184, "gigaparsecs")
  9297. },
  9298. {
  9299. name: "Eternity War",
  9300. height: math.unit(1.98e55, "yottaparsecs")
  9301. },
  9302. ]
  9303. ))
  9304. characterMakers.push(() => makeCharacter(
  9305. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9306. {
  9307. front: {
  9308. height: math.unit(5 + 8 / 12, "feet"),
  9309. weight: math.unit(63, "kg"),
  9310. name: "Front",
  9311. image: {
  9312. source: "./media/characters/xavier/front.svg",
  9313. extra: 944 / 883
  9314. }
  9315. },
  9316. frontStretch: {
  9317. height: math.unit(5 + 8 / 12, "feet"),
  9318. weight: math.unit(63, "kg"),
  9319. name: "Stretching",
  9320. image: {
  9321. source: "./media/characters/xavier/front-stretch.svg",
  9322. extra: 962 / 820
  9323. }
  9324. },
  9325. },
  9326. [
  9327. {
  9328. name: "Normal",
  9329. height: math.unit(5 + 8 / 12, "feet")
  9330. },
  9331. {
  9332. name: "Macro",
  9333. height: math.unit(100, "meters"),
  9334. default: true
  9335. },
  9336. {
  9337. name: "McLargeHuge",
  9338. height: math.unit(10, "miles")
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9344. {
  9345. front: {
  9346. height: math.unit(5 + 5 / 12, "feet"),
  9347. weight: math.unit(150, "lb"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/joshii/front.svg",
  9351. extra: 765 / 653,
  9352. bottom: 51 / 816
  9353. }
  9354. },
  9355. foot: {
  9356. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9357. name: "Foot",
  9358. image: {
  9359. source: "./media/characters/joshii/foot.svg"
  9360. }
  9361. },
  9362. },
  9363. [
  9364. {
  9365. name: "Micro",
  9366. height: math.unit(2, "inches"),
  9367. default: true
  9368. },
  9369. {
  9370. name: "Normal",
  9371. height: math.unit(5 + 5 / 12, "feet")
  9372. },
  9373. {
  9374. name: "Macro",
  9375. height: math.unit(785, "feet")
  9376. },
  9377. {
  9378. name: "Megamacro",
  9379. height: math.unit(24.5, "miles")
  9380. },
  9381. ]
  9382. ))
  9383. characterMakers.push(() => makeCharacter(
  9384. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9385. {
  9386. front: {
  9387. height: math.unit(6, "feet"),
  9388. weight: math.unit(150, "lb"),
  9389. name: "Front",
  9390. image: {
  9391. source: "./media/characters/goddess-elizabeth/front.svg",
  9392. extra: 1800 / 1525,
  9393. bottom: 0.005
  9394. }
  9395. },
  9396. foot: {
  9397. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9398. name: "Foot",
  9399. image: {
  9400. source: "./media/characters/goddess-elizabeth/foot.svg"
  9401. }
  9402. },
  9403. mouth: {
  9404. height: math.unit(6, "feet"),
  9405. name: "Mouth",
  9406. image: {
  9407. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9408. }
  9409. },
  9410. },
  9411. [
  9412. {
  9413. name: "Micro",
  9414. height: math.unit(12, "feet")
  9415. },
  9416. {
  9417. name: "Normal",
  9418. height: math.unit(80, "miles"),
  9419. default: true
  9420. },
  9421. {
  9422. name: "Macro",
  9423. height: math.unit(15000, "parsecs")
  9424. },
  9425. ]
  9426. ))
  9427. characterMakers.push(() => makeCharacter(
  9428. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9429. {
  9430. front: {
  9431. height: math.unit(5 + 9 / 12, "feet"),
  9432. weight: math.unit(144, "lb"),
  9433. name: "Front",
  9434. image: {
  9435. source: "./media/characters/kara/front.svg"
  9436. }
  9437. },
  9438. feet: {
  9439. height: math.unit(6 / 6.765, "feet"),
  9440. name: "Kara's Feet",
  9441. rename: true,
  9442. image: {
  9443. source: "./media/characters/kara/feet.svg"
  9444. }
  9445. },
  9446. },
  9447. [
  9448. {
  9449. name: "Normal",
  9450. height: math.unit(5 + 9 / 12, "feet")
  9451. },
  9452. {
  9453. name: "Macro",
  9454. height: math.unit(174, "feet"),
  9455. default: true
  9456. },
  9457. ]
  9458. ))
  9459. characterMakers.push(() => makeCharacter(
  9460. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9461. {
  9462. front: {
  9463. height: math.unit(18, "feet"),
  9464. weight: math.unit(4050, "lb"),
  9465. name: "Front",
  9466. image: {
  9467. source: "./media/characters/tyrone/front.svg",
  9468. extra: 2405 / 2270,
  9469. bottom: 182 / 2587
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Normal",
  9476. height: math.unit(18, "feet"),
  9477. default: true
  9478. },
  9479. {
  9480. name: "Macro",
  9481. height: math.unit(300, "feet")
  9482. },
  9483. {
  9484. name: "Megamacro",
  9485. height: math.unit(15, "km")
  9486. },
  9487. {
  9488. name: "Gigamacro",
  9489. height: math.unit(500, "km")
  9490. },
  9491. {
  9492. name: "Teramacro",
  9493. height: math.unit(0.5, "gigameters")
  9494. },
  9495. {
  9496. name: "Omnimacro",
  9497. height: math.unit(1e252, "yottauniverse")
  9498. },
  9499. ]
  9500. ))
  9501. characterMakers.push(() => makeCharacter(
  9502. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9503. {
  9504. front: {
  9505. height: math.unit(7 + 8 / 12, "feet"),
  9506. weight: math.unit(120, "lb"),
  9507. name: "Front",
  9508. image: {
  9509. source: "./media/characters/danny/front.svg",
  9510. extra: 1490 / 1350
  9511. }
  9512. },
  9513. back: {
  9514. height: math.unit(7 + 8 / 12, "feet"),
  9515. weight: math.unit(120, "lb"),
  9516. name: "Back",
  9517. image: {
  9518. source: "./media/characters/danny/back.svg",
  9519. extra: 1490 / 1350
  9520. }
  9521. },
  9522. },
  9523. [
  9524. {
  9525. name: "Normal",
  9526. height: math.unit(7 + 8 / 12, "feet"),
  9527. default: true
  9528. },
  9529. ]
  9530. ))
  9531. characterMakers.push(() => makeCharacter(
  9532. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9533. {
  9534. front: {
  9535. height: math.unit(3.5, "inches"),
  9536. weight: math.unit(19, "grams"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/mallow/front.svg",
  9540. extra: 471 / 431
  9541. }
  9542. },
  9543. back: {
  9544. height: math.unit(3.5, "inches"),
  9545. weight: math.unit(19, "grams"),
  9546. name: "Back",
  9547. image: {
  9548. source: "./media/characters/mallow/back.svg",
  9549. extra: 471 / 431
  9550. }
  9551. },
  9552. },
  9553. [
  9554. {
  9555. name: "Normal",
  9556. height: math.unit(3.5, "inches"),
  9557. default: true
  9558. },
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9563. {
  9564. front: {
  9565. height: math.unit(9, "feet"),
  9566. weight: math.unit(230, "kg"),
  9567. name: "Front",
  9568. image: {
  9569. source: "./media/characters/starry-aqua/front.svg"
  9570. }
  9571. },
  9572. back: {
  9573. height: math.unit(9, "feet"),
  9574. weight: math.unit(230, "kg"),
  9575. name: "Back",
  9576. image: {
  9577. source: "./media/characters/starry-aqua/back.svg"
  9578. }
  9579. },
  9580. hand: {
  9581. height: math.unit(9 * 0.1168, "feet"),
  9582. name: "Hand",
  9583. image: {
  9584. source: "./media/characters/starry-aqua/hand.svg"
  9585. }
  9586. },
  9587. foot: {
  9588. height: math.unit(9 * 0.18, "feet"),
  9589. name: "Foot",
  9590. image: {
  9591. source: "./media/characters/starry-aqua/foot.svg"
  9592. }
  9593. }
  9594. },
  9595. [
  9596. {
  9597. name: "Micro",
  9598. height: math.unit(3, "inches")
  9599. },
  9600. {
  9601. name: "Normal",
  9602. height: math.unit(9, "feet")
  9603. },
  9604. {
  9605. name: "Macro",
  9606. height: math.unit(300, "feet"),
  9607. default: true
  9608. },
  9609. {
  9610. name: "Megamacro",
  9611. height: math.unit(3200, "feet")
  9612. }
  9613. ]
  9614. ))
  9615. characterMakers.push(() => makeCharacter(
  9616. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9617. {
  9618. front: {
  9619. height: math.unit(15, "feet"),
  9620. weight: math.unit(5026, "lb"),
  9621. name: "Front",
  9622. image: {
  9623. source: "./media/characters/luka-towers/front.svg",
  9624. extra: 1269/1133,
  9625. bottom: 51/1320
  9626. }
  9627. },
  9628. },
  9629. [
  9630. {
  9631. name: "Normal",
  9632. height: math.unit(15, "feet"),
  9633. default: true
  9634. },
  9635. {
  9636. name: "Minimacro",
  9637. height: math.unit(25, "feet")
  9638. },
  9639. {
  9640. name: "Macro",
  9641. height: math.unit(320, "feet")
  9642. },
  9643. {
  9644. name: "Megamacro",
  9645. height: math.unit(35000, "feet")
  9646. },
  9647. {
  9648. name: "Gigamacro",
  9649. height: math.unit(4000, "miles")
  9650. },
  9651. {
  9652. name: "Teramacro",
  9653. height: math.unit(15000, "miles")
  9654. },
  9655. ]
  9656. ))
  9657. characterMakers.push(() => makeCharacter(
  9658. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9659. {
  9660. front: {
  9661. height: math.unit(6, "feet"),
  9662. weight: math.unit(150, "lb"),
  9663. name: "Front",
  9664. image: {
  9665. source: "./media/characters/natalie-nightring/front.svg",
  9666. extra: 1,
  9667. bottom: 0.06
  9668. }
  9669. },
  9670. },
  9671. [
  9672. {
  9673. name: "Uh Oh",
  9674. height: math.unit(0.1, "mm")
  9675. },
  9676. {
  9677. name: "Small",
  9678. height: math.unit(3, "inches")
  9679. },
  9680. {
  9681. name: "Human Scale",
  9682. height: math.unit(6, "feet")
  9683. },
  9684. {
  9685. name: "Librarian",
  9686. height: math.unit(50, "feet"),
  9687. default: true
  9688. },
  9689. {
  9690. name: "Immense",
  9691. height: math.unit(200, "miles")
  9692. },
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9697. {
  9698. front: {
  9699. height: math.unit(6, "feet"),
  9700. weight: math.unit(180, "lbs"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/danni-rosie/front.svg",
  9704. extra: 1260 / 1128,
  9705. bottom: 0.022
  9706. }
  9707. },
  9708. },
  9709. [
  9710. {
  9711. name: "Micro",
  9712. height: math.unit(2, "inches"),
  9713. default: true
  9714. },
  9715. ]
  9716. ))
  9717. characterMakers.push(() => makeCharacter(
  9718. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9719. {
  9720. front: {
  9721. height: math.unit(5 + 9 / 12, "feet"),
  9722. weight: math.unit(220, "lb"),
  9723. name: "Front",
  9724. image: {
  9725. source: "./media/characters/samantha-kruse/front.svg",
  9726. extra: (985 / 935),
  9727. bottom: 0.03
  9728. }
  9729. },
  9730. frontUndressed: {
  9731. height: math.unit(5 + 9 / 12, "feet"),
  9732. weight: math.unit(220, "lb"),
  9733. name: "Front (Undressed)",
  9734. image: {
  9735. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9736. extra: (973 / 923),
  9737. bottom: 0.025
  9738. }
  9739. },
  9740. fat: {
  9741. height: math.unit(5 + 9 / 12, "feet"),
  9742. weight: math.unit(900, "lb"),
  9743. name: "Front (Fat)",
  9744. image: {
  9745. source: "./media/characters/samantha-kruse/fat.svg",
  9746. extra: 2688 / 2561
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(5 + 9 / 12, "feet"),
  9754. default: true
  9755. }
  9756. ]
  9757. ))
  9758. characterMakers.push(() => makeCharacter(
  9759. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9760. {
  9761. back: {
  9762. height: math.unit(5 + 4 / 12, "feet"),
  9763. weight: math.unit(4963, "lb"),
  9764. name: "Back",
  9765. image: {
  9766. source: "./media/characters/amelia-rosie/back.svg",
  9767. extra: 1113 / 963,
  9768. bottom: 0.01
  9769. }
  9770. },
  9771. },
  9772. [
  9773. {
  9774. name: "Level 0",
  9775. height: math.unit(5 + 4 / 12, "feet")
  9776. },
  9777. {
  9778. name: "Level 1",
  9779. height: math.unit(164597, "feet"),
  9780. default: true
  9781. },
  9782. {
  9783. name: "Level 2",
  9784. height: math.unit(956243, "miles")
  9785. },
  9786. {
  9787. name: "Level 3",
  9788. height: math.unit(29421709423, "miles")
  9789. },
  9790. {
  9791. name: "Level 4",
  9792. height: math.unit(154, "lightyears")
  9793. },
  9794. {
  9795. name: "Level 5",
  9796. height: math.unit(4738272, "lightyears")
  9797. },
  9798. {
  9799. name: "Level 6",
  9800. height: math.unit(145787152896, "lightyears")
  9801. },
  9802. ]
  9803. ))
  9804. characterMakers.push(() => makeCharacter(
  9805. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9806. {
  9807. front: {
  9808. height: math.unit(5 + 11 / 12, "feet"),
  9809. weight: math.unit(65, "kg"),
  9810. name: "Front",
  9811. image: {
  9812. source: "./media/characters/rook-kitara/front.svg",
  9813. extra: 1347 / 1274,
  9814. bottom: 0.005
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Totally Unfair",
  9821. height: math.unit(1.8, "mm")
  9822. },
  9823. {
  9824. name: "Lap Rookie",
  9825. height: math.unit(1.4, "feet")
  9826. },
  9827. {
  9828. name: "Normal",
  9829. height: math.unit(5 + 11 / 12, "feet"),
  9830. default: true
  9831. },
  9832. {
  9833. name: "How Did This Happen",
  9834. height: math.unit(80, "miles")
  9835. }
  9836. ]
  9837. ))
  9838. characterMakers.push(() => makeCharacter(
  9839. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9840. {
  9841. front: {
  9842. height: math.unit(7, "feet"),
  9843. weight: math.unit(300, "lb"),
  9844. name: "Front",
  9845. image: {
  9846. source: "./media/characters/pisces/front.svg",
  9847. extra: 2255 / 2115,
  9848. bottom: 0.03
  9849. }
  9850. },
  9851. back: {
  9852. height: math.unit(7, "feet"),
  9853. weight: math.unit(300, "lb"),
  9854. name: "Back",
  9855. image: {
  9856. source: "./media/characters/pisces/back.svg",
  9857. extra: 2146 / 2055,
  9858. bottom: 0.04
  9859. }
  9860. },
  9861. },
  9862. [
  9863. {
  9864. name: "Normal",
  9865. height: math.unit(7, "feet"),
  9866. default: true
  9867. },
  9868. {
  9869. name: "Swimming Pool",
  9870. height: math.unit(12.2, "meters")
  9871. },
  9872. {
  9873. name: "Olympic Swimming Pool",
  9874. height: math.unit(56.3, "meters")
  9875. },
  9876. {
  9877. name: "Lake Superior",
  9878. height: math.unit(93900, "meters")
  9879. },
  9880. {
  9881. name: "Mediterranean Sea",
  9882. height: math.unit(644457, "meters")
  9883. },
  9884. {
  9885. name: "World's Oceans",
  9886. height: math.unit(4567491, "meters")
  9887. },
  9888. ]
  9889. ))
  9890. characterMakers.push(() => makeCharacter(
  9891. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9892. {
  9893. front: {
  9894. height: math.unit(2.3, "meters"),
  9895. weight: math.unit(120, "kg"),
  9896. name: "Front",
  9897. image: {
  9898. source: "./media/characters/zelas/front.svg"
  9899. }
  9900. },
  9901. side: {
  9902. height: math.unit(2.3, "meters"),
  9903. weight: math.unit(120, "kg"),
  9904. name: "Side",
  9905. image: {
  9906. source: "./media/characters/zelas/side.svg"
  9907. }
  9908. },
  9909. back: {
  9910. height: math.unit(2.3, "meters"),
  9911. weight: math.unit(120, "kg"),
  9912. name: "Back",
  9913. image: {
  9914. source: "./media/characters/zelas/back.svg"
  9915. }
  9916. },
  9917. foot: {
  9918. height: math.unit(1.116, "feet"),
  9919. name: "Foot",
  9920. image: {
  9921. source: "./media/characters/zelas/foot.svg"
  9922. }
  9923. },
  9924. },
  9925. [
  9926. {
  9927. name: "Normal",
  9928. height: math.unit(2.3, "meters")
  9929. },
  9930. {
  9931. name: "Macro",
  9932. height: math.unit(30, "meters"),
  9933. default: true
  9934. },
  9935. ]
  9936. ))
  9937. characterMakers.push(() => makeCharacter(
  9938. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9939. {
  9940. front: {
  9941. height: math.unit(1, "inch"),
  9942. weight: math.unit(0.21, "grams"),
  9943. name: "Front",
  9944. image: {
  9945. source: "./media/characters/talbot/front.svg",
  9946. extra: 594 / 544
  9947. }
  9948. },
  9949. },
  9950. [
  9951. {
  9952. name: "Micro",
  9953. height: math.unit(1, "inch"),
  9954. default: true
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9960. {
  9961. front: {
  9962. height: math.unit(3 + 3 / 12, "feet"),
  9963. weight: math.unit(51.8, "lb"),
  9964. name: "Front",
  9965. image: {
  9966. source: "./media/characters/fliss/front.svg",
  9967. extra: 840 / 640
  9968. }
  9969. },
  9970. },
  9971. [
  9972. {
  9973. name: "Teeny Tiny",
  9974. height: math.unit(1, "mm")
  9975. },
  9976. {
  9977. name: "Small",
  9978. height: math.unit(1, "inch"),
  9979. default: true
  9980. },
  9981. {
  9982. name: "Standard Sylveon",
  9983. height: math.unit(3 + 3 / 12, "feet")
  9984. },
  9985. {
  9986. name: "Large Nuisance",
  9987. height: math.unit(33, "feet")
  9988. },
  9989. {
  9990. name: "City Filler",
  9991. height: math.unit(3000, "feet")
  9992. },
  9993. {
  9994. name: "New Horizon",
  9995. height: math.unit(6000, "miles")
  9996. },
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10001. {
  10002. front: {
  10003. height: math.unit(5, "cm"),
  10004. weight: math.unit(1.94, "g"),
  10005. name: "Front",
  10006. image: {
  10007. source: "./media/characters/fleta/front.svg",
  10008. extra: 835 / 803
  10009. }
  10010. },
  10011. back: {
  10012. height: math.unit(5, "cm"),
  10013. weight: math.unit(1.94, "g"),
  10014. name: "Back",
  10015. image: {
  10016. source: "./media/characters/fleta/back.svg",
  10017. extra: 835 / 803
  10018. }
  10019. },
  10020. },
  10021. [
  10022. {
  10023. name: "Micro",
  10024. height: math.unit(5, "cm"),
  10025. default: true
  10026. },
  10027. ]
  10028. ))
  10029. characterMakers.push(() => makeCharacter(
  10030. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10031. {
  10032. front: {
  10033. height: math.unit(6, "feet"),
  10034. weight: math.unit(225, "lb"),
  10035. name: "Front",
  10036. image: {
  10037. source: "./media/characters/dominic/front.svg",
  10038. extra: 1770 / 1620,
  10039. bottom: 0.025
  10040. }
  10041. },
  10042. back: {
  10043. height: math.unit(6, "feet"),
  10044. weight: math.unit(225, "lb"),
  10045. name: "Back",
  10046. image: {
  10047. source: "./media/characters/dominic/back.svg",
  10048. extra: 1745 / 1620,
  10049. bottom: 0.065
  10050. }
  10051. },
  10052. },
  10053. [
  10054. {
  10055. name: "Nano",
  10056. height: math.unit(0.1, "mm")
  10057. },
  10058. {
  10059. name: "Micro-",
  10060. height: math.unit(1, "mm")
  10061. },
  10062. {
  10063. name: "Micro",
  10064. height: math.unit(4, "inches")
  10065. },
  10066. {
  10067. name: "Normal",
  10068. height: math.unit(6 + 4 / 12, "feet"),
  10069. default: true
  10070. },
  10071. {
  10072. name: "Macro",
  10073. height: math.unit(115, "feet")
  10074. },
  10075. {
  10076. name: "Macro+",
  10077. height: math.unit(955, "feet")
  10078. },
  10079. {
  10080. name: "Megamacro",
  10081. height: math.unit(8990, "feet")
  10082. },
  10083. {
  10084. name: "Gigmacro",
  10085. height: math.unit(9310, "miles")
  10086. },
  10087. {
  10088. name: "Teramacro",
  10089. height: math.unit(1567005010, "miles")
  10090. },
  10091. {
  10092. name: "Examacro",
  10093. height: math.unit(1425, "parsecs")
  10094. },
  10095. ]
  10096. ))
  10097. characterMakers.push(() => makeCharacter(
  10098. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10099. {
  10100. front: {
  10101. height: math.unit(400, "feet"),
  10102. weight: math.unit(44444444, "lb"),
  10103. name: "Front",
  10104. image: {
  10105. source: "./media/characters/major-colonel/front.svg"
  10106. }
  10107. },
  10108. back: {
  10109. height: math.unit(400, "feet"),
  10110. weight: math.unit(44444444, "lb"),
  10111. name: "Back",
  10112. image: {
  10113. source: "./media/characters/major-colonel/back.svg"
  10114. }
  10115. },
  10116. },
  10117. [
  10118. {
  10119. name: "Macro",
  10120. height: math.unit(400, "feet"),
  10121. default: true
  10122. },
  10123. ]
  10124. ))
  10125. characterMakers.push(() => makeCharacter(
  10126. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10127. {
  10128. catFront: {
  10129. height: math.unit(6, "feet"),
  10130. weight: math.unit(120, "lb"),
  10131. name: "Front (Cat Side)",
  10132. image: {
  10133. source: "./media/characters/axel-lycan/cat-front.svg",
  10134. extra: 430 / 402,
  10135. bottom: 43 / 472.35
  10136. }
  10137. },
  10138. catBack: {
  10139. height: math.unit(6, "feet"),
  10140. weight: math.unit(120, "lb"),
  10141. name: "Back (Cat Side)",
  10142. image: {
  10143. source: "./media/characters/axel-lycan/cat-back.svg",
  10144. extra: 447 / 419,
  10145. bottom: 23.3 / 469
  10146. }
  10147. },
  10148. wolfFront: {
  10149. height: math.unit(6, "feet"),
  10150. weight: math.unit(120, "lb"),
  10151. name: "Front (Wolf Side)",
  10152. image: {
  10153. source: "./media/characters/axel-lycan/wolf-front.svg",
  10154. extra: 485 / 456,
  10155. bottom: 19 / 504
  10156. }
  10157. },
  10158. wolfBack: {
  10159. height: math.unit(6, "feet"),
  10160. weight: math.unit(120, "lb"),
  10161. name: "Back (Wolf Side)",
  10162. image: {
  10163. source: "./media/characters/axel-lycan/wolf-back.svg",
  10164. extra: 475 / 438,
  10165. bottom: 39.2 / 514
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Macro",
  10172. height: math.unit(1, "km"),
  10173. default: true
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10179. {
  10180. front: {
  10181. height: math.unit(5 + 9 / 12, "feet"),
  10182. weight: math.unit(175, "lb"),
  10183. name: "Front",
  10184. image: {
  10185. source: "./media/characters/vanrel-hyena/front.svg",
  10186. extra: 1086 / 1010,
  10187. bottom: 0.04
  10188. }
  10189. },
  10190. },
  10191. [
  10192. {
  10193. name: "Normal",
  10194. height: math.unit(5 + 9 / 12, "feet"),
  10195. default: true
  10196. },
  10197. ]
  10198. ))
  10199. characterMakers.push(() => makeCharacter(
  10200. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10201. {
  10202. front: {
  10203. height: math.unit(6, "feet"),
  10204. weight: math.unit(103, "lb"),
  10205. name: "Front",
  10206. image: {
  10207. source: "./media/characters/abbott-absol/front.svg",
  10208. extra: 2010 / 1842
  10209. }
  10210. },
  10211. },
  10212. [
  10213. {
  10214. name: "Megamicro",
  10215. height: math.unit(0.1, "mm")
  10216. },
  10217. {
  10218. name: "Micro",
  10219. height: math.unit(1, "inch")
  10220. },
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(6, "feet"),
  10224. default: true
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10230. {
  10231. front: {
  10232. height: math.unit(6, "feet"),
  10233. weight: math.unit(264, "lb"),
  10234. name: "Front",
  10235. image: {
  10236. source: "./media/characters/hector/front.svg",
  10237. extra: 2280 / 2130,
  10238. bottom: 0.07
  10239. }
  10240. },
  10241. },
  10242. [
  10243. {
  10244. name: "Normal",
  10245. height: math.unit(12.25, "foot"),
  10246. default: true
  10247. },
  10248. {
  10249. name: "Macro",
  10250. height: math.unit(160, "feet")
  10251. },
  10252. ]
  10253. ))
  10254. characterMakers.push(() => makeCharacter(
  10255. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10256. {
  10257. front: {
  10258. height: math.unit(6, "feet"),
  10259. weight: math.unit(150, "lb"),
  10260. name: "Front",
  10261. image: {
  10262. source: "./media/characters/sal/front.svg",
  10263. extra: 1846 / 1699,
  10264. bottom: 0.04
  10265. }
  10266. },
  10267. },
  10268. [
  10269. {
  10270. name: "Megamacro",
  10271. height: math.unit(10, "miles"),
  10272. default: true
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10278. {
  10279. front: {
  10280. height: math.unit(3, "meters"),
  10281. weight: math.unit(450, "kg"),
  10282. name: "front",
  10283. image: {
  10284. source: "./media/characters/ranger/front.svg",
  10285. extra: 2401 / 2243,
  10286. bottom: 0.05
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Normal",
  10293. height: math.unit(3, "meters"),
  10294. default: true
  10295. },
  10296. ]
  10297. ))
  10298. characterMakers.push(() => makeCharacter(
  10299. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10300. {
  10301. front: {
  10302. height: math.unit(14, "feet"),
  10303. weight: math.unit(800, "kg"),
  10304. name: "Front",
  10305. image: {
  10306. source: "./media/characters/theresa/front.svg",
  10307. extra: 3575 / 3346,
  10308. bottom: 0.03
  10309. }
  10310. },
  10311. },
  10312. [
  10313. {
  10314. name: "Normal",
  10315. height: math.unit(14, "feet"),
  10316. default: true
  10317. },
  10318. ]
  10319. ))
  10320. characterMakers.push(() => makeCharacter(
  10321. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10322. {
  10323. front: {
  10324. height: math.unit(6, "feet"),
  10325. weight: math.unit(3, "kg"),
  10326. name: "Front",
  10327. image: {
  10328. source: "./media/characters/ine/front.svg",
  10329. extra: 678 / 539,
  10330. bottom: 0.023
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Normal",
  10337. height: math.unit(2.265, "feet"),
  10338. default: true
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10344. {
  10345. front: {
  10346. height: math.unit(5, "feet"),
  10347. weight: math.unit(30, "kg"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/vial/front.svg",
  10351. extra: 1365 / 1277,
  10352. bottom: 0.04
  10353. }
  10354. },
  10355. },
  10356. [
  10357. {
  10358. name: "Normal",
  10359. height: math.unit(5, "feet"),
  10360. default: true
  10361. },
  10362. ]
  10363. ))
  10364. characterMakers.push(() => makeCharacter(
  10365. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10366. {
  10367. side: {
  10368. height: math.unit(3.4, "meters"),
  10369. weight: math.unit(1000, "lb"),
  10370. name: "Side",
  10371. image: {
  10372. source: "./media/characters/rovoska/side.svg",
  10373. extra: 4403 / 1515
  10374. }
  10375. },
  10376. },
  10377. [
  10378. {
  10379. name: "Normal",
  10380. height: math.unit(3.4, "meters"),
  10381. default: true
  10382. },
  10383. ]
  10384. ))
  10385. characterMakers.push(() => makeCharacter(
  10386. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10387. {
  10388. front: {
  10389. height: math.unit(8, "feet"),
  10390. weight: math.unit(315, "lb"),
  10391. name: "Front",
  10392. image: {
  10393. source: "./media/characters/gunner-rotthbauer/front.svg"
  10394. }
  10395. },
  10396. back: {
  10397. height: math.unit(8, "feet"),
  10398. weight: math.unit(315, "lb"),
  10399. name: "Back",
  10400. image: {
  10401. source: "./media/characters/gunner-rotthbauer/back.svg"
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Micro",
  10408. height: math.unit(3.5, "inches")
  10409. },
  10410. {
  10411. name: "Normal",
  10412. height: math.unit(8, "feet"),
  10413. default: true
  10414. },
  10415. {
  10416. name: "Macro",
  10417. height: math.unit(250, "feet")
  10418. },
  10419. {
  10420. name: "Megamacro",
  10421. height: math.unit(1, "AU")
  10422. },
  10423. ]
  10424. ))
  10425. characterMakers.push(() => makeCharacter(
  10426. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10427. {
  10428. front: {
  10429. height: math.unit(5 + 5 / 12, "feet"),
  10430. weight: math.unit(140, "lb"),
  10431. name: "Front",
  10432. image: {
  10433. source: "./media/characters/allatia/front.svg",
  10434. extra: 1227 / 1180,
  10435. bottom: 0.027
  10436. }
  10437. },
  10438. },
  10439. [
  10440. {
  10441. name: "Normal",
  10442. height: math.unit(5 + 5 / 12, "feet")
  10443. },
  10444. {
  10445. name: "Macro",
  10446. height: math.unit(250, "feet"),
  10447. default: true
  10448. },
  10449. {
  10450. name: "Megamacro",
  10451. height: math.unit(8, "miles")
  10452. }
  10453. ]
  10454. ))
  10455. characterMakers.push(() => makeCharacter(
  10456. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10457. {
  10458. front: {
  10459. height: math.unit(6, "feet"),
  10460. weight: math.unit(120, "lb"),
  10461. name: "Front",
  10462. image: {
  10463. source: "./media/characters/tene/front.svg",
  10464. extra: 814/750,
  10465. bottom: 36/850
  10466. }
  10467. },
  10468. stomping: {
  10469. height: math.unit(2.025, "meters"),
  10470. weight: math.unit(120, "lb"),
  10471. name: "Stomping",
  10472. image: {
  10473. source: "./media/characters/tene/stomping.svg",
  10474. extra: 885/821,
  10475. bottom: 15/900
  10476. }
  10477. },
  10478. sitting: {
  10479. height: math.unit(1, "meter"),
  10480. weight: math.unit(120, "lb"),
  10481. name: "Sitting",
  10482. image: {
  10483. source: "./media/characters/tene/sitting.svg",
  10484. extra: 396/366,
  10485. bottom: 79/475
  10486. }
  10487. },
  10488. smiling: {
  10489. height: math.unit(1.2, "feet"),
  10490. name: "Smiling",
  10491. image: {
  10492. source: "./media/characters/tene/smiling.svg",
  10493. extra: 1364/1071,
  10494. bottom: 0/1364
  10495. }
  10496. },
  10497. smug: {
  10498. height: math.unit(1.3, "feet"),
  10499. name: "Smug",
  10500. image: {
  10501. source: "./media/characters/tene/smug.svg",
  10502. extra: 1323/1082,
  10503. bottom: 0/1323
  10504. }
  10505. },
  10506. feral: {
  10507. height: math.unit(3.9, "feet"),
  10508. weight: math.unit(250, "lb"),
  10509. name: "Feral",
  10510. image: {
  10511. source: "./media/characters/tene/feral.svg",
  10512. extra: 717 / 458,
  10513. bottom: 0.179
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(6, "feet")
  10521. },
  10522. {
  10523. name: "Macro",
  10524. height: math.unit(300, "feet"),
  10525. default: true
  10526. },
  10527. {
  10528. name: "Megamacro",
  10529. height: math.unit(5, "miles")
  10530. },
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10535. {
  10536. side: {
  10537. height: math.unit(6, "feet"),
  10538. name: "Side",
  10539. image: {
  10540. source: "./media/characters/evander/side.svg",
  10541. extra: 877 / 477
  10542. }
  10543. },
  10544. },
  10545. [
  10546. {
  10547. name: "Normal",
  10548. height: math.unit(0.83, "meters"),
  10549. default: true
  10550. },
  10551. ]
  10552. ))
  10553. characterMakers.push(() => makeCharacter(
  10554. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10555. {
  10556. front: {
  10557. height: math.unit(12, "feet"),
  10558. weight: math.unit(1000, "lb"),
  10559. name: "Front",
  10560. image: {
  10561. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10562. extra: 1762 / 1611
  10563. }
  10564. },
  10565. back: {
  10566. height: math.unit(12, "feet"),
  10567. weight: math.unit(1000, "lb"),
  10568. name: "Back",
  10569. image: {
  10570. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10571. extra: 1762 / 1611
  10572. }
  10573. },
  10574. },
  10575. [
  10576. {
  10577. name: "Normal",
  10578. height: math.unit(12, "feet"),
  10579. default: true
  10580. },
  10581. {
  10582. name: "Kaiju",
  10583. height: math.unit(150, "feet")
  10584. },
  10585. ]
  10586. ))
  10587. characterMakers.push(() => makeCharacter(
  10588. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10589. {
  10590. front: {
  10591. height: math.unit(6, "feet"),
  10592. weight: math.unit(150, "lb"),
  10593. name: "Front",
  10594. image: {
  10595. source: "./media/characters/zero-alurus/front.svg"
  10596. }
  10597. },
  10598. back: {
  10599. height: math.unit(6, "feet"),
  10600. weight: math.unit(150, "lb"),
  10601. name: "Back",
  10602. image: {
  10603. source: "./media/characters/zero-alurus/back.svg"
  10604. }
  10605. },
  10606. },
  10607. [
  10608. {
  10609. name: "Normal",
  10610. height: math.unit(5 + 10 / 12, "feet")
  10611. },
  10612. {
  10613. name: "Macro",
  10614. height: math.unit(60, "feet"),
  10615. default: true
  10616. },
  10617. {
  10618. name: "Macro+",
  10619. height: math.unit(450, "feet")
  10620. },
  10621. ]
  10622. ))
  10623. characterMakers.push(() => makeCharacter(
  10624. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10625. {
  10626. front: {
  10627. height: math.unit(6, "feet"),
  10628. weight: math.unit(200, "lb"),
  10629. name: "Front",
  10630. image: {
  10631. source: "./media/characters/mega-shi/front.svg",
  10632. extra: 1279 / 1250,
  10633. bottom: 0.02
  10634. }
  10635. },
  10636. back: {
  10637. height: math.unit(6, "feet"),
  10638. weight: math.unit(200, "lb"),
  10639. name: "Back",
  10640. image: {
  10641. source: "./media/characters/mega-shi/back.svg",
  10642. extra: 1279 / 1250,
  10643. bottom: 0.02
  10644. }
  10645. },
  10646. },
  10647. [
  10648. {
  10649. name: "Micro",
  10650. height: math.unit(16 + 6 / 12, "feet")
  10651. },
  10652. {
  10653. name: "Third Dimension",
  10654. height: math.unit(40, "meters")
  10655. },
  10656. {
  10657. name: "Normal",
  10658. height: math.unit(660, "feet"),
  10659. default: true
  10660. },
  10661. {
  10662. name: "Megamacro",
  10663. height: math.unit(10, "miles")
  10664. },
  10665. {
  10666. name: "Planetary Launch",
  10667. height: math.unit(500, "miles")
  10668. },
  10669. {
  10670. name: "Interstellar",
  10671. height: math.unit(1e9, "miles")
  10672. },
  10673. {
  10674. name: "Leaving the Universe",
  10675. height: math.unit(1, "gigaparsec")
  10676. },
  10677. {
  10678. name: "Travelling Universes",
  10679. height: math.unit(30e15, "parsecs")
  10680. },
  10681. ]
  10682. ))
  10683. characterMakers.push(() => makeCharacter(
  10684. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10685. {
  10686. front: {
  10687. height: math.unit(5 + 4/12, "feet"),
  10688. weight: math.unit(120, "lb"),
  10689. name: "Front",
  10690. image: {
  10691. source: "./media/characters/odyssey/front.svg",
  10692. extra: 1747/1571,
  10693. bottom: 47/1794
  10694. }
  10695. },
  10696. side: {
  10697. height: math.unit(5.1, "feet"),
  10698. weight: math.unit(120, "lb"),
  10699. name: "Side",
  10700. image: {
  10701. source: "./media/characters/odyssey/side.svg",
  10702. extra: 1847/1619,
  10703. bottom: 47/1894
  10704. }
  10705. },
  10706. lounging: {
  10707. height: math.unit(1.464, "feet"),
  10708. weight: math.unit(120, "lb"),
  10709. name: "Lounging",
  10710. image: {
  10711. source: "./media/characters/odyssey/lounging.svg",
  10712. extra: 1235/837,
  10713. bottom: 551/1786
  10714. }
  10715. },
  10716. },
  10717. [
  10718. {
  10719. name: "Normal",
  10720. height: math.unit(5 + 4 / 12, "feet")
  10721. },
  10722. {
  10723. name: "Macro",
  10724. height: math.unit(1, "km")
  10725. },
  10726. {
  10727. name: "Megamacro",
  10728. height: math.unit(3000, "km")
  10729. },
  10730. {
  10731. name: "Gigamacro",
  10732. height: math.unit(1, "AU"),
  10733. default: true
  10734. },
  10735. {
  10736. name: "Omniversal",
  10737. height: math.unit(100e14, "lightyears")
  10738. },
  10739. ]
  10740. ))
  10741. characterMakers.push(() => makeCharacter(
  10742. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10743. {
  10744. front: {
  10745. height: math.unit(6, "feet"),
  10746. weight: math.unit(300, "lb"),
  10747. name: "Front",
  10748. image: {
  10749. source: "./media/characters/mekuto/front.svg",
  10750. extra: 921 / 832,
  10751. bottom: 0.03
  10752. }
  10753. },
  10754. hand: {
  10755. height: math.unit(6 / 10.24, "feet"),
  10756. name: "Hand",
  10757. image: {
  10758. source: "./media/characters/mekuto/hand.svg"
  10759. }
  10760. },
  10761. foot: {
  10762. height: math.unit(6 / 5.05, "feet"),
  10763. name: "Foot",
  10764. image: {
  10765. source: "./media/characters/mekuto/foot.svg"
  10766. }
  10767. },
  10768. },
  10769. [
  10770. {
  10771. name: "Minimicro",
  10772. height: math.unit(0.2, "inches")
  10773. },
  10774. {
  10775. name: "Micro",
  10776. height: math.unit(1.5, "inches")
  10777. },
  10778. {
  10779. name: "Normal",
  10780. height: math.unit(5 + 11 / 12, "feet"),
  10781. default: true
  10782. },
  10783. {
  10784. name: "Minimacro",
  10785. height: math.unit(17 + 9 / 12, "feet")
  10786. },
  10787. {
  10788. name: "Macro",
  10789. height: math.unit(177.5, "feet")
  10790. },
  10791. {
  10792. name: "Megamacro",
  10793. height: math.unit(152, "miles")
  10794. },
  10795. ]
  10796. ))
  10797. characterMakers.push(() => makeCharacter(
  10798. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10799. {
  10800. front: {
  10801. height: math.unit(6.5, "inches"),
  10802. weight: math.unit(13, "oz"),
  10803. name: "Front",
  10804. image: {
  10805. source: "./media/characters/dafydd-tomos/front.svg",
  10806. extra: 2990 / 2603,
  10807. bottom: 0.03
  10808. }
  10809. },
  10810. },
  10811. [
  10812. {
  10813. name: "Micro",
  10814. height: math.unit(6.5, "inches"),
  10815. default: true
  10816. },
  10817. ]
  10818. ))
  10819. characterMakers.push(() => makeCharacter(
  10820. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10821. {
  10822. front: {
  10823. height: math.unit(6, "feet"),
  10824. weight: math.unit(150, "lb"),
  10825. name: "Front",
  10826. image: {
  10827. source: "./media/characters/splinter/front.svg",
  10828. extra: 2990 / 2882,
  10829. bottom: 0.04
  10830. }
  10831. },
  10832. back: {
  10833. height: math.unit(6, "feet"),
  10834. weight: math.unit(150, "lb"),
  10835. name: "Back",
  10836. image: {
  10837. source: "./media/characters/splinter/back.svg",
  10838. extra: 2990 / 2882,
  10839. bottom: 0.04
  10840. }
  10841. },
  10842. },
  10843. [
  10844. {
  10845. name: "Normal",
  10846. height: math.unit(6, "feet")
  10847. },
  10848. {
  10849. name: "Macro",
  10850. height: math.unit(230, "meters"),
  10851. default: true
  10852. },
  10853. ]
  10854. ))
  10855. characterMakers.push(() => makeCharacter(
  10856. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10857. {
  10858. front: {
  10859. height: math.unit(4 + 10 / 12, "feet"),
  10860. weight: math.unit(480, "lb"),
  10861. name: "Front",
  10862. image: {
  10863. source: "./media/characters/snow-gabumon/front.svg",
  10864. extra: 1140 / 963,
  10865. bottom: 0.058
  10866. }
  10867. },
  10868. back: {
  10869. height: math.unit(4 + 10 / 12, "feet"),
  10870. weight: math.unit(480, "lb"),
  10871. name: "Back",
  10872. image: {
  10873. source: "./media/characters/snow-gabumon/back.svg",
  10874. extra: 1115 / 962,
  10875. bottom: 0.041
  10876. }
  10877. },
  10878. frontUndresed: {
  10879. height: math.unit(4 + 10 / 12, "feet"),
  10880. weight: math.unit(480, "lb"),
  10881. name: "Front (Undressed)",
  10882. image: {
  10883. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10884. extra: 1061 / 960,
  10885. bottom: 0.045
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Micro",
  10892. height: math.unit(1, "inch")
  10893. },
  10894. {
  10895. name: "Normal",
  10896. height: math.unit(4 + 10 / 12, "feet"),
  10897. default: true
  10898. },
  10899. {
  10900. name: "Macro",
  10901. height: math.unit(200, "feet")
  10902. },
  10903. {
  10904. name: "Megamacro",
  10905. height: math.unit(120, "miles")
  10906. },
  10907. {
  10908. name: "Gigamacro",
  10909. height: math.unit(9800, "miles")
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10915. {
  10916. front: {
  10917. height: math.unit(1.7, "meters"),
  10918. weight: math.unit(140, "lb"),
  10919. name: "Front",
  10920. image: {
  10921. source: "./media/characters/moody/front.svg",
  10922. extra: 3226 / 3007,
  10923. bottom: 0.087
  10924. }
  10925. },
  10926. },
  10927. [
  10928. {
  10929. name: "Micro",
  10930. height: math.unit(1, "mm")
  10931. },
  10932. {
  10933. name: "Normal",
  10934. height: math.unit(1.7, "meters"),
  10935. default: true
  10936. },
  10937. {
  10938. name: "Macro",
  10939. height: math.unit(80, "meters")
  10940. },
  10941. {
  10942. name: "Macro+",
  10943. height: math.unit(500, "meters")
  10944. },
  10945. ]
  10946. ))
  10947. characterMakers.push(() => makeCharacter(
  10948. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10949. {
  10950. front: {
  10951. height: math.unit(6, "feet"),
  10952. weight: math.unit(150, "lb"),
  10953. name: "Front",
  10954. image: {
  10955. source: "./media/characters/zyas/front.svg",
  10956. extra: 1180 / 1120,
  10957. bottom: 0.045
  10958. }
  10959. },
  10960. },
  10961. [
  10962. {
  10963. name: "Normal",
  10964. height: math.unit(10, "feet"),
  10965. default: true
  10966. },
  10967. {
  10968. name: "Macro",
  10969. height: math.unit(500, "feet")
  10970. },
  10971. {
  10972. name: "Megamacro",
  10973. height: math.unit(5, "miles")
  10974. },
  10975. {
  10976. name: "Teramacro",
  10977. height: math.unit(150000, "miles")
  10978. },
  10979. ]
  10980. ))
  10981. characterMakers.push(() => makeCharacter(
  10982. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10983. {
  10984. front: {
  10985. height: math.unit(6, "feet"),
  10986. weight: math.unit(150, "lb"),
  10987. name: "Front",
  10988. image: {
  10989. source: "./media/characters/cuon/front.svg",
  10990. extra: 1390 / 1320,
  10991. bottom: 0.008
  10992. }
  10993. },
  10994. },
  10995. [
  10996. {
  10997. name: "Micro",
  10998. height: math.unit(3, "inches")
  10999. },
  11000. {
  11001. name: "Normal",
  11002. height: math.unit(18 + 9 / 12, "feet"),
  11003. default: true
  11004. },
  11005. {
  11006. name: "Macro",
  11007. height: math.unit(360, "feet")
  11008. },
  11009. {
  11010. name: "Megamacro",
  11011. height: math.unit(360, "miles")
  11012. },
  11013. ]
  11014. ))
  11015. characterMakers.push(() => makeCharacter(
  11016. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11017. {
  11018. front: {
  11019. height: math.unit(2.4, "meters"),
  11020. weight: math.unit(70, "kg"),
  11021. name: "Front",
  11022. image: {
  11023. source: "./media/characters/nyanuxk/front.svg",
  11024. extra: 1172 / 1084,
  11025. bottom: 0.065
  11026. }
  11027. },
  11028. side: {
  11029. height: math.unit(2.4, "meters"),
  11030. weight: math.unit(70, "kg"),
  11031. name: "Side",
  11032. image: {
  11033. source: "./media/characters/nyanuxk/side.svg",
  11034. extra: 1190 / 1132,
  11035. bottom: 0.007
  11036. }
  11037. },
  11038. back: {
  11039. height: math.unit(2.4, "meters"),
  11040. weight: math.unit(70, "kg"),
  11041. name: "Back",
  11042. image: {
  11043. source: "./media/characters/nyanuxk/back.svg",
  11044. extra: 1200 / 1141,
  11045. bottom: 0.015
  11046. }
  11047. },
  11048. foot: {
  11049. height: math.unit(0.52, "meters"),
  11050. name: "Foot",
  11051. image: {
  11052. source: "./media/characters/nyanuxk/foot.svg"
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Micro",
  11059. height: math.unit(2, "cm")
  11060. },
  11061. {
  11062. name: "Normal",
  11063. height: math.unit(2.4, "meters"),
  11064. default: true
  11065. },
  11066. {
  11067. name: "Smaller Macro",
  11068. height: math.unit(120, "meters")
  11069. },
  11070. {
  11071. name: "Bigger Macro",
  11072. height: math.unit(1.2, "km")
  11073. },
  11074. {
  11075. name: "Megamacro",
  11076. height: math.unit(15, "kilometers")
  11077. },
  11078. {
  11079. name: "Gigamacro",
  11080. height: math.unit(2000, "km")
  11081. },
  11082. {
  11083. name: "Teramacro",
  11084. height: math.unit(500000, "km")
  11085. },
  11086. ]
  11087. ))
  11088. characterMakers.push(() => makeCharacter(
  11089. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11090. {
  11091. side: {
  11092. height: math.unit(6, "feet"),
  11093. name: "Side",
  11094. image: {
  11095. source: "./media/characters/ailbhe/side.svg",
  11096. extra: 757 / 464,
  11097. bottom: 0.041
  11098. }
  11099. },
  11100. },
  11101. [
  11102. {
  11103. name: "Normal",
  11104. height: math.unit(1.07, "meters"),
  11105. default: true
  11106. },
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11111. {
  11112. front: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(120, "kg"),
  11115. name: "Front",
  11116. image: {
  11117. source: "./media/characters/zevulfius/front.svg",
  11118. extra: 965 / 903
  11119. }
  11120. },
  11121. side: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(120, "kg"),
  11124. name: "Side",
  11125. image: {
  11126. source: "./media/characters/zevulfius/side.svg",
  11127. extra: 939 / 900
  11128. }
  11129. },
  11130. back: {
  11131. height: math.unit(6, "feet"),
  11132. weight: math.unit(120, "kg"),
  11133. name: "Back",
  11134. image: {
  11135. source: "./media/characters/zevulfius/back.svg",
  11136. extra: 918 / 854,
  11137. bottom: 0.005
  11138. }
  11139. },
  11140. foot: {
  11141. height: math.unit(6 / 3.72, "feet"),
  11142. name: "Foot",
  11143. image: {
  11144. source: "./media/characters/zevulfius/foot.svg"
  11145. }
  11146. },
  11147. },
  11148. [
  11149. {
  11150. name: "Macro",
  11151. height: math.unit(750, "meters")
  11152. },
  11153. {
  11154. name: "Megamacro",
  11155. height: math.unit(20, "km"),
  11156. default: true
  11157. },
  11158. {
  11159. name: "Gigamacro",
  11160. height: math.unit(2000, "km")
  11161. },
  11162. {
  11163. name: "Teramacro",
  11164. height: math.unit(250000, "km")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(100, "feet"),
  11173. weight: math.unit(350, "kg"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/rikes/front.svg",
  11177. extra: 1565 / 1483,
  11178. bottom: 0.017
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Macro",
  11185. height: math.unit(100, "feet"),
  11186. default: true
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11192. {
  11193. front: {
  11194. height: math.unit(8, "feet"),
  11195. weight: math.unit(356, "lb"),
  11196. name: "Front",
  11197. image: {
  11198. source: "./media/characters/adam-silver-mane/front.svg",
  11199. extra: 1036/937,
  11200. bottom: 63/1099
  11201. }
  11202. },
  11203. side: {
  11204. height: math.unit(8, "feet"),
  11205. weight: math.unit(356, "lb"),
  11206. name: "Side",
  11207. image: {
  11208. source: "./media/characters/adam-silver-mane/side.svg",
  11209. extra: 997/901,
  11210. bottom: 59/1056
  11211. }
  11212. },
  11213. frontNsfw: {
  11214. height: math.unit(8, "feet"),
  11215. weight: math.unit(356, "lb"),
  11216. name: "Front (NSFW)",
  11217. image: {
  11218. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11219. extra: 1036/937,
  11220. bottom: 63/1099
  11221. }
  11222. },
  11223. sideNsfw: {
  11224. height: math.unit(8, "feet"),
  11225. weight: math.unit(356, "lb"),
  11226. name: "Side (NSFW)",
  11227. image: {
  11228. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11229. extra: 997/901,
  11230. bottom: 59/1056
  11231. }
  11232. },
  11233. dick: {
  11234. height: math.unit(2.1, "feet"),
  11235. name: "Dick",
  11236. image: {
  11237. source: "./media/characters/adam-silver-mane/dick.svg"
  11238. }
  11239. },
  11240. taur: {
  11241. height: math.unit(16, "feet"),
  11242. weight: math.unit(1500, "kg"),
  11243. name: "Taur",
  11244. image: {
  11245. source: "./media/characters/adam-silver-mane/taur.svg",
  11246. extra: 1713 / 1571,
  11247. bottom: 0.01
  11248. }
  11249. },
  11250. },
  11251. [
  11252. {
  11253. name: "Normal",
  11254. height: math.unit(8, "feet")
  11255. },
  11256. {
  11257. name: "Minimacro",
  11258. height: math.unit(80, "feet")
  11259. },
  11260. {
  11261. name: "MDA",
  11262. height: math.unit(80, "meters")
  11263. },
  11264. {
  11265. name: "Macro",
  11266. height: math.unit(800, "feet"),
  11267. default: true
  11268. },
  11269. {
  11270. name: "Megamacro",
  11271. height: math.unit(8000, "feet")
  11272. },
  11273. {
  11274. name: "Gigamacro",
  11275. height: math.unit(800, "miles")
  11276. },
  11277. {
  11278. name: "Teramacro",
  11279. height: math.unit(80000, "miles")
  11280. },
  11281. {
  11282. name: "Celestial",
  11283. height: math.unit(8e6, "miles")
  11284. },
  11285. {
  11286. name: "Star Dragon",
  11287. height: math.unit(800000, "parsecs")
  11288. },
  11289. {
  11290. name: "Godly",
  11291. height: math.unit(800, "teraparsecs")
  11292. },
  11293. ]
  11294. ))
  11295. characterMakers.push(() => makeCharacter(
  11296. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11297. {
  11298. front: {
  11299. height: math.unit(6, "feet"),
  11300. weight: math.unit(150, "lb"),
  11301. name: "Front",
  11302. image: {
  11303. source: "./media/characters/ky'owin/front.svg",
  11304. extra: 3888 / 3068,
  11305. bottom: 0.015
  11306. }
  11307. },
  11308. },
  11309. [
  11310. {
  11311. name: "Normal",
  11312. height: math.unit(6 + 8 / 12, "feet")
  11313. },
  11314. {
  11315. name: "Large",
  11316. height: math.unit(68, "feet")
  11317. },
  11318. {
  11319. name: "Macro",
  11320. height: math.unit(132, "feet")
  11321. },
  11322. {
  11323. name: "Macro+",
  11324. height: math.unit(340, "feet")
  11325. },
  11326. {
  11327. name: "Macro++",
  11328. height: math.unit(680, "feet"),
  11329. default: true
  11330. },
  11331. {
  11332. name: "Megamacro",
  11333. height: math.unit(1, "mile")
  11334. },
  11335. {
  11336. name: "Megamacro+",
  11337. height: math.unit(10, "miles")
  11338. },
  11339. ]
  11340. ))
  11341. characterMakers.push(() => makeCharacter(
  11342. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11343. {
  11344. front: {
  11345. height: math.unit(4, "feet"),
  11346. weight: math.unit(50, "lb"),
  11347. name: "Front",
  11348. image: {
  11349. source: "./media/characters/mal/front.svg",
  11350. extra: 785 / 724,
  11351. bottom: 0.07
  11352. }
  11353. },
  11354. },
  11355. [
  11356. {
  11357. name: "Micro",
  11358. height: math.unit(4, "inches")
  11359. },
  11360. {
  11361. name: "Normal",
  11362. height: math.unit(4, "feet"),
  11363. default: true
  11364. },
  11365. {
  11366. name: "Macro",
  11367. height: math.unit(200, "feet")
  11368. },
  11369. ]
  11370. ))
  11371. characterMakers.push(() => makeCharacter(
  11372. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11373. {
  11374. front: {
  11375. height: math.unit(6, "feet"),
  11376. weight: math.unit(150, "lb"),
  11377. name: "Front",
  11378. image: {
  11379. source: "./media/characters/jordan-deware/front.svg",
  11380. extra: 1191 / 1012
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Nano",
  11387. height: math.unit(0.01, "mm")
  11388. },
  11389. {
  11390. name: "Minimicro",
  11391. height: math.unit(1, "mm")
  11392. },
  11393. {
  11394. name: "Micro",
  11395. height: math.unit(0.5, "inches")
  11396. },
  11397. {
  11398. name: "Normal",
  11399. height: math.unit(4, "feet"),
  11400. default: true
  11401. },
  11402. {
  11403. name: "Minimacro",
  11404. height: math.unit(40, "meters")
  11405. },
  11406. {
  11407. name: "Small Macro",
  11408. height: math.unit(400, "meters")
  11409. },
  11410. {
  11411. name: "Macro",
  11412. height: math.unit(4, "miles")
  11413. },
  11414. {
  11415. name: "Megamacro",
  11416. height: math.unit(40, "miles")
  11417. },
  11418. {
  11419. name: "Megamacro+",
  11420. height: math.unit(400, "miles")
  11421. },
  11422. {
  11423. name: "Gigamacro",
  11424. height: math.unit(400000, "miles")
  11425. },
  11426. ]
  11427. ))
  11428. characterMakers.push(() => makeCharacter(
  11429. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11430. {
  11431. side: {
  11432. height: math.unit(6, "feet"),
  11433. weight: math.unit(150, "lb"),
  11434. name: "Side",
  11435. image: {
  11436. source: "./media/characters/kimiko/side.svg",
  11437. extra: 600 / 358
  11438. }
  11439. },
  11440. },
  11441. [
  11442. {
  11443. name: "Normal",
  11444. height: math.unit(15, "feet"),
  11445. default: true
  11446. },
  11447. {
  11448. name: "Macro",
  11449. height: math.unit(220, "feet")
  11450. },
  11451. {
  11452. name: "Macro+",
  11453. height: math.unit(1450, "feet")
  11454. },
  11455. {
  11456. name: "Megamacro",
  11457. height: math.unit(11500, "feet")
  11458. },
  11459. {
  11460. name: "Gigamacro",
  11461. height: math.unit(9500, "miles")
  11462. },
  11463. {
  11464. name: "Teramacro",
  11465. height: math.unit(2208005005, "miles")
  11466. },
  11467. {
  11468. name: "Examacro",
  11469. height: math.unit(2750, "parsecs")
  11470. },
  11471. {
  11472. name: "Zettamacro",
  11473. height: math.unit(101500, "parsecs")
  11474. },
  11475. ]
  11476. ))
  11477. characterMakers.push(() => makeCharacter(
  11478. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11479. {
  11480. front: {
  11481. height: math.unit(6, "feet"),
  11482. weight: math.unit(70, "kg"),
  11483. name: "Front",
  11484. image: {
  11485. source: "./media/characters/andrew-sleepy/front.svg"
  11486. }
  11487. },
  11488. side: {
  11489. height: math.unit(6, "feet"),
  11490. weight: math.unit(70, "kg"),
  11491. name: "Side",
  11492. image: {
  11493. source: "./media/characters/andrew-sleepy/side.svg"
  11494. }
  11495. },
  11496. },
  11497. [
  11498. {
  11499. name: "Micro",
  11500. height: math.unit(1, "mm"),
  11501. default: true
  11502. },
  11503. ]
  11504. ))
  11505. characterMakers.push(() => makeCharacter(
  11506. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11507. {
  11508. front: {
  11509. height: math.unit(6, "feet"),
  11510. weight: math.unit(150, "lb"),
  11511. name: "Front",
  11512. image: {
  11513. source: "./media/characters/judio/front.svg",
  11514. extra: 1258 / 1110
  11515. }
  11516. },
  11517. },
  11518. [
  11519. {
  11520. name: "Normal",
  11521. height: math.unit(5 + 6 / 12, "feet")
  11522. },
  11523. {
  11524. name: "Macro",
  11525. height: math.unit(1000, "feet"),
  11526. default: true
  11527. },
  11528. {
  11529. name: "Megamacro",
  11530. height: math.unit(10, "miles")
  11531. },
  11532. ]
  11533. ))
  11534. characterMakers.push(() => makeCharacter(
  11535. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11536. {
  11537. frontDressed: {
  11538. height: math.unit(6, "feet"),
  11539. weight: math.unit(68, "kg"),
  11540. name: "Front (Dressed)",
  11541. image: {
  11542. source: "./media/characters/nomaxice/front-dressed.svg",
  11543. extra: 1137/824,
  11544. bottom: 74/1211
  11545. }
  11546. },
  11547. frontShorts: {
  11548. height: math.unit(6, "feet"),
  11549. weight: math.unit(68, "kg"),
  11550. name: "Front (Shorts)",
  11551. image: {
  11552. source: "./media/characters/nomaxice/front-shorts.svg",
  11553. extra: 1137/824,
  11554. bottom: 74/1211
  11555. }
  11556. },
  11557. back: {
  11558. height: math.unit(6, "feet"),
  11559. weight: math.unit(68, "kg"),
  11560. name: "Back",
  11561. image: {
  11562. source: "./media/characters/nomaxice/back.svg",
  11563. extra: 822/786,
  11564. bottom: 39/861
  11565. }
  11566. },
  11567. hand: {
  11568. height: math.unit(0.565, "feet"),
  11569. name: "Hand",
  11570. image: {
  11571. source: "./media/characters/nomaxice/hand.svg"
  11572. }
  11573. },
  11574. foot: {
  11575. height: math.unit(1, "feet"),
  11576. name: "Foot",
  11577. image: {
  11578. source: "./media/characters/nomaxice/foot.svg"
  11579. }
  11580. },
  11581. },
  11582. [
  11583. {
  11584. name: "Micro",
  11585. height: math.unit(8, "cm")
  11586. },
  11587. {
  11588. name: "Norm",
  11589. height: math.unit(1.82, "m")
  11590. },
  11591. {
  11592. name: "Norm+",
  11593. height: math.unit(8.8, "feet"),
  11594. default: true
  11595. },
  11596. {
  11597. name: "Big",
  11598. height: math.unit(8, "meters")
  11599. },
  11600. {
  11601. name: "Macro",
  11602. height: math.unit(18, "meters")
  11603. },
  11604. {
  11605. name: "Macro+",
  11606. height: math.unit(88, "meters")
  11607. },
  11608. ]
  11609. ))
  11610. characterMakers.push(() => makeCharacter(
  11611. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11612. {
  11613. front: {
  11614. height: math.unit(12, "feet"),
  11615. weight: math.unit(1.5, "tons"),
  11616. name: "Front",
  11617. image: {
  11618. source: "./media/characters/dydros/front.svg",
  11619. extra: 863 / 800,
  11620. bottom: 0.015
  11621. }
  11622. },
  11623. back: {
  11624. height: math.unit(12, "feet"),
  11625. weight: math.unit(1.5, "tons"),
  11626. name: "Back",
  11627. image: {
  11628. source: "./media/characters/dydros/back.svg",
  11629. extra: 900 / 843,
  11630. bottom: 0.005
  11631. }
  11632. },
  11633. },
  11634. [
  11635. {
  11636. name: "Normal",
  11637. height: math.unit(12, "feet"),
  11638. default: true
  11639. },
  11640. ]
  11641. ))
  11642. characterMakers.push(() => makeCharacter(
  11643. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11644. {
  11645. front: {
  11646. height: math.unit(6, "feet"),
  11647. weight: math.unit(100, "kg"),
  11648. name: "Front",
  11649. image: {
  11650. source: "./media/characters/riggi/front.svg",
  11651. extra: 5787 / 5303
  11652. }
  11653. },
  11654. hyper: {
  11655. height: math.unit(6 * 5 / 3, "feet"),
  11656. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11657. name: "Hyper",
  11658. image: {
  11659. source: "./media/characters/riggi/hyper.svg",
  11660. extra: 3595 / 3485
  11661. }
  11662. },
  11663. },
  11664. [
  11665. {
  11666. name: "Small Macro",
  11667. height: math.unit(50, "feet")
  11668. },
  11669. {
  11670. name: "Default",
  11671. height: math.unit(200, "feet"),
  11672. default: true
  11673. },
  11674. {
  11675. name: "Loom",
  11676. height: math.unit(10000, "feet")
  11677. },
  11678. {
  11679. name: "Cruising Altitude",
  11680. height: math.unit(30000, "feet")
  11681. },
  11682. {
  11683. name: "Megamacro",
  11684. height: math.unit(100, "miles")
  11685. },
  11686. {
  11687. name: "Continent Sized",
  11688. height: math.unit(2800, "miles")
  11689. },
  11690. {
  11691. name: "Earth Sized",
  11692. height: math.unit(8000, "miles")
  11693. },
  11694. ]
  11695. ))
  11696. characterMakers.push(() => makeCharacter(
  11697. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11698. {
  11699. front: {
  11700. height: math.unit(6, "feet"),
  11701. weight: math.unit(250, "lb"),
  11702. name: "Front",
  11703. image: {
  11704. source: "./media/characters/alexi/front.svg",
  11705. extra: 3483 / 3291,
  11706. bottom: 0.04
  11707. }
  11708. },
  11709. back: {
  11710. height: math.unit(6, "feet"),
  11711. weight: math.unit(250, "lb"),
  11712. name: "Back",
  11713. image: {
  11714. source: "./media/characters/alexi/back.svg",
  11715. extra: 3533 / 3356,
  11716. bottom: 0.021
  11717. }
  11718. },
  11719. frontTransforming: {
  11720. height: math.unit(8.58, "feet"),
  11721. weight: math.unit(1300, "lb"),
  11722. name: "Transforming",
  11723. image: {
  11724. source: "./media/characters/alexi/front-transforming.svg",
  11725. extra: 437 / 409,
  11726. bottom: 19 / 458.66
  11727. }
  11728. },
  11729. frontTransformed: {
  11730. height: math.unit(12.5, "feet"),
  11731. weight: math.unit(4000, "lb"),
  11732. name: "Transformed",
  11733. image: {
  11734. source: "./media/characters/alexi/front-transformed.svg",
  11735. extra: 639 / 614,
  11736. bottom: 30.55 / 671
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(14, "feet"),
  11744. default: true
  11745. },
  11746. {
  11747. name: "Minimacro",
  11748. height: math.unit(30, "meters")
  11749. },
  11750. {
  11751. name: "Macro",
  11752. height: math.unit(500, "meters")
  11753. },
  11754. {
  11755. name: "Megamacro",
  11756. height: math.unit(9000, "km")
  11757. },
  11758. {
  11759. name: "Teramacro",
  11760. height: math.unit(384000, "km")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(6, "feet"),
  11769. weight: math.unit(150, "lb"),
  11770. name: "Front",
  11771. image: {
  11772. source: "./media/characters/kayroo/front.svg",
  11773. extra: 1153 / 1038,
  11774. bottom: 0.06
  11775. }
  11776. },
  11777. foot: {
  11778. height: math.unit(6, "feet"),
  11779. weight: math.unit(150, "lb"),
  11780. name: "Foot",
  11781. image: {
  11782. source: "./media/characters/kayroo/foot.svg"
  11783. }
  11784. },
  11785. },
  11786. [
  11787. {
  11788. name: "Normal",
  11789. height: math.unit(8, "feet"),
  11790. default: true
  11791. },
  11792. {
  11793. name: "Minimacro",
  11794. height: math.unit(250, "feet")
  11795. },
  11796. {
  11797. name: "Macro",
  11798. height: math.unit(2800, "feet")
  11799. },
  11800. {
  11801. name: "Megamacro",
  11802. height: math.unit(5200, "feet")
  11803. },
  11804. {
  11805. name: "Gigamacro",
  11806. height: math.unit(27000, "feet")
  11807. },
  11808. {
  11809. name: "Omega",
  11810. height: math.unit(45000, "feet")
  11811. },
  11812. ]
  11813. ))
  11814. characterMakers.push(() => makeCharacter(
  11815. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11816. {
  11817. front: {
  11818. height: math.unit(18, "feet"),
  11819. weight: math.unit(5800, "lb"),
  11820. name: "Front",
  11821. image: {
  11822. source: "./media/characters/rhys/front.svg",
  11823. extra: 3386 / 3090,
  11824. bottom: 0.07
  11825. }
  11826. },
  11827. },
  11828. [
  11829. {
  11830. name: "Normal",
  11831. height: math.unit(18, "feet"),
  11832. default: true
  11833. },
  11834. {
  11835. name: "Working Size",
  11836. height: math.unit(200, "feet")
  11837. },
  11838. {
  11839. name: "Demolition Size",
  11840. height: math.unit(2000, "feet")
  11841. },
  11842. {
  11843. name: "Maximum Licensed Size",
  11844. height: math.unit(5, "miles")
  11845. },
  11846. {
  11847. name: "Maximum Observed Size",
  11848. height: math.unit(10, "yottameters")
  11849. },
  11850. ]
  11851. ))
  11852. characterMakers.push(() => makeCharacter(
  11853. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11854. {
  11855. front: {
  11856. height: math.unit(6, "feet"),
  11857. weight: math.unit(250, "lb"),
  11858. name: "Front",
  11859. image: {
  11860. source: "./media/characters/toto/front.svg",
  11861. extra: 527 / 479,
  11862. bottom: 0.05
  11863. }
  11864. },
  11865. },
  11866. [
  11867. {
  11868. name: "Micro",
  11869. height: math.unit(3, "feet")
  11870. },
  11871. {
  11872. name: "Normal",
  11873. height: math.unit(10, "feet")
  11874. },
  11875. {
  11876. name: "Macro",
  11877. height: math.unit(150, "feet"),
  11878. default: true
  11879. },
  11880. {
  11881. name: "Megamacro",
  11882. height: math.unit(1200, "feet")
  11883. },
  11884. ]
  11885. ))
  11886. characterMakers.push(() => makeCharacter(
  11887. { name: "King", species: ["lion"], tags: ["anthro"] },
  11888. {
  11889. back: {
  11890. height: math.unit(6, "feet"),
  11891. weight: math.unit(150, "lb"),
  11892. name: "Back",
  11893. image: {
  11894. source: "./media/characters/king/back.svg"
  11895. }
  11896. },
  11897. },
  11898. [
  11899. {
  11900. name: "Micro",
  11901. height: math.unit(2, "inches")
  11902. },
  11903. {
  11904. name: "Normal",
  11905. height: math.unit(8, "feet")
  11906. },
  11907. {
  11908. name: "Macro",
  11909. height: math.unit(200, "feet"),
  11910. default: true
  11911. },
  11912. {
  11913. name: "Megamacro",
  11914. height: math.unit(50, "miles")
  11915. },
  11916. ]
  11917. ))
  11918. characterMakers.push(() => makeCharacter(
  11919. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11920. {
  11921. front: {
  11922. height: math.unit(11, "feet"),
  11923. weight: math.unit(1400, "lb"),
  11924. name: "Front",
  11925. image: {
  11926. source: "./media/characters/cordite/front.svg",
  11927. extra: 1919/1827,
  11928. bottom: 40/1959
  11929. }
  11930. },
  11931. side: {
  11932. height: math.unit(11, "feet"),
  11933. weight: math.unit(1400, "lb"),
  11934. name: "Side",
  11935. image: {
  11936. source: "./media/characters/cordite/side.svg",
  11937. extra: 1908/1793,
  11938. bottom: 38/1946
  11939. }
  11940. },
  11941. back: {
  11942. height: math.unit(11, "feet"),
  11943. weight: math.unit(1400, "lb"),
  11944. name: "Back",
  11945. image: {
  11946. source: "./media/characters/cordite/back.svg",
  11947. extra: 1938/1837,
  11948. bottom: 10/1948
  11949. }
  11950. },
  11951. feral: {
  11952. height: math.unit(2, "feet"),
  11953. weight: math.unit(90, "lb"),
  11954. name: "Feral",
  11955. image: {
  11956. source: "./media/characters/cordite/feral.svg",
  11957. extra: 1260 / 755,
  11958. bottom: 0.05
  11959. }
  11960. },
  11961. },
  11962. [
  11963. {
  11964. name: "Normal",
  11965. height: math.unit(11, "feet"),
  11966. default: true
  11967. },
  11968. ]
  11969. ))
  11970. characterMakers.push(() => makeCharacter(
  11971. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11972. {
  11973. front: {
  11974. height: math.unit(6, "feet"),
  11975. weight: math.unit(150, "lb"),
  11976. name: "Front",
  11977. image: {
  11978. source: "./media/characters/pianostrong/front.svg",
  11979. extra: 6577 / 6254,
  11980. bottom: 0.02
  11981. }
  11982. },
  11983. side: {
  11984. height: math.unit(6, "feet"),
  11985. weight: math.unit(150, "lb"),
  11986. name: "Side",
  11987. image: {
  11988. source: "./media/characters/pianostrong/side.svg",
  11989. extra: 6106 / 5730
  11990. }
  11991. },
  11992. back: {
  11993. height: math.unit(6, "feet"),
  11994. weight: math.unit(150, "lb"),
  11995. name: "Back",
  11996. image: {
  11997. source: "./media/characters/pianostrong/back.svg",
  11998. extra: 6085 / 5733,
  11999. bottom: 0.01
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Macro",
  12006. height: math.unit(100, "feet")
  12007. },
  12008. {
  12009. name: "Macro+",
  12010. height: math.unit(300, "feet"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Macro++",
  12015. height: math.unit(1000, "feet")
  12016. },
  12017. ]
  12018. ))
  12019. characterMakers.push(() => makeCharacter(
  12020. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12021. {
  12022. front: {
  12023. height: math.unit(6, "feet"),
  12024. weight: math.unit(150, "lb"),
  12025. name: "Front",
  12026. image: {
  12027. source: "./media/characters/kona/front.svg",
  12028. extra: 2960 / 2629,
  12029. bottom: 0.005
  12030. }
  12031. },
  12032. },
  12033. [
  12034. {
  12035. name: "Normal",
  12036. height: math.unit(11 + 8 / 12, "feet")
  12037. },
  12038. {
  12039. name: "Macro",
  12040. height: math.unit(850, "feet"),
  12041. default: true
  12042. },
  12043. {
  12044. name: "Macro+",
  12045. height: math.unit(1.5, "km"),
  12046. default: true
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(80, "miles")
  12051. },
  12052. {
  12053. name: "Gigamacro",
  12054. height: math.unit(3500, "miles")
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12060. {
  12061. side: {
  12062. height: math.unit(1.9, "meters"),
  12063. weight: math.unit(326, "kg"),
  12064. name: "Side",
  12065. image: {
  12066. source: "./media/characters/levi/side.svg",
  12067. extra: 1704 / 1334,
  12068. bottom: 0.02
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Normal",
  12075. height: math.unit(1.9, "meters"),
  12076. default: true
  12077. },
  12078. {
  12079. name: "Macro",
  12080. height: math.unit(20, "meters")
  12081. },
  12082. {
  12083. name: "Macro+",
  12084. height: math.unit(200, "meters")
  12085. },
  12086. {
  12087. name: "Megamacro",
  12088. height: math.unit(2, "km")
  12089. },
  12090. {
  12091. name: "Megamacro+",
  12092. height: math.unit(20, "km")
  12093. },
  12094. {
  12095. name: "Gigamacro",
  12096. height: math.unit(2500, "km")
  12097. },
  12098. {
  12099. name: "Gigamacro+",
  12100. height: math.unit(120000, "km")
  12101. },
  12102. {
  12103. name: "Teramacro",
  12104. height: math.unit(7.77e6, "km")
  12105. },
  12106. ]
  12107. ))
  12108. characterMakers.push(() => makeCharacter(
  12109. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12110. {
  12111. front: {
  12112. height: math.unit(6 + 4/12, "feet"),
  12113. weight: math.unit(190, "lb"),
  12114. name: "Front",
  12115. image: {
  12116. source: "./media/characters/bmc/front.svg",
  12117. extra: 1626/1472,
  12118. bottom: 79/1705
  12119. }
  12120. },
  12121. back: {
  12122. height: math.unit(6 + 4/12, "feet"),
  12123. weight: math.unit(190, "lb"),
  12124. name: "Back",
  12125. image: {
  12126. source: "./media/characters/bmc/back.svg",
  12127. extra: 1640/1479,
  12128. bottom: 45/1685
  12129. }
  12130. },
  12131. frontArmor: {
  12132. height: math.unit(6 + 4/12, "feet"),
  12133. weight: math.unit(190, "lb"),
  12134. name: "Front-armor",
  12135. image: {
  12136. source: "./media/characters/bmc/front-armor.svg",
  12137. extra: 1538/1468,
  12138. bottom: 79/1617
  12139. }
  12140. },
  12141. },
  12142. [
  12143. {
  12144. name: "Human-sized",
  12145. height: math.unit(6 + 4 / 12, "feet")
  12146. },
  12147. {
  12148. name: "Interactive Size",
  12149. height: math.unit(25, "feet")
  12150. },
  12151. {
  12152. name: "Small",
  12153. height: math.unit(250, "feet")
  12154. },
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(1250, "feet"),
  12158. default: true
  12159. },
  12160. {
  12161. name: "Good Day",
  12162. height: math.unit(88, "miles")
  12163. },
  12164. {
  12165. name: "Largest Measured Size",
  12166. height: math.unit(105.960, "galaxies")
  12167. },
  12168. ]
  12169. ))
  12170. characterMakers.push(() => makeCharacter(
  12171. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12172. {
  12173. front: {
  12174. height: math.unit(20, "feet"),
  12175. weight: math.unit(2016, "kg"),
  12176. name: "Front",
  12177. image: {
  12178. source: "./media/characters/sven-the-kaiju/front.svg",
  12179. extra: 1277/1250,
  12180. bottom: 35/1312
  12181. }
  12182. },
  12183. mouth: {
  12184. height: math.unit(1.85, "feet"),
  12185. name: "Mouth",
  12186. image: {
  12187. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Fairy",
  12194. height: math.unit(6, "inches")
  12195. },
  12196. {
  12197. name: "Normal",
  12198. height: math.unit(20, "feet"),
  12199. default: true
  12200. },
  12201. {
  12202. name: "Rampage",
  12203. height: math.unit(200, "feet")
  12204. },
  12205. {
  12206. name: "Archfey Forest Guardian",
  12207. height: math.unit(1, "mile")
  12208. },
  12209. ]
  12210. ))
  12211. characterMakers.push(() => makeCharacter(
  12212. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12213. {
  12214. front: {
  12215. height: math.unit(4, "meters"),
  12216. weight: math.unit(2, "tons"),
  12217. name: "Front",
  12218. image: {
  12219. source: "./media/characters/marik/front.svg",
  12220. extra: 1057 / 1003,
  12221. bottom: 0.08
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(4, "meters"),
  12229. default: true
  12230. },
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(20, "meters")
  12234. },
  12235. {
  12236. name: "Megamacro",
  12237. height: math.unit(50, "km")
  12238. },
  12239. {
  12240. name: "Gigamacro",
  12241. height: math.unit(100, "km")
  12242. },
  12243. {
  12244. name: "Alpha Macro",
  12245. height: math.unit(7.88e7, "yottameters")
  12246. },
  12247. ]
  12248. ))
  12249. characterMakers.push(() => makeCharacter(
  12250. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12251. {
  12252. front: {
  12253. height: math.unit(6, "feet"),
  12254. weight: math.unit(110, "lb"),
  12255. name: "Front",
  12256. image: {
  12257. source: "./media/characters/mel/front.svg",
  12258. extra: 736 / 617,
  12259. bottom: 0.017
  12260. }
  12261. },
  12262. },
  12263. [
  12264. {
  12265. name: "Pico",
  12266. height: math.unit(3, "pm")
  12267. },
  12268. {
  12269. name: "Nano",
  12270. height: math.unit(3, "nm")
  12271. },
  12272. {
  12273. name: "Micro",
  12274. height: math.unit(0.3, "mm"),
  12275. default: true
  12276. },
  12277. {
  12278. name: "Micro+",
  12279. height: math.unit(3, "mm")
  12280. },
  12281. {
  12282. name: "Normal",
  12283. height: math.unit(5 + 10.5 / 12, "feet")
  12284. },
  12285. ]
  12286. ))
  12287. characterMakers.push(() => makeCharacter(
  12288. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12289. {
  12290. kaiju: {
  12291. height: math.unit(1.75, "meters"),
  12292. weight: math.unit(55, "kg"),
  12293. name: "Kaiju",
  12294. image: {
  12295. source: "./media/characters/lykonous/kaiju.svg",
  12296. extra: 1055 / 946,
  12297. bottom: 0.135
  12298. }
  12299. },
  12300. },
  12301. [
  12302. {
  12303. name: "Normal",
  12304. height: math.unit(2.5, "meters"),
  12305. default: true
  12306. },
  12307. {
  12308. name: "Kaiju Dragon",
  12309. height: math.unit(60, "meters")
  12310. },
  12311. {
  12312. name: "Mega Kaiju",
  12313. height: math.unit(120, "km")
  12314. },
  12315. {
  12316. name: "Giga Kaiju",
  12317. height: math.unit(200, "megameters")
  12318. },
  12319. {
  12320. name: "Terra Kaiju",
  12321. height: math.unit(400, "gigameters")
  12322. },
  12323. {
  12324. name: "Kaiju Dragon God",
  12325. height: math.unit(13000, "exaparsecs")
  12326. },
  12327. ]
  12328. ))
  12329. characterMakers.push(() => makeCharacter(
  12330. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12331. {
  12332. front: {
  12333. height: math.unit(6, "feet"),
  12334. weight: math.unit(150, "lb"),
  12335. name: "Front",
  12336. image: {
  12337. source: "./media/characters/blü/front.svg",
  12338. extra: 1883 / 1564,
  12339. bottom: 0.031
  12340. }
  12341. },
  12342. },
  12343. [
  12344. {
  12345. name: "Normal",
  12346. height: math.unit(13, "feet"),
  12347. default: true
  12348. },
  12349. {
  12350. name: "Big Boi",
  12351. height: math.unit(150, "meters")
  12352. },
  12353. {
  12354. name: "Mini Stomper",
  12355. height: math.unit(300, "meters")
  12356. },
  12357. {
  12358. name: "Macro",
  12359. height: math.unit(1000, "meters")
  12360. },
  12361. {
  12362. name: "Megamacro",
  12363. height: math.unit(11000, "meters")
  12364. },
  12365. {
  12366. name: "Gigamacro",
  12367. height: math.unit(11000, "km")
  12368. },
  12369. {
  12370. name: "Teramacro",
  12371. height: math.unit(420000, "km")
  12372. },
  12373. {
  12374. name: "Examacro",
  12375. height: math.unit(120, "parsecs")
  12376. },
  12377. {
  12378. name: "God Tho",
  12379. height: math.unit(98000000000, "parsecs")
  12380. },
  12381. ]
  12382. ))
  12383. characterMakers.push(() => makeCharacter(
  12384. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12385. {
  12386. taurFront: {
  12387. height: math.unit(6, "feet"),
  12388. weight: math.unit(200, "lb"),
  12389. name: "Taur (Front)",
  12390. image: {
  12391. source: "./media/characters/scales/taur-front.svg",
  12392. extra: 1,
  12393. bottom: 0.05
  12394. }
  12395. },
  12396. taurBack: {
  12397. height: math.unit(6, "feet"),
  12398. weight: math.unit(200, "lb"),
  12399. name: "Taur (Back)",
  12400. image: {
  12401. source: "./media/characters/scales/taur-back.svg",
  12402. extra: 1,
  12403. bottom: 0.08
  12404. }
  12405. },
  12406. anthro: {
  12407. height: math.unit(6 * 7 / 12, "feet"),
  12408. weight: math.unit(100, "lb"),
  12409. name: "Anthro",
  12410. image: {
  12411. source: "./media/characters/scales/anthro.svg",
  12412. extra: 1,
  12413. bottom: 0.06
  12414. }
  12415. },
  12416. },
  12417. [
  12418. {
  12419. name: "Normal",
  12420. height: math.unit(12, "feet"),
  12421. default: true
  12422. },
  12423. ]
  12424. ))
  12425. characterMakers.push(() => makeCharacter(
  12426. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12427. {
  12428. front: {
  12429. height: math.unit(6, "feet"),
  12430. weight: math.unit(150, "lb"),
  12431. name: "Front",
  12432. image: {
  12433. source: "./media/characters/koragos/front.svg",
  12434. extra: 841 / 794,
  12435. bottom: 0.035
  12436. }
  12437. },
  12438. back: {
  12439. height: math.unit(6, "feet"),
  12440. weight: math.unit(150, "lb"),
  12441. name: "Back",
  12442. image: {
  12443. source: "./media/characters/koragos/back.svg",
  12444. extra: 841 / 810,
  12445. bottom: 0.022
  12446. }
  12447. },
  12448. },
  12449. [
  12450. {
  12451. name: "Normal",
  12452. height: math.unit(6 + 11 / 12, "feet"),
  12453. default: true
  12454. },
  12455. {
  12456. name: "Macro",
  12457. height: math.unit(490, "feet")
  12458. },
  12459. {
  12460. name: "Megamacro",
  12461. height: math.unit(10, "miles")
  12462. },
  12463. {
  12464. name: "Gigamacro",
  12465. height: math.unit(50, "miles")
  12466. },
  12467. ]
  12468. ))
  12469. characterMakers.push(() => makeCharacter(
  12470. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12471. {
  12472. front: {
  12473. height: math.unit(6, "feet"),
  12474. weight: math.unit(250, "lb"),
  12475. name: "Front",
  12476. image: {
  12477. source: "./media/characters/xylrem/front.svg",
  12478. extra: 3323 / 3050,
  12479. bottom: 0.065
  12480. }
  12481. },
  12482. },
  12483. [
  12484. {
  12485. name: "Micro",
  12486. height: math.unit(4, "feet")
  12487. },
  12488. {
  12489. name: "Normal",
  12490. height: math.unit(16, "feet"),
  12491. default: true
  12492. },
  12493. {
  12494. name: "Macro",
  12495. height: math.unit(2720, "feet")
  12496. },
  12497. {
  12498. name: "Megamacro",
  12499. height: math.unit(25000, "miles")
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12505. {
  12506. front: {
  12507. height: math.unit(8, "feet"),
  12508. weight: math.unit(250, "kg"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/ikideru/front.svg",
  12512. extra: 930 / 870,
  12513. bottom: 0.087
  12514. }
  12515. },
  12516. back: {
  12517. height: math.unit(8, "feet"),
  12518. weight: math.unit(250, "kg"),
  12519. name: "Back",
  12520. image: {
  12521. source: "./media/characters/ikideru/back.svg",
  12522. extra: 919 / 852,
  12523. bottom: 0.055
  12524. }
  12525. },
  12526. },
  12527. [
  12528. {
  12529. name: "Rare",
  12530. height: math.unit(8, "feet"),
  12531. default: true
  12532. },
  12533. {
  12534. name: "Playful Loom",
  12535. height: math.unit(80, "feet")
  12536. },
  12537. {
  12538. name: "City Leaner",
  12539. height: math.unit(230, "feet")
  12540. },
  12541. {
  12542. name: "Megamacro",
  12543. height: math.unit(2500, "feet")
  12544. },
  12545. {
  12546. name: "Gigamacro",
  12547. height: math.unit(26400, "feet")
  12548. },
  12549. {
  12550. name: "Tectonic Shifter",
  12551. height: math.unit(1.7, "megameters")
  12552. },
  12553. {
  12554. name: "Planet Carer",
  12555. height: math.unit(21, "megameters")
  12556. },
  12557. {
  12558. name: "God",
  12559. height: math.unit(11157.22, "parsecs")
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12565. {
  12566. front: {
  12567. height: math.unit(6, "feet"),
  12568. weight: math.unit(120, "lb"),
  12569. name: "Front",
  12570. image: {
  12571. source: "./media/characters/neo/front.svg"
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Micro",
  12578. height: math.unit(2, "inches"),
  12579. default: true
  12580. },
  12581. {
  12582. name: "Human Size",
  12583. height: math.unit(5 + 8 / 12, "feet")
  12584. },
  12585. ]
  12586. ))
  12587. characterMakers.push(() => makeCharacter(
  12588. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12589. {
  12590. front: {
  12591. height: math.unit(13 + 10 / 12, "feet"),
  12592. weight: math.unit(5320, "lb"),
  12593. name: "Front",
  12594. image: {
  12595. source: "./media/characters/chauncey-chantz/front.svg",
  12596. extra: 1587 / 1435,
  12597. bottom: 0.02
  12598. }
  12599. },
  12600. },
  12601. [
  12602. {
  12603. name: "Normal",
  12604. height: math.unit(13 + 10 / 12, "feet"),
  12605. default: true
  12606. },
  12607. {
  12608. name: "Macro",
  12609. height: math.unit(45, "feet")
  12610. },
  12611. {
  12612. name: "Megamacro",
  12613. height: math.unit(250, "miles")
  12614. },
  12615. {
  12616. name: "Planetary",
  12617. height: math.unit(10000, "miles")
  12618. },
  12619. {
  12620. name: "Galactic",
  12621. height: math.unit(40000, "parsecs")
  12622. },
  12623. {
  12624. name: "Universal",
  12625. height: math.unit(1, "yottameter")
  12626. },
  12627. ]
  12628. ))
  12629. characterMakers.push(() => makeCharacter(
  12630. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12631. {
  12632. front: {
  12633. height: math.unit(6, "feet"),
  12634. weight: math.unit(150, "lb"),
  12635. name: "Front",
  12636. image: {
  12637. source: "./media/characters/epifox/front.svg",
  12638. extra: 1,
  12639. bottom: 0.075
  12640. }
  12641. },
  12642. },
  12643. [
  12644. {
  12645. name: "Micro",
  12646. height: math.unit(6, "inches")
  12647. },
  12648. {
  12649. name: "Normal",
  12650. height: math.unit(12, "feet"),
  12651. default: true
  12652. },
  12653. {
  12654. name: "Macro",
  12655. height: math.unit(3810, "feet")
  12656. },
  12657. {
  12658. name: "Megamacro",
  12659. height: math.unit(500, "miles")
  12660. },
  12661. ]
  12662. ))
  12663. characterMakers.push(() => makeCharacter(
  12664. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12665. {
  12666. front: {
  12667. height: math.unit(1.8796, "m"),
  12668. weight: math.unit(230, "lb"),
  12669. name: "Front",
  12670. image: {
  12671. source: "./media/characters/colin-t/front.svg",
  12672. extra: 1272 / 1193,
  12673. bottom: 0.07
  12674. }
  12675. },
  12676. },
  12677. [
  12678. {
  12679. name: "Micro",
  12680. height: math.unit(0.571, "meters")
  12681. },
  12682. {
  12683. name: "Normal",
  12684. height: math.unit(1.8796, "meters"),
  12685. default: true
  12686. },
  12687. {
  12688. name: "Tall",
  12689. height: math.unit(4, "meters")
  12690. },
  12691. {
  12692. name: "Macro",
  12693. height: math.unit(67.241, "meters")
  12694. },
  12695. {
  12696. name: "Megamacro",
  12697. height: math.unit(371.856, "meters")
  12698. },
  12699. {
  12700. name: "Planetary",
  12701. height: math.unit(12631.5689, "km")
  12702. },
  12703. ]
  12704. ))
  12705. characterMakers.push(() => makeCharacter(
  12706. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12707. {
  12708. front: {
  12709. height: math.unit(1.85, "meters"),
  12710. weight: math.unit(80, "kg"),
  12711. name: "Front",
  12712. image: {
  12713. source: "./media/characters/matvei/front.svg",
  12714. extra: 614 / 594,
  12715. bottom: 0.01
  12716. }
  12717. },
  12718. },
  12719. [
  12720. {
  12721. name: "Normal",
  12722. height: math.unit(1.85, "meters"),
  12723. default: true
  12724. },
  12725. ]
  12726. ))
  12727. characterMakers.push(() => makeCharacter(
  12728. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12729. {
  12730. front: {
  12731. height: math.unit(5 + 9 / 12, "feet"),
  12732. weight: math.unit(70, "lb"),
  12733. name: "Front",
  12734. image: {
  12735. source: "./media/characters/quincy/front.svg",
  12736. extra: 3041 / 2751
  12737. }
  12738. },
  12739. back: {
  12740. height: math.unit(5 + 9 / 12, "feet"),
  12741. weight: math.unit(70, "lb"),
  12742. name: "Back",
  12743. image: {
  12744. source: "./media/characters/quincy/back.svg",
  12745. extra: 3041 / 2751
  12746. }
  12747. },
  12748. flying: {
  12749. height: math.unit(5 + 4 / 12, "feet"),
  12750. weight: math.unit(70, "lb"),
  12751. name: "Flying",
  12752. image: {
  12753. source: "./media/characters/quincy/flying.svg",
  12754. extra: 1044 / 930
  12755. }
  12756. },
  12757. },
  12758. [
  12759. {
  12760. name: "Micro",
  12761. height: math.unit(3, "cm")
  12762. },
  12763. {
  12764. name: "Normal",
  12765. height: math.unit(5 + 9 / 12, "feet")
  12766. },
  12767. {
  12768. name: "Macro",
  12769. height: math.unit(200, "meters"),
  12770. default: true
  12771. },
  12772. {
  12773. name: "Megamacro",
  12774. height: math.unit(1000, "meters")
  12775. },
  12776. ]
  12777. ))
  12778. characterMakers.push(() => makeCharacter(
  12779. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12780. {
  12781. front: {
  12782. height: math.unit(3 + 11/12, "feet"),
  12783. weight: math.unit(50, "lb"),
  12784. name: "Front",
  12785. image: {
  12786. source: "./media/characters/vanrel/front.svg",
  12787. extra: 1104/949,
  12788. bottom: 52/1156
  12789. }
  12790. },
  12791. back: {
  12792. height: math.unit(3 + 11/12, "feet"),
  12793. weight: math.unit(50, "lb"),
  12794. name: "Back",
  12795. image: {
  12796. source: "./media/characters/vanrel/back.svg",
  12797. extra: 1119/976,
  12798. bottom: 37/1156
  12799. }
  12800. },
  12801. tome: {
  12802. height: math.unit(1.35, "feet"),
  12803. weight: math.unit(10, "lb"),
  12804. name: "Vanrel's Tome",
  12805. rename: true,
  12806. image: {
  12807. source: "./media/characters/vanrel/tome.svg"
  12808. }
  12809. },
  12810. beans: {
  12811. height: math.unit(0.89, "feet"),
  12812. name: "Beans",
  12813. image: {
  12814. source: "./media/characters/vanrel/beans.svg"
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Normal",
  12821. height: math.unit(3 + 11/12, "feet"),
  12822. default: true
  12823. },
  12824. ]
  12825. ))
  12826. characterMakers.push(() => makeCharacter(
  12827. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12828. {
  12829. front: {
  12830. height: math.unit(7 + 5 / 12, "feet"),
  12831. name: "Front",
  12832. image: {
  12833. source: "./media/characters/kuiper-vanrel/front.svg",
  12834. extra: 1219/1169,
  12835. bottom: 69/1288
  12836. }
  12837. },
  12838. back: {
  12839. height: math.unit(7 + 5 / 12, "feet"),
  12840. name: "Back",
  12841. image: {
  12842. source: "./media/characters/kuiper-vanrel/back.svg",
  12843. extra: 1236/1193,
  12844. bottom: 27/1263
  12845. }
  12846. },
  12847. foot: {
  12848. height: math.unit(0.55, "meters"),
  12849. name: "Foot",
  12850. image: {
  12851. source: "./media/characters/kuiper-vanrel/foot.svg",
  12852. }
  12853. },
  12854. battle: {
  12855. height: math.unit(6.824, "feet"),
  12856. name: "Battle",
  12857. image: {
  12858. source: "./media/characters/kuiper-vanrel/battle.svg",
  12859. extra: 1466 / 1327,
  12860. bottom: 29 / 1492.5
  12861. }
  12862. },
  12863. meerkui: {
  12864. height: math.unit(18, "inches"),
  12865. name: "Meerkui",
  12866. image: {
  12867. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12868. extra: 1354/1289,
  12869. bottom: 69/1423
  12870. }
  12871. },
  12872. },
  12873. [
  12874. {
  12875. name: "Normal",
  12876. height: math.unit(7 + 5 / 12, "feet"),
  12877. default: true
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12883. {
  12884. front: {
  12885. height: math.unit(8 + 5 / 12, "feet"),
  12886. name: "Front",
  12887. image: {
  12888. source: "./media/characters/keset-vanrel/front.svg",
  12889. extra: 1231/1148,
  12890. bottom: 82/1313
  12891. }
  12892. },
  12893. back: {
  12894. height: math.unit(8 + 5 / 12, "feet"),
  12895. name: "Back",
  12896. image: {
  12897. source: "./media/characters/keset-vanrel/back.svg",
  12898. extra: 1240/1174,
  12899. bottom: 33/1273
  12900. }
  12901. },
  12902. hand: {
  12903. height: math.unit(0.6, "meters"),
  12904. name: "Hand",
  12905. image: {
  12906. source: "./media/characters/keset-vanrel/hand.svg"
  12907. }
  12908. },
  12909. foot: {
  12910. height: math.unit(0.94978, "meters"),
  12911. name: "Foot",
  12912. image: {
  12913. source: "./media/characters/keset-vanrel/foot.svg"
  12914. }
  12915. },
  12916. battle: {
  12917. height: math.unit(7.408, "feet"),
  12918. name: "Battle",
  12919. image: {
  12920. source: "./media/characters/keset-vanrel/battle.svg",
  12921. extra: 1890 / 1386,
  12922. bottom: 73.28 / 1970
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Normal",
  12929. height: math.unit(8 + 5 / 12, "feet"),
  12930. default: true
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12936. {
  12937. front: {
  12938. height: math.unit(6, "feet"),
  12939. weight: math.unit(150, "lb"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/neos/front.svg",
  12943. extra: 1696 / 992,
  12944. bottom: 0.14
  12945. }
  12946. },
  12947. },
  12948. [
  12949. {
  12950. name: "Normal",
  12951. height: math.unit(54, "cm"),
  12952. default: true
  12953. },
  12954. {
  12955. name: "Macro",
  12956. height: math.unit(100, "m")
  12957. },
  12958. {
  12959. name: "Megamacro",
  12960. height: math.unit(10, "km")
  12961. },
  12962. {
  12963. name: "Megamacro+",
  12964. height: math.unit(100, "km")
  12965. },
  12966. {
  12967. name: "Gigamacro",
  12968. height: math.unit(100, "Mm")
  12969. },
  12970. {
  12971. name: "Teramacro",
  12972. height: math.unit(100, "Gm")
  12973. },
  12974. {
  12975. name: "Examacro",
  12976. height: math.unit(100, "Em")
  12977. },
  12978. {
  12979. name: "Godly",
  12980. height: math.unit(10000, "Ym")
  12981. },
  12982. {
  12983. name: "Beyond Godly",
  12984. height: math.unit(25, "multiverses")
  12985. },
  12986. ]
  12987. ))
  12988. characterMakers.push(() => makeCharacter(
  12989. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12990. {
  12991. feminine: {
  12992. height: math.unit(5, "feet"),
  12993. weight: math.unit(100, "lb"),
  12994. name: "Feminine",
  12995. image: {
  12996. source: "./media/characters/sammy-mouse/feminine.svg",
  12997. extra: 2526 / 2425,
  12998. bottom: 0.123
  12999. }
  13000. },
  13001. masculine: {
  13002. height: math.unit(5, "feet"),
  13003. weight: math.unit(100, "lb"),
  13004. name: "Masculine",
  13005. image: {
  13006. source: "./media/characters/sammy-mouse/masculine.svg",
  13007. extra: 2526 / 2425,
  13008. bottom: 0.123
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Micro",
  13015. height: math.unit(5, "inches")
  13016. },
  13017. {
  13018. name: "Normal",
  13019. height: math.unit(5, "feet"),
  13020. default: true
  13021. },
  13022. {
  13023. name: "Macro",
  13024. height: math.unit(60, "feet")
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(4, "feet"),
  13033. weight: math.unit(50, "lb"),
  13034. name: "Front",
  13035. image: {
  13036. source: "./media/characters/kole/front.svg",
  13037. extra: 1423 / 1303,
  13038. bottom: 0.025
  13039. }
  13040. },
  13041. back: {
  13042. height: math.unit(4, "feet"),
  13043. weight: math.unit(50, "lb"),
  13044. name: "Back",
  13045. image: {
  13046. source: "./media/characters/kole/back.svg",
  13047. extra: 1426 / 1280,
  13048. bottom: 0.02
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(4, "feet"),
  13056. default: true
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13062. {
  13063. front: {
  13064. height: math.unit(2.5, "feet"),
  13065. weight: math.unit(32, "lb"),
  13066. name: "Front",
  13067. image: {
  13068. source: "./media/characters/rufran/front.svg",
  13069. extra: 1313/885,
  13070. bottom: 94/1407
  13071. }
  13072. },
  13073. side: {
  13074. height: math.unit(2.5, "feet"),
  13075. weight: math.unit(32, "lb"),
  13076. name: "Side",
  13077. image: {
  13078. source: "./media/characters/rufran/side.svg",
  13079. extra: 1109/852,
  13080. bottom: 118/1227
  13081. }
  13082. },
  13083. back: {
  13084. height: math.unit(2.5, "feet"),
  13085. weight: math.unit(32, "lb"),
  13086. name: "Back",
  13087. image: {
  13088. source: "./media/characters/rufran/back.svg",
  13089. extra: 1280/878,
  13090. bottom: 131/1411
  13091. }
  13092. },
  13093. mouth: {
  13094. height: math.unit(1.13, "feet"),
  13095. name: "Mouth",
  13096. image: {
  13097. source: "./media/characters/rufran/mouth.svg"
  13098. }
  13099. },
  13100. foot: {
  13101. height: math.unit(1.33, "feet"),
  13102. name: "Foot",
  13103. image: {
  13104. source: "./media/characters/rufran/foot.svg"
  13105. }
  13106. },
  13107. koboldFront: {
  13108. height: math.unit(2 + 6 / 12, "feet"),
  13109. weight: math.unit(20, "lb"),
  13110. name: "Front (Kobold)",
  13111. image: {
  13112. source: "./media/characters/rufran/kobold-front.svg",
  13113. extra: 2041 / 1839,
  13114. bottom: 0.055
  13115. }
  13116. },
  13117. koboldBack: {
  13118. height: math.unit(2 + 6 / 12, "feet"),
  13119. weight: math.unit(20, "lb"),
  13120. name: "Back (Kobold)",
  13121. image: {
  13122. source: "./media/characters/rufran/kobold-back.svg",
  13123. extra: 2054 / 1839,
  13124. bottom: 0.01
  13125. }
  13126. },
  13127. koboldHand: {
  13128. height: math.unit(0.2166, "meters"),
  13129. name: "Hand (Kobold)",
  13130. image: {
  13131. source: "./media/characters/rufran/kobold-hand.svg"
  13132. }
  13133. },
  13134. koboldFoot: {
  13135. height: math.unit(0.185, "meters"),
  13136. name: "Foot (Kobold)",
  13137. image: {
  13138. source: "./media/characters/rufran/kobold-foot.svg"
  13139. }
  13140. },
  13141. },
  13142. [
  13143. {
  13144. name: "Micro",
  13145. height: math.unit(1, "inch")
  13146. },
  13147. {
  13148. name: "Normal",
  13149. height: math.unit(2 + 6 / 12, "feet"),
  13150. default: true
  13151. },
  13152. {
  13153. name: "Big",
  13154. height: math.unit(60, "feet")
  13155. },
  13156. {
  13157. name: "Macro",
  13158. height: math.unit(325, "feet")
  13159. },
  13160. ]
  13161. ))
  13162. characterMakers.push(() => makeCharacter(
  13163. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13164. {
  13165. front: {
  13166. height: math.unit(0.3, "meters"),
  13167. weight: math.unit(3.5, "kg"),
  13168. name: "Front",
  13169. image: {
  13170. source: "./media/characters/chip/front.svg",
  13171. extra: 748 / 674
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Micro",
  13178. height: math.unit(1, "inch"),
  13179. default: true
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13185. {
  13186. side: {
  13187. height: math.unit(2.3, "meters"),
  13188. weight: math.unit(3500, "lb"),
  13189. name: "Side",
  13190. image: {
  13191. source: "./media/characters/torvid/side.svg",
  13192. extra: 1972 / 722,
  13193. bottom: 0.035
  13194. }
  13195. },
  13196. },
  13197. [
  13198. {
  13199. name: "Normal",
  13200. height: math.unit(2.3, "meters"),
  13201. default: true
  13202. },
  13203. ]
  13204. ))
  13205. characterMakers.push(() => makeCharacter(
  13206. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13207. {
  13208. front: {
  13209. height: math.unit(2, "meters"),
  13210. weight: math.unit(150.5, "kg"),
  13211. name: "Front",
  13212. image: {
  13213. source: "./media/characters/susan/front.svg",
  13214. extra: 693 / 635,
  13215. bottom: 0.05
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Megamacro",
  13222. height: math.unit(505, "miles"),
  13223. default: true
  13224. },
  13225. ]
  13226. ))
  13227. characterMakers.push(() => makeCharacter(
  13228. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13229. {
  13230. front: {
  13231. height: math.unit(6, "feet"),
  13232. weight: math.unit(150, "lb"),
  13233. name: "Front",
  13234. image: {
  13235. source: "./media/characters/raindrops/front.svg",
  13236. extra: 2655 / 2461,
  13237. bottom: 49 / 2705
  13238. }
  13239. },
  13240. back: {
  13241. height: math.unit(6, "feet"),
  13242. weight: math.unit(150, "lb"),
  13243. name: "Back",
  13244. image: {
  13245. source: "./media/characters/raindrops/back.svg",
  13246. extra: 2574 / 2400,
  13247. bottom: 65 / 2634
  13248. }
  13249. },
  13250. },
  13251. [
  13252. {
  13253. name: "Micro",
  13254. height: math.unit(6, "inches")
  13255. },
  13256. {
  13257. name: "Normal",
  13258. height: math.unit(6 + 2 / 12, "feet")
  13259. },
  13260. {
  13261. name: "Macro",
  13262. height: math.unit(131, "feet"),
  13263. default: true
  13264. },
  13265. {
  13266. name: "Megamacro",
  13267. height: math.unit(15, "miles")
  13268. },
  13269. {
  13270. name: "Gigamacro",
  13271. height: math.unit(4000, "miles")
  13272. },
  13273. {
  13274. name: "Teramacro",
  13275. height: math.unit(315000, "miles")
  13276. },
  13277. ]
  13278. ))
  13279. characterMakers.push(() => makeCharacter(
  13280. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13281. {
  13282. front: {
  13283. height: math.unit(2.794, "meters"),
  13284. weight: math.unit(325, "kg"),
  13285. name: "Front",
  13286. image: {
  13287. source: "./media/characters/tezwa/front.svg",
  13288. extra: 2083 / 1906,
  13289. bottom: 0.031
  13290. }
  13291. },
  13292. foot: {
  13293. height: math.unit(0.687, "meters"),
  13294. name: "Foot",
  13295. image: {
  13296. source: "./media/characters/tezwa/foot.svg"
  13297. }
  13298. },
  13299. },
  13300. [
  13301. {
  13302. name: "Normal",
  13303. height: math.unit(9 + 2 / 12, "feet"),
  13304. default: true
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13310. {
  13311. front: {
  13312. height: math.unit(58, "feet"),
  13313. weight: math.unit(89000, "lb"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/typhus/front.svg",
  13317. extra: 816 / 800,
  13318. bottom: 0.065
  13319. }
  13320. },
  13321. },
  13322. [
  13323. {
  13324. name: "Macro",
  13325. height: math.unit(58, "feet"),
  13326. default: true
  13327. },
  13328. ]
  13329. ))
  13330. characterMakers.push(() => makeCharacter(
  13331. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13332. {
  13333. front: {
  13334. height: math.unit(12, "feet"),
  13335. weight: math.unit(6, "tonnes"),
  13336. name: "Front",
  13337. image: {
  13338. source: "./media/characters/lyra-von-wulf/front.svg",
  13339. extra: 1,
  13340. bottom: 0.10
  13341. }
  13342. },
  13343. frontMecha: {
  13344. height: math.unit(12, "feet"),
  13345. weight: math.unit(12, "tonnes"),
  13346. name: "Front (Mecha)",
  13347. image: {
  13348. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13349. extra: 1,
  13350. bottom: 0.042
  13351. }
  13352. },
  13353. maw: {
  13354. height: math.unit(2.2, "feet"),
  13355. name: "Maw",
  13356. image: {
  13357. source: "./media/characters/lyra-von-wulf/maw.svg"
  13358. }
  13359. },
  13360. },
  13361. [
  13362. {
  13363. name: "Normal",
  13364. height: math.unit(12, "feet"),
  13365. default: true
  13366. },
  13367. {
  13368. name: "Classic",
  13369. height: math.unit(50, "feet")
  13370. },
  13371. {
  13372. name: "Macro",
  13373. height: math.unit(500, "feet")
  13374. },
  13375. {
  13376. name: "Megamacro",
  13377. height: math.unit(1, "mile")
  13378. },
  13379. {
  13380. name: "Gigamacro",
  13381. height: math.unit(400, "miles")
  13382. },
  13383. {
  13384. name: "Teramacro",
  13385. height: math.unit(22000, "miles")
  13386. },
  13387. {
  13388. name: "Solarmacro",
  13389. height: math.unit(8600000, "miles")
  13390. },
  13391. {
  13392. name: "Galactic",
  13393. height: math.unit(1057000, "lightyears")
  13394. },
  13395. ]
  13396. ))
  13397. characterMakers.push(() => makeCharacter(
  13398. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13399. {
  13400. front: {
  13401. height: math.unit(6 + 10 / 12, "feet"),
  13402. weight: math.unit(150, "lb"),
  13403. name: "Front",
  13404. image: {
  13405. source: "./media/characters/dixon/front.svg",
  13406. extra: 3361 / 3209,
  13407. bottom: 0.01
  13408. }
  13409. },
  13410. },
  13411. [
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(6 + 10 / 12, "feet"),
  13415. default: true
  13416. },
  13417. {
  13418. name: "Big",
  13419. height: math.unit(12, "meters")
  13420. },
  13421. {
  13422. name: "Macro",
  13423. height: math.unit(500, "meters")
  13424. },
  13425. {
  13426. name: "Megamacro",
  13427. height: math.unit(2, "km")
  13428. },
  13429. ]
  13430. ))
  13431. characterMakers.push(() => makeCharacter(
  13432. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13433. {
  13434. front: {
  13435. height: math.unit(185, "cm"),
  13436. weight: math.unit(68, "kg"),
  13437. name: "Front",
  13438. image: {
  13439. source: "./media/characters/kauko/front.svg",
  13440. extra: 1455 / 1421,
  13441. bottom: 0.03
  13442. }
  13443. },
  13444. back: {
  13445. height: math.unit(185, "cm"),
  13446. weight: math.unit(68, "kg"),
  13447. name: "Back",
  13448. image: {
  13449. source: "./media/characters/kauko/back.svg",
  13450. extra: 1455 / 1421,
  13451. bottom: 0.004
  13452. }
  13453. },
  13454. },
  13455. [
  13456. {
  13457. name: "Normal",
  13458. height: math.unit(185, "cm"),
  13459. default: true
  13460. },
  13461. ]
  13462. ))
  13463. characterMakers.push(() => makeCharacter(
  13464. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13465. {
  13466. front: {
  13467. height: math.unit(6, "feet"),
  13468. weight: math.unit(150, "kg"),
  13469. name: "Front",
  13470. image: {
  13471. source: "./media/characters/varg/front.svg",
  13472. extra: 1108 / 1018,
  13473. bottom: 0.0375
  13474. }
  13475. },
  13476. },
  13477. [
  13478. {
  13479. name: "Normal",
  13480. height: math.unit(5, "meters")
  13481. },
  13482. {
  13483. name: "Macro",
  13484. height: math.unit(200, "meters")
  13485. },
  13486. {
  13487. name: "Megamacro",
  13488. height: math.unit(20, "kilometers")
  13489. },
  13490. {
  13491. name: "True Size",
  13492. height: math.unit(211, "km"),
  13493. default: true
  13494. },
  13495. {
  13496. name: "Gigamacro",
  13497. height: math.unit(1000, "km")
  13498. },
  13499. {
  13500. name: "Gigamacro+",
  13501. height: math.unit(8000, "km")
  13502. },
  13503. {
  13504. name: "Teramacro",
  13505. height: math.unit(1000000, "km")
  13506. },
  13507. ]
  13508. ))
  13509. characterMakers.push(() => makeCharacter(
  13510. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13511. {
  13512. front: {
  13513. height: math.unit(7 + 7 / 12, "feet"),
  13514. weight: math.unit(267, "lb"),
  13515. name: "Front",
  13516. image: {
  13517. source: "./media/characters/dayza/front.svg",
  13518. extra: 1262 / 1200,
  13519. bottom: 0.035
  13520. }
  13521. },
  13522. side: {
  13523. height: math.unit(7 + 7 / 12, "feet"),
  13524. weight: math.unit(267, "lb"),
  13525. name: "Side",
  13526. image: {
  13527. source: "./media/characters/dayza/side.svg",
  13528. extra: 1295 / 1245,
  13529. bottom: 0.05
  13530. }
  13531. },
  13532. back: {
  13533. height: math.unit(7 + 7 / 12, "feet"),
  13534. weight: math.unit(267, "lb"),
  13535. name: "Back",
  13536. image: {
  13537. source: "./media/characters/dayza/back.svg",
  13538. extra: 1241 / 1170
  13539. }
  13540. },
  13541. },
  13542. [
  13543. {
  13544. name: "Normal",
  13545. height: math.unit(7 + 7 / 12, "feet"),
  13546. default: true
  13547. },
  13548. {
  13549. name: "Macro",
  13550. height: math.unit(155, "feet")
  13551. },
  13552. ]
  13553. ))
  13554. characterMakers.push(() => makeCharacter(
  13555. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13556. {
  13557. front: {
  13558. height: math.unit(6 + 5 / 12, "feet"),
  13559. weight: math.unit(160, "lb"),
  13560. name: "Front",
  13561. image: {
  13562. source: "./media/characters/xanthos/front.svg",
  13563. extra: 1,
  13564. bottom: 0.04
  13565. }
  13566. },
  13567. back: {
  13568. height: math.unit(6 + 5 / 12, "feet"),
  13569. weight: math.unit(160, "lb"),
  13570. name: "Back",
  13571. image: {
  13572. source: "./media/characters/xanthos/back.svg",
  13573. extra: 1,
  13574. bottom: 0.03
  13575. }
  13576. },
  13577. hand: {
  13578. height: math.unit(0.928, "feet"),
  13579. name: "Hand",
  13580. image: {
  13581. source: "./media/characters/xanthos/hand.svg"
  13582. }
  13583. },
  13584. foot: {
  13585. height: math.unit(1.286, "feet"),
  13586. name: "Foot",
  13587. image: {
  13588. source: "./media/characters/xanthos/foot.svg"
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Normal",
  13595. height: math.unit(6 + 5 / 12, "feet"),
  13596. default: true
  13597. },
  13598. {
  13599. name: "Normal+",
  13600. height: math.unit(6, "meters")
  13601. },
  13602. {
  13603. name: "Macro",
  13604. height: math.unit(40, "feet")
  13605. },
  13606. {
  13607. name: "Macro+",
  13608. height: math.unit(200, "meters")
  13609. },
  13610. {
  13611. name: "Megamacro",
  13612. height: math.unit(20, "km")
  13613. },
  13614. {
  13615. name: "Megamacro+",
  13616. height: math.unit(100, "km")
  13617. },
  13618. {
  13619. name: "Gigamacro",
  13620. height: math.unit(200, "megameters")
  13621. },
  13622. {
  13623. name: "Gigamacro+",
  13624. height: math.unit(1.5, "gigameters")
  13625. },
  13626. ]
  13627. ))
  13628. characterMakers.push(() => makeCharacter(
  13629. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13630. {
  13631. front: {
  13632. height: math.unit(6 + 3 / 12, "feet"),
  13633. weight: math.unit(215, "lb"),
  13634. name: "Front",
  13635. image: {
  13636. source: "./media/characters/grynn/front.svg",
  13637. extra: 4627 / 4209,
  13638. bottom: 0.047
  13639. }
  13640. },
  13641. },
  13642. [
  13643. {
  13644. name: "Micro",
  13645. height: math.unit(6, "inches")
  13646. },
  13647. {
  13648. name: "Normal",
  13649. height: math.unit(6 + 3 / 12, "feet"),
  13650. default: true
  13651. },
  13652. {
  13653. name: "Big",
  13654. height: math.unit(104, "feet")
  13655. },
  13656. {
  13657. name: "Macro",
  13658. height: math.unit(944, "feet")
  13659. },
  13660. {
  13661. name: "Macro+",
  13662. height: math.unit(9480, "feet")
  13663. },
  13664. {
  13665. name: "Megamacro",
  13666. height: math.unit(78752, "feet")
  13667. },
  13668. {
  13669. name: "Megamacro+",
  13670. height: math.unit(630128, "feet")
  13671. },
  13672. {
  13673. name: "Megamacro++",
  13674. height: math.unit(3150695, "feet")
  13675. },
  13676. ]
  13677. ))
  13678. characterMakers.push(() => makeCharacter(
  13679. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13680. {
  13681. front: {
  13682. height: math.unit(7 + 5 / 12, "feet"),
  13683. weight: math.unit(450, "lb"),
  13684. name: "Front",
  13685. image: {
  13686. source: "./media/characters/mocha-aura/front.svg",
  13687. extra: 1907 / 1817,
  13688. bottom: 0.04
  13689. }
  13690. },
  13691. back: {
  13692. height: math.unit(7 + 5 / 12, "feet"),
  13693. weight: math.unit(450, "lb"),
  13694. name: "Back",
  13695. image: {
  13696. source: "./media/characters/mocha-aura/back.svg",
  13697. extra: 1900 / 1825,
  13698. bottom: 0.045
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Nano",
  13705. height: math.unit(1, "nm")
  13706. },
  13707. {
  13708. name: "Megamicro",
  13709. height: math.unit(1, "mm")
  13710. },
  13711. {
  13712. name: "Micro",
  13713. height: math.unit(3, "inches")
  13714. },
  13715. {
  13716. name: "Normal",
  13717. height: math.unit(7 + 5 / 12, "feet"),
  13718. default: true
  13719. },
  13720. {
  13721. name: "Macro",
  13722. height: math.unit(30, "feet")
  13723. },
  13724. {
  13725. name: "Megamacro",
  13726. height: math.unit(3500, "feet")
  13727. },
  13728. {
  13729. name: "Teramacro",
  13730. height: math.unit(500000, "miles")
  13731. },
  13732. {
  13733. name: "Petamacro",
  13734. height: math.unit(50000000000000000, "parsecs")
  13735. },
  13736. ]
  13737. ))
  13738. characterMakers.push(() => makeCharacter(
  13739. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13740. {
  13741. front: {
  13742. height: math.unit(6, "feet"),
  13743. weight: math.unit(150, "lb"),
  13744. name: "Front",
  13745. image: {
  13746. source: "./media/characters/ilisha-devya/front.svg",
  13747. extra: 1053/1049,
  13748. bottom: 270/1323
  13749. }
  13750. },
  13751. back: {
  13752. height: math.unit(6, "feet"),
  13753. weight: math.unit(150, "lb"),
  13754. name: "Back",
  13755. image: {
  13756. source: "./media/characters/ilisha-devya/back.svg",
  13757. extra: 1131/1128,
  13758. bottom: 39/1170
  13759. }
  13760. },
  13761. },
  13762. [
  13763. {
  13764. name: "Macro",
  13765. height: math.unit(500, "feet"),
  13766. default: true
  13767. },
  13768. {
  13769. name: "Megamacro",
  13770. height: math.unit(10, "miles")
  13771. },
  13772. {
  13773. name: "Gigamacro",
  13774. height: math.unit(100000, "miles")
  13775. },
  13776. {
  13777. name: "Examacro",
  13778. height: math.unit(1e9, "lightyears")
  13779. },
  13780. {
  13781. name: "Omniversal",
  13782. height: math.unit(1e33, "lightyears")
  13783. },
  13784. {
  13785. name: "Beyond Infinite",
  13786. height: math.unit(1e100, "lightyears")
  13787. },
  13788. ]
  13789. ))
  13790. characterMakers.push(() => makeCharacter(
  13791. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13792. {
  13793. Side: {
  13794. height: math.unit(6, "feet"),
  13795. weight: math.unit(150, "lb"),
  13796. name: "Side",
  13797. image: {
  13798. source: "./media/characters/mira/side.svg",
  13799. extra: 900 / 799,
  13800. bottom: 0.02
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Human Size",
  13807. height: math.unit(6, "feet")
  13808. },
  13809. {
  13810. name: "Macro",
  13811. height: math.unit(100, "feet"),
  13812. default: true
  13813. },
  13814. {
  13815. name: "Megamacro",
  13816. height: math.unit(10, "miles")
  13817. },
  13818. {
  13819. name: "Gigamacro",
  13820. height: math.unit(25000, "miles")
  13821. },
  13822. {
  13823. name: "Teramacro",
  13824. height: math.unit(300, "AU")
  13825. },
  13826. {
  13827. name: "Full Size",
  13828. height: math.unit(4.5e10, "lightyears")
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13834. {
  13835. front: {
  13836. height: math.unit(6, "feet"),
  13837. weight: math.unit(150, "lb"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/holly/front.svg",
  13841. extra: 639 / 606
  13842. }
  13843. },
  13844. back: {
  13845. height: math.unit(6, "feet"),
  13846. weight: math.unit(150, "lb"),
  13847. name: "Back",
  13848. image: {
  13849. source: "./media/characters/holly/back.svg",
  13850. extra: 623 / 598
  13851. }
  13852. },
  13853. frontWorking: {
  13854. height: math.unit(6, "feet"),
  13855. weight: math.unit(150, "lb"),
  13856. name: "Front (Working)",
  13857. image: {
  13858. source: "./media/characters/holly/front-working.svg",
  13859. extra: 607 / 577,
  13860. bottom: 0.048
  13861. }
  13862. },
  13863. },
  13864. [
  13865. {
  13866. name: "Normal",
  13867. height: math.unit(12 + 3 / 12, "feet"),
  13868. default: true
  13869. },
  13870. ]
  13871. ))
  13872. characterMakers.push(() => makeCharacter(
  13873. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13874. {
  13875. front: {
  13876. height: math.unit(6, "feet"),
  13877. weight: math.unit(150, "lb"),
  13878. name: "Front",
  13879. image: {
  13880. source: "./media/characters/porter/front.svg",
  13881. extra: 1,
  13882. bottom: 0.01
  13883. }
  13884. },
  13885. frontRobes: {
  13886. height: math.unit(6, "feet"),
  13887. weight: math.unit(150, "lb"),
  13888. name: "Front (Robes)",
  13889. image: {
  13890. source: "./media/characters/porter/front-robes.svg",
  13891. extra: 1.01,
  13892. bottom: 0.01
  13893. }
  13894. },
  13895. },
  13896. [
  13897. {
  13898. name: "Normal",
  13899. height: math.unit(11 + 9 / 12, "feet"),
  13900. default: true
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13906. {
  13907. legendary: {
  13908. height: math.unit(6, "feet"),
  13909. weight: math.unit(150, "lb"),
  13910. name: "Legendary",
  13911. image: {
  13912. source: "./media/characters/lucy/legendary.svg",
  13913. extra: 1355 / 1100,
  13914. bottom: 0.045
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Legendary",
  13921. height: math.unit(86882 * 2, "miles"),
  13922. default: true
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13928. {
  13929. front: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(150, "lb"),
  13932. name: "Front",
  13933. image: {
  13934. source: "./media/characters/drusilla/front.svg",
  13935. extra: 678 / 635,
  13936. bottom: 0.03
  13937. }
  13938. },
  13939. back: {
  13940. height: math.unit(6, "feet"),
  13941. weight: math.unit(150, "lb"),
  13942. name: "Back",
  13943. image: {
  13944. source: "./media/characters/drusilla/back.svg",
  13945. extra: 678 / 635,
  13946. bottom: 0.005
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Macro",
  13953. height: math.unit(100, "feet")
  13954. },
  13955. {
  13956. name: "Canon Height",
  13957. height: math.unit(2000, "feet"),
  13958. default: true
  13959. },
  13960. ]
  13961. ))
  13962. characterMakers.push(() => makeCharacter(
  13963. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13964. {
  13965. front: {
  13966. height: math.unit(6, "feet"),
  13967. weight: math.unit(180, "lb"),
  13968. name: "Front",
  13969. image: {
  13970. source: "./media/characters/renard-thatch/front.svg",
  13971. extra: 2411 / 2275,
  13972. bottom: 0.01
  13973. }
  13974. },
  13975. frontPosing: {
  13976. height: math.unit(6, "feet"),
  13977. weight: math.unit(180, "lb"),
  13978. name: "Front (Posing)",
  13979. image: {
  13980. source: "./media/characters/renard-thatch/front-posing.svg",
  13981. extra: 2381 / 2261,
  13982. bottom: 0.01
  13983. }
  13984. },
  13985. back: {
  13986. height: math.unit(6, "feet"),
  13987. weight: math.unit(180, "lb"),
  13988. name: "Back",
  13989. image: {
  13990. source: "./media/characters/renard-thatch/back.svg",
  13991. extra: 2428 / 2288
  13992. }
  13993. },
  13994. },
  13995. [
  13996. {
  13997. name: "Micro",
  13998. height: math.unit(3, "inches")
  13999. },
  14000. {
  14001. name: "Default",
  14002. height: math.unit(6, "feet"),
  14003. default: true
  14004. },
  14005. {
  14006. name: "Macro",
  14007. height: math.unit(75, "feet")
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14013. {
  14014. front: {
  14015. height: math.unit(1450, "feet"),
  14016. weight: math.unit(1.21e6, "tons"),
  14017. name: "Front",
  14018. image: {
  14019. source: "./media/characters/sekvra/front.svg",
  14020. extra: 1193/1190,
  14021. bottom: 78/1271
  14022. }
  14023. },
  14024. side: {
  14025. height: math.unit(1450, "feet"),
  14026. weight: math.unit(1.21e6, "tons"),
  14027. name: "Side",
  14028. image: {
  14029. source: "./media/characters/sekvra/side.svg",
  14030. extra: 1193/1190,
  14031. bottom: 52/1245
  14032. }
  14033. },
  14034. back: {
  14035. height: math.unit(1450, "feet"),
  14036. weight: math.unit(1.21e6, "tons"),
  14037. name: "Back",
  14038. image: {
  14039. source: "./media/characters/sekvra/back.svg",
  14040. extra: 1219/1216,
  14041. bottom: 21/1240
  14042. }
  14043. },
  14044. frontClothed: {
  14045. height: math.unit(1450, "feet"),
  14046. weight: math.unit(1.21e6, "tons"),
  14047. name: "Front (Clothed)",
  14048. image: {
  14049. source: "./media/characters/sekvra/front-clothed.svg",
  14050. extra: 1192/1189,
  14051. bottom: 79/1271
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Macro",
  14058. height: math.unit(1450, "feet"),
  14059. default: true
  14060. },
  14061. {
  14062. name: "Megamacro",
  14063. height: math.unit(15000, "feet")
  14064. },
  14065. ]
  14066. ))
  14067. characterMakers.push(() => makeCharacter(
  14068. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14069. {
  14070. front: {
  14071. height: math.unit(6, "feet"),
  14072. weight: math.unit(150, "lb"),
  14073. name: "Front",
  14074. image: {
  14075. source: "./media/characters/carmine/front.svg",
  14076. extra: 1,
  14077. bottom: 0.035
  14078. }
  14079. },
  14080. frontArmor: {
  14081. height: math.unit(6, "feet"),
  14082. weight: math.unit(150, "lb"),
  14083. name: "Front (Armor)",
  14084. image: {
  14085. source: "./media/characters/carmine/front-armor.svg",
  14086. extra: 1,
  14087. bottom: 0.035
  14088. }
  14089. },
  14090. },
  14091. [
  14092. {
  14093. name: "Large",
  14094. height: math.unit(1, "mile")
  14095. },
  14096. {
  14097. name: "Huge",
  14098. height: math.unit(40, "miles"),
  14099. default: true
  14100. },
  14101. {
  14102. name: "Colossal",
  14103. height: math.unit(2500, "miles")
  14104. },
  14105. ]
  14106. ))
  14107. characterMakers.push(() => makeCharacter(
  14108. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14109. {
  14110. front: {
  14111. height: math.unit(6, "feet"),
  14112. weight: math.unit(150, "lb"),
  14113. name: "Front",
  14114. image: {
  14115. source: "./media/characters/elyssia/front.svg",
  14116. extra: 2201 / 2035,
  14117. bottom: 0.05
  14118. }
  14119. },
  14120. frontClothed: {
  14121. height: math.unit(6, "feet"),
  14122. weight: math.unit(150, "lb"),
  14123. name: "Front (Clothed)",
  14124. image: {
  14125. source: "./media/characters/elyssia/front-clothed.svg",
  14126. extra: 2201 / 2035,
  14127. bottom: 0.05
  14128. }
  14129. },
  14130. back: {
  14131. height: math.unit(6, "feet"),
  14132. weight: math.unit(150, "lb"),
  14133. name: "Back",
  14134. image: {
  14135. source: "./media/characters/elyssia/back.svg",
  14136. extra: 2201 / 2035,
  14137. bottom: 0.013
  14138. }
  14139. },
  14140. },
  14141. [
  14142. {
  14143. name: "Smaller",
  14144. height: math.unit(150, "feet")
  14145. },
  14146. {
  14147. name: "Standard",
  14148. height: math.unit(1400, "feet"),
  14149. default: true
  14150. },
  14151. {
  14152. name: "Distracted",
  14153. height: math.unit(15000, "feet")
  14154. },
  14155. ]
  14156. ))
  14157. characterMakers.push(() => makeCharacter(
  14158. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14159. {
  14160. front: {
  14161. height: math.unit(7 + 4/12, "feet"),
  14162. weight: math.unit(690, "lb"),
  14163. name: "Front",
  14164. image: {
  14165. source: "./media/characters/geno-maxwell/front.svg",
  14166. extra: 984/856,
  14167. bottom: 87/1071
  14168. }
  14169. },
  14170. back: {
  14171. height: math.unit(7 + 4/12, "feet"),
  14172. weight: math.unit(690, "lb"),
  14173. name: "Back",
  14174. image: {
  14175. source: "./media/characters/geno-maxwell/back.svg",
  14176. extra: 981/854,
  14177. bottom: 57/1038
  14178. }
  14179. },
  14180. frontCostume: {
  14181. height: math.unit(7 + 4/12, "feet"),
  14182. weight: math.unit(690, "lb"),
  14183. name: "Front (Costume)",
  14184. image: {
  14185. source: "./media/characters/geno-maxwell/front-costume.svg",
  14186. extra: 984/856,
  14187. bottom: 87/1071
  14188. }
  14189. },
  14190. backcostume: {
  14191. height: math.unit(7 + 4/12, "feet"),
  14192. weight: math.unit(690, "lb"),
  14193. name: "Back (Costume)",
  14194. image: {
  14195. source: "./media/characters/geno-maxwell/back-costume.svg",
  14196. extra: 981/854,
  14197. bottom: 57/1038
  14198. }
  14199. },
  14200. },
  14201. [
  14202. {
  14203. name: "Micro",
  14204. height: math.unit(3, "inches")
  14205. },
  14206. {
  14207. name: "Normal",
  14208. height: math.unit(7 + 4 / 12, "feet"),
  14209. default: true
  14210. },
  14211. {
  14212. name: "Macro",
  14213. height: math.unit(220, "feet")
  14214. },
  14215. {
  14216. name: "Megamacro",
  14217. height: math.unit(11, "miles")
  14218. },
  14219. ]
  14220. ))
  14221. characterMakers.push(() => makeCharacter(
  14222. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14223. {
  14224. front: {
  14225. height: math.unit(7 + 4/12, "feet"),
  14226. weight: math.unit(750, "lb"),
  14227. name: "Front",
  14228. image: {
  14229. source: "./media/characters/regena-maxwell/front.svg",
  14230. extra: 984/856,
  14231. bottom: 87/1071
  14232. }
  14233. },
  14234. back: {
  14235. height: math.unit(7 + 4/12, "feet"),
  14236. weight: math.unit(750, "lb"),
  14237. name: "Back",
  14238. image: {
  14239. source: "./media/characters/regena-maxwell/back.svg",
  14240. extra: 981/854,
  14241. bottom: 57/1038
  14242. }
  14243. },
  14244. frontCostume: {
  14245. height: math.unit(7 + 4/12, "feet"),
  14246. weight: math.unit(750, "lb"),
  14247. name: "Front (Costume)",
  14248. image: {
  14249. source: "./media/characters/regena-maxwell/front-costume.svg",
  14250. extra: 984/856,
  14251. bottom: 87/1071
  14252. }
  14253. },
  14254. backcostume: {
  14255. height: math.unit(7 + 4/12, "feet"),
  14256. weight: math.unit(750, "lb"),
  14257. name: "Back (Costume)",
  14258. image: {
  14259. source: "./media/characters/regena-maxwell/back-costume.svg",
  14260. extra: 981/854,
  14261. bottom: 57/1038
  14262. }
  14263. },
  14264. },
  14265. [
  14266. {
  14267. name: "Normal",
  14268. height: math.unit(7 + 4 / 12, "feet"),
  14269. default: true
  14270. },
  14271. {
  14272. name: "Macro",
  14273. height: math.unit(220, "feet")
  14274. },
  14275. {
  14276. name: "Megamacro",
  14277. height: math.unit(11, "miles")
  14278. },
  14279. ]
  14280. ))
  14281. characterMakers.push(() => makeCharacter(
  14282. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14283. {
  14284. front: {
  14285. height: math.unit(6, "feet"),
  14286. weight: math.unit(150, "lb"),
  14287. name: "Front",
  14288. image: {
  14289. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14290. extra: 860 / 690,
  14291. bottom: 0.03
  14292. }
  14293. },
  14294. },
  14295. [
  14296. {
  14297. name: "Normal",
  14298. height: math.unit(1.7, "meters"),
  14299. default: true
  14300. },
  14301. ]
  14302. ))
  14303. characterMakers.push(() => makeCharacter(
  14304. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14305. {
  14306. front: {
  14307. height: math.unit(6, "feet"),
  14308. weight: math.unit(150, "lb"),
  14309. name: "Front",
  14310. image: {
  14311. source: "./media/characters/quilly/front.svg",
  14312. extra: 890 / 776
  14313. }
  14314. },
  14315. },
  14316. [
  14317. {
  14318. name: "Gigamacro",
  14319. height: math.unit(404090, "miles"),
  14320. default: true
  14321. },
  14322. ]
  14323. ))
  14324. characterMakers.push(() => makeCharacter(
  14325. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14326. {
  14327. front: {
  14328. height: math.unit(7 + 8 / 12, "feet"),
  14329. weight: math.unit(350, "lb"),
  14330. name: "Front",
  14331. image: {
  14332. source: "./media/characters/tempest/front.svg",
  14333. extra: 1175 / 1086,
  14334. bottom: 0.02
  14335. }
  14336. },
  14337. },
  14338. [
  14339. {
  14340. name: "Normal",
  14341. height: math.unit(7 + 8 / 12, "feet"),
  14342. default: true
  14343. },
  14344. ]
  14345. ))
  14346. characterMakers.push(() => makeCharacter(
  14347. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14348. {
  14349. side: {
  14350. height: math.unit(4 + 5 / 12, "feet"),
  14351. weight: math.unit(80, "lb"),
  14352. name: "Side",
  14353. image: {
  14354. source: "./media/characters/rodger/side.svg",
  14355. extra: 1235 / 1118
  14356. }
  14357. },
  14358. },
  14359. [
  14360. {
  14361. name: "Micro",
  14362. height: math.unit(1, "inch")
  14363. },
  14364. {
  14365. name: "Normal",
  14366. height: math.unit(4 + 5 / 12, "feet"),
  14367. default: true
  14368. },
  14369. {
  14370. name: "Macro",
  14371. height: math.unit(120, "feet")
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(6, "feet"),
  14380. weight: math.unit(150, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/danyel/front.svg",
  14384. extra: 1185 / 1123,
  14385. bottom: 0.05
  14386. }
  14387. },
  14388. },
  14389. [
  14390. {
  14391. name: "Shrunken",
  14392. height: math.unit(0.5, "mm")
  14393. },
  14394. {
  14395. name: "Micro",
  14396. height: math.unit(1, "mm"),
  14397. default: true
  14398. },
  14399. {
  14400. name: "Upsized",
  14401. height: math.unit(5 + 5 / 12, "feet")
  14402. },
  14403. ]
  14404. ))
  14405. characterMakers.push(() => makeCharacter(
  14406. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14407. {
  14408. front: {
  14409. height: math.unit(5 + 6 / 12, "feet"),
  14410. weight: math.unit(200, "lb"),
  14411. name: "Front",
  14412. image: {
  14413. source: "./media/characters/vivian-bijoux/front.svg",
  14414. extra: 1217/1209,
  14415. bottom: 76/1293
  14416. }
  14417. },
  14418. back: {
  14419. height: math.unit(5 + 6 / 12, "feet"),
  14420. weight: math.unit(200, "lb"),
  14421. name: "Back",
  14422. image: {
  14423. source: "./media/characters/vivian-bijoux/back.svg",
  14424. extra: 1214/1208,
  14425. bottom: 51/1265
  14426. }
  14427. },
  14428. dressed: {
  14429. height: math.unit(5 + 6 / 12, "feet"),
  14430. weight: math.unit(200, "lb"),
  14431. name: "Dressed",
  14432. image: {
  14433. source: "./media/characters/vivian-bijoux/dressed.svg",
  14434. extra: 1217/1209,
  14435. bottom: 76/1293
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(5 + 6 / 12, "feet"),
  14443. default: true
  14444. },
  14445. {
  14446. name: "Bad Dream",
  14447. height: math.unit(500, "feet")
  14448. },
  14449. {
  14450. name: "Nightmare",
  14451. height: math.unit(500, "miles")
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(6 + 1 / 12, "feet"),
  14460. weight: math.unit(260, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/zeta/front.svg",
  14464. extra: 1968 / 1889,
  14465. bottom: 0.06
  14466. }
  14467. },
  14468. back: {
  14469. height: math.unit(6 + 1 / 12, "feet"),
  14470. weight: math.unit(260, "lb"),
  14471. name: "Back",
  14472. image: {
  14473. source: "./media/characters/zeta/back.svg",
  14474. extra: 1944 / 1858,
  14475. bottom: 0.03
  14476. }
  14477. },
  14478. hand: {
  14479. height: math.unit(1.112, "feet"),
  14480. name: "Hand",
  14481. image: {
  14482. source: "./media/characters/zeta/hand.svg"
  14483. }
  14484. },
  14485. foot: {
  14486. height: math.unit(1.48, "feet"),
  14487. name: "Foot",
  14488. image: {
  14489. source: "./media/characters/zeta/foot.svg"
  14490. }
  14491. },
  14492. },
  14493. [
  14494. {
  14495. name: "Micro",
  14496. height: math.unit(6, "inches")
  14497. },
  14498. {
  14499. name: "Normal",
  14500. height: math.unit(6 + 1 / 12, "feet"),
  14501. default: true
  14502. },
  14503. {
  14504. name: "Macro",
  14505. height: math.unit(20, "feet")
  14506. },
  14507. ]
  14508. ))
  14509. characterMakers.push(() => makeCharacter(
  14510. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14511. {
  14512. front: {
  14513. height: math.unit(6, "feet"),
  14514. weight: math.unit(150, "lb"),
  14515. name: "Front",
  14516. image: {
  14517. source: "./media/characters/jamie-larsen/front.svg",
  14518. extra: 962 / 933,
  14519. bottom: 0.02
  14520. }
  14521. },
  14522. back: {
  14523. height: math.unit(6, "feet"),
  14524. weight: math.unit(150, "lb"),
  14525. name: "Back",
  14526. image: {
  14527. source: "./media/characters/jamie-larsen/back.svg",
  14528. extra: 997 / 946
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Macro",
  14535. height: math.unit(28 + 7 / 12, "feet"),
  14536. default: true
  14537. },
  14538. {
  14539. name: "Macro+",
  14540. height: math.unit(180, "feet")
  14541. },
  14542. {
  14543. name: "Megamacro",
  14544. height: math.unit(10, "miles")
  14545. },
  14546. {
  14547. name: "Gigamacro",
  14548. height: math.unit(200000, "miles")
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14554. {
  14555. front: {
  14556. height: math.unit(6, "feet"),
  14557. weight: math.unit(120, "lb"),
  14558. name: "Front",
  14559. image: {
  14560. source: "./media/characters/vance/front.svg",
  14561. extra: 1980 / 1890,
  14562. bottom: 0.09
  14563. }
  14564. },
  14565. back: {
  14566. height: math.unit(6, "feet"),
  14567. weight: math.unit(120, "lb"),
  14568. name: "Back",
  14569. image: {
  14570. source: "./media/characters/vance/back.svg",
  14571. extra: 2081 / 1994,
  14572. bottom: 0.014
  14573. }
  14574. },
  14575. hand: {
  14576. height: math.unit(0.88, "feet"),
  14577. name: "Hand",
  14578. image: {
  14579. source: "./media/characters/vance/hand.svg"
  14580. }
  14581. },
  14582. foot: {
  14583. height: math.unit(0.64, "feet"),
  14584. name: "Foot",
  14585. image: {
  14586. source: "./media/characters/vance/foot.svg"
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Small",
  14593. height: math.unit(90, "feet"),
  14594. default: true
  14595. },
  14596. {
  14597. name: "Macro",
  14598. height: math.unit(100, "meters")
  14599. },
  14600. {
  14601. name: "Megamacro",
  14602. height: math.unit(15, "miles")
  14603. },
  14604. ]
  14605. ))
  14606. characterMakers.push(() => makeCharacter(
  14607. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14608. {
  14609. front: {
  14610. height: math.unit(6, "feet"),
  14611. weight: math.unit(180, "lb"),
  14612. name: "Front",
  14613. image: {
  14614. source: "./media/characters/xochitl/front.svg",
  14615. extra: 2297 / 2261,
  14616. bottom: 0.065
  14617. }
  14618. },
  14619. back: {
  14620. height: math.unit(6, "feet"),
  14621. weight: math.unit(180, "lb"),
  14622. name: "Back",
  14623. image: {
  14624. source: "./media/characters/xochitl/back.svg",
  14625. extra: 2386 / 2354,
  14626. bottom: 0.01
  14627. }
  14628. },
  14629. foot: {
  14630. height: math.unit(6 / 5 * 1.15, "feet"),
  14631. weight: math.unit(150, "lb"),
  14632. name: "Foot",
  14633. image: {
  14634. source: "./media/characters/xochitl/foot.svg"
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Macro",
  14641. height: math.unit(80, "feet")
  14642. },
  14643. {
  14644. name: "Macro+",
  14645. height: math.unit(400, "feet"),
  14646. default: true
  14647. },
  14648. {
  14649. name: "Gigamacro",
  14650. height: math.unit(80000, "miles")
  14651. },
  14652. {
  14653. name: "Gigamacro+",
  14654. height: math.unit(400000, "miles")
  14655. },
  14656. {
  14657. name: "Teramacro",
  14658. height: math.unit(300, "AU")
  14659. },
  14660. ]
  14661. ))
  14662. characterMakers.push(() => makeCharacter(
  14663. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14664. {
  14665. front: {
  14666. height: math.unit(6, "feet"),
  14667. weight: math.unit(150, "lb"),
  14668. name: "Front",
  14669. image: {
  14670. source: "./media/characters/vincent/front.svg",
  14671. extra: 1130 / 1080,
  14672. bottom: 0.055
  14673. }
  14674. },
  14675. beak: {
  14676. height: math.unit(6 * 0.1, "feet"),
  14677. name: "Beak",
  14678. image: {
  14679. source: "./media/characters/vincent/beak.svg"
  14680. }
  14681. },
  14682. hand: {
  14683. height: math.unit(6 * 0.85, "feet"),
  14684. weight: math.unit(150, "lb"),
  14685. name: "Hand",
  14686. image: {
  14687. source: "./media/characters/vincent/hand.svg"
  14688. }
  14689. },
  14690. foot: {
  14691. height: math.unit(6 * 0.19, "feet"),
  14692. weight: math.unit(150, "lb"),
  14693. name: "Foot",
  14694. image: {
  14695. source: "./media/characters/vincent/foot.svg"
  14696. }
  14697. },
  14698. },
  14699. [
  14700. {
  14701. name: "Base",
  14702. height: math.unit(6 + 5 / 12, "feet"),
  14703. default: true
  14704. },
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(300, "feet")
  14708. },
  14709. {
  14710. name: "Megamacro",
  14711. height: math.unit(2, "miles")
  14712. },
  14713. {
  14714. name: "Gigamacro",
  14715. height: math.unit(1000, "miles")
  14716. },
  14717. ]
  14718. ))
  14719. characterMakers.push(() => makeCharacter(
  14720. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14721. {
  14722. front: {
  14723. height: math.unit(2, "meters"),
  14724. weight: math.unit(500, "kg"),
  14725. name: "Front",
  14726. image: {
  14727. source: "./media/characters/coatl/front.svg",
  14728. extra: 3948 / 3500,
  14729. bottom: 0.082
  14730. }
  14731. },
  14732. },
  14733. [
  14734. {
  14735. name: "Normal",
  14736. height: math.unit(4, "meters")
  14737. },
  14738. {
  14739. name: "Macro",
  14740. height: math.unit(100, "meters"),
  14741. default: true
  14742. },
  14743. {
  14744. name: "Macro+",
  14745. height: math.unit(300, "meters")
  14746. },
  14747. {
  14748. name: "Megamacro",
  14749. height: math.unit(3, "gigameters")
  14750. },
  14751. {
  14752. name: "Megamacro+",
  14753. height: math.unit(300, "terameters")
  14754. },
  14755. {
  14756. name: "Megamacro++",
  14757. height: math.unit(3, "lightyears")
  14758. },
  14759. ]
  14760. ))
  14761. characterMakers.push(() => makeCharacter(
  14762. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14763. {
  14764. front: {
  14765. height: math.unit(6, "feet"),
  14766. weight: math.unit(50, "kg"),
  14767. name: "front",
  14768. image: {
  14769. source: "./media/characters/shiroryu/front.svg",
  14770. extra: 1990 / 1935
  14771. }
  14772. },
  14773. },
  14774. [
  14775. {
  14776. name: "Mortal Mingling",
  14777. height: math.unit(3, "meters")
  14778. },
  14779. {
  14780. name: "Kaiju-ish",
  14781. height: math.unit(250, "meters")
  14782. },
  14783. {
  14784. name: "Somewhat Godly",
  14785. height: math.unit(400, "km"),
  14786. default: true
  14787. },
  14788. {
  14789. name: "Planetary",
  14790. height: math.unit(300, "megameters")
  14791. },
  14792. {
  14793. name: "Galaxy-dwarfing",
  14794. height: math.unit(450, "kiloparsecs")
  14795. },
  14796. {
  14797. name: "Universe Eater",
  14798. height: math.unit(150, "gigaparsecs")
  14799. },
  14800. {
  14801. name: "Almost Immeasurable",
  14802. height: math.unit(1.3e266, "yottaparsecs")
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(6, "feet"),
  14811. weight: math.unit(150, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/umeko/front.svg",
  14815. extra: 1,
  14816. bottom: 0.019
  14817. }
  14818. },
  14819. frontArmored: {
  14820. height: math.unit(6, "feet"),
  14821. weight: math.unit(150, "lb"),
  14822. name: "Front (Armored)",
  14823. image: {
  14824. source: "./media/characters/umeko/front-armored.svg",
  14825. extra: 1,
  14826. bottom: 0.021
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Macro",
  14833. height: math.unit(220, "feet"),
  14834. default: true
  14835. },
  14836. {
  14837. name: "Guardian Dragon",
  14838. height: math.unit(50, "miles")
  14839. },
  14840. {
  14841. name: "Cosmic",
  14842. height: math.unit(800000, "miles")
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14848. {
  14849. front: {
  14850. height: math.unit(6, "feet"),
  14851. weight: math.unit(150, "lb"),
  14852. name: "Front",
  14853. image: {
  14854. source: "./media/characters/cassidy/front.svg",
  14855. extra: 810/808,
  14856. bottom: 41/851
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Canon Height",
  14863. height: math.unit(120, "feet"),
  14864. default: true
  14865. },
  14866. {
  14867. name: "Macro+",
  14868. height: math.unit(400, "feet")
  14869. },
  14870. {
  14871. name: "Macro++",
  14872. height: math.unit(4000, "feet")
  14873. },
  14874. {
  14875. name: "Megamacro",
  14876. height: math.unit(3, "miles")
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(6, "feet"),
  14885. weight: math.unit(150, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/isaac/front.svg",
  14889. extra: 896 / 815,
  14890. bottom: 0.11
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Human Size",
  14897. height: math.unit(8, "feet"),
  14898. default: true
  14899. },
  14900. {
  14901. name: "Macro",
  14902. height: math.unit(400, "feet")
  14903. },
  14904. {
  14905. name: "Megamacro",
  14906. height: math.unit(50, "miles")
  14907. },
  14908. {
  14909. name: "Canon Height",
  14910. height: math.unit(200, "AU")
  14911. },
  14912. ]
  14913. ))
  14914. characterMakers.push(() => makeCharacter(
  14915. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14916. {
  14917. front: {
  14918. height: math.unit(6, "feet"),
  14919. weight: math.unit(72, "kg"),
  14920. name: "Front",
  14921. image: {
  14922. source: "./media/characters/sleekit/front.svg",
  14923. extra: 4693 / 4487,
  14924. bottom: 0.012
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "Minimum Height",
  14931. height: math.unit(10, "meters")
  14932. },
  14933. {
  14934. name: "Smaller",
  14935. height: math.unit(25, "meters")
  14936. },
  14937. {
  14938. name: "Larger",
  14939. height: math.unit(38, "meters"),
  14940. default: true
  14941. },
  14942. {
  14943. name: "Maximum height",
  14944. height: math.unit(100, "meters")
  14945. },
  14946. ]
  14947. ))
  14948. characterMakers.push(() => makeCharacter(
  14949. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14950. {
  14951. front: {
  14952. height: math.unit(6, "feet"),
  14953. weight: math.unit(150, "lb"),
  14954. name: "Front",
  14955. image: {
  14956. source: "./media/characters/nillia/front.svg",
  14957. extra: 2195 / 2037,
  14958. bottom: 0.005
  14959. }
  14960. },
  14961. back: {
  14962. height: math.unit(6, "feet"),
  14963. weight: math.unit(150, "lb"),
  14964. name: "Back",
  14965. image: {
  14966. source: "./media/characters/nillia/back.svg",
  14967. extra: 2195 / 2037,
  14968. bottom: 0.005
  14969. }
  14970. },
  14971. },
  14972. [
  14973. {
  14974. name: "Canon Height",
  14975. height: math.unit(489, "feet"),
  14976. default: true
  14977. }
  14978. ]
  14979. ))
  14980. characterMakers.push(() => makeCharacter(
  14981. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14982. {
  14983. front: {
  14984. height: math.unit(6, "feet"),
  14985. weight: math.unit(150, "lb"),
  14986. name: "Front",
  14987. image: {
  14988. source: "./media/characters/mesmyriza/front.svg",
  14989. extra: 2067 / 1784,
  14990. bottom: 0.035
  14991. }
  14992. },
  14993. foot: {
  14994. height: math.unit(6 / (250 / 35), "feet"),
  14995. name: "Foot",
  14996. image: {
  14997. source: "./media/characters/mesmyriza/foot.svg"
  14998. }
  14999. },
  15000. },
  15001. [
  15002. {
  15003. name: "Macro",
  15004. height: math.unit(457, "meters"),
  15005. default: true
  15006. },
  15007. {
  15008. name: "Megamacro",
  15009. height: math.unit(8, "megameters")
  15010. },
  15011. ]
  15012. ))
  15013. characterMakers.push(() => makeCharacter(
  15014. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15015. {
  15016. front: {
  15017. height: math.unit(6, "feet"),
  15018. weight: math.unit(250, "lb"),
  15019. name: "Front",
  15020. image: {
  15021. source: "./media/characters/saudade/front.svg",
  15022. extra: 1172 / 1139,
  15023. bottom: 0.035
  15024. }
  15025. },
  15026. },
  15027. [
  15028. {
  15029. name: "Micro",
  15030. height: math.unit(3, "inches")
  15031. },
  15032. {
  15033. name: "Normal",
  15034. height: math.unit(6, "feet"),
  15035. default: true
  15036. },
  15037. {
  15038. name: "Macro",
  15039. height: math.unit(50, "feet")
  15040. },
  15041. {
  15042. name: "Megamacro",
  15043. height: math.unit(2800, "feet")
  15044. },
  15045. ]
  15046. ))
  15047. characterMakers.push(() => makeCharacter(
  15048. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15049. {
  15050. front: {
  15051. height: math.unit(5 + 4 / 12, "feet"),
  15052. weight: math.unit(100, "lb"),
  15053. name: "Front",
  15054. image: {
  15055. source: "./media/characters/keireer/front.svg",
  15056. extra: 716 / 666,
  15057. bottom: 0.05
  15058. }
  15059. },
  15060. },
  15061. [
  15062. {
  15063. name: "Normal",
  15064. height: math.unit(5 + 4 / 12, "feet"),
  15065. default: true
  15066. },
  15067. ]
  15068. ))
  15069. characterMakers.push(() => makeCharacter(
  15070. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15071. {
  15072. front: {
  15073. height: math.unit(6, "feet"),
  15074. weight: math.unit(90, "kg"),
  15075. name: "Front",
  15076. image: {
  15077. source: "./media/characters/mirja/front.svg",
  15078. extra: 1789 / 1683,
  15079. bottom: 0.05
  15080. }
  15081. },
  15082. frontDressed: {
  15083. height: math.unit(6, "feet"),
  15084. weight: math.unit(90, "lb"),
  15085. name: "Front (Dressed)",
  15086. image: {
  15087. source: "./media/characters/mirja/front-dressed.svg",
  15088. extra: 1789 / 1683,
  15089. bottom: 0.05
  15090. }
  15091. },
  15092. back: {
  15093. height: math.unit(6, "feet"),
  15094. weight: math.unit(90, "lb"),
  15095. name: "Back",
  15096. image: {
  15097. source: "./media/characters/mirja/back.svg",
  15098. extra: 953 / 917,
  15099. bottom: 0.017
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "\"Incognito\"",
  15106. height: math.unit(3, "meters")
  15107. },
  15108. {
  15109. name: "Strolling Size",
  15110. height: math.unit(15, "km")
  15111. },
  15112. {
  15113. name: "Larger Strolling Size",
  15114. height: math.unit(400, "km")
  15115. },
  15116. {
  15117. name: "Preferred Size",
  15118. height: math.unit(5000, "km")
  15119. },
  15120. {
  15121. name: "True Size",
  15122. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15123. default: true
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(15, "feet"),
  15132. weight: math.unit(880, "kg"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/nightraver/front.svg",
  15136. extra: 2444 / 2160,
  15137. bottom: 0.027
  15138. }
  15139. },
  15140. back: {
  15141. height: math.unit(15, "feet"),
  15142. weight: math.unit(880, "kg"),
  15143. name: "Back",
  15144. image: {
  15145. source: "./media/characters/nightraver/back.svg",
  15146. extra: 2309 / 2180,
  15147. bottom: 0.005
  15148. }
  15149. },
  15150. sole: {
  15151. height: math.unit(2.878, "feet"),
  15152. name: "Sole",
  15153. image: {
  15154. source: "./media/characters/nightraver/sole.svg"
  15155. }
  15156. },
  15157. foot: {
  15158. height: math.unit(2.285, "feet"),
  15159. name: "Foot",
  15160. image: {
  15161. source: "./media/characters/nightraver/foot.svg"
  15162. }
  15163. },
  15164. maw: {
  15165. height: math.unit(2.67, "feet"),
  15166. name: "Maw",
  15167. image: {
  15168. source: "./media/characters/nightraver/maw.svg"
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Micro",
  15175. height: math.unit(1, "cm")
  15176. },
  15177. {
  15178. name: "Normal",
  15179. height: math.unit(15, "feet"),
  15180. default: true
  15181. },
  15182. {
  15183. name: "Macro",
  15184. height: math.unit(300, "feet")
  15185. },
  15186. {
  15187. name: "Megamacro",
  15188. height: math.unit(300, "miles")
  15189. },
  15190. {
  15191. name: "Gigamacro",
  15192. height: math.unit(10000, "miles")
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15198. {
  15199. side: {
  15200. height: math.unit(2, "inches"),
  15201. weight: math.unit(5, "grams"),
  15202. name: "Side",
  15203. image: {
  15204. source: "./media/characters/arc/side.svg"
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Micro",
  15211. height: math.unit(2, "inches"),
  15212. default: true
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(1.1938, "meters"),
  15221. weight: math.unit(54, "kg"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/nebula-shahar/front.svg",
  15225. extra: 1642 / 1436,
  15226. bottom: 0.06
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Megamicro",
  15233. height: math.unit(0.3, "mm")
  15234. },
  15235. {
  15236. name: "Micro",
  15237. height: math.unit(3, "cm")
  15238. },
  15239. {
  15240. name: "Normal",
  15241. height: math.unit(138, "cm"),
  15242. default: true
  15243. },
  15244. {
  15245. name: "Macro",
  15246. height: math.unit(30, "m")
  15247. },
  15248. ]
  15249. ))
  15250. characterMakers.push(() => makeCharacter(
  15251. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15252. {
  15253. front: {
  15254. height: math.unit(5.24, "feet"),
  15255. weight: math.unit(150, "lb"),
  15256. name: "Front",
  15257. image: {
  15258. source: "./media/characters/shayla/front.svg",
  15259. extra: 1512 / 1414,
  15260. bottom: 0.01
  15261. }
  15262. },
  15263. back: {
  15264. height: math.unit(5.24, "feet"),
  15265. weight: math.unit(150, "lb"),
  15266. name: "Back",
  15267. image: {
  15268. source: "./media/characters/shayla/back.svg",
  15269. extra: 1512 / 1414
  15270. }
  15271. },
  15272. hand: {
  15273. height: math.unit(0.7781496062992126, "feet"),
  15274. name: "Hand",
  15275. image: {
  15276. source: "./media/characters/shayla/hand.svg"
  15277. }
  15278. },
  15279. foot: {
  15280. height: math.unit(1.4206036745406823, "feet"),
  15281. name: "Foot",
  15282. image: {
  15283. source: "./media/characters/shayla/foot.svg"
  15284. }
  15285. },
  15286. },
  15287. [
  15288. {
  15289. name: "Micro",
  15290. height: math.unit(0.32, "feet")
  15291. },
  15292. {
  15293. name: "Normal",
  15294. height: math.unit(5.24, "feet"),
  15295. default: true
  15296. },
  15297. {
  15298. name: "Macro",
  15299. height: math.unit(492.12, "feet")
  15300. },
  15301. {
  15302. name: "Megamacro",
  15303. height: math.unit(186.41, "miles")
  15304. },
  15305. ]
  15306. ))
  15307. characterMakers.push(() => makeCharacter(
  15308. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15309. {
  15310. front: {
  15311. height: math.unit(2.2, "m"),
  15312. weight: math.unit(120, "kg"),
  15313. name: "Front",
  15314. image: {
  15315. source: "./media/characters/pia-jr/front.svg",
  15316. extra: 1000 / 970,
  15317. bottom: 0.035
  15318. }
  15319. },
  15320. hand: {
  15321. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15322. name: "Hand",
  15323. image: {
  15324. source: "./media/characters/pia-jr/hand.svg"
  15325. }
  15326. },
  15327. paw: {
  15328. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15329. name: "Paw",
  15330. image: {
  15331. source: "./media/characters/pia-jr/paw.svg"
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Micro",
  15338. height: math.unit(1.2, "cm")
  15339. },
  15340. {
  15341. name: "Normal",
  15342. height: math.unit(2.2, "m"),
  15343. default: true
  15344. },
  15345. {
  15346. name: "Macro",
  15347. height: math.unit(180, "m")
  15348. },
  15349. {
  15350. name: "Megamacro",
  15351. height: math.unit(420, "km")
  15352. },
  15353. ]
  15354. ))
  15355. characterMakers.push(() => makeCharacter(
  15356. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15357. {
  15358. front: {
  15359. height: math.unit(2, "m"),
  15360. weight: math.unit(115, "kg"),
  15361. name: "Front",
  15362. image: {
  15363. source: "./media/characters/pia-sr/front.svg",
  15364. extra: 760 / 730,
  15365. bottom: 0.015
  15366. }
  15367. },
  15368. back: {
  15369. height: math.unit(2, "m"),
  15370. weight: math.unit(115, "kg"),
  15371. name: "Back",
  15372. image: {
  15373. source: "./media/characters/pia-sr/back.svg",
  15374. extra: 760 / 730,
  15375. bottom: 0.01
  15376. }
  15377. },
  15378. hand: {
  15379. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15380. name: "Hand",
  15381. image: {
  15382. source: "./media/characters/pia-sr/hand.svg"
  15383. }
  15384. },
  15385. foot: {
  15386. height: math.unit(1.83, "feet"),
  15387. name: "Foot",
  15388. image: {
  15389. source: "./media/characters/pia-sr/foot.svg"
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Micro",
  15396. height: math.unit(88, "mm")
  15397. },
  15398. {
  15399. name: "Normal",
  15400. height: math.unit(2, "m"),
  15401. default: true
  15402. },
  15403. {
  15404. name: "Macro",
  15405. height: math.unit(200, "m")
  15406. },
  15407. {
  15408. name: "Megamacro",
  15409. height: math.unit(420, "km")
  15410. },
  15411. ]
  15412. ))
  15413. characterMakers.push(() => makeCharacter(
  15414. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15415. {
  15416. front: {
  15417. height: math.unit(8 + 2 / 12, "feet"),
  15418. weight: math.unit(300, "lb"),
  15419. name: "Front",
  15420. image: {
  15421. source: "./media/characters/kibibyte/front.svg",
  15422. extra: 2221 / 2098,
  15423. bottom: 0.04
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Normal",
  15430. height: math.unit(8 + 2 / 12, "feet"),
  15431. default: true
  15432. },
  15433. {
  15434. name: "Socialable Macro",
  15435. height: math.unit(50, "feet")
  15436. },
  15437. {
  15438. name: "Macro",
  15439. height: math.unit(300, "feet")
  15440. },
  15441. {
  15442. name: "Megamacro",
  15443. height: math.unit(500, "miles")
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15449. {
  15450. front: {
  15451. height: math.unit(6, "feet"),
  15452. weight: math.unit(150, "lb"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/felix/front.svg",
  15456. extra: 762 / 722,
  15457. bottom: 0.02
  15458. }
  15459. },
  15460. frontClothed: {
  15461. height: math.unit(6, "feet"),
  15462. weight: math.unit(150, "lb"),
  15463. name: "Front (Clothed)",
  15464. image: {
  15465. source: "./media/characters/felix/front-clothed.svg",
  15466. extra: 762 / 722,
  15467. bottom: 0.02
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Normal",
  15474. height: math.unit(6 + 8 / 12, "feet"),
  15475. default: true
  15476. },
  15477. {
  15478. name: "Macro",
  15479. height: math.unit(2600, "feet")
  15480. },
  15481. {
  15482. name: "Megamacro",
  15483. height: math.unit(450, "miles")
  15484. },
  15485. ]
  15486. ))
  15487. characterMakers.push(() => makeCharacter(
  15488. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15489. {
  15490. front: {
  15491. height: math.unit(6 + 1 / 12, "feet"),
  15492. weight: math.unit(250, "lb"),
  15493. name: "Front",
  15494. image: {
  15495. source: "./media/characters/tobo/front.svg",
  15496. extra: 608 / 586,
  15497. bottom: 0.023
  15498. }
  15499. },
  15500. back: {
  15501. height: math.unit(6 + 1 / 12, "feet"),
  15502. weight: math.unit(250, "lb"),
  15503. name: "Back",
  15504. image: {
  15505. source: "./media/characters/tobo/back.svg",
  15506. extra: 608 / 586
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Nano",
  15513. height: math.unit(2, "nm")
  15514. },
  15515. {
  15516. name: "Megamicro",
  15517. height: math.unit(0.1, "mm")
  15518. },
  15519. {
  15520. name: "Micro",
  15521. height: math.unit(1, "inch"),
  15522. default: true
  15523. },
  15524. {
  15525. name: "Human-sized",
  15526. height: math.unit(6 + 1 / 12, "feet")
  15527. },
  15528. {
  15529. name: "Macro",
  15530. height: math.unit(250, "feet")
  15531. },
  15532. {
  15533. name: "Megamacro",
  15534. height: math.unit(75, "miles")
  15535. },
  15536. {
  15537. name: "Texas-sized",
  15538. height: math.unit(750, "miles")
  15539. },
  15540. {
  15541. name: "Teramacro",
  15542. height: math.unit(50000, "miles")
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15548. {
  15549. front: {
  15550. height: math.unit(6, "feet"),
  15551. weight: math.unit(269, "lb"),
  15552. name: "Front",
  15553. image: {
  15554. source: "./media/characters/danny-kapowsky/front.svg",
  15555. extra: 766 / 736,
  15556. bottom: 0.044
  15557. }
  15558. },
  15559. back: {
  15560. height: math.unit(6, "feet"),
  15561. weight: math.unit(269, "lb"),
  15562. name: "Back",
  15563. image: {
  15564. source: "./media/characters/danny-kapowsky/back.svg",
  15565. extra: 797 / 760,
  15566. bottom: 0.025
  15567. }
  15568. },
  15569. },
  15570. [
  15571. {
  15572. name: "Macro",
  15573. height: math.unit(150, "feet"),
  15574. default: true
  15575. },
  15576. {
  15577. name: "Macro+",
  15578. height: math.unit(200, "feet")
  15579. },
  15580. {
  15581. name: "Macro++",
  15582. height: math.unit(300, "feet")
  15583. },
  15584. {
  15585. name: "Macro+++",
  15586. height: math.unit(400, "feet")
  15587. },
  15588. ]
  15589. ))
  15590. characterMakers.push(() => makeCharacter(
  15591. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15592. {
  15593. side: {
  15594. height: math.unit(6, "feet"),
  15595. weight: math.unit(170, "lb"),
  15596. name: "Side",
  15597. image: {
  15598. source: "./media/characters/finn/side.svg",
  15599. extra: 1953 / 1807,
  15600. bottom: 0.057
  15601. }
  15602. },
  15603. },
  15604. [
  15605. {
  15606. name: "Megamacro",
  15607. height: math.unit(14445, "feet"),
  15608. default: true
  15609. },
  15610. ]
  15611. ))
  15612. characterMakers.push(() => makeCharacter(
  15613. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15614. {
  15615. front: {
  15616. height: math.unit(5 + 6 / 12, "feet"),
  15617. weight: math.unit(125, "lb"),
  15618. name: "Front",
  15619. image: {
  15620. source: "./media/characters/roy/front.svg",
  15621. extra: 1,
  15622. bottom: 0.11
  15623. }
  15624. },
  15625. },
  15626. [
  15627. {
  15628. name: "Micro",
  15629. height: math.unit(3, "inches"),
  15630. default: true
  15631. },
  15632. {
  15633. name: "Normal",
  15634. height: math.unit(5 + 6 / 12, "feet")
  15635. },
  15636. {
  15637. name: "Lesser Macro",
  15638. height: math.unit(60, "feet")
  15639. },
  15640. {
  15641. name: "Greater Macro",
  15642. height: math.unit(120, "feet")
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15648. {
  15649. front: {
  15650. height: math.unit(6, "feet"),
  15651. weight: math.unit(100, "lb"),
  15652. name: "Front",
  15653. image: {
  15654. source: "./media/characters/aevsivs/front.svg",
  15655. extra: 1,
  15656. bottom: 0.03
  15657. }
  15658. },
  15659. back: {
  15660. height: math.unit(6, "feet"),
  15661. weight: math.unit(100, "lb"),
  15662. name: "Back",
  15663. image: {
  15664. source: "./media/characters/aevsivs/back.svg"
  15665. }
  15666. },
  15667. },
  15668. [
  15669. {
  15670. name: "Micro",
  15671. height: math.unit(2, "inches"),
  15672. default: true
  15673. },
  15674. {
  15675. name: "Normal",
  15676. height: math.unit(5, "feet")
  15677. },
  15678. ]
  15679. ))
  15680. characterMakers.push(() => makeCharacter(
  15681. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15682. {
  15683. front: {
  15684. height: math.unit(5 + 7 / 12, "feet"),
  15685. weight: math.unit(159, "lb"),
  15686. name: "Front",
  15687. image: {
  15688. source: "./media/characters/hildegard/front.svg",
  15689. extra: 289 / 269,
  15690. bottom: 7.63 / 297.8
  15691. }
  15692. },
  15693. back: {
  15694. height: math.unit(5 + 7 / 12, "feet"),
  15695. weight: math.unit(159, "lb"),
  15696. name: "Back",
  15697. image: {
  15698. source: "./media/characters/hildegard/back.svg",
  15699. extra: 280 / 260,
  15700. bottom: 2.3 / 282
  15701. }
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(5 + 7 / 12, "feet"),
  15708. default: true
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15714. {
  15715. bernard: {
  15716. height: math.unit(2 + 7 / 12, "feet"),
  15717. weight: math.unit(66, "lb"),
  15718. name: "Bernard",
  15719. rename: true,
  15720. image: {
  15721. source: "./media/characters/bernard-wilder/bernard.svg",
  15722. extra: 192 / 128,
  15723. bottom: 0.05
  15724. }
  15725. },
  15726. wilder: {
  15727. height: math.unit(5 + 8 / 12, "feet"),
  15728. weight: math.unit(143, "lb"),
  15729. name: "Wilder",
  15730. rename: true,
  15731. image: {
  15732. source: "./media/characters/bernard-wilder/wilder.svg",
  15733. extra: 361 / 312,
  15734. bottom: 0.02
  15735. }
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Normal",
  15741. height: math.unit(2 + 7 / 12, "feet"),
  15742. default: true
  15743. },
  15744. ]
  15745. ))
  15746. characterMakers.push(() => makeCharacter(
  15747. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15748. {
  15749. anthro: {
  15750. height: math.unit(6 + 1 / 12, "feet"),
  15751. weight: math.unit(155, "lb"),
  15752. name: "Anthro",
  15753. image: {
  15754. source: "./media/characters/hearth/anthro.svg",
  15755. extra: 1178/1136,
  15756. bottom: 28/1206
  15757. }
  15758. },
  15759. feral: {
  15760. height: math.unit(3.78, "feet"),
  15761. weight: math.unit(35, "kg"),
  15762. name: "Feral",
  15763. image: {
  15764. source: "./media/characters/hearth/feral.svg",
  15765. extra: 153 / 135,
  15766. bottom: 0.03
  15767. }
  15768. },
  15769. },
  15770. [
  15771. {
  15772. name: "Normal",
  15773. height: math.unit(6 + 1 / 12, "feet"),
  15774. default: true
  15775. },
  15776. ]
  15777. ))
  15778. characterMakers.push(() => makeCharacter(
  15779. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15780. {
  15781. front: {
  15782. height: math.unit(6, "feet"),
  15783. weight: math.unit(182, "lb"),
  15784. name: "Front",
  15785. image: {
  15786. source: "./media/characters/ingrid/front.svg",
  15787. extra: 294 / 268,
  15788. bottom: 0.027
  15789. }
  15790. },
  15791. },
  15792. [
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(6, "feet"),
  15796. default: true
  15797. },
  15798. ]
  15799. ))
  15800. characterMakers.push(() => makeCharacter(
  15801. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15802. {
  15803. eevee: {
  15804. height: math.unit(2 + 10 / 12, "feet"),
  15805. weight: math.unit(86, "lb"),
  15806. name: "Malgam",
  15807. image: {
  15808. source: "./media/characters/malgam/eevee.svg",
  15809. extra: 952/784,
  15810. bottom: 38/990
  15811. }
  15812. },
  15813. sylveon: {
  15814. height: math.unit(4, "feet"),
  15815. weight: math.unit(101, "lb"),
  15816. name: "Future Malgam",
  15817. rename: true,
  15818. image: {
  15819. source: "./media/characters/malgam/sylveon.svg",
  15820. extra: 371 / 325,
  15821. bottom: 0.015
  15822. }
  15823. },
  15824. gigantamax: {
  15825. height: math.unit(50, "feet"),
  15826. name: "Gigantamax Malgam",
  15827. rename: true,
  15828. image: {
  15829. source: "./media/characters/malgam/gigantamax.svg"
  15830. }
  15831. },
  15832. },
  15833. [
  15834. {
  15835. name: "Normal",
  15836. height: math.unit(2 + 10 / 12, "feet"),
  15837. default: true
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(5 + 11 / 12, "feet"),
  15846. weight: math.unit(188, "lb"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/fleur/front.svg",
  15850. extra: 309 / 283,
  15851. bottom: 0.007
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Normal",
  15858. height: math.unit(5 + 11 / 12, "feet"),
  15859. default: true
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(5 + 4 / 12, "feet"),
  15868. weight: math.unit(122, "lb"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/jude/front.svg",
  15872. extra: 288 / 273,
  15873. bottom: 0.03
  15874. }
  15875. },
  15876. },
  15877. [
  15878. {
  15879. name: "Normal",
  15880. height: math.unit(5 + 4 / 12, "feet"),
  15881. default: true
  15882. },
  15883. ]
  15884. ))
  15885. characterMakers.push(() => makeCharacter(
  15886. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15887. {
  15888. front: {
  15889. height: math.unit(5 + 11 / 12, "feet"),
  15890. weight: math.unit(190, "lb"),
  15891. name: "Front",
  15892. image: {
  15893. source: "./media/characters/seara/front.svg",
  15894. extra: 1,
  15895. bottom: 0.05
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(5 + 11 / 12, "feet"),
  15903. default: true
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(16 + 5 / 12, "feet"),
  15912. weight: math.unit(524, "lb"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/caspian-lugia/front.svg",
  15916. extra: 1,
  15917. bottom: 0.04
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(16 + 5 / 12, "feet"),
  15925. default: true
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15931. {
  15932. front: {
  15933. height: math.unit(5 + 7 / 12, "feet"),
  15934. weight: math.unit(170, "lb"),
  15935. name: "Front",
  15936. image: {
  15937. source: "./media/characters/mika/front.svg",
  15938. extra: 1,
  15939. bottom: 0.016
  15940. }
  15941. },
  15942. },
  15943. [
  15944. {
  15945. name: "Normal",
  15946. height: math.unit(5 + 7 / 12, "feet"),
  15947. default: true
  15948. },
  15949. ]
  15950. ))
  15951. characterMakers.push(() => makeCharacter(
  15952. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15953. {
  15954. front: {
  15955. height: math.unit(6 + 2 / 12, "feet"),
  15956. weight: math.unit(268, "lb"),
  15957. name: "Front",
  15958. image: {
  15959. source: "./media/characters/sol/front.svg",
  15960. extra: 247 / 231,
  15961. bottom: 0.05
  15962. }
  15963. },
  15964. },
  15965. [
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(6 + 2 / 12, "feet"),
  15969. default: true
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15975. {
  15976. buizel: {
  15977. height: math.unit(2 + 5 / 12, "feet"),
  15978. weight: math.unit(87, "lb"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/umiko/buizel.svg",
  15982. extra: 172 / 157,
  15983. bottom: 0.01
  15984. },
  15985. form: "buizel",
  15986. default: true
  15987. },
  15988. floatzel: {
  15989. height: math.unit(5 + 9 / 12, "feet"),
  15990. weight: math.unit(250, "lb"),
  15991. name: "Front",
  15992. image: {
  15993. source: "./media/characters/umiko/floatzel.svg",
  15994. extra: 1076/1006,
  15995. bottom: 15/1091
  15996. },
  15997. form: "floatzel",
  15998. default: true
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(2 + 5 / 12, "feet"),
  16005. form: "buizel",
  16006. default: true
  16007. },
  16008. {
  16009. name: "Normal",
  16010. height: math.unit(5 + 9 / 12, "feet"),
  16011. form: "floatzel",
  16012. default: true
  16013. },
  16014. ],
  16015. {
  16016. "buizel": {
  16017. name: "Buizel"
  16018. },
  16019. "floatzel": {
  16020. name: "Floatzel",
  16021. default: true
  16022. }
  16023. }
  16024. ))
  16025. characterMakers.push(() => makeCharacter(
  16026. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16027. {
  16028. front: {
  16029. height: math.unit(6 + 2 / 12, "feet"),
  16030. weight: math.unit(146, "lb"),
  16031. name: "Front",
  16032. image: {
  16033. source: "./media/characters/iliac/front.svg",
  16034. extra: 389 / 365,
  16035. bottom: 0.035
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Normal",
  16042. height: math.unit(6 + 2 / 12, "feet"),
  16043. default: true
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16049. {
  16050. front: {
  16051. height: math.unit(6, "feet"),
  16052. weight: math.unit(170, "lb"),
  16053. name: "Front",
  16054. image: {
  16055. source: "./media/characters/topaz/front.svg",
  16056. extra: 317 / 303,
  16057. bottom: 0.055
  16058. }
  16059. },
  16060. },
  16061. [
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(6, "feet"),
  16065. default: true
  16066. },
  16067. ]
  16068. ))
  16069. characterMakers.push(() => makeCharacter(
  16070. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16071. {
  16072. front: {
  16073. height: math.unit(5 + 11 / 12, "feet"),
  16074. weight: math.unit(144, "lb"),
  16075. name: "Front",
  16076. image: {
  16077. source: "./media/characters/gabriel/front.svg",
  16078. extra: 285 / 262,
  16079. bottom: 0.004
  16080. }
  16081. },
  16082. },
  16083. [
  16084. {
  16085. name: "Normal",
  16086. height: math.unit(5 + 11 / 12, "feet"),
  16087. default: true
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16093. {
  16094. side: {
  16095. height: math.unit(6 + 5 / 12, "feet"),
  16096. weight: math.unit(300, "lb"),
  16097. name: "Side",
  16098. image: {
  16099. source: "./media/characters/tempest-suicune/side.svg",
  16100. extra: 195 / 154,
  16101. bottom: 0.04
  16102. }
  16103. },
  16104. },
  16105. [
  16106. {
  16107. name: "Normal",
  16108. height: math.unit(6 + 5 / 12, "feet"),
  16109. default: true
  16110. },
  16111. ]
  16112. ))
  16113. characterMakers.push(() => makeCharacter(
  16114. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16115. {
  16116. front: {
  16117. height: math.unit(7 + 2 / 12, "feet"),
  16118. weight: math.unit(322, "lb"),
  16119. name: "Front",
  16120. image: {
  16121. source: "./media/characters/vulcan/front.svg",
  16122. extra: 154 / 147,
  16123. bottom: 0.04
  16124. }
  16125. },
  16126. },
  16127. [
  16128. {
  16129. name: "Normal",
  16130. height: math.unit(7 + 2 / 12, "feet"),
  16131. default: true
  16132. },
  16133. ]
  16134. ))
  16135. characterMakers.push(() => makeCharacter(
  16136. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16137. {
  16138. front: {
  16139. height: math.unit(5 + 10 / 12, "feet"),
  16140. weight: math.unit(264, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/gault/front.svg",
  16144. extra: 161 / 140,
  16145. bottom: 0.028
  16146. }
  16147. },
  16148. },
  16149. [
  16150. {
  16151. name: "Normal",
  16152. height: math.unit(5 + 10 / 12, "feet"),
  16153. default: true
  16154. },
  16155. ]
  16156. ))
  16157. characterMakers.push(() => makeCharacter(
  16158. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16159. {
  16160. front: {
  16161. height: math.unit(6, "feet"),
  16162. weight: math.unit(150, "lb"),
  16163. name: "Front",
  16164. image: {
  16165. source: "./media/characters/shard/front.svg",
  16166. extra: 273 / 238,
  16167. bottom: 0.02
  16168. }
  16169. },
  16170. },
  16171. [
  16172. {
  16173. name: "Normal",
  16174. height: math.unit(3 + 6 / 12, "feet"),
  16175. default: true
  16176. },
  16177. ]
  16178. ))
  16179. characterMakers.push(() => makeCharacter(
  16180. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16181. {
  16182. front: {
  16183. height: math.unit(5 + 11 / 12, "feet"),
  16184. weight: math.unit(146, "lb"),
  16185. name: "Front",
  16186. image: {
  16187. source: "./media/characters/ashe/front.svg",
  16188. extra: 400 / 373,
  16189. bottom: 0.01
  16190. }
  16191. },
  16192. },
  16193. [
  16194. {
  16195. name: "Normal",
  16196. height: math.unit(5 + 11 / 12, "feet"),
  16197. default: true
  16198. },
  16199. ]
  16200. ))
  16201. characterMakers.push(() => makeCharacter(
  16202. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16203. {
  16204. front: {
  16205. height: math.unit(5 + 5 / 12, "feet"),
  16206. weight: math.unit(135, "lb"),
  16207. name: "Front",
  16208. image: {
  16209. source: "./media/characters/beatrix/front.svg",
  16210. extra: 392 / 379,
  16211. bottom: 0.01
  16212. }
  16213. },
  16214. },
  16215. [
  16216. {
  16217. name: "Normal",
  16218. height: math.unit(6, "feet"),
  16219. default: true
  16220. },
  16221. ]
  16222. ))
  16223. characterMakers.push(() => makeCharacter(
  16224. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16225. {
  16226. front: {
  16227. height: math.unit(6 + 2/12, "feet"),
  16228. weight: math.unit(135, "lb"),
  16229. name: "Front",
  16230. image: {
  16231. source: "./media/characters/ignatius/front.svg",
  16232. extra: 1380/1259,
  16233. bottom: 27/1407
  16234. }
  16235. },
  16236. },
  16237. [
  16238. {
  16239. name: "Normal",
  16240. height: math.unit(6 + 2/12, "feet"),
  16241. default: true
  16242. },
  16243. ]
  16244. ))
  16245. characterMakers.push(() => makeCharacter(
  16246. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16247. {
  16248. front: {
  16249. height: math.unit(6 + 2 / 12, "feet"),
  16250. weight: math.unit(138, "lb"),
  16251. name: "Front",
  16252. image: {
  16253. source: "./media/characters/mei-li/front.svg",
  16254. extra: 237 / 229,
  16255. bottom: 0.03
  16256. }
  16257. },
  16258. },
  16259. [
  16260. {
  16261. name: "Normal",
  16262. height: math.unit(6 + 2 / 12, "feet"),
  16263. default: true
  16264. },
  16265. ]
  16266. ))
  16267. characterMakers.push(() => makeCharacter(
  16268. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16269. {
  16270. front: {
  16271. height: math.unit(2 + 4 / 12, "feet"),
  16272. weight: math.unit(62, "lb"),
  16273. name: "Front",
  16274. image: {
  16275. source: "./media/characters/puru/front.svg",
  16276. extra: 206 / 149,
  16277. bottom: 0.06
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(2 + 4 / 12, "feet"),
  16285. default: true
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16291. {
  16292. anthro: {
  16293. height: math.unit(5 + 8/12, "feet"),
  16294. weight: math.unit(200, "lb"),
  16295. energyNeed: math.unit(2000, "kcal"),
  16296. name: "Anthro",
  16297. image: {
  16298. source: "./media/characters/kee/anthro.svg",
  16299. extra: 3251/3184,
  16300. bottom: 250/3501
  16301. }
  16302. },
  16303. taur: {
  16304. height: math.unit(11, "feet"),
  16305. weight: math.unit(500, "lb"),
  16306. energyNeed: math.unit(5000, "kcal"),
  16307. name: "Taur",
  16308. image: {
  16309. source: "./media/characters/kee/taur.svg",
  16310. extra: 1362/1320,
  16311. bottom: 83/1445
  16312. }
  16313. },
  16314. },
  16315. [
  16316. {
  16317. name: "Normal",
  16318. height: math.unit(5 + 8/12, "feet"),
  16319. default: true
  16320. },
  16321. {
  16322. name: "Macro",
  16323. height: math.unit(35, "feet")
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16329. {
  16330. anthro: {
  16331. height: math.unit(7, "feet"),
  16332. weight: math.unit(190, "lb"),
  16333. name: "Anthro",
  16334. image: {
  16335. source: "./media/characters/cobalt-dracha/anthro.svg",
  16336. extra: 231 / 225,
  16337. bottom: 0.04
  16338. }
  16339. },
  16340. feral: {
  16341. height: math.unit(9 + 7 / 12, "feet"),
  16342. weight: math.unit(294, "lb"),
  16343. name: "Feral",
  16344. image: {
  16345. source: "./media/characters/cobalt-dracha/feral.svg",
  16346. extra: 692 / 633,
  16347. bottom: 0.05
  16348. }
  16349. },
  16350. },
  16351. [
  16352. {
  16353. name: "Normal",
  16354. height: math.unit(7, "feet"),
  16355. default: true
  16356. },
  16357. ]
  16358. ))
  16359. characterMakers.push(() => makeCharacter(
  16360. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16361. {
  16362. fallen: {
  16363. height: math.unit(11 + 8 / 12, "feet"),
  16364. weight: math.unit(485, "lb"),
  16365. name: "Java (Fallen)",
  16366. rename: true,
  16367. image: {
  16368. source: "./media/characters/java/fallen.svg",
  16369. extra: 226 / 208,
  16370. bottom: 0.005
  16371. }
  16372. },
  16373. godkin: {
  16374. height: math.unit(10 + 6 / 12, "feet"),
  16375. weight: math.unit(328, "lb"),
  16376. name: "Java (Godkin)",
  16377. rename: true,
  16378. image: {
  16379. source: "./media/characters/java/godkin.svg",
  16380. extra: 1104/1068,
  16381. bottom: 36/1140
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Normal",
  16388. height: math.unit(11 + 8 / 12, "feet"),
  16389. default: true
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16395. {
  16396. front: {
  16397. height: math.unit(5 + 9 / 12, "feet"),
  16398. weight: math.unit(170, "lb"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/purna/front.svg",
  16402. extra: 239 / 229,
  16403. bottom: 0.01
  16404. }
  16405. },
  16406. },
  16407. [
  16408. {
  16409. name: "Normal",
  16410. height: math.unit(5 + 9 / 12, "feet"),
  16411. default: true
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16417. {
  16418. front: {
  16419. height: math.unit(5 + 9 / 12, "feet"),
  16420. weight: math.unit(142, "lb"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/kuva/front.svg",
  16424. extra: 281 / 271,
  16425. bottom: 0.006
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Normal",
  16432. height: math.unit(5 + 9 / 12, "feet"),
  16433. default: true
  16434. },
  16435. ]
  16436. ))
  16437. characterMakers.push(() => makeCharacter(
  16438. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16439. {
  16440. anthro: {
  16441. height: math.unit(9 + 2 / 12, "feet"),
  16442. weight: math.unit(270, "lb"),
  16443. name: "Anthro",
  16444. image: {
  16445. source: "./media/characters/embra/anthro.svg",
  16446. extra: 200 / 187,
  16447. bottom: 0.02
  16448. }
  16449. },
  16450. feral: {
  16451. height: math.unit(18 + 8 / 12, "feet"),
  16452. weight: math.unit(576, "lb"),
  16453. name: "Feral",
  16454. image: {
  16455. source: "./media/characters/embra/feral.svg",
  16456. extra: 152 / 137,
  16457. bottom: 0.037
  16458. }
  16459. },
  16460. },
  16461. [
  16462. {
  16463. name: "Normal",
  16464. height: math.unit(9 + 2 / 12, "feet"),
  16465. default: true
  16466. },
  16467. ]
  16468. ))
  16469. characterMakers.push(() => makeCharacter(
  16470. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16471. {
  16472. anthro: {
  16473. height: math.unit(10 + 9 / 12, "feet"),
  16474. weight: math.unit(224, "lb"),
  16475. name: "Anthro",
  16476. image: {
  16477. source: "./media/characters/grottos/anthro.svg",
  16478. extra: 350 / 332,
  16479. bottom: 0.045
  16480. }
  16481. },
  16482. feral: {
  16483. height: math.unit(20 + 7 / 12, "feet"),
  16484. weight: math.unit(629, "lb"),
  16485. name: "Feral",
  16486. image: {
  16487. source: "./media/characters/grottos/feral.svg",
  16488. extra: 207 / 190,
  16489. bottom: 0.05
  16490. }
  16491. },
  16492. },
  16493. [
  16494. {
  16495. name: "Normal",
  16496. height: math.unit(10 + 9 / 12, "feet"),
  16497. default: true
  16498. },
  16499. ]
  16500. ))
  16501. characterMakers.push(() => makeCharacter(
  16502. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16503. {
  16504. anthro: {
  16505. height: math.unit(9 + 6 / 12, "feet"),
  16506. weight: math.unit(298, "lb"),
  16507. name: "Anthro",
  16508. image: {
  16509. source: "./media/characters/frifna/anthro.svg",
  16510. extra: 282 / 269,
  16511. bottom: 0.015
  16512. }
  16513. },
  16514. feral: {
  16515. height: math.unit(16 + 2 / 12, "feet"),
  16516. weight: math.unit(624, "lb"),
  16517. name: "Feral",
  16518. image: {
  16519. source: "./media/characters/frifna/feral.svg"
  16520. }
  16521. },
  16522. },
  16523. [
  16524. {
  16525. name: "Normal",
  16526. height: math.unit(9 + 6 / 12, "feet"),
  16527. default: true
  16528. },
  16529. ]
  16530. ))
  16531. characterMakers.push(() => makeCharacter(
  16532. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16533. {
  16534. front: {
  16535. height: math.unit(6 + 2 / 12, "feet"),
  16536. weight: math.unit(168, "lb"),
  16537. name: "Front",
  16538. image: {
  16539. source: "./media/characters/elise/front.svg",
  16540. extra: 276 / 271
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Normal",
  16547. height: math.unit(6 + 2 / 12, "feet"),
  16548. default: true
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16554. {
  16555. front: {
  16556. height: math.unit(5 + 10 / 12, "feet"),
  16557. weight: math.unit(210, "lb"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/glade/front.svg",
  16561. extra: 258 / 247,
  16562. bottom: 0.008
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(5 + 10 / 12, "feet"),
  16570. default: true
  16571. },
  16572. ]
  16573. ))
  16574. characterMakers.push(() => makeCharacter(
  16575. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16576. {
  16577. front: {
  16578. height: math.unit(5 + 10 / 12, "feet"),
  16579. weight: math.unit(129, "lb"),
  16580. name: "Front",
  16581. image: {
  16582. source: "./media/characters/rina/front.svg",
  16583. extra: 266 / 255,
  16584. bottom: 0.005
  16585. }
  16586. },
  16587. },
  16588. [
  16589. {
  16590. name: "Normal",
  16591. height: math.unit(5 + 10 / 12, "feet"),
  16592. default: true
  16593. },
  16594. ]
  16595. ))
  16596. characterMakers.push(() => makeCharacter(
  16597. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16598. {
  16599. front: {
  16600. height: math.unit(6 + 1 / 12, "feet"),
  16601. weight: math.unit(192, "lb"),
  16602. name: "Front",
  16603. image: {
  16604. source: "./media/characters/veronica/front.svg",
  16605. extra: 319 / 309,
  16606. bottom: 0.005
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Normal",
  16613. height: math.unit(6 + 1 / 12, "feet"),
  16614. default: true
  16615. },
  16616. ]
  16617. ))
  16618. characterMakers.push(() => makeCharacter(
  16619. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16620. {
  16621. front: {
  16622. height: math.unit(9 + 3 / 12, "feet"),
  16623. weight: math.unit(1100, "lb"),
  16624. name: "Front",
  16625. image: {
  16626. source: "./media/characters/braxton/front.svg",
  16627. extra: 1057 / 984,
  16628. bottom: 0.05
  16629. }
  16630. },
  16631. },
  16632. [
  16633. {
  16634. name: "Normal",
  16635. height: math.unit(9 + 3 / 12, "feet")
  16636. },
  16637. {
  16638. name: "Giant",
  16639. height: math.unit(300, "feet"),
  16640. default: true
  16641. },
  16642. {
  16643. name: "Macro",
  16644. height: math.unit(700, "feet")
  16645. },
  16646. {
  16647. name: "Megamacro",
  16648. height: math.unit(6000, "feet")
  16649. },
  16650. ]
  16651. ))
  16652. characterMakers.push(() => makeCharacter(
  16653. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16654. {
  16655. front: {
  16656. height: math.unit(6 + 7 / 12, "feet"),
  16657. weight: math.unit(150, "lb"),
  16658. name: "Front",
  16659. image: {
  16660. source: "./media/characters/blue-feyonics/front.svg",
  16661. extra: 1403 / 1306,
  16662. bottom: 0.047
  16663. }
  16664. },
  16665. },
  16666. [
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(6 + 7 / 12, "feet"),
  16670. default: true
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16676. {
  16677. front: {
  16678. height: math.unit(1.8, "meters"),
  16679. weight: math.unit(60, "kg"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/maxwell/front.svg",
  16683. extra: 2060 / 1873
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Micro",
  16690. height: math.unit(1, "mm")
  16691. },
  16692. {
  16693. name: "Normal",
  16694. height: math.unit(1.8, "meter"),
  16695. default: true
  16696. },
  16697. {
  16698. name: "Macro",
  16699. height: math.unit(30, "meters")
  16700. },
  16701. {
  16702. name: "Megamacro",
  16703. height: math.unit(10, "km")
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16709. {
  16710. front: {
  16711. height: math.unit(6, "feet"),
  16712. weight: math.unit(150, "lb"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/jack/front.svg",
  16716. extra: 1754 / 1640,
  16717. bottom: 0.01
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Normal",
  16724. height: math.unit(80000, "feet"),
  16725. default: true
  16726. },
  16727. {
  16728. name: "Max size",
  16729. height: math.unit(10, "lightyears")
  16730. },
  16731. ]
  16732. ))
  16733. characterMakers.push(() => makeCharacter(
  16734. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16735. {
  16736. urban: {
  16737. height: math.unit(5, "feet"),
  16738. weight: math.unit(240, "lb"),
  16739. name: "Urban",
  16740. image: {
  16741. source: "./media/characters/cafat/urban.svg",
  16742. extra: 1223/1126,
  16743. bottom: 205/1428
  16744. }
  16745. },
  16746. summer: {
  16747. height: math.unit(5, "feet"),
  16748. weight: math.unit(240, "lb"),
  16749. name: "Summer",
  16750. image: {
  16751. source: "./media/characters/cafat/summer.svg",
  16752. extra: 1223/1126,
  16753. bottom: 205/1428
  16754. }
  16755. },
  16756. winter: {
  16757. height: math.unit(5, "feet"),
  16758. weight: math.unit(240, "lb"),
  16759. name: "Winter",
  16760. image: {
  16761. source: "./media/characters/cafat/winter.svg",
  16762. extra: 1223/1126,
  16763. bottom: 205/1428
  16764. }
  16765. },
  16766. lingerie: {
  16767. height: math.unit(5, "feet"),
  16768. weight: math.unit(240, "lb"),
  16769. name: "Lingerie",
  16770. image: {
  16771. source: "./media/characters/cafat/lingerie.svg",
  16772. extra: 1223/1126,
  16773. bottom: 205/1428
  16774. }
  16775. },
  16776. upright: {
  16777. height: math.unit(6.3, "feet"),
  16778. weight: math.unit(240, "lb"),
  16779. name: "Upright",
  16780. image: {
  16781. source: "./media/characters/cafat/upright.svg",
  16782. bottom: 0.01
  16783. }
  16784. },
  16785. uprightFull: {
  16786. height: math.unit(6.3, "feet"),
  16787. weight: math.unit(240, "lb"),
  16788. name: "Upright (Full)",
  16789. image: {
  16790. source: "./media/characters/cafat/upright-full.svg",
  16791. bottom: 0.01
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Small",
  16798. height: math.unit(5, "feet"),
  16799. default: true
  16800. },
  16801. {
  16802. name: "Large",
  16803. height: math.unit(13, "feet")
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(6, "feet"),
  16812. weight: math.unit(150, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/verin-raharra/front.svg",
  16816. extra: 5019 / 4835,
  16817. bottom: 0.023
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(7 + 5 / 12, "feet"),
  16825. default: true
  16826. },
  16827. {
  16828. name: "Upsized",
  16829. height: math.unit(20, "feet")
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16835. {
  16836. front: {
  16837. height: math.unit(7, "feet"),
  16838. weight: math.unit(230, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/nakata/front.svg",
  16842. extra: 1.005,
  16843. bottom: 0.01
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(7, "feet"),
  16851. default: true
  16852. },
  16853. {
  16854. name: "Big",
  16855. height: math.unit(14, "feet")
  16856. },
  16857. {
  16858. name: "Macro",
  16859. height: math.unit(400, "feet")
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16865. {
  16866. front: {
  16867. height: math.unit(4.91, "feet"),
  16868. weight: math.unit(100, "lb"),
  16869. name: "Front",
  16870. image: {
  16871. source: "./media/characters/lily/front.svg",
  16872. extra: 1585 / 1415,
  16873. bottom: 0.02
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(4.91, "feet"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16887. {
  16888. laying: {
  16889. height: math.unit(4 + 4 / 12, "feet"),
  16890. weight: math.unit(600, "lb"),
  16891. name: "Laying",
  16892. image: {
  16893. source: "./media/characters/sheila/laying.svg",
  16894. extra: 1333 / 1265,
  16895. bottom: 0.16
  16896. }
  16897. },
  16898. },
  16899. [
  16900. {
  16901. name: "Normal",
  16902. height: math.unit(4 + 4 / 12, "feet"),
  16903. default: true
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16909. {
  16910. front: {
  16911. height: math.unit(6, "feet"),
  16912. weight: math.unit(190, "lb"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/sax/front.svg",
  16916. extra: 1187 / 973,
  16917. bottom: 0.042
  16918. }
  16919. },
  16920. },
  16921. [
  16922. {
  16923. name: "Micro",
  16924. height: math.unit(4, "inches"),
  16925. default: true
  16926. },
  16927. ]
  16928. ))
  16929. characterMakers.push(() => makeCharacter(
  16930. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16931. {
  16932. front: {
  16933. height: math.unit(6, "feet"),
  16934. weight: math.unit(150, "lb"),
  16935. name: "Front",
  16936. image: {
  16937. source: "./media/characters/pandora/front.svg",
  16938. extra: 2720 / 2556,
  16939. bottom: 0.015
  16940. }
  16941. },
  16942. back: {
  16943. height: math.unit(6, "feet"),
  16944. weight: math.unit(150, "lb"),
  16945. name: "Back",
  16946. image: {
  16947. source: "./media/characters/pandora/back.svg",
  16948. extra: 2720 / 2556,
  16949. bottom: 0.01
  16950. }
  16951. },
  16952. beans: {
  16953. height: math.unit(6 / 8, "feet"),
  16954. name: "Beans",
  16955. image: {
  16956. source: "./media/characters/pandora/beans.svg"
  16957. }
  16958. },
  16959. collar: {
  16960. height: math.unit(0.31, "feet"),
  16961. name: "Collar",
  16962. image: {
  16963. source: "./media/characters/pandora/collar.svg"
  16964. }
  16965. },
  16966. skirt: {
  16967. height: math.unit(6, "feet"),
  16968. weight: math.unit(150, "lb"),
  16969. name: "Skirt",
  16970. image: {
  16971. source: "./media/characters/pandora/skirt.svg",
  16972. extra: 1622 / 1525,
  16973. bottom: 0.015
  16974. }
  16975. },
  16976. hoodie: {
  16977. height: math.unit(6, "feet"),
  16978. weight: math.unit(150, "lb"),
  16979. name: "Hoodie",
  16980. image: {
  16981. source: "./media/characters/pandora/hoodie.svg",
  16982. extra: 1622 / 1525,
  16983. bottom: 0.015
  16984. }
  16985. },
  16986. casual: {
  16987. height: math.unit(6, "feet"),
  16988. weight: math.unit(150, "lb"),
  16989. name: "Casual",
  16990. image: {
  16991. source: "./media/characters/pandora/casual.svg",
  16992. extra: 1622 / 1525,
  16993. bottom: 0.015
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Normal",
  17000. height: math.unit(6, "feet")
  17001. },
  17002. {
  17003. name: "Big Steppy",
  17004. height: math.unit(1, "km"),
  17005. default: true
  17006. },
  17007. {
  17008. name: "Galactic Steppy",
  17009. height: math.unit(2, "gigameters")
  17010. },
  17011. ]
  17012. ))
  17013. characterMakers.push(() => makeCharacter(
  17014. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17015. {
  17016. side: {
  17017. height: math.unit(10, "feet"),
  17018. weight: math.unit(800, "kg"),
  17019. name: "Side",
  17020. image: {
  17021. source: "./media/characters/venio-darcony/side.svg",
  17022. extra: 1373 / 1003,
  17023. bottom: 0.037
  17024. }
  17025. },
  17026. front: {
  17027. height: math.unit(19, "feet"),
  17028. weight: math.unit(800, "kg"),
  17029. name: "Front",
  17030. image: {
  17031. source: "./media/characters/venio-darcony/front.svg"
  17032. }
  17033. },
  17034. back: {
  17035. height: math.unit(19, "feet"),
  17036. weight: math.unit(800, "kg"),
  17037. name: "Back",
  17038. image: {
  17039. source: "./media/characters/venio-darcony/back.svg"
  17040. }
  17041. },
  17042. sideNsfw: {
  17043. height: math.unit(10, "feet"),
  17044. weight: math.unit(800, "kg"),
  17045. name: "Side (NSFW)",
  17046. image: {
  17047. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17048. extra: 1373 / 1003,
  17049. bottom: 0.037
  17050. }
  17051. },
  17052. frontNsfw: {
  17053. height: math.unit(19, "feet"),
  17054. weight: math.unit(800, "kg"),
  17055. name: "Front (NSFW)",
  17056. image: {
  17057. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17058. }
  17059. },
  17060. backNsfw: {
  17061. height: math.unit(19, "feet"),
  17062. weight: math.unit(800, "kg"),
  17063. name: "Back (NSFW)",
  17064. image: {
  17065. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17066. }
  17067. },
  17068. sideArmored: {
  17069. height: math.unit(10, "feet"),
  17070. weight: math.unit(800, "kg"),
  17071. name: "Side (Armored)",
  17072. image: {
  17073. source: "./media/characters/venio-darcony/side-armored.svg",
  17074. extra: 1373 / 1003,
  17075. bottom: 0.037
  17076. }
  17077. },
  17078. frontArmored: {
  17079. height: math.unit(19, "feet"),
  17080. weight: math.unit(900, "kg"),
  17081. name: "Front (Armored)",
  17082. image: {
  17083. source: "./media/characters/venio-darcony/front-armored.svg"
  17084. }
  17085. },
  17086. backArmored: {
  17087. height: math.unit(19, "feet"),
  17088. weight: math.unit(900, "kg"),
  17089. name: "Back (Armored)",
  17090. image: {
  17091. source: "./media/characters/venio-darcony/back-armored.svg"
  17092. }
  17093. },
  17094. sword: {
  17095. height: math.unit(10, "feet"),
  17096. weight: math.unit(50, "lb"),
  17097. name: "Sword",
  17098. image: {
  17099. source: "./media/characters/venio-darcony/sword.svg"
  17100. }
  17101. },
  17102. },
  17103. [
  17104. {
  17105. name: "Normal",
  17106. height: math.unit(10, "feet")
  17107. },
  17108. {
  17109. name: "Macro",
  17110. height: math.unit(130, "feet"),
  17111. default: true
  17112. },
  17113. {
  17114. name: "Macro+",
  17115. height: math.unit(240, "feet")
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17121. {
  17122. front: {
  17123. height: math.unit(6, "feet"),
  17124. weight: math.unit(150, "lb"),
  17125. name: "Front",
  17126. image: {
  17127. source: "./media/characters/veski/front.svg",
  17128. extra: 1299 / 1225,
  17129. bottom: 0.04
  17130. }
  17131. },
  17132. back: {
  17133. height: math.unit(6, "feet"),
  17134. weight: math.unit(150, "lb"),
  17135. name: "Back",
  17136. image: {
  17137. source: "./media/characters/veski/back.svg",
  17138. extra: 1299 / 1225,
  17139. bottom: 0.008
  17140. }
  17141. },
  17142. maw: {
  17143. height: math.unit(1.5 * 1.21, "feet"),
  17144. name: "Maw",
  17145. image: {
  17146. source: "./media/characters/veski/maw.svg"
  17147. }
  17148. },
  17149. },
  17150. [
  17151. {
  17152. name: "Macro",
  17153. height: math.unit(2, "km"),
  17154. default: true
  17155. },
  17156. ]
  17157. ))
  17158. characterMakers.push(() => makeCharacter(
  17159. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17160. {
  17161. front: {
  17162. height: math.unit(5 + 7 / 12, "feet"),
  17163. name: "Front",
  17164. image: {
  17165. source: "./media/characters/isabelle/front.svg",
  17166. extra: 2130 / 1976,
  17167. bottom: 0.05
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Supermicro",
  17174. height: math.unit(10, "micrometers")
  17175. },
  17176. {
  17177. name: "Micro",
  17178. height: math.unit(1, "inch")
  17179. },
  17180. {
  17181. name: "Tiny",
  17182. height: math.unit(5, "inches")
  17183. },
  17184. {
  17185. name: "Standard",
  17186. height: math.unit(5 + 7 / 12, "inches")
  17187. },
  17188. {
  17189. name: "Macro",
  17190. height: math.unit(80, "meters"),
  17191. default: true
  17192. },
  17193. {
  17194. name: "Megamacro",
  17195. height: math.unit(250, "meters")
  17196. },
  17197. {
  17198. name: "Gigamacro",
  17199. height: math.unit(5, "km")
  17200. },
  17201. {
  17202. name: "Cosmic",
  17203. height: math.unit(2.5e6, "miles")
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17209. {
  17210. front: {
  17211. height: math.unit(6, "feet"),
  17212. weight: math.unit(150, "lb"),
  17213. name: "Front",
  17214. image: {
  17215. source: "./media/characters/hanzo/front.svg",
  17216. extra: 374 / 344,
  17217. bottom: 0.02
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(8, "feet"),
  17225. default: true
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17231. {
  17232. front: {
  17233. height: math.unit(7, "feet"),
  17234. weight: math.unit(130, "lb"),
  17235. name: "Front",
  17236. image: {
  17237. source: "./media/characters/anna/front.svg",
  17238. extra: 169 / 145,
  17239. bottom: 0.06
  17240. }
  17241. },
  17242. full: {
  17243. height: math.unit(4.96, "feet"),
  17244. weight: math.unit(220, "lb"),
  17245. name: "Full",
  17246. image: {
  17247. source: "./media/characters/anna/full.svg",
  17248. extra: 138 / 114,
  17249. bottom: 0.15
  17250. }
  17251. },
  17252. tongue: {
  17253. height: math.unit(2.53, "feet"),
  17254. name: "Tongue",
  17255. image: {
  17256. source: "./media/characters/anna/tongue.svg"
  17257. }
  17258. },
  17259. },
  17260. [
  17261. {
  17262. name: "Normal",
  17263. height: math.unit(7, "feet"),
  17264. default: true
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(7, "feet"),
  17273. weight: math.unit(150, "lb"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/ian-corvid/front.svg",
  17277. extra: 150 / 142,
  17278. bottom: 0.02
  17279. }
  17280. },
  17281. back: {
  17282. height: math.unit(7, "feet"),
  17283. weight: math.unit(150, "lb"),
  17284. name: "Back",
  17285. image: {
  17286. source: "./media/characters/ian-corvid/back.svg",
  17287. extra: 150 / 143,
  17288. bottom: 0.01
  17289. }
  17290. },
  17291. stomping: {
  17292. height: math.unit(7, "feet"),
  17293. weight: math.unit(150, "lb"),
  17294. name: "Stomping",
  17295. image: {
  17296. source: "./media/characters/ian-corvid/stomping.svg",
  17297. extra: 76 / 72
  17298. }
  17299. },
  17300. sitting: {
  17301. height: math.unit(7 / 1.8, "feet"),
  17302. weight: math.unit(150, "lb"),
  17303. name: "Sitting",
  17304. image: {
  17305. source: "./media/characters/ian-corvid/sitting.svg",
  17306. extra: 1400 / 1269,
  17307. bottom: 0.15
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Tiny Microw",
  17314. height: math.unit(1, "inch")
  17315. },
  17316. {
  17317. name: "Microw",
  17318. height: math.unit(6, "inches")
  17319. },
  17320. {
  17321. name: "Crow",
  17322. height: math.unit(7 + 1 / 12, "feet"),
  17323. default: true
  17324. },
  17325. {
  17326. name: "Macrow",
  17327. height: math.unit(176, "feet")
  17328. },
  17329. ]
  17330. ))
  17331. characterMakers.push(() => makeCharacter(
  17332. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17333. {
  17334. front: {
  17335. height: math.unit(5 + 7 / 12, "feet"),
  17336. weight: math.unit(147, "lb"),
  17337. name: "Front",
  17338. image: {
  17339. source: "./media/characters/natalie-kellon/front.svg",
  17340. extra: 1214 / 1141,
  17341. bottom: 0.02
  17342. }
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Micro",
  17348. height: math.unit(1 / 16, "inch")
  17349. },
  17350. {
  17351. name: "Tiny",
  17352. height: math.unit(4, "inches")
  17353. },
  17354. {
  17355. name: "Normal",
  17356. height: math.unit(5 + 7 / 12, "feet"),
  17357. default: true
  17358. },
  17359. {
  17360. name: "Amazon",
  17361. height: math.unit(12, "feet")
  17362. },
  17363. {
  17364. name: "Giantess",
  17365. height: math.unit(160, "meters")
  17366. },
  17367. {
  17368. name: "Titaness",
  17369. height: math.unit(800, "meters")
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17375. {
  17376. front: {
  17377. height: math.unit(6, "feet"),
  17378. weight: math.unit(150, "lb"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/alluria/front.svg",
  17382. extra: 806 / 738,
  17383. bottom: 0.01
  17384. }
  17385. },
  17386. side: {
  17387. height: math.unit(6, "feet"),
  17388. weight: math.unit(150, "lb"),
  17389. name: "Side",
  17390. image: {
  17391. source: "./media/characters/alluria/side.svg",
  17392. extra: 800 / 750,
  17393. }
  17394. },
  17395. back: {
  17396. height: math.unit(6, "feet"),
  17397. weight: math.unit(150, "lb"),
  17398. name: "Back",
  17399. image: {
  17400. source: "./media/characters/alluria/back.svg",
  17401. extra: 806 / 738,
  17402. }
  17403. },
  17404. frontMaid: {
  17405. height: math.unit(6, "feet"),
  17406. weight: math.unit(150, "lb"),
  17407. name: "Front (Maid)",
  17408. image: {
  17409. source: "./media/characters/alluria/front-maid.svg",
  17410. extra: 806 / 738,
  17411. bottom: 0.01
  17412. }
  17413. },
  17414. sideMaid: {
  17415. height: math.unit(6, "feet"),
  17416. weight: math.unit(150, "lb"),
  17417. name: "Side (Maid)",
  17418. image: {
  17419. source: "./media/characters/alluria/side-maid.svg",
  17420. extra: 800 / 750,
  17421. bottom: 0.005
  17422. }
  17423. },
  17424. backMaid: {
  17425. height: math.unit(6, "feet"),
  17426. weight: math.unit(150, "lb"),
  17427. name: "Back (Maid)",
  17428. image: {
  17429. source: "./media/characters/alluria/back-maid.svg",
  17430. extra: 806 / 738,
  17431. }
  17432. },
  17433. },
  17434. [
  17435. {
  17436. name: "Micro",
  17437. height: math.unit(6, "inches"),
  17438. default: true
  17439. },
  17440. ]
  17441. ))
  17442. characterMakers.push(() => makeCharacter(
  17443. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17444. {
  17445. front: {
  17446. height: math.unit(6, "feet"),
  17447. weight: math.unit(150, "lb"),
  17448. name: "Front",
  17449. image: {
  17450. source: "./media/characters/kyle/front.svg",
  17451. extra: 1069 / 962,
  17452. bottom: 77.228 / 1727.45
  17453. }
  17454. },
  17455. },
  17456. [
  17457. {
  17458. name: "Macro",
  17459. height: math.unit(150, "feet"),
  17460. default: true
  17461. },
  17462. ]
  17463. ))
  17464. characterMakers.push(() => makeCharacter(
  17465. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17466. {
  17467. front: {
  17468. height: math.unit(6, "feet"),
  17469. weight: math.unit(300, "lb"),
  17470. name: "Front",
  17471. image: {
  17472. source: "./media/characters/duncan/front.svg",
  17473. extra: 1650 / 1482,
  17474. bottom: 0.05
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Macro",
  17481. height: math.unit(100, "feet"),
  17482. default: true
  17483. },
  17484. ]
  17485. ))
  17486. characterMakers.push(() => makeCharacter(
  17487. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17488. {
  17489. front: {
  17490. height: math.unit(5 + 4 / 12, "feet"),
  17491. weight: math.unit(220, "lb"),
  17492. name: "Front",
  17493. image: {
  17494. source: "./media/characters/memory/front.svg",
  17495. extra: 3641 / 3545,
  17496. bottom: 0.03
  17497. }
  17498. },
  17499. back: {
  17500. height: math.unit(5 + 4 / 12, "feet"),
  17501. weight: math.unit(220, "lb"),
  17502. name: "Back",
  17503. image: {
  17504. source: "./media/characters/memory/back.svg",
  17505. extra: 3641 / 3545,
  17506. bottom: 0.025
  17507. }
  17508. },
  17509. frontSkirt: {
  17510. height: math.unit(5 + 4 / 12, "feet"),
  17511. weight: math.unit(220, "lb"),
  17512. name: "Front (Skirt)",
  17513. image: {
  17514. source: "./media/characters/memory/front-skirt.svg",
  17515. extra: 3641 / 3545,
  17516. bottom: 0.03
  17517. }
  17518. },
  17519. frontDress: {
  17520. height: math.unit(5 + 4 / 12, "feet"),
  17521. weight: math.unit(220, "lb"),
  17522. name: "Front (Dress)",
  17523. image: {
  17524. source: "./media/characters/memory/front-dress.svg",
  17525. extra: 3641 / 3545,
  17526. bottom: 0.03
  17527. }
  17528. },
  17529. },
  17530. [
  17531. {
  17532. name: "Micro",
  17533. height: math.unit(6, "inches"),
  17534. default: true
  17535. },
  17536. {
  17537. name: "Normal",
  17538. height: math.unit(5 + 4 / 12, "feet")
  17539. },
  17540. ]
  17541. ))
  17542. characterMakers.push(() => makeCharacter(
  17543. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17544. {
  17545. front: {
  17546. height: math.unit(4 + 11 / 12, "feet"),
  17547. weight: math.unit(100, "lb"),
  17548. name: "Front",
  17549. image: {
  17550. source: "./media/characters/luno/front.svg",
  17551. extra: 1535 / 1487,
  17552. bottom: 0.03
  17553. }
  17554. },
  17555. },
  17556. [
  17557. {
  17558. name: "Micro",
  17559. height: math.unit(3, "inches")
  17560. },
  17561. {
  17562. name: "Normal",
  17563. height: math.unit(4 + 11 / 12, "feet"),
  17564. default: true
  17565. },
  17566. {
  17567. name: "Macro",
  17568. height: math.unit(300, "feet")
  17569. },
  17570. {
  17571. name: "Megamacro",
  17572. height: math.unit(700, "miles")
  17573. },
  17574. ]
  17575. ))
  17576. characterMakers.push(() => makeCharacter(
  17577. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17578. {
  17579. front: {
  17580. height: math.unit(6 + 2 / 12, "feet"),
  17581. weight: math.unit(170, "lb"),
  17582. name: "Front",
  17583. image: {
  17584. source: "./media/characters/jamesy/front.svg",
  17585. extra: 440 / 382,
  17586. bottom: 0.005
  17587. }
  17588. },
  17589. },
  17590. [
  17591. {
  17592. name: "Micro",
  17593. height: math.unit(3, "inches")
  17594. },
  17595. {
  17596. name: "Normal",
  17597. height: math.unit(6 + 2 / 12, "feet"),
  17598. default: true
  17599. },
  17600. {
  17601. name: "Macro",
  17602. height: math.unit(300, "feet")
  17603. },
  17604. {
  17605. name: "Megamacro",
  17606. height: math.unit(700, "miles")
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17612. {
  17613. front: {
  17614. height: math.unit(6, "feet"),
  17615. weight: math.unit(160, "lb"),
  17616. name: "Front",
  17617. image: {
  17618. source: "./media/characters/mark/front.svg",
  17619. extra: 3300 / 3100,
  17620. bottom: 136.42 / 3440.47
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Macro",
  17627. height: math.unit(120, "meters")
  17628. },
  17629. {
  17630. name: "Bigger Macro",
  17631. height: math.unit(350, "meters")
  17632. },
  17633. {
  17634. name: "Megamacro",
  17635. height: math.unit(8, "km"),
  17636. default: true
  17637. },
  17638. {
  17639. name: "Continental",
  17640. height: math.unit(4550, "km")
  17641. },
  17642. {
  17643. name: "Planetary",
  17644. height: math.unit(65000, "km")
  17645. },
  17646. ]
  17647. ))
  17648. characterMakers.push(() => makeCharacter(
  17649. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17650. {
  17651. front: {
  17652. height: math.unit(6, "feet"),
  17653. weight: math.unit(400, "lb"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/mac/front.svg",
  17657. extra: 1048 / 987.7,
  17658. bottom: 60 / 1107.6,
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Macro",
  17665. height: math.unit(500, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17672. {
  17673. front: {
  17674. height: math.unit(5 + 2 / 12, "feet"),
  17675. weight: math.unit(190, "lb"),
  17676. name: "Front",
  17677. image: {
  17678. source: "./media/characters/bari/front.svg",
  17679. extra: 3156 / 2880,
  17680. bottom: 0.03
  17681. }
  17682. },
  17683. back: {
  17684. height: math.unit(5 + 2 / 12, "feet"),
  17685. weight: math.unit(190, "lb"),
  17686. name: "Back",
  17687. image: {
  17688. source: "./media/characters/bari/back.svg",
  17689. extra: 3260 / 2834,
  17690. bottom: 0.025
  17691. }
  17692. },
  17693. frontPlush: {
  17694. height: math.unit(5 + 2 / 12, "feet"),
  17695. weight: math.unit(190, "lb"),
  17696. name: "Front (Plush)",
  17697. image: {
  17698. source: "./media/characters/bari/front-plush.svg",
  17699. extra: 1112 / 1061,
  17700. bottom: 0.002
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Micro",
  17707. height: math.unit(3, "inches")
  17708. },
  17709. {
  17710. name: "Normal",
  17711. height: math.unit(5 + 2 / 12, "feet"),
  17712. default: true
  17713. },
  17714. {
  17715. name: "Macro",
  17716. height: math.unit(20, "feet")
  17717. },
  17718. ]
  17719. ))
  17720. characterMakers.push(() => makeCharacter(
  17721. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17722. {
  17723. front: {
  17724. height: math.unit(6 + 1 / 12, "feet"),
  17725. weight: math.unit(275, "lb"),
  17726. name: "Front",
  17727. image: {
  17728. source: "./media/characters/hunter-misha-raven/front.svg"
  17729. }
  17730. },
  17731. },
  17732. [
  17733. {
  17734. name: "Mortal",
  17735. height: math.unit(6 + 1 / 12, "feet")
  17736. },
  17737. {
  17738. name: "Divine",
  17739. height: math.unit(1.12134e34, "parsecs"),
  17740. default: true
  17741. },
  17742. ]
  17743. ))
  17744. characterMakers.push(() => makeCharacter(
  17745. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17746. {
  17747. front: {
  17748. height: math.unit(6 + 3 / 12, "feet"),
  17749. weight: math.unit(220, "lb"),
  17750. name: "Front",
  17751. image: {
  17752. source: "./media/characters/max-calore/front.svg",
  17753. extra: 1700 / 1648,
  17754. bottom: 0.01
  17755. }
  17756. },
  17757. back: {
  17758. height: math.unit(6 + 3 / 12, "feet"),
  17759. weight: math.unit(220, "lb"),
  17760. name: "Back",
  17761. image: {
  17762. source: "./media/characters/max-calore/back.svg",
  17763. extra: 1700 / 1648,
  17764. bottom: 0.01
  17765. }
  17766. },
  17767. },
  17768. [
  17769. {
  17770. name: "Normal",
  17771. height: math.unit(6 + 3 / 12, "feet"),
  17772. default: true
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17778. {
  17779. side: {
  17780. height: math.unit(2 + 8 / 12, "feet"),
  17781. weight: math.unit(99, "lb"),
  17782. name: "Side",
  17783. image: {
  17784. source: "./media/characters/aspen/side.svg",
  17785. extra: 152 / 138,
  17786. bottom: 0.032
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Normal",
  17793. height: math.unit(2 + 8 / 12, "feet"),
  17794. default: true
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17800. {
  17801. side: {
  17802. height: math.unit(3 + 2 / 12, "feet"),
  17803. weight: math.unit(224, "lb"),
  17804. name: "Side",
  17805. image: {
  17806. source: "./media/characters/sheila-feral-wolf/side.svg",
  17807. extra: 179 / 166,
  17808. bottom: 0.03
  17809. }
  17810. },
  17811. },
  17812. [
  17813. {
  17814. name: "Normal",
  17815. height: math.unit(3 + 2 / 12, "feet"),
  17816. default: true
  17817. },
  17818. ]
  17819. ))
  17820. characterMakers.push(() => makeCharacter(
  17821. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17822. {
  17823. side: {
  17824. height: math.unit(1 + 9 / 12, "feet"),
  17825. weight: math.unit(38, "lb"),
  17826. name: "Side",
  17827. image: {
  17828. source: "./media/characters/michelle/side.svg",
  17829. extra: 147 / 136.7,
  17830. bottom: 0.03
  17831. }
  17832. },
  17833. },
  17834. [
  17835. {
  17836. name: "Normal",
  17837. height: math.unit(1 + 9 / 12, "feet"),
  17838. default: true
  17839. },
  17840. ]
  17841. ))
  17842. characterMakers.push(() => makeCharacter(
  17843. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17844. {
  17845. front: {
  17846. height: math.unit(1.54, "feet"),
  17847. weight: math.unit(50, "lb"),
  17848. name: "Front",
  17849. image: {
  17850. source: "./media/characters/nino/front.svg"
  17851. }
  17852. },
  17853. },
  17854. [
  17855. {
  17856. name: "Normal",
  17857. height: math.unit(1.54, "feet"),
  17858. default: true
  17859. },
  17860. ]
  17861. ))
  17862. characterMakers.push(() => makeCharacter(
  17863. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17864. {
  17865. front: {
  17866. height: math.unit(1.49, "feet"),
  17867. weight: math.unit(45, "lb"),
  17868. name: "Front",
  17869. image: {
  17870. source: "./media/characters/viola/front.svg"
  17871. }
  17872. },
  17873. },
  17874. [
  17875. {
  17876. name: "Normal",
  17877. height: math.unit(1.49, "feet"),
  17878. default: true
  17879. },
  17880. ]
  17881. ))
  17882. characterMakers.push(() => makeCharacter(
  17883. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17884. {
  17885. front: {
  17886. height: math.unit(6 + 5 / 12, "feet"),
  17887. weight: math.unit(580, "lb"),
  17888. name: "Front",
  17889. image: {
  17890. source: "./media/characters/atlas/front.svg",
  17891. extra: 298.5 / 290,
  17892. bottom: 0.015
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(6 + 5 / 12, "feet"),
  17900. default: true
  17901. },
  17902. ]
  17903. ))
  17904. characterMakers.push(() => makeCharacter(
  17905. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17906. {
  17907. side: {
  17908. height: math.unit(15.6, "inches"),
  17909. weight: math.unit(10, "lb"),
  17910. name: "Side",
  17911. image: {
  17912. source: "./media/characters/davy/side.svg",
  17913. extra: 200 / 170,
  17914. bottom: 0.01
  17915. }
  17916. },
  17917. },
  17918. [
  17919. {
  17920. name: "Normal",
  17921. height: math.unit(15.6, "inches"),
  17922. default: true
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17928. {
  17929. side: {
  17930. height: math.unit(4 + 8 / 12, "feet"),
  17931. weight: math.unit(166, "lb"),
  17932. name: "Side",
  17933. image: {
  17934. source: "./media/characters/fiona/side.svg",
  17935. extra: 232 / 220,
  17936. bottom: 0.03
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(4 + 8 / 12, "feet"),
  17944. default: true
  17945. },
  17946. ]
  17947. ))
  17948. characterMakers.push(() => makeCharacter(
  17949. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17950. {
  17951. front: {
  17952. height: math.unit(26, "inches"),
  17953. weight: math.unit(35, "lb"),
  17954. name: "Front",
  17955. image: {
  17956. source: "./media/characters/lyla/front.svg",
  17957. bottom: 0.1
  17958. }
  17959. },
  17960. },
  17961. [
  17962. {
  17963. name: "Normal",
  17964. height: math.unit(3, "feet"),
  17965. default: true
  17966. },
  17967. ]
  17968. ))
  17969. characterMakers.push(() => makeCharacter(
  17970. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17971. {
  17972. side: {
  17973. height: math.unit(1.8, "feet"),
  17974. weight: math.unit(44, "lb"),
  17975. name: "Side",
  17976. image: {
  17977. source: "./media/characters/perseus/side.svg",
  17978. bottom: 0.21
  17979. }
  17980. },
  17981. },
  17982. [
  17983. {
  17984. name: "Normal",
  17985. height: math.unit(1.8, "feet"),
  17986. default: true
  17987. },
  17988. ]
  17989. ))
  17990. characterMakers.push(() => makeCharacter(
  17991. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17992. {
  17993. side: {
  17994. height: math.unit(4 + 2 / 12, "feet"),
  17995. weight: math.unit(20, "lb"),
  17996. name: "Side",
  17997. image: {
  17998. source: "./media/characters/remus/side.svg"
  17999. }
  18000. },
  18001. },
  18002. [
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(4 + 2 / 12, "feet"),
  18006. default: true
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18012. {
  18013. front: {
  18014. height: math.unit(4 + 11 / 12, "feet"),
  18015. weight: math.unit(114, "lb"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/raf/front.svg",
  18019. extra: 1504/1339,
  18020. bottom: 26/1530
  18021. }
  18022. },
  18023. side: {
  18024. height: math.unit(4 + 11 / 12, "feet"),
  18025. weight: math.unit(114, "lb"),
  18026. name: "Side",
  18027. image: {
  18028. source: "./media/characters/raf/side.svg",
  18029. extra: 1466/1316,
  18030. bottom: 29/1495
  18031. }
  18032. },
  18033. paw: {
  18034. height: math.unit(1.45, "feet"),
  18035. name: "Paw",
  18036. image: {
  18037. source: "./media/characters/raf/paw.svg"
  18038. },
  18039. extraAttributes: {
  18040. "toeSize": {
  18041. name: "Toe Size",
  18042. power: 2,
  18043. type: "area",
  18044. base: math.unit(0.004, "m^2")
  18045. },
  18046. "padSize": {
  18047. name: "Pad Size",
  18048. power: 2,
  18049. type: "area",
  18050. base: math.unit(0.04, "m^2")
  18051. },
  18052. "footSize": {
  18053. name: "Foot Size",
  18054. power: 2,
  18055. type: "area",
  18056. base: math.unit(0.08, "m^2")
  18057. },
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Micro",
  18064. height: math.unit(2, "inches")
  18065. },
  18066. {
  18067. name: "Normal",
  18068. height: math.unit(4 + 11 / 12, "feet"),
  18069. default: true
  18070. },
  18071. {
  18072. name: "Macro",
  18073. height: math.unit(70, "feet")
  18074. },
  18075. ]
  18076. ))
  18077. characterMakers.push(() => makeCharacter(
  18078. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18079. {
  18080. front: {
  18081. height: math.unit(1.5, "meters"),
  18082. weight: math.unit(68, "kg"),
  18083. name: "Front",
  18084. image: {
  18085. source: "./media/characters/liam-einarr/front.svg",
  18086. extra: 2822 / 2666
  18087. }
  18088. },
  18089. back: {
  18090. height: math.unit(1.5, "meters"),
  18091. weight: math.unit(68, "kg"),
  18092. name: "Back",
  18093. image: {
  18094. source: "./media/characters/liam-einarr/back.svg",
  18095. extra: 2822 / 2666,
  18096. bottom: 0.015
  18097. }
  18098. },
  18099. },
  18100. [
  18101. {
  18102. name: "Normal",
  18103. height: math.unit(1.5, "meters"),
  18104. default: true
  18105. },
  18106. {
  18107. name: "Macro",
  18108. height: math.unit(150, "meters")
  18109. },
  18110. {
  18111. name: "Megamacro",
  18112. height: math.unit(35, "km")
  18113. },
  18114. ]
  18115. ))
  18116. characterMakers.push(() => makeCharacter(
  18117. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18118. {
  18119. front: {
  18120. height: math.unit(6, "feet"),
  18121. weight: math.unit(75, "kg"),
  18122. name: "Front",
  18123. image: {
  18124. source: "./media/characters/linda/front.svg",
  18125. extra: 930 / 874,
  18126. bottom: 0.004
  18127. }
  18128. },
  18129. },
  18130. [
  18131. {
  18132. name: "Normal",
  18133. height: math.unit(6, "feet"),
  18134. default: true
  18135. },
  18136. ]
  18137. ))
  18138. characterMakers.push(() => makeCharacter(
  18139. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18140. {
  18141. front: {
  18142. height: math.unit(6 + 8 / 12, "feet"),
  18143. weight: math.unit(220, "lb"),
  18144. name: "Front",
  18145. image: {
  18146. source: "./media/characters/caylex/front.svg",
  18147. extra: 821 / 772,
  18148. bottom: 0.07
  18149. }
  18150. },
  18151. back: {
  18152. height: math.unit(6 + 8 / 12, "feet"),
  18153. weight: math.unit(220, "lb"),
  18154. name: "Back",
  18155. image: {
  18156. source: "./media/characters/caylex/back.svg",
  18157. extra: 821 / 772,
  18158. bottom: 0.022
  18159. }
  18160. },
  18161. hand: {
  18162. height: math.unit(1.25, "feet"),
  18163. name: "Hand",
  18164. image: {
  18165. source: "./media/characters/caylex/hand.svg"
  18166. }
  18167. },
  18168. foot: {
  18169. height: math.unit(1.6, "feet"),
  18170. name: "Foot",
  18171. image: {
  18172. source: "./media/characters/caylex/foot.svg"
  18173. }
  18174. },
  18175. armored: {
  18176. height: math.unit(6 + 8 / 12, "feet"),
  18177. weight: math.unit(250, "lb"),
  18178. name: "Armored",
  18179. image: {
  18180. source: "./media/characters/caylex/armored.svg",
  18181. extra: 1420 / 1310,
  18182. bottom: 0.045
  18183. }
  18184. },
  18185. },
  18186. [
  18187. {
  18188. name: "Normal",
  18189. height: math.unit(6 + 8 / 12, "feet"),
  18190. default: true
  18191. },
  18192. {
  18193. name: "Normal+",
  18194. height: math.unit(12, "feet")
  18195. },
  18196. ]
  18197. ))
  18198. characterMakers.push(() => makeCharacter(
  18199. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18200. {
  18201. front: {
  18202. height: math.unit(7 + 6 / 12, "feet"),
  18203. weight: math.unit(288, "lb"),
  18204. name: "Front",
  18205. image: {
  18206. source: "./media/characters/alana/front.svg",
  18207. extra: 679 / 653,
  18208. bottom: 22.5 / 701
  18209. }
  18210. },
  18211. },
  18212. [
  18213. {
  18214. name: "Normal",
  18215. height: math.unit(7 + 6 / 12, "feet")
  18216. },
  18217. {
  18218. name: "Large",
  18219. height: math.unit(50, "feet")
  18220. },
  18221. {
  18222. name: "Macro",
  18223. height: math.unit(100, "feet"),
  18224. default: true
  18225. },
  18226. {
  18227. name: "Macro+",
  18228. height: math.unit(200, "feet")
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18234. {
  18235. front: {
  18236. height: math.unit(6 + 1 / 12, "feet"),
  18237. weight: math.unit(210, "lb"),
  18238. name: "Front",
  18239. image: {
  18240. source: "./media/characters/hasani/front.svg",
  18241. extra: 244 / 232,
  18242. bottom: 0.01
  18243. }
  18244. },
  18245. back: {
  18246. height: math.unit(6 + 1 / 12, "feet"),
  18247. weight: math.unit(210, "lb"),
  18248. name: "Back",
  18249. image: {
  18250. source: "./media/characters/hasani/back.svg",
  18251. extra: 244 / 232,
  18252. bottom: 0.01
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Normal",
  18259. height: math.unit(6 + 1 / 12, "feet")
  18260. },
  18261. {
  18262. name: "Macro",
  18263. height: math.unit(175, "feet"),
  18264. default: true
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(1.82, "meters"),
  18273. weight: math.unit(140, "lb"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/nita/front.svg",
  18277. extra: 2473 / 2363,
  18278. bottom: 0.01
  18279. }
  18280. },
  18281. },
  18282. [
  18283. {
  18284. name: "Normal",
  18285. height: math.unit(1.82, "m")
  18286. },
  18287. {
  18288. name: "Macro",
  18289. height: math.unit(300, "m")
  18290. },
  18291. {
  18292. name: "Mistake Canon",
  18293. height: math.unit(0.5, "miles"),
  18294. default: true
  18295. },
  18296. {
  18297. name: "Big Mistake",
  18298. height: math.unit(13, "miles")
  18299. },
  18300. {
  18301. name: "Playing God",
  18302. height: math.unit(2450, "miles")
  18303. },
  18304. ]
  18305. ))
  18306. characterMakers.push(() => makeCharacter(
  18307. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18308. {
  18309. front: {
  18310. height: math.unit(4, "feet"),
  18311. weight: math.unit(120, "lb"),
  18312. name: "Front",
  18313. image: {
  18314. source: "./media/characters/shiriko/front.svg",
  18315. extra: 970/934,
  18316. bottom: 5/975
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(4, "feet"),
  18324. default: true
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18330. {
  18331. front: {
  18332. height: math.unit(6, "feet"),
  18333. name: "front",
  18334. image: {
  18335. source: "./media/characters/deja/front.svg",
  18336. extra: 926 / 840,
  18337. bottom: 0.07
  18338. }
  18339. },
  18340. },
  18341. [
  18342. {
  18343. name: "Planck Length",
  18344. height: math.unit(1.6e-35, "meters")
  18345. },
  18346. {
  18347. name: "Normal",
  18348. height: math.unit(30.48, "meters"),
  18349. default: true
  18350. },
  18351. {
  18352. name: "Universal",
  18353. height: math.unit(8.8e26, "meters")
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18359. {
  18360. side: {
  18361. height: math.unit(8, "feet"),
  18362. weight: math.unit(6300, "lb"),
  18363. name: "Side",
  18364. image: {
  18365. source: "./media/characters/anima/side.svg",
  18366. bottom: 0.035
  18367. }
  18368. },
  18369. },
  18370. [
  18371. {
  18372. name: "Normal",
  18373. height: math.unit(8, "feet"),
  18374. default: true
  18375. },
  18376. ]
  18377. ))
  18378. characterMakers.push(() => makeCharacter(
  18379. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18380. {
  18381. front: {
  18382. height: math.unit(8, "feet"),
  18383. weight: math.unit(350, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/bianca/front.svg",
  18387. extra: 234 / 225,
  18388. bottom: 0.03
  18389. }
  18390. },
  18391. },
  18392. [
  18393. {
  18394. name: "Normal",
  18395. height: math.unit(8, "feet"),
  18396. default: true
  18397. },
  18398. ]
  18399. ))
  18400. characterMakers.push(() => makeCharacter(
  18401. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18402. {
  18403. front: {
  18404. height: math.unit(11 + 5/12, "feet"),
  18405. weight: math.unit(1200, "lb"),
  18406. name: "Front",
  18407. image: {
  18408. source: "./media/characters/adinia/front.svg",
  18409. extra: 1767/1641,
  18410. bottom: 44/1811
  18411. },
  18412. extraAttributes: {
  18413. "energyIntake": {
  18414. name: "Energy Intake",
  18415. power: 3,
  18416. type: "energy",
  18417. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18418. },
  18419. }
  18420. },
  18421. back: {
  18422. height: math.unit(11 + 5/12, "feet"),
  18423. weight: math.unit(1200, "lb"),
  18424. name: "Back",
  18425. image: {
  18426. source: "./media/characters/adinia/back.svg",
  18427. extra: 1834/1684,
  18428. bottom: 14/1848
  18429. },
  18430. extraAttributes: {
  18431. "energyIntake": {
  18432. name: "Energy Intake",
  18433. power: 3,
  18434. type: "energy",
  18435. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18436. },
  18437. }
  18438. },
  18439. maw: {
  18440. height: math.unit(3.79, "feet"),
  18441. name: "Maw",
  18442. image: {
  18443. source: "./media/characters/adinia/maw.svg"
  18444. }
  18445. },
  18446. rump: {
  18447. height: math.unit(4.6, "feet"),
  18448. name: "Rump",
  18449. image: {
  18450. source: "./media/characters/adinia/rump.svg"
  18451. }
  18452. },
  18453. },
  18454. [
  18455. {
  18456. name: "Normal",
  18457. height: math.unit(11 + 5 / 12, "feet"),
  18458. default: true
  18459. },
  18460. ]
  18461. ))
  18462. characterMakers.push(() => makeCharacter(
  18463. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18464. {
  18465. front: {
  18466. height: math.unit(3, "meters"),
  18467. weight: math.unit(200, "kg"),
  18468. name: "Front",
  18469. image: {
  18470. source: "./media/characters/lykasa/front.svg",
  18471. extra: 1076 / 976,
  18472. bottom: 0.06
  18473. }
  18474. },
  18475. },
  18476. [
  18477. {
  18478. name: "Normal",
  18479. height: math.unit(3, "meters")
  18480. },
  18481. {
  18482. name: "Kaiju",
  18483. height: math.unit(120, "meters"),
  18484. default: true
  18485. },
  18486. {
  18487. name: "Mega Kaiju",
  18488. height: math.unit(240, "km")
  18489. },
  18490. {
  18491. name: "Giga Kaiju",
  18492. height: math.unit(400, "megameters")
  18493. },
  18494. {
  18495. name: "Tera Kaiju",
  18496. height: math.unit(800, "gigameters")
  18497. },
  18498. {
  18499. name: "Kaiju Dragon Goddess",
  18500. height: math.unit(26, "zettaparsecs")
  18501. },
  18502. ]
  18503. ))
  18504. characterMakers.push(() => makeCharacter(
  18505. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18506. {
  18507. side: {
  18508. height: math.unit(283 / 124 * 6, "feet"),
  18509. weight: math.unit(35000, "lb"),
  18510. name: "Side",
  18511. image: {
  18512. source: "./media/characters/malfaren/side.svg",
  18513. extra: 1310/529,
  18514. bottom: 24/1334
  18515. }
  18516. },
  18517. front: {
  18518. height: math.unit(22.36, "feet"),
  18519. weight: math.unit(35000, "lb"),
  18520. name: "Front",
  18521. image: {
  18522. source: "./media/characters/malfaren/front.svg",
  18523. extra: 1237/1115,
  18524. bottom: 32/1269
  18525. }
  18526. },
  18527. maw: {
  18528. height: math.unit(6.9, "feet"),
  18529. name: "Maw",
  18530. image: {
  18531. source: "./media/characters/malfaren/maw.svg"
  18532. }
  18533. },
  18534. dick: {
  18535. height: math.unit(6.19, "feet"),
  18536. name: "Dick",
  18537. image: {
  18538. source: "./media/characters/malfaren/dick.svg"
  18539. }
  18540. },
  18541. eye: {
  18542. height: math.unit(0.69, "feet"),
  18543. name: "Eye",
  18544. image: {
  18545. source: "./media/characters/malfaren/eye.svg"
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Big",
  18552. height: math.unit(283 / 162 * 6, "feet"),
  18553. },
  18554. {
  18555. name: "Bigger",
  18556. height: math.unit(283 / 124 * 6, "feet")
  18557. },
  18558. {
  18559. name: "Massive",
  18560. height: math.unit(283 / 92 * 6, "feet"),
  18561. default: true
  18562. },
  18563. {
  18564. name: "👀💦",
  18565. height: math.unit(283 / 73 * 6, "feet"),
  18566. },
  18567. ]
  18568. ))
  18569. characterMakers.push(() => makeCharacter(
  18570. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18571. {
  18572. front: {
  18573. height: math.unit(1.7, "m"),
  18574. weight: math.unit(70, "kg"),
  18575. name: "Front",
  18576. image: {
  18577. source: "./media/characters/kernel/front.svg",
  18578. extra: 222 / 210,
  18579. bottom: 0.007
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Nano",
  18586. height: math.unit(17, "micrometers")
  18587. },
  18588. {
  18589. name: "Micro",
  18590. height: math.unit(1.7, "mm")
  18591. },
  18592. {
  18593. name: "Small",
  18594. height: math.unit(1.7, "cm")
  18595. },
  18596. {
  18597. name: "Normal",
  18598. height: math.unit(1.7, "m"),
  18599. default: true
  18600. },
  18601. ]
  18602. ))
  18603. characterMakers.push(() => makeCharacter(
  18604. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18605. {
  18606. front: {
  18607. height: math.unit(1.75, "meters"),
  18608. weight: math.unit(65, "kg"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/jayne-folest/front.svg",
  18612. extra: 2115 / 2007,
  18613. bottom: 0.02
  18614. }
  18615. },
  18616. back: {
  18617. height: math.unit(1.75, "meters"),
  18618. weight: math.unit(65, "kg"),
  18619. name: "Back",
  18620. image: {
  18621. source: "./media/characters/jayne-folest/back.svg",
  18622. extra: 2115 / 2007,
  18623. bottom: 0.005
  18624. }
  18625. },
  18626. frontClothed: {
  18627. height: math.unit(1.75, "meters"),
  18628. weight: math.unit(65, "kg"),
  18629. name: "Front (Clothed)",
  18630. image: {
  18631. source: "./media/characters/jayne-folest/front-clothed.svg",
  18632. extra: 2115 / 2007,
  18633. bottom: 0.035
  18634. }
  18635. },
  18636. hand: {
  18637. height: math.unit(1 / 1.260, "feet"),
  18638. name: "Hand",
  18639. image: {
  18640. source: "./media/characters/jayne-folest/hand.svg"
  18641. }
  18642. },
  18643. foot: {
  18644. height: math.unit(1 / 0.918, "feet"),
  18645. name: "Foot",
  18646. image: {
  18647. source: "./media/characters/jayne-folest/foot.svg"
  18648. }
  18649. },
  18650. },
  18651. [
  18652. {
  18653. name: "Micro",
  18654. height: math.unit(4, "cm")
  18655. },
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(1.75, "meters")
  18659. },
  18660. {
  18661. name: "Macro",
  18662. height: math.unit(47.5, "meters"),
  18663. default: true
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(180, "cm"),
  18672. weight: math.unit(70, "kg"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/algier/front.svg",
  18676. extra: 596 / 572,
  18677. bottom: 0.04
  18678. }
  18679. },
  18680. back: {
  18681. height: math.unit(180, "cm"),
  18682. weight: math.unit(70, "kg"),
  18683. name: "Back",
  18684. image: {
  18685. source: "./media/characters/algier/back.svg",
  18686. extra: 596 / 572,
  18687. bottom: 0.025
  18688. }
  18689. },
  18690. frontdressed: {
  18691. height: math.unit(180, "cm"),
  18692. weight: math.unit(150, "kg"),
  18693. name: "Front-dressed",
  18694. image: {
  18695. source: "./media/characters/algier/front-dressed.svg",
  18696. extra: 596 / 572,
  18697. bottom: 0.038
  18698. }
  18699. },
  18700. },
  18701. [
  18702. {
  18703. name: "Micro",
  18704. height: math.unit(5, "cm")
  18705. },
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(180, "cm"),
  18709. default: true
  18710. },
  18711. {
  18712. name: "Macro",
  18713. height: math.unit(64, "m")
  18714. },
  18715. ]
  18716. ))
  18717. characterMakers.push(() => makeCharacter(
  18718. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18719. {
  18720. upright: {
  18721. height: math.unit(7, "feet"),
  18722. weight: math.unit(300, "lb"),
  18723. name: "Upright",
  18724. image: {
  18725. source: "./media/characters/pretzel/upright.svg",
  18726. extra: 534 / 522,
  18727. bottom: 0.065
  18728. }
  18729. },
  18730. sprawling: {
  18731. height: math.unit(3.75, "feet"),
  18732. weight: math.unit(300, "lb"),
  18733. name: "Sprawling",
  18734. image: {
  18735. source: "./media/characters/pretzel/sprawling.svg",
  18736. extra: 314 / 281,
  18737. bottom: 0.1
  18738. }
  18739. },
  18740. tongue: {
  18741. height: math.unit(2, "feet"),
  18742. name: "Tongue",
  18743. image: {
  18744. source: "./media/characters/pretzel/tongue.svg"
  18745. }
  18746. },
  18747. },
  18748. [
  18749. {
  18750. name: "Normal",
  18751. height: math.unit(7, "feet"),
  18752. default: true
  18753. },
  18754. {
  18755. name: "Oversized",
  18756. height: math.unit(15, "feet")
  18757. },
  18758. {
  18759. name: "Huge",
  18760. height: math.unit(30, "feet")
  18761. },
  18762. {
  18763. name: "Macro",
  18764. height: math.unit(250, "feet")
  18765. },
  18766. ]
  18767. ))
  18768. characterMakers.push(() => makeCharacter(
  18769. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18770. {
  18771. sideFront: {
  18772. height: math.unit(5 + 2 / 12, "feet"),
  18773. weight: math.unit(120, "lb"),
  18774. name: "Front Side",
  18775. image: {
  18776. source: "./media/characters/roxi/side-front.svg",
  18777. extra: 2924 / 2717,
  18778. bottom: 0.08
  18779. }
  18780. },
  18781. sideBack: {
  18782. height: math.unit(5 + 2 / 12, "feet"),
  18783. weight: math.unit(120, "lb"),
  18784. name: "Back Side",
  18785. image: {
  18786. source: "./media/characters/roxi/side-back.svg",
  18787. extra: 2904 / 2693,
  18788. bottom: 0.06
  18789. }
  18790. },
  18791. front: {
  18792. height: math.unit(5 + 2 / 12, "feet"),
  18793. weight: math.unit(120, "lb"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/roxi/front.svg",
  18797. extra: 2028 / 1907,
  18798. bottom: 0.01
  18799. }
  18800. },
  18801. frontAlt: {
  18802. height: math.unit(5 + 2 / 12, "feet"),
  18803. weight: math.unit(120, "lb"),
  18804. name: "Front (Alt)",
  18805. image: {
  18806. source: "./media/characters/roxi/front-alt.svg",
  18807. extra: 1828 / 1798,
  18808. bottom: 0.01
  18809. }
  18810. },
  18811. sitting: {
  18812. height: math.unit(2.8, "feet"),
  18813. weight: math.unit(120, "lb"),
  18814. name: "Sitting",
  18815. image: {
  18816. source: "./media/characters/roxi/sitting.svg",
  18817. extra: 2660 / 2462,
  18818. bottom: 0.1
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(5 + 2 / 12, "feet"),
  18826. default: true
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18832. {
  18833. side: {
  18834. height: math.unit(55, "feet"),
  18835. weight: math.unit(153, "tons"),
  18836. name: "Side",
  18837. image: {
  18838. source: "./media/characters/shadow/side.svg",
  18839. extra: 701 / 628,
  18840. bottom: 0.02
  18841. }
  18842. },
  18843. flying: {
  18844. height: math.unit(145, "feet"),
  18845. weight: math.unit(153, "tons"),
  18846. name: "Flying",
  18847. image: {
  18848. source: "./media/characters/shadow/flying.svg"
  18849. }
  18850. },
  18851. },
  18852. [
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(55, "feet"),
  18856. default: true
  18857. },
  18858. ]
  18859. ))
  18860. characterMakers.push(() => makeCharacter(
  18861. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18862. {
  18863. front: {
  18864. height: math.unit(6, "feet"),
  18865. weight: math.unit(200, "lb"),
  18866. name: "Front",
  18867. image: {
  18868. source: "./media/characters/marcie/front.svg",
  18869. extra: 960 / 876,
  18870. bottom: 58 / 1017.87
  18871. }
  18872. },
  18873. },
  18874. [
  18875. {
  18876. name: "Macro",
  18877. height: math.unit(1, "mile"),
  18878. default: true
  18879. },
  18880. ]
  18881. ))
  18882. characterMakers.push(() => makeCharacter(
  18883. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18884. {
  18885. front: {
  18886. height: math.unit(7, "feet"),
  18887. weight: math.unit(200, "lb"),
  18888. name: "Front",
  18889. image: {
  18890. source: "./media/characters/kachina/front.svg",
  18891. extra: 1290.68 / 1119,
  18892. bottom: 36.5 / 1327.18
  18893. }
  18894. },
  18895. },
  18896. [
  18897. {
  18898. name: "Normal",
  18899. height: math.unit(7, "feet"),
  18900. default: true
  18901. },
  18902. ]
  18903. ))
  18904. characterMakers.push(() => makeCharacter(
  18905. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18906. {
  18907. looking: {
  18908. height: math.unit(2, "meters"),
  18909. weight: math.unit(300, "kg"),
  18910. name: "Looking",
  18911. image: {
  18912. source: "./media/characters/kash/looking.svg",
  18913. extra: 474 / 344,
  18914. bottom: 0.03
  18915. }
  18916. },
  18917. side: {
  18918. height: math.unit(2, "meters"),
  18919. weight: math.unit(300, "kg"),
  18920. name: "Side",
  18921. image: {
  18922. source: "./media/characters/kash/side.svg",
  18923. extra: 302 / 251,
  18924. bottom: 0.03
  18925. }
  18926. },
  18927. front: {
  18928. height: math.unit(2, "meters"),
  18929. weight: math.unit(300, "kg"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/kash/front.svg",
  18933. extra: 495 / 360,
  18934. bottom: 0.015
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(2, "meters"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Big",
  18946. height: math.unit(3, "meters")
  18947. },
  18948. {
  18949. name: "Large",
  18950. height: math.unit(5, "meters")
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18956. {
  18957. feeding: {
  18958. height: math.unit(6.7, "feet"),
  18959. weight: math.unit(350, "lb"),
  18960. name: "Feeding",
  18961. image: {
  18962. source: "./media/characters/lalim/feeding.svg",
  18963. }
  18964. },
  18965. },
  18966. [
  18967. {
  18968. name: "Normal",
  18969. height: math.unit(6.7, "feet"),
  18970. default: true
  18971. },
  18972. ]
  18973. ))
  18974. characterMakers.push(() => makeCharacter(
  18975. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18976. {
  18977. front: {
  18978. height: math.unit(9.5, "feet"),
  18979. weight: math.unit(600, "lb"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/de'vout/front.svg",
  18983. extra: 1443 / 1328,
  18984. bottom: 0.025
  18985. }
  18986. },
  18987. back: {
  18988. height: math.unit(9.5, "feet"),
  18989. weight: math.unit(600, "lb"),
  18990. name: "Back",
  18991. image: {
  18992. source: "./media/characters/de'vout/back.svg",
  18993. extra: 1443 / 1328
  18994. }
  18995. },
  18996. frontDressed: {
  18997. height: math.unit(9.5, "feet"),
  18998. weight: math.unit(600, "lb"),
  18999. name: "Front (Dressed",
  19000. image: {
  19001. source: "./media/characters/de'vout/front-dressed.svg",
  19002. extra: 1443 / 1328,
  19003. bottom: 0.025
  19004. }
  19005. },
  19006. backDressed: {
  19007. height: math.unit(9.5, "feet"),
  19008. weight: math.unit(600, "lb"),
  19009. name: "Back (Dressed",
  19010. image: {
  19011. source: "./media/characters/de'vout/back-dressed.svg",
  19012. extra: 1443 / 1328
  19013. }
  19014. },
  19015. },
  19016. [
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(9.5, "feet"),
  19020. default: true
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19026. {
  19027. front: {
  19028. height: math.unit(8, "feet"),
  19029. weight: math.unit(225, "lb"),
  19030. name: "Front",
  19031. image: {
  19032. source: "./media/characters/talana/front.svg",
  19033. extra: 1410 / 1300,
  19034. bottom: 0.015
  19035. }
  19036. },
  19037. frontDressed: {
  19038. height: math.unit(8, "feet"),
  19039. weight: math.unit(225, "lb"),
  19040. name: "Front (Dressed",
  19041. image: {
  19042. source: "./media/characters/talana/front-dressed.svg",
  19043. extra: 1410 / 1300,
  19044. bottom: 0.015
  19045. }
  19046. },
  19047. },
  19048. [
  19049. {
  19050. name: "Normal",
  19051. height: math.unit(8, "feet"),
  19052. default: true
  19053. },
  19054. ]
  19055. ))
  19056. characterMakers.push(() => makeCharacter(
  19057. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19058. {
  19059. side: {
  19060. height: math.unit(7.2, "feet"),
  19061. weight: math.unit(150, "lb"),
  19062. name: "Side",
  19063. image: {
  19064. source: "./media/characters/xeauvok/side.svg",
  19065. extra: 1975 / 1523,
  19066. bottom: 0.07
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(7.2, "feet"),
  19074. default: true
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19080. {
  19081. side: {
  19082. height: math.unit(4, "meters"),
  19083. weight: math.unit(2200, "kg"),
  19084. name: "Side",
  19085. image: {
  19086. source: "./media/characters/zara/side.svg",
  19087. extra: 765/744,
  19088. bottom: 156/921
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(4, "meters"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19102. {
  19103. side: {
  19104. height: math.unit(6, "feet"),
  19105. weight: math.unit(150, "lb"),
  19106. name: "Side",
  19107. image: {
  19108. source: "./media/characters/richard-dragon/side.svg",
  19109. extra: 845 / 340,
  19110. bottom: 0.017
  19111. }
  19112. },
  19113. maw: {
  19114. height: math.unit(2.97, "feet"),
  19115. name: "Maw",
  19116. image: {
  19117. source: "./media/characters/richard-dragon/maw.svg"
  19118. }
  19119. },
  19120. },
  19121. [
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19126. {
  19127. front: {
  19128. height: math.unit(4, "feet"),
  19129. weight: math.unit(100, "lb"),
  19130. name: "Front",
  19131. image: {
  19132. source: "./media/characters/richard-smeargle/front.svg",
  19133. extra: 2952 / 2820,
  19134. bottom: 0.028
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(4, "feet"),
  19142. default: true
  19143. },
  19144. {
  19145. name: "Dynamax",
  19146. height: math.unit(20, "meters")
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19152. {
  19153. front: {
  19154. height: math.unit(6, "feet"),
  19155. weight: math.unit(110, "lb"),
  19156. name: "Front",
  19157. image: {
  19158. source: "./media/characters/klay/front.svg",
  19159. extra: 962 / 883,
  19160. bottom: 0.04
  19161. }
  19162. },
  19163. back: {
  19164. height: math.unit(6, "feet"),
  19165. weight: math.unit(110, "lb"),
  19166. name: "Back",
  19167. image: {
  19168. source: "./media/characters/klay/back.svg",
  19169. extra: 962 / 883
  19170. }
  19171. },
  19172. beans: {
  19173. height: math.unit(1.15, "feet"),
  19174. name: "Beans",
  19175. image: {
  19176. source: "./media/characters/klay/beans.svg"
  19177. }
  19178. },
  19179. },
  19180. [
  19181. {
  19182. name: "Micro",
  19183. height: math.unit(6, "inches")
  19184. },
  19185. {
  19186. name: "Mini",
  19187. height: math.unit(3, "feet")
  19188. },
  19189. {
  19190. name: "Normal",
  19191. height: math.unit(6, "feet"),
  19192. default: true
  19193. },
  19194. {
  19195. name: "Big",
  19196. height: math.unit(25, "feet")
  19197. },
  19198. {
  19199. name: "Macro",
  19200. height: math.unit(100, "feet")
  19201. },
  19202. {
  19203. name: "Megamacro",
  19204. height: math.unit(400, "feet")
  19205. },
  19206. ]
  19207. ))
  19208. characterMakers.push(() => makeCharacter(
  19209. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19210. {
  19211. front: {
  19212. height: math.unit(6, "feet"),
  19213. weight: math.unit(160, "lb"),
  19214. name: "Front",
  19215. image: {
  19216. source: "./media/characters/marcus/front.svg",
  19217. extra: 734 / 676,
  19218. bottom: 0.03
  19219. }
  19220. },
  19221. },
  19222. [
  19223. {
  19224. name: "Little",
  19225. height: math.unit(6, "feet")
  19226. },
  19227. {
  19228. name: "Normal",
  19229. height: math.unit(110, "feet"),
  19230. default: true
  19231. },
  19232. {
  19233. name: "Macro",
  19234. height: math.unit(250, "feet")
  19235. },
  19236. {
  19237. name: "Megamacro",
  19238. height: math.unit(1000, "feet")
  19239. },
  19240. ]
  19241. ))
  19242. characterMakers.push(() => makeCharacter(
  19243. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19244. {
  19245. front: {
  19246. height: math.unit(7, "feet"),
  19247. weight: math.unit(275, "lb"),
  19248. name: "Front",
  19249. image: {
  19250. source: "./media/characters/claude-delroute/front.svg",
  19251. extra: 902/827,
  19252. bottom: 26/928
  19253. }
  19254. },
  19255. side: {
  19256. height: math.unit(7, "feet"),
  19257. weight: math.unit(275, "lb"),
  19258. name: "Side",
  19259. image: {
  19260. source: "./media/characters/claude-delroute/side.svg",
  19261. extra: 908/853,
  19262. bottom: 16/924
  19263. }
  19264. },
  19265. back: {
  19266. height: math.unit(7, "feet"),
  19267. weight: math.unit(275, "lb"),
  19268. name: "Back",
  19269. image: {
  19270. source: "./media/characters/claude-delroute/back.svg",
  19271. extra: 911/829,
  19272. bottom: 18/929
  19273. }
  19274. },
  19275. maw: {
  19276. height: math.unit(0.6407, "meters"),
  19277. name: "Maw",
  19278. image: {
  19279. source: "./media/characters/claude-delroute/maw.svg"
  19280. }
  19281. },
  19282. },
  19283. [
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(7, "feet"),
  19287. default: true
  19288. },
  19289. {
  19290. name: "Lorge",
  19291. height: math.unit(20, "feet")
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19297. {
  19298. front: {
  19299. height: math.unit(8 + 4 / 12, "feet"),
  19300. weight: math.unit(600, "lb"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/dragonien/front.svg",
  19304. extra: 100 / 94,
  19305. bottom: 3.3 / 103.3445
  19306. }
  19307. },
  19308. back: {
  19309. height: math.unit(8 + 4 / 12, "feet"),
  19310. weight: math.unit(600, "lb"),
  19311. name: "Back",
  19312. image: {
  19313. source: "./media/characters/dragonien/back.svg",
  19314. extra: 776 / 746,
  19315. bottom: 6.4 / 782.0616
  19316. }
  19317. },
  19318. foot: {
  19319. height: math.unit(1.54, "feet"),
  19320. name: "Foot",
  19321. image: {
  19322. source: "./media/characters/dragonien/foot.svg",
  19323. }
  19324. },
  19325. },
  19326. [
  19327. {
  19328. name: "Normal",
  19329. height: math.unit(8 + 4 / 12, "feet"),
  19330. default: true
  19331. },
  19332. {
  19333. name: "Macro",
  19334. height: math.unit(200, "feet")
  19335. },
  19336. {
  19337. name: "Megamacro",
  19338. height: math.unit(1, "mile")
  19339. },
  19340. {
  19341. name: "Gigamacro",
  19342. height: math.unit(1000, "miles")
  19343. },
  19344. ]
  19345. ))
  19346. characterMakers.push(() => makeCharacter(
  19347. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19348. {
  19349. front: {
  19350. height: math.unit(5 + 2 / 12, "feet"),
  19351. weight: math.unit(110, "lb"),
  19352. name: "Front",
  19353. image: {
  19354. source: "./media/characters/desta/front.svg",
  19355. extra: 767 / 726,
  19356. bottom: 11.7 / 779
  19357. }
  19358. },
  19359. back: {
  19360. height: math.unit(5 + 2 / 12, "feet"),
  19361. weight: math.unit(110, "lb"),
  19362. name: "Back",
  19363. image: {
  19364. source: "./media/characters/desta/back.svg",
  19365. extra: 777 / 728,
  19366. bottom: 6 / 784
  19367. }
  19368. },
  19369. frontAlt: {
  19370. height: math.unit(5 + 2 / 12, "feet"),
  19371. weight: math.unit(110, "lb"),
  19372. name: "Front",
  19373. image: {
  19374. source: "./media/characters/desta/front-alt.svg",
  19375. extra: 1482 / 1417
  19376. }
  19377. },
  19378. side: {
  19379. height: math.unit(5 + 2 / 12, "feet"),
  19380. weight: math.unit(110, "lb"),
  19381. name: "Side",
  19382. image: {
  19383. source: "./media/characters/desta/side.svg",
  19384. extra: 2579 / 2491,
  19385. bottom: 0.053
  19386. }
  19387. },
  19388. },
  19389. [
  19390. {
  19391. name: "Micro",
  19392. height: math.unit(6, "inches")
  19393. },
  19394. {
  19395. name: "Normal",
  19396. height: math.unit(5 + 2 / 12, "feet"),
  19397. default: true
  19398. },
  19399. {
  19400. name: "Macro",
  19401. height: math.unit(62, "feet")
  19402. },
  19403. {
  19404. name: "Megamacro",
  19405. height: math.unit(1800, "feet")
  19406. },
  19407. ]
  19408. ))
  19409. characterMakers.push(() => makeCharacter(
  19410. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19411. {
  19412. front: {
  19413. height: math.unit(10, "feet"),
  19414. weight: math.unit(700, "lb"),
  19415. name: "Front",
  19416. image: {
  19417. source: "./media/characters/storm-alystar/front.svg",
  19418. extra: 2112 / 1898,
  19419. bottom: 0.034
  19420. }
  19421. },
  19422. },
  19423. [
  19424. {
  19425. name: "Micro",
  19426. height: math.unit(3.5, "inches")
  19427. },
  19428. {
  19429. name: "Normal",
  19430. height: math.unit(10, "feet"),
  19431. default: true
  19432. },
  19433. {
  19434. name: "Macro",
  19435. height: math.unit(400, "feet")
  19436. },
  19437. {
  19438. name: "Deific",
  19439. height: math.unit(60, "miles")
  19440. },
  19441. ]
  19442. ))
  19443. characterMakers.push(() => makeCharacter(
  19444. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19445. {
  19446. front: {
  19447. height: math.unit(2.35, "meters"),
  19448. weight: math.unit(119, "kg"),
  19449. name: "Front",
  19450. image: {
  19451. source: "./media/characters/ilia/front.svg",
  19452. extra: 1285 / 1255,
  19453. bottom: 0.06
  19454. }
  19455. },
  19456. },
  19457. [
  19458. {
  19459. name: "Normal",
  19460. height: math.unit(2.35, "meters")
  19461. },
  19462. {
  19463. name: "Macro",
  19464. height: math.unit(140, "meters"),
  19465. default: true
  19466. },
  19467. {
  19468. name: "Megamacro",
  19469. height: math.unit(100, "miles")
  19470. },
  19471. ]
  19472. ))
  19473. characterMakers.push(() => makeCharacter(
  19474. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19475. {
  19476. front: {
  19477. height: math.unit(6 + 5 / 12, "feet"),
  19478. weight: math.unit(190, "lb"),
  19479. name: "Front",
  19480. image: {
  19481. source: "./media/characters/kingdead/front.svg",
  19482. extra: 1228 / 1177
  19483. }
  19484. },
  19485. },
  19486. [
  19487. {
  19488. name: "Micro",
  19489. height: math.unit(7, "inches")
  19490. },
  19491. {
  19492. name: "Normal",
  19493. height: math.unit(6 + 5 / 12, "feet")
  19494. },
  19495. {
  19496. name: "Macro",
  19497. height: math.unit(150, "feet"),
  19498. default: true
  19499. },
  19500. {
  19501. name: "Megamacro",
  19502. height: math.unit(200, "miles")
  19503. },
  19504. ]
  19505. ))
  19506. characterMakers.push(() => makeCharacter(
  19507. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19508. {
  19509. front: {
  19510. height: math.unit(8, "feet"),
  19511. weight: math.unit(600, "lb"),
  19512. name: "Front",
  19513. image: {
  19514. source: "./media/characters/kyrehx/front.svg",
  19515. extra: 1195 / 1095,
  19516. bottom: 0.034
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Micro",
  19523. height: math.unit(2, "inches")
  19524. },
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(8, "feet"),
  19528. default: true
  19529. },
  19530. {
  19531. name: "Macro",
  19532. height: math.unit(255, "feet")
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19538. {
  19539. front: {
  19540. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19541. weight: math.unit(184, "lb"),
  19542. name: "Front",
  19543. image: {
  19544. source: "./media/characters/xang/front.svg",
  19545. extra: 845 / 755
  19546. }
  19547. },
  19548. },
  19549. [
  19550. {
  19551. name: "Normal",
  19552. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19553. default: true
  19554. },
  19555. {
  19556. name: "Macro",
  19557. height: math.unit(0.935 * 146, "feet")
  19558. },
  19559. {
  19560. name: "Megamacro",
  19561. height: math.unit(0.935 * 3, "miles")
  19562. },
  19563. ]
  19564. ))
  19565. characterMakers.push(() => makeCharacter(
  19566. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19567. {
  19568. frontDressed: {
  19569. height: math.unit(5 + 7 / 12, "feet"),
  19570. weight: math.unit(140, "lb"),
  19571. name: "Front (Dressed)",
  19572. image: {
  19573. source: "./media/characters/doc-weardno/front-dressed.svg",
  19574. extra: 263 / 234
  19575. }
  19576. },
  19577. backDressed: {
  19578. height: math.unit(5 + 7 / 12, "feet"),
  19579. weight: math.unit(140, "lb"),
  19580. name: "Back (Dressed)",
  19581. image: {
  19582. source: "./media/characters/doc-weardno/back-dressed.svg",
  19583. extra: 266 / 238
  19584. }
  19585. },
  19586. front: {
  19587. height: math.unit(5 + 7 / 12, "feet"),
  19588. weight: math.unit(140, "lb"),
  19589. name: "Front",
  19590. image: {
  19591. source: "./media/characters/doc-weardno/front.svg",
  19592. extra: 254 / 233
  19593. }
  19594. },
  19595. },
  19596. [
  19597. {
  19598. name: "Micro",
  19599. height: math.unit(3, "inches")
  19600. },
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(5 + 7 / 12, "feet"),
  19604. default: true
  19605. },
  19606. {
  19607. name: "Macro",
  19608. height: math.unit(25, "feet")
  19609. },
  19610. {
  19611. name: "Megamacro",
  19612. height: math.unit(2, "miles")
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19618. {
  19619. front: {
  19620. height: math.unit(6 + 2 / 12, "feet"),
  19621. weight: math.unit(153, "lb"),
  19622. name: "Front",
  19623. image: {
  19624. source: "./media/characters/seth-whilst/front.svg",
  19625. bottom: 0.07
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Micro",
  19632. height: math.unit(5, "inches")
  19633. },
  19634. {
  19635. name: "Normal",
  19636. height: math.unit(6 + 2 / 12, "feet"),
  19637. default: true
  19638. },
  19639. ]
  19640. ))
  19641. characterMakers.push(() => makeCharacter(
  19642. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19643. {
  19644. front: {
  19645. height: math.unit(3, "inches"),
  19646. weight: math.unit(8, "grams"),
  19647. name: "Front",
  19648. image: {
  19649. source: "./media/characters/pocket-jabari/front.svg",
  19650. extra: 1024 / 974,
  19651. bottom: 0.039
  19652. }
  19653. },
  19654. },
  19655. [
  19656. {
  19657. name: "Minimicro",
  19658. height: math.unit(8, "mm")
  19659. },
  19660. {
  19661. name: "Micro",
  19662. height: math.unit(3, "inches"),
  19663. default: true
  19664. },
  19665. {
  19666. name: "Normal",
  19667. height: math.unit(3, "feet")
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19673. {
  19674. frontDressed: {
  19675. height: math.unit(15, "feet"),
  19676. weight: math.unit(3280, "lb"),
  19677. name: "Front (Dressed)",
  19678. image: {
  19679. source: "./media/characters/sapphy/front-dressed.svg",
  19680. extra: 1951/1654,
  19681. bottom: 194/2145
  19682. },
  19683. form: "anthro",
  19684. default: true
  19685. },
  19686. backDressed: {
  19687. height: math.unit(15, "feet"),
  19688. weight: math.unit(3280, "lb"),
  19689. name: "Back (Dressed)",
  19690. image: {
  19691. source: "./media/characters/sapphy/back-dressed.svg",
  19692. extra: 2058/1918,
  19693. bottom: 125/2183
  19694. },
  19695. form: "anthro"
  19696. },
  19697. frontNude: {
  19698. height: math.unit(15, "feet"),
  19699. weight: math.unit(3280, "lb"),
  19700. name: "Front (Nude)",
  19701. image: {
  19702. source: "./media/characters/sapphy/front-nude.svg",
  19703. extra: 1951/1654,
  19704. bottom: 194/2145
  19705. },
  19706. form: "anthro"
  19707. },
  19708. backNude: {
  19709. height: math.unit(15, "feet"),
  19710. weight: math.unit(3280, "lb"),
  19711. name: "Back (Nude)",
  19712. image: {
  19713. source: "./media/characters/sapphy/back-nude.svg",
  19714. extra: 2058/1918,
  19715. bottom: 125/2183
  19716. },
  19717. form: "anthro"
  19718. },
  19719. full: {
  19720. height: math.unit(15, "feet"),
  19721. weight: math.unit(3280, "lb"),
  19722. name: "Full",
  19723. image: {
  19724. source: "./media/characters/sapphy/full.svg",
  19725. extra: 1396/1317,
  19726. bottom: 44/1440
  19727. },
  19728. form: "anthro"
  19729. },
  19730. dick: {
  19731. height: math.unit(3.8, "feet"),
  19732. name: "Dick",
  19733. image: {
  19734. source: "./media/characters/sapphy/dick.svg"
  19735. },
  19736. form: "anthro"
  19737. },
  19738. feral: {
  19739. height: math.unit(35, "feet"),
  19740. weight: math.unit(160, "tons"),
  19741. name: "Feral",
  19742. image: {
  19743. source: "./media/characters/sapphy/feral.svg",
  19744. extra: 1050/573,
  19745. bottom: 60/1110
  19746. },
  19747. form: "feral",
  19748. default: true
  19749. },
  19750. },
  19751. [
  19752. {
  19753. name: "Normal",
  19754. height: math.unit(15, "feet"),
  19755. form: "anthro"
  19756. },
  19757. {
  19758. name: "Casual Macro",
  19759. height: math.unit(120, "feet"),
  19760. form: "anthro"
  19761. },
  19762. {
  19763. name: "Macro",
  19764. height: math.unit(2150, "feet"),
  19765. default: true,
  19766. form: "anthro"
  19767. },
  19768. {
  19769. name: "Megamacro",
  19770. height: math.unit(8, "miles"),
  19771. form: "anthro"
  19772. },
  19773. {
  19774. name: "Galaxy Mom",
  19775. height: math.unit(6, "megalightyears"),
  19776. form: "anthro"
  19777. },
  19778. {
  19779. name: "Normal",
  19780. height: math.unit(35, "feet"),
  19781. form: "feral",
  19782. default: true
  19783. },
  19784. {
  19785. name: "Macro",
  19786. height: math.unit(300, "feet"),
  19787. form: "feral"
  19788. },
  19789. {
  19790. name: "Galaxy Mom",
  19791. height: math.unit(10, "megalightyears"),
  19792. form: "feral"
  19793. },
  19794. ],
  19795. {
  19796. "anthro": {
  19797. name: "Anthro",
  19798. default: true
  19799. },
  19800. "feral": {
  19801. name: "Feral"
  19802. }
  19803. }
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19807. {
  19808. front: {
  19809. height: math.unit(6, "feet"),
  19810. weight: math.unit(170, "lb"),
  19811. name: "Front",
  19812. image: {
  19813. source: "./media/characters/kiro/front.svg",
  19814. extra: 1064 / 1012,
  19815. bottom: 0.052
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Micro",
  19822. height: math.unit(6, "inches")
  19823. },
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(6, "feet"),
  19827. default: true
  19828. },
  19829. {
  19830. name: "Macro",
  19831. height: math.unit(72, "feet")
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19837. {
  19838. front: {
  19839. height: math.unit(5 + 9 / 12, "feet"),
  19840. weight: math.unit(175, "lb"),
  19841. name: "Front",
  19842. image: {
  19843. source: "./media/characters/irishfox/front.svg",
  19844. extra: 1912 / 1680,
  19845. bottom: 0.02
  19846. }
  19847. },
  19848. },
  19849. [
  19850. {
  19851. name: "Nano",
  19852. height: math.unit(1, "mm")
  19853. },
  19854. {
  19855. name: "Micro",
  19856. height: math.unit(2, "inches")
  19857. },
  19858. {
  19859. name: "Normal",
  19860. height: math.unit(5 + 9 / 12, "feet"),
  19861. default: true
  19862. },
  19863. {
  19864. name: "Macro",
  19865. height: math.unit(45, "feet")
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19871. {
  19872. front: {
  19873. height: math.unit(6 + 1 / 12, "feet"),
  19874. weight: math.unit(75, "lb"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/aronai-sieyes/front.svg",
  19878. extra: 1532/1450,
  19879. bottom: 42/1574
  19880. }
  19881. },
  19882. side: {
  19883. height: math.unit(6 + 1 / 12, "feet"),
  19884. weight: math.unit(75, "lb"),
  19885. name: "Side",
  19886. image: {
  19887. source: "./media/characters/aronai-sieyes/side.svg",
  19888. extra: 1422/1365,
  19889. bottom: 148/1570
  19890. }
  19891. },
  19892. back: {
  19893. height: math.unit(6 + 1 / 12, "feet"),
  19894. weight: math.unit(75, "lb"),
  19895. name: "Back",
  19896. image: {
  19897. source: "./media/characters/aronai-sieyes/back.svg",
  19898. extra: 1526/1464,
  19899. bottom: 51/1577
  19900. }
  19901. },
  19902. dressed: {
  19903. height: math.unit(6 + 1 / 12, "feet"),
  19904. weight: math.unit(75, "lb"),
  19905. name: "Dressed",
  19906. image: {
  19907. source: "./media/characters/aronai-sieyes/dressed.svg",
  19908. extra: 1559/1483,
  19909. bottom: 39/1598
  19910. }
  19911. },
  19912. slit: {
  19913. height: math.unit(1.3, "feet"),
  19914. name: "Slit",
  19915. image: {
  19916. source: "./media/characters/aronai-sieyes/slit.svg"
  19917. }
  19918. },
  19919. slitSpread: {
  19920. height: math.unit(0.9, "feet"),
  19921. name: "Slit (Spread)",
  19922. image: {
  19923. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19924. }
  19925. },
  19926. rump: {
  19927. height: math.unit(1.3, "feet"),
  19928. name: "Rump",
  19929. image: {
  19930. source: "./media/characters/aronai-sieyes/rump.svg"
  19931. }
  19932. },
  19933. maw: {
  19934. height: math.unit(1.25, "feet"),
  19935. name: "Maw",
  19936. image: {
  19937. source: "./media/characters/aronai-sieyes/maw.svg"
  19938. }
  19939. },
  19940. feral: {
  19941. height: math.unit(18, "feet"),
  19942. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19943. name: "Feral",
  19944. image: {
  19945. source: "./media/characters/aronai-sieyes/feral.svg",
  19946. extra: 1530 / 1240,
  19947. bottom: 0.035
  19948. }
  19949. },
  19950. },
  19951. [
  19952. {
  19953. name: "Micro",
  19954. height: math.unit(2, "inches")
  19955. },
  19956. {
  19957. name: "Normal",
  19958. height: math.unit(6 + 1 / 12, "feet"),
  19959. default: true
  19960. }
  19961. ]
  19962. ))
  19963. characterMakers.push(() => makeCharacter(
  19964. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19965. {
  19966. front: {
  19967. height: math.unit(12, "feet"),
  19968. weight: math.unit(410, "kg"),
  19969. name: "Front",
  19970. image: {
  19971. source: "./media/characters/xuna/front.svg",
  19972. extra: 2184 / 1980
  19973. }
  19974. },
  19975. side: {
  19976. height: math.unit(12, "feet"),
  19977. weight: math.unit(410, "kg"),
  19978. name: "Side",
  19979. image: {
  19980. source: "./media/characters/xuna/side.svg",
  19981. extra: 2184 / 1980
  19982. }
  19983. },
  19984. back: {
  19985. height: math.unit(12, "feet"),
  19986. weight: math.unit(410, "kg"),
  19987. name: "Back",
  19988. image: {
  19989. source: "./media/characters/xuna/back.svg",
  19990. extra: 2184 / 1980
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Nano glow",
  19997. height: math.unit(10, "nm")
  19998. },
  19999. {
  20000. name: "Micro floof",
  20001. height: math.unit(0.3, "m")
  20002. },
  20003. {
  20004. name: "Huggable softy boi",
  20005. height: math.unit(3.6576, "m"),
  20006. default: true
  20007. },
  20008. {
  20009. name: "Admirable floof",
  20010. height: math.unit(80, "meters")
  20011. },
  20012. {
  20013. name: "Gentle macro",
  20014. height: math.unit(300, "meters")
  20015. },
  20016. {
  20017. name: "Very careful floof",
  20018. height: math.unit(3200, "meters")
  20019. },
  20020. {
  20021. name: "The mega floof",
  20022. height: math.unit(36000, "meters")
  20023. },
  20024. {
  20025. name: "Giga-fur-Wicker",
  20026. height: math.unit(4800000, "meters")
  20027. },
  20028. {
  20029. name: "Licky world",
  20030. height: math.unit(20000000, "meters")
  20031. },
  20032. {
  20033. name: "Floofy cyan sun",
  20034. height: math.unit(1500000000, "meters")
  20035. },
  20036. {
  20037. name: "Milky Wicker",
  20038. height: math.unit(1000000000000000000000, "meters")
  20039. },
  20040. {
  20041. name: "The observing Wicker",
  20042. height: math.unit(999999999999999999999999999, "meters")
  20043. },
  20044. ]
  20045. ))
  20046. characterMakers.push(() => makeCharacter(
  20047. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20048. {
  20049. front: {
  20050. height: math.unit(5 + 9 / 12, "feet"),
  20051. weight: math.unit(150, "lb"),
  20052. name: "Front",
  20053. image: {
  20054. source: "./media/characters/arokha-sieyes/front.svg",
  20055. extra: 1425 / 1284,
  20056. bottom: 0.05
  20057. }
  20058. },
  20059. },
  20060. [
  20061. {
  20062. name: "Normal",
  20063. height: math.unit(5 + 9 / 12, "feet")
  20064. },
  20065. {
  20066. name: "Macro",
  20067. height: math.unit(30, "meters"),
  20068. default: true
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20074. {
  20075. front: {
  20076. height: math.unit(6, "feet"),
  20077. weight: math.unit(180, "lb"),
  20078. name: "Front",
  20079. image: {
  20080. source: "./media/characters/arokh-sieyes/front.svg",
  20081. extra: 1830 / 1769,
  20082. bottom: 0.01
  20083. }
  20084. },
  20085. },
  20086. [
  20087. {
  20088. name: "Normal",
  20089. height: math.unit(6, "feet")
  20090. },
  20091. {
  20092. name: "Macro",
  20093. height: math.unit(30, "meters"),
  20094. default: true
  20095. },
  20096. ]
  20097. ))
  20098. characterMakers.push(() => makeCharacter(
  20099. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20100. {
  20101. side: {
  20102. height: math.unit(13 + 1 / 12, "feet"),
  20103. weight: math.unit(8.5, "tonnes"),
  20104. name: "Side",
  20105. image: {
  20106. source: "./media/characters/goldeneye/side.svg",
  20107. extra: 1182 / 778,
  20108. bottom: 0.067
  20109. }
  20110. },
  20111. paw: {
  20112. height: math.unit(3.4, "feet"),
  20113. name: "Paw",
  20114. image: {
  20115. source: "./media/characters/goldeneye/paw.svg"
  20116. }
  20117. },
  20118. },
  20119. [
  20120. {
  20121. name: "Normal",
  20122. height: math.unit(13 + 1 / 12, "feet"),
  20123. default: true
  20124. },
  20125. ]
  20126. ))
  20127. characterMakers.push(() => makeCharacter(
  20128. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20129. {
  20130. front: {
  20131. height: math.unit(6 + 1 / 12, "feet"),
  20132. weight: math.unit(210, "lb"),
  20133. name: "Front",
  20134. image: {
  20135. source: "./media/characters/leonardo-lycheborne/front.svg",
  20136. extra: 776/723,
  20137. bottom: 34/810
  20138. }
  20139. },
  20140. side: {
  20141. height: math.unit(6 + 1 / 12, "feet"),
  20142. weight: math.unit(210, "lb"),
  20143. name: "Side",
  20144. image: {
  20145. source: "./media/characters/leonardo-lycheborne/side.svg",
  20146. extra: 780/728,
  20147. bottom: 12/792
  20148. }
  20149. },
  20150. back: {
  20151. height: math.unit(6 + 1 / 12, "feet"),
  20152. weight: math.unit(210, "lb"),
  20153. name: "Back",
  20154. image: {
  20155. source: "./media/characters/leonardo-lycheborne/back.svg",
  20156. extra: 775/721,
  20157. bottom: 17/792
  20158. }
  20159. },
  20160. hand: {
  20161. height: math.unit(1.08, "feet"),
  20162. name: "Hand",
  20163. image: {
  20164. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20165. }
  20166. },
  20167. foot: {
  20168. height: math.unit(1.32, "feet"),
  20169. name: "Foot",
  20170. image: {
  20171. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20172. }
  20173. },
  20174. maw: {
  20175. height: math.unit(1, "feet"),
  20176. name: "Maw",
  20177. image: {
  20178. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20179. }
  20180. },
  20181. were: {
  20182. height: math.unit(20, "feet"),
  20183. weight: math.unit(7800, "lb"),
  20184. name: "Were",
  20185. image: {
  20186. source: "./media/characters/leonardo-lycheborne/were.svg",
  20187. extra: 1224/1165,
  20188. bottom: 72/1296
  20189. }
  20190. },
  20191. feral: {
  20192. height: math.unit(7.5, "feet"),
  20193. weight: math.unit(600, "lb"),
  20194. name: "Feral",
  20195. image: {
  20196. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20197. extra: 797/702,
  20198. bottom: 139/936
  20199. }
  20200. },
  20201. taur: {
  20202. height: math.unit(11, "feet"),
  20203. weight: math.unit(3300, "lb"),
  20204. name: "Taur",
  20205. image: {
  20206. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20207. extra: 1271/1197,
  20208. bottom: 47/1318
  20209. }
  20210. },
  20211. barghest: {
  20212. height: math.unit(11, "feet"),
  20213. weight: math.unit(1300, "lb"),
  20214. name: "Barghest",
  20215. image: {
  20216. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20217. extra: 1291/1204,
  20218. bottom: 37/1328
  20219. }
  20220. },
  20221. dick: {
  20222. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20223. name: "Dick",
  20224. image: {
  20225. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20226. }
  20227. },
  20228. dickWere: {
  20229. height: math.unit((20) / 3.8, "feet"),
  20230. name: "Dick (Were)",
  20231. image: {
  20232. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20233. }
  20234. },
  20235. },
  20236. [
  20237. {
  20238. name: "Normal",
  20239. height: math.unit(6 + 1 / 12, "feet"),
  20240. default: true
  20241. },
  20242. ]
  20243. ))
  20244. characterMakers.push(() => makeCharacter(
  20245. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20246. {
  20247. front: {
  20248. height: math.unit(10, "feet"),
  20249. weight: math.unit(350, "lb"),
  20250. name: "Front",
  20251. image: {
  20252. source: "./media/characters/jet/front.svg",
  20253. extra: 2050 / 1980,
  20254. bottom: 0.013
  20255. }
  20256. },
  20257. back: {
  20258. height: math.unit(10, "feet"),
  20259. weight: math.unit(350, "lb"),
  20260. name: "Back",
  20261. image: {
  20262. source: "./media/characters/jet/back.svg",
  20263. extra: 2050 / 1980,
  20264. bottom: 0.013
  20265. }
  20266. },
  20267. },
  20268. [
  20269. {
  20270. name: "Micro",
  20271. height: math.unit(6, "inches")
  20272. },
  20273. {
  20274. name: "Normal",
  20275. height: math.unit(10, "feet"),
  20276. default: true
  20277. },
  20278. {
  20279. name: "Macro",
  20280. height: math.unit(100, "feet")
  20281. },
  20282. ]
  20283. ))
  20284. characterMakers.push(() => makeCharacter(
  20285. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20286. {
  20287. front: {
  20288. height: math.unit(15, "feet"),
  20289. weight: math.unit(2800, "lb"),
  20290. name: "Front",
  20291. image: {
  20292. source: "./media/characters/tanarath/front.svg",
  20293. extra: 2392 / 2220,
  20294. bottom: 0.03
  20295. }
  20296. },
  20297. back: {
  20298. height: math.unit(15, "feet"),
  20299. weight: math.unit(2800, "lb"),
  20300. name: "Back",
  20301. image: {
  20302. source: "./media/characters/tanarath/back.svg",
  20303. extra: 2392 / 2220,
  20304. bottom: 0.03
  20305. }
  20306. },
  20307. },
  20308. [
  20309. {
  20310. name: "Normal",
  20311. height: math.unit(15, "feet"),
  20312. default: true
  20313. },
  20314. ]
  20315. ))
  20316. characterMakers.push(() => makeCharacter(
  20317. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20318. {
  20319. front: {
  20320. height: math.unit(7 + 1 / 12, "feet"),
  20321. weight: math.unit(175, "lb"),
  20322. name: "Front",
  20323. image: {
  20324. source: "./media/characters/patty-cattybatty/front.svg",
  20325. extra: 908 / 874,
  20326. bottom: 0.025
  20327. }
  20328. },
  20329. },
  20330. [
  20331. {
  20332. name: "Micro",
  20333. height: math.unit(1, "inch")
  20334. },
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(7 + 1 / 12, "feet")
  20338. },
  20339. {
  20340. name: "Mini Macro",
  20341. height: math.unit(155, "feet")
  20342. },
  20343. {
  20344. name: "Macro",
  20345. height: math.unit(1077, "feet")
  20346. },
  20347. {
  20348. name: "Mega Macro",
  20349. height: math.unit(47650, "feet"),
  20350. default: true
  20351. },
  20352. {
  20353. name: "Giga Macro",
  20354. height: math.unit(440, "miles")
  20355. },
  20356. {
  20357. name: "Tera Macro",
  20358. height: math.unit(8700, "miles")
  20359. },
  20360. {
  20361. name: "Planetary Macro",
  20362. height: math.unit(32700, "miles")
  20363. },
  20364. {
  20365. name: "Solar Macro",
  20366. height: math.unit(550000, "miles")
  20367. },
  20368. {
  20369. name: "Celestial Macro",
  20370. height: math.unit(2.5, "AU")
  20371. },
  20372. ]
  20373. ))
  20374. characterMakers.push(() => makeCharacter(
  20375. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20376. {
  20377. front: {
  20378. height: math.unit(4 + 5 / 12, "feet"),
  20379. weight: math.unit(90, "lb"),
  20380. name: "Front",
  20381. image: {
  20382. source: "./media/characters/cappu/front.svg",
  20383. extra: 1247 / 1152,
  20384. bottom: 0.012
  20385. }
  20386. },
  20387. },
  20388. [
  20389. {
  20390. name: "Normal",
  20391. height: math.unit(4 + 5 / 12, "feet"),
  20392. default: true
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20398. {
  20399. frontDressed: {
  20400. height: math.unit(70, "cm"),
  20401. weight: math.unit(6, "kg"),
  20402. name: "Front (Dressed)",
  20403. image: {
  20404. source: "./media/characters/sebi/front-dressed.svg",
  20405. extra: 713.5 / 686.5,
  20406. bottom: 0.003
  20407. }
  20408. },
  20409. front: {
  20410. height: math.unit(70, "cm"),
  20411. weight: math.unit(5, "kg"),
  20412. name: "Front",
  20413. image: {
  20414. source: "./media/characters/sebi/front.svg",
  20415. extra: 713.5 / 686.5,
  20416. bottom: 0.003
  20417. }
  20418. }
  20419. },
  20420. [
  20421. {
  20422. name: "Normal",
  20423. height: math.unit(70, "cm"),
  20424. default: true
  20425. },
  20426. {
  20427. name: "Macro",
  20428. height: math.unit(8, "meters")
  20429. },
  20430. ]
  20431. ))
  20432. characterMakers.push(() => makeCharacter(
  20433. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20434. {
  20435. front: {
  20436. height: math.unit(6, "feet"),
  20437. weight: math.unit(150, "lb"),
  20438. name: "Front",
  20439. image: {
  20440. source: "./media/characters/typhek/front.svg",
  20441. extra: 1948 / 1929,
  20442. bottom: 0.025
  20443. }
  20444. },
  20445. side: {
  20446. height: math.unit(6, "feet"),
  20447. weight: math.unit(150, "lb"),
  20448. name: "Side",
  20449. image: {
  20450. source: "./media/characters/typhek/side.svg",
  20451. extra: 2034 / 2010,
  20452. bottom: 0.003
  20453. }
  20454. },
  20455. back: {
  20456. height: math.unit(6, "feet"),
  20457. weight: math.unit(150, "lb"),
  20458. name: "Back",
  20459. image: {
  20460. source: "./media/characters/typhek/back.svg",
  20461. extra: 2005 / 1978,
  20462. bottom: 0.004
  20463. }
  20464. },
  20465. palm: {
  20466. height: math.unit(1.2, "feet"),
  20467. name: "Palm",
  20468. image: {
  20469. source: "./media/characters/typhek/palm.svg"
  20470. }
  20471. },
  20472. fist: {
  20473. height: math.unit(1.1, "feet"),
  20474. name: "Fist",
  20475. image: {
  20476. source: "./media/characters/typhek/fist.svg"
  20477. }
  20478. },
  20479. foot: {
  20480. height: math.unit(1.57, "feet"),
  20481. name: "Foot",
  20482. image: {
  20483. source: "./media/characters/typhek/foot.svg"
  20484. }
  20485. },
  20486. sole: {
  20487. height: math.unit(2.05, "feet"),
  20488. name: "Sole",
  20489. image: {
  20490. source: "./media/characters/typhek/sole.svg"
  20491. }
  20492. },
  20493. },
  20494. [
  20495. {
  20496. name: "Macro",
  20497. height: math.unit(40, "stories"),
  20498. default: true
  20499. },
  20500. {
  20501. name: "Megamacro",
  20502. height: math.unit(1, "mile")
  20503. },
  20504. {
  20505. name: "Gigamacro",
  20506. height: math.unit(4000, "solarradii")
  20507. },
  20508. {
  20509. name: "Universal",
  20510. height: math.unit(1.1, "universes")
  20511. }
  20512. ]
  20513. ))
  20514. characterMakers.push(() => makeCharacter(
  20515. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20516. {
  20517. side: {
  20518. height: math.unit(5 + 7 / 12, "feet"),
  20519. weight: math.unit(150, "lb"),
  20520. name: "Side",
  20521. image: {
  20522. source: "./media/characters/kassy/side.svg",
  20523. extra: 1280 / 1225,
  20524. bottom: 0.002
  20525. }
  20526. },
  20527. front: {
  20528. height: math.unit(5 + 7 / 12, "feet"),
  20529. weight: math.unit(150, "lb"),
  20530. name: "Front",
  20531. image: {
  20532. source: "./media/characters/kassy/front.svg",
  20533. extra: 1280 / 1225,
  20534. bottom: 0.025
  20535. }
  20536. },
  20537. back: {
  20538. height: math.unit(5 + 7 / 12, "feet"),
  20539. weight: math.unit(150, "lb"),
  20540. name: "Back",
  20541. image: {
  20542. source: "./media/characters/kassy/back.svg",
  20543. extra: 1280 / 1225,
  20544. bottom: 0.002
  20545. }
  20546. },
  20547. foot: {
  20548. height: math.unit(1.266, "feet"),
  20549. name: "Foot",
  20550. image: {
  20551. source: "./media/characters/kassy/foot.svg"
  20552. }
  20553. },
  20554. },
  20555. [
  20556. {
  20557. name: "Normal",
  20558. height: math.unit(5 + 7 / 12, "feet")
  20559. },
  20560. {
  20561. name: "Macro",
  20562. height: math.unit(137, "feet"),
  20563. default: true
  20564. },
  20565. {
  20566. name: "Megamacro",
  20567. height: math.unit(1, "mile")
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20573. {
  20574. front: {
  20575. height: math.unit(6 + 1 / 12, "feet"),
  20576. weight: math.unit(200, "lb"),
  20577. name: "Front",
  20578. image: {
  20579. source: "./media/characters/neil/front.svg",
  20580. extra: 1326 / 1250,
  20581. bottom: 0.023
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Normal",
  20588. height: math.unit(6 + 1 / 12, "feet"),
  20589. default: true
  20590. },
  20591. {
  20592. name: "Macro",
  20593. height: math.unit(200, "feet")
  20594. },
  20595. ]
  20596. ))
  20597. characterMakers.push(() => makeCharacter(
  20598. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20599. {
  20600. front: {
  20601. height: math.unit(5 + 9 / 12, "feet"),
  20602. weight: math.unit(190, "lb"),
  20603. name: "Front",
  20604. image: {
  20605. source: "./media/characters/atticus/front.svg",
  20606. extra: 2934 / 2785,
  20607. bottom: 0.025
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Normal",
  20614. height: math.unit(5 + 9 / 12, "feet"),
  20615. default: true
  20616. },
  20617. {
  20618. name: "Macro",
  20619. height: math.unit(180, "feet")
  20620. },
  20621. ]
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20625. {
  20626. side: {
  20627. height: math.unit(9, "feet"),
  20628. weight: math.unit(650, "lb"),
  20629. name: "Side",
  20630. image: {
  20631. source: "./media/characters/milo/side.svg",
  20632. extra: 2644 / 2310,
  20633. bottom: 0.032
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(9, "feet"),
  20641. default: true
  20642. },
  20643. {
  20644. name: "Macro",
  20645. height: math.unit(300, "feet")
  20646. },
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20651. {
  20652. side: {
  20653. height: math.unit(8, "meters"),
  20654. weight: math.unit(90000, "kg"),
  20655. name: "Side",
  20656. image: {
  20657. source: "./media/characters/ijzer/side.svg",
  20658. extra: 2756 / 1600,
  20659. bottom: 0.01
  20660. }
  20661. },
  20662. },
  20663. [
  20664. {
  20665. name: "Small",
  20666. height: math.unit(3, "meters")
  20667. },
  20668. {
  20669. name: "Normal",
  20670. height: math.unit(8, "meters"),
  20671. default: true
  20672. },
  20673. {
  20674. name: "Normal+",
  20675. height: math.unit(10, "meters")
  20676. },
  20677. {
  20678. name: "Bigger",
  20679. height: math.unit(24, "meters")
  20680. },
  20681. {
  20682. name: "Huge",
  20683. height: math.unit(80, "meters")
  20684. },
  20685. ]
  20686. ))
  20687. characterMakers.push(() => makeCharacter(
  20688. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20689. {
  20690. front: {
  20691. height: math.unit(6 + 2 / 12, "feet"),
  20692. weight: math.unit(153, "lb"),
  20693. name: "Front",
  20694. image: {
  20695. source: "./media/characters/luca-cervicum/front.svg",
  20696. extra: 370 / 327,
  20697. bottom: 0.015
  20698. }
  20699. },
  20700. back: {
  20701. height: math.unit(6 + 2 / 12, "feet"),
  20702. weight: math.unit(153, "lb"),
  20703. name: "Back",
  20704. image: {
  20705. source: "./media/characters/luca-cervicum/back.svg",
  20706. extra: 367 / 333,
  20707. bottom: 0.005
  20708. }
  20709. },
  20710. frontGear: {
  20711. height: math.unit(6 + 2 / 12, "feet"),
  20712. weight: math.unit(173, "lb"),
  20713. name: "Front (Gear)",
  20714. image: {
  20715. source: "./media/characters/luca-cervicum/front-gear.svg",
  20716. extra: 377 / 333,
  20717. bottom: 0.006
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(6 + 2 / 12, "feet"),
  20725. default: true
  20726. },
  20727. ]
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20731. {
  20732. front: {
  20733. height: math.unit(6 + 1 / 12, "feet"),
  20734. weight: math.unit(304, "lb"),
  20735. name: "Front",
  20736. image: {
  20737. source: "./media/characters/oliver/front.svg",
  20738. extra: 157 / 143,
  20739. bottom: 0.08
  20740. }
  20741. },
  20742. },
  20743. [
  20744. {
  20745. name: "Normal",
  20746. height: math.unit(6 + 1 / 12, "feet"),
  20747. default: true
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20753. {
  20754. front: {
  20755. height: math.unit(5 + 7 / 12, "feet"),
  20756. weight: math.unit(140, "lb"),
  20757. name: "Front",
  20758. image: {
  20759. source: "./media/characters/shane/front.svg",
  20760. extra: 304 / 289,
  20761. bottom: 0.005
  20762. }
  20763. },
  20764. },
  20765. [
  20766. {
  20767. name: "Normal",
  20768. height: math.unit(5 + 7 / 12, "feet"),
  20769. default: true
  20770. },
  20771. ]
  20772. ))
  20773. characterMakers.push(() => makeCharacter(
  20774. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20775. {
  20776. front: {
  20777. height: math.unit(5 + 9 / 12, "feet"),
  20778. weight: math.unit(178, "lb"),
  20779. name: "Front",
  20780. image: {
  20781. source: "./media/characters/shin/front.svg",
  20782. extra: 159 / 151,
  20783. bottom: 0.015
  20784. }
  20785. },
  20786. },
  20787. [
  20788. {
  20789. name: "Normal",
  20790. height: math.unit(5 + 9 / 12, "feet"),
  20791. default: true
  20792. },
  20793. ]
  20794. ))
  20795. characterMakers.push(() => makeCharacter(
  20796. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20797. {
  20798. front: {
  20799. height: math.unit(5 + 10 / 12, "feet"),
  20800. weight: math.unit(168, "lb"),
  20801. name: "Front",
  20802. image: {
  20803. source: "./media/characters/xerxes/front.svg",
  20804. extra: 282 / 260,
  20805. bottom: 0.045
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(5 + 10 / 12, "feet"),
  20813. default: true
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20819. {
  20820. front: {
  20821. height: math.unit(6 + 7 / 12, "feet"),
  20822. weight: math.unit(208, "lb"),
  20823. name: "Front",
  20824. image: {
  20825. source: "./media/characters/chaska/front.svg",
  20826. extra: 332 / 319,
  20827. bottom: 0.015
  20828. }
  20829. },
  20830. },
  20831. [
  20832. {
  20833. name: "Normal",
  20834. height: math.unit(6 + 7 / 12, "feet"),
  20835. default: true
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20841. {
  20842. front: {
  20843. height: math.unit(5 + 8 / 12, "feet"),
  20844. weight: math.unit(208, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/enuk/front.svg",
  20848. extra: 437 / 406,
  20849. bottom: 0.02
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Normal",
  20856. height: math.unit(5 + 8 / 12, "feet"),
  20857. default: true
  20858. },
  20859. ]
  20860. ))
  20861. characterMakers.push(() => makeCharacter(
  20862. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20863. {
  20864. front: {
  20865. height: math.unit(5 + 10 / 12, "feet"),
  20866. weight: math.unit(252, "lb"),
  20867. name: "Front",
  20868. image: {
  20869. source: "./media/characters/bruun/front.svg",
  20870. extra: 197 / 187,
  20871. bottom: 0.012
  20872. }
  20873. },
  20874. },
  20875. [
  20876. {
  20877. name: "Normal",
  20878. height: math.unit(5 + 10 / 12, "feet"),
  20879. default: true
  20880. },
  20881. ]
  20882. ))
  20883. characterMakers.push(() => makeCharacter(
  20884. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20885. {
  20886. front: {
  20887. height: math.unit(6 + 10 / 12, "feet"),
  20888. weight: math.unit(255, "lb"),
  20889. name: "Front",
  20890. image: {
  20891. source: "./media/characters/alexeev/front.svg",
  20892. extra: 213 / 200,
  20893. bottom: 0.05
  20894. }
  20895. },
  20896. },
  20897. [
  20898. {
  20899. name: "Normal",
  20900. height: math.unit(6 + 10 / 12, "feet"),
  20901. default: true
  20902. },
  20903. ]
  20904. ))
  20905. characterMakers.push(() => makeCharacter(
  20906. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20907. {
  20908. front: {
  20909. height: math.unit(2 + 8 / 12, "feet"),
  20910. weight: math.unit(22, "lb"),
  20911. name: "Front",
  20912. image: {
  20913. source: "./media/characters/evelyn/front.svg",
  20914. extra: 208 / 180
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Normal",
  20921. height: math.unit(2 + 8 / 12, "feet"),
  20922. default: true
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20928. {
  20929. front: {
  20930. height: math.unit(5 + 9 / 12, "feet"),
  20931. weight: math.unit(139, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/inca/front.svg",
  20935. extra: 294 / 291,
  20936. bottom: 0.03
  20937. }
  20938. },
  20939. },
  20940. [
  20941. {
  20942. name: "Normal",
  20943. height: math.unit(5 + 9 / 12, "feet"),
  20944. default: true
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20950. {
  20951. front: {
  20952. height: math.unit(6 + 3 / 12, "feet"),
  20953. weight: math.unit(185, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/mera/front.svg",
  20957. extra: 291 / 277,
  20958. bottom: 0.03
  20959. }
  20960. },
  20961. },
  20962. [
  20963. {
  20964. name: "Normal",
  20965. height: math.unit(6 + 3 / 12, "feet"),
  20966. default: true
  20967. },
  20968. ]
  20969. ))
  20970. characterMakers.push(() => makeCharacter(
  20971. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20972. {
  20973. front: {
  20974. height: math.unit(6 + 7 / 12, "feet"),
  20975. weight: math.unit(160, "lb"),
  20976. name: "Front",
  20977. image: {
  20978. source: "./media/characters/ceres/front.svg",
  20979. extra: 1023 / 950,
  20980. bottom: 0.027
  20981. }
  20982. },
  20983. back: {
  20984. height: math.unit(6 + 7 / 12, "feet"),
  20985. weight: math.unit(160, "lb"),
  20986. name: "Back",
  20987. image: {
  20988. source: "./media/characters/ceres/back.svg",
  20989. extra: 1023 / 950
  20990. }
  20991. },
  20992. },
  20993. [
  20994. {
  20995. name: "Normal",
  20996. height: math.unit(6 + 7 / 12, "feet"),
  20997. default: true
  20998. },
  20999. ]
  21000. ))
  21001. characterMakers.push(() => makeCharacter(
  21002. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21003. {
  21004. front: {
  21005. height: math.unit(5 + 10 / 12, "feet"),
  21006. weight: math.unit(150, "lb"),
  21007. name: "Front",
  21008. image: {
  21009. source: "./media/characters/kris/front.svg",
  21010. extra: 885 / 803,
  21011. bottom: 0.03
  21012. }
  21013. },
  21014. },
  21015. [
  21016. {
  21017. name: "Normal",
  21018. height: math.unit(5 + 10 / 12, "feet"),
  21019. default: true
  21020. },
  21021. ]
  21022. ))
  21023. characterMakers.push(() => makeCharacter(
  21024. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21025. {
  21026. front: {
  21027. height: math.unit(7, "feet"),
  21028. weight: math.unit(120, "kg"),
  21029. name: "Front",
  21030. image: {
  21031. source: "./media/characters/taluthus/front.svg",
  21032. extra: 903 / 833,
  21033. bottom: 0.015
  21034. }
  21035. },
  21036. },
  21037. [
  21038. {
  21039. name: "Normal",
  21040. height: math.unit(7, "feet"),
  21041. default: true
  21042. },
  21043. {
  21044. name: "Macro",
  21045. height: math.unit(300, "feet")
  21046. },
  21047. ]
  21048. ))
  21049. characterMakers.push(() => makeCharacter(
  21050. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21051. {
  21052. front: {
  21053. height: math.unit(5 + 9 / 12, "feet"),
  21054. weight: math.unit(145, "lb"),
  21055. name: "Front",
  21056. image: {
  21057. source: "./media/characters/dawn/front.svg",
  21058. extra: 2094 / 2016,
  21059. bottom: 0.025
  21060. }
  21061. },
  21062. back: {
  21063. height: math.unit(5 + 9 / 12, "feet"),
  21064. weight: math.unit(160, "lb"),
  21065. name: "Back",
  21066. image: {
  21067. source: "./media/characters/dawn/back.svg",
  21068. extra: 2112 / 2080,
  21069. bottom: 0.005
  21070. }
  21071. },
  21072. },
  21073. [
  21074. {
  21075. name: "Normal",
  21076. height: math.unit(6 + 7 / 12, "feet"),
  21077. default: true
  21078. },
  21079. ]
  21080. ))
  21081. characterMakers.push(() => makeCharacter(
  21082. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21083. {
  21084. anthro: {
  21085. height: math.unit(8 + 3 / 12, "feet"),
  21086. weight: math.unit(450, "lb"),
  21087. name: "Anthro",
  21088. image: {
  21089. source: "./media/characters/arador/anthro.svg",
  21090. extra: 1835 / 1718,
  21091. bottom: 0.025
  21092. }
  21093. },
  21094. feral: {
  21095. height: math.unit(4, "feet"),
  21096. weight: math.unit(200, "lb"),
  21097. name: "Feral",
  21098. image: {
  21099. source: "./media/characters/arador/feral.svg",
  21100. extra: 1683 / 1514,
  21101. bottom: 0.07
  21102. }
  21103. },
  21104. },
  21105. [
  21106. {
  21107. name: "Normal",
  21108. height: math.unit(8 + 3 / 12, "feet")
  21109. },
  21110. {
  21111. name: "Macro",
  21112. height: math.unit(82.5, "feet"),
  21113. default: true
  21114. },
  21115. ]
  21116. ))
  21117. characterMakers.push(() => makeCharacter(
  21118. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21119. {
  21120. front: {
  21121. height: math.unit(5 + 10 / 12, "feet"),
  21122. weight: math.unit(125, "lb"),
  21123. name: "Front",
  21124. image: {
  21125. source: "./media/characters/dharsi/front.svg",
  21126. extra: 716 / 630,
  21127. bottom: 0.035
  21128. }
  21129. },
  21130. },
  21131. [
  21132. {
  21133. name: "Nano",
  21134. height: math.unit(100, "nm")
  21135. },
  21136. {
  21137. name: "Micro",
  21138. height: math.unit(2, "inches")
  21139. },
  21140. {
  21141. name: "Normal",
  21142. height: math.unit(5 + 10 / 12, "feet"),
  21143. default: true
  21144. },
  21145. {
  21146. name: "Macro",
  21147. height: math.unit(1000, "feet")
  21148. },
  21149. {
  21150. name: "Megamacro",
  21151. height: math.unit(10, "miles")
  21152. },
  21153. {
  21154. name: "Gigamacro",
  21155. height: math.unit(3000, "miles")
  21156. },
  21157. {
  21158. name: "Teramacro",
  21159. height: math.unit(500000, "miles")
  21160. },
  21161. {
  21162. name: "Teramacro+",
  21163. height: math.unit(30, "galaxies")
  21164. },
  21165. ]
  21166. ))
  21167. characterMakers.push(() => makeCharacter(
  21168. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21169. {
  21170. front: {
  21171. height: math.unit(6, "feet"),
  21172. weight: math.unit(150, "lb"),
  21173. name: "Front",
  21174. image: {
  21175. source: "./media/characters/deathy/front.svg",
  21176. extra: 1552 / 1463,
  21177. bottom: 0.025
  21178. }
  21179. },
  21180. side: {
  21181. height: math.unit(6, "feet"),
  21182. weight: math.unit(150, "lb"),
  21183. name: "Side",
  21184. image: {
  21185. source: "./media/characters/deathy/side.svg",
  21186. extra: 1604 / 1455,
  21187. bottom: 0.025
  21188. }
  21189. },
  21190. back: {
  21191. height: math.unit(6, "feet"),
  21192. weight: math.unit(150, "lb"),
  21193. name: "Back",
  21194. image: {
  21195. source: "./media/characters/deathy/back.svg",
  21196. extra: 1580 / 1463,
  21197. bottom: 0.005
  21198. }
  21199. },
  21200. },
  21201. [
  21202. {
  21203. name: "Micro",
  21204. height: math.unit(5, "millimeters")
  21205. },
  21206. {
  21207. name: "Normal",
  21208. height: math.unit(6 + 5 / 12, "feet"),
  21209. default: true
  21210. },
  21211. ]
  21212. ))
  21213. characterMakers.push(() => makeCharacter(
  21214. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21215. {
  21216. front: {
  21217. height: math.unit(16, "feet"),
  21218. weight: math.unit(4000, "lb"),
  21219. name: "Front",
  21220. image: {
  21221. source: "./media/characters/juniper/front.svg",
  21222. bottom: 0.04
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(16, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21236. {
  21237. front: {
  21238. height: math.unit(6, "feet"),
  21239. weight: math.unit(150, "lb"),
  21240. name: "Front",
  21241. image: {
  21242. source: "./media/characters/hipster/front.svg",
  21243. extra: 1312 / 1209,
  21244. bottom: 0.025
  21245. }
  21246. },
  21247. back: {
  21248. height: math.unit(6, "feet"),
  21249. weight: math.unit(150, "lb"),
  21250. name: "Back",
  21251. image: {
  21252. source: "./media/characters/hipster/back.svg",
  21253. extra: 1281 / 1196,
  21254. bottom: 0.01
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Micro",
  21261. height: math.unit(1, "mm")
  21262. },
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(4, "inches"),
  21266. default: true
  21267. },
  21268. {
  21269. name: "Macro",
  21270. height: math.unit(500, "feet")
  21271. },
  21272. {
  21273. name: "Megamacro",
  21274. height: math.unit(1000, "miles")
  21275. },
  21276. ]
  21277. ))
  21278. characterMakers.push(() => makeCharacter(
  21279. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21280. {
  21281. front: {
  21282. height: math.unit(6, "feet"),
  21283. weight: math.unit(150, "lb"),
  21284. name: "Front",
  21285. image: {
  21286. source: "./media/characters/tendirmuldr/front.svg",
  21287. extra: 1878 / 1772,
  21288. bottom: 0.015
  21289. }
  21290. },
  21291. },
  21292. [
  21293. {
  21294. name: "Megamacro",
  21295. height: math.unit(1500, "miles"),
  21296. default: true
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21302. {
  21303. front: {
  21304. height: math.unit(14, "feet"),
  21305. weight: math.unit(12000, "lb"),
  21306. name: "Front",
  21307. image: {
  21308. source: "./media/characters/mort/front.svg",
  21309. extra: 365 / 318,
  21310. bottom: 0.01
  21311. }
  21312. },
  21313. side: {
  21314. height: math.unit(14, "feet"),
  21315. weight: math.unit(12000, "lb"),
  21316. name: "Side",
  21317. image: {
  21318. source: "./media/characters/mort/side.svg",
  21319. extra: 365 / 318,
  21320. bottom: 0.052
  21321. },
  21322. default: true
  21323. },
  21324. back: {
  21325. height: math.unit(14, "feet"),
  21326. weight: math.unit(12000, "lb"),
  21327. name: "Back",
  21328. image: {
  21329. source: "./media/characters/mort/back.svg",
  21330. extra: 371 / 332,
  21331. bottom: 0.18
  21332. }
  21333. },
  21334. },
  21335. [
  21336. {
  21337. name: "Normal",
  21338. height: math.unit(14, "feet"),
  21339. default: true
  21340. },
  21341. ]
  21342. ))
  21343. characterMakers.push(() => makeCharacter(
  21344. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21345. {
  21346. front: {
  21347. height: math.unit(8, "feet"),
  21348. weight: math.unit(1, "ton"),
  21349. name: "Front",
  21350. image: {
  21351. source: "./media/characters/lycoa/front.svg",
  21352. extra: 1836/1728,
  21353. bottom: 81/1917
  21354. }
  21355. },
  21356. back: {
  21357. height: math.unit(8, "feet"),
  21358. weight: math.unit(1, "ton"),
  21359. name: "Back",
  21360. image: {
  21361. source: "./media/characters/lycoa/back.svg",
  21362. extra: 1785/1720,
  21363. bottom: 91/1876
  21364. }
  21365. },
  21366. head: {
  21367. height: math.unit(1.6243, "feet"),
  21368. name: "Head",
  21369. image: {
  21370. source: "./media/characters/lycoa/head.svg",
  21371. extra: 1011/782,
  21372. bottom: 0/1011
  21373. }
  21374. },
  21375. tailmaw: {
  21376. height: math.unit(1.9, "feet"),
  21377. name: "Tailmaw",
  21378. image: {
  21379. source: "./media/characters/lycoa/tailmaw.svg"
  21380. }
  21381. },
  21382. tentacles: {
  21383. height: math.unit(2.1, "feet"),
  21384. name: "Tentacles",
  21385. image: {
  21386. source: "./media/characters/lycoa/tentacles.svg"
  21387. }
  21388. },
  21389. dick: {
  21390. height: math.unit(1.73, "feet"),
  21391. name: "Dick",
  21392. image: {
  21393. source: "./media/characters/lycoa/dick.svg"
  21394. }
  21395. },
  21396. },
  21397. [
  21398. {
  21399. name: "Normal",
  21400. height: math.unit(8, "feet"),
  21401. default: true
  21402. },
  21403. {
  21404. name: "Macro",
  21405. height: math.unit(30, "feet")
  21406. },
  21407. ]
  21408. ))
  21409. characterMakers.push(() => makeCharacter(
  21410. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21411. {
  21412. front: {
  21413. height: math.unit(4 + 2 / 12, "feet"),
  21414. weight: math.unit(70, "lb"),
  21415. name: "Front",
  21416. image: {
  21417. source: "./media/characters/naldara/front.svg",
  21418. extra: 1664/1387,
  21419. bottom: 81/1745
  21420. },
  21421. form: "anthro",
  21422. default: true
  21423. },
  21424. naga: {
  21425. height: math.unit(20, "feet"),
  21426. weight: math.unit(15000, "kg"),
  21427. name: "Front",
  21428. image: {
  21429. source: "./media/characters/naldara/naga.svg",
  21430. extra: 1590/1396,
  21431. bottom: 285/1875
  21432. },
  21433. form: "naga",
  21434. default: true
  21435. },
  21436. },
  21437. [
  21438. {
  21439. name: "Normal",
  21440. height: math.unit(4 + 2 / 12, "feet"),
  21441. form: "anthro",
  21442. default: true
  21443. },
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(20, "feet"),
  21447. form: "naga",
  21448. default: true
  21449. },
  21450. ],
  21451. {
  21452. "anthro": {
  21453. name: "Anthro",
  21454. default: true
  21455. },
  21456. "naga": {
  21457. name: "Naga"
  21458. }
  21459. }
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21463. {
  21464. front: {
  21465. height: math.unit(13 + 7 / 12, "feet"),
  21466. weight: math.unit(1500, "lb"),
  21467. name: "Front",
  21468. image: {
  21469. source: "./media/characters/briar/front.svg",
  21470. extra: 1223/1157,
  21471. bottom: 123/1346
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(13 + 7 / 12, "feet"),
  21479. default: true
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21485. {
  21486. side: {
  21487. height: math.unit(16, "feet"),
  21488. weight: math.unit(500, "lb"),
  21489. name: "Side",
  21490. image: {
  21491. source: "./media/characters/vanguard/side.svg",
  21492. extra: 1022/914,
  21493. bottom: 30/1052
  21494. }
  21495. },
  21496. sideAlt: {
  21497. height: math.unit(10, "feet"),
  21498. weight: math.unit(500, "lb"),
  21499. name: "Side (Alt)",
  21500. image: {
  21501. source: "./media/characters/vanguard/side-alt.svg",
  21502. extra: 502 / 425,
  21503. bottom: 0.087
  21504. }
  21505. },
  21506. },
  21507. [
  21508. {
  21509. name: "Normal",
  21510. height: math.unit(17.71, "feet"),
  21511. default: true
  21512. },
  21513. ]
  21514. ))
  21515. characterMakers.push(() => makeCharacter(
  21516. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21517. {
  21518. front: {
  21519. height: math.unit(7.5, "feet"),
  21520. weight: math.unit(2, "lb"),
  21521. name: "Front",
  21522. image: {
  21523. source: "./media/characters/artemis/work-safe-front.svg",
  21524. extra: 1192 / 1075,
  21525. bottom: 0.07
  21526. },
  21527. form: "work-safe",
  21528. default: true
  21529. },
  21530. frontNsfw: {
  21531. height: math.unit(7.5, "feet"),
  21532. weight: math.unit(2, "lb"),
  21533. name: "Front",
  21534. image: {
  21535. source: "./media/characters/artemis/calibrating-front.svg",
  21536. extra: 1192 / 1075,
  21537. bottom: 0.07
  21538. },
  21539. form: "calibrating",
  21540. default: true
  21541. },
  21542. frontNsfwer: {
  21543. height: math.unit(7.5, "feet"),
  21544. weight: math.unit(2, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/artemis/oversize-load-front.svg",
  21548. extra: 1192 / 1075,
  21549. bottom: 0.07
  21550. },
  21551. form: "oversize-load",
  21552. default: true
  21553. },
  21554. side: {
  21555. height: math.unit(7.5, "feet"),
  21556. weight: math.unit(2, "lb"),
  21557. name: "Side",
  21558. image: {
  21559. source: "./media/characters/artemis/work-safe-side.svg",
  21560. extra: 1192 / 1075,
  21561. bottom: 0.07
  21562. },
  21563. form: "work-safe"
  21564. },
  21565. sideNsfw: {
  21566. height: math.unit(7.5, "feet"),
  21567. weight: math.unit(2, "lb"),
  21568. name: "Side",
  21569. image: {
  21570. source: "./media/characters/artemis/calibrating-side.svg",
  21571. extra: 1192 / 1075,
  21572. bottom: 0.07
  21573. },
  21574. form: "calibrating"
  21575. },
  21576. sideNsfwer: {
  21577. height: math.unit(7.5, "feet"),
  21578. weight: math.unit(2, "lb"),
  21579. name: "Side",
  21580. image: {
  21581. source: "./media/characters/artemis/oversize-load-side.svg",
  21582. extra: 1192 / 1075,
  21583. bottom: 0.07
  21584. },
  21585. form: "oversize-load"
  21586. },
  21587. maw: {
  21588. height: math.unit(1.1, "feet"),
  21589. name: "Maw",
  21590. image: {
  21591. source: "./media/characters/artemis/maw.svg"
  21592. },
  21593. form: "work-safe"
  21594. },
  21595. stomach: {
  21596. height: math.unit(0.95, "feet"),
  21597. name: "Stomach",
  21598. image: {
  21599. source: "./media/characters/artemis/stomach.svg"
  21600. },
  21601. form: "work-safe"
  21602. },
  21603. dickCanine: {
  21604. height: math.unit(1, "feet"),
  21605. name: "Dick (Canine)",
  21606. image: {
  21607. source: "./media/characters/artemis/dick-canine.svg"
  21608. },
  21609. form: "calibrating"
  21610. },
  21611. dickEquine: {
  21612. height: math.unit(0.85, "feet"),
  21613. name: "Dick (Equine)",
  21614. image: {
  21615. source: "./media/characters/artemis/dick-equine.svg"
  21616. },
  21617. form: "calibrating"
  21618. },
  21619. dickExotic: {
  21620. height: math.unit(0.85, "feet"),
  21621. name: "Dick (Exotic)",
  21622. image: {
  21623. source: "./media/characters/artemis/dick-exotic.svg"
  21624. },
  21625. form: "calibrating"
  21626. },
  21627. dickCanineBigger: {
  21628. height: math.unit(1 * 1.33, "feet"),
  21629. name: "Dick (Canine)",
  21630. image: {
  21631. source: "./media/characters/artemis/dick-canine.svg"
  21632. },
  21633. form: "oversize-load"
  21634. },
  21635. dickEquineBigger: {
  21636. height: math.unit(0.85 * 1.33, "feet"),
  21637. name: "Dick (Equine)",
  21638. image: {
  21639. source: "./media/characters/artemis/dick-equine.svg"
  21640. },
  21641. form: "oversize-load"
  21642. },
  21643. dickExoticBigger: {
  21644. height: math.unit(0.85 * 1.33, "feet"),
  21645. name: "Dick (Exotic)",
  21646. image: {
  21647. source: "./media/characters/artemis/dick-exotic.svg"
  21648. },
  21649. form: "oversize-load"
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(7.5, "feet"),
  21656. form: "work-safe",
  21657. default: true
  21658. },
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(7.5, "feet"),
  21662. form: "calibrating",
  21663. default: true
  21664. },
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(7.5, "feet"),
  21668. form: "oversize-load",
  21669. default: true
  21670. },
  21671. {
  21672. name: "Enlarged",
  21673. height: math.unit(12, "feet"),
  21674. form: "work-safe",
  21675. },
  21676. {
  21677. name: "Enlarged",
  21678. height: math.unit(12, "feet"),
  21679. form: "calibrating",
  21680. },
  21681. {
  21682. name: "Enlarged",
  21683. height: math.unit(12, "feet"),
  21684. form: "oversize-load",
  21685. },
  21686. ],
  21687. {
  21688. "work-safe": {
  21689. name: "Work-Safe",
  21690. default: true
  21691. },
  21692. "calibrating": {
  21693. name: "Calibrating"
  21694. },
  21695. "oversize-load": {
  21696. name: "Oversize Load"
  21697. }
  21698. }
  21699. ))
  21700. characterMakers.push(() => makeCharacter(
  21701. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21702. {
  21703. front: {
  21704. height: math.unit(5 + 3 / 12, "feet"),
  21705. weight: math.unit(160, "lb"),
  21706. name: "Front",
  21707. image: {
  21708. source: "./media/characters/kira/front.svg",
  21709. extra: 906 / 786,
  21710. bottom: 0.01
  21711. }
  21712. },
  21713. back: {
  21714. height: math.unit(5 + 3 / 12, "feet"),
  21715. weight: math.unit(160, "lb"),
  21716. name: "Back",
  21717. image: {
  21718. source: "./media/characters/kira/back.svg",
  21719. extra: 882 / 757,
  21720. bottom: 0.005
  21721. }
  21722. },
  21723. frontDressed: {
  21724. height: math.unit(5 + 3 / 12, "feet"),
  21725. weight: math.unit(160, "lb"),
  21726. name: "Front (Dressed)",
  21727. image: {
  21728. source: "./media/characters/kira/front-dressed.svg",
  21729. extra: 906 / 786,
  21730. bottom: 0.01
  21731. }
  21732. },
  21733. beans: {
  21734. height: math.unit(0.92, "feet"),
  21735. name: "Beans",
  21736. image: {
  21737. source: "./media/characters/kira/beans.svg"
  21738. }
  21739. },
  21740. },
  21741. [
  21742. {
  21743. name: "Normal",
  21744. height: math.unit(5 + 3 / 12, "feet"),
  21745. default: true
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21751. {
  21752. front: {
  21753. height: math.unit(5 + 4 / 12, "feet"),
  21754. weight: math.unit(145, "lb"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/scramble/front.svg",
  21758. extra: 763 / 727,
  21759. bottom: 0.05
  21760. }
  21761. },
  21762. back: {
  21763. height: math.unit(5 + 4 / 12, "feet"),
  21764. weight: math.unit(145, "lb"),
  21765. name: "Back",
  21766. image: {
  21767. source: "./media/characters/scramble/back.svg",
  21768. extra: 826 / 737,
  21769. bottom: 0.002
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(5 + 4 / 12, "feet"),
  21777. default: true
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21783. {
  21784. side: {
  21785. height: math.unit(6 + 2 / 12, "feet"),
  21786. weight: math.unit(190, "lb"),
  21787. name: "Side",
  21788. image: {
  21789. source: "./media/characters/biscuit/side.svg",
  21790. extra: 858 / 791,
  21791. bottom: 0.044
  21792. }
  21793. },
  21794. },
  21795. [
  21796. {
  21797. name: "Normal",
  21798. height: math.unit(6 + 2 / 12, "feet"),
  21799. default: true
  21800. },
  21801. ]
  21802. ))
  21803. characterMakers.push(() => makeCharacter(
  21804. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21805. {
  21806. front: {
  21807. height: math.unit(5 + 2 / 12, "feet"),
  21808. weight: math.unit(120, "lb"),
  21809. name: "Front",
  21810. image: {
  21811. source: "./media/characters/poffin/front.svg",
  21812. extra: 786 / 680,
  21813. bottom: 0.005
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Normal",
  21820. height: math.unit(5 + 2 / 12, "feet"),
  21821. default: true
  21822. },
  21823. ]
  21824. ))
  21825. characterMakers.push(() => makeCharacter(
  21826. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21827. {
  21828. front: {
  21829. height: math.unit(6 + 3 / 12, "feet"),
  21830. weight: math.unit(519, "lb"),
  21831. name: "Front",
  21832. image: {
  21833. source: "./media/characters/dhari/front.svg",
  21834. extra: 1048 / 946,
  21835. bottom: 0.015
  21836. }
  21837. },
  21838. back: {
  21839. height: math.unit(6 + 3 / 12, "feet"),
  21840. weight: math.unit(519, "lb"),
  21841. name: "Back",
  21842. image: {
  21843. source: "./media/characters/dhari/back.svg",
  21844. extra: 1048 / 931,
  21845. bottom: 0.005
  21846. }
  21847. },
  21848. frontDressed: {
  21849. height: math.unit(6 + 3 / 12, "feet"),
  21850. weight: math.unit(519, "lb"),
  21851. name: "Front (Dressed)",
  21852. image: {
  21853. source: "./media/characters/dhari/front-dressed.svg",
  21854. extra: 1713 / 1546,
  21855. bottom: 0.02
  21856. }
  21857. },
  21858. backDressed: {
  21859. height: math.unit(6 + 3 / 12, "feet"),
  21860. weight: math.unit(519, "lb"),
  21861. name: "Back (Dressed)",
  21862. image: {
  21863. source: "./media/characters/dhari/back-dressed.svg",
  21864. extra: 1699 / 1537,
  21865. bottom: 0.01
  21866. }
  21867. },
  21868. maw: {
  21869. height: math.unit(0.95, "feet"),
  21870. name: "Maw",
  21871. image: {
  21872. source: "./media/characters/dhari/maw.svg"
  21873. }
  21874. },
  21875. wereFront: {
  21876. height: math.unit(12 + 8 / 12, "feet"),
  21877. weight: math.unit(4000, "lb"),
  21878. name: "Front (Were)",
  21879. image: {
  21880. source: "./media/characters/dhari/were-front.svg",
  21881. extra: 1065 / 969,
  21882. bottom: 0.015
  21883. }
  21884. },
  21885. wereBack: {
  21886. height: math.unit(12 + 8 / 12, "feet"),
  21887. weight: math.unit(4000, "lb"),
  21888. name: "Back (Were)",
  21889. image: {
  21890. source: "./media/characters/dhari/were-back.svg",
  21891. extra: 1065 / 969,
  21892. bottom: 0.012
  21893. }
  21894. },
  21895. wereMaw: {
  21896. height: math.unit(0.625, "meters"),
  21897. name: "Maw (Were)",
  21898. image: {
  21899. source: "./media/characters/dhari/were-maw.svg"
  21900. }
  21901. },
  21902. },
  21903. [
  21904. {
  21905. name: "Normal",
  21906. height: math.unit(6 + 3 / 12, "feet"),
  21907. default: true
  21908. },
  21909. ]
  21910. ))
  21911. characterMakers.push(() => makeCharacter(
  21912. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21913. {
  21914. anthro: {
  21915. height: math.unit(5 + 7 / 12, "feet"),
  21916. weight: math.unit(175, "lb"),
  21917. name: "Anthro",
  21918. image: {
  21919. source: "./media/characters/rena-dyne/anthro.svg",
  21920. extra: 1849 / 1785,
  21921. bottom: 0.005
  21922. }
  21923. },
  21924. taur: {
  21925. height: math.unit(15 + 6 / 12, "feet"),
  21926. weight: math.unit(8000, "lb"),
  21927. name: "Taur",
  21928. image: {
  21929. source: "./media/characters/rena-dyne/taur.svg",
  21930. extra: 2315 / 2234,
  21931. bottom: 0.033
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Normal",
  21938. height: math.unit(5 + 7 / 12, "feet"),
  21939. default: true
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21945. {
  21946. front: {
  21947. height: math.unit(8, "feet"),
  21948. weight: math.unit(600, "lb"),
  21949. name: "Front",
  21950. image: {
  21951. source: "./media/characters/weremeep/front.svg",
  21952. extra: 970/849,
  21953. bottom: 7/977
  21954. }
  21955. },
  21956. },
  21957. [
  21958. {
  21959. name: "Normal",
  21960. height: math.unit(8, "feet"),
  21961. default: true
  21962. },
  21963. {
  21964. name: "Lorg",
  21965. height: math.unit(12, "feet")
  21966. },
  21967. {
  21968. name: "Oh Lawd She Comin'",
  21969. height: math.unit(20, "feet")
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21975. {
  21976. front: {
  21977. height: math.unit(4, "feet"),
  21978. weight: math.unit(90, "lb"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/reza/front.svg",
  21982. extra: 1183 / 1111,
  21983. bottom: 0.017
  21984. }
  21985. },
  21986. back: {
  21987. height: math.unit(4, "feet"),
  21988. weight: math.unit(90, "lb"),
  21989. name: "Back",
  21990. image: {
  21991. source: "./media/characters/reza/back.svg",
  21992. extra: 1183 / 1111,
  21993. bottom: 0.01
  21994. }
  21995. },
  21996. drake: {
  21997. height: math.unit(30, "feet"),
  21998. weight: math.unit(246960, "lb"),
  21999. name: "Drake",
  22000. image: {
  22001. source: "./media/characters/reza/drake.svg",
  22002. extra: 2350 / 2024,
  22003. bottom: 60.7 / 2403
  22004. }
  22005. },
  22006. },
  22007. [
  22008. {
  22009. name: "Normal",
  22010. height: math.unit(4, "feet"),
  22011. default: true
  22012. },
  22013. ]
  22014. ))
  22015. characterMakers.push(() => makeCharacter(
  22016. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22017. {
  22018. side: {
  22019. height: math.unit(15, "feet"),
  22020. weight: math.unit(14, "tons"),
  22021. name: "Side",
  22022. image: {
  22023. source: "./media/characters/athea/side.svg",
  22024. extra: 960 / 540,
  22025. bottom: 0.003
  22026. }
  22027. },
  22028. sitting: {
  22029. height: math.unit(6 * 2.85, "feet"),
  22030. weight: math.unit(14, "tons"),
  22031. name: "Sitting",
  22032. image: {
  22033. source: "./media/characters/athea/sitting.svg",
  22034. extra: 621 / 581,
  22035. bottom: 0.075
  22036. }
  22037. },
  22038. maw: {
  22039. height: math.unit(7.59498031496063, "feet"),
  22040. name: "Maw",
  22041. image: {
  22042. source: "./media/characters/athea/maw.svg"
  22043. }
  22044. },
  22045. },
  22046. [
  22047. {
  22048. name: "Lap Cat",
  22049. height: math.unit(2.5, "feet")
  22050. },
  22051. {
  22052. name: "Minimacro",
  22053. height: math.unit(15, "feet"),
  22054. default: true
  22055. },
  22056. {
  22057. name: "Macro",
  22058. height: math.unit(120, "feet")
  22059. },
  22060. {
  22061. name: "Macro+",
  22062. height: math.unit(640, "feet")
  22063. },
  22064. {
  22065. name: "Colossus",
  22066. height: math.unit(2.2, "miles")
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22072. {
  22073. front: {
  22074. height: math.unit(8 + 8 / 12, "feet"),
  22075. weight: math.unit(130, "kg"),
  22076. name: "Front",
  22077. image: {
  22078. source: "./media/characters/seroko/front.svg",
  22079. extra: 1385 / 1280,
  22080. bottom: 0.025
  22081. }
  22082. },
  22083. back: {
  22084. height: math.unit(8 + 8 / 12, "feet"),
  22085. weight: math.unit(130, "kg"),
  22086. name: "Back",
  22087. image: {
  22088. source: "./media/characters/seroko/back.svg",
  22089. extra: 1369 / 1238,
  22090. bottom: 0.018
  22091. }
  22092. },
  22093. frontDressed: {
  22094. height: math.unit(8 + 8 / 12, "feet"),
  22095. weight: math.unit(130, "kg"),
  22096. name: "Front (Dressed)",
  22097. image: {
  22098. source: "./media/characters/seroko/front-dressed.svg",
  22099. extra: 1366 / 1275,
  22100. bottom: 0.03
  22101. }
  22102. },
  22103. },
  22104. [
  22105. {
  22106. name: "Normal",
  22107. height: math.unit(8 + 8 / 12, "feet"),
  22108. default: true
  22109. },
  22110. ]
  22111. ))
  22112. characterMakers.push(() => makeCharacter(
  22113. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22114. {
  22115. front: {
  22116. height: math.unit(5.5, "feet"),
  22117. weight: math.unit(160, "lb"),
  22118. name: "Front",
  22119. image: {
  22120. source: "./media/characters/quatzi/front.svg",
  22121. extra: 2346 / 2242,
  22122. bottom: 0.015
  22123. }
  22124. },
  22125. },
  22126. [
  22127. {
  22128. name: "Normal",
  22129. height: math.unit(5.5, "feet"),
  22130. default: true
  22131. },
  22132. {
  22133. name: "Big",
  22134. height: math.unit(7.7, "feet")
  22135. },
  22136. ]
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22140. {
  22141. front: {
  22142. height: math.unit(5 + 11 / 12, "feet"),
  22143. weight: math.unit(180, "lb"),
  22144. name: "Front",
  22145. image: {
  22146. source: "./media/characters/sen/front.svg",
  22147. extra: 1321 / 1254,
  22148. bottom: 0.015
  22149. }
  22150. },
  22151. side: {
  22152. height: math.unit(5 + 11 / 12, "feet"),
  22153. weight: math.unit(180, "lb"),
  22154. name: "Side",
  22155. image: {
  22156. source: "./media/characters/sen/side.svg",
  22157. extra: 1321 / 1254,
  22158. bottom: 0.007
  22159. }
  22160. },
  22161. back: {
  22162. height: math.unit(5 + 11 / 12, "feet"),
  22163. weight: math.unit(180, "lb"),
  22164. name: "Back",
  22165. image: {
  22166. source: "./media/characters/sen/back.svg",
  22167. extra: 1321 / 1254
  22168. }
  22169. },
  22170. },
  22171. [
  22172. {
  22173. name: "Normal",
  22174. height: math.unit(5 + 11 / 12, "feet"),
  22175. default: true
  22176. },
  22177. ]
  22178. ))
  22179. characterMakers.push(() => makeCharacter(
  22180. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22181. {
  22182. front: {
  22183. height: math.unit(166.6, "cm"),
  22184. weight: math.unit(66.6, "kg"),
  22185. name: "Front",
  22186. image: {
  22187. source: "./media/characters/fruity/front.svg",
  22188. extra: 1510 / 1386,
  22189. bottom: 0.04
  22190. }
  22191. },
  22192. back: {
  22193. height: math.unit(166.6, "cm"),
  22194. weight: math.unit(66.6, "lb"),
  22195. name: "Back",
  22196. image: {
  22197. source: "./media/characters/fruity/back.svg",
  22198. extra: 1563 / 1435,
  22199. bottom: 0.005
  22200. }
  22201. },
  22202. },
  22203. [
  22204. {
  22205. name: "Normal",
  22206. height: math.unit(166.6, "cm"),
  22207. default: true
  22208. },
  22209. {
  22210. name: "Demonic",
  22211. height: math.unit(166.6, "feet")
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22217. {
  22218. side: {
  22219. height: math.unit(10, "feet"),
  22220. weight: math.unit(500, "lb"),
  22221. name: "Side",
  22222. image: {
  22223. source: "./media/characters/zost/side.svg",
  22224. extra: 2870/2533,
  22225. bottom: 252/3122
  22226. }
  22227. },
  22228. mawFront: {
  22229. height: math.unit(1.08, "meters"),
  22230. name: "Maw (Front)",
  22231. image: {
  22232. source: "./media/characters/zost/maw-front.svg"
  22233. }
  22234. },
  22235. mawSide: {
  22236. height: math.unit(2.66, "feet"),
  22237. name: "Maw (Side)",
  22238. image: {
  22239. source: "./media/characters/zost/maw-side.svg"
  22240. }
  22241. },
  22242. wingspan: {
  22243. height: math.unit(7.4, "feet"),
  22244. name: "Wingspan",
  22245. image: {
  22246. source: "./media/characters/zost/wingspan.svg"
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Normal",
  22253. height: math.unit(10, "feet"),
  22254. default: true
  22255. },
  22256. ]
  22257. ))
  22258. characterMakers.push(() => makeCharacter(
  22259. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22260. {
  22261. front: {
  22262. height: math.unit(5 + 4 / 12, "feet"),
  22263. weight: math.unit(120, "lb"),
  22264. name: "Front",
  22265. image: {
  22266. source: "./media/characters/luci/front.svg",
  22267. extra: 1985 / 1884,
  22268. bottom: 0.04
  22269. }
  22270. },
  22271. back: {
  22272. height: math.unit(5 + 4 / 12, "feet"),
  22273. weight: math.unit(120, "lb"),
  22274. name: "Back",
  22275. image: {
  22276. source: "./media/characters/luci/back.svg",
  22277. extra: 1892 / 1791,
  22278. bottom: 0.002
  22279. }
  22280. },
  22281. },
  22282. [
  22283. {
  22284. name: "Normal",
  22285. height: math.unit(5 + 4 / 12, "feet"),
  22286. default: true
  22287. },
  22288. ]
  22289. ))
  22290. characterMakers.push(() => makeCharacter(
  22291. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22292. {
  22293. front: {
  22294. height: math.unit(1500, "feet"),
  22295. weight: math.unit(3.8e6, "tons"),
  22296. name: "Front",
  22297. image: {
  22298. source: "./media/characters/2th/front.svg",
  22299. extra: 3489 / 3350,
  22300. bottom: 0.1
  22301. }
  22302. },
  22303. foot: {
  22304. height: math.unit(461, "feet"),
  22305. name: "Foot",
  22306. image: {
  22307. source: "./media/characters/2th/foot.svg"
  22308. }
  22309. },
  22310. },
  22311. [
  22312. {
  22313. name: "\"Micro\"",
  22314. height: math.unit(15 + 7 / 12, "feet")
  22315. },
  22316. {
  22317. name: "Normal",
  22318. height: math.unit(1500, "feet"),
  22319. default: true
  22320. },
  22321. {
  22322. name: "Macro",
  22323. height: math.unit(5000, "feet")
  22324. },
  22325. {
  22326. name: "Megamacro",
  22327. height: math.unit(15, "miles")
  22328. },
  22329. {
  22330. name: "Gigamacro",
  22331. height: math.unit(4000, "miles")
  22332. },
  22333. {
  22334. name: "Galactic",
  22335. height: math.unit(50, "AU")
  22336. },
  22337. ]
  22338. ))
  22339. characterMakers.push(() => makeCharacter(
  22340. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22341. {
  22342. front: {
  22343. height: math.unit(5 + 6 / 12, "feet"),
  22344. weight: math.unit(220, "lb"),
  22345. name: "Front",
  22346. image: {
  22347. source: "./media/characters/amethyst/front.svg",
  22348. extra: 2078 / 2040,
  22349. bottom: 0.045
  22350. }
  22351. },
  22352. back: {
  22353. height: math.unit(5 + 6 / 12, "feet"),
  22354. weight: math.unit(220, "lb"),
  22355. name: "Back",
  22356. image: {
  22357. source: "./media/characters/amethyst/back.svg",
  22358. extra: 2021 / 1989,
  22359. bottom: 0.02
  22360. }
  22361. },
  22362. },
  22363. [
  22364. {
  22365. name: "Normal",
  22366. height: math.unit(5 + 6 / 12, "feet"),
  22367. default: true
  22368. },
  22369. ]
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22373. {
  22374. front: {
  22375. height: math.unit(4 + 11 / 12, "feet"),
  22376. weight: math.unit(120, "lb"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/yumi-akiyama/front.svg",
  22380. extra: 1327 / 1235,
  22381. bottom: 0.02
  22382. }
  22383. },
  22384. back: {
  22385. height: math.unit(4 + 11 / 12, "feet"),
  22386. weight: math.unit(120, "lb"),
  22387. name: "Back",
  22388. image: {
  22389. source: "./media/characters/yumi-akiyama/back.svg",
  22390. extra: 1287 / 1245,
  22391. bottom: 0.002
  22392. }
  22393. },
  22394. },
  22395. [
  22396. {
  22397. name: "Galactic",
  22398. height: math.unit(50, "galaxies"),
  22399. default: true
  22400. },
  22401. {
  22402. name: "Universal",
  22403. height: math.unit(100, "universes")
  22404. },
  22405. ]
  22406. ))
  22407. characterMakers.push(() => makeCharacter(
  22408. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22409. {
  22410. front: {
  22411. height: math.unit(8, "feet"),
  22412. weight: math.unit(500, "lb"),
  22413. name: "Front",
  22414. image: {
  22415. source: "./media/characters/rifter-yrmori/front.svg",
  22416. extra: 1180 / 1125,
  22417. bottom: 0.02
  22418. }
  22419. },
  22420. back: {
  22421. height: math.unit(8, "feet"),
  22422. weight: math.unit(500, "lb"),
  22423. name: "Back",
  22424. image: {
  22425. source: "./media/characters/rifter-yrmori/back.svg",
  22426. extra: 1190 / 1145,
  22427. bottom: 0.001
  22428. }
  22429. },
  22430. wings: {
  22431. height: math.unit(7.75, "feet"),
  22432. weight: math.unit(500, "lb"),
  22433. name: "Wings",
  22434. image: {
  22435. source: "./media/characters/rifter-yrmori/wings.svg",
  22436. extra: 1357 / 1285
  22437. }
  22438. },
  22439. maw: {
  22440. height: math.unit(0.8, "feet"),
  22441. name: "Maw",
  22442. image: {
  22443. source: "./media/characters/rifter-yrmori/maw.svg"
  22444. }
  22445. },
  22446. mawfront: {
  22447. height: math.unit(1.45, "feet"),
  22448. name: "Maw (Front)",
  22449. image: {
  22450. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22451. }
  22452. },
  22453. },
  22454. [
  22455. {
  22456. name: "Normal",
  22457. height: math.unit(8, "feet"),
  22458. default: true
  22459. },
  22460. {
  22461. name: "Macro",
  22462. height: math.unit(42, "meters")
  22463. },
  22464. ]
  22465. ))
  22466. characterMakers.push(() => makeCharacter(
  22467. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22468. {
  22469. were: {
  22470. height: math.unit(25 + 6 / 12, "feet"),
  22471. weight: math.unit(10000, "lb"),
  22472. name: "Were",
  22473. image: {
  22474. source: "./media/characters/tahajin/were.svg",
  22475. extra: 801 / 770,
  22476. bottom: 0.042
  22477. }
  22478. },
  22479. aquatic: {
  22480. height: math.unit(6 + 4 / 12, "feet"),
  22481. weight: math.unit(160, "lb"),
  22482. name: "Aquatic",
  22483. image: {
  22484. source: "./media/characters/tahajin/aquatic.svg",
  22485. extra: 572 / 542,
  22486. bottom: 0.04
  22487. }
  22488. },
  22489. chow: {
  22490. height: math.unit(8 + 11 / 12, "feet"),
  22491. weight: math.unit(450, "lb"),
  22492. name: "Chow",
  22493. image: {
  22494. source: "./media/characters/tahajin/chow.svg",
  22495. extra: 660 / 640,
  22496. bottom: 0.015
  22497. }
  22498. },
  22499. demiNaga: {
  22500. height: math.unit(6 + 8 / 12, "feet"),
  22501. weight: math.unit(300, "lb"),
  22502. name: "Demi Naga",
  22503. image: {
  22504. source: "./media/characters/tahajin/demi-naga.svg",
  22505. extra: 643 / 615,
  22506. bottom: 0.1
  22507. }
  22508. },
  22509. data: {
  22510. height: math.unit(5, "inches"),
  22511. weight: math.unit(0.1, "lb"),
  22512. name: "Data",
  22513. image: {
  22514. source: "./media/characters/tahajin/data.svg"
  22515. }
  22516. },
  22517. fluu: {
  22518. height: math.unit(5 + 7 / 12, "feet"),
  22519. weight: math.unit(140, "lb"),
  22520. name: "Fluu",
  22521. image: {
  22522. source: "./media/characters/tahajin/fluu.svg",
  22523. extra: 628 / 592,
  22524. bottom: 0.02
  22525. }
  22526. },
  22527. starWarrior: {
  22528. height: math.unit(4 + 5 / 12, "feet"),
  22529. weight: math.unit(50, "lb"),
  22530. name: "Star Warrior",
  22531. image: {
  22532. source: "./media/characters/tahajin/star-warrior.svg"
  22533. }
  22534. },
  22535. },
  22536. [
  22537. {
  22538. name: "Normal",
  22539. height: math.unit(25 + 6 / 12, "feet"),
  22540. default: true
  22541. },
  22542. ]
  22543. ))
  22544. characterMakers.push(() => makeCharacter(
  22545. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22546. {
  22547. front: {
  22548. height: math.unit(8, "feet"),
  22549. weight: math.unit(350, "lb"),
  22550. name: "Front",
  22551. image: {
  22552. source: "./media/characters/gabira/front.svg",
  22553. extra: 1261/1154,
  22554. bottom: 51/1312
  22555. }
  22556. },
  22557. back: {
  22558. height: math.unit(8, "feet"),
  22559. weight: math.unit(350, "lb"),
  22560. name: "Back",
  22561. image: {
  22562. source: "./media/characters/gabira/back.svg",
  22563. extra: 1265/1163,
  22564. bottom: 46/1311
  22565. }
  22566. },
  22567. head: {
  22568. height: math.unit(2.85, "feet"),
  22569. name: "Head",
  22570. image: {
  22571. source: "./media/characters/gabira/head.svg"
  22572. }
  22573. },
  22574. },
  22575. [
  22576. {
  22577. name: "Normal",
  22578. height: math.unit(8, "feet"),
  22579. default: true
  22580. },
  22581. ]
  22582. ))
  22583. characterMakers.push(() => makeCharacter(
  22584. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22585. {
  22586. front: {
  22587. height: math.unit(5 + 3 / 12, "feet"),
  22588. weight: math.unit(137, "lb"),
  22589. name: "Front",
  22590. image: {
  22591. source: "./media/characters/sasha-katraine/front.svg",
  22592. extra: 1745/1694,
  22593. bottom: 37/1782
  22594. }
  22595. },
  22596. back: {
  22597. height: math.unit(5 + 3 / 12, "feet"),
  22598. weight: math.unit(137, "lb"),
  22599. name: "Back",
  22600. image: {
  22601. source: "./media/characters/sasha-katraine/back.svg",
  22602. extra: 1776/1699,
  22603. bottom: 26/1802
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Micro",
  22610. height: math.unit(5, "inches")
  22611. },
  22612. {
  22613. name: "Normal",
  22614. height: math.unit(5 + 3 / 12, "feet"),
  22615. default: true
  22616. },
  22617. ]
  22618. ))
  22619. characterMakers.push(() => makeCharacter(
  22620. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22621. {
  22622. side: {
  22623. height: math.unit(4, "inches"),
  22624. weight: math.unit(200, "grams"),
  22625. name: "Side",
  22626. image: {
  22627. source: "./media/characters/der/side.svg",
  22628. extra: 719 / 400,
  22629. bottom: 30.6 / 749.9187
  22630. }
  22631. },
  22632. },
  22633. [
  22634. {
  22635. name: "Micro",
  22636. height: math.unit(4, "inches"),
  22637. default: true
  22638. },
  22639. ]
  22640. ))
  22641. characterMakers.push(() => makeCharacter(
  22642. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22643. {
  22644. side: {
  22645. height: math.unit(30, "meters"),
  22646. weight: math.unit(700, "tonnes"),
  22647. name: "Side",
  22648. image: {
  22649. source: "./media/characters/fixerdragon/side.svg",
  22650. extra: (1293.0514 - 116.03) / 1106.86,
  22651. bottom: 116.03 / 1293.0514
  22652. }
  22653. },
  22654. },
  22655. [
  22656. {
  22657. name: "Planck",
  22658. height: math.unit(1.6e-35, "meters")
  22659. },
  22660. {
  22661. name: "Micro",
  22662. height: math.unit(0.4, "meters")
  22663. },
  22664. {
  22665. name: "Normal",
  22666. height: math.unit(30, "meters"),
  22667. default: true
  22668. },
  22669. {
  22670. name: "Megamacro",
  22671. height: math.unit(1.2, "megameters")
  22672. },
  22673. {
  22674. name: "Teramacro",
  22675. height: math.unit(130, "terameters")
  22676. },
  22677. {
  22678. name: "Yottamacro",
  22679. height: math.unit(6200, "yottameters")
  22680. },
  22681. ]
  22682. ));
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22685. {
  22686. front: {
  22687. height: math.unit(8, "feet"),
  22688. weight: math.unit(250, "lb"),
  22689. name: "Front",
  22690. image: {
  22691. source: "./media/characters/kite/front.svg",
  22692. extra: 2796 / 2659,
  22693. bottom: 0.002
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(8, "feet"),
  22701. default: true
  22702. },
  22703. {
  22704. name: "Macro",
  22705. height: math.unit(360, "feet")
  22706. },
  22707. {
  22708. name: "Megamacro",
  22709. height: math.unit(1500, "feet")
  22710. },
  22711. ]
  22712. ))
  22713. characterMakers.push(() => makeCharacter(
  22714. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22715. {
  22716. front: {
  22717. height: math.unit(5 + 11/12, "feet"),
  22718. weight: math.unit(170, "lb"),
  22719. name: "Front",
  22720. image: {
  22721. source: "./media/characters/poojawa-vynar/front.svg",
  22722. extra: 1735/1585,
  22723. bottom: 96/1831
  22724. }
  22725. },
  22726. back: {
  22727. height: math.unit(5 + 11/12, "feet"),
  22728. weight: math.unit(170, "lb"),
  22729. name: "Back",
  22730. image: {
  22731. source: "./media/characters/poojawa-vynar/back.svg",
  22732. extra: 1749/1607,
  22733. bottom: 28/1777
  22734. }
  22735. },
  22736. male: {
  22737. height: math.unit(5 + 11/12, "feet"),
  22738. weight: math.unit(170, "lb"),
  22739. name: "Male",
  22740. image: {
  22741. source: "./media/characters/poojawa-vynar/male.svg",
  22742. extra: 1855/1713,
  22743. bottom: 63/1918
  22744. }
  22745. },
  22746. taur: {
  22747. height: math.unit(5 + 11/12, "feet"),
  22748. weight: math.unit(170, "lb"),
  22749. name: "Taur",
  22750. image: {
  22751. source: "./media/characters/poojawa-vynar/taur.svg",
  22752. extra: 1151/1059,
  22753. bottom: 356/1507
  22754. }
  22755. },
  22756. frontDressed: {
  22757. height: math.unit(5 + 11/12, "feet"),
  22758. weight: math.unit(170, "lb"),
  22759. name: "Front (Dressed)",
  22760. image: {
  22761. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22762. extra: 1735/1585,
  22763. bottom: 96/1831
  22764. }
  22765. },
  22766. backDressed: {
  22767. height: math.unit(5 + 11/12, "feet"),
  22768. weight: math.unit(170, "lb"),
  22769. name: "Back (Dressed)",
  22770. image: {
  22771. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22772. extra: 1749/1607,
  22773. bottom: 28/1777
  22774. }
  22775. },
  22776. maleDressed: {
  22777. height: math.unit(5 + 11/12, "feet"),
  22778. weight: math.unit(170, "lb"),
  22779. name: "Male (Dressed)",
  22780. image: {
  22781. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22782. extra: 1855/1713,
  22783. bottom: 63/1918
  22784. }
  22785. },
  22786. taurDressed: {
  22787. height: math.unit(5 + 11/12, "feet"),
  22788. weight: math.unit(170, "lb"),
  22789. name: "Taur (Dressed)",
  22790. image: {
  22791. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22792. extra: 1151/1059,
  22793. bottom: 356/1507
  22794. }
  22795. },
  22796. maw: {
  22797. height: math.unit(1.46, "feet"),
  22798. name: "Maw",
  22799. image: {
  22800. source: "./media/characters/poojawa-vynar/maw.svg"
  22801. }
  22802. },
  22803. head: {
  22804. height: math.unit(2.34, "feet"),
  22805. name: "Head",
  22806. image: {
  22807. source: "./media/characters/poojawa-vynar/head.svg"
  22808. }
  22809. },
  22810. paw: {
  22811. height: math.unit(1.61, "feet"),
  22812. name: "Paw",
  22813. image: {
  22814. source: "./media/characters/poojawa-vynar/paw.svg"
  22815. }
  22816. },
  22817. pawToering: {
  22818. height: math.unit(1.72, "feet"),
  22819. name: "Paw (Toering)",
  22820. image: {
  22821. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22822. }
  22823. },
  22824. toering: {
  22825. height: math.unit(2.9, "inches"),
  22826. name: "Toering",
  22827. image: {
  22828. source: "./media/characters/poojawa-vynar/toering.svg"
  22829. }
  22830. },
  22831. shaft: {
  22832. height: math.unit(0.625, "feet"),
  22833. name: "Shaft",
  22834. image: {
  22835. source: "./media/characters/poojawa-vynar/shaft.svg"
  22836. }
  22837. },
  22838. spade: {
  22839. height: math.unit(0.42, "feet"),
  22840. name: "Spade",
  22841. image: {
  22842. source: "./media/characters/poojawa-vynar/spade.svg"
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Shortstack",
  22849. height: math.unit(4, "feet")
  22850. },
  22851. {
  22852. name: "Normal",
  22853. height: math.unit(5 + 11 / 12, "feet"),
  22854. default: true
  22855. },
  22856. {
  22857. name: "Tauric",
  22858. height: math.unit(4, "meters")
  22859. },
  22860. ]
  22861. ))
  22862. characterMakers.push(() => makeCharacter(
  22863. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22864. {
  22865. front: {
  22866. height: math.unit(293, "meters"),
  22867. weight: math.unit(70400, "tons"),
  22868. name: "Front",
  22869. image: {
  22870. source: "./media/characters/violette/front.svg",
  22871. extra: 1227 / 1180,
  22872. bottom: 0.005
  22873. }
  22874. },
  22875. back: {
  22876. height: math.unit(293, "meters"),
  22877. weight: math.unit(70400, "tons"),
  22878. name: "Back",
  22879. image: {
  22880. source: "./media/characters/violette/back.svg",
  22881. extra: 1227 / 1180,
  22882. bottom: 0.005
  22883. }
  22884. },
  22885. },
  22886. [
  22887. {
  22888. name: "Macro",
  22889. height: math.unit(293, "meters"),
  22890. default: true
  22891. },
  22892. ]
  22893. ))
  22894. characterMakers.push(() => makeCharacter(
  22895. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22896. {
  22897. front: {
  22898. height: math.unit(1050, "feet"),
  22899. weight: math.unit(200000, "tons"),
  22900. name: "Front",
  22901. image: {
  22902. source: "./media/characters/alessandra/front.svg",
  22903. extra: 960 / 912,
  22904. bottom: 0.06
  22905. }
  22906. },
  22907. },
  22908. [
  22909. {
  22910. name: "Macro",
  22911. height: math.unit(1050, "feet")
  22912. },
  22913. {
  22914. name: "Macro+",
  22915. height: math.unit(900, "meters"),
  22916. default: true
  22917. },
  22918. ]
  22919. ))
  22920. characterMakers.push(() => makeCharacter(
  22921. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22922. {
  22923. front: {
  22924. height: math.unit(5, "feet"),
  22925. weight: math.unit(187, "lb"),
  22926. name: "Front",
  22927. image: {
  22928. source: "./media/characters/person/front.svg",
  22929. extra: 3087 / 2945,
  22930. bottom: 91 / 3181
  22931. }
  22932. },
  22933. },
  22934. [
  22935. {
  22936. name: "Micro",
  22937. height: math.unit(3, "inches")
  22938. },
  22939. {
  22940. name: "Normal",
  22941. height: math.unit(5, "feet"),
  22942. default: true
  22943. },
  22944. {
  22945. name: "Macro",
  22946. height: math.unit(90, "feet")
  22947. },
  22948. {
  22949. name: "Max Size",
  22950. height: math.unit(280, "feet")
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22956. {
  22957. front: {
  22958. height: math.unit(4.5, "meters"),
  22959. weight: math.unit(3200, "lb"),
  22960. name: "Front",
  22961. image: {
  22962. source: "./media/characters/ty/front.svg",
  22963. extra: 1038 / 960,
  22964. bottom: 31.156 / 1068
  22965. }
  22966. },
  22967. back: {
  22968. height: math.unit(4.5, "meters"),
  22969. weight: math.unit(3200, "lb"),
  22970. name: "Back",
  22971. image: {
  22972. source: "./media/characters/ty/back.svg",
  22973. extra: 1044 / 966,
  22974. bottom: 7.48 / 1049
  22975. }
  22976. },
  22977. },
  22978. [
  22979. {
  22980. name: "Normal",
  22981. height: math.unit(4.5, "meters"),
  22982. default: true
  22983. },
  22984. ]
  22985. ))
  22986. characterMakers.push(() => makeCharacter(
  22987. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22988. {
  22989. front: {
  22990. height: math.unit(5 + 4 / 12, "feet"),
  22991. weight: math.unit(115, "lb"),
  22992. name: "Front",
  22993. image: {
  22994. source: "./media/characters/rocky/front.svg",
  22995. extra: 1012 / 975,
  22996. bottom: 54 / 1066
  22997. }
  22998. },
  22999. },
  23000. [
  23001. {
  23002. name: "Normal",
  23003. height: math.unit(5 + 4 / 12, "feet"),
  23004. default: true
  23005. },
  23006. ]
  23007. ))
  23008. characterMakers.push(() => makeCharacter(
  23009. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23010. {
  23011. upright: {
  23012. height: math.unit(6, "meters"),
  23013. weight: math.unit(4000, "kg"),
  23014. name: "Upright",
  23015. image: {
  23016. source: "./media/characters/ruin/upright.svg",
  23017. extra: 668 / 661,
  23018. bottom: 42 / 799.8396
  23019. }
  23020. },
  23021. },
  23022. [
  23023. {
  23024. name: "Normal",
  23025. height: math.unit(6, "meters"),
  23026. default: true
  23027. },
  23028. ]
  23029. ))
  23030. characterMakers.push(() => makeCharacter(
  23031. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23032. {
  23033. front: {
  23034. height: math.unit(5, "feet"),
  23035. weight: math.unit(106, "lb"),
  23036. name: "Front",
  23037. image: {
  23038. source: "./media/characters/robin/front.svg",
  23039. extra: 862 / 799,
  23040. bottom: 42.4 / 914.8856
  23041. }
  23042. },
  23043. },
  23044. [
  23045. {
  23046. name: "Normal",
  23047. height: math.unit(5, "feet"),
  23048. default: true
  23049. },
  23050. ]
  23051. ))
  23052. characterMakers.push(() => makeCharacter(
  23053. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23054. {
  23055. side: {
  23056. height: math.unit(3, "feet"),
  23057. weight: math.unit(225, "lb"),
  23058. name: "Side",
  23059. image: {
  23060. source: "./media/characters/saian/side.svg",
  23061. extra: 566 / 356,
  23062. bottom: 79.7 / 643
  23063. }
  23064. },
  23065. maw: {
  23066. height: math.unit(2.85, "feet"),
  23067. name: "Maw",
  23068. image: {
  23069. source: "./media/characters/saian/maw.svg"
  23070. }
  23071. },
  23072. },
  23073. [
  23074. {
  23075. name: "Normal",
  23076. height: math.unit(3, "feet"),
  23077. default: true
  23078. },
  23079. ]
  23080. ))
  23081. characterMakers.push(() => makeCharacter(
  23082. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23083. {
  23084. side: {
  23085. height: math.unit(8, "feet"),
  23086. weight: math.unit(300, "lb"),
  23087. name: "Side",
  23088. image: {
  23089. source: "./media/characters/equus-silvermane/side.svg",
  23090. extra: 2176 / 2050,
  23091. bottom: 65.7 / 2245
  23092. }
  23093. },
  23094. front: {
  23095. height: math.unit(8, "feet"),
  23096. weight: math.unit(300, "lb"),
  23097. name: "Front",
  23098. image: {
  23099. source: "./media/characters/equus-silvermane/front.svg",
  23100. extra: 4633 / 4400,
  23101. bottom: 71.3 / 4706.915
  23102. }
  23103. },
  23104. sideStepping: {
  23105. height: math.unit(8, "feet"),
  23106. weight: math.unit(300, "lb"),
  23107. name: "Side (Stepping)",
  23108. image: {
  23109. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23110. extra: 1968 / 1860,
  23111. bottom: 16.4 / 1989
  23112. }
  23113. },
  23114. },
  23115. [
  23116. {
  23117. name: "Normal",
  23118. height: math.unit(8, "feet")
  23119. },
  23120. {
  23121. name: "Minimacro",
  23122. height: math.unit(75, "feet"),
  23123. default: true
  23124. },
  23125. {
  23126. name: "Macro",
  23127. height: math.unit(150, "feet")
  23128. },
  23129. {
  23130. name: "Macro+",
  23131. height: math.unit(1000, "feet")
  23132. },
  23133. {
  23134. name: "Megamacro",
  23135. height: math.unit(1, "mile")
  23136. },
  23137. ]
  23138. ))
  23139. characterMakers.push(() => makeCharacter(
  23140. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23141. {
  23142. side: {
  23143. height: math.unit(20, "feet"),
  23144. weight: math.unit(30000, "kg"),
  23145. name: "Side",
  23146. image: {
  23147. source: "./media/characters/windar/side.svg",
  23148. extra: 1491 / 1248,
  23149. bottom: 82.56 / 1568
  23150. }
  23151. },
  23152. },
  23153. [
  23154. {
  23155. name: "Normal",
  23156. height: math.unit(20, "feet"),
  23157. default: true
  23158. },
  23159. ]
  23160. ))
  23161. characterMakers.push(() => makeCharacter(
  23162. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23163. {
  23164. side: {
  23165. height: math.unit(15.66, "feet"),
  23166. weight: math.unit(150, "lb"),
  23167. name: "Side",
  23168. image: {
  23169. source: "./media/characters/melody/side.svg",
  23170. extra: 1097 / 944,
  23171. bottom: 11.8 / 1109
  23172. }
  23173. },
  23174. sideOutfit: {
  23175. height: math.unit(15.66, "feet"),
  23176. weight: math.unit(150, "lb"),
  23177. name: "Side (Outfit)",
  23178. image: {
  23179. source: "./media/characters/melody/side-outfit.svg",
  23180. extra: 1097 / 944,
  23181. bottom: 11.8 / 1109
  23182. }
  23183. },
  23184. },
  23185. [
  23186. {
  23187. name: "Normal",
  23188. height: math.unit(15.66, "feet"),
  23189. default: true
  23190. },
  23191. ]
  23192. ))
  23193. characterMakers.push(() => makeCharacter(
  23194. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23195. {
  23196. armoredFront: {
  23197. height: math.unit(8, "feet"),
  23198. weight: math.unit(325, "lb"),
  23199. name: "Front",
  23200. image: {
  23201. source: "./media/characters/windera/armored-front.svg",
  23202. extra: 1830/1598,
  23203. bottom: 151/1981
  23204. },
  23205. form: "armored",
  23206. default: true
  23207. },
  23208. macroFront: {
  23209. height: math.unit(70, "feet"),
  23210. weight: math.unit(315453, "lb"),
  23211. name: "Front",
  23212. image: {
  23213. source: "./media/characters/windera/macro-front.svg",
  23214. extra: 963/883,
  23215. bottom: 23/986
  23216. },
  23217. form: "macro",
  23218. default: true
  23219. },
  23220. },
  23221. [
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(8, "feet"),
  23225. default: true,
  23226. form: "armored"
  23227. },
  23228. {
  23229. name: "Normal",
  23230. height: math.unit(70, "feet"),
  23231. default: true,
  23232. form: "macro"
  23233. },
  23234. ],
  23235. {
  23236. "armored": {
  23237. name: "Armored",
  23238. default: true
  23239. },
  23240. "macro": {
  23241. name: "Macro",
  23242. },
  23243. }
  23244. ))
  23245. characterMakers.push(() => makeCharacter(
  23246. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23247. {
  23248. front: {
  23249. height: math.unit(28.75, "feet"),
  23250. weight: math.unit(2000, "kg"),
  23251. name: "Front",
  23252. image: {
  23253. source: "./media/characters/sonear/front.svg",
  23254. extra: 1041.1 / 964.9,
  23255. bottom: 53.7 / 1096.6
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Normal",
  23262. height: math.unit(28.75, "feet"),
  23263. default: true
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23269. {
  23270. side: {
  23271. height: math.unit(25.5, "feet"),
  23272. weight: math.unit(23000, "kg"),
  23273. name: "Side",
  23274. image: {
  23275. source: "./media/characters/kanara/side.svg"
  23276. }
  23277. },
  23278. },
  23279. [
  23280. {
  23281. name: "Normal",
  23282. height: math.unit(25.5, "feet"),
  23283. default: true
  23284. },
  23285. ]
  23286. ))
  23287. characterMakers.push(() => makeCharacter(
  23288. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23289. {
  23290. side: {
  23291. height: math.unit(10, "feet"),
  23292. weight: math.unit(1000, "kg"),
  23293. name: "Side",
  23294. image: {
  23295. source: "./media/characters/ereus/side.svg",
  23296. extra: 1157 / 959,
  23297. bottom: 153 / 1312.5
  23298. }
  23299. },
  23300. },
  23301. [
  23302. {
  23303. name: "Normal",
  23304. height: math.unit(10, "feet"),
  23305. default: true
  23306. },
  23307. ]
  23308. ))
  23309. characterMakers.push(() => makeCharacter(
  23310. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23311. {
  23312. side: {
  23313. height: math.unit(4.5, "feet"),
  23314. weight: math.unit(500, "lb"),
  23315. name: "Side",
  23316. image: {
  23317. source: "./media/characters/e-ter/side.svg",
  23318. extra: 1550 / 1248,
  23319. bottom: 146 / 1694
  23320. }
  23321. },
  23322. },
  23323. [
  23324. {
  23325. name: "Normal",
  23326. height: math.unit(4.5, "feet"),
  23327. default: true
  23328. },
  23329. ]
  23330. ))
  23331. characterMakers.push(() => makeCharacter(
  23332. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23333. {
  23334. side: {
  23335. height: math.unit(9.7, "feet"),
  23336. weight: math.unit(4000, "kg"),
  23337. name: "Side",
  23338. image: {
  23339. source: "./media/characters/yamie/side.svg"
  23340. }
  23341. },
  23342. },
  23343. [
  23344. {
  23345. name: "Normal",
  23346. height: math.unit(9.7, "feet"),
  23347. default: true
  23348. },
  23349. ]
  23350. ))
  23351. characterMakers.push(() => makeCharacter(
  23352. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23353. {
  23354. front: {
  23355. height: math.unit(50, "feet"),
  23356. weight: math.unit(50000, "kg"),
  23357. name: "Front",
  23358. image: {
  23359. source: "./media/characters/anders/front.svg",
  23360. extra: 570 / 539,
  23361. bottom: 14.7 / 586.7
  23362. }
  23363. },
  23364. },
  23365. [
  23366. {
  23367. name: "Large",
  23368. height: math.unit(50, "feet")
  23369. },
  23370. {
  23371. name: "Macro",
  23372. height: math.unit(2000, "feet"),
  23373. default: true
  23374. },
  23375. {
  23376. name: "Megamacro",
  23377. height: math.unit(12, "miles")
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23383. {
  23384. front: {
  23385. height: math.unit(7 + 2 / 12, "feet"),
  23386. weight: math.unit(300, "lb"),
  23387. name: "Front",
  23388. image: {
  23389. source: "./media/characters/reban/front.svg",
  23390. extra: 1287/1212,
  23391. bottom: 148/1435
  23392. }
  23393. },
  23394. head: {
  23395. height: math.unit(1.95, "feet"),
  23396. name: "Head",
  23397. image: {
  23398. source: "./media/characters/reban/head.svg"
  23399. }
  23400. },
  23401. maw: {
  23402. height: math.unit(0.95, "feet"),
  23403. name: "Maw",
  23404. image: {
  23405. source: "./media/characters/reban/maw.svg"
  23406. }
  23407. },
  23408. foot: {
  23409. height: math.unit(1.65, "feet"),
  23410. name: "Foot",
  23411. image: {
  23412. source: "./media/characters/reban/foot.svg"
  23413. }
  23414. },
  23415. dick: {
  23416. height: math.unit(7 / 5, "feet"),
  23417. name: "Dick",
  23418. image: {
  23419. source: "./media/characters/reban/dick.svg"
  23420. }
  23421. },
  23422. },
  23423. [
  23424. {
  23425. name: "Natural Height",
  23426. height: math.unit(7 + 2 / 12, "feet")
  23427. },
  23428. {
  23429. name: "Macro",
  23430. height: math.unit(500, "feet"),
  23431. default: true
  23432. },
  23433. {
  23434. name: "Canon Height",
  23435. height: math.unit(50, "AU")
  23436. },
  23437. ]
  23438. ))
  23439. characterMakers.push(() => makeCharacter(
  23440. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23441. {
  23442. front: {
  23443. height: math.unit(6, "feet"),
  23444. weight: math.unit(150, "lb"),
  23445. name: "Front",
  23446. image: {
  23447. source: "./media/characters/terrance-keayes/front.svg",
  23448. extra: 1.005,
  23449. bottom: 151 / 1615
  23450. }
  23451. },
  23452. side: {
  23453. height: math.unit(6, "feet"),
  23454. weight: math.unit(150, "lb"),
  23455. name: "Side",
  23456. image: {
  23457. source: "./media/characters/terrance-keayes/side.svg",
  23458. extra: 1.005,
  23459. bottom: 129.4 / 1544
  23460. }
  23461. },
  23462. back: {
  23463. height: math.unit(6, "feet"),
  23464. weight: math.unit(150, "lb"),
  23465. name: "Back",
  23466. image: {
  23467. source: "./media/characters/terrance-keayes/back.svg",
  23468. extra: 1.005,
  23469. bottom: 58.4 / 1557.3
  23470. }
  23471. },
  23472. dick: {
  23473. height: math.unit(6 * 0.208, "feet"),
  23474. name: "Dick",
  23475. image: {
  23476. source: "./media/characters/terrance-keayes/dick.svg"
  23477. }
  23478. },
  23479. },
  23480. [
  23481. {
  23482. name: "Canon Height",
  23483. height: math.unit(35, "miles"),
  23484. default: true
  23485. },
  23486. ]
  23487. ))
  23488. characterMakers.push(() => makeCharacter(
  23489. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23490. {
  23491. front: {
  23492. height: math.unit(6, "feet"),
  23493. weight: math.unit(150, "lb"),
  23494. name: "Front",
  23495. image: {
  23496. source: "./media/characters/ofelia/front.svg",
  23497. extra: 1130/1117,
  23498. bottom: 91/1221
  23499. }
  23500. },
  23501. back: {
  23502. height: math.unit(6, "feet"),
  23503. weight: math.unit(150, "lb"),
  23504. name: "Back",
  23505. image: {
  23506. source: "./media/characters/ofelia/back.svg",
  23507. extra: 1172/1159,
  23508. bottom: 28/1200
  23509. }
  23510. },
  23511. maw: {
  23512. height: math.unit(1, "feet"),
  23513. name: "Maw",
  23514. image: {
  23515. source: "./media/characters/ofelia/maw.svg"
  23516. }
  23517. },
  23518. foot: {
  23519. height: math.unit(1.949, "feet"),
  23520. name: "Foot",
  23521. image: {
  23522. source: "./media/characters/ofelia/foot.svg"
  23523. }
  23524. },
  23525. },
  23526. [
  23527. {
  23528. name: "Canon Height",
  23529. height: math.unit(2000, "miles"),
  23530. default: true
  23531. },
  23532. ]
  23533. ))
  23534. characterMakers.push(() => makeCharacter(
  23535. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23536. {
  23537. front: {
  23538. height: math.unit(6, "feet"),
  23539. weight: math.unit(150, "lb"),
  23540. name: "Front",
  23541. image: {
  23542. source: "./media/characters/samuel/front.svg",
  23543. extra: 265 / 258,
  23544. bottom: 2 / 266.1566
  23545. }
  23546. },
  23547. },
  23548. [
  23549. {
  23550. name: "Macro",
  23551. height: math.unit(100, "feet"),
  23552. default: true
  23553. },
  23554. {
  23555. name: "Full Size",
  23556. height: math.unit(1000, "miles")
  23557. },
  23558. ]
  23559. ))
  23560. characterMakers.push(() => makeCharacter(
  23561. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23562. {
  23563. front: {
  23564. height: math.unit(6, "feet"),
  23565. weight: math.unit(300, "lb"),
  23566. name: "Front",
  23567. image: {
  23568. source: "./media/characters/beishir-kiel/front.svg",
  23569. extra: 569 / 547,
  23570. bottom: 41.9 / 609
  23571. }
  23572. },
  23573. maw: {
  23574. height: math.unit(6 * 0.202, "feet"),
  23575. name: "Maw",
  23576. image: {
  23577. source: "./media/characters/beishir-kiel/maw.svg"
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Macro",
  23584. height: math.unit(300, "feet"),
  23585. default: true
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23591. {
  23592. front: {
  23593. height: math.unit(5 + 7/12, "feet"),
  23594. weight: math.unit(120, "lb"),
  23595. name: "Front",
  23596. image: {
  23597. source: "./media/characters/logan-grey/front.svg",
  23598. extra: 1836/1738,
  23599. bottom: 108/1944
  23600. }
  23601. },
  23602. back: {
  23603. height: math.unit(5 + 7/12, "feet"),
  23604. weight: math.unit(120, "lb"),
  23605. name: "Back",
  23606. image: {
  23607. source: "./media/characters/logan-grey/back.svg",
  23608. extra: 1880/1794,
  23609. bottom: 24/1904
  23610. }
  23611. },
  23612. frontSfw: {
  23613. height: math.unit(5 + 7/12, "feet"),
  23614. weight: math.unit(120, "lb"),
  23615. name: "Front (SFW)",
  23616. image: {
  23617. source: "./media/characters/logan-grey/front-sfw.svg",
  23618. extra: 1836/1738,
  23619. bottom: 108/1944
  23620. }
  23621. },
  23622. backSfw: {
  23623. height: math.unit(5 + 7/12, "feet"),
  23624. weight: math.unit(120, "lb"),
  23625. name: "Back (SFW)",
  23626. image: {
  23627. source: "./media/characters/logan-grey/back-sfw.svg",
  23628. extra: 1880/1794,
  23629. bottom: 24/1904
  23630. }
  23631. },
  23632. hands: {
  23633. height: math.unit(0.84, "feet"),
  23634. name: "Hands",
  23635. image: {
  23636. source: "./media/characters/logan-grey/hands.svg"
  23637. }
  23638. },
  23639. paws: {
  23640. height: math.unit(0.72, "feet"),
  23641. name: "Paws",
  23642. image: {
  23643. source: "./media/characters/logan-grey/paws.svg"
  23644. }
  23645. },
  23646. cock: {
  23647. height: math.unit(1.45, "feet"),
  23648. name: "Cock",
  23649. image: {
  23650. source: "./media/characters/logan-grey/cock.svg"
  23651. }
  23652. },
  23653. cockAlt: {
  23654. height: math.unit(1.437, "feet"),
  23655. name: "Cock (alt)",
  23656. image: {
  23657. source: "./media/characters/logan-grey/cock-alt.svg"
  23658. }
  23659. },
  23660. },
  23661. [
  23662. {
  23663. name: "Normal",
  23664. height: math.unit(5 + 8 / 12, "feet")
  23665. },
  23666. {
  23667. name: "The 500 Foot Femboy",
  23668. height: math.unit(500, "feet"),
  23669. default: true
  23670. },
  23671. {
  23672. name: "Megmacro",
  23673. height: math.unit(20, "miles")
  23674. },
  23675. ]
  23676. ))
  23677. characterMakers.push(() => makeCharacter(
  23678. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23679. {
  23680. front: {
  23681. height: math.unit(8 + 2 / 12, "feet"),
  23682. weight: math.unit(275, "lb"),
  23683. name: "Front",
  23684. image: {
  23685. source: "./media/characters/draganta/front.svg",
  23686. extra: 1177 / 1135,
  23687. bottom: 33.46 / 1212.1
  23688. }
  23689. },
  23690. },
  23691. [
  23692. {
  23693. name: "Normal",
  23694. height: math.unit(8 + 6 / 12, "feet"),
  23695. default: true
  23696. },
  23697. {
  23698. name: "Macro",
  23699. height: math.unit(150, "feet")
  23700. },
  23701. {
  23702. name: "Megamacro",
  23703. height: math.unit(1000, "miles")
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23709. {
  23710. front: {
  23711. height: math.unit(1.72, "m"),
  23712. weight: math.unit(80, "lb"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/voski/front.svg",
  23716. extra: 2076.22 / 2022.4,
  23717. bottom: 102.7 / 2177.3866
  23718. }
  23719. },
  23720. frontFlaccid: {
  23721. height: math.unit(1.72, "m"),
  23722. weight: math.unit(80, "lb"),
  23723. name: "Front (Flaccid)",
  23724. image: {
  23725. source: "./media/characters/voski/front-flaccid.svg",
  23726. extra: 2076.22 / 2022.4,
  23727. bottom: 102.7 / 2177.3866
  23728. }
  23729. },
  23730. frontErect: {
  23731. height: math.unit(1.72, "m"),
  23732. weight: math.unit(80, "lb"),
  23733. name: "Front (Erect)",
  23734. image: {
  23735. source: "./media/characters/voski/front-erect.svg",
  23736. extra: 2076.22 / 2022.4,
  23737. bottom: 102.7 / 2177.3866
  23738. }
  23739. },
  23740. back: {
  23741. height: math.unit(1.72, "m"),
  23742. weight: math.unit(80, "lb"),
  23743. name: "Back",
  23744. image: {
  23745. source: "./media/characters/voski/back.svg",
  23746. extra: 2104 / 2051,
  23747. bottom: 10.45 / 2113.63
  23748. }
  23749. },
  23750. },
  23751. [
  23752. {
  23753. name: "Normal",
  23754. height: math.unit(1.72, "m")
  23755. },
  23756. {
  23757. name: "Macro",
  23758. height: math.unit(55, "m"),
  23759. default: true
  23760. },
  23761. {
  23762. name: "Macro+",
  23763. height: math.unit(300, "m")
  23764. },
  23765. {
  23766. name: "Macro++",
  23767. height: math.unit(700, "m")
  23768. },
  23769. {
  23770. name: "Macro+++",
  23771. height: math.unit(4500, "m")
  23772. },
  23773. {
  23774. name: "Macro++++",
  23775. height: math.unit(45, "km")
  23776. },
  23777. {
  23778. name: "Macro+++++",
  23779. height: math.unit(1220, "km")
  23780. },
  23781. ]
  23782. ))
  23783. characterMakers.push(() => makeCharacter(
  23784. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23785. {
  23786. front: {
  23787. height: math.unit(2.3, "m"),
  23788. weight: math.unit(304, "kg"),
  23789. name: "Front",
  23790. image: {
  23791. source: "./media/characters/icowom-lee/front.svg",
  23792. extra: 985 / 955,
  23793. bottom: 25.4 / 1012
  23794. }
  23795. },
  23796. fronttentacles: {
  23797. height: math.unit(2.3, "m"),
  23798. weight: math.unit(304, "kg"),
  23799. name: "Front-tentacles",
  23800. image: {
  23801. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23802. extra: 985 / 955,
  23803. bottom: 25.4 / 1012
  23804. }
  23805. },
  23806. back: {
  23807. height: math.unit(2.3, "m"),
  23808. weight: math.unit(304, "kg"),
  23809. name: "Back",
  23810. image: {
  23811. source: "./media/characters/icowom-lee/back.svg",
  23812. extra: 975 / 954,
  23813. bottom: 9.5 / 985
  23814. }
  23815. },
  23816. backtentacles: {
  23817. height: math.unit(2.3, "m"),
  23818. weight: math.unit(304, "kg"),
  23819. name: "Back-tentacles",
  23820. image: {
  23821. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23822. extra: 975 / 954,
  23823. bottom: 9.5 / 985
  23824. }
  23825. },
  23826. frontDressed: {
  23827. height: math.unit(2.3, "m"),
  23828. weight: math.unit(304, "kg"),
  23829. name: "Front (Dressed)",
  23830. image: {
  23831. source: "./media/characters/icowom-lee/front-dressed.svg",
  23832. extra: 3076 / 2933,
  23833. bottom: 51.4 / 3125.1889
  23834. }
  23835. },
  23836. rump: {
  23837. height: math.unit(0.776, "meters"),
  23838. name: "Rump",
  23839. image: {
  23840. source: "./media/characters/icowom-lee/rump.svg"
  23841. }
  23842. },
  23843. genitals: {
  23844. height: math.unit(0.78, "meters"),
  23845. name: "Genitals",
  23846. image: {
  23847. source: "./media/characters/icowom-lee/genitals.svg"
  23848. }
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Normal",
  23854. height: math.unit(2.3, "meters"),
  23855. default: true
  23856. },
  23857. {
  23858. name: "Macro",
  23859. height: math.unit(94, "meters"),
  23860. default: true
  23861. },
  23862. ]
  23863. ))
  23864. characterMakers.push(() => makeCharacter(
  23865. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23866. {
  23867. front: {
  23868. height: math.unit(22, "meters"),
  23869. weight: math.unit(21000, "kg"),
  23870. name: "Front",
  23871. image: {
  23872. source: "./media/characters/shock-diamond/front.svg",
  23873. extra: 2204 / 2053,
  23874. bottom: 65 / 2239.47
  23875. }
  23876. },
  23877. frontNude: {
  23878. height: math.unit(22, "meters"),
  23879. weight: math.unit(21000, "kg"),
  23880. name: "Front (Nude)",
  23881. image: {
  23882. source: "./media/characters/shock-diamond/front-nude.svg",
  23883. extra: 2514 / 2285,
  23884. bottom: 13 / 2527.56
  23885. }
  23886. },
  23887. },
  23888. [
  23889. {
  23890. name: "Normal",
  23891. height: math.unit(3, "meters")
  23892. },
  23893. {
  23894. name: "Macro",
  23895. height: math.unit(22, "meters"),
  23896. default: true
  23897. },
  23898. ]
  23899. ))
  23900. characterMakers.push(() => makeCharacter(
  23901. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23902. {
  23903. front: {
  23904. height: math.unit(5 + 4 / 12, "feet"),
  23905. weight: math.unit(120, "lb"),
  23906. name: "Front",
  23907. image: {
  23908. source: "./media/characters/rory/front.svg",
  23909. extra: 1318/1241,
  23910. bottom: 42/1360
  23911. }
  23912. },
  23913. back: {
  23914. height: math.unit(5 + 4 / 12, "feet"),
  23915. weight: math.unit(120, "lb"),
  23916. name: "Back",
  23917. image: {
  23918. source: "./media/characters/rory/back.svg",
  23919. extra: 1318/1241,
  23920. bottom: 42/1360
  23921. }
  23922. },
  23923. butt: {
  23924. height: math.unit(1.74, "feet"),
  23925. name: "Butt",
  23926. image: {
  23927. source: "./media/characters/rory/butt.svg"
  23928. }
  23929. },
  23930. dick: {
  23931. height: math.unit(1.02, "feet"),
  23932. name: "Dick",
  23933. image: {
  23934. source: "./media/characters/rory/dick.svg"
  23935. }
  23936. },
  23937. paws: {
  23938. height: math.unit(1, "feet"),
  23939. name: "Paws",
  23940. image: {
  23941. source: "./media/characters/rory/paws.svg"
  23942. }
  23943. },
  23944. frontAlt: {
  23945. height: math.unit(5 + 4 / 12, "feet"),
  23946. weight: math.unit(120, "lb"),
  23947. name: "Front (Alt)",
  23948. image: {
  23949. source: "./media/characters/rory/front-alt.svg",
  23950. extra: 589 / 556,
  23951. bottom: 45.7 / 635.76
  23952. }
  23953. },
  23954. frontAltNude: {
  23955. height: math.unit(5 + 4 / 12, "feet"),
  23956. weight: math.unit(120, "lb"),
  23957. name: "Front (Alt, Nude)",
  23958. image: {
  23959. source: "./media/characters/rory/front-alt-nude.svg",
  23960. extra: 589 / 556,
  23961. bottom: 45.7 / 635.76
  23962. }
  23963. },
  23964. side: {
  23965. height: math.unit(5 + 4 / 12, "feet"),
  23966. weight: math.unit(120, "lb"),
  23967. name: "Side",
  23968. image: {
  23969. source: "./media/characters/rory/side.svg",
  23970. extra: 597 / 564,
  23971. bottom: 55 / 653
  23972. }
  23973. },
  23974. backAlt: {
  23975. height: math.unit(5 + 4 / 12, "feet"),
  23976. weight: math.unit(120, "lb"),
  23977. name: "Back (Alt)",
  23978. image: {
  23979. source: "./media/characters/rory/back-alt.svg",
  23980. extra: 620 / 585,
  23981. bottom: 8.86 / 630.43
  23982. }
  23983. },
  23984. dickAlt: {
  23985. height: math.unit(0.86, "feet"),
  23986. name: "Dick (Alt)",
  23987. image: {
  23988. source: "./media/characters/rory/dick-alt.svg"
  23989. }
  23990. },
  23991. },
  23992. [
  23993. {
  23994. name: "Normal",
  23995. height: math.unit(5 + 4 / 12, "feet"),
  23996. default: true
  23997. },
  23998. {
  23999. name: "Macro",
  24000. height: math.unit(100, "feet")
  24001. },
  24002. {
  24003. name: "Macro+",
  24004. height: math.unit(140, "feet")
  24005. },
  24006. {
  24007. name: "Macro++",
  24008. height: math.unit(300, "feet")
  24009. },
  24010. ]
  24011. ))
  24012. characterMakers.push(() => makeCharacter(
  24013. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24014. {
  24015. front: {
  24016. height: math.unit(5 + 9 / 12, "feet"),
  24017. weight: math.unit(190, "lb"),
  24018. name: "Front",
  24019. image: {
  24020. source: "./media/characters/sprisk/front.svg",
  24021. extra: 1225 / 1180,
  24022. bottom: 42.7 / 1266.4
  24023. }
  24024. },
  24025. frontNsfw: {
  24026. height: math.unit(5 + 9 / 12, "feet"),
  24027. weight: math.unit(190, "lb"),
  24028. name: "Front (NSFW)",
  24029. image: {
  24030. source: "./media/characters/sprisk/front-nsfw.svg",
  24031. extra: 1225 / 1180,
  24032. bottom: 42.7 / 1266.4
  24033. }
  24034. },
  24035. back: {
  24036. height: math.unit(5 + 9 / 12, "feet"),
  24037. weight: math.unit(190, "lb"),
  24038. name: "Back",
  24039. image: {
  24040. source: "./media/characters/sprisk/back.svg",
  24041. extra: 1247 / 1200,
  24042. bottom: 5.6 / 1253.04
  24043. }
  24044. },
  24045. },
  24046. [
  24047. {
  24048. name: "Tiny",
  24049. height: math.unit(2, "inches")
  24050. },
  24051. {
  24052. name: "Normal",
  24053. height: math.unit(5 + 9 / 12, "feet"),
  24054. default: true
  24055. },
  24056. {
  24057. name: "Mini Macro",
  24058. height: math.unit(18, "feet")
  24059. },
  24060. {
  24061. name: "Macro",
  24062. height: math.unit(100, "feet")
  24063. },
  24064. {
  24065. name: "MACRO",
  24066. height: math.unit(50, "miles")
  24067. },
  24068. {
  24069. name: "M A C R O",
  24070. height: math.unit(300, "miles")
  24071. },
  24072. ]
  24073. ))
  24074. characterMakers.push(() => makeCharacter(
  24075. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24076. {
  24077. side: {
  24078. height: math.unit(15.6, "meters"),
  24079. weight: math.unit(700000, "kg"),
  24080. name: "Side",
  24081. image: {
  24082. source: "./media/characters/bunsen/side.svg",
  24083. extra: 1644 / 358
  24084. }
  24085. },
  24086. foot: {
  24087. height: math.unit(1.611 * 1644 / 358, "meter"),
  24088. name: "Foot",
  24089. image: {
  24090. source: "./media/characters/bunsen/foot.svg"
  24091. }
  24092. },
  24093. },
  24094. [
  24095. {
  24096. name: "Small",
  24097. height: math.unit(10, "feet")
  24098. },
  24099. {
  24100. name: "Normal",
  24101. height: math.unit(15.6, "meters"),
  24102. default: true
  24103. },
  24104. ]
  24105. ))
  24106. characterMakers.push(() => makeCharacter(
  24107. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24108. {
  24109. front: {
  24110. height: math.unit(4 + 11 / 12, "feet"),
  24111. weight: math.unit(140, "lb"),
  24112. name: "Front",
  24113. image: {
  24114. source: "./media/characters/sesh/front.svg",
  24115. extra: 3420 / 3231,
  24116. bottom: 72 / 3949.5
  24117. }
  24118. },
  24119. },
  24120. [
  24121. {
  24122. name: "Normal",
  24123. height: math.unit(4 + 11 / 12, "feet")
  24124. },
  24125. {
  24126. name: "Grown",
  24127. height: math.unit(15, "feet"),
  24128. default: true
  24129. },
  24130. {
  24131. name: "Macro",
  24132. height: math.unit(1500, "feet")
  24133. },
  24134. {
  24135. name: "Megamacro",
  24136. height: math.unit(30, "miles")
  24137. },
  24138. {
  24139. name: "Continental",
  24140. height: math.unit(3000, "miles")
  24141. },
  24142. {
  24143. name: "Gravity Mass",
  24144. height: math.unit(300000, "miles")
  24145. },
  24146. {
  24147. name: "Planet Buster",
  24148. height: math.unit(30000000, "miles")
  24149. },
  24150. {
  24151. name: "Big",
  24152. height: math.unit(3000000000, "miles")
  24153. },
  24154. ]
  24155. ))
  24156. characterMakers.push(() => makeCharacter(
  24157. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24158. {
  24159. front: {
  24160. height: math.unit(9, "feet"),
  24161. weight: math.unit(350, "lb"),
  24162. name: "Front",
  24163. image: {
  24164. source: "./media/characters/pepper/front.svg",
  24165. extra: 1448 / 1312,
  24166. bottom: 9.4 / 1457.88
  24167. }
  24168. },
  24169. back: {
  24170. height: math.unit(9, "feet"),
  24171. weight: math.unit(350, "lb"),
  24172. name: "Back",
  24173. image: {
  24174. source: "./media/characters/pepper/back.svg",
  24175. extra: 1423 / 1300,
  24176. bottom: 4.6 / 1429
  24177. }
  24178. },
  24179. maw: {
  24180. height: math.unit(0.932, "feet"),
  24181. name: "Maw",
  24182. image: {
  24183. source: "./media/characters/pepper/maw.svg"
  24184. }
  24185. },
  24186. },
  24187. [
  24188. {
  24189. name: "Normal",
  24190. height: math.unit(9, "feet"),
  24191. default: true
  24192. },
  24193. ]
  24194. ))
  24195. characterMakers.push(() => makeCharacter(
  24196. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24197. {
  24198. front: {
  24199. height: math.unit(6, "feet"),
  24200. weight: math.unit(150, "lb"),
  24201. name: "Front",
  24202. image: {
  24203. source: "./media/characters/maelstrom/front.svg",
  24204. extra: 2100 / 1883,
  24205. bottom: 94 / 2196.7
  24206. }
  24207. },
  24208. },
  24209. [
  24210. {
  24211. name: "Less Kaiju",
  24212. height: math.unit(200, "feet")
  24213. },
  24214. {
  24215. name: "Kaiju",
  24216. height: math.unit(400, "feet"),
  24217. default: true
  24218. },
  24219. {
  24220. name: "Kaiju-er",
  24221. height: math.unit(600, "feet")
  24222. },
  24223. ]
  24224. ))
  24225. characterMakers.push(() => makeCharacter(
  24226. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24227. {
  24228. front: {
  24229. height: math.unit(6 + 5 / 12, "feet"),
  24230. weight: math.unit(180, "lb"),
  24231. name: "Front",
  24232. image: {
  24233. source: "./media/characters/lexir/front.svg",
  24234. extra: 180 / 172,
  24235. bottom: 12 / 192
  24236. }
  24237. },
  24238. back: {
  24239. height: math.unit(6 + 5 / 12, "feet"),
  24240. weight: math.unit(180, "lb"),
  24241. name: "Back",
  24242. image: {
  24243. source: "./media/characters/lexir/back.svg",
  24244. extra: 1273/1201,
  24245. bottom: 39/1312
  24246. }
  24247. },
  24248. },
  24249. [
  24250. {
  24251. name: "Very Smal",
  24252. height: math.unit(1, "nm")
  24253. },
  24254. {
  24255. name: "Normal",
  24256. height: math.unit(6 + 5 / 12, "feet"),
  24257. default: true
  24258. },
  24259. {
  24260. name: "Macro",
  24261. height: math.unit(1, "mile")
  24262. },
  24263. {
  24264. name: "Megamacro",
  24265. height: math.unit(50, "miles")
  24266. },
  24267. ]
  24268. ))
  24269. characterMakers.push(() => makeCharacter(
  24270. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24271. {
  24272. front: {
  24273. height: math.unit(1.5, "meters"),
  24274. weight: math.unit(100, "lb"),
  24275. name: "Front",
  24276. image: {
  24277. source: "./media/characters/maksio/front.svg",
  24278. extra: 1549 / 1531,
  24279. bottom: 123.7 / 1674.5429
  24280. }
  24281. },
  24282. back: {
  24283. height: math.unit(1.5, "meters"),
  24284. weight: math.unit(100, "lb"),
  24285. name: "Back",
  24286. image: {
  24287. source: "./media/characters/maksio/back.svg",
  24288. extra: 1541 / 1509,
  24289. bottom: 97 / 1639
  24290. }
  24291. },
  24292. hand: {
  24293. height: math.unit(0.621, "feet"),
  24294. name: "Hand",
  24295. image: {
  24296. source: "./media/characters/maksio/hand.svg"
  24297. }
  24298. },
  24299. foot: {
  24300. height: math.unit(1.611, "feet"),
  24301. name: "Foot",
  24302. image: {
  24303. source: "./media/characters/maksio/foot.svg"
  24304. }
  24305. },
  24306. },
  24307. [
  24308. {
  24309. name: "Shrunken",
  24310. height: math.unit(10, "cm")
  24311. },
  24312. {
  24313. name: "Normal",
  24314. height: math.unit(150, "cm"),
  24315. default: true
  24316. },
  24317. ]
  24318. ))
  24319. characterMakers.push(() => makeCharacter(
  24320. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24321. {
  24322. front: {
  24323. height: math.unit(100, "feet"),
  24324. name: "Front",
  24325. image: {
  24326. source: "./media/characters/erza-bear/front.svg",
  24327. extra: 2449 / 2390,
  24328. bottom: 46 / 2494
  24329. }
  24330. },
  24331. back: {
  24332. height: math.unit(100, "feet"),
  24333. name: "Back",
  24334. image: {
  24335. source: "./media/characters/erza-bear/back.svg",
  24336. extra: 2489 / 2430,
  24337. bottom: 85.4 / 2480
  24338. }
  24339. },
  24340. tail: {
  24341. height: math.unit(42, "feet"),
  24342. name: "Tail",
  24343. image: {
  24344. source: "./media/characters/erza-bear/tail.svg"
  24345. }
  24346. },
  24347. tongue: {
  24348. height: math.unit(8, "feet"),
  24349. name: "Tongue",
  24350. image: {
  24351. source: "./media/characters/erza-bear/tongue.svg"
  24352. }
  24353. },
  24354. dick: {
  24355. height: math.unit(10.5, "feet"),
  24356. name: "Dick",
  24357. image: {
  24358. source: "./media/characters/erza-bear/dick.svg"
  24359. }
  24360. },
  24361. dickVertical: {
  24362. height: math.unit(16.9, "feet"),
  24363. name: "Dick (Vertical)",
  24364. image: {
  24365. source: "./media/characters/erza-bear/dick-vertical.svg"
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Macro",
  24372. height: math.unit(100, "feet"),
  24373. default: true
  24374. },
  24375. ]
  24376. ))
  24377. characterMakers.push(() => makeCharacter(
  24378. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24379. {
  24380. front: {
  24381. height: math.unit(172, "cm"),
  24382. weight: math.unit(73, "kg"),
  24383. name: "Front",
  24384. image: {
  24385. source: "./media/characters/violet-flor/front.svg",
  24386. extra: 1530 / 1442,
  24387. bottom: 61.9 / 1588.8
  24388. }
  24389. },
  24390. back: {
  24391. height: math.unit(180, "cm"),
  24392. weight: math.unit(73, "kg"),
  24393. name: "Back",
  24394. image: {
  24395. source: "./media/characters/violet-flor/back.svg",
  24396. extra: 1692 / 1630,
  24397. bottom: 20 / 1712
  24398. }
  24399. },
  24400. },
  24401. [
  24402. {
  24403. name: "Normal",
  24404. height: math.unit(172, "cm"),
  24405. default: true
  24406. },
  24407. ]
  24408. ))
  24409. characterMakers.push(() => makeCharacter(
  24410. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24411. {
  24412. front: {
  24413. height: math.unit(6, "feet"),
  24414. weight: math.unit(220, "lb"),
  24415. name: "Front",
  24416. image: {
  24417. source: "./media/characters/lynn-rhea/front.svg",
  24418. extra: 310 / 273
  24419. }
  24420. },
  24421. back: {
  24422. height: math.unit(6, "feet"),
  24423. weight: math.unit(220, "lb"),
  24424. name: "Back",
  24425. image: {
  24426. source: "./media/characters/lynn-rhea/back.svg",
  24427. extra: 310 / 273
  24428. }
  24429. },
  24430. dicks: {
  24431. height: math.unit(0.9, "feet"),
  24432. name: "Dicks",
  24433. image: {
  24434. source: "./media/characters/lynn-rhea/dicks.svg"
  24435. }
  24436. },
  24437. slit: {
  24438. height: math.unit(0.4, "feet"),
  24439. name: "Slit",
  24440. image: {
  24441. source: "./media/characters/lynn-rhea/slit.svg"
  24442. }
  24443. },
  24444. },
  24445. [
  24446. {
  24447. name: "Micro",
  24448. height: math.unit(1, "inch")
  24449. },
  24450. {
  24451. name: "Macro",
  24452. height: math.unit(60, "feet"),
  24453. default: true
  24454. },
  24455. {
  24456. name: "Megamacro",
  24457. height: math.unit(2, "miles")
  24458. },
  24459. {
  24460. name: "Gigamacro",
  24461. height: math.unit(3, "earths")
  24462. },
  24463. {
  24464. name: "Galactic",
  24465. height: math.unit(0.8, "galaxies")
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24471. {
  24472. front: {
  24473. height: math.unit(1600, "feet"),
  24474. weight: math.unit(85758785169, "kg"),
  24475. name: "Front",
  24476. image: {
  24477. source: "./media/characters/valathos/front.svg",
  24478. extra: 1451 / 1339
  24479. }
  24480. },
  24481. },
  24482. [
  24483. {
  24484. name: "Macro",
  24485. height: math.unit(1600, "feet"),
  24486. default: true
  24487. },
  24488. ]
  24489. ))
  24490. characterMakers.push(() => makeCharacter(
  24491. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24492. {
  24493. front: {
  24494. height: math.unit(7 + 5 / 12, "feet"),
  24495. weight: math.unit(300, "lb"),
  24496. name: "Front",
  24497. image: {
  24498. source: "./media/characters/azula/front.svg",
  24499. extra: 3208 / 2880,
  24500. bottom: 80.2 / 3277
  24501. }
  24502. },
  24503. back: {
  24504. height: math.unit(7 + 5 / 12, "feet"),
  24505. weight: math.unit(300, "lb"),
  24506. name: "Back",
  24507. image: {
  24508. source: "./media/characters/azula/back.svg",
  24509. extra: 3169 / 2822,
  24510. bottom: 150.6 / 3321
  24511. }
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "Normal",
  24517. height: math.unit(7 + 5 / 12, "feet"),
  24518. default: true
  24519. },
  24520. {
  24521. name: "Big",
  24522. height: math.unit(20, "feet")
  24523. },
  24524. ]
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24528. {
  24529. front: {
  24530. height: math.unit(5 + 1 / 12, "feet"),
  24531. weight: math.unit(110, "lb"),
  24532. name: "Front",
  24533. image: {
  24534. source: "./media/characters/rupert/front.svg",
  24535. extra: 1549 / 1495,
  24536. bottom: 54.2 / 1604.4
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "Normal",
  24543. height: math.unit(5 + 1 / 12, "feet"),
  24544. default: true
  24545. },
  24546. ]
  24547. ))
  24548. characterMakers.push(() => makeCharacter(
  24549. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24550. {
  24551. front: {
  24552. height: math.unit(8 + 4 / 12, "feet"),
  24553. weight: math.unit(350, "lb"),
  24554. name: "Front",
  24555. image: {
  24556. source: "./media/characters/sheera-castellar/front.svg",
  24557. extra: 1957 / 1894,
  24558. bottom: 26.97 / 1975.017
  24559. }
  24560. },
  24561. side: {
  24562. height: math.unit(8 + 4 / 12, "feet"),
  24563. weight: math.unit(350, "lb"),
  24564. name: "Side",
  24565. image: {
  24566. source: "./media/characters/sheera-castellar/side.svg",
  24567. extra: 1957 / 1894
  24568. }
  24569. },
  24570. back: {
  24571. height: math.unit(8 + 4 / 12, "feet"),
  24572. weight: math.unit(350, "lb"),
  24573. name: "Back",
  24574. image: {
  24575. source: "./media/characters/sheera-castellar/back.svg",
  24576. extra: 1957 / 1894
  24577. }
  24578. },
  24579. angled: {
  24580. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24581. weight: math.unit(350, "lb"),
  24582. name: "Angled",
  24583. image: {
  24584. source: "./media/characters/sheera-castellar/angled.svg",
  24585. extra: 1807 / 1707,
  24586. bottom: 68 / 1875
  24587. }
  24588. },
  24589. genitals: {
  24590. height: math.unit(2.2, "feet"),
  24591. name: "Genitals",
  24592. image: {
  24593. source: "./media/characters/sheera-castellar/genitals.svg"
  24594. }
  24595. },
  24596. taur: {
  24597. height: math.unit(10 + 6/12, "feet"),
  24598. name: "Taur",
  24599. image: {
  24600. source: "./media/characters/sheera-castellar/taur.svg",
  24601. extra: 2017/1909,
  24602. bottom: 185/2202
  24603. }
  24604. },
  24605. },
  24606. [
  24607. {
  24608. name: "Normal",
  24609. height: math.unit(8 + 4 / 12, "feet")
  24610. },
  24611. {
  24612. name: "Macro",
  24613. height: math.unit(150, "feet"),
  24614. default: true
  24615. },
  24616. {
  24617. name: "Macro+",
  24618. height: math.unit(800, "feet")
  24619. },
  24620. ]
  24621. ))
  24622. characterMakers.push(() => makeCharacter(
  24623. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24624. {
  24625. front: {
  24626. height: math.unit(6, "feet"),
  24627. weight: math.unit(150, "lb"),
  24628. name: "Front",
  24629. image: {
  24630. source: "./media/characters/jaipur/front.svg",
  24631. extra: 3860 / 3731,
  24632. bottom: 287 / 4140
  24633. }
  24634. },
  24635. back: {
  24636. height: math.unit(6, "feet"),
  24637. weight: math.unit(150, "lb"),
  24638. name: "Back",
  24639. image: {
  24640. source: "./media/characters/jaipur/back.svg",
  24641. extra: 1637/1561,
  24642. bottom: 154/1791
  24643. }
  24644. },
  24645. },
  24646. [
  24647. {
  24648. name: "Normal",
  24649. height: math.unit(1.85, "meters"),
  24650. default: true
  24651. },
  24652. {
  24653. name: "Macro",
  24654. height: math.unit(150, "meters")
  24655. },
  24656. {
  24657. name: "Macro+",
  24658. height: math.unit(0.5, "miles")
  24659. },
  24660. {
  24661. name: "Macro++",
  24662. height: math.unit(2.5, "miles")
  24663. },
  24664. {
  24665. name: "Macro+++",
  24666. height: math.unit(12, "miles")
  24667. },
  24668. {
  24669. name: "Macro++++",
  24670. height: math.unit(120, "miles")
  24671. },
  24672. {
  24673. name: "Macro+++++",
  24674. height: math.unit(1200, "miles")
  24675. },
  24676. ]
  24677. ))
  24678. characterMakers.push(() => makeCharacter(
  24679. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24680. {
  24681. front: {
  24682. height: math.unit(6, "feet"),
  24683. weight: math.unit(150, "lb"),
  24684. name: "Front",
  24685. image: {
  24686. source: "./media/characters/sheila-wolf/front.svg",
  24687. extra: 1931 / 1808,
  24688. bottom: 29.5 / 1960
  24689. }
  24690. },
  24691. dick: {
  24692. height: math.unit(1.464, "feet"),
  24693. name: "Dick",
  24694. image: {
  24695. source: "./media/characters/sheila-wolf/dick.svg"
  24696. }
  24697. },
  24698. muzzle: {
  24699. height: math.unit(0.513, "feet"),
  24700. name: "Muzzle",
  24701. image: {
  24702. source: "./media/characters/sheila-wolf/muzzle.svg"
  24703. }
  24704. },
  24705. },
  24706. [
  24707. {
  24708. name: "Macro",
  24709. height: math.unit(70, "feet"),
  24710. default: true
  24711. },
  24712. ]
  24713. ))
  24714. characterMakers.push(() => makeCharacter(
  24715. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24716. {
  24717. front: {
  24718. height: math.unit(32, "meters"),
  24719. weight: math.unit(300000, "kg"),
  24720. name: "Front",
  24721. image: {
  24722. source: "./media/characters/almor/front.svg",
  24723. extra: 1408 / 1322,
  24724. bottom: 94.6 / 1506.5
  24725. }
  24726. },
  24727. },
  24728. [
  24729. {
  24730. name: "Macro",
  24731. height: math.unit(32, "meters"),
  24732. default: true
  24733. },
  24734. ]
  24735. ))
  24736. characterMakers.push(() => makeCharacter(
  24737. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24738. {
  24739. front: {
  24740. height: math.unit(7, "feet"),
  24741. weight: math.unit(200, "lb"),
  24742. name: "Front",
  24743. image: {
  24744. source: "./media/characters/silver/front.svg",
  24745. extra: 472.1 / 450.5,
  24746. bottom: 26.5 / 499.424
  24747. }
  24748. },
  24749. },
  24750. [
  24751. {
  24752. name: "Normal",
  24753. height: math.unit(7, "feet"),
  24754. default: true
  24755. },
  24756. {
  24757. name: "Macro",
  24758. height: math.unit(800, "feet")
  24759. },
  24760. {
  24761. name: "Megamacro",
  24762. height: math.unit(250, "miles")
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24768. {
  24769. front: {
  24770. height: math.unit(6, "feet"),
  24771. weight: math.unit(150, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/pliskin/front.svg",
  24775. extra: 1469 / 1359,
  24776. bottom: 70 / 1540
  24777. }
  24778. },
  24779. },
  24780. [
  24781. {
  24782. name: "Micro",
  24783. height: math.unit(3, "inches")
  24784. },
  24785. {
  24786. name: "Normal",
  24787. height: math.unit(5 + 11 / 12, "feet"),
  24788. default: true
  24789. },
  24790. {
  24791. name: "Macro",
  24792. height: math.unit(120, "feet")
  24793. },
  24794. ]
  24795. ))
  24796. characterMakers.push(() => makeCharacter(
  24797. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24798. {
  24799. front: {
  24800. height: math.unit(6, "feet"),
  24801. weight: math.unit(150, "lb"),
  24802. name: "Front",
  24803. image: {
  24804. source: "./media/characters/sammy/front.svg",
  24805. extra: 1193 / 1089,
  24806. bottom: 30.5 / 1226
  24807. }
  24808. },
  24809. },
  24810. [
  24811. {
  24812. name: "Macro",
  24813. height: math.unit(1700, "feet"),
  24814. default: true
  24815. },
  24816. {
  24817. name: "Examacro",
  24818. height: math.unit(2.5e9, "lightyears")
  24819. },
  24820. ]
  24821. ))
  24822. characterMakers.push(() => makeCharacter(
  24823. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24824. {
  24825. front: {
  24826. height: math.unit(21, "meters"),
  24827. weight: math.unit(12, "tonnes"),
  24828. name: "Front",
  24829. image: {
  24830. source: "./media/characters/kuru/front.svg",
  24831. extra: 4301 / 3785,
  24832. bottom: 371.3 / 4691
  24833. }
  24834. },
  24835. },
  24836. [
  24837. {
  24838. name: "Macro",
  24839. height: math.unit(21, "meters"),
  24840. default: true
  24841. },
  24842. ]
  24843. ))
  24844. characterMakers.push(() => makeCharacter(
  24845. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24846. {
  24847. front: {
  24848. height: math.unit(23, "meters"),
  24849. weight: math.unit(12.2, "tonnes"),
  24850. name: "Front",
  24851. image: {
  24852. source: "./media/characters/rakka/front.svg",
  24853. extra: 4670 / 4169,
  24854. bottom: 301 / 4968.7
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Macro",
  24861. height: math.unit(23, "meters"),
  24862. default: true
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24868. {
  24869. front: {
  24870. height: math.unit(6, "feet"),
  24871. weight: math.unit(150, "lb"),
  24872. name: "Front",
  24873. image: {
  24874. source: "./media/characters/rhys-feline/front.svg",
  24875. extra: 2488 / 2308,
  24876. bottom: 35.67 / 2519.19
  24877. }
  24878. },
  24879. },
  24880. [
  24881. {
  24882. name: "Really Small",
  24883. height: math.unit(1, "nm")
  24884. },
  24885. {
  24886. name: "Micro",
  24887. height: math.unit(4, "inches")
  24888. },
  24889. {
  24890. name: "Normal",
  24891. height: math.unit(4 + 10 / 12, "feet"),
  24892. default: true
  24893. },
  24894. {
  24895. name: "Macro",
  24896. height: math.unit(100, "feet")
  24897. },
  24898. {
  24899. name: "Megamacto",
  24900. height: math.unit(50, "miles")
  24901. },
  24902. ]
  24903. ))
  24904. characterMakers.push(() => makeCharacter(
  24905. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24906. {
  24907. side: {
  24908. height: math.unit(30, "feet"),
  24909. weight: math.unit(35000, "kg"),
  24910. name: "Side",
  24911. image: {
  24912. source: "./media/characters/alydar/side.svg",
  24913. extra: 234 / 222,
  24914. bottom: 6.5 / 241
  24915. }
  24916. },
  24917. front: {
  24918. height: math.unit(30, "feet"),
  24919. weight: math.unit(35000, "kg"),
  24920. name: "Front",
  24921. image: {
  24922. source: "./media/characters/alydar/front.svg",
  24923. extra: 223.37 / 210.2,
  24924. bottom: 22.3 / 246.76
  24925. }
  24926. },
  24927. top: {
  24928. height: math.unit(64.54, "feet"),
  24929. weight: math.unit(35000, "kg"),
  24930. name: "Top",
  24931. image: {
  24932. source: "./media/characters/alydar/top.svg"
  24933. }
  24934. },
  24935. anthro: {
  24936. height: math.unit(30, "feet"),
  24937. weight: math.unit(9000, "kg"),
  24938. name: "Anthro",
  24939. image: {
  24940. source: "./media/characters/alydar/anthro.svg",
  24941. extra: 432 / 421,
  24942. bottom: 7.18 / 440
  24943. }
  24944. },
  24945. maw: {
  24946. height: math.unit(11.693, "feet"),
  24947. name: "Maw",
  24948. image: {
  24949. source: "./media/characters/alydar/maw.svg"
  24950. }
  24951. },
  24952. head: {
  24953. height: math.unit(11.693, "feet"),
  24954. name: "Head",
  24955. image: {
  24956. source: "./media/characters/alydar/head.svg"
  24957. }
  24958. },
  24959. headAlt: {
  24960. height: math.unit(12.861, "feet"),
  24961. name: "Head (Alt)",
  24962. image: {
  24963. source: "./media/characters/alydar/head-alt.svg"
  24964. }
  24965. },
  24966. wing: {
  24967. height: math.unit(20.712, "feet"),
  24968. name: "Wing",
  24969. image: {
  24970. source: "./media/characters/alydar/wing.svg"
  24971. }
  24972. },
  24973. wingFeather: {
  24974. height: math.unit(9.662, "feet"),
  24975. name: "Wing Feather",
  24976. image: {
  24977. source: "./media/characters/alydar/wing-feather.svg"
  24978. }
  24979. },
  24980. countourFeather: {
  24981. height: math.unit(4.154, "feet"),
  24982. name: "Contour Feather",
  24983. image: {
  24984. source: "./media/characters/alydar/contour-feather.svg"
  24985. }
  24986. },
  24987. },
  24988. [
  24989. {
  24990. name: "Diplomatic",
  24991. height: math.unit(13, "feet"),
  24992. default: true
  24993. },
  24994. {
  24995. name: "Small",
  24996. height: math.unit(30, "feet")
  24997. },
  24998. {
  24999. name: "Normal",
  25000. height: math.unit(95, "feet"),
  25001. default: true
  25002. },
  25003. {
  25004. name: "Large",
  25005. height: math.unit(285, "feet")
  25006. },
  25007. {
  25008. name: "Incomprehensible",
  25009. height: math.unit(450, "megameters")
  25010. },
  25011. ]
  25012. ))
  25013. characterMakers.push(() => makeCharacter(
  25014. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25015. {
  25016. side: {
  25017. height: math.unit(11, "feet"),
  25018. weight: math.unit(1750, "kg"),
  25019. name: "Side",
  25020. image: {
  25021. source: "./media/characters/selicia/side.svg",
  25022. extra: 440 / 396,
  25023. bottom: 24.8 / 465.979
  25024. }
  25025. },
  25026. maw: {
  25027. height: math.unit(4.665, "feet"),
  25028. name: "Maw",
  25029. image: {
  25030. source: "./media/characters/selicia/maw.svg"
  25031. }
  25032. },
  25033. },
  25034. [
  25035. {
  25036. name: "Normal",
  25037. height: math.unit(11, "feet"),
  25038. default: true
  25039. },
  25040. ]
  25041. ))
  25042. characterMakers.push(() => makeCharacter(
  25043. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25044. {
  25045. side: {
  25046. height: math.unit(2 + 6 / 12, "feet"),
  25047. weight: math.unit(30, "lb"),
  25048. name: "Side",
  25049. image: {
  25050. source: "./media/characters/layla/side.svg",
  25051. extra: 244 / 188,
  25052. bottom: 18.2 / 262.1
  25053. }
  25054. },
  25055. back: {
  25056. height: math.unit(2 + 6 / 12, "feet"),
  25057. weight: math.unit(30, "lb"),
  25058. name: "Back",
  25059. image: {
  25060. source: "./media/characters/layla/back.svg",
  25061. extra: 308 / 241.5,
  25062. bottom: 8.9 / 316.8
  25063. }
  25064. },
  25065. cumming: {
  25066. height: math.unit(2 + 6 / 12, "feet"),
  25067. weight: math.unit(30, "lb"),
  25068. name: "Cumming",
  25069. image: {
  25070. source: "./media/characters/layla/cumming.svg",
  25071. extra: 342 / 279,
  25072. bottom: 595 / 938
  25073. }
  25074. },
  25075. dickFlaccid: {
  25076. height: math.unit(2.595, "feet"),
  25077. name: "Flaccid Genitals",
  25078. image: {
  25079. source: "./media/characters/layla/dick-flaccid.svg"
  25080. }
  25081. },
  25082. dickErect: {
  25083. height: math.unit(2.359, "feet"),
  25084. name: "Erect Genitals",
  25085. image: {
  25086. source: "./media/characters/layla/dick-erect.svg"
  25087. }
  25088. },
  25089. dragon: {
  25090. height: math.unit(40, "feet"),
  25091. name: "Dragon",
  25092. image: {
  25093. source: "./media/characters/layla/dragon.svg",
  25094. extra: 610/535,
  25095. bottom: 367/977
  25096. }
  25097. },
  25098. taur: {
  25099. height: math.unit(30, "feet"),
  25100. name: "Taur",
  25101. image: {
  25102. source: "./media/characters/layla/taur.svg",
  25103. extra: 1268/1199,
  25104. bottom: 112/1380
  25105. }
  25106. },
  25107. },
  25108. [
  25109. {
  25110. name: "Micro",
  25111. height: math.unit(1, "inch")
  25112. },
  25113. {
  25114. name: "Small",
  25115. height: math.unit(1, "foot")
  25116. },
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(2 + 6 / 12, "feet"),
  25120. default: true
  25121. },
  25122. {
  25123. name: "Macro",
  25124. height: math.unit(200, "feet")
  25125. },
  25126. {
  25127. name: "Megamacro",
  25128. height: math.unit(1000, "miles")
  25129. },
  25130. {
  25131. name: "Planetary",
  25132. height: math.unit(8000, "miles")
  25133. },
  25134. {
  25135. name: "True Layla",
  25136. height: math.unit(200000 * 7, "multiverses")
  25137. },
  25138. ]
  25139. ))
  25140. characterMakers.push(() => makeCharacter(
  25141. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25142. {
  25143. back: {
  25144. height: math.unit(10.5, "feet"),
  25145. weight: math.unit(800, "lb"),
  25146. name: "Back",
  25147. image: {
  25148. source: "./media/characters/knox/back.svg",
  25149. extra: 1486 / 1089,
  25150. bottom: 107 / 1601.4
  25151. }
  25152. },
  25153. side: {
  25154. height: math.unit(10.5, "feet"),
  25155. weight: math.unit(800, "lb"),
  25156. name: "Side",
  25157. image: {
  25158. source: "./media/characters/knox/side.svg",
  25159. extra: 244 / 218,
  25160. bottom: 14 / 260
  25161. }
  25162. },
  25163. },
  25164. [
  25165. {
  25166. name: "Compact",
  25167. height: math.unit(10.5, "feet"),
  25168. default: true
  25169. },
  25170. {
  25171. name: "Dynamax",
  25172. height: math.unit(210, "feet")
  25173. },
  25174. {
  25175. name: "Full Macro",
  25176. height: math.unit(850, "feet")
  25177. },
  25178. ]
  25179. ))
  25180. characterMakers.push(() => makeCharacter(
  25181. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25182. {
  25183. front: {
  25184. height: math.unit(28, "feet"),
  25185. weight: math.unit(10500, "lb"),
  25186. name: "Front",
  25187. image: {
  25188. source: "./media/characters/kayda/front.svg",
  25189. extra: 1536 / 1428,
  25190. bottom: 68.7 / 1603
  25191. }
  25192. },
  25193. back: {
  25194. height: math.unit(28, "feet"),
  25195. weight: math.unit(10500, "lb"),
  25196. name: "Back",
  25197. image: {
  25198. source: "./media/characters/kayda/back.svg",
  25199. extra: 1557 / 1464,
  25200. bottom: 39.5 / 1597.49
  25201. }
  25202. },
  25203. dick: {
  25204. height: math.unit(3.858, "feet"),
  25205. name: "Dick",
  25206. image: {
  25207. source: "./media/characters/kayda/dick.svg"
  25208. }
  25209. },
  25210. },
  25211. [
  25212. {
  25213. name: "Macro",
  25214. height: math.unit(28, "feet"),
  25215. default: true
  25216. },
  25217. ]
  25218. ))
  25219. characterMakers.push(() => makeCharacter(
  25220. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25221. {
  25222. front: {
  25223. height: math.unit(10 + 11 / 12, "feet"),
  25224. weight: math.unit(1400, "lb"),
  25225. name: "Front",
  25226. image: {
  25227. source: "./media/characters/brian/front.svg",
  25228. extra: 737 / 692,
  25229. bottom: 55.4 / 785
  25230. }
  25231. },
  25232. },
  25233. [
  25234. {
  25235. name: "Normal",
  25236. height: math.unit(10 + 11 / 12, "feet"),
  25237. default: true
  25238. },
  25239. ]
  25240. ))
  25241. characterMakers.push(() => makeCharacter(
  25242. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25243. {
  25244. front: {
  25245. height: math.unit(5 + 8 / 12, "feet"),
  25246. weight: math.unit(140, "lb"),
  25247. name: "Front",
  25248. image: {
  25249. source: "./media/characters/khemri/front.svg",
  25250. extra: 4780 / 4059,
  25251. bottom: 80.1 / 4859.25
  25252. }
  25253. },
  25254. },
  25255. [
  25256. {
  25257. name: "Micro",
  25258. height: math.unit(6, "inches")
  25259. },
  25260. {
  25261. name: "Normal",
  25262. height: math.unit(5 + 8 / 12, "feet"),
  25263. default: true
  25264. },
  25265. ]
  25266. ))
  25267. characterMakers.push(() => makeCharacter(
  25268. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25269. {
  25270. front: {
  25271. height: math.unit(13, "feet"),
  25272. weight: math.unit(1700, "lb"),
  25273. name: "Front",
  25274. image: {
  25275. source: "./media/characters/felix-braveheart/front.svg",
  25276. extra: 1222 / 1157,
  25277. bottom: 53.2 / 1280
  25278. }
  25279. },
  25280. back: {
  25281. height: math.unit(13, "feet"),
  25282. weight: math.unit(1700, "lb"),
  25283. name: "Back",
  25284. image: {
  25285. source: "./media/characters/felix-braveheart/back.svg",
  25286. extra: 1277 / 1203,
  25287. bottom: 50.2 / 1327
  25288. }
  25289. },
  25290. feral: {
  25291. height: math.unit(6, "feet"),
  25292. weight: math.unit(400, "lb"),
  25293. name: "Feral",
  25294. image: {
  25295. source: "./media/characters/felix-braveheart/feral.svg",
  25296. extra: 682 / 625,
  25297. bottom: 6.9 / 688
  25298. }
  25299. },
  25300. },
  25301. [
  25302. {
  25303. name: "Normal",
  25304. height: math.unit(13, "feet"),
  25305. default: true
  25306. },
  25307. ]
  25308. ))
  25309. characterMakers.push(() => makeCharacter(
  25310. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25311. {
  25312. side: {
  25313. height: math.unit(5 + 11 / 12, "feet"),
  25314. weight: math.unit(1400, "lb"),
  25315. name: "Side",
  25316. image: {
  25317. source: "./media/characters/shadow-blade/side.svg",
  25318. extra: 1726 / 1267,
  25319. bottom: 58.4 / 1785
  25320. }
  25321. },
  25322. },
  25323. [
  25324. {
  25325. name: "Normal",
  25326. height: math.unit(5 + 11 / 12, "feet"),
  25327. default: true
  25328. },
  25329. ]
  25330. ))
  25331. characterMakers.push(() => makeCharacter(
  25332. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25333. {
  25334. front: {
  25335. height: math.unit(1 + 6 / 12, "feet"),
  25336. weight: math.unit(25, "lb"),
  25337. name: "Front",
  25338. image: {
  25339. source: "./media/characters/karla-halldor/front.svg",
  25340. extra: 1459 / 1383,
  25341. bottom: 12 / 1472
  25342. }
  25343. },
  25344. },
  25345. [
  25346. {
  25347. name: "Normal",
  25348. height: math.unit(1 + 6 / 12, "feet"),
  25349. default: true
  25350. },
  25351. ]
  25352. ))
  25353. characterMakers.push(() => makeCharacter(
  25354. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25355. {
  25356. front: {
  25357. height: math.unit(6 + 2 / 12, "feet"),
  25358. weight: math.unit(160, "lb"),
  25359. name: "Front",
  25360. image: {
  25361. source: "./media/characters/ariam/front.svg",
  25362. extra: 1073/976,
  25363. bottom: 52/1125
  25364. }
  25365. },
  25366. back: {
  25367. height: math.unit(6 + 2/12, "feet"),
  25368. weight: math.unit(160, "lb"),
  25369. name: "Back",
  25370. image: {
  25371. source: "./media/characters/ariam/back.svg",
  25372. extra: 1103/1023,
  25373. bottom: 9/1112
  25374. }
  25375. },
  25376. dressed: {
  25377. height: math.unit(6 + 2/12, "feet"),
  25378. weight: math.unit(160, "lb"),
  25379. name: "Dressed",
  25380. image: {
  25381. source: "./media/characters/ariam/dressed.svg",
  25382. extra: 1099/1009,
  25383. bottom: 25/1124
  25384. }
  25385. },
  25386. squatting: {
  25387. height: math.unit(4.1, "feet"),
  25388. weight: math.unit(160, "lb"),
  25389. name: "Squatting",
  25390. image: {
  25391. source: "./media/characters/ariam/squatting.svg",
  25392. extra: 2617 / 2112,
  25393. bottom: 61.2 / 2681,
  25394. }
  25395. },
  25396. },
  25397. [
  25398. {
  25399. name: "Normal",
  25400. height: math.unit(6 + 2 / 12, "feet"),
  25401. default: true
  25402. },
  25403. {
  25404. name: "Normal+",
  25405. height: math.unit(4, "meters")
  25406. },
  25407. {
  25408. name: "Macro",
  25409. height: math.unit(50, "meters")
  25410. },
  25411. {
  25412. name: "Macro+",
  25413. height: math.unit(100, "meters")
  25414. },
  25415. {
  25416. name: "Megamacro",
  25417. height: math.unit(20, "km")
  25418. },
  25419. {
  25420. name: "Caretaker",
  25421. height: math.unit(444, "megameters")
  25422. },
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25427. {
  25428. front: {
  25429. height: math.unit(1.67, "meters"),
  25430. weight: math.unit(140, "lb"),
  25431. name: "Front",
  25432. image: {
  25433. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25434. extra: 438 / 410,
  25435. bottom: 0.75 / 439
  25436. }
  25437. },
  25438. },
  25439. [
  25440. {
  25441. name: "Shrunken",
  25442. height: math.unit(7.6, "cm")
  25443. },
  25444. {
  25445. name: "Human Scale",
  25446. height: math.unit(1.67, "meters")
  25447. },
  25448. {
  25449. name: "Wolxi Scale",
  25450. height: math.unit(36.7, "meters"),
  25451. default: true
  25452. },
  25453. ]
  25454. ))
  25455. characterMakers.push(() => makeCharacter(
  25456. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25457. {
  25458. front: {
  25459. height: math.unit(1.73, "meters"),
  25460. weight: math.unit(240, "lb"),
  25461. name: "Front",
  25462. image: {
  25463. source: "./media/characters/izue-two-mothers/front.svg",
  25464. extra: 469 / 437,
  25465. bottom: 1.24 / 470.6
  25466. }
  25467. },
  25468. },
  25469. [
  25470. {
  25471. name: "Shrunken",
  25472. height: math.unit(7.86, "cm")
  25473. },
  25474. {
  25475. name: "Human Scale",
  25476. height: math.unit(1.73, "meters")
  25477. },
  25478. {
  25479. name: "Wolxi Scale",
  25480. height: math.unit(38, "meters"),
  25481. default: true
  25482. },
  25483. ]
  25484. ))
  25485. characterMakers.push(() => makeCharacter(
  25486. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25487. {
  25488. front: {
  25489. height: math.unit(1.55, "meters"),
  25490. weight: math.unit(120, "lb"),
  25491. name: "Front",
  25492. image: {
  25493. source: "./media/characters/teeku-love-shack/front.svg",
  25494. extra: 387 / 362,
  25495. bottom: 1.51 / 388
  25496. }
  25497. },
  25498. },
  25499. [
  25500. {
  25501. name: "Shrunken",
  25502. height: math.unit(7, "cm")
  25503. },
  25504. {
  25505. name: "Human Scale",
  25506. height: math.unit(1.55, "meters")
  25507. },
  25508. {
  25509. name: "Wolxi Scale",
  25510. height: math.unit(34.1, "meters"),
  25511. default: true
  25512. },
  25513. ]
  25514. ))
  25515. characterMakers.push(() => makeCharacter(
  25516. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25517. {
  25518. front: {
  25519. height: math.unit(1.83, "meters"),
  25520. weight: math.unit(135, "lb"),
  25521. name: "Front",
  25522. image: {
  25523. source: "./media/characters/dejma-the-red/front.svg",
  25524. extra: 480 / 458,
  25525. bottom: 1.8 / 482
  25526. }
  25527. },
  25528. },
  25529. [
  25530. {
  25531. name: "Shrunken",
  25532. height: math.unit(8.3, "cm")
  25533. },
  25534. {
  25535. name: "Human Scale",
  25536. height: math.unit(1.83, "meters")
  25537. },
  25538. {
  25539. name: "Wolxi Scale",
  25540. height: math.unit(40, "meters"),
  25541. default: true
  25542. },
  25543. ]
  25544. ))
  25545. characterMakers.push(() => makeCharacter(
  25546. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25547. {
  25548. front: {
  25549. height: math.unit(1.78, "meters"),
  25550. weight: math.unit(65, "kg"),
  25551. name: "Front",
  25552. image: {
  25553. source: "./media/characters/aki/front.svg",
  25554. extra: 452 / 415
  25555. }
  25556. },
  25557. frontNsfw: {
  25558. height: math.unit(1.78, "meters"),
  25559. weight: math.unit(65, "kg"),
  25560. name: "Front (NSFW)",
  25561. image: {
  25562. source: "./media/characters/aki/front-nsfw.svg",
  25563. extra: 452 / 415
  25564. }
  25565. },
  25566. back: {
  25567. height: math.unit(1.78, "meters"),
  25568. weight: math.unit(65, "kg"),
  25569. name: "Back",
  25570. image: {
  25571. source: "./media/characters/aki/back.svg",
  25572. extra: 452 / 415
  25573. }
  25574. },
  25575. rump: {
  25576. height: math.unit(2.05, "feet"),
  25577. name: "Rump",
  25578. image: {
  25579. source: "./media/characters/aki/rump.svg"
  25580. }
  25581. },
  25582. dick: {
  25583. height: math.unit(0.95, "feet"),
  25584. name: "Dick",
  25585. image: {
  25586. source: "./media/characters/aki/dick.svg"
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Micro",
  25593. height: math.unit(15, "cm")
  25594. },
  25595. {
  25596. name: "Normal",
  25597. height: math.unit(178, "cm"),
  25598. default: true
  25599. },
  25600. {
  25601. name: "Macro",
  25602. height: math.unit(214, "m")
  25603. },
  25604. {
  25605. name: "Macro+",
  25606. height: math.unit(534, "m")
  25607. },
  25608. ]
  25609. ))
  25610. characterMakers.push(() => makeCharacter(
  25611. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25612. {
  25613. front: {
  25614. height: math.unit(5 + 5 / 12, "feet"),
  25615. weight: math.unit(120, "lb"),
  25616. name: "Front",
  25617. image: {
  25618. source: "./media/characters/ari/front.svg",
  25619. extra: 1550/1471,
  25620. bottom: 39/1589
  25621. }
  25622. },
  25623. },
  25624. [
  25625. {
  25626. name: "Normal",
  25627. height: math.unit(5 + 5 / 12, "feet")
  25628. },
  25629. {
  25630. name: "Macro",
  25631. height: math.unit(100, "feet"),
  25632. default: true
  25633. },
  25634. {
  25635. name: "Megamacro",
  25636. height: math.unit(100, "miles")
  25637. },
  25638. {
  25639. name: "Gigamacro",
  25640. height: math.unit(80000, "miles")
  25641. },
  25642. ]
  25643. ))
  25644. characterMakers.push(() => makeCharacter(
  25645. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25646. {
  25647. side: {
  25648. height: math.unit(9, "feet"),
  25649. weight: math.unit(400, "kg"),
  25650. name: "Side",
  25651. image: {
  25652. source: "./media/characters/bolt/side.svg",
  25653. extra: 1126 / 896,
  25654. bottom: 60 / 1187.3,
  25655. }
  25656. },
  25657. },
  25658. [
  25659. {
  25660. name: "Micro",
  25661. height: math.unit(5, "inches")
  25662. },
  25663. {
  25664. name: "Normal",
  25665. height: math.unit(9, "feet"),
  25666. default: true
  25667. },
  25668. {
  25669. name: "Macro",
  25670. height: math.unit(700, "feet")
  25671. },
  25672. {
  25673. name: "Max Size",
  25674. height: math.unit(1.52e22, "yottameters")
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25680. {
  25681. front: {
  25682. height: math.unit(4.3, "meters"),
  25683. weight: math.unit(3, "tons"),
  25684. name: "Front",
  25685. image: {
  25686. source: "./media/characters/draekon-sylviar/front.svg",
  25687. extra: 2072/1512,
  25688. bottom: 74/2146
  25689. }
  25690. },
  25691. back: {
  25692. height: math.unit(4.3, "meters"),
  25693. weight: math.unit(3, "tons"),
  25694. name: "Back",
  25695. image: {
  25696. source: "./media/characters/draekon-sylviar/back.svg",
  25697. extra: 1639/1483,
  25698. bottom: 41/1680
  25699. }
  25700. },
  25701. feral: {
  25702. height: math.unit(1.15, "meters"),
  25703. weight: math.unit(3, "tons"),
  25704. name: "Feral",
  25705. image: {
  25706. source: "./media/characters/draekon-sylviar/feral.svg",
  25707. extra: 1033/395,
  25708. bottom: 130/1163
  25709. }
  25710. },
  25711. maw: {
  25712. height: math.unit(1.3, "meters"),
  25713. name: "Maw",
  25714. image: {
  25715. source: "./media/characters/draekon-sylviar/maw.svg"
  25716. }
  25717. },
  25718. mawSeparated: {
  25719. height: math.unit(1.53, "meters"),
  25720. name: "Separated Maw",
  25721. image: {
  25722. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25723. }
  25724. },
  25725. tail: {
  25726. height: math.unit(1.15, "meters"),
  25727. name: "Tail",
  25728. image: {
  25729. source: "./media/characters/draekon-sylviar/tail.svg"
  25730. }
  25731. },
  25732. tailDick: {
  25733. height: math.unit(1.15, "meters"),
  25734. name: "Tail (Dick)",
  25735. image: {
  25736. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25737. }
  25738. },
  25739. tailDickSeparated: {
  25740. height: math.unit(1.19, "meters"),
  25741. name: "Tail (Separated Dick)",
  25742. image: {
  25743. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25744. }
  25745. },
  25746. slit: {
  25747. height: math.unit(1, "meters"),
  25748. name: "Slit",
  25749. image: {
  25750. source: "./media/characters/draekon-sylviar/slit.svg"
  25751. }
  25752. },
  25753. dick: {
  25754. height: math.unit(1.15, "meters"),
  25755. name: "Dick",
  25756. image: {
  25757. source: "./media/characters/draekon-sylviar/dick.svg"
  25758. }
  25759. },
  25760. dickSeparated: {
  25761. height: math.unit(1.1, "meters"),
  25762. name: "Separated Dick",
  25763. image: {
  25764. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25765. }
  25766. },
  25767. sheath: {
  25768. height: math.unit(1.15, "meters"),
  25769. name: "Sheath",
  25770. image: {
  25771. source: "./media/characters/draekon-sylviar/sheath.svg"
  25772. }
  25773. },
  25774. },
  25775. [
  25776. {
  25777. name: "Small",
  25778. height: math.unit(4.53 / 2, "meters"),
  25779. default: true
  25780. },
  25781. {
  25782. name: "Normal",
  25783. height: math.unit(4.53, "meters"),
  25784. default: true
  25785. },
  25786. {
  25787. name: "Large",
  25788. height: math.unit(4.53 * 2, "meters"),
  25789. },
  25790. ]
  25791. ))
  25792. characterMakers.push(() => makeCharacter(
  25793. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25794. {
  25795. front: {
  25796. height: math.unit(6 + 2 / 12, "feet"),
  25797. weight: math.unit(180, "lb"),
  25798. name: "Front",
  25799. image: {
  25800. source: "./media/characters/brawler/front.svg",
  25801. extra: 3301 / 3027,
  25802. bottom: 138 / 3439
  25803. }
  25804. },
  25805. },
  25806. [
  25807. {
  25808. name: "Normal",
  25809. height: math.unit(6 + 2 / 12, "feet"),
  25810. default: true
  25811. },
  25812. ]
  25813. ))
  25814. characterMakers.push(() => makeCharacter(
  25815. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25816. {
  25817. front: {
  25818. height: math.unit(11, "feet"),
  25819. weight: math.unit(1000, "lb"),
  25820. name: "Front",
  25821. image: {
  25822. source: "./media/characters/alex/front.svg",
  25823. bottom: 44.5 / 620
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Micro",
  25830. height: math.unit(5, "inches")
  25831. },
  25832. {
  25833. name: "Normal",
  25834. height: math.unit(11, "feet"),
  25835. default: true
  25836. },
  25837. {
  25838. name: "Macro",
  25839. height: math.unit(9.5e9, "feet")
  25840. },
  25841. {
  25842. name: "Max Size",
  25843. height: math.unit(1.4e283, "yottameters")
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25849. {
  25850. female: {
  25851. height: math.unit(29.9, "m"),
  25852. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25853. name: "Female",
  25854. image: {
  25855. source: "./media/characters/zenari/female.svg",
  25856. extra: 3281.6 / 3217,
  25857. bottom: 72.2 / 3353
  25858. }
  25859. },
  25860. male: {
  25861. height: math.unit(27.7, "m"),
  25862. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25863. name: "Male",
  25864. image: {
  25865. source: "./media/characters/zenari/male.svg",
  25866. extra: 3008 / 2991,
  25867. bottom: 54.6 / 3069
  25868. }
  25869. },
  25870. },
  25871. [
  25872. {
  25873. name: "Macro",
  25874. height: math.unit(29.7, "meters"),
  25875. default: true
  25876. },
  25877. ]
  25878. ))
  25879. characterMakers.push(() => makeCharacter(
  25880. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25881. {
  25882. female: {
  25883. height: math.unit(23.8, "m"),
  25884. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25885. name: "Female",
  25886. image: {
  25887. source: "./media/characters/mactarian/female.svg",
  25888. extra: 2662 / 2569,
  25889. bottom: 73 / 2736
  25890. }
  25891. },
  25892. male: {
  25893. height: math.unit(23.8, "m"),
  25894. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25895. name: "Male",
  25896. image: {
  25897. source: "./media/characters/mactarian/male.svg",
  25898. extra: 2673 / 2600,
  25899. bottom: 76 / 2750
  25900. }
  25901. },
  25902. },
  25903. [
  25904. {
  25905. name: "Macro",
  25906. height: math.unit(23.8, "meters"),
  25907. default: true
  25908. },
  25909. ]
  25910. ))
  25911. characterMakers.push(() => makeCharacter(
  25912. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25913. {
  25914. female: {
  25915. height: math.unit(19.3, "m"),
  25916. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25917. name: "Female",
  25918. image: {
  25919. source: "./media/characters/umok/female.svg",
  25920. extra: 2186 / 2078,
  25921. bottom: 87 / 2277
  25922. }
  25923. },
  25924. male: {
  25925. height: math.unit(19.5, "m"),
  25926. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25927. name: "Male",
  25928. image: {
  25929. source: "./media/characters/umok/male.svg",
  25930. extra: 2233 / 2140,
  25931. bottom: 24.4 / 2258
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Macro",
  25938. height: math.unit(19.3, "meters"),
  25939. default: true
  25940. },
  25941. ]
  25942. ))
  25943. characterMakers.push(() => makeCharacter(
  25944. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25945. {
  25946. female: {
  25947. height: math.unit(26.15, "m"),
  25948. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25949. name: "Female",
  25950. image: {
  25951. source: "./media/characters/joraxian/female.svg",
  25952. extra: 2912 / 2824,
  25953. bottom: 36 / 2956
  25954. }
  25955. },
  25956. male: {
  25957. height: math.unit(25.4, "m"),
  25958. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25959. name: "Male",
  25960. image: {
  25961. source: "./media/characters/joraxian/male.svg",
  25962. extra: 2877 / 2721,
  25963. bottom: 82 / 2967
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Macro",
  25970. height: math.unit(26.15, "meters"),
  25971. default: true
  25972. },
  25973. ]
  25974. ))
  25975. characterMakers.push(() => makeCharacter(
  25976. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25977. {
  25978. female: {
  25979. height: math.unit(21.6, "m"),
  25980. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25981. name: "Female",
  25982. image: {
  25983. source: "./media/characters/sthara/female.svg",
  25984. extra: 2516 / 2347,
  25985. bottom: 21.5 / 2537
  25986. }
  25987. },
  25988. male: {
  25989. height: math.unit(24, "m"),
  25990. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25991. name: "Male",
  25992. image: {
  25993. source: "./media/characters/sthara/male.svg",
  25994. extra: 2732 / 2607,
  25995. bottom: 23 / 2732
  25996. }
  25997. },
  25998. },
  25999. [
  26000. {
  26001. name: "Macro",
  26002. height: math.unit(21.6, "meters"),
  26003. default: true
  26004. },
  26005. ]
  26006. ))
  26007. characterMakers.push(() => makeCharacter(
  26008. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26009. {
  26010. front: {
  26011. height: math.unit(6 + 4 / 12, "feet"),
  26012. weight: math.unit(175, "lb"),
  26013. name: "Front",
  26014. image: {
  26015. source: "./media/characters/luka-bryzant/front.svg",
  26016. extra: 311 / 289,
  26017. bottom: 4 / 315
  26018. }
  26019. },
  26020. back: {
  26021. height: math.unit(6 + 4 / 12, "feet"),
  26022. weight: math.unit(175, "lb"),
  26023. name: "Back",
  26024. image: {
  26025. source: "./media/characters/luka-bryzant/back.svg",
  26026. extra: 311 / 289,
  26027. bottom: 3.8 / 313.7
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Micro",
  26034. height: math.unit(10, "inches")
  26035. },
  26036. {
  26037. name: "Normal",
  26038. height: math.unit(6 + 4 / 12, "feet"),
  26039. default: true
  26040. },
  26041. {
  26042. name: "Large",
  26043. height: math.unit(12, "feet")
  26044. },
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26049. {
  26050. front: {
  26051. height: math.unit(5 + 7 / 12, "feet"),
  26052. weight: math.unit(185, "lb"),
  26053. name: "Front",
  26054. image: {
  26055. source: "./media/characters/aman-aquila/front.svg",
  26056. extra: 1013 / 976,
  26057. bottom: 45.6 / 1057
  26058. }
  26059. },
  26060. side: {
  26061. height: math.unit(5 + 7 / 12, "feet"),
  26062. weight: math.unit(185, "lb"),
  26063. name: "Side",
  26064. image: {
  26065. source: "./media/characters/aman-aquila/side.svg",
  26066. extra: 1054 / 1011,
  26067. bottom: 15 / 1070
  26068. }
  26069. },
  26070. back: {
  26071. height: math.unit(5 + 7 / 12, "feet"),
  26072. weight: math.unit(185, "lb"),
  26073. name: "Back",
  26074. image: {
  26075. source: "./media/characters/aman-aquila/back.svg",
  26076. extra: 1026 / 970,
  26077. bottom: 12 / 1039
  26078. }
  26079. },
  26080. head: {
  26081. height: math.unit(1.211, "feet"),
  26082. name: "Head",
  26083. image: {
  26084. source: "./media/characters/aman-aquila/head.svg",
  26085. }
  26086. },
  26087. },
  26088. [
  26089. {
  26090. name: "Minimicro",
  26091. height: math.unit(0.057, "inches")
  26092. },
  26093. {
  26094. name: "Micro",
  26095. height: math.unit(7, "inches")
  26096. },
  26097. {
  26098. name: "Mini",
  26099. height: math.unit(3 + 7 / 12, "feet")
  26100. },
  26101. {
  26102. name: "Normal",
  26103. height: math.unit(5 + 7 / 12, "feet"),
  26104. default: true
  26105. },
  26106. {
  26107. name: "Macro",
  26108. height: math.unit(157 + 7 / 12, "feet")
  26109. },
  26110. {
  26111. name: "Megamacro",
  26112. height: math.unit(1557 + 7 / 12, "feet")
  26113. },
  26114. {
  26115. name: "Gigamacro",
  26116. height: math.unit(15557 + 7 / 12, "feet")
  26117. },
  26118. ]
  26119. ))
  26120. characterMakers.push(() => makeCharacter(
  26121. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26122. {
  26123. front: {
  26124. height: math.unit(3 + 2 / 12, "inches"),
  26125. weight: math.unit(0.3, "ounces"),
  26126. name: "Front",
  26127. image: {
  26128. source: "./media/characters/hiphae/front.svg",
  26129. extra: 1931 / 1683,
  26130. bottom: 24 / 1955
  26131. }
  26132. },
  26133. },
  26134. [
  26135. {
  26136. name: "Normal",
  26137. height: math.unit(3 + 1 / 2, "inches"),
  26138. default: true
  26139. },
  26140. ]
  26141. ))
  26142. characterMakers.push(() => makeCharacter(
  26143. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26144. {
  26145. front: {
  26146. height: math.unit(5 + 10 / 12, "feet"),
  26147. weight: math.unit(165, "lb"),
  26148. name: "Front",
  26149. image: {
  26150. source: "./media/characters/nicky/front.svg",
  26151. extra: 3144 / 2886,
  26152. bottom: 45.6 / 3192
  26153. }
  26154. },
  26155. back: {
  26156. height: math.unit(5 + 10 / 12, "feet"),
  26157. weight: math.unit(165, "lb"),
  26158. name: "Back",
  26159. image: {
  26160. source: "./media/characters/nicky/back.svg",
  26161. extra: 3055 / 2804,
  26162. bottom: 28.4 / 3087
  26163. }
  26164. },
  26165. frontclothed: {
  26166. height: math.unit(5 + 10 / 12, "feet"),
  26167. weight: math.unit(165, "lb"),
  26168. name: "Front-clothed",
  26169. image: {
  26170. source: "./media/characters/nicky/front-clothed.svg",
  26171. extra: 3184.9 / 2926.9,
  26172. bottom: 86.5 / 3239.9
  26173. }
  26174. },
  26175. foot: {
  26176. height: math.unit(1.16, "feet"),
  26177. name: "Foot",
  26178. image: {
  26179. source: "./media/characters/nicky/foot.svg"
  26180. }
  26181. },
  26182. feet: {
  26183. height: math.unit(1.34, "feet"),
  26184. name: "Feet",
  26185. image: {
  26186. source: "./media/characters/nicky/feet.svg"
  26187. }
  26188. },
  26189. maw: {
  26190. height: math.unit(0.9, "feet"),
  26191. name: "Maw",
  26192. image: {
  26193. source: "./media/characters/nicky/maw.svg"
  26194. }
  26195. },
  26196. },
  26197. [
  26198. {
  26199. name: "Normal",
  26200. height: math.unit(5 + 10 / 12, "feet"),
  26201. default: true
  26202. },
  26203. {
  26204. name: "Macro",
  26205. height: math.unit(60, "feet")
  26206. },
  26207. {
  26208. name: "Megamacro",
  26209. height: math.unit(1, "mile")
  26210. },
  26211. ]
  26212. ))
  26213. characterMakers.push(() => makeCharacter(
  26214. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26215. {
  26216. side: {
  26217. height: math.unit(10, "feet"),
  26218. weight: math.unit(600, "lb"),
  26219. name: "Side",
  26220. image: {
  26221. source: "./media/characters/blair/side.svg",
  26222. bottom: 16.6 / 475,
  26223. extra: 458 / 431
  26224. }
  26225. },
  26226. },
  26227. [
  26228. {
  26229. name: "Micro",
  26230. height: math.unit(8, "inches")
  26231. },
  26232. {
  26233. name: "Normal",
  26234. height: math.unit(10, "feet"),
  26235. default: true
  26236. },
  26237. {
  26238. name: "Macro",
  26239. height: math.unit(180, "feet")
  26240. },
  26241. ]
  26242. ))
  26243. characterMakers.push(() => makeCharacter(
  26244. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26245. {
  26246. front: {
  26247. height: math.unit(5 + 4 / 12, "feet"),
  26248. weight: math.unit(125, "lb"),
  26249. name: "Front",
  26250. image: {
  26251. source: "./media/characters/fisher/front.svg",
  26252. extra: 444 / 390,
  26253. bottom: 2 / 444.8
  26254. }
  26255. },
  26256. },
  26257. [
  26258. {
  26259. name: "Micro",
  26260. height: math.unit(4, "inches")
  26261. },
  26262. {
  26263. name: "Normal",
  26264. height: math.unit(5 + 4 / 12, "feet"),
  26265. default: true
  26266. },
  26267. {
  26268. name: "Macro",
  26269. height: math.unit(100, "feet")
  26270. },
  26271. ]
  26272. ))
  26273. characterMakers.push(() => makeCharacter(
  26274. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26275. {
  26276. front: {
  26277. height: math.unit(6.71, "feet"),
  26278. weight: math.unit(200, "lb"),
  26279. preyCapacity: math.unit(1000000, "people"),
  26280. name: "Front",
  26281. image: {
  26282. source: "./media/characters/gliss/front.svg",
  26283. extra: 2347 / 2231,
  26284. bottom: 113 / 2462
  26285. }
  26286. },
  26287. hammerspaceSize: {
  26288. height: math.unit(6.71 * 717, "feet"),
  26289. weight: math.unit(200, "lb"),
  26290. preyCapacity: math.unit(1000000, "people"),
  26291. name: "Hammerspace Size",
  26292. image: {
  26293. source: "./media/characters/gliss/front.svg",
  26294. extra: 2347 / 2231,
  26295. bottom: 113 / 2462
  26296. }
  26297. },
  26298. },
  26299. [
  26300. {
  26301. name: "Normal",
  26302. height: math.unit(6.71, "feet"),
  26303. default: true
  26304. },
  26305. ]
  26306. ))
  26307. characterMakers.push(() => makeCharacter(
  26308. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26309. {
  26310. side: {
  26311. height: math.unit(1.44, "m"),
  26312. weight: math.unit(80, "kg"),
  26313. name: "Side",
  26314. image: {
  26315. source: "./media/characters/dune-anderson/side.svg",
  26316. bottom: 49 / 1426
  26317. }
  26318. },
  26319. },
  26320. [
  26321. {
  26322. name: "Wolf-sized",
  26323. height: math.unit(1.44, "meters")
  26324. },
  26325. {
  26326. name: "Normal",
  26327. height: math.unit(5.05, "meters"),
  26328. default: true
  26329. },
  26330. {
  26331. name: "Big",
  26332. height: math.unit(14.4, "meters")
  26333. },
  26334. {
  26335. name: "Huge",
  26336. height: math.unit(144, "meters")
  26337. },
  26338. ]
  26339. ))
  26340. characterMakers.push(() => makeCharacter(
  26341. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26342. {
  26343. front: {
  26344. height: math.unit(7, "feet"),
  26345. weight: math.unit(425, "lb"),
  26346. name: "Front",
  26347. image: {
  26348. source: "./media/characters/hind/front.svg",
  26349. extra: 2091 / 1860,
  26350. bottom: 129 / 2220
  26351. }
  26352. },
  26353. back: {
  26354. height: math.unit(7, "feet"),
  26355. weight: math.unit(425, "lb"),
  26356. name: "Back",
  26357. image: {
  26358. source: "./media/characters/hind/back.svg",
  26359. extra: 2091 / 1860,
  26360. bottom: 24.6 / 2309
  26361. }
  26362. },
  26363. tail: {
  26364. height: math.unit(2.8, "feet"),
  26365. name: "Tail",
  26366. image: {
  26367. source: "./media/characters/hind/tail.svg"
  26368. }
  26369. },
  26370. head: {
  26371. height: math.unit(2.55, "feet"),
  26372. name: "Head",
  26373. image: {
  26374. source: "./media/characters/hind/head.svg"
  26375. }
  26376. },
  26377. },
  26378. [
  26379. {
  26380. name: "XS",
  26381. height: math.unit(0.7, "feet")
  26382. },
  26383. {
  26384. name: "Normal",
  26385. height: math.unit(7, "feet"),
  26386. default: true
  26387. },
  26388. {
  26389. name: "XL",
  26390. height: math.unit(70, "feet")
  26391. },
  26392. ]
  26393. ))
  26394. characterMakers.push(() => makeCharacter(
  26395. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26396. {
  26397. front: {
  26398. height: math.unit(2.1, "meters"),
  26399. weight: math.unit(150, "lb"),
  26400. name: "Front",
  26401. image: {
  26402. source: "./media/characters/tharquench-sizestealer/front.svg",
  26403. extra: 1605/1470,
  26404. bottom: 36/1641
  26405. }
  26406. },
  26407. frontAlt: {
  26408. height: math.unit(2.1, "meters"),
  26409. weight: math.unit(150, "lb"),
  26410. name: "Front (Alt)",
  26411. image: {
  26412. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26413. extra: 2318 / 2063,
  26414. bottom: 93.4 / 2410
  26415. }
  26416. },
  26417. },
  26418. [
  26419. {
  26420. name: "Nano",
  26421. height: math.unit(1, "mm")
  26422. },
  26423. {
  26424. name: "Micro",
  26425. height: math.unit(1, "cm")
  26426. },
  26427. {
  26428. name: "Normal",
  26429. height: math.unit(2.1, "meters"),
  26430. default: true
  26431. },
  26432. ]
  26433. ))
  26434. characterMakers.push(() => makeCharacter(
  26435. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26436. {
  26437. front: {
  26438. height: math.unit(7 + 5 / 12, "feet"),
  26439. weight: math.unit(357, "lb"),
  26440. name: "Front",
  26441. image: {
  26442. source: "./media/characters/solex-draconov/front.svg",
  26443. extra: 1993 / 1865,
  26444. bottom: 117 / 2111
  26445. }
  26446. },
  26447. },
  26448. [
  26449. {
  26450. name: "Natural Height",
  26451. height: math.unit(7 + 5 / 12, "feet"),
  26452. default: true
  26453. },
  26454. {
  26455. name: "Macro",
  26456. height: math.unit(350, "feet")
  26457. },
  26458. {
  26459. name: "Macro+",
  26460. height: math.unit(1000, "feet")
  26461. },
  26462. {
  26463. name: "Megamacro",
  26464. height: math.unit(20, "km")
  26465. },
  26466. {
  26467. name: "Megamacro+",
  26468. height: math.unit(1000, "km")
  26469. },
  26470. {
  26471. name: "Gigamacro",
  26472. height: math.unit(2.5, "Gm")
  26473. },
  26474. {
  26475. name: "Teramacro",
  26476. height: math.unit(15, "Tm")
  26477. },
  26478. {
  26479. name: "Galactic",
  26480. height: math.unit(30, "Zm")
  26481. },
  26482. {
  26483. name: "Universal",
  26484. height: math.unit(21000, "Ym")
  26485. },
  26486. {
  26487. name: "Omniversal",
  26488. height: math.unit(9.861e50, "Ym")
  26489. },
  26490. {
  26491. name: "Existential",
  26492. height: math.unit(1e300, "meters")
  26493. },
  26494. ]
  26495. ))
  26496. characterMakers.push(() => makeCharacter(
  26497. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26498. {
  26499. side: {
  26500. height: math.unit(25, "feet"),
  26501. weight: math.unit(90000, "lb"),
  26502. name: "Side",
  26503. image: {
  26504. source: "./media/characters/mandarax/side.svg",
  26505. extra: 614 / 332,
  26506. bottom: 55 / 630
  26507. }
  26508. },
  26509. lounging: {
  26510. height: math.unit(15.4, "feet"),
  26511. weight: math.unit(90000, "lb"),
  26512. name: "Lounging",
  26513. image: {
  26514. source: "./media/characters/mandarax/lounging.svg",
  26515. extra: 817/609,
  26516. bottom: 685/1502
  26517. }
  26518. },
  26519. head: {
  26520. height: math.unit(11.4, "feet"),
  26521. name: "Head",
  26522. image: {
  26523. source: "./media/characters/mandarax/head.svg"
  26524. }
  26525. },
  26526. belly: {
  26527. height: math.unit(33, "feet"),
  26528. name: "Belly",
  26529. preyCapacity: math.unit(500, "people"),
  26530. image: {
  26531. source: "./media/characters/mandarax/belly.svg"
  26532. }
  26533. },
  26534. dick: {
  26535. height: math.unit(8.46, "feet"),
  26536. name: "Dick",
  26537. image: {
  26538. source: "./media/characters/mandarax/dick.svg"
  26539. }
  26540. },
  26541. top: {
  26542. height: math.unit(28, "meters"),
  26543. name: "Top",
  26544. image: {
  26545. source: "./media/characters/mandarax/top.svg"
  26546. }
  26547. },
  26548. },
  26549. [
  26550. {
  26551. name: "Normal",
  26552. height: math.unit(25, "feet"),
  26553. default: true
  26554. },
  26555. ]
  26556. ))
  26557. characterMakers.push(() => makeCharacter(
  26558. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26559. {
  26560. front: {
  26561. height: math.unit(5, "feet"),
  26562. weight: math.unit(90, "lb"),
  26563. name: "Front",
  26564. image: {
  26565. source: "./media/characters/pixil/front.svg",
  26566. extra: 2000 / 1618,
  26567. bottom: 12.3 / 2011
  26568. }
  26569. },
  26570. },
  26571. [
  26572. {
  26573. name: "Normal",
  26574. height: math.unit(5, "feet"),
  26575. default: true
  26576. },
  26577. {
  26578. name: "Megamacro",
  26579. height: math.unit(10, "miles"),
  26580. },
  26581. ]
  26582. ))
  26583. characterMakers.push(() => makeCharacter(
  26584. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26585. {
  26586. front: {
  26587. height: math.unit(7 + 2 / 12, "feet"),
  26588. weight: math.unit(200, "lb"),
  26589. name: "Front",
  26590. image: {
  26591. source: "./media/characters/angel/front.svg",
  26592. extra: 1830 / 1737,
  26593. bottom: 22.6 / 1854,
  26594. }
  26595. },
  26596. },
  26597. [
  26598. {
  26599. name: "Normal",
  26600. height: math.unit(7 + 2 / 12, "feet"),
  26601. default: true
  26602. },
  26603. {
  26604. name: "Macro",
  26605. height: math.unit(1000, "feet")
  26606. },
  26607. {
  26608. name: "Megamacro",
  26609. height: math.unit(2, "miles")
  26610. },
  26611. {
  26612. name: "Gigamacro",
  26613. height: math.unit(20, "earths")
  26614. },
  26615. ]
  26616. ))
  26617. characterMakers.push(() => makeCharacter(
  26618. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26619. {
  26620. front: {
  26621. height: math.unit(5, "feet"),
  26622. weight: math.unit(180, "lb"),
  26623. name: "Front",
  26624. image: {
  26625. source: "./media/characters/mekana/front.svg",
  26626. extra: 1671 / 1605,
  26627. bottom: 3.5 / 1691
  26628. }
  26629. },
  26630. side: {
  26631. height: math.unit(5, "feet"),
  26632. weight: math.unit(180, "lb"),
  26633. name: "Side",
  26634. image: {
  26635. source: "./media/characters/mekana/side.svg",
  26636. extra: 1671 / 1605,
  26637. bottom: 3.5 / 1691
  26638. }
  26639. },
  26640. back: {
  26641. height: math.unit(5, "feet"),
  26642. weight: math.unit(180, "lb"),
  26643. name: "Back",
  26644. image: {
  26645. source: "./media/characters/mekana/back.svg",
  26646. extra: 1671 / 1605,
  26647. bottom: 3.5 / 1691
  26648. }
  26649. },
  26650. },
  26651. [
  26652. {
  26653. name: "Normal",
  26654. height: math.unit(5, "feet"),
  26655. default: true
  26656. },
  26657. ]
  26658. ))
  26659. characterMakers.push(() => makeCharacter(
  26660. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26661. {
  26662. front: {
  26663. height: math.unit(4 + 6 / 12, "feet"),
  26664. weight: math.unit(80, "lb"),
  26665. name: "Front",
  26666. image: {
  26667. source: "./media/characters/pixie/front.svg",
  26668. extra: 1924 / 1825,
  26669. bottom: 22.4 / 1946
  26670. }
  26671. },
  26672. },
  26673. [
  26674. {
  26675. name: "Normal",
  26676. height: math.unit(4 + 6 / 12, "feet"),
  26677. default: true
  26678. },
  26679. {
  26680. name: "Macro",
  26681. height: math.unit(40, "feet")
  26682. },
  26683. ]
  26684. ))
  26685. characterMakers.push(() => makeCharacter(
  26686. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26687. {
  26688. front: {
  26689. height: math.unit(2.1, "meters"),
  26690. weight: math.unit(200, "lb"),
  26691. name: "Front",
  26692. image: {
  26693. source: "./media/characters/the-lascivious/front.svg",
  26694. extra: 1 / 0.893,
  26695. bottom: 3.5 / 573.7
  26696. }
  26697. },
  26698. },
  26699. [
  26700. {
  26701. name: "Human Scale",
  26702. height: math.unit(2.1, "meters")
  26703. },
  26704. {
  26705. name: "Wolxi Scale",
  26706. height: math.unit(46.2, "m"),
  26707. default: true
  26708. },
  26709. {
  26710. name: "Boinker of Buildings",
  26711. height: math.unit(10, "km")
  26712. },
  26713. {
  26714. name: "Shagger of Skyscrapers",
  26715. height: math.unit(40, "km")
  26716. },
  26717. {
  26718. name: "Banger of Boroughs",
  26719. height: math.unit(4000, "km")
  26720. },
  26721. {
  26722. name: "Screwer of States",
  26723. height: math.unit(100000, "km")
  26724. },
  26725. {
  26726. name: "Pounder of Planets",
  26727. height: math.unit(2000000, "km")
  26728. },
  26729. ]
  26730. ))
  26731. characterMakers.push(() => makeCharacter(
  26732. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26733. {
  26734. front: {
  26735. height: math.unit(6, "feet"),
  26736. weight: math.unit(150, "lb"),
  26737. name: "Front",
  26738. image: {
  26739. source: "./media/characters/aj/front.svg",
  26740. extra: 2039 / 1562,
  26741. bottom: 40 / 2079
  26742. }
  26743. },
  26744. },
  26745. [
  26746. {
  26747. name: "Normal",
  26748. height: math.unit(11 + 6 / 12, "feet"),
  26749. default: true
  26750. },
  26751. {
  26752. name: "Megamacro",
  26753. height: math.unit(60, "megameters")
  26754. },
  26755. ]
  26756. ))
  26757. characterMakers.push(() => makeCharacter(
  26758. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26759. {
  26760. side: {
  26761. height: math.unit(31 + 8 / 12, "feet"),
  26762. weight: math.unit(75000, "kg"),
  26763. name: "Side",
  26764. image: {
  26765. source: "./media/characters/koros/side.svg",
  26766. extra: 1442 / 1297,
  26767. bottom: 122.7 / 1562
  26768. }
  26769. },
  26770. dicksKingsCrown: {
  26771. height: math.unit(6, "feet"),
  26772. name: "Dicks (King's Crown)",
  26773. image: {
  26774. source: "./media/characters/koros/dicks-kings-crown.svg"
  26775. }
  26776. },
  26777. dicksTailSet: {
  26778. height: math.unit(3, "feet"),
  26779. name: "Dicks (Tail Set)",
  26780. image: {
  26781. source: "./media/characters/koros/dicks-tail-set.svg"
  26782. }
  26783. },
  26784. dickCumming: {
  26785. height: math.unit(7.98, "feet"),
  26786. name: "Dick (Cumming)",
  26787. image: {
  26788. source: "./media/characters/koros/dick-cumming.svg"
  26789. }
  26790. },
  26791. dicksBack: {
  26792. height: math.unit(5.9, "feet"),
  26793. name: "Dicks (Back)",
  26794. image: {
  26795. source: "./media/characters/koros/dicks-back.svg"
  26796. }
  26797. },
  26798. dicksFront: {
  26799. height: math.unit(3.72, "feet"),
  26800. name: "Dicks (Front)",
  26801. image: {
  26802. source: "./media/characters/koros/dicks-front.svg"
  26803. }
  26804. },
  26805. dicksPeeking: {
  26806. height: math.unit(3.0, "feet"),
  26807. name: "Dicks (Peeking)",
  26808. image: {
  26809. source: "./media/characters/koros/dicks-peeking.svg"
  26810. }
  26811. },
  26812. eye: {
  26813. height: math.unit(1.7, "feet"),
  26814. name: "Eye",
  26815. image: {
  26816. source: "./media/characters/koros/eye.svg"
  26817. }
  26818. },
  26819. headFront: {
  26820. height: math.unit(11.69, "feet"),
  26821. name: "Head (Front)",
  26822. image: {
  26823. source: "./media/characters/koros/head-front.svg"
  26824. }
  26825. },
  26826. headSide: {
  26827. height: math.unit(14, "feet"),
  26828. name: "Head (Side)",
  26829. image: {
  26830. source: "./media/characters/koros/head-side.svg"
  26831. }
  26832. },
  26833. leg: {
  26834. height: math.unit(17, "feet"),
  26835. name: "Leg",
  26836. image: {
  26837. source: "./media/characters/koros/leg.svg"
  26838. }
  26839. },
  26840. mawSide: {
  26841. height: math.unit(12.8, "feet"),
  26842. name: "Maw (Side)",
  26843. image: {
  26844. source: "./media/characters/koros/maw-side.svg"
  26845. }
  26846. },
  26847. mawSpitting: {
  26848. height: math.unit(17, "feet"),
  26849. name: "Maw (Spitting)",
  26850. image: {
  26851. source: "./media/characters/koros/maw-spitting.svg"
  26852. }
  26853. },
  26854. slit: {
  26855. height: math.unit(2.8, "feet"),
  26856. name: "Slit",
  26857. image: {
  26858. source: "./media/characters/koros/slit.svg"
  26859. }
  26860. },
  26861. stomach: {
  26862. height: math.unit(6.8, "feet"),
  26863. preyCapacity: math.unit(20, "people"),
  26864. name: "Stomach",
  26865. image: {
  26866. source: "./media/characters/koros/stomach.svg"
  26867. }
  26868. },
  26869. wingspanBottom: {
  26870. height: math.unit(114, "feet"),
  26871. name: "Wingspan (Bottom)",
  26872. image: {
  26873. source: "./media/characters/koros/wingspan-bottom.svg"
  26874. }
  26875. },
  26876. wingspanTop: {
  26877. height: math.unit(104, "feet"),
  26878. name: "Wingspan (Top)",
  26879. image: {
  26880. source: "./media/characters/koros/wingspan-top.svg"
  26881. }
  26882. },
  26883. },
  26884. [
  26885. {
  26886. name: "Normal",
  26887. height: math.unit(31 + 8 / 12, "feet"),
  26888. default: true
  26889. },
  26890. ]
  26891. ))
  26892. characterMakers.push(() => makeCharacter(
  26893. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26894. {
  26895. front: {
  26896. height: math.unit(18 + 5 / 12, "feet"),
  26897. weight: math.unit(3750, "kg"),
  26898. name: "Front",
  26899. image: {
  26900. source: "./media/characters/vexx/front.svg",
  26901. extra: 426 / 396,
  26902. bottom: 31.5 / 458
  26903. }
  26904. },
  26905. maw: {
  26906. height: math.unit(6, "feet"),
  26907. name: "Maw",
  26908. image: {
  26909. source: "./media/characters/vexx/maw.svg"
  26910. }
  26911. },
  26912. },
  26913. [
  26914. {
  26915. name: "Normal",
  26916. height: math.unit(18 + 5 / 12, "feet"),
  26917. default: true
  26918. },
  26919. ]
  26920. ))
  26921. characterMakers.push(() => makeCharacter(
  26922. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26923. {
  26924. front: {
  26925. height: math.unit(17 + 6 / 12, "feet"),
  26926. weight: math.unit(150, "lb"),
  26927. name: "Front",
  26928. image: {
  26929. source: "./media/characters/baadra/front.svg",
  26930. extra: 1694/1553,
  26931. bottom: 179/1873
  26932. }
  26933. },
  26934. frontAlt: {
  26935. height: math.unit(17 + 6 / 12, "feet"),
  26936. weight: math.unit(150, "lb"),
  26937. name: "Front (Alt)",
  26938. image: {
  26939. source: "./media/characters/baadra/front-alt.svg",
  26940. extra: 3137 / 2890,
  26941. bottom: 168.4 / 3305
  26942. }
  26943. },
  26944. back: {
  26945. height: math.unit(17 + 6 / 12, "feet"),
  26946. weight: math.unit(150, "lb"),
  26947. name: "Back",
  26948. image: {
  26949. source: "./media/characters/baadra/back.svg",
  26950. extra: 3142 / 2890,
  26951. bottom: 220 / 3371
  26952. }
  26953. },
  26954. head: {
  26955. height: math.unit(5.45, "feet"),
  26956. name: "Head",
  26957. image: {
  26958. source: "./media/characters/baadra/head.svg"
  26959. }
  26960. },
  26961. headAngry: {
  26962. height: math.unit(4.95, "feet"),
  26963. name: "Head (Angry)",
  26964. image: {
  26965. source: "./media/characters/baadra/head-angry.svg"
  26966. }
  26967. },
  26968. headOpen: {
  26969. height: math.unit(6, "feet"),
  26970. name: "Head (Open)",
  26971. image: {
  26972. source: "./media/characters/baadra/head-open.svg"
  26973. }
  26974. },
  26975. },
  26976. [
  26977. {
  26978. name: "Normal",
  26979. height: math.unit(17 + 6 / 12, "feet"),
  26980. default: true
  26981. },
  26982. ]
  26983. ))
  26984. characterMakers.push(() => makeCharacter(
  26985. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26986. {
  26987. front: {
  26988. height: math.unit(7 + 3 / 12, "feet"),
  26989. weight: math.unit(180, "lb"),
  26990. name: "Front",
  26991. image: {
  26992. source: "./media/characters/juri/front.svg",
  26993. extra: 1401 / 1237,
  26994. bottom: 18.5 / 1418
  26995. }
  26996. },
  26997. side: {
  26998. height: math.unit(7 + 3 / 12, "feet"),
  26999. weight: math.unit(180, "lb"),
  27000. name: "Side",
  27001. image: {
  27002. source: "./media/characters/juri/side.svg",
  27003. extra: 1424 / 1242,
  27004. bottom: 18.5 / 1447
  27005. }
  27006. },
  27007. sitting: {
  27008. height: math.unit(6, "feet"),
  27009. weight: math.unit(180, "lb"),
  27010. name: "Sitting",
  27011. image: {
  27012. source: "./media/characters/juri/sitting.svg",
  27013. extra: 1270 / 1143,
  27014. bottom: 100 / 1343
  27015. }
  27016. },
  27017. back: {
  27018. height: math.unit(7 + 3 / 12, "feet"),
  27019. weight: math.unit(180, "lb"),
  27020. name: "Back",
  27021. image: {
  27022. source: "./media/characters/juri/back.svg",
  27023. extra: 1377 / 1240,
  27024. bottom: 23.7 / 1405
  27025. }
  27026. },
  27027. maw: {
  27028. height: math.unit(2.8, "feet"),
  27029. name: "Maw",
  27030. image: {
  27031. source: "./media/characters/juri/maw.svg"
  27032. }
  27033. },
  27034. stomach: {
  27035. height: math.unit(0.89, "feet"),
  27036. preyCapacity: math.unit(4, "liters"),
  27037. name: "Stomach",
  27038. image: {
  27039. source: "./media/characters/juri/stomach.svg"
  27040. }
  27041. },
  27042. },
  27043. [
  27044. {
  27045. name: "Normal",
  27046. height: math.unit(7 + 3 / 12, "feet"),
  27047. default: true
  27048. },
  27049. ]
  27050. ))
  27051. characterMakers.push(() => makeCharacter(
  27052. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27053. {
  27054. fox: {
  27055. height: math.unit(5 + 6 / 12, "feet"),
  27056. weight: math.unit(140, "lb"),
  27057. name: "Fox",
  27058. image: {
  27059. source: "./media/characters/maxene-sita/fox.svg",
  27060. extra: 146 / 138,
  27061. bottom: 2.1 / 148.19
  27062. }
  27063. },
  27064. foxLaying: {
  27065. height: math.unit(1.70, "feet"),
  27066. weight: math.unit(140, "lb"),
  27067. name: "Fox (Laying)",
  27068. image: {
  27069. source: "./media/characters/maxene-sita/fox-laying.svg",
  27070. extra: 910 / 572,
  27071. bottom: 71 / 981
  27072. }
  27073. },
  27074. kitsune: {
  27075. height: math.unit(10, "feet"),
  27076. weight: math.unit(800, "lb"),
  27077. name: "Kitsune",
  27078. image: {
  27079. source: "./media/characters/maxene-sita/kitsune.svg",
  27080. extra: 185 / 176,
  27081. bottom: 4.7 / 189.9
  27082. }
  27083. },
  27084. hellhound: {
  27085. height: math.unit(10, "feet"),
  27086. weight: math.unit(700, "lb"),
  27087. name: "Hellhound",
  27088. image: {
  27089. source: "./media/characters/maxene-sita/hellhound.svg",
  27090. extra: 1600 / 1545,
  27091. bottom: 81 / 1681
  27092. }
  27093. },
  27094. },
  27095. [
  27096. {
  27097. name: "Normal",
  27098. height: math.unit(5 + 6 / 12, "feet"),
  27099. default: true
  27100. },
  27101. ]
  27102. ))
  27103. characterMakers.push(() => makeCharacter(
  27104. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27105. {
  27106. front: {
  27107. height: math.unit(3 + 4 / 12, "feet"),
  27108. weight: math.unit(70, "lb"),
  27109. name: "Front",
  27110. image: {
  27111. source: "./media/characters/maia/front.svg",
  27112. extra: 227 / 219.5,
  27113. bottom: 40 / 267
  27114. }
  27115. },
  27116. back: {
  27117. height: math.unit(3 + 4 / 12, "feet"),
  27118. weight: math.unit(70, "lb"),
  27119. name: "Back",
  27120. image: {
  27121. source: "./media/characters/maia/back.svg",
  27122. extra: 237 / 225
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Normal",
  27129. height: math.unit(3 + 4 / 12, "feet"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27136. {
  27137. front: {
  27138. height: math.unit(5 + 10 / 12, "feet"),
  27139. weight: math.unit(197, "lb"),
  27140. name: "Front",
  27141. image: {
  27142. source: "./media/characters/jabaro/front.svg",
  27143. extra: 225 / 216,
  27144. bottom: 5.06 / 230
  27145. }
  27146. },
  27147. back: {
  27148. height: math.unit(5 + 10 / 12, "feet"),
  27149. weight: math.unit(197, "lb"),
  27150. name: "Back",
  27151. image: {
  27152. source: "./media/characters/jabaro/back.svg",
  27153. extra: 225 / 219,
  27154. bottom: 1.9 / 227
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(5 + 10 / 12, "feet"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(5 + 8 / 12, "feet"),
  27171. weight: math.unit(139, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/risa/front.svg",
  27175. extra: 270 / 260,
  27176. bottom: 11.2 / 282
  27177. }
  27178. },
  27179. back: {
  27180. height: math.unit(5 + 8 / 12, "feet"),
  27181. weight: math.unit(139, "lb"),
  27182. name: "Back",
  27183. image: {
  27184. source: "./media/characters/risa/back.svg",
  27185. extra: 264 / 255,
  27186. bottom: 4 / 268
  27187. }
  27188. },
  27189. },
  27190. [
  27191. {
  27192. name: "Normal",
  27193. height: math.unit(5 + 8 / 12, "feet"),
  27194. default: true
  27195. },
  27196. ]
  27197. ))
  27198. characterMakers.push(() => makeCharacter(
  27199. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27200. {
  27201. front: {
  27202. height: math.unit(2 + 11 / 12, "feet"),
  27203. weight: math.unit(30, "lb"),
  27204. name: "Front",
  27205. image: {
  27206. source: "./media/characters/weatley/front.svg",
  27207. bottom: 10.7 / 414,
  27208. extra: 403.5 / 362
  27209. }
  27210. },
  27211. back: {
  27212. height: math.unit(2 + 11 / 12, "feet"),
  27213. weight: math.unit(30, "lb"),
  27214. name: "Back",
  27215. image: {
  27216. source: "./media/characters/weatley/back.svg",
  27217. bottom: 10.7 / 414,
  27218. extra: 403.5 / 362
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Normal",
  27225. height: math.unit(2 + 11 / 12, "feet"),
  27226. default: true
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27232. {
  27233. front: {
  27234. height: math.unit(5 + 2 / 12, "feet"),
  27235. weight: math.unit(50, "kg"),
  27236. name: "Front",
  27237. image: {
  27238. source: "./media/characters/mercury-crescent/front.svg",
  27239. extra: 1088 / 1033,
  27240. bottom: 18.9 / 1109
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Normal",
  27247. height: math.unit(5 + 2 / 12, "feet"),
  27248. default: true
  27249. },
  27250. ]
  27251. ))
  27252. characterMakers.push(() => makeCharacter(
  27253. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27254. {
  27255. front: {
  27256. height: math.unit(2, "feet"),
  27257. weight: math.unit(15, "kg"),
  27258. name: "Front",
  27259. image: {
  27260. source: "./media/characters/diamond-jones/front.svg",
  27261. extra: 727/723,
  27262. bottom: 46/773
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Normal",
  27269. height: math.unit(2, "feet"),
  27270. default: true
  27271. },
  27272. ]
  27273. ))
  27274. characterMakers.push(() => makeCharacter(
  27275. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27276. {
  27277. front: {
  27278. height: math.unit(3, "feet"),
  27279. weight: math.unit(30, "kg"),
  27280. name: "Front",
  27281. image: {
  27282. source: "./media/characters/sweet-bit/front.svg",
  27283. extra: 675 / 567,
  27284. bottom: 27.7 / 703
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Normal",
  27291. height: math.unit(3, "feet"),
  27292. default: true
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27298. {
  27299. side: {
  27300. height: math.unit(9.178, "feet"),
  27301. weight: math.unit(500, "lb"),
  27302. name: "Side",
  27303. image: {
  27304. source: "./media/characters/umbrazen/side.svg",
  27305. extra: 1730 / 1473,
  27306. bottom: 34.6 / 1765
  27307. }
  27308. },
  27309. },
  27310. [
  27311. {
  27312. name: "Normal",
  27313. height: math.unit(9.178, "feet"),
  27314. default: true
  27315. },
  27316. ]
  27317. ))
  27318. characterMakers.push(() => makeCharacter(
  27319. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27320. {
  27321. front: {
  27322. height: math.unit(10, "feet"),
  27323. weight: math.unit(750, "lb"),
  27324. name: "Front",
  27325. image: {
  27326. source: "./media/characters/arlist/front.svg",
  27327. extra: 961 / 778,
  27328. bottom: 6.2 / 986
  27329. }
  27330. },
  27331. },
  27332. [
  27333. {
  27334. name: "Normal",
  27335. height: math.unit(10, "feet"),
  27336. default: true
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27342. {
  27343. front: {
  27344. height: math.unit(5 + 1 / 12, "feet"),
  27345. weight: math.unit(110, "lb"),
  27346. name: "Front",
  27347. image: {
  27348. source: "./media/characters/aradel/front.svg",
  27349. extra: 324 / 303,
  27350. bottom: 3.6 / 329.4
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(5 + 1 / 12, "feet"),
  27358. default: true
  27359. },
  27360. ]
  27361. ))
  27362. characterMakers.push(() => makeCharacter(
  27363. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27364. {
  27365. dressed: {
  27366. height: math.unit(3 + 8 / 12, "feet"),
  27367. weight: math.unit(50, "lb"),
  27368. name: "Dressed",
  27369. image: {
  27370. source: "./media/characters/serryn/dressed.svg",
  27371. extra: 1792 / 1656,
  27372. bottom: 43.5 / 1840
  27373. }
  27374. },
  27375. nude: {
  27376. height: math.unit(3 + 8 / 12, "feet"),
  27377. weight: math.unit(50, "lb"),
  27378. name: "Nude",
  27379. image: {
  27380. source: "./media/characters/serryn/nude.svg",
  27381. extra: 1792 / 1656,
  27382. bottom: 43.5 / 1840
  27383. }
  27384. },
  27385. },
  27386. [
  27387. {
  27388. name: "Normal",
  27389. height: math.unit(3 + 8 / 12, "feet"),
  27390. default: true
  27391. },
  27392. ]
  27393. ))
  27394. characterMakers.push(() => makeCharacter(
  27395. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27396. {
  27397. front: {
  27398. height: math.unit(7 + 10 / 12, "feet"),
  27399. weight: math.unit(255, "lb"),
  27400. name: "Front",
  27401. image: {
  27402. source: "./media/characters/xavier-thyme/front.svg",
  27403. extra: 3733 / 3642,
  27404. bottom: 131 / 3869
  27405. }
  27406. },
  27407. frontRaven: {
  27408. height: math.unit(7 + 10 / 12, "feet"),
  27409. weight: math.unit(255, "lb"),
  27410. name: "Front (Raven)",
  27411. image: {
  27412. source: "./media/characters/xavier-thyme/front-raven.svg",
  27413. extra: 4385 / 3642,
  27414. bottom: 131 / 4517
  27415. }
  27416. },
  27417. },
  27418. [
  27419. {
  27420. name: "Normal",
  27421. height: math.unit(7 + 10 / 12, "feet"),
  27422. default: true
  27423. },
  27424. ]
  27425. ))
  27426. characterMakers.push(() => makeCharacter(
  27427. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27428. {
  27429. front: {
  27430. height: math.unit(1.6, "m"),
  27431. weight: math.unit(50, "kg"),
  27432. name: "Front",
  27433. image: {
  27434. source: "./media/characters/kiki/front.svg",
  27435. extra: 4682 / 3610,
  27436. bottom: 115 / 4777
  27437. }
  27438. },
  27439. },
  27440. [
  27441. {
  27442. name: "Normal",
  27443. height: math.unit(1.6, "meters"),
  27444. default: true
  27445. },
  27446. ]
  27447. ))
  27448. characterMakers.push(() => makeCharacter(
  27449. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27450. {
  27451. front: {
  27452. height: math.unit(50, "m"),
  27453. weight: math.unit(500, "tonnes"),
  27454. name: "Front",
  27455. image: {
  27456. source: "./media/characters/ryoko/front.svg",
  27457. extra: 4632 / 3926,
  27458. bottom: 193 / 4823
  27459. }
  27460. },
  27461. },
  27462. [
  27463. {
  27464. name: "Normal",
  27465. height: math.unit(50, "meters"),
  27466. default: true
  27467. },
  27468. ]
  27469. ))
  27470. characterMakers.push(() => makeCharacter(
  27471. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27472. {
  27473. front: {
  27474. height: math.unit(30, "m"),
  27475. weight: math.unit(22, "tonnes"),
  27476. name: "Front",
  27477. image: {
  27478. source: "./media/characters/elio/front.svg",
  27479. extra: 4582 / 3720,
  27480. bottom: 236 / 4828
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Normal",
  27487. height: math.unit(30, "meters"),
  27488. default: true
  27489. },
  27490. ]
  27491. ))
  27492. characterMakers.push(() => makeCharacter(
  27493. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27494. {
  27495. front: {
  27496. height: math.unit(6 + 3 / 12, "feet"),
  27497. weight: math.unit(120, "lb"),
  27498. name: "Front",
  27499. image: {
  27500. source: "./media/characters/azura/front.svg",
  27501. extra: 1149 / 1135,
  27502. bottom: 45 / 1194
  27503. }
  27504. },
  27505. frontClothed: {
  27506. height: math.unit(6 + 3 / 12, "feet"),
  27507. weight: math.unit(120, "lb"),
  27508. name: "Front (Clothed)",
  27509. image: {
  27510. source: "./media/characters/azura/front-clothed.svg",
  27511. extra: 1149 / 1135,
  27512. bottom: 45 / 1194
  27513. }
  27514. },
  27515. },
  27516. [
  27517. {
  27518. name: "Normal",
  27519. height: math.unit(6 + 3 / 12, "feet"),
  27520. default: true
  27521. },
  27522. {
  27523. name: "Macro",
  27524. height: math.unit(20 + 6 / 12, "feet")
  27525. },
  27526. {
  27527. name: "Megamacro",
  27528. height: math.unit(12, "miles")
  27529. },
  27530. {
  27531. name: "Gigamacro",
  27532. height: math.unit(10000, "miles")
  27533. },
  27534. {
  27535. name: "Teramacro",
  27536. height: math.unit(900000, "miles")
  27537. },
  27538. ]
  27539. ))
  27540. characterMakers.push(() => makeCharacter(
  27541. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27542. {
  27543. front: {
  27544. height: math.unit(12, "feet"),
  27545. weight: math.unit(1, "ton"),
  27546. capacity: math.unit(660000, "gallons"),
  27547. name: "Front",
  27548. image: {
  27549. source: "./media/characters/zeus/front.svg",
  27550. extra: 5005 / 4717,
  27551. bottom: 363 / 5388
  27552. }
  27553. },
  27554. },
  27555. [
  27556. {
  27557. name: "Normal",
  27558. height: math.unit(12, "feet")
  27559. },
  27560. {
  27561. name: "Preferred Size",
  27562. height: math.unit(0.5, "miles"),
  27563. default: true
  27564. },
  27565. {
  27566. name: "Giga Horse",
  27567. height: math.unit(300, "miles")
  27568. },
  27569. {
  27570. name: "Riding Planets",
  27571. height: math.unit(30, "megameters")
  27572. },
  27573. {
  27574. name: "Cosmic Giant",
  27575. height: math.unit(3, "zettameters")
  27576. },
  27577. {
  27578. name: "Breeding God",
  27579. height: math.unit(9.92e22, "yottameters")
  27580. },
  27581. ]
  27582. ))
  27583. characterMakers.push(() => makeCharacter(
  27584. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27585. {
  27586. side: {
  27587. height: math.unit(9, "feet"),
  27588. weight: math.unit(1500, "kg"),
  27589. name: "Side",
  27590. image: {
  27591. source: "./media/characters/fang/side.svg",
  27592. extra: 924 / 866,
  27593. bottom: 47.5 / 972.3
  27594. }
  27595. },
  27596. },
  27597. [
  27598. {
  27599. name: "Normal",
  27600. height: math.unit(9, "feet"),
  27601. default: true
  27602. },
  27603. {
  27604. name: "Macro",
  27605. height: math.unit(75 + 6 / 12, "feet")
  27606. },
  27607. {
  27608. name: "Teramacro",
  27609. height: math.unit(50000, "miles")
  27610. },
  27611. ]
  27612. ))
  27613. characterMakers.push(() => makeCharacter(
  27614. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27615. {
  27616. front: {
  27617. height: math.unit(10, "feet"),
  27618. weight: math.unit(2, "tons"),
  27619. name: "Front",
  27620. image: {
  27621. source: "./media/characters/rekhit/front.svg",
  27622. extra: 2796 / 2590,
  27623. bottom: 225 / 3022
  27624. }
  27625. },
  27626. },
  27627. [
  27628. {
  27629. name: "Normal",
  27630. height: math.unit(10, "feet"),
  27631. default: true
  27632. },
  27633. {
  27634. name: "Macro",
  27635. height: math.unit(500, "feet")
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27641. {
  27642. front: {
  27643. height: math.unit(7 + 6.451 / 12, "feet"),
  27644. weight: math.unit(310, "lb"),
  27645. name: "Front",
  27646. image: {
  27647. source: "./media/characters/dahlia-verrick/front.svg",
  27648. extra: 1488 / 1365,
  27649. bottom: 6.2 / 1495
  27650. }
  27651. },
  27652. back: {
  27653. height: math.unit(7 + 6.451 / 12, "feet"),
  27654. weight: math.unit(310, "lb"),
  27655. name: "Back",
  27656. image: {
  27657. source: "./media/characters/dahlia-verrick/back.svg",
  27658. extra: 1472 / 1351,
  27659. bottom: 5.28 / 1477
  27660. }
  27661. },
  27662. frontBusiness: {
  27663. height: math.unit(7 + 6.451 / 12, "feet"),
  27664. weight: math.unit(200, "lb"),
  27665. name: "Front (Business)",
  27666. image: {
  27667. source: "./media/characters/dahlia-verrick/front-business.svg",
  27668. extra: 1478 / 1381,
  27669. bottom: 5.5 / 1484
  27670. }
  27671. },
  27672. frontCasual: {
  27673. height: math.unit(7 + 6.451 / 12, "feet"),
  27674. weight: math.unit(200, "lb"),
  27675. name: "Front (Casual)",
  27676. image: {
  27677. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27678. extra: 1478 / 1381,
  27679. bottom: 5.5 / 1484
  27680. }
  27681. },
  27682. },
  27683. [
  27684. {
  27685. name: "Travel-Sized",
  27686. height: math.unit(7.45, "inches")
  27687. },
  27688. {
  27689. name: "Normal",
  27690. height: math.unit(7 + 6.451 / 12, "feet"),
  27691. default: true
  27692. },
  27693. {
  27694. name: "Hitting the Town",
  27695. height: math.unit(37 + 8 / 12, "feet")
  27696. },
  27697. {
  27698. name: "Stomp in the Suburbs",
  27699. height: math.unit(964 + 9.728 / 12, "feet")
  27700. },
  27701. {
  27702. name: "Sit on the City",
  27703. height: math.unit(61747 + 10.592 / 12, "feet")
  27704. },
  27705. {
  27706. name: "Glomp the Globe",
  27707. height: math.unit(252919327 + 4.832 / 12, "feet")
  27708. },
  27709. ]
  27710. ))
  27711. characterMakers.push(() => makeCharacter(
  27712. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27713. {
  27714. front: {
  27715. height: math.unit(6 + 4 / 12, "feet"),
  27716. weight: math.unit(320, "lb"),
  27717. name: "Front",
  27718. image: {
  27719. source: "./media/characters/balina-mahigan/front.svg",
  27720. extra: 447 / 428,
  27721. bottom: 18 / 466
  27722. }
  27723. },
  27724. back: {
  27725. height: math.unit(6 + 4 / 12, "feet"),
  27726. weight: math.unit(320, "lb"),
  27727. name: "Back",
  27728. image: {
  27729. source: "./media/characters/balina-mahigan/back.svg",
  27730. extra: 445 / 428,
  27731. bottom: 4.07 / 448
  27732. }
  27733. },
  27734. arm: {
  27735. height: math.unit(1.88, "feet"),
  27736. name: "Arm",
  27737. image: {
  27738. source: "./media/characters/balina-mahigan/arm.svg"
  27739. }
  27740. },
  27741. backPort: {
  27742. height: math.unit(0.685, "feet"),
  27743. name: "Back Port",
  27744. image: {
  27745. source: "./media/characters/balina-mahigan/back-port.svg"
  27746. }
  27747. },
  27748. hoofpaw: {
  27749. height: math.unit(1.41, "feet"),
  27750. name: "Hoofpaw",
  27751. image: {
  27752. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27753. }
  27754. },
  27755. leftHandBack: {
  27756. height: math.unit(0.938, "feet"),
  27757. name: "Left Hand (Back)",
  27758. image: {
  27759. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27760. }
  27761. },
  27762. leftHandFront: {
  27763. height: math.unit(0.938, "feet"),
  27764. name: "Left Hand (Front)",
  27765. image: {
  27766. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27767. }
  27768. },
  27769. rightHandBack: {
  27770. height: math.unit(0.95, "feet"),
  27771. name: "Right Hand (Back)",
  27772. image: {
  27773. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27774. }
  27775. },
  27776. rightHandFront: {
  27777. height: math.unit(0.95, "feet"),
  27778. name: "Right Hand (Front)",
  27779. image: {
  27780. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27781. }
  27782. },
  27783. },
  27784. [
  27785. {
  27786. name: "Normal",
  27787. height: math.unit(6 + 4 / 12, "feet"),
  27788. default: true
  27789. },
  27790. ]
  27791. ))
  27792. characterMakers.push(() => makeCharacter(
  27793. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27794. {
  27795. front: {
  27796. height: math.unit(6, "feet"),
  27797. weight: math.unit(320, "lb"),
  27798. name: "Front",
  27799. image: {
  27800. source: "./media/characters/balina-mejeri/front.svg",
  27801. extra: 517 / 488,
  27802. bottom: 44.2 / 561
  27803. }
  27804. },
  27805. },
  27806. [
  27807. {
  27808. name: "Normal",
  27809. height: math.unit(6 + 4 / 12, "feet")
  27810. },
  27811. {
  27812. name: "Business",
  27813. height: math.unit(155, "feet"),
  27814. default: true
  27815. },
  27816. ]
  27817. ))
  27818. characterMakers.push(() => makeCharacter(
  27819. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27820. {
  27821. kneeling: {
  27822. height: math.unit(6 + 4 / 12, "feet"),
  27823. weight: math.unit(300 * 20, "lb"),
  27824. name: "Kneeling",
  27825. image: {
  27826. source: "./media/characters/balbarian/kneeling.svg",
  27827. extra: 922 / 862,
  27828. bottom: 42.4 / 965
  27829. }
  27830. },
  27831. },
  27832. [
  27833. {
  27834. name: "Normal",
  27835. height: math.unit(6 + 4 / 12, "feet")
  27836. },
  27837. {
  27838. name: "Treasured",
  27839. height: math.unit(18 + 9 / 12, "feet"),
  27840. default: true
  27841. },
  27842. {
  27843. name: "Macro",
  27844. height: math.unit(900, "feet")
  27845. },
  27846. ]
  27847. ))
  27848. characterMakers.push(() => makeCharacter(
  27849. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27850. {
  27851. front: {
  27852. height: math.unit(6 + 4 / 12, "feet"),
  27853. weight: math.unit(325, "lb"),
  27854. name: "Front",
  27855. image: {
  27856. source: "./media/characters/balina-amarini/front.svg",
  27857. extra: 415 / 403,
  27858. bottom: 19 / 433.4
  27859. }
  27860. },
  27861. back: {
  27862. height: math.unit(6 + 4 / 12, "feet"),
  27863. weight: math.unit(325, "lb"),
  27864. name: "Back",
  27865. image: {
  27866. source: "./media/characters/balina-amarini/back.svg",
  27867. extra: 415 / 403,
  27868. bottom: 13.5 / 432
  27869. }
  27870. },
  27871. overdrive: {
  27872. height: math.unit(6 + 4 / 12, "feet"),
  27873. weight: math.unit(400, "lb"),
  27874. name: "Overdrive",
  27875. image: {
  27876. source: "./media/characters/balina-amarini/overdrive.svg",
  27877. extra: 269 / 259,
  27878. bottom: 12 / 282
  27879. }
  27880. },
  27881. },
  27882. [
  27883. {
  27884. name: "Boom",
  27885. height: math.unit(9 + 10 / 12, "feet"),
  27886. default: true
  27887. },
  27888. {
  27889. name: "Macro",
  27890. height: math.unit(280, "feet")
  27891. },
  27892. ]
  27893. ))
  27894. characterMakers.push(() => makeCharacter(
  27895. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27896. {
  27897. goddess: {
  27898. height: math.unit(600, "feet"),
  27899. weight: math.unit(2000000, "tons"),
  27900. name: "Goddess",
  27901. image: {
  27902. source: "./media/characters/lady-kubwa/goddess.svg",
  27903. extra: 1240.5 / 1223,
  27904. bottom: 22 / 1263
  27905. }
  27906. },
  27907. goddesser: {
  27908. height: math.unit(900, "feet"),
  27909. weight: math.unit(20000000, "lb"),
  27910. name: "Goddess-er",
  27911. image: {
  27912. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27913. extra: 899 / 888,
  27914. bottom: 12.6 / 912
  27915. }
  27916. },
  27917. },
  27918. [
  27919. {
  27920. name: "Macro",
  27921. height: math.unit(600, "feet"),
  27922. default: true
  27923. },
  27924. {
  27925. name: "Megamacro",
  27926. height: math.unit(250, "miles")
  27927. },
  27928. ]
  27929. ))
  27930. characterMakers.push(() => makeCharacter(
  27931. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27932. {
  27933. front: {
  27934. height: math.unit(7 + 7 / 12, "feet"),
  27935. weight: math.unit(250, "lb"),
  27936. name: "Front",
  27937. image: {
  27938. source: "./media/characters/tala-grovehorn/front.svg",
  27939. extra: 2636 / 2525,
  27940. bottom: 147 / 2781
  27941. }
  27942. },
  27943. back: {
  27944. height: math.unit(7 + 7 / 12, "feet"),
  27945. weight: math.unit(250, "lb"),
  27946. name: "Back",
  27947. image: {
  27948. source: "./media/characters/tala-grovehorn/back.svg",
  27949. extra: 2635 / 2539,
  27950. bottom: 100 / 2732.8
  27951. }
  27952. },
  27953. mouth: {
  27954. height: math.unit(1.15, "feet"),
  27955. name: "Mouth",
  27956. image: {
  27957. source: "./media/characters/tala-grovehorn/mouth.svg"
  27958. }
  27959. },
  27960. dick: {
  27961. height: math.unit(2.36, "feet"),
  27962. name: "Dick",
  27963. image: {
  27964. source: "./media/characters/tala-grovehorn/dick.svg"
  27965. }
  27966. },
  27967. slit: {
  27968. height: math.unit(0.61, "feet"),
  27969. name: "Slit",
  27970. image: {
  27971. source: "./media/characters/tala-grovehorn/slit.svg"
  27972. }
  27973. },
  27974. },
  27975. [
  27976. ]
  27977. ))
  27978. characterMakers.push(() => makeCharacter(
  27979. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27980. {
  27981. front: {
  27982. height: math.unit(7 + 7 / 12, "feet"),
  27983. weight: math.unit(225, "lb"),
  27984. name: "Front",
  27985. image: {
  27986. source: "./media/characters/epona/front.svg",
  27987. extra: 2445 / 2290,
  27988. bottom: 251 / 2696
  27989. }
  27990. },
  27991. back: {
  27992. height: math.unit(7 + 7 / 12, "feet"),
  27993. weight: math.unit(225, "lb"),
  27994. name: "Back",
  27995. image: {
  27996. source: "./media/characters/epona/back.svg",
  27997. extra: 2546 / 2408,
  27998. bottom: 44 / 2589
  27999. }
  28000. },
  28001. genitals: {
  28002. height: math.unit(1.5, "feet"),
  28003. name: "Genitals",
  28004. image: {
  28005. source: "./media/characters/epona/genitals.svg"
  28006. }
  28007. },
  28008. },
  28009. [
  28010. {
  28011. name: "Normal",
  28012. height: math.unit(7 + 7 / 12, "feet"),
  28013. default: true
  28014. },
  28015. ]
  28016. ))
  28017. characterMakers.push(() => makeCharacter(
  28018. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28019. {
  28020. front: {
  28021. height: math.unit(7, "feet"),
  28022. weight: math.unit(518, "lb"),
  28023. name: "Front",
  28024. image: {
  28025. source: "./media/characters/avia-bloodbourn/front.svg",
  28026. extra: 1466 / 1350,
  28027. bottom: 65 / 1527
  28028. }
  28029. },
  28030. },
  28031. [
  28032. ]
  28033. ))
  28034. characterMakers.push(() => makeCharacter(
  28035. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28036. {
  28037. front: {
  28038. height: math.unit(9.35, "feet"),
  28039. weight: math.unit(600, "lb"),
  28040. name: "Front",
  28041. image: {
  28042. source: "./media/characters/amera/front.svg",
  28043. extra: 891 / 818,
  28044. bottom: 30 / 922.7
  28045. }
  28046. },
  28047. back: {
  28048. height: math.unit(9.35, "feet"),
  28049. weight: math.unit(600, "lb"),
  28050. name: "Back",
  28051. image: {
  28052. source: "./media/characters/amera/back.svg",
  28053. extra: 876 / 824,
  28054. bottom: 6.8 / 884
  28055. }
  28056. },
  28057. dick: {
  28058. height: math.unit(2.14, "feet"),
  28059. name: "Dick",
  28060. image: {
  28061. source: "./media/characters/amera/dick.svg"
  28062. }
  28063. },
  28064. },
  28065. [
  28066. {
  28067. name: "Normal",
  28068. height: math.unit(9.35, "feet"),
  28069. default: true
  28070. },
  28071. ]
  28072. ))
  28073. characterMakers.push(() => makeCharacter(
  28074. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28075. {
  28076. kneeling: {
  28077. height: math.unit(3 + 4 / 12, "feet"),
  28078. weight: math.unit(90, "lb"),
  28079. name: "Kneeling",
  28080. image: {
  28081. source: "./media/characters/rosewen/kneeling.svg",
  28082. extra: 1835 / 1571,
  28083. bottom: 27.7 / 1862
  28084. }
  28085. },
  28086. },
  28087. [
  28088. {
  28089. name: "Normal",
  28090. height: math.unit(3 + 4 / 12, "feet"),
  28091. default: true
  28092. },
  28093. ]
  28094. ))
  28095. characterMakers.push(() => makeCharacter(
  28096. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28097. {
  28098. front: {
  28099. height: math.unit(5 + 10 / 12, "feet"),
  28100. weight: math.unit(200, "lb"),
  28101. name: "Front",
  28102. image: {
  28103. source: "./media/characters/sabah/front.svg",
  28104. extra: 849 / 763,
  28105. bottom: 33.9 / 881
  28106. }
  28107. },
  28108. },
  28109. [
  28110. {
  28111. name: "Normal",
  28112. height: math.unit(5 + 10 / 12, "feet"),
  28113. default: true
  28114. },
  28115. ]
  28116. ))
  28117. characterMakers.push(() => makeCharacter(
  28118. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28119. {
  28120. front: {
  28121. height: math.unit(3 + 5 / 12, "feet"),
  28122. weight: math.unit(40, "kg"),
  28123. name: "Front",
  28124. image: {
  28125. source: "./media/characters/purple-flame/front.svg",
  28126. extra: 1577 / 1412,
  28127. bottom: 97 / 1694
  28128. }
  28129. },
  28130. frontDressed: {
  28131. height: math.unit(3 + 5 / 12, "feet"),
  28132. weight: math.unit(40, "kg"),
  28133. name: "Front (Dressed)",
  28134. image: {
  28135. source: "./media/characters/purple-flame/front-dressed.svg",
  28136. extra: 1577 / 1412,
  28137. bottom: 97 / 1694
  28138. }
  28139. },
  28140. headphones: {
  28141. height: math.unit(0.85, "feet"),
  28142. name: "Headphones",
  28143. image: {
  28144. source: "./media/characters/purple-flame/headphones.svg"
  28145. }
  28146. },
  28147. },
  28148. [
  28149. {
  28150. name: "Really Small",
  28151. height: math.unit(5, "cm")
  28152. },
  28153. {
  28154. name: "Micro",
  28155. height: math.unit(1 + 5 / 12, "feet")
  28156. },
  28157. {
  28158. name: "Normal",
  28159. height: math.unit(3 + 5 / 12, "feet"),
  28160. default: true
  28161. },
  28162. {
  28163. name: "Minimacro",
  28164. height: math.unit(125, "feet")
  28165. },
  28166. {
  28167. name: "Macro",
  28168. height: math.unit(0.5, "miles")
  28169. },
  28170. {
  28171. name: "Megamacro",
  28172. height: math.unit(50, "miles")
  28173. },
  28174. {
  28175. name: "Gigantic",
  28176. height: math.unit(750, "miles")
  28177. },
  28178. {
  28179. name: "Planetary",
  28180. height: math.unit(15000, "miles")
  28181. },
  28182. ]
  28183. ))
  28184. characterMakers.push(() => makeCharacter(
  28185. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28186. {
  28187. front: {
  28188. height: math.unit(14, "feet"),
  28189. weight: math.unit(959, "lb"),
  28190. name: "Front",
  28191. image: {
  28192. source: "./media/characters/arsenal/front.svg",
  28193. extra: 2357 / 2157,
  28194. bottom: 93 / 2458
  28195. }
  28196. },
  28197. },
  28198. [
  28199. {
  28200. name: "Normal",
  28201. height: math.unit(14, "feet"),
  28202. default: true
  28203. },
  28204. ]
  28205. ))
  28206. characterMakers.push(() => makeCharacter(
  28207. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28208. {
  28209. front: {
  28210. height: math.unit(6, "feet"),
  28211. weight: math.unit(150, "lb"),
  28212. name: "Front",
  28213. image: {
  28214. source: "./media/characters/adira/front.svg",
  28215. extra: 1078 / 1029,
  28216. bottom: 87 / 1166
  28217. }
  28218. },
  28219. },
  28220. [
  28221. {
  28222. name: "Micro",
  28223. height: math.unit(4, "inches"),
  28224. default: true
  28225. },
  28226. {
  28227. name: "Macro",
  28228. height: math.unit(50, "feet")
  28229. },
  28230. ]
  28231. ))
  28232. characterMakers.push(() => makeCharacter(
  28233. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28234. {
  28235. front: {
  28236. height: math.unit(16, "feet"),
  28237. weight: math.unit(1000, "lb"),
  28238. name: "Front",
  28239. image: {
  28240. source: "./media/characters/grim/front.svg",
  28241. extra: 622 / 614,
  28242. bottom: 18.1 / 642
  28243. }
  28244. },
  28245. back: {
  28246. height: math.unit(16, "feet"),
  28247. weight: math.unit(1000, "lb"),
  28248. name: "Back",
  28249. image: {
  28250. source: "./media/characters/grim/back.svg",
  28251. extra: 610.6 / 602,
  28252. bottom: 40.8 / 652
  28253. }
  28254. },
  28255. hunched: {
  28256. height: math.unit(9.75, "feet"),
  28257. weight: math.unit(1000, "lb"),
  28258. name: "Hunched",
  28259. image: {
  28260. source: "./media/characters/grim/hunched.svg",
  28261. extra: 304 / 297,
  28262. bottom: 35.4 / 394
  28263. }
  28264. },
  28265. },
  28266. [
  28267. {
  28268. name: "Normal",
  28269. height: math.unit(16, "feet"),
  28270. default: true
  28271. },
  28272. ]
  28273. ))
  28274. characterMakers.push(() => makeCharacter(
  28275. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28276. {
  28277. front: {
  28278. height: math.unit(2.3, "meters"),
  28279. weight: math.unit(300, "lb"),
  28280. name: "Front",
  28281. image: {
  28282. source: "./media/characters/sinja/front-sfw.svg",
  28283. extra: 1393 / 1294,
  28284. bottom: 70 / 1463
  28285. }
  28286. },
  28287. frontNsfw: {
  28288. height: math.unit(2.3, "meters"),
  28289. weight: math.unit(300, "lb"),
  28290. name: "Front (NSFW)",
  28291. image: {
  28292. source: "./media/characters/sinja/front-nsfw.svg",
  28293. extra: 1393 / 1294,
  28294. bottom: 70 / 1463
  28295. }
  28296. },
  28297. back: {
  28298. height: math.unit(2.3, "meters"),
  28299. weight: math.unit(300, "lb"),
  28300. name: "Back",
  28301. image: {
  28302. source: "./media/characters/sinja/back.svg",
  28303. extra: 1393 / 1294,
  28304. bottom: 70 / 1463
  28305. }
  28306. },
  28307. head: {
  28308. height: math.unit(1.771, "feet"),
  28309. name: "Head",
  28310. image: {
  28311. source: "./media/characters/sinja/head.svg"
  28312. }
  28313. },
  28314. slit: {
  28315. height: math.unit(0.8, "feet"),
  28316. name: "Slit",
  28317. image: {
  28318. source: "./media/characters/sinja/slit.svg"
  28319. }
  28320. },
  28321. },
  28322. [
  28323. {
  28324. name: "Normal",
  28325. height: math.unit(2.3, "meters")
  28326. },
  28327. {
  28328. name: "Macro",
  28329. height: math.unit(91, "meters"),
  28330. default: true
  28331. },
  28332. {
  28333. name: "Megamacro",
  28334. height: math.unit(91440, "meters")
  28335. },
  28336. {
  28337. name: "Gigamacro",
  28338. height: math.unit(60960000, "meters")
  28339. },
  28340. {
  28341. name: "Teramacro",
  28342. height: math.unit(9144000000, "meters")
  28343. },
  28344. ]
  28345. ))
  28346. characterMakers.push(() => makeCharacter(
  28347. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28348. {
  28349. front: {
  28350. height: math.unit(1.7, "meters"),
  28351. weight: math.unit(130, "lb"),
  28352. name: "Front",
  28353. image: {
  28354. source: "./media/characters/kyu/front.svg",
  28355. extra: 415 / 395,
  28356. bottom: 5 / 420
  28357. }
  28358. },
  28359. head: {
  28360. height: math.unit(1.75, "feet"),
  28361. name: "Head",
  28362. image: {
  28363. source: "./media/characters/kyu/head.svg"
  28364. }
  28365. },
  28366. foot: {
  28367. height: math.unit(0.81, "feet"),
  28368. name: "Foot",
  28369. image: {
  28370. source: "./media/characters/kyu/foot.svg"
  28371. }
  28372. },
  28373. },
  28374. [
  28375. {
  28376. name: "Normal",
  28377. height: math.unit(1.7, "meters")
  28378. },
  28379. {
  28380. name: "Macro",
  28381. height: math.unit(131, "feet"),
  28382. default: true
  28383. },
  28384. {
  28385. name: "Megamacro",
  28386. height: math.unit(91440, "meters")
  28387. },
  28388. {
  28389. name: "Gigamacro",
  28390. height: math.unit(60960000, "meters")
  28391. },
  28392. {
  28393. name: "Teramacro",
  28394. height: math.unit(9144000000, "meters")
  28395. },
  28396. ]
  28397. ))
  28398. characterMakers.push(() => makeCharacter(
  28399. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28400. {
  28401. front: {
  28402. height: math.unit(7 + 1 / 12, "feet"),
  28403. weight: math.unit(250, "lb"),
  28404. name: "Front",
  28405. image: {
  28406. source: "./media/characters/joey/front.svg",
  28407. extra: 1791 / 1537,
  28408. bottom: 28 / 1816
  28409. }
  28410. },
  28411. },
  28412. [
  28413. {
  28414. name: "Micro",
  28415. height: math.unit(3, "inches")
  28416. },
  28417. {
  28418. name: "Normal",
  28419. height: math.unit(7 + 1 / 12, "feet"),
  28420. default: true
  28421. },
  28422. ]
  28423. ))
  28424. characterMakers.push(() => makeCharacter(
  28425. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28426. {
  28427. front: {
  28428. height: math.unit(165, "cm"),
  28429. weight: math.unit(140, "lb"),
  28430. name: "Front",
  28431. image: {
  28432. source: "./media/characters/sam-evans/front.svg",
  28433. extra: 3417 / 3230,
  28434. bottom: 41.3 / 3417
  28435. }
  28436. },
  28437. frontSixTails: {
  28438. height: math.unit(165, "cm"),
  28439. weight: math.unit(140, "lb"),
  28440. name: "Front-six-tails",
  28441. image: {
  28442. source: "./media/characters/sam-evans/front-six-tails.svg",
  28443. extra: 3417 / 3230,
  28444. bottom: 41.3 / 3417
  28445. }
  28446. },
  28447. back: {
  28448. height: math.unit(165, "cm"),
  28449. weight: math.unit(140, "lb"),
  28450. name: "Back",
  28451. image: {
  28452. source: "./media/characters/sam-evans/back.svg",
  28453. extra: 3227 / 3032,
  28454. bottom: 6.8 / 3234
  28455. }
  28456. },
  28457. face: {
  28458. height: math.unit(0.68, "feet"),
  28459. name: "Face",
  28460. image: {
  28461. source: "./media/characters/sam-evans/face.svg"
  28462. }
  28463. },
  28464. },
  28465. [
  28466. {
  28467. name: "Normal",
  28468. height: math.unit(165, "cm"),
  28469. default: true
  28470. },
  28471. {
  28472. name: "Macro",
  28473. height: math.unit(100, "meters")
  28474. },
  28475. {
  28476. name: "Macro+",
  28477. height: math.unit(800, "meters")
  28478. },
  28479. {
  28480. name: "Macro++",
  28481. height: math.unit(3, "km")
  28482. },
  28483. {
  28484. name: "Macro+++",
  28485. height: math.unit(30, "km")
  28486. },
  28487. ]
  28488. ))
  28489. characterMakers.push(() => makeCharacter(
  28490. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28491. {
  28492. front: {
  28493. height: math.unit(10, "feet"),
  28494. weight: math.unit(750, "lb"),
  28495. name: "Front",
  28496. image: {
  28497. source: "./media/characters/juliet-a/front.svg",
  28498. extra: 1766 / 1720,
  28499. bottom: 43 / 1809
  28500. }
  28501. },
  28502. back: {
  28503. height: math.unit(10, "feet"),
  28504. weight: math.unit(750, "lb"),
  28505. name: "Back",
  28506. image: {
  28507. source: "./media/characters/juliet-a/back.svg",
  28508. extra: 1781 / 1734,
  28509. bottom: 35 / 1810,
  28510. }
  28511. },
  28512. },
  28513. [
  28514. {
  28515. name: "Normal",
  28516. height: math.unit(10, "feet"),
  28517. default: true
  28518. },
  28519. {
  28520. name: "Dragon Form",
  28521. height: math.unit(250, "feet")
  28522. },
  28523. {
  28524. name: "Macro",
  28525. height: math.unit(1000, "feet")
  28526. },
  28527. {
  28528. name: "Megamacro",
  28529. height: math.unit(10000, "feet")
  28530. }
  28531. ]
  28532. ))
  28533. characterMakers.push(() => makeCharacter(
  28534. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28535. {
  28536. regular: {
  28537. height: math.unit(7 + 3 / 12, "feet"),
  28538. weight: math.unit(260, "lb"),
  28539. name: "Regular",
  28540. image: {
  28541. source: "./media/characters/wild/regular.svg",
  28542. extra: 97.45 / 92,
  28543. bottom: 6.8 / 104.3
  28544. }
  28545. },
  28546. biggums: {
  28547. height: math.unit(8 + 6 / 12, "feet"),
  28548. weight: math.unit(425, "lb"),
  28549. name: "Biggums",
  28550. image: {
  28551. source: "./media/characters/wild/biggums.svg",
  28552. extra: 97.45 / 92,
  28553. bottom: 7.5 / 132.34
  28554. }
  28555. },
  28556. mawRegular: {
  28557. height: math.unit(1.24, "feet"),
  28558. name: "Maw (Regular)",
  28559. image: {
  28560. source: "./media/characters/wild/maw.svg"
  28561. }
  28562. },
  28563. mawBiggums: {
  28564. height: math.unit(1.47, "feet"),
  28565. name: "Maw (Biggums)",
  28566. image: {
  28567. source: "./media/characters/wild/maw.svg"
  28568. }
  28569. },
  28570. },
  28571. [
  28572. {
  28573. name: "Normal",
  28574. height: math.unit(7 + 3 / 12, "feet"),
  28575. default: true
  28576. },
  28577. ]
  28578. ))
  28579. characterMakers.push(() => makeCharacter(
  28580. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28581. {
  28582. front: {
  28583. height: math.unit(2.5, "meters"),
  28584. weight: math.unit(200, "kg"),
  28585. name: "Front",
  28586. image: {
  28587. source: "./media/characters/vidar/front.svg",
  28588. extra: 2994 / 2795,
  28589. bottom: 56 / 3061
  28590. }
  28591. },
  28592. back: {
  28593. height: math.unit(2.5, "meters"),
  28594. weight: math.unit(200, "kg"),
  28595. name: "Back",
  28596. image: {
  28597. source: "./media/characters/vidar/back.svg",
  28598. extra: 3131 / 2928,
  28599. bottom: 13.5 / 3141.5
  28600. }
  28601. },
  28602. feral: {
  28603. height: math.unit(2.5, "meters"),
  28604. weight: math.unit(2000, "kg"),
  28605. name: "Feral",
  28606. image: {
  28607. source: "./media/characters/vidar/feral.svg",
  28608. extra: 2790 / 1765,
  28609. bottom: 6 / 2796
  28610. }
  28611. },
  28612. },
  28613. [
  28614. {
  28615. name: "Normal",
  28616. height: math.unit(2.5, "meters"),
  28617. default: true
  28618. },
  28619. {
  28620. name: "Macro",
  28621. height: math.unit(100, "meters")
  28622. },
  28623. ]
  28624. ))
  28625. characterMakers.push(() => makeCharacter(
  28626. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28627. {
  28628. front: {
  28629. height: math.unit(5 + 9 / 12, "feet"),
  28630. weight: math.unit(120, "lb"),
  28631. name: "Front",
  28632. image: {
  28633. source: "./media/characters/ash/front.svg",
  28634. extra: 2189 / 1961,
  28635. bottom: 5.2 / 2194
  28636. }
  28637. },
  28638. },
  28639. [
  28640. {
  28641. name: "Normal",
  28642. height: math.unit(5 + 9 / 12, "feet"),
  28643. default: true
  28644. },
  28645. ]
  28646. ))
  28647. characterMakers.push(() => makeCharacter(
  28648. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28649. {
  28650. front: {
  28651. height: math.unit(9, "feet"),
  28652. weight: math.unit(10000, "lb"),
  28653. name: "Front",
  28654. image: {
  28655. source: "./media/characters/gygabite/front.svg",
  28656. bottom: 31.7 / 537.8,
  28657. extra: 505 / 370
  28658. }
  28659. },
  28660. },
  28661. [
  28662. {
  28663. name: "Normal",
  28664. height: math.unit(9, "feet"),
  28665. default: true
  28666. },
  28667. ]
  28668. ))
  28669. characterMakers.push(() => makeCharacter(
  28670. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28671. {
  28672. front: {
  28673. height: math.unit(12, "feet"),
  28674. weight: math.unit(4000, "lb"),
  28675. name: "Front",
  28676. image: {
  28677. source: "./media/characters/p0tat0/front.svg",
  28678. extra: 1065 / 921,
  28679. bottom: 55.7 / 1121.25
  28680. }
  28681. },
  28682. },
  28683. [
  28684. {
  28685. name: "Normal",
  28686. height: math.unit(12, "feet"),
  28687. default: true
  28688. },
  28689. ]
  28690. ))
  28691. characterMakers.push(() => makeCharacter(
  28692. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28693. {
  28694. side: {
  28695. height: math.unit(6.5, "feet"),
  28696. weight: math.unit(800, "lb"),
  28697. name: "Side",
  28698. image: {
  28699. source: "./media/characters/dusk/side.svg",
  28700. extra: 615 / 373,
  28701. bottom: 53 / 664
  28702. }
  28703. },
  28704. sitting: {
  28705. height: math.unit(7, "feet"),
  28706. weight: math.unit(800, "lb"),
  28707. name: "Sitting",
  28708. image: {
  28709. source: "./media/characters/dusk/sitting.svg",
  28710. extra: 753 / 425,
  28711. bottom: 33 / 774
  28712. }
  28713. },
  28714. head: {
  28715. height: math.unit(6.1, "feet"),
  28716. name: "Head",
  28717. image: {
  28718. source: "./media/characters/dusk/head.svg"
  28719. }
  28720. },
  28721. },
  28722. [
  28723. {
  28724. name: "Normal",
  28725. height: math.unit(7, "feet"),
  28726. default: true
  28727. },
  28728. ]
  28729. ))
  28730. characterMakers.push(() => makeCharacter(
  28731. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28732. {
  28733. front: {
  28734. height: math.unit(15, "feet"),
  28735. weight: math.unit(7000, "lb"),
  28736. name: "Front",
  28737. image: {
  28738. source: "./media/characters/jay-direwolf/front.svg",
  28739. extra: 1810 / 1732,
  28740. bottom: 66 / 1892
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Normal",
  28747. height: math.unit(15, "feet"),
  28748. default: true
  28749. },
  28750. ]
  28751. ))
  28752. characterMakers.push(() => makeCharacter(
  28753. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28754. {
  28755. front: {
  28756. height: math.unit(4 + 9 / 12, "feet"),
  28757. weight: math.unit(130, "lb"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/anchovie/front.svg",
  28761. extra: 382 / 350,
  28762. bottom: 25 / 409
  28763. }
  28764. },
  28765. back: {
  28766. height: math.unit(4 + 9 / 12, "feet"),
  28767. weight: math.unit(130, "lb"),
  28768. name: "Back",
  28769. image: {
  28770. source: "./media/characters/anchovie/back.svg",
  28771. extra: 385 / 352,
  28772. bottom: 16.6 / 402
  28773. }
  28774. },
  28775. frontDressed: {
  28776. height: math.unit(4 + 9 / 12, "feet"),
  28777. weight: math.unit(130, "lb"),
  28778. name: "Front (Dressed)",
  28779. image: {
  28780. source: "./media/characters/anchovie/front-dressed.svg",
  28781. extra: 382 / 350,
  28782. bottom: 25 / 409
  28783. }
  28784. },
  28785. backDressed: {
  28786. height: math.unit(4 + 9 / 12, "feet"),
  28787. weight: math.unit(130, "lb"),
  28788. name: "Back (Dressed)",
  28789. image: {
  28790. source: "./media/characters/anchovie/back-dressed.svg",
  28791. extra: 385 / 352,
  28792. bottom: 16.6 / 402
  28793. }
  28794. },
  28795. },
  28796. [
  28797. {
  28798. name: "Micro",
  28799. height: math.unit(6.4, "inches")
  28800. },
  28801. {
  28802. name: "Normal",
  28803. height: math.unit(4 + 9 / 12, "feet"),
  28804. default: true
  28805. },
  28806. ]
  28807. ))
  28808. characterMakers.push(() => makeCharacter(
  28809. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28810. {
  28811. front: {
  28812. height: math.unit(2, "meters"),
  28813. weight: math.unit(180, "lb"),
  28814. name: "Front",
  28815. image: {
  28816. source: "./media/characters/acidrenamon/front.svg",
  28817. extra: 987 / 890,
  28818. bottom: 22.8 / 1009
  28819. }
  28820. },
  28821. back: {
  28822. height: math.unit(2, "meters"),
  28823. weight: math.unit(180, "lb"),
  28824. name: "Back",
  28825. image: {
  28826. source: "./media/characters/acidrenamon/back.svg",
  28827. extra: 983 / 891,
  28828. bottom: 8.4 / 992
  28829. }
  28830. },
  28831. head: {
  28832. height: math.unit(1.92, "feet"),
  28833. name: "Head",
  28834. image: {
  28835. source: "./media/characters/acidrenamon/head.svg"
  28836. }
  28837. },
  28838. rump: {
  28839. height: math.unit(1.72, "feet"),
  28840. name: "Rump",
  28841. image: {
  28842. source: "./media/characters/acidrenamon/rump.svg"
  28843. }
  28844. },
  28845. tail: {
  28846. height: math.unit(4.2, "feet"),
  28847. name: "Tail",
  28848. image: {
  28849. source: "./media/characters/acidrenamon/tail.svg"
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Normal",
  28856. height: math.unit(2, "meters"),
  28857. default: true
  28858. },
  28859. {
  28860. name: "Minimacro",
  28861. height: math.unit(7, "meters")
  28862. },
  28863. {
  28864. name: "Macro",
  28865. height: math.unit(200, "meters")
  28866. },
  28867. {
  28868. name: "Gigamacro",
  28869. height: math.unit(0.2, "earths")
  28870. },
  28871. ]
  28872. ))
  28873. characterMakers.push(() => makeCharacter(
  28874. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28875. {
  28876. front: {
  28877. height: math.unit(152, "feet"),
  28878. name: "Front",
  28879. image: {
  28880. source: "./media/characters/kenzie-lee/front.svg",
  28881. extra: 1869/1774,
  28882. bottom: 128/1997
  28883. }
  28884. },
  28885. side: {
  28886. height: math.unit(86, "feet"),
  28887. name: "Side",
  28888. image: {
  28889. source: "./media/characters/kenzie-lee/side.svg",
  28890. extra: 930/815,
  28891. bottom: 177/1107
  28892. }
  28893. },
  28894. paw: {
  28895. height: math.unit(15, "feet"),
  28896. name: "Paw",
  28897. image: {
  28898. source: "./media/characters/kenzie-lee/paw.svg"
  28899. }
  28900. },
  28901. },
  28902. [
  28903. {
  28904. name: "Kenzie Flea",
  28905. height: math.unit(2, "mm"),
  28906. default: true
  28907. },
  28908. {
  28909. name: "Micro",
  28910. height: math.unit(2, "inches")
  28911. },
  28912. {
  28913. name: "Normal",
  28914. height: math.unit(152, "feet")
  28915. },
  28916. {
  28917. name: "Megamacro",
  28918. height: math.unit(7, "miles")
  28919. },
  28920. {
  28921. name: "Gigamacro",
  28922. height: math.unit(8000, "miles")
  28923. },
  28924. ]
  28925. ))
  28926. characterMakers.push(() => makeCharacter(
  28927. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28928. {
  28929. front: {
  28930. height: math.unit(6, "feet"),
  28931. name: "Front",
  28932. image: {
  28933. source: "./media/characters/withers/front.svg",
  28934. extra: 1935/1760,
  28935. bottom: 72/2007
  28936. }
  28937. },
  28938. back: {
  28939. height: math.unit(6, "feet"),
  28940. name: "Back",
  28941. image: {
  28942. source: "./media/characters/withers/back.svg",
  28943. extra: 1944/1792,
  28944. bottom: 12/1956
  28945. }
  28946. },
  28947. dressed: {
  28948. height: math.unit(6, "feet"),
  28949. name: "Dressed",
  28950. image: {
  28951. source: "./media/characters/withers/dressed.svg",
  28952. extra: 1937/1765,
  28953. bottom: 73/2010
  28954. }
  28955. },
  28956. phase1: {
  28957. height: math.unit(1.1, "feet"),
  28958. name: "Phase 1",
  28959. image: {
  28960. source: "./media/characters/withers/phase-1.svg",
  28961. extra: 1885/1232,
  28962. bottom: 0/1885
  28963. }
  28964. },
  28965. phase2: {
  28966. height: math.unit(1.05, "feet"),
  28967. name: "Phase 2",
  28968. image: {
  28969. source: "./media/characters/withers/phase-2.svg",
  28970. extra: 1792/1090,
  28971. bottom: 0/1792
  28972. }
  28973. },
  28974. partyWipe: {
  28975. height: math.unit(1.1, "feet"),
  28976. name: "Party Wipe",
  28977. image: {
  28978. source: "./media/characters/withers/party-wipe.svg",
  28979. extra: 1864/1207,
  28980. bottom: 0/1864
  28981. }
  28982. },
  28983. },
  28984. [
  28985. {
  28986. name: "Macro",
  28987. height: math.unit(167, "feet"),
  28988. default: true
  28989. },
  28990. {
  28991. name: "Megamacro",
  28992. height: math.unit(15, "miles")
  28993. }
  28994. ]
  28995. ))
  28996. characterMakers.push(() => makeCharacter(
  28997. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28998. {
  28999. front: {
  29000. height: math.unit(6 + 7 / 12, "feet"),
  29001. weight: math.unit(250, "lb"),
  29002. name: "Front",
  29003. image: {
  29004. source: "./media/characters/nemoskii/front.svg",
  29005. extra: 2270 / 1734,
  29006. bottom: 86 / 2354
  29007. }
  29008. },
  29009. back: {
  29010. height: math.unit(6 + 7 / 12, "feet"),
  29011. weight: math.unit(250, "lb"),
  29012. name: "Back",
  29013. image: {
  29014. source: "./media/characters/nemoskii/back.svg",
  29015. extra: 1845 / 1788,
  29016. bottom: 10.5 / 1852
  29017. }
  29018. },
  29019. head: {
  29020. height: math.unit(1.31, "feet"),
  29021. name: "Head",
  29022. image: {
  29023. source: "./media/characters/nemoskii/head.svg"
  29024. }
  29025. },
  29026. },
  29027. [
  29028. {
  29029. name: "Micro",
  29030. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29031. },
  29032. {
  29033. name: "Normal",
  29034. height: math.unit(6 + 7 / 12, "feet"),
  29035. default: true
  29036. },
  29037. {
  29038. name: "Macro",
  29039. height: math.unit((6 + 7 / 12) * 150, "feet")
  29040. },
  29041. {
  29042. name: "Macro+",
  29043. height: math.unit((6 + 7 / 12) * 500, "feet")
  29044. },
  29045. {
  29046. name: "Megamacro",
  29047. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29048. },
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(1, "mile"),
  29056. weight: math.unit(265261.9, "lb"),
  29057. name: "Front",
  29058. image: {
  29059. source: "./media/characters/shui/front.svg",
  29060. extra: 1633 / 1564,
  29061. bottom: 91.5 / 1726
  29062. }
  29063. },
  29064. },
  29065. [
  29066. {
  29067. name: "Macro",
  29068. height: math.unit(1, "mile"),
  29069. default: true
  29070. },
  29071. ]
  29072. ))
  29073. characterMakers.push(() => makeCharacter(
  29074. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29075. {
  29076. front: {
  29077. height: math.unit(12 + 6 / 12, "feet"),
  29078. weight: math.unit(1342, "lb"),
  29079. name: "Front",
  29080. image: {
  29081. source: "./media/characters/arokh-takakura/front.svg",
  29082. extra: 1089 / 1043,
  29083. bottom: 77.4 / 1176.7
  29084. }
  29085. },
  29086. back: {
  29087. height: math.unit(12 + 6 / 12, "feet"),
  29088. weight: math.unit(1342, "lb"),
  29089. name: "Back",
  29090. image: {
  29091. source: "./media/characters/arokh-takakura/back.svg",
  29092. extra: 1046 / 1019,
  29093. bottom: 102 / 1150
  29094. }
  29095. },
  29096. },
  29097. [
  29098. {
  29099. name: "Big",
  29100. height: math.unit(12 + 6 / 12, "feet"),
  29101. default: true
  29102. },
  29103. ]
  29104. ))
  29105. characterMakers.push(() => makeCharacter(
  29106. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29107. {
  29108. front: {
  29109. height: math.unit(5 + 6 / 12, "feet"),
  29110. weight: math.unit(150, "lb"),
  29111. name: "Front",
  29112. image: {
  29113. source: "./media/characters/theo/front.svg",
  29114. extra: 1184 / 1131,
  29115. bottom: 7.4 / 1191
  29116. }
  29117. },
  29118. },
  29119. [
  29120. {
  29121. name: "Micro",
  29122. height: math.unit(5, "inches")
  29123. },
  29124. {
  29125. name: "Normal",
  29126. height: math.unit(5 + 6 / 12, "feet"),
  29127. default: true
  29128. },
  29129. ]
  29130. ))
  29131. characterMakers.push(() => makeCharacter(
  29132. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29133. {
  29134. front: {
  29135. height: math.unit(5 + 9 / 12, "feet"),
  29136. weight: math.unit(130, "lb"),
  29137. name: "Front",
  29138. image: {
  29139. source: "./media/characters/cecelia-swift/front.svg",
  29140. extra: 502 / 484,
  29141. bottom: 23 / 523
  29142. }
  29143. },
  29144. back: {
  29145. height: math.unit(5 + 9 / 12, "feet"),
  29146. weight: math.unit(130, "lb"),
  29147. name: "Back",
  29148. image: {
  29149. source: "./media/characters/cecelia-swift/back.svg",
  29150. extra: 499 / 485,
  29151. bottom: 12 / 511
  29152. }
  29153. },
  29154. head: {
  29155. height: math.unit(0.90, "feet"),
  29156. name: "Head",
  29157. image: {
  29158. source: "./media/characters/cecelia-swift/head.svg"
  29159. }
  29160. },
  29161. rump: {
  29162. height: math.unit(1.75, "feet"),
  29163. name: "Rump",
  29164. image: {
  29165. source: "./media/characters/cecelia-swift/rump.svg"
  29166. }
  29167. },
  29168. },
  29169. [
  29170. {
  29171. name: "Normal",
  29172. height: math.unit(5 + 9 / 12, "feet"),
  29173. default: true
  29174. },
  29175. {
  29176. name: "Big",
  29177. height: math.unit(50, "feet")
  29178. },
  29179. {
  29180. name: "Macro",
  29181. height: math.unit(100, "feet")
  29182. },
  29183. {
  29184. name: "Macro+",
  29185. height: math.unit(500, "feet")
  29186. },
  29187. {
  29188. name: "Macro++",
  29189. height: math.unit(1000, "feet")
  29190. },
  29191. ]
  29192. ))
  29193. characterMakers.push(() => makeCharacter(
  29194. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29195. {
  29196. front: {
  29197. height: math.unit(6, "feet"),
  29198. weight: math.unit(150, "lb"),
  29199. name: "Front",
  29200. image: {
  29201. source: "./media/characters/kaunan/front.svg",
  29202. extra: 2890 / 2523,
  29203. bottom: 49 / 2939
  29204. }
  29205. },
  29206. },
  29207. [
  29208. {
  29209. name: "Macro",
  29210. height: math.unit(150, "feet"),
  29211. default: true
  29212. },
  29213. ]
  29214. ))
  29215. characterMakers.push(() => makeCharacter(
  29216. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29217. {
  29218. dressed: {
  29219. height: math.unit(175, "cm"),
  29220. weight: math.unit(60, "kg"),
  29221. name: "Dressed",
  29222. image: {
  29223. source: "./media/characters/fei/dressed.svg",
  29224. extra: 1402/1278,
  29225. bottom: 27/1429
  29226. }
  29227. },
  29228. nude: {
  29229. height: math.unit(175, "cm"),
  29230. weight: math.unit(60, "kg"),
  29231. name: "Nude",
  29232. image: {
  29233. source: "./media/characters/fei/nude.svg",
  29234. extra: 1402/1278,
  29235. bottom: 27/1429
  29236. }
  29237. },
  29238. heels: {
  29239. height: math.unit(0.466, "feet"),
  29240. name: "Heels",
  29241. image: {
  29242. source: "./media/characters/fei/heels.svg",
  29243. extra: 156/152,
  29244. bottom: 28/184
  29245. }
  29246. },
  29247. },
  29248. [
  29249. {
  29250. name: "Mortal",
  29251. height: math.unit(175, "cm")
  29252. },
  29253. {
  29254. name: "Normal",
  29255. height: math.unit(3500, "m")
  29256. },
  29257. {
  29258. name: "Stroll",
  29259. height: math.unit(18.4, "km"),
  29260. default: true
  29261. },
  29262. {
  29263. name: "Showoff",
  29264. height: math.unit(175, "km")
  29265. },
  29266. ]
  29267. ))
  29268. characterMakers.push(() => makeCharacter(
  29269. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29270. {
  29271. front: {
  29272. height: math.unit(7, "feet"),
  29273. weight: math.unit(1000, "kg"),
  29274. name: "Front",
  29275. image: {
  29276. source: "./media/characters/edrax/front.svg",
  29277. extra: 2838 / 2550,
  29278. bottom: 130 / 2968
  29279. }
  29280. },
  29281. },
  29282. [
  29283. {
  29284. name: "Small",
  29285. height: math.unit(7, "feet")
  29286. },
  29287. {
  29288. name: "Normal",
  29289. height: math.unit(1500, "meters")
  29290. },
  29291. {
  29292. name: "Mega",
  29293. height: math.unit(12000000, "km"),
  29294. default: true
  29295. },
  29296. {
  29297. name: "Megamacro",
  29298. height: math.unit(10600000, "lightyears")
  29299. },
  29300. {
  29301. name: "Hypermacro",
  29302. height: math.unit(256, "yottameters")
  29303. },
  29304. ]
  29305. ))
  29306. characterMakers.push(() => makeCharacter(
  29307. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29308. {
  29309. front: {
  29310. height: math.unit(10, "feet"),
  29311. weight: math.unit(750, "lb"),
  29312. name: "Front",
  29313. image: {
  29314. source: "./media/characters/clove/front.svg",
  29315. extra: 1918/1751,
  29316. bottom: 52/1970
  29317. }
  29318. },
  29319. back: {
  29320. height: math.unit(10, "feet"),
  29321. weight: math.unit(750, "lb"),
  29322. name: "Back",
  29323. image: {
  29324. source: "./media/characters/clove/back.svg",
  29325. extra: 1912/1747,
  29326. bottom: 50/1962
  29327. }
  29328. },
  29329. },
  29330. [
  29331. {
  29332. name: "Normal",
  29333. height: math.unit(10, "feet"),
  29334. default: true
  29335. },
  29336. ]
  29337. ))
  29338. characterMakers.push(() => makeCharacter(
  29339. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29340. {
  29341. front: {
  29342. height: math.unit(4, "feet"),
  29343. weight: math.unit(50, "lb"),
  29344. name: "Front",
  29345. image: {
  29346. source: "./media/characters/alex-rabbit/front.svg",
  29347. extra: 507 / 458,
  29348. bottom: 18.5 / 527
  29349. }
  29350. },
  29351. back: {
  29352. height: math.unit(4, "feet"),
  29353. weight: math.unit(50, "lb"),
  29354. name: "Back",
  29355. image: {
  29356. source: "./media/characters/alex-rabbit/back.svg",
  29357. extra: 502 / 460,
  29358. bottom: 18.9 / 521
  29359. }
  29360. },
  29361. },
  29362. [
  29363. {
  29364. name: "Normal",
  29365. height: math.unit(4, "feet"),
  29366. default: true
  29367. },
  29368. ]
  29369. ))
  29370. characterMakers.push(() => makeCharacter(
  29371. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29372. {
  29373. front: {
  29374. height: math.unit(1 + 3 / 12, "feet"),
  29375. weight: math.unit(80, "lb"),
  29376. name: "Front",
  29377. image: {
  29378. source: "./media/characters/zander-rose/front.svg",
  29379. extra: 916 / 797,
  29380. bottom: 17 / 933
  29381. }
  29382. },
  29383. back: {
  29384. height: math.unit(1 + 3 / 12, "feet"),
  29385. weight: math.unit(80, "lb"),
  29386. name: "Back",
  29387. image: {
  29388. source: "./media/characters/zander-rose/back.svg",
  29389. extra: 903 / 779,
  29390. bottom: 31 / 934
  29391. }
  29392. },
  29393. },
  29394. [
  29395. {
  29396. name: "Normal",
  29397. height: math.unit(1 + 3 / 12, "feet"),
  29398. default: true
  29399. },
  29400. ]
  29401. ))
  29402. characterMakers.push(() => makeCharacter(
  29403. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29404. {
  29405. anthro: {
  29406. height: math.unit(6, "feet"),
  29407. weight: math.unit(150, "lb"),
  29408. name: "Anthro",
  29409. image: {
  29410. source: "./media/characters/razz/anthro.svg",
  29411. extra: 1437 / 1343,
  29412. bottom: 48 / 1485
  29413. }
  29414. },
  29415. feral: {
  29416. height: math.unit(6, "feet"),
  29417. weight: math.unit(150, "lb"),
  29418. name: "Feral",
  29419. image: {
  29420. source: "./media/characters/razz/feral.svg",
  29421. extra: 2569 / 1385,
  29422. bottom: 95 / 2664
  29423. }
  29424. },
  29425. },
  29426. [
  29427. {
  29428. name: "Normal",
  29429. height: math.unit(6, "feet"),
  29430. default: true
  29431. },
  29432. ]
  29433. ))
  29434. characterMakers.push(() => makeCharacter(
  29435. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29436. {
  29437. front: {
  29438. height: math.unit(9 + 4 / 12, "feet"),
  29439. weight: math.unit(500, "lb"),
  29440. name: "Front",
  29441. image: {
  29442. source: "./media/characters/morrigan/front.svg",
  29443. extra: 2707 / 2579,
  29444. bottom: 156 / 2863
  29445. }
  29446. },
  29447. },
  29448. [
  29449. {
  29450. name: "Normal",
  29451. height: math.unit(9 + 4 / 12, "feet"),
  29452. default: true
  29453. },
  29454. ]
  29455. ))
  29456. characterMakers.push(() => makeCharacter(
  29457. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29458. {
  29459. front: {
  29460. height: math.unit(5, "stories"),
  29461. weight: math.unit(4000, "lb"),
  29462. name: "Front",
  29463. image: {
  29464. source: "./media/characters/jenene/front.svg",
  29465. extra: 1780 / 1710,
  29466. bottom: 57 / 1837
  29467. }
  29468. },
  29469. },
  29470. [
  29471. {
  29472. name: "Normal",
  29473. height: math.unit(5, "stories"),
  29474. default: true
  29475. },
  29476. ]
  29477. ))
  29478. characterMakers.push(() => makeCharacter(
  29479. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29480. {
  29481. taurSfw: {
  29482. height: math.unit(10, "meters"),
  29483. weight: math.unit(17500, "kg"),
  29484. name: "Taur",
  29485. image: {
  29486. source: "./media/characters/faey/taur-sfw.svg",
  29487. extra: 1200 / 968,
  29488. bottom: 41 / 1241
  29489. }
  29490. },
  29491. chestmaw: {
  29492. height: math.unit(2.01, "meters"),
  29493. name: "Chestmaw",
  29494. image: {
  29495. source: "./media/characters/faey/chestmaw.svg"
  29496. }
  29497. },
  29498. foot: {
  29499. height: math.unit(2.43, "meters"),
  29500. name: "Foot",
  29501. image: {
  29502. source: "./media/characters/faey/foot.svg"
  29503. }
  29504. },
  29505. jaws: {
  29506. height: math.unit(1.66, "meters"),
  29507. name: "Jaws",
  29508. image: {
  29509. source: "./media/characters/faey/jaws.svg"
  29510. }
  29511. },
  29512. tongues: {
  29513. height: math.unit(2.01, "meters"),
  29514. name: "Tongues",
  29515. image: {
  29516. source: "./media/characters/faey/tongues.svg"
  29517. }
  29518. },
  29519. },
  29520. [
  29521. {
  29522. name: "Small",
  29523. height: math.unit(10, "meters"),
  29524. default: true
  29525. },
  29526. {
  29527. name: "Big",
  29528. height: math.unit(500000, "km")
  29529. },
  29530. ]
  29531. ))
  29532. characterMakers.push(() => makeCharacter(
  29533. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29534. {
  29535. front: {
  29536. height: math.unit(7, "feet"),
  29537. weight: math.unit(275, "lb"),
  29538. name: "Front",
  29539. image: {
  29540. source: "./media/characters/roku/front.svg",
  29541. extra: 903 / 878,
  29542. bottom: 37 / 940
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Normal",
  29549. height: math.unit(7, "feet"),
  29550. default: true
  29551. },
  29552. {
  29553. name: "Macro",
  29554. height: math.unit(500, "feet")
  29555. },
  29556. {
  29557. name: "Megamacro",
  29558. height: math.unit(200, "miles")
  29559. },
  29560. ]
  29561. ))
  29562. characterMakers.push(() => makeCharacter(
  29563. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29564. {
  29565. front: {
  29566. height: math.unit(6 + 2 / 12, "feet"),
  29567. weight: math.unit(150, "lb"),
  29568. name: "Front",
  29569. image: {
  29570. source: "./media/characters/lira/front.svg",
  29571. extra: 1727 / 1605,
  29572. bottom: 26 / 1753
  29573. }
  29574. },
  29575. back: {
  29576. height: math.unit(6 + 2 / 12, "feet"),
  29577. weight: math.unit(150, "lb"),
  29578. name: "Back",
  29579. image: {
  29580. source: "./media/characters/lira/back.svg",
  29581. extra: 1713/1621,
  29582. bottom: 20/1733
  29583. }
  29584. },
  29585. hand: {
  29586. height: math.unit(0.75, "feet"),
  29587. name: "Hand",
  29588. image: {
  29589. source: "./media/characters/lira/hand.svg"
  29590. }
  29591. },
  29592. maw: {
  29593. height: math.unit(0.65, "feet"),
  29594. name: "Maw",
  29595. image: {
  29596. source: "./media/characters/lira/maw.svg"
  29597. }
  29598. },
  29599. pawDigi: {
  29600. height: math.unit(1.6, "feet"),
  29601. name: "Paw Digi",
  29602. image: {
  29603. source: "./media/characters/lira/paw-digi.svg"
  29604. }
  29605. },
  29606. pawPlanti: {
  29607. height: math.unit(1.4, "feet"),
  29608. name: "Paw Planti",
  29609. image: {
  29610. source: "./media/characters/lira/paw-planti.svg"
  29611. }
  29612. },
  29613. },
  29614. [
  29615. {
  29616. name: "Normal",
  29617. height: math.unit(6 + 2 / 12, "feet"),
  29618. default: true
  29619. },
  29620. {
  29621. name: "Macro",
  29622. height: math.unit(100, "feet")
  29623. },
  29624. {
  29625. name: "Macro²",
  29626. height: math.unit(1600, "feet")
  29627. },
  29628. {
  29629. name: "Planetary",
  29630. height: math.unit(20, "earths")
  29631. },
  29632. ]
  29633. ))
  29634. characterMakers.push(() => makeCharacter(
  29635. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29636. {
  29637. front: {
  29638. height: math.unit(6, "feet"),
  29639. weight: math.unit(150, "lb"),
  29640. name: "Front",
  29641. image: {
  29642. source: "./media/characters/hadjet/front.svg",
  29643. extra: 1480 / 1346,
  29644. bottom: 26 / 1506
  29645. }
  29646. },
  29647. frontNsfw: {
  29648. height: math.unit(6, "feet"),
  29649. weight: math.unit(150, "lb"),
  29650. name: "Front (NSFW)",
  29651. image: {
  29652. source: "./media/characters/hadjet/front-nsfw.svg",
  29653. extra: 1440 / 1358,
  29654. bottom: 52 / 1492
  29655. }
  29656. },
  29657. },
  29658. [
  29659. {
  29660. name: "Macro",
  29661. height: math.unit(10, "stories"),
  29662. default: true
  29663. },
  29664. {
  29665. name: "Megamacro",
  29666. height: math.unit(1.5, "miles")
  29667. },
  29668. {
  29669. name: "Megamacro+",
  29670. height: math.unit(5, "miles")
  29671. },
  29672. ]
  29673. ))
  29674. characterMakers.push(() => makeCharacter(
  29675. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29676. {
  29677. side: {
  29678. height: math.unit(106, "feet"),
  29679. weight: math.unit(500, "tonnes"),
  29680. name: "Side",
  29681. image: {
  29682. source: "./media/characters/kodran/side.svg",
  29683. extra: 553 / 480,
  29684. bottom: 33 / 586
  29685. }
  29686. },
  29687. front: {
  29688. height: math.unit(132, "feet"),
  29689. weight: math.unit(500, "tonnes"),
  29690. name: "Front",
  29691. image: {
  29692. source: "./media/characters/kodran/front.svg",
  29693. extra: 667 / 643,
  29694. bottom: 42 / 709
  29695. }
  29696. },
  29697. flying: {
  29698. height: math.unit(350, "feet"),
  29699. weight: math.unit(500, "tonnes"),
  29700. name: "Flying",
  29701. image: {
  29702. source: "./media/characters/kodran/flying.svg"
  29703. }
  29704. },
  29705. foot: {
  29706. height: math.unit(33, "feet"),
  29707. name: "Foot",
  29708. image: {
  29709. source: "./media/characters/kodran/foot.svg"
  29710. }
  29711. },
  29712. footFront: {
  29713. height: math.unit(19, "feet"),
  29714. name: "Foot (Front)",
  29715. image: {
  29716. source: "./media/characters/kodran/foot-front.svg",
  29717. extra: 261 / 261,
  29718. bottom: 91 / 352
  29719. }
  29720. },
  29721. headFront: {
  29722. height: math.unit(53, "feet"),
  29723. name: "Head (Front)",
  29724. image: {
  29725. source: "./media/characters/kodran/head-front.svg"
  29726. }
  29727. },
  29728. headSide: {
  29729. height: math.unit(65, "feet"),
  29730. name: "Head (Side)",
  29731. image: {
  29732. source: "./media/characters/kodran/head-side.svg"
  29733. }
  29734. },
  29735. throat: {
  29736. height: math.unit(79, "feet"),
  29737. name: "Throat",
  29738. image: {
  29739. source: "./media/characters/kodran/throat.svg"
  29740. }
  29741. },
  29742. },
  29743. [
  29744. {
  29745. name: "Large",
  29746. height: math.unit(106, "feet"),
  29747. default: true
  29748. },
  29749. ]
  29750. ))
  29751. characterMakers.push(() => makeCharacter(
  29752. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29753. {
  29754. side: {
  29755. height: math.unit(11, "feet"),
  29756. weight: math.unit(150, "lb"),
  29757. name: "Side",
  29758. image: {
  29759. source: "./media/characters/pyxaron/side.svg",
  29760. extra: 305 / 195,
  29761. bottom: 17 / 322
  29762. }
  29763. },
  29764. },
  29765. [
  29766. {
  29767. name: "Normal",
  29768. height: math.unit(11, "feet"),
  29769. default: true
  29770. },
  29771. ]
  29772. ))
  29773. characterMakers.push(() => makeCharacter(
  29774. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29775. {
  29776. front: {
  29777. height: math.unit(6, "feet"),
  29778. weight: math.unit(150, "lb"),
  29779. name: "Front",
  29780. image: {
  29781. source: "./media/characters/meep/front.svg",
  29782. extra: 88 / 80,
  29783. bottom: 6 / 94
  29784. }
  29785. },
  29786. },
  29787. [
  29788. {
  29789. name: "Fun Sized",
  29790. height: math.unit(2, "inches"),
  29791. default: true
  29792. },
  29793. {
  29794. name: "Friend Sized",
  29795. height: math.unit(8, "inches")
  29796. },
  29797. ]
  29798. ))
  29799. characterMakers.push(() => makeCharacter(
  29800. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29801. {
  29802. front: {
  29803. height: math.unit(15, "feet"),
  29804. weight: math.unit(2500, "lb"),
  29805. name: "Front",
  29806. image: {
  29807. source: "./media/characters/holly-rabbit/front.svg",
  29808. extra: 1433 / 1233,
  29809. bottom: 125 / 1558
  29810. }
  29811. },
  29812. dick: {
  29813. height: math.unit(4.6, "feet"),
  29814. name: "Dick",
  29815. image: {
  29816. source: "./media/characters/holly-rabbit/dick.svg"
  29817. }
  29818. },
  29819. },
  29820. [
  29821. {
  29822. name: "Normal",
  29823. height: math.unit(15, "feet"),
  29824. default: true
  29825. },
  29826. {
  29827. name: "Macro",
  29828. height: math.unit(250, "feet")
  29829. },
  29830. {
  29831. name: "Macro+",
  29832. height: math.unit(2500, "feet")
  29833. },
  29834. ]
  29835. ))
  29836. characterMakers.push(() => makeCharacter(
  29837. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29838. {
  29839. front: {
  29840. height: math.unit(3.02, "meters"),
  29841. weight: math.unit(500, "kg"),
  29842. name: "Front",
  29843. image: {
  29844. source: "./media/characters/drena/front.svg",
  29845. extra: 282 / 243,
  29846. bottom: 8 / 290
  29847. }
  29848. },
  29849. side: {
  29850. height: math.unit(3.02, "meters"),
  29851. weight: math.unit(500, "kg"),
  29852. name: "Side",
  29853. image: {
  29854. source: "./media/characters/drena/side.svg",
  29855. extra: 280 / 245,
  29856. bottom: 10 / 290
  29857. }
  29858. },
  29859. back: {
  29860. height: math.unit(3.02, "meters"),
  29861. weight: math.unit(500, "kg"),
  29862. name: "Back",
  29863. image: {
  29864. source: "./media/characters/drena/back.svg",
  29865. extra: 278 / 243,
  29866. bottom: 2 / 280
  29867. }
  29868. },
  29869. foot: {
  29870. height: math.unit(0.75, "meters"),
  29871. name: "Foot",
  29872. image: {
  29873. source: "./media/characters/drena/foot.svg"
  29874. }
  29875. },
  29876. maw: {
  29877. height: math.unit(0.82, "meters"),
  29878. name: "Maw",
  29879. image: {
  29880. source: "./media/characters/drena/maw.svg"
  29881. }
  29882. },
  29883. eating: {
  29884. height: math.unit(0.75, "meters"),
  29885. name: "Eating",
  29886. image: {
  29887. source: "./media/characters/drena/eating.svg"
  29888. }
  29889. },
  29890. rump: {
  29891. height: math.unit(0.93, "meters"),
  29892. name: "Rump",
  29893. image: {
  29894. source: "./media/characters/drena/rump.svg"
  29895. }
  29896. },
  29897. },
  29898. [
  29899. {
  29900. name: "Normal",
  29901. height: math.unit(3.02, "meters"),
  29902. default: true
  29903. },
  29904. ]
  29905. ))
  29906. characterMakers.push(() => makeCharacter(
  29907. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29908. {
  29909. front: {
  29910. height: math.unit(6 + 4 / 12, "feet"),
  29911. weight: math.unit(250, "lb"),
  29912. name: "Front",
  29913. image: {
  29914. source: "./media/characters/remmyzilla/front.svg",
  29915. extra: 4033 / 3588,
  29916. bottom: 123 / 4156
  29917. }
  29918. },
  29919. back: {
  29920. height: math.unit(6 + 4 / 12, "feet"),
  29921. weight: math.unit(250, "lb"),
  29922. name: "Back",
  29923. image: {
  29924. source: "./media/characters/remmyzilla/back.svg",
  29925. extra: 2687 / 2555,
  29926. bottom: 48 / 2735
  29927. }
  29928. },
  29929. paw: {
  29930. height: math.unit(1.73, "feet"),
  29931. name: "Paw",
  29932. image: {
  29933. source: "./media/characters/remmyzilla/paw.svg"
  29934. },
  29935. extraAttributes: {
  29936. "toeSize": {
  29937. name: "Toe Size",
  29938. power: 2,
  29939. type: "area",
  29940. base: math.unit(0.0035, "m^2")
  29941. },
  29942. "padSize": {
  29943. name: "Pad Size",
  29944. power: 2,
  29945. type: "area",
  29946. base: math.unit(0.015, "m^2")
  29947. },
  29948. "pawsize": {
  29949. name: "Paw Size",
  29950. power: 2,
  29951. type: "area",
  29952. base: math.unit(0.072, "m^2")
  29953. },
  29954. }
  29955. },
  29956. maw: {
  29957. height: math.unit(1.73, "feet"),
  29958. name: "Maw",
  29959. image: {
  29960. source: "./media/characters/remmyzilla/maw.svg"
  29961. }
  29962. },
  29963. },
  29964. [
  29965. {
  29966. name: "Normal",
  29967. height: math.unit(6 + 4 / 12, "feet")
  29968. },
  29969. {
  29970. name: "Minimacro",
  29971. height: math.unit(12 + 8 / 12, "feet")
  29972. },
  29973. {
  29974. name: "Normal",
  29975. height: math.unit(640, "feet"),
  29976. default: true
  29977. },
  29978. {
  29979. name: "Megamacro",
  29980. height: math.unit(6400, "feet")
  29981. },
  29982. {
  29983. name: "Gigamacro",
  29984. height: math.unit(64000, "miles")
  29985. },
  29986. ]
  29987. ))
  29988. characterMakers.push(() => makeCharacter(
  29989. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29990. {
  29991. front: {
  29992. height: math.unit(2.5, "meters"),
  29993. weight: math.unit(300, "lb"),
  29994. name: "Front",
  29995. image: {
  29996. source: "./media/characters/lawrence/front.svg",
  29997. extra: 357 / 335,
  29998. bottom: 30 / 387
  29999. }
  30000. },
  30001. back: {
  30002. height: math.unit(2.5, "meters"),
  30003. weight: math.unit(300, "lb"),
  30004. name: "Back",
  30005. image: {
  30006. source: "./media/characters/lawrence/back.svg",
  30007. extra: 357 / 338,
  30008. bottom: 16 / 373
  30009. }
  30010. },
  30011. head: {
  30012. height: math.unit(0.9, "meter"),
  30013. name: "Head",
  30014. image: {
  30015. source: "./media/characters/lawrence/head.svg"
  30016. }
  30017. },
  30018. maw: {
  30019. height: math.unit(0.7, "meter"),
  30020. name: "Maw",
  30021. image: {
  30022. source: "./media/characters/lawrence/maw.svg"
  30023. }
  30024. },
  30025. footBottom: {
  30026. height: math.unit(0.5, "meter"),
  30027. name: "Foot (Bottom)",
  30028. image: {
  30029. source: "./media/characters/lawrence/foot-bottom.svg"
  30030. }
  30031. },
  30032. footTop: {
  30033. height: math.unit(0.5, "meter"),
  30034. name: "Foot (Top)",
  30035. image: {
  30036. source: "./media/characters/lawrence/foot-top.svg"
  30037. }
  30038. },
  30039. },
  30040. [
  30041. {
  30042. name: "Normal",
  30043. height: math.unit(2.5, "meters"),
  30044. default: true
  30045. },
  30046. {
  30047. name: "Macro",
  30048. height: math.unit(95, "meters")
  30049. },
  30050. {
  30051. name: "Megamacro",
  30052. height: math.unit(150, "km")
  30053. },
  30054. ]
  30055. ))
  30056. characterMakers.push(() => makeCharacter(
  30057. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30058. {
  30059. front: {
  30060. height: math.unit(4.2, "meters"),
  30061. name: "Front",
  30062. image: {
  30063. source: "./media/characters/sydney/front.svg",
  30064. extra: 1323 / 1277,
  30065. bottom: 111 / 1434
  30066. }
  30067. },
  30068. },
  30069. [
  30070. {
  30071. name: "Normal",
  30072. height: math.unit(4.2, "meters"),
  30073. default: true
  30074. },
  30075. ]
  30076. ))
  30077. characterMakers.push(() => makeCharacter(
  30078. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30079. {
  30080. back: {
  30081. height: math.unit(201, "feet"),
  30082. name: "Back",
  30083. image: {
  30084. source: "./media/characters/jessica/back.svg",
  30085. extra: 273 / 259,
  30086. bottom: 7 / 280
  30087. }
  30088. },
  30089. },
  30090. [
  30091. {
  30092. name: "Normal",
  30093. height: math.unit(201, "feet"),
  30094. default: true
  30095. },
  30096. {
  30097. name: "Megamacro",
  30098. height: math.unit(8, "miles")
  30099. },
  30100. ]
  30101. ))
  30102. characterMakers.push(() => makeCharacter(
  30103. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30104. {
  30105. side: {
  30106. height: math.unit(5.6, "m"),
  30107. weight: math.unit(8000, "kg"),
  30108. name: "Side",
  30109. image: {
  30110. source: "./media/characters/victoria/side.svg",
  30111. extra: 1542/1229,
  30112. bottom: 124/1666
  30113. }
  30114. },
  30115. maw: {
  30116. height: math.unit(7.14, "feet"),
  30117. name: "Maw",
  30118. image: {
  30119. source: "./media/characters/victoria/maw.svg"
  30120. }
  30121. },
  30122. },
  30123. [
  30124. {
  30125. name: "Normal",
  30126. height: math.unit(5.6, "m"),
  30127. default: true
  30128. },
  30129. ]
  30130. ))
  30131. characterMakers.push(() => makeCharacter(
  30132. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30133. {
  30134. front: {
  30135. height: math.unit(5 + 6 / 12, "feet"),
  30136. name: "Front",
  30137. image: {
  30138. source: "./media/characters/cat/front.svg",
  30139. extra: 1449/1295,
  30140. bottom: 34/1483
  30141. },
  30142. form: "cat",
  30143. default: true
  30144. },
  30145. back: {
  30146. height: math.unit(5 + 6 / 12, "feet"),
  30147. name: "Back",
  30148. image: {
  30149. source: "./media/characters/cat/back.svg",
  30150. extra: 1466/1301,
  30151. bottom: 19/1485
  30152. },
  30153. form: "cat"
  30154. },
  30155. taur: {
  30156. height: math.unit(7, "feet"),
  30157. name: "Taur",
  30158. image: {
  30159. source: "./media/characters/cat/taur.svg",
  30160. extra: 1389/1233,
  30161. bottom: 83/1472
  30162. },
  30163. form: "taur",
  30164. default: true
  30165. },
  30166. lucarioFront: {
  30167. height: math.unit(4, "feet"),
  30168. name: "Lucario (Front)",
  30169. image: {
  30170. source: "./media/characters/cat/lucario-front.svg",
  30171. extra: 1149/1019,
  30172. bottom: 84/1233
  30173. },
  30174. form: "lucario",
  30175. default: true
  30176. },
  30177. lucarioBack: {
  30178. height: math.unit(4, "feet"),
  30179. name: "Lucario (Back)",
  30180. image: {
  30181. source: "./media/characters/cat/lucario-back.svg",
  30182. extra: 1190/1059,
  30183. bottom: 33/1223
  30184. },
  30185. form: "lucario"
  30186. },
  30187. megaLucario: {
  30188. height: math.unit(4, "feet"),
  30189. name: "Mega Lucario",
  30190. image: {
  30191. source: "./media/characters/cat/mega-lucario.svg",
  30192. extra: 1515 / 1319,
  30193. bottom: 63 / 1578
  30194. },
  30195. form: "lucario"
  30196. },
  30197. nickit: {
  30198. height: math.unit(2, "feet"),
  30199. name: "Nickit",
  30200. image: {
  30201. source: "./media/characters/cat/nickit.svg",
  30202. extra: 1980 / 1585,
  30203. bottom: 102 / 2082
  30204. },
  30205. form: "nickit",
  30206. default: true
  30207. },
  30208. lopunnyFront: {
  30209. height: math.unit(5, "feet"),
  30210. name: "Lopunny (Front)",
  30211. image: {
  30212. source: "./media/characters/cat/lopunny-front.svg",
  30213. extra: 1782 / 1469,
  30214. bottom: 38 / 1820
  30215. },
  30216. form: "lopunny",
  30217. default: true
  30218. },
  30219. lopunnyBack: {
  30220. height: math.unit(5, "feet"),
  30221. name: "Lopunny (Back)",
  30222. image: {
  30223. source: "./media/characters/cat/lopunny-back.svg",
  30224. extra: 1660 / 1490,
  30225. bottom: 25 / 1685
  30226. },
  30227. form: "lopunny"
  30228. },
  30229. },
  30230. [
  30231. {
  30232. name: "Really small",
  30233. height: math.unit(1, "nm")
  30234. },
  30235. {
  30236. name: "Micro",
  30237. height: math.unit(5, "inches")
  30238. },
  30239. {
  30240. name: "Normal",
  30241. height: math.unit(5 + 6 / 12, "feet"),
  30242. default: true
  30243. },
  30244. {
  30245. name: "Macro",
  30246. height: math.unit(50, "feet")
  30247. },
  30248. {
  30249. name: "Macro+",
  30250. height: math.unit(150, "feet")
  30251. },
  30252. {
  30253. name: "Megamacro",
  30254. height: math.unit(100, "miles")
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(63.4, "meters"),
  30263. weight: math.unit(3.28349e+6, "kilograms"),
  30264. name: "Front",
  30265. image: {
  30266. source: "./media/characters/kirina-violet/front.svg",
  30267. extra: 2812 / 2725,
  30268. bottom: 0 / 2812
  30269. }
  30270. },
  30271. back: {
  30272. height: math.unit(63.4, "meters"),
  30273. weight: math.unit(3.28349e+6, "kilograms"),
  30274. name: "Back",
  30275. image: {
  30276. source: "./media/characters/kirina-violet/back.svg",
  30277. extra: 2812 / 2725,
  30278. bottom: 0 / 2812
  30279. }
  30280. },
  30281. mouth: {
  30282. height: math.unit(4.35, "meters"),
  30283. name: "Mouth",
  30284. image: {
  30285. source: "./media/characters/kirina-violet/mouth.svg"
  30286. }
  30287. },
  30288. paw: {
  30289. height: math.unit(5.6, "meters"),
  30290. name: "Paw",
  30291. image: {
  30292. source: "./media/characters/kirina-violet/paw.svg"
  30293. }
  30294. },
  30295. tail: {
  30296. height: math.unit(18, "meters"),
  30297. name: "Tail",
  30298. image: {
  30299. source: "./media/characters/kirina-violet/tail.svg"
  30300. }
  30301. },
  30302. },
  30303. [
  30304. {
  30305. name: "Macro",
  30306. height: math.unit(63.4, "meters"),
  30307. default: true
  30308. },
  30309. ]
  30310. ))
  30311. characterMakers.push(() => makeCharacter(
  30312. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30313. {
  30314. front: {
  30315. height: math.unit(75, "feet"),
  30316. name: "Front",
  30317. image: {
  30318. source: "./media/characters/cat-gigachu/front.svg",
  30319. extra: 1239/1027,
  30320. bottom: 32/1271
  30321. }
  30322. },
  30323. back: {
  30324. height: math.unit(75, "feet"),
  30325. name: "Back",
  30326. image: {
  30327. source: "./media/characters/cat-gigachu/back.svg",
  30328. extra: 1229/1030,
  30329. bottom: 9/1238
  30330. }
  30331. },
  30332. },
  30333. [
  30334. {
  30335. name: "Dynamax",
  30336. height: math.unit(75, "feet"),
  30337. default: true
  30338. },
  30339. ]
  30340. ))
  30341. characterMakers.push(() => makeCharacter(
  30342. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30343. {
  30344. front: {
  30345. height: math.unit(6, "feet"),
  30346. weight: math.unit(150, "lb"),
  30347. name: "Front",
  30348. image: {
  30349. source: "./media/characters/sfaiyan/front.svg",
  30350. extra: 999 / 978,
  30351. bottom: 5 / 1004
  30352. }
  30353. },
  30354. },
  30355. [
  30356. {
  30357. name: "Normal",
  30358. height: math.unit(1.82, "meters")
  30359. },
  30360. {
  30361. name: "Giant",
  30362. height: math.unit(2.27, "km"),
  30363. default: true
  30364. },
  30365. ]
  30366. ))
  30367. characterMakers.push(() => makeCharacter(
  30368. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30369. {
  30370. front: {
  30371. height: math.unit(179, "cm"),
  30372. weight: math.unit(100, "kg"),
  30373. name: "Front",
  30374. image: {
  30375. source: "./media/characters/raunehkeli/front.svg",
  30376. extra: 1934 / 1926,
  30377. bottom: 0 / 1934
  30378. }
  30379. },
  30380. },
  30381. [
  30382. {
  30383. name: "Normal",
  30384. height: math.unit(179, "cm")
  30385. },
  30386. {
  30387. name: "Maximum",
  30388. height: math.unit(575, "meters"),
  30389. default: true
  30390. },
  30391. ]
  30392. ))
  30393. characterMakers.push(() => makeCharacter(
  30394. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30395. {
  30396. front: {
  30397. height: math.unit(6, "feet"),
  30398. weight: math.unit(150, "lb"),
  30399. name: "Front",
  30400. image: {
  30401. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30402. extra: 2625 / 2518,
  30403. bottom: 60 / 2685
  30404. }
  30405. },
  30406. },
  30407. [
  30408. {
  30409. name: "Normal",
  30410. height: math.unit(6 + 2 / 12, "feet")
  30411. },
  30412. {
  30413. name: "Macro",
  30414. height: math.unit(1180, "feet"),
  30415. default: true
  30416. },
  30417. ]
  30418. ))
  30419. characterMakers.push(() => makeCharacter(
  30420. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30421. {
  30422. front: {
  30423. height: math.unit(5 + 6 / 12, "feet"),
  30424. weight: math.unit(108, "lb"),
  30425. name: "Front",
  30426. image: {
  30427. source: "./media/characters/lilith-zott/front.svg",
  30428. extra: 2510 / 2238,
  30429. bottom: 100 / 2610
  30430. }
  30431. },
  30432. frontDressed: {
  30433. height: math.unit(5 + 6 / 12, "feet"),
  30434. weight: math.unit(108, "lb"),
  30435. name: "Front (Dressed)",
  30436. image: {
  30437. source: "./media/characters/lilith-zott/front-dressed.svg",
  30438. extra: 2510 / 2238,
  30439. bottom: 100 / 2610
  30440. }
  30441. },
  30442. },
  30443. [
  30444. {
  30445. name: "Normal",
  30446. height: math.unit(5 + 6 / 12, "feet")
  30447. },
  30448. {
  30449. name: "Macro",
  30450. height: math.unit(1030, "feet"),
  30451. default: true
  30452. },
  30453. ]
  30454. ))
  30455. characterMakers.push(() => makeCharacter(
  30456. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30457. {
  30458. front: {
  30459. height: math.unit(6, "feet"),
  30460. weight: math.unit(150, "lb"),
  30461. name: "Front",
  30462. image: {
  30463. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30464. extra: 2567 / 2435,
  30465. bottom: 39 / 2606
  30466. }
  30467. },
  30468. frontSuper: {
  30469. height: math.unit(6, "feet"),
  30470. name: "Front (Super)",
  30471. image: {
  30472. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30473. extra: 2567 / 2435,
  30474. bottom: 39 / 2606
  30475. }
  30476. },
  30477. },
  30478. [
  30479. {
  30480. name: "Normal",
  30481. height: math.unit(5 + 10 / 12, "feet")
  30482. },
  30483. {
  30484. name: "Macro",
  30485. height: math.unit(1100, "feet"),
  30486. default: true
  30487. },
  30488. ]
  30489. ))
  30490. characterMakers.push(() => makeCharacter(
  30491. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30492. {
  30493. front: {
  30494. height: math.unit(100, "miles"),
  30495. name: "Front",
  30496. image: {
  30497. source: "./media/characters/sona/front.svg",
  30498. extra: 2433 / 2201,
  30499. bottom: 53 / 2486
  30500. }
  30501. },
  30502. foot: {
  30503. height: math.unit(16.1, "miles"),
  30504. name: "Foot",
  30505. image: {
  30506. source: "./media/characters/sona/foot.svg"
  30507. }
  30508. },
  30509. },
  30510. [
  30511. {
  30512. name: "Macro",
  30513. height: math.unit(100, "miles"),
  30514. default: true
  30515. },
  30516. ]
  30517. ))
  30518. characterMakers.push(() => makeCharacter(
  30519. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30520. {
  30521. front: {
  30522. height: math.unit(6, "feet"),
  30523. weight: math.unit(150, "lb"),
  30524. name: "Front",
  30525. image: {
  30526. source: "./media/characters/bailey/front.svg",
  30527. extra: 1778 / 1724,
  30528. bottom: 30 / 1808
  30529. }
  30530. },
  30531. },
  30532. [
  30533. {
  30534. name: "Micro",
  30535. height: math.unit(4, "inches")
  30536. },
  30537. {
  30538. name: "Normal",
  30539. height: math.unit(5 + 5 / 12, "feet"),
  30540. default: true
  30541. },
  30542. {
  30543. name: "Macro",
  30544. height: math.unit(250, "feet")
  30545. },
  30546. {
  30547. name: "Megamacro",
  30548. height: math.unit(100, "miles")
  30549. },
  30550. ]
  30551. ))
  30552. characterMakers.push(() => makeCharacter(
  30553. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30554. {
  30555. front: {
  30556. height: math.unit(5 + 2 / 12, "feet"),
  30557. weight: math.unit(120, "lb"),
  30558. name: "Front",
  30559. image: {
  30560. source: "./media/characters/snaps/front.svg",
  30561. extra: 2370 / 2177,
  30562. bottom: 48 / 2418
  30563. }
  30564. },
  30565. back: {
  30566. height: math.unit(5 + 2 / 12, "feet"),
  30567. weight: math.unit(120, "lb"),
  30568. name: "Back",
  30569. image: {
  30570. source: "./media/characters/snaps/back.svg",
  30571. extra: 2408 / 2258,
  30572. bottom: 15 / 2423
  30573. }
  30574. },
  30575. },
  30576. [
  30577. {
  30578. name: "Micro",
  30579. height: math.unit(9, "inches")
  30580. },
  30581. {
  30582. name: "Normal",
  30583. height: math.unit(5 + 2 / 12, "feet"),
  30584. default: true
  30585. },
  30586. {
  30587. name: "Mini Macro",
  30588. height: math.unit(10, "feet")
  30589. },
  30590. ]
  30591. ))
  30592. characterMakers.push(() => makeCharacter(
  30593. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30594. {
  30595. front: {
  30596. height: math.unit(1.8, "meters"),
  30597. weight: math.unit(85, "kg"),
  30598. name: "Front",
  30599. image: {
  30600. source: "./media/characters/azteck/front.svg",
  30601. extra: 2815 / 2625,
  30602. bottom: 89 / 2904
  30603. }
  30604. },
  30605. back: {
  30606. height: math.unit(1.8, "meters"),
  30607. weight: math.unit(85, "kg"),
  30608. name: "Back",
  30609. image: {
  30610. source: "./media/characters/azteck/back.svg",
  30611. extra: 2856 / 2648,
  30612. bottom: 85 / 2941
  30613. }
  30614. },
  30615. frontDressed: {
  30616. height: math.unit(1.8, "meters"),
  30617. weight: math.unit(85, "kg"),
  30618. name: "Front (Dressed)",
  30619. image: {
  30620. source: "./media/characters/azteck/front-dressed.svg",
  30621. extra: 2147 / 2003,
  30622. bottom: 68 / 2215
  30623. }
  30624. },
  30625. head: {
  30626. height: math.unit(0.47, "meters"),
  30627. weight: math.unit(85, "kg"),
  30628. name: "Head",
  30629. image: {
  30630. source: "./media/characters/azteck/head.svg"
  30631. }
  30632. },
  30633. },
  30634. [
  30635. {
  30636. name: "Bite sized",
  30637. height: math.unit(16, "cm")
  30638. },
  30639. {
  30640. name: "Normal",
  30641. height: math.unit(1.8, "meters"),
  30642. default: true
  30643. },
  30644. ]
  30645. ))
  30646. characterMakers.push(() => makeCharacter(
  30647. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30648. {
  30649. front: {
  30650. height: math.unit(6, "feet"),
  30651. weight: math.unit(150, "lb"),
  30652. name: "Front",
  30653. image: {
  30654. source: "./media/characters/pidge/front.svg",
  30655. extra: 1936/1820,
  30656. bottom: 0/1936
  30657. }
  30658. },
  30659. back: {
  30660. height: math.unit(6, "feet"),
  30661. weight: math.unit(150, "lb"),
  30662. name: "Back",
  30663. image: {
  30664. source: "./media/characters/pidge/back.svg",
  30665. extra: 1938/1843,
  30666. bottom: 0/1938
  30667. }
  30668. },
  30669. casual: {
  30670. height: math.unit(6, "feet"),
  30671. weight: math.unit(150, "lb"),
  30672. name: "Casual",
  30673. image: {
  30674. source: "./media/characters/pidge/casual.svg",
  30675. extra: 1936/1820,
  30676. bottom: 0/1936
  30677. }
  30678. },
  30679. tech: {
  30680. height: math.unit(6, "feet"),
  30681. weight: math.unit(150, "lb"),
  30682. name: "Tech",
  30683. image: {
  30684. source: "./media/characters/pidge/tech.svg",
  30685. extra: 1802/1682,
  30686. bottom: 0/1802
  30687. }
  30688. },
  30689. head: {
  30690. height: math.unit(1.61, "feet"),
  30691. name: "Head",
  30692. image: {
  30693. source: "./media/characters/pidge/head.svg"
  30694. }
  30695. },
  30696. collar: {
  30697. height: math.unit(0.82, "feet"),
  30698. name: "Collar",
  30699. image: {
  30700. source: "./media/characters/pidge/collar.svg"
  30701. }
  30702. },
  30703. },
  30704. [
  30705. {
  30706. name: "Macro",
  30707. height: math.unit(2, "mile"),
  30708. default: true
  30709. },
  30710. {
  30711. name: "PUPPY",
  30712. height: math.unit(20, "miles")
  30713. },
  30714. ]
  30715. ))
  30716. characterMakers.push(() => makeCharacter(
  30717. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30718. {
  30719. front: {
  30720. height: math.unit(6, "feet"),
  30721. weight: math.unit(150, "lb"),
  30722. name: "Front",
  30723. image: {
  30724. source: "./media/characters/en/front.svg",
  30725. extra: 1697 / 1563,
  30726. bottom: 103 / 1800
  30727. }
  30728. },
  30729. back: {
  30730. height: math.unit(6, "feet"),
  30731. weight: math.unit(150, "lb"),
  30732. name: "Back",
  30733. image: {
  30734. source: "./media/characters/en/back.svg",
  30735. extra: 1700 / 1570,
  30736. bottom: 51 / 1751
  30737. }
  30738. },
  30739. frontDressed: {
  30740. height: math.unit(6, "feet"),
  30741. weight: math.unit(150, "lb"),
  30742. name: "Front (Dressed)",
  30743. image: {
  30744. source: "./media/characters/en/front-dressed.svg",
  30745. extra: 1697 / 1563,
  30746. bottom: 103 / 1800
  30747. }
  30748. },
  30749. backDressed: {
  30750. height: math.unit(6, "feet"),
  30751. weight: math.unit(150, "lb"),
  30752. name: "Back (Dressed)",
  30753. image: {
  30754. source: "./media/characters/en/back-dressed.svg",
  30755. extra: 1700 / 1570,
  30756. bottom: 51 / 1751
  30757. }
  30758. },
  30759. },
  30760. [
  30761. {
  30762. name: "Macro",
  30763. height: math.unit(210, "feet"),
  30764. default: true
  30765. },
  30766. ]
  30767. ))
  30768. characterMakers.push(() => makeCharacter(
  30769. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30770. {
  30771. front: {
  30772. height: math.unit(6, "feet"),
  30773. weight: math.unit(150, "lb"),
  30774. name: "Front",
  30775. image: {
  30776. source: "./media/characters/haze-orris/front.svg",
  30777. extra: 3975 / 3525,
  30778. bottom: 137 / 4112
  30779. }
  30780. },
  30781. },
  30782. [
  30783. {
  30784. name: "Micro",
  30785. height: math.unit(150, "mm"),
  30786. default: true
  30787. },
  30788. ]
  30789. ))
  30790. characterMakers.push(() => makeCharacter(
  30791. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30792. {
  30793. front: {
  30794. height: math.unit(6, "feet"),
  30795. weight: math.unit(150, "lb"),
  30796. name: "Front",
  30797. image: {
  30798. source: "./media/characters/casselene-yaro/front.svg",
  30799. extra: 4721 / 4541,
  30800. bottom: 82 / 4803
  30801. }
  30802. },
  30803. back: {
  30804. height: math.unit(6, "feet"),
  30805. weight: math.unit(150, "lb"),
  30806. name: "Back",
  30807. image: {
  30808. source: "./media/characters/casselene-yaro/back.svg",
  30809. extra: 4569 / 4377,
  30810. bottom: 69 / 4638
  30811. }
  30812. },
  30813. dressed: {
  30814. height: math.unit(6, "feet"),
  30815. weight: math.unit(150, "lb"),
  30816. name: "Dressed",
  30817. image: {
  30818. source: "./media/characters/casselene-yaro/dressed.svg",
  30819. extra: 4721 / 4541,
  30820. bottom: 82 / 4803
  30821. }
  30822. },
  30823. maw: {
  30824. height: math.unit(1, "feet"),
  30825. name: "Maw",
  30826. image: {
  30827. source: "./media/characters/casselene-yaro/maw.svg"
  30828. }
  30829. },
  30830. },
  30831. [
  30832. {
  30833. name: "Macro",
  30834. height: math.unit(190, "feet"),
  30835. default: true
  30836. },
  30837. ]
  30838. ))
  30839. characterMakers.push(() => makeCharacter(
  30840. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30841. {
  30842. front: {
  30843. height: math.unit(10, "feet"),
  30844. weight: math.unit(15015, "lb"),
  30845. name: "Front",
  30846. image: {
  30847. source: "./media/characters/platine/front.svg",
  30848. extra: 1428/1353,
  30849. bottom: 31/1459
  30850. }
  30851. },
  30852. },
  30853. [
  30854. {
  30855. name: "Normal",
  30856. height: math.unit(10, "feet"),
  30857. default: true
  30858. },
  30859. {
  30860. name: "Macro",
  30861. height: math.unit(100, "feet")
  30862. },
  30863. {
  30864. name: "Megamacro",
  30865. height: math.unit(1000, "feet")
  30866. },
  30867. ]
  30868. ))
  30869. characterMakers.push(() => makeCharacter(
  30870. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30871. {
  30872. front: {
  30873. height: math.unit(15 + 5 / 12, "feet"),
  30874. weight: math.unit(4600, "lb"),
  30875. name: "Front",
  30876. image: {
  30877. source: "./media/characters/neapolitan-ananassa/front.svg",
  30878. extra: 2903 / 2736,
  30879. bottom: 0 / 2903
  30880. }
  30881. },
  30882. side: {
  30883. height: math.unit(15 + 5 / 12, "feet"),
  30884. weight: math.unit(4600, "lb"),
  30885. name: "Side",
  30886. image: {
  30887. source: "./media/characters/neapolitan-ananassa/side.svg",
  30888. extra: 2925 / 2719,
  30889. bottom: 0 / 2925
  30890. }
  30891. },
  30892. back: {
  30893. height: math.unit(15 + 5 / 12, "feet"),
  30894. weight: math.unit(4600, "lb"),
  30895. name: "Back",
  30896. image: {
  30897. source: "./media/characters/neapolitan-ananassa/back.svg",
  30898. extra: 2903 / 2736,
  30899. bottom: 0 / 2903
  30900. }
  30901. },
  30902. },
  30903. [
  30904. {
  30905. name: "Normal",
  30906. height: math.unit(15 + 5 / 12, "feet"),
  30907. default: true
  30908. },
  30909. {
  30910. name: "Post-Millenium",
  30911. height: math.unit(35 + 5 / 12, "feet")
  30912. },
  30913. {
  30914. name: "Post-Era",
  30915. height: math.unit(450 + 5 / 12, "feet")
  30916. },
  30917. ]
  30918. ))
  30919. characterMakers.push(() => makeCharacter(
  30920. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30921. {
  30922. front: {
  30923. height: math.unit(300, "meters"),
  30924. weight: math.unit(125000, "tonnes"),
  30925. name: "Front",
  30926. image: {
  30927. source: "./media/characters/pazuzu/front.svg",
  30928. extra: 877 / 794,
  30929. bottom: 47 / 924
  30930. }
  30931. },
  30932. },
  30933. [
  30934. {
  30935. name: "Macro",
  30936. height: math.unit(300, "meters"),
  30937. default: true
  30938. },
  30939. ]
  30940. ))
  30941. characterMakers.push(() => makeCharacter(
  30942. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30943. {
  30944. side: {
  30945. height: math.unit(10 + 7 / 12, "feet"),
  30946. weight: math.unit(2.5, "tons"),
  30947. name: "Side",
  30948. image: {
  30949. source: "./media/characters/aasha/side.svg",
  30950. extra: 1345 / 1245,
  30951. bottom: 111 / 1456
  30952. }
  30953. },
  30954. back: {
  30955. height: math.unit(10 + 7 / 12, "feet"),
  30956. weight: math.unit(2.5, "tons"),
  30957. name: "Back",
  30958. image: {
  30959. source: "./media/characters/aasha/back.svg",
  30960. extra: 1133 / 1057,
  30961. bottom: 257 / 1390
  30962. }
  30963. },
  30964. },
  30965. [
  30966. {
  30967. name: "Normal",
  30968. height: math.unit(10 + 7 / 12, "feet"),
  30969. default: true
  30970. },
  30971. ]
  30972. ))
  30973. characterMakers.push(() => makeCharacter(
  30974. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30975. {
  30976. front: {
  30977. height: math.unit(6 + 3 / 12, "feet"),
  30978. name: "Front",
  30979. image: {
  30980. source: "./media/characters/nevan/front.svg",
  30981. extra: 704 / 704,
  30982. bottom: 28 / 732
  30983. }
  30984. },
  30985. back: {
  30986. height: math.unit(6 + 3 / 12, "feet"),
  30987. name: "Back",
  30988. image: {
  30989. source: "./media/characters/nevan/back.svg",
  30990. extra: 714 / 714,
  30991. bottom: 21 / 735
  30992. }
  30993. },
  30994. frontFlaccid: {
  30995. height: math.unit(6 + 3 / 12, "feet"),
  30996. name: "Front (Flaccid)",
  30997. image: {
  30998. source: "./media/characters/nevan/front-flaccid.svg",
  30999. extra: 704 / 704,
  31000. bottom: 28 / 732
  31001. }
  31002. },
  31003. frontErect: {
  31004. height: math.unit(6 + 3 / 12, "feet"),
  31005. name: "Front (Erect)",
  31006. image: {
  31007. source: "./media/characters/nevan/front-erect.svg",
  31008. extra: 704 / 704,
  31009. bottom: 28 / 732
  31010. }
  31011. },
  31012. backFlaccid: {
  31013. height: math.unit(6 + 3 / 12, "feet"),
  31014. name: "Back (Flaccid)",
  31015. image: {
  31016. source: "./media/characters/nevan/back-flaccid.svg",
  31017. extra: 714 / 714,
  31018. bottom: 21 / 735
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Normal",
  31025. height: math.unit(6 + 3 / 12, "feet"),
  31026. default: true
  31027. },
  31028. ]
  31029. ))
  31030. characterMakers.push(() => makeCharacter(
  31031. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31032. {
  31033. front: {
  31034. height: math.unit(4, "feet"),
  31035. name: "Front",
  31036. image: {
  31037. source: "./media/characters/arhan/front.svg",
  31038. extra: 3368 / 3133,
  31039. bottom: 0 / 3368
  31040. }
  31041. },
  31042. side: {
  31043. height: math.unit(4, "feet"),
  31044. name: "Side",
  31045. image: {
  31046. source: "./media/characters/arhan/side.svg",
  31047. extra: 3347 / 3105,
  31048. bottom: 0 / 3347
  31049. }
  31050. },
  31051. tongue: {
  31052. height: math.unit(1.42, "feet"),
  31053. name: "Tongue",
  31054. image: {
  31055. source: "./media/characters/arhan/tongue.svg"
  31056. }
  31057. },
  31058. head: {
  31059. height: math.unit(0.85, "feet"),
  31060. name: "Head",
  31061. image: {
  31062. source: "./media/characters/arhan/head.svg"
  31063. }
  31064. },
  31065. },
  31066. [
  31067. {
  31068. name: "Normal",
  31069. height: math.unit(4, "feet"),
  31070. default: true
  31071. },
  31072. ]
  31073. ))
  31074. characterMakers.push(() => makeCharacter(
  31075. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31076. {
  31077. front: {
  31078. height: math.unit(5 + 7.5 / 12, "feet"),
  31079. weight: math.unit(120, "lb"),
  31080. name: "Front",
  31081. image: {
  31082. source: "./media/characters/digi-duncan/front.svg",
  31083. extra: 330 / 326,
  31084. bottom: 16 / 346
  31085. }
  31086. },
  31087. side: {
  31088. height: math.unit(5 + 7.5 / 12, "feet"),
  31089. weight: math.unit(120, "lb"),
  31090. name: "Side",
  31091. image: {
  31092. source: "./media/characters/digi-duncan/side.svg",
  31093. extra: 341 / 337,
  31094. bottom: 1 / 342
  31095. }
  31096. },
  31097. back: {
  31098. height: math.unit(5 + 7.5 / 12, "feet"),
  31099. weight: math.unit(120, "lb"),
  31100. name: "Back",
  31101. image: {
  31102. source: "./media/characters/digi-duncan/back.svg",
  31103. extra: 330 / 326,
  31104. bottom: 12 / 342
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Speck",
  31111. height: math.unit(0.25, "mm")
  31112. },
  31113. {
  31114. name: "Micro",
  31115. height: math.unit(5, "mm")
  31116. },
  31117. {
  31118. name: "Tiny",
  31119. height: math.unit(0.5, "inches"),
  31120. default: true
  31121. },
  31122. {
  31123. name: "Human",
  31124. height: math.unit(5 + 7.5 / 12, "feet")
  31125. },
  31126. {
  31127. name: "Minigiant",
  31128. height: math.unit(8 + 5.25, "feet")
  31129. },
  31130. {
  31131. name: "Giant",
  31132. height: math.unit(2000, "feet")
  31133. },
  31134. {
  31135. name: "Mega",
  31136. height: math.unit(371.1, "miles")
  31137. },
  31138. ]
  31139. ))
  31140. characterMakers.push(() => makeCharacter(
  31141. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31142. {
  31143. front: {
  31144. height: math.unit(2, "meters"),
  31145. weight: math.unit(350, "kg"),
  31146. name: "Front",
  31147. image: {
  31148. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31149. extra: 898 / 838,
  31150. bottom: 9 / 907
  31151. }
  31152. },
  31153. },
  31154. [
  31155. {
  31156. name: "Micro",
  31157. height: math.unit(8, "meters")
  31158. },
  31159. {
  31160. name: "Normal",
  31161. height: math.unit(50, "meters"),
  31162. default: true
  31163. },
  31164. {
  31165. name: "Macro",
  31166. height: math.unit(500, "meters")
  31167. },
  31168. ]
  31169. ))
  31170. characterMakers.push(() => makeCharacter(
  31171. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31172. {
  31173. front: {
  31174. height: math.unit(6 + 6 / 12, "feet"),
  31175. name: "Front",
  31176. image: {
  31177. source: "./media/characters/khardesh/front.svg",
  31178. extra: 1788/1596,
  31179. bottom: 66/1854
  31180. }
  31181. },
  31182. back: {
  31183. height: math.unit(6 + 6 / 12, "feet"),
  31184. name: "Back",
  31185. image: {
  31186. source: "./media/characters/khardesh/back.svg",
  31187. extra: 1781/1584,
  31188. bottom: 68/1849
  31189. }
  31190. },
  31191. },
  31192. [
  31193. {
  31194. name: "Normal",
  31195. height: math.unit(6 + 6 / 12, "feet"),
  31196. default: true
  31197. },
  31198. {
  31199. name: "Normal+",
  31200. height: math.unit(4, "meters")
  31201. },
  31202. {
  31203. name: "Macro",
  31204. height: math.unit(50, "meters")
  31205. },
  31206. {
  31207. name: "Macro+",
  31208. height: math.unit(100, "meters")
  31209. },
  31210. {
  31211. name: "Megamacro",
  31212. height: math.unit(20, "km")
  31213. },
  31214. ]
  31215. ))
  31216. characterMakers.push(() => makeCharacter(
  31217. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31218. {
  31219. front: {
  31220. height: math.unit(6, "feet"),
  31221. weight: math.unit(150, "lb"),
  31222. name: "Front",
  31223. image: {
  31224. source: "./media/characters/kosho/front.svg",
  31225. extra: 1847 / 1847,
  31226. bottom: 86 / 1933
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Second-stage micro",
  31233. height: math.unit(0.5, "inches")
  31234. },
  31235. {
  31236. name: "First-stage micro",
  31237. height: math.unit(6, "inches")
  31238. },
  31239. {
  31240. name: "Normal",
  31241. height: math.unit(6, "feet"),
  31242. default: true
  31243. },
  31244. {
  31245. name: "First-stage macro",
  31246. height: math.unit(72, "feet")
  31247. },
  31248. {
  31249. name: "Second-stage macro",
  31250. height: math.unit(864, "feet")
  31251. },
  31252. ]
  31253. ))
  31254. characterMakers.push(() => makeCharacter(
  31255. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31256. {
  31257. normal: {
  31258. height: math.unit(4 + 6 / 12, "feet"),
  31259. name: "Normal",
  31260. image: {
  31261. source: "./media/characters/hydra/normal.svg",
  31262. extra: 2833 / 2634,
  31263. bottom: 68 / 2901
  31264. }
  31265. },
  31266. smol: {
  31267. height: math.unit(0.705, "inches"),
  31268. name: "Smol",
  31269. image: {
  31270. source: "./media/characters/hydra/smol.svg",
  31271. extra: 2715 / 2540,
  31272. bottom: 0 / 2715
  31273. }
  31274. },
  31275. },
  31276. [
  31277. {
  31278. name: "Normal",
  31279. height: math.unit(4 + 6 / 12, "feet"),
  31280. default: true
  31281. }
  31282. ]
  31283. ))
  31284. characterMakers.push(() => makeCharacter(
  31285. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31286. {
  31287. front: {
  31288. height: math.unit(0.6, "cm"),
  31289. name: "Front",
  31290. image: {
  31291. source: "./media/characters/daz/front.svg",
  31292. extra: 1682 / 1164,
  31293. bottom: 42 / 1724
  31294. }
  31295. },
  31296. },
  31297. [
  31298. {
  31299. name: "Normal",
  31300. height: math.unit(0.6, "cm"),
  31301. default: true
  31302. },
  31303. ]
  31304. ))
  31305. characterMakers.push(() => makeCharacter(
  31306. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31307. {
  31308. front: {
  31309. height: math.unit(6, "feet"),
  31310. weight: math.unit(235, "lb"),
  31311. name: "Front",
  31312. image: {
  31313. source: "./media/characters/theo-pangolin/front.svg",
  31314. extra: 1996 / 1969,
  31315. bottom: 115 / 2111
  31316. }
  31317. },
  31318. back: {
  31319. height: math.unit(6, "feet"),
  31320. weight: math.unit(235, "lb"),
  31321. name: "Back",
  31322. image: {
  31323. source: "./media/characters/theo-pangolin/back.svg",
  31324. extra: 1979 / 1979,
  31325. bottom: 40 / 2019
  31326. }
  31327. },
  31328. feral: {
  31329. height: math.unit(2, "feet"),
  31330. weight: math.unit(30, "lb"),
  31331. name: "Feral",
  31332. image: {
  31333. source: "./media/characters/theo-pangolin/feral.svg",
  31334. extra: 803 / 791,
  31335. bottom: 181 / 984
  31336. }
  31337. },
  31338. footFive: {
  31339. height: math.unit(1.43, "feet"),
  31340. name: "Foot (Five Toes)",
  31341. image: {
  31342. source: "./media/characters/theo-pangolin/foot-five.svg"
  31343. }
  31344. },
  31345. footFour: {
  31346. height: math.unit(1.43, "feet"),
  31347. name: "Foot (Four Toes)",
  31348. image: {
  31349. source: "./media/characters/theo-pangolin/foot-four.svg"
  31350. }
  31351. },
  31352. handFour: {
  31353. height: math.unit(0.81, "feet"),
  31354. name: "Hand (Four Fingers)",
  31355. image: {
  31356. source: "./media/characters/theo-pangolin/hand-four.svg"
  31357. }
  31358. },
  31359. handThree: {
  31360. height: math.unit(0.81, "feet"),
  31361. name: "Hand (Three Fingers)",
  31362. image: {
  31363. source: "./media/characters/theo-pangolin/hand-three.svg"
  31364. }
  31365. },
  31366. headFront: {
  31367. height: math.unit(1.37, "feet"),
  31368. name: "Head (Front)",
  31369. image: {
  31370. source: "./media/characters/theo-pangolin/head-front.svg"
  31371. }
  31372. },
  31373. headSide: {
  31374. height: math.unit(1.43, "feet"),
  31375. name: "Head (Side)",
  31376. image: {
  31377. source: "./media/characters/theo-pangolin/head-side.svg"
  31378. }
  31379. },
  31380. tongue: {
  31381. height: math.unit(2.29, "feet"),
  31382. name: "Tongue",
  31383. image: {
  31384. source: "./media/characters/theo-pangolin/tongue.svg"
  31385. }
  31386. },
  31387. },
  31388. [
  31389. {
  31390. name: "Normal",
  31391. height: math.unit(6, "feet")
  31392. },
  31393. {
  31394. name: "Macro",
  31395. height: math.unit(400, "feet"),
  31396. default: true
  31397. },
  31398. ]
  31399. ))
  31400. characterMakers.push(() => makeCharacter(
  31401. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31402. {
  31403. front: {
  31404. height: math.unit(6, "inches"),
  31405. weight: math.unit(0.036, "kg"),
  31406. name: "Front",
  31407. image: {
  31408. source: "./media/characters/renée/front.svg",
  31409. extra: 900 / 886,
  31410. bottom: 8 / 908
  31411. }
  31412. },
  31413. },
  31414. [
  31415. {
  31416. name: "Nano",
  31417. height: math.unit(1, "nm")
  31418. },
  31419. {
  31420. name: "Micro",
  31421. height: math.unit(1, "mm")
  31422. },
  31423. {
  31424. name: "Normal",
  31425. height: math.unit(6, "inches")
  31426. },
  31427. {
  31428. name: "Macro",
  31429. height: math.unit(2000, "feet"),
  31430. default: true
  31431. },
  31432. {
  31433. name: "Megamacro",
  31434. height: math.unit(2, "km")
  31435. },
  31436. {
  31437. name: "Gigamacro",
  31438. height: math.unit(2000, "km")
  31439. },
  31440. {
  31441. name: "Teramacro",
  31442. height: math.unit(250000, "km")
  31443. },
  31444. ]
  31445. ))
  31446. characterMakers.push(() => makeCharacter(
  31447. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31448. {
  31449. front: {
  31450. height: math.unit(4, "meters"),
  31451. weight: math.unit(150, "kg"),
  31452. name: "Front",
  31453. image: {
  31454. source: "./media/characters/caledvwlch/front.svg",
  31455. extra: 1760 / 1551,
  31456. bottom: 28 / 1788
  31457. }
  31458. },
  31459. side: {
  31460. height: math.unit(4, "meters"),
  31461. weight: math.unit(150, "kg"),
  31462. name: "Side",
  31463. image: {
  31464. source: "./media/characters/caledvwlch/side.svg",
  31465. extra: 1605 / 1536,
  31466. bottom: 31 / 1636
  31467. }
  31468. },
  31469. back: {
  31470. height: math.unit(4, "meters"),
  31471. weight: math.unit(150, "kg"),
  31472. name: "Back",
  31473. image: {
  31474. source: "./media/characters/caledvwlch/back.svg",
  31475. extra: 1635 / 1565,
  31476. bottom: 27 / 1662
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "\"Incognito\"",
  31483. height: math.unit(4, "meters")
  31484. },
  31485. {
  31486. name: "Small rampage",
  31487. height: math.unit(600, "meters")
  31488. },
  31489. {
  31490. name: "Mega",
  31491. height: math.unit(30, "km")
  31492. },
  31493. {
  31494. name: "Home-size",
  31495. height: math.unit(50, "km"),
  31496. default: true
  31497. },
  31498. {
  31499. name: "Giga",
  31500. height: math.unit(300, "km")
  31501. },
  31502. {
  31503. name: "Lounging",
  31504. height: math.unit(11000, "km")
  31505. },
  31506. {
  31507. name: "Planet snacking",
  31508. height: math.unit(2000000, "km")
  31509. },
  31510. ]
  31511. ))
  31512. characterMakers.push(() => makeCharacter(
  31513. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31514. {
  31515. front: {
  31516. height: math.unit(6, "feet"),
  31517. weight: math.unit(215, "lb"),
  31518. name: "Front",
  31519. image: {
  31520. source: "./media/characters/sapphire-svell/front.svg",
  31521. extra: 495 / 455,
  31522. bottom: 20 / 515
  31523. }
  31524. },
  31525. back: {
  31526. height: math.unit(6, "feet"),
  31527. weight: math.unit(216, "lb"),
  31528. name: "Back",
  31529. image: {
  31530. source: "./media/characters/sapphire-svell/back.svg",
  31531. extra: 497 / 477,
  31532. bottom: 7 / 504
  31533. }
  31534. },
  31535. maw: {
  31536. height: math.unit(1.57, "feet"),
  31537. name: "Maw",
  31538. image: {
  31539. source: "./media/characters/sapphire-svell/maw.svg"
  31540. }
  31541. },
  31542. foot: {
  31543. height: math.unit(1.07, "feet"),
  31544. name: "Foot",
  31545. image: {
  31546. source: "./media/characters/sapphire-svell/foot.svg"
  31547. }
  31548. },
  31549. toering: {
  31550. height: math.unit(1.7, "inch"),
  31551. name: "Toering",
  31552. image: {
  31553. source: "./media/characters/sapphire-svell/toering.svg"
  31554. }
  31555. },
  31556. },
  31557. [
  31558. {
  31559. name: "Normal",
  31560. height: math.unit(300, "feet"),
  31561. default: true
  31562. },
  31563. {
  31564. name: "Augmented",
  31565. height: math.unit(1250, "feet")
  31566. },
  31567. {
  31568. name: "Unleashed",
  31569. height: math.unit(3000, "feet")
  31570. },
  31571. ]
  31572. ))
  31573. characterMakers.push(() => makeCharacter(
  31574. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31575. {
  31576. side: {
  31577. height: math.unit(2 + 3 / 12, "feet"),
  31578. weight: math.unit(110, "lb"),
  31579. name: "Side",
  31580. image: {
  31581. source: "./media/characters/glitch-flux/side.svg",
  31582. extra: 997 / 805,
  31583. bottom: 20 / 1017
  31584. }
  31585. },
  31586. },
  31587. [
  31588. {
  31589. name: "Normal",
  31590. height: math.unit(2 + 3 / 12, "feet"),
  31591. default: true
  31592. },
  31593. ]
  31594. ))
  31595. characterMakers.push(() => makeCharacter(
  31596. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31597. {
  31598. front: {
  31599. height: math.unit(4, "meters"),
  31600. name: "Front",
  31601. image: {
  31602. source: "./media/characters/mid/front.svg",
  31603. extra: 507 / 476,
  31604. bottom: 17 / 524
  31605. }
  31606. },
  31607. back: {
  31608. height: math.unit(4, "meters"),
  31609. name: "Back",
  31610. image: {
  31611. source: "./media/characters/mid/back.svg",
  31612. extra: 519 / 487,
  31613. bottom: 7 / 526
  31614. }
  31615. },
  31616. stuck: {
  31617. height: math.unit(2.2, "meters"),
  31618. name: "Stuck",
  31619. image: {
  31620. source: "./media/characters/mid/stuck.svg",
  31621. extra: 1951 / 1869,
  31622. bottom: 88 / 2039
  31623. }
  31624. }
  31625. },
  31626. [
  31627. {
  31628. name: "Normal",
  31629. height: math.unit(4, "meters"),
  31630. default: true
  31631. },
  31632. {
  31633. name: "Big",
  31634. height: math.unit(10, "meters")
  31635. },
  31636. {
  31637. name: "Macro",
  31638. height: math.unit(800, "meters")
  31639. },
  31640. {
  31641. name: "Megamacro",
  31642. height: math.unit(100, "km")
  31643. },
  31644. {
  31645. name: "Overgrown",
  31646. height: math.unit(1, "parsec")
  31647. },
  31648. ]
  31649. ))
  31650. characterMakers.push(() => makeCharacter(
  31651. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31652. {
  31653. front: {
  31654. height: math.unit(2.5, "meters"),
  31655. weight: math.unit(225, "kg"),
  31656. name: "Front",
  31657. image: {
  31658. source: "./media/characters/iris/front.svg",
  31659. extra: 3348 / 3251,
  31660. bottom: 205 / 3553
  31661. }
  31662. },
  31663. maw: {
  31664. height: math.unit(0.56, "meter"),
  31665. name: "Maw",
  31666. image: {
  31667. source: "./media/characters/iris/maw.svg"
  31668. }
  31669. },
  31670. },
  31671. [
  31672. {
  31673. name: "Mewter cat",
  31674. height: math.unit(1.2, "meters")
  31675. },
  31676. {
  31677. name: "Normal",
  31678. height: math.unit(2.5, "meters"),
  31679. default: true
  31680. },
  31681. {
  31682. name: "Minimacro",
  31683. height: math.unit(18, "feet")
  31684. },
  31685. {
  31686. name: "Macro",
  31687. height: math.unit(140, "feet")
  31688. },
  31689. {
  31690. name: "Macro+",
  31691. height: math.unit(180, "meters")
  31692. },
  31693. {
  31694. name: "Megamacro",
  31695. height: math.unit(2746, "meters")
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31701. {
  31702. front: {
  31703. height: math.unit(6, "feet"),
  31704. weight: math.unit(135, "lb"),
  31705. name: "Front",
  31706. image: {
  31707. source: "./media/characters/axel/front.svg",
  31708. extra: 908 / 908,
  31709. bottom: 58 / 966
  31710. }
  31711. },
  31712. side: {
  31713. height: math.unit(6, "feet"),
  31714. weight: math.unit(135, "lb"),
  31715. name: "Side",
  31716. image: {
  31717. source: "./media/characters/axel/side.svg",
  31718. extra: 958 / 958,
  31719. bottom: 11 / 969
  31720. }
  31721. },
  31722. back: {
  31723. height: math.unit(6, "feet"),
  31724. weight: math.unit(135, "lb"),
  31725. name: "Back",
  31726. image: {
  31727. source: "./media/characters/axel/back.svg",
  31728. extra: 887 / 887,
  31729. bottom: 34 / 921
  31730. }
  31731. },
  31732. head: {
  31733. height: math.unit(1.07, "feet"),
  31734. name: "Head",
  31735. image: {
  31736. source: "./media/characters/axel/head.svg"
  31737. }
  31738. },
  31739. beak: {
  31740. height: math.unit(1.4, "feet"),
  31741. name: "Beak",
  31742. image: {
  31743. source: "./media/characters/axel/beak.svg"
  31744. }
  31745. },
  31746. beakSide: {
  31747. height: math.unit(1.4, "feet"),
  31748. name: "Beak Side",
  31749. image: {
  31750. source: "./media/characters/axel/beak-side.svg"
  31751. }
  31752. },
  31753. sheath: {
  31754. height: math.unit(0.5, "feet"),
  31755. name: "Sheath",
  31756. image: {
  31757. source: "./media/characters/axel/sheath.svg"
  31758. }
  31759. },
  31760. dick: {
  31761. height: math.unit(0.98, "feet"),
  31762. name: "Dick",
  31763. image: {
  31764. source: "./media/characters/axel/dick.svg"
  31765. }
  31766. },
  31767. },
  31768. [
  31769. {
  31770. name: "Macro",
  31771. height: math.unit(68, "meters"),
  31772. default: true
  31773. },
  31774. ]
  31775. ))
  31776. characterMakers.push(() => makeCharacter(
  31777. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31778. {
  31779. front: {
  31780. height: math.unit(3.5, "meters"),
  31781. weight: math.unit(1200, "kg"),
  31782. name: "Front",
  31783. image: {
  31784. source: "./media/characters/joanna/front.svg",
  31785. extra: 1596 / 1488,
  31786. bottom: 29 / 1625
  31787. }
  31788. },
  31789. back: {
  31790. height: math.unit(3.5, "meters"),
  31791. weight: math.unit(1200, "kg"),
  31792. name: "Back",
  31793. image: {
  31794. source: "./media/characters/joanna/back.svg",
  31795. extra: 1594 / 1495,
  31796. bottom: 26 / 1620
  31797. }
  31798. },
  31799. frontShorts: {
  31800. height: math.unit(3.5, "meters"),
  31801. weight: math.unit(1200, "kg"),
  31802. name: "Front (Shorts)",
  31803. image: {
  31804. source: "./media/characters/joanna/front-shorts.svg",
  31805. extra: 1596 / 1488,
  31806. bottom: 29 / 1625
  31807. }
  31808. },
  31809. frontBiker: {
  31810. height: math.unit(3.5, "meters"),
  31811. weight: math.unit(1200, "kg"),
  31812. name: "Front (Biker)",
  31813. image: {
  31814. source: "./media/characters/joanna/front-biker.svg",
  31815. extra: 1596 / 1488,
  31816. bottom: 29 / 1625
  31817. }
  31818. },
  31819. backBiker: {
  31820. height: math.unit(3.5, "meters"),
  31821. weight: math.unit(1200, "kg"),
  31822. name: "Back (Biker)",
  31823. image: {
  31824. source: "./media/characters/joanna/back-biker.svg",
  31825. extra: 1594 / 1495,
  31826. bottom: 88 / 1682
  31827. }
  31828. },
  31829. bikeLeft: {
  31830. height: math.unit(2.4, "meters"),
  31831. weight: math.unit(1600, "kg"),
  31832. name: "Bike (Left)",
  31833. image: {
  31834. source: "./media/characters/joanna/bike-left.svg",
  31835. extra: 720 / 720,
  31836. bottom: 8 / 728
  31837. }
  31838. },
  31839. bikeRight: {
  31840. height: math.unit(2.4, "meters"),
  31841. weight: math.unit(1600, "kg"),
  31842. name: "Bike (Right)",
  31843. image: {
  31844. source: "./media/characters/joanna/bike-right.svg",
  31845. extra: 720 / 720,
  31846. bottom: 8 / 728
  31847. }
  31848. },
  31849. },
  31850. [
  31851. {
  31852. name: "Incognito",
  31853. height: math.unit(3.5, "meters")
  31854. },
  31855. {
  31856. name: "Casual Big",
  31857. height: math.unit(200, "meters")
  31858. },
  31859. {
  31860. name: "Macro",
  31861. height: math.unit(600, "meters")
  31862. },
  31863. {
  31864. name: "Original",
  31865. height: math.unit(20, "km"),
  31866. default: true
  31867. },
  31868. {
  31869. name: "Giga",
  31870. height: math.unit(400, "km")
  31871. },
  31872. {
  31873. name: "Lounging",
  31874. height: math.unit(1500, "km")
  31875. },
  31876. {
  31877. name: "Planetary",
  31878. height: math.unit(200000, "km")
  31879. },
  31880. ]
  31881. ))
  31882. characterMakers.push(() => makeCharacter(
  31883. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31884. {
  31885. front: {
  31886. height: math.unit(6, "feet"),
  31887. weight: math.unit(150, "lb"),
  31888. name: "Front",
  31889. image: {
  31890. source: "./media/characters/hugo-sigil/front.svg",
  31891. extra: 522 / 500,
  31892. bottom: 2 / 524
  31893. }
  31894. },
  31895. back: {
  31896. height: math.unit(6, "feet"),
  31897. weight: math.unit(150, "lb"),
  31898. name: "Back",
  31899. image: {
  31900. source: "./media/characters/hugo-sigil/back.svg",
  31901. extra: 519 / 495,
  31902. bottom: 5 / 524
  31903. }
  31904. },
  31905. maw: {
  31906. height: math.unit(1.4, "feet"),
  31907. weight: math.unit(150, "lb"),
  31908. name: "Maw",
  31909. image: {
  31910. source: "./media/characters/hugo-sigil/maw.svg"
  31911. }
  31912. },
  31913. feet: {
  31914. height: math.unit(1.56, "feet"),
  31915. weight: math.unit(150, "lb"),
  31916. name: "Feet",
  31917. image: {
  31918. source: "./media/characters/hugo-sigil/feet.svg",
  31919. extra: 177 / 177,
  31920. bottom: 12 / 189
  31921. }
  31922. },
  31923. },
  31924. [
  31925. {
  31926. name: "Normal",
  31927. height: math.unit(6, "feet")
  31928. },
  31929. {
  31930. name: "Macro",
  31931. height: math.unit(200, "feet"),
  31932. default: true
  31933. },
  31934. ]
  31935. ))
  31936. characterMakers.push(() => makeCharacter(
  31937. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31938. {
  31939. front: {
  31940. height: math.unit(6, "feet"),
  31941. weight: math.unit(150, "lb"),
  31942. name: "Front",
  31943. image: {
  31944. source: "./media/characters/peri/front.svg",
  31945. extra: 2354 / 2233,
  31946. bottom: 49 / 2403
  31947. }
  31948. },
  31949. },
  31950. [
  31951. {
  31952. name: "Really Small",
  31953. height: math.unit(1, "nm")
  31954. },
  31955. {
  31956. name: "Micro",
  31957. height: math.unit(4, "inches")
  31958. },
  31959. {
  31960. name: "Normal",
  31961. height: math.unit(7, "inches"),
  31962. default: true
  31963. },
  31964. {
  31965. name: "Macro",
  31966. height: math.unit(400, "feet")
  31967. },
  31968. {
  31969. name: "Megamacro",
  31970. height: math.unit(100, "miles")
  31971. },
  31972. ]
  31973. ))
  31974. characterMakers.push(() => makeCharacter(
  31975. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31976. {
  31977. frontSlim: {
  31978. height: math.unit(7, "feet"),
  31979. name: "Front (Slim)",
  31980. image: {
  31981. source: "./media/characters/issilora/front-slim.svg",
  31982. extra: 529 / 449,
  31983. bottom: 53 / 582
  31984. }
  31985. },
  31986. sideSlim: {
  31987. height: math.unit(7, "feet"),
  31988. name: "Side (Slim)",
  31989. image: {
  31990. source: "./media/characters/issilora/side-slim.svg",
  31991. extra: 570 / 480,
  31992. bottom: 30 / 600
  31993. }
  31994. },
  31995. backSlim: {
  31996. height: math.unit(7, "feet"),
  31997. name: "Back (Slim)",
  31998. image: {
  31999. source: "./media/characters/issilora/back-slim.svg",
  32000. extra: 537 / 455,
  32001. bottom: 46 / 583
  32002. }
  32003. },
  32004. frontBuff: {
  32005. height: math.unit(7, "feet"),
  32006. name: "Front (Buff)",
  32007. image: {
  32008. source: "./media/characters/issilora/front-buff.svg",
  32009. extra: 2310 / 2035,
  32010. bottom: 335 / 2645
  32011. }
  32012. },
  32013. head: {
  32014. height: math.unit(1.94, "feet"),
  32015. name: "Head",
  32016. image: {
  32017. source: "./media/characters/issilora/head.svg"
  32018. }
  32019. },
  32020. },
  32021. [
  32022. {
  32023. name: "Minimum",
  32024. height: math.unit(7, "feet")
  32025. },
  32026. {
  32027. name: "Comfortable",
  32028. height: math.unit(17, "feet")
  32029. },
  32030. {
  32031. name: "Fun Size",
  32032. height: math.unit(47, "feet")
  32033. },
  32034. {
  32035. name: "Natural Macro",
  32036. height: math.unit(137, "feet"),
  32037. default: true
  32038. },
  32039. {
  32040. name: "Maximum Kaiju",
  32041. height: math.unit(397, "feet")
  32042. },
  32043. ]
  32044. ))
  32045. characterMakers.push(() => makeCharacter(
  32046. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32047. {
  32048. front: {
  32049. height: math.unit(50 + 9/12, "feet"),
  32050. weight: math.unit(32.8, "tons"),
  32051. name: "Front",
  32052. image: {
  32053. source: "./media/characters/irb'iiritaahn/front.svg",
  32054. extra: 1878/1826,
  32055. bottom: 326/2204
  32056. }
  32057. },
  32058. back: {
  32059. height: math.unit(50 + 9/12, "feet"),
  32060. weight: math.unit(32.8, "tons"),
  32061. name: "Back",
  32062. image: {
  32063. source: "./media/characters/irb'iiritaahn/back.svg",
  32064. extra: 2052/2018,
  32065. bottom: 152/2204
  32066. }
  32067. },
  32068. head: {
  32069. height: math.unit(12.86, "feet"),
  32070. name: "Head",
  32071. image: {
  32072. source: "./media/characters/irb'iiritaahn/head.svg"
  32073. }
  32074. },
  32075. maw: {
  32076. height: math.unit(9.66, "feet"),
  32077. name: "Maw",
  32078. image: {
  32079. source: "./media/characters/irb'iiritaahn/maw.svg"
  32080. }
  32081. },
  32082. frontDick: {
  32083. height: math.unit(8.78461, "feet"),
  32084. name: "Front Dick",
  32085. image: {
  32086. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32087. }
  32088. },
  32089. rearDick: {
  32090. height: math.unit(8.78461, "feet"),
  32091. name: "Rear Dick",
  32092. image: {
  32093. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32094. }
  32095. },
  32096. rearDickUnfolded: {
  32097. height: math.unit(8.78, "feet"),
  32098. name: "Rear Dick (Unfolded)",
  32099. image: {
  32100. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32101. }
  32102. },
  32103. wings: {
  32104. height: math.unit(43, "feet"),
  32105. name: "Wings",
  32106. image: {
  32107. source: "./media/characters/irb'iiritaahn/wings.svg"
  32108. }
  32109. },
  32110. },
  32111. [
  32112. {
  32113. name: "Macro",
  32114. height: math.unit(50 + 9/12, "feet"),
  32115. default: true
  32116. },
  32117. ]
  32118. ))
  32119. characterMakers.push(() => makeCharacter(
  32120. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32121. {
  32122. front: {
  32123. height: math.unit(205, "cm"),
  32124. weight: math.unit(102, "kg"),
  32125. name: "Front",
  32126. image: {
  32127. source: "./media/characters/irbisgreif/front.svg",
  32128. extra: 785/706,
  32129. bottom: 13/798
  32130. }
  32131. },
  32132. back: {
  32133. height: math.unit(205, "cm"),
  32134. weight: math.unit(102, "kg"),
  32135. name: "Back",
  32136. image: {
  32137. source: "./media/characters/irbisgreif/back.svg",
  32138. extra: 713/701,
  32139. bottom: 26/739
  32140. }
  32141. },
  32142. frontDressed: {
  32143. height: math.unit(216, "cm"),
  32144. weight: math.unit(102, "kg"),
  32145. name: "Front-dressed",
  32146. image: {
  32147. source: "./media/characters/irbisgreif/front-dressed.svg",
  32148. extra: 902/776,
  32149. bottom: 14/916
  32150. }
  32151. },
  32152. sideDressed: {
  32153. height: math.unit(195, "cm"),
  32154. weight: math.unit(102, "kg"),
  32155. name: "Side-dressed",
  32156. image: {
  32157. source: "./media/characters/irbisgreif/side-dressed.svg",
  32158. extra: 788/688,
  32159. bottom: 21/809
  32160. }
  32161. },
  32162. backDressed: {
  32163. height: math.unit(216, "cm"),
  32164. weight: math.unit(102, "kg"),
  32165. name: "Back-dressed",
  32166. image: {
  32167. source: "./media/characters/irbisgreif/back-dressed.svg",
  32168. extra: 901/783,
  32169. bottom: 10/911
  32170. }
  32171. },
  32172. dick: {
  32173. height: math.unit(0.49, "feet"),
  32174. name: "Dick",
  32175. image: {
  32176. source: "./media/characters/irbisgreif/dick.svg"
  32177. }
  32178. },
  32179. wingTop: {
  32180. height: math.unit(1.93 , "feet"),
  32181. name: "Wing-top",
  32182. image: {
  32183. source: "./media/characters/irbisgreif/wing-top.svg"
  32184. }
  32185. },
  32186. wingBottom: {
  32187. height: math.unit(1.93 , "feet"),
  32188. name: "Wing-bottom",
  32189. image: {
  32190. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32191. }
  32192. },
  32193. },
  32194. [
  32195. {
  32196. name: "Normal",
  32197. height: math.unit(216, "cm"),
  32198. default: true
  32199. },
  32200. ]
  32201. ))
  32202. characterMakers.push(() => makeCharacter(
  32203. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32204. {
  32205. front: {
  32206. height: math.unit(6, "feet"),
  32207. weight: math.unit(150, "lb"),
  32208. name: "Front",
  32209. image: {
  32210. source: "./media/characters/pride/front.svg",
  32211. extra: 1299/1230,
  32212. bottom: 18/1317
  32213. }
  32214. },
  32215. },
  32216. [
  32217. {
  32218. name: "Normal",
  32219. height: math.unit(7, "feet")
  32220. },
  32221. {
  32222. name: "Mini-macro",
  32223. height: math.unit(11, "feet")
  32224. },
  32225. {
  32226. name: "Macro",
  32227. height: math.unit(15, "meters"),
  32228. default: true
  32229. },
  32230. {
  32231. name: "Macro+",
  32232. height: math.unit(40, "meters")
  32233. },
  32234. ]
  32235. ))
  32236. characterMakers.push(() => makeCharacter(
  32237. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32238. {
  32239. front: {
  32240. height: math.unit(4 + 2 / 12, "feet"),
  32241. weight: math.unit(95, "lb"),
  32242. name: "Front",
  32243. image: {
  32244. source: "./media/characters/vaelophis-nyx/front.svg",
  32245. extra: 2532/2330,
  32246. bottom: 0/2532
  32247. }
  32248. },
  32249. back: {
  32250. height: math.unit(4 + 2 / 12, "feet"),
  32251. weight: math.unit(95, "lb"),
  32252. name: "Back",
  32253. image: {
  32254. source: "./media/characters/vaelophis-nyx/back.svg",
  32255. extra: 2484/2361,
  32256. bottom: 0/2484
  32257. }
  32258. },
  32259. feralSide: {
  32260. height: math.unit(2 + 1/12, "feet"),
  32261. weight: math.unit(20, "lb"),
  32262. name: "Feral (Side)",
  32263. image: {
  32264. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32265. extra: 1721/1581,
  32266. bottom: 70/1791
  32267. }
  32268. },
  32269. feralLazing: {
  32270. height: math.unit(1.08, "feet"),
  32271. weight: math.unit(20, "lb"),
  32272. name: "Feral (Lazing)",
  32273. image: {
  32274. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32275. extra: 822/822,
  32276. bottom: 248/1070
  32277. }
  32278. },
  32279. ear: {
  32280. height: math.unit(0.416, "feet"),
  32281. name: "Ear",
  32282. image: {
  32283. source: "./media/characters/vaelophis-nyx/ear.svg"
  32284. }
  32285. },
  32286. eye: {
  32287. height: math.unit(0.0748, "feet"),
  32288. name: "Eye",
  32289. image: {
  32290. source: "./media/characters/vaelophis-nyx/eye.svg"
  32291. }
  32292. },
  32293. mouth: {
  32294. height: math.unit(0.378, "feet"),
  32295. name: "Mouth",
  32296. image: {
  32297. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32298. }
  32299. },
  32300. spade: {
  32301. height: math.unit(0.55, "feet"),
  32302. name: "Spade",
  32303. image: {
  32304. source: "./media/characters/vaelophis-nyx/spade.svg"
  32305. }
  32306. },
  32307. },
  32308. [
  32309. {
  32310. name: "Normal",
  32311. height: math.unit(4 + 2/12, "feet"),
  32312. default: true
  32313. },
  32314. ]
  32315. ))
  32316. characterMakers.push(() => makeCharacter(
  32317. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32318. {
  32319. front: {
  32320. height: math.unit(7, "feet"),
  32321. weight: math.unit(231, "lb"),
  32322. name: "Front",
  32323. image: {
  32324. source: "./media/characters/flux/front.svg",
  32325. extra: 919/871,
  32326. bottom: 0/919
  32327. }
  32328. },
  32329. back: {
  32330. height: math.unit(7, "feet"),
  32331. weight: math.unit(231, "lb"),
  32332. name: "Back",
  32333. image: {
  32334. source: "./media/characters/flux/back.svg",
  32335. extra: 1040/992,
  32336. bottom: 0/1040
  32337. }
  32338. },
  32339. frontDressed: {
  32340. height: math.unit(7, "feet"),
  32341. weight: math.unit(231, "lb"),
  32342. name: "Front (Dressed)",
  32343. image: {
  32344. source: "./media/characters/flux/front-dressed.svg",
  32345. extra: 919/871,
  32346. bottom: 0/919
  32347. }
  32348. },
  32349. feralSide: {
  32350. height: math.unit(5, "feet"),
  32351. weight: math.unit(150, "lb"),
  32352. name: "Feral (Side)",
  32353. image: {
  32354. source: "./media/characters/flux/feral-side.svg",
  32355. extra: 598/528,
  32356. bottom: 28/626
  32357. }
  32358. },
  32359. head: {
  32360. height: math.unit(1.585, "feet"),
  32361. name: "Head",
  32362. image: {
  32363. source: "./media/characters/flux/head.svg"
  32364. }
  32365. },
  32366. headSide: {
  32367. height: math.unit(1.74, "feet"),
  32368. name: "Head (Side)",
  32369. image: {
  32370. source: "./media/characters/flux/head-side.svg"
  32371. }
  32372. },
  32373. headSideFire: {
  32374. height: math.unit(1.76, "feet"),
  32375. name: "Head (Side, Fire)",
  32376. image: {
  32377. source: "./media/characters/flux/head-side-fire.svg"
  32378. }
  32379. },
  32380. },
  32381. [
  32382. {
  32383. name: "Normal",
  32384. height: math.unit(7, "feet"),
  32385. default: true
  32386. },
  32387. ]
  32388. ))
  32389. characterMakers.push(() => makeCharacter(
  32390. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32391. {
  32392. front: {
  32393. height: math.unit(9, "feet"),
  32394. weight: math.unit(1012, "lb"),
  32395. name: "Front",
  32396. image: {
  32397. source: "./media/characters/ulfra-lupae/front.svg",
  32398. extra: 1083/1011,
  32399. bottom: 67/1150
  32400. }
  32401. },
  32402. },
  32403. [
  32404. {
  32405. name: "Micro",
  32406. height: math.unit(6, "inches")
  32407. },
  32408. {
  32409. name: "Socializing",
  32410. height: math.unit(6 + 5/12, "feet")
  32411. },
  32412. {
  32413. name: "Normal",
  32414. height: math.unit(9, "feet"),
  32415. default: true
  32416. },
  32417. {
  32418. name: "Macro",
  32419. height: math.unit(150, "feet")
  32420. },
  32421. ]
  32422. ))
  32423. characterMakers.push(() => makeCharacter(
  32424. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32425. {
  32426. front: {
  32427. height: math.unit(5 + 2/12, "feet"),
  32428. weight: math.unit(120, "lb"),
  32429. name: "Front",
  32430. image: {
  32431. source: "./media/characters/timber/front.svg",
  32432. extra: 2814/2705,
  32433. bottom: 181/2995
  32434. }
  32435. },
  32436. },
  32437. [
  32438. {
  32439. name: "Normal",
  32440. height: math.unit(5 + 2/12, "feet"),
  32441. default: true
  32442. },
  32443. ]
  32444. ))
  32445. characterMakers.push(() => makeCharacter(
  32446. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32447. {
  32448. front: {
  32449. height: math.unit(9, "feet"),
  32450. name: "Front",
  32451. image: {
  32452. source: "./media/characters/nicki/front.svg",
  32453. extra: 1240/990,
  32454. bottom: 45/1285
  32455. },
  32456. form: "anthro",
  32457. default: true
  32458. },
  32459. side: {
  32460. height: math.unit(9, "feet"),
  32461. name: "Side",
  32462. image: {
  32463. source: "./media/characters/nicki/side.svg",
  32464. extra: 1047/973,
  32465. bottom: 61/1108
  32466. },
  32467. form: "anthro"
  32468. },
  32469. back: {
  32470. height: math.unit(9, "feet"),
  32471. name: "Back",
  32472. image: {
  32473. source: "./media/characters/nicki/back.svg",
  32474. extra: 1006/965,
  32475. bottom: 39/1045
  32476. },
  32477. form: "anthro"
  32478. },
  32479. taur: {
  32480. height: math.unit(15, "feet"),
  32481. name: "Taur",
  32482. image: {
  32483. source: "./media/characters/nicki/taur.svg",
  32484. extra: 1592/1347,
  32485. bottom: 0/1592
  32486. },
  32487. form: "taur",
  32488. default: true
  32489. },
  32490. },
  32491. [
  32492. {
  32493. name: "Normal",
  32494. height: math.unit(9, "feet"),
  32495. form: "anthro",
  32496. default: true
  32497. },
  32498. {
  32499. name: "Normal",
  32500. height: math.unit(15, "feet"),
  32501. form: "taur",
  32502. default: true
  32503. }
  32504. ],
  32505. {
  32506. "anthro": {
  32507. name: "Anthro",
  32508. default: true
  32509. },
  32510. "taur": {
  32511. name: "Taur"
  32512. }
  32513. }
  32514. ))
  32515. characterMakers.push(() => makeCharacter(
  32516. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32517. {
  32518. front: {
  32519. height: math.unit(7 + 10/12, "feet"),
  32520. weight: math.unit(3.5, "tons"),
  32521. name: "Front",
  32522. image: {
  32523. source: "./media/characters/lee/front.svg",
  32524. extra: 1773/1615,
  32525. bottom: 86/1859
  32526. }
  32527. },
  32528. hand: {
  32529. height: math.unit(1.78, "feet"),
  32530. name: "Hand",
  32531. image: {
  32532. source: "./media/characters/lee/hand.svg"
  32533. }
  32534. },
  32535. maw: {
  32536. height: math.unit(1.18, "feet"),
  32537. name: "Maw",
  32538. image: {
  32539. source: "./media/characters/lee/maw.svg"
  32540. }
  32541. },
  32542. },
  32543. [
  32544. {
  32545. name: "Normal",
  32546. height: math.unit(7 + 10/12, "feet"),
  32547. default: true
  32548. },
  32549. ]
  32550. ))
  32551. characterMakers.push(() => makeCharacter(
  32552. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32553. {
  32554. front: {
  32555. height: math.unit(9, "feet"),
  32556. name: "Front",
  32557. image: {
  32558. source: "./media/characters/guti/front.svg",
  32559. extra: 4551/4355,
  32560. bottom: 123/4674
  32561. }
  32562. },
  32563. tongue: {
  32564. height: math.unit(1, "feet"),
  32565. name: "Tongue",
  32566. image: {
  32567. source: "./media/characters/guti/tongue.svg"
  32568. }
  32569. },
  32570. paw: {
  32571. height: math.unit(1.18, "feet"),
  32572. name: "Paw",
  32573. image: {
  32574. source: "./media/characters/guti/paw.svg"
  32575. }
  32576. },
  32577. },
  32578. [
  32579. {
  32580. name: "Normal",
  32581. height: math.unit(9, "feet"),
  32582. default: true
  32583. },
  32584. ]
  32585. ))
  32586. characterMakers.push(() => makeCharacter(
  32587. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32588. {
  32589. side: {
  32590. height: math.unit(5, "meters"),
  32591. name: "Side",
  32592. image: {
  32593. source: "./media/characters/vesper/side.svg",
  32594. extra: 1605/1518,
  32595. bottom: 0/1605
  32596. }
  32597. },
  32598. },
  32599. [
  32600. {
  32601. name: "Small",
  32602. height: math.unit(5, "meters")
  32603. },
  32604. {
  32605. name: "Sage",
  32606. height: math.unit(100, "meters"),
  32607. default: true
  32608. },
  32609. {
  32610. name: "Fun Size",
  32611. height: math.unit(600, "meters")
  32612. },
  32613. {
  32614. name: "Goddess",
  32615. height: math.unit(20000, "km")
  32616. },
  32617. {
  32618. name: "Maximum",
  32619. height: math.unit(5, "galaxies")
  32620. },
  32621. ]
  32622. ))
  32623. characterMakers.push(() => makeCharacter(
  32624. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32625. {
  32626. front: {
  32627. height: math.unit(6 + 3/12, "feet"),
  32628. weight: math.unit(190, "lb"),
  32629. name: "Front",
  32630. image: {
  32631. source: "./media/characters/gawain/front.svg",
  32632. extra: 2222/2139,
  32633. bottom: 90/2312
  32634. }
  32635. },
  32636. back: {
  32637. height: math.unit(6 + 3/12, "feet"),
  32638. weight: math.unit(190, "lb"),
  32639. name: "Back",
  32640. image: {
  32641. source: "./media/characters/gawain/back.svg",
  32642. extra: 2199/2111,
  32643. bottom: 73/2272
  32644. }
  32645. },
  32646. },
  32647. [
  32648. {
  32649. name: "Normal",
  32650. height: math.unit(6 + 3/12, "feet"),
  32651. default: true
  32652. },
  32653. ]
  32654. ))
  32655. characterMakers.push(() => makeCharacter(
  32656. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32657. {
  32658. side: {
  32659. height: math.unit(3.5, "meters"),
  32660. weight: math.unit(16000, "lb"),
  32661. name: "Side",
  32662. image: {
  32663. source: "./media/characters/dascalti/side.svg",
  32664. extra: 392/273,
  32665. bottom: 47/439
  32666. }
  32667. },
  32668. breath: {
  32669. height: math.unit(7.4, "feet"),
  32670. name: "Breath",
  32671. image: {
  32672. source: "./media/characters/dascalti/breath.svg"
  32673. }
  32674. },
  32675. fed: {
  32676. height: math.unit(3.6, "meters"),
  32677. weight: math.unit(16000, "lb"),
  32678. name: "Fed",
  32679. image: {
  32680. source: "./media/characters/dascalti/fed.svg",
  32681. extra: 1419/820,
  32682. bottom: 95/1514
  32683. }
  32684. },
  32685. },
  32686. [
  32687. {
  32688. name: "Normal",
  32689. height: math.unit(3.5, "meters"),
  32690. default: true
  32691. },
  32692. ]
  32693. ))
  32694. characterMakers.push(() => makeCharacter(
  32695. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32696. {
  32697. front: {
  32698. height: math.unit(3 + 5/12, "feet"),
  32699. name: "Front",
  32700. image: {
  32701. source: "./media/characters/mauve/front.svg",
  32702. extra: 1126/1033,
  32703. bottom: 65/1191
  32704. }
  32705. },
  32706. side: {
  32707. height: math.unit(3 + 5/12, "feet"),
  32708. name: "Side",
  32709. image: {
  32710. source: "./media/characters/mauve/side.svg",
  32711. extra: 1089/1001,
  32712. bottom: 29/1118
  32713. }
  32714. },
  32715. back: {
  32716. height: math.unit(3 + 5/12, "feet"),
  32717. name: "Back",
  32718. image: {
  32719. source: "./media/characters/mauve/back.svg",
  32720. extra: 1173/1053,
  32721. bottom: 109/1282
  32722. }
  32723. },
  32724. },
  32725. [
  32726. {
  32727. name: "Normal",
  32728. height: math.unit(3 + 5/12, "feet"),
  32729. default: true
  32730. },
  32731. ]
  32732. ))
  32733. characterMakers.push(() => makeCharacter(
  32734. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32735. {
  32736. front: {
  32737. height: math.unit(6 + 3/12, "feet"),
  32738. weight: math.unit(430, "lb"),
  32739. name: "Front",
  32740. image: {
  32741. source: "./media/characters/carlos/front.svg",
  32742. extra: 1964/1913,
  32743. bottom: 70/2034
  32744. }
  32745. },
  32746. },
  32747. [
  32748. {
  32749. name: "Normal",
  32750. height: math.unit(6 + 3/12, "feet"),
  32751. default: true
  32752. },
  32753. ]
  32754. ))
  32755. characterMakers.push(() => makeCharacter(
  32756. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32757. {
  32758. back: {
  32759. height: math.unit(5 + 10/12, "feet"),
  32760. weight: math.unit(200, "lb"),
  32761. name: "Back",
  32762. image: {
  32763. source: "./media/characters/jax/back.svg",
  32764. extra: 764/739,
  32765. bottom: 25/789
  32766. }
  32767. },
  32768. },
  32769. [
  32770. {
  32771. name: "Normal",
  32772. height: math.unit(5 + 10/12, "feet"),
  32773. default: true
  32774. },
  32775. ]
  32776. ))
  32777. characterMakers.push(() => makeCharacter(
  32778. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32779. {
  32780. front: {
  32781. height: math.unit(8, "feet"),
  32782. weight: math.unit(250, "lb"),
  32783. name: "Front",
  32784. image: {
  32785. source: "./media/characters/eikthynir/front.svg",
  32786. extra: 1332/1166,
  32787. bottom: 82/1414
  32788. }
  32789. },
  32790. back: {
  32791. height: math.unit(8, "feet"),
  32792. weight: math.unit(250, "lb"),
  32793. name: "Back",
  32794. image: {
  32795. source: "./media/characters/eikthynir/back.svg",
  32796. extra: 1342/1190,
  32797. bottom: 19/1361
  32798. }
  32799. },
  32800. dick: {
  32801. height: math.unit(2.35, "feet"),
  32802. name: "Dick",
  32803. image: {
  32804. source: "./media/characters/eikthynir/dick.svg"
  32805. }
  32806. },
  32807. },
  32808. [
  32809. {
  32810. name: "Normal",
  32811. height: math.unit(8, "feet"),
  32812. default: true
  32813. },
  32814. ]
  32815. ))
  32816. characterMakers.push(() => makeCharacter(
  32817. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32818. {
  32819. front: {
  32820. height: math.unit(99, "meters"),
  32821. weight: math.unit(13000, "tons"),
  32822. name: "Front",
  32823. image: {
  32824. source: "./media/characters/zlmos/front.svg",
  32825. extra: 2202/1992,
  32826. bottom: 315/2517
  32827. }
  32828. },
  32829. },
  32830. [
  32831. {
  32832. name: "Macro",
  32833. height: math.unit(99, "meters"),
  32834. default: true
  32835. },
  32836. ]
  32837. ))
  32838. characterMakers.push(() => makeCharacter(
  32839. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32840. {
  32841. front: {
  32842. height: math.unit(6 + 5/12, "feet"),
  32843. name: "Front",
  32844. image: {
  32845. source: "./media/characters/purri/front.svg",
  32846. extra: 1698/1610,
  32847. bottom: 32/1730
  32848. }
  32849. },
  32850. frontAlt: {
  32851. height: math.unit(6 + 5/12, "feet"),
  32852. name: "Front (Alt)",
  32853. image: {
  32854. source: "./media/characters/purri/front-alt.svg",
  32855. extra: 450/420,
  32856. bottom: 26/476
  32857. }
  32858. },
  32859. boots: {
  32860. height: math.unit(5.5, "feet"),
  32861. name: "Boots",
  32862. image: {
  32863. source: "./media/characters/purri/boots.svg",
  32864. extra: 905/853,
  32865. bottom: 18/923
  32866. }
  32867. },
  32868. lying: {
  32869. height: math.unit(2, "feet"),
  32870. name: "Lying",
  32871. image: {
  32872. source: "./media/characters/purri/lying.svg",
  32873. extra: 940/843,
  32874. bottom: 146/1086
  32875. }
  32876. },
  32877. devious: {
  32878. height: math.unit(1.77, "feet"),
  32879. name: "Devious",
  32880. image: {
  32881. source: "./media/characters/purri/devious.svg",
  32882. extra: 1440/1155,
  32883. bottom: 147/1587
  32884. }
  32885. },
  32886. bean: {
  32887. height: math.unit(1.94, "feet"),
  32888. name: "Bean",
  32889. image: {
  32890. source: "./media/characters/purri/bean.svg"
  32891. }
  32892. },
  32893. },
  32894. [
  32895. {
  32896. name: "Micro",
  32897. height: math.unit(1, "mm")
  32898. },
  32899. {
  32900. name: "Normal",
  32901. height: math.unit(6 + 5/12, "feet"),
  32902. default: true
  32903. },
  32904. {
  32905. name: "Macro :3c",
  32906. height: math.unit(2, "miles")
  32907. },
  32908. ]
  32909. ))
  32910. characterMakers.push(() => makeCharacter(
  32911. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32912. {
  32913. front: {
  32914. height: math.unit(6 + 2/12, "feet"),
  32915. weight: math.unit(250, "lb"),
  32916. name: "Front",
  32917. image: {
  32918. source: "./media/characters/moonlight/front.svg",
  32919. extra: 1044/908,
  32920. bottom: 56/1100
  32921. }
  32922. },
  32923. feral: {
  32924. height: math.unit(3 + 1/12, "feet"),
  32925. weight: math.unit(50, "kg"),
  32926. name: "Feral",
  32927. image: {
  32928. source: "./media/characters/moonlight/feral.svg",
  32929. extra: 3705/2791,
  32930. bottom: 145/3850
  32931. }
  32932. },
  32933. paw: {
  32934. height: math.unit(1, "feet"),
  32935. name: "Paw",
  32936. image: {
  32937. source: "./media/characters/moonlight/paw.svg"
  32938. }
  32939. },
  32940. paws: {
  32941. height: math.unit(0.98, "feet"),
  32942. name: "Paws",
  32943. image: {
  32944. source: "./media/characters/moonlight/paws.svg",
  32945. extra: 939/939,
  32946. bottom: 50/989
  32947. }
  32948. },
  32949. mouth: {
  32950. height: math.unit(0.48, "feet"),
  32951. name: "Mouth",
  32952. image: {
  32953. source: "./media/characters/moonlight/mouth.svg"
  32954. }
  32955. },
  32956. dick: {
  32957. height: math.unit(1.46, "feet"),
  32958. name: "Dick",
  32959. image: {
  32960. source: "./media/characters/moonlight/dick.svg"
  32961. }
  32962. },
  32963. },
  32964. [
  32965. {
  32966. name: "Normal",
  32967. height: math.unit(6 + 2/12, "feet"),
  32968. default: true
  32969. },
  32970. {
  32971. name: "Macro",
  32972. height: math.unit(300, "feet")
  32973. },
  32974. {
  32975. name: "Macro+",
  32976. height: math.unit(1, "mile")
  32977. },
  32978. {
  32979. name: "Mt. Moon",
  32980. height: math.unit(5, "miles")
  32981. },
  32982. {
  32983. name: "Megamacro",
  32984. height: math.unit(15, "miles")
  32985. },
  32986. ]
  32987. ))
  32988. characterMakers.push(() => makeCharacter(
  32989. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32990. {
  32991. back: {
  32992. height: math.unit(6, "feet"),
  32993. weight: math.unit(150, "lb"),
  32994. name: "Back",
  32995. image: {
  32996. source: "./media/characters/sylen/back.svg",
  32997. extra: 1335/1273,
  32998. bottom: 107/1442
  32999. }
  33000. },
  33001. },
  33002. [
  33003. {
  33004. name: "Normal",
  33005. height: math.unit(5 + 5/12, "feet")
  33006. },
  33007. {
  33008. name: "Megamacro",
  33009. height: math.unit(3, "miles"),
  33010. default: true
  33011. },
  33012. ]
  33013. ))
  33014. characterMakers.push(() => makeCharacter(
  33015. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33016. {
  33017. front: {
  33018. height: math.unit(6, "feet"),
  33019. weight: math.unit(190, "lb"),
  33020. name: "Front",
  33021. image: {
  33022. source: "./media/characters/huttser/front.svg",
  33023. extra: 1152/1058,
  33024. bottom: 23/1175
  33025. }
  33026. },
  33027. side: {
  33028. height: math.unit(6, "feet"),
  33029. weight: math.unit(190, "lb"),
  33030. name: "Side",
  33031. image: {
  33032. source: "./media/characters/huttser/side.svg",
  33033. extra: 1174/1065,
  33034. bottom: 18/1192
  33035. }
  33036. },
  33037. back: {
  33038. height: math.unit(6, "feet"),
  33039. weight: math.unit(190, "lb"),
  33040. name: "Back",
  33041. image: {
  33042. source: "./media/characters/huttser/back.svg",
  33043. extra: 1158/1056,
  33044. bottom: 12/1170
  33045. }
  33046. },
  33047. },
  33048. [
  33049. ]
  33050. ))
  33051. characterMakers.push(() => makeCharacter(
  33052. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33053. {
  33054. side: {
  33055. height: math.unit(12 + 9/12, "feet"),
  33056. weight: math.unit(15000, "lb"),
  33057. name: "Side",
  33058. image: {
  33059. source: "./media/characters/faan/side.svg",
  33060. extra: 2747/2697,
  33061. bottom: 0/2747
  33062. }
  33063. },
  33064. front: {
  33065. height: math.unit(12 + 9/12, "feet"),
  33066. weight: math.unit(15000, "lb"),
  33067. name: "Front",
  33068. image: {
  33069. source: "./media/characters/faan/front.svg",
  33070. extra: 607/571,
  33071. bottom: 24/631
  33072. }
  33073. },
  33074. head: {
  33075. height: math.unit(2.85, "feet"),
  33076. name: "Head",
  33077. image: {
  33078. source: "./media/characters/faan/head.svg"
  33079. }
  33080. },
  33081. headAlt: {
  33082. height: math.unit(3.13, "feet"),
  33083. name: "Head-alt",
  33084. image: {
  33085. source: "./media/characters/faan/head-alt.svg"
  33086. }
  33087. },
  33088. },
  33089. [
  33090. {
  33091. name: "Normal",
  33092. height: math.unit(12 + 9/12, "feet"),
  33093. default: true
  33094. },
  33095. ]
  33096. ))
  33097. characterMakers.push(() => makeCharacter(
  33098. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33099. {
  33100. front: {
  33101. height: math.unit(6, "feet"),
  33102. weight: math.unit(300, "lb"),
  33103. name: "Front",
  33104. image: {
  33105. source: "./media/characters/tanio/front.svg",
  33106. extra: 711/673,
  33107. bottom: 25/736
  33108. }
  33109. },
  33110. },
  33111. [
  33112. {
  33113. name: "Normal",
  33114. height: math.unit(6, "feet"),
  33115. default: true
  33116. },
  33117. ]
  33118. ))
  33119. characterMakers.push(() => makeCharacter(
  33120. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33121. {
  33122. front: {
  33123. height: math.unit(3, "inches"),
  33124. name: "Front",
  33125. image: {
  33126. source: "./media/characters/noboru/front.svg",
  33127. extra: 1039/932,
  33128. bottom: 18/1057
  33129. }
  33130. },
  33131. },
  33132. [
  33133. {
  33134. name: "Micro",
  33135. height: math.unit(3, "inches"),
  33136. default: true
  33137. },
  33138. ]
  33139. ))
  33140. characterMakers.push(() => makeCharacter(
  33141. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33142. {
  33143. front: {
  33144. height: math.unit(1.85, "meters"),
  33145. weight: math.unit(80, "kg"),
  33146. name: "Front",
  33147. image: {
  33148. source: "./media/characters/daniel-barrett/front.svg",
  33149. extra: 355/337,
  33150. bottom: 9/364
  33151. }
  33152. },
  33153. },
  33154. [
  33155. {
  33156. name: "Pico",
  33157. height: math.unit(0.0433, "mm")
  33158. },
  33159. {
  33160. name: "Nano",
  33161. height: math.unit(1.5, "mm")
  33162. },
  33163. {
  33164. name: "Micro",
  33165. height: math.unit(5.3, "cm"),
  33166. default: true
  33167. },
  33168. {
  33169. name: "Normal",
  33170. height: math.unit(1.85, "meters")
  33171. },
  33172. {
  33173. name: "Macro",
  33174. height: math.unit(64.7, "meters")
  33175. },
  33176. {
  33177. name: "Megamacro",
  33178. height: math.unit(2.26, "km")
  33179. },
  33180. {
  33181. name: "Gigamacro",
  33182. height: math.unit(79, "km")
  33183. },
  33184. {
  33185. name: "Teramacro",
  33186. height: math.unit(2765, "km")
  33187. },
  33188. {
  33189. name: "Petamacro",
  33190. height: math.unit(96678, "km")
  33191. },
  33192. ]
  33193. ))
  33194. characterMakers.push(() => makeCharacter(
  33195. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33196. {
  33197. front: {
  33198. height: math.unit(30, "meters"),
  33199. weight: math.unit(400, "tons"),
  33200. name: "Front",
  33201. image: {
  33202. source: "./media/characters/zeel/front.svg",
  33203. extra: 2599/2599,
  33204. bottom: 226/2825
  33205. }
  33206. },
  33207. },
  33208. [
  33209. {
  33210. name: "Macro",
  33211. height: math.unit(30, "meters"),
  33212. default: true
  33213. },
  33214. ]
  33215. ))
  33216. characterMakers.push(() => makeCharacter(
  33217. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33218. {
  33219. front: {
  33220. height: math.unit(6 + 7/12, "feet"),
  33221. weight: math.unit(210, "lb"),
  33222. name: "Front",
  33223. image: {
  33224. source: "./media/characters/tarn/front.svg",
  33225. extra: 3517/3220,
  33226. bottom: 91/3608
  33227. }
  33228. },
  33229. back: {
  33230. height: math.unit(6 + 7/12, "feet"),
  33231. weight: math.unit(210, "lb"),
  33232. name: "Back",
  33233. image: {
  33234. source: "./media/characters/tarn/back.svg",
  33235. extra: 3566/3241,
  33236. bottom: 34/3600
  33237. }
  33238. },
  33239. dick: {
  33240. height: math.unit(1.65, "feet"),
  33241. name: "Dick",
  33242. image: {
  33243. source: "./media/characters/tarn/dick.svg"
  33244. }
  33245. },
  33246. paw: {
  33247. height: math.unit(1.80, "feet"),
  33248. name: "Paw",
  33249. image: {
  33250. source: "./media/characters/tarn/paw.svg"
  33251. }
  33252. },
  33253. tongue: {
  33254. height: math.unit(0.97, "feet"),
  33255. name: "Tongue",
  33256. image: {
  33257. source: "./media/characters/tarn/tongue.svg"
  33258. }
  33259. },
  33260. },
  33261. [
  33262. {
  33263. name: "Micro",
  33264. height: math.unit(4, "inches")
  33265. },
  33266. {
  33267. name: "Normal",
  33268. height: math.unit(6 + 7/12, "feet"),
  33269. default: true
  33270. },
  33271. {
  33272. name: "Macro",
  33273. height: math.unit(300, "feet")
  33274. },
  33275. ]
  33276. ))
  33277. characterMakers.push(() => makeCharacter(
  33278. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33279. {
  33280. front: {
  33281. height: math.unit(5 + 7/12, "feet"),
  33282. weight: math.unit(80, "kg"),
  33283. name: "Front",
  33284. image: {
  33285. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33286. extra: 3023/2865,
  33287. bottom: 33/3056
  33288. }
  33289. },
  33290. back: {
  33291. height: math.unit(5 + 7/12, "feet"),
  33292. weight: math.unit(80, "kg"),
  33293. name: "Back",
  33294. image: {
  33295. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33296. extra: 3020/2886,
  33297. bottom: 30/3050
  33298. }
  33299. },
  33300. dick: {
  33301. height: math.unit(0.98, "feet"),
  33302. name: "Dick",
  33303. image: {
  33304. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33305. }
  33306. },
  33307. anatomy: {
  33308. height: math.unit(2.86, "feet"),
  33309. name: "Anatomy",
  33310. image: {
  33311. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33312. }
  33313. },
  33314. },
  33315. [
  33316. {
  33317. name: "Really Small",
  33318. height: math.unit(2, "inches")
  33319. },
  33320. {
  33321. name: "Micro",
  33322. height: math.unit(5.583, "inches")
  33323. },
  33324. {
  33325. name: "Normal",
  33326. height: math.unit(5 + 7/12, "feet"),
  33327. default: true
  33328. },
  33329. {
  33330. name: "Macro",
  33331. height: math.unit(67, "feet")
  33332. },
  33333. {
  33334. name: "Megamacro",
  33335. height: math.unit(134, "feet")
  33336. },
  33337. ]
  33338. ))
  33339. characterMakers.push(() => makeCharacter(
  33340. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33341. {
  33342. front: {
  33343. height: math.unit(9, "feet"),
  33344. weight: math.unit(120, "lb"),
  33345. name: "Front",
  33346. image: {
  33347. source: "./media/characters/sally/front.svg",
  33348. extra: 1506/1349,
  33349. bottom: 66/1572
  33350. }
  33351. },
  33352. },
  33353. [
  33354. {
  33355. name: "Normal",
  33356. height: math.unit(9, "feet"),
  33357. default: true
  33358. },
  33359. ]
  33360. ))
  33361. characterMakers.push(() => makeCharacter(
  33362. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33363. {
  33364. front: {
  33365. height: math.unit(8, "feet"),
  33366. weight: math.unit(900, "lb"),
  33367. name: "Front",
  33368. image: {
  33369. source: "./media/characters/owen/front.svg",
  33370. extra: 1761/1657,
  33371. bottom: 74/1835
  33372. }
  33373. },
  33374. side: {
  33375. height: math.unit(8, "feet"),
  33376. weight: math.unit(900, "lb"),
  33377. name: "Side",
  33378. image: {
  33379. source: "./media/characters/owen/side.svg",
  33380. extra: 1797/1734,
  33381. bottom: 30/1827
  33382. }
  33383. },
  33384. back: {
  33385. height: math.unit(8, "feet"),
  33386. weight: math.unit(900, "lb"),
  33387. name: "Back",
  33388. image: {
  33389. source: "./media/characters/owen/back.svg",
  33390. extra: 1796/1706,
  33391. bottom: 59/1855
  33392. }
  33393. },
  33394. maw: {
  33395. height: math.unit(1.76, "feet"),
  33396. name: "Maw",
  33397. image: {
  33398. source: "./media/characters/owen/maw.svg"
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Normal",
  33405. height: math.unit(8, "feet"),
  33406. default: true
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33412. {
  33413. front: {
  33414. height: math.unit(4, "feet"),
  33415. weight: math.unit(400, "lb"),
  33416. name: "Front",
  33417. image: {
  33418. source: "./media/characters/ryth/front.svg",
  33419. extra: 1920/1748,
  33420. bottom: 42/1962
  33421. }
  33422. },
  33423. back: {
  33424. height: math.unit(4, "feet"),
  33425. weight: math.unit(400, "lb"),
  33426. name: "Back",
  33427. image: {
  33428. source: "./media/characters/ryth/back.svg",
  33429. extra: 1897/1690,
  33430. bottom: 89/1986
  33431. }
  33432. },
  33433. mouth: {
  33434. height: math.unit(1.39, "feet"),
  33435. name: "Mouth",
  33436. image: {
  33437. source: "./media/characters/ryth/mouth.svg"
  33438. }
  33439. },
  33440. tailmaw: {
  33441. height: math.unit(1.23, "feet"),
  33442. name: "Tailmaw",
  33443. image: {
  33444. source: "./media/characters/ryth/tailmaw.svg"
  33445. }
  33446. },
  33447. goia: {
  33448. height: math.unit(4, "meters"),
  33449. weight: math.unit(10800, "lb"),
  33450. name: "Goia",
  33451. image: {
  33452. source: "./media/characters/ryth/goia.svg",
  33453. extra: 745/640,
  33454. bottom: 107/852
  33455. }
  33456. },
  33457. goiaFront: {
  33458. height: math.unit(4, "meters"),
  33459. weight: math.unit(10800, "lb"),
  33460. name: "Goia (Front)",
  33461. image: {
  33462. source: "./media/characters/ryth/goia-front.svg",
  33463. extra: 750/586,
  33464. bottom: 114/864
  33465. }
  33466. },
  33467. goiaMaw: {
  33468. height: math.unit(5.55, "feet"),
  33469. name: "Goia Maw",
  33470. image: {
  33471. source: "./media/characters/ryth/goia-maw.svg"
  33472. }
  33473. },
  33474. goiaForepaw: {
  33475. height: math.unit(3.5, "feet"),
  33476. name: "Goia Forepaw",
  33477. image: {
  33478. source: "./media/characters/ryth/goia-forepaw.svg"
  33479. }
  33480. },
  33481. goiaHindpaw: {
  33482. height: math.unit(5.55, "feet"),
  33483. name: "Goia Hindpaw",
  33484. image: {
  33485. source: "./media/characters/ryth/goia-hindpaw.svg"
  33486. }
  33487. },
  33488. },
  33489. [
  33490. {
  33491. name: "Normal",
  33492. height: math.unit(4, "feet"),
  33493. default: true
  33494. },
  33495. ]
  33496. ))
  33497. characterMakers.push(() => makeCharacter(
  33498. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33499. {
  33500. front: {
  33501. height: math.unit(7, "feet"),
  33502. weight: math.unit(180, "lb"),
  33503. name: "Front",
  33504. image: {
  33505. source: "./media/characters/necrolance/front.svg",
  33506. extra: 1062/947,
  33507. bottom: 41/1103
  33508. }
  33509. },
  33510. back: {
  33511. height: math.unit(7, "feet"),
  33512. weight: math.unit(180, "lb"),
  33513. name: "Back",
  33514. image: {
  33515. source: "./media/characters/necrolance/back.svg",
  33516. extra: 1045/984,
  33517. bottom: 14/1059
  33518. }
  33519. },
  33520. wing: {
  33521. height: math.unit(2.67, "feet"),
  33522. name: "Wing",
  33523. image: {
  33524. source: "./media/characters/necrolance/wing.svg"
  33525. }
  33526. },
  33527. },
  33528. [
  33529. {
  33530. name: "Normal",
  33531. height: math.unit(7, "feet"),
  33532. default: true
  33533. },
  33534. ]
  33535. ))
  33536. characterMakers.push(() => makeCharacter(
  33537. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33538. {
  33539. front: {
  33540. height: math.unit(76, "meters"),
  33541. weight: math.unit(30000, "tons"),
  33542. name: "Front",
  33543. image: {
  33544. source: "./media/characters/tyler/front.svg",
  33545. extra: 1640/1640,
  33546. bottom: 114/1754
  33547. }
  33548. },
  33549. },
  33550. [
  33551. {
  33552. name: "Macro",
  33553. height: math.unit(76, "meters"),
  33554. default: true
  33555. },
  33556. ]
  33557. ))
  33558. characterMakers.push(() => makeCharacter(
  33559. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33560. {
  33561. front: {
  33562. height: math.unit(4 + 11/12, "feet"),
  33563. weight: math.unit(132, "lb"),
  33564. name: "Front",
  33565. image: {
  33566. source: "./media/characters/icey/front.svg",
  33567. extra: 2750/2550,
  33568. bottom: 33/2783
  33569. }
  33570. },
  33571. back: {
  33572. height: math.unit(4 + 11/12, "feet"),
  33573. weight: math.unit(132, "lb"),
  33574. name: "Back",
  33575. image: {
  33576. source: "./media/characters/icey/back.svg",
  33577. extra: 2624/2481,
  33578. bottom: 35/2659
  33579. }
  33580. },
  33581. },
  33582. [
  33583. {
  33584. name: "Normal",
  33585. height: math.unit(4 + 11/12, "feet"),
  33586. default: true
  33587. },
  33588. ]
  33589. ))
  33590. characterMakers.push(() => makeCharacter(
  33591. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33592. {
  33593. front: {
  33594. height: math.unit(100, "feet"),
  33595. weight: math.unit(0, "lb"),
  33596. name: "Front",
  33597. image: {
  33598. source: "./media/characters/smile/front.svg",
  33599. extra: 2983/2912,
  33600. bottom: 162/3145
  33601. }
  33602. },
  33603. back: {
  33604. height: math.unit(100, "feet"),
  33605. weight: math.unit(0, "lb"),
  33606. name: "Back",
  33607. image: {
  33608. source: "./media/characters/smile/back.svg",
  33609. extra: 3143/3031,
  33610. bottom: 91/3234
  33611. }
  33612. },
  33613. head: {
  33614. height: math.unit(26.3, "feet"),
  33615. weight: math.unit(0, "lb"),
  33616. name: "Head",
  33617. image: {
  33618. source: "./media/characters/smile/head.svg"
  33619. }
  33620. },
  33621. collar: {
  33622. height: math.unit(5.3, "feet"),
  33623. weight: math.unit(0, "lb"),
  33624. name: "Collar",
  33625. image: {
  33626. source: "./media/characters/smile/collar.svg"
  33627. }
  33628. },
  33629. },
  33630. [
  33631. {
  33632. name: "Macro",
  33633. height: math.unit(100, "feet"),
  33634. default: true
  33635. },
  33636. ]
  33637. ))
  33638. characterMakers.push(() => makeCharacter(
  33639. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33640. {
  33641. dragon: {
  33642. height: math.unit(26, "feet"),
  33643. weight: math.unit(36, "tons"),
  33644. name: "Dragon",
  33645. image: {
  33646. source: "./media/characters/arimphae/dragon.svg",
  33647. extra: 1574/983,
  33648. bottom: 357/1931
  33649. }
  33650. },
  33651. drake: {
  33652. height: math.unit(9, "feet"),
  33653. weight: math.unit(1.5, "tons"),
  33654. name: "Drake",
  33655. image: {
  33656. source: "./media/characters/arimphae/drake.svg",
  33657. extra: 1120/925,
  33658. bottom: 435/1555
  33659. }
  33660. },
  33661. },
  33662. [
  33663. {
  33664. name: "Small",
  33665. height: math.unit(26*5/9, "feet")
  33666. },
  33667. {
  33668. name: "Normal",
  33669. height: math.unit(26, "feet"),
  33670. default: true
  33671. },
  33672. ]
  33673. ))
  33674. characterMakers.push(() => makeCharacter(
  33675. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33676. {
  33677. front: {
  33678. height: math.unit(8 + 9/12, "feet"),
  33679. name: "Front",
  33680. image: {
  33681. source: "./media/characters/xander/front.svg",
  33682. extra: 1237/974,
  33683. bottom: 94/1331
  33684. }
  33685. },
  33686. },
  33687. [
  33688. {
  33689. name: "Normal",
  33690. height: math.unit(8 + 9/12, "feet"),
  33691. default: true
  33692. },
  33693. {
  33694. name: "Gaze Grabber",
  33695. height: math.unit(13 + 8/12, "feet")
  33696. },
  33697. {
  33698. name: "Jaw Dropper",
  33699. height: math.unit(27, "feet")
  33700. },
  33701. {
  33702. name: "Show Stopper",
  33703. height: math.unit(136, "feet")
  33704. },
  33705. {
  33706. name: "Superstar",
  33707. height: math.unit(1.9e6, "miles")
  33708. },
  33709. ]
  33710. ))
  33711. characterMakers.push(() => makeCharacter(
  33712. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33713. {
  33714. side: {
  33715. height: math.unit(2100, "feet"),
  33716. name: "Side",
  33717. image: {
  33718. source: "./media/characters/osiris/side.svg",
  33719. extra: 1105/939,
  33720. bottom: 167/1272
  33721. }
  33722. },
  33723. },
  33724. [
  33725. {
  33726. name: "Macro",
  33727. height: math.unit(2100, "feet"),
  33728. default: true
  33729. },
  33730. ]
  33731. ))
  33732. characterMakers.push(() => makeCharacter(
  33733. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33734. {
  33735. front: {
  33736. height: math.unit(6 + 8/12, "feet"),
  33737. weight: math.unit(225, "lb"),
  33738. name: "Front",
  33739. image: {
  33740. source: "./media/characters/rhys-londe/front.svg",
  33741. extra: 2258/2141,
  33742. bottom: 188/2446
  33743. }
  33744. },
  33745. back: {
  33746. height: math.unit(6 + 8/12, "feet"),
  33747. weight: math.unit(225, "lb"),
  33748. name: "Back",
  33749. image: {
  33750. source: "./media/characters/rhys-londe/back.svg",
  33751. extra: 2237/2137,
  33752. bottom: 63/2300
  33753. }
  33754. },
  33755. frontNsfw: {
  33756. height: math.unit(6 + 8/12, "feet"),
  33757. weight: math.unit(225, "lb"),
  33758. name: "Front (NSFW)",
  33759. image: {
  33760. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33761. extra: 2258/2141,
  33762. bottom: 188/2446
  33763. }
  33764. },
  33765. backNsfw: {
  33766. height: math.unit(6 + 8/12, "feet"),
  33767. weight: math.unit(225, "lb"),
  33768. name: "Back (NSFW)",
  33769. image: {
  33770. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33771. extra: 2237/2137,
  33772. bottom: 63/2300
  33773. }
  33774. },
  33775. dick: {
  33776. height: math.unit(30, "inches"),
  33777. name: "Dick",
  33778. image: {
  33779. source: "./media/characters/rhys-londe/dick.svg"
  33780. }
  33781. },
  33782. maw: {
  33783. height: math.unit(1.6, "feet"),
  33784. name: "Maw",
  33785. image: {
  33786. source: "./media/characters/rhys-londe/maw.svg"
  33787. }
  33788. },
  33789. },
  33790. [
  33791. {
  33792. name: "Normal",
  33793. height: math.unit(6 + 8/12, "feet"),
  33794. default: true
  33795. },
  33796. ]
  33797. ))
  33798. characterMakers.push(() => makeCharacter(
  33799. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33800. {
  33801. front: {
  33802. height: math.unit(3 + 10/12, "feet"),
  33803. weight: math.unit(90, "lb"),
  33804. name: "Front",
  33805. image: {
  33806. source: "./media/characters/taivas-ensim/front.svg",
  33807. extra: 1327/1216,
  33808. bottom: 96/1423
  33809. }
  33810. },
  33811. back: {
  33812. height: math.unit(3 + 10/12, "feet"),
  33813. weight: math.unit(90, "lb"),
  33814. name: "Back",
  33815. image: {
  33816. source: "./media/characters/taivas-ensim/back.svg",
  33817. extra: 1355/1247,
  33818. bottom: 11/1366
  33819. }
  33820. },
  33821. frontNsfw: {
  33822. height: math.unit(3 + 10/12, "feet"),
  33823. weight: math.unit(90, "lb"),
  33824. name: "Front (NSFW)",
  33825. image: {
  33826. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33827. extra: 1327/1216,
  33828. bottom: 96/1423
  33829. }
  33830. },
  33831. backNsfw: {
  33832. height: math.unit(3 + 10/12, "feet"),
  33833. weight: math.unit(90, "lb"),
  33834. name: "Back (NSFW)",
  33835. image: {
  33836. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33837. extra: 1355/1247,
  33838. bottom: 11/1366
  33839. }
  33840. },
  33841. },
  33842. [
  33843. {
  33844. name: "Normal",
  33845. height: math.unit(3 + 10/12, "feet"),
  33846. default: true
  33847. },
  33848. ]
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33852. {
  33853. front: {
  33854. height: math.unit(9 + 6/12, "feet"),
  33855. weight: math.unit(940, "lb"),
  33856. name: "Front",
  33857. image: {
  33858. source: "./media/characters/byliss/front.svg",
  33859. extra: 1327/1290,
  33860. bottom: 82/1409
  33861. }
  33862. },
  33863. back: {
  33864. height: math.unit(9 + 6/12, "feet"),
  33865. weight: math.unit(940, "lb"),
  33866. name: "Back",
  33867. image: {
  33868. source: "./media/characters/byliss/back.svg",
  33869. extra: 1376/1349,
  33870. bottom: 9/1385
  33871. }
  33872. },
  33873. frontNsfw: {
  33874. height: math.unit(9 + 6/12, "feet"),
  33875. weight: math.unit(940, "lb"),
  33876. name: "Front (NSFW)",
  33877. image: {
  33878. source: "./media/characters/byliss/front-nsfw.svg",
  33879. extra: 1327/1290,
  33880. bottom: 82/1409
  33881. }
  33882. },
  33883. backNsfw: {
  33884. height: math.unit(9 + 6/12, "feet"),
  33885. weight: math.unit(940, "lb"),
  33886. name: "Back (NSFW)",
  33887. image: {
  33888. source: "./media/characters/byliss/back-nsfw.svg",
  33889. extra: 1376/1349,
  33890. bottom: 9/1385
  33891. }
  33892. },
  33893. },
  33894. [
  33895. {
  33896. name: "Normal",
  33897. height: math.unit(9 + 6/12, "feet"),
  33898. default: true
  33899. },
  33900. ]
  33901. ))
  33902. characterMakers.push(() => makeCharacter(
  33903. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33904. {
  33905. front: {
  33906. height: math.unit(5 + 2/12, "feet"),
  33907. weight: math.unit(200, "lb"),
  33908. name: "Front",
  33909. image: {
  33910. source: "./media/characters/noraly/front.svg",
  33911. extra: 4985/4773,
  33912. bottom: 150/5135
  33913. }
  33914. },
  33915. full: {
  33916. height: math.unit(5 + 2/12, "feet"),
  33917. weight: math.unit(164, "lb"),
  33918. name: "Full",
  33919. image: {
  33920. source: "./media/characters/noraly/full.svg",
  33921. extra: 1114/1059,
  33922. bottom: 35/1149
  33923. }
  33924. },
  33925. fuller: {
  33926. height: math.unit(5 + 2/12, "feet"),
  33927. weight: math.unit(230, "lb"),
  33928. name: "Fuller",
  33929. image: {
  33930. source: "./media/characters/noraly/fuller.svg",
  33931. extra: 1114/1059,
  33932. bottom: 35/1149
  33933. }
  33934. },
  33935. fullest: {
  33936. height: math.unit(5 + 2/12, "feet"),
  33937. weight: math.unit(300, "lb"),
  33938. name: "Fullest",
  33939. image: {
  33940. source: "./media/characters/noraly/fullest.svg",
  33941. extra: 1114/1059,
  33942. bottom: 35/1149
  33943. }
  33944. },
  33945. },
  33946. [
  33947. {
  33948. name: "Normal",
  33949. height: math.unit(5 + 2/12, "feet"),
  33950. default: true
  33951. },
  33952. ]
  33953. ))
  33954. characterMakers.push(() => makeCharacter(
  33955. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33956. {
  33957. front: {
  33958. height: math.unit(5 + 2/12, "feet"),
  33959. weight: math.unit(210, "lb"),
  33960. name: "Front",
  33961. image: {
  33962. source: "./media/characters/pera/front.svg",
  33963. extra: 1560/1531,
  33964. bottom: 165/1725
  33965. }
  33966. },
  33967. back: {
  33968. height: math.unit(5 + 2/12, "feet"),
  33969. weight: math.unit(210, "lb"),
  33970. name: "Back",
  33971. image: {
  33972. source: "./media/characters/pera/back.svg",
  33973. extra: 1523/1493,
  33974. bottom: 152/1675
  33975. }
  33976. },
  33977. dick: {
  33978. height: math.unit(2.4, "feet"),
  33979. name: "Dick",
  33980. image: {
  33981. source: "./media/characters/pera/dick.svg"
  33982. }
  33983. },
  33984. },
  33985. [
  33986. {
  33987. name: "Normal",
  33988. height: math.unit(5 + 2/12, "feet"),
  33989. default: true
  33990. },
  33991. ]
  33992. ))
  33993. characterMakers.push(() => makeCharacter(
  33994. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33995. {
  33996. front: {
  33997. height: math.unit(12, "feet"),
  33998. weight: math.unit(3200, "lb"),
  33999. name: "Front",
  34000. image: {
  34001. source: "./media/characters/julian/front.svg",
  34002. extra: 2962/2701,
  34003. bottom: 184/3146
  34004. }
  34005. },
  34006. maw: {
  34007. height: math.unit(5.35, "feet"),
  34008. name: "Maw",
  34009. image: {
  34010. source: "./media/characters/julian/maw.svg"
  34011. }
  34012. },
  34013. paw: {
  34014. height: math.unit(3.07, "feet"),
  34015. name: "Paw",
  34016. image: {
  34017. source: "./media/characters/julian/paw.svg"
  34018. }
  34019. },
  34020. },
  34021. [
  34022. {
  34023. name: "Default",
  34024. height: math.unit(12, "feet"),
  34025. default: true
  34026. },
  34027. {
  34028. name: "Big",
  34029. height: math.unit(50, "feet")
  34030. },
  34031. {
  34032. name: "Really Big",
  34033. height: math.unit(1, "mile")
  34034. },
  34035. {
  34036. name: "Extremely Big",
  34037. height: math.unit(100, "miles")
  34038. },
  34039. {
  34040. name: "Planet Hugger",
  34041. height: math.unit(200, "megameters")
  34042. },
  34043. {
  34044. name: "Unreasonably Big",
  34045. height: math.unit(1e300, "meters")
  34046. },
  34047. ]
  34048. ))
  34049. characterMakers.push(() => makeCharacter(
  34050. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34051. {
  34052. solgooleo: {
  34053. height: math.unit(4, "meters"),
  34054. weight: math.unit(6000*1.5, "kg"),
  34055. volume: math.unit(6000, "liters"),
  34056. name: "Solgooleo",
  34057. image: {
  34058. source: "./media/characters/pi/solgooleo.svg",
  34059. extra: 388/331,
  34060. bottom: 29/417
  34061. }
  34062. },
  34063. },
  34064. [
  34065. {
  34066. name: "Normal",
  34067. height: math.unit(4, "meters"),
  34068. default: true
  34069. },
  34070. ]
  34071. ))
  34072. characterMakers.push(() => makeCharacter(
  34073. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34074. {
  34075. front: {
  34076. height: math.unit(8, "feet"),
  34077. weight: math.unit(4, "tons"),
  34078. name: "Front",
  34079. image: {
  34080. source: "./media/characters/shaun/front.svg",
  34081. extra: 503/495,
  34082. bottom: 20/523
  34083. }
  34084. },
  34085. back: {
  34086. height: math.unit(8, "feet"),
  34087. weight: math.unit(4, "tons"),
  34088. name: "Back",
  34089. image: {
  34090. source: "./media/characters/shaun/back.svg",
  34091. extra: 487/480,
  34092. bottom: 20/507
  34093. }
  34094. },
  34095. },
  34096. [
  34097. {
  34098. name: "Lorg",
  34099. height: math.unit(8, "feet"),
  34100. default: true
  34101. },
  34102. ]
  34103. ))
  34104. characterMakers.push(() => makeCharacter(
  34105. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34106. {
  34107. frontAnthro: {
  34108. height: math.unit(7, "feet"),
  34109. name: "Front",
  34110. image: {
  34111. source: "./media/characters/sini/front-anthro.svg",
  34112. extra: 726/678,
  34113. bottom: 35/761
  34114. },
  34115. form: "anthro",
  34116. default: true
  34117. },
  34118. backAnthro: {
  34119. height: math.unit(7, "feet"),
  34120. name: "Back",
  34121. image: {
  34122. source: "./media/characters/sini/back-anthro.svg",
  34123. extra: 743/701,
  34124. bottom: 12/755
  34125. },
  34126. form: "anthro",
  34127. },
  34128. frontAnthroNsfw: {
  34129. height: math.unit(7, "feet"),
  34130. name: "Front (NSFW)",
  34131. image: {
  34132. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34133. extra: 726/678,
  34134. bottom: 35/761
  34135. },
  34136. form: "anthro"
  34137. },
  34138. backAnthroNsfw: {
  34139. height: math.unit(7, "feet"),
  34140. name: "Back (NSFW)",
  34141. image: {
  34142. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34143. extra: 743/701,
  34144. bottom: 12/755
  34145. },
  34146. form: "anthro",
  34147. },
  34148. mawAnthro: {
  34149. height: math.unit(2.14, "feet"),
  34150. name: "Maw",
  34151. image: {
  34152. source: "./media/characters/sini/maw-anthro.svg"
  34153. },
  34154. form: "anthro"
  34155. },
  34156. dick: {
  34157. height: math.unit(1.45, "feet"),
  34158. name: "Dick",
  34159. image: {
  34160. source: "./media/characters/sini/dick-anthro.svg"
  34161. },
  34162. form: "anthro"
  34163. },
  34164. feral: {
  34165. height: math.unit(16, "feet"),
  34166. name: "Feral",
  34167. image: {
  34168. source: "./media/characters/sini/feral.svg",
  34169. extra: 814/605,
  34170. bottom: 11/825
  34171. },
  34172. form: "feral",
  34173. default: true
  34174. },
  34175. feralNsfw: {
  34176. height: math.unit(16, "feet"),
  34177. name: "Feral (NSFW)",
  34178. image: {
  34179. source: "./media/characters/sini/feral-nsfw.svg",
  34180. extra: 814/605,
  34181. bottom: 11/825
  34182. },
  34183. form: "feral"
  34184. },
  34185. mawFeral: {
  34186. height: math.unit(5.66, "feet"),
  34187. name: "Maw",
  34188. image: {
  34189. source: "./media/characters/sini/maw-feral.svg"
  34190. },
  34191. form: "feral",
  34192. },
  34193. pawFeral: {
  34194. height: math.unit(5.17, "feet"),
  34195. name: "Paw",
  34196. image: {
  34197. source: "./media/characters/sini/paw-feral.svg"
  34198. },
  34199. form: "feral",
  34200. },
  34201. rumpFeral: {
  34202. height: math.unit(13.11, "feet"),
  34203. name: "Rump",
  34204. image: {
  34205. source: "./media/characters/sini/rump-feral.svg"
  34206. },
  34207. form: "feral",
  34208. },
  34209. dickFeral: {
  34210. height: math.unit(1, "feet"),
  34211. name: "Dick",
  34212. image: {
  34213. source: "./media/characters/sini/dick-feral.svg"
  34214. },
  34215. form: "feral",
  34216. },
  34217. eyeFeral: {
  34218. height: math.unit(1.23, "feet"),
  34219. name: "Eye",
  34220. image: {
  34221. source: "./media/characters/sini/eye-feral.svg"
  34222. },
  34223. form: "feral",
  34224. },
  34225. },
  34226. [
  34227. {
  34228. name: "Normal",
  34229. height: math.unit(7, "feet"),
  34230. default: true,
  34231. form: "anthro"
  34232. },
  34233. {
  34234. name: "Normal",
  34235. height: math.unit(16, "feet"),
  34236. default: true,
  34237. form: "feral"
  34238. },
  34239. ],
  34240. {
  34241. "anthro": {
  34242. name: "Anthro",
  34243. default: true
  34244. },
  34245. "feral": {
  34246. name: "Feral",
  34247. }
  34248. }
  34249. ))
  34250. characterMakers.push(() => makeCharacter(
  34251. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34252. {
  34253. side: {
  34254. height: math.unit(47.2, "meters"),
  34255. weight: math.unit(10000, "tons"),
  34256. name: "Side",
  34257. image: {
  34258. source: "./media/characters/raylldo/side.svg",
  34259. extra: 2363/642,
  34260. bottom: 221/2584
  34261. }
  34262. },
  34263. top: {
  34264. height: math.unit(240, "meters"),
  34265. weight: math.unit(10000, "tons"),
  34266. name: "Top",
  34267. image: {
  34268. source: "./media/characters/raylldo/top.svg"
  34269. }
  34270. },
  34271. bottom: {
  34272. height: math.unit(240, "meters"),
  34273. weight: math.unit(10000, "tons"),
  34274. name: "Bottom",
  34275. image: {
  34276. source: "./media/characters/raylldo/bottom.svg"
  34277. }
  34278. },
  34279. head: {
  34280. height: math.unit(38.6, "meters"),
  34281. name: "Head",
  34282. image: {
  34283. source: "./media/characters/raylldo/head.svg",
  34284. extra: 1335/1112,
  34285. bottom: 0/1335
  34286. }
  34287. },
  34288. maw: {
  34289. height: math.unit(16.37, "meters"),
  34290. name: "Maw",
  34291. image: {
  34292. source: "./media/characters/raylldo/maw.svg",
  34293. extra: 883/660,
  34294. bottom: 0/883
  34295. },
  34296. extraAttributes: {
  34297. preyCapacity: {
  34298. name: "Capacity",
  34299. power: 3,
  34300. type: "volume",
  34301. base: math.unit(1000, "people")
  34302. },
  34303. tongueSize: {
  34304. name: "Tongue Size",
  34305. power: 2,
  34306. type: "area",
  34307. base: math.unit(21, "m^2")
  34308. }
  34309. }
  34310. },
  34311. forepaw: {
  34312. height: math.unit(18, "meters"),
  34313. name: "Forepaw",
  34314. image: {
  34315. source: "./media/characters/raylldo/forepaw.svg"
  34316. }
  34317. },
  34318. hindpaw: {
  34319. height: math.unit(23, "meters"),
  34320. name: "Hindpaw",
  34321. image: {
  34322. source: "./media/characters/raylldo/hindpaw.svg"
  34323. }
  34324. },
  34325. genitals: {
  34326. height: math.unit(42, "meters"),
  34327. name: "Genitals",
  34328. image: {
  34329. source: "./media/characters/raylldo/genitals.svg"
  34330. }
  34331. },
  34332. },
  34333. [
  34334. {
  34335. name: "Normal",
  34336. height: math.unit(47.2, "meters"),
  34337. default: true
  34338. },
  34339. ]
  34340. ))
  34341. characterMakers.push(() => makeCharacter(
  34342. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34343. {
  34344. anthroFront: {
  34345. height: math.unit(9, "feet"),
  34346. weight: math.unit(600, "lb"),
  34347. name: "Anthro (Front)",
  34348. image: {
  34349. source: "./media/characters/glint/anthro-front.svg",
  34350. extra: 1097/1018,
  34351. bottom: 28/1125
  34352. }
  34353. },
  34354. anthroBack: {
  34355. height: math.unit(9, "feet"),
  34356. weight: math.unit(600, "lb"),
  34357. name: "Anthro (Back)",
  34358. image: {
  34359. source: "./media/characters/glint/anthro-back.svg",
  34360. extra: 1154/997,
  34361. bottom: 36/1190
  34362. }
  34363. },
  34364. feral: {
  34365. height: math.unit(11, "feet"),
  34366. weight: math.unit(50000, "lb"),
  34367. name: "Feral",
  34368. image: {
  34369. source: "./media/characters/glint/feral.svg",
  34370. extra: 3035/1585,
  34371. bottom: 1169/4204
  34372. }
  34373. },
  34374. dickAnthro: {
  34375. height: math.unit(0.7, "meters"),
  34376. name: "Dick (Anthro)",
  34377. image: {
  34378. source: "./media/characters/glint/dick-anthro.svg"
  34379. }
  34380. },
  34381. dickFeral: {
  34382. height: math.unit(2.65, "meters"),
  34383. name: "Dick (Feral)",
  34384. image: {
  34385. source: "./media/characters/glint/dick-feral.svg"
  34386. }
  34387. },
  34388. slitHidden: {
  34389. height: math.unit(5.85, "meters"),
  34390. name: "Slit (Hidden)",
  34391. image: {
  34392. source: "./media/characters/glint/slit-hidden.svg"
  34393. }
  34394. },
  34395. slitErect: {
  34396. height: math.unit(5.85, "meters"),
  34397. name: "Slit (Erect)",
  34398. image: {
  34399. source: "./media/characters/glint/slit-erect.svg"
  34400. }
  34401. },
  34402. mawAnthro: {
  34403. height: math.unit(0.63, "meters"),
  34404. name: "Maw (Anthro)",
  34405. image: {
  34406. source: "./media/characters/glint/maw.svg"
  34407. }
  34408. },
  34409. mawFeral: {
  34410. height: math.unit(2.89, "meters"),
  34411. name: "Maw (Feral)",
  34412. image: {
  34413. source: "./media/characters/glint/maw.svg"
  34414. }
  34415. },
  34416. },
  34417. [
  34418. {
  34419. name: "Normal",
  34420. height: math.unit(9, "feet"),
  34421. default: true
  34422. },
  34423. ]
  34424. ))
  34425. characterMakers.push(() => makeCharacter(
  34426. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34427. {
  34428. side: {
  34429. height: math.unit(15, "feet"),
  34430. weight: math.unit(5000, "kg"),
  34431. name: "Side",
  34432. image: {
  34433. source: "./media/characters/kairne/side.svg",
  34434. extra: 979/811,
  34435. bottom: 13/992
  34436. }
  34437. },
  34438. front: {
  34439. height: math.unit(15, "feet"),
  34440. weight: math.unit(5000, "kg"),
  34441. name: "Front",
  34442. image: {
  34443. source: "./media/characters/kairne/front.svg",
  34444. extra: 908/814,
  34445. bottom: 26/934
  34446. }
  34447. },
  34448. sideNsfw: {
  34449. height: math.unit(15, "feet"),
  34450. weight: math.unit(5000, "kg"),
  34451. name: "Side (NSFW)",
  34452. image: {
  34453. source: "./media/characters/kairne/side-nsfw.svg",
  34454. extra: 979/811,
  34455. bottom: 13/992
  34456. }
  34457. },
  34458. frontNsfw: {
  34459. height: math.unit(15, "feet"),
  34460. weight: math.unit(5000, "kg"),
  34461. name: "Front (NSFW)",
  34462. image: {
  34463. source: "./media/characters/kairne/front-nsfw.svg",
  34464. extra: 908/814,
  34465. bottom: 26/934
  34466. }
  34467. },
  34468. dickCaged: {
  34469. height: math.unit(0.65, "meters"),
  34470. name: "Dick-caged",
  34471. image: {
  34472. source: "./media/characters/kairne/dick-caged.svg"
  34473. }
  34474. },
  34475. dick: {
  34476. height: math.unit(0.79, "meters"),
  34477. name: "Dick",
  34478. image: {
  34479. source: "./media/characters/kairne/dick.svg"
  34480. }
  34481. },
  34482. genitals: {
  34483. height: math.unit(1.29, "meters"),
  34484. name: "Genitals",
  34485. image: {
  34486. source: "./media/characters/kairne/genitals.svg"
  34487. }
  34488. },
  34489. maw: {
  34490. height: math.unit(1.73, "meters"),
  34491. name: "Maw",
  34492. image: {
  34493. source: "./media/characters/kairne/maw.svg"
  34494. }
  34495. },
  34496. },
  34497. [
  34498. {
  34499. name: "Normal",
  34500. height: math.unit(15, "feet"),
  34501. default: true
  34502. },
  34503. ]
  34504. ))
  34505. characterMakers.push(() => makeCharacter(
  34506. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34507. {
  34508. front: {
  34509. height: math.unit(5 + 8/12, "feet"),
  34510. weight: math.unit(139, "lb"),
  34511. name: "Front",
  34512. image: {
  34513. source: "./media/characters/biscuit-jackal/front.svg",
  34514. extra: 2106/1961,
  34515. bottom: 58/2164
  34516. }
  34517. },
  34518. back: {
  34519. height: math.unit(5 + 8/12, "feet"),
  34520. weight: math.unit(139, "lb"),
  34521. name: "Back",
  34522. image: {
  34523. source: "./media/characters/biscuit-jackal/back.svg",
  34524. extra: 2132/1976,
  34525. bottom: 57/2189
  34526. }
  34527. },
  34528. werejackal: {
  34529. height: math.unit(6 + 3/12, "feet"),
  34530. weight: math.unit(188, "lb"),
  34531. name: "Werejackal",
  34532. image: {
  34533. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34534. extra: 2373/2178,
  34535. bottom: 53/2426
  34536. }
  34537. },
  34538. },
  34539. [
  34540. {
  34541. name: "Normal",
  34542. height: math.unit(5 + 8/12, "feet"),
  34543. default: true
  34544. },
  34545. ]
  34546. ))
  34547. characterMakers.push(() => makeCharacter(
  34548. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34549. {
  34550. front: {
  34551. height: math.unit(140, "cm"),
  34552. weight: math.unit(45, "kg"),
  34553. name: "Front",
  34554. image: {
  34555. source: "./media/characters/tayra-white/front.svg",
  34556. extra: 2229/2192,
  34557. bottom: 75/2304
  34558. }
  34559. },
  34560. },
  34561. [
  34562. {
  34563. name: "Normal",
  34564. height: math.unit(140, "cm"),
  34565. default: true
  34566. },
  34567. ]
  34568. ))
  34569. characterMakers.push(() => makeCharacter(
  34570. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34571. {
  34572. front: {
  34573. height: math.unit(4 + 5/12, "feet"),
  34574. name: "Front",
  34575. image: {
  34576. source: "./media/characters/scoop/front.svg",
  34577. extra: 1257/1136,
  34578. bottom: 69/1326
  34579. }
  34580. },
  34581. back: {
  34582. height: math.unit(4 + 5/12, "feet"),
  34583. name: "Back",
  34584. image: {
  34585. source: "./media/characters/scoop/back.svg",
  34586. extra: 1321/1152,
  34587. bottom: 32/1353
  34588. }
  34589. },
  34590. maw: {
  34591. height: math.unit(0.68, "feet"),
  34592. name: "Maw",
  34593. image: {
  34594. source: "./media/characters/scoop/maw.svg"
  34595. }
  34596. },
  34597. },
  34598. [
  34599. {
  34600. name: "Really Small",
  34601. height: math.unit(1, "mm")
  34602. },
  34603. {
  34604. name: "Micro",
  34605. height: math.unit(1, "inch")
  34606. },
  34607. {
  34608. name: "Normal",
  34609. height: math.unit(4 + 5/12, "feet"),
  34610. default: true
  34611. },
  34612. {
  34613. name: "Macro",
  34614. height: math.unit(200, "feet")
  34615. },
  34616. {
  34617. name: "Megamacro",
  34618. height: math.unit(3240, "feet")
  34619. },
  34620. {
  34621. name: "Teramacro",
  34622. height: math.unit(2500, "miles")
  34623. },
  34624. ]
  34625. ))
  34626. characterMakers.push(() => makeCharacter(
  34627. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34628. {
  34629. front: {
  34630. height: math.unit(15 + 7/12, "feet"),
  34631. weight: math.unit(1150, "tons"),
  34632. name: "Front",
  34633. image: {
  34634. source: "./media/characters/saphinara/front.svg",
  34635. extra: 1837/1643,
  34636. bottom: 84/1921
  34637. },
  34638. form: "normal",
  34639. default: true
  34640. },
  34641. side: {
  34642. height: math.unit(15 + 7/12, "feet"),
  34643. weight: math.unit(1150, "tons"),
  34644. name: "Side",
  34645. image: {
  34646. source: "./media/characters/saphinara/side.svg",
  34647. extra: 605/547,
  34648. bottom: 6/611
  34649. },
  34650. form: "normal"
  34651. },
  34652. back: {
  34653. height: math.unit(15 + 7/12, "feet"),
  34654. weight: math.unit(1150, "tons"),
  34655. name: "Back",
  34656. image: {
  34657. source: "./media/characters/saphinara/back.svg",
  34658. extra: 591/531,
  34659. bottom: 13/604
  34660. },
  34661. form: "normal"
  34662. },
  34663. frontTail: {
  34664. height: math.unit(15 + 7/12, "feet"),
  34665. weight: math.unit(1150, "tons"),
  34666. name: "Front (Full Tail)",
  34667. image: {
  34668. source: "./media/characters/saphinara/front-tail.svg",
  34669. extra: 2256/1630,
  34670. bottom: 261/2517
  34671. },
  34672. form: "normal"
  34673. },
  34674. insides: {
  34675. height: math.unit(11.92, "feet"),
  34676. name: "Insides",
  34677. image: {
  34678. source: "./media/characters/saphinara/insides.svg"
  34679. },
  34680. form: "normal"
  34681. },
  34682. head: {
  34683. height: math.unit(4.17, "feet"),
  34684. name: "Head",
  34685. image: {
  34686. source: "./media/characters/saphinara/head.svg"
  34687. },
  34688. form: "normal"
  34689. },
  34690. tongue: {
  34691. height: math.unit(4.60, "feet"),
  34692. name: "Tongue",
  34693. image: {
  34694. source: "./media/characters/saphinara/tongue.svg"
  34695. },
  34696. form: "normal"
  34697. },
  34698. headEnraged: {
  34699. height: math.unit(5.55, "feet"),
  34700. name: "Head (Enraged)",
  34701. image: {
  34702. source: "./media/characters/saphinara/head-enraged.svg"
  34703. },
  34704. form: "normal"
  34705. },
  34706. wings: {
  34707. height: math.unit(11.95, "feet"),
  34708. name: "Wings",
  34709. image: {
  34710. source: "./media/characters/saphinara/wings.svg"
  34711. },
  34712. form: "normal"
  34713. },
  34714. feathers: {
  34715. height: math.unit(8.92, "feet"),
  34716. name: "Feathers",
  34717. image: {
  34718. source: "./media/characters/saphinara/feathers.svg"
  34719. },
  34720. form: "normal"
  34721. },
  34722. shackles: {
  34723. height: math.unit(2, "feet"),
  34724. name: "Shackles",
  34725. image: {
  34726. source: "./media/characters/saphinara/shackles.svg"
  34727. },
  34728. form: "normal"
  34729. },
  34730. eyes: {
  34731. height: math.unit(1.331, "feet"),
  34732. name: "Eyes",
  34733. image: {
  34734. source: "./media/characters/saphinara/eyes.svg"
  34735. },
  34736. form: "normal"
  34737. },
  34738. eyesEnraged: {
  34739. height: math.unit(1.331, "feet"),
  34740. name: "Eyes (Enraged)",
  34741. image: {
  34742. source: "./media/characters/saphinara/eyes-enraged.svg"
  34743. },
  34744. form: "normal"
  34745. },
  34746. trueFormSide: {
  34747. height: math.unit(200, "feet"),
  34748. weight: math.unit(1e7, "tons"),
  34749. name: "Side",
  34750. image: {
  34751. source: "./media/characters/saphinara/true-form-side.svg",
  34752. extra: 1399/770,
  34753. bottom: 97/1496
  34754. },
  34755. form: "true-form",
  34756. default: true
  34757. },
  34758. trueFormMaw: {
  34759. height: math.unit(71.5, "feet"),
  34760. name: "Maw",
  34761. image: {
  34762. source: "./media/characters/saphinara/true-form-maw.svg",
  34763. extra: 2302/1453,
  34764. bottom: 0/2302
  34765. },
  34766. form: "true-form"
  34767. },
  34768. meowberusSide: {
  34769. height: math.unit(75, "feet"),
  34770. weight: math.unit(180000, "kg"),
  34771. preyCapacity: math.unit(50000, "people"),
  34772. name: "Side",
  34773. image: {
  34774. source: "./media/characters/saphinara/meowberus-side.svg",
  34775. extra: 1400/711,
  34776. bottom: 126/1526
  34777. },
  34778. form: "meowberus",
  34779. extraAttributes: {
  34780. "pawArea": {
  34781. name: "Paw Size",
  34782. power: 2,
  34783. type: "area",
  34784. base: math.unit(35, "m^2")
  34785. }
  34786. }
  34787. },
  34788. },
  34789. [
  34790. {
  34791. name: "Normal",
  34792. height: math.unit(15 + 7/12, "feet"),
  34793. default: true,
  34794. form: "normal"
  34795. },
  34796. {
  34797. name: "Angry",
  34798. height: math.unit(30 + 6/12, "feet"),
  34799. form: "normal"
  34800. },
  34801. {
  34802. name: "Enraged",
  34803. height: math.unit(102 + 1/12, "feet"),
  34804. form: "normal"
  34805. },
  34806. {
  34807. name: "True",
  34808. height: math.unit(200, "feet"),
  34809. default: true,
  34810. form: "true-form"
  34811. },
  34812. {
  34813. name: "Normal",
  34814. height: math.unit(75, "feet"),
  34815. default: true,
  34816. form: "meowberus"
  34817. },
  34818. ],
  34819. {
  34820. "normal": {
  34821. name: "Normal",
  34822. default: true
  34823. },
  34824. "true-form": {
  34825. name: "True Form"
  34826. },
  34827. "meowberus": {
  34828. name: "Meowberus",
  34829. },
  34830. }
  34831. ))
  34832. characterMakers.push(() => makeCharacter(
  34833. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34834. {
  34835. front: {
  34836. height: math.unit(6 + 8/12, "feet"),
  34837. weight: math.unit(300, "lb"),
  34838. name: "Front",
  34839. image: {
  34840. source: "./media/characters/jrain/front.svg",
  34841. extra: 3039/2865,
  34842. bottom: 399/3438
  34843. }
  34844. },
  34845. back: {
  34846. height: math.unit(6 + 8/12, "feet"),
  34847. weight: math.unit(300, "lb"),
  34848. name: "Back",
  34849. image: {
  34850. source: "./media/characters/jrain/back.svg",
  34851. extra: 3089/2938,
  34852. bottom: 172/3261
  34853. }
  34854. },
  34855. head: {
  34856. height: math.unit(2.14, "feet"),
  34857. name: "Head",
  34858. image: {
  34859. source: "./media/characters/jrain/head.svg"
  34860. }
  34861. },
  34862. maw: {
  34863. height: math.unit(1.77, "feet"),
  34864. name: "Maw",
  34865. image: {
  34866. source: "./media/characters/jrain/maw.svg"
  34867. }
  34868. },
  34869. leftHand: {
  34870. height: math.unit(1.1, "feet"),
  34871. name: "Left Hand",
  34872. image: {
  34873. source: "./media/characters/jrain/left-hand.svg"
  34874. }
  34875. },
  34876. rightHand: {
  34877. height: math.unit(1.1, "feet"),
  34878. name: "Right Hand",
  34879. image: {
  34880. source: "./media/characters/jrain/right-hand.svg"
  34881. }
  34882. },
  34883. eye: {
  34884. height: math.unit(0.35, "feet"),
  34885. name: "Eye",
  34886. image: {
  34887. source: "./media/characters/jrain/eye.svg"
  34888. }
  34889. },
  34890. },
  34891. [
  34892. {
  34893. name: "Normal",
  34894. height: math.unit(6 + 8/12, "feet"),
  34895. default: true
  34896. },
  34897. {
  34898. name: "Casually Large",
  34899. height: math.unit(25, "feet")
  34900. },
  34901. {
  34902. name: "Giant",
  34903. height: math.unit(100, "feet")
  34904. },
  34905. {
  34906. name: "Kaiju",
  34907. height: math.unit(300, "feet")
  34908. },
  34909. ]
  34910. ))
  34911. characterMakers.push(() => makeCharacter(
  34912. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34913. {
  34914. dragon: {
  34915. height: math.unit(5, "meters"),
  34916. name: "Dragon",
  34917. image: {
  34918. source: "./media/characters/sabrina/dragon.svg",
  34919. extra: 3670 / 2365,
  34920. bottom: 333 / 4003
  34921. }
  34922. },
  34923. gryphon: {
  34924. height: math.unit(3, "meters"),
  34925. name: "Gryphon",
  34926. image: {
  34927. source: "./media/characters/sabrina/gryphon.svg",
  34928. extra: 1576 / 945,
  34929. bottom: 71 / 1647
  34930. }
  34931. },
  34932. snake: {
  34933. height: math.unit(12, "meters"),
  34934. name: "Snake",
  34935. image: {
  34936. source: "./media/characters/sabrina/snake.svg",
  34937. extra: 1758 / 1320,
  34938. bottom: 186 / 1944
  34939. }
  34940. },
  34941. collar: {
  34942. height: math.unit(1.86, "meters"),
  34943. name: "Collar",
  34944. image: {
  34945. source: "./media/characters/sabrina/collar.svg"
  34946. }
  34947. },
  34948. eye: {
  34949. height: math.unit(0.53, "meters"),
  34950. name: "Eye",
  34951. image: {
  34952. source: "./media/characters/sabrina/eye.svg"
  34953. }
  34954. },
  34955. foot: {
  34956. height: math.unit(1.86, "meters"),
  34957. name: "Foot",
  34958. image: {
  34959. source: "./media/characters/sabrina/foot.svg"
  34960. }
  34961. },
  34962. hand: {
  34963. height: math.unit(1.32, "meters"),
  34964. name: "Hand",
  34965. image: {
  34966. source: "./media/characters/sabrina/hand.svg"
  34967. }
  34968. },
  34969. head: {
  34970. height: math.unit(2.44, "meters"),
  34971. name: "Head",
  34972. image: {
  34973. source: "./media/characters/sabrina/head.svg"
  34974. }
  34975. },
  34976. headAngry: {
  34977. height: math.unit(2.44, "meters"),
  34978. name: "Head (Angry))",
  34979. image: {
  34980. source: "./media/characters/sabrina/head-angry.svg"
  34981. }
  34982. },
  34983. maw: {
  34984. height: math.unit(1.65, "meters"),
  34985. name: "Maw",
  34986. image: {
  34987. source: "./media/characters/sabrina/maw.svg"
  34988. }
  34989. },
  34990. spikes: {
  34991. height: math.unit(1.69, "meters"),
  34992. name: "Spikes",
  34993. image: {
  34994. source: "./media/characters/sabrina/spikes.svg"
  34995. }
  34996. },
  34997. stomach: {
  34998. height: math.unit(1.15, "meters"),
  34999. name: "Stomach",
  35000. image: {
  35001. source: "./media/characters/sabrina/stomach.svg"
  35002. }
  35003. },
  35004. tongue: {
  35005. height: math.unit(1.27, "meters"),
  35006. name: "Tongue",
  35007. image: {
  35008. source: "./media/characters/sabrina/tongue.svg"
  35009. }
  35010. },
  35011. wingDorsal: {
  35012. height: math.unit(4.85, "meters"),
  35013. name: "Wing (Dorsal)",
  35014. image: {
  35015. source: "./media/characters/sabrina/wing-dorsal.svg"
  35016. }
  35017. },
  35018. wingVentral: {
  35019. height: math.unit(4.85, "meters"),
  35020. name: "Wing (Ventral)",
  35021. image: {
  35022. source: "./media/characters/sabrina/wing-ventral.svg"
  35023. }
  35024. },
  35025. },
  35026. [
  35027. {
  35028. name: "Normal",
  35029. height: math.unit(5, "meters"),
  35030. default: true
  35031. },
  35032. ]
  35033. ))
  35034. characterMakers.push(() => makeCharacter(
  35035. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35036. {
  35037. frontMaid: {
  35038. height: math.unit(5 + 5/12, "feet"),
  35039. weight: math.unit(130, "lb"),
  35040. name: "Front (Maid)",
  35041. image: {
  35042. source: "./media/characters/midnight-tales/front-maid.svg",
  35043. extra: 489/454,
  35044. bottom: 61/550
  35045. }
  35046. },
  35047. frontFormal: {
  35048. height: math.unit(5 + 5/12, "feet"),
  35049. weight: math.unit(130, "lb"),
  35050. name: "Front (Formal)",
  35051. image: {
  35052. source: "./media/characters/midnight-tales/front-formal.svg",
  35053. extra: 489/454,
  35054. bottom: 61/550
  35055. }
  35056. },
  35057. back: {
  35058. height: math.unit(5 + 5/12, "feet"),
  35059. weight: math.unit(130, "lb"),
  35060. name: "Back",
  35061. image: {
  35062. source: "./media/characters/midnight-tales/back.svg",
  35063. extra: 498/456,
  35064. bottom: 33/531
  35065. }
  35066. },
  35067. frontBeast: {
  35068. height: math.unit(40, "feet"),
  35069. weight: math.unit(64000, "lb"),
  35070. name: "Front (Beast)",
  35071. image: {
  35072. source: "./media/characters/midnight-tales/front-beast.svg",
  35073. extra: 927/860,
  35074. bottom: 53/980
  35075. }
  35076. },
  35077. backBeast: {
  35078. height: math.unit(40, "feet"),
  35079. weight: math.unit(64000, "lb"),
  35080. name: "Back (Beast)",
  35081. image: {
  35082. source: "./media/characters/midnight-tales/back-beast.svg",
  35083. extra: 929/855,
  35084. bottom: 16/945
  35085. }
  35086. },
  35087. footBeast: {
  35088. height: math.unit(6.7, "feet"),
  35089. name: "Foot (Beast)",
  35090. image: {
  35091. source: "./media/characters/midnight-tales/foot-beast.svg"
  35092. }
  35093. },
  35094. headBeast: {
  35095. height: math.unit(8, "feet"),
  35096. name: "Head (Beast)",
  35097. image: {
  35098. source: "./media/characters/midnight-tales/head-beast.svg"
  35099. }
  35100. },
  35101. },
  35102. [
  35103. {
  35104. name: "Normal",
  35105. height: math.unit(5 + 5 / 12, "feet"),
  35106. default: true
  35107. },
  35108. {
  35109. name: "Macro",
  35110. height: math.unit(25, "feet")
  35111. },
  35112. ]
  35113. ))
  35114. characterMakers.push(() => makeCharacter(
  35115. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35116. {
  35117. front: {
  35118. height: math.unit(5 + 10/12, "feet"),
  35119. name: "Front",
  35120. image: {
  35121. source: "./media/characters/argon/front.svg",
  35122. extra: 2009/1935,
  35123. bottom: 118/2127
  35124. }
  35125. },
  35126. back: {
  35127. height: math.unit(5 + 10/12, "feet"),
  35128. name: "Back",
  35129. image: {
  35130. source: "./media/characters/argon/back.svg",
  35131. extra: 2047/1992,
  35132. bottom: 20/2067
  35133. }
  35134. },
  35135. frontDressed: {
  35136. height: math.unit(5 + 10/12, "feet"),
  35137. name: "Front (Dressed)",
  35138. image: {
  35139. source: "./media/characters/argon/front-dressed.svg",
  35140. extra: 2009/1935,
  35141. bottom: 118/2127
  35142. }
  35143. },
  35144. },
  35145. [
  35146. {
  35147. name: "Normal",
  35148. height: math.unit(5 + 10/12, "feet"),
  35149. default: true
  35150. },
  35151. ]
  35152. ))
  35153. characterMakers.push(() => makeCharacter(
  35154. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35155. {
  35156. front: {
  35157. height: math.unit(8 + 6/12, "feet"),
  35158. weight: math.unit(1150, "lb"),
  35159. name: "Front",
  35160. image: {
  35161. source: "./media/characters/kichi/front.svg",
  35162. extra: 1267/1164,
  35163. bottom: 61/1328
  35164. }
  35165. },
  35166. back: {
  35167. height: math.unit(8 + 6/12, "feet"),
  35168. weight: math.unit(1150, "lb"),
  35169. name: "Back",
  35170. image: {
  35171. source: "./media/characters/kichi/back.svg",
  35172. extra: 1273/1166,
  35173. bottom: 33/1306
  35174. }
  35175. },
  35176. },
  35177. [
  35178. {
  35179. name: "Normal",
  35180. height: math.unit(8 + 6/12, "feet"),
  35181. default: true
  35182. },
  35183. ]
  35184. ))
  35185. characterMakers.push(() => makeCharacter(
  35186. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35187. {
  35188. front: {
  35189. height: math.unit(6, "feet"),
  35190. weight: math.unit(210, "lb"),
  35191. name: "Front",
  35192. image: {
  35193. source: "./media/characters/manetel-greyscale/front.svg",
  35194. extra: 350/312,
  35195. bottom: 8/358
  35196. }
  35197. },
  35198. },
  35199. [
  35200. {
  35201. name: "Micro",
  35202. height: math.unit(2, "inches")
  35203. },
  35204. {
  35205. name: "Normal",
  35206. height: math.unit(6, "feet"),
  35207. default: true
  35208. },
  35209. {
  35210. name: "Minimacro",
  35211. height: math.unit(17, "feet")
  35212. },
  35213. {
  35214. name: "Macro",
  35215. height: math.unit(117, "feet")
  35216. },
  35217. ]
  35218. ))
  35219. characterMakers.push(() => makeCharacter(
  35220. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35221. {
  35222. side: {
  35223. height: math.unit(5 + 1/12, "feet"),
  35224. weight: math.unit(418, "lb"),
  35225. name: "Side",
  35226. image: {
  35227. source: "./media/characters/softpurr/side.svg",
  35228. extra: 1993/1945,
  35229. bottom: 134/2127
  35230. }
  35231. },
  35232. front: {
  35233. height: math.unit(5 + 1/12, "feet"),
  35234. weight: math.unit(418, "lb"),
  35235. name: "Front",
  35236. image: {
  35237. source: "./media/characters/softpurr/front.svg",
  35238. extra: 1950/1856,
  35239. bottom: 174/2124
  35240. }
  35241. },
  35242. paw: {
  35243. height: math.unit(1, "feet"),
  35244. name: "Paw",
  35245. image: {
  35246. source: "./media/characters/softpurr/paw.svg"
  35247. }
  35248. },
  35249. },
  35250. [
  35251. {
  35252. name: "Normal",
  35253. height: math.unit(5 + 1/12, "feet"),
  35254. default: true
  35255. },
  35256. ]
  35257. ))
  35258. characterMakers.push(() => makeCharacter(
  35259. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35260. {
  35261. front: {
  35262. height: math.unit(260, "meters"),
  35263. name: "Front",
  35264. image: {
  35265. source: "./media/characters/anahita/front.svg",
  35266. extra: 665/635,
  35267. bottom: 89/754
  35268. }
  35269. },
  35270. },
  35271. [
  35272. {
  35273. name: "Macro",
  35274. height: math.unit(260, "meters"),
  35275. default: true
  35276. },
  35277. ]
  35278. ))
  35279. characterMakers.push(() => makeCharacter(
  35280. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35281. {
  35282. front: {
  35283. height: math.unit(4 + 10/12, "feet"),
  35284. weight: math.unit(160, "lb"),
  35285. name: "Front",
  35286. image: {
  35287. source: "./media/characters/chip-mouse/front.svg",
  35288. extra: 3528/3408,
  35289. bottom: 0/3528
  35290. }
  35291. },
  35292. frontNsfw: {
  35293. height: math.unit(4 + 10/12, "feet"),
  35294. weight: math.unit(160, "lb"),
  35295. name: "Front (NSFW)",
  35296. image: {
  35297. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35298. extra: 3528/3408,
  35299. bottom: 0/3528
  35300. }
  35301. },
  35302. },
  35303. [
  35304. {
  35305. name: "Normal",
  35306. height: math.unit(4 + 10/12, "feet"),
  35307. default: true
  35308. },
  35309. ]
  35310. ))
  35311. characterMakers.push(() => makeCharacter(
  35312. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35313. {
  35314. side: {
  35315. height: math.unit(10, "feet"),
  35316. weight: math.unit(14000, "lb"),
  35317. name: "Side",
  35318. image: {
  35319. source: "./media/characters/kremm/side.svg",
  35320. extra: 1390/1053,
  35321. bottom: 90/1480
  35322. }
  35323. },
  35324. gut: {
  35325. height: math.unit(5.8, "feet"),
  35326. name: "Gut",
  35327. image: {
  35328. source: "./media/characters/kremm/gut.svg"
  35329. }
  35330. },
  35331. ass: {
  35332. height: math.unit(6.1, "feet"),
  35333. name: "Ass",
  35334. image: {
  35335. source: "./media/characters/kremm/ass.svg"
  35336. }
  35337. },
  35338. jaws: {
  35339. height: math.unit(2.2, "feet"),
  35340. name: "Jaws",
  35341. image: {
  35342. source: "./media/characters/kremm/jaws.svg"
  35343. }
  35344. },
  35345. dick: {
  35346. height: math.unit(4.26, "feet"),
  35347. name: "Dick",
  35348. image: {
  35349. source: "./media/characters/kremm/dick.svg"
  35350. }
  35351. },
  35352. },
  35353. [
  35354. {
  35355. name: "Normal",
  35356. height: math.unit(10, "feet"),
  35357. default: true
  35358. },
  35359. ]
  35360. ))
  35361. characterMakers.push(() => makeCharacter(
  35362. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35363. {
  35364. front: {
  35365. height: math.unit(30, "stories"),
  35366. name: "Front",
  35367. image: {
  35368. source: "./media/characters/kai/front.svg",
  35369. extra: 1892/1718,
  35370. bottom: 162/2054
  35371. }
  35372. },
  35373. },
  35374. [
  35375. {
  35376. name: "Macro",
  35377. height: math.unit(30, "stories"),
  35378. default: true
  35379. },
  35380. ]
  35381. ))
  35382. characterMakers.push(() => makeCharacter(
  35383. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35384. {
  35385. front: {
  35386. height: math.unit(6 + 4/12, "feet"),
  35387. weight: math.unit(145, "lb"),
  35388. name: "Front",
  35389. image: {
  35390. source: "./media/characters/sykes/front.svg",
  35391. extra: 1321 / 1187,
  35392. bottom: 66 / 1387
  35393. }
  35394. },
  35395. back: {
  35396. height: math.unit(6 + 4/12, "feet"),
  35397. weight: math.unit(145, "lb"),
  35398. name: "Back",
  35399. image: {
  35400. source: "./media/characters/sykes/back.svg",
  35401. extra: 1326/1181,
  35402. bottom: 31/1357
  35403. }
  35404. },
  35405. traditionalOutfit: {
  35406. height: math.unit(6 + 4/12, "feet"),
  35407. weight: math.unit(145, "lb"),
  35408. name: "Traditional Outfit",
  35409. image: {
  35410. source: "./media/characters/sykes/traditional-outfit.svg",
  35411. extra: 1321 / 1187,
  35412. bottom: 66 / 1387
  35413. }
  35414. },
  35415. adventureOutfit: {
  35416. height: math.unit(6 + 4/12, "feet"),
  35417. weight: math.unit(145, "lb"),
  35418. name: "Adventure Outfit",
  35419. image: {
  35420. source: "./media/characters/sykes/adventure-outfit.svg",
  35421. extra: 1321 / 1187,
  35422. bottom: 66 / 1387
  35423. }
  35424. },
  35425. handLeft: {
  35426. height: math.unit(0.9, "feet"),
  35427. name: "Hand (Left)",
  35428. image: {
  35429. source: "./media/characters/sykes/hand-left.svg"
  35430. }
  35431. },
  35432. handRight: {
  35433. height: math.unit(0.839, "feet"),
  35434. name: "Hand (Right)",
  35435. image: {
  35436. source: "./media/characters/sykes/hand-right.svg"
  35437. }
  35438. },
  35439. leftFoot: {
  35440. height: math.unit(1.2, "feet"),
  35441. name: "Foot (Left)",
  35442. image: {
  35443. source: "./media/characters/sykes/foot-left.svg"
  35444. }
  35445. },
  35446. rightFoot: {
  35447. height: math.unit(1.2, "feet"),
  35448. name: "Foot (Right)",
  35449. image: {
  35450. source: "./media/characters/sykes/foot-right.svg"
  35451. }
  35452. },
  35453. maw: {
  35454. height: math.unit(1.93, "feet"),
  35455. name: "Maw",
  35456. image: {
  35457. source: "./media/characters/sykes/maw.svg"
  35458. }
  35459. },
  35460. teeth: {
  35461. height: math.unit(0.51, "feet"),
  35462. name: "Teeth",
  35463. image: {
  35464. source: "./media/characters/sykes/teeth.svg"
  35465. }
  35466. },
  35467. tongue: {
  35468. height: math.unit(2.13, "feet"),
  35469. name: "Tongue",
  35470. image: {
  35471. source: "./media/characters/sykes/tongue.svg"
  35472. }
  35473. },
  35474. uvula: {
  35475. height: math.unit(0.16, "feet"),
  35476. name: "Uvula",
  35477. image: {
  35478. source: "./media/characters/sykes/uvula.svg"
  35479. }
  35480. },
  35481. collar: {
  35482. height: math.unit(0.287, "feet"),
  35483. name: "Collar",
  35484. image: {
  35485. source: "./media/characters/sykes/collar.svg"
  35486. }
  35487. },
  35488. tail: {
  35489. height: math.unit(3.8, "feet"),
  35490. name: "Tail",
  35491. image: {
  35492. source: "./media/characters/sykes/tail.svg"
  35493. }
  35494. },
  35495. },
  35496. [
  35497. {
  35498. name: "Shrunken",
  35499. height: math.unit(5, "inches")
  35500. },
  35501. {
  35502. name: "Normal",
  35503. height: math.unit(6 + 4 / 12, "feet"),
  35504. default: true
  35505. },
  35506. {
  35507. name: "Big",
  35508. height: math.unit(15, "feet")
  35509. },
  35510. ]
  35511. ))
  35512. characterMakers.push(() => makeCharacter(
  35513. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35514. {
  35515. front: {
  35516. height: math.unit(5 + 8/12, "feet"),
  35517. weight: math.unit(190, "lb"),
  35518. name: "Front",
  35519. image: {
  35520. source: "./media/characters/oven-otter/front.svg",
  35521. extra: 1809/1740,
  35522. bottom: 181/1990
  35523. }
  35524. },
  35525. back: {
  35526. height: math.unit(5 + 8/12, "feet"),
  35527. weight: math.unit(190, "lb"),
  35528. name: "Back",
  35529. image: {
  35530. source: "./media/characters/oven-otter/back.svg",
  35531. extra: 1709/1635,
  35532. bottom: 118/1827
  35533. }
  35534. },
  35535. hand: {
  35536. height: math.unit(1.07, "feet"),
  35537. name: "Hand",
  35538. image: {
  35539. source: "./media/characters/oven-otter/hand.svg"
  35540. }
  35541. },
  35542. beans: {
  35543. height: math.unit(1.74, "feet"),
  35544. name: "Beans",
  35545. image: {
  35546. source: "./media/characters/oven-otter/beans.svg"
  35547. }
  35548. },
  35549. },
  35550. [
  35551. {
  35552. name: "Micro",
  35553. height: math.unit(0.5, "inches")
  35554. },
  35555. {
  35556. name: "Normal",
  35557. height: math.unit(5 + 8/12, "feet"),
  35558. default: true
  35559. },
  35560. {
  35561. name: "Macro",
  35562. height: math.unit(250, "feet")
  35563. },
  35564. {
  35565. name: "Really High",
  35566. height: math.unit(420, "feet")
  35567. },
  35568. ]
  35569. ))
  35570. characterMakers.push(() => makeCharacter(
  35571. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35572. {
  35573. front: {
  35574. height: math.unit(5, "meters"),
  35575. weight: math.unit(292000000000000, "kg"),
  35576. name: "Front",
  35577. image: {
  35578. source: "./media/characters/devourer/front.svg",
  35579. extra: 1800/1733,
  35580. bottom: 211/2011
  35581. }
  35582. },
  35583. maw: {
  35584. height: math.unit(1.1, "meter"),
  35585. name: "Maw",
  35586. image: {
  35587. source: "./media/characters/devourer/maw.svg"
  35588. }
  35589. },
  35590. },
  35591. [
  35592. {
  35593. name: "Small",
  35594. height: math.unit(3, "meters")
  35595. },
  35596. {
  35597. name: "Large",
  35598. height: math.unit(5, "meters"),
  35599. default: true
  35600. },
  35601. ]
  35602. ))
  35603. characterMakers.push(() => makeCharacter(
  35604. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35605. {
  35606. front: {
  35607. height: math.unit(6, "feet"),
  35608. weight: math.unit(400, "lb"),
  35609. name: "Front",
  35610. image: {
  35611. source: "./media/characters/ellarby/front.svg",
  35612. extra: 1909/1763,
  35613. bottom: 80/1989
  35614. }
  35615. },
  35616. back: {
  35617. height: math.unit(6, "feet"),
  35618. weight: math.unit(400, "lb"),
  35619. name: "Back",
  35620. image: {
  35621. source: "./media/characters/ellarby/back.svg",
  35622. extra: 1914/1784,
  35623. bottom: 172/2086
  35624. }
  35625. },
  35626. },
  35627. [
  35628. {
  35629. name: "Mischief",
  35630. height: math.unit(18, "inches")
  35631. },
  35632. {
  35633. name: "Trouble",
  35634. height: math.unit(12, "feet")
  35635. },
  35636. {
  35637. name: "Havoc",
  35638. height: math.unit(200, "feet"),
  35639. default: true
  35640. },
  35641. {
  35642. name: "Pandemonium",
  35643. height: math.unit(1, "mile")
  35644. },
  35645. {
  35646. name: "Catastrophe",
  35647. height: math.unit(100, "miles")
  35648. },
  35649. ]
  35650. ))
  35651. characterMakers.push(() => makeCharacter(
  35652. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35653. {
  35654. front: {
  35655. height: math.unit(4.7, "meters"),
  35656. weight: math.unit(6500, "kg"),
  35657. name: "Front",
  35658. image: {
  35659. source: "./media/characters/vex/front.svg",
  35660. extra: 1288/1140,
  35661. bottom: 100/1388
  35662. }
  35663. },
  35664. },
  35665. [
  35666. {
  35667. name: "Normal",
  35668. height: math.unit(4.7, "meters"),
  35669. default: true
  35670. },
  35671. ]
  35672. ))
  35673. characterMakers.push(() => makeCharacter(
  35674. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35675. {
  35676. normal: {
  35677. height: math.unit(6, "feet"),
  35678. weight: math.unit(350, "lb"),
  35679. name: "Normal",
  35680. image: {
  35681. source: "./media/characters/teshy/normal.svg",
  35682. extra: 1795/1735,
  35683. bottom: 16/1811
  35684. }
  35685. },
  35686. monsterFront: {
  35687. height: math.unit(12, "feet"),
  35688. weight: math.unit(4700, "lb"),
  35689. name: "Monster (Front)",
  35690. image: {
  35691. source: "./media/characters/teshy/monster-front.svg",
  35692. extra: 2042/2034,
  35693. bottom: 128/2170
  35694. }
  35695. },
  35696. monsterSide: {
  35697. height: math.unit(12, "feet"),
  35698. weight: math.unit(4700, "lb"),
  35699. name: "Monster (Side)",
  35700. image: {
  35701. source: "./media/characters/teshy/monster-side.svg",
  35702. extra: 2067/2056,
  35703. bottom: 70/2137
  35704. }
  35705. },
  35706. monsterBack: {
  35707. height: math.unit(12, "feet"),
  35708. weight: math.unit(4700, "lb"),
  35709. name: "Monster (Back)",
  35710. image: {
  35711. source: "./media/characters/teshy/monster-back.svg",
  35712. extra: 1921/1914,
  35713. bottom: 171/2092
  35714. }
  35715. },
  35716. },
  35717. [
  35718. {
  35719. name: "Normal",
  35720. height: math.unit(6, "feet"),
  35721. default: true
  35722. },
  35723. ]
  35724. ))
  35725. characterMakers.push(() => makeCharacter(
  35726. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35727. {
  35728. front: {
  35729. height: math.unit(6, "feet"),
  35730. name: "Front",
  35731. image: {
  35732. source: "./media/characters/ramey/front.svg",
  35733. extra: 790/787,
  35734. bottom: 27/817
  35735. }
  35736. },
  35737. },
  35738. [
  35739. {
  35740. name: "Normal",
  35741. height: math.unit(6, "feet"),
  35742. default: true
  35743. },
  35744. ]
  35745. ))
  35746. characterMakers.push(() => makeCharacter(
  35747. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35748. {
  35749. front: {
  35750. height: math.unit(5 + 5/12, "feet"),
  35751. weight: math.unit(120, "lb"),
  35752. name: "Front",
  35753. image: {
  35754. source: "./media/characters/phirae/front.svg",
  35755. extra: 2491/2436,
  35756. bottom: 38/2529
  35757. }
  35758. },
  35759. },
  35760. [
  35761. {
  35762. name: "Normal",
  35763. height: math.unit(5 + 5/12, "feet"),
  35764. default: true
  35765. },
  35766. ]
  35767. ))
  35768. characterMakers.push(() => makeCharacter(
  35769. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35770. {
  35771. front: {
  35772. height: math.unit(5 + 3/12, "feet"),
  35773. name: "Front",
  35774. image: {
  35775. source: "./media/characters/stagglas/front.svg",
  35776. extra: 962/882,
  35777. bottom: 53/1015
  35778. }
  35779. },
  35780. feral: {
  35781. height: math.unit(335, "cm"),
  35782. name: "Feral",
  35783. image: {
  35784. source: "./media/characters/stagglas/feral.svg",
  35785. extra: 1732/1090,
  35786. bottom: 48/1780
  35787. }
  35788. },
  35789. },
  35790. [
  35791. {
  35792. name: "Normal",
  35793. height: math.unit(5 + 3/12, "feet"),
  35794. default: true
  35795. },
  35796. ]
  35797. ))
  35798. characterMakers.push(() => makeCharacter(
  35799. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35800. {
  35801. front: {
  35802. height: math.unit(5 + 4/12, "feet"),
  35803. weight: math.unit(145, "lb"),
  35804. name: "Front",
  35805. image: {
  35806. source: "./media/characters/starra/front.svg",
  35807. extra: 1790/1691,
  35808. bottom: 91/1881
  35809. }
  35810. },
  35811. },
  35812. [
  35813. {
  35814. name: "Normal",
  35815. height: math.unit(5 + 4/12, "feet"),
  35816. default: true
  35817. },
  35818. ]
  35819. ))
  35820. characterMakers.push(() => makeCharacter(
  35821. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35822. {
  35823. front: {
  35824. height: math.unit(2.2, "meters"),
  35825. name: "Front",
  35826. image: {
  35827. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35828. extra: 1194/1005,
  35829. bottom: 25/1219
  35830. }
  35831. },
  35832. },
  35833. [
  35834. {
  35835. name: "Normal",
  35836. height: math.unit(2.2, "meters"),
  35837. default: true
  35838. },
  35839. ]
  35840. ))
  35841. characterMakers.push(() => makeCharacter(
  35842. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35843. {
  35844. side: {
  35845. height: math.unit(8 + 2/12, "feet"),
  35846. weight: math.unit(1240, "lb"),
  35847. name: "Side",
  35848. image: {
  35849. source: "./media/characters/mika-valentine/side.svg",
  35850. extra: 2670/2501,
  35851. bottom: 250/2920
  35852. }
  35853. },
  35854. },
  35855. [
  35856. {
  35857. name: "Normal",
  35858. height: math.unit(8 + 2/12, "feet"),
  35859. default: true
  35860. },
  35861. ]
  35862. ))
  35863. characterMakers.push(() => makeCharacter(
  35864. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35865. {
  35866. front: {
  35867. height: math.unit(7 + 2/12, "feet"),
  35868. name: "Front",
  35869. image: {
  35870. source: "./media/characters/xoltol/front.svg",
  35871. extra: 2212/2124,
  35872. bottom: 84/2296
  35873. }
  35874. },
  35875. side: {
  35876. height: math.unit(7 + 2/12, "feet"),
  35877. name: "Side",
  35878. image: {
  35879. source: "./media/characters/xoltol/side.svg",
  35880. extra: 2273/2197,
  35881. bottom: 26/2299
  35882. }
  35883. },
  35884. hand: {
  35885. height: math.unit(2.5, "feet"),
  35886. name: "Hand",
  35887. image: {
  35888. source: "./media/characters/xoltol/hand.svg"
  35889. }
  35890. },
  35891. },
  35892. [
  35893. {
  35894. name: "Small-ish",
  35895. height: math.unit(5 + 11/12, "feet")
  35896. },
  35897. {
  35898. name: "Normal",
  35899. height: math.unit(7 + 2/12, "feet")
  35900. },
  35901. {
  35902. name: "\"Macro\"",
  35903. height: math.unit(14 + 9/12, "feet"),
  35904. default: true
  35905. },
  35906. {
  35907. name: "Alternate Height",
  35908. height: math.unit(20, "feet")
  35909. },
  35910. {
  35911. name: "Actually Macro",
  35912. height: math.unit(100, "feet")
  35913. },
  35914. ]
  35915. ))
  35916. characterMakers.push(() => makeCharacter(
  35917. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35918. {
  35919. front: {
  35920. height: math.unit(5 + 2/12, "feet"),
  35921. name: "Front",
  35922. image: {
  35923. source: "./media/characters/kotetsu-redwood/front.svg",
  35924. extra: 1053/942,
  35925. bottom: 60/1113
  35926. }
  35927. },
  35928. },
  35929. [
  35930. {
  35931. name: "Normal",
  35932. height: math.unit(5 + 2/12, "feet"),
  35933. default: true
  35934. },
  35935. ]
  35936. ))
  35937. characterMakers.push(() => makeCharacter(
  35938. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35939. {
  35940. front: {
  35941. height: math.unit(2.4, "meters"),
  35942. weight: math.unit(125, "kg"),
  35943. name: "Front",
  35944. image: {
  35945. source: "./media/characters/lilith/front.svg",
  35946. extra: 1590/1513,
  35947. bottom: 203/1793
  35948. }
  35949. },
  35950. },
  35951. [
  35952. {
  35953. name: "Humanoid",
  35954. height: math.unit(2.4, "meters")
  35955. },
  35956. {
  35957. name: "Normal",
  35958. height: math.unit(6, "meters"),
  35959. default: true
  35960. },
  35961. {
  35962. name: "Largest",
  35963. height: math.unit(55, "meters")
  35964. },
  35965. ]
  35966. ))
  35967. characterMakers.push(() => makeCharacter(
  35968. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35969. {
  35970. front: {
  35971. height: math.unit(8 + 4/12, "feet"),
  35972. weight: math.unit(535, "lb"),
  35973. name: "Front",
  35974. image: {
  35975. source: "./media/characters/beh'kah-bolger/front.svg",
  35976. extra: 1660/1603,
  35977. bottom: 37/1697
  35978. }
  35979. },
  35980. },
  35981. [
  35982. {
  35983. name: "Normal",
  35984. height: math.unit(8 + 4/12, "feet"),
  35985. default: true
  35986. },
  35987. {
  35988. name: "Kaiju",
  35989. height: math.unit(250, "feet")
  35990. },
  35991. {
  35992. name: "Still Growing",
  35993. height: math.unit(10, "miles")
  35994. },
  35995. {
  35996. name: "Continental",
  35997. height: math.unit(5000, "miles")
  35998. },
  35999. {
  36000. name: "Final Form",
  36001. height: math.unit(2500000, "miles")
  36002. },
  36003. ]
  36004. ))
  36005. characterMakers.push(() => makeCharacter(
  36006. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36007. {
  36008. front: {
  36009. height: math.unit(7 + 2/12, "feet"),
  36010. weight: math.unit(230, "kg"),
  36011. name: "Front",
  36012. image: {
  36013. source: "./media/characters/tatyana-milewska/front.svg",
  36014. extra: 1199/1150,
  36015. bottom: 86/1285
  36016. }
  36017. },
  36018. },
  36019. [
  36020. {
  36021. name: "Normal",
  36022. height: math.unit(7 + 2/12, "feet"),
  36023. default: true
  36024. },
  36025. {
  36026. name: "Big",
  36027. height: math.unit(12, "feet")
  36028. },
  36029. {
  36030. name: "Minimacro",
  36031. height: math.unit(20, "feet")
  36032. },
  36033. {
  36034. name: "Macro",
  36035. height: math.unit(120, "feet")
  36036. },
  36037. ]
  36038. ))
  36039. characterMakers.push(() => makeCharacter(
  36040. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36041. {
  36042. front: {
  36043. height: math.unit(7 + 8/12, "feet"),
  36044. weight: math.unit(152, "kg"),
  36045. name: "Front",
  36046. image: {
  36047. source: "./media/characters/helen-arri/front.svg",
  36048. extra: 440/423,
  36049. bottom: 14/454
  36050. }
  36051. },
  36052. back: {
  36053. height: math.unit(7 + 8/12, "feet"),
  36054. weight: math.unit(152, "kg"),
  36055. name: "Back",
  36056. image: {
  36057. source: "./media/characters/helen-arri/back.svg",
  36058. extra: 443/426,
  36059. bottom: 8/451
  36060. }
  36061. },
  36062. },
  36063. [
  36064. {
  36065. name: "Normal",
  36066. height: math.unit(7 + 8/12, "feet"),
  36067. default: true
  36068. },
  36069. {
  36070. name: "Big",
  36071. height: math.unit(14, "feet")
  36072. },
  36073. {
  36074. name: "Minimacro",
  36075. height: math.unit(24, "feet")
  36076. },
  36077. {
  36078. name: "Macro",
  36079. height: math.unit(140, "feet")
  36080. },
  36081. ]
  36082. ))
  36083. characterMakers.push(() => makeCharacter(
  36084. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36085. {
  36086. front: {
  36087. height: math.unit(6, "meters"),
  36088. name: "Front",
  36089. image: {
  36090. source: "./media/characters/ehanu-rehu/front.svg",
  36091. extra: 1800/1800,
  36092. bottom: 59/1859
  36093. }
  36094. },
  36095. },
  36096. [
  36097. {
  36098. name: "Normal",
  36099. height: math.unit(6, "meters"),
  36100. default: true
  36101. },
  36102. ]
  36103. ))
  36104. characterMakers.push(() => makeCharacter(
  36105. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36106. {
  36107. front: {
  36108. height: math.unit(7 + 3/12, "feet"),
  36109. name: "Front",
  36110. image: {
  36111. source: "./media/characters/renholder/front.svg",
  36112. extra: 3096/2960,
  36113. bottom: 250/3346
  36114. }
  36115. },
  36116. },
  36117. [
  36118. {
  36119. name: "Normal Bat",
  36120. height: math.unit(7 + 3/12, "feet"),
  36121. default: true
  36122. },
  36123. {
  36124. name: "Slightly Tall Bat",
  36125. height: math.unit(100, "feet")
  36126. },
  36127. {
  36128. name: "Big Bat",
  36129. height: math.unit(1000, "feet")
  36130. },
  36131. {
  36132. name: "City-Sized Bat",
  36133. height: math.unit(200000, "feet")
  36134. },
  36135. {
  36136. name: "Bigger Bat",
  36137. height: math.unit(10000, "miles")
  36138. },
  36139. {
  36140. name: "Solar Sized Bat",
  36141. height: math.unit(100, "AU")
  36142. },
  36143. {
  36144. name: "Galactic Bat",
  36145. height: math.unit(200000, "lightyears")
  36146. },
  36147. {
  36148. name: "Universally Known Bat",
  36149. height: math.unit(1, "universe")
  36150. },
  36151. ]
  36152. ))
  36153. characterMakers.push(() => makeCharacter(
  36154. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36155. {
  36156. front: {
  36157. height: math.unit(6 + 11/12, "feet"),
  36158. weight: math.unit(250, "lb"),
  36159. name: "Front",
  36160. image: {
  36161. source: "./media/characters/cookiecat/front.svg",
  36162. extra: 893/827,
  36163. bottom: 14/907
  36164. }
  36165. },
  36166. },
  36167. [
  36168. {
  36169. name: "Micro",
  36170. height: math.unit(3, "inches")
  36171. },
  36172. {
  36173. name: "Normal",
  36174. height: math.unit(6 + 11/12, "feet"),
  36175. default: true
  36176. },
  36177. {
  36178. name: "Macro",
  36179. height: math.unit(100, "feet")
  36180. },
  36181. {
  36182. name: "Macro+",
  36183. height: math.unit(404, "feet")
  36184. },
  36185. {
  36186. name: "Megamacro",
  36187. height: math.unit(165, "miles")
  36188. },
  36189. {
  36190. name: "Planetary",
  36191. height: math.unit(4600, "miles")
  36192. },
  36193. ]
  36194. ))
  36195. characterMakers.push(() => makeCharacter(
  36196. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36197. {
  36198. front: {
  36199. height: math.unit(10 + 3/12, "feet"),
  36200. weight: math.unit(1500, "lb"),
  36201. name: "Front",
  36202. image: {
  36203. source: "./media/characters/tux-kusanagi/front.svg",
  36204. extra: 944/840,
  36205. bottom: 39/983
  36206. }
  36207. },
  36208. back: {
  36209. height: math.unit(10 + 3/12, "feet"),
  36210. weight: math.unit(1500, "lb"),
  36211. name: "Back",
  36212. image: {
  36213. source: "./media/characters/tux-kusanagi/back.svg",
  36214. extra: 941/842,
  36215. bottom: 28/969
  36216. }
  36217. },
  36218. rump: {
  36219. height: math.unit(5.25, "feet"),
  36220. name: "Rump",
  36221. image: {
  36222. source: "./media/characters/tux-kusanagi/rump.svg"
  36223. }
  36224. },
  36225. beak: {
  36226. height: math.unit(1.54, "feet"),
  36227. name: "Beak",
  36228. image: {
  36229. source: "./media/characters/tux-kusanagi/beak.svg"
  36230. }
  36231. },
  36232. },
  36233. [
  36234. {
  36235. name: "Normal",
  36236. height: math.unit(10 + 3/12, "feet"),
  36237. default: true
  36238. },
  36239. ]
  36240. ))
  36241. characterMakers.push(() => makeCharacter(
  36242. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36243. {
  36244. front: {
  36245. height: math.unit(58, "feet"),
  36246. weight: math.unit(200, "tons"),
  36247. name: "Front",
  36248. image: {
  36249. source: "./media/characters/uzarmazari/front.svg",
  36250. extra: 1575/1455,
  36251. bottom: 152/1727
  36252. }
  36253. },
  36254. back: {
  36255. height: math.unit(58, "feet"),
  36256. weight: math.unit(200, "tons"),
  36257. name: "Back",
  36258. image: {
  36259. source: "./media/characters/uzarmazari/back.svg",
  36260. extra: 1585/1510,
  36261. bottom: 157/1742
  36262. }
  36263. },
  36264. head: {
  36265. height: math.unit(26, "feet"),
  36266. name: "Head",
  36267. image: {
  36268. source: "./media/characters/uzarmazari/head.svg"
  36269. }
  36270. },
  36271. },
  36272. [
  36273. {
  36274. name: "Normal",
  36275. height: math.unit(58, "feet"),
  36276. default: true
  36277. },
  36278. ]
  36279. ))
  36280. characterMakers.push(() => makeCharacter(
  36281. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36282. {
  36283. side: {
  36284. height: math.unit(15, "feet"),
  36285. name: "Side",
  36286. image: {
  36287. source: "./media/characters/akitu/side.svg",
  36288. extra: 1421/1321,
  36289. bottom: 157/1578
  36290. }
  36291. },
  36292. front: {
  36293. height: math.unit(15, "feet"),
  36294. name: "Front",
  36295. image: {
  36296. source: "./media/characters/akitu/front.svg",
  36297. extra: 1435/1326,
  36298. bottom: 232/1667
  36299. }
  36300. },
  36301. },
  36302. [
  36303. {
  36304. name: "Normal",
  36305. height: math.unit(15, "feet"),
  36306. default: true
  36307. },
  36308. ]
  36309. ))
  36310. characterMakers.push(() => makeCharacter(
  36311. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36312. {
  36313. front: {
  36314. height: math.unit(10 + 8/12, "feet"),
  36315. name: "Front",
  36316. image: {
  36317. source: "./media/characters/azalie-croixland/front.svg",
  36318. extra: 1972/1856,
  36319. bottom: 31/2003
  36320. }
  36321. },
  36322. },
  36323. [
  36324. {
  36325. name: "Original Height",
  36326. height: math.unit(5 + 4/12, "feet")
  36327. },
  36328. {
  36329. name: "Normal Height",
  36330. height: math.unit(10 + 8/12, "feet"),
  36331. default: true
  36332. },
  36333. ]
  36334. ))
  36335. characterMakers.push(() => makeCharacter(
  36336. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36337. {
  36338. side: {
  36339. height: math.unit(7 + 1/12, "feet"),
  36340. weight: math.unit(245, "lb"),
  36341. name: "Side",
  36342. image: {
  36343. source: "./media/characters/kavus-kazian/side.svg",
  36344. extra: 349/342,
  36345. bottom: 15/364
  36346. }
  36347. },
  36348. },
  36349. [
  36350. {
  36351. name: "Normal",
  36352. height: math.unit(7 + 1/12, "feet"),
  36353. default: true
  36354. },
  36355. ]
  36356. ))
  36357. characterMakers.push(() => makeCharacter(
  36358. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36359. {
  36360. normalFront: {
  36361. height: math.unit(5 + 11/12, "feet"),
  36362. name: "Front",
  36363. image: {
  36364. source: "./media/characters/moonlight-rose/normal-front.svg",
  36365. extra: 1980/1825,
  36366. bottom: 18/1998
  36367. },
  36368. form: "normal",
  36369. default: true
  36370. },
  36371. normalBack: {
  36372. height: math.unit(5 + 11/12, "feet"),
  36373. name: "Back",
  36374. image: {
  36375. source: "./media/characters/moonlight-rose/normal-back.svg",
  36376. extra: 2010/1839,
  36377. bottom: 10/2020
  36378. },
  36379. form: "normal"
  36380. },
  36381. demonFront: {
  36382. height: math.unit(1.5, "earths"),
  36383. name: "Front",
  36384. image: {
  36385. source: "./media/characters/moonlight-rose/demon.svg",
  36386. extra: 1400/1294,
  36387. bottom: 45/1445
  36388. },
  36389. form: "demon",
  36390. default: true
  36391. },
  36392. terraFront: {
  36393. height: math.unit(1.5, "earths"),
  36394. name: "Front",
  36395. image: {
  36396. source: "./media/characters/moonlight-rose/terra.svg"
  36397. },
  36398. form: "terra",
  36399. default: true
  36400. },
  36401. jupiterFront: {
  36402. height: math.unit(69911*2, "km"),
  36403. name: "Front",
  36404. image: {
  36405. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36406. extra: 1367/1286,
  36407. bottom: 55/1422
  36408. },
  36409. form: "jupiter",
  36410. default: true
  36411. },
  36412. neptuneFront: {
  36413. height: math.unit(24622*2, "feet"),
  36414. name: "Front",
  36415. image: {
  36416. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36417. extra: 1851/1712,
  36418. bottom: 0/1851
  36419. },
  36420. form: "neptune",
  36421. default: true
  36422. },
  36423. },
  36424. [
  36425. {
  36426. name: "\"Natural\" Height",
  36427. height: math.unit(5 + 11/12, "feet"),
  36428. form: "normal"
  36429. },
  36430. {
  36431. name: "Smallest comfortable size",
  36432. height: math.unit(40, "meters"),
  36433. form: "normal"
  36434. },
  36435. {
  36436. name: "Common size",
  36437. height: math.unit(50, "km"),
  36438. form: "normal",
  36439. default: true
  36440. },
  36441. {
  36442. name: "Normal",
  36443. height: math.unit(1.5, "earths"),
  36444. form: "demon",
  36445. default: true
  36446. },
  36447. {
  36448. name: "Universal",
  36449. height: math.unit(15, "universes"),
  36450. form: "demon"
  36451. },
  36452. {
  36453. name: "Earth",
  36454. height: math.unit(1.5, "earths"),
  36455. form: "terra",
  36456. default: true
  36457. },
  36458. {
  36459. name: "Super Earth",
  36460. height: math.unit(67.5, "earths"),
  36461. form: "terra"
  36462. },
  36463. {
  36464. name: "Doesn't fit in a solar system...",
  36465. height: math.unit(1, "galaxy"),
  36466. form: "terra"
  36467. },
  36468. {
  36469. name: "Saturn",
  36470. height: math.unit(58232*2, "km"),
  36471. form: "jupiter"
  36472. },
  36473. {
  36474. name: "Jupiter",
  36475. height: math.unit(69911*2, "km"),
  36476. form: "jupiter",
  36477. default: true
  36478. },
  36479. {
  36480. name: "HD 100546 b",
  36481. height: math.unit(482938, "km"),
  36482. form: "jupiter"
  36483. },
  36484. {
  36485. name: "Enceladus",
  36486. height: math.unit(513*2, "km"),
  36487. form: "neptune"
  36488. },
  36489. {
  36490. name: "Europe",
  36491. height: math.unit(1560*2, "km"),
  36492. form: "neptune"
  36493. },
  36494. {
  36495. name: "Neptune",
  36496. height: math.unit(24622*2, "km"),
  36497. form: "neptune",
  36498. default: true
  36499. },
  36500. {
  36501. name: "CoRoT-9b",
  36502. height: math.unit(75067*2, "km"),
  36503. form: "neptune"
  36504. },
  36505. ],
  36506. {
  36507. "normal": {
  36508. name: "Normal",
  36509. default: true
  36510. },
  36511. "demon": {
  36512. name: "Demon"
  36513. },
  36514. "terra": {
  36515. name: "Terra"
  36516. },
  36517. "jupiter": {
  36518. name: "Jupiter"
  36519. },
  36520. "neptune": {
  36521. name: "Neptune"
  36522. }
  36523. }
  36524. ))
  36525. characterMakers.push(() => makeCharacter(
  36526. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36527. {
  36528. front: {
  36529. height: math.unit(16, "feet"),
  36530. weight: math.unit(610, "kg"),
  36531. name: "Front",
  36532. image: {
  36533. source: "./media/characters/huckle/front.svg",
  36534. extra: 1731/1625,
  36535. bottom: 33/1764
  36536. }
  36537. },
  36538. back: {
  36539. height: math.unit(16, "feet"),
  36540. weight: math.unit(610, "kg"),
  36541. name: "Back",
  36542. image: {
  36543. source: "./media/characters/huckle/back.svg",
  36544. extra: 1738/1651,
  36545. bottom: 37/1775
  36546. }
  36547. },
  36548. laughing: {
  36549. height: math.unit(3.75, "feet"),
  36550. name: "Laughing",
  36551. image: {
  36552. source: "./media/characters/huckle/laughing.svg"
  36553. }
  36554. },
  36555. angry: {
  36556. height: math.unit(4.15, "feet"),
  36557. name: "Angry",
  36558. image: {
  36559. source: "./media/characters/huckle/angry.svg"
  36560. }
  36561. },
  36562. },
  36563. [
  36564. {
  36565. name: "Normal",
  36566. height: math.unit(16, "feet"),
  36567. default: true
  36568. },
  36569. {
  36570. name: "Mini Macro",
  36571. height: math.unit(463, "feet")
  36572. },
  36573. {
  36574. name: "Macro",
  36575. height: math.unit(1680, "meters")
  36576. },
  36577. {
  36578. name: "Mega Macro",
  36579. height: math.unit(175, "km")
  36580. },
  36581. {
  36582. name: "Terra Macro",
  36583. height: math.unit(32, "gigameters")
  36584. },
  36585. {
  36586. name: "Multiverse+",
  36587. height: math.unit(2.56e23, "yottameters")
  36588. },
  36589. ]
  36590. ))
  36591. characterMakers.push(() => makeCharacter(
  36592. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36593. {
  36594. front: {
  36595. height: math.unit(6 + 9/12, "feet"),
  36596. weight: math.unit(280, "lb"),
  36597. name: "Front",
  36598. image: {
  36599. source: "./media/characters/candy/front.svg",
  36600. extra: 234/217,
  36601. bottom: 11/245
  36602. }
  36603. },
  36604. },
  36605. [
  36606. {
  36607. name: "Really Small",
  36608. height: math.unit(0.1, "nm")
  36609. },
  36610. {
  36611. name: "Micro",
  36612. height: math.unit(2, "inches")
  36613. },
  36614. {
  36615. name: "Normal",
  36616. height: math.unit(6 + 9/12, "feet"),
  36617. default: true
  36618. },
  36619. {
  36620. name: "Small Macro",
  36621. height: math.unit(69, "feet")
  36622. },
  36623. {
  36624. name: "Macro",
  36625. height: math.unit(160, "feet")
  36626. },
  36627. {
  36628. name: "Megamacro",
  36629. height: math.unit(22000, "miles")
  36630. },
  36631. {
  36632. name: "Gigamacro",
  36633. height: math.unit(50000, "miles")
  36634. },
  36635. ]
  36636. ))
  36637. characterMakers.push(() => makeCharacter(
  36638. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36639. {
  36640. front: {
  36641. height: math.unit(4, "feet"),
  36642. weight: math.unit(90, "lb"),
  36643. name: "Front",
  36644. image: {
  36645. source: "./media/characters/joey-mcdonald/front.svg",
  36646. extra: 1059/852,
  36647. bottom: 33/1092
  36648. }
  36649. },
  36650. back: {
  36651. height: math.unit(4, "feet"),
  36652. weight: math.unit(90, "lb"),
  36653. name: "Back",
  36654. image: {
  36655. source: "./media/characters/joey-mcdonald/back.svg",
  36656. extra: 1077/879,
  36657. bottom: 5/1082
  36658. }
  36659. },
  36660. frontKobold: {
  36661. height: math.unit(4, "feet"),
  36662. weight: math.unit(100, "lb"),
  36663. name: "Front-kobold",
  36664. image: {
  36665. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36666. extra: 1480/1367,
  36667. bottom: 0/1480
  36668. }
  36669. },
  36670. backKobold: {
  36671. height: math.unit(4, "feet"),
  36672. weight: math.unit(100, "lb"),
  36673. name: "Back-kobold",
  36674. image: {
  36675. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36676. extra: 1449/1361,
  36677. bottom: 0/1449
  36678. }
  36679. },
  36680. },
  36681. [
  36682. {
  36683. name: "Normal",
  36684. height: math.unit(4, "feet"),
  36685. default: true
  36686. },
  36687. ]
  36688. ))
  36689. characterMakers.push(() => makeCharacter(
  36690. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36691. {
  36692. front: {
  36693. height: math.unit(12 + 6/12, "feet"),
  36694. name: "Front",
  36695. image: {
  36696. source: "./media/characters/kass-lockheed/front.svg",
  36697. extra: 354/343,
  36698. bottom: 9/363
  36699. }
  36700. },
  36701. back: {
  36702. height: math.unit(12 + 6/12, "feet"),
  36703. name: "Back",
  36704. image: {
  36705. source: "./media/characters/kass-lockheed/back.svg",
  36706. extra: 364/352,
  36707. bottom: 3/367
  36708. }
  36709. },
  36710. dick: {
  36711. height: math.unit(3.12, "feet"),
  36712. name: "Dick",
  36713. image: {
  36714. source: "./media/characters/kass-lockheed/dick.svg"
  36715. }
  36716. },
  36717. head: {
  36718. height: math.unit(2.6, "feet"),
  36719. name: "Head",
  36720. image: {
  36721. source: "./media/characters/kass-lockheed/head.svg"
  36722. }
  36723. },
  36724. bleh: {
  36725. height: math.unit(2.85, "feet"),
  36726. name: "Bleh",
  36727. image: {
  36728. source: "./media/characters/kass-lockheed/bleh.svg"
  36729. }
  36730. },
  36731. smug: {
  36732. height: math.unit(2.85, "feet"),
  36733. name: "Smug",
  36734. image: {
  36735. source: "./media/characters/kass-lockheed/smug.svg"
  36736. }
  36737. },
  36738. },
  36739. [
  36740. {
  36741. name: "Normal",
  36742. height: math.unit(12 + 6/12, "feet"),
  36743. default: true
  36744. },
  36745. ]
  36746. ))
  36747. characterMakers.push(() => makeCharacter(
  36748. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36749. {
  36750. front: {
  36751. height: math.unit(6 + 2/12, "feet"),
  36752. name: "Front",
  36753. image: {
  36754. source: "./media/characters/taylor/front.svg",
  36755. extra: 639/495,
  36756. bottom: 12/651
  36757. }
  36758. },
  36759. },
  36760. [
  36761. {
  36762. name: "Normal",
  36763. height: math.unit(6 + 2/12, "feet"),
  36764. default: true
  36765. },
  36766. {
  36767. name: "Big",
  36768. height: math.unit(15, "feet")
  36769. },
  36770. {
  36771. name: "Lorg",
  36772. height: math.unit(80, "feet")
  36773. },
  36774. {
  36775. name: "Too Lorg",
  36776. height: math.unit(120, "feet")
  36777. },
  36778. ]
  36779. ))
  36780. characterMakers.push(() => makeCharacter(
  36781. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36782. {
  36783. front: {
  36784. height: math.unit(15, "feet"),
  36785. name: "Front",
  36786. image: {
  36787. source: "./media/characters/kaizer/front.svg",
  36788. extra: 1612/1436,
  36789. bottom: 43/1655
  36790. }
  36791. },
  36792. },
  36793. [
  36794. {
  36795. name: "Normal",
  36796. height: math.unit(15, "feet"),
  36797. default: true
  36798. },
  36799. ]
  36800. ))
  36801. characterMakers.push(() => makeCharacter(
  36802. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36803. {
  36804. front: {
  36805. height: math.unit(2, "feet"),
  36806. weight: math.unit(30, "lb"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/sandy/front.svg",
  36810. extra: 1439/1307,
  36811. bottom: 194/1633
  36812. }
  36813. },
  36814. },
  36815. [
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(2, "feet"),
  36819. default: true
  36820. },
  36821. ]
  36822. ))
  36823. characterMakers.push(() => makeCharacter(
  36824. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36825. {
  36826. front: {
  36827. height: math.unit(3, "feet"),
  36828. name: "Front",
  36829. image: {
  36830. source: "./media/characters/mellvi/front.svg",
  36831. extra: 1831/1630,
  36832. bottom: 58/1889
  36833. }
  36834. },
  36835. },
  36836. [
  36837. {
  36838. name: "Normal",
  36839. height: math.unit(3, "feet"),
  36840. default: true
  36841. },
  36842. ]
  36843. ))
  36844. characterMakers.push(() => makeCharacter(
  36845. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36846. {
  36847. front: {
  36848. height: math.unit(5 + 11/12, "feet"),
  36849. weight: math.unit(200, "lb"),
  36850. name: "Front",
  36851. image: {
  36852. source: "./media/characters/shirou/front.svg",
  36853. extra: 2491/2383,
  36854. bottom: 189/2680
  36855. }
  36856. },
  36857. back: {
  36858. height: math.unit(5 + 11/12, "feet"),
  36859. weight: math.unit(200, "lb"),
  36860. name: "Back",
  36861. image: {
  36862. source: "./media/characters/shirou/back.svg",
  36863. extra: 2554/2450,
  36864. bottom: 76/2630
  36865. }
  36866. },
  36867. },
  36868. [
  36869. {
  36870. name: "Normal",
  36871. height: math.unit(5 + 11/12, "feet"),
  36872. default: true
  36873. },
  36874. ]
  36875. ))
  36876. characterMakers.push(() => makeCharacter(
  36877. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36878. {
  36879. front: {
  36880. height: math.unit(6 + 3/12, "feet"),
  36881. weight: math.unit(177, "lb"),
  36882. name: "Front",
  36883. image: {
  36884. source: "./media/characters/noryu/front.svg",
  36885. extra: 973/885,
  36886. bottom: 10/983
  36887. }
  36888. },
  36889. },
  36890. [
  36891. {
  36892. name: "Normal",
  36893. height: math.unit(6 + 3/12, "feet"),
  36894. default: true
  36895. },
  36896. ]
  36897. ))
  36898. characterMakers.push(() => makeCharacter(
  36899. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36900. {
  36901. front: {
  36902. height: math.unit(5 + 6/12, "feet"),
  36903. weight: math.unit(170, "lb"),
  36904. name: "Front",
  36905. image: {
  36906. source: "./media/characters/mevolas-rubenido/front.svg",
  36907. extra: 2109/1901,
  36908. bottom: 96/2205
  36909. }
  36910. },
  36911. },
  36912. [
  36913. {
  36914. name: "Normal",
  36915. height: math.unit(5 + 6/12, "feet"),
  36916. default: true
  36917. },
  36918. ]
  36919. ))
  36920. characterMakers.push(() => makeCharacter(
  36921. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36922. {
  36923. front: {
  36924. height: math.unit(100, "feet"),
  36925. name: "Front",
  36926. image: {
  36927. source: "./media/characters/dee/front.svg",
  36928. extra: 2153/2036,
  36929. bottom: 59/2212
  36930. }
  36931. },
  36932. back: {
  36933. height: math.unit(100, "feet"),
  36934. name: "Back",
  36935. image: {
  36936. source: "./media/characters/dee/back.svg",
  36937. extra: 2183/2058,
  36938. bottom: 75/2258
  36939. }
  36940. },
  36941. foot: {
  36942. height: math.unit(19.43, "feet"),
  36943. name: "Foot",
  36944. image: {
  36945. source: "./media/characters/dee/foot.svg"
  36946. }
  36947. },
  36948. hoof: {
  36949. height: math.unit(20.6, "feet"),
  36950. name: "Hoof",
  36951. image: {
  36952. source: "./media/characters/dee/hoof.svg"
  36953. }
  36954. },
  36955. },
  36956. [
  36957. {
  36958. name: "Macro",
  36959. height: math.unit(100, "feet"),
  36960. default: true
  36961. },
  36962. ]
  36963. ))
  36964. characterMakers.push(() => makeCharacter(
  36965. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36966. {
  36967. front: {
  36968. height: math.unit(5 + 6/12, "feet"),
  36969. name: "Front",
  36970. image: {
  36971. source: "./media/characters/teh/front.svg",
  36972. extra: 1002/847,
  36973. bottom: 62/1064
  36974. }
  36975. },
  36976. },
  36977. [
  36978. {
  36979. name: "Normal",
  36980. height: math.unit(5 + 6/12, "feet"),
  36981. default: true
  36982. },
  36983. ]
  36984. ))
  36985. characterMakers.push(() => makeCharacter(
  36986. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36987. {
  36988. side: {
  36989. height: math.unit(6 + 1/12, "feet"),
  36990. weight: math.unit(204, "lb"),
  36991. name: "Side",
  36992. image: {
  36993. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36994. extra: 974/775,
  36995. bottom: 169/1143
  36996. }
  36997. },
  36998. sitting: {
  36999. height: math.unit(6 + 2/12, "feet"),
  37000. weight: math.unit(204, "lb"),
  37001. name: "Sitting",
  37002. image: {
  37003. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37004. extra: 1175/964,
  37005. bottom: 378/1553
  37006. }
  37007. },
  37008. },
  37009. [
  37010. {
  37011. name: "Normal",
  37012. height: math.unit(6 + 1/12, "feet"),
  37013. default: true
  37014. },
  37015. ]
  37016. ))
  37017. characterMakers.push(() => makeCharacter(
  37018. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37019. {
  37020. front: {
  37021. height: math.unit(6, "inches"),
  37022. name: "Front",
  37023. image: {
  37024. source: "./media/characters/tululi/front.svg",
  37025. extra: 1997/1876,
  37026. bottom: 20/2017
  37027. }
  37028. },
  37029. },
  37030. [
  37031. {
  37032. name: "Normal",
  37033. height: math.unit(6, "inches"),
  37034. default: true
  37035. },
  37036. ]
  37037. ))
  37038. characterMakers.push(() => makeCharacter(
  37039. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37040. {
  37041. front: {
  37042. height: math.unit(4 + 1/12, "feet"),
  37043. name: "Front",
  37044. image: {
  37045. source: "./media/characters/star/front.svg",
  37046. extra: 1493/1189,
  37047. bottom: 48/1541
  37048. }
  37049. },
  37050. },
  37051. [
  37052. {
  37053. name: "Normal",
  37054. height: math.unit(4 + 1/12, "feet"),
  37055. default: true
  37056. },
  37057. ]
  37058. ))
  37059. characterMakers.push(() => makeCharacter(
  37060. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37061. {
  37062. front: {
  37063. height: math.unit(6 + 3/12, "feet"),
  37064. name: "Front",
  37065. image: {
  37066. source: "./media/characters/comet/front.svg",
  37067. extra: 1681/1462,
  37068. bottom: 26/1707
  37069. }
  37070. },
  37071. },
  37072. [
  37073. {
  37074. name: "Normal",
  37075. height: math.unit(6 + 3/12, "feet"),
  37076. default: true
  37077. },
  37078. ]
  37079. ))
  37080. characterMakers.push(() => makeCharacter(
  37081. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37082. {
  37083. front: {
  37084. height: math.unit(950, "feet"),
  37085. name: "Front",
  37086. image: {
  37087. source: "./media/characters/vortex/front.svg",
  37088. extra: 1497/1434,
  37089. bottom: 56/1553
  37090. }
  37091. },
  37092. maw: {
  37093. height: math.unit(285, "feet"),
  37094. name: "Maw",
  37095. image: {
  37096. source: "./media/characters/vortex/maw.svg"
  37097. }
  37098. },
  37099. },
  37100. [
  37101. {
  37102. name: "Macro",
  37103. height: math.unit(950, "feet"),
  37104. default: true
  37105. },
  37106. ]
  37107. ))
  37108. characterMakers.push(() => makeCharacter(
  37109. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37110. {
  37111. front: {
  37112. height: math.unit(600, "feet"),
  37113. weight: math.unit(0.02, "grams"),
  37114. name: "Front",
  37115. image: {
  37116. source: "./media/characters/doodle/front.svg",
  37117. extra: 1578/1413,
  37118. bottom: 37/1615
  37119. }
  37120. },
  37121. },
  37122. [
  37123. {
  37124. name: "Macro",
  37125. height: math.unit(600, "feet"),
  37126. default: true
  37127. },
  37128. ]
  37129. ))
  37130. characterMakers.push(() => makeCharacter(
  37131. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37132. {
  37133. front: {
  37134. height: math.unit(6 + 6/12, "feet"),
  37135. name: "Front",
  37136. image: {
  37137. source: "./media/characters/jai/front.svg",
  37138. extra: 1645/1534,
  37139. bottom: 115/1760
  37140. }
  37141. },
  37142. },
  37143. [
  37144. {
  37145. name: "Normal",
  37146. height: math.unit(6 + 6/12, "feet"),
  37147. default: true
  37148. },
  37149. ]
  37150. ))
  37151. characterMakers.push(() => makeCharacter(
  37152. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37153. {
  37154. front: {
  37155. height: math.unit(6 + 8/12, "feet"),
  37156. name: "Front",
  37157. image: {
  37158. source: "./media/characters/pixel/front.svg",
  37159. extra: 1900/1735,
  37160. bottom: 63/1963
  37161. }
  37162. },
  37163. },
  37164. [
  37165. {
  37166. name: "Normal",
  37167. height: math.unit(6 + 8/12, "feet"),
  37168. default: true
  37169. },
  37170. ]
  37171. ))
  37172. characterMakers.push(() => makeCharacter(
  37173. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37174. {
  37175. back: {
  37176. height: math.unit(4 + 1/12, "feet"),
  37177. weight: math.unit(75, "lb"),
  37178. name: "Back",
  37179. image: {
  37180. source: "./media/characters/rhett/back.svg",
  37181. extra: 930/878,
  37182. bottom: 25/955
  37183. }
  37184. },
  37185. front: {
  37186. height: math.unit(4 + 1/12, "feet"),
  37187. weight: math.unit(75, "lb"),
  37188. name: "Front",
  37189. image: {
  37190. source: "./media/characters/rhett/front.svg",
  37191. extra: 1682/1586,
  37192. bottom: 92/1774
  37193. }
  37194. },
  37195. },
  37196. [
  37197. {
  37198. name: "Micro",
  37199. height: math.unit(8, "inches")
  37200. },
  37201. {
  37202. name: "Tiny",
  37203. height: math.unit(2, "feet")
  37204. },
  37205. {
  37206. name: "Normal",
  37207. height: math.unit(4 + 1/12, "feet"),
  37208. default: true
  37209. },
  37210. ]
  37211. ))
  37212. characterMakers.push(() => makeCharacter(
  37213. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37214. {
  37215. front: {
  37216. height: math.unit(3 + 3/12, "feet"),
  37217. name: "Front",
  37218. image: {
  37219. source: "./media/characters/penny/front.svg",
  37220. extra: 1406/1311,
  37221. bottom: 26/1432
  37222. }
  37223. },
  37224. },
  37225. [
  37226. {
  37227. name: "Normal",
  37228. height: math.unit(3 + 3/12, "feet"),
  37229. default: true
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37235. {
  37236. front: {
  37237. height: math.unit(4 + 11/12, "feet"),
  37238. name: "Front",
  37239. image: {
  37240. source: "./media/characters/monty/front.svg",
  37241. extra: 1479/1209,
  37242. bottom: 0/1479
  37243. }
  37244. },
  37245. },
  37246. [
  37247. {
  37248. name: "Normal",
  37249. height: math.unit(4 + 11/12, "feet"),
  37250. default: true
  37251. },
  37252. ]
  37253. ))
  37254. characterMakers.push(() => makeCharacter(
  37255. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37256. {
  37257. front: {
  37258. height: math.unit(8 + 4/12, "feet"),
  37259. name: "Front",
  37260. image: {
  37261. source: "./media/characters/sterling/front.svg",
  37262. extra: 1420/1236,
  37263. bottom: 27/1447
  37264. }
  37265. },
  37266. },
  37267. [
  37268. {
  37269. name: "Normal",
  37270. height: math.unit(8 + 4/12, "feet"),
  37271. default: true
  37272. },
  37273. ]
  37274. ))
  37275. characterMakers.push(() => makeCharacter(
  37276. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37277. {
  37278. front: {
  37279. height: math.unit(15, "feet"),
  37280. name: "Front",
  37281. image: {
  37282. source: "./media/characters/marble/front.svg",
  37283. extra: 973/937,
  37284. bottom: 32/1005
  37285. }
  37286. },
  37287. },
  37288. [
  37289. {
  37290. name: "Normal",
  37291. height: math.unit(15, "feet"),
  37292. default: true
  37293. },
  37294. ]
  37295. ))
  37296. characterMakers.push(() => makeCharacter(
  37297. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37298. {
  37299. front: {
  37300. height: math.unit(3, "inches"),
  37301. name: "Front",
  37302. image: {
  37303. source: "./media/characters/powder/front.svg",
  37304. extra: 1504/1334,
  37305. bottom: 518/2022
  37306. }
  37307. },
  37308. },
  37309. [
  37310. {
  37311. name: "Normal",
  37312. height: math.unit(3, "inches"),
  37313. default: true
  37314. },
  37315. ]
  37316. ))
  37317. characterMakers.push(() => makeCharacter(
  37318. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37319. {
  37320. front: {
  37321. height: math.unit(4 + 5/12, "feet"),
  37322. name: "Front",
  37323. image: {
  37324. source: "./media/characters/joey-raccoon/front.svg",
  37325. extra: 1273/1197,
  37326. bottom: 0/1273
  37327. }
  37328. },
  37329. },
  37330. [
  37331. {
  37332. name: "Normal",
  37333. height: math.unit(4 + 5/12, "feet"),
  37334. default: true
  37335. },
  37336. ]
  37337. ))
  37338. characterMakers.push(() => makeCharacter(
  37339. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37340. {
  37341. front: {
  37342. height: math.unit(8 + 4/12, "feet"),
  37343. name: "Front",
  37344. image: {
  37345. source: "./media/characters/vick/front.svg",
  37346. extra: 2187/2118,
  37347. bottom: 47/2234
  37348. }
  37349. },
  37350. },
  37351. [
  37352. {
  37353. name: "Normal",
  37354. height: math.unit(8 + 4/12, "feet"),
  37355. default: true
  37356. },
  37357. ]
  37358. ))
  37359. characterMakers.push(() => makeCharacter(
  37360. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37361. {
  37362. front: {
  37363. height: math.unit(5 + 5/12, "feet"),
  37364. name: "Front",
  37365. image: {
  37366. source: "./media/characters/mitsy/front.svg",
  37367. extra: 1842/1695,
  37368. bottom: 0/1842
  37369. }
  37370. },
  37371. },
  37372. [
  37373. {
  37374. name: "Normal",
  37375. height: math.unit(5 + 5/12, "feet"),
  37376. default: true
  37377. },
  37378. ]
  37379. ))
  37380. characterMakers.push(() => makeCharacter(
  37381. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37382. {
  37383. front: {
  37384. height: math.unit(6 + 3/12, "feet"),
  37385. name: "Front",
  37386. image: {
  37387. source: "./media/characters/silvy/front.svg",
  37388. extra: 1995/1836,
  37389. bottom: 225/2220
  37390. }
  37391. },
  37392. },
  37393. [
  37394. {
  37395. name: "Normal",
  37396. height: math.unit(6 + 3/12, "feet"),
  37397. default: true
  37398. },
  37399. ]
  37400. ))
  37401. characterMakers.push(() => makeCharacter(
  37402. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37403. {
  37404. front: {
  37405. height: math.unit(3 + 8/12, "feet"),
  37406. name: "Front",
  37407. image: {
  37408. source: "./media/characters/rodney/front.svg",
  37409. extra: 1956/1747,
  37410. bottom: 31/1987
  37411. }
  37412. },
  37413. frontDressed: {
  37414. height: math.unit(2.9, "feet"),
  37415. name: "Front (Dressed)",
  37416. image: {
  37417. source: "./media/characters/rodney/front-dressed.svg",
  37418. extra: 1382/1241,
  37419. bottom: 385/1767
  37420. }
  37421. },
  37422. },
  37423. [
  37424. {
  37425. name: "Normal",
  37426. height: math.unit(3 + 8/12, "feet"),
  37427. default: true
  37428. },
  37429. ]
  37430. ))
  37431. characterMakers.push(() => makeCharacter(
  37432. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37433. {
  37434. front: {
  37435. height: math.unit(5 + 9/12, "feet"),
  37436. weight: math.unit(194, "lbs"),
  37437. name: "Front",
  37438. image: {
  37439. source: "./media/characters/zakail-sudekai/front.svg",
  37440. extra: 2696/2533,
  37441. bottom: 248/2944
  37442. }
  37443. },
  37444. maw: {
  37445. height: math.unit(1.35, "feet"),
  37446. name: "Maw",
  37447. image: {
  37448. source: "./media/characters/zakail-sudekai/maw.svg"
  37449. }
  37450. },
  37451. },
  37452. [
  37453. {
  37454. name: "Normal",
  37455. height: math.unit(5 + 9/12, "feet"),
  37456. default: true
  37457. },
  37458. ]
  37459. ))
  37460. characterMakers.push(() => makeCharacter(
  37461. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37462. {
  37463. front: {
  37464. height: math.unit(8 + 4/12, "feet"),
  37465. weight: math.unit(1200, "lb"),
  37466. name: "Front",
  37467. image: {
  37468. source: "./media/characters/eleanor/front.svg",
  37469. extra: 1226/1192,
  37470. bottom: 52/1278
  37471. }
  37472. },
  37473. back: {
  37474. height: math.unit(8 + 4/12, "feet"),
  37475. weight: math.unit(1200, "lb"),
  37476. name: "Back",
  37477. image: {
  37478. source: "./media/characters/eleanor/back.svg",
  37479. extra: 1242/1184,
  37480. bottom: 60/1302
  37481. }
  37482. },
  37483. head: {
  37484. height: math.unit(2.62, "feet"),
  37485. name: "Head",
  37486. image: {
  37487. source: "./media/characters/eleanor/head.svg"
  37488. }
  37489. },
  37490. },
  37491. [
  37492. {
  37493. name: "Normal",
  37494. height: math.unit(8 + 4/12, "feet"),
  37495. default: true
  37496. },
  37497. ]
  37498. ))
  37499. characterMakers.push(() => makeCharacter(
  37500. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37501. {
  37502. front: {
  37503. height: math.unit(8 + 4/12, "feet"),
  37504. weight: math.unit(750, "lb"),
  37505. name: "Front",
  37506. image: {
  37507. source: "./media/characters/tanya/front.svg",
  37508. extra: 1749/1615,
  37509. bottom: 33/1782
  37510. }
  37511. },
  37512. },
  37513. [
  37514. {
  37515. name: "Normal",
  37516. height: math.unit(8 + 4/12, "feet"),
  37517. default: true
  37518. },
  37519. ]
  37520. ))
  37521. characterMakers.push(() => makeCharacter(
  37522. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37523. {
  37524. front: {
  37525. height: math.unit(5, "feet"),
  37526. weight: math.unit(225, "lb"),
  37527. name: "Front",
  37528. image: {
  37529. source: "./media/characters/cindy/front.svg",
  37530. extra: 1320/1250,
  37531. bottom: 42/1362
  37532. }
  37533. },
  37534. frontDressed: {
  37535. height: math.unit(5, "feet"),
  37536. weight: math.unit(225, "lb"),
  37537. name: "Front (Dressed)",
  37538. image: {
  37539. source: "./media/characters/cindy/front-dressed.svg",
  37540. extra: 1320/1250,
  37541. bottom: 42/1362
  37542. }
  37543. },
  37544. back: {
  37545. height: math.unit(5, "feet"),
  37546. weight: math.unit(225, "lb"),
  37547. name: "Back",
  37548. image: {
  37549. source: "./media/characters/cindy/back.svg",
  37550. extra: 1384/1346,
  37551. bottom: 14/1398
  37552. }
  37553. },
  37554. },
  37555. [
  37556. {
  37557. name: "Normal",
  37558. height: math.unit(5, "feet"),
  37559. default: true
  37560. },
  37561. ]
  37562. ))
  37563. characterMakers.push(() => makeCharacter(
  37564. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37565. {
  37566. front: {
  37567. height: math.unit(6 + 9/12, "feet"),
  37568. weight: math.unit(440, "lb"),
  37569. name: "Front",
  37570. image: {
  37571. source: "./media/characters/wilbur-owen/front.svg",
  37572. extra: 1575/1448,
  37573. bottom: 72/1647
  37574. }
  37575. },
  37576. back: {
  37577. height: math.unit(6 + 9/12, "feet"),
  37578. weight: math.unit(440, "lb"),
  37579. name: "Back",
  37580. image: {
  37581. source: "./media/characters/wilbur-owen/back.svg",
  37582. extra: 1578/1445,
  37583. bottom: 36/1614
  37584. }
  37585. },
  37586. },
  37587. [
  37588. {
  37589. name: "Normal",
  37590. height: math.unit(6 + 9/12, "feet"),
  37591. default: true
  37592. },
  37593. ]
  37594. ))
  37595. characterMakers.push(() => makeCharacter(
  37596. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37597. {
  37598. front: {
  37599. height: math.unit(6 + 5/12, "feet"),
  37600. weight: math.unit(650, "lb"),
  37601. name: "Front",
  37602. image: {
  37603. source: "./media/characters/keegan/front.svg",
  37604. extra: 2387/2198,
  37605. bottom: 33/2420
  37606. }
  37607. },
  37608. side: {
  37609. height: math.unit(6 + 5/12, "feet"),
  37610. weight: math.unit(650, "lb"),
  37611. name: "Side",
  37612. image: {
  37613. source: "./media/characters/keegan/side.svg",
  37614. extra: 2390/2202,
  37615. bottom: 47/2437
  37616. }
  37617. },
  37618. back: {
  37619. height: math.unit(6 + 5/12, "feet"),
  37620. weight: math.unit(650, "lb"),
  37621. name: "Back",
  37622. image: {
  37623. source: "./media/characters/keegan/back.svg",
  37624. extra: 2418/2268,
  37625. bottom: 15/2433
  37626. }
  37627. },
  37628. frontSfw: {
  37629. height: math.unit(6 + 5/12, "feet"),
  37630. weight: math.unit(650, "lb"),
  37631. name: "Front (SFW)",
  37632. image: {
  37633. source: "./media/characters/keegan/front-sfw.svg",
  37634. extra: 2387/2198,
  37635. bottom: 33/2420
  37636. }
  37637. },
  37638. beans: {
  37639. height: math.unit(1.85, "feet"),
  37640. name: "Beans",
  37641. image: {
  37642. source: "./media/characters/keegan/beans.svg"
  37643. }
  37644. },
  37645. },
  37646. [
  37647. {
  37648. name: "Normal",
  37649. height: math.unit(6 + 5/12, "feet"),
  37650. default: true
  37651. },
  37652. ]
  37653. ))
  37654. characterMakers.push(() => makeCharacter(
  37655. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37656. {
  37657. front: {
  37658. height: math.unit(9, "feet"),
  37659. name: "Front",
  37660. image: {
  37661. source: "./media/characters/colton/front.svg",
  37662. extra: 1589/1326,
  37663. bottom: 139/1728
  37664. }
  37665. },
  37666. },
  37667. [
  37668. {
  37669. name: "Normal",
  37670. height: math.unit(9, "feet"),
  37671. default: true
  37672. },
  37673. ]
  37674. ))
  37675. characterMakers.push(() => makeCharacter(
  37676. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37677. {
  37678. front: {
  37679. height: math.unit(2 + 9/12, "feet"),
  37680. name: "Front",
  37681. image: {
  37682. source: "./media/characters/bora/front.svg",
  37683. extra: 1265/1250,
  37684. bottom: 24/1289
  37685. }
  37686. },
  37687. },
  37688. [
  37689. {
  37690. name: "Normal",
  37691. height: math.unit(2 + 9/12, "feet"),
  37692. default: true
  37693. },
  37694. ]
  37695. ))
  37696. characterMakers.push(() => makeCharacter(
  37697. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37698. {
  37699. front: {
  37700. height: math.unit(8, "feet"),
  37701. name: "Front",
  37702. image: {
  37703. source: "./media/characters/myu-myu/front.svg",
  37704. extra: 1949/1857,
  37705. bottom: 90/2039
  37706. }
  37707. },
  37708. },
  37709. [
  37710. {
  37711. name: "Normal",
  37712. height: math.unit(8, "feet"),
  37713. default: true
  37714. },
  37715. {
  37716. name: "Big",
  37717. height: math.unit(15, "feet")
  37718. },
  37719. {
  37720. name: "BIG",
  37721. height: math.unit(25, "feet")
  37722. },
  37723. ]
  37724. ))
  37725. characterMakers.push(() => makeCharacter(
  37726. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37727. {
  37728. side: {
  37729. height: math.unit(7 + 5/12, "feet"),
  37730. weight: math.unit(2800, "lb"),
  37731. name: "Side",
  37732. image: {
  37733. source: "./media/characters/haloren/side.svg",
  37734. extra: 1793/409,
  37735. bottom: 59/1852
  37736. }
  37737. },
  37738. frontPaw: {
  37739. height: math.unit(2.36, "feet"),
  37740. name: "Front paw",
  37741. image: {
  37742. source: "./media/characters/haloren/front-paw.svg"
  37743. }
  37744. },
  37745. hindPaw: {
  37746. height: math.unit(3.18, "feet"),
  37747. name: "Hind paw",
  37748. image: {
  37749. source: "./media/characters/haloren/hind-paw.svg"
  37750. }
  37751. },
  37752. maw: {
  37753. height: math.unit(5.05, "feet"),
  37754. name: "Maw",
  37755. image: {
  37756. source: "./media/characters/haloren/maw.svg"
  37757. }
  37758. },
  37759. dick: {
  37760. height: math.unit(2.90, "feet"),
  37761. name: "Dick",
  37762. image: {
  37763. source: "./media/characters/haloren/dick.svg"
  37764. }
  37765. },
  37766. },
  37767. [
  37768. {
  37769. name: "Normal",
  37770. height: math.unit(7 + 5/12, "feet"),
  37771. default: true
  37772. },
  37773. {
  37774. name: "Enhanced",
  37775. height: math.unit(14 + 3/12, "feet")
  37776. },
  37777. ]
  37778. ))
  37779. characterMakers.push(() => makeCharacter(
  37780. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37781. {
  37782. front: {
  37783. height: math.unit(171, "cm"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/kimmy/front.svg",
  37787. extra: 1491/1435,
  37788. bottom: 53/1544
  37789. }
  37790. },
  37791. },
  37792. [
  37793. {
  37794. name: "Small",
  37795. height: math.unit(9, "cm")
  37796. },
  37797. {
  37798. name: "Normal",
  37799. height: math.unit(171, "cm"),
  37800. default: true
  37801. },
  37802. ]
  37803. ))
  37804. characterMakers.push(() => makeCharacter(
  37805. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37806. {
  37807. front: {
  37808. height: math.unit(8, "feet"),
  37809. weight: math.unit(300, "lb"),
  37810. name: "Front",
  37811. image: {
  37812. source: "./media/characters/galeboomer/front.svg",
  37813. extra: 4651/4415,
  37814. bottom: 162/4813
  37815. }
  37816. },
  37817. back: {
  37818. height: math.unit(8, "feet"),
  37819. weight: math.unit(300, "lb"),
  37820. name: "Back",
  37821. image: {
  37822. source: "./media/characters/galeboomer/back.svg",
  37823. extra: 4544/4314,
  37824. bottom: 16/4560
  37825. }
  37826. },
  37827. frontAlt: {
  37828. height: math.unit(8, "feet"),
  37829. weight: math.unit(300, "lb"),
  37830. name: "Front (Alt)",
  37831. image: {
  37832. source: "./media/characters/galeboomer/front-alt.svg",
  37833. extra: 4458/4228,
  37834. bottom: 68/4526
  37835. }
  37836. },
  37837. maw: {
  37838. height: math.unit(1.2, "feet"),
  37839. name: "Maw",
  37840. image: {
  37841. source: "./media/characters/galeboomer/maw.svg"
  37842. }
  37843. },
  37844. },
  37845. [
  37846. {
  37847. name: "Normal",
  37848. height: math.unit(8, "feet"),
  37849. default: true
  37850. },
  37851. ]
  37852. ))
  37853. characterMakers.push(() => makeCharacter(
  37854. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37855. {
  37856. front: {
  37857. height: math.unit(5 + 9/12, "feet"),
  37858. weight: math.unit(120, "lb"),
  37859. name: "Front",
  37860. image: {
  37861. source: "./media/characters/chyr/front.svg",
  37862. extra: 1323/1254,
  37863. bottom: 63/1386
  37864. }
  37865. },
  37866. back: {
  37867. height: math.unit(5 + 9/12, "feet"),
  37868. weight: math.unit(120, "lb"),
  37869. name: "Back",
  37870. image: {
  37871. source: "./media/characters/chyr/back.svg",
  37872. extra: 1323/1252,
  37873. bottom: 48/1371
  37874. }
  37875. },
  37876. },
  37877. [
  37878. {
  37879. name: "Normal",
  37880. height: math.unit(5 + 9/12, "feet"),
  37881. default: true
  37882. },
  37883. ]
  37884. ))
  37885. characterMakers.push(() => makeCharacter(
  37886. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37887. {
  37888. front: {
  37889. height: math.unit(7, "feet"),
  37890. weight: math.unit(310, "lb"),
  37891. name: "Front",
  37892. image: {
  37893. source: "./media/characters/solarus/front.svg",
  37894. extra: 2415/2021,
  37895. bottom: 103/2518
  37896. }
  37897. },
  37898. back: {
  37899. height: math.unit(7, "feet"),
  37900. weight: math.unit(310, "lb"),
  37901. name: "Back",
  37902. image: {
  37903. source: "./media/characters/solarus/back.svg",
  37904. extra: 2463/2089,
  37905. bottom: 79/2542
  37906. }
  37907. },
  37908. },
  37909. [
  37910. {
  37911. name: "Normal",
  37912. height: math.unit(7, "feet"),
  37913. default: true
  37914. },
  37915. ]
  37916. ))
  37917. characterMakers.push(() => makeCharacter(
  37918. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37919. {
  37920. front: {
  37921. height: math.unit(16, "feet"),
  37922. name: "Front",
  37923. image: {
  37924. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37925. extra: 1844/1780,
  37926. bottom: 58/1902
  37927. }
  37928. },
  37929. winterCoat: {
  37930. height: math.unit(16, "feet"),
  37931. name: "Winter Coat",
  37932. image: {
  37933. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37934. extra: 1807/1775,
  37935. bottom: 69/1876
  37936. }
  37937. },
  37938. },
  37939. [
  37940. {
  37941. name: "Normal",
  37942. height: math.unit(16, "feet"),
  37943. default: true
  37944. },
  37945. {
  37946. name: "Chicago Size",
  37947. height: math.unit(560, "feet")
  37948. },
  37949. ]
  37950. ))
  37951. characterMakers.push(() => makeCharacter(
  37952. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37953. {
  37954. front: {
  37955. height: math.unit(11 + 6/12, "feet"),
  37956. weight: math.unit(1366, "lb"),
  37957. name: "Front",
  37958. image: {
  37959. source: "./media/characters/lexor/front.svg",
  37960. extra: 1560/1481,
  37961. bottom: 211/1771
  37962. }
  37963. },
  37964. back: {
  37965. height: math.unit(11 + 6/12, "feet"),
  37966. weight: math.unit(1366, "lb"),
  37967. name: "Back",
  37968. image: {
  37969. source: "./media/characters/lexor/back.svg",
  37970. extra: 1614/1533,
  37971. bottom: 76/1690
  37972. }
  37973. },
  37974. maw: {
  37975. height: math.unit(3, "feet"),
  37976. name: "Maw",
  37977. image: {
  37978. source: "./media/characters/lexor/maw.svg"
  37979. }
  37980. },
  37981. dick: {
  37982. height: math.unit(2.59, "feet"),
  37983. name: "Dick",
  37984. image: {
  37985. source: "./media/characters/lexor/dick.svg"
  37986. }
  37987. },
  37988. },
  37989. [
  37990. {
  37991. name: "Normal",
  37992. height: math.unit(11 + 6/12, "feet"),
  37993. default: true
  37994. },
  37995. ]
  37996. ))
  37997. characterMakers.push(() => makeCharacter(
  37998. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37999. {
  38000. front: {
  38001. height: math.unit(5 + 8/12, "feet"),
  38002. name: "Front",
  38003. image: {
  38004. source: "./media/characters/magnum/front.svg",
  38005. extra: 942/855,
  38006. bottom: 26/968
  38007. }
  38008. },
  38009. },
  38010. [
  38011. {
  38012. name: "Normal",
  38013. height: math.unit(5 + 8/12, "feet"),
  38014. default: true
  38015. },
  38016. ]
  38017. ))
  38018. characterMakers.push(() => makeCharacter(
  38019. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38020. {
  38021. front: {
  38022. height: math.unit(18 + 4/12, "feet"),
  38023. weight: math.unit(1500, "kg"),
  38024. name: "Front",
  38025. image: {
  38026. source: "./media/characters/solas-sharpsman/front.svg",
  38027. extra: 1698/1589,
  38028. bottom: 0/1698
  38029. }
  38030. },
  38031. },
  38032. [
  38033. {
  38034. name: "Normal",
  38035. height: math.unit(18 + 4/12, "feet"),
  38036. default: true
  38037. },
  38038. ]
  38039. ))
  38040. characterMakers.push(() => makeCharacter(
  38041. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38042. {
  38043. front: {
  38044. height: math.unit(5 + 5/12, "feet"),
  38045. weight: math.unit(180, "lb"),
  38046. name: "Front",
  38047. image: {
  38048. source: "./media/characters/october/front.svg",
  38049. extra: 1800/1650,
  38050. bottom: 0/1800
  38051. }
  38052. },
  38053. frontNsfw: {
  38054. height: math.unit(5 + 5/12, "feet"),
  38055. weight: math.unit(180, "lb"),
  38056. name: "Front (NSFW)",
  38057. image: {
  38058. source: "./media/characters/october/front-nsfw.svg",
  38059. extra: 1392/1307,
  38060. bottom: 42/1434
  38061. }
  38062. },
  38063. },
  38064. [
  38065. {
  38066. name: "Normal",
  38067. height: math.unit(5 + 5/12, "feet"),
  38068. default: true
  38069. },
  38070. ]
  38071. ))
  38072. characterMakers.push(() => makeCharacter(
  38073. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38074. {
  38075. front: {
  38076. height: math.unit(8 + 6/12, "feet"),
  38077. name: "Front",
  38078. image: {
  38079. source: "./media/characters/essynkardi/front.svg",
  38080. extra: 1914/1846,
  38081. bottom: 22/1936
  38082. }
  38083. },
  38084. },
  38085. [
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(8 + 6/12, "feet"),
  38089. default: true
  38090. },
  38091. ]
  38092. ))
  38093. characterMakers.push(() => makeCharacter(
  38094. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38095. {
  38096. front: {
  38097. height: math.unit(6 + 6/12, "feet"),
  38098. weight: math.unit(7, "lb"),
  38099. name: "Front",
  38100. image: {
  38101. source: "./media/characters/icky/front.svg",
  38102. extra: 813/782,
  38103. bottom: 66/879
  38104. }
  38105. },
  38106. back: {
  38107. height: math.unit(6 + 6/12, "feet"),
  38108. weight: math.unit(7, "lb"),
  38109. name: "Back",
  38110. image: {
  38111. source: "./media/characters/icky/back.svg",
  38112. extra: 754/735,
  38113. bottom: 56/810
  38114. }
  38115. },
  38116. },
  38117. [
  38118. {
  38119. name: "Normal",
  38120. height: math.unit(6 + 6/12, "feet"),
  38121. default: true
  38122. },
  38123. ]
  38124. ))
  38125. characterMakers.push(() => makeCharacter(
  38126. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38127. {
  38128. front: {
  38129. height: math.unit(15, "feet"),
  38130. name: "Front",
  38131. image: {
  38132. source: "./media/characters/rojas/front.svg",
  38133. extra: 1462/1408,
  38134. bottom: 95/1557
  38135. }
  38136. },
  38137. back: {
  38138. height: math.unit(15, "feet"),
  38139. name: "Back",
  38140. image: {
  38141. source: "./media/characters/rojas/back.svg",
  38142. extra: 1023/954,
  38143. bottom: 28/1051
  38144. }
  38145. },
  38146. },
  38147. [
  38148. {
  38149. name: "Normal",
  38150. height: math.unit(15, "feet"),
  38151. default: true
  38152. },
  38153. ]
  38154. ))
  38155. characterMakers.push(() => makeCharacter(
  38156. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38157. {
  38158. frontHuman: {
  38159. height: math.unit(5 + 7/12, "feet"),
  38160. name: "Front (Human)",
  38161. image: {
  38162. source: "./media/characters/alek-dryagan/front-human.svg",
  38163. extra: 1687/1667,
  38164. bottom: 69/1756
  38165. }
  38166. },
  38167. backHuman: {
  38168. height: math.unit(5 + 7/12, "feet"),
  38169. name: "Back (Human)",
  38170. image: {
  38171. source: "./media/characters/alek-dryagan/back-human.svg",
  38172. extra: 1670/1649,
  38173. bottom: 65/1735
  38174. }
  38175. },
  38176. frontDemi: {
  38177. height: math.unit(65, "feet"),
  38178. name: "Front (Demi)",
  38179. image: {
  38180. source: "./media/characters/alek-dryagan/front-demi.svg",
  38181. extra: 1669/1642,
  38182. bottom: 49/1718
  38183. }
  38184. },
  38185. backDemi: {
  38186. height: math.unit(65, "feet"),
  38187. name: "Back (Demi)",
  38188. image: {
  38189. source: "./media/characters/alek-dryagan/back-demi.svg",
  38190. extra: 1658/1637,
  38191. bottom: 40/1698
  38192. }
  38193. },
  38194. mawHuman: {
  38195. height: math.unit(0.3, "feet"),
  38196. name: "Maw (Human)",
  38197. image: {
  38198. source: "./media/characters/alek-dryagan/maw-human.svg"
  38199. }
  38200. },
  38201. mawDemi: {
  38202. height: math.unit(3.8, "feet"),
  38203. name: "Maw (Demi)",
  38204. image: {
  38205. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38206. }
  38207. },
  38208. },
  38209. [
  38210. {
  38211. name: "Normal",
  38212. height: math.unit(5 + 7/12, "feet"),
  38213. default: true
  38214. },
  38215. ]
  38216. ))
  38217. characterMakers.push(() => makeCharacter(
  38218. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38219. {
  38220. frontHuman: {
  38221. height: math.unit(5 + 2/12, "feet"),
  38222. name: "Front (Human)",
  38223. image: {
  38224. source: "./media/characters/gen/front-human.svg",
  38225. extra: 1627/1538,
  38226. bottom: 71/1698
  38227. }
  38228. },
  38229. backHuman: {
  38230. height: math.unit(5 + 2/12, "feet"),
  38231. name: "Back (Human)",
  38232. image: {
  38233. source: "./media/characters/gen/back-human.svg",
  38234. extra: 1638/1548,
  38235. bottom: 69/1707
  38236. }
  38237. },
  38238. frontDemi: {
  38239. height: math.unit(5 + 2/12, "feet"),
  38240. name: "Front (Demi)",
  38241. image: {
  38242. source: "./media/characters/gen/front-demi.svg",
  38243. extra: 1627/1538,
  38244. bottom: 71/1698
  38245. }
  38246. },
  38247. backDemi: {
  38248. height: math.unit(5 + 2/12, "feet"),
  38249. name: "Back (Demi)",
  38250. image: {
  38251. source: "./media/characters/gen/back-demi.svg",
  38252. extra: 1638/1548,
  38253. bottom: 69/1707
  38254. }
  38255. },
  38256. },
  38257. [
  38258. {
  38259. name: "Normal",
  38260. height: math.unit(5 + 2/12, "feet"),
  38261. default: true
  38262. },
  38263. ]
  38264. ))
  38265. characterMakers.push(() => makeCharacter(
  38266. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38267. {
  38268. frontImp: {
  38269. height: math.unit(1 + 11/12, "feet"),
  38270. name: "Front (Imp)",
  38271. image: {
  38272. source: "./media/characters/max-kobold/front-imp.svg",
  38273. extra: 1238/1134,
  38274. bottom: 81/1319
  38275. }
  38276. },
  38277. backImp: {
  38278. height: math.unit(1 + 11/12, "feet"),
  38279. name: "Back (Imp)",
  38280. image: {
  38281. source: "./media/characters/max-kobold/back-imp.svg",
  38282. extra: 1334/1175,
  38283. bottom: 34/1368
  38284. }
  38285. },
  38286. frontDemi: {
  38287. height: math.unit(5 + 9/12, "feet"),
  38288. name: "Front (Demi)",
  38289. image: {
  38290. source: "./media/characters/max-kobold/front-demi.svg",
  38291. extra: 1715/1685,
  38292. bottom: 54/1769
  38293. }
  38294. },
  38295. backDemi: {
  38296. height: math.unit(5 + 9/12, "feet"),
  38297. name: "Back (Demi)",
  38298. image: {
  38299. source: "./media/characters/max-kobold/back-demi.svg",
  38300. extra: 1752/1729,
  38301. bottom: 41/1793
  38302. }
  38303. },
  38304. handImp: {
  38305. height: math.unit(0.45, "feet"),
  38306. name: "Hand (Imp)",
  38307. image: {
  38308. source: "./media/characters/max-kobold/hand.svg"
  38309. }
  38310. },
  38311. pawImp: {
  38312. height: math.unit(0.46, "feet"),
  38313. name: "Paw (Imp)",
  38314. image: {
  38315. source: "./media/characters/max-kobold/paw.svg"
  38316. }
  38317. },
  38318. handDemi: {
  38319. height: math.unit(0.80, "feet"),
  38320. name: "Hand (Demi)",
  38321. image: {
  38322. source: "./media/characters/max-kobold/hand.svg"
  38323. }
  38324. },
  38325. pawDemi: {
  38326. height: math.unit(1.1, "feet"),
  38327. name: "Paw (Demi)",
  38328. image: {
  38329. source: "./media/characters/max-kobold/paw.svg"
  38330. }
  38331. },
  38332. headImp: {
  38333. height: math.unit(1.33, "feet"),
  38334. name: "Head (Imp)",
  38335. image: {
  38336. source: "./media/characters/max-kobold/head-imp.svg"
  38337. }
  38338. },
  38339. mawImp: {
  38340. height: math.unit(0.75, "feet"),
  38341. name: "Maw (Imp)",
  38342. image: {
  38343. source: "./media/characters/max-kobold/maw-imp.svg"
  38344. }
  38345. },
  38346. mawDemi: {
  38347. height: math.unit(0.42, "feet"),
  38348. name: "Maw (Demi)",
  38349. image: {
  38350. source: "./media/characters/max-kobold/maw-demi.svg"
  38351. }
  38352. },
  38353. },
  38354. [
  38355. {
  38356. name: "Normal",
  38357. height: math.unit(1 + 11/12, "feet"),
  38358. default: true
  38359. },
  38360. ]
  38361. ))
  38362. characterMakers.push(() => makeCharacter(
  38363. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38364. {
  38365. front: {
  38366. height: math.unit(7 + 5/12, "feet"),
  38367. name: "Front",
  38368. image: {
  38369. source: "./media/characters/carbon/front.svg",
  38370. extra: 1754/1689,
  38371. bottom: 65/1819
  38372. }
  38373. },
  38374. back: {
  38375. height: math.unit(7 + 5/12, "feet"),
  38376. name: "Back",
  38377. image: {
  38378. source: "./media/characters/carbon/back.svg",
  38379. extra: 1762/1695,
  38380. bottom: 24/1786
  38381. }
  38382. },
  38383. frontGigantamax: {
  38384. height: math.unit(150, "feet"),
  38385. name: "Front (Gigantamax)",
  38386. image: {
  38387. source: "./media/characters/carbon/front-gigantamax.svg",
  38388. extra: 1826/1669,
  38389. bottom: 59/1885
  38390. }
  38391. },
  38392. backGigantamax: {
  38393. height: math.unit(150, "feet"),
  38394. name: "Back (Gigantamax)",
  38395. image: {
  38396. source: "./media/characters/carbon/back-gigantamax.svg",
  38397. extra: 1796/1653,
  38398. bottom: 53/1849
  38399. }
  38400. },
  38401. maw: {
  38402. height: math.unit(0.48, "feet"),
  38403. name: "Maw",
  38404. image: {
  38405. source: "./media/characters/carbon/maw.svg"
  38406. }
  38407. },
  38408. mawGigantamax: {
  38409. height: math.unit(7.5, "feet"),
  38410. name: "Maw (Gigantamax)",
  38411. image: {
  38412. source: "./media/characters/carbon/maw-gigantamax.svg"
  38413. }
  38414. },
  38415. },
  38416. [
  38417. {
  38418. name: "Normal",
  38419. height: math.unit(7 + 5/12, "feet"),
  38420. default: true
  38421. },
  38422. ]
  38423. ))
  38424. characterMakers.push(() => makeCharacter(
  38425. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38426. {
  38427. front: {
  38428. height: math.unit(6, "feet"),
  38429. name: "Front",
  38430. image: {
  38431. source: "./media/characters/maverick/front.svg",
  38432. extra: 1672/1661,
  38433. bottom: 85/1757
  38434. }
  38435. },
  38436. back: {
  38437. height: math.unit(6, "feet"),
  38438. name: "Back",
  38439. image: {
  38440. source: "./media/characters/maverick/back.svg",
  38441. extra: 1642/1631,
  38442. bottom: 38/1680
  38443. }
  38444. },
  38445. },
  38446. [
  38447. {
  38448. name: "Normal",
  38449. height: math.unit(6, "feet"),
  38450. default: true
  38451. },
  38452. ]
  38453. ))
  38454. characterMakers.push(() => makeCharacter(
  38455. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38456. {
  38457. front: {
  38458. height: math.unit(15, "feet"),
  38459. weight: math.unit(615, "lb"),
  38460. name: "Front",
  38461. image: {
  38462. source: "./media/characters/grockle/front.svg",
  38463. extra: 1535/1427,
  38464. bottom: 56/1591
  38465. }
  38466. },
  38467. },
  38468. [
  38469. {
  38470. name: "Normal",
  38471. height: math.unit(15, "feet"),
  38472. default: true
  38473. },
  38474. {
  38475. name: "Large",
  38476. height: math.unit(150, "feet")
  38477. },
  38478. {
  38479. name: "Macro",
  38480. height: math.unit(1876, "feet")
  38481. },
  38482. {
  38483. name: "Mega Macro",
  38484. height: math.unit(121940, "feet")
  38485. },
  38486. {
  38487. name: "Giga Macro",
  38488. height: math.unit(750, "km")
  38489. },
  38490. {
  38491. name: "Tera Macro",
  38492. height: math.unit(750000, "km")
  38493. },
  38494. {
  38495. name: "Galactic",
  38496. height: math.unit(1.4e5, "km")
  38497. },
  38498. {
  38499. name: "Godlike",
  38500. height: math.unit(9.8e280, "galaxies")
  38501. },
  38502. ]
  38503. ))
  38504. characterMakers.push(() => makeCharacter(
  38505. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38506. {
  38507. front: {
  38508. height: math.unit(11, "meters"),
  38509. weight: math.unit(20, "tonnes"),
  38510. name: "Front",
  38511. image: {
  38512. source: "./media/characters/alistair/front.svg",
  38513. extra: 1265/1009,
  38514. bottom: 93/1358
  38515. }
  38516. },
  38517. },
  38518. [
  38519. {
  38520. name: "Normal",
  38521. height: math.unit(11, "meters"),
  38522. default: true
  38523. },
  38524. ]
  38525. ))
  38526. characterMakers.push(() => makeCharacter(
  38527. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38528. {
  38529. front: {
  38530. height: math.unit(5 + 8/12, "feet"),
  38531. name: "Front",
  38532. image: {
  38533. source: "./media/characters/haruka/front.svg",
  38534. extra: 2012/1952,
  38535. bottom: 0/2012
  38536. }
  38537. },
  38538. },
  38539. [
  38540. {
  38541. name: "Normal",
  38542. height: math.unit(5 + 8/12, "feet"),
  38543. default: true
  38544. },
  38545. ]
  38546. ))
  38547. characterMakers.push(() => makeCharacter(
  38548. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38549. {
  38550. back: {
  38551. height: math.unit(9, "feet"),
  38552. name: "Back",
  38553. image: {
  38554. source: "./media/characters/vivian-sylveon/back.svg",
  38555. extra: 1853/1714,
  38556. bottom: 0/1853
  38557. }
  38558. },
  38559. },
  38560. [
  38561. {
  38562. name: "Normal",
  38563. height: math.unit(9, "feet"),
  38564. default: true
  38565. },
  38566. {
  38567. name: "Macro",
  38568. height: math.unit(500, "feet")
  38569. },
  38570. {
  38571. name: "Megamacro",
  38572. height: math.unit(600, "miles")
  38573. },
  38574. {
  38575. name: "Gigamacro",
  38576. height: math.unit(30000, "miles")
  38577. },
  38578. ]
  38579. ))
  38580. characterMakers.push(() => makeCharacter(
  38581. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38582. {
  38583. anthro: {
  38584. height: math.unit(5 + 10/12, "feet"),
  38585. weight: math.unit(100, "lb"),
  38586. name: "Anthro",
  38587. image: {
  38588. source: "./media/characters/daiki/anthro.svg",
  38589. extra: 1115/1027,
  38590. bottom: 69/1184
  38591. }
  38592. },
  38593. feral: {
  38594. height: math.unit(200, "feet"),
  38595. name: "Feral",
  38596. image: {
  38597. source: "./media/characters/daiki/feral.svg",
  38598. extra: 1256/313,
  38599. bottom: 39/1295
  38600. }
  38601. },
  38602. feralHead: {
  38603. height: math.unit(171, "feet"),
  38604. name: "Feral Head",
  38605. image: {
  38606. source: "./media/characters/daiki/feral-head.svg"
  38607. }
  38608. },
  38609. manaDragon: {
  38610. height: math.unit(170, "meters"),
  38611. name: "Mana-dragon",
  38612. image: {
  38613. source: "./media/characters/daiki/mana-dragon.svg",
  38614. extra: 763/420,
  38615. bottom: 97/860
  38616. }
  38617. },
  38618. },
  38619. [
  38620. {
  38621. name: "Normal",
  38622. height: math.unit(5 + 10/12, "feet"),
  38623. default: true
  38624. },
  38625. ]
  38626. ))
  38627. characterMakers.push(() => makeCharacter(
  38628. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38629. {
  38630. fullyEquippedFront: {
  38631. height: math.unit(3 + 1/12, "feet"),
  38632. weight: math.unit(24, "lb"),
  38633. name: "Fully Equipped (Front)",
  38634. image: {
  38635. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38636. extra: 687/605,
  38637. bottom: 18/705
  38638. }
  38639. },
  38640. fullyEquippedBack: {
  38641. height: math.unit(3 + 1/12, "feet"),
  38642. weight: math.unit(24, "lb"),
  38643. name: "Fully Equipped (Back)",
  38644. image: {
  38645. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38646. extra: 689/590,
  38647. bottom: 18/707
  38648. }
  38649. },
  38650. dailyWear: {
  38651. height: math.unit(3 + 1/12, "feet"),
  38652. weight: math.unit(24, "lb"),
  38653. name: "Daily Wear",
  38654. image: {
  38655. source: "./media/characters/tea-spot/daily-wear.svg",
  38656. extra: 701/620,
  38657. bottom: 21/722
  38658. }
  38659. },
  38660. maidWork: {
  38661. height: math.unit(3 + 1/12, "feet"),
  38662. weight: math.unit(24, "lb"),
  38663. name: "Maid Work",
  38664. image: {
  38665. source: "./media/characters/tea-spot/maid-work.svg",
  38666. extra: 693/609,
  38667. bottom: 15/708
  38668. }
  38669. },
  38670. },
  38671. [
  38672. {
  38673. name: "Normal",
  38674. height: math.unit(3 + 1/12, "feet"),
  38675. default: true
  38676. },
  38677. ]
  38678. ))
  38679. characterMakers.push(() => makeCharacter(
  38680. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38681. {
  38682. front: {
  38683. height: math.unit(175, "cm"),
  38684. weight: math.unit(75, "kg"),
  38685. name: "Front",
  38686. image: {
  38687. source: "./media/characters/chee/front.svg",
  38688. extra: 1796/1740,
  38689. bottom: 40/1836
  38690. }
  38691. },
  38692. },
  38693. [
  38694. {
  38695. name: "Micro-Micro",
  38696. height: math.unit(1, "nm")
  38697. },
  38698. {
  38699. name: "Micro-erst",
  38700. height: math.unit(1, "micrometer")
  38701. },
  38702. {
  38703. name: "Micro-er",
  38704. height: math.unit(1, "cm")
  38705. },
  38706. {
  38707. name: "Normal",
  38708. height: math.unit(175, "cm"),
  38709. default: true
  38710. },
  38711. {
  38712. name: "Macro",
  38713. height: math.unit(100, "m")
  38714. },
  38715. {
  38716. name: "Macro-er",
  38717. height: math.unit(1, "km")
  38718. },
  38719. {
  38720. name: "Macro-erst",
  38721. height: math.unit(10, "km")
  38722. },
  38723. {
  38724. name: "Macro-Macro",
  38725. height: math.unit(100, "km")
  38726. },
  38727. ]
  38728. ))
  38729. characterMakers.push(() => makeCharacter(
  38730. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38731. {
  38732. front: {
  38733. height: math.unit(11 + 9/12, "feet"),
  38734. weight: math.unit(935, "lb"),
  38735. name: "Front",
  38736. image: {
  38737. source: "./media/characters/kingsley/front.svg",
  38738. extra: 1803/1674,
  38739. bottom: 127/1930
  38740. }
  38741. },
  38742. frontNude: {
  38743. height: math.unit(11 + 9/12, "feet"),
  38744. weight: math.unit(935, "lb"),
  38745. name: "Front (Nude)",
  38746. image: {
  38747. source: "./media/characters/kingsley/front-nude.svg",
  38748. extra: 1803/1674,
  38749. bottom: 127/1930
  38750. }
  38751. },
  38752. },
  38753. [
  38754. {
  38755. name: "Normal",
  38756. height: math.unit(11 + 9/12, "feet"),
  38757. default: true
  38758. },
  38759. ]
  38760. ))
  38761. characterMakers.push(() => makeCharacter(
  38762. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38763. {
  38764. side: {
  38765. height: math.unit(9, "feet"),
  38766. name: "Side",
  38767. image: {
  38768. source: "./media/characters/rymel/side.svg",
  38769. extra: 792/469,
  38770. bottom: 121/913
  38771. }
  38772. },
  38773. maw: {
  38774. height: math.unit(2.4, "meters"),
  38775. name: "Maw",
  38776. image: {
  38777. source: "./media/characters/rymel/maw.svg"
  38778. }
  38779. },
  38780. },
  38781. [
  38782. {
  38783. name: "House Drake",
  38784. height: math.unit(2, "feet")
  38785. },
  38786. {
  38787. name: "Reduced",
  38788. height: math.unit(4.5, "feet")
  38789. },
  38790. {
  38791. name: "Normal",
  38792. height: math.unit(9, "feet"),
  38793. default: true
  38794. },
  38795. ]
  38796. ))
  38797. characterMakers.push(() => makeCharacter(
  38798. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38799. {
  38800. front: {
  38801. height: math.unit(1.74, "meters"),
  38802. weight: math.unit(55, "kg"),
  38803. name: "Front",
  38804. image: {
  38805. source: "./media/characters/rubus/front.svg",
  38806. extra: 1894/1742,
  38807. bottom: 44/1938
  38808. }
  38809. },
  38810. },
  38811. [
  38812. {
  38813. name: "Normal",
  38814. height: math.unit(1.74, "meters"),
  38815. default: true
  38816. },
  38817. ]
  38818. ))
  38819. characterMakers.push(() => makeCharacter(
  38820. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38821. {
  38822. front: {
  38823. height: math.unit(5 + 2/12, "feet"),
  38824. weight: math.unit(112, "lb"),
  38825. name: "Front",
  38826. image: {
  38827. source: "./media/characters/cassie-kingston/front.svg",
  38828. extra: 1438/1390,
  38829. bottom: 47/1485
  38830. }
  38831. },
  38832. },
  38833. [
  38834. {
  38835. name: "Normal",
  38836. height: math.unit(5 + 2/12, "feet"),
  38837. default: true
  38838. },
  38839. {
  38840. name: "Macro",
  38841. height: math.unit(128, "feet")
  38842. },
  38843. {
  38844. name: "Megamacro",
  38845. height: math.unit(2.56, "miles")
  38846. },
  38847. ]
  38848. ))
  38849. characterMakers.push(() => makeCharacter(
  38850. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38851. {
  38852. front: {
  38853. height: math.unit(7, "feet"),
  38854. name: "Front",
  38855. image: {
  38856. source: "./media/characters/fox/front.svg",
  38857. extra: 1798/1703,
  38858. bottom: 55/1853
  38859. }
  38860. },
  38861. back: {
  38862. height: math.unit(7, "feet"),
  38863. name: "Back",
  38864. image: {
  38865. source: "./media/characters/fox/back.svg",
  38866. extra: 1748/1649,
  38867. bottom: 32/1780
  38868. }
  38869. },
  38870. head: {
  38871. height: math.unit(1.95, "feet"),
  38872. name: "Head",
  38873. image: {
  38874. source: "./media/characters/fox/head.svg"
  38875. }
  38876. },
  38877. dick: {
  38878. height: math.unit(1.33, "feet"),
  38879. name: "Dick",
  38880. image: {
  38881. source: "./media/characters/fox/dick.svg"
  38882. }
  38883. },
  38884. foot: {
  38885. height: math.unit(1, "feet"),
  38886. name: "Foot",
  38887. image: {
  38888. source: "./media/characters/fox/foot.svg"
  38889. }
  38890. },
  38891. paw: {
  38892. height: math.unit(0.92, "feet"),
  38893. name: "Paw",
  38894. image: {
  38895. source: "./media/characters/fox/paw.svg"
  38896. }
  38897. },
  38898. },
  38899. [
  38900. {
  38901. name: "Small",
  38902. height: math.unit(3, "inches")
  38903. },
  38904. {
  38905. name: "\"Realistic\"",
  38906. height: math.unit(7, "feet")
  38907. },
  38908. {
  38909. name: "Normal",
  38910. height: math.unit(150, "feet"),
  38911. default: true
  38912. },
  38913. {
  38914. name: "BIG",
  38915. height: math.unit(1200, "feet")
  38916. },
  38917. {
  38918. name: "👀",
  38919. height: math.unit(5, "miles")
  38920. },
  38921. {
  38922. name: "👀👀👀",
  38923. height: math.unit(64, "miles")
  38924. },
  38925. ]
  38926. ))
  38927. characterMakers.push(() => makeCharacter(
  38928. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38929. {
  38930. front: {
  38931. height: math.unit(625, "feet"),
  38932. name: "Front",
  38933. image: {
  38934. source: "./media/characters/asonja-rossa/front.svg",
  38935. extra: 1833/1686,
  38936. bottom: 24/1857
  38937. }
  38938. },
  38939. back: {
  38940. height: math.unit(625, "feet"),
  38941. name: "Back",
  38942. image: {
  38943. source: "./media/characters/asonja-rossa/back.svg",
  38944. extra: 1852/1753,
  38945. bottom: 26/1878
  38946. }
  38947. },
  38948. },
  38949. [
  38950. {
  38951. name: "Macro",
  38952. height: math.unit(625, "feet"),
  38953. default: true
  38954. },
  38955. ]
  38956. ))
  38957. characterMakers.push(() => makeCharacter(
  38958. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38959. {
  38960. side: {
  38961. height: math.unit(8, "feet"),
  38962. name: "Side",
  38963. image: {
  38964. source: "./media/characters/rezukii/side.svg",
  38965. extra: 979/542,
  38966. bottom: 87/1066
  38967. }
  38968. },
  38969. sitting: {
  38970. height: math.unit(14.6, "feet"),
  38971. name: "Sitting",
  38972. image: {
  38973. source: "./media/characters/rezukii/sitting.svg",
  38974. extra: 1023/813,
  38975. bottom: 45/1068
  38976. }
  38977. },
  38978. },
  38979. [
  38980. {
  38981. name: "Tiny",
  38982. height: math.unit(2, "feet")
  38983. },
  38984. {
  38985. name: "Smol",
  38986. height: math.unit(4, "feet")
  38987. },
  38988. {
  38989. name: "Normal",
  38990. height: math.unit(8, "feet"),
  38991. default: true
  38992. },
  38993. {
  38994. name: "Big",
  38995. height: math.unit(12, "feet")
  38996. },
  38997. {
  38998. name: "Macro",
  38999. height: math.unit(30, "feet")
  39000. },
  39001. ]
  39002. ))
  39003. characterMakers.push(() => makeCharacter(
  39004. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39005. {
  39006. front: {
  39007. height: math.unit(14, "feet"),
  39008. weight: math.unit(9.5, "tonnes"),
  39009. name: "Front",
  39010. image: {
  39011. source: "./media/characters/dawnheart/front.svg",
  39012. extra: 2792/2675,
  39013. bottom: 64/2856
  39014. }
  39015. },
  39016. },
  39017. [
  39018. {
  39019. name: "Normal",
  39020. height: math.unit(14, "feet"),
  39021. default: true
  39022. },
  39023. ]
  39024. ))
  39025. characterMakers.push(() => makeCharacter(
  39026. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39027. {
  39028. front: {
  39029. height: math.unit(1.7, "m"),
  39030. name: "Front",
  39031. image: {
  39032. source: "./media/characters/gladi/front.svg",
  39033. extra: 1460/1362,
  39034. bottom: 19/1479
  39035. }
  39036. },
  39037. back: {
  39038. height: math.unit(1.7, "m"),
  39039. name: "Back",
  39040. image: {
  39041. source: "./media/characters/gladi/back.svg",
  39042. extra: 1459/1357,
  39043. bottom: 12/1471
  39044. }
  39045. },
  39046. feral: {
  39047. height: math.unit(2.05, "m"),
  39048. name: "Feral",
  39049. image: {
  39050. source: "./media/characters/gladi/feral.svg",
  39051. extra: 821/557,
  39052. bottom: 91/912
  39053. }
  39054. },
  39055. },
  39056. [
  39057. {
  39058. name: "Shortest",
  39059. height: math.unit(70, "cm")
  39060. },
  39061. {
  39062. name: "Normal",
  39063. height: math.unit(1.7, "m")
  39064. },
  39065. {
  39066. name: "Macro",
  39067. height: math.unit(10, "m"),
  39068. default: true
  39069. },
  39070. {
  39071. name: "Tallest",
  39072. height: math.unit(200, "m")
  39073. },
  39074. ]
  39075. ))
  39076. characterMakers.push(() => makeCharacter(
  39077. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39078. {
  39079. front: {
  39080. height: math.unit(5 + 7/12, "feet"),
  39081. weight: math.unit(2, "tons"),
  39082. name: "Front",
  39083. image: {
  39084. source: "./media/characters/erdno/front.svg",
  39085. extra: 1234/1129,
  39086. bottom: 35/1269
  39087. }
  39088. },
  39089. angled: {
  39090. height: math.unit(5 + 7/12, "feet"),
  39091. weight: math.unit(2, "tons"),
  39092. name: "Angled",
  39093. image: {
  39094. source: "./media/characters/erdno/angled.svg",
  39095. extra: 1185/1139,
  39096. bottom: 36/1221
  39097. }
  39098. },
  39099. side: {
  39100. height: math.unit(5 + 7/12, "feet"),
  39101. weight: math.unit(2, "tons"),
  39102. name: "Side",
  39103. image: {
  39104. source: "./media/characters/erdno/side.svg",
  39105. extra: 1191/1144,
  39106. bottom: 40/1231
  39107. }
  39108. },
  39109. back: {
  39110. height: math.unit(5 + 7/12, "feet"),
  39111. weight: math.unit(2, "tons"),
  39112. name: "Back",
  39113. image: {
  39114. source: "./media/characters/erdno/back.svg",
  39115. extra: 1202/1146,
  39116. bottom: 17/1219
  39117. }
  39118. },
  39119. frontNsfw: {
  39120. height: math.unit(5 + 7/12, "feet"),
  39121. weight: math.unit(2, "tons"),
  39122. name: "Front (NSFW)",
  39123. image: {
  39124. source: "./media/characters/erdno/front-nsfw.svg",
  39125. extra: 1234/1129,
  39126. bottom: 35/1269
  39127. }
  39128. },
  39129. angledNsfw: {
  39130. height: math.unit(5 + 7/12, "feet"),
  39131. weight: math.unit(2, "tons"),
  39132. name: "Angled (NSFW)",
  39133. image: {
  39134. source: "./media/characters/erdno/angled-nsfw.svg",
  39135. extra: 1185/1139,
  39136. bottom: 36/1221
  39137. }
  39138. },
  39139. sideNsfw: {
  39140. height: math.unit(5 + 7/12, "feet"),
  39141. weight: math.unit(2, "tons"),
  39142. name: "Side (NSFW)",
  39143. image: {
  39144. source: "./media/characters/erdno/side-nsfw.svg",
  39145. extra: 1191/1144,
  39146. bottom: 40/1231
  39147. }
  39148. },
  39149. backNsfw: {
  39150. height: math.unit(5 + 7/12, "feet"),
  39151. weight: math.unit(2, "tons"),
  39152. name: "Back (NSFW)",
  39153. image: {
  39154. source: "./media/characters/erdno/back-nsfw.svg",
  39155. extra: 1202/1146,
  39156. bottom: 17/1219
  39157. }
  39158. },
  39159. frontHyper: {
  39160. height: math.unit(5 + 7/12, "feet"),
  39161. weight: math.unit(2, "tons"),
  39162. name: "Front (Hyper)",
  39163. image: {
  39164. source: "./media/characters/erdno/front-hyper.svg",
  39165. extra: 1298/1136,
  39166. bottom: 35/1333
  39167. }
  39168. },
  39169. },
  39170. [
  39171. {
  39172. name: "Normal",
  39173. height: math.unit(5 + 7/12, "feet"),
  39174. default: true
  39175. },
  39176. {
  39177. name: "Big",
  39178. height: math.unit(5.7, "meters")
  39179. },
  39180. {
  39181. name: "Macro",
  39182. height: math.unit(5.7, "kilometers")
  39183. },
  39184. {
  39185. name: "Megamacro",
  39186. height: math.unit(5.7, "earths")
  39187. },
  39188. ]
  39189. ))
  39190. characterMakers.push(() => makeCharacter(
  39191. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39192. {
  39193. front: {
  39194. height: math.unit(5 + 10/12, "feet"),
  39195. weight: math.unit(150, "lb"),
  39196. name: "Front",
  39197. image: {
  39198. source: "./media/characters/jamie/front.svg",
  39199. extra: 1908/1768,
  39200. bottom: 19/1927
  39201. }
  39202. },
  39203. },
  39204. [
  39205. {
  39206. name: "Minimum",
  39207. height: math.unit(2, "cm")
  39208. },
  39209. {
  39210. name: "Micro",
  39211. height: math.unit(3, "inches")
  39212. },
  39213. {
  39214. name: "Normal",
  39215. height: math.unit(5 + 10/12, "feet"),
  39216. default: true
  39217. },
  39218. {
  39219. name: "Macro",
  39220. height: math.unit(150, "feet")
  39221. },
  39222. {
  39223. name: "Megamacro",
  39224. height: math.unit(10000, "m")
  39225. },
  39226. ]
  39227. ))
  39228. characterMakers.push(() => makeCharacter(
  39229. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39230. {
  39231. front: {
  39232. height: math.unit(2, "meters"),
  39233. weight: math.unit(100, "kg"),
  39234. name: "Front",
  39235. image: {
  39236. source: "./media/characters/shiron/front.svg",
  39237. extra: 2103/1985,
  39238. bottom: 98/2201
  39239. }
  39240. },
  39241. back: {
  39242. height: math.unit(2, "meters"),
  39243. weight: math.unit(100, "kg"),
  39244. name: "Back",
  39245. image: {
  39246. source: "./media/characters/shiron/back.svg",
  39247. extra: 2110/2015,
  39248. bottom: 89/2199
  39249. }
  39250. },
  39251. hand: {
  39252. height: math.unit(0.96, "feet"),
  39253. name: "Hand",
  39254. image: {
  39255. source: "./media/characters/shiron/hand.svg"
  39256. }
  39257. },
  39258. foot: {
  39259. height: math.unit(1.464, "feet"),
  39260. name: "Foot",
  39261. image: {
  39262. source: "./media/characters/shiron/foot.svg"
  39263. }
  39264. },
  39265. },
  39266. [
  39267. {
  39268. name: "Normal",
  39269. height: math.unit(2, "meters")
  39270. },
  39271. {
  39272. name: "Macro",
  39273. height: math.unit(500, "meters"),
  39274. default: true
  39275. },
  39276. {
  39277. name: "Megamacro",
  39278. height: math.unit(20, "km")
  39279. },
  39280. ]
  39281. ))
  39282. characterMakers.push(() => makeCharacter(
  39283. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39284. {
  39285. front: {
  39286. height: math.unit(6, "feet"),
  39287. name: "Front",
  39288. image: {
  39289. source: "./media/characters/sam/front.svg",
  39290. extra: 849/826,
  39291. bottom: 19/868
  39292. }
  39293. },
  39294. },
  39295. [
  39296. {
  39297. name: "Normal",
  39298. height: math.unit(6, "feet"),
  39299. default: true
  39300. },
  39301. ]
  39302. ))
  39303. characterMakers.push(() => makeCharacter(
  39304. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39305. {
  39306. front: {
  39307. height: math.unit(8 + 4/12, "feet"),
  39308. weight: math.unit(122, "kg"),
  39309. name: "Front",
  39310. image: {
  39311. source: "./media/characters/namori-kurogawa/front.svg",
  39312. extra: 1894/1576,
  39313. bottom: 34/1928
  39314. }
  39315. },
  39316. },
  39317. [
  39318. {
  39319. name: "Normal",
  39320. height: math.unit(8 + 4/12, "feet"),
  39321. default: true
  39322. },
  39323. ]
  39324. ))
  39325. characterMakers.push(() => makeCharacter(
  39326. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39327. {
  39328. front: {
  39329. height: math.unit(9, "feet"),
  39330. weight: math.unit(621, "lb"),
  39331. name: "Front",
  39332. image: {
  39333. source: "./media/characters/unmru/front.svg",
  39334. extra: 1853/1747,
  39335. bottom: 73/1926
  39336. }
  39337. },
  39338. side: {
  39339. height: math.unit(9, "feet"),
  39340. weight: math.unit(621, "lb"),
  39341. name: "Side",
  39342. image: {
  39343. source: "./media/characters/unmru/side.svg",
  39344. extra: 1781/1671,
  39345. bottom: 127/1908
  39346. }
  39347. },
  39348. back: {
  39349. height: math.unit(9, "feet"),
  39350. weight: math.unit(621, "lb"),
  39351. name: "Back",
  39352. image: {
  39353. source: "./media/characters/unmru/back.svg",
  39354. extra: 1894/1765,
  39355. bottom: 75/1969
  39356. }
  39357. },
  39358. dick: {
  39359. height: math.unit(3, "feet"),
  39360. weight: math.unit(35, "lb"),
  39361. name: "Dick",
  39362. image: {
  39363. source: "./media/characters/unmru/dick.svg"
  39364. }
  39365. },
  39366. },
  39367. [
  39368. {
  39369. name: "Normal",
  39370. height: math.unit(9, "feet")
  39371. },
  39372. {
  39373. name: "Natural",
  39374. height: math.unit(27, "feet"),
  39375. default: true
  39376. },
  39377. {
  39378. name: "Giant",
  39379. height: math.unit(90, "feet")
  39380. },
  39381. {
  39382. name: "Kaiju",
  39383. height: math.unit(270, "feet")
  39384. },
  39385. {
  39386. name: "Macro",
  39387. height: math.unit(900, "feet")
  39388. },
  39389. {
  39390. name: "Macro+",
  39391. height: math.unit(2700, "feet")
  39392. },
  39393. {
  39394. name: "Megamacro",
  39395. height: math.unit(9000, "feet")
  39396. },
  39397. {
  39398. name: "City-Crushing",
  39399. height: math.unit(27000, "feet")
  39400. },
  39401. {
  39402. name: "Mountain-Mashing",
  39403. height: math.unit(90000, "feet")
  39404. },
  39405. {
  39406. name: "Earth-Eclipsing",
  39407. height: math.unit(2.7e8, "feet")
  39408. },
  39409. {
  39410. name: "Sol-Swallowing",
  39411. height: math.unit(9e10, "feet")
  39412. },
  39413. {
  39414. name: "Majoris-Munching",
  39415. height: math.unit(2.7e13, "feet")
  39416. },
  39417. ]
  39418. ))
  39419. characterMakers.push(() => makeCharacter(
  39420. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39421. {
  39422. front: {
  39423. height: math.unit(1, "inch"),
  39424. name: "Front",
  39425. image: {
  39426. source: "./media/characters/squeaks-mouse/front.svg",
  39427. extra: 352/308,
  39428. bottom: 25/377
  39429. }
  39430. },
  39431. },
  39432. [
  39433. {
  39434. name: "Micro",
  39435. height: math.unit(1, "inch"),
  39436. default: true
  39437. },
  39438. ]
  39439. ))
  39440. characterMakers.push(() => makeCharacter(
  39441. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39442. {
  39443. side: {
  39444. height: math.unit(35, "feet"),
  39445. name: "Side",
  39446. image: {
  39447. source: "./media/characters/sayko/side.svg",
  39448. extra: 1697/1021,
  39449. bottom: 82/1779
  39450. }
  39451. },
  39452. head: {
  39453. height: math.unit(16, "feet"),
  39454. name: "Head",
  39455. image: {
  39456. source: "./media/characters/sayko/head.svg"
  39457. }
  39458. },
  39459. forepaw: {
  39460. height: math.unit(7.85, "feet"),
  39461. name: "Forepaw",
  39462. image: {
  39463. source: "./media/characters/sayko/forepaw.svg"
  39464. }
  39465. },
  39466. hindpaw: {
  39467. height: math.unit(8.8, "feet"),
  39468. name: "Hindpaw",
  39469. image: {
  39470. source: "./media/characters/sayko/hindpaw.svg"
  39471. }
  39472. },
  39473. },
  39474. [
  39475. {
  39476. name: "Normal",
  39477. height: math.unit(35, "feet"),
  39478. default: true
  39479. },
  39480. {
  39481. name: "Colossus",
  39482. height: math.unit(100, "meters")
  39483. },
  39484. {
  39485. name: "\"Small\" Deity",
  39486. height: math.unit(1, "km")
  39487. },
  39488. {
  39489. name: "\"Large\" Deity",
  39490. height: math.unit(15, "km")
  39491. },
  39492. ]
  39493. ))
  39494. characterMakers.push(() => makeCharacter(
  39495. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39496. {
  39497. front: {
  39498. height: math.unit(6, "feet"),
  39499. weight: math.unit(250, "lb"),
  39500. name: "Front",
  39501. image: {
  39502. source: "./media/characters/mukiro/front.svg",
  39503. extra: 1368/1310,
  39504. bottom: 34/1402
  39505. }
  39506. },
  39507. },
  39508. [
  39509. {
  39510. name: "Normal",
  39511. height: math.unit(6, "feet"),
  39512. default: true
  39513. },
  39514. ]
  39515. ))
  39516. characterMakers.push(() => makeCharacter(
  39517. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39518. {
  39519. front: {
  39520. height: math.unit(12 + 4/12, "feet"),
  39521. name: "Front",
  39522. image: {
  39523. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39524. extra: 1346/1311,
  39525. bottom: 65/1411
  39526. }
  39527. },
  39528. },
  39529. [
  39530. {
  39531. name: "Base",
  39532. height: math.unit(12 + 4/12, "feet"),
  39533. default: true
  39534. },
  39535. {
  39536. name: "Macro",
  39537. height: math.unit(150, "feet")
  39538. },
  39539. {
  39540. name: "Mega",
  39541. height: math.unit(2, "miles")
  39542. },
  39543. {
  39544. name: "Demi God",
  39545. height: math.unit(4, "AU")
  39546. },
  39547. {
  39548. name: "God Size",
  39549. height: math.unit(1, "universe")
  39550. },
  39551. ]
  39552. ))
  39553. characterMakers.push(() => makeCharacter(
  39554. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39555. {
  39556. front: {
  39557. height: math.unit(3 + 3/12, "feet"),
  39558. weight: math.unit(88, "lb"),
  39559. name: "Front",
  39560. image: {
  39561. source: "./media/characters/trey/front.svg",
  39562. extra: 1815/1509,
  39563. bottom: 60/1875
  39564. }
  39565. },
  39566. },
  39567. [
  39568. {
  39569. name: "Normal",
  39570. height: math.unit(3 + 3/12, "feet"),
  39571. default: true
  39572. },
  39573. ]
  39574. ))
  39575. characterMakers.push(() => makeCharacter(
  39576. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39577. {
  39578. front: {
  39579. height: math.unit(4, "meters"),
  39580. name: "Front",
  39581. image: {
  39582. source: "./media/characters/adelonda/front.svg",
  39583. extra: 1077/982,
  39584. bottom: 39/1116
  39585. }
  39586. },
  39587. back: {
  39588. height: math.unit(4, "meters"),
  39589. name: "Back",
  39590. image: {
  39591. source: "./media/characters/adelonda/back.svg",
  39592. extra: 1105/1003,
  39593. bottom: 25/1130
  39594. }
  39595. },
  39596. feral: {
  39597. height: math.unit(40/1.5, "meters"),
  39598. name: "Feral",
  39599. image: {
  39600. source: "./media/characters/adelonda/feral.svg",
  39601. extra: 597/271,
  39602. bottom: 387/984
  39603. }
  39604. },
  39605. },
  39606. [
  39607. {
  39608. name: "Normal",
  39609. height: math.unit(4, "meters"),
  39610. default: true
  39611. },
  39612. ]
  39613. ))
  39614. characterMakers.push(() => makeCharacter(
  39615. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39616. {
  39617. front: {
  39618. height: math.unit(8 + 4/12, "feet"),
  39619. weight: math.unit(670, "lb"),
  39620. name: "Front",
  39621. image: {
  39622. source: "./media/characters/acadiel/front.svg",
  39623. extra: 1901/1595,
  39624. bottom: 142/2043
  39625. }
  39626. },
  39627. },
  39628. [
  39629. {
  39630. name: "Normal",
  39631. height: math.unit(8 + 4/12, "feet"),
  39632. default: true
  39633. },
  39634. {
  39635. name: "Macro",
  39636. height: math.unit(200, "feet")
  39637. },
  39638. ]
  39639. ))
  39640. characterMakers.push(() => makeCharacter(
  39641. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39642. {
  39643. front: {
  39644. height: math.unit(6 + 2/12, "feet"),
  39645. weight: math.unit(185, "lb"),
  39646. name: "Front",
  39647. image: {
  39648. source: "./media/characters/kayne-ein/front.svg",
  39649. extra: 1780/1560,
  39650. bottom: 81/1861
  39651. }
  39652. },
  39653. },
  39654. [
  39655. {
  39656. name: "Normal",
  39657. height: math.unit(6 + 2/12, "feet"),
  39658. default: true
  39659. },
  39660. {
  39661. name: "Transformation Stage",
  39662. height: math.unit(15, "feet")
  39663. },
  39664. {
  39665. name: "Macro",
  39666. height: math.unit(150, "feet")
  39667. },
  39668. {
  39669. name: "Earth's Shadow",
  39670. height: math.unit(6200, "miles")
  39671. },
  39672. {
  39673. name: "Universal Demon",
  39674. height: math.unit(28e9, "parsecs")
  39675. },
  39676. {
  39677. name: "Multiverse God",
  39678. height: math.unit(3, "multiverses")
  39679. },
  39680. ]
  39681. ))
  39682. characterMakers.push(() => makeCharacter(
  39683. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39684. {
  39685. front: {
  39686. height: math.unit(5 + 5/12, "feet"),
  39687. name: "Front",
  39688. image: {
  39689. source: "./media/characters/fawn/front.svg",
  39690. extra: 1873/1731,
  39691. bottom: 95/1968
  39692. }
  39693. },
  39694. back: {
  39695. height: math.unit(5 + 5/12, "feet"),
  39696. name: "Back",
  39697. image: {
  39698. source: "./media/characters/fawn/back.svg",
  39699. extra: 1813/1700,
  39700. bottom: 14/1827
  39701. }
  39702. },
  39703. hoof: {
  39704. height: math.unit(1.45, "feet"),
  39705. name: "Hoof",
  39706. image: {
  39707. source: "./media/characters/fawn/hoof.svg"
  39708. }
  39709. },
  39710. },
  39711. [
  39712. {
  39713. name: "Normal",
  39714. height: math.unit(5 + 5/12, "feet"),
  39715. default: true
  39716. },
  39717. ]
  39718. ))
  39719. characterMakers.push(() => makeCharacter(
  39720. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39721. {
  39722. front: {
  39723. height: math.unit(2 + 5/12, "feet"),
  39724. name: "Front",
  39725. image: {
  39726. source: "./media/characters/orion/front.svg",
  39727. extra: 1366/1304,
  39728. bottom: 43/1409
  39729. }
  39730. },
  39731. paw: {
  39732. height: math.unit(0.52, "feet"),
  39733. name: "Paw",
  39734. image: {
  39735. source: "./media/characters/orion/paw.svg"
  39736. }
  39737. },
  39738. },
  39739. [
  39740. {
  39741. name: "Normal",
  39742. height: math.unit(2 + 5/12, "feet"),
  39743. default: true
  39744. },
  39745. ]
  39746. ))
  39747. characterMakers.push(() => makeCharacter(
  39748. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39749. {
  39750. front: {
  39751. height: math.unit(5 + 10/12, "feet"),
  39752. name: "Front",
  39753. image: {
  39754. source: "./media/characters/vera/front.svg",
  39755. extra: 1680/1575,
  39756. bottom: 49/1729
  39757. }
  39758. },
  39759. back: {
  39760. height: math.unit(5 + 10/12, "feet"),
  39761. name: "Back",
  39762. image: {
  39763. source: "./media/characters/vera/back.svg",
  39764. extra: 1700/1588,
  39765. bottom: 18/1718
  39766. }
  39767. },
  39768. arcanine: {
  39769. height: math.unit(6 + 8/12, "feet"),
  39770. name: "Arcanine",
  39771. image: {
  39772. source: "./media/characters/vera/arcanine.svg",
  39773. extra: 1590/1511,
  39774. bottom: 71/1661
  39775. }
  39776. },
  39777. maw: {
  39778. height: math.unit(0.82, "feet"),
  39779. name: "Maw",
  39780. image: {
  39781. source: "./media/characters/vera/maw.svg"
  39782. }
  39783. },
  39784. mawArcanine: {
  39785. height: math.unit(0.97, "feet"),
  39786. name: "Maw (Arcanine)",
  39787. image: {
  39788. source: "./media/characters/vera/maw-arcanine.svg"
  39789. }
  39790. },
  39791. paw: {
  39792. height: math.unit(0.75, "feet"),
  39793. name: "Paw",
  39794. image: {
  39795. source: "./media/characters/vera/paw.svg"
  39796. }
  39797. },
  39798. pawprint: {
  39799. height: math.unit(0.52, "feet"),
  39800. name: "Pawprint",
  39801. image: {
  39802. source: "./media/characters/vera/pawprint.svg"
  39803. }
  39804. },
  39805. },
  39806. [
  39807. {
  39808. name: "Normal",
  39809. height: math.unit(5 + 10/12, "feet"),
  39810. default: true
  39811. },
  39812. {
  39813. name: "Macro",
  39814. height: math.unit(75, "feet")
  39815. },
  39816. ]
  39817. ))
  39818. characterMakers.push(() => makeCharacter(
  39819. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39820. {
  39821. front: {
  39822. height: math.unit(4, "feet"),
  39823. weight: math.unit(40, "lb"),
  39824. name: "Front",
  39825. image: {
  39826. source: "./media/characters/orvan-rabbit/front.svg",
  39827. extra: 1896/1642,
  39828. bottom: 29/1925
  39829. }
  39830. },
  39831. },
  39832. [
  39833. {
  39834. name: "Normal",
  39835. height: math.unit(4, "feet"),
  39836. default: true
  39837. },
  39838. ]
  39839. ))
  39840. characterMakers.push(() => makeCharacter(
  39841. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39842. {
  39843. front: {
  39844. height: math.unit(6, "feet"),
  39845. weight: math.unit(168, "lb"),
  39846. name: "Front",
  39847. image: {
  39848. source: "./media/characters/lisa/front.svg",
  39849. extra: 2065/1867,
  39850. bottom: 46/2111
  39851. }
  39852. },
  39853. back: {
  39854. height: math.unit(6, "feet"),
  39855. weight: math.unit(168, "lb"),
  39856. name: "Back",
  39857. image: {
  39858. source: "./media/characters/lisa/back.svg",
  39859. extra: 1982/1838,
  39860. bottom: 29/2011
  39861. }
  39862. },
  39863. maw: {
  39864. height: math.unit(0.81, "feet"),
  39865. name: "Maw",
  39866. image: {
  39867. source: "./media/characters/lisa/maw.svg"
  39868. }
  39869. },
  39870. paw: {
  39871. height: math.unit(0.9, "feet"),
  39872. name: "Paw",
  39873. image: {
  39874. source: "./media/characters/lisa/paw.svg"
  39875. }
  39876. },
  39877. caribousune: {
  39878. height: math.unit(7 + 2/12, "feet"),
  39879. weight: math.unit(268, "lb"),
  39880. name: "Caribousune",
  39881. image: {
  39882. source: "./media/characters/lisa/caribousune.svg",
  39883. extra: 1843/1633,
  39884. bottom: 29/1872
  39885. }
  39886. },
  39887. frontCaribousune: {
  39888. height: math.unit(7 + 2/12, "feet"),
  39889. weight: math.unit(268, "lb"),
  39890. name: "Front (Caribousune)",
  39891. image: {
  39892. source: "./media/characters/lisa/front-caribousune.svg",
  39893. extra: 1818/1638,
  39894. bottom: 52/1870
  39895. }
  39896. },
  39897. sideCaribousune: {
  39898. height: math.unit(7 + 2/12, "feet"),
  39899. weight: math.unit(268, "lb"),
  39900. name: "Side (Caribousune)",
  39901. image: {
  39902. source: "./media/characters/lisa/side-caribousune.svg",
  39903. extra: 1851/1635,
  39904. bottom: 16/1867
  39905. }
  39906. },
  39907. backCaribousune: {
  39908. height: math.unit(7 + 2/12, "feet"),
  39909. weight: math.unit(268, "lb"),
  39910. name: "Back (Caribousune)",
  39911. image: {
  39912. source: "./media/characters/lisa/back-caribousune.svg",
  39913. extra: 1801/1604,
  39914. bottom: 44/1845
  39915. }
  39916. },
  39917. caribou: {
  39918. height: math.unit(7 + 2/12, "feet"),
  39919. weight: math.unit(268, "lb"),
  39920. name: "Caribou",
  39921. image: {
  39922. source: "./media/characters/lisa/caribou.svg",
  39923. extra: 1843/1633,
  39924. bottom: 29/1872
  39925. }
  39926. },
  39927. frontCaribou: {
  39928. height: math.unit(7 + 2/12, "feet"),
  39929. weight: math.unit(268, "lb"),
  39930. name: "Front (Caribou)",
  39931. image: {
  39932. source: "./media/characters/lisa/front-caribou.svg",
  39933. extra: 1818/1638,
  39934. bottom: 52/1870
  39935. }
  39936. },
  39937. sideCaribou: {
  39938. height: math.unit(7 + 2/12, "feet"),
  39939. weight: math.unit(268, "lb"),
  39940. name: "Side (Caribou)",
  39941. image: {
  39942. source: "./media/characters/lisa/side-caribou.svg",
  39943. extra: 1851/1635,
  39944. bottom: 16/1867
  39945. }
  39946. },
  39947. backCaribou: {
  39948. height: math.unit(7 + 2/12, "feet"),
  39949. weight: math.unit(268, "lb"),
  39950. name: "Back (Caribou)",
  39951. image: {
  39952. source: "./media/characters/lisa/back-caribou.svg",
  39953. extra: 1801/1604,
  39954. bottom: 44/1845
  39955. }
  39956. },
  39957. mawCaribou: {
  39958. height: math.unit(1.45, "feet"),
  39959. name: "Maw (Caribou)",
  39960. image: {
  39961. source: "./media/characters/lisa/maw-caribou.svg"
  39962. }
  39963. },
  39964. mawCaribousune: {
  39965. height: math.unit(1.45, "feet"),
  39966. name: "Maw (Caribousune)",
  39967. image: {
  39968. source: "./media/characters/lisa/maw-caribousune.svg"
  39969. }
  39970. },
  39971. pawCaribousune: {
  39972. height: math.unit(1.61, "feet"),
  39973. name: "Paw (Caribou)",
  39974. image: {
  39975. source: "./media/characters/lisa/paw-caribousune.svg"
  39976. }
  39977. },
  39978. },
  39979. [
  39980. {
  39981. name: "Normal",
  39982. height: math.unit(6, "feet")
  39983. },
  39984. {
  39985. name: "God Size",
  39986. height: math.unit(72, "feet"),
  39987. default: true
  39988. },
  39989. {
  39990. name: "Towering",
  39991. height: math.unit(288, "feet")
  39992. },
  39993. {
  39994. name: "City Size",
  39995. height: math.unit(48384, "feet")
  39996. },
  39997. {
  39998. name: "Continental",
  39999. height: math.unit(4200, "miles")
  40000. },
  40001. {
  40002. name: "Planet Eater",
  40003. height: math.unit(42, "earths")
  40004. },
  40005. {
  40006. name: "Star Swallower",
  40007. height: math.unit(42, "solarradii")
  40008. },
  40009. {
  40010. name: "System Swallower",
  40011. height: math.unit(84000, "AU")
  40012. },
  40013. {
  40014. name: "Galaxy Gobbler",
  40015. height: math.unit(42, "galaxies")
  40016. },
  40017. {
  40018. name: "Universe Devourer",
  40019. height: math.unit(42, "universes")
  40020. },
  40021. {
  40022. name: "Multiverse Muncher",
  40023. height: math.unit(42, "multiverses")
  40024. },
  40025. ]
  40026. ))
  40027. characterMakers.push(() => makeCharacter(
  40028. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40029. {
  40030. front: {
  40031. height: math.unit(36, "feet"),
  40032. name: "Front",
  40033. image: {
  40034. source: "./media/characters/shadow-rat/front.svg",
  40035. extra: 1845/1758,
  40036. bottom: 83/1928
  40037. }
  40038. },
  40039. },
  40040. [
  40041. {
  40042. name: "Macro",
  40043. height: math.unit(36, "feet"),
  40044. default: true
  40045. },
  40046. ]
  40047. ))
  40048. characterMakers.push(() => makeCharacter(
  40049. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40050. {
  40051. side: {
  40052. height: math.unit(8, "feet"),
  40053. weight: math.unit(2630, "lb"),
  40054. name: "Side",
  40055. image: {
  40056. source: "./media/characters/torallia/side.svg",
  40057. extra: 2164/2021,
  40058. bottom: 371/2535
  40059. }
  40060. },
  40061. },
  40062. [
  40063. {
  40064. name: "Mortal Interaction",
  40065. height: math.unit(8, "feet")
  40066. },
  40067. {
  40068. name: "Natural",
  40069. height: math.unit(24, "feet"),
  40070. default: true
  40071. },
  40072. {
  40073. name: "Giant",
  40074. height: math.unit(80, "feet")
  40075. },
  40076. {
  40077. name: "Kaiju",
  40078. height: math.unit(240, "feet")
  40079. },
  40080. {
  40081. name: "Macro",
  40082. height: math.unit(800, "feet")
  40083. },
  40084. {
  40085. name: "Macro+",
  40086. height: math.unit(2400, "feet")
  40087. },
  40088. {
  40089. name: "Macro++",
  40090. height: math.unit(8000, "feet")
  40091. },
  40092. {
  40093. name: "City-Crushing",
  40094. height: math.unit(24000, "feet")
  40095. },
  40096. {
  40097. name: "Mountain-Mashing",
  40098. height: math.unit(80000, "feet")
  40099. },
  40100. {
  40101. name: "District Demolisher",
  40102. height: math.unit(240000, "feet")
  40103. },
  40104. {
  40105. name: "Tri-County Terror",
  40106. height: math.unit(800000, "feet")
  40107. },
  40108. {
  40109. name: "State Smasher",
  40110. height: math.unit(2.4e6, "feet")
  40111. },
  40112. {
  40113. name: "Nation Nemesis",
  40114. height: math.unit(8e6, "feet")
  40115. },
  40116. {
  40117. name: "Continent Cracker",
  40118. height: math.unit(2.4e7, "feet")
  40119. },
  40120. {
  40121. name: "Planet-Pillaging",
  40122. height: math.unit(8e7, "feet")
  40123. },
  40124. {
  40125. name: "Earth-Eclipsing",
  40126. height: math.unit(2.4e8, "feet")
  40127. },
  40128. {
  40129. name: "Jovian-Jostling",
  40130. height: math.unit(8e8, "feet")
  40131. },
  40132. {
  40133. name: "Gas Giant Gulper",
  40134. height: math.unit(2.4e9, "feet")
  40135. },
  40136. {
  40137. name: "Astral Annihilator",
  40138. height: math.unit(8e9, "feet")
  40139. },
  40140. {
  40141. name: "Celestial Conqueror",
  40142. height: math.unit(2.4e10, "feet")
  40143. },
  40144. {
  40145. name: "Sol-Swallowing",
  40146. height: math.unit(8e10, "feet")
  40147. },
  40148. {
  40149. name: "Hunter of the Heavens",
  40150. height: math.unit(2.4e13, "feet")
  40151. },
  40152. ]
  40153. ))
  40154. characterMakers.push(() => makeCharacter(
  40155. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40156. {
  40157. front: {
  40158. height: math.unit(6 + 8/12, "feet"),
  40159. weight: math.unit(250, "kilograms"),
  40160. volume: math.unit(28, "liters"),
  40161. name: "Front",
  40162. image: {
  40163. source: "./media/characters/rebecca-pawlson/front.svg",
  40164. extra: 1737/1596,
  40165. bottom: 107/1844
  40166. }
  40167. },
  40168. back: {
  40169. height: math.unit(6 + 8/12, "feet"),
  40170. weight: math.unit(250, "kilograms"),
  40171. volume: math.unit(28, "liters"),
  40172. name: "Back",
  40173. image: {
  40174. source: "./media/characters/rebecca-pawlson/back.svg",
  40175. extra: 1702/1523,
  40176. bottom: 86/1788
  40177. }
  40178. },
  40179. },
  40180. [
  40181. {
  40182. name: "Normal",
  40183. height: math.unit(6 + 8/12, "feet")
  40184. },
  40185. {
  40186. name: "Mini Macro",
  40187. height: math.unit(10, "feet"),
  40188. default: true
  40189. },
  40190. {
  40191. name: "Macro",
  40192. height: math.unit(100, "feet")
  40193. },
  40194. {
  40195. name: "Mega Macro",
  40196. height: math.unit(2500, "feet")
  40197. },
  40198. {
  40199. name: "Giga Macro",
  40200. height: math.unit(50, "miles")
  40201. },
  40202. ]
  40203. ))
  40204. characterMakers.push(() => makeCharacter(
  40205. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40206. {
  40207. front: {
  40208. height: math.unit(7 + 6/12, "feet"),
  40209. weight: math.unit(600, "lb"),
  40210. name: "Front",
  40211. image: {
  40212. source: "./media/characters/moxie-nova/front.svg",
  40213. extra: 1734/1652,
  40214. bottom: 41/1775
  40215. }
  40216. },
  40217. },
  40218. [
  40219. {
  40220. name: "Normal",
  40221. height: math.unit(7 + 6/12, "feet"),
  40222. default: true
  40223. },
  40224. ]
  40225. ))
  40226. characterMakers.push(() => makeCharacter(
  40227. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40228. {
  40229. goat: {
  40230. height: math.unit(4, "feet"),
  40231. weight: math.unit(180, "lb"),
  40232. name: "Goat",
  40233. image: {
  40234. source: "./media/characters/tiffany/goat.svg",
  40235. extra: 1845/1595,
  40236. bottom: 106/1951
  40237. }
  40238. },
  40239. front: {
  40240. height: math.unit(5, "feet"),
  40241. weight: math.unit(150, "lb"),
  40242. name: "Foxcoon",
  40243. image: {
  40244. source: "./media/characters/tiffany/foxcoon.svg",
  40245. extra: 1941/1845,
  40246. bottom: 58/1999
  40247. }
  40248. },
  40249. },
  40250. [
  40251. {
  40252. name: "Normal",
  40253. height: math.unit(5, "feet"),
  40254. default: true
  40255. },
  40256. ]
  40257. ))
  40258. characterMakers.push(() => makeCharacter(
  40259. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40260. {
  40261. front: {
  40262. height: math.unit(8, "feet"),
  40263. weight: math.unit(300, "lb"),
  40264. name: "Front",
  40265. image: {
  40266. source: "./media/characters/raxinath/front.svg",
  40267. extra: 1407/1309,
  40268. bottom: 39/1446
  40269. }
  40270. },
  40271. back: {
  40272. height: math.unit(8, "feet"),
  40273. weight: math.unit(300, "lb"),
  40274. name: "Back",
  40275. image: {
  40276. source: "./media/characters/raxinath/back.svg",
  40277. extra: 1405/1315,
  40278. bottom: 9/1414
  40279. }
  40280. },
  40281. },
  40282. [
  40283. {
  40284. name: "Speck",
  40285. height: math.unit(0.5, "nm")
  40286. },
  40287. {
  40288. name: "Micro",
  40289. height: math.unit(3, "inches")
  40290. },
  40291. {
  40292. name: "Kobold",
  40293. height: math.unit(3, "feet")
  40294. },
  40295. {
  40296. name: "Normal",
  40297. height: math.unit(8, "feet"),
  40298. default: true
  40299. },
  40300. {
  40301. name: "Giant",
  40302. height: math.unit(50, "feet")
  40303. },
  40304. {
  40305. name: "Macro",
  40306. height: math.unit(1000, "feet")
  40307. },
  40308. {
  40309. name: "Megamacro",
  40310. height: math.unit(1, "mile")
  40311. },
  40312. ]
  40313. ))
  40314. characterMakers.push(() => makeCharacter(
  40315. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40316. {
  40317. front: {
  40318. height: math.unit(10, "feet"),
  40319. weight: math.unit(1442, "lb"),
  40320. name: "Front",
  40321. image: {
  40322. source: "./media/characters/mal-dragon/front.svg",
  40323. extra: 1515/1444,
  40324. bottom: 113/1628
  40325. }
  40326. },
  40327. back: {
  40328. height: math.unit(10, "feet"),
  40329. weight: math.unit(1442, "lb"),
  40330. name: "Back",
  40331. image: {
  40332. source: "./media/characters/mal-dragon/back.svg",
  40333. extra: 1527/1434,
  40334. bottom: 25/1552
  40335. }
  40336. },
  40337. },
  40338. [
  40339. {
  40340. name: "Mortal Interaction",
  40341. height: math.unit(10, "feet"),
  40342. default: true
  40343. },
  40344. {
  40345. name: "Large",
  40346. height: math.unit(30, "feet")
  40347. },
  40348. {
  40349. name: "Kaiju",
  40350. height: math.unit(300, "feet")
  40351. },
  40352. {
  40353. name: "Megamacro",
  40354. height: math.unit(10000, "feet")
  40355. },
  40356. {
  40357. name: "Continent Cracker",
  40358. height: math.unit(30000000, "feet")
  40359. },
  40360. {
  40361. name: "Sol-Swallowing",
  40362. height: math.unit(1e11, "feet")
  40363. },
  40364. {
  40365. name: "Light Universal",
  40366. height: math.unit(5, "universes")
  40367. },
  40368. {
  40369. name: "Universe Atoms",
  40370. height: math.unit(1.829e9, "universes")
  40371. },
  40372. {
  40373. name: "Light Multiversal",
  40374. height: math.unit(5, "multiverses")
  40375. },
  40376. {
  40377. name: "Multiverse Atoms",
  40378. height: math.unit(1.829e9, "multiverses")
  40379. },
  40380. {
  40381. name: "Fabric of Time",
  40382. height: math.unit(1e262, "multiverses")
  40383. },
  40384. ]
  40385. ))
  40386. characterMakers.push(() => makeCharacter(
  40387. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40388. {
  40389. front: {
  40390. height: math.unit(9, "feet"),
  40391. weight: math.unit(1050, "lb"),
  40392. name: "Front",
  40393. image: {
  40394. source: "./media/characters/tabitha/front.svg",
  40395. extra: 2083/1994,
  40396. bottom: 68/2151
  40397. }
  40398. },
  40399. },
  40400. [
  40401. {
  40402. name: "Baseline",
  40403. height: math.unit(9, "feet"),
  40404. default: true
  40405. },
  40406. {
  40407. name: "Giant",
  40408. height: math.unit(90, "feet")
  40409. },
  40410. {
  40411. name: "Macro",
  40412. height: math.unit(900, "feet")
  40413. },
  40414. {
  40415. name: "Megamacro",
  40416. height: math.unit(9000, "feet")
  40417. },
  40418. {
  40419. name: "City-Crushing",
  40420. height: math.unit(27000, "feet")
  40421. },
  40422. {
  40423. name: "Mountain-Mashing",
  40424. height: math.unit(90000, "feet")
  40425. },
  40426. {
  40427. name: "Nation Nemesis",
  40428. height: math.unit(9e6, "feet")
  40429. },
  40430. {
  40431. name: "Continent Cracker",
  40432. height: math.unit(27e6, "feet")
  40433. },
  40434. {
  40435. name: "Earth-Eclipsing",
  40436. height: math.unit(2.7e8, "feet")
  40437. },
  40438. {
  40439. name: "Gas Giant Gulper",
  40440. height: math.unit(2.7e9, "feet")
  40441. },
  40442. {
  40443. name: "Sol-Swallowing",
  40444. height: math.unit(9e10, "feet")
  40445. },
  40446. {
  40447. name: "Galaxy Gulper",
  40448. height: math.unit(9, "galaxies")
  40449. },
  40450. {
  40451. name: "Cosmos Churner",
  40452. height: math.unit(9, "universes")
  40453. },
  40454. ]
  40455. ))
  40456. characterMakers.push(() => makeCharacter(
  40457. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40458. {
  40459. front: {
  40460. height: math.unit(160, "cm"),
  40461. weight: math.unit(55, "kg"),
  40462. name: "Front",
  40463. image: {
  40464. source: "./media/characters/tow/front.svg",
  40465. extra: 1751/1722,
  40466. bottom: 74/1825
  40467. }
  40468. },
  40469. },
  40470. [
  40471. {
  40472. name: "Norm",
  40473. height: math.unit(160, "cm")
  40474. },
  40475. {
  40476. name: "Casual",
  40477. height: math.unit(3200, "m"),
  40478. default: true
  40479. },
  40480. {
  40481. name: "Show-Off",
  40482. height: math.unit(160, "km")
  40483. },
  40484. ]
  40485. ))
  40486. characterMakers.push(() => makeCharacter(
  40487. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40488. {
  40489. front: {
  40490. height: math.unit(7 + 11/12, "feet"),
  40491. weight: math.unit(342.8, "lb"),
  40492. name: "Front",
  40493. image: {
  40494. source: "./media/characters/vivian-orca-dragon/front.svg",
  40495. extra: 1890/1865,
  40496. bottom: 28/1918
  40497. }
  40498. },
  40499. },
  40500. [
  40501. {
  40502. name: "Micro",
  40503. height: math.unit(5, "inches")
  40504. },
  40505. {
  40506. name: "Normal",
  40507. height: math.unit(7 + 11/12, "feet"),
  40508. default: true
  40509. },
  40510. {
  40511. name: "Macro",
  40512. height: math.unit(395 + 7/12, "feet")
  40513. },
  40514. ]
  40515. ))
  40516. characterMakers.push(() => makeCharacter(
  40517. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40518. {
  40519. side: {
  40520. height: math.unit(10, "feet"),
  40521. weight: math.unit(1442, "lb"),
  40522. name: "Side",
  40523. image: {
  40524. source: "./media/characters/lotherakon/side.svg",
  40525. extra: 1604/1497,
  40526. bottom: 89/1693
  40527. }
  40528. },
  40529. },
  40530. [
  40531. {
  40532. name: "Mortal Interaction",
  40533. height: math.unit(10, "feet")
  40534. },
  40535. {
  40536. name: "Large",
  40537. height: math.unit(30, "feet"),
  40538. default: true
  40539. },
  40540. {
  40541. name: "Giant",
  40542. height: math.unit(100, "feet")
  40543. },
  40544. {
  40545. name: "Kaiju",
  40546. height: math.unit(300, "feet")
  40547. },
  40548. {
  40549. name: "Macro",
  40550. height: math.unit(1000, "feet")
  40551. },
  40552. {
  40553. name: "Macro+",
  40554. height: math.unit(3000, "feet")
  40555. },
  40556. {
  40557. name: "Megamacro",
  40558. height: math.unit(10000, "feet")
  40559. },
  40560. {
  40561. name: "City-Crushing",
  40562. height: math.unit(30000, "feet")
  40563. },
  40564. {
  40565. name: "Continent Cracker",
  40566. height: math.unit(30e6, "feet")
  40567. },
  40568. {
  40569. name: "Earth Eclipsing",
  40570. height: math.unit(3e8, "feet")
  40571. },
  40572. {
  40573. name: "Gas Giant Gulper",
  40574. height: math.unit(3e9, "feet")
  40575. },
  40576. {
  40577. name: "Sol-Swallowing",
  40578. height: math.unit(1e11, "feet")
  40579. },
  40580. {
  40581. name: "System Swallower",
  40582. height: math.unit(3e14, "feet")
  40583. },
  40584. {
  40585. name: "Galaxy Gulper",
  40586. height: math.unit(10, "galaxies")
  40587. },
  40588. {
  40589. name: "Light Universal",
  40590. height: math.unit(5, "universes")
  40591. },
  40592. {
  40593. name: "Universe Palm",
  40594. height: math.unit(20, "universes")
  40595. },
  40596. {
  40597. name: "Light Multiversal",
  40598. height: math.unit(5, "multiverses")
  40599. },
  40600. {
  40601. name: "Multiverse Palm",
  40602. height: math.unit(20, "multiverses")
  40603. },
  40604. {
  40605. name: "Inferno Incarnate",
  40606. height: math.unit(1e7, "multiverses")
  40607. },
  40608. ]
  40609. ))
  40610. characterMakers.push(() => makeCharacter(
  40611. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40612. {
  40613. front: {
  40614. height: math.unit(8, "feet"),
  40615. weight: math.unit(1200, "lb"),
  40616. name: "Front",
  40617. image: {
  40618. source: "./media/characters/malithee/front.svg",
  40619. extra: 1675/1640,
  40620. bottom: 162/1837
  40621. }
  40622. },
  40623. },
  40624. [
  40625. {
  40626. name: "Mortal Interaction",
  40627. height: math.unit(8, "feet"),
  40628. default: true
  40629. },
  40630. {
  40631. name: "Large",
  40632. height: math.unit(24, "feet")
  40633. },
  40634. {
  40635. name: "Kaiju",
  40636. height: math.unit(240, "feet")
  40637. },
  40638. {
  40639. name: "Megamacro",
  40640. height: math.unit(8000, "feet")
  40641. },
  40642. {
  40643. name: "Continent Cracker",
  40644. height: math.unit(24e6, "feet")
  40645. },
  40646. {
  40647. name: "Earth-Eclipsing",
  40648. height: math.unit(2.4e8, "feet")
  40649. },
  40650. {
  40651. name: "Sol-Swallowing",
  40652. height: math.unit(8e10, "feet")
  40653. },
  40654. {
  40655. name: "Galaxy Gulper",
  40656. height: math.unit(8, "galaxies")
  40657. },
  40658. {
  40659. name: "Light Universal",
  40660. height: math.unit(4, "universes")
  40661. },
  40662. {
  40663. name: "Universe Atoms",
  40664. height: math.unit(1.829e9, "universes")
  40665. },
  40666. {
  40667. name: "Light Multiversal",
  40668. height: math.unit(4, "multiverses")
  40669. },
  40670. {
  40671. name: "Multiverse Atoms",
  40672. height: math.unit(1.829e9, "multiverses")
  40673. },
  40674. {
  40675. name: "Nigh-Omnipresence",
  40676. height: math.unit(8e261, "multiverses")
  40677. },
  40678. ]
  40679. ))
  40680. characterMakers.push(() => makeCharacter(
  40681. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40682. {
  40683. front: {
  40684. height: math.unit(10, "feet"),
  40685. weight: math.unit(1500, "lb"),
  40686. name: "Front",
  40687. image: {
  40688. source: "./media/characters/miles-thestia/front.svg",
  40689. extra: 1812/1727,
  40690. bottom: 86/1898
  40691. }
  40692. },
  40693. back: {
  40694. height: math.unit(10, "feet"),
  40695. weight: math.unit(1500, "lb"),
  40696. name: "Back",
  40697. image: {
  40698. source: "./media/characters/miles-thestia/back.svg",
  40699. extra: 1799/1690,
  40700. bottom: 47/1846
  40701. }
  40702. },
  40703. frontNsfw: {
  40704. height: math.unit(10, "feet"),
  40705. weight: math.unit(1500, "lb"),
  40706. name: "Front (NSFW)",
  40707. image: {
  40708. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40709. extra: 1812/1727,
  40710. bottom: 86/1898
  40711. }
  40712. },
  40713. },
  40714. [
  40715. {
  40716. name: "Mini-Macro",
  40717. height: math.unit(10, "feet"),
  40718. default: true
  40719. },
  40720. ]
  40721. ))
  40722. characterMakers.push(() => makeCharacter(
  40723. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40724. {
  40725. front: {
  40726. height: math.unit(25, "feet"),
  40727. name: "Front",
  40728. image: {
  40729. source: "./media/characters/titan-s-wulf/front.svg",
  40730. extra: 1560/1484,
  40731. bottom: 76/1636
  40732. }
  40733. },
  40734. },
  40735. [
  40736. {
  40737. name: "Smallest",
  40738. height: math.unit(25, "feet"),
  40739. default: true
  40740. },
  40741. {
  40742. name: "Normal",
  40743. height: math.unit(200, "feet")
  40744. },
  40745. {
  40746. name: "Macro",
  40747. height: math.unit(200000, "feet")
  40748. },
  40749. {
  40750. name: "Multiversal Original",
  40751. height: math.unit(10000, "multiverses")
  40752. },
  40753. ]
  40754. ))
  40755. characterMakers.push(() => makeCharacter(
  40756. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40757. {
  40758. front: {
  40759. height: math.unit(8, "feet"),
  40760. weight: math.unit(553, "lb"),
  40761. name: "Front",
  40762. image: {
  40763. source: "./media/characters/tawendeh/front.svg",
  40764. extra: 2365/2268,
  40765. bottom: 83/2448
  40766. }
  40767. },
  40768. frontClothed: {
  40769. height: math.unit(8, "feet"),
  40770. weight: math.unit(553, "lb"),
  40771. name: "Front (Clothed)",
  40772. image: {
  40773. source: "./media/characters/tawendeh/front-clothed.svg",
  40774. extra: 2365/2268,
  40775. bottom: 83/2448
  40776. }
  40777. },
  40778. back: {
  40779. height: math.unit(8, "feet"),
  40780. weight: math.unit(553, "lb"),
  40781. name: "Back",
  40782. image: {
  40783. source: "./media/characters/tawendeh/back.svg",
  40784. extra: 2397/2294,
  40785. bottom: 42/2439
  40786. }
  40787. },
  40788. },
  40789. [
  40790. {
  40791. name: "Mortal Interaction",
  40792. height: math.unit(8, "feet"),
  40793. default: true
  40794. },
  40795. {
  40796. name: "Giant",
  40797. height: math.unit(80, "feet")
  40798. },
  40799. {
  40800. name: "Macro",
  40801. height: math.unit(800, "feet")
  40802. },
  40803. {
  40804. name: "Megamacro",
  40805. height: math.unit(8000, "feet")
  40806. },
  40807. {
  40808. name: "City-Crushing",
  40809. height: math.unit(24000, "feet")
  40810. },
  40811. {
  40812. name: "Mountain-Mashing",
  40813. height: math.unit(80000, "feet")
  40814. },
  40815. {
  40816. name: "Nation Nemesis",
  40817. height: math.unit(8e6, "feet")
  40818. },
  40819. {
  40820. name: "Continent Cracker",
  40821. height: math.unit(24e6, "feet")
  40822. },
  40823. {
  40824. name: "Earth-Eclipsing",
  40825. height: math.unit(2.4e8, "feet")
  40826. },
  40827. {
  40828. name: "Gas Giant Gulper",
  40829. height: math.unit(2.4e9, "feet")
  40830. },
  40831. {
  40832. name: "Sol-Swallowing",
  40833. height: math.unit(8e10, "feet")
  40834. },
  40835. {
  40836. name: "Galaxy Gulper",
  40837. height: math.unit(8, "galaxies")
  40838. },
  40839. {
  40840. name: "Cosmos Churner",
  40841. height: math.unit(8, "universes")
  40842. },
  40843. {
  40844. name: "Omnipotent Otter",
  40845. height: math.unit(80, "universes")
  40846. },
  40847. ]
  40848. ))
  40849. characterMakers.push(() => makeCharacter(
  40850. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40851. {
  40852. front: {
  40853. height: math.unit(2.6, "meters"),
  40854. weight: math.unit(900, "kg"),
  40855. name: "Front",
  40856. image: {
  40857. source: "./media/characters/neesha/front.svg",
  40858. extra: 1803/1653,
  40859. bottom: 128/1931
  40860. }
  40861. },
  40862. },
  40863. [
  40864. {
  40865. name: "Normal",
  40866. height: math.unit(2.6, "meters"),
  40867. default: true
  40868. },
  40869. {
  40870. name: "Macro",
  40871. height: math.unit(50, "meters")
  40872. },
  40873. ]
  40874. ))
  40875. characterMakers.push(() => makeCharacter(
  40876. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40877. {
  40878. front: {
  40879. height: math.unit(5, "feet"),
  40880. weight: math.unit(185, "lb"),
  40881. name: "Front",
  40882. image: {
  40883. source: "./media/characters/kyera/front.svg",
  40884. extra: 1875/1790,
  40885. bottom: 96/1971
  40886. }
  40887. },
  40888. },
  40889. [
  40890. {
  40891. name: "Normal",
  40892. height: math.unit(5, "feet"),
  40893. default: true
  40894. },
  40895. ]
  40896. ))
  40897. characterMakers.push(() => makeCharacter(
  40898. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40899. {
  40900. front: {
  40901. height: math.unit(7 + 6/12, "feet"),
  40902. weight: math.unit(540, "lb"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/yuko/front.svg",
  40906. extra: 1282/1222,
  40907. bottom: 101/1383
  40908. }
  40909. },
  40910. frontClothed: {
  40911. height: math.unit(7 + 6/12, "feet"),
  40912. weight: math.unit(540, "lb"),
  40913. name: "Front (Clothed)",
  40914. image: {
  40915. source: "./media/characters/yuko/front-clothed.svg",
  40916. extra: 1282/1222,
  40917. bottom: 101/1383
  40918. }
  40919. },
  40920. },
  40921. [
  40922. {
  40923. name: "Normal",
  40924. height: math.unit(7 + 6/12, "feet"),
  40925. default: true
  40926. },
  40927. {
  40928. name: "Macro",
  40929. height: math.unit(26 + 9/12, "feet")
  40930. },
  40931. {
  40932. name: "Megamacro",
  40933. height: math.unit(300, "feet")
  40934. },
  40935. {
  40936. name: "Gigamacro",
  40937. height: math.unit(5000, "feet")
  40938. },
  40939. {
  40940. name: "Planetary",
  40941. height: math.unit(10000, "miles")
  40942. },
  40943. ]
  40944. ))
  40945. characterMakers.push(() => makeCharacter(
  40946. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40947. {
  40948. front: {
  40949. height: math.unit(8 + 2/12, "feet"),
  40950. weight: math.unit(600, "lb"),
  40951. name: "Front",
  40952. image: {
  40953. source: "./media/characters/deam-nitrel/front.svg",
  40954. extra: 1308/1234,
  40955. bottom: 125/1433
  40956. }
  40957. },
  40958. },
  40959. [
  40960. {
  40961. name: "Normal",
  40962. height: math.unit(8 + 2/12, "feet"),
  40963. default: true
  40964. },
  40965. ]
  40966. ))
  40967. characterMakers.push(() => makeCharacter(
  40968. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40969. {
  40970. front: {
  40971. height: math.unit(6.1, "feet"),
  40972. weight: math.unit(180, "lb"),
  40973. name: "Front",
  40974. image: {
  40975. source: "./media/characters/skyress/front.svg",
  40976. extra: 1045/915,
  40977. bottom: 28/1073
  40978. }
  40979. },
  40980. maw: {
  40981. height: math.unit(1, "feet"),
  40982. name: "Maw",
  40983. image: {
  40984. source: "./media/characters/skyress/maw.svg"
  40985. }
  40986. },
  40987. },
  40988. [
  40989. {
  40990. name: "Normal",
  40991. height: math.unit(6.1, "feet"),
  40992. default: true
  40993. },
  40994. {
  40995. name: "Macro",
  40996. height: math.unit(200, "feet")
  40997. },
  40998. ]
  40999. ))
  41000. characterMakers.push(() => makeCharacter(
  41001. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41002. {
  41003. front: {
  41004. height: math.unit(4 + 2/12, "feet"),
  41005. weight: math.unit(40, "kg"),
  41006. name: "Front",
  41007. image: {
  41008. source: "./media/characters/amethyst-jones/front.svg",
  41009. extra: 1220/1150,
  41010. bottom: 101/1321
  41011. }
  41012. },
  41013. },
  41014. [
  41015. {
  41016. name: "Normal",
  41017. height: math.unit(4 + 2/12, "feet"),
  41018. default: true
  41019. },
  41020. ]
  41021. ))
  41022. characterMakers.push(() => makeCharacter(
  41023. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41024. {
  41025. front: {
  41026. height: math.unit(1.7, "m"),
  41027. weight: math.unit(135, "lb"),
  41028. name: "Front",
  41029. image: {
  41030. source: "./media/characters/jade/front.svg",
  41031. extra: 1818/1767,
  41032. bottom: 32/1850
  41033. }
  41034. },
  41035. back: {
  41036. height: math.unit(1.7, "m"),
  41037. weight: math.unit(135, "lb"),
  41038. name: "Back",
  41039. image: {
  41040. source: "./media/characters/jade/back.svg",
  41041. extra: 1869/1809,
  41042. bottom: 35/1904
  41043. }
  41044. },
  41045. hand: {
  41046. height: math.unit(0.24, "m"),
  41047. name: "Hand",
  41048. image: {
  41049. source: "./media/characters/jade/hand.svg"
  41050. }
  41051. },
  41052. foot: {
  41053. height: math.unit(0.263, "m"),
  41054. name: "Foot",
  41055. image: {
  41056. source: "./media/characters/jade/foot.svg"
  41057. }
  41058. },
  41059. dick: {
  41060. height: math.unit(0.47, "m"),
  41061. name: "Dick",
  41062. image: {
  41063. source: "./media/characters/jade/dick.svg"
  41064. }
  41065. },
  41066. },
  41067. [
  41068. {
  41069. name: "Micro",
  41070. height: math.unit(22, "cm")
  41071. },
  41072. {
  41073. name: "Normal",
  41074. height: math.unit(1.7, "m"),
  41075. default: true
  41076. },
  41077. {
  41078. name: "Macro",
  41079. height: math.unit(152, "m")
  41080. },
  41081. ]
  41082. ))
  41083. characterMakers.push(() => makeCharacter(
  41084. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41085. {
  41086. front: {
  41087. height: math.unit(100, "miles"),
  41088. weight: math.unit(20000, "tons"),
  41089. name: "Front",
  41090. image: {
  41091. source: "./media/characters/cookie/front.svg",
  41092. extra: 1125/1070,
  41093. bottom: 30/1155
  41094. }
  41095. },
  41096. },
  41097. [
  41098. {
  41099. name: "Big",
  41100. height: math.unit(50, "feet")
  41101. },
  41102. {
  41103. name: "Macro",
  41104. height: math.unit(100, "miles"),
  41105. default: true
  41106. },
  41107. {
  41108. name: "Megamacro",
  41109. height: math.unit(90000, "miles")
  41110. },
  41111. ]
  41112. ))
  41113. characterMakers.push(() => makeCharacter(
  41114. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41115. {
  41116. front: {
  41117. height: math.unit(6, "feet"),
  41118. weight: math.unit(145, "lb"),
  41119. name: "Front",
  41120. image: {
  41121. source: "./media/characters/farzian/front.svg",
  41122. extra: 1902/1693,
  41123. bottom: 108/2010
  41124. }
  41125. },
  41126. },
  41127. [
  41128. {
  41129. name: "Macro",
  41130. height: math.unit(500, "feet"),
  41131. default: true
  41132. },
  41133. ]
  41134. ))
  41135. characterMakers.push(() => makeCharacter(
  41136. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41137. {
  41138. front: {
  41139. height: math.unit(3 + 6/12, "feet"),
  41140. weight: math.unit(50, "lb"),
  41141. name: "Front",
  41142. image: {
  41143. source: "./media/characters/kimberly-tilson/front.svg",
  41144. extra: 1400/1322,
  41145. bottom: 36/1436
  41146. }
  41147. },
  41148. back: {
  41149. height: math.unit(3 + 6/12, "feet"),
  41150. weight: math.unit(50, "lb"),
  41151. name: "Back",
  41152. image: {
  41153. source: "./media/characters/kimberly-tilson/back.svg",
  41154. extra: 1370/1307,
  41155. bottom: 20/1390
  41156. }
  41157. },
  41158. },
  41159. [
  41160. {
  41161. name: "Normal",
  41162. height: math.unit(3 + 6/12, "feet"),
  41163. default: true
  41164. },
  41165. ]
  41166. ))
  41167. characterMakers.push(() => makeCharacter(
  41168. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41169. {
  41170. front: {
  41171. height: math.unit(1148, "feet"),
  41172. weight: math.unit(34057, "lb"),
  41173. name: "Front",
  41174. image: {
  41175. source: "./media/characters/harthos/front.svg",
  41176. extra: 1391/1339,
  41177. bottom: 13/1404
  41178. }
  41179. },
  41180. },
  41181. [
  41182. {
  41183. name: "Macro",
  41184. height: math.unit(1148, "feet"),
  41185. default: true
  41186. },
  41187. ]
  41188. ))
  41189. characterMakers.push(() => makeCharacter(
  41190. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41191. {
  41192. front: {
  41193. height: math.unit(15, "feet"),
  41194. name: "Front",
  41195. image: {
  41196. source: "./media/characters/hypatia/front.svg",
  41197. extra: 1653/1591,
  41198. bottom: 79/1732
  41199. }
  41200. },
  41201. },
  41202. [
  41203. {
  41204. name: "Normal",
  41205. height: math.unit(15, "feet")
  41206. },
  41207. {
  41208. name: "Small",
  41209. height: math.unit(300, "feet")
  41210. },
  41211. {
  41212. name: "Macro",
  41213. height: math.unit(2500, "feet"),
  41214. default: true
  41215. },
  41216. {
  41217. name: "Mega Macro",
  41218. height: math.unit(1500, "miles")
  41219. },
  41220. {
  41221. name: "Giga Macro",
  41222. height: math.unit(1.5e6, "miles")
  41223. },
  41224. ]
  41225. ))
  41226. characterMakers.push(() => makeCharacter(
  41227. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41228. {
  41229. front: {
  41230. height: math.unit(6, "feet"),
  41231. weight: math.unit(200, "lb"),
  41232. name: "Front",
  41233. image: {
  41234. source: "./media/characters/wulver/front.svg",
  41235. extra: 1724/1632,
  41236. bottom: 130/1854
  41237. }
  41238. },
  41239. frontNsfw: {
  41240. height: math.unit(6, "feet"),
  41241. weight: math.unit(200, "lb"),
  41242. name: "Front (NSFW)",
  41243. image: {
  41244. source: "./media/characters/wulver/front-nsfw.svg",
  41245. extra: 1724/1632,
  41246. bottom: 130/1854
  41247. }
  41248. },
  41249. },
  41250. [
  41251. {
  41252. name: "Human-Sized",
  41253. height: math.unit(6, "feet")
  41254. },
  41255. {
  41256. name: "Normal",
  41257. height: math.unit(4, "meters"),
  41258. default: true
  41259. },
  41260. {
  41261. name: "Large",
  41262. height: math.unit(6, "m")
  41263. },
  41264. ]
  41265. ))
  41266. characterMakers.push(() => makeCharacter(
  41267. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41268. {
  41269. front: {
  41270. height: math.unit(7, "feet"),
  41271. name: "Front",
  41272. image: {
  41273. source: "./media/characters/maru/front.svg",
  41274. extra: 1595/1570,
  41275. bottom: 0/1595
  41276. }
  41277. },
  41278. },
  41279. [
  41280. {
  41281. name: "Normal",
  41282. height: math.unit(7, "feet"),
  41283. default: true
  41284. },
  41285. {
  41286. name: "Macro",
  41287. height: math.unit(700, "feet")
  41288. },
  41289. {
  41290. name: "Mega Macro",
  41291. height: math.unit(25, "miles")
  41292. },
  41293. ]
  41294. ))
  41295. characterMakers.push(() => makeCharacter(
  41296. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41297. {
  41298. front: {
  41299. height: math.unit(6, "feet"),
  41300. weight: math.unit(170, "lb"),
  41301. name: "Front",
  41302. image: {
  41303. source: "./media/characters/xenon/front.svg",
  41304. extra: 1376/1305,
  41305. bottom: 56/1432
  41306. }
  41307. },
  41308. back: {
  41309. height: math.unit(6, "feet"),
  41310. weight: math.unit(170, "lb"),
  41311. name: "Back",
  41312. image: {
  41313. source: "./media/characters/xenon/back.svg",
  41314. extra: 1328/1259,
  41315. bottom: 95/1423
  41316. }
  41317. },
  41318. maw: {
  41319. height: math.unit(0.52, "feet"),
  41320. name: "Maw",
  41321. image: {
  41322. source: "./media/characters/xenon/maw.svg"
  41323. }
  41324. },
  41325. hand: {
  41326. height: math.unit(0.82, "feet"),
  41327. name: "Hand",
  41328. image: {
  41329. source: "./media/characters/xenon/hand.svg"
  41330. }
  41331. },
  41332. foot: {
  41333. height: math.unit(1.13, "feet"),
  41334. name: "Foot",
  41335. image: {
  41336. source: "./media/characters/xenon/foot.svg"
  41337. }
  41338. },
  41339. },
  41340. [
  41341. {
  41342. name: "Micro",
  41343. height: math.unit(0.8, "inches")
  41344. },
  41345. {
  41346. name: "Normal",
  41347. height: math.unit(6, "feet")
  41348. },
  41349. {
  41350. name: "Macro",
  41351. height: math.unit(50, "feet"),
  41352. default: true
  41353. },
  41354. {
  41355. name: "Macro+",
  41356. height: math.unit(250, "feet")
  41357. },
  41358. {
  41359. name: "Megamacro",
  41360. height: math.unit(1500, "feet")
  41361. },
  41362. ]
  41363. ))
  41364. characterMakers.push(() => makeCharacter(
  41365. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41366. {
  41367. front: {
  41368. height: math.unit(7 + 5/12, "feet"),
  41369. name: "Front",
  41370. image: {
  41371. source: "./media/characters/zane/front.svg",
  41372. extra: 1260/1203,
  41373. bottom: 94/1354
  41374. }
  41375. },
  41376. back: {
  41377. height: math.unit(5.05, "feet"),
  41378. name: "Back",
  41379. image: {
  41380. source: "./media/characters/zane/back.svg",
  41381. extra: 893/829,
  41382. bottom: 30/923
  41383. }
  41384. },
  41385. werewolf: {
  41386. height: math.unit(11, "feet"),
  41387. name: "Werewolf",
  41388. image: {
  41389. source: "./media/characters/zane/werewolf.svg",
  41390. extra: 1383/1323,
  41391. bottom: 89/1472
  41392. }
  41393. },
  41394. foot: {
  41395. height: math.unit(1.46, "feet"),
  41396. name: "Foot",
  41397. image: {
  41398. source: "./media/characters/zane/foot.svg"
  41399. }
  41400. },
  41401. footFront: {
  41402. height: math.unit(0.784, "feet"),
  41403. name: "Foot (Front)",
  41404. image: {
  41405. source: "./media/characters/zane/foot-front.svg"
  41406. }
  41407. },
  41408. dick: {
  41409. height: math.unit(1.95, "feet"),
  41410. name: "Dick",
  41411. image: {
  41412. source: "./media/characters/zane/dick.svg"
  41413. }
  41414. },
  41415. dickWerewolf: {
  41416. height: math.unit(3.77, "feet"),
  41417. name: "Dick (Werewolf)",
  41418. image: {
  41419. source: "./media/characters/zane/dick.svg"
  41420. }
  41421. },
  41422. },
  41423. [
  41424. {
  41425. name: "Normal",
  41426. height: math.unit(7 + 5/12, "feet"),
  41427. default: true
  41428. },
  41429. ]
  41430. ))
  41431. characterMakers.push(() => makeCharacter(
  41432. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41433. {
  41434. front: {
  41435. height: math.unit(6 + 2/12, "feet"),
  41436. weight: math.unit(284, "lb"),
  41437. name: "Front",
  41438. image: {
  41439. source: "./media/characters/benni-desparque/front.svg",
  41440. extra: 1353/1126,
  41441. bottom: 69/1422
  41442. }
  41443. },
  41444. },
  41445. [
  41446. {
  41447. name: "Civilian",
  41448. height: math.unit(6 + 2/12, "feet")
  41449. },
  41450. {
  41451. name: "Normal",
  41452. height: math.unit(98, "feet"),
  41453. default: true
  41454. },
  41455. {
  41456. name: "Kaiju Fighter",
  41457. height: math.unit(268, "feet")
  41458. },
  41459. ]
  41460. ))
  41461. characterMakers.push(() => makeCharacter(
  41462. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41463. {
  41464. front: {
  41465. height: math.unit(5, "feet"),
  41466. weight: math.unit(105, "lb"),
  41467. name: "Front",
  41468. image: {
  41469. source: "./media/characters/maxine/front.svg",
  41470. extra: 1386/1250,
  41471. bottom: 71/1457
  41472. }
  41473. },
  41474. },
  41475. [
  41476. {
  41477. name: "Normal",
  41478. height: math.unit(5, "feet"),
  41479. default: true
  41480. },
  41481. ]
  41482. ))
  41483. characterMakers.push(() => makeCharacter(
  41484. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41485. {
  41486. front: {
  41487. height: math.unit(11 + 7/12, "feet"),
  41488. weight: math.unit(9576, "lb"),
  41489. name: "Front",
  41490. image: {
  41491. source: "./media/characters/scaly/front.svg",
  41492. extra: 888/867,
  41493. bottom: 36/924
  41494. }
  41495. },
  41496. },
  41497. [
  41498. {
  41499. name: "Normal",
  41500. height: math.unit(11 + 7/12, "feet"),
  41501. default: true
  41502. },
  41503. ]
  41504. ))
  41505. characterMakers.push(() => makeCharacter(
  41506. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41507. {
  41508. front: {
  41509. height: math.unit(6 + 3/12, "feet"),
  41510. name: "Front",
  41511. image: {
  41512. source: "./media/characters/saelria/front.svg",
  41513. extra: 1243/1138,
  41514. bottom: 46/1289
  41515. }
  41516. },
  41517. },
  41518. [
  41519. {
  41520. name: "Micro",
  41521. height: math.unit(6, "inches"),
  41522. },
  41523. {
  41524. name: "Normal",
  41525. height: math.unit(6 + 3/12, "feet"),
  41526. default: true
  41527. },
  41528. {
  41529. name: "Macro",
  41530. height: math.unit(25, "feet")
  41531. },
  41532. ]
  41533. ))
  41534. characterMakers.push(() => makeCharacter(
  41535. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41536. {
  41537. front: {
  41538. height: math.unit(80, "meters"),
  41539. weight: math.unit(7000, "tonnes"),
  41540. name: "Front",
  41541. image: {
  41542. source: "./media/characters/tef/front.svg",
  41543. extra: 2036/1991,
  41544. bottom: 54/2090
  41545. }
  41546. },
  41547. back: {
  41548. height: math.unit(80, "meters"),
  41549. weight: math.unit(7000, "tonnes"),
  41550. name: "Back",
  41551. image: {
  41552. source: "./media/characters/tef/back.svg",
  41553. extra: 2036/1991,
  41554. bottom: 54/2090
  41555. }
  41556. },
  41557. },
  41558. [
  41559. {
  41560. name: "Macro",
  41561. height: math.unit(80, "meters"),
  41562. default: true
  41563. },
  41564. ]
  41565. ))
  41566. characterMakers.push(() => makeCharacter(
  41567. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41568. {
  41569. front: {
  41570. height: math.unit(13, "feet"),
  41571. weight: math.unit(6, "tons"),
  41572. name: "Front",
  41573. image: {
  41574. source: "./media/characters/rover/front.svg",
  41575. extra: 1233/1156,
  41576. bottom: 50/1283
  41577. }
  41578. },
  41579. back: {
  41580. height: math.unit(13, "feet"),
  41581. weight: math.unit(6, "tons"),
  41582. name: "Back",
  41583. image: {
  41584. source: "./media/characters/rover/back.svg",
  41585. extra: 1327/1258,
  41586. bottom: 39/1366
  41587. }
  41588. },
  41589. },
  41590. [
  41591. {
  41592. name: "Normal",
  41593. height: math.unit(13, "feet"),
  41594. default: true
  41595. },
  41596. {
  41597. name: "Macro",
  41598. height: math.unit(1300, "feet")
  41599. },
  41600. {
  41601. name: "Megamacro",
  41602. height: math.unit(1300, "miles")
  41603. },
  41604. {
  41605. name: "Gigamacro",
  41606. height: math.unit(1300000, "miles")
  41607. },
  41608. ]
  41609. ))
  41610. characterMakers.push(() => makeCharacter(
  41611. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41612. {
  41613. front: {
  41614. height: math.unit(6, "feet"),
  41615. weight: math.unit(150, "lb"),
  41616. name: "Front",
  41617. image: {
  41618. source: "./media/characters/ariz/front.svg",
  41619. extra: 1401/1346,
  41620. bottom: 5/1406
  41621. }
  41622. },
  41623. },
  41624. [
  41625. {
  41626. name: "Normal",
  41627. height: math.unit(10, "feet"),
  41628. default: true
  41629. },
  41630. ]
  41631. ))
  41632. characterMakers.push(() => makeCharacter(
  41633. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41634. {
  41635. front: {
  41636. height: math.unit(6, "feet"),
  41637. weight: math.unit(140, "lb"),
  41638. name: "Front",
  41639. image: {
  41640. source: "./media/characters/sigrun/front.svg",
  41641. extra: 1418/1359,
  41642. bottom: 27/1445
  41643. }
  41644. },
  41645. },
  41646. [
  41647. {
  41648. name: "Macro",
  41649. height: math.unit(35, "feet"),
  41650. default: true
  41651. },
  41652. ]
  41653. ))
  41654. characterMakers.push(() => makeCharacter(
  41655. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41656. {
  41657. front: {
  41658. height: math.unit(6, "feet"),
  41659. weight: math.unit(150, "lb"),
  41660. name: "Front",
  41661. image: {
  41662. source: "./media/characters/numin/front.svg",
  41663. extra: 1433/1388,
  41664. bottom: 12/1445
  41665. }
  41666. },
  41667. },
  41668. [
  41669. {
  41670. name: "Macro",
  41671. height: math.unit(21.5, "km"),
  41672. default: true
  41673. },
  41674. ]
  41675. ))
  41676. characterMakers.push(() => makeCharacter(
  41677. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41678. {
  41679. front: {
  41680. height: math.unit(6, "feet"),
  41681. weight: math.unit(463, "lb"),
  41682. name: "Front",
  41683. image: {
  41684. source: "./media/characters/melwa/front.svg",
  41685. extra: 1307/1248,
  41686. bottom: 93/1400
  41687. }
  41688. },
  41689. },
  41690. [
  41691. {
  41692. name: "Macro",
  41693. height: math.unit(50, "meters"),
  41694. default: true
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41700. {
  41701. front: {
  41702. height: math.unit(325, "feet"),
  41703. name: "Front",
  41704. image: {
  41705. source: "./media/characters/zorkaiju/front.svg",
  41706. extra: 1955/1814,
  41707. bottom: 40/1995
  41708. }
  41709. },
  41710. frontExtended: {
  41711. height: math.unit(325, "feet"),
  41712. name: "Front (Extended)",
  41713. image: {
  41714. source: "./media/characters/zorkaiju/front-extended.svg",
  41715. extra: 1955/1814,
  41716. bottom: 40/1995
  41717. }
  41718. },
  41719. side: {
  41720. height: math.unit(325, "feet"),
  41721. name: "Side",
  41722. image: {
  41723. source: "./media/characters/zorkaiju/side.svg",
  41724. extra: 1495/1396,
  41725. bottom: 17/1512
  41726. }
  41727. },
  41728. sideExtended: {
  41729. height: math.unit(325, "feet"),
  41730. name: "Side (Extended)",
  41731. image: {
  41732. source: "./media/characters/zorkaiju/side-extended.svg",
  41733. extra: 1495/1396,
  41734. bottom: 17/1512
  41735. }
  41736. },
  41737. back: {
  41738. height: math.unit(325, "feet"),
  41739. name: "Back",
  41740. image: {
  41741. source: "./media/characters/zorkaiju/back.svg",
  41742. extra: 1959/1821,
  41743. bottom: 31/1990
  41744. }
  41745. },
  41746. backExtended: {
  41747. height: math.unit(325, "feet"),
  41748. name: "Back (Extended)",
  41749. image: {
  41750. source: "./media/characters/zorkaiju/back-extended.svg",
  41751. extra: 1959/1821,
  41752. bottom: 31/1990
  41753. }
  41754. },
  41755. hand: {
  41756. height: math.unit(58.4, "feet"),
  41757. name: "Hand",
  41758. image: {
  41759. source: "./media/characters/zorkaiju/hand.svg"
  41760. }
  41761. },
  41762. handExtended: {
  41763. height: math.unit(61.4, "feet"),
  41764. name: "Hand (Extended)",
  41765. image: {
  41766. source: "./media/characters/zorkaiju/hand-extended.svg"
  41767. }
  41768. },
  41769. foot: {
  41770. height: math.unit(95, "feet"),
  41771. name: "Foot",
  41772. image: {
  41773. source: "./media/characters/zorkaiju/foot.svg"
  41774. }
  41775. },
  41776. leftArm: {
  41777. height: math.unit(59, "feet"),
  41778. name: "Left Arm",
  41779. image: {
  41780. source: "./media/characters/zorkaiju/left-arm.svg"
  41781. }
  41782. },
  41783. rightArm: {
  41784. height: math.unit(59, "feet"),
  41785. name: "Right Arm",
  41786. image: {
  41787. source: "./media/characters/zorkaiju/right-arm.svg"
  41788. }
  41789. },
  41790. leftArmExtended: {
  41791. height: math.unit(59 * 1.033546, "feet"),
  41792. name: "Left Arm (Extended)",
  41793. image: {
  41794. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41795. }
  41796. },
  41797. rightArmExtended: {
  41798. height: math.unit(59 * 1.0496, "feet"),
  41799. name: "Right Arm (Extended)",
  41800. image: {
  41801. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41802. }
  41803. },
  41804. tail: {
  41805. height: math.unit(104, "feet"),
  41806. name: "Tail",
  41807. image: {
  41808. source: "./media/characters/zorkaiju/tail.svg"
  41809. }
  41810. },
  41811. tailExtended: {
  41812. height: math.unit(104, "feet"),
  41813. name: "Tail (Extended)",
  41814. image: {
  41815. source: "./media/characters/zorkaiju/tail-extended.svg"
  41816. }
  41817. },
  41818. tailBottom: {
  41819. height: math.unit(104, "feet"),
  41820. name: "Tail Bottom",
  41821. image: {
  41822. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41823. }
  41824. },
  41825. crystal: {
  41826. height: math.unit(27.54, "feet"),
  41827. name: "Crystal",
  41828. image: {
  41829. source: "./media/characters/zorkaiju/crystal.svg"
  41830. }
  41831. },
  41832. },
  41833. [
  41834. {
  41835. name: "Kaiju",
  41836. height: math.unit(325, "feet"),
  41837. default: true
  41838. },
  41839. ]
  41840. ))
  41841. characterMakers.push(() => makeCharacter(
  41842. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41843. {
  41844. front: {
  41845. height: math.unit(6 + 1/12, "feet"),
  41846. weight: math.unit(115, "lb"),
  41847. name: "Front",
  41848. image: {
  41849. source: "./media/characters/bailey-belfry/front.svg",
  41850. extra: 1240/1121,
  41851. bottom: 101/1341
  41852. }
  41853. },
  41854. },
  41855. [
  41856. {
  41857. name: "Normal",
  41858. height: math.unit(6 + 1/12, "feet"),
  41859. default: true
  41860. },
  41861. ]
  41862. ))
  41863. characterMakers.push(() => makeCharacter(
  41864. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41865. {
  41866. side: {
  41867. height: math.unit(4, "meters"),
  41868. weight: math.unit(250, "kg"),
  41869. name: "Side",
  41870. image: {
  41871. source: "./media/characters/blacky/side.svg",
  41872. extra: 1027/919,
  41873. bottom: 43/1070
  41874. }
  41875. },
  41876. maw: {
  41877. height: math.unit(1, "meters"),
  41878. name: "Maw",
  41879. image: {
  41880. source: "./media/characters/blacky/maw.svg"
  41881. }
  41882. },
  41883. paw: {
  41884. height: math.unit(1, "meters"),
  41885. name: "Paw",
  41886. image: {
  41887. source: "./media/characters/blacky/paw.svg"
  41888. }
  41889. },
  41890. },
  41891. [
  41892. {
  41893. name: "Normal",
  41894. height: math.unit(4, "meters"),
  41895. default: true
  41896. },
  41897. ]
  41898. ))
  41899. characterMakers.push(() => makeCharacter(
  41900. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41901. {
  41902. front: {
  41903. height: math.unit(170, "cm"),
  41904. weight: math.unit(66, "kg"),
  41905. name: "Front",
  41906. image: {
  41907. source: "./media/characters/thux-ei/front.svg",
  41908. extra: 1109/1011,
  41909. bottom: 8/1117
  41910. }
  41911. },
  41912. },
  41913. [
  41914. {
  41915. name: "Normal",
  41916. height: math.unit(170, "cm"),
  41917. default: true
  41918. },
  41919. ]
  41920. ))
  41921. characterMakers.push(() => makeCharacter(
  41922. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41923. {
  41924. front: {
  41925. height: math.unit(5, "feet"),
  41926. weight: math.unit(120, "lb"),
  41927. name: "Front",
  41928. image: {
  41929. source: "./media/characters/roxanne-voltaire/front.svg",
  41930. extra: 1901/1779,
  41931. bottom: 53/1954
  41932. }
  41933. },
  41934. },
  41935. [
  41936. {
  41937. name: "Normal",
  41938. height: math.unit(5, "feet"),
  41939. default: true
  41940. },
  41941. {
  41942. name: "Giant",
  41943. height: math.unit(50, "feet")
  41944. },
  41945. {
  41946. name: "Titan",
  41947. height: math.unit(500, "feet")
  41948. },
  41949. {
  41950. name: "Macro",
  41951. height: math.unit(5000, "feet")
  41952. },
  41953. {
  41954. name: "Megamacro",
  41955. height: math.unit(50000, "feet")
  41956. },
  41957. {
  41958. name: "Gigamacro",
  41959. height: math.unit(500000, "feet")
  41960. },
  41961. {
  41962. name: "Teramacro",
  41963. height: math.unit(5e6, "feet")
  41964. },
  41965. ]
  41966. ))
  41967. characterMakers.push(() => makeCharacter(
  41968. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41969. {
  41970. front: {
  41971. height: math.unit(6 + 2/12, "feet"),
  41972. name: "Front",
  41973. image: {
  41974. source: "./media/characters/squeaks/front.svg",
  41975. extra: 1823/1768,
  41976. bottom: 138/1961
  41977. }
  41978. },
  41979. },
  41980. [
  41981. {
  41982. name: "Micro",
  41983. height: math.unit(0.5, "inches")
  41984. },
  41985. {
  41986. name: "Normal",
  41987. height: math.unit(6 + 2/12, "feet"),
  41988. default: true
  41989. },
  41990. {
  41991. name: "Macro",
  41992. height: math.unit(600, "feet")
  41993. },
  41994. ]
  41995. ))
  41996. characterMakers.push(() => makeCharacter(
  41997. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41998. {
  41999. front: {
  42000. height: math.unit(1.72, "meters"),
  42001. name: "Front",
  42002. image: {
  42003. source: "./media/characters/archinger/front.svg",
  42004. extra: 1861/1675,
  42005. bottom: 125/1986
  42006. }
  42007. },
  42008. back: {
  42009. height: math.unit(1.72, "meters"),
  42010. name: "Back",
  42011. image: {
  42012. source: "./media/characters/archinger/back.svg",
  42013. extra: 1844/1701,
  42014. bottom: 104/1948
  42015. }
  42016. },
  42017. cock: {
  42018. height: math.unit(0.59, "feet"),
  42019. name: "Cock",
  42020. image: {
  42021. source: "./media/characters/archinger/cock.svg"
  42022. }
  42023. },
  42024. },
  42025. [
  42026. {
  42027. name: "Normal",
  42028. height: math.unit(1.72, "meters"),
  42029. default: true
  42030. },
  42031. {
  42032. name: "Macro",
  42033. height: math.unit(84, "meters")
  42034. },
  42035. {
  42036. name: "Macro+",
  42037. height: math.unit(112, "meters")
  42038. },
  42039. {
  42040. name: "Macro++",
  42041. height: math.unit(960, "meters")
  42042. },
  42043. {
  42044. name: "Macro+++",
  42045. height: math.unit(4, "km")
  42046. },
  42047. {
  42048. name: "Macro++++",
  42049. height: math.unit(48, "km")
  42050. },
  42051. {
  42052. name: "Macro+++++",
  42053. height: math.unit(4500, "km")
  42054. },
  42055. ]
  42056. ))
  42057. characterMakers.push(() => makeCharacter(
  42058. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42059. {
  42060. front: {
  42061. height: math.unit(5 + 5/12, "feet"),
  42062. name: "Front",
  42063. image: {
  42064. source: "./media/characters/alsnapz/front.svg",
  42065. extra: 1157/1065,
  42066. bottom: 42/1199
  42067. }
  42068. },
  42069. },
  42070. [
  42071. {
  42072. name: "Normal",
  42073. height: math.unit(5 + 5/12, "feet"),
  42074. default: true
  42075. },
  42076. ]
  42077. ))
  42078. characterMakers.push(() => makeCharacter(
  42079. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42080. {
  42081. side: {
  42082. height: math.unit(3.2, "earths"),
  42083. name: "Side",
  42084. image: {
  42085. source: "./media/characters/mag/side.svg",
  42086. extra: 1331/1008,
  42087. bottom: 52/1383
  42088. }
  42089. },
  42090. wing: {
  42091. height: math.unit(1.94, "earths"),
  42092. name: "Wing",
  42093. image: {
  42094. source: "./media/characters/mag/wing.svg"
  42095. }
  42096. },
  42097. dick: {
  42098. height: math.unit(1.8, "earths"),
  42099. name: "Dick",
  42100. image: {
  42101. source: "./media/characters/mag/dick.svg"
  42102. }
  42103. },
  42104. ass: {
  42105. height: math.unit(1.33, "earths"),
  42106. name: "Ass",
  42107. image: {
  42108. source: "./media/characters/mag/ass.svg"
  42109. }
  42110. },
  42111. head: {
  42112. height: math.unit(1.1, "earths"),
  42113. name: "Head",
  42114. image: {
  42115. source: "./media/characters/mag/head.svg"
  42116. }
  42117. },
  42118. maw: {
  42119. height: math.unit(1.62, "earths"),
  42120. name: "Maw",
  42121. image: {
  42122. source: "./media/characters/mag/maw.svg"
  42123. }
  42124. },
  42125. },
  42126. [
  42127. {
  42128. name: "Small",
  42129. height: math.unit(162, "feet")
  42130. },
  42131. {
  42132. name: "Normal",
  42133. height: math.unit(3.2, "earths"),
  42134. default: true
  42135. },
  42136. ]
  42137. ))
  42138. characterMakers.push(() => makeCharacter(
  42139. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42140. {
  42141. front: {
  42142. height: math.unit(512, "feet"),
  42143. weight: math.unit(63509, "tonnes"),
  42144. name: "Front",
  42145. image: {
  42146. source: "./media/characters/vorrel-harroc/front.svg",
  42147. extra: 1075/1063,
  42148. bottom: 62/1137
  42149. }
  42150. },
  42151. },
  42152. [
  42153. {
  42154. name: "Normal",
  42155. height: math.unit(10, "feet")
  42156. },
  42157. {
  42158. name: "Macro",
  42159. height: math.unit(512, "feet"),
  42160. default: true
  42161. },
  42162. {
  42163. name: "Megamacro",
  42164. height: math.unit(256, "miles")
  42165. },
  42166. {
  42167. name: "Gigamacro",
  42168. height: math.unit(4096, "miles")
  42169. },
  42170. ]
  42171. ))
  42172. characterMakers.push(() => makeCharacter(
  42173. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42174. {
  42175. side: {
  42176. height: math.unit(50, "feet"),
  42177. name: "Side",
  42178. image: {
  42179. source: "./media/characters/froimar/side.svg",
  42180. extra: 855/638,
  42181. bottom: 99/954
  42182. }
  42183. },
  42184. },
  42185. [
  42186. {
  42187. name: "Macro",
  42188. height: math.unit(50, "feet"),
  42189. default: true
  42190. },
  42191. ]
  42192. ))
  42193. characterMakers.push(() => makeCharacter(
  42194. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42195. {
  42196. front: {
  42197. height: math.unit(210, "miles"),
  42198. name: "Front",
  42199. image: {
  42200. source: "./media/characters/timothy/front.svg",
  42201. extra: 1007/943,
  42202. bottom: 62/1069
  42203. }
  42204. },
  42205. frontSkirt: {
  42206. height: math.unit(210, "miles"),
  42207. name: "Front (Skirt)",
  42208. image: {
  42209. source: "./media/characters/timothy/front-skirt.svg",
  42210. extra: 1007/943,
  42211. bottom: 62/1069
  42212. }
  42213. },
  42214. frontCoat: {
  42215. height: math.unit(210, "miles"),
  42216. name: "Front (Coat)",
  42217. image: {
  42218. source: "./media/characters/timothy/front-coat.svg",
  42219. extra: 1007/943,
  42220. bottom: 62/1069
  42221. }
  42222. },
  42223. },
  42224. [
  42225. {
  42226. name: "Macro",
  42227. height: math.unit(210, "miles"),
  42228. default: true
  42229. },
  42230. {
  42231. name: "Megamacro",
  42232. height: math.unit(210000, "miles")
  42233. },
  42234. ]
  42235. ))
  42236. characterMakers.push(() => makeCharacter(
  42237. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42238. {
  42239. front: {
  42240. height: math.unit(188, "feet"),
  42241. name: "Front",
  42242. image: {
  42243. source: "./media/characters/pyotr/front.svg",
  42244. extra: 1912/1826,
  42245. bottom: 18/1930
  42246. }
  42247. },
  42248. },
  42249. [
  42250. {
  42251. name: "Macro",
  42252. height: math.unit(188, "feet"),
  42253. default: true
  42254. },
  42255. {
  42256. name: "Megamacro",
  42257. height: math.unit(8, "miles")
  42258. },
  42259. ]
  42260. ))
  42261. characterMakers.push(() => makeCharacter(
  42262. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42263. {
  42264. side: {
  42265. height: math.unit(10, "feet"),
  42266. weight: math.unit(4500, "lb"),
  42267. name: "Side",
  42268. image: {
  42269. source: "./media/characters/ackart/side.svg",
  42270. extra: 1776/1668,
  42271. bottom: 116/1892
  42272. }
  42273. },
  42274. },
  42275. [
  42276. {
  42277. name: "Normal",
  42278. height: math.unit(10, "feet"),
  42279. default: true
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42285. {
  42286. side: {
  42287. height: math.unit(21, "feet"),
  42288. name: "Side",
  42289. image: {
  42290. source: "./media/characters/nolow/side.svg",
  42291. extra: 1484/1434,
  42292. bottom: 85/1569
  42293. }
  42294. },
  42295. sideErect: {
  42296. height: math.unit(21, "feet"),
  42297. name: "Side-erect",
  42298. image: {
  42299. source: "./media/characters/nolow/side-erect.svg",
  42300. extra: 1484/1434,
  42301. bottom: 85/1569
  42302. }
  42303. },
  42304. },
  42305. [
  42306. {
  42307. name: "Regular",
  42308. height: math.unit(12, "feet")
  42309. },
  42310. {
  42311. name: "Big Chee",
  42312. height: math.unit(21, "feet"),
  42313. default: true
  42314. },
  42315. ]
  42316. ))
  42317. characterMakers.push(() => makeCharacter(
  42318. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42319. {
  42320. front: {
  42321. height: math.unit(7, "feet"),
  42322. weight: math.unit(250, "lb"),
  42323. name: "Front",
  42324. image: {
  42325. source: "./media/characters/nines/front.svg",
  42326. extra: 1741/1607,
  42327. bottom: 41/1782
  42328. }
  42329. },
  42330. side: {
  42331. height: math.unit(7, "feet"),
  42332. weight: math.unit(250, "lb"),
  42333. name: "Side",
  42334. image: {
  42335. source: "./media/characters/nines/side.svg",
  42336. extra: 1854/1735,
  42337. bottom: 93/1947
  42338. }
  42339. },
  42340. back: {
  42341. height: math.unit(7, "feet"),
  42342. weight: math.unit(250, "lb"),
  42343. name: "Back",
  42344. image: {
  42345. source: "./media/characters/nines/back.svg",
  42346. extra: 1748/1615,
  42347. bottom: 20/1768
  42348. }
  42349. },
  42350. },
  42351. [
  42352. {
  42353. name: "Megamacro",
  42354. height: math.unit(99, "km"),
  42355. default: true
  42356. },
  42357. ]
  42358. ))
  42359. characterMakers.push(() => makeCharacter(
  42360. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42361. {
  42362. front: {
  42363. height: math.unit(5 + 10/12, "feet"),
  42364. weight: math.unit(210, "lb"),
  42365. name: "Front",
  42366. image: {
  42367. source: "./media/characters/zenith/front.svg",
  42368. extra: 1531/1452,
  42369. bottom: 198/1729
  42370. }
  42371. },
  42372. back: {
  42373. height: math.unit(5 + 10/12, "feet"),
  42374. weight: math.unit(210, "lb"),
  42375. name: "Back",
  42376. image: {
  42377. source: "./media/characters/zenith/back.svg",
  42378. extra: 1571/1487,
  42379. bottom: 75/1646
  42380. }
  42381. },
  42382. },
  42383. [
  42384. {
  42385. name: "Normal",
  42386. height: math.unit(5 + 10/12, "feet"),
  42387. default: true
  42388. }
  42389. ]
  42390. ))
  42391. characterMakers.push(() => makeCharacter(
  42392. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42393. {
  42394. front: {
  42395. height: math.unit(4, "feet"),
  42396. weight: math.unit(60, "lb"),
  42397. name: "Front",
  42398. image: {
  42399. source: "./media/characters/jasper/front.svg",
  42400. extra: 1450/1379,
  42401. bottom: 19/1469
  42402. }
  42403. },
  42404. },
  42405. [
  42406. {
  42407. name: "Normal",
  42408. height: math.unit(4, "feet"),
  42409. default: true
  42410. },
  42411. ]
  42412. ))
  42413. characterMakers.push(() => makeCharacter(
  42414. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42415. {
  42416. front: {
  42417. height: math.unit(6 + 5/12, "feet"),
  42418. weight: math.unit(290, "lb"),
  42419. name: "Front",
  42420. image: {
  42421. source: "./media/characters/tiberius-thyben/front.svg",
  42422. extra: 757/739,
  42423. bottom: 39/796
  42424. }
  42425. },
  42426. },
  42427. [
  42428. {
  42429. name: "Micro",
  42430. height: math.unit(1.5, "inches")
  42431. },
  42432. {
  42433. name: "Normal",
  42434. height: math.unit(6 + 5/12, "feet"),
  42435. default: true
  42436. },
  42437. {
  42438. name: "Macro",
  42439. height: math.unit(300, "feet")
  42440. },
  42441. ]
  42442. ))
  42443. characterMakers.push(() => makeCharacter(
  42444. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42445. {
  42446. front: {
  42447. height: math.unit(5 + 6/12, "feet"),
  42448. weight: math.unit(60, "kg"),
  42449. name: "Front",
  42450. image: {
  42451. source: "./media/characters/sabre/front.svg",
  42452. extra: 738/671,
  42453. bottom: 27/765
  42454. }
  42455. },
  42456. },
  42457. [
  42458. {
  42459. name: "Teeny",
  42460. height: math.unit(2, "inches")
  42461. },
  42462. {
  42463. name: "Smol",
  42464. height: math.unit(8, "inches")
  42465. },
  42466. {
  42467. name: "Normal",
  42468. height: math.unit(5 + 6/12, "feet"),
  42469. default: true
  42470. },
  42471. {
  42472. name: "Mini-Macro",
  42473. height: math.unit(15, "feet")
  42474. },
  42475. {
  42476. name: "Macro",
  42477. height: math.unit(50, "feet")
  42478. },
  42479. ]
  42480. ))
  42481. characterMakers.push(() => makeCharacter(
  42482. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42483. {
  42484. front: {
  42485. height: math.unit(6 + 4/12, "feet"),
  42486. weight: math.unit(170, "lb"),
  42487. name: "Front",
  42488. image: {
  42489. source: "./media/characters/charlie/front.svg",
  42490. extra: 1348/1228,
  42491. bottom: 15/1363
  42492. }
  42493. },
  42494. },
  42495. [
  42496. {
  42497. name: "Macro",
  42498. height: math.unit(1700, "meters"),
  42499. default: true
  42500. },
  42501. {
  42502. name: "MegaMacro",
  42503. height: math.unit(20400, "meters")
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42509. {
  42510. front: {
  42511. height: math.unit(6 + 3/12, "feet"),
  42512. weight: math.unit(185, "lb"),
  42513. name: "Front",
  42514. image: {
  42515. source: "./media/characters/susan-grant/front.svg",
  42516. extra: 1351/1327,
  42517. bottom: 26/1377
  42518. }
  42519. },
  42520. },
  42521. [
  42522. {
  42523. name: "Normal",
  42524. height: math.unit(6 + 3/12, "feet"),
  42525. default: true
  42526. },
  42527. {
  42528. name: "Macro",
  42529. height: math.unit(225, "feet")
  42530. },
  42531. {
  42532. name: "Macro+",
  42533. height: math.unit(900, "feet")
  42534. },
  42535. {
  42536. name: "MegaMacro",
  42537. height: math.unit(14400, "feet")
  42538. },
  42539. ]
  42540. ))
  42541. characterMakers.push(() => makeCharacter(
  42542. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42543. {
  42544. front: {
  42545. height: math.unit(5 + 4/12, "feet"),
  42546. weight: math.unit(110, "lb"),
  42547. name: "Front",
  42548. image: {
  42549. source: "./media/characters/axel-isanov/front.svg",
  42550. extra: 1096/1065,
  42551. bottom: 13/1109
  42552. }
  42553. },
  42554. },
  42555. [
  42556. {
  42557. name: "Normal",
  42558. height: math.unit(5 + 4/12, "feet"),
  42559. default: true
  42560. },
  42561. ]
  42562. ))
  42563. characterMakers.push(() => makeCharacter(
  42564. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42565. {
  42566. front: {
  42567. height: math.unit(9, "feet"),
  42568. weight: math.unit(467, "lb"),
  42569. name: "Front",
  42570. image: {
  42571. source: "./media/characters/necahual/front.svg",
  42572. extra: 920/873,
  42573. bottom: 26/946
  42574. }
  42575. },
  42576. back: {
  42577. height: math.unit(9, "feet"),
  42578. weight: math.unit(467, "lb"),
  42579. name: "Back",
  42580. image: {
  42581. source: "./media/characters/necahual/back.svg",
  42582. extra: 930/884,
  42583. bottom: 16/946
  42584. }
  42585. },
  42586. frontUnderwear: {
  42587. height: math.unit(9, "feet"),
  42588. weight: math.unit(467, "lb"),
  42589. name: "Front (Underwear)",
  42590. image: {
  42591. source: "./media/characters/necahual/front-underwear.svg",
  42592. extra: 920/873,
  42593. bottom: 26/946
  42594. }
  42595. },
  42596. frontDressed: {
  42597. height: math.unit(9, "feet"),
  42598. weight: math.unit(467, "lb"),
  42599. name: "Front (Dressed)",
  42600. image: {
  42601. source: "./media/characters/necahual/front-dressed.svg",
  42602. extra: 920/873,
  42603. bottom: 26/946
  42604. }
  42605. },
  42606. },
  42607. [
  42608. {
  42609. name: "Comprsesed",
  42610. height: math.unit(9, "feet")
  42611. },
  42612. {
  42613. name: "Natural",
  42614. height: math.unit(15, "feet"),
  42615. default: true
  42616. },
  42617. {
  42618. name: "Boosted",
  42619. height: math.unit(50, "feet")
  42620. },
  42621. {
  42622. name: "Boosted+",
  42623. height: math.unit(150, "feet")
  42624. },
  42625. {
  42626. name: "Max",
  42627. height: math.unit(500, "feet")
  42628. },
  42629. ]
  42630. ))
  42631. characterMakers.push(() => makeCharacter(
  42632. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42633. {
  42634. front: {
  42635. height: math.unit(22 + 1/12, "feet"),
  42636. weight: math.unit(3200, "lb"),
  42637. name: "Front",
  42638. image: {
  42639. source: "./media/characters/theo-acacia/front.svg",
  42640. extra: 1796/1741,
  42641. bottom: 83/1879
  42642. }
  42643. },
  42644. frontUnderwear: {
  42645. height: math.unit(22 + 1/12, "feet"),
  42646. weight: math.unit(3200, "lb"),
  42647. name: "Front (Underwear)",
  42648. image: {
  42649. source: "./media/characters/theo-acacia/front-underwear.svg",
  42650. extra: 1796/1741,
  42651. bottom: 83/1879
  42652. }
  42653. },
  42654. frontNude: {
  42655. height: math.unit(22 + 1/12, "feet"),
  42656. weight: math.unit(3200, "lb"),
  42657. name: "Front (Nude)",
  42658. image: {
  42659. source: "./media/characters/theo-acacia/front-nude.svg",
  42660. extra: 1796/1741,
  42661. bottom: 83/1879
  42662. }
  42663. },
  42664. },
  42665. [
  42666. {
  42667. name: "Normal",
  42668. height: math.unit(22 + 1/12, "feet"),
  42669. default: true
  42670. },
  42671. ]
  42672. ))
  42673. characterMakers.push(() => makeCharacter(
  42674. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42675. {
  42676. front: {
  42677. height: math.unit(20, "feet"),
  42678. name: "Front",
  42679. image: {
  42680. source: "./media/characters/astra/front.svg",
  42681. extra: 1850/1714,
  42682. bottom: 106/1956
  42683. }
  42684. },
  42685. frontUndressed: {
  42686. height: math.unit(20, "feet"),
  42687. name: "Front (Undressed)",
  42688. image: {
  42689. source: "./media/characters/astra/front-undressed.svg",
  42690. extra: 1926/1749,
  42691. bottom: 0/1926
  42692. }
  42693. },
  42694. hand: {
  42695. height: math.unit(1.53, "feet"),
  42696. name: "Hand",
  42697. image: {
  42698. source: "./media/characters/astra/hand.svg"
  42699. }
  42700. },
  42701. paw: {
  42702. height: math.unit(1.53, "feet"),
  42703. name: "Paw",
  42704. image: {
  42705. source: "./media/characters/astra/paw.svg"
  42706. }
  42707. },
  42708. },
  42709. [
  42710. {
  42711. name: "Smallest",
  42712. height: math.unit(20, "feet")
  42713. },
  42714. {
  42715. name: "Normal",
  42716. height: math.unit(1e9, "miles"),
  42717. default: true
  42718. },
  42719. {
  42720. name: "Larger",
  42721. height: math.unit(5, "multiverses")
  42722. },
  42723. {
  42724. name: "Largest",
  42725. height: math.unit(1e9, "multiverses")
  42726. },
  42727. ]
  42728. ))
  42729. characterMakers.push(() => makeCharacter(
  42730. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42731. {
  42732. front: {
  42733. height: math.unit(8, "feet"),
  42734. name: "Front",
  42735. image: {
  42736. source: "./media/characters/breanna/front.svg",
  42737. extra: 1912/1632,
  42738. bottom: 33/1945
  42739. }
  42740. },
  42741. },
  42742. [
  42743. {
  42744. name: "Smallest",
  42745. height: math.unit(8, "feet")
  42746. },
  42747. {
  42748. name: "Normal",
  42749. height: math.unit(1, "mile"),
  42750. default: true
  42751. },
  42752. {
  42753. name: "Maximum",
  42754. height: math.unit(1500000000000, "lightyears")
  42755. },
  42756. ]
  42757. ))
  42758. characterMakers.push(() => makeCharacter(
  42759. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42760. {
  42761. front: {
  42762. height: math.unit(5 + 11/12, "feet"),
  42763. weight: math.unit(155, "lb"),
  42764. name: "Front",
  42765. image: {
  42766. source: "./media/characters/cai/front.svg",
  42767. extra: 1823/1702,
  42768. bottom: 32/1855
  42769. }
  42770. },
  42771. back: {
  42772. height: math.unit(5 + 11/12, "feet"),
  42773. weight: math.unit(155, "lb"),
  42774. name: "Back",
  42775. image: {
  42776. source: "./media/characters/cai/back.svg",
  42777. extra: 1809/1708,
  42778. bottom: 31/1840
  42779. }
  42780. },
  42781. },
  42782. [
  42783. {
  42784. name: "Normal",
  42785. height: math.unit(5 + 11/12, "feet"),
  42786. default: true
  42787. },
  42788. {
  42789. name: "Big",
  42790. height: math.unit(15, "feet")
  42791. },
  42792. {
  42793. name: "Macro",
  42794. height: math.unit(200, "feet")
  42795. },
  42796. ]
  42797. ))
  42798. characterMakers.push(() => makeCharacter(
  42799. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42800. {
  42801. front: {
  42802. height: math.unit(5 + 6/12, "feet"),
  42803. weight: math.unit(160, "lb"),
  42804. name: "Front",
  42805. image: {
  42806. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42807. extra: 1227/1174,
  42808. bottom: 37/1264
  42809. }
  42810. },
  42811. },
  42812. [
  42813. {
  42814. name: "Macro",
  42815. height: math.unit(444, "meters"),
  42816. default: true
  42817. },
  42818. ]
  42819. ))
  42820. characterMakers.push(() => makeCharacter(
  42821. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42822. {
  42823. front: {
  42824. height: math.unit(18 + 7/12, "feet"),
  42825. name: "Front",
  42826. image: {
  42827. source: "./media/characters/rex/front.svg",
  42828. extra: 1941/1807,
  42829. bottom: 66/2007
  42830. }
  42831. },
  42832. back: {
  42833. height: math.unit(18 + 7/12, "feet"),
  42834. name: "Back",
  42835. image: {
  42836. source: "./media/characters/rex/back.svg",
  42837. extra: 1937/1822,
  42838. bottom: 42/1979
  42839. }
  42840. },
  42841. boot: {
  42842. height: math.unit(3.45, "feet"),
  42843. name: "Boot",
  42844. image: {
  42845. source: "./media/characters/rex/boot.svg"
  42846. }
  42847. },
  42848. paw: {
  42849. height: math.unit(4.17, "feet"),
  42850. name: "Paw",
  42851. image: {
  42852. source: "./media/characters/rex/paw.svg"
  42853. }
  42854. },
  42855. head: {
  42856. height: math.unit(6.728, "feet"),
  42857. name: "Head",
  42858. image: {
  42859. source: "./media/characters/rex/head.svg"
  42860. }
  42861. },
  42862. },
  42863. [
  42864. {
  42865. name: "Nano",
  42866. height: math.unit(18 + 7/12, "feet")
  42867. },
  42868. {
  42869. name: "Micro",
  42870. height: math.unit(1.5, "megameters")
  42871. },
  42872. {
  42873. name: "Normal",
  42874. height: math.unit(440, "megameters"),
  42875. default: true
  42876. },
  42877. {
  42878. name: "Macro",
  42879. height: math.unit(2.5, "gigameters")
  42880. },
  42881. {
  42882. name: "Gigamacro",
  42883. height: math.unit(2, "galaxies")
  42884. },
  42885. ]
  42886. ))
  42887. characterMakers.push(() => makeCharacter(
  42888. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42889. {
  42890. side: {
  42891. height: math.unit(32, "feet"),
  42892. weight: math.unit(250000, "lb"),
  42893. name: "Side",
  42894. image: {
  42895. source: "./media/characters/silverwing/side.svg",
  42896. extra: 1100/1019,
  42897. bottom: 204/1304
  42898. }
  42899. },
  42900. },
  42901. [
  42902. {
  42903. name: "Normal",
  42904. height: math.unit(32, "feet"),
  42905. default: true
  42906. },
  42907. ]
  42908. ))
  42909. characterMakers.push(() => makeCharacter(
  42910. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42911. {
  42912. front: {
  42913. height: math.unit(6 + 6/12, "feet"),
  42914. weight: math.unit(350, "lb"),
  42915. name: "Front",
  42916. image: {
  42917. source: "./media/characters/tristan-hawthorne/front.svg",
  42918. extra: 1159/1124,
  42919. bottom: 37/1196
  42920. },
  42921. form: "labrador",
  42922. default: true
  42923. },
  42924. skunkFront: {
  42925. height: math.unit(4 + 6/12, "feet"),
  42926. weight: math.unit(120, "lb"),
  42927. name: "Front",
  42928. image: {
  42929. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42930. extra: 1609/1551,
  42931. bottom: 169/1778
  42932. },
  42933. form: "skunk",
  42934. default: true
  42935. },
  42936. },
  42937. [
  42938. {
  42939. name: "Normal",
  42940. height: math.unit(6 + 6/12, "feet"),
  42941. form: "labrador",
  42942. default: true
  42943. },
  42944. {
  42945. name: "Normal",
  42946. height: math.unit(4 + 6/12, "feet"),
  42947. form: "skunk",
  42948. default: true
  42949. },
  42950. ],
  42951. {
  42952. "labrador": {
  42953. name: "Labrador",
  42954. default: true
  42955. },
  42956. "skunk": {
  42957. name: "Skunk"
  42958. }
  42959. }
  42960. ))
  42961. characterMakers.push(() => makeCharacter(
  42962. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42963. {
  42964. front: {
  42965. height: math.unit(5 + 11/12, "feet"),
  42966. weight: math.unit(190, "lb"),
  42967. name: "Front",
  42968. image: {
  42969. source: "./media/characters/mizu/front.svg",
  42970. extra: 1988/1788,
  42971. bottom: 14/2002
  42972. }
  42973. },
  42974. },
  42975. [
  42976. {
  42977. name: "Normal",
  42978. height: math.unit(5 + 11/12, "feet"),
  42979. default: true
  42980. },
  42981. ]
  42982. ))
  42983. characterMakers.push(() => makeCharacter(
  42984. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42985. {
  42986. front: {
  42987. height: math.unit(1.7, "feet"),
  42988. weight: math.unit(50, "lb"),
  42989. name: "Front",
  42990. image: {
  42991. source: "./media/characters/dechroma/front.svg",
  42992. extra: 1095/859,
  42993. bottom: 64/1159
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Normal",
  43000. height: math.unit(1.7, "feet"),
  43001. default: true
  43002. },
  43003. ]
  43004. ))
  43005. characterMakers.push(() => makeCharacter(
  43006. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43007. {
  43008. side: {
  43009. height: math.unit(30, "feet"),
  43010. name: "Side",
  43011. image: {
  43012. source: "./media/characters/veluren-thanazel/side.svg",
  43013. extra: 1611/633,
  43014. bottom: 118/1729
  43015. }
  43016. },
  43017. front: {
  43018. height: math.unit(30, "feet"),
  43019. name: "Front",
  43020. image: {
  43021. source: "./media/characters/veluren-thanazel/front.svg",
  43022. extra: 1486/636,
  43023. bottom: 238/1724
  43024. }
  43025. },
  43026. head: {
  43027. height: math.unit(21.4, "feet"),
  43028. name: "Head",
  43029. image: {
  43030. source: "./media/characters/veluren-thanazel/head.svg"
  43031. }
  43032. },
  43033. genitals: {
  43034. height: math.unit(19.4, "feet"),
  43035. name: "Genitals",
  43036. image: {
  43037. source: "./media/characters/veluren-thanazel/genitals.svg"
  43038. }
  43039. },
  43040. },
  43041. [
  43042. {
  43043. name: "Social",
  43044. height: math.unit(6, "feet")
  43045. },
  43046. {
  43047. name: "Play",
  43048. height: math.unit(12, "feet")
  43049. },
  43050. {
  43051. name: "True",
  43052. height: math.unit(30, "feet"),
  43053. default: true
  43054. },
  43055. ]
  43056. ))
  43057. characterMakers.push(() => makeCharacter(
  43058. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43059. {
  43060. front: {
  43061. height: math.unit(7 + 6/12, "feet"),
  43062. weight: math.unit(500, "kg"),
  43063. name: "Front",
  43064. image: {
  43065. source: "./media/characters/arcturas/front.svg",
  43066. extra: 1700/1500,
  43067. bottom: 145/1845
  43068. }
  43069. },
  43070. },
  43071. [
  43072. {
  43073. name: "Normal",
  43074. height: math.unit(7 + 6/12, "feet"),
  43075. default: true
  43076. },
  43077. ]
  43078. ))
  43079. characterMakers.push(() => makeCharacter(
  43080. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43081. {
  43082. side: {
  43083. height: math.unit(6, "feet"),
  43084. weight: math.unit(2, "tons"),
  43085. name: "Side",
  43086. image: {
  43087. source: "./media/characters/vitaen/side.svg",
  43088. extra: 1157/617,
  43089. bottom: 122/1279
  43090. }
  43091. },
  43092. },
  43093. [
  43094. {
  43095. name: "Normal",
  43096. height: math.unit(6, "feet"),
  43097. default: true
  43098. },
  43099. ]
  43100. ))
  43101. characterMakers.push(() => makeCharacter(
  43102. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43103. {
  43104. front: {
  43105. height: math.unit(19, "feet"),
  43106. name: "Front",
  43107. image: {
  43108. source: "./media/characters/fia-dreamweaver/front.svg",
  43109. extra: 1630/1504,
  43110. bottom: 25/1655
  43111. }
  43112. },
  43113. },
  43114. [
  43115. {
  43116. name: "Normal",
  43117. height: math.unit(19, "feet"),
  43118. default: true
  43119. },
  43120. ]
  43121. ))
  43122. characterMakers.push(() => makeCharacter(
  43123. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43124. {
  43125. front: {
  43126. height: math.unit(5 + 4/12, "feet"),
  43127. name: "Front",
  43128. image: {
  43129. source: "./media/characters/artan/front.svg",
  43130. extra: 1618/1535,
  43131. bottom: 46/1664
  43132. }
  43133. },
  43134. back: {
  43135. height: math.unit(5 + 4/12, "feet"),
  43136. name: "Back",
  43137. image: {
  43138. source: "./media/characters/artan/back.svg",
  43139. extra: 1618/1543,
  43140. bottom: 31/1649
  43141. }
  43142. },
  43143. },
  43144. [
  43145. {
  43146. name: "Normal",
  43147. height: math.unit(5 + 4/12, "feet"),
  43148. default: true
  43149. },
  43150. ]
  43151. ))
  43152. characterMakers.push(() => makeCharacter(
  43153. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43154. {
  43155. side: {
  43156. height: math.unit(182, "cm"),
  43157. weight: math.unit(1000, "lb"),
  43158. name: "Side",
  43159. image: {
  43160. source: "./media/characters/silver-dragon/side.svg",
  43161. extra: 710/287,
  43162. bottom: 88/798
  43163. }
  43164. },
  43165. },
  43166. [
  43167. {
  43168. name: "Normal",
  43169. height: math.unit(182, "cm"),
  43170. default: true
  43171. },
  43172. ]
  43173. ))
  43174. characterMakers.push(() => makeCharacter(
  43175. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43176. {
  43177. side: {
  43178. height: math.unit(6 + 6/12, "feet"),
  43179. weight: math.unit(1.5, "tons"),
  43180. name: "Side",
  43181. image: {
  43182. source: "./media/characters/zephyr/side.svg",
  43183. extra: 1433/586,
  43184. bottom: 109/1542
  43185. }
  43186. },
  43187. },
  43188. [
  43189. {
  43190. name: "Normal",
  43191. height: math.unit(6 + 6/12, "feet"),
  43192. default: true
  43193. },
  43194. ]
  43195. ))
  43196. characterMakers.push(() => makeCharacter(
  43197. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43198. {
  43199. side: {
  43200. height: math.unit(1, "feet"),
  43201. name: "Side",
  43202. image: {
  43203. source: "./media/characters/vixye/side.svg",
  43204. extra: 632/541,
  43205. bottom: 0/632
  43206. }
  43207. },
  43208. },
  43209. [
  43210. {
  43211. name: "Normal",
  43212. height: math.unit(1, "feet"),
  43213. default: true
  43214. },
  43215. {
  43216. name: "True",
  43217. height: math.unit(1e15, "multiverses")
  43218. },
  43219. ]
  43220. ))
  43221. characterMakers.push(() => makeCharacter(
  43222. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43223. {
  43224. front: {
  43225. height: math.unit(8 + 2/12, "feet"),
  43226. weight: math.unit(650, "lb"),
  43227. name: "Front",
  43228. image: {
  43229. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43230. extra: 1174/1137,
  43231. bottom: 82/1256
  43232. }
  43233. },
  43234. back: {
  43235. height: math.unit(8 + 2/12, "feet"),
  43236. weight: math.unit(650, "lb"),
  43237. name: "Back",
  43238. image: {
  43239. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43240. extra: 1204/1157,
  43241. bottom: 46/1250
  43242. }
  43243. },
  43244. },
  43245. [
  43246. {
  43247. name: "Wildform",
  43248. height: math.unit(8 + 2/12, "feet"),
  43249. default: true
  43250. },
  43251. ]
  43252. ))
  43253. characterMakers.push(() => makeCharacter(
  43254. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43255. {
  43256. front: {
  43257. height: math.unit(18, "feet"),
  43258. name: "Front",
  43259. image: {
  43260. source: "./media/characters/cyphin/front.svg",
  43261. extra: 970/886,
  43262. bottom: 42/1012
  43263. }
  43264. },
  43265. back: {
  43266. height: math.unit(18, "feet"),
  43267. name: "Back",
  43268. image: {
  43269. source: "./media/characters/cyphin/back.svg",
  43270. extra: 1009/894,
  43271. bottom: 24/1033
  43272. }
  43273. },
  43274. head: {
  43275. height: math.unit(5.05, "feet"),
  43276. name: "Head",
  43277. image: {
  43278. source: "./media/characters/cyphin/head.svg"
  43279. }
  43280. },
  43281. tailbud: {
  43282. height: math.unit(5, "feet"),
  43283. name: "Tailbud",
  43284. image: {
  43285. source: "./media/characters/cyphin/tailbud.svg"
  43286. }
  43287. },
  43288. },
  43289. [
  43290. ]
  43291. ))
  43292. characterMakers.push(() => makeCharacter(
  43293. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43294. {
  43295. side: {
  43296. height: math.unit(10, "feet"),
  43297. weight: math.unit(6, "tons"),
  43298. name: "Side",
  43299. image: {
  43300. source: "./media/characters/raijin/side.svg",
  43301. extra: 1529/613,
  43302. bottom: 337/1866
  43303. }
  43304. },
  43305. },
  43306. [
  43307. {
  43308. name: "Normal",
  43309. height: math.unit(10, "feet"),
  43310. default: true
  43311. },
  43312. ]
  43313. ))
  43314. characterMakers.push(() => makeCharacter(
  43315. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43316. {
  43317. side: {
  43318. height: math.unit(9, "feet"),
  43319. name: "Side",
  43320. image: {
  43321. source: "./media/characters/nilghais/side.svg",
  43322. extra: 1047/744,
  43323. bottom: 91/1138
  43324. }
  43325. },
  43326. head: {
  43327. height: math.unit(3.14, "feet"),
  43328. name: "Head",
  43329. image: {
  43330. source: "./media/characters/nilghais/head.svg"
  43331. }
  43332. },
  43333. mouth: {
  43334. height: math.unit(4.6, "feet"),
  43335. name: "Mouth",
  43336. image: {
  43337. source: "./media/characters/nilghais/mouth.svg"
  43338. }
  43339. },
  43340. wings: {
  43341. height: math.unit(24, "feet"),
  43342. name: "Wings",
  43343. image: {
  43344. source: "./media/characters/nilghais/wings.svg"
  43345. }
  43346. },
  43347. ass: {
  43348. height: math.unit(6.12, "feet"),
  43349. name: "Ass",
  43350. image: {
  43351. source: "./media/characters/nilghais/ass.svg"
  43352. }
  43353. },
  43354. },
  43355. [
  43356. {
  43357. name: "Normal",
  43358. height: math.unit(9, "feet"),
  43359. default: true
  43360. },
  43361. ]
  43362. ))
  43363. characterMakers.push(() => makeCharacter(
  43364. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43365. {
  43366. regular: {
  43367. height: math.unit(16 + 2/12, "feet"),
  43368. weight: math.unit(2300, "lb"),
  43369. name: "Regular",
  43370. image: {
  43371. source: "./media/characters/zolgar/regular.svg",
  43372. extra: 1246/1004,
  43373. bottom: 124/1370
  43374. }
  43375. },
  43376. boxers: {
  43377. height: math.unit(16 + 2/12, "feet"),
  43378. weight: math.unit(2300, "lb"),
  43379. name: "Boxers",
  43380. image: {
  43381. source: "./media/characters/zolgar/boxers.svg",
  43382. extra: 1246/1004,
  43383. bottom: 124/1370
  43384. }
  43385. },
  43386. armored: {
  43387. height: math.unit(16 + 2/12, "feet"),
  43388. weight: math.unit(2300, "lb"),
  43389. name: "Armored",
  43390. image: {
  43391. source: "./media/characters/zolgar/armored.svg",
  43392. extra: 1246/1004,
  43393. bottom: 124/1370
  43394. }
  43395. },
  43396. goth: {
  43397. height: math.unit(16 + 2/12, "feet"),
  43398. weight: math.unit(2300, "lb"),
  43399. name: "Goth",
  43400. image: {
  43401. source: "./media/characters/zolgar/goth.svg",
  43402. extra: 1246/1004,
  43403. bottom: 124/1370
  43404. }
  43405. },
  43406. },
  43407. [
  43408. {
  43409. name: "Shrunken Down",
  43410. height: math.unit(9 + 2/12, "feet")
  43411. },
  43412. {
  43413. name: "Normal",
  43414. height: math.unit(16 + 2/12, "feet"),
  43415. default: true
  43416. },
  43417. ]
  43418. ))
  43419. characterMakers.push(() => makeCharacter(
  43420. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43421. {
  43422. front: {
  43423. height: math.unit(6, "feet"),
  43424. weight: math.unit(168, "lb"),
  43425. name: "Front",
  43426. image: {
  43427. source: "./media/characters/luca/front.svg",
  43428. extra: 841/667,
  43429. bottom: 102/943
  43430. }
  43431. },
  43432. },
  43433. [
  43434. {
  43435. name: "Normal",
  43436. height: math.unit(6, "feet"),
  43437. default: true
  43438. },
  43439. ]
  43440. ))
  43441. characterMakers.push(() => makeCharacter(
  43442. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43443. {
  43444. side: {
  43445. height: math.unit(7 + 3/12, "feet"),
  43446. weight: math.unit(312, "lb"),
  43447. name: "Side",
  43448. image: {
  43449. source: "./media/characters/zezo/side.svg",
  43450. extra: 1192/1067,
  43451. bottom: 63/1255
  43452. }
  43453. },
  43454. },
  43455. [
  43456. {
  43457. name: "Normal",
  43458. height: math.unit(7 + 3/12, "feet"),
  43459. default: true
  43460. },
  43461. ]
  43462. ))
  43463. characterMakers.push(() => makeCharacter(
  43464. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43465. {
  43466. front: {
  43467. height: math.unit(5 + 5/12, "feet"),
  43468. weight: math.unit(170, "lb"),
  43469. name: "Front",
  43470. image: {
  43471. source: "./media/characters/mayso/front.svg",
  43472. extra: 1215/1108,
  43473. bottom: 16/1231
  43474. }
  43475. },
  43476. },
  43477. [
  43478. {
  43479. name: "Normal",
  43480. height: math.unit(5 + 5/12, "feet"),
  43481. default: true
  43482. },
  43483. ]
  43484. ))
  43485. characterMakers.push(() => makeCharacter(
  43486. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43487. {
  43488. front: {
  43489. height: math.unit(4 + 3/12, "feet"),
  43490. weight: math.unit(80, "lb"),
  43491. name: "Front",
  43492. image: {
  43493. source: "./media/characters/hess/front.svg",
  43494. extra: 1200/1123,
  43495. bottom: 16/1216
  43496. }
  43497. },
  43498. },
  43499. [
  43500. {
  43501. name: "Normal",
  43502. height: math.unit(4 + 3/12, "feet"),
  43503. default: true
  43504. },
  43505. ]
  43506. ))
  43507. characterMakers.push(() => makeCharacter(
  43508. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43509. {
  43510. front: {
  43511. height: math.unit(1.9, "meters"),
  43512. name: "Front",
  43513. image: {
  43514. source: "./media/characters/ashgar/front.svg",
  43515. extra: 1177/1146,
  43516. bottom: 99/1276
  43517. }
  43518. },
  43519. back: {
  43520. height: math.unit(1.9, "meters"),
  43521. name: "Back",
  43522. image: {
  43523. source: "./media/characters/ashgar/back.svg",
  43524. extra: 1201/1183,
  43525. bottom: 53/1254
  43526. }
  43527. },
  43528. feral: {
  43529. height: math.unit(1.4, "meters"),
  43530. name: "Feral",
  43531. image: {
  43532. source: "./media/characters/ashgar/feral.svg",
  43533. extra: 370/345,
  43534. bottom: 45/415
  43535. }
  43536. },
  43537. },
  43538. [
  43539. {
  43540. name: "Normal",
  43541. height: math.unit(1.9, "meters"),
  43542. default: true
  43543. },
  43544. ]
  43545. ))
  43546. characterMakers.push(() => makeCharacter(
  43547. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43548. {
  43549. regular: {
  43550. height: math.unit(6, "feet"),
  43551. weight: math.unit(220, "lb"),
  43552. name: "Regular",
  43553. image: {
  43554. source: "./media/characters/phillip/regular.svg",
  43555. extra: 1373/1277,
  43556. bottom: 75/1448
  43557. }
  43558. },
  43559. dressed: {
  43560. height: math.unit(6, "feet"),
  43561. weight: math.unit(220, "lb"),
  43562. name: "Dressed",
  43563. image: {
  43564. source: "./media/characters/phillip/dressed.svg",
  43565. extra: 1373/1277,
  43566. bottom: 75/1448
  43567. }
  43568. },
  43569. paw: {
  43570. height: math.unit(1.44, "feet"),
  43571. name: "Paw",
  43572. image: {
  43573. source: "./media/characters/phillip/paw.svg"
  43574. }
  43575. },
  43576. },
  43577. [
  43578. {
  43579. name: "Normal",
  43580. height: math.unit(6, "feet"),
  43581. default: true
  43582. },
  43583. ]
  43584. ))
  43585. characterMakers.push(() => makeCharacter(
  43586. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43587. {
  43588. side: {
  43589. height: math.unit(42, "feet"),
  43590. name: "Side",
  43591. image: {
  43592. source: "./media/characters/uvula/side.svg",
  43593. extra: 683/586,
  43594. bottom: 60/743
  43595. }
  43596. },
  43597. front: {
  43598. height: math.unit(42, "feet"),
  43599. name: "Front",
  43600. image: {
  43601. source: "./media/characters/uvula/front.svg",
  43602. extra: 705/613,
  43603. bottom: 54/759
  43604. }
  43605. },
  43606. maw: {
  43607. height: math.unit(23.5, "feet"),
  43608. name: "Maw",
  43609. image: {
  43610. source: "./media/characters/uvula/maw.svg"
  43611. }
  43612. },
  43613. },
  43614. [
  43615. {
  43616. name: "Original Size",
  43617. height: math.unit(14, "inches")
  43618. },
  43619. {
  43620. name: "Human Size",
  43621. height: math.unit(6, "feet")
  43622. },
  43623. {
  43624. name: "Big",
  43625. height: math.unit(42, "feet"),
  43626. default: true
  43627. },
  43628. {
  43629. name: "Bigger",
  43630. height: math.unit(100, "feet")
  43631. },
  43632. ]
  43633. ))
  43634. characterMakers.push(() => makeCharacter(
  43635. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43636. {
  43637. front: {
  43638. height: math.unit(5 + 11/12, "feet"),
  43639. name: "Front",
  43640. image: {
  43641. source: "./media/characters/lannah/front.svg",
  43642. extra: 1208/1113,
  43643. bottom: 97/1305
  43644. }
  43645. },
  43646. },
  43647. [
  43648. {
  43649. name: "Normal",
  43650. height: math.unit(5 + 11/12, "feet"),
  43651. default: true
  43652. },
  43653. ]
  43654. ))
  43655. characterMakers.push(() => makeCharacter(
  43656. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43657. {
  43658. front: {
  43659. height: math.unit(6 + 3/12, "feet"),
  43660. weight: math.unit(3.5, "tons"),
  43661. name: "Front",
  43662. image: {
  43663. source: "./media/characters/emberflame/front.svg",
  43664. extra: 1198/672,
  43665. bottom: 82/1280
  43666. }
  43667. },
  43668. side: {
  43669. height: math.unit(6 + 3/12, "feet"),
  43670. weight: math.unit(3.5, "tons"),
  43671. name: "Side",
  43672. image: {
  43673. source: "./media/characters/emberflame/side.svg",
  43674. extra: 938/527,
  43675. bottom: 56/994
  43676. }
  43677. },
  43678. },
  43679. [
  43680. {
  43681. name: "Normal",
  43682. height: math.unit(6 + 3/12, "feet"),
  43683. default: true
  43684. },
  43685. ]
  43686. ))
  43687. characterMakers.push(() => makeCharacter(
  43688. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43689. {
  43690. side: {
  43691. height: math.unit(17.5, "feet"),
  43692. weight: math.unit(35, "tons"),
  43693. name: "Side",
  43694. image: {
  43695. source: "./media/characters/sophie-ambrose/side.svg",
  43696. extra: 1573/1242,
  43697. bottom: 71/1644
  43698. }
  43699. },
  43700. maw: {
  43701. height: math.unit(7.4, "feet"),
  43702. name: "Maw",
  43703. image: {
  43704. source: "./media/characters/sophie-ambrose/maw.svg"
  43705. }
  43706. },
  43707. },
  43708. [
  43709. {
  43710. name: "Normal",
  43711. height: math.unit(17.5, "feet"),
  43712. default: true
  43713. },
  43714. ]
  43715. ))
  43716. characterMakers.push(() => makeCharacter(
  43717. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43718. {
  43719. front: {
  43720. height: math.unit(280, "feet"),
  43721. weight: math.unit(550, "tons"),
  43722. name: "Front",
  43723. image: {
  43724. source: "./media/characters/king-mugi/front.svg",
  43725. extra: 1102/947,
  43726. bottom: 104/1206
  43727. }
  43728. },
  43729. },
  43730. [
  43731. {
  43732. name: "King Mugi",
  43733. height: math.unit(280, "feet"),
  43734. default: true
  43735. },
  43736. ]
  43737. ))
  43738. characterMakers.push(() => makeCharacter(
  43739. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43740. {
  43741. front: {
  43742. height: math.unit(64, "meters"),
  43743. name: "Front",
  43744. image: {
  43745. source: "./media/characters/nova-fox/front.svg",
  43746. extra: 1310/1246,
  43747. bottom: 65/1375
  43748. }
  43749. },
  43750. },
  43751. [
  43752. {
  43753. name: "Macro",
  43754. height: math.unit(64, "meters"),
  43755. default: true
  43756. },
  43757. ]
  43758. ))
  43759. characterMakers.push(() => makeCharacter(
  43760. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43761. {
  43762. front: {
  43763. height: math.unit(6 + 3/12, "feet"),
  43764. weight: math.unit(170, "lb"),
  43765. name: "Front",
  43766. image: {
  43767. source: "./media/characters/sam-bat/front.svg",
  43768. extra: 1601/1411,
  43769. bottom: 125/1726
  43770. }
  43771. },
  43772. back: {
  43773. height: math.unit(6 + 3/12, "feet"),
  43774. weight: math.unit(170, "lb"),
  43775. name: "Back",
  43776. image: {
  43777. source: "./media/characters/sam-bat/back.svg",
  43778. extra: 1577/1405,
  43779. bottom: 58/1635
  43780. }
  43781. },
  43782. },
  43783. [
  43784. {
  43785. name: "Normal",
  43786. height: math.unit(6 + 3/12, "feet"),
  43787. default: true
  43788. },
  43789. ]
  43790. ))
  43791. characterMakers.push(() => makeCharacter(
  43792. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43793. {
  43794. front: {
  43795. height: math.unit(59, "feet"),
  43796. weight: math.unit(40000, "lb"),
  43797. name: "Front",
  43798. image: {
  43799. source: "./media/characters/inari/front.svg",
  43800. extra: 1884/1350,
  43801. bottom: 95/1979
  43802. }
  43803. },
  43804. },
  43805. [
  43806. {
  43807. name: "Gigantamax",
  43808. height: math.unit(59, "feet"),
  43809. default: true
  43810. },
  43811. ]
  43812. ))
  43813. characterMakers.push(() => makeCharacter(
  43814. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43815. {
  43816. front: {
  43817. height: math.unit(5 + 8/12, "feet"),
  43818. name: "Front",
  43819. image: {
  43820. source: "./media/characters/elizabeth/front.svg",
  43821. extra: 1395/1298,
  43822. bottom: 54/1449
  43823. }
  43824. },
  43825. mouth: {
  43826. height: math.unit(1.97, "feet"),
  43827. name: "Mouth",
  43828. image: {
  43829. source: "./media/characters/elizabeth/mouth.svg"
  43830. }
  43831. },
  43832. foot: {
  43833. height: math.unit(1.17, "feet"),
  43834. name: "Foot",
  43835. image: {
  43836. source: "./media/characters/elizabeth/foot.svg"
  43837. }
  43838. },
  43839. },
  43840. [
  43841. {
  43842. name: "Normal",
  43843. height: math.unit(5 + 8/12, "feet"),
  43844. default: true
  43845. },
  43846. {
  43847. name: "Minimacro",
  43848. height: math.unit(18, "feet")
  43849. },
  43850. {
  43851. name: "Macro",
  43852. height: math.unit(180, "feet")
  43853. },
  43854. ]
  43855. ))
  43856. characterMakers.push(() => makeCharacter(
  43857. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43858. {
  43859. front: {
  43860. height: math.unit(5 + 2/12, "feet"),
  43861. name: "Front",
  43862. image: {
  43863. source: "./media/characters/october-gossamer/front.svg",
  43864. extra: 505/454,
  43865. bottom: 7/512
  43866. }
  43867. },
  43868. back: {
  43869. height: math.unit(5 + 2/12, "feet"),
  43870. name: "Back",
  43871. image: {
  43872. source: "./media/characters/october-gossamer/back.svg",
  43873. extra: 501/454,
  43874. bottom: 11/512
  43875. }
  43876. },
  43877. },
  43878. [
  43879. {
  43880. name: "Normal",
  43881. height: math.unit(5 + 2/12, "feet"),
  43882. default: true
  43883. },
  43884. ]
  43885. ))
  43886. characterMakers.push(() => makeCharacter(
  43887. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43888. {
  43889. front: {
  43890. height: math.unit(5, "feet"),
  43891. name: "Front",
  43892. image: {
  43893. source: "./media/characters/epiglottis/front.svg",
  43894. extra: 923/849,
  43895. bottom: 17/940
  43896. }
  43897. },
  43898. },
  43899. [
  43900. {
  43901. name: "Original Size",
  43902. height: math.unit(10, "inches")
  43903. },
  43904. {
  43905. name: "Human Size",
  43906. height: math.unit(5, "feet"),
  43907. default: true
  43908. },
  43909. {
  43910. name: "Big",
  43911. height: math.unit(25, "feet")
  43912. },
  43913. {
  43914. name: "Bigger",
  43915. height: math.unit(50, "feet")
  43916. },
  43917. {
  43918. name: "oh lawd",
  43919. height: math.unit(75, "feet")
  43920. },
  43921. ]
  43922. ))
  43923. characterMakers.push(() => makeCharacter(
  43924. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43925. {
  43926. front: {
  43927. height: math.unit(2 + 4/12, "feet"),
  43928. weight: math.unit(60, "lb"),
  43929. name: "Front",
  43930. image: {
  43931. source: "./media/characters/lerm/front.svg",
  43932. extra: 796/790,
  43933. bottom: 79/875
  43934. }
  43935. },
  43936. },
  43937. [
  43938. {
  43939. name: "Normal",
  43940. height: math.unit(2 + 4/12, "feet"),
  43941. default: true
  43942. },
  43943. ]
  43944. ))
  43945. characterMakers.push(() => makeCharacter(
  43946. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43947. {
  43948. front: {
  43949. height: math.unit(5.5, "feet"),
  43950. weight: math.unit(130, "lb"),
  43951. name: "Front",
  43952. image: {
  43953. source: "./media/characters/xena-nebadon/front.svg",
  43954. extra: 1828/1730,
  43955. bottom: 79/1907
  43956. }
  43957. },
  43958. },
  43959. [
  43960. {
  43961. name: "Tiny Puppy",
  43962. height: math.unit(3, "inches")
  43963. },
  43964. {
  43965. name: "Normal",
  43966. height: math.unit(5.5, "feet"),
  43967. default: true
  43968. },
  43969. {
  43970. name: "Lotta Lady",
  43971. height: math.unit(12, "feet")
  43972. },
  43973. {
  43974. name: "Pretty Big",
  43975. height: math.unit(100, "feet")
  43976. },
  43977. {
  43978. name: "Big",
  43979. height: math.unit(500, "feet")
  43980. },
  43981. {
  43982. name: "Skyscraper Toys",
  43983. height: math.unit(2500, "feet")
  43984. },
  43985. {
  43986. name: "Plane Catcher",
  43987. height: math.unit(8, "miles")
  43988. },
  43989. {
  43990. name: "Planet Toys",
  43991. height: math.unit(15, "earths")
  43992. },
  43993. {
  43994. name: "Stardust",
  43995. height: math.unit(0.25, "galaxies")
  43996. },
  43997. {
  43998. name: "Snacks",
  43999. height: math.unit(70, "universes")
  44000. },
  44001. ]
  44002. ))
  44003. characterMakers.push(() => makeCharacter(
  44004. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44005. {
  44006. front: {
  44007. height: math.unit(1.6, "meters"),
  44008. weight: math.unit(60, "kg"),
  44009. name: "Front",
  44010. image: {
  44011. source: "./media/characters/bounty/front.svg",
  44012. extra: 1426/1308,
  44013. bottom: 15/1441
  44014. }
  44015. },
  44016. back: {
  44017. height: math.unit(1.6, "meters"),
  44018. weight: math.unit(60, "kg"),
  44019. name: "Back",
  44020. image: {
  44021. source: "./media/characters/bounty/back.svg",
  44022. extra: 1417/1307,
  44023. bottom: 8/1425
  44024. }
  44025. },
  44026. },
  44027. [
  44028. {
  44029. name: "Normal",
  44030. height: math.unit(1.6, "meters"),
  44031. default: true
  44032. },
  44033. {
  44034. name: "Macro",
  44035. height: math.unit(300, "meters")
  44036. },
  44037. ]
  44038. ))
  44039. characterMakers.push(() => makeCharacter(
  44040. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44041. {
  44042. front: {
  44043. height: math.unit(2 + 8/12, "feet"),
  44044. weight: math.unit(15, "lb"),
  44045. name: "Front",
  44046. image: {
  44047. source: "./media/characters/mochi/front.svg",
  44048. extra: 1022/852,
  44049. bottom: 435/1457
  44050. }
  44051. },
  44052. back: {
  44053. height: math.unit(2 + 8/12, "feet"),
  44054. weight: math.unit(15, "lb"),
  44055. name: "Back",
  44056. image: {
  44057. source: "./media/characters/mochi/back.svg",
  44058. extra: 1335/1119,
  44059. bottom: 39/1374
  44060. }
  44061. },
  44062. bird: {
  44063. height: math.unit(2 + 8/12, "feet"),
  44064. weight: math.unit(15, "lb"),
  44065. name: "Bird",
  44066. image: {
  44067. source: "./media/characters/mochi/bird.svg",
  44068. extra: 1251/1113,
  44069. bottom: 178/1429
  44070. }
  44071. },
  44072. kaiju: {
  44073. height: math.unit(154, "feet"),
  44074. weight: math.unit(1e7, "lb"),
  44075. name: "Kaiju",
  44076. image: {
  44077. source: "./media/characters/mochi/kaiju.svg",
  44078. extra: 460/324,
  44079. bottom: 40/500
  44080. }
  44081. },
  44082. head: {
  44083. height: math.unit(1.21, "feet"),
  44084. name: "Head",
  44085. image: {
  44086. source: "./media/characters/mochi/head.svg"
  44087. }
  44088. },
  44089. alternateTail: {
  44090. height: math.unit(2 + 8/12, "feet"),
  44091. weight: math.unit(45, "lb"),
  44092. name: "Alternate Tail",
  44093. image: {
  44094. source: "./media/characters/mochi/alternate-tail.svg",
  44095. extra: 139/76,
  44096. bottom: 45/184
  44097. }
  44098. },
  44099. },
  44100. [
  44101. {
  44102. name: "Micro",
  44103. height: math.unit(2, "inches")
  44104. },
  44105. {
  44106. name: "Normal",
  44107. height: math.unit(2 + 8/12, "feet"),
  44108. default: true
  44109. },
  44110. {
  44111. name: "Macro",
  44112. height: math.unit(106, "feet")
  44113. },
  44114. ]
  44115. ))
  44116. characterMakers.push(() => makeCharacter(
  44117. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44118. {
  44119. front: {
  44120. height: math.unit(5.67, "feet"),
  44121. weight: math.unit(135, "lb"),
  44122. name: "Front",
  44123. image: {
  44124. source: "./media/characters/sarel/front.svg",
  44125. extra: 865/788,
  44126. bottom: 97/962
  44127. }
  44128. },
  44129. back: {
  44130. height: math.unit(5.67, "feet"),
  44131. weight: math.unit(135, "lb"),
  44132. name: "Back",
  44133. image: {
  44134. source: "./media/characters/sarel/back.svg",
  44135. extra: 857/777,
  44136. bottom: 32/889
  44137. }
  44138. },
  44139. chozoan: {
  44140. height: math.unit(5.67, "feet"),
  44141. weight: math.unit(135, "lb"),
  44142. name: "Chozoan",
  44143. image: {
  44144. source: "./media/characters/sarel/chozoan.svg",
  44145. extra: 865/788,
  44146. bottom: 97/962
  44147. }
  44148. },
  44149. current: {
  44150. height: math.unit(5.67, "feet"),
  44151. weight: math.unit(135, "lb"),
  44152. name: "Current",
  44153. image: {
  44154. source: "./media/characters/sarel/current.svg",
  44155. extra: 865/788,
  44156. bottom: 97/962
  44157. }
  44158. },
  44159. head: {
  44160. height: math.unit(1.77, "feet"),
  44161. name: "Head",
  44162. image: {
  44163. source: "./media/characters/sarel/head.svg"
  44164. }
  44165. },
  44166. claws: {
  44167. height: math.unit(1.8, "feet"),
  44168. name: "Claws",
  44169. image: {
  44170. source: "./media/characters/sarel/claws.svg"
  44171. }
  44172. },
  44173. clawsAlt: {
  44174. height: math.unit(1.8, "feet"),
  44175. name: "Claws-alt",
  44176. image: {
  44177. source: "./media/characters/sarel/claws-alt.svg"
  44178. }
  44179. },
  44180. },
  44181. [
  44182. {
  44183. name: "Normal",
  44184. height: math.unit(5.67, "feet"),
  44185. default: true
  44186. },
  44187. ]
  44188. ))
  44189. characterMakers.push(() => makeCharacter(
  44190. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44191. {
  44192. front: {
  44193. height: math.unit(5500, "feet"),
  44194. name: "Front",
  44195. image: {
  44196. source: "./media/characters/alyonia/front.svg",
  44197. extra: 1200/1135,
  44198. bottom: 29/1229
  44199. }
  44200. },
  44201. back: {
  44202. height: math.unit(5500, "feet"),
  44203. name: "Back",
  44204. image: {
  44205. source: "./media/characters/alyonia/back.svg",
  44206. extra: 1205/1138,
  44207. bottom: 10/1215
  44208. }
  44209. },
  44210. },
  44211. [
  44212. {
  44213. name: "Small",
  44214. height: math.unit(10, "feet")
  44215. },
  44216. {
  44217. name: "Macro",
  44218. height: math.unit(500, "feet")
  44219. },
  44220. {
  44221. name: "Mega Macro",
  44222. height: math.unit(5500, "feet"),
  44223. default: true
  44224. },
  44225. {
  44226. name: "Mega Macro+",
  44227. height: math.unit(500000, "feet")
  44228. },
  44229. {
  44230. name: "Giga Macro",
  44231. height: math.unit(3000, "miles")
  44232. },
  44233. {
  44234. name: "Tera Macro",
  44235. height: math.unit(2.8e6, "miles")
  44236. },
  44237. {
  44238. name: "Galactic",
  44239. height: math.unit(120000, "lightyears")
  44240. },
  44241. ]
  44242. ))
  44243. characterMakers.push(() => makeCharacter(
  44244. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44245. {
  44246. werewolf: {
  44247. height: math.unit(8, "feet"),
  44248. weight: math.unit(425, "lb"),
  44249. name: "Werewolf",
  44250. image: {
  44251. source: "./media/characters/autumn/werewolf.svg",
  44252. extra: 2154/2031,
  44253. bottom: 160/2314
  44254. }
  44255. },
  44256. human: {
  44257. height: math.unit(5 + 8/12, "feet"),
  44258. weight: math.unit(150, "lb"),
  44259. name: "Human",
  44260. image: {
  44261. source: "./media/characters/autumn/human.svg",
  44262. extra: 1200/1149,
  44263. bottom: 30/1230
  44264. }
  44265. },
  44266. },
  44267. [
  44268. {
  44269. name: "Normal",
  44270. height: math.unit(8, "feet"),
  44271. default: true
  44272. },
  44273. ]
  44274. ))
  44275. characterMakers.push(() => makeCharacter(
  44276. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44277. {
  44278. front: {
  44279. height: math.unit(8 + 5/12, "feet"),
  44280. weight: math.unit(825, "lb"),
  44281. name: "Front",
  44282. image: {
  44283. source: "./media/characters/cobalt-charizard/front.svg",
  44284. extra: 1268/1155,
  44285. bottom: 122/1390
  44286. }
  44287. },
  44288. side: {
  44289. height: math.unit(8 + 5/12, "feet"),
  44290. weight: math.unit(825, "lb"),
  44291. name: "Side",
  44292. image: {
  44293. source: "./media/characters/cobalt-charizard/side.svg",
  44294. extra: 1348/1257,
  44295. bottom: 58/1406
  44296. }
  44297. },
  44298. gMax: {
  44299. height: math.unit(134 + 11/12, "feet"),
  44300. name: "G-Max",
  44301. image: {
  44302. source: "./media/characters/cobalt-charizard/g-max.svg",
  44303. extra: 1835/1541,
  44304. bottom: 151/1986
  44305. }
  44306. },
  44307. },
  44308. [
  44309. {
  44310. name: "Normal",
  44311. height: math.unit(8 + 5/12, "feet"),
  44312. default: true
  44313. },
  44314. ]
  44315. ))
  44316. characterMakers.push(() => makeCharacter(
  44317. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44318. {
  44319. front: {
  44320. height: math.unit(6 + 3/12, "feet"),
  44321. weight: math.unit(210, "lb"),
  44322. name: "Front",
  44323. image: {
  44324. source: "./media/characters/stella/front.svg",
  44325. extra: 3549/3335,
  44326. bottom: 51/3600
  44327. }
  44328. },
  44329. },
  44330. [
  44331. {
  44332. name: "Normal",
  44333. height: math.unit(6 + 3/12, "feet"),
  44334. default: true
  44335. },
  44336. ]
  44337. ))
  44338. characterMakers.push(() => makeCharacter(
  44339. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44340. {
  44341. front: {
  44342. height: math.unit(5, "feet"),
  44343. weight: math.unit(90, "lb"),
  44344. name: "Front",
  44345. image: {
  44346. source: "./media/characters/riley-bishop/front.svg",
  44347. extra: 1450/1428,
  44348. bottom: 152/1602
  44349. }
  44350. },
  44351. },
  44352. [
  44353. {
  44354. name: "Normal",
  44355. height: math.unit(5, "feet"),
  44356. default: true
  44357. },
  44358. ]
  44359. ))
  44360. characterMakers.push(() => makeCharacter(
  44361. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44362. {
  44363. side: {
  44364. height: math.unit(8 + 2/12, "feet"),
  44365. weight: math.unit(500, "kg"),
  44366. name: "Side",
  44367. image: {
  44368. source: "./media/characters/theo-arcanine/side.svg",
  44369. extra: 1342/1074,
  44370. bottom: 111/1453
  44371. }
  44372. },
  44373. },
  44374. [
  44375. {
  44376. name: "Normal",
  44377. height: math.unit(8 + 2/12, "feet"),
  44378. default: true
  44379. },
  44380. ]
  44381. ))
  44382. characterMakers.push(() => makeCharacter(
  44383. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44384. {
  44385. front: {
  44386. height: math.unit(4, "feet"),
  44387. name: "Front",
  44388. image: {
  44389. source: "./media/characters/kali/front.svg",
  44390. extra: 1921/1357,
  44391. bottom: 70/1991
  44392. }
  44393. },
  44394. },
  44395. [
  44396. {
  44397. name: "Normal",
  44398. height: math.unit(4, "feet"),
  44399. default: true
  44400. },
  44401. {
  44402. name: "Macro",
  44403. height: math.unit(32, "meters")
  44404. },
  44405. {
  44406. name: "Macro+",
  44407. height: math.unit(150, "meters")
  44408. },
  44409. {
  44410. name: "Megamacro",
  44411. height: math.unit(7500, "meters")
  44412. },
  44413. {
  44414. name: "Megamacro+",
  44415. height: math.unit(80, "kilometers")
  44416. },
  44417. ]
  44418. ))
  44419. characterMakers.push(() => makeCharacter(
  44420. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44421. {
  44422. side: {
  44423. height: math.unit(5 + 11/12, "feet"),
  44424. weight: math.unit(236, "lb"),
  44425. name: "Side",
  44426. image: {
  44427. source: "./media/characters/gapp/side.svg",
  44428. extra: 775/340,
  44429. bottom: 58/833
  44430. }
  44431. },
  44432. mouth: {
  44433. height: math.unit(2.98, "feet"),
  44434. name: "Mouth",
  44435. image: {
  44436. source: "./media/characters/gapp/mouth.svg"
  44437. }
  44438. },
  44439. },
  44440. [
  44441. {
  44442. name: "Normal",
  44443. height: math.unit(5 + 1/12, "feet"),
  44444. default: true
  44445. },
  44446. ]
  44447. ))
  44448. characterMakers.push(() => makeCharacter(
  44449. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44450. {
  44451. front: {
  44452. height: math.unit(6, "feet"),
  44453. name: "Front",
  44454. image: {
  44455. source: "./media/characters/persephone/front.svg",
  44456. extra: 1895/1717,
  44457. bottom: 96/1991
  44458. }
  44459. },
  44460. back: {
  44461. height: math.unit(6, "feet"),
  44462. name: "Back",
  44463. image: {
  44464. source: "./media/characters/persephone/back.svg",
  44465. extra: 1868/1679,
  44466. bottom: 26/1894
  44467. }
  44468. },
  44469. casual: {
  44470. height: math.unit(6, "feet"),
  44471. name: "Casual",
  44472. image: {
  44473. source: "./media/characters/persephone/casual.svg",
  44474. extra: 1713/1541,
  44475. bottom: 76/1789
  44476. }
  44477. },
  44478. },
  44479. [
  44480. {
  44481. name: "Human Size",
  44482. height: math.unit(6, "feet")
  44483. },
  44484. {
  44485. name: "Big Steppy",
  44486. height: math.unit(600, "meters"),
  44487. default: true
  44488. },
  44489. {
  44490. name: "Galaxy Brain",
  44491. height: math.unit(1, "zettameter")
  44492. },
  44493. ]
  44494. ))
  44495. characterMakers.push(() => makeCharacter(
  44496. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44497. {
  44498. front: {
  44499. height: math.unit(1.85, "meters"),
  44500. name: "Front",
  44501. image: {
  44502. source: "./media/characters/riley-foxthing/front.svg",
  44503. extra: 1495/1354,
  44504. bottom: 122/1617
  44505. }
  44506. },
  44507. frontAlt: {
  44508. height: math.unit(1.85, "meters"),
  44509. name: "Front (Alt)",
  44510. image: {
  44511. source: "./media/characters/riley-foxthing/front-alt.svg",
  44512. extra: 1572/1389,
  44513. bottom: 116/1688
  44514. }
  44515. },
  44516. },
  44517. [
  44518. {
  44519. name: "Normal Sized",
  44520. height: math.unit(1.85, "meters"),
  44521. default: true
  44522. },
  44523. {
  44524. name: "Quite Sizable",
  44525. height: math.unit(5, "meters")
  44526. },
  44527. {
  44528. name: "Rather Large",
  44529. height: math.unit(20, "meters")
  44530. },
  44531. {
  44532. name: "Macro",
  44533. height: math.unit(450, "meters")
  44534. },
  44535. {
  44536. name: "Giga",
  44537. height: math.unit(5, "km")
  44538. },
  44539. ]
  44540. ))
  44541. characterMakers.push(() => makeCharacter(
  44542. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44543. {
  44544. front: {
  44545. height: math.unit(6, "feet"),
  44546. weight: math.unit(200, "lb"),
  44547. name: "Front",
  44548. image: {
  44549. source: "./media/characters/blizzard/front.svg",
  44550. extra: 1136/990,
  44551. bottom: 136/1272
  44552. }
  44553. },
  44554. back: {
  44555. height: math.unit(6, "feet"),
  44556. weight: math.unit(200, "lb"),
  44557. name: "Back",
  44558. image: {
  44559. source: "./media/characters/blizzard/back.svg",
  44560. extra: 1175/1034,
  44561. bottom: 97/1272
  44562. }
  44563. },
  44564. sitting: {
  44565. height: math.unit(3.725, "feet"),
  44566. weight: math.unit(200, "lb"),
  44567. name: "Sitting",
  44568. image: {
  44569. source: "./media/characters/blizzard/sitting.svg",
  44570. extra: 581/485,
  44571. bottom: 90/671
  44572. }
  44573. },
  44574. frontWizard: {
  44575. height: math.unit(7.9, "feet"),
  44576. weight: math.unit(200, "lb"),
  44577. name: "Front (Wizard)",
  44578. image: {
  44579. source: "./media/characters/blizzard/front-wizard.svg"
  44580. }
  44581. },
  44582. backWizard: {
  44583. height: math.unit(7.9, "feet"),
  44584. weight: math.unit(200, "lb"),
  44585. name: "Back (Wizard)",
  44586. image: {
  44587. source: "./media/characters/blizzard/back-wizard.svg"
  44588. }
  44589. },
  44590. frontNsfw: {
  44591. height: math.unit(6, "feet"),
  44592. weight: math.unit(200, "lb"),
  44593. name: "Front (NSFW)",
  44594. image: {
  44595. source: "./media/characters/blizzard/front-nsfw.svg",
  44596. extra: 1136/990,
  44597. bottom: 136/1272
  44598. }
  44599. },
  44600. backNsfw: {
  44601. height: math.unit(6, "feet"),
  44602. weight: math.unit(200, "lb"),
  44603. name: "Back (NSFW)",
  44604. image: {
  44605. source: "./media/characters/blizzard/back-nsfw.svg",
  44606. extra: 1175/1034,
  44607. bottom: 97/1272
  44608. }
  44609. },
  44610. sittingNsfw: {
  44611. height: math.unit(3.725, "feet"),
  44612. weight: math.unit(200, "lb"),
  44613. name: "Sitting (NSFW)",
  44614. image: {
  44615. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44616. extra: 581/485,
  44617. bottom: 90/671
  44618. }
  44619. },
  44620. wizardFrontNsfw: {
  44621. height: math.unit(7.9, "feet"),
  44622. weight: math.unit(200, "lb"),
  44623. name: "Wizard (Front, NSFW)",
  44624. image: {
  44625. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44626. }
  44627. },
  44628. },
  44629. [
  44630. {
  44631. name: "Normal",
  44632. height: math.unit(6, "feet"),
  44633. default: true
  44634. },
  44635. ]
  44636. ))
  44637. characterMakers.push(() => makeCharacter(
  44638. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44639. {
  44640. front: {
  44641. height: math.unit(5 + 2/12, "feet"),
  44642. name: "Front",
  44643. image: {
  44644. source: "./media/characters/lumi/front.svg",
  44645. extra: 1328/1268,
  44646. bottom: 103/1431
  44647. }
  44648. },
  44649. back: {
  44650. height: math.unit(5 + 2/12, "feet"),
  44651. name: "Back",
  44652. image: {
  44653. source: "./media/characters/lumi/back.svg",
  44654. extra: 1381/1327,
  44655. bottom: 43/1424
  44656. }
  44657. },
  44658. },
  44659. [
  44660. {
  44661. name: "Normal",
  44662. height: math.unit(5 + 2/12, "feet"),
  44663. default: true
  44664. },
  44665. ]
  44666. ))
  44667. characterMakers.push(() => makeCharacter(
  44668. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44669. {
  44670. front: {
  44671. height: math.unit(5 + 9/12, "feet"),
  44672. name: "Front",
  44673. image: {
  44674. source: "./media/characters/aliya-cotton/front.svg",
  44675. extra: 577/564,
  44676. bottom: 29/606
  44677. }
  44678. },
  44679. },
  44680. [
  44681. {
  44682. name: "Normal",
  44683. height: math.unit(5 + 9/12, "feet"),
  44684. default: true
  44685. },
  44686. ]
  44687. ))
  44688. characterMakers.push(() => makeCharacter(
  44689. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44690. {
  44691. front: {
  44692. height: math.unit(2.7, "meters"),
  44693. weight: math.unit(25000, "lb"),
  44694. name: "Front",
  44695. image: {
  44696. source: "./media/characters/noah-luxray/front.svg",
  44697. extra: 1644/825,
  44698. bottom: 339/1983
  44699. }
  44700. },
  44701. side: {
  44702. height: math.unit(2.97, "meters"),
  44703. weight: math.unit(25000, "lb"),
  44704. name: "Side",
  44705. image: {
  44706. source: "./media/characters/noah-luxray/side.svg",
  44707. extra: 1319/650,
  44708. bottom: 163/1482
  44709. }
  44710. },
  44711. dick: {
  44712. height: math.unit(7.4, "feet"),
  44713. weight: math.unit(2500, "lb"),
  44714. name: "Dick",
  44715. image: {
  44716. source: "./media/characters/noah-luxray/dick.svg"
  44717. }
  44718. },
  44719. dickAlt: {
  44720. height: math.unit(10.83, "feet"),
  44721. weight: math.unit(2500, "lb"),
  44722. name: "Dick-alt",
  44723. image: {
  44724. source: "./media/characters/noah-luxray/dick-alt.svg"
  44725. }
  44726. },
  44727. },
  44728. [
  44729. {
  44730. name: "BIG",
  44731. height: math.unit(2.7, "meters"),
  44732. default: true
  44733. },
  44734. ]
  44735. ))
  44736. characterMakers.push(() => makeCharacter(
  44737. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44738. {
  44739. standing: {
  44740. height: math.unit(183, "cm"),
  44741. weight: math.unit(68, "kg"),
  44742. name: "Standing",
  44743. image: {
  44744. source: "./media/characters/arion/standing.svg",
  44745. extra: 1869/1807,
  44746. bottom: 93/1962
  44747. }
  44748. },
  44749. reclining: {
  44750. height: math.unit(70.5, "cm"),
  44751. weight: math.unit(68, "lb"),
  44752. name: "Reclining",
  44753. image: {
  44754. source: "./media/characters/arion/reclining.svg",
  44755. extra: 937/870,
  44756. bottom: 63/1000
  44757. }
  44758. },
  44759. },
  44760. [
  44761. {
  44762. name: "Colossus Size, Low",
  44763. height: math.unit(33, "meters"),
  44764. default: true
  44765. },
  44766. {
  44767. name: "Colossus Size, Mid",
  44768. height: math.unit(52, "meters")
  44769. },
  44770. {
  44771. name: "Colossus Size, High",
  44772. height: math.unit(60, "meters")
  44773. },
  44774. {
  44775. name: "Titan Size, Low",
  44776. height: math.unit(91, "meters"),
  44777. },
  44778. {
  44779. name: "Titan Size, Mid",
  44780. height: math.unit(122, "meters")
  44781. },
  44782. {
  44783. name: "Titan Size, High",
  44784. height: math.unit(162, "meters")
  44785. },
  44786. ]
  44787. ))
  44788. characterMakers.push(() => makeCharacter(
  44789. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44790. {
  44791. front: {
  44792. height: math.unit(53, "meters"),
  44793. name: "Front",
  44794. image: {
  44795. source: "./media/characters/stellar-marbey/front.svg",
  44796. extra: 1913/1805,
  44797. bottom: 92/2005
  44798. }
  44799. },
  44800. back: {
  44801. height: math.unit(53, "meters"),
  44802. name: "Back",
  44803. image: {
  44804. source: "./media/characters/stellar-marbey/back.svg",
  44805. extra: 1960/1851,
  44806. bottom: 28/1988
  44807. }
  44808. },
  44809. mouth: {
  44810. height: math.unit(3.5, "meters"),
  44811. name: "Mouth",
  44812. image: {
  44813. source: "./media/characters/stellar-marbey/mouth.svg"
  44814. }
  44815. },
  44816. },
  44817. [
  44818. {
  44819. name: "Macro",
  44820. height: math.unit(53, "meters"),
  44821. default: true
  44822. },
  44823. ]
  44824. ))
  44825. characterMakers.push(() => makeCharacter(
  44826. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44827. {
  44828. front: {
  44829. height: math.unit(8 + 1/12, "feet"),
  44830. weight: math.unit(233, "lb"),
  44831. name: "Front",
  44832. image: {
  44833. source: "./media/characters/matsu/front.svg",
  44834. extra: 832/772,
  44835. bottom: 40/872
  44836. }
  44837. },
  44838. back: {
  44839. height: math.unit(8 + 1/12, "feet"),
  44840. weight: math.unit(233, "lb"),
  44841. name: "Back",
  44842. image: {
  44843. source: "./media/characters/matsu/back.svg",
  44844. extra: 839/780,
  44845. bottom: 47/886
  44846. }
  44847. },
  44848. },
  44849. [
  44850. {
  44851. name: "Normal",
  44852. height: math.unit(8 + 1/12, "feet"),
  44853. default: true
  44854. },
  44855. ]
  44856. ))
  44857. characterMakers.push(() => makeCharacter(
  44858. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44859. {
  44860. front: {
  44861. height: math.unit(4, "feet"),
  44862. weight: math.unit(148, "lb"),
  44863. name: "Front",
  44864. image: {
  44865. source: "./media/characters/thiz/front.svg",
  44866. extra: 1913/1748,
  44867. bottom: 62/1975
  44868. }
  44869. },
  44870. },
  44871. [
  44872. {
  44873. name: "Normal",
  44874. height: math.unit(4, "feet"),
  44875. default: true
  44876. },
  44877. ]
  44878. ))
  44879. characterMakers.push(() => makeCharacter(
  44880. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44881. {
  44882. front: {
  44883. height: math.unit(7 + 6/12, "feet"),
  44884. weight: math.unit(267, "lb"),
  44885. name: "Front",
  44886. image: {
  44887. source: "./media/characters/marcel/front.svg",
  44888. extra: 1221/1096,
  44889. bottom: 76/1297
  44890. }
  44891. },
  44892. },
  44893. [
  44894. {
  44895. name: "Normal",
  44896. height: math.unit(7 + 6/12, "feet"),
  44897. default: true
  44898. },
  44899. ]
  44900. ))
  44901. characterMakers.push(() => makeCharacter(
  44902. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44903. {
  44904. side: {
  44905. height: math.unit(42, "meters"),
  44906. name: "Side",
  44907. image: {
  44908. source: "./media/characters/flake/side.svg",
  44909. extra: 1525/1306,
  44910. bottom: 209/1734
  44911. }
  44912. },
  44913. },
  44914. [
  44915. {
  44916. name: "Normal",
  44917. height: math.unit(42, "meters"),
  44918. default: true
  44919. },
  44920. ]
  44921. ))
  44922. characterMakers.push(() => makeCharacter(
  44923. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44924. {
  44925. dressed: {
  44926. height: math.unit(6 + 4/12, "feet"),
  44927. weight: math.unit(520, "lb"),
  44928. name: "Dressed",
  44929. image: {
  44930. source: "./media/characters/someonne/dressed.svg",
  44931. extra: 1020/1010,
  44932. bottom: 178/1198
  44933. }
  44934. },
  44935. undressed: {
  44936. height: math.unit(6 + 4/12, "feet"),
  44937. weight: math.unit(520, "lb"),
  44938. name: "Undressed",
  44939. image: {
  44940. source: "./media/characters/someonne/undressed.svg",
  44941. extra: 1019/1014,
  44942. bottom: 169/1188
  44943. }
  44944. },
  44945. },
  44946. [
  44947. {
  44948. name: "Normal",
  44949. height: math.unit(6 + 4/12, "feet"),
  44950. default: true
  44951. },
  44952. ]
  44953. ))
  44954. characterMakers.push(() => makeCharacter(
  44955. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44956. {
  44957. front: {
  44958. height: math.unit(3, "feet"),
  44959. weight: math.unit(30, "lb"),
  44960. name: "Front",
  44961. image: {
  44962. source: "./media/characters/till/front.svg",
  44963. extra: 892/823,
  44964. bottom: 55/947
  44965. }
  44966. },
  44967. },
  44968. [
  44969. {
  44970. name: "Normal",
  44971. height: math.unit(3, "feet"),
  44972. default: true
  44973. },
  44974. ]
  44975. ))
  44976. characterMakers.push(() => makeCharacter(
  44977. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44978. {
  44979. front: {
  44980. height: math.unit(9 + 8/12, "feet"),
  44981. weight: math.unit(800, "lb"),
  44982. name: "Front",
  44983. image: {
  44984. source: "./media/characters/sydney-heki/front.svg",
  44985. extra: 1360/1300,
  44986. bottom: 22/1382
  44987. }
  44988. },
  44989. back: {
  44990. height: math.unit(9 + 8/12, "feet"),
  44991. weight: math.unit(800, "lb"),
  44992. name: "Back",
  44993. image: {
  44994. source: "./media/characters/sydney-heki/back.svg",
  44995. extra: 1356/1293,
  44996. bottom: 12/1368
  44997. }
  44998. },
  44999. frontDressed: {
  45000. height: math.unit(9 + 8/12, "feet"),
  45001. weight: math.unit(800, "lb"),
  45002. name: "Front-dressed",
  45003. image: {
  45004. source: "./media/characters/sydney-heki/front-dressed.svg",
  45005. extra: 1360/1300,
  45006. bottom: 22/1382
  45007. }
  45008. },
  45009. },
  45010. [
  45011. {
  45012. name: "Normal",
  45013. height: math.unit(9 + 8/12, "feet"),
  45014. default: true
  45015. },
  45016. {
  45017. name: "Macro",
  45018. height: math.unit(500, "feet")
  45019. },
  45020. {
  45021. name: "Megamacro",
  45022. height: math.unit(3.6, "miles")
  45023. },
  45024. ]
  45025. ))
  45026. characterMakers.push(() => makeCharacter(
  45027. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45028. {
  45029. front: {
  45030. height: math.unit(200, "cm"),
  45031. weight: math.unit(250, "lb"),
  45032. name: "Front",
  45033. image: {
  45034. source: "./media/characters/fowler-karlsson/front.svg",
  45035. extra: 897/845,
  45036. bottom: 123/1020
  45037. }
  45038. },
  45039. back: {
  45040. height: math.unit(200, "cm"),
  45041. weight: math.unit(250, "lb"),
  45042. name: "Back",
  45043. image: {
  45044. source: "./media/characters/fowler-karlsson/back.svg",
  45045. extra: 999/944,
  45046. bottom: 26/1025
  45047. }
  45048. },
  45049. dick: {
  45050. height: math.unit(1.92, "feet"),
  45051. weight: math.unit(150, "lb"),
  45052. name: "Dick",
  45053. image: {
  45054. source: "./media/characters/fowler-karlsson/dick.svg"
  45055. }
  45056. },
  45057. },
  45058. [
  45059. {
  45060. name: "Normal",
  45061. height: math.unit(200, "cm"),
  45062. default: true
  45063. },
  45064. {
  45065. name: "Smaller Macro",
  45066. height: math.unit(90, "m")
  45067. },
  45068. {
  45069. name: "Macro",
  45070. height: math.unit(150, "m")
  45071. },
  45072. {
  45073. name: "Bigger Macro",
  45074. height: math.unit(300, "m")
  45075. },
  45076. ]
  45077. ))
  45078. characterMakers.push(() => makeCharacter(
  45079. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45080. {
  45081. side: {
  45082. height: math.unit(8 + 2/12, "feet"),
  45083. weight: math.unit(1, "tonne"),
  45084. name: "Side",
  45085. image: {
  45086. source: "./media/characters/rylide/side.svg",
  45087. extra: 1318/1034,
  45088. bottom: 106/1424
  45089. }
  45090. },
  45091. sitting: {
  45092. height: math.unit(303, "cm"),
  45093. weight: math.unit(1, "tonne"),
  45094. name: "Sitting",
  45095. image: {
  45096. source: "./media/characters/rylide/sitting.svg",
  45097. extra: 1303/1103,
  45098. bottom: 36/1339
  45099. }
  45100. },
  45101. },
  45102. [
  45103. {
  45104. name: "Normal",
  45105. height: math.unit(8 + 2/12, "feet"),
  45106. default: true
  45107. },
  45108. ]
  45109. ))
  45110. characterMakers.push(() => makeCharacter(
  45111. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45112. {
  45113. front: {
  45114. height: math.unit(5 + 10/12, "feet"),
  45115. weight: math.unit(160, "lb"),
  45116. name: "Front",
  45117. image: {
  45118. source: "./media/characters/pudask/front.svg",
  45119. extra: 1616/1590,
  45120. bottom: 161/1777
  45121. }
  45122. },
  45123. },
  45124. [
  45125. {
  45126. name: "Ferret Height",
  45127. height: math.unit(2 + 5/12, "feet")
  45128. },
  45129. {
  45130. name: "Canon Height",
  45131. height: math.unit(5 + 10/12, "feet"),
  45132. default: true
  45133. },
  45134. ]
  45135. ))
  45136. characterMakers.push(() => makeCharacter(
  45137. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45138. {
  45139. front: {
  45140. height: math.unit(3 + 6/12, "feet"),
  45141. weight: math.unit(60, "lb"),
  45142. name: "Front",
  45143. image: {
  45144. source: "./media/characters/ramita/front.svg",
  45145. extra: 1402/1232,
  45146. bottom: 62/1464
  45147. }
  45148. },
  45149. dressed: {
  45150. height: math.unit(3 + 6/12, "feet"),
  45151. weight: math.unit(60, "lb"),
  45152. name: "Dressed",
  45153. image: {
  45154. source: "./media/characters/ramita/dressed.svg",
  45155. extra: 1534/1249,
  45156. bottom: 50/1584
  45157. }
  45158. },
  45159. },
  45160. [
  45161. {
  45162. name: "Normal",
  45163. height: math.unit(3 + 6/12, "feet"),
  45164. default: true
  45165. },
  45166. ]
  45167. ))
  45168. characterMakers.push(() => makeCharacter(
  45169. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45170. {
  45171. front: {
  45172. height: math.unit(8, "feet"),
  45173. name: "Front",
  45174. image: {
  45175. source: "./media/characters/ark/front.svg",
  45176. extra: 772/693,
  45177. bottom: 45/817
  45178. }
  45179. },
  45180. },
  45181. [
  45182. {
  45183. name: "Normal",
  45184. height: math.unit(8, "feet"),
  45185. default: true
  45186. },
  45187. ]
  45188. ))
  45189. characterMakers.push(() => makeCharacter(
  45190. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45191. {
  45192. front: {
  45193. height: math.unit(6, "feet"),
  45194. weight: math.unit(250, "lb"),
  45195. volume: math.unit(5/8, "gallons"),
  45196. name: "Front",
  45197. image: {
  45198. source: "./media/characters/ludwig-horn/front.svg",
  45199. extra: 1782/1635,
  45200. bottom: 96/1878
  45201. }
  45202. },
  45203. back: {
  45204. height: math.unit(6, "feet"),
  45205. weight: math.unit(250, "lb"),
  45206. volume: math.unit(5/8, "gallons"),
  45207. name: "Back",
  45208. image: {
  45209. source: "./media/characters/ludwig-horn/back.svg",
  45210. extra: 1874/1729,
  45211. bottom: 27/1901
  45212. }
  45213. },
  45214. dick: {
  45215. height: math.unit(1.05, "feet"),
  45216. weight: math.unit(15, "lb"),
  45217. volume: math.unit(5/8, "gallons"),
  45218. name: "Dick",
  45219. image: {
  45220. source: "./media/characters/ludwig-horn/dick.svg"
  45221. }
  45222. },
  45223. },
  45224. [
  45225. {
  45226. name: "Small",
  45227. height: math.unit(6, "feet")
  45228. },
  45229. {
  45230. name: "Typical",
  45231. height: math.unit(12, "feet"),
  45232. default: true
  45233. },
  45234. {
  45235. name: "Building",
  45236. height: math.unit(80, "feet")
  45237. },
  45238. {
  45239. name: "Town",
  45240. height: math.unit(800, "feet")
  45241. },
  45242. {
  45243. name: "Kingdom",
  45244. height: math.unit(80000, "feet")
  45245. },
  45246. {
  45247. name: "Planet",
  45248. height: math.unit(8000000, "feet")
  45249. },
  45250. {
  45251. name: "Universe",
  45252. height: math.unit(8000000000, "feet")
  45253. },
  45254. {
  45255. name: "Transcended",
  45256. height: math.unit(8e27, "feet")
  45257. },
  45258. ]
  45259. ))
  45260. characterMakers.push(() => makeCharacter(
  45261. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45262. {
  45263. front: {
  45264. height: math.unit(5, "feet"),
  45265. weight: math.unit(50, "kg"),
  45266. name: "Front",
  45267. image: {
  45268. source: "./media/characters/biot-avery/front.svg",
  45269. extra: 1295/1232,
  45270. bottom: 86/1381
  45271. }
  45272. },
  45273. },
  45274. [
  45275. {
  45276. name: "Normal",
  45277. height: math.unit(5, "feet"),
  45278. default: true
  45279. },
  45280. ]
  45281. ))
  45282. characterMakers.push(() => makeCharacter(
  45283. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45284. {
  45285. front: {
  45286. height: math.unit(6, "feet"),
  45287. name: "Front",
  45288. image: {
  45289. source: "./media/characters/kitsune-kiro/front.svg",
  45290. extra: 1270/1158,
  45291. bottom: 42/1312
  45292. }
  45293. },
  45294. frontAlt: {
  45295. height: math.unit(6, "feet"),
  45296. name: "Front-alt",
  45297. image: {
  45298. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45299. extra: 1130/1081,
  45300. bottom: 36/1166
  45301. }
  45302. },
  45303. },
  45304. [
  45305. {
  45306. name: "Smol",
  45307. height: math.unit(3, "feet")
  45308. },
  45309. {
  45310. name: "Normal",
  45311. height: math.unit(6, "feet"),
  45312. default: true
  45313. },
  45314. ]
  45315. ))
  45316. characterMakers.push(() => makeCharacter(
  45317. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45318. {
  45319. front: {
  45320. height: math.unit(6, "feet"),
  45321. weight: math.unit(125, "lb"),
  45322. name: "Front",
  45323. image: {
  45324. source: "./media/characters/jack-thatcher/front.svg",
  45325. extra: 1474/1370,
  45326. bottom: 26/1500
  45327. }
  45328. },
  45329. back: {
  45330. height: math.unit(6, "feet"),
  45331. weight: math.unit(125, "lb"),
  45332. name: "Back",
  45333. image: {
  45334. source: "./media/characters/jack-thatcher/back.svg",
  45335. extra: 1489/1384,
  45336. bottom: 18/1507
  45337. }
  45338. },
  45339. },
  45340. [
  45341. {
  45342. name: "Normal",
  45343. height: math.unit(6, "feet"),
  45344. default: true
  45345. },
  45346. {
  45347. name: "Macro",
  45348. height: math.unit(75, "feet")
  45349. },
  45350. {
  45351. name: "Macro-er",
  45352. height: math.unit(250, "feet")
  45353. },
  45354. ]
  45355. ))
  45356. characterMakers.push(() => makeCharacter(
  45357. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45358. {
  45359. front: {
  45360. height: math.unit(7, "feet"),
  45361. weight: math.unit(110, "kg"),
  45362. name: "Front",
  45363. image: {
  45364. source: "./media/characters/max-hyper/front.svg",
  45365. extra: 1969/1881,
  45366. bottom: 49/2018
  45367. }
  45368. },
  45369. },
  45370. [
  45371. {
  45372. name: "Normal",
  45373. height: math.unit(7, "feet"),
  45374. default: true
  45375. },
  45376. ]
  45377. ))
  45378. characterMakers.push(() => makeCharacter(
  45379. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45380. {
  45381. front: {
  45382. height: math.unit(5 + 5/12, "feet"),
  45383. weight: math.unit(160, "lb"),
  45384. name: "Front",
  45385. image: {
  45386. source: "./media/characters/spook/front.svg",
  45387. extra: 794/791,
  45388. bottom: 54/848
  45389. }
  45390. },
  45391. back: {
  45392. height: math.unit(5 + 5/12, "feet"),
  45393. weight: math.unit(160, "lb"),
  45394. name: "Back",
  45395. image: {
  45396. source: "./media/characters/spook/back.svg",
  45397. extra: 812/798,
  45398. bottom: 32/844
  45399. }
  45400. },
  45401. },
  45402. [
  45403. {
  45404. name: "Normal",
  45405. height: math.unit(5 + 5/12, "feet"),
  45406. default: true
  45407. },
  45408. ]
  45409. ))
  45410. characterMakers.push(() => makeCharacter(
  45411. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45412. {
  45413. front: {
  45414. height: math.unit(18, "feet"),
  45415. name: "Front",
  45416. image: {
  45417. source: "./media/characters/xeaduulix/front.svg",
  45418. extra: 1380/1166,
  45419. bottom: 110/1490
  45420. }
  45421. },
  45422. back: {
  45423. height: math.unit(18, "feet"),
  45424. name: "Back",
  45425. image: {
  45426. source: "./media/characters/xeaduulix/back.svg",
  45427. extra: 1592/1170,
  45428. bottom: 128/1720
  45429. }
  45430. },
  45431. frontNsfw: {
  45432. height: math.unit(18, "feet"),
  45433. name: "Front (NSFW)",
  45434. image: {
  45435. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45436. extra: 1380/1166,
  45437. bottom: 110/1490
  45438. }
  45439. },
  45440. backNsfw: {
  45441. height: math.unit(18, "feet"),
  45442. name: "Back (NSFW)",
  45443. image: {
  45444. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45445. extra: 1592/1170,
  45446. bottom: 128/1720
  45447. }
  45448. },
  45449. },
  45450. [
  45451. {
  45452. name: "Normal",
  45453. height: math.unit(18, "feet"),
  45454. default: true
  45455. },
  45456. ]
  45457. ))
  45458. characterMakers.push(() => makeCharacter(
  45459. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45460. {
  45461. spreadWings: {
  45462. height: math.unit(20, "feet"),
  45463. name: "Spread Wings",
  45464. image: {
  45465. source: "./media/characters/fledge/spread-wings.svg",
  45466. extra: 693/635,
  45467. bottom: 26/719
  45468. }
  45469. },
  45470. front: {
  45471. height: math.unit(20, "feet"),
  45472. name: "Front",
  45473. image: {
  45474. source: "./media/characters/fledge/front.svg",
  45475. extra: 684/637,
  45476. bottom: 18/702
  45477. }
  45478. },
  45479. frontAlt: {
  45480. height: math.unit(20, "feet"),
  45481. name: "Front (Alt)",
  45482. image: {
  45483. source: "./media/characters/fledge/front-alt.svg",
  45484. extra: 708/664,
  45485. bottom: 13/721
  45486. }
  45487. },
  45488. back: {
  45489. height: math.unit(20, "feet"),
  45490. name: "Back",
  45491. image: {
  45492. source: "./media/characters/fledge/back.svg",
  45493. extra: 718/634,
  45494. bottom: 22/740
  45495. }
  45496. },
  45497. head: {
  45498. height: math.unit(5.55, "feet"),
  45499. name: "Head",
  45500. image: {
  45501. source: "./media/characters/fledge/head.svg"
  45502. }
  45503. },
  45504. headAlt: {
  45505. height: math.unit(5.1, "feet"),
  45506. name: "Head (Alt)",
  45507. image: {
  45508. source: "./media/characters/fledge/head-alt.svg"
  45509. }
  45510. },
  45511. },
  45512. [
  45513. {
  45514. name: "Small",
  45515. height: math.unit(6 + 2/12, "feet")
  45516. },
  45517. {
  45518. name: "Big",
  45519. height: math.unit(20, "feet"),
  45520. default: true
  45521. },
  45522. {
  45523. name: "Giant",
  45524. height: math.unit(100, "feet")
  45525. },
  45526. {
  45527. name: "Macro",
  45528. height: math.unit(200, "feet")
  45529. },
  45530. ]
  45531. ))
  45532. characterMakers.push(() => makeCharacter(
  45533. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45534. {
  45535. front: {
  45536. height: math.unit(1, "meter"),
  45537. name: "Front",
  45538. image: {
  45539. source: "./media/characters/atlas-morenai/front.svg",
  45540. extra: 1275/1043,
  45541. bottom: 19/1294
  45542. }
  45543. },
  45544. back: {
  45545. height: math.unit(1, "meter"),
  45546. name: "Back",
  45547. image: {
  45548. source: "./media/characters/atlas-morenai/back.svg",
  45549. extra: 1141/1001,
  45550. bottom: 25/1166
  45551. }
  45552. },
  45553. },
  45554. [
  45555. {
  45556. name: "Normal",
  45557. height: math.unit(1, "meter"),
  45558. default: true
  45559. },
  45560. {
  45561. name: "Magic-Infused",
  45562. height: math.unit(5, "meters")
  45563. },
  45564. ]
  45565. ))
  45566. characterMakers.push(() => makeCharacter(
  45567. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45568. {
  45569. front: {
  45570. height: math.unit(5, "meters"),
  45571. name: "Front",
  45572. image: {
  45573. source: "./media/characters/cintia/front.svg",
  45574. extra: 1312/1228,
  45575. bottom: 38/1350
  45576. }
  45577. },
  45578. back: {
  45579. height: math.unit(5, "meters"),
  45580. name: "Back",
  45581. image: {
  45582. source: "./media/characters/cintia/back.svg",
  45583. extra: 1260/1166,
  45584. bottom: 98/1358
  45585. }
  45586. },
  45587. frontDick: {
  45588. height: math.unit(5, "meters"),
  45589. name: "Front (Dick)",
  45590. image: {
  45591. source: "./media/characters/cintia/front-dick.svg",
  45592. extra: 1312/1228,
  45593. bottom: 38/1350
  45594. }
  45595. },
  45596. backDick: {
  45597. height: math.unit(5, "meters"),
  45598. name: "Back (Dick)",
  45599. image: {
  45600. source: "./media/characters/cintia/back-dick.svg",
  45601. extra: 1260/1166,
  45602. bottom: 98/1358
  45603. }
  45604. },
  45605. bust: {
  45606. height: math.unit(1.97, "meters"),
  45607. name: "Bust",
  45608. image: {
  45609. source: "./media/characters/cintia/bust.svg",
  45610. extra: 617/565,
  45611. bottom: 0/617
  45612. }
  45613. },
  45614. },
  45615. [
  45616. {
  45617. name: "Normal",
  45618. height: math.unit(5, "meters"),
  45619. default: true
  45620. },
  45621. ]
  45622. ))
  45623. characterMakers.push(() => makeCharacter(
  45624. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45625. {
  45626. side: {
  45627. height: math.unit(100, "feet"),
  45628. name: "Side",
  45629. image: {
  45630. source: "./media/characters/denora/side.svg",
  45631. extra: 875/803,
  45632. bottom: 9/884
  45633. }
  45634. },
  45635. },
  45636. [
  45637. {
  45638. name: "Standard",
  45639. height: math.unit(100, "feet"),
  45640. default: true
  45641. },
  45642. {
  45643. name: "Grand",
  45644. height: math.unit(1000, "feet")
  45645. },
  45646. {
  45647. name: "Conquering",
  45648. height: math.unit(10000, "feet")
  45649. },
  45650. ]
  45651. ))
  45652. characterMakers.push(() => makeCharacter(
  45653. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45654. {
  45655. dressed: {
  45656. height: math.unit(8 + 5/12, "feet"),
  45657. weight: math.unit(700, "lb"),
  45658. name: "Dressed",
  45659. image: {
  45660. source: "./media/characters/kiva/dressed.svg",
  45661. extra: 1102/1055,
  45662. bottom: 60/1162
  45663. }
  45664. },
  45665. nude: {
  45666. height: math.unit(8 + 5/12, "feet"),
  45667. weight: math.unit(700, "lb"),
  45668. name: "Nude",
  45669. image: {
  45670. source: "./media/characters/kiva/nude.svg",
  45671. extra: 1102/1055,
  45672. bottom: 60/1162
  45673. }
  45674. },
  45675. },
  45676. [
  45677. {
  45678. name: "Base Height",
  45679. height: math.unit(8 + 5/12, "feet"),
  45680. default: true
  45681. },
  45682. {
  45683. name: "Macro",
  45684. height: math.unit(100, "feet")
  45685. },
  45686. {
  45687. name: "Max",
  45688. height: math.unit(3280, "feet")
  45689. },
  45690. ]
  45691. ))
  45692. characterMakers.push(() => makeCharacter(
  45693. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45694. {
  45695. front: {
  45696. height: math.unit(6 + 8/12, "feet"),
  45697. weight: math.unit(250, "lb"),
  45698. name: "Front",
  45699. image: {
  45700. source: "./media/characters/ztragon/front.svg",
  45701. extra: 1825/1684,
  45702. bottom: 98/1923
  45703. }
  45704. },
  45705. },
  45706. [
  45707. {
  45708. name: "Normal",
  45709. height: math.unit(6 + 8/12, "feet"),
  45710. default: true
  45711. },
  45712. {
  45713. name: "Macro",
  45714. height: math.unit(80, "feet")
  45715. },
  45716. ]
  45717. ))
  45718. characterMakers.push(() => makeCharacter(
  45719. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45720. {
  45721. front: {
  45722. height: math.unit(10.4, "feet"),
  45723. weight: math.unit(2, "tons"),
  45724. name: "Front",
  45725. image: {
  45726. source: "./media/characters/yesenia/front.svg",
  45727. extra: 1479/1474,
  45728. bottom: 233/1712
  45729. }
  45730. },
  45731. },
  45732. [
  45733. {
  45734. name: "Normal",
  45735. height: math.unit(10.4, "feet"),
  45736. default: true
  45737. },
  45738. ]
  45739. ))
  45740. characterMakers.push(() => makeCharacter(
  45741. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45742. {
  45743. normal: {
  45744. height: math.unit(6 + 1/12, "feet"),
  45745. weight: math.unit(180, "lb"),
  45746. name: "Normal",
  45747. image: {
  45748. source: "./media/characters/leanne-lycheborne/normal.svg",
  45749. extra: 1748/1660,
  45750. bottom: 98/1846
  45751. }
  45752. },
  45753. were: {
  45754. height: math.unit(12, "feet"),
  45755. weight: math.unit(1600, "lb"),
  45756. name: "Were",
  45757. image: {
  45758. source: "./media/characters/leanne-lycheborne/were.svg",
  45759. extra: 1485/1432,
  45760. bottom: 66/1551
  45761. }
  45762. },
  45763. },
  45764. [
  45765. {
  45766. name: "Normal",
  45767. height: math.unit(6 + 1/12, "feet"),
  45768. default: true
  45769. },
  45770. ]
  45771. ))
  45772. characterMakers.push(() => makeCharacter(
  45773. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45774. {
  45775. side: {
  45776. height: math.unit(13, "feet"),
  45777. name: "Side",
  45778. image: {
  45779. source: "./media/characters/kira-tyler/side.svg",
  45780. extra: 693/393,
  45781. bottom: 58/751
  45782. }
  45783. },
  45784. },
  45785. [
  45786. {
  45787. name: "Normal",
  45788. height: math.unit(13, "feet"),
  45789. default: true
  45790. },
  45791. ]
  45792. ))
  45793. characterMakers.push(() => makeCharacter(
  45794. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45795. {
  45796. front: {
  45797. height: math.unit(10.3, "feet"),
  45798. weight: math.unit(150, "lb"),
  45799. name: "Front",
  45800. image: {
  45801. source: "./media/characters/blaze/front.svg",
  45802. extra: 1378/1286,
  45803. bottom: 172/1550
  45804. }
  45805. },
  45806. },
  45807. [
  45808. {
  45809. name: "Normal",
  45810. height: math.unit(10.3, "feet"),
  45811. default: true
  45812. },
  45813. ]
  45814. ))
  45815. characterMakers.push(() => makeCharacter(
  45816. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45817. {
  45818. side: {
  45819. height: math.unit(2, "meters"),
  45820. weight: math.unit(400, "kg"),
  45821. name: "Side",
  45822. image: {
  45823. source: "./media/characters/anu/side.svg",
  45824. extra: 506/394,
  45825. bottom: 18/524
  45826. }
  45827. },
  45828. },
  45829. [
  45830. {
  45831. name: "Humanoid",
  45832. height: math.unit(2, "meters")
  45833. },
  45834. {
  45835. name: "Normal",
  45836. height: math.unit(5, "meters"),
  45837. default: true
  45838. },
  45839. ]
  45840. ))
  45841. characterMakers.push(() => makeCharacter(
  45842. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45843. {
  45844. front: {
  45845. height: math.unit(5 + 5/12, "feet"),
  45846. weight: math.unit(170, "lb"),
  45847. name: "Front",
  45848. image: {
  45849. source: "./media/characters/synx-the-lynx/front.svg",
  45850. extra: 1893/1745,
  45851. bottom: 17/1910
  45852. }
  45853. },
  45854. side: {
  45855. height: math.unit(5 + 5/12, "feet"),
  45856. weight: math.unit(170, "lb"),
  45857. name: "Side",
  45858. image: {
  45859. source: "./media/characters/synx-the-lynx/side.svg",
  45860. extra: 1884/1740,
  45861. bottom: 39/1923
  45862. }
  45863. },
  45864. back: {
  45865. height: math.unit(5 + 5/12, "feet"),
  45866. weight: math.unit(170, "lb"),
  45867. name: "Back",
  45868. image: {
  45869. source: "./media/characters/synx-the-lynx/back.svg",
  45870. extra: 1903/1755,
  45871. bottom: 14/1917
  45872. }
  45873. },
  45874. },
  45875. [
  45876. {
  45877. name: "Normal",
  45878. height: math.unit(5 + 5/12, "feet"),
  45879. default: true
  45880. },
  45881. ]
  45882. ))
  45883. characterMakers.push(() => makeCharacter(
  45884. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45885. {
  45886. back: {
  45887. height: math.unit(15, "feet"),
  45888. name: "Back",
  45889. image: {
  45890. source: "./media/characters/nadezda-fex/back.svg",
  45891. extra: 1695/1481,
  45892. bottom: 25/1720
  45893. }
  45894. },
  45895. },
  45896. [
  45897. {
  45898. name: "Normal",
  45899. height: math.unit(15, "feet"),
  45900. default: true
  45901. },
  45902. {
  45903. name: "Macro",
  45904. height: math.unit(2.5, "miles")
  45905. },
  45906. {
  45907. name: "Goddess",
  45908. height: math.unit(2, "multiverses")
  45909. },
  45910. ]
  45911. ))
  45912. characterMakers.push(() => makeCharacter(
  45913. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45914. {
  45915. front: {
  45916. height: math.unit(216, "cm"),
  45917. name: "Front",
  45918. image: {
  45919. source: "./media/characters/lev/front.svg",
  45920. extra: 1728/1670,
  45921. bottom: 82/1810
  45922. }
  45923. },
  45924. back: {
  45925. height: math.unit(216, "cm"),
  45926. name: "Back",
  45927. image: {
  45928. source: "./media/characters/lev/back.svg",
  45929. extra: 1738/1675,
  45930. bottom: 24/1762
  45931. }
  45932. },
  45933. dressed: {
  45934. height: math.unit(216, "cm"),
  45935. name: "Dressed",
  45936. image: {
  45937. source: "./media/characters/lev/dressed.svg",
  45938. extra: 1397/1351,
  45939. bottom: 73/1470
  45940. }
  45941. },
  45942. head: {
  45943. height: math.unit(0.51, "meter"),
  45944. name: "Head",
  45945. image: {
  45946. source: "./media/characters/lev/head.svg"
  45947. }
  45948. },
  45949. },
  45950. [
  45951. {
  45952. name: "Normal",
  45953. height: math.unit(216, "cm"),
  45954. default: true
  45955. },
  45956. {
  45957. name: "Relatively Macro",
  45958. height: math.unit(80, "meters")
  45959. },
  45960. {
  45961. name: "Megamacro",
  45962. height: math.unit(21600, "meters")
  45963. },
  45964. {
  45965. name: "Megamacro+",
  45966. height: math.unit(64800, "meters")
  45967. },
  45968. ]
  45969. ))
  45970. characterMakers.push(() => makeCharacter(
  45971. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45972. {
  45973. front: {
  45974. height: math.unit(2, "meters"),
  45975. weight: math.unit(80, "kg"),
  45976. name: "Front",
  45977. image: {
  45978. source: "./media/characters/moka/front.svg",
  45979. extra: 1337/1255,
  45980. bottom: 58/1395
  45981. }
  45982. },
  45983. },
  45984. [
  45985. {
  45986. name: "Micro",
  45987. height: math.unit(15, "cm")
  45988. },
  45989. {
  45990. name: "Normal",
  45991. height: math.unit(2, "meters"),
  45992. default: true
  45993. },
  45994. {
  45995. name: "Macro",
  45996. height: math.unit(20, "meters"),
  45997. },
  45998. ]
  45999. ))
  46000. characterMakers.push(() => makeCharacter(
  46001. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46002. {
  46003. front: {
  46004. height: math.unit(9, "feet"),
  46005. weight: math.unit(240, "lb"),
  46006. name: "Front",
  46007. image: {
  46008. source: "./media/characters/kuzco/front.svg",
  46009. extra: 1593/1487,
  46010. bottom: 32/1625
  46011. }
  46012. },
  46013. side: {
  46014. height: math.unit(9, "feet"),
  46015. weight: math.unit(240, "lb"),
  46016. name: "Side",
  46017. image: {
  46018. source: "./media/characters/kuzco/side.svg",
  46019. extra: 1575/1485,
  46020. bottom: 30/1605
  46021. }
  46022. },
  46023. back: {
  46024. height: math.unit(9, "feet"),
  46025. weight: math.unit(240, "lb"),
  46026. name: "Back",
  46027. image: {
  46028. source: "./media/characters/kuzco/back.svg",
  46029. extra: 1603/1514,
  46030. bottom: 14/1617
  46031. }
  46032. },
  46033. },
  46034. [
  46035. {
  46036. name: "Normal",
  46037. height: math.unit(9, "feet"),
  46038. default: true
  46039. },
  46040. ]
  46041. ))
  46042. characterMakers.push(() => makeCharacter(
  46043. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46044. {
  46045. side: {
  46046. height: math.unit(2, "meters"),
  46047. weight: math.unit(300, "kg"),
  46048. name: "Side",
  46049. image: {
  46050. source: "./media/characters/ceruleus/side.svg",
  46051. extra: 1068/974,
  46052. bottom: 126/1194
  46053. }
  46054. },
  46055. },
  46056. [
  46057. {
  46058. name: "Normal",
  46059. height: math.unit(16, "meters"),
  46060. default: true
  46061. },
  46062. ]
  46063. ))
  46064. characterMakers.push(() => makeCharacter(
  46065. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46066. {
  46067. front: {
  46068. height: math.unit(9, "feet"),
  46069. weight: math.unit(500, "kg"),
  46070. name: "Front",
  46071. image: {
  46072. source: "./media/characters/acouya/front.svg",
  46073. extra: 1660/1473,
  46074. bottom: 28/1688
  46075. }
  46076. },
  46077. },
  46078. [
  46079. {
  46080. name: "Normal",
  46081. height: math.unit(9, "feet"),
  46082. default: true
  46083. },
  46084. ]
  46085. ))
  46086. characterMakers.push(() => makeCharacter(
  46087. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46088. {
  46089. front: {
  46090. height: math.unit(5 + 6/12, "feet"),
  46091. weight: math.unit(195, "lb"),
  46092. name: "Front",
  46093. image: {
  46094. source: "./media/characters/vant/front.svg",
  46095. extra: 1396/1320,
  46096. bottom: 20/1416
  46097. }
  46098. },
  46099. back: {
  46100. height: math.unit(5 + 6/12, "feet"),
  46101. weight: math.unit(195, "lb"),
  46102. name: "Back",
  46103. image: {
  46104. source: "./media/characters/vant/back.svg",
  46105. extra: 1396/1320,
  46106. bottom: 20/1416
  46107. }
  46108. },
  46109. maw: {
  46110. height: math.unit(0.75, "feet"),
  46111. name: "Maw",
  46112. image: {
  46113. source: "./media/characters/vant/maw.svg"
  46114. }
  46115. },
  46116. paw: {
  46117. height: math.unit(1.07, "feet"),
  46118. name: "Paw",
  46119. image: {
  46120. source: "./media/characters/vant/paw.svg"
  46121. }
  46122. },
  46123. },
  46124. [
  46125. {
  46126. name: "Micro",
  46127. height: math.unit(0.25, "inches")
  46128. },
  46129. {
  46130. name: "Normal",
  46131. height: math.unit(5 + 6/12, "feet"),
  46132. default: true
  46133. },
  46134. {
  46135. name: "Macro",
  46136. height: math.unit(75, "feet")
  46137. },
  46138. ]
  46139. ))
  46140. characterMakers.push(() => makeCharacter(
  46141. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46142. {
  46143. front: {
  46144. height: math.unit(30, "meters"),
  46145. weight: math.unit(363, "tons"),
  46146. name: "Front",
  46147. image: {
  46148. source: "./media/characters/ahra/front.svg",
  46149. extra: 1914/1814,
  46150. bottom: 46/1960
  46151. }
  46152. },
  46153. },
  46154. [
  46155. {
  46156. name: "Macro",
  46157. height: math.unit(30, "meters"),
  46158. default: true
  46159. },
  46160. ]
  46161. ))
  46162. characterMakers.push(() => makeCharacter(
  46163. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46164. {
  46165. undressed: {
  46166. height: math.unit(2, "m"),
  46167. weight: math.unit(250, "kg"),
  46168. name: "Undressed",
  46169. image: {
  46170. source: "./media/characters/coriander/undressed.svg",
  46171. extra: 1757/1606,
  46172. bottom: 107/1864
  46173. }
  46174. },
  46175. dressed: {
  46176. height: math.unit(2, "m"),
  46177. weight: math.unit(250, "kg"),
  46178. name: "Dressed",
  46179. image: {
  46180. source: "./media/characters/coriander/dressed.svg",
  46181. extra: 1757/1606,
  46182. bottom: 107/1864
  46183. }
  46184. },
  46185. },
  46186. [
  46187. {
  46188. name: "Normal",
  46189. height: math.unit(4, "meters"),
  46190. default: true
  46191. },
  46192. {
  46193. name: "XL",
  46194. height: math.unit(6, "meters")
  46195. },
  46196. {
  46197. name: "XXL",
  46198. height: math.unit(8, "meters")
  46199. },
  46200. ]
  46201. ))
  46202. characterMakers.push(() => makeCharacter(
  46203. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46204. {
  46205. front: {
  46206. height: math.unit(6, "feet"),
  46207. name: "Front",
  46208. image: {
  46209. source: "./media/characters/syrinx/front.svg",
  46210. extra: 1557/1259,
  46211. bottom: 171/1728
  46212. }
  46213. },
  46214. },
  46215. [
  46216. {
  46217. name: "Normal",
  46218. height: math.unit(6 + 3/12, "feet"),
  46219. default: true
  46220. },
  46221. ]
  46222. ))
  46223. characterMakers.push(() => makeCharacter(
  46224. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46225. {
  46226. front: {
  46227. height: math.unit(11 + 6/12, "feet"),
  46228. weight: math.unit(1.5, "tons"),
  46229. name: "Front",
  46230. image: {
  46231. source: "./media/characters/bor/front.svg",
  46232. extra: 1189/1109,
  46233. bottom: 170/1359
  46234. }
  46235. },
  46236. },
  46237. [
  46238. {
  46239. name: "Normal",
  46240. height: math.unit(11 + 6/12, "feet"),
  46241. default: true
  46242. },
  46243. {
  46244. name: "Macro",
  46245. height: math.unit(32 + 9/12, "feet")
  46246. },
  46247. ]
  46248. ))
  46249. characterMakers.push(() => makeCharacter(
  46250. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46251. {
  46252. anthro: {
  46253. height: math.unit(9, "feet"),
  46254. weight: math.unit(2076, "lb"),
  46255. name: "Anthro",
  46256. image: {
  46257. source: "./media/characters/abacus/anthro.svg",
  46258. extra: 1540/1494,
  46259. bottom: 233/1773
  46260. }
  46261. },
  46262. pigeon: {
  46263. height: math.unit(1, "feet"),
  46264. name: "Pigeon",
  46265. image: {
  46266. source: "./media/characters/abacus/pigeon.svg",
  46267. extra: 528/525,
  46268. bottom: 46/574
  46269. }
  46270. },
  46271. },
  46272. [
  46273. {
  46274. name: "Normal",
  46275. height: math.unit(9, "feet"),
  46276. default: true
  46277. },
  46278. ]
  46279. ))
  46280. characterMakers.push(() => makeCharacter(
  46281. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46282. {
  46283. side: {
  46284. height: math.unit(6, "feet"),
  46285. name: "Side",
  46286. image: {
  46287. source: "./media/characters/delkhan/side.svg",
  46288. extra: 1884/1786,
  46289. bottom: 308/2192
  46290. }
  46291. },
  46292. head: {
  46293. height: math.unit(3.38, "feet"),
  46294. name: "Head",
  46295. image: {
  46296. source: "./media/characters/delkhan/head.svg"
  46297. }
  46298. },
  46299. },
  46300. [
  46301. {
  46302. name: "Normal",
  46303. height: math.unit(72, "feet"),
  46304. default: true
  46305. },
  46306. {
  46307. name: "Giant",
  46308. height: math.unit(172, "feet")
  46309. },
  46310. ]
  46311. ))
  46312. characterMakers.push(() => makeCharacter(
  46313. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46314. {
  46315. standing: {
  46316. height: math.unit(6, "feet"),
  46317. name: "Standing",
  46318. image: {
  46319. source: "./media/characters/euchidat/standing.svg",
  46320. extra: 1612/1553,
  46321. bottom: 116/1728
  46322. }
  46323. },
  46324. leaning: {
  46325. height: math.unit(6, "feet"),
  46326. name: "Leaning",
  46327. image: {
  46328. source: "./media/characters/euchidat/leaning.svg",
  46329. extra: 1719/1674,
  46330. bottom: 27/1746
  46331. }
  46332. },
  46333. },
  46334. [
  46335. {
  46336. name: "Normal",
  46337. height: math.unit(175, "feet"),
  46338. default: true
  46339. },
  46340. {
  46341. name: "Megamacro",
  46342. height: math.unit(190, "miles")
  46343. },
  46344. {
  46345. name: "Gigamacro",
  46346. height: math.unit(190000, "miles")
  46347. },
  46348. ]
  46349. ))
  46350. characterMakers.push(() => makeCharacter(
  46351. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46352. {
  46353. front: {
  46354. height: math.unit(6, "feet"),
  46355. weight: math.unit(150, "lb"),
  46356. name: "Front",
  46357. image: {
  46358. source: "./media/characters/rebecca-stack/front.svg",
  46359. extra: 1256/1201,
  46360. bottom: 18/1274
  46361. }
  46362. },
  46363. },
  46364. [
  46365. {
  46366. name: "Normal",
  46367. height: math.unit(5 + 8/12, "feet"),
  46368. default: true
  46369. },
  46370. {
  46371. name: "Demolitionist",
  46372. height: math.unit(200, "feet")
  46373. },
  46374. {
  46375. name: "Out of Control",
  46376. height: math.unit(2, "miles")
  46377. },
  46378. {
  46379. name: "Giga",
  46380. height: math.unit(7200, "miles")
  46381. },
  46382. ]
  46383. ))
  46384. characterMakers.push(() => makeCharacter(
  46385. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46386. {
  46387. front: {
  46388. height: math.unit(6, "feet"),
  46389. weight: math.unit(150, "lb"),
  46390. name: "Front",
  46391. image: {
  46392. source: "./media/characters/jenny-cartwright/front.svg",
  46393. extra: 1384/1376,
  46394. bottom: 58/1442
  46395. }
  46396. },
  46397. },
  46398. [
  46399. {
  46400. name: "Normal",
  46401. height: math.unit(6 + 7/12, "feet"),
  46402. default: true
  46403. },
  46404. {
  46405. name: "Librarian",
  46406. height: math.unit(55, "feet")
  46407. },
  46408. {
  46409. name: "Sightseer",
  46410. height: math.unit(50, "miles")
  46411. },
  46412. {
  46413. name: "Giga",
  46414. height: math.unit(30000, "miles")
  46415. },
  46416. ]
  46417. ))
  46418. characterMakers.push(() => makeCharacter(
  46419. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46420. {
  46421. nude: {
  46422. height: math.unit(8, "feet"),
  46423. weight: math.unit(225, "lb"),
  46424. name: "Nude",
  46425. image: {
  46426. source: "./media/characters/marvy/nude.svg",
  46427. extra: 1900/1683,
  46428. bottom: 89/1989
  46429. }
  46430. },
  46431. dressed: {
  46432. height: math.unit(8, "feet"),
  46433. weight: math.unit(225, "lb"),
  46434. name: "Dressed",
  46435. image: {
  46436. source: "./media/characters/marvy/dressed.svg",
  46437. extra: 1900/1683,
  46438. bottom: 89/1989
  46439. }
  46440. },
  46441. head: {
  46442. height: math.unit(2.85, "feet"),
  46443. name: "Head",
  46444. image: {
  46445. source: "./media/characters/marvy/head.svg"
  46446. }
  46447. },
  46448. },
  46449. [
  46450. {
  46451. name: "Normal",
  46452. height: math.unit(8, "feet"),
  46453. default: true
  46454. },
  46455. ]
  46456. ))
  46457. characterMakers.push(() => makeCharacter(
  46458. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46459. {
  46460. front: {
  46461. height: math.unit(8, "feet"),
  46462. weight: math.unit(250, "lb"),
  46463. name: "Front",
  46464. image: {
  46465. source: "./media/characters/leah/front.svg",
  46466. extra: 1257/1149,
  46467. bottom: 109/1366
  46468. }
  46469. },
  46470. },
  46471. [
  46472. {
  46473. name: "Normal",
  46474. height: math.unit(8, "feet"),
  46475. default: true
  46476. },
  46477. {
  46478. name: "Minimacro",
  46479. height: math.unit(40, "feet")
  46480. },
  46481. {
  46482. name: "Macro",
  46483. height: math.unit(124, "feet")
  46484. },
  46485. {
  46486. name: "Megamacro",
  46487. height: math.unit(850, "feet")
  46488. },
  46489. ]
  46490. ))
  46491. characterMakers.push(() => makeCharacter(
  46492. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46493. {
  46494. side: {
  46495. height: math.unit(13 + 6/12, "feet"),
  46496. weight: math.unit(3200, "lb"),
  46497. name: "Side",
  46498. image: {
  46499. source: "./media/characters/alvir/side.svg",
  46500. extra: 896/589,
  46501. bottom: 26/922
  46502. }
  46503. },
  46504. },
  46505. [
  46506. {
  46507. name: "Normal",
  46508. height: math.unit(13 + 6/12, "feet"),
  46509. default: true
  46510. },
  46511. ]
  46512. ))
  46513. characterMakers.push(() => makeCharacter(
  46514. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46515. {
  46516. front: {
  46517. height: math.unit(5 + 4/12, "feet"),
  46518. weight: math.unit(236, "lb"),
  46519. name: "Front",
  46520. image: {
  46521. source: "./media/characters/zaina-khalil/front.svg",
  46522. extra: 1533/1485,
  46523. bottom: 94/1627
  46524. }
  46525. },
  46526. side: {
  46527. height: math.unit(5 + 4/12, "feet"),
  46528. weight: math.unit(236, "lb"),
  46529. name: "Side",
  46530. image: {
  46531. source: "./media/characters/zaina-khalil/side.svg",
  46532. extra: 1537/1498,
  46533. bottom: 66/1603
  46534. }
  46535. },
  46536. back: {
  46537. height: math.unit(5 + 4/12, "feet"),
  46538. weight: math.unit(236, "lb"),
  46539. name: "Back",
  46540. image: {
  46541. source: "./media/characters/zaina-khalil/back.svg",
  46542. extra: 1546/1494,
  46543. bottom: 89/1635
  46544. }
  46545. },
  46546. },
  46547. [
  46548. {
  46549. name: "Normal",
  46550. height: math.unit(5 + 4/12, "feet"),
  46551. default: true
  46552. },
  46553. ]
  46554. ))
  46555. characterMakers.push(() => makeCharacter(
  46556. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46557. {
  46558. side: {
  46559. height: math.unit(12, "feet"),
  46560. weight: math.unit(4000, "lb"),
  46561. name: "Side",
  46562. image: {
  46563. source: "./media/characters/terry/side.svg",
  46564. extra: 1518/1439,
  46565. bottom: 149/1667
  46566. }
  46567. },
  46568. },
  46569. [
  46570. {
  46571. name: "Normal",
  46572. height: math.unit(12, "feet"),
  46573. default: true
  46574. },
  46575. ]
  46576. ))
  46577. characterMakers.push(() => makeCharacter(
  46578. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46579. {
  46580. front: {
  46581. height: math.unit(12, "feet"),
  46582. weight: math.unit(1500, "lb"),
  46583. name: "Front",
  46584. image: {
  46585. source: "./media/characters/kahea/front.svg",
  46586. extra: 1722/1617,
  46587. bottom: 179/1901
  46588. }
  46589. },
  46590. },
  46591. [
  46592. {
  46593. name: "Normal",
  46594. height: math.unit(12, "feet"),
  46595. default: true
  46596. },
  46597. ]
  46598. ))
  46599. characterMakers.push(() => makeCharacter(
  46600. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46601. {
  46602. demonFront: {
  46603. height: math.unit(36, "feet"),
  46604. name: "Front",
  46605. image: {
  46606. source: "./media/characters/alex-xuria/demon-front.svg",
  46607. extra: 1705/1673,
  46608. bottom: 198/1903
  46609. },
  46610. form: "demon",
  46611. default: true
  46612. },
  46613. demonBack: {
  46614. height: math.unit(36, "feet"),
  46615. name: "Back",
  46616. image: {
  46617. source: "./media/characters/alex-xuria/demon-back.svg",
  46618. extra: 1725/1693,
  46619. bottom: 70/1795
  46620. },
  46621. form: "demon"
  46622. },
  46623. demonHead: {
  46624. height: math.unit(2.14, "meters"),
  46625. name: "Head",
  46626. image: {
  46627. source: "./media/characters/alex-xuria/demon-head.svg"
  46628. },
  46629. form: "demon"
  46630. },
  46631. demonHand: {
  46632. height: math.unit(1.61, "meters"),
  46633. name: "Hand",
  46634. image: {
  46635. source: "./media/characters/alex-xuria/demon-hand.svg"
  46636. },
  46637. form: "demon"
  46638. },
  46639. demonPaw: {
  46640. height: math.unit(1.35, "meters"),
  46641. name: "Paw",
  46642. image: {
  46643. source: "./media/characters/alex-xuria/demon-paw.svg"
  46644. },
  46645. form: "demon"
  46646. },
  46647. demonFoot: {
  46648. height: math.unit(2.2, "meters"),
  46649. name: "Foot",
  46650. image: {
  46651. source: "./media/characters/alex-xuria/demon-foot.svg"
  46652. },
  46653. form: "demon"
  46654. },
  46655. demonCock: {
  46656. height: math.unit(1.74, "meters"),
  46657. name: "Cock",
  46658. image: {
  46659. source: "./media/characters/alex-xuria/demon-cock.svg"
  46660. },
  46661. form: "demon"
  46662. },
  46663. demonTailClosed: {
  46664. height: math.unit(1.47, "meters"),
  46665. name: "Tail (Closed)",
  46666. image: {
  46667. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46668. },
  46669. form: "demon"
  46670. },
  46671. demonTailOpen: {
  46672. height: math.unit(2.85, "meters"),
  46673. name: "Tail (Open)",
  46674. image: {
  46675. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46676. },
  46677. form: "demon"
  46678. },
  46679. incubusFront: {
  46680. height: math.unit(12, "feet"),
  46681. name: "Front",
  46682. image: {
  46683. source: "./media/characters/alex-xuria/incubus-front.svg",
  46684. extra: 1754/1677,
  46685. bottom: 125/1879
  46686. },
  46687. form: "incubus",
  46688. default: true
  46689. },
  46690. incubusBack: {
  46691. height: math.unit(12, "feet"),
  46692. name: "Back",
  46693. image: {
  46694. source: "./media/characters/alex-xuria/incubus-back.svg",
  46695. extra: 1702/1647,
  46696. bottom: 30/1732
  46697. },
  46698. form: "incubus"
  46699. },
  46700. incubusHead: {
  46701. height: math.unit(3.45, "feet"),
  46702. name: "Head",
  46703. image: {
  46704. source: "./media/characters/alex-xuria/incubus-head.svg"
  46705. },
  46706. form: "incubus"
  46707. },
  46708. rabbitFront: {
  46709. height: math.unit(6, "feet"),
  46710. name: "Front",
  46711. image: {
  46712. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46713. extra: 1369/1349,
  46714. bottom: 45/1414
  46715. },
  46716. form: "rabbit",
  46717. default: true
  46718. },
  46719. rabbitSide: {
  46720. height: math.unit(6, "feet"),
  46721. name: "Side",
  46722. image: {
  46723. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46724. extra: 1370/1356,
  46725. bottom: 37/1407
  46726. },
  46727. form: "rabbit"
  46728. },
  46729. rabbitBack: {
  46730. height: math.unit(6, "feet"),
  46731. name: "Back",
  46732. image: {
  46733. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46734. extra: 1375/1358,
  46735. bottom: 43/1418
  46736. },
  46737. form: "rabbit"
  46738. },
  46739. },
  46740. [
  46741. {
  46742. name: "Normal",
  46743. height: math.unit(6, "feet"),
  46744. default: true,
  46745. form: "rabbit"
  46746. },
  46747. {
  46748. name: "Incubus",
  46749. height: math.unit(12, "feet"),
  46750. default: true,
  46751. form: "incubus"
  46752. },
  46753. {
  46754. name: "Demon",
  46755. height: math.unit(36, "feet"),
  46756. default: true,
  46757. form: "demon"
  46758. }
  46759. ],
  46760. {
  46761. "demon": {
  46762. name: "Demon",
  46763. default: true
  46764. },
  46765. "incubus": {
  46766. name: "Incubus",
  46767. },
  46768. "rabbit": {
  46769. name: "Rabbit"
  46770. }
  46771. }
  46772. ))
  46773. characterMakers.push(() => makeCharacter(
  46774. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46775. {
  46776. front: {
  46777. height: math.unit(7 + 5/12, "feet"),
  46778. weight: math.unit(510, "lb"),
  46779. name: "Front",
  46780. image: {
  46781. source: "./media/characters/syrup/front.svg",
  46782. extra: 932/916,
  46783. bottom: 26/958
  46784. }
  46785. },
  46786. },
  46787. [
  46788. {
  46789. name: "Normal",
  46790. height: math.unit(7 + 5/12, "feet"),
  46791. default: true
  46792. },
  46793. {
  46794. name: "Big",
  46795. height: math.unit(50, "feet")
  46796. },
  46797. {
  46798. name: "Macro",
  46799. height: math.unit(300, "feet")
  46800. },
  46801. {
  46802. name: "Megamacro",
  46803. height: math.unit(1, "mile")
  46804. },
  46805. ]
  46806. ))
  46807. characterMakers.push(() => makeCharacter(
  46808. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46809. {
  46810. front: {
  46811. height: math.unit(6 + 9/12, "feet"),
  46812. name: "Front",
  46813. image: {
  46814. source: "./media/characters/zeimne/front.svg",
  46815. extra: 1969/1806,
  46816. bottom: 53/2022
  46817. }
  46818. },
  46819. },
  46820. [
  46821. {
  46822. name: "Normal",
  46823. height: math.unit(6 + 9/12, "feet"),
  46824. default: true
  46825. },
  46826. {
  46827. name: "Giant",
  46828. height: math.unit(550, "feet")
  46829. },
  46830. {
  46831. name: "Mega",
  46832. height: math.unit(3, "miles")
  46833. },
  46834. {
  46835. name: "Giga",
  46836. height: math.unit(250, "miles")
  46837. },
  46838. {
  46839. name: "Tera",
  46840. height: math.unit(1, "AU")
  46841. },
  46842. ]
  46843. ))
  46844. characterMakers.push(() => makeCharacter(
  46845. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46846. {
  46847. front: {
  46848. height: math.unit(5 + 2/12, "feet"),
  46849. name: "Front",
  46850. image: {
  46851. source: "./media/characters/grar/front.svg",
  46852. extra: 1331/1119,
  46853. bottom: 60/1391
  46854. }
  46855. },
  46856. back: {
  46857. height: math.unit(5 + 2/12, "feet"),
  46858. name: "Back",
  46859. image: {
  46860. source: "./media/characters/grar/back.svg",
  46861. extra: 1385/1169,
  46862. bottom: 23/1408
  46863. }
  46864. },
  46865. },
  46866. [
  46867. {
  46868. name: "Normal",
  46869. height: math.unit(5 + 2/12, "feet"),
  46870. default: true
  46871. },
  46872. ]
  46873. ))
  46874. characterMakers.push(() => makeCharacter(
  46875. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46876. {
  46877. front: {
  46878. height: math.unit(13 + 7/12, "feet"),
  46879. weight: math.unit(2200, "lb"),
  46880. name: "Front",
  46881. image: {
  46882. source: "./media/characters/endraya/front.svg",
  46883. extra: 1289/1215,
  46884. bottom: 50/1339
  46885. }
  46886. },
  46887. nude: {
  46888. height: math.unit(13 + 7/12, "feet"),
  46889. weight: math.unit(2200, "lb"),
  46890. name: "Nude",
  46891. image: {
  46892. source: "./media/characters/endraya/nude.svg",
  46893. extra: 1247/1171,
  46894. bottom: 40/1287
  46895. }
  46896. },
  46897. head: {
  46898. height: math.unit(2.6, "feet"),
  46899. name: "Head",
  46900. image: {
  46901. source: "./media/characters/endraya/head.svg"
  46902. }
  46903. },
  46904. slit: {
  46905. height: math.unit(3.4, "feet"),
  46906. name: "Slit",
  46907. image: {
  46908. source: "./media/characters/endraya/slit.svg"
  46909. }
  46910. },
  46911. },
  46912. [
  46913. {
  46914. name: "Normal",
  46915. height: math.unit(13 + 7/12, "feet"),
  46916. default: true
  46917. },
  46918. {
  46919. name: "Macro",
  46920. height: math.unit(200, "feet")
  46921. },
  46922. ]
  46923. ))
  46924. characterMakers.push(() => makeCharacter(
  46925. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46926. {
  46927. front: {
  46928. height: math.unit(1.81, "meters"),
  46929. weight: math.unit(69, "kg"),
  46930. name: "Front",
  46931. image: {
  46932. source: "./media/characters/rodryana/front.svg",
  46933. extra: 2002/1921,
  46934. bottom: 53/2055
  46935. }
  46936. },
  46937. back: {
  46938. height: math.unit(1.81, "meters"),
  46939. weight: math.unit(69, "kg"),
  46940. name: "Back",
  46941. image: {
  46942. source: "./media/characters/rodryana/back.svg",
  46943. extra: 1993/1926,
  46944. bottom: 48/2041
  46945. }
  46946. },
  46947. maw: {
  46948. height: math.unit(0.19769417475, "meters"),
  46949. name: "Maw",
  46950. image: {
  46951. source: "./media/characters/rodryana/maw.svg"
  46952. }
  46953. },
  46954. slit: {
  46955. height: math.unit(0.31631067961, "meters"),
  46956. name: "Slit",
  46957. image: {
  46958. source: "./media/characters/rodryana/slit.svg"
  46959. }
  46960. },
  46961. },
  46962. [
  46963. {
  46964. name: "Normal",
  46965. height: math.unit(1.81, "meters")
  46966. },
  46967. {
  46968. name: "Mini Macro",
  46969. height: math.unit(181, "meters")
  46970. },
  46971. {
  46972. name: "Macro",
  46973. height: math.unit(452, "meters"),
  46974. default: true
  46975. },
  46976. {
  46977. name: "Mega Macro",
  46978. height: math.unit(1.375, "km")
  46979. },
  46980. {
  46981. name: "Giga Macro",
  46982. height: math.unit(13.575, "km")
  46983. },
  46984. ]
  46985. ))
  46986. characterMakers.push(() => makeCharacter(
  46987. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46988. {
  46989. front: {
  46990. height: math.unit(6, "feet"),
  46991. weight: math.unit(1000, "lb"),
  46992. name: "Front",
  46993. image: {
  46994. source: "./media/characters/asaya/front.svg",
  46995. extra: 1460/1200,
  46996. bottom: 71/1531
  46997. }
  46998. },
  46999. },
  47000. [
  47001. {
  47002. name: "Normal",
  47003. height: math.unit(8, "km"),
  47004. default: true
  47005. },
  47006. ]
  47007. ))
  47008. characterMakers.push(() => makeCharacter(
  47009. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47010. {
  47011. front: {
  47012. height: math.unit(3.5, "meters"),
  47013. name: "Front",
  47014. image: {
  47015. source: "./media/characters/sarzu-and-israz/front.svg",
  47016. extra: 1570/1558,
  47017. bottom: 150/1720
  47018. },
  47019. },
  47020. back: {
  47021. height: math.unit(3.5, "meters"),
  47022. name: "Back",
  47023. image: {
  47024. source: "./media/characters/sarzu-and-israz/back.svg",
  47025. extra: 1523/1509,
  47026. bottom: 132/1655
  47027. },
  47028. },
  47029. frontFemale: {
  47030. height: math.unit(3.5, "meters"),
  47031. name: "Front (Female)",
  47032. image: {
  47033. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47034. extra: 1570/1558,
  47035. bottom: 150/1720
  47036. },
  47037. },
  47038. frontHerm: {
  47039. height: math.unit(3.5, "meters"),
  47040. name: "Front (Herm)",
  47041. image: {
  47042. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47043. extra: 1570/1558,
  47044. bottom: 150/1720
  47045. },
  47046. },
  47047. },
  47048. [
  47049. {
  47050. name: "Normal",
  47051. height: math.unit(3.5, "meters"),
  47052. default: true,
  47053. },
  47054. {
  47055. name: "Macro",
  47056. height: math.unit(65.5, "meters"),
  47057. },
  47058. ],
  47059. ))
  47060. characterMakers.push(() => makeCharacter(
  47061. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47062. {
  47063. front: {
  47064. height: math.unit(6, "feet"),
  47065. weight: math.unit(250, "lb"),
  47066. name: "Front",
  47067. image: {
  47068. source: "./media/characters/zenimma/front.svg",
  47069. extra: 1346/1320,
  47070. bottom: 58/1404
  47071. }
  47072. },
  47073. back: {
  47074. height: math.unit(6, "feet"),
  47075. weight: math.unit(250, "lb"),
  47076. name: "Back",
  47077. image: {
  47078. source: "./media/characters/zenimma/back.svg",
  47079. extra: 1324/1308,
  47080. bottom: 44/1368
  47081. }
  47082. },
  47083. dick: {
  47084. height: math.unit(1.44, "feet"),
  47085. name: "Dick",
  47086. image: {
  47087. source: "./media/characters/zenimma/dick.svg"
  47088. }
  47089. },
  47090. },
  47091. [
  47092. {
  47093. name: "Canon Height",
  47094. height: math.unit(66, "miles"),
  47095. default: true
  47096. },
  47097. ]
  47098. ))
  47099. characterMakers.push(() => makeCharacter(
  47100. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47101. {
  47102. nude: {
  47103. height: math.unit(6, "feet"),
  47104. weight: math.unit(150, "lb"),
  47105. name: "Nude",
  47106. image: {
  47107. source: "./media/characters/shavon/nude.svg",
  47108. extra: 1242/1096,
  47109. bottom: 98/1340
  47110. }
  47111. },
  47112. dressed: {
  47113. height: math.unit(6, "feet"),
  47114. weight: math.unit(150, "lb"),
  47115. name: "Dressed",
  47116. image: {
  47117. source: "./media/characters/shavon/dressed.svg",
  47118. extra: 1242/1096,
  47119. bottom: 98/1340
  47120. }
  47121. },
  47122. },
  47123. [
  47124. {
  47125. name: "Macro",
  47126. height: math.unit(255, "feet"),
  47127. default: true
  47128. },
  47129. ]
  47130. ))
  47131. characterMakers.push(() => makeCharacter(
  47132. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47133. {
  47134. front: {
  47135. height: math.unit(6, "feet"),
  47136. name: "Front",
  47137. image: {
  47138. source: "./media/characters/steph/front.svg",
  47139. extra: 1430/1330,
  47140. bottom: 54/1484
  47141. }
  47142. },
  47143. },
  47144. [
  47145. {
  47146. name: "Normal",
  47147. height: math.unit(6, "feet"),
  47148. default: true
  47149. },
  47150. ]
  47151. ))
  47152. characterMakers.push(() => makeCharacter(
  47153. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47154. {
  47155. front: {
  47156. height: math.unit(9, "feet"),
  47157. weight: math.unit(400, "lb"),
  47158. name: "Front",
  47159. image: {
  47160. source: "./media/characters/kil'aman/front.svg",
  47161. extra: 1210/1159,
  47162. bottom: 109/1319
  47163. }
  47164. },
  47165. head: {
  47166. height: math.unit(2.14, "feet"),
  47167. name: "Head",
  47168. image: {
  47169. source: "./media/characters/kil'aman/head.svg"
  47170. }
  47171. },
  47172. maw: {
  47173. height: math.unit(1.21, "feet"),
  47174. name: "Maw",
  47175. image: {
  47176. source: "./media/characters/kil'aman/maw.svg"
  47177. }
  47178. },
  47179. foot: {
  47180. height: math.unit(1.7, "feet"),
  47181. name: "Foot",
  47182. image: {
  47183. source: "./media/characters/kil'aman/foot.svg"
  47184. }
  47185. },
  47186. dick: {
  47187. height: math.unit(2.1, "feet"),
  47188. name: "Dick",
  47189. image: {
  47190. source: "./media/characters/kil'aman/dick.svg"
  47191. }
  47192. },
  47193. },
  47194. [
  47195. {
  47196. name: "Normal",
  47197. height: math.unit(9, "feet")
  47198. },
  47199. {
  47200. name: "Canon Height",
  47201. height: math.unit(10, "miles"),
  47202. default: true
  47203. },
  47204. {
  47205. name: "Maximum",
  47206. height: math.unit(6e9, "miles")
  47207. },
  47208. ]
  47209. ))
  47210. characterMakers.push(() => makeCharacter(
  47211. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47212. {
  47213. front: {
  47214. height: math.unit(90, "feet"),
  47215. weight: math.unit(675000, "lb"),
  47216. name: "Front",
  47217. image: {
  47218. source: "./media/characters/qadan/front.svg",
  47219. extra: 1012/1004,
  47220. bottom: 78/1090
  47221. }
  47222. },
  47223. back: {
  47224. height: math.unit(90, "feet"),
  47225. weight: math.unit(675000, "lb"),
  47226. name: "Back",
  47227. image: {
  47228. source: "./media/characters/qadan/back.svg",
  47229. extra: 1042/1031,
  47230. bottom: 55/1097
  47231. }
  47232. },
  47233. armored: {
  47234. height: math.unit(90, "feet"),
  47235. weight: math.unit(675000, "lb"),
  47236. name: "Armored",
  47237. image: {
  47238. source: "./media/characters/qadan/armored.svg",
  47239. extra: 1047/1037,
  47240. bottom: 48/1095
  47241. }
  47242. },
  47243. },
  47244. [
  47245. {
  47246. name: "Normal",
  47247. height: math.unit(90, "feet"),
  47248. default: true
  47249. },
  47250. ]
  47251. ))
  47252. characterMakers.push(() => makeCharacter(
  47253. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47254. {
  47255. front: {
  47256. height: math.unit(6, "feet"),
  47257. weight: math.unit(225, "lb"),
  47258. name: "Front",
  47259. image: {
  47260. source: "./media/characters/brooke/front.svg",
  47261. extra: 1050/1010,
  47262. bottom: 66/1116
  47263. }
  47264. },
  47265. back: {
  47266. height: math.unit(6, "feet"),
  47267. weight: math.unit(225, "lb"),
  47268. name: "Back",
  47269. image: {
  47270. source: "./media/characters/brooke/back.svg",
  47271. extra: 1053/1013,
  47272. bottom: 41/1094
  47273. }
  47274. },
  47275. dressed: {
  47276. height: math.unit(6, "feet"),
  47277. weight: math.unit(225, "lb"),
  47278. name: "Dressed",
  47279. image: {
  47280. source: "./media/characters/brooke/dressed.svg",
  47281. extra: 1050/1010,
  47282. bottom: 66/1116
  47283. }
  47284. },
  47285. },
  47286. [
  47287. {
  47288. name: "Canon Height",
  47289. height: math.unit(500, "miles"),
  47290. default: true
  47291. },
  47292. ]
  47293. ))
  47294. characterMakers.push(() => makeCharacter(
  47295. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47296. {
  47297. front: {
  47298. height: math.unit(6 + 2/12, "feet"),
  47299. weight: math.unit(210, "lb"),
  47300. name: "Front",
  47301. image: {
  47302. source: "./media/characters/wubs/front.svg",
  47303. extra: 1345/1325,
  47304. bottom: 70/1415
  47305. }
  47306. },
  47307. back: {
  47308. height: math.unit(6 + 2/12, "feet"),
  47309. weight: math.unit(210, "lb"),
  47310. name: "Back",
  47311. image: {
  47312. source: "./media/characters/wubs/back.svg",
  47313. extra: 1296/1275,
  47314. bottom: 58/1354
  47315. }
  47316. },
  47317. },
  47318. [
  47319. {
  47320. name: "Normal",
  47321. height: math.unit(6 + 2/12, "feet"),
  47322. default: true
  47323. },
  47324. {
  47325. name: "Macro",
  47326. height: math.unit(1000, "feet")
  47327. },
  47328. {
  47329. name: "Megamacro",
  47330. height: math.unit(1, "mile")
  47331. },
  47332. ]
  47333. ))
  47334. characterMakers.push(() => makeCharacter(
  47335. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47336. {
  47337. front: {
  47338. height: math.unit(4, "feet"),
  47339. weight: math.unit(120, "lb"),
  47340. name: "Front",
  47341. image: {
  47342. source: "./media/characters/blue/front.svg",
  47343. extra: 1636/1525,
  47344. bottom: 43/1679
  47345. }
  47346. },
  47347. back: {
  47348. height: math.unit(4, "feet"),
  47349. weight: math.unit(120, "lb"),
  47350. name: "Back",
  47351. image: {
  47352. source: "./media/characters/blue/back.svg",
  47353. extra: 1660/1560,
  47354. bottom: 57/1717
  47355. }
  47356. },
  47357. paws: {
  47358. height: math.unit(0.826, "feet"),
  47359. name: "Paws",
  47360. image: {
  47361. source: "./media/characters/blue/paws.svg"
  47362. }
  47363. },
  47364. },
  47365. [
  47366. {
  47367. name: "Micro",
  47368. height: math.unit(3, "inches")
  47369. },
  47370. {
  47371. name: "Normal",
  47372. height: math.unit(4, "feet"),
  47373. default: true
  47374. },
  47375. {
  47376. name: "Femenine Form",
  47377. height: math.unit(14, "feet")
  47378. },
  47379. {
  47380. name: "Werebat Form",
  47381. height: math.unit(18, "feet")
  47382. },
  47383. ]
  47384. ))
  47385. characterMakers.push(() => makeCharacter(
  47386. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47387. {
  47388. female: {
  47389. height: math.unit(7 + 4/12, "feet"),
  47390. weight: math.unit(243, "lb"),
  47391. name: "Female",
  47392. image: {
  47393. source: "./media/characters/kaya/female.svg",
  47394. extra: 975/898,
  47395. bottom: 34/1009
  47396. }
  47397. },
  47398. herm: {
  47399. height: math.unit(7 + 4/12, "feet"),
  47400. weight: math.unit(243, "lb"),
  47401. name: "Herm",
  47402. image: {
  47403. source: "./media/characters/kaya/herm.svg",
  47404. extra: 975/898,
  47405. bottom: 34/1009
  47406. }
  47407. },
  47408. },
  47409. [
  47410. {
  47411. name: "Normal",
  47412. height: math.unit(7 + 4/12, "feet"),
  47413. default: true
  47414. },
  47415. ]
  47416. ))
  47417. characterMakers.push(() => makeCharacter(
  47418. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47419. {
  47420. female: {
  47421. height: math.unit(9 + 4/12, "feet"),
  47422. weight: math.unit(398, "lb"),
  47423. name: "Female",
  47424. image: {
  47425. source: "./media/characters/kassandra/female.svg",
  47426. extra: 908/839,
  47427. bottom: 61/969
  47428. }
  47429. },
  47430. intersex: {
  47431. height: math.unit(9 + 4/12, "feet"),
  47432. weight: math.unit(398, "lb"),
  47433. name: "Intersex",
  47434. image: {
  47435. source: "./media/characters/kassandra/intersex.svg",
  47436. extra: 908/839,
  47437. bottom: 61/969
  47438. }
  47439. },
  47440. },
  47441. [
  47442. {
  47443. name: "Normal",
  47444. height: math.unit(9 + 4/12, "feet"),
  47445. default: true
  47446. },
  47447. ]
  47448. ))
  47449. characterMakers.push(() => makeCharacter(
  47450. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47451. {
  47452. front: {
  47453. height: math.unit(3, "meters"),
  47454. name: "Front",
  47455. image: {
  47456. source: "./media/characters/amy/front.svg",
  47457. extra: 1380/1343,
  47458. bottom: 70/1450
  47459. }
  47460. },
  47461. back: {
  47462. height: math.unit(3, "meters"),
  47463. name: "Back",
  47464. image: {
  47465. source: "./media/characters/amy/back.svg",
  47466. extra: 1380/1347,
  47467. bottom: 66/1446
  47468. }
  47469. },
  47470. },
  47471. [
  47472. {
  47473. name: "Normal",
  47474. height: math.unit(3, "meters"),
  47475. default: true
  47476. },
  47477. ]
  47478. ))
  47479. characterMakers.push(() => makeCharacter(
  47480. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47481. {
  47482. side: {
  47483. height: math.unit(47, "cm"),
  47484. weight: math.unit(10.8, "kg"),
  47485. name: "Side",
  47486. image: {
  47487. source: "./media/characters/alphaschakal/side.svg",
  47488. extra: 1058/568,
  47489. bottom: 62/1120
  47490. }
  47491. },
  47492. back: {
  47493. height: math.unit(78, "cm"),
  47494. weight: math.unit(10.8, "kg"),
  47495. name: "Back",
  47496. image: {
  47497. source: "./media/characters/alphaschakal/back.svg",
  47498. extra: 1102/942,
  47499. bottom: 185/1287
  47500. }
  47501. },
  47502. head: {
  47503. height: math.unit(28, "cm"),
  47504. name: "Head",
  47505. image: {
  47506. source: "./media/characters/alphaschakal/head.svg",
  47507. extra: 696/508,
  47508. bottom: 0/696
  47509. }
  47510. },
  47511. paw: {
  47512. height: math.unit(16, "cm"),
  47513. name: "Paw",
  47514. image: {
  47515. source: "./media/characters/alphaschakal/paw.svg"
  47516. }
  47517. },
  47518. },
  47519. [
  47520. {
  47521. name: "Normal",
  47522. height: math.unit(47, "cm"),
  47523. default: true
  47524. },
  47525. {
  47526. name: "Macro",
  47527. height: math.unit(340, "cm")
  47528. },
  47529. ]
  47530. ))
  47531. characterMakers.push(() => makeCharacter(
  47532. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47533. {
  47534. front: {
  47535. height: math.unit(36, "earths"),
  47536. name: "Front",
  47537. image: {
  47538. source: "./media/characters/ecobyss/front.svg",
  47539. extra: 1282/1215,
  47540. bottom: 11/1293
  47541. }
  47542. },
  47543. back: {
  47544. height: math.unit(36, "earths"),
  47545. name: "Back",
  47546. image: {
  47547. source: "./media/characters/ecobyss/back.svg",
  47548. extra: 1291/1222,
  47549. bottom: 8/1299
  47550. }
  47551. },
  47552. },
  47553. [
  47554. {
  47555. name: "Normal",
  47556. height: math.unit(36, "earths"),
  47557. default: true
  47558. },
  47559. ]
  47560. ))
  47561. characterMakers.push(() => makeCharacter(
  47562. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47563. {
  47564. front: {
  47565. height: math.unit(12, "feet"),
  47566. name: "Front",
  47567. image: {
  47568. source: "./media/characters/vasuk/front.svg",
  47569. extra: 1326/1207,
  47570. bottom: 64/1390
  47571. }
  47572. },
  47573. },
  47574. [
  47575. {
  47576. name: "Normal",
  47577. height: math.unit(12, "feet"),
  47578. default: true
  47579. },
  47580. ]
  47581. ))
  47582. characterMakers.push(() => makeCharacter(
  47583. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47584. {
  47585. side: {
  47586. height: math.unit(100, "feet"),
  47587. name: "Side",
  47588. image: {
  47589. source: "./media/characters/linneaus/side.svg",
  47590. extra: 987/807,
  47591. bottom: 47/1034
  47592. }
  47593. },
  47594. },
  47595. [
  47596. {
  47597. name: "Macro",
  47598. height: math.unit(100, "feet"),
  47599. default: true
  47600. },
  47601. ]
  47602. ))
  47603. characterMakers.push(() => makeCharacter(
  47604. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47605. {
  47606. front: {
  47607. height: math.unit(8, "feet"),
  47608. weight: math.unit(1200, "lb"),
  47609. name: "Front",
  47610. image: {
  47611. source: "./media/characters/nyterious-daligdig/front.svg",
  47612. extra: 1284/1094,
  47613. bottom: 84/1368
  47614. }
  47615. },
  47616. back: {
  47617. height: math.unit(8, "feet"),
  47618. weight: math.unit(1200, "lb"),
  47619. name: "Back",
  47620. image: {
  47621. source: "./media/characters/nyterious-daligdig/back.svg",
  47622. extra: 1301/1121,
  47623. bottom: 129/1430
  47624. }
  47625. },
  47626. mouth: {
  47627. height: math.unit(1.464, "feet"),
  47628. name: "Mouth",
  47629. image: {
  47630. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47631. }
  47632. },
  47633. },
  47634. [
  47635. {
  47636. name: "Small",
  47637. height: math.unit(8, "feet"),
  47638. default: true
  47639. },
  47640. {
  47641. name: "Normal",
  47642. height: math.unit(15, "feet")
  47643. },
  47644. {
  47645. name: "Macro",
  47646. height: math.unit(90, "feet")
  47647. },
  47648. ]
  47649. ))
  47650. characterMakers.push(() => makeCharacter(
  47651. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47652. {
  47653. front: {
  47654. height: math.unit(7 + 4/12, "feet"),
  47655. weight: math.unit(252, "lb"),
  47656. name: "Front",
  47657. image: {
  47658. source: "./media/characters/bandel/front.svg",
  47659. extra: 1946/1775,
  47660. bottom: 26/1972
  47661. }
  47662. },
  47663. back: {
  47664. height: math.unit(7 + 4/12, "feet"),
  47665. weight: math.unit(252, "lb"),
  47666. name: "Back",
  47667. image: {
  47668. source: "./media/characters/bandel/back.svg",
  47669. extra: 1940/1770,
  47670. bottom: 25/1965
  47671. }
  47672. },
  47673. maw: {
  47674. height: math.unit(2.15, "feet"),
  47675. name: "Maw",
  47676. image: {
  47677. source: "./media/characters/bandel/maw.svg"
  47678. }
  47679. },
  47680. stomach: {
  47681. height: math.unit(1.95, "feet"),
  47682. name: "Stomach",
  47683. image: {
  47684. source: "./media/characters/bandel/stomach.svg"
  47685. }
  47686. },
  47687. },
  47688. [
  47689. {
  47690. name: "Normal",
  47691. height: math.unit(7 + 4/12, "feet"),
  47692. default: true
  47693. },
  47694. ]
  47695. ))
  47696. characterMakers.push(() => makeCharacter(
  47697. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47698. {
  47699. front: {
  47700. height: math.unit(10 + 5/12, "feet"),
  47701. weight: math.unit(773.5, "kg"),
  47702. name: "Front",
  47703. image: {
  47704. source: "./media/characters/zed/front.svg",
  47705. extra: 987/941,
  47706. bottom: 52/1039
  47707. }
  47708. },
  47709. },
  47710. [
  47711. {
  47712. name: "Short",
  47713. height: math.unit(5 + 4/12, "feet")
  47714. },
  47715. {
  47716. name: "Average",
  47717. height: math.unit(10 + 5/12, "feet"),
  47718. default: true
  47719. },
  47720. {
  47721. name: "Mini-Macro",
  47722. height: math.unit(24 + 9/12, "feet")
  47723. },
  47724. {
  47725. name: "Macro",
  47726. height: math.unit(249, "feet")
  47727. },
  47728. {
  47729. name: "Mega-Macro",
  47730. height: math.unit(12490, "feet")
  47731. },
  47732. {
  47733. name: "Giga-Macro",
  47734. height: math.unit(24.9, "miles")
  47735. },
  47736. {
  47737. name: "Tera-Macro",
  47738. height: math.unit(24900, "miles")
  47739. },
  47740. {
  47741. name: "Cosmic Scale",
  47742. height: math.unit(38.9, "lightyears")
  47743. },
  47744. {
  47745. name: "Universal Scale",
  47746. height: math.unit(138e12, "lightyears")
  47747. },
  47748. ]
  47749. ))
  47750. characterMakers.push(() => makeCharacter(
  47751. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47752. {
  47753. front: {
  47754. height: math.unit(1561, "inches"),
  47755. name: "Front",
  47756. image: {
  47757. source: "./media/characters/ivan/front.svg",
  47758. extra: 1126/1071,
  47759. bottom: 26/1152
  47760. }
  47761. },
  47762. back: {
  47763. height: math.unit(1561, "inches"),
  47764. name: "Back",
  47765. image: {
  47766. source: "./media/characters/ivan/back.svg",
  47767. extra: 1134/1079,
  47768. bottom: 30/1164
  47769. }
  47770. },
  47771. },
  47772. [
  47773. {
  47774. name: "Normal",
  47775. height: math.unit(1561, "inches"),
  47776. default: true
  47777. },
  47778. ]
  47779. ))
  47780. characterMakers.push(() => makeCharacter(
  47781. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47782. {
  47783. front: {
  47784. height: math.unit(5 + 7/12, "feet"),
  47785. weight: math.unit(150, "lb"),
  47786. name: "Front",
  47787. image: {
  47788. source: "./media/characters/robin-arctic-hare/front.svg",
  47789. extra: 1148/974,
  47790. bottom: 20/1168
  47791. }
  47792. },
  47793. },
  47794. [
  47795. {
  47796. name: "Normal",
  47797. height: math.unit(5 + 7/12, "feet"),
  47798. default: true
  47799. },
  47800. ]
  47801. ))
  47802. characterMakers.push(() => makeCharacter(
  47803. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47804. {
  47805. side: {
  47806. height: math.unit(5, "feet"),
  47807. name: "Side",
  47808. image: {
  47809. source: "./media/characters/birch/side.svg",
  47810. extra: 985/796,
  47811. bottom: 111/1096
  47812. }
  47813. },
  47814. },
  47815. [
  47816. {
  47817. name: "Normal",
  47818. height: math.unit(5, "feet"),
  47819. default: true
  47820. },
  47821. ]
  47822. ))
  47823. characterMakers.push(() => makeCharacter(
  47824. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47825. {
  47826. front: {
  47827. height: math.unit(4, "feet"),
  47828. name: "Front",
  47829. image: {
  47830. source: "./media/characters/rasp/front.svg",
  47831. extra: 561/478,
  47832. bottom: 74/635
  47833. }
  47834. },
  47835. },
  47836. [
  47837. {
  47838. name: "Normal",
  47839. height: math.unit(4, "feet"),
  47840. default: true
  47841. },
  47842. ]
  47843. ))
  47844. characterMakers.push(() => makeCharacter(
  47845. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47846. {
  47847. front: {
  47848. height: math.unit(4 + 6/12, "feet"),
  47849. name: "Front",
  47850. image: {
  47851. source: "./media/characters/agatha/front.svg",
  47852. extra: 947/933,
  47853. bottom: 42/989
  47854. }
  47855. },
  47856. back: {
  47857. height: math.unit(4 + 6/12, "feet"),
  47858. name: "Back",
  47859. image: {
  47860. source: "./media/characters/agatha/back.svg",
  47861. extra: 935/922,
  47862. bottom: 48/983
  47863. }
  47864. },
  47865. },
  47866. [
  47867. {
  47868. name: "Normal",
  47869. height: math.unit(4 + 6 /12, "feet"),
  47870. default: true
  47871. },
  47872. {
  47873. name: "Max Size",
  47874. height: math.unit(500, "feet")
  47875. },
  47876. ]
  47877. ))
  47878. characterMakers.push(() => makeCharacter(
  47879. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47880. {
  47881. side: {
  47882. height: math.unit(30, "feet"),
  47883. name: "Side",
  47884. image: {
  47885. source: "./media/characters/roggy/side.svg",
  47886. extra: 909/643,
  47887. bottom: 63/972
  47888. }
  47889. },
  47890. lounging: {
  47891. height: math.unit(20, "feet"),
  47892. name: "Lounging",
  47893. image: {
  47894. source: "./media/characters/roggy/lounging.svg",
  47895. extra: 643/479,
  47896. bottom: 145/788
  47897. }
  47898. },
  47899. handpaw: {
  47900. height: math.unit(13.1, "feet"),
  47901. name: "Handpaw",
  47902. image: {
  47903. source: "./media/characters/roggy/handpaw.svg"
  47904. }
  47905. },
  47906. footpaw: {
  47907. height: math.unit(15.8, "feet"),
  47908. name: "Footpaw",
  47909. image: {
  47910. source: "./media/characters/roggy/footpaw.svg"
  47911. }
  47912. },
  47913. },
  47914. [
  47915. {
  47916. name: "Menacing",
  47917. height: math.unit(30, "feet"),
  47918. default: true
  47919. },
  47920. ]
  47921. ))
  47922. characterMakers.push(() => makeCharacter(
  47923. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47924. {
  47925. front: {
  47926. height: math.unit(5 + 7/12, "feet"),
  47927. weight: math.unit(135, "lb"),
  47928. name: "Front",
  47929. image: {
  47930. source: "./media/characters/naomi/front.svg",
  47931. extra: 1209/1154,
  47932. bottom: 129/1338
  47933. }
  47934. },
  47935. back: {
  47936. height: math.unit(5 + 7/12, "feet"),
  47937. weight: math.unit(135, "lb"),
  47938. name: "Back",
  47939. image: {
  47940. source: "./media/characters/naomi/back.svg",
  47941. extra: 1252/1190,
  47942. bottom: 23/1275
  47943. }
  47944. },
  47945. },
  47946. [
  47947. {
  47948. name: "Normal",
  47949. height: math.unit(5 + 7 /12, "feet"),
  47950. default: true
  47951. },
  47952. ]
  47953. ))
  47954. characterMakers.push(() => makeCharacter(
  47955. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47956. {
  47957. side: {
  47958. height: math.unit(35, "meters"),
  47959. name: "Side",
  47960. image: {
  47961. source: "./media/characters/kimpi/side.svg",
  47962. extra: 419/382,
  47963. bottom: 63/482
  47964. }
  47965. },
  47966. hand: {
  47967. height: math.unit(8.96, "meters"),
  47968. name: "Hand",
  47969. image: {
  47970. source: "./media/characters/kimpi/hand.svg"
  47971. }
  47972. },
  47973. },
  47974. [
  47975. {
  47976. name: "Normal",
  47977. height: math.unit(35, "meters"),
  47978. default: true
  47979. },
  47980. ]
  47981. ))
  47982. characterMakers.push(() => makeCharacter(
  47983. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47984. {
  47985. front: {
  47986. height: math.unit(4 + 4/12, "feet"),
  47987. name: "Front",
  47988. image: {
  47989. source: "./media/characters/pepper-purrloin/front.svg",
  47990. extra: 1141/1024,
  47991. bottom: 21/1162
  47992. }
  47993. },
  47994. },
  47995. [
  47996. {
  47997. name: "Normal",
  47998. height: math.unit(4 + 4/12, "feet"),
  47999. default: true
  48000. },
  48001. ]
  48002. ))
  48003. characterMakers.push(() => makeCharacter(
  48004. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48005. {
  48006. front: {
  48007. height: math.unit(6 + 2/12, "feet"),
  48008. name: "Front",
  48009. image: {
  48010. source: "./media/characters/raphael/front.svg",
  48011. extra: 1101/962,
  48012. bottom: 59/1160
  48013. }
  48014. },
  48015. },
  48016. [
  48017. {
  48018. name: "Normal",
  48019. height: math.unit(6 + 2/12, "feet"),
  48020. default: true
  48021. },
  48022. ]
  48023. ))
  48024. characterMakers.push(() => makeCharacter(
  48025. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48026. {
  48027. front: {
  48028. height: math.unit(6, "feet"),
  48029. weight: math.unit(150, "lb"),
  48030. name: "Front",
  48031. image: {
  48032. source: "./media/characters/victor-williams/front.svg",
  48033. extra: 1894/1825,
  48034. bottom: 67/1961
  48035. }
  48036. },
  48037. },
  48038. [
  48039. {
  48040. name: "Normal",
  48041. height: math.unit(6, "feet"),
  48042. default: true
  48043. },
  48044. ]
  48045. ))
  48046. characterMakers.push(() => makeCharacter(
  48047. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48048. {
  48049. front: {
  48050. height: math.unit(5 + 8/12, "feet"),
  48051. weight: math.unit(150, "lb"),
  48052. name: "Front",
  48053. image: {
  48054. source: "./media/characters/rachel/front.svg",
  48055. extra: 1902/1787,
  48056. bottom: 46/1948
  48057. }
  48058. },
  48059. },
  48060. [
  48061. {
  48062. name: "Base Height",
  48063. height: math.unit(5 + 8/12, "feet"),
  48064. default: true
  48065. },
  48066. {
  48067. name: "Macro",
  48068. height: math.unit(200, "feet")
  48069. },
  48070. {
  48071. name: "Mega Macro",
  48072. height: math.unit(1, "mile")
  48073. },
  48074. {
  48075. name: "Giga Macro",
  48076. height: math.unit(1500, "miles")
  48077. },
  48078. {
  48079. name: "Tera Macro",
  48080. height: math.unit(8000, "miles")
  48081. },
  48082. {
  48083. name: "Tera Macro+",
  48084. height: math.unit(2e5, "miles")
  48085. },
  48086. ]
  48087. ))
  48088. characterMakers.push(() => makeCharacter(
  48089. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48090. {
  48091. front: {
  48092. height: math.unit(6.5, "feet"),
  48093. name: "Front",
  48094. image: {
  48095. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48096. extra: 860/819,
  48097. bottom: 307/1167
  48098. }
  48099. },
  48100. back: {
  48101. height: math.unit(6.5, "feet"),
  48102. name: "Back",
  48103. image: {
  48104. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48105. extra: 880/837,
  48106. bottom: 395/1275
  48107. }
  48108. },
  48109. sleeping: {
  48110. height: math.unit(2.79, "feet"),
  48111. name: "Sleeping",
  48112. image: {
  48113. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48114. extra: 465/383,
  48115. bottom: 263/728
  48116. }
  48117. },
  48118. maw: {
  48119. height: math.unit(2.52, "feet"),
  48120. name: "Maw",
  48121. image: {
  48122. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48123. }
  48124. },
  48125. },
  48126. [
  48127. {
  48128. name: "Normal",
  48129. height: math.unit(6.5, "feet"),
  48130. default: true
  48131. },
  48132. ]
  48133. ))
  48134. characterMakers.push(() => makeCharacter(
  48135. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48136. {
  48137. front: {
  48138. height: math.unit(5, "feet"),
  48139. name: "Front",
  48140. image: {
  48141. source: "./media/characters/nova-nerium/front.svg",
  48142. extra: 1548/1392,
  48143. bottom: 374/1922
  48144. }
  48145. },
  48146. back: {
  48147. height: math.unit(5, "feet"),
  48148. name: "Back",
  48149. image: {
  48150. source: "./media/characters/nova-nerium/back.svg",
  48151. extra: 1658/1468,
  48152. bottom: 257/1915
  48153. }
  48154. },
  48155. },
  48156. [
  48157. {
  48158. name: "Normal",
  48159. height: math.unit(5, "feet"),
  48160. default: true
  48161. },
  48162. ]
  48163. ))
  48164. characterMakers.push(() => makeCharacter(
  48165. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48166. {
  48167. front: {
  48168. height: math.unit(5 + 4/12, "feet"),
  48169. name: "Front",
  48170. image: {
  48171. source: "./media/characters/ashe-pyriph/front.svg",
  48172. extra: 1935/1747,
  48173. bottom: 60/1995
  48174. }
  48175. },
  48176. },
  48177. [
  48178. {
  48179. name: "Normal",
  48180. height: math.unit(5 + 4/12, "feet"),
  48181. default: true
  48182. },
  48183. ]
  48184. ))
  48185. characterMakers.push(() => makeCharacter(
  48186. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48187. {
  48188. front: {
  48189. height: math.unit(8.7, "feet"),
  48190. name: "Front",
  48191. image: {
  48192. source: "./media/characters/flicker-wisp/front.svg",
  48193. extra: 1835/1613,
  48194. bottom: 449/2284
  48195. }
  48196. },
  48197. side: {
  48198. height: math.unit(8.7, "feet"),
  48199. name: "Side",
  48200. image: {
  48201. source: "./media/characters/flicker-wisp/side.svg",
  48202. extra: 1841/1642,
  48203. bottom: 336/2177
  48204. },
  48205. default: true
  48206. },
  48207. maw: {
  48208. height: math.unit(3.35, "feet"),
  48209. name: "Maw",
  48210. image: {
  48211. source: "./media/characters/flicker-wisp/maw.svg",
  48212. extra: 2338/1506,
  48213. bottom: 0/2338
  48214. }
  48215. },
  48216. ovipositor: {
  48217. height: math.unit(4.95, "feet"),
  48218. name: "Ovipositor",
  48219. image: {
  48220. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48221. }
  48222. },
  48223. egg: {
  48224. height: math.unit(0.385, "feet"),
  48225. weight: math.unit(2, "lb"),
  48226. name: "Egg",
  48227. image: {
  48228. source: "./media/characters/flicker-wisp/egg.svg"
  48229. }
  48230. },
  48231. },
  48232. [
  48233. {
  48234. name: "Normal",
  48235. height: math.unit(8.7, "feet"),
  48236. default: true
  48237. },
  48238. ]
  48239. ))
  48240. characterMakers.push(() => makeCharacter(
  48241. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48242. {
  48243. side: {
  48244. height: math.unit(11, "feet"),
  48245. name: "Side",
  48246. image: {
  48247. source: "./media/characters/faefnul/side.svg",
  48248. extra: 1100/1007,
  48249. bottom: 0/1100
  48250. }
  48251. },
  48252. },
  48253. [
  48254. {
  48255. name: "Normal",
  48256. height: math.unit(11, "feet"),
  48257. default: true
  48258. },
  48259. ]
  48260. ))
  48261. characterMakers.push(() => makeCharacter(
  48262. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48263. {
  48264. front: {
  48265. height: math.unit(6 + 2/12, "feet"),
  48266. name: "Front",
  48267. image: {
  48268. source: "./media/characters/shady/front.svg",
  48269. extra: 502/461,
  48270. bottom: 9/511
  48271. }
  48272. },
  48273. kneeling: {
  48274. height: math.unit(4.6, "feet"),
  48275. name: "Kneeling",
  48276. image: {
  48277. source: "./media/characters/shady/kneeling.svg",
  48278. extra: 1328/1219,
  48279. bottom: 117/1445
  48280. }
  48281. },
  48282. maw: {
  48283. height: math.unit(2, "feet"),
  48284. name: "Maw",
  48285. image: {
  48286. source: "./media/characters/shady/maw.svg"
  48287. }
  48288. },
  48289. },
  48290. [
  48291. {
  48292. name: "Nano",
  48293. height: math.unit(1, "mm")
  48294. },
  48295. {
  48296. name: "Micro",
  48297. height: math.unit(12, "mm")
  48298. },
  48299. {
  48300. name: "Tiny",
  48301. height: math.unit(3, "inches")
  48302. },
  48303. {
  48304. name: "Normal",
  48305. height: math.unit(6 + 2/12, "feet"),
  48306. default: true
  48307. },
  48308. {
  48309. name: "Big",
  48310. height: math.unit(15, "feet")
  48311. },
  48312. {
  48313. name: "Macro",
  48314. height: math.unit(150, "feet")
  48315. },
  48316. {
  48317. name: "Titanic",
  48318. height: math.unit(500, "feet")
  48319. },
  48320. ]
  48321. ))
  48322. characterMakers.push(() => makeCharacter(
  48323. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48324. {
  48325. front: {
  48326. height: math.unit(12, "feet"),
  48327. name: "Front",
  48328. image: {
  48329. source: "./media/characters/fenrir/front.svg",
  48330. extra: 968/875,
  48331. bottom: 22/990
  48332. }
  48333. },
  48334. },
  48335. [
  48336. {
  48337. name: "Big",
  48338. height: math.unit(12, "feet"),
  48339. default: true
  48340. },
  48341. ]
  48342. ))
  48343. characterMakers.push(() => makeCharacter(
  48344. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48345. {
  48346. front: {
  48347. height: math.unit(5 + 4/12, "feet"),
  48348. name: "Front",
  48349. image: {
  48350. source: "./media/characters/makar/front.svg",
  48351. extra: 1181/1112,
  48352. bottom: 78/1259
  48353. }
  48354. },
  48355. },
  48356. [
  48357. {
  48358. name: "Normal",
  48359. height: math.unit(5 + 4/12, "feet"),
  48360. default: true
  48361. },
  48362. ]
  48363. ))
  48364. characterMakers.push(() => makeCharacter(
  48365. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48366. {
  48367. front: {
  48368. height: math.unit(5 + 7/12, "feet"),
  48369. name: "Front",
  48370. image: {
  48371. source: "./media/characters/callow/front.svg",
  48372. extra: 1482/1304,
  48373. bottom: 23/1505
  48374. }
  48375. },
  48376. back: {
  48377. height: math.unit(5 + 7/12, "feet"),
  48378. name: "Back",
  48379. image: {
  48380. source: "./media/characters/callow/back.svg",
  48381. extra: 1484/1296,
  48382. bottom: 25/1509
  48383. }
  48384. },
  48385. },
  48386. [
  48387. {
  48388. name: "Micro",
  48389. height: math.unit(3, "inches"),
  48390. default: true
  48391. },
  48392. {
  48393. name: "Normal",
  48394. height: math.unit(5 + 7/12, "feet")
  48395. },
  48396. ]
  48397. ))
  48398. characterMakers.push(() => makeCharacter(
  48399. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48400. {
  48401. front: {
  48402. height: math.unit(6 + 2/12, "feet"),
  48403. name: "Front",
  48404. image: {
  48405. source: "./media/characters/natel/front.svg",
  48406. extra: 1833/1692,
  48407. bottom: 166/1999
  48408. }
  48409. },
  48410. },
  48411. [
  48412. {
  48413. name: "Normal",
  48414. height: math.unit(6 + 2/12, "feet"),
  48415. default: true
  48416. },
  48417. ]
  48418. ))
  48419. characterMakers.push(() => makeCharacter(
  48420. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48421. {
  48422. front: {
  48423. height: math.unit(1.75, "meters"),
  48424. name: "Front",
  48425. image: {
  48426. source: "./media/characters/misu/front.svg",
  48427. extra: 1690/1558,
  48428. bottom: 234/1924
  48429. }
  48430. },
  48431. back: {
  48432. height: math.unit(1.75, "meters"),
  48433. name: "Back",
  48434. image: {
  48435. source: "./media/characters/misu/back.svg",
  48436. extra: 1762/1618,
  48437. bottom: 146/1908
  48438. }
  48439. },
  48440. frontNude: {
  48441. height: math.unit(1.75, "meters"),
  48442. name: "Front (Nude)",
  48443. image: {
  48444. source: "./media/characters/misu/front-nude.svg",
  48445. extra: 1690/1558,
  48446. bottom: 234/1924
  48447. }
  48448. },
  48449. backNude: {
  48450. height: math.unit(1.75, "meters"),
  48451. name: "Back (Nude)",
  48452. image: {
  48453. source: "./media/characters/misu/back-nude.svg",
  48454. extra: 1762/1618,
  48455. bottom: 146/1908
  48456. }
  48457. },
  48458. frontErect: {
  48459. height: math.unit(1.75, "meters"),
  48460. name: "Front (Erect)",
  48461. image: {
  48462. source: "./media/characters/misu/front-erect.svg",
  48463. extra: 1690/1558,
  48464. bottom: 234/1924
  48465. }
  48466. },
  48467. maw: {
  48468. height: math.unit(0.47, "meters"),
  48469. name: "Maw",
  48470. image: {
  48471. source: "./media/characters/misu/maw.svg"
  48472. }
  48473. },
  48474. head: {
  48475. height: math.unit(0.35, "meters"),
  48476. name: "Head",
  48477. image: {
  48478. source: "./media/characters/misu/head.svg"
  48479. }
  48480. },
  48481. rear: {
  48482. height: math.unit(0.47, "meters"),
  48483. name: "Rear",
  48484. image: {
  48485. source: "./media/characters/misu/rear.svg"
  48486. }
  48487. },
  48488. },
  48489. [
  48490. {
  48491. name: "Normal",
  48492. height: math.unit(1.75, "meters")
  48493. },
  48494. {
  48495. name: "Not good for the people",
  48496. height: math.unit(42, "meters")
  48497. },
  48498. {
  48499. name: "Not good for the neighborhood",
  48500. height: math.unit(135, "meters")
  48501. },
  48502. {
  48503. name: "Bit bigger problem",
  48504. height: math.unit(380, "meters"),
  48505. default: true
  48506. },
  48507. {
  48508. name: "Not good for the city",
  48509. height: math.unit(1.5, "km")
  48510. },
  48511. {
  48512. name: "Not good for the county",
  48513. height: math.unit(5.5, "km")
  48514. },
  48515. {
  48516. name: "Not good for the state",
  48517. height: math.unit(25, "km")
  48518. },
  48519. {
  48520. name: "Not good for the country",
  48521. height: math.unit(125, "km")
  48522. },
  48523. {
  48524. name: "Not good for the continent",
  48525. height: math.unit(2100, "km")
  48526. },
  48527. {
  48528. name: "Not good for the planet",
  48529. height: math.unit(35000, "km")
  48530. },
  48531. {
  48532. name: "Just no",
  48533. height: math.unit(8.5e18, "km")
  48534. },
  48535. ]
  48536. ))
  48537. characterMakers.push(() => makeCharacter(
  48538. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48539. {
  48540. front: {
  48541. height: math.unit(6.5, "feet"),
  48542. name: "Front",
  48543. image: {
  48544. source: "./media/characters/poppy/front.svg",
  48545. extra: 1878/1812,
  48546. bottom: 43/1921
  48547. }
  48548. },
  48549. feet: {
  48550. height: math.unit(1.06, "feet"),
  48551. name: "Feet",
  48552. image: {
  48553. source: "./media/characters/poppy/feet.svg",
  48554. extra: 1083/1083,
  48555. bottom: 87/1170
  48556. }
  48557. },
  48558. },
  48559. [
  48560. {
  48561. name: "Human",
  48562. height: math.unit(6.5, "feet")
  48563. },
  48564. {
  48565. name: "Default",
  48566. height: math.unit(300, "feet"),
  48567. default: true
  48568. },
  48569. {
  48570. name: "Huge",
  48571. height: math.unit(850, "feet")
  48572. },
  48573. {
  48574. name: "Mega",
  48575. height: math.unit(8000, "feet")
  48576. },
  48577. {
  48578. name: "Giga",
  48579. height: math.unit(300, "miles")
  48580. },
  48581. ]
  48582. ))
  48583. characterMakers.push(() => makeCharacter(
  48584. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48585. {
  48586. bipedal: {
  48587. height: math.unit(7, "feet"),
  48588. name: "Bipedal",
  48589. image: {
  48590. source: "./media/characters/zener/bipedal.svg",
  48591. extra: 874/805,
  48592. bottom: 109/983
  48593. }
  48594. },
  48595. quadrupedal: {
  48596. height: math.unit(4.64, "feet"),
  48597. name: "Quadrupedal",
  48598. image: {
  48599. source: "./media/characters/zener/quadrupedal.svg",
  48600. extra: 638/507,
  48601. bottom: 190/828
  48602. }
  48603. },
  48604. cock: {
  48605. height: math.unit(18, "inches"),
  48606. name: "Cock",
  48607. image: {
  48608. source: "./media/characters/zener/cock.svg"
  48609. }
  48610. },
  48611. },
  48612. [
  48613. {
  48614. name: "Normal",
  48615. height: math.unit(7, "feet"),
  48616. default: true
  48617. },
  48618. ]
  48619. ))
  48620. characterMakers.push(() => makeCharacter(
  48621. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48622. {
  48623. nude: {
  48624. height: math.unit(5 + 6/12, "feet"),
  48625. name: "Nude",
  48626. image: {
  48627. source: "./media/characters/charlie-dog/nude.svg",
  48628. extra: 768/734,
  48629. bottom: 26/794
  48630. }
  48631. },
  48632. dressed: {
  48633. height: math.unit(5 + 6/12, "feet"),
  48634. name: "Dressed",
  48635. image: {
  48636. source: "./media/characters/charlie-dog/dressed.svg",
  48637. extra: 768/734,
  48638. bottom: 26/794
  48639. }
  48640. },
  48641. },
  48642. [
  48643. {
  48644. name: "Normal",
  48645. height: math.unit(5 + 6/12, "feet"),
  48646. default: true
  48647. },
  48648. ]
  48649. ))
  48650. characterMakers.push(() => makeCharacter(
  48651. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48652. {
  48653. front: {
  48654. height: math.unit(6 + 4/12, "feet"),
  48655. name: "Front",
  48656. image: {
  48657. source: "./media/characters/ir'istrasz/front.svg",
  48658. extra: 1014/977,
  48659. bottom: 65/1079
  48660. }
  48661. },
  48662. back: {
  48663. height: math.unit(6 + 4/12, "feet"),
  48664. name: "Back",
  48665. image: {
  48666. source: "./media/characters/ir'istrasz/back.svg",
  48667. extra: 1024/992,
  48668. bottom: 34/1058
  48669. }
  48670. },
  48671. },
  48672. [
  48673. {
  48674. name: "Normal",
  48675. height: math.unit(6 + 4/12, "feet"),
  48676. default: true
  48677. },
  48678. ]
  48679. ))
  48680. characterMakers.push(() => makeCharacter(
  48681. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48682. {
  48683. front: {
  48684. height: math.unit(5 + 8/12, "feet"),
  48685. name: "Front",
  48686. image: {
  48687. source: "./media/characters/dee-ditto/front.svg",
  48688. extra: 1874/1785,
  48689. bottom: 68/1942
  48690. }
  48691. },
  48692. back: {
  48693. height: math.unit(5 + 8/12, "feet"),
  48694. name: "Back",
  48695. image: {
  48696. source: "./media/characters/dee-ditto/back.svg",
  48697. extra: 1870/1783,
  48698. bottom: 77/1947
  48699. }
  48700. },
  48701. },
  48702. [
  48703. {
  48704. name: "Normal",
  48705. height: math.unit(5 + 8/12, "feet"),
  48706. default: true
  48707. },
  48708. ]
  48709. ))
  48710. characterMakers.push(() => makeCharacter(
  48711. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48712. {
  48713. front: {
  48714. height: math.unit(7 + 6/12, "feet"),
  48715. name: "Front",
  48716. image: {
  48717. source: "./media/characters/fey/front.svg",
  48718. extra: 995/979,
  48719. bottom: 30/1025
  48720. }
  48721. },
  48722. back: {
  48723. height: math.unit(7 + 6/12, "feet"),
  48724. name: "Back",
  48725. image: {
  48726. source: "./media/characters/fey/back.svg",
  48727. extra: 1079/1008,
  48728. bottom: 5/1084
  48729. }
  48730. },
  48731. dressed: {
  48732. height: math.unit(7 + 6/12, "feet"),
  48733. name: "Dressed",
  48734. image: {
  48735. source: "./media/characters/fey/dressed.svg",
  48736. extra: 995/979,
  48737. bottom: 30/1025
  48738. }
  48739. },
  48740. },
  48741. [
  48742. {
  48743. name: "Normal",
  48744. height: math.unit(7 + 6/12, "feet"),
  48745. default: true
  48746. },
  48747. ]
  48748. ))
  48749. characterMakers.push(() => makeCharacter(
  48750. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48751. {
  48752. standing: {
  48753. height: math.unit(17, "feet"),
  48754. name: "Standing",
  48755. image: {
  48756. source: "./media/characters/aster/standing.svg",
  48757. extra: 1798/1598,
  48758. bottom: 117/1915
  48759. }
  48760. },
  48761. },
  48762. [
  48763. {
  48764. name: "Normal",
  48765. height: math.unit(17, "feet"),
  48766. default: true
  48767. },
  48768. {
  48769. name: "Homewrecker",
  48770. height: math.unit(95, "feet")
  48771. },
  48772. {
  48773. name: "Planet Devourer",
  48774. height: math.unit(1008000, "miles")
  48775. },
  48776. ]
  48777. ))
  48778. characterMakers.push(() => makeCharacter(
  48779. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48780. {
  48781. front: {
  48782. height: math.unit(6 + 5/12, "feet"),
  48783. weight: math.unit(265, "lb"),
  48784. name: "Front",
  48785. image: {
  48786. source: "./media/characters/devon-childs/front.svg",
  48787. extra: 1795/1721,
  48788. bottom: 41/1836
  48789. }
  48790. },
  48791. side: {
  48792. height: math.unit(6 + 5/12, "feet"),
  48793. weight: math.unit(265, "lb"),
  48794. name: "Side",
  48795. image: {
  48796. source: "./media/characters/devon-childs/side.svg",
  48797. extra: 1812/1738,
  48798. bottom: 30/1842
  48799. }
  48800. },
  48801. back: {
  48802. height: math.unit(6 + 5/12, "feet"),
  48803. weight: math.unit(265, "lb"),
  48804. name: "Back",
  48805. image: {
  48806. source: "./media/characters/devon-childs/back.svg",
  48807. extra: 1808/1735,
  48808. bottom: 23/1831
  48809. }
  48810. },
  48811. hand: {
  48812. height: math.unit(1.464, "feet"),
  48813. name: "Hand",
  48814. image: {
  48815. source: "./media/characters/devon-childs/hand.svg"
  48816. }
  48817. },
  48818. foot: {
  48819. height: math.unit(1.6, "feet"),
  48820. name: "Foot",
  48821. image: {
  48822. source: "./media/characters/devon-childs/foot.svg"
  48823. }
  48824. },
  48825. },
  48826. [
  48827. {
  48828. name: "Micro",
  48829. height: math.unit(7, "cm")
  48830. },
  48831. {
  48832. name: "Normal",
  48833. height: math.unit(6 + 5/12, "feet"),
  48834. default: true
  48835. },
  48836. {
  48837. name: "Macro",
  48838. height: math.unit(154, "feet")
  48839. },
  48840. ]
  48841. ))
  48842. characterMakers.push(() => makeCharacter(
  48843. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48844. {
  48845. front: {
  48846. height: math.unit(6, "feet"),
  48847. weight: math.unit(180, "lb"),
  48848. name: "Front",
  48849. image: {
  48850. source: "./media/characters/lydemox-vir/front.svg",
  48851. extra: 1632/1435,
  48852. bottom: 58/1690
  48853. }
  48854. },
  48855. frontSFW: {
  48856. height: math.unit(6, "feet"),
  48857. weight: math.unit(180, "lb"),
  48858. name: "Front (SFW)",
  48859. image: {
  48860. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48861. extra: 1632/1435,
  48862. bottom: 58/1690
  48863. }
  48864. },
  48865. back: {
  48866. height: math.unit(6, "feet"),
  48867. weight: math.unit(180, "lb"),
  48868. name: "Back",
  48869. image: {
  48870. source: "./media/characters/lydemox-vir/back.svg",
  48871. extra: 1593/1408,
  48872. bottom: 31/1624
  48873. }
  48874. },
  48875. paw: {
  48876. height: math.unit(1.85, "feet"),
  48877. name: "Paw",
  48878. image: {
  48879. source: "./media/characters/lydemox-vir/paw.svg"
  48880. }
  48881. },
  48882. dick: {
  48883. height: math.unit(1.8, "feet"),
  48884. name: "Dick",
  48885. image: {
  48886. source: "./media/characters/lydemox-vir/dick.svg"
  48887. }
  48888. },
  48889. },
  48890. [
  48891. {
  48892. name: "Macro",
  48893. height: math.unit(100, "feet"),
  48894. default: true
  48895. },
  48896. {
  48897. name: "Teramacro",
  48898. height: math.unit(1, "earth")
  48899. },
  48900. {
  48901. name: "Planetary",
  48902. height: math.unit(20, "earths")
  48903. },
  48904. ]
  48905. ))
  48906. characterMakers.push(() => makeCharacter(
  48907. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48908. {
  48909. front: {
  48910. height: math.unit(15 + 8/12, "feet"),
  48911. weight: math.unit(1237, "kg"),
  48912. name: "Front",
  48913. image: {
  48914. source: "./media/characters/mia/front.svg",
  48915. extra: 1573/1446,
  48916. bottom: 58/1631
  48917. }
  48918. },
  48919. },
  48920. [
  48921. {
  48922. name: "Small",
  48923. height: math.unit(9 + 5/12, "feet")
  48924. },
  48925. {
  48926. name: "Normal",
  48927. height: math.unit(15 + 8/12, "feet"),
  48928. default: true
  48929. },
  48930. ]
  48931. ))
  48932. characterMakers.push(() => makeCharacter(
  48933. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48934. {
  48935. front: {
  48936. height: math.unit(10 + 6/12, "feet"),
  48937. weight: math.unit(1.3, "tons"),
  48938. name: "Front",
  48939. image: {
  48940. source: "./media/characters/mr-graves/front.svg",
  48941. extra: 1779/1695,
  48942. bottom: 198/1977
  48943. }
  48944. },
  48945. },
  48946. [
  48947. {
  48948. name: "Normal",
  48949. height: math.unit(10 + 6 /12, "feet"),
  48950. default: true
  48951. },
  48952. ]
  48953. ))
  48954. characterMakers.push(() => makeCharacter(
  48955. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48956. {
  48957. dressedFront: {
  48958. height: math.unit(5 + 8/12, "feet"),
  48959. weight: math.unit(125, "lb"),
  48960. name: "Dressed (Front)",
  48961. image: {
  48962. source: "./media/characters/jess/dressed-front.svg",
  48963. extra: 1176/1152,
  48964. bottom: 42/1218
  48965. }
  48966. },
  48967. dressedSide: {
  48968. height: math.unit(5 + 8/12, "feet"),
  48969. weight: math.unit(125, "lb"),
  48970. name: "Dressed (Side)",
  48971. image: {
  48972. source: "./media/characters/jess/dressed-side.svg",
  48973. extra: 1204/1190,
  48974. bottom: 6/1210
  48975. }
  48976. },
  48977. nudeFront: {
  48978. height: math.unit(5 + 8/12, "feet"),
  48979. weight: math.unit(125, "lb"),
  48980. name: "Nude (Front)",
  48981. image: {
  48982. source: "./media/characters/jess/nude-front.svg",
  48983. extra: 1176/1152,
  48984. bottom: 42/1218
  48985. }
  48986. },
  48987. nudeSide: {
  48988. height: math.unit(5 + 8/12, "feet"),
  48989. weight: math.unit(125, "lb"),
  48990. name: "Nude (Side)",
  48991. image: {
  48992. source: "./media/characters/jess/nude-side.svg",
  48993. extra: 1204/1190,
  48994. bottom: 6/1210
  48995. }
  48996. },
  48997. organsFront: {
  48998. height: math.unit(2.83799342105, "feet"),
  48999. name: "Organs (Front)",
  49000. image: {
  49001. source: "./media/characters/jess/organs-front.svg"
  49002. }
  49003. },
  49004. organsSide: {
  49005. height: math.unit(2.64225290474, "feet"),
  49006. name: "Organs (Side)",
  49007. image: {
  49008. source: "./media/characters/jess/organs-side.svg"
  49009. }
  49010. },
  49011. digestiveTractFront: {
  49012. height: math.unit(2.8106580871, "feet"),
  49013. name: "Digestive Tract (Front)",
  49014. image: {
  49015. source: "./media/characters/jess/digestive-tract-front.svg"
  49016. }
  49017. },
  49018. digestiveTractSide: {
  49019. height: math.unit(2.54365045014, "feet"),
  49020. name: "Digestive Tract (Side)",
  49021. image: {
  49022. source: "./media/characters/jess/digestive-tract-side.svg"
  49023. }
  49024. },
  49025. respiratorySystemFront: {
  49026. height: math.unit(1.11196233456, "feet"),
  49027. name: "Respiratory System (Front)",
  49028. image: {
  49029. source: "./media/characters/jess/respiratory-system-front.svg"
  49030. }
  49031. },
  49032. respiratorySystemSide: {
  49033. height: math.unit(0.89327966297, "feet"),
  49034. name: "Respiratory System (Side)",
  49035. image: {
  49036. source: "./media/characters/jess/respiratory-system-side.svg"
  49037. }
  49038. },
  49039. urinaryTractFront: {
  49040. height: math.unit(1.16126356186, "feet"),
  49041. name: "Urinary Tract (Front)",
  49042. image: {
  49043. source: "./media/characters/jess/urinary-tract-front.svg"
  49044. }
  49045. },
  49046. urinaryTractSide: {
  49047. height: math.unit(1.20910039627, "feet"),
  49048. name: "Urinary Tract (Side)",
  49049. image: {
  49050. source: "./media/characters/jess/urinary-tract-side.svg"
  49051. }
  49052. },
  49053. reproductiveOrgansFront: {
  49054. height: math.unit(0.48422591566, "feet"),
  49055. name: "Reproductive Organs (Front)",
  49056. image: {
  49057. source: "./media/characters/jess/reproductive-organs-front.svg"
  49058. }
  49059. },
  49060. reproductiveOrgansSide: {
  49061. height: math.unit(0.61553314481, "feet"),
  49062. name: "Reproductive Organs (Side)",
  49063. image: {
  49064. source: "./media/characters/jess/reproductive-organs-side.svg"
  49065. }
  49066. },
  49067. breastsFront: {
  49068. height: math.unit(0.47690395121, "feet"),
  49069. name: "Breasts (Front)",
  49070. image: {
  49071. source: "./media/characters/jess/breasts-front.svg"
  49072. }
  49073. },
  49074. breastsSide: {
  49075. height: math.unit(0.30556998307, "feet"),
  49076. name: "Breasts (Side)",
  49077. image: {
  49078. source: "./media/characters/jess/breasts-side.svg"
  49079. }
  49080. },
  49081. heartFront: {
  49082. height: math.unit(0.53011022622, "feet"),
  49083. name: "Heart (Front)",
  49084. image: {
  49085. source: "./media/characters/jess/heart-front.svg"
  49086. }
  49087. },
  49088. heartSide: {
  49089. height: math.unit(0.51790695213, "feet"),
  49090. name: "Heart (Side)",
  49091. image: {
  49092. source: "./media/characters/jess/heart-side.svg"
  49093. }
  49094. },
  49095. earsAndNoseFront: {
  49096. height: math.unit(0.29385483995, "feet"),
  49097. name: "Ears and Nose (Front)",
  49098. image: {
  49099. source: "./media/characters/jess/ears-and-nose-front.svg"
  49100. }
  49101. },
  49102. earsAndNoseSide: {
  49103. height: math.unit(0.18109658741, "feet"),
  49104. name: "Ears and Nose (Side)",
  49105. image: {
  49106. source: "./media/characters/jess/ears-and-nose-side.svg"
  49107. }
  49108. },
  49109. },
  49110. [
  49111. {
  49112. name: "Normal",
  49113. height: math.unit(5 + 8/12, "feet"),
  49114. default: true
  49115. },
  49116. ]
  49117. ))
  49118. characterMakers.push(() => makeCharacter(
  49119. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49120. {
  49121. front: {
  49122. height: math.unit(6, "feet"),
  49123. weight: math.unit(6.64467e-7, "grams"),
  49124. name: "Front",
  49125. image: {
  49126. source: "./media/characters/wimpering/front.svg",
  49127. extra: 597/587,
  49128. bottom: 34/631
  49129. }
  49130. },
  49131. },
  49132. [
  49133. {
  49134. name: "Micro",
  49135. height: math.unit(0.4, "mm"),
  49136. default: true
  49137. },
  49138. ]
  49139. ))
  49140. characterMakers.push(() => makeCharacter(
  49141. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49142. {
  49143. front: {
  49144. height: math.unit(5 + 2/12, "feet"),
  49145. weight: math.unit(110, "lb"),
  49146. name: "Front",
  49147. image: {
  49148. source: "./media/characters/keltre/front.svg",
  49149. extra: 1099/1057,
  49150. bottom: 22/1121
  49151. }
  49152. },
  49153. back: {
  49154. height: math.unit(5 + 2/12, "feet"),
  49155. weight: math.unit(110, "lb"),
  49156. name: "Back",
  49157. image: {
  49158. source: "./media/characters/keltre/back.svg",
  49159. extra: 1095/1053,
  49160. bottom: 17/1112
  49161. }
  49162. },
  49163. dressed: {
  49164. height: math.unit(5 + 2/12, "feet"),
  49165. weight: math.unit(110, "lb"),
  49166. name: "Dressed",
  49167. image: {
  49168. source: "./media/characters/keltre/dressed.svg",
  49169. extra: 1099/1057,
  49170. bottom: 22/1121
  49171. }
  49172. },
  49173. winter: {
  49174. height: math.unit(5 + 2/12, "feet"),
  49175. weight: math.unit(110, "lb"),
  49176. name: "Winter",
  49177. image: {
  49178. source: "./media/characters/keltre/winter.svg",
  49179. extra: 1099/1057,
  49180. bottom: 22/1121
  49181. }
  49182. },
  49183. head: {
  49184. height: math.unit(1.61 * 0.86, "feet"),
  49185. name: "Head",
  49186. image: {
  49187. source: "./media/characters/keltre/head.svg",
  49188. extra: 534/421,
  49189. bottom: 0/534
  49190. }
  49191. },
  49192. hand: {
  49193. height: math.unit(1.3 * 0.86, "feet"),
  49194. name: "Hand",
  49195. image: {
  49196. source: "./media/characters/keltre/hand.svg"
  49197. }
  49198. },
  49199. foot: {
  49200. height: math.unit(1.8 * 0.86, "feet"),
  49201. name: "Foot",
  49202. image: {
  49203. source: "./media/characters/keltre/foot.svg"
  49204. }
  49205. },
  49206. },
  49207. [
  49208. {
  49209. name: "Fine",
  49210. height: math.unit(1, "inch")
  49211. },
  49212. {
  49213. name: "Dimnutive",
  49214. height: math.unit(4, "inches")
  49215. },
  49216. {
  49217. name: "Tiny",
  49218. height: math.unit(1, "foot")
  49219. },
  49220. {
  49221. name: "Small",
  49222. height: math.unit(3, "feet")
  49223. },
  49224. {
  49225. name: "Normal",
  49226. height: math.unit(5 + 2/12, "feet"),
  49227. default: true
  49228. },
  49229. ]
  49230. ))
  49231. characterMakers.push(() => makeCharacter(
  49232. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49233. {
  49234. front: {
  49235. height: math.unit(6 + 2/12, "feet"),
  49236. name: "Front",
  49237. image: {
  49238. source: "./media/characters/nox/front.svg",
  49239. extra: 1917/1830,
  49240. bottom: 74/1991
  49241. }
  49242. },
  49243. back: {
  49244. height: math.unit(6 + 2/12, "feet"),
  49245. name: "Back",
  49246. image: {
  49247. source: "./media/characters/nox/back.svg",
  49248. extra: 1896/1815,
  49249. bottom: 21/1917
  49250. }
  49251. },
  49252. head: {
  49253. height: math.unit(1.1, "feet"),
  49254. name: "Head",
  49255. image: {
  49256. source: "./media/characters/nox/head.svg",
  49257. extra: 874/704,
  49258. bottom: 0/874
  49259. }
  49260. },
  49261. tattoo: {
  49262. height: math.unit(0.729, "feet"),
  49263. name: "Tattoo",
  49264. image: {
  49265. source: "./media/characters/nox/tattoo.svg"
  49266. }
  49267. },
  49268. },
  49269. [
  49270. {
  49271. name: "Normal",
  49272. height: math.unit(6 + 2/12, "feet")
  49273. },
  49274. {
  49275. name: "Gigamacro",
  49276. height: math.unit(2, "earths"),
  49277. default: true
  49278. },
  49279. {
  49280. name: "Cosmic",
  49281. height: math.unit(867, "yottameters")
  49282. },
  49283. ]
  49284. ))
  49285. characterMakers.push(() => makeCharacter(
  49286. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49287. {
  49288. front: {
  49289. height: math.unit(6, "feet"),
  49290. weight: math.unit(150, "lb"),
  49291. name: "Front",
  49292. image: {
  49293. source: "./media/characters/caspian/front.svg",
  49294. extra: 1443/1359,
  49295. bottom: 0/1443
  49296. }
  49297. },
  49298. back: {
  49299. height: math.unit(6, "feet"),
  49300. weight: math.unit(150, "lb"),
  49301. name: "Back",
  49302. image: {
  49303. source: "./media/characters/caspian/back.svg",
  49304. extra: 1379/1309,
  49305. bottom: 0/1379
  49306. }
  49307. },
  49308. head: {
  49309. height: math.unit(0.9, "feet"),
  49310. name: "Head",
  49311. image: {
  49312. source: "./media/characters/caspian/head.svg",
  49313. extra: 692/492,
  49314. bottom: 0/692
  49315. }
  49316. },
  49317. headAlt: {
  49318. height: math.unit(0.95, "feet"),
  49319. name: "Head (Alt)",
  49320. image: {
  49321. source: "./media/characters/caspian/head-alt.svg",
  49322. extra: 668/508,
  49323. bottom: 0/668
  49324. }
  49325. },
  49326. hand: {
  49327. height: math.unit(0.8, "feet"),
  49328. name: "Hand",
  49329. image: {
  49330. source: "./media/characters/caspian/hand.svg"
  49331. }
  49332. },
  49333. paw: {
  49334. height: math.unit(0.95, "feet"),
  49335. name: "Paw",
  49336. image: {
  49337. source: "./media/characters/caspian/paw.svg"
  49338. }
  49339. },
  49340. },
  49341. [
  49342. {
  49343. name: "Normal",
  49344. height: math.unit(162, "feet"),
  49345. default: true
  49346. },
  49347. ]
  49348. ))
  49349. characterMakers.push(() => makeCharacter(
  49350. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49351. {
  49352. front: {
  49353. height: math.unit(6, "feet"),
  49354. name: "Front",
  49355. image: {
  49356. source: "./media/characters/myra-aisling/front.svg",
  49357. extra: 1268/1166,
  49358. bottom: 73/1341
  49359. }
  49360. },
  49361. back: {
  49362. height: math.unit(6, "feet"),
  49363. name: "Back",
  49364. image: {
  49365. source: "./media/characters/myra-aisling/back.svg",
  49366. extra: 1249/1149,
  49367. bottom: 79/1328
  49368. }
  49369. },
  49370. dressed: {
  49371. height: math.unit(6, "feet"),
  49372. name: "Dressed",
  49373. image: {
  49374. source: "./media/characters/myra-aisling/dressed.svg",
  49375. extra: 1290/1189,
  49376. bottom: 47/1337
  49377. }
  49378. },
  49379. hand: {
  49380. height: math.unit(1.1, "feet"),
  49381. name: "Hand",
  49382. image: {
  49383. source: "./media/characters/myra-aisling/hand.svg"
  49384. }
  49385. },
  49386. paw: {
  49387. height: math.unit(1.23, "feet"),
  49388. name: "Paw",
  49389. image: {
  49390. source: "./media/characters/myra-aisling/paw.svg"
  49391. }
  49392. },
  49393. },
  49394. [
  49395. {
  49396. name: "Normal",
  49397. height: math.unit(160, "feet"),
  49398. default: true
  49399. },
  49400. ]
  49401. ))
  49402. characterMakers.push(() => makeCharacter(
  49403. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49404. {
  49405. front: {
  49406. height: math.unit(6, "feet"),
  49407. name: "Front",
  49408. image: {
  49409. source: "./media/characters/tenley-sidero/front.svg",
  49410. extra: 1365/1276,
  49411. bottom: 47/1412
  49412. }
  49413. },
  49414. back: {
  49415. height: math.unit(6, "feet"),
  49416. name: "Back",
  49417. image: {
  49418. source: "./media/characters/tenley-sidero/back.svg",
  49419. extra: 1383/1283,
  49420. bottom: 35/1418
  49421. }
  49422. },
  49423. dressed: {
  49424. height: math.unit(6, "feet"),
  49425. name: "Dressed",
  49426. image: {
  49427. source: "./media/characters/tenley-sidero/dressed.svg",
  49428. extra: 1364/1275,
  49429. bottom: 42/1406
  49430. }
  49431. },
  49432. head: {
  49433. height: math.unit(1.47, "feet"),
  49434. name: "Head",
  49435. image: {
  49436. source: "./media/characters/tenley-sidero/head.svg",
  49437. extra: 610/490,
  49438. bottom: 0/610
  49439. }
  49440. },
  49441. },
  49442. [
  49443. {
  49444. name: "Normal",
  49445. height: math.unit(154, "feet"),
  49446. default: true
  49447. },
  49448. ]
  49449. ))
  49450. characterMakers.push(() => makeCharacter(
  49451. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49452. {
  49453. front: {
  49454. height: math.unit(5, "inches"),
  49455. name: "Front",
  49456. image: {
  49457. source: "./media/characters/mallory/front.svg",
  49458. extra: 1919/1678,
  49459. bottom: 29/1948
  49460. }
  49461. },
  49462. hand: {
  49463. height: math.unit(0.73, "inches"),
  49464. name: "Hand",
  49465. image: {
  49466. source: "./media/characters/mallory/hand.svg"
  49467. }
  49468. },
  49469. paw: {
  49470. height: math.unit(0.68, "inches"),
  49471. name: "Paw",
  49472. image: {
  49473. source: "./media/characters/mallory/paw.svg"
  49474. }
  49475. },
  49476. },
  49477. [
  49478. {
  49479. name: "Small",
  49480. height: math.unit(5, "inches"),
  49481. default: true
  49482. },
  49483. ]
  49484. ))
  49485. characterMakers.push(() => makeCharacter(
  49486. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49487. {
  49488. naked: {
  49489. height: math.unit(6, "feet"),
  49490. name: "Naked",
  49491. image: {
  49492. source: "./media/characters/mab/naked.svg",
  49493. extra: 1855/1757,
  49494. bottom: 208/2063
  49495. }
  49496. },
  49497. outside: {
  49498. height: math.unit(6, "feet"),
  49499. name: "Outside",
  49500. image: {
  49501. source: "./media/characters/mab/outside.svg",
  49502. extra: 1855/1757,
  49503. bottom: 208/2063
  49504. }
  49505. },
  49506. party: {
  49507. height: math.unit(6, "feet"),
  49508. name: "Party",
  49509. image: {
  49510. source: "./media/characters/mab/party.svg",
  49511. extra: 1855/1757,
  49512. bottom: 208/2063
  49513. }
  49514. },
  49515. },
  49516. [
  49517. {
  49518. name: "Normal",
  49519. height: math.unit(165, "feet"),
  49520. default: true
  49521. },
  49522. ]
  49523. ))
  49524. characterMakers.push(() => makeCharacter(
  49525. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49526. {
  49527. front: {
  49528. height: math.unit(12, "feet"),
  49529. weight: math.unit(20000, "lb"),
  49530. name: "Front",
  49531. image: {
  49532. source: "./media/characters/winter/front.svg",
  49533. extra: 1286/943,
  49534. bottom: 112/1398
  49535. }
  49536. },
  49537. frontNsfw: {
  49538. height: math.unit(12, "feet"),
  49539. weight: math.unit(20000, "lb"),
  49540. name: "Front (NSFW)",
  49541. image: {
  49542. source: "./media/characters/winter/front-nsfw.svg",
  49543. extra: 1286/943,
  49544. bottom: 112/1398
  49545. }
  49546. },
  49547. dick: {
  49548. height: math.unit(3.79, "feet"),
  49549. name: "Dick",
  49550. image: {
  49551. source: "./media/characters/winter/dick.svg"
  49552. }
  49553. },
  49554. },
  49555. [
  49556. {
  49557. name: "Big",
  49558. height: math.unit(12, "feet"),
  49559. default: true
  49560. },
  49561. ]
  49562. ))
  49563. characterMakers.push(() => makeCharacter(
  49564. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49565. {
  49566. front: {
  49567. height: math.unit(4.1, "inches"),
  49568. name: "Front",
  49569. image: {
  49570. source: "./media/characters/alto/front.svg",
  49571. extra: 736/627,
  49572. bottom: 90/826
  49573. }
  49574. },
  49575. },
  49576. [
  49577. {
  49578. name: "Normal",
  49579. height: math.unit(4.1, "inches"),
  49580. default: true
  49581. },
  49582. ]
  49583. ))
  49584. characterMakers.push(() => makeCharacter(
  49585. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49586. {
  49587. sitting: {
  49588. height: math.unit(3, "feet"),
  49589. name: "Sitting",
  49590. image: {
  49591. source: "./media/characters/ratstrid-v/sitting.svg",
  49592. extra: 355/310,
  49593. bottom: 136/491
  49594. }
  49595. },
  49596. },
  49597. [
  49598. {
  49599. name: "Normal",
  49600. height: math.unit(3, "feet"),
  49601. default: true
  49602. },
  49603. ]
  49604. ))
  49605. characterMakers.push(() => makeCharacter(
  49606. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49607. {
  49608. back: {
  49609. height: math.unit(6, "feet"),
  49610. weight: math.unit(350, "lb"),
  49611. name: "Back",
  49612. image: {
  49613. source: "./media/characters/siz/back.svg",
  49614. extra: 1449/1274,
  49615. bottom: 13/1462
  49616. }
  49617. },
  49618. },
  49619. [
  49620. {
  49621. name: "Over-Overcompressed",
  49622. height: math.unit(8, "feet")
  49623. },
  49624. {
  49625. name: "Overcompressed",
  49626. height: math.unit(32, "feet")
  49627. },
  49628. {
  49629. name: "Compressed",
  49630. height: math.unit(128, "feet"),
  49631. default: true
  49632. },
  49633. {
  49634. name: "Half-Compressed",
  49635. height: math.unit(512, "feet")
  49636. },
  49637. {
  49638. name: "Quarter-Compressed",
  49639. height: math.unit(2048, "feet")
  49640. },
  49641. {
  49642. name: "Uncompressed?",
  49643. height: math.unit(8192, "feet")
  49644. },
  49645. ]
  49646. ))
  49647. characterMakers.push(() => makeCharacter(
  49648. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49649. {
  49650. front: {
  49651. height: math.unit(5 + 9/12, "feet"),
  49652. weight: math.unit(150, "lb"),
  49653. name: "Front",
  49654. image: {
  49655. source: "./media/characters/ven/front.svg",
  49656. extra: 1372/1320,
  49657. bottom: 73/1445
  49658. }
  49659. },
  49660. side: {
  49661. height: math.unit(5 + 9/12, "feet"),
  49662. weight: math.unit(1150, "lb"),
  49663. name: "Side",
  49664. image: {
  49665. source: "./media/characters/ven/side.svg",
  49666. extra: 1119/1070,
  49667. bottom: 42/1161
  49668. },
  49669. default: true
  49670. },
  49671. },
  49672. [
  49673. {
  49674. name: "Normal",
  49675. height: math.unit(5 + 9/12, "feet"),
  49676. default: true
  49677. },
  49678. ]
  49679. ))
  49680. characterMakers.push(() => makeCharacter(
  49681. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49682. {
  49683. front: {
  49684. height: math.unit(12, "feet"),
  49685. weight: math.unit(1000, "kg"),
  49686. name: "Front",
  49687. image: {
  49688. source: "./media/characters/maple/front.svg",
  49689. extra: 1193/1081,
  49690. bottom: 22/1215
  49691. }
  49692. },
  49693. },
  49694. [
  49695. {
  49696. name: "Compressed",
  49697. height: math.unit(7, "feet")
  49698. },
  49699. {
  49700. name: "Normal",
  49701. height: math.unit(12, "feet"),
  49702. default: true
  49703. },
  49704. ]
  49705. ))
  49706. characterMakers.push(() => makeCharacter(
  49707. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49708. {
  49709. front: {
  49710. height: math.unit(9, "feet"),
  49711. weight: math.unit(1500, "lb"),
  49712. name: "Front",
  49713. image: {
  49714. source: "./media/characters/nora/front.svg",
  49715. extra: 1348/1286,
  49716. bottom: 218/1566
  49717. }
  49718. },
  49719. erect: {
  49720. height: math.unit(9, "feet"),
  49721. weight: math.unit(11500, "lb"),
  49722. name: "Erect",
  49723. image: {
  49724. source: "./media/characters/nora/erect.svg",
  49725. extra: 1488/1433,
  49726. bottom: 133/1621
  49727. }
  49728. },
  49729. },
  49730. [
  49731. {
  49732. name: "Normal",
  49733. height: math.unit(9, "feet"),
  49734. default: true
  49735. },
  49736. ]
  49737. ))
  49738. characterMakers.push(() => makeCharacter(
  49739. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49740. {
  49741. front: {
  49742. height: math.unit(25, "feet"),
  49743. weight: math.unit(27500, "lb"),
  49744. name: "Front",
  49745. image: {
  49746. source: "./media/characters/north-caudin/front.svg",
  49747. extra: 1184/1082,
  49748. bottom: 23/1207
  49749. }
  49750. },
  49751. },
  49752. [
  49753. {
  49754. name: "Compressed",
  49755. height: math.unit(10, "feet")
  49756. },
  49757. {
  49758. name: "Normal",
  49759. height: math.unit(25, "feet"),
  49760. default: true
  49761. },
  49762. ]
  49763. ))
  49764. characterMakers.push(() => makeCharacter(
  49765. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49766. {
  49767. front: {
  49768. height: math.unit(9, "feet"),
  49769. weight: math.unit(1250, "lb"),
  49770. name: "Front",
  49771. image: {
  49772. source: "./media/characters/merrian/front.svg",
  49773. extra: 2393/2304,
  49774. bottom: 40/2433
  49775. }
  49776. },
  49777. },
  49778. [
  49779. {
  49780. name: "Normal",
  49781. height: math.unit(9, "feet"),
  49782. default: true
  49783. },
  49784. ]
  49785. ))
  49786. characterMakers.push(() => makeCharacter(
  49787. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49788. {
  49789. front: {
  49790. height: math.unit(9, "feet"),
  49791. weight: math.unit(1000, "lb"),
  49792. name: "Front",
  49793. image: {
  49794. source: "./media/characters/hazel/front.svg",
  49795. extra: 2351/2298,
  49796. bottom: 38/2389
  49797. }
  49798. },
  49799. },
  49800. [
  49801. {
  49802. name: "Normal",
  49803. height: math.unit(9, "feet"),
  49804. default: true
  49805. },
  49806. ]
  49807. ))
  49808. characterMakers.push(() => makeCharacter(
  49809. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49810. {
  49811. front: {
  49812. height: math.unit(13, "feet"),
  49813. weight: math.unit(3200, "lb"),
  49814. name: "Front",
  49815. image: {
  49816. source: "./media/characters/emma/front.svg",
  49817. extra: 2263/2029,
  49818. bottom: 68/2331
  49819. }
  49820. },
  49821. },
  49822. [
  49823. {
  49824. name: "Normal",
  49825. height: math.unit(13, "feet"),
  49826. default: true
  49827. },
  49828. ]
  49829. ))
  49830. characterMakers.push(() => makeCharacter(
  49831. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49832. {
  49833. front: {
  49834. height: math.unit(11 + 9/12, "feet"),
  49835. weight: math.unit(2500, "lb"),
  49836. name: "Front",
  49837. image: {
  49838. source: "./media/characters/ilumina/front.svg",
  49839. extra: 2248/2209,
  49840. bottom: 164/2412
  49841. }
  49842. },
  49843. },
  49844. [
  49845. {
  49846. name: "Normal",
  49847. height: math.unit(11 + 9/12, "feet"),
  49848. default: true
  49849. },
  49850. ]
  49851. ))
  49852. characterMakers.push(() => makeCharacter(
  49853. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49854. {
  49855. front: {
  49856. height: math.unit(8 + 10/12, "feet"),
  49857. weight: math.unit(1350, "lb"),
  49858. name: "Front",
  49859. image: {
  49860. source: "./media/characters/moonshine/front.svg",
  49861. extra: 2395/2288,
  49862. bottom: 40/2435
  49863. }
  49864. },
  49865. },
  49866. [
  49867. {
  49868. name: "Normal",
  49869. height: math.unit(8 + 10/12, "feet"),
  49870. default: true
  49871. },
  49872. ]
  49873. ))
  49874. characterMakers.push(() => makeCharacter(
  49875. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49876. {
  49877. front: {
  49878. height: math.unit(14, "feet"),
  49879. weight: math.unit(3400, "lb"),
  49880. name: "Front",
  49881. image: {
  49882. source: "./media/characters/aletia/front.svg",
  49883. extra: 1185/1052,
  49884. bottom: 21/1206
  49885. }
  49886. },
  49887. },
  49888. [
  49889. {
  49890. name: "Compressed",
  49891. height: math.unit(8, "feet")
  49892. },
  49893. {
  49894. name: "Normal",
  49895. height: math.unit(14, "feet"),
  49896. default: true
  49897. },
  49898. ]
  49899. ))
  49900. characterMakers.push(() => makeCharacter(
  49901. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49902. {
  49903. front: {
  49904. height: math.unit(17, "feet"),
  49905. weight: math.unit(6500, "lb"),
  49906. name: "Front",
  49907. image: {
  49908. source: "./media/characters/deidra/front.svg",
  49909. extra: 1201/1081,
  49910. bottom: 16/1217
  49911. }
  49912. },
  49913. },
  49914. [
  49915. {
  49916. name: "Compressed",
  49917. height: math.unit(9 + 6/12, "feet")
  49918. },
  49919. {
  49920. name: "Normal",
  49921. height: math.unit(17, "feet"),
  49922. default: true
  49923. },
  49924. ]
  49925. ))
  49926. characterMakers.push(() => makeCharacter(
  49927. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49928. {
  49929. front: {
  49930. height: math.unit(7 + 4/12, "feet"),
  49931. weight: math.unit(280, "lb"),
  49932. name: "Front",
  49933. image: {
  49934. source: "./media/characters/freki-yrmori/front.svg",
  49935. extra: 1286/1182,
  49936. bottom: 29/1315
  49937. }
  49938. },
  49939. maw: {
  49940. height: math.unit(0.9, "feet"),
  49941. name: "Maw",
  49942. image: {
  49943. source: "./media/characters/freki-yrmori/maw.svg"
  49944. }
  49945. },
  49946. },
  49947. [
  49948. {
  49949. name: "Normal",
  49950. height: math.unit(7 + 4/12, "feet"),
  49951. default: true
  49952. },
  49953. {
  49954. name: "Macro",
  49955. height: math.unit(38.5, "meters")
  49956. },
  49957. ]
  49958. ))
  49959. characterMakers.push(() => makeCharacter(
  49960. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49961. {
  49962. side: {
  49963. height: math.unit(47.2, "meters"),
  49964. weight: math.unit(10000, "tons"),
  49965. name: "Side",
  49966. image: {
  49967. source: "./media/characters/aetherios/side.svg",
  49968. extra: 2363/642,
  49969. bottom: 221/2584
  49970. }
  49971. },
  49972. top: {
  49973. height: math.unit(240, "meters"),
  49974. weight: math.unit(10000, "tons"),
  49975. name: "Top",
  49976. image: {
  49977. source: "./media/characters/aetherios/top.svg"
  49978. }
  49979. },
  49980. bottom: {
  49981. height: math.unit(240, "meters"),
  49982. weight: math.unit(10000, "tons"),
  49983. name: "Bottom",
  49984. image: {
  49985. source: "./media/characters/aetherios/bottom.svg"
  49986. }
  49987. },
  49988. head: {
  49989. height: math.unit(38.6, "meters"),
  49990. name: "Head",
  49991. image: {
  49992. source: "./media/characters/aetherios/head.svg",
  49993. extra: 1335/1112,
  49994. bottom: 0/1335
  49995. }
  49996. },
  49997. front: {
  49998. height: math.unit(29, "meters"),
  49999. name: "Front",
  50000. image: {
  50001. source: "./media/characters/aetherios/front.svg",
  50002. extra: 1266/953,
  50003. bottom: 158/1424
  50004. }
  50005. },
  50006. maw: {
  50007. height: math.unit(16.37, "meters"),
  50008. name: "Maw",
  50009. image: {
  50010. source: "./media/characters/aetherios/maw.svg",
  50011. extra: 748/637,
  50012. bottom: 0/748
  50013. },
  50014. extraAttributes: {
  50015. preyCapacity: {
  50016. name: "Capacity",
  50017. power: 3,
  50018. type: "volume",
  50019. base: math.unit(1000, "people")
  50020. },
  50021. tongueSize: {
  50022. name: "Tongue Size",
  50023. power: 2,
  50024. type: "area",
  50025. base: math.unit(21, "m^2")
  50026. }
  50027. }
  50028. },
  50029. forepaw: {
  50030. height: math.unit(18, "meters"),
  50031. name: "Forepaw",
  50032. image: {
  50033. source: "./media/characters/aetherios/forepaw.svg"
  50034. }
  50035. },
  50036. hindpaw: {
  50037. height: math.unit(23, "meters"),
  50038. name: "Hindpaw",
  50039. image: {
  50040. source: "./media/characters/aetherios/hindpaw.svg"
  50041. }
  50042. },
  50043. genitals: {
  50044. height: math.unit(42, "meters"),
  50045. name: "Genitals",
  50046. image: {
  50047. source: "./media/characters/aetherios/genitals.svg"
  50048. }
  50049. },
  50050. },
  50051. [
  50052. {
  50053. name: "Normal",
  50054. height: math.unit(47.2, "meters"),
  50055. default: true
  50056. },
  50057. {
  50058. name: "Macro",
  50059. height: math.unit(160, "meters")
  50060. },
  50061. {
  50062. name: "Mega",
  50063. height: math.unit(1.87, "km")
  50064. },
  50065. {
  50066. name: "Giga",
  50067. height: math.unit(40000, "km")
  50068. },
  50069. {
  50070. name: "Stellar",
  50071. height: math.unit(158000000, "km")
  50072. },
  50073. {
  50074. name: "Cosmic",
  50075. height: math.unit(9.46e12, "km")
  50076. },
  50077. ]
  50078. ))
  50079. characterMakers.push(() => makeCharacter(
  50080. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50081. {
  50082. front: {
  50083. height: math.unit(5 + 4/12, "feet"),
  50084. weight: math.unit(80, "lb"),
  50085. name: "Front",
  50086. image: {
  50087. source: "./media/characters/mizu-gieeg/front.svg",
  50088. extra: 850/709,
  50089. bottom: 52/902
  50090. }
  50091. },
  50092. back: {
  50093. height: math.unit(5 + 4/12, "feet"),
  50094. weight: math.unit(80, "lb"),
  50095. name: "Back",
  50096. image: {
  50097. source: "./media/characters/mizu-gieeg/back.svg",
  50098. extra: 882/745,
  50099. bottom: 25/907
  50100. }
  50101. },
  50102. },
  50103. [
  50104. {
  50105. name: "Normal",
  50106. height: math.unit(5 + 4/12, "feet"),
  50107. default: true
  50108. },
  50109. ]
  50110. ))
  50111. characterMakers.push(() => makeCharacter(
  50112. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50113. {
  50114. front: {
  50115. height: math.unit(6, "feet"),
  50116. name: "Front",
  50117. image: {
  50118. source: "./media/characters/roselle-st-papier/front.svg",
  50119. extra: 1430/1280,
  50120. bottom: 37/1467
  50121. }
  50122. },
  50123. back: {
  50124. height: math.unit(6, "feet"),
  50125. name: "Back",
  50126. image: {
  50127. source: "./media/characters/roselle-st-papier/back.svg",
  50128. extra: 1491/1296,
  50129. bottom: 23/1514
  50130. }
  50131. },
  50132. ear: {
  50133. height: math.unit(1.26, "feet"),
  50134. name: "Ear",
  50135. image: {
  50136. source: "./media/characters/roselle-st-papier/ear.svg"
  50137. }
  50138. },
  50139. },
  50140. [
  50141. {
  50142. name: "Normal",
  50143. height: math.unit(150, "feet"),
  50144. default: true
  50145. },
  50146. ]
  50147. ))
  50148. characterMakers.push(() => makeCharacter(
  50149. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50150. {
  50151. front: {
  50152. height: math.unit(1, "inches"),
  50153. name: "Front",
  50154. image: {
  50155. source: "./media/characters/valargent/front.svg",
  50156. extra: 1825/1694,
  50157. bottom: 62/1887
  50158. }
  50159. },
  50160. back: {
  50161. height: math.unit(1, "inches"),
  50162. name: "Back",
  50163. image: {
  50164. source: "./media/characters/valargent/back.svg",
  50165. extra: 1775/1682,
  50166. bottom: 88/1863
  50167. }
  50168. },
  50169. },
  50170. [
  50171. {
  50172. name: "Micro",
  50173. height: math.unit(1, "inch"),
  50174. default: true
  50175. },
  50176. ]
  50177. ))
  50178. characterMakers.push(() => makeCharacter(
  50179. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50180. {
  50181. front: {
  50182. height: math.unit(3.4, "meters"),
  50183. name: "Front",
  50184. image: {
  50185. source: "./media/characters/zarina/front.svg",
  50186. extra: 1733/1425,
  50187. bottom: 93/1826
  50188. }
  50189. },
  50190. squatting: {
  50191. height: math.unit(2.14, "meters"),
  50192. name: "Squatting",
  50193. image: {
  50194. source: "./media/characters/zarina/squatting.svg",
  50195. extra: 1073/788,
  50196. bottom: 63/1136
  50197. }
  50198. },
  50199. back: {
  50200. height: math.unit(2.14, "meters"),
  50201. name: "Back",
  50202. image: {
  50203. source: "./media/characters/zarina/back.svg",
  50204. extra: 1128/885,
  50205. bottom: 0/1128
  50206. }
  50207. },
  50208. },
  50209. [
  50210. {
  50211. name: "Normal",
  50212. height: math.unit(3.4, "meters"),
  50213. default: true
  50214. },
  50215. {
  50216. name: "Big",
  50217. height: math.unit(5, "meters")
  50218. },
  50219. {
  50220. name: "Macro",
  50221. height: math.unit(110, "meters")
  50222. },
  50223. ]
  50224. ))
  50225. characterMakers.push(() => makeCharacter(
  50226. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50227. {
  50228. front: {
  50229. height: math.unit(7, "feet"),
  50230. name: "Front",
  50231. image: {
  50232. source: "./media/characters/ventus-astro-fox/front.svg",
  50233. extra: 1792/1623,
  50234. bottom: 28/1820
  50235. }
  50236. },
  50237. back: {
  50238. height: math.unit(7, "feet"),
  50239. name: "Back",
  50240. image: {
  50241. source: "./media/characters/ventus-astro-fox/back.svg",
  50242. extra: 1789/1620,
  50243. bottom: 31/1820
  50244. }
  50245. },
  50246. outfit: {
  50247. height: math.unit(7, "feet"),
  50248. name: "Outfit",
  50249. image: {
  50250. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50251. extra: 1054/925,
  50252. bottom: 15/1069
  50253. }
  50254. },
  50255. head: {
  50256. height: math.unit(1.12, "feet"),
  50257. name: "Head",
  50258. image: {
  50259. source: "./media/characters/ventus-astro-fox/head.svg",
  50260. extra: 866/504,
  50261. bottom: 0/866
  50262. }
  50263. },
  50264. hand: {
  50265. height: math.unit(1, "feet"),
  50266. name: "Hand",
  50267. image: {
  50268. source: "./media/characters/ventus-astro-fox/hand.svg"
  50269. }
  50270. },
  50271. paw: {
  50272. height: math.unit(1.5, "feet"),
  50273. name: "Paw",
  50274. image: {
  50275. source: "./media/characters/ventus-astro-fox/paw.svg"
  50276. }
  50277. },
  50278. },
  50279. [
  50280. {
  50281. name: "Normal",
  50282. height: math.unit(7, "feet"),
  50283. default: true
  50284. },
  50285. {
  50286. name: "Macro",
  50287. height: math.unit(200, "feet")
  50288. },
  50289. {
  50290. name: "Cosmic",
  50291. height: math.unit(3, "universes")
  50292. },
  50293. ]
  50294. ))
  50295. characterMakers.push(() => makeCharacter(
  50296. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50297. {
  50298. front: {
  50299. height: math.unit(3, "meters"),
  50300. weight: math.unit(7000, "lb"),
  50301. name: "Front",
  50302. image: {
  50303. source: "./media/characters/core-t/front.svg",
  50304. extra: 5729/4941,
  50305. bottom: 1129/6858
  50306. }
  50307. },
  50308. },
  50309. [
  50310. {
  50311. name: "Big",
  50312. height: math.unit(3, "meters"),
  50313. default: true
  50314. },
  50315. ]
  50316. ))
  50317. characterMakers.push(() => makeCharacter(
  50318. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50319. {
  50320. normal: {
  50321. height: math.unit(6 + 6/12, "feet"),
  50322. weight: math.unit(275, "lb"),
  50323. name: "Front",
  50324. image: {
  50325. source: "./media/characters/cadbunny/normal.svg",
  50326. extra: 1129/947,
  50327. bottom: 93/1222
  50328. },
  50329. default: true,
  50330. form: "normal"
  50331. },
  50332. gigantamax: {
  50333. height: math.unit(26, "feet"),
  50334. weight: math.unit(16000, "lb"),
  50335. name: "Front",
  50336. image: {
  50337. source: "./media/characters/cadbunny/gigantamax.svg",
  50338. extra: 1133/944,
  50339. bottom: 90/1223
  50340. },
  50341. default: true,
  50342. form: "gigantamax"
  50343. },
  50344. },
  50345. [
  50346. {
  50347. name: "Normal",
  50348. height: math.unit(6 + 6/12, "feet"),
  50349. default: true,
  50350. form: "normal"
  50351. },
  50352. {
  50353. name: "Small",
  50354. height: math.unit(26, "feet"),
  50355. default: true,
  50356. form: "gigantamax"
  50357. },
  50358. {
  50359. name: "Large",
  50360. height: math.unit(78, "feet"),
  50361. form: "gigantamax"
  50362. },
  50363. ],
  50364. {
  50365. "normal": {
  50366. name: "Normal",
  50367. default: true
  50368. },
  50369. "gigantamax": {
  50370. name: "Gigantamax"
  50371. }
  50372. }
  50373. ))
  50374. characterMakers.push(() => makeCharacter(
  50375. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50376. {
  50377. anthroFront: {
  50378. height: math.unit(8, "feet"),
  50379. weight: math.unit(300, "lb"),
  50380. name: "Front",
  50381. image: {
  50382. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50383. extra: 1272/1176,
  50384. bottom: 53/1325
  50385. },
  50386. form: "anthro",
  50387. default: true
  50388. },
  50389. feralSide: {
  50390. height: math.unit(4, "feet"),
  50391. weight: math.unit(250, "lb"),
  50392. name: "Side",
  50393. image: {
  50394. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50395. extra: 731/621,
  50396. bottom: 0/731
  50397. },
  50398. form: "feral",
  50399. default: true
  50400. },
  50401. },
  50402. [
  50403. {
  50404. name: "Regular",
  50405. height: math.unit(8, "feet"),
  50406. form: "anthro"
  50407. },
  50408. {
  50409. name: "Macro",
  50410. height: math.unit(250, "feet"),
  50411. form: "anthro",
  50412. default: true
  50413. },
  50414. {
  50415. name: "Regular",
  50416. height: math.unit(4, "feet"),
  50417. form: "feral"
  50418. },
  50419. {
  50420. name: "Macro",
  50421. height: math.unit(125, "feet"),
  50422. form: "feral",
  50423. default: true
  50424. },
  50425. ],
  50426. {
  50427. "anthro": {
  50428. name: "Anthro",
  50429. default: true
  50430. },
  50431. "feral": {
  50432. name: "Feral",
  50433. },
  50434. }
  50435. ))
  50436. characterMakers.push(() => makeCharacter(
  50437. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50438. {
  50439. front: {
  50440. height: math.unit(11 + 10/12, "feet"),
  50441. weight: math.unit(1587, "kg"),
  50442. name: "Front",
  50443. image: {
  50444. source: "./media/characters/maple-javira-dragon/front.svg",
  50445. extra: 1136/744,
  50446. bottom: 73/1209
  50447. }
  50448. },
  50449. side: {
  50450. height: math.unit(11 + 10/12, "feet"),
  50451. weight: math.unit(1587, "kg"),
  50452. name: "Side",
  50453. image: {
  50454. source: "./media/characters/maple-javira-dragon/side.svg",
  50455. extra: 712/505,
  50456. bottom: 17/729
  50457. }
  50458. },
  50459. head: {
  50460. height: math.unit(8.05, "feet"),
  50461. name: "Head",
  50462. image: {
  50463. source: "./media/characters/maple-javira-dragon/head.svg",
  50464. extra: 1420/1344,
  50465. bottom: 0/1420
  50466. }
  50467. },
  50468. },
  50469. [
  50470. {
  50471. name: "Normal",
  50472. height: math.unit(11 + 10/12, "feet"),
  50473. default: true
  50474. },
  50475. ]
  50476. ))
  50477. characterMakers.push(() => makeCharacter(
  50478. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50479. {
  50480. front: {
  50481. height: math.unit(117, "cm"),
  50482. weight: math.unit(50, "kg"),
  50483. name: "Front",
  50484. image: {
  50485. source: "./media/characters/sonia-wyverntail/front.svg",
  50486. extra: 708/592,
  50487. bottom: 25/733
  50488. }
  50489. },
  50490. },
  50491. [
  50492. {
  50493. name: "Normal",
  50494. height: math.unit(117, "cm"),
  50495. default: true
  50496. },
  50497. ]
  50498. ))
  50499. characterMakers.push(() => makeCharacter(
  50500. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50501. {
  50502. front: {
  50503. height: math.unit(6 + 5/12, "feet"),
  50504. name: "Front",
  50505. image: {
  50506. source: "./media/characters/micah/front.svg",
  50507. extra: 1758/1546,
  50508. bottom: 214/1972
  50509. }
  50510. },
  50511. },
  50512. [
  50513. {
  50514. name: "Normal",
  50515. height: math.unit(6 + 5/12, "feet"),
  50516. default: true
  50517. },
  50518. ]
  50519. ))
  50520. characterMakers.push(() => makeCharacter(
  50521. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50522. {
  50523. front: {
  50524. height: math.unit(5 + 10/12, "feet"),
  50525. weight: math.unit(220, "lb"),
  50526. name: "Front",
  50527. image: {
  50528. source: "./media/characters/zarya/front.svg",
  50529. extra: 593/572,
  50530. bottom: 50/643
  50531. }
  50532. },
  50533. back: {
  50534. height: math.unit(5 + 10/12, "feet"),
  50535. weight: math.unit(220, "lb"),
  50536. name: "Back",
  50537. image: {
  50538. source: "./media/characters/zarya/back.svg",
  50539. extra: 603/582,
  50540. bottom: 38/641
  50541. }
  50542. },
  50543. },
  50544. [
  50545. {
  50546. name: "Normal",
  50547. height: math.unit(5 + 10/12, "feet"),
  50548. default: true
  50549. },
  50550. ]
  50551. ))
  50552. characterMakers.push(() => makeCharacter(
  50553. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50554. {
  50555. front: {
  50556. height: math.unit(7.5, "feet"),
  50557. name: "Front",
  50558. image: {
  50559. source: "./media/characters/sven-hatisson/front.svg",
  50560. extra: 917/857,
  50561. bottom: 42/959
  50562. }
  50563. },
  50564. back: {
  50565. height: math.unit(7.5, "feet"),
  50566. name: "Back",
  50567. image: {
  50568. source: "./media/characters/sven-hatisson/back.svg",
  50569. extra: 903/856,
  50570. bottom: 15/918
  50571. }
  50572. },
  50573. },
  50574. [
  50575. {
  50576. name: "Base Height",
  50577. height: math.unit(7.5, "feet")
  50578. },
  50579. {
  50580. name: "Usual Height",
  50581. height: math.unit(13.5, "feet"),
  50582. default: true
  50583. },
  50584. {
  50585. name: "Smaller Macro",
  50586. height: math.unit(85, "feet")
  50587. },
  50588. {
  50589. name: "Moderate Macro",
  50590. height: math.unit(320, "feet")
  50591. },
  50592. {
  50593. name: "Large Macro",
  50594. height: math.unit(1000, "feet")
  50595. },
  50596. {
  50597. name: "Largest Size",
  50598. height: math.unit(2, "miles")
  50599. },
  50600. ]
  50601. ))
  50602. characterMakers.push(() => makeCharacter(
  50603. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50604. {
  50605. side: {
  50606. height: math.unit(1.8, "meters"),
  50607. weight: math.unit(275, "kg"),
  50608. name: "Side",
  50609. image: {
  50610. source: "./media/characters/terra/side.svg",
  50611. extra: 1273/1147,
  50612. bottom: 0/1273
  50613. }
  50614. },
  50615. },
  50616. [
  50617. {
  50618. name: "Normal",
  50619. height: math.unit(16.2, "meters"),
  50620. default: true
  50621. },
  50622. ]
  50623. ))
  50624. characterMakers.push(() => makeCharacter(
  50625. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50626. {
  50627. borzoiFront: {
  50628. height: math.unit(6 + 9/12, "feet"),
  50629. name: "Front",
  50630. image: {
  50631. source: "./media/characters/rae/borzoi-front.svg",
  50632. extra: 1161/1098,
  50633. bottom: 31/1192
  50634. },
  50635. form: "borzoi",
  50636. default: true
  50637. },
  50638. werewolfFront: {
  50639. height: math.unit(8 + 7/12, "feet"),
  50640. name: "Front",
  50641. image: {
  50642. source: "./media/characters/rae/werewolf-front.svg",
  50643. extra: 1411/1334,
  50644. bottom: 127/1538
  50645. },
  50646. form: "werewolf",
  50647. default: true
  50648. },
  50649. },
  50650. [
  50651. {
  50652. name: "Normal",
  50653. height: math.unit(6 + 9/12, "feet"),
  50654. default: true,
  50655. form: "borzoi"
  50656. },
  50657. {
  50658. name: "Normal",
  50659. height: math.unit(8 + 7/12, "feet"),
  50660. default: true,
  50661. form: "werewolf"
  50662. },
  50663. ],
  50664. {
  50665. "borzoi": {
  50666. name: "Borzoi",
  50667. default: true
  50668. },
  50669. "werewolf": {
  50670. name: "Werewolf",
  50671. },
  50672. }
  50673. ))
  50674. characterMakers.push(() => makeCharacter(
  50675. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50676. {
  50677. front: {
  50678. height: math.unit(8 + 7/12, "feet"),
  50679. weight: math.unit(482, "lb"),
  50680. name: "Front",
  50681. image: {
  50682. source: "./media/characters/kit/front.svg",
  50683. extra: 1247/1103,
  50684. bottom: 41/1288
  50685. }
  50686. },
  50687. back: {
  50688. height: math.unit(8 + 7/12, "feet"),
  50689. weight: math.unit(482, "lb"),
  50690. name: "Back",
  50691. image: {
  50692. source: "./media/characters/kit/back.svg",
  50693. extra: 1252/1123,
  50694. bottom: 21/1273
  50695. }
  50696. },
  50697. paw: {
  50698. height: math.unit(1.46, "feet"),
  50699. name: "Paw",
  50700. image: {
  50701. source: "./media/characters/kit/paw.svg"
  50702. }
  50703. },
  50704. },
  50705. [
  50706. {
  50707. name: "Normal",
  50708. height: math.unit(2.61, "meters"),
  50709. default: true
  50710. },
  50711. {
  50712. name: "\"Tall\"",
  50713. height: math.unit(8.21, "meters")
  50714. },
  50715. {
  50716. name: "Tall",
  50717. height: math.unit(19.6, "meters")
  50718. },
  50719. {
  50720. name: "Very Tall",
  50721. height: math.unit(57.91, "meters")
  50722. },
  50723. {
  50724. name: "Semi-Macro",
  50725. height: math.unit(138.64, "meters")
  50726. },
  50727. {
  50728. name: "Macro",
  50729. height: math.unit(831.99, "meters")
  50730. },
  50731. {
  50732. name: "EX-Macro",
  50733. height: math.unit(96451121, "meters")
  50734. },
  50735. {
  50736. name: "S1-Omnipotent",
  50737. height: math.unit(4.42074e+9, "meters")
  50738. },
  50739. {
  50740. name: "S2-Omnipotent",
  50741. height: math.unit(9.42074e+17, "meters")
  50742. },
  50743. {
  50744. name: "Omnipotent",
  50745. height: math.unit(4.23112e+24, "meters")
  50746. },
  50747. {
  50748. name: "Hypergod",
  50749. height: math.unit(5.05176e+27, "meters")
  50750. },
  50751. {
  50752. name: "Hypergod-EX",
  50753. height: math.unit(9.45532e+49, "meters")
  50754. },
  50755. {
  50756. name: "Hypergod-SP",
  50757. height: math.unit(9.45532e+195, "meters")
  50758. },
  50759. ]
  50760. ))
  50761. characterMakers.push(() => makeCharacter(
  50762. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50763. {
  50764. side: {
  50765. height: math.unit(0.6, "meters"),
  50766. weight: math.unit(24, "kg"),
  50767. name: "Side",
  50768. image: {
  50769. source: "./media/characters/celeste/side.svg",
  50770. extra: 810/517,
  50771. bottom: 53/863
  50772. }
  50773. },
  50774. },
  50775. [
  50776. {
  50777. name: "Velociraptor",
  50778. height: math.unit(0.6, "meters"),
  50779. default: true
  50780. },
  50781. {
  50782. name: "Utahraptor",
  50783. height: math.unit(1.8, "meters")
  50784. },
  50785. {
  50786. name: "Gallimimus",
  50787. height: math.unit(4.0, "meters")
  50788. },
  50789. {
  50790. name: "Large",
  50791. height: math.unit(20, "meters")
  50792. },
  50793. {
  50794. name: "Planetary",
  50795. height: math.unit(50, "megameters")
  50796. },
  50797. {
  50798. name: "Stellar",
  50799. height: math.unit(1.5, "gigameters")
  50800. },
  50801. {
  50802. name: "Galactic",
  50803. height: math.unit(100, "exameters")
  50804. },
  50805. ]
  50806. ))
  50807. characterMakers.push(() => makeCharacter(
  50808. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50809. {
  50810. front: {
  50811. height: math.unit(6, "feet"),
  50812. weight: math.unit(210, "lb"),
  50813. name: "Front",
  50814. image: {
  50815. source: "./media/characters/glacia/front.svg",
  50816. extra: 958/901,
  50817. bottom: 45/1003
  50818. }
  50819. },
  50820. },
  50821. [
  50822. {
  50823. name: "Macro",
  50824. height: math.unit(1000, "meters"),
  50825. default: true
  50826. },
  50827. ]
  50828. ))
  50829. characterMakers.push(() => makeCharacter(
  50830. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50831. {
  50832. front: {
  50833. height: math.unit(4, "meters"),
  50834. name: "Front",
  50835. image: {
  50836. source: "./media/characters/giri/front.svg",
  50837. extra: 966/894,
  50838. bottom: 21/987
  50839. }
  50840. },
  50841. },
  50842. [
  50843. {
  50844. name: "Normal",
  50845. height: math.unit(4, "meters"),
  50846. default: true
  50847. },
  50848. ]
  50849. ))
  50850. characterMakers.push(() => makeCharacter(
  50851. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50852. {
  50853. back: {
  50854. height: math.unit(4, "feet"),
  50855. weight: math.unit(37, "lb"),
  50856. name: "Back",
  50857. image: {
  50858. source: "./media/characters/tin/back.svg",
  50859. extra: 845/780,
  50860. bottom: 28/873
  50861. }
  50862. },
  50863. },
  50864. [
  50865. {
  50866. name: "Normal",
  50867. height: math.unit(4, "feet"),
  50868. default: true
  50869. },
  50870. ]
  50871. ))
  50872. characterMakers.push(() => makeCharacter(
  50873. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50874. {
  50875. front: {
  50876. height: math.unit(25, "feet"),
  50877. name: "Front",
  50878. image: {
  50879. source: "./media/characters/cadenza-vivace/front.svg",
  50880. extra: 1842/1578,
  50881. bottom: 30/1872
  50882. }
  50883. },
  50884. },
  50885. [
  50886. {
  50887. name: "Macro",
  50888. height: math.unit(25, "feet"),
  50889. default: true
  50890. },
  50891. ]
  50892. ))
  50893. characterMakers.push(() => makeCharacter(
  50894. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50895. {
  50896. front: {
  50897. height: math.unit(10, "feet"),
  50898. weight: math.unit(625, "kg"),
  50899. name: "Front",
  50900. image: {
  50901. source: "./media/characters/zain/front.svg",
  50902. extra: 1682/1498,
  50903. bottom: 223/1905
  50904. }
  50905. },
  50906. back: {
  50907. height: math.unit(10, "feet"),
  50908. weight: math.unit(625, "kg"),
  50909. name: "Back",
  50910. image: {
  50911. source: "./media/characters/zain/back.svg",
  50912. extra: 1814/1657,
  50913. bottom: 152/1966
  50914. }
  50915. },
  50916. head: {
  50917. height: math.unit(10, "feet"),
  50918. weight: math.unit(625, "kg"),
  50919. name: "Head",
  50920. image: {
  50921. source: "./media/characters/zain/head.svg",
  50922. extra: 1059/762,
  50923. bottom: 0/1059
  50924. }
  50925. },
  50926. },
  50927. [
  50928. {
  50929. name: "Normal",
  50930. height: math.unit(10, "feet"),
  50931. default: true
  50932. },
  50933. ]
  50934. ))
  50935. characterMakers.push(() => makeCharacter(
  50936. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50937. {
  50938. front: {
  50939. height: math.unit(6 + 5/12, "feet"),
  50940. weight: math.unit(750, "lb"),
  50941. name: "Front",
  50942. image: {
  50943. source: "./media/characters/ruchex/front.svg",
  50944. extra: 877/820,
  50945. bottom: 17/894
  50946. },
  50947. extraAttributes: {
  50948. "width": {
  50949. name: "Width",
  50950. power: 1,
  50951. type: "length",
  50952. base: math.unit(4.757, "feet")
  50953. },
  50954. }
  50955. },
  50956. },
  50957. [
  50958. {
  50959. name: "Normal",
  50960. height: math.unit(6 + 5/12, "feet"),
  50961. default: true
  50962. },
  50963. ]
  50964. ))
  50965. characterMakers.push(() => makeCharacter(
  50966. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50967. {
  50968. dressedFront: {
  50969. height: math.unit(191, "cm"),
  50970. weight: math.unit(80, "kg"),
  50971. name: "Front",
  50972. image: {
  50973. source: "./media/characters/buster/dressed-front.svg",
  50974. extra: 1022/973,
  50975. bottom: 69/1091
  50976. }
  50977. },
  50978. dressedBack: {
  50979. height: math.unit(191, "cm"),
  50980. weight: math.unit(80, "kg"),
  50981. name: "Back",
  50982. image: {
  50983. source: "./media/characters/buster/dressed-back.svg",
  50984. extra: 1018/970,
  50985. bottom: 55/1073
  50986. }
  50987. },
  50988. nudeFront: {
  50989. height: math.unit(191, "cm"),
  50990. weight: math.unit(80, "kg"),
  50991. name: "Front (Nude)",
  50992. image: {
  50993. source: "./media/characters/buster/nude-front.svg",
  50994. extra: 1022/973,
  50995. bottom: 69/1091
  50996. }
  50997. },
  50998. nudeBack: {
  50999. height: math.unit(191, "cm"),
  51000. weight: math.unit(80, "kg"),
  51001. name: "Back (Nude)",
  51002. image: {
  51003. source: "./media/characters/buster/nude-back.svg",
  51004. extra: 1018/970,
  51005. bottom: 55/1073
  51006. }
  51007. },
  51008. dick: {
  51009. height: math.unit(2.59, "feet"),
  51010. name: "Dick",
  51011. image: {
  51012. source: "./media/characters/buster/dick.svg"
  51013. }
  51014. },
  51015. ass: {
  51016. height: math.unit(1.2, "feet"),
  51017. name: "Ass",
  51018. image: {
  51019. source: "./media/characters/buster/ass.svg"
  51020. }
  51021. },
  51022. },
  51023. [
  51024. {
  51025. name: "Normal",
  51026. height: math.unit(191, "cm"),
  51027. default: true
  51028. },
  51029. ]
  51030. ))
  51031. characterMakers.push(() => makeCharacter(
  51032. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51033. {
  51034. side: {
  51035. height: math.unit(8.1, "feet"),
  51036. weight: math.unit(3500, "lb"),
  51037. name: "Side",
  51038. image: {
  51039. source: "./media/characters/sonya/side.svg",
  51040. extra: 1730/1317,
  51041. bottom: 86/1816
  51042. }
  51043. },
  51044. },
  51045. [
  51046. {
  51047. name: "Normal",
  51048. height: math.unit(8.1, "feet"),
  51049. default: true
  51050. },
  51051. ]
  51052. ))
  51053. characterMakers.push(() => makeCharacter(
  51054. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51055. {
  51056. front: {
  51057. height: math.unit(6, "feet"),
  51058. weight: math.unit(150, "lb"),
  51059. name: "Front",
  51060. image: {
  51061. source: "./media/characters/cadence-andrysiak/front.svg",
  51062. extra: 1164/1121,
  51063. bottom: 60/1224
  51064. }
  51065. },
  51066. back: {
  51067. height: math.unit(6, "feet"),
  51068. weight: math.unit(150, "lb"),
  51069. name: "Back",
  51070. image: {
  51071. source: "./media/characters/cadence-andrysiak/back.svg",
  51072. extra: 1200/1165,
  51073. bottom: 9/1209
  51074. }
  51075. },
  51076. dressed: {
  51077. height: math.unit(6, "feet"),
  51078. weight: math.unit(150, "lb"),
  51079. name: "Dressed",
  51080. image: {
  51081. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51082. extra: 1164/1121,
  51083. bottom: 60/1224
  51084. }
  51085. },
  51086. },
  51087. [
  51088. {
  51089. name: "Micro",
  51090. height: math.unit(1, "mm")
  51091. },
  51092. {
  51093. name: "Normal",
  51094. height: math.unit(6, "feet"),
  51095. default: true
  51096. },
  51097. ]
  51098. ))
  51099. characterMakers.push(() => makeCharacter(
  51100. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51101. {
  51102. front: {
  51103. height: math.unit(60, "inches"),
  51104. weight: math.unit(16, "lb"),
  51105. preyCapacity: math.unit(80, "liters"),
  51106. name: "Front",
  51107. image: {
  51108. source: "./media/characters/penny-lynx/front.svg",
  51109. extra: 1959/1769,
  51110. bottom: 49/2008
  51111. }
  51112. },
  51113. },
  51114. [
  51115. {
  51116. name: "Nokia",
  51117. height: math.unit(2, "inches")
  51118. },
  51119. {
  51120. name: "Desktop",
  51121. height: math.unit(24, "inches")
  51122. },
  51123. {
  51124. name: "TV",
  51125. height: math.unit(60, "inches")
  51126. },
  51127. {
  51128. name: "Jumbotron",
  51129. height: math.unit(12, "feet")
  51130. },
  51131. {
  51132. name: "Billboard",
  51133. height: math.unit(48, "feet"),
  51134. default: true
  51135. },
  51136. {
  51137. name: "IMAX",
  51138. height: math.unit(96, "feet")
  51139. },
  51140. {
  51141. name: "SINGULARITY",
  51142. height: math.unit(864938, "miles")
  51143. },
  51144. ]
  51145. ))
  51146. characterMakers.push(() => makeCharacter(
  51147. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51148. {
  51149. front: {
  51150. height: math.unit(5 + 4/12, "feet"),
  51151. weight: math.unit(230, "lb"),
  51152. name: "Front",
  51153. image: {
  51154. source: "./media/characters/sukebe/front.svg",
  51155. extra: 2130/2038,
  51156. bottom: 90/2220
  51157. }
  51158. },
  51159. back: {
  51160. height: math.unit(3.48, "feet"),
  51161. weight: math.unit(230, "lb"),
  51162. name: "Back",
  51163. image: {
  51164. source: "./media/characters/sukebe/back.svg",
  51165. extra: 1670/1604,
  51166. bottom: 0/1670
  51167. }
  51168. },
  51169. },
  51170. [
  51171. {
  51172. name: "Normal",
  51173. height: math.unit(5 + 4/12, "feet"),
  51174. default: true
  51175. },
  51176. ]
  51177. ))
  51178. characterMakers.push(() => makeCharacter(
  51179. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51180. {
  51181. front: {
  51182. height: math.unit(6, "feet"),
  51183. name: "Front",
  51184. image: {
  51185. source: "./media/characters/nylla/front.svg",
  51186. extra: 1868/1699,
  51187. bottom: 97/1965
  51188. }
  51189. },
  51190. back: {
  51191. height: math.unit(6, "feet"),
  51192. name: "Back",
  51193. image: {
  51194. source: "./media/characters/nylla/back.svg",
  51195. extra: 1889/1712,
  51196. bottom: 93/1982
  51197. }
  51198. },
  51199. frontNsfw: {
  51200. height: math.unit(6, "feet"),
  51201. name: "Front (NSFW)",
  51202. image: {
  51203. source: "./media/characters/nylla/front-nsfw.svg",
  51204. extra: 1868/1699,
  51205. bottom: 97/1965
  51206. },
  51207. extraAttributes: {
  51208. "dickLength": {
  51209. name: "Dick Length",
  51210. power: 1,
  51211. type: "length",
  51212. base: math.unit(1.4, "feet")
  51213. },
  51214. "cumVolume": {
  51215. name: "Cum Volume",
  51216. power: 3,
  51217. type: "volume",
  51218. base: math.unit(100, "mL")
  51219. },
  51220. }
  51221. },
  51222. backNsfw: {
  51223. height: math.unit(6, "feet"),
  51224. name: "Back (NSFW)",
  51225. image: {
  51226. source: "./media/characters/nylla/back-nsfw.svg",
  51227. extra: 1889/1712,
  51228. bottom: 93/1982
  51229. }
  51230. },
  51231. maw: {
  51232. height: math.unit(2.10, "feet"),
  51233. name: "Maw",
  51234. image: {
  51235. source: "./media/characters/nylla/maw.svg"
  51236. }
  51237. },
  51238. paws: {
  51239. height: math.unit(2.06, "feet"),
  51240. name: "Paws",
  51241. image: {
  51242. source: "./media/characters/nylla/paws.svg"
  51243. }
  51244. },
  51245. muzzle: {
  51246. height: math.unit(0.61, "feet"),
  51247. name: "Muzzle",
  51248. image: {
  51249. source: "./media/characters/nylla/muzzle.svg"
  51250. }
  51251. },
  51252. sheath: {
  51253. height: math.unit(1.305, "feet"),
  51254. name: "Sheath",
  51255. image: {
  51256. source: "./media/characters/nylla/sheath.svg"
  51257. }
  51258. },
  51259. },
  51260. [
  51261. {
  51262. name: "Micro",
  51263. height: math.unit(7.5, "inches")
  51264. },
  51265. {
  51266. name: "Normal",
  51267. height: math.unit(7, "feet"),
  51268. default: true
  51269. },
  51270. {
  51271. name: "Macro",
  51272. height: math.unit(60, "feet")
  51273. },
  51274. {
  51275. name: "Mega",
  51276. height: math.unit(200, "feet")
  51277. },
  51278. ]
  51279. ))
  51280. characterMakers.push(() => makeCharacter(
  51281. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51282. {
  51283. front: {
  51284. height: math.unit(10, "feet"),
  51285. weight: math.unit(2300, "lb"),
  51286. name: "Front",
  51287. image: {
  51288. source: "./media/characters/hunt3r/front.svg",
  51289. extra: 1909/1742,
  51290. bottom: 46/1955
  51291. }
  51292. },
  51293. },
  51294. [
  51295. {
  51296. name: "Normal",
  51297. height: math.unit(10, "feet"),
  51298. default: true
  51299. },
  51300. ]
  51301. ))
  51302. characterMakers.push(() => makeCharacter(
  51303. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51304. {
  51305. dressed: {
  51306. height: math.unit(11, "feet"),
  51307. weight: math.unit(18500, "lb"),
  51308. preyCapacity: math.unit(9, "people"),
  51309. name: "Dressed",
  51310. image: {
  51311. source: "./media/characters/cylphis/dressed.svg",
  51312. extra: 1028/1003,
  51313. bottom: 75/1103
  51314. },
  51315. },
  51316. undressed: {
  51317. height: math.unit(11, "feet"),
  51318. weight: math.unit(18500, "lb"),
  51319. preyCapacity: math.unit(9, "people"),
  51320. name: "Undressed",
  51321. image: {
  51322. source: "./media/characters/cylphis/undressed.svg",
  51323. extra: 1028/1003,
  51324. bottom: 75/1103
  51325. }
  51326. },
  51327. full: {
  51328. height: math.unit(11, "feet"),
  51329. weight: math.unit(18500 + 150*9, "lb"),
  51330. preyCapacity: math.unit(9, "people"),
  51331. name: "Full",
  51332. image: {
  51333. source: "./media/characters/cylphis/full.svg",
  51334. extra: 1028/1003,
  51335. bottom: 75/1103
  51336. }
  51337. },
  51338. },
  51339. [
  51340. {
  51341. name: "Small",
  51342. height: math.unit(8, "feet")
  51343. },
  51344. {
  51345. name: "Normal",
  51346. height: math.unit(11, "feet"),
  51347. default: true
  51348. },
  51349. ]
  51350. ))
  51351. characterMakers.push(() => makeCharacter(
  51352. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51353. {
  51354. front: {
  51355. height: math.unit(2 + 7/12, "feet"),
  51356. name: "Front",
  51357. image: {
  51358. source: "./media/characters/orishan/front.svg",
  51359. extra: 1058/1023,
  51360. bottom: 23/1081
  51361. }
  51362. },
  51363. back: {
  51364. height: math.unit(2 + 7/12, "feet"),
  51365. name: "Back",
  51366. image: {
  51367. source: "./media/characters/orishan/back.svg",
  51368. extra: 1058/1023,
  51369. bottom: 23/1081
  51370. }
  51371. },
  51372. },
  51373. [
  51374. {
  51375. name: "Micro",
  51376. height: math.unit(2, "cm")
  51377. },
  51378. {
  51379. name: "Normal",
  51380. height: math.unit(2 + 7/12, "feet"),
  51381. default: true
  51382. },
  51383. ]
  51384. ))
  51385. characterMakers.push(() => makeCharacter(
  51386. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51387. {
  51388. front: {
  51389. height: math.unit(3, "meters"),
  51390. weight: math.unit(508, "kg"),
  51391. name: "Front",
  51392. image: {
  51393. source: "./media/characters/seranis/front.svg",
  51394. extra: 1478/1454,
  51395. bottom: 41/1519
  51396. }
  51397. },
  51398. },
  51399. [
  51400. {
  51401. name: "Normal",
  51402. height: math.unit(3, "meters"),
  51403. default: true
  51404. },
  51405. {
  51406. name: "Macro",
  51407. height: math.unit(108, "meters")
  51408. },
  51409. {
  51410. name: "Megamacro",
  51411. height: math.unit(1250, "meters")
  51412. },
  51413. ]
  51414. ))
  51415. characterMakers.push(() => makeCharacter(
  51416. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51417. {
  51418. undressed: {
  51419. height: math.unit(5 + 3/12, "feet"),
  51420. name: "Undressed",
  51421. image: {
  51422. source: "./media/characters/ankou/undressed.svg",
  51423. extra: 1301/1213,
  51424. bottom: 87/1388
  51425. }
  51426. },
  51427. dressed: {
  51428. height: math.unit(5 + 3/12, "feet"),
  51429. name: "Dressed",
  51430. image: {
  51431. source: "./media/characters/ankou/dressed.svg",
  51432. extra: 1301/1213,
  51433. bottom: 87/1388
  51434. }
  51435. },
  51436. head: {
  51437. height: math.unit(1.61, "feet"),
  51438. name: "Head",
  51439. image: {
  51440. source: "./media/characters/ankou/head.svg"
  51441. }
  51442. },
  51443. },
  51444. [
  51445. {
  51446. name: "Normal",
  51447. height: math.unit(5 + 3/12, "feet"),
  51448. default: true
  51449. },
  51450. ]
  51451. ))
  51452. characterMakers.push(() => makeCharacter(
  51453. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51454. {
  51455. side: {
  51456. height: math.unit(6 + 3/12, "feet"),
  51457. weight: math.unit(200, "kg"),
  51458. name: "Side",
  51459. image: {
  51460. source: "./media/characters/juniper-skunktaur/side.svg",
  51461. extra: 1574/1229,
  51462. bottom: 38/1612
  51463. }
  51464. },
  51465. front: {
  51466. height: math.unit(6 + 3/12, "feet"),
  51467. weight: math.unit(200, "kg"),
  51468. name: "Front",
  51469. image: {
  51470. source: "./media/characters/juniper-skunktaur/front.svg",
  51471. extra: 1337/1278,
  51472. bottom: 22/1359
  51473. }
  51474. },
  51475. back: {
  51476. height: math.unit(6 + 3/12, "feet"),
  51477. weight: math.unit(200, "kg"),
  51478. name: "Back",
  51479. image: {
  51480. source: "./media/characters/juniper-skunktaur/back.svg",
  51481. extra: 1618/1273,
  51482. bottom: 13/1631
  51483. }
  51484. },
  51485. top: {
  51486. height: math.unit(2.62, "feet"),
  51487. weight: math.unit(200, "kg"),
  51488. name: "Top",
  51489. image: {
  51490. source: "./media/characters/juniper-skunktaur/top.svg"
  51491. }
  51492. },
  51493. },
  51494. [
  51495. {
  51496. name: "Normal",
  51497. height: math.unit(6 + 3/12, "feet"),
  51498. default: true
  51499. },
  51500. ]
  51501. ))
  51502. characterMakers.push(() => makeCharacter(
  51503. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51504. {
  51505. front: {
  51506. height: math.unit(20.5, "feet"),
  51507. name: "Front",
  51508. image: {
  51509. source: "./media/characters/rei/front.svg",
  51510. extra: 1349/1195,
  51511. bottom: 31/1380
  51512. }
  51513. },
  51514. back: {
  51515. height: math.unit(20.5, "feet"),
  51516. name: "Back",
  51517. image: {
  51518. source: "./media/characters/rei/back.svg",
  51519. extra: 1358/1204,
  51520. bottom: 22/1380
  51521. }
  51522. },
  51523. pawsDigi: {
  51524. height: math.unit(3.45, "feet"),
  51525. name: "Paws (Digi)",
  51526. image: {
  51527. source: "./media/characters/rei/paws-digi.svg"
  51528. }
  51529. },
  51530. pawsPlanti: {
  51531. height: math.unit(3.45, "feet"),
  51532. name: "Paws (Planti)",
  51533. image: {
  51534. source: "./media/characters/rei/paws-planti.svg"
  51535. }
  51536. },
  51537. },
  51538. [
  51539. {
  51540. name: "Normal",
  51541. height: math.unit(20.5, "feet"),
  51542. default: true
  51543. },
  51544. ]
  51545. ))
  51546. characterMakers.push(() => makeCharacter(
  51547. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51548. {
  51549. front: {
  51550. height: math.unit(5 + 11/12, "feet"),
  51551. name: "Front",
  51552. image: {
  51553. source: "./media/characters/carina/front.svg",
  51554. extra: 1720/1449,
  51555. bottom: 14/1734
  51556. }
  51557. },
  51558. back: {
  51559. height: math.unit(5 + 11/12, "feet"),
  51560. name: "Back",
  51561. image: {
  51562. source: "./media/characters/carina/back.svg",
  51563. extra: 1493/1445,
  51564. bottom: 17/1510
  51565. }
  51566. },
  51567. paw: {
  51568. height: math.unit(0.92, "feet"),
  51569. name: "Paw",
  51570. image: {
  51571. source: "./media/characters/carina/paw.svg"
  51572. }
  51573. },
  51574. },
  51575. [
  51576. {
  51577. name: "Normal",
  51578. height: math.unit(5 + 11/12, "feet"),
  51579. default: true
  51580. },
  51581. ]
  51582. ))
  51583. characterMakers.push(() => makeCharacter(
  51584. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51585. {
  51586. front: {
  51587. height: math.unit(4.88, "meters"),
  51588. name: "Front",
  51589. image: {
  51590. source: "./media/characters/maya/front.svg",
  51591. extra: 1222/1145,
  51592. bottom: 57/1279
  51593. }
  51594. },
  51595. },
  51596. [
  51597. {
  51598. name: "Normal",
  51599. height: math.unit(4.88, "meters"),
  51600. default: true
  51601. },
  51602. {
  51603. name: "Macro",
  51604. height: math.unit(38.1, "meters")
  51605. },
  51606. {
  51607. name: "Macro+",
  51608. height: math.unit(152.4, "meters")
  51609. },
  51610. {
  51611. name: "Macro++",
  51612. height: math.unit(16.09, "km")
  51613. },
  51614. {
  51615. name: "Mega-macro",
  51616. height: math.unit(700, "megameters")
  51617. },
  51618. ]
  51619. ))
  51620. characterMakers.push(() => makeCharacter(
  51621. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51622. {
  51623. front: {
  51624. height: math.unit(6 + 2/12, "feet"),
  51625. weight: math.unit(500, "lb"),
  51626. preyCapacity: math.unit(4, "people"),
  51627. name: "Front",
  51628. image: {
  51629. source: "./media/characters/yepir/front.svg"
  51630. }
  51631. },
  51632. side: {
  51633. height: math.unit(6 + 2/12, "feet"),
  51634. weight: math.unit(500, "lb"),
  51635. preyCapacity: math.unit(4, "people"),
  51636. name: "Side",
  51637. image: {
  51638. source: "./media/characters/yepir/side.svg"
  51639. }
  51640. },
  51641. paw: {
  51642. height: math.unit(1.05, "feet"),
  51643. name: "Paw",
  51644. image: {
  51645. source: "./media/characters/yepir/paw.svg"
  51646. }
  51647. },
  51648. },
  51649. [
  51650. {
  51651. name: "Normal",
  51652. height: math.unit(6 + 2/12, "feet"),
  51653. default: true
  51654. },
  51655. ]
  51656. ))
  51657. characterMakers.push(() => makeCharacter(
  51658. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51659. {
  51660. front: {
  51661. height: math.unit(5 + 4/12, "feet"),
  51662. name: "Front",
  51663. image: {
  51664. source: "./media/characters/russec/front.svg",
  51665. extra: 1926/1626,
  51666. bottom: 72/1998
  51667. }
  51668. },
  51669. back: {
  51670. height: math.unit(5 + 4/12, "feet"),
  51671. name: "Back",
  51672. image: {
  51673. source: "./media/characters/russec/back.svg",
  51674. extra: 1910/1591,
  51675. bottom: 48/1958
  51676. }
  51677. },
  51678. },
  51679. [
  51680. {
  51681. name: "Small",
  51682. height: math.unit(5 + 4/12, "feet")
  51683. },
  51684. {
  51685. name: "Normal",
  51686. height: math.unit(72, "feet"),
  51687. default: true
  51688. },
  51689. ]
  51690. ))
  51691. characterMakers.push(() => makeCharacter(
  51692. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51693. {
  51694. side: {
  51695. height: math.unit(12, "feet"),
  51696. name: "Side",
  51697. image: {
  51698. source: "./media/characters/cianus/side.svg",
  51699. extra: 808/526,
  51700. bottom: 61/869
  51701. }
  51702. },
  51703. },
  51704. [
  51705. {
  51706. name: "Normal",
  51707. height: math.unit(12, "feet"),
  51708. default: true
  51709. },
  51710. ]
  51711. ))
  51712. characterMakers.push(() => makeCharacter(
  51713. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51714. {
  51715. front: {
  51716. height: math.unit(9 + 6/12, "feet"),
  51717. weight: math.unit(300, "lb"),
  51718. name: "Front",
  51719. image: {
  51720. source: "./media/characters/ahab/front.svg",
  51721. extra: 1897/1868,
  51722. bottom: 121/2018
  51723. }
  51724. },
  51725. frontNsfw: {
  51726. height: math.unit(9 + 6/12, "feet"),
  51727. weight: math.unit(300, "lb"),
  51728. name: "Front-nsfw",
  51729. image: {
  51730. source: "./media/characters/ahab/front-nsfw.svg",
  51731. extra: 1897/1868,
  51732. bottom: 121/2018
  51733. }
  51734. },
  51735. },
  51736. [
  51737. {
  51738. name: "Normal",
  51739. height: math.unit(9 + 6/12, "feet")
  51740. },
  51741. {
  51742. name: "Macro",
  51743. height: math.unit(657, "feet"),
  51744. default: true
  51745. },
  51746. ]
  51747. ))
  51748. characterMakers.push(() => makeCharacter(
  51749. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51750. {
  51751. front: {
  51752. height: math.unit(2.69, "meters"),
  51753. weight: math.unit(132, "kg"),
  51754. name: "Front",
  51755. image: {
  51756. source: "./media/characters/aarkus/front.svg",
  51757. extra: 1400/1231,
  51758. bottom: 34/1434
  51759. }
  51760. },
  51761. back: {
  51762. height: math.unit(2.69, "meters"),
  51763. weight: math.unit(132, "kg"),
  51764. name: "Back",
  51765. image: {
  51766. source: "./media/characters/aarkus/back.svg",
  51767. extra: 1381/1218,
  51768. bottom: 30/1411
  51769. }
  51770. },
  51771. frontNsfw: {
  51772. height: math.unit(2.69, "meters"),
  51773. weight: math.unit(132, "kg"),
  51774. name: "Front (NSFW)",
  51775. image: {
  51776. source: "./media/characters/aarkus/front-nsfw.svg",
  51777. extra: 1400/1231,
  51778. bottom: 34/1434
  51779. }
  51780. },
  51781. foot: {
  51782. height: math.unit(1.45, "feet"),
  51783. name: "Foot",
  51784. image: {
  51785. source: "./media/characters/aarkus/foot.svg"
  51786. }
  51787. },
  51788. head: {
  51789. height: math.unit(2.85, "feet"),
  51790. name: "Head",
  51791. image: {
  51792. source: "./media/characters/aarkus/head.svg"
  51793. }
  51794. },
  51795. headAlt: {
  51796. height: math.unit(3.07, "feet"),
  51797. name: "Head (Alt)",
  51798. image: {
  51799. source: "./media/characters/aarkus/head-alt.svg"
  51800. }
  51801. },
  51802. mouth: {
  51803. height: math.unit(1.25, "feet"),
  51804. name: "Mouth",
  51805. image: {
  51806. source: "./media/characters/aarkus/mouth.svg"
  51807. }
  51808. },
  51809. dick: {
  51810. height: math.unit(1.77, "feet"),
  51811. name: "Dick",
  51812. image: {
  51813. source: "./media/characters/aarkus/dick.svg"
  51814. }
  51815. },
  51816. },
  51817. [
  51818. {
  51819. name: "Normal",
  51820. height: math.unit(2.69, "meters"),
  51821. default: true
  51822. },
  51823. {
  51824. name: "Macro",
  51825. height: math.unit(269, "meters")
  51826. },
  51827. {
  51828. name: "Macro+",
  51829. height: math.unit(672.5, "meters")
  51830. },
  51831. {
  51832. name: "Megamacro",
  51833. height: math.unit(2.017, "meters")
  51834. },
  51835. ]
  51836. ))
  51837. characterMakers.push(() => makeCharacter(
  51838. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  51839. {
  51840. front: {
  51841. height: math.unit(23.47, "cm"),
  51842. weight: math.unit(600, "grams"),
  51843. name: "Front",
  51844. image: {
  51845. source: "./media/characters/diode/front.svg",
  51846. extra: 1778/1396,
  51847. bottom: 95/1873
  51848. }
  51849. },
  51850. side: {
  51851. height: math.unit(23.47, "cm"),
  51852. weight: math.unit(600, "grams"),
  51853. name: "Side",
  51854. image: {
  51855. source: "./media/characters/diode/side.svg",
  51856. extra: 1831/1404,
  51857. bottom: 86/1917
  51858. }
  51859. },
  51860. wings: {
  51861. height: math.unit(0.683, "feet"),
  51862. name: "Wings",
  51863. image: {
  51864. source: "./media/characters/diode/wings.svg"
  51865. }
  51866. },
  51867. },
  51868. [
  51869. {
  51870. name: "Normal",
  51871. height: math.unit(23.47, "cm"),
  51872. default: true
  51873. },
  51874. ]
  51875. ))
  51876. characterMakers.push(() => makeCharacter(
  51877. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  51878. {
  51879. front: {
  51880. height: math.unit(6 + 3/12, "feet"),
  51881. weight: math.unit(250, "lb"),
  51882. name: "Front",
  51883. image: {
  51884. source: "./media/characters/reika/front.svg",
  51885. extra: 1120/1078,
  51886. bottom: 86/1206
  51887. }
  51888. },
  51889. },
  51890. [
  51891. {
  51892. name: "Normal",
  51893. height: math.unit(6 + 3/12, "feet"),
  51894. default: true
  51895. },
  51896. ]
  51897. ))
  51898. characterMakers.push(() => makeCharacter(
  51899. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  51900. {
  51901. front: {
  51902. height: math.unit(16 + 8/12, "feet"),
  51903. weight: math.unit(9000, "lb"),
  51904. name: "Front",
  51905. image: {
  51906. source: "./media/characters/lokuto-takama/front.svg",
  51907. extra: 1774/1632,
  51908. bottom: 147/1921
  51909. },
  51910. extraAttributes: {
  51911. "bustWidth": {
  51912. name: "Bust Width",
  51913. power: 1,
  51914. type: "length",
  51915. base: math.unit(2.4, "meters")
  51916. },
  51917. "breastWeight": {
  51918. name: "Breast Weight",
  51919. power: 3,
  51920. type: "mass",
  51921. base: math.unit(1000, "kg")
  51922. },
  51923. }
  51924. },
  51925. },
  51926. [
  51927. {
  51928. name: "Normal",
  51929. height: math.unit(16 + 8/12, "feet"),
  51930. default: true
  51931. },
  51932. ]
  51933. ))
  51934. characterMakers.push(() => makeCharacter(
  51935. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  51936. {
  51937. front: {
  51938. height: math.unit(10, "cm"),
  51939. weight: math.unit(850, "grams"),
  51940. name: "Front",
  51941. image: {
  51942. source: "./media/characters/owak-bone/front.svg",
  51943. extra: 1965/1801,
  51944. bottom: 31/1996
  51945. }
  51946. },
  51947. },
  51948. [
  51949. {
  51950. name: "Normal",
  51951. height: math.unit(10, "cm"),
  51952. default: true
  51953. },
  51954. ]
  51955. ))
  51956. characterMakers.push(() => makeCharacter(
  51957. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  51958. {
  51959. front: {
  51960. height: math.unit(2 + 6/12, "feet"),
  51961. weight: math.unit(9, "lb"),
  51962. name: "Front",
  51963. image: {
  51964. source: "./media/characters/muffin/front.svg",
  51965. extra: 1220/1195,
  51966. bottom: 84/1304
  51967. }
  51968. },
  51969. },
  51970. [
  51971. {
  51972. name: "Normal",
  51973. height: math.unit(2 + 6/12, "feet"),
  51974. default: true
  51975. },
  51976. ]
  51977. ))
  51978. characterMakers.push(() => makeCharacter(
  51979. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  51980. {
  51981. front: {
  51982. height: math.unit(7, "feet"),
  51983. name: "Front",
  51984. image: {
  51985. source: "./media/characters/chimera/front.svg",
  51986. extra: 1752/1614,
  51987. bottom: 68/1820
  51988. }
  51989. },
  51990. },
  51991. [
  51992. {
  51993. name: "Normal",
  51994. height: math.unit(7, "feet")
  51995. },
  51996. {
  51997. name: "Gigamacro",
  51998. height: math.unit(2.9, "gigameters"),
  51999. default: true
  52000. },
  52001. {
  52002. name: "Universal",
  52003. height: math.unit(1.56e26, "yottameters")
  52004. },
  52005. ]
  52006. ))
  52007. characterMakers.push(() => makeCharacter(
  52008. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52009. {
  52010. front: {
  52011. height: math.unit(3, "feet"),
  52012. weight: math.unit(20, "lb"),
  52013. name: "Front",
  52014. image: {
  52015. source: "./media/characters/kit-fennec-fox/front.svg",
  52016. extra: 1027/932,
  52017. bottom: 16/1043
  52018. }
  52019. },
  52020. back: {
  52021. height: math.unit(3, "feet"),
  52022. weight: math.unit(20, "lb"),
  52023. name: "Back",
  52024. image: {
  52025. source: "./media/characters/kit-fennec-fox/back.svg",
  52026. extra: 1027/932,
  52027. bottom: 16/1043
  52028. }
  52029. },
  52030. },
  52031. [
  52032. {
  52033. name: "Normal",
  52034. height: math.unit(3, "feet"),
  52035. default: true
  52036. },
  52037. ]
  52038. ))
  52039. characterMakers.push(() => makeCharacter(
  52040. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52041. {
  52042. front: {
  52043. height: math.unit(167, "cm"),
  52044. name: "Front",
  52045. image: {
  52046. source: "./media/characters/blue-otter/front.svg",
  52047. extra: 1951/1920,
  52048. bottom: 31/1982
  52049. }
  52050. },
  52051. },
  52052. [
  52053. {
  52054. name: "Otter-Sized",
  52055. height: math.unit(100, "cm")
  52056. },
  52057. {
  52058. name: "Normal",
  52059. height: math.unit(167, "cm"),
  52060. default: true
  52061. },
  52062. ]
  52063. ))
  52064. characterMakers.push(() => makeCharacter(
  52065. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52066. {
  52067. front: {
  52068. height: math.unit(4 + 4/12, "feet"),
  52069. name: "Front",
  52070. image: {
  52071. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52072. extra: 1072/1067,
  52073. bottom: 117/1189
  52074. }
  52075. },
  52076. back: {
  52077. height: math.unit(4 + 4/12, "feet"),
  52078. name: "Back",
  52079. image: {
  52080. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52081. extra: 1135/1129,
  52082. bottom: 57/1192
  52083. }
  52084. },
  52085. head: {
  52086. height: math.unit(1.77, "feet"),
  52087. name: "Head",
  52088. image: {
  52089. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52090. }
  52091. },
  52092. },
  52093. [
  52094. {
  52095. name: "Normal",
  52096. height: math.unit(4 + 4/12, "feet"),
  52097. default: true
  52098. },
  52099. ]
  52100. ))
  52101. //characters
  52102. function makeCharacters() {
  52103. const results = [];
  52104. characterMakers.forEach(character => {
  52105. results.push(character());
  52106. });
  52107. return results;
  52108. }