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

53979 строки
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. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. }
  2055. //species
  2056. function getSpeciesInfo(speciesList) {
  2057. let result = new Set();
  2058. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2059. result.add(entry)
  2060. });
  2061. return Array.from(result);
  2062. };
  2063. function getSpeciesInfoHelper(species) {
  2064. if (!speciesData[species]) {
  2065. console.warn(species + " doesn't exist");
  2066. return [];
  2067. }
  2068. if (speciesData[species].parents) {
  2069. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2070. } else {
  2071. return [species];
  2072. }
  2073. }
  2074. characterMakers.push(() => makeCharacter(
  2075. {
  2076. name: "Fen",
  2077. species: ["crux"],
  2078. description: {
  2079. title: "Bio",
  2080. text: "Very furry. Sheds on everything."
  2081. },
  2082. tags: [
  2083. "anthro",
  2084. "goo"
  2085. ]
  2086. },
  2087. {
  2088. front: {
  2089. height: math.unit(12, "feet"),
  2090. weight: math.unit(2400, "lb"),
  2091. name: "Front",
  2092. image: {
  2093. source: "./media/characters/fen/front.svg",
  2094. extra: 1804/1562,
  2095. bottom: 205/2009
  2096. },
  2097. extraAttributes: {
  2098. pawSize: {
  2099. name: "Paw Size",
  2100. power: 2,
  2101. type: "area",
  2102. base: math.unit(0.35, "m^2")
  2103. }
  2104. }
  2105. },
  2106. diving: {
  2107. height: math.unit(4.9, "meters"),
  2108. weight: math.unit(2400, "lb"),
  2109. name: "Diving",
  2110. image: {
  2111. source: "./media/characters/fen/diving.svg"
  2112. }
  2113. },
  2114. goo: {
  2115. height: math.unit(12, "feet"),
  2116. weight: math.unit(3600, "lb"),
  2117. volume: math.unit(1000, "liters"),
  2118. preyCapacity: math.unit(6, "people"),
  2119. name: "Goo",
  2120. image: {
  2121. source: "./media/characters/fen/goo.svg",
  2122. extra: 1307/1071,
  2123. bottom: 134/1441
  2124. }
  2125. },
  2126. gooNsfw: {
  2127. height: math.unit(12, "feet"),
  2128. weight: math.unit(3750, "lb"),
  2129. volume: math.unit(1000, "liters"),
  2130. preyCapacity: math.unit(6, "people"),
  2131. name: "Goo (NSFW)",
  2132. image: {
  2133. source: "./media/characters/fen/goo-nsfw.svg",
  2134. extra: 1875/1734,
  2135. bottom: 122/1997
  2136. }
  2137. },
  2138. maw: {
  2139. height: math.unit(5.03, "feet"),
  2140. name: "Maw",
  2141. image: {
  2142. source: "./media/characters/fen/maw.svg"
  2143. }
  2144. },
  2145. gooCeiling: {
  2146. height: math.unit(6.6, "feet"),
  2147. weight: math.unit(3000, "lb"),
  2148. volume: math.unit(1000, "liters"),
  2149. preyCapacity: math.unit(6, "people"),
  2150. name: "Goo (Ceiling)",
  2151. image: {
  2152. source: "./media/characters/fen/goo-ceiling.svg"
  2153. }
  2154. },
  2155. paw: {
  2156. height: math.unit(3.77, "feet"),
  2157. name: "Paw",
  2158. image: {
  2159. source: "./media/characters/fen/paw.svg"
  2160. },
  2161. extraAttributes: {
  2162. "toeSize": {
  2163. name: "Toe Size",
  2164. power: 2,
  2165. type: "area",
  2166. base: math.unit(0.02875, "m^2")
  2167. },
  2168. "pawSize": {
  2169. name: "Paw Size",
  2170. power: 2,
  2171. type: "area",
  2172. base: math.unit(0.378, "m^2")
  2173. },
  2174. }
  2175. },
  2176. tail: {
  2177. height: math.unit(12.1, "feet"),
  2178. name: "Tail",
  2179. image: {
  2180. source: "./media/characters/fen/tail.svg"
  2181. }
  2182. },
  2183. tailFull: {
  2184. height: math.unit(12.1, "feet"),
  2185. name: "Full Tail",
  2186. image: {
  2187. source: "./media/characters/fen/tail-full.svg"
  2188. }
  2189. },
  2190. back: {
  2191. height: math.unit(12, "feet"),
  2192. weight: math.unit(2400, "lb"),
  2193. name: "Back",
  2194. image: {
  2195. source: "./media/characters/fen/back.svg",
  2196. },
  2197. info: {
  2198. description: {
  2199. mode: "append",
  2200. text: "\n\nHe is not currently looking at you."
  2201. }
  2202. }
  2203. },
  2204. full: {
  2205. height: math.unit(1.85, "meter"),
  2206. weight: math.unit(3200, "lb"),
  2207. name: "Full",
  2208. image: {
  2209. source: "./media/characters/fen/full.svg",
  2210. extra: 1133/859,
  2211. bottom: 145/1278
  2212. },
  2213. info: {
  2214. description: {
  2215. mode: "append",
  2216. text: "\n\nMunch."
  2217. }
  2218. }
  2219. },
  2220. gooLounging: {
  2221. height: math.unit(4.53, "feet"),
  2222. weight: math.unit(3000, "lb"),
  2223. preyCapacity: math.unit(6, "people"),
  2224. name: "Goo (Lounging)",
  2225. image: {
  2226. source: "./media/characters/fen/goo-lounging.svg",
  2227. bottom: 116 / 613
  2228. }
  2229. },
  2230. lounging: {
  2231. height: math.unit(10.52, "feet"),
  2232. weight: math.unit(2400, "lb"),
  2233. name: "Lounging",
  2234. image: {
  2235. source: "./media/characters/fen/lounging.svg"
  2236. }
  2237. },
  2238. },
  2239. [
  2240. {
  2241. name: "Small",
  2242. height: math.unit(2.2428, "meter")
  2243. },
  2244. {
  2245. name: "Normal",
  2246. height: math.unit(12, "feet"),
  2247. default: true,
  2248. },
  2249. {
  2250. name: "Big",
  2251. height: math.unit(20, "feet")
  2252. },
  2253. {
  2254. name: "Minimacro",
  2255. height: math.unit(40, "feet"),
  2256. info: {
  2257. description: {
  2258. mode: "append",
  2259. text: "\n\nTOO DAMN BIG"
  2260. }
  2261. }
  2262. },
  2263. {
  2264. name: "Macro",
  2265. height: math.unit(100, "feet"),
  2266. info: {
  2267. description: {
  2268. mode: "append",
  2269. text: "\n\nTOO DAMN BIG"
  2270. }
  2271. }
  2272. },
  2273. {
  2274. name: "Megamacro",
  2275. height: math.unit(2, "miles")
  2276. },
  2277. {
  2278. name: "Gigamacro",
  2279. height: math.unit(10, "earths")
  2280. },
  2281. ]
  2282. ))
  2283. characterMakers.push(() => makeCharacter(
  2284. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2285. {
  2286. front: {
  2287. height: math.unit(183, "cm"),
  2288. weight: math.unit(80, "kg"),
  2289. name: "Front",
  2290. image: {
  2291. source: "./media/characters/sofia-fluttertail/front.svg",
  2292. bottom: 0.01,
  2293. extra: 2154 / 2081
  2294. }
  2295. },
  2296. frontAlt: {
  2297. height: math.unit(183, "cm"),
  2298. weight: math.unit(80, "kg"),
  2299. name: "Front (alt)",
  2300. image: {
  2301. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2302. }
  2303. },
  2304. back: {
  2305. height: math.unit(183, "cm"),
  2306. weight: math.unit(80, "kg"),
  2307. name: "Back",
  2308. image: {
  2309. source: "./media/characters/sofia-fluttertail/back.svg"
  2310. }
  2311. },
  2312. kneeling: {
  2313. height: math.unit(125, "cm"),
  2314. weight: math.unit(80, "kg"),
  2315. name: "Kneeling",
  2316. image: {
  2317. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2318. extra: 1033 / 977,
  2319. bottom: 23.7 / 1057
  2320. }
  2321. },
  2322. maw: {
  2323. height: math.unit(183 / 5, "cm"),
  2324. name: "Maw",
  2325. image: {
  2326. source: "./media/characters/sofia-fluttertail/maw.svg"
  2327. }
  2328. },
  2329. mawcloseup: {
  2330. height: math.unit(183 / 5 * 0.41, "cm"),
  2331. name: "Maw (Closeup)",
  2332. image: {
  2333. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2334. }
  2335. },
  2336. paws: {
  2337. height: math.unit(1.17, "feet"),
  2338. name: "Paws",
  2339. image: {
  2340. source: "./media/characters/sofia-fluttertail/paws.svg",
  2341. extra: 851 / 851,
  2342. bottom: 17 / 868
  2343. }
  2344. },
  2345. },
  2346. [
  2347. {
  2348. name: "Normal",
  2349. height: math.unit(1.83, "meter")
  2350. },
  2351. {
  2352. name: "Size Thief",
  2353. height: math.unit(18, "feet")
  2354. },
  2355. {
  2356. name: "50 Foot Collie",
  2357. height: math.unit(50, "feet")
  2358. },
  2359. {
  2360. name: "Macro",
  2361. height: math.unit(96, "feet"),
  2362. default: true
  2363. },
  2364. {
  2365. name: "Megamerger",
  2366. height: math.unit(650, "feet")
  2367. },
  2368. ]
  2369. ))
  2370. characterMakers.push(() => makeCharacter(
  2371. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2372. {
  2373. front: {
  2374. height: math.unit(7, "feet"),
  2375. weight: math.unit(100, "kg"),
  2376. name: "Front",
  2377. image: {
  2378. source: "./media/characters/march/front.svg",
  2379. extra: 1992/1851,
  2380. bottom: 39/2031
  2381. }
  2382. },
  2383. foot: {
  2384. height: math.unit(0.9, "feet"),
  2385. name: "Foot",
  2386. image: {
  2387. source: "./media/characters/march/foot.svg"
  2388. }
  2389. },
  2390. },
  2391. [
  2392. {
  2393. name: "Normal",
  2394. height: math.unit(7.9, "feet")
  2395. },
  2396. {
  2397. name: "Macro",
  2398. height: math.unit(220, "meters")
  2399. },
  2400. {
  2401. name: "Megamacro",
  2402. height: math.unit(2.98, "km"),
  2403. default: true
  2404. },
  2405. {
  2406. name: "Gigamacro",
  2407. height: math.unit(15963, "km")
  2408. },
  2409. {
  2410. name: "Teramacro",
  2411. height: math.unit(2980000000, "km")
  2412. },
  2413. {
  2414. name: "Examacro",
  2415. height: math.unit(250, "parsecs")
  2416. },
  2417. ]
  2418. ))
  2419. characterMakers.push(() => makeCharacter(
  2420. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2421. {
  2422. front: {
  2423. height: math.unit(6, "feet"),
  2424. weight: math.unit(60, "kg"),
  2425. name: "Front",
  2426. image: {
  2427. source: "./media/characters/noir/front.svg",
  2428. extra: 1,
  2429. bottom: 0.032
  2430. }
  2431. },
  2432. },
  2433. [
  2434. {
  2435. name: "Normal",
  2436. height: math.unit(6.6, "feet")
  2437. },
  2438. {
  2439. name: "Macro",
  2440. height: math.unit(500, "feet")
  2441. },
  2442. {
  2443. name: "Megamacro",
  2444. height: math.unit(2.5, "km"),
  2445. default: true
  2446. },
  2447. {
  2448. name: "Gigamacro",
  2449. height: math.unit(22500, "km")
  2450. },
  2451. {
  2452. name: "Teramacro",
  2453. height: math.unit(2500000000, "km")
  2454. },
  2455. {
  2456. name: "Examacro",
  2457. height: math.unit(200, "parsecs")
  2458. },
  2459. ]
  2460. ))
  2461. characterMakers.push(() => makeCharacter(
  2462. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2463. {
  2464. front: {
  2465. height: math.unit(7, "feet"),
  2466. weight: math.unit(100, "kg"),
  2467. name: "Front",
  2468. image: {
  2469. source: "./media/characters/okuri/front.svg",
  2470. extra: 739/665,
  2471. bottom: 39/778
  2472. }
  2473. },
  2474. back: {
  2475. height: math.unit(7, "feet"),
  2476. weight: math.unit(100, "kg"),
  2477. name: "Back",
  2478. image: {
  2479. source: "./media/characters/okuri/back.svg",
  2480. extra: 734/653,
  2481. bottom: 13/747
  2482. }
  2483. },
  2484. sitting: {
  2485. height: math.unit(2.95, "feet"),
  2486. weight: math.unit(100, "kg"),
  2487. name: "Sitting",
  2488. image: {
  2489. source: "./media/characters/okuri/sitting.svg",
  2490. extra: 370/318,
  2491. bottom: 99/469
  2492. }
  2493. },
  2494. },
  2495. [
  2496. {
  2497. name: "Smallest",
  2498. height: math.unit(5 + 2/12, "feet")
  2499. },
  2500. {
  2501. name: "Smaller",
  2502. height: math.unit(300, "feet")
  2503. },
  2504. {
  2505. name: "Small",
  2506. height: math.unit(1000, "feet")
  2507. },
  2508. {
  2509. name: "Macro",
  2510. height: math.unit(1, "mile")
  2511. },
  2512. {
  2513. name: "Mega Macro (Small)",
  2514. height: math.unit(20, "km")
  2515. },
  2516. {
  2517. name: "Mega Macro (Large)",
  2518. height: math.unit(600, "km")
  2519. },
  2520. {
  2521. name: "Giga Macro",
  2522. height: math.unit(10000, "km")
  2523. },
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(577560, "km"),
  2527. default: true
  2528. },
  2529. {
  2530. name: "Large",
  2531. height: math.unit(4, "galaxies")
  2532. },
  2533. {
  2534. name: "Largest",
  2535. height: math.unit(15, "multiverses")
  2536. },
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2541. {
  2542. front: {
  2543. height: math.unit(7, "feet"),
  2544. weight: math.unit(100, "kg"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/manny/front.svg",
  2548. extra: 1,
  2549. bottom: 0.06
  2550. }
  2551. },
  2552. back: {
  2553. height: math.unit(7, "feet"),
  2554. weight: math.unit(100, "kg"),
  2555. name: "Back",
  2556. image: {
  2557. source: "./media/characters/manny/back.svg",
  2558. extra: 1,
  2559. bottom: 0.014
  2560. }
  2561. },
  2562. },
  2563. [
  2564. {
  2565. name: "Normal",
  2566. height: math.unit(7, "feet"),
  2567. },
  2568. {
  2569. name: "Macro",
  2570. height: math.unit(78, "feet"),
  2571. default: true
  2572. },
  2573. {
  2574. name: "Macro+",
  2575. height: math.unit(300, "meters")
  2576. },
  2577. {
  2578. name: "Macro++",
  2579. height: math.unit(2400, "meters")
  2580. },
  2581. {
  2582. name: "Megamacro",
  2583. height: math.unit(5167, "meters")
  2584. },
  2585. {
  2586. name: "Gigamacro",
  2587. height: math.unit(41769, "miles")
  2588. },
  2589. ]
  2590. ))
  2591. characterMakers.push(() => makeCharacter(
  2592. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2593. {
  2594. front: {
  2595. height: math.unit(7, "feet"),
  2596. weight: math.unit(100, "kg"),
  2597. name: "Front",
  2598. image: {
  2599. source: "./media/characters/adake/front-1.svg"
  2600. }
  2601. },
  2602. frontAlt: {
  2603. height: math.unit(7, "feet"),
  2604. weight: math.unit(100, "kg"),
  2605. name: "Front (Alt)",
  2606. image: {
  2607. source: "./media/characters/adake/front-2.svg",
  2608. extra: 1,
  2609. bottom: 0.01
  2610. }
  2611. },
  2612. back: {
  2613. height: math.unit(7, "feet"),
  2614. weight: math.unit(100, "kg"),
  2615. name: "Back",
  2616. image: {
  2617. source: "./media/characters/adake/back.svg",
  2618. }
  2619. },
  2620. kneel: {
  2621. height: math.unit(5.385, "feet"),
  2622. weight: math.unit(100, "kg"),
  2623. name: "Kneeling",
  2624. image: {
  2625. source: "./media/characters/adake/kneel.svg",
  2626. bottom: 0.052
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(7, "feet"),
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(78, "feet"),
  2638. default: true
  2639. },
  2640. {
  2641. name: "Macro+",
  2642. height: math.unit(300, "meters")
  2643. },
  2644. {
  2645. name: "Macro++",
  2646. height: math.unit(2400, "meters")
  2647. },
  2648. {
  2649. name: "Megamacro",
  2650. height: math.unit(5167, "meters")
  2651. },
  2652. {
  2653. name: "Gigamacro",
  2654. height: math.unit(41769, "miles")
  2655. },
  2656. ]
  2657. ))
  2658. characterMakers.push(() => makeCharacter(
  2659. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2660. {
  2661. front: {
  2662. height: math.unit(1.65, "meters"),
  2663. weight: math.unit(50, "kg"),
  2664. name: "Front",
  2665. image: {
  2666. source: "./media/characters/elijah/front.svg",
  2667. extra: 858 / 830,
  2668. bottom: 95.5 / 953.8559
  2669. }
  2670. },
  2671. back: {
  2672. height: math.unit(1.65, "meters"),
  2673. weight: math.unit(50, "kg"),
  2674. name: "Back",
  2675. image: {
  2676. source: "./media/characters/elijah/back.svg",
  2677. extra: 895 / 850,
  2678. bottom: 5.3 / 897.956
  2679. }
  2680. },
  2681. frontNsfw: {
  2682. height: math.unit(1.65, "meters"),
  2683. weight: math.unit(50, "kg"),
  2684. name: "Front (NSFW)",
  2685. image: {
  2686. source: "./media/characters/elijah/front-nsfw.svg",
  2687. extra: 858 / 830,
  2688. bottom: 95.5 / 953.8559
  2689. }
  2690. },
  2691. backNsfw: {
  2692. height: math.unit(1.65, "meters"),
  2693. weight: math.unit(50, "kg"),
  2694. name: "Back (NSFW)",
  2695. image: {
  2696. source: "./media/characters/elijah/back-nsfw.svg",
  2697. extra: 895 / 850,
  2698. bottom: 5.3 / 897.956
  2699. }
  2700. },
  2701. dick: {
  2702. height: math.unit(1, "feet"),
  2703. name: "Dick",
  2704. image: {
  2705. source: "./media/characters/elijah/dick.svg"
  2706. }
  2707. },
  2708. beakOpen: {
  2709. height: math.unit(1.25, "feet"),
  2710. name: "Beak (Open)",
  2711. image: {
  2712. source: "./media/characters/elijah/beak-open.svg"
  2713. }
  2714. },
  2715. beakShut: {
  2716. height: math.unit(1.25, "feet"),
  2717. name: "Beak (Shut)",
  2718. image: {
  2719. source: "./media/characters/elijah/beak-shut.svg"
  2720. }
  2721. },
  2722. footFlexing: {
  2723. height: math.unit(1.61, "feet"),
  2724. name: "Foot (Flexing)",
  2725. image: {
  2726. source: "./media/characters/elijah/foot-flexing.svg"
  2727. }
  2728. },
  2729. footStepping: {
  2730. height: math.unit(1.44, "feet"),
  2731. name: "Foot (Stepping)",
  2732. image: {
  2733. source: "./media/characters/elijah/foot-stepping.svg"
  2734. }
  2735. },
  2736. plantigradeLeg: {
  2737. height: math.unit(2.34, "feet"),
  2738. name: "Plantigrade Leg",
  2739. image: {
  2740. source: "./media/characters/elijah/plantigrade-leg.svg"
  2741. }
  2742. },
  2743. plantigradeFootLeft: {
  2744. height: math.unit(0.9, "feet"),
  2745. name: "Plantigrade Foot (Left)",
  2746. image: {
  2747. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2748. }
  2749. },
  2750. plantigradeFootRight: {
  2751. height: math.unit(0.9, "feet"),
  2752. name: "Plantigrade Foot (Right)",
  2753. image: {
  2754. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2755. }
  2756. },
  2757. },
  2758. [
  2759. {
  2760. name: "Normal",
  2761. height: math.unit(1.65, "meters")
  2762. },
  2763. {
  2764. name: "Macro",
  2765. height: math.unit(55, "meters"),
  2766. default: true
  2767. },
  2768. {
  2769. name: "Macro+",
  2770. height: math.unit(105, "meters")
  2771. },
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2776. {
  2777. front: {
  2778. height: math.unit(7 + 2/12, "feet"),
  2779. weight: math.unit(320, "kg"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/rai/front.svg",
  2783. extra: 1802/1696,
  2784. bottom: 68/1870
  2785. }
  2786. },
  2787. frontDressed: {
  2788. height: math.unit(7 + 2/12, "feet"),
  2789. weight: math.unit(320, "kg"),
  2790. name: "Front (Dressed)",
  2791. image: {
  2792. source: "./media/characters/rai/front-dressed.svg",
  2793. extra: 1802/1696,
  2794. bottom: 68/1870
  2795. }
  2796. },
  2797. side: {
  2798. height: math.unit(7 + 2/12, "feet"),
  2799. weight: math.unit(320, "kg"),
  2800. name: "Side",
  2801. image: {
  2802. source: "./media/characters/rai/side.svg",
  2803. extra: 1789/1710,
  2804. bottom: 115/1904
  2805. }
  2806. },
  2807. back: {
  2808. height: math.unit(7 + 2/12, "feet"),
  2809. weight: math.unit(320, "kg"),
  2810. name: "Back",
  2811. image: {
  2812. source: "./media/characters/rai/back.svg",
  2813. extra: 1770/1707,
  2814. bottom: 28/1798
  2815. }
  2816. },
  2817. feral: {
  2818. height: math.unit(9.5, "feet"),
  2819. weight: math.unit(640, "kg"),
  2820. name: "Feral",
  2821. image: {
  2822. source: "./media/characters/rai/feral.svg",
  2823. extra: 945/553,
  2824. bottom: 176/1121
  2825. }
  2826. },
  2827. dragon: {
  2828. height: math.unit(23, "feet"),
  2829. weight: math.unit(50000, "lb"),
  2830. name: "Dragon",
  2831. image: {
  2832. source: "./media/characters/rai/dragon.svg",
  2833. extra: 2498 / 2030,
  2834. bottom: 85.2 / 2584
  2835. }
  2836. },
  2837. maw: {
  2838. height: math.unit(1.69, "feet"),
  2839. name: "Maw",
  2840. image: {
  2841. source: "./media/characters/rai/maw.svg"
  2842. }
  2843. },
  2844. },
  2845. [
  2846. {
  2847. name: "Normal",
  2848. height: math.unit(7 + 2/12, "feet")
  2849. },
  2850. {
  2851. name: "Big",
  2852. height: math.unit(11, "feet")
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(302, "feet"),
  2857. default: true
  2858. },
  2859. ]
  2860. ))
  2861. characterMakers.push(() => makeCharacter(
  2862. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2863. {
  2864. frontDressed: {
  2865. height: math.unit(216, "feet"),
  2866. weight: math.unit(7000000, "lb"),
  2867. name: "Front (Dressed)",
  2868. image: {
  2869. source: "./media/characters/jazzy/front-dressed.svg",
  2870. extra: 2738 / 2651,
  2871. bottom: 41.8 / 2786
  2872. }
  2873. },
  2874. backDressed: {
  2875. height: math.unit(216, "feet"),
  2876. weight: math.unit(7000000, "lb"),
  2877. name: "Back (Dressed)",
  2878. image: {
  2879. source: "./media/characters/jazzy/back-dressed.svg",
  2880. extra: 2775 / 2673,
  2881. bottom: 36.8 / 2817
  2882. }
  2883. },
  2884. front: {
  2885. height: math.unit(216, "feet"),
  2886. weight: math.unit(7000000, "lb"),
  2887. name: "Front",
  2888. image: {
  2889. source: "./media/characters/jazzy/front.svg",
  2890. extra: 2738 / 2651,
  2891. bottom: 41.8 / 2786
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(216, "feet"),
  2896. weight: math.unit(7000000, "lb"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/jazzy/back.svg",
  2900. extra: 2775 / 2673,
  2901. bottom: 36.8 / 2817
  2902. }
  2903. },
  2904. maw: {
  2905. height: math.unit(20, "feet"),
  2906. name: "Maw",
  2907. image: {
  2908. source: "./media/characters/jazzy/maw.svg"
  2909. }
  2910. },
  2911. paws: {
  2912. height: math.unit(27.5, "feet"),
  2913. name: "Paws",
  2914. image: {
  2915. source: "./media/characters/jazzy/paws.svg"
  2916. }
  2917. },
  2918. eye: {
  2919. height: math.unit(4.4, "feet"),
  2920. name: "Eye",
  2921. image: {
  2922. source: "./media/characters/jazzy/eye.svg"
  2923. }
  2924. },
  2925. droneOffense: {
  2926. height: math.unit(9.5, "inches"),
  2927. name: "Drone (Offense)",
  2928. image: {
  2929. source: "./media/characters/jazzy/drone-offense.svg"
  2930. }
  2931. },
  2932. droneRecon: {
  2933. height: math.unit(9.5, "inches"),
  2934. name: "Drone (Recon)",
  2935. image: {
  2936. source: "./media/characters/jazzy/drone-recon.svg"
  2937. }
  2938. },
  2939. droneDefense: {
  2940. height: math.unit(9.5, "inches"),
  2941. name: "Drone (Defense)",
  2942. image: {
  2943. source: "./media/characters/jazzy/drone-defense.svg"
  2944. }
  2945. },
  2946. },
  2947. [
  2948. {
  2949. name: "Macro",
  2950. height: math.unit(216, "feet"),
  2951. default: true
  2952. },
  2953. ]
  2954. ))
  2955. characterMakers.push(() => makeCharacter(
  2956. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2957. {
  2958. front: {
  2959. height: math.unit(9 + 6/12, "feet"),
  2960. weight: math.unit(700, "lb"),
  2961. name: "Front",
  2962. image: {
  2963. source: "./media/characters/flamm/front.svg",
  2964. extra: 1751/1632,
  2965. bottom: 46/1797
  2966. }
  2967. },
  2968. buff: {
  2969. height: math.unit(9 + 6/12, "feet"),
  2970. weight: math.unit(950, "lb"),
  2971. name: "Buff",
  2972. image: {
  2973. source: "./media/characters/flamm/buff.svg",
  2974. extra: 3018/2874,
  2975. bottom: 221/3239
  2976. }
  2977. },
  2978. },
  2979. [
  2980. {
  2981. name: "Normal",
  2982. height: math.unit(9.5, "feet")
  2983. },
  2984. {
  2985. name: "Macro",
  2986. height: math.unit(200, "feet"),
  2987. default: true
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(5 + 3/12, "feet"),
  2996. weight: math.unit(60, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/zephiro/front.svg",
  3000. extra: 1873/1761,
  3001. bottom: 147/2020
  3002. }
  3003. },
  3004. side: {
  3005. height: math.unit(5 + 3/12, "feet"),
  3006. weight: math.unit(60, "kg"),
  3007. name: "Side",
  3008. image: {
  3009. source: "./media/characters/zephiro/side.svg",
  3010. extra: 1929/1827,
  3011. bottom: 65/1994
  3012. }
  3013. },
  3014. back: {
  3015. height: math.unit(5 + 3/12, "feet"),
  3016. weight: math.unit(60, "kg"),
  3017. name: "Back",
  3018. image: {
  3019. source: "./media/characters/zephiro/back.svg",
  3020. extra: 1926/1816,
  3021. bottom: 41/1967
  3022. }
  3023. },
  3024. hand: {
  3025. height: math.unit(0.68, "feet"),
  3026. name: "Hand",
  3027. image: {
  3028. source: "./media/characters/zephiro/hand.svg"
  3029. }
  3030. },
  3031. paw: {
  3032. height: math.unit(1, "feet"),
  3033. name: "Paw",
  3034. image: {
  3035. source: "./media/characters/zephiro/paw.svg"
  3036. }
  3037. },
  3038. beans: {
  3039. height: math.unit(0.93, "feet"),
  3040. name: "Beans",
  3041. image: {
  3042. source: "./media/characters/zephiro/beans.svg"
  3043. }
  3044. },
  3045. },
  3046. [
  3047. {
  3048. name: "Micro",
  3049. height: math.unit(3, "inches")
  3050. },
  3051. {
  3052. name: "Normal",
  3053. height: math.unit(5 + 3 / 12, "feet"),
  3054. default: true
  3055. },
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(118, "feet")
  3059. },
  3060. ]
  3061. ))
  3062. characterMakers.push(() => makeCharacter(
  3063. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3064. {
  3065. front: {
  3066. height: math.unit(5, "feet"),
  3067. weight: math.unit(90, "kg"),
  3068. name: "Front",
  3069. image: {
  3070. source: "./media/characters/fory/front.svg",
  3071. extra: 2862 / 2674,
  3072. bottom: 180 / 3043.8
  3073. }
  3074. },
  3075. back: {
  3076. height: math.unit(5, "feet"),
  3077. weight: math.unit(90, "kg"),
  3078. name: "Back",
  3079. image: {
  3080. source: "./media/characters/fory/back.svg",
  3081. extra: 2962 / 2791,
  3082. bottom: 106 / 3071.8
  3083. }
  3084. },
  3085. foot: {
  3086. height: math.unit(2.14, "feet"),
  3087. name: "Foot",
  3088. image: {
  3089. source: "./media/characters/fory/foot.svg"
  3090. }
  3091. },
  3092. },
  3093. [
  3094. {
  3095. name: "Normal",
  3096. height: math.unit(5, "feet")
  3097. },
  3098. {
  3099. name: "Macro",
  3100. height: math.unit(50, "feet"),
  3101. default: true
  3102. },
  3103. {
  3104. name: "Megamacro",
  3105. height: math.unit(10, "miles")
  3106. },
  3107. {
  3108. name: "Gigamacro",
  3109. height: math.unit(5, "earths")
  3110. },
  3111. ]
  3112. ))
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3115. {
  3116. front: {
  3117. height: math.unit(7, "feet"),
  3118. weight: math.unit(90, "kg"),
  3119. name: "Front",
  3120. image: {
  3121. source: "./media/characters/kurrikage/front.svg",
  3122. extra: 1845/1733,
  3123. bottom: 119/1964
  3124. }
  3125. },
  3126. back: {
  3127. height: math.unit(7, "feet"),
  3128. weight: math.unit(90, "kg"),
  3129. name: "Back",
  3130. image: {
  3131. source: "./media/characters/kurrikage/back.svg",
  3132. extra: 1790/1677,
  3133. bottom: 61/1851
  3134. }
  3135. },
  3136. dressed: {
  3137. height: math.unit(7, "feet"),
  3138. weight: math.unit(90, "kg"),
  3139. name: "Dressed",
  3140. image: {
  3141. source: "./media/characters/kurrikage/dressed.svg",
  3142. extra: 1845/1733,
  3143. bottom: 119/1964
  3144. }
  3145. },
  3146. foot: {
  3147. height: math.unit(1.5, "feet"),
  3148. name: "Foot",
  3149. image: {
  3150. source: "./media/characters/kurrikage/foot.svg"
  3151. }
  3152. },
  3153. staff: {
  3154. height: math.unit(6.7, "feet"),
  3155. name: "Staff",
  3156. image: {
  3157. source: "./media/characters/kurrikage/staff.svg"
  3158. }
  3159. },
  3160. peek: {
  3161. height: math.unit(1.05, "feet"),
  3162. name: "Peeking",
  3163. image: {
  3164. source: "./media/characters/kurrikage/peek.svg",
  3165. bottom: 0.08
  3166. }
  3167. },
  3168. },
  3169. [
  3170. {
  3171. name: "Normal",
  3172. height: math.unit(12, "feet"),
  3173. default: true
  3174. },
  3175. {
  3176. name: "Big",
  3177. height: math.unit(20, "feet")
  3178. },
  3179. {
  3180. name: "Macro",
  3181. height: math.unit(500, "feet")
  3182. },
  3183. {
  3184. name: "Megamacro",
  3185. height: math.unit(20, "miles")
  3186. },
  3187. ]
  3188. ))
  3189. characterMakers.push(() => makeCharacter(
  3190. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3191. {
  3192. front: {
  3193. height: math.unit(6, "feet"),
  3194. weight: math.unit(75, "kg"),
  3195. name: "Front",
  3196. image: {
  3197. source: "./media/characters/shingo/front.svg",
  3198. extra: 1900/1825,
  3199. bottom: 82/1982
  3200. }
  3201. },
  3202. side: {
  3203. height: math.unit(6, "feet"),
  3204. weight: math.unit(75, "kg"),
  3205. name: "Side",
  3206. image: {
  3207. source: "./media/characters/shingo/side.svg",
  3208. extra: 1930/1865,
  3209. bottom: 16/1946
  3210. }
  3211. },
  3212. back: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Back",
  3216. image: {
  3217. source: "./media/characters/shingo/back.svg",
  3218. extra: 1922/1852,
  3219. bottom: 16/1938
  3220. }
  3221. },
  3222. frontDressed: {
  3223. height: math.unit(6, "feet"),
  3224. weight: math.unit(150, "lb"),
  3225. name: "Front-dressed",
  3226. image: {
  3227. source: "./media/characters/shingo/front-dressed.svg",
  3228. extra: 1900/1825,
  3229. bottom: 82/1982
  3230. }
  3231. },
  3232. paw: {
  3233. height: math.unit(1.29, "feet"),
  3234. name: "Paw",
  3235. image: {
  3236. source: "./media/characters/shingo/paw.svg"
  3237. }
  3238. },
  3239. hand: {
  3240. height: math.unit(1.07, "feet"),
  3241. name: "Hand",
  3242. image: {
  3243. source: "./media/characters/shingo/hand.svg"
  3244. }
  3245. },
  3246. frontAlt: {
  3247. height: math.unit(6, "feet"),
  3248. weight: math.unit(75, "kg"),
  3249. name: "Front (Alt)",
  3250. image: {
  3251. source: "./media/characters/shingo/front-alt.svg",
  3252. extra: 3511 / 3338,
  3253. bottom: 0.005
  3254. }
  3255. },
  3256. frontAlt2: {
  3257. height: math.unit(6, "feet"),
  3258. weight: math.unit(75, "kg"),
  3259. name: "Front (Alt 2)",
  3260. image: {
  3261. source: "./media/characters/shingo/front-alt-2.svg",
  3262. extra: 706/681,
  3263. bottom: 11/717
  3264. }
  3265. },
  3266. pawAlt: {
  3267. height: math.unit(1, "feet"),
  3268. name: "Paw (Alt)",
  3269. image: {
  3270. source: "./media/characters/shingo/paw-alt.svg"
  3271. }
  3272. },
  3273. },
  3274. [
  3275. {
  3276. name: "Micro",
  3277. height: math.unit(4, "inches")
  3278. },
  3279. {
  3280. name: "Normal",
  3281. height: math.unit(6, "feet"),
  3282. default: true
  3283. },
  3284. {
  3285. name: "Macro",
  3286. height: math.unit(108, "feet")
  3287. },
  3288. {
  3289. name: "Macro+",
  3290. height: math.unit(1500, "feet")
  3291. },
  3292. ]
  3293. ))
  3294. characterMakers.push(() => makeCharacter(
  3295. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3296. {
  3297. side: {
  3298. height: math.unit(6, "feet"),
  3299. weight: math.unit(75, "kg"),
  3300. name: "Side",
  3301. image: {
  3302. source: "./media/characters/aigey/side.svg"
  3303. }
  3304. },
  3305. },
  3306. [
  3307. {
  3308. name: "Macro",
  3309. height: math.unit(200, "feet"),
  3310. default: true
  3311. },
  3312. {
  3313. name: "Megamacro",
  3314. height: math.unit(100, "miles")
  3315. },
  3316. ]
  3317. )
  3318. )
  3319. characterMakers.push(() => makeCharacter(
  3320. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3321. {
  3322. front: {
  3323. height: math.unit(5 + 5 / 12, "feet"),
  3324. weight: math.unit(75, "kg"),
  3325. name: "Front",
  3326. image: {
  3327. source: "./media/characters/natasha/front.svg",
  3328. extra: 859 / 824,
  3329. bottom: 23 / 879.6
  3330. }
  3331. },
  3332. frontNsfw: {
  3333. height: math.unit(5 + 5 / 12, "feet"),
  3334. weight: math.unit(75, "kg"),
  3335. name: "Front (NSFW)",
  3336. image: {
  3337. source: "./media/characters/natasha/front-nsfw.svg",
  3338. extra: 859 / 824,
  3339. bottom: 23 / 879.6
  3340. }
  3341. },
  3342. frontErect: {
  3343. height: math.unit(5 + 5 / 12, "feet"),
  3344. weight: math.unit(75, "kg"),
  3345. name: "Front (Erect)",
  3346. image: {
  3347. source: "./media/characters/natasha/front-erect.svg",
  3348. extra: 859 / 824,
  3349. bottom: 23 / 879.6
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(5 + 5 / 12, "feet"),
  3354. weight: math.unit(75, "kg"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/natasha/back.svg",
  3358. extra: 887.9 / 852.6,
  3359. bottom: 9.7 / 896.4
  3360. }
  3361. },
  3362. backAlt: {
  3363. height: math.unit(5 + 5 / 12, "feet"),
  3364. weight: math.unit(75, "kg"),
  3365. name: "Back (Alt)",
  3366. image: {
  3367. source: "./media/characters/natasha/back-alt.svg",
  3368. extra: 1236.7 / 1192,
  3369. bottom: 22.3 / 1258.2
  3370. }
  3371. },
  3372. dick: {
  3373. height: math.unit(1.772, "feet"),
  3374. name: "Dick",
  3375. image: {
  3376. source: "./media/characters/natasha/dick.svg"
  3377. }
  3378. },
  3379. paw: {
  3380. height: math.unit(0.250, "meters"),
  3381. name: "Paw",
  3382. image: {
  3383. source: "./media/characters/natasha/paw.svg"
  3384. },
  3385. extraAttributes: {
  3386. "toeSize": {
  3387. name: "Toe Size",
  3388. power: 2,
  3389. type: "area",
  3390. base: math.unit(0.0024, "m^2")
  3391. },
  3392. "padSize": {
  3393. name: "Pad Size",
  3394. power: 2,
  3395. type: "area",
  3396. base: math.unit(0.00889, "m^2")
  3397. },
  3398. "pawSize": {
  3399. name: "Paw Size",
  3400. power: 2,
  3401. type: "area",
  3402. base: math.unit(0.023667, "m^2")
  3403. },
  3404. }
  3405. },
  3406. },
  3407. [
  3408. {
  3409. name: "Shortstack",
  3410. height: math.unit(3, "feet"),
  3411. default: true
  3412. },
  3413. {
  3414. name: "Normal",
  3415. height: math.unit(5 + 5 / 12, "feet")
  3416. },
  3417. {
  3418. name: "Large",
  3419. height: math.unit(12, "feet")
  3420. },
  3421. {
  3422. name: "Macro",
  3423. height: math.unit(100, "feet")
  3424. },
  3425. {
  3426. name: "Macro+",
  3427. height: math.unit(260, "feet")
  3428. },
  3429. {
  3430. name: "Macro++",
  3431. height: math.unit(1, "mile")
  3432. },
  3433. ]
  3434. ))
  3435. characterMakers.push(() => makeCharacter(
  3436. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3437. {
  3438. front: {
  3439. height: math.unit(6, "feet"),
  3440. weight: math.unit(75, "kg"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/malik/front.svg",
  3444. extra: 1750/1561,
  3445. bottom: 80/1830
  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. side: {
  3463. height: math.unit(6, "feet"),
  3464. weight: math.unit(75, "kg"),
  3465. name: "Side",
  3466. image: {
  3467. source: "./media/characters/malik/side.svg",
  3468. extra: 1802/1685,
  3469. bottom: 42/1844
  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. back: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(75, "kg"),
  3489. name: "Back",
  3490. image: {
  3491. source: "./media/characters/malik/back.svg",
  3492. extra: 1803/1607,
  3493. bottom: 33/1836
  3494. },
  3495. extraAttributes: {
  3496. "toeSize": {
  3497. name: "Toe Size",
  3498. power: 2,
  3499. type: "area",
  3500. base: math.unit(0.0159, "m^2")
  3501. },
  3502. "pawSize": {
  3503. name: "Paw Size",
  3504. power: 2,
  3505. type: "area",
  3506. base: math.unit(0.09834, "m^2")
  3507. },
  3508. }
  3509. },
  3510. },
  3511. [
  3512. {
  3513. name: "Macro",
  3514. height: math.unit(156, "feet"),
  3515. default: true
  3516. },
  3517. {
  3518. name: "Macro+",
  3519. height: math.unit(1188, "feet")
  3520. },
  3521. ]
  3522. ))
  3523. characterMakers.push(() => makeCharacter(
  3524. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3525. {
  3526. front: {
  3527. height: math.unit(6, "feet"),
  3528. weight: math.unit(75, "kg"),
  3529. name: "Front",
  3530. image: {
  3531. source: "./media/characters/sefer/front.svg",
  3532. extra: 848 / 659,
  3533. bottom: 28.3 / 876.442
  3534. }
  3535. },
  3536. back: {
  3537. height: math.unit(6, "feet"),
  3538. weight: math.unit(75, "kg"),
  3539. name: "Back",
  3540. image: {
  3541. source: "./media/characters/sefer/back.svg",
  3542. extra: 864 / 695,
  3543. bottom: 10 / 871
  3544. }
  3545. },
  3546. frontDressed: {
  3547. height: math.unit(6, "feet"),
  3548. weight: math.unit(75, "kg"),
  3549. name: "Dressed",
  3550. image: {
  3551. source: "./media/characters/sefer/dressed.svg",
  3552. extra: 839 / 653,
  3553. bottom: 37.6 / 878
  3554. }
  3555. },
  3556. },
  3557. [
  3558. {
  3559. name: "Normal",
  3560. height: math.unit(6, "feet"),
  3561. default: true
  3562. },
  3563. {
  3564. name: "Big",
  3565. height: math.unit(8, "meters")
  3566. },
  3567. ]
  3568. ))
  3569. characterMakers.push(() => makeCharacter(
  3570. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3571. {
  3572. body: {
  3573. height: math.unit(2.2428, "meter"),
  3574. weight: math.unit(124.738, "kg"),
  3575. name: "Body",
  3576. image: {
  3577. extra: 1225 / 1050,
  3578. source: "./media/characters/north/front.svg"
  3579. }
  3580. }
  3581. },
  3582. [
  3583. {
  3584. name: "Micro",
  3585. height: math.unit(4, "inches")
  3586. },
  3587. {
  3588. name: "Macro",
  3589. height: math.unit(63, "meters")
  3590. },
  3591. {
  3592. name: "Megamacro",
  3593. height: math.unit(101, "miles"),
  3594. default: true
  3595. }
  3596. ]
  3597. ))
  3598. characterMakers.push(() => makeCharacter(
  3599. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3600. {
  3601. angled: {
  3602. height: math.unit(4, "meter"),
  3603. weight: math.unit(150, "kg"),
  3604. name: "Angled",
  3605. image: {
  3606. source: "./media/characters/talan/angled-sfw.svg",
  3607. bottom: 29 / 3734
  3608. }
  3609. },
  3610. angledNsfw: {
  3611. height: math.unit(4, "meter"),
  3612. weight: math.unit(150, "kg"),
  3613. name: "Angled (NSFW)",
  3614. image: {
  3615. source: "./media/characters/talan/angled-nsfw.svg",
  3616. bottom: 29 / 3734
  3617. }
  3618. },
  3619. frontNsfw: {
  3620. height: math.unit(4, "meter"),
  3621. weight: math.unit(150, "kg"),
  3622. name: "Front (NSFW)",
  3623. image: {
  3624. source: "./media/characters/talan/front-nsfw.svg",
  3625. bottom: 29 / 3734
  3626. }
  3627. },
  3628. sideNsfw: {
  3629. height: math.unit(4, "meter"),
  3630. weight: math.unit(150, "kg"),
  3631. name: "Side (NSFW)",
  3632. image: {
  3633. source: "./media/characters/talan/side-nsfw.svg",
  3634. bottom: 29 / 3734
  3635. }
  3636. },
  3637. back: {
  3638. height: math.unit(4, "meter"),
  3639. weight: math.unit(150, "kg"),
  3640. name: "Back",
  3641. image: {
  3642. source: "./media/characters/talan/back.svg"
  3643. }
  3644. },
  3645. dickBottom: {
  3646. height: math.unit(0.621, "meter"),
  3647. name: "Dick (Bottom)",
  3648. image: {
  3649. source: "./media/characters/talan/dick-bottom.svg"
  3650. }
  3651. },
  3652. dickTop: {
  3653. height: math.unit(0.621, "meter"),
  3654. name: "Dick (Top)",
  3655. image: {
  3656. source: "./media/characters/talan/dick-top.svg"
  3657. }
  3658. },
  3659. dickSide: {
  3660. height: math.unit(0.305, "meter"),
  3661. name: "Dick (Side)",
  3662. image: {
  3663. source: "./media/characters/talan/dick-side.svg"
  3664. }
  3665. },
  3666. dickFront: {
  3667. height: math.unit(0.305, "meter"),
  3668. name: "Dick (Front)",
  3669. image: {
  3670. source: "./media/characters/talan/dick-front.svg"
  3671. }
  3672. },
  3673. },
  3674. [
  3675. {
  3676. name: "Normal",
  3677. height: math.unit(4, "meters")
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(100, "meters")
  3682. },
  3683. {
  3684. name: "Megamacro",
  3685. height: math.unit(2, "miles"),
  3686. default: true
  3687. },
  3688. {
  3689. name: "Gigamacro",
  3690. height: math.unit(5000, "miles")
  3691. },
  3692. {
  3693. name: "Teramacro",
  3694. height: math.unit(100, "parsecs")
  3695. }
  3696. ]
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(2, "meter"),
  3703. weight: math.unit(90, "kg"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/gael'rathus/front.svg"
  3707. }
  3708. },
  3709. frontAlt: {
  3710. height: math.unit(2, "meter"),
  3711. weight: math.unit(90, "kg"),
  3712. name: "Front (alt)",
  3713. image: {
  3714. source: "./media/characters/gael'rathus/front-alt.svg"
  3715. }
  3716. },
  3717. frontAlt2: {
  3718. height: math.unit(2, "meter"),
  3719. weight: math.unit(90, "kg"),
  3720. name: "Front (alt 2)",
  3721. image: {
  3722. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3723. }
  3724. }
  3725. },
  3726. [
  3727. {
  3728. name: "Normal",
  3729. height: math.unit(9, "feet"),
  3730. default: true
  3731. },
  3732. {
  3733. name: "Large",
  3734. height: math.unit(25, "feet")
  3735. },
  3736. {
  3737. name: "Macro",
  3738. height: math.unit(0.25, "miles")
  3739. },
  3740. {
  3741. name: "Megamacro",
  3742. height: math.unit(10, "miles")
  3743. }
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3748. {
  3749. side: {
  3750. height: math.unit(2, "meter"),
  3751. weight: math.unit(140, "kg"),
  3752. name: "Side",
  3753. image: {
  3754. source: "./media/characters/sosha/side.svg",
  3755. extra: 1170/1006,
  3756. bottom: 94/1264
  3757. }
  3758. },
  3759. maw: {
  3760. height: math.unit(2.87, "feet"),
  3761. name: "Maw",
  3762. image: {
  3763. source: "./media/characters/sosha/maw.svg",
  3764. extra: 966/865,
  3765. bottom: 0/966
  3766. }
  3767. },
  3768. cooch: {
  3769. height: math.unit(5.6, "feet"),
  3770. name: "Cooch",
  3771. image: {
  3772. source: "./media/characters/sosha/cooch.svg"
  3773. }
  3774. },
  3775. },
  3776. [
  3777. {
  3778. name: "Normal",
  3779. height: math.unit(12, "feet"),
  3780. default: true
  3781. }
  3782. ]
  3783. ))
  3784. characterMakers.push(() => makeCharacter(
  3785. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3786. {
  3787. side: {
  3788. height: math.unit(5 + 5 / 12, "feet"),
  3789. weight: math.unit(170, "kg"),
  3790. name: "Side",
  3791. image: {
  3792. source: "./media/characters/runnola/side.svg",
  3793. extra: 741 / 448,
  3794. bottom: 0.05
  3795. }
  3796. },
  3797. },
  3798. [
  3799. {
  3800. name: "Small",
  3801. height: math.unit(3, "feet")
  3802. },
  3803. {
  3804. name: "Normal",
  3805. height: math.unit(5 + 5 / 12, "feet"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "Big",
  3810. height: math.unit(10, "feet")
  3811. },
  3812. ]
  3813. ))
  3814. characterMakers.push(() => makeCharacter(
  3815. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3816. {
  3817. front: {
  3818. height: math.unit(2, "meter"),
  3819. weight: math.unit(50, "kg"),
  3820. name: "Front",
  3821. image: {
  3822. source: "./media/characters/kurribird/front.svg",
  3823. bottom: 0.015
  3824. }
  3825. },
  3826. frontAlt: {
  3827. height: math.unit(1.5, "meter"),
  3828. weight: math.unit(50, "kg"),
  3829. name: "Front (Alt)",
  3830. image: {
  3831. source: "./media/characters/kurribird/front-alt.svg",
  3832. extra: 1.45
  3833. }
  3834. },
  3835. },
  3836. [
  3837. {
  3838. name: "Normal",
  3839. height: math.unit(7, "feet")
  3840. },
  3841. {
  3842. name: "Big",
  3843. height: math.unit(12, "feet"),
  3844. default: true
  3845. },
  3846. {
  3847. name: "Macro",
  3848. height: math.unit(1500, "feet")
  3849. },
  3850. {
  3851. name: "Megamacro",
  3852. height: math.unit(2, "miles")
  3853. }
  3854. ]
  3855. ))
  3856. characterMakers.push(() => makeCharacter(
  3857. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3858. {
  3859. front: {
  3860. height: math.unit(2, "meter"),
  3861. weight: math.unit(80, "kg"),
  3862. name: "Front",
  3863. image: {
  3864. source: "./media/characters/elbial/front.svg",
  3865. extra: 1643 / 1556,
  3866. bottom: 60.2 / 1696
  3867. }
  3868. },
  3869. side: {
  3870. height: math.unit(2, "meter"),
  3871. weight: math.unit(80, "kg"),
  3872. name: "Side",
  3873. image: {
  3874. source: "./media/characters/elbial/side.svg",
  3875. extra: 1601/1528,
  3876. bottom: 97/1698
  3877. }
  3878. },
  3879. back: {
  3880. height: math.unit(2, "meter"),
  3881. weight: math.unit(80, "kg"),
  3882. name: "Back",
  3883. image: {
  3884. source: "./media/characters/elbial/back.svg",
  3885. extra: 1653/1569,
  3886. bottom: 20/1673
  3887. }
  3888. },
  3889. frontDressed: {
  3890. height: math.unit(2, "meter"),
  3891. weight: math.unit(80, "kg"),
  3892. name: "Front (Dressed)",
  3893. image: {
  3894. source: "./media/characters/elbial/front-dressed.svg",
  3895. extra: 1638/1569,
  3896. bottom: 70/1708
  3897. }
  3898. },
  3899. genitals: {
  3900. height: math.unit(2 / 3.367, "meter"),
  3901. name: "Genitals",
  3902. image: {
  3903. source: "./media/characters/elbial/genitals.svg"
  3904. }
  3905. },
  3906. },
  3907. [
  3908. {
  3909. name: "Large",
  3910. height: math.unit(100, "feet")
  3911. },
  3912. {
  3913. name: "Macro",
  3914. height: math.unit(500, "feet"),
  3915. default: true
  3916. },
  3917. {
  3918. name: "Megamacro",
  3919. height: math.unit(10, "miles")
  3920. },
  3921. {
  3922. name: "Gigamacro",
  3923. height: math.unit(25000, "miles")
  3924. },
  3925. {
  3926. name: "Full-Size",
  3927. height: math.unit(8000000, "gigaparsecs")
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3933. {
  3934. front: {
  3935. height: math.unit(2, "meter"),
  3936. weight: math.unit(60, "kg"),
  3937. name: "Front",
  3938. image: {
  3939. source: "./media/characters/noah/front.svg"
  3940. }
  3941. },
  3942. talons: {
  3943. height: math.unit(0.315, "meter"),
  3944. name: "Talons",
  3945. image: {
  3946. source: "./media/characters/noah/talons.svg"
  3947. }
  3948. }
  3949. },
  3950. [
  3951. {
  3952. name: "Large",
  3953. height: math.unit(50, "feet")
  3954. },
  3955. {
  3956. name: "Macro",
  3957. height: math.unit(750, "feet"),
  3958. default: true
  3959. },
  3960. {
  3961. name: "Megamacro",
  3962. height: math.unit(50, "miles")
  3963. },
  3964. {
  3965. name: "Gigamacro",
  3966. height: math.unit(100000, "miles")
  3967. },
  3968. {
  3969. name: "Full-Size",
  3970. height: math.unit(3000000000, "miles")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(2, "meter"),
  3979. weight: math.unit(80, "kg"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/natalya/front.svg"
  3983. }
  3984. },
  3985. back: {
  3986. height: math.unit(2, "meter"),
  3987. weight: math.unit(80, "kg"),
  3988. name: "Back",
  3989. image: {
  3990. source: "./media/characters/natalya/back.svg"
  3991. }
  3992. }
  3993. },
  3994. [
  3995. {
  3996. name: "Normal",
  3997. height: math.unit(150, "feet"),
  3998. default: true
  3999. },
  4000. {
  4001. name: "Megamacro",
  4002. height: math.unit(5, "miles")
  4003. },
  4004. {
  4005. name: "Full-Size",
  4006. height: math.unit(600, "kiloparsecs")
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(2, "meter"),
  4015. weight: math.unit(50, "kg"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/erestrebah/front.svg",
  4019. extra: 1262/1162,
  4020. bottom: 96/1358
  4021. }
  4022. },
  4023. back: {
  4024. height: math.unit(2, "meter"),
  4025. weight: math.unit(50, "kg"),
  4026. name: "Back",
  4027. image: {
  4028. source: "./media/characters/erestrebah/back.svg",
  4029. extra: 1257/1139,
  4030. bottom: 13/1270
  4031. }
  4032. },
  4033. wing: {
  4034. height: math.unit(2, "meter"),
  4035. weight: math.unit(50, "kg"),
  4036. name: "Wing",
  4037. image: {
  4038. source: "./media/characters/erestrebah/wing.svg",
  4039. extra: 1262/1162,
  4040. bottom: 96/1358
  4041. }
  4042. },
  4043. mouth: {
  4044. height: math.unit(0.39, "feet"),
  4045. name: "Mouth",
  4046. image: {
  4047. source: "./media/characters/erestrebah/mouth.svg"
  4048. }
  4049. }
  4050. },
  4051. [
  4052. {
  4053. name: "Normal",
  4054. height: math.unit(10, "feet")
  4055. },
  4056. {
  4057. name: "Large",
  4058. height: math.unit(50, "feet"),
  4059. default: true
  4060. },
  4061. {
  4062. name: "Macro",
  4063. height: math.unit(300, "feet")
  4064. },
  4065. {
  4066. name: "Macro+",
  4067. height: math.unit(750, "feet")
  4068. },
  4069. {
  4070. name: "Megamacro",
  4071. height: math.unit(3, "miles")
  4072. }
  4073. ]
  4074. ))
  4075. characterMakers.push(() => makeCharacter(
  4076. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4077. {
  4078. front: {
  4079. height: math.unit(2, "meter"),
  4080. weight: math.unit(80, "kg"),
  4081. name: "Front",
  4082. image: {
  4083. source: "./media/characters/jennifer/front.svg",
  4084. bottom: 0.11,
  4085. extra: 1.16
  4086. }
  4087. },
  4088. frontAlt: {
  4089. height: math.unit(2, "meter"),
  4090. weight: math.unit(80, "kg"),
  4091. name: "Front (Alt)",
  4092. image: {
  4093. source: "./media/characters/jennifer/front-alt.svg"
  4094. }
  4095. }
  4096. },
  4097. [
  4098. {
  4099. name: "Canon Height",
  4100. height: math.unit(120, "feet"),
  4101. default: true
  4102. },
  4103. {
  4104. name: "Macro+",
  4105. height: math.unit(300, "feet")
  4106. },
  4107. {
  4108. name: "Megamacro",
  4109. height: math.unit(20000, "feet")
  4110. }
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4115. {
  4116. front: {
  4117. height: math.unit(2, "meter"),
  4118. weight: math.unit(50, "kg"),
  4119. name: "Front",
  4120. image: {
  4121. source: "./media/characters/kalista/front.svg",
  4122. extra: 1314/1145,
  4123. bottom: 101/1415
  4124. }
  4125. },
  4126. back: {
  4127. height: math.unit(2, "meter"),
  4128. weight: math.unit(50, "kg"),
  4129. name: "Back",
  4130. image: {
  4131. source: "./media/characters/kalista/back.svg",
  4132. extra: 1366 / 1156,
  4133. bottom: 33.9 / 1362.78
  4134. }
  4135. }
  4136. },
  4137. [
  4138. {
  4139. name: "Uncomfortably Small",
  4140. height: math.unit(10, "feet")
  4141. },
  4142. {
  4143. name: "Small",
  4144. height: math.unit(30, "feet")
  4145. },
  4146. {
  4147. name: "Macro",
  4148. height: math.unit(100, "feet"),
  4149. default: true
  4150. },
  4151. {
  4152. name: "Macro+",
  4153. height: math.unit(2000, "feet")
  4154. },
  4155. {
  4156. name: "True Form",
  4157. height: math.unit(8924, "miles")
  4158. }
  4159. ]
  4160. ))
  4161. characterMakers.push(() => makeCharacter(
  4162. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4163. {
  4164. front: {
  4165. height: math.unit(2, "meter"),
  4166. weight: math.unit(120, "kg"),
  4167. name: "Front",
  4168. image: {
  4169. source: "./media/characters/ggv/front.svg"
  4170. }
  4171. },
  4172. side: {
  4173. height: math.unit(2, "meter"),
  4174. weight: math.unit(120, "kg"),
  4175. name: "Side",
  4176. image: {
  4177. source: "./media/characters/ggv/side.svg"
  4178. }
  4179. }
  4180. },
  4181. [
  4182. {
  4183. name: "Extremely Puny",
  4184. height: math.unit(9 + 5 / 12, "feet")
  4185. },
  4186. {
  4187. name: "Horribly Small",
  4188. height: math.unit(47.7, "miles"),
  4189. default: true
  4190. },
  4191. {
  4192. name: "Reasonably Sized",
  4193. height: math.unit(25000, "parsecs")
  4194. },
  4195. {
  4196. name: "Slightly Uncompressed",
  4197. height: math.unit(7.77e31, "parsecs")
  4198. },
  4199. {
  4200. name: "Omniversal",
  4201. height: math.unit(1e300, "meters")
  4202. },
  4203. ]
  4204. ))
  4205. characterMakers.push(() => makeCharacter(
  4206. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4207. {
  4208. front: {
  4209. height: math.unit(2, "meter"),
  4210. weight: math.unit(75, "lb"),
  4211. name: "Front",
  4212. image: {
  4213. source: "./media/characters/napalm/front.svg"
  4214. }
  4215. },
  4216. back: {
  4217. height: math.unit(2, "meter"),
  4218. weight: math.unit(75, "lb"),
  4219. name: "Back",
  4220. image: {
  4221. source: "./media/characters/napalm/back.svg"
  4222. }
  4223. }
  4224. },
  4225. [
  4226. {
  4227. name: "Standard",
  4228. height: math.unit(55, "feet"),
  4229. default: true
  4230. }
  4231. ]
  4232. ))
  4233. characterMakers.push(() => makeCharacter(
  4234. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4235. {
  4236. front: {
  4237. height: math.unit(7 + 5 / 6, "feet"),
  4238. weight: math.unit(325, "lb"),
  4239. name: "Front",
  4240. image: {
  4241. source: "./media/characters/asana/front.svg",
  4242. extra: 1133 / 1060,
  4243. bottom: 15.2 / 1148.6
  4244. }
  4245. },
  4246. back: {
  4247. height: math.unit(7 + 5 / 6, "feet"),
  4248. weight: math.unit(325, "lb"),
  4249. name: "Back",
  4250. image: {
  4251. source: "./media/characters/asana/back.svg",
  4252. extra: 1114 / 1043,
  4253. bottom: 5 / 1120
  4254. }
  4255. },
  4256. dressedDark: {
  4257. height: math.unit(7 + 5 / 6, "feet"),
  4258. weight: math.unit(325, "lb"),
  4259. name: "Dressed (Dark)",
  4260. image: {
  4261. source: "./media/characters/asana/dressed-dark.svg",
  4262. extra: 1133 / 1060,
  4263. bottom: 15.2 / 1148.6
  4264. }
  4265. },
  4266. dressedLight: {
  4267. height: math.unit(7 + 5 / 6, "feet"),
  4268. weight: math.unit(325, "lb"),
  4269. name: "Dressed (Light)",
  4270. image: {
  4271. source: "./media/characters/asana/dressed-light.svg",
  4272. extra: 1133 / 1060,
  4273. bottom: 15.2 / 1148.6
  4274. }
  4275. },
  4276. },
  4277. [
  4278. {
  4279. name: "Standard",
  4280. height: math.unit(7 + 5 / 6, "feet"),
  4281. default: true
  4282. },
  4283. {
  4284. name: "Large",
  4285. height: math.unit(10, "meters")
  4286. },
  4287. {
  4288. name: "Macro",
  4289. height: math.unit(2500, "meters")
  4290. },
  4291. {
  4292. name: "Megamacro",
  4293. height: math.unit(5e6, "meters")
  4294. },
  4295. {
  4296. name: "Examacro",
  4297. height: math.unit(5e12, "lightyears")
  4298. },
  4299. {
  4300. name: "Max Size",
  4301. height: math.unit(1e31, "lightyears")
  4302. }
  4303. ]
  4304. ))
  4305. characterMakers.push(() => makeCharacter(
  4306. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4307. {
  4308. front: {
  4309. height: math.unit(2, "meter"),
  4310. weight: math.unit(60, "kg"),
  4311. name: "Front",
  4312. image: {
  4313. source: "./media/characters/ebony/front.svg",
  4314. bottom: 0.03,
  4315. extra: 1045 / 810 + 0.03
  4316. }
  4317. },
  4318. side: {
  4319. height: math.unit(2, "meter"),
  4320. weight: math.unit(60, "kg"),
  4321. name: "Side",
  4322. image: {
  4323. source: "./media/characters/ebony/side.svg",
  4324. bottom: 0.03,
  4325. extra: 1045 / 810 + 0.03
  4326. }
  4327. },
  4328. back: {
  4329. height: math.unit(2, "meter"),
  4330. weight: math.unit(60, "kg"),
  4331. name: "Back",
  4332. image: {
  4333. source: "./media/characters/ebony/back.svg",
  4334. bottom: 0.01,
  4335. extra: 1045 / 810 + 0.01
  4336. }
  4337. },
  4338. },
  4339. [
  4340. // TODO check why I did this lol
  4341. {
  4342. name: "Standard",
  4343. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4344. default: true
  4345. },
  4346. {
  4347. name: "Macro",
  4348. height: math.unit(200, "feet")
  4349. },
  4350. {
  4351. name: "Gigamacro",
  4352. height: math.unit(13000, "km")
  4353. }
  4354. ]
  4355. ))
  4356. characterMakers.push(() => makeCharacter(
  4357. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4358. {
  4359. front: {
  4360. height: math.unit(6, "feet"),
  4361. weight: math.unit(175, "lb"),
  4362. name: "Front",
  4363. image: {
  4364. source: "./media/characters/mountain/front.svg",
  4365. extra: 972 / 955,
  4366. bottom: 64 / 1036.6
  4367. }
  4368. },
  4369. back: {
  4370. height: math.unit(6, "feet"),
  4371. weight: math.unit(175, "lb"),
  4372. name: "Back",
  4373. image: {
  4374. source: "./media/characters/mountain/back.svg",
  4375. extra: 970 / 950,
  4376. bottom: 28.25 / 999
  4377. }
  4378. },
  4379. },
  4380. [
  4381. {
  4382. name: "Large",
  4383. height: math.unit(20, "meters")
  4384. },
  4385. {
  4386. name: "Macro",
  4387. height: math.unit(300, "meters")
  4388. },
  4389. {
  4390. name: "Gigamacro",
  4391. height: math.unit(10000, "km"),
  4392. default: true
  4393. },
  4394. {
  4395. name: "Examacro",
  4396. height: math.unit(10e9, "lightyears")
  4397. }
  4398. ]
  4399. ))
  4400. characterMakers.push(() => makeCharacter(
  4401. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4402. {
  4403. front: {
  4404. height: math.unit(8, "feet"),
  4405. weight: math.unit(500, "lb"),
  4406. name: "Front",
  4407. image: {
  4408. source: "./media/characters/rick/front.svg"
  4409. }
  4410. }
  4411. },
  4412. [
  4413. {
  4414. name: "Normal",
  4415. height: math.unit(8, "feet"),
  4416. default: true
  4417. },
  4418. {
  4419. name: "Macro",
  4420. height: math.unit(5, "km")
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4426. {
  4427. front: {
  4428. height: math.unit(8, "feet"),
  4429. weight: math.unit(120, "lb"),
  4430. name: "Front",
  4431. image: {
  4432. source: "./media/characters/ona/front.svg"
  4433. }
  4434. },
  4435. frontAlt: {
  4436. height: math.unit(8, "feet"),
  4437. weight: math.unit(120, "lb"),
  4438. name: "Front (Alt)",
  4439. image: {
  4440. source: "./media/characters/ona/front-alt.svg"
  4441. }
  4442. },
  4443. back: {
  4444. height: math.unit(8, "feet"),
  4445. weight: math.unit(120, "lb"),
  4446. name: "Back",
  4447. image: {
  4448. source: "./media/characters/ona/back.svg"
  4449. }
  4450. },
  4451. foot: {
  4452. height: math.unit(1.1, "feet"),
  4453. name: "Foot",
  4454. image: {
  4455. source: "./media/characters/ona/foot.svg"
  4456. }
  4457. }
  4458. },
  4459. [
  4460. {
  4461. name: "Megamacro",
  4462. height: math.unit(70, "km"),
  4463. default: true
  4464. },
  4465. {
  4466. name: "Gigamacro",
  4467. height: math.unit(681818, "miles")
  4468. },
  4469. {
  4470. name: "Examacro",
  4471. height: math.unit(3800000, "lightyears")
  4472. },
  4473. ]
  4474. ))
  4475. characterMakers.push(() => makeCharacter(
  4476. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4477. {
  4478. front: {
  4479. height: math.unit(12, "feet"),
  4480. weight: math.unit(3000, "lb"),
  4481. name: "Front",
  4482. image: {
  4483. source: "./media/characters/mech/front.svg",
  4484. extra: 2900 / 2770,
  4485. bottom: 110 / 3010
  4486. }
  4487. },
  4488. back: {
  4489. height: math.unit(12, "feet"),
  4490. weight: math.unit(3000, "lb"),
  4491. name: "Back",
  4492. image: {
  4493. source: "./media/characters/mech/back.svg",
  4494. extra: 3011 / 2890,
  4495. bottom: 94 / 3105
  4496. }
  4497. },
  4498. maw: {
  4499. height: math.unit(3.07, "feet"),
  4500. name: "Maw",
  4501. image: {
  4502. source: "./media/characters/mech/maw.svg"
  4503. }
  4504. },
  4505. head: {
  4506. height: math.unit(3.07, "feet"),
  4507. name: "Head",
  4508. image: {
  4509. source: "./media/characters/mech/head.svg"
  4510. }
  4511. },
  4512. dick: {
  4513. height: math.unit(1.43, "feet"),
  4514. name: "Dick",
  4515. image: {
  4516. source: "./media/characters/mech/dick.svg"
  4517. }
  4518. },
  4519. },
  4520. [
  4521. {
  4522. name: "Normal",
  4523. height: math.unit(12, "feet")
  4524. },
  4525. {
  4526. name: "Macro",
  4527. height: math.unit(300, "feet"),
  4528. default: true
  4529. },
  4530. {
  4531. name: "Macro+",
  4532. height: math.unit(1500, "feet")
  4533. },
  4534. ]
  4535. ))
  4536. characterMakers.push(() => makeCharacter(
  4537. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4538. {
  4539. front: {
  4540. height: math.unit(1.3, "meter"),
  4541. weight: math.unit(30, "kg"),
  4542. name: "Front",
  4543. image: {
  4544. source: "./media/characters/gregory/front.svg",
  4545. }
  4546. }
  4547. },
  4548. [
  4549. {
  4550. name: "Normal",
  4551. height: math.unit(1.3, "meter"),
  4552. default: true
  4553. },
  4554. {
  4555. name: "Macro",
  4556. height: math.unit(20, "meter")
  4557. }
  4558. ]
  4559. ))
  4560. characterMakers.push(() => makeCharacter(
  4561. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4562. {
  4563. front: {
  4564. height: math.unit(2.8, "meter"),
  4565. weight: math.unit(200, "kg"),
  4566. name: "Front",
  4567. image: {
  4568. source: "./media/characters/elory/front.svg",
  4569. }
  4570. }
  4571. },
  4572. [
  4573. {
  4574. name: "Normal",
  4575. height: math.unit(2.8, "meter"),
  4576. default: true
  4577. },
  4578. {
  4579. name: "Macro",
  4580. height: math.unit(38, "meter")
  4581. }
  4582. ]
  4583. ))
  4584. characterMakers.push(() => makeCharacter(
  4585. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4586. {
  4587. front: {
  4588. height: math.unit(470, "feet"),
  4589. weight: math.unit(924, "tons"),
  4590. name: "Front",
  4591. image: {
  4592. source: "./media/characters/angelpatamon/front.svg",
  4593. }
  4594. }
  4595. },
  4596. [
  4597. {
  4598. name: "Normal",
  4599. height: math.unit(470, "feet"),
  4600. default: true
  4601. },
  4602. {
  4603. name: "Deity Size I",
  4604. height: math.unit(28651.2, "km")
  4605. },
  4606. {
  4607. name: "Deity Size II",
  4608. height: math.unit(171907.2, "km")
  4609. }
  4610. ]
  4611. ))
  4612. characterMakers.push(() => makeCharacter(
  4613. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4614. {
  4615. side: {
  4616. height: math.unit(7.2, "meter"),
  4617. weight: math.unit(8.2, "tons"),
  4618. name: "Side",
  4619. image: {
  4620. source: "./media/characters/cryae/side.svg",
  4621. extra: 3500 / 1500
  4622. }
  4623. }
  4624. },
  4625. [
  4626. {
  4627. name: "Normal",
  4628. height: math.unit(7.2, "meter"),
  4629. default: true
  4630. }
  4631. ]
  4632. ))
  4633. characterMakers.push(() => makeCharacter(
  4634. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4635. {
  4636. front: {
  4637. height: math.unit(6, "feet"),
  4638. weight: math.unit(175, "lb"),
  4639. name: "Front",
  4640. image: {
  4641. source: "./media/characters/xera/front.svg",
  4642. extra: 2377 / 1972,
  4643. bottom: 75.5 / 2452
  4644. }
  4645. },
  4646. side: {
  4647. height: math.unit(6, "feet"),
  4648. weight: math.unit(175, "lb"),
  4649. name: "Side",
  4650. image: {
  4651. source: "./media/characters/xera/side.svg",
  4652. extra: 2345 / 2019,
  4653. bottom: 39.7 / 2384
  4654. }
  4655. },
  4656. back: {
  4657. height: math.unit(6, "feet"),
  4658. weight: math.unit(175, "lb"),
  4659. name: "Back",
  4660. image: {
  4661. source: "./media/characters/xera/back.svg",
  4662. extra: 2095 / 1984,
  4663. bottom: 67 / 2166
  4664. }
  4665. },
  4666. },
  4667. [
  4668. {
  4669. name: "Small",
  4670. height: math.unit(10, "feet")
  4671. },
  4672. {
  4673. name: "Macro",
  4674. height: math.unit(500, "meters"),
  4675. default: true
  4676. },
  4677. {
  4678. name: "Macro+",
  4679. height: math.unit(10, "km")
  4680. },
  4681. {
  4682. name: "Gigamacro",
  4683. height: math.unit(25000, "km")
  4684. },
  4685. {
  4686. name: "Teramacro",
  4687. height: math.unit(3e6, "km")
  4688. }
  4689. ]
  4690. ))
  4691. characterMakers.push(() => makeCharacter(
  4692. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4693. {
  4694. front: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(175, "lb"),
  4697. name: "Front",
  4698. image: {
  4699. source: "./media/characters/nebula/front.svg",
  4700. extra: 2566 / 2362,
  4701. bottom: 81 / 2644
  4702. }
  4703. }
  4704. },
  4705. [
  4706. {
  4707. name: "Small",
  4708. height: math.unit(4.5, "meters")
  4709. },
  4710. {
  4711. name: "Macro",
  4712. height: math.unit(1500, "meters"),
  4713. default: true
  4714. },
  4715. {
  4716. name: "Megamacro",
  4717. height: math.unit(150, "km")
  4718. },
  4719. {
  4720. name: "Gigamacro",
  4721. height: math.unit(27000, "km")
  4722. }
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4727. {
  4728. front: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(225, "lb"),
  4731. name: "Front",
  4732. image: {
  4733. source: "./media/characters/abysgar/front.svg",
  4734. extra: 1739/1614,
  4735. bottom: 71/1810
  4736. }
  4737. },
  4738. frontNsfw: {
  4739. height: math.unit(6, "feet"),
  4740. weight: math.unit(225, "lb"),
  4741. name: "Front (NSFW)",
  4742. image: {
  4743. source: "./media/characters/abysgar/front-nsfw.svg",
  4744. extra: 1739/1614,
  4745. bottom: 71/1810
  4746. }
  4747. },
  4748. back: {
  4749. height: math.unit(4.6, "feet"),
  4750. weight: math.unit(225, "lb"),
  4751. name: "Back",
  4752. image: {
  4753. source: "./media/characters/abysgar/back.svg",
  4754. extra: 1384/1327,
  4755. bottom: 0/1384
  4756. }
  4757. },
  4758. head: {
  4759. height: math.unit(1.25, "feet"),
  4760. name: "Head",
  4761. image: {
  4762. source: "./media/characters/abysgar/head.svg",
  4763. extra: 669/569,
  4764. bottom: 0/669
  4765. }
  4766. },
  4767. },
  4768. [
  4769. {
  4770. name: "Small",
  4771. height: math.unit(4.5, "meters")
  4772. },
  4773. {
  4774. name: "Macro",
  4775. height: math.unit(1250, "meters"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Megamacro",
  4780. height: math.unit(125, "km")
  4781. },
  4782. {
  4783. name: "Gigamacro",
  4784. height: math.unit(26000, "km")
  4785. }
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(180, "lb"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/yakuz/front.svg"
  4797. }
  4798. }
  4799. },
  4800. [
  4801. {
  4802. name: "Small",
  4803. height: math.unit(5, "meters")
  4804. },
  4805. {
  4806. name: "Macro",
  4807. height: math.unit(1500, "meters"),
  4808. default: true
  4809. },
  4810. {
  4811. name: "Megamacro",
  4812. height: math.unit(200, "km")
  4813. },
  4814. {
  4815. name: "Gigamacro",
  4816. height: math.unit(100000, "km")
  4817. }
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(175, "lb"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/mirova/front.svg",
  4829. extra: 3334 / 3071,
  4830. bottom: 42 / 3375.6
  4831. }
  4832. }
  4833. },
  4834. [
  4835. {
  4836. name: "Small",
  4837. height: math.unit(5, "meters")
  4838. },
  4839. {
  4840. name: "Macro",
  4841. height: math.unit(900, "meters"),
  4842. default: true
  4843. },
  4844. {
  4845. name: "Megamacro",
  4846. height: math.unit(135, "km")
  4847. },
  4848. {
  4849. name: "Gigamacro",
  4850. height: math.unit(20000, "km")
  4851. }
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4856. {
  4857. side: {
  4858. height: math.unit(28.35, "feet"),
  4859. weight: math.unit(99.75, "tons"),
  4860. name: "Side",
  4861. image: {
  4862. source: "./media/characters/asana-mech/side.svg",
  4863. extra: 923 / 699,
  4864. bottom: 50 / 975
  4865. }
  4866. },
  4867. chaingun: {
  4868. height: math.unit(7, "feet"),
  4869. weight: math.unit(2400, "lb"),
  4870. name: "Chaingun",
  4871. image: {
  4872. source: "./media/characters/asana-mech/chaingun.svg"
  4873. }
  4874. },
  4875. laser: {
  4876. height: math.unit(7.12, "feet"),
  4877. weight: math.unit(2000, "lb"),
  4878. name: "Laser",
  4879. image: {
  4880. source: "./media/characters/asana-mech/laser.svg"
  4881. }
  4882. },
  4883. },
  4884. [
  4885. {
  4886. name: "Normal",
  4887. height: math.unit(28.35, "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(2500, "feet")
  4893. },
  4894. {
  4895. name: "Megamacro",
  4896. height: math.unit(25, "miles")
  4897. },
  4898. {
  4899. name: "Examacro",
  4900. height: math.unit(6e8, "lightyears")
  4901. },
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4906. {
  4907. front: {
  4908. height: math.unit(5, "meters"),
  4909. weight: math.unit(1000, "kg"),
  4910. name: "Front",
  4911. image: {
  4912. source: "./media/characters/asche/front.svg",
  4913. extra: 1258 / 1190,
  4914. bottom: 47 / 1305
  4915. }
  4916. },
  4917. frontUnderwear: {
  4918. height: math.unit(5, "meters"),
  4919. weight: math.unit(1000, "kg"),
  4920. name: "Front (Underwear)",
  4921. image: {
  4922. source: "./media/characters/asche/front-underwear.svg",
  4923. extra: 1258 / 1190,
  4924. bottom: 47 / 1305
  4925. }
  4926. },
  4927. frontDressed: {
  4928. height: math.unit(5, "meters"),
  4929. weight: math.unit(1000, "kg"),
  4930. name: "Front (Dressed)",
  4931. image: {
  4932. source: "./media/characters/asche/front-dressed.svg",
  4933. extra: 1258 / 1190,
  4934. bottom: 47 / 1305
  4935. }
  4936. },
  4937. frontArmor: {
  4938. height: math.unit(5, "meters"),
  4939. weight: math.unit(1000, "kg"),
  4940. name: "Front (Armored)",
  4941. image: {
  4942. source: "./media/characters/asche/front-armored.svg",
  4943. extra: 1374 / 1308,
  4944. bottom: 23 / 1397
  4945. }
  4946. },
  4947. mp724: {
  4948. height: math.unit(0.96, "meters"),
  4949. weight: math.unit(38, "kg"),
  4950. name: "H&K MP724",
  4951. image: {
  4952. source: "./media/characters/asche/h&k-mp724.svg"
  4953. }
  4954. },
  4955. side: {
  4956. height: math.unit(5, "meters"),
  4957. weight: math.unit(1000, "kg"),
  4958. name: "Side",
  4959. image: {
  4960. source: "./media/characters/asche/side.svg",
  4961. extra: 1717 / 1609,
  4962. bottom: 0.005
  4963. }
  4964. },
  4965. back: {
  4966. height: math.unit(5, "meters"),
  4967. weight: math.unit(1000, "kg"),
  4968. name: "Back",
  4969. image: {
  4970. source: "./media/characters/asche/back.svg",
  4971. extra: 1570 / 1501
  4972. }
  4973. },
  4974. },
  4975. [
  4976. {
  4977. name: "DEFCON 5",
  4978. height: math.unit(5, "meters")
  4979. },
  4980. {
  4981. name: "DEFCON 4",
  4982. height: math.unit(500, "meters"),
  4983. default: true
  4984. },
  4985. {
  4986. name: "DEFCON 3",
  4987. height: math.unit(5, "km")
  4988. },
  4989. {
  4990. name: "DEFCON 2",
  4991. height: math.unit(500, "km")
  4992. },
  4993. {
  4994. name: "DEFCON 1",
  4995. height: math.unit(500000, "km")
  4996. },
  4997. {
  4998. name: "DEFCON 0",
  4999. height: math.unit(3, "gigaparsecs")
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(2, "meters"),
  5008. weight: math.unit(76, "kg"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/gale/front.svg"
  5012. }
  5013. },
  5014. frontAlt1: {
  5015. height: math.unit(2, "meters"),
  5016. weight: math.unit(76, "kg"),
  5017. name: "Front (Alt 1)",
  5018. image: {
  5019. source: "./media/characters/gale/front-alt-1.svg"
  5020. }
  5021. },
  5022. frontAlt2: {
  5023. height: math.unit(2, "meters"),
  5024. weight: math.unit(76, "kg"),
  5025. name: "Front (Alt 2)",
  5026. image: {
  5027. source: "./media/characters/gale/front-alt-2.svg"
  5028. }
  5029. },
  5030. },
  5031. [
  5032. {
  5033. name: "Normal",
  5034. height: math.unit(7, "feet")
  5035. },
  5036. {
  5037. name: "Macro",
  5038. height: math.unit(150, "feet"),
  5039. default: true
  5040. },
  5041. {
  5042. name: "Macro+",
  5043. height: math.unit(300, "feet")
  5044. },
  5045. ]
  5046. ))
  5047. characterMakers.push(() => makeCharacter(
  5048. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5049. {
  5050. front: {
  5051. height: math.unit(5 + 10/12, "feet"),
  5052. weight: math.unit(67, "kg"),
  5053. name: "Front",
  5054. image: {
  5055. source: "./media/characters/draylen/front.svg",
  5056. extra: 832/777,
  5057. bottom: 85/917
  5058. }
  5059. }
  5060. },
  5061. [
  5062. {
  5063. name: "Normal",
  5064. height: math.unit(5 + 10/12, "feet")
  5065. },
  5066. {
  5067. name: "Macro",
  5068. height: math.unit(150, "feet"),
  5069. default: true
  5070. }
  5071. ]
  5072. ))
  5073. characterMakers.push(() => makeCharacter(
  5074. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5075. {
  5076. front: {
  5077. height: math.unit(7 + 9 / 12, "feet"),
  5078. weight: math.unit(379, "lbs"),
  5079. name: "Front",
  5080. image: {
  5081. source: "./media/characters/chez/front.svg"
  5082. }
  5083. },
  5084. side: {
  5085. height: math.unit(7 + 9 / 12, "feet"),
  5086. weight: math.unit(379, "lbs"),
  5087. name: "Side",
  5088. image: {
  5089. source: "./media/characters/chez/side.svg"
  5090. }
  5091. }
  5092. },
  5093. [
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(7 + 9 / 12, "feet"),
  5097. default: true
  5098. },
  5099. {
  5100. name: "God King",
  5101. height: math.unit(9750000, "meters")
  5102. }
  5103. ]
  5104. ))
  5105. characterMakers.push(() => makeCharacter(
  5106. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5107. {
  5108. front: {
  5109. height: math.unit(6, "feet"),
  5110. weight: math.unit(275, "lbs"),
  5111. name: "Front",
  5112. image: {
  5113. source: "./media/characters/kaylum/front.svg",
  5114. bottom: 0.01,
  5115. extra: 1166 / 1031
  5116. }
  5117. },
  5118. frontWingless: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(275, "lbs"),
  5121. name: "Front (Wingless)",
  5122. image: {
  5123. source: "./media/characters/kaylum/front-wingless.svg",
  5124. bottom: 0.01,
  5125. extra: 1117 / 1031
  5126. }
  5127. }
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(3.05, "meters")
  5133. },
  5134. {
  5135. name: "Master",
  5136. height: math.unit(5.5, "meters")
  5137. },
  5138. {
  5139. name: "Rampage",
  5140. height: math.unit(19, "meters")
  5141. },
  5142. {
  5143. name: "Macro Lite",
  5144. height: math.unit(37, "meters")
  5145. },
  5146. {
  5147. name: "Hyper Predator",
  5148. height: math.unit(61, "meters")
  5149. },
  5150. {
  5151. name: "Macro",
  5152. height: math.unit(138, "meters"),
  5153. default: true
  5154. }
  5155. ]
  5156. ))
  5157. characterMakers.push(() => makeCharacter(
  5158. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5159. {
  5160. front: {
  5161. height: math.unit(5 + 5 / 12, "feet"),
  5162. weight: math.unit(120, "lbs"),
  5163. name: "Front",
  5164. image: {
  5165. source: "./media/characters/geta/front.svg",
  5166. extra: 1003/933,
  5167. bottom: 21/1024
  5168. }
  5169. },
  5170. paw: {
  5171. height: math.unit(0.35, "feet"),
  5172. name: "Paw",
  5173. image: {
  5174. source: "./media/characters/geta/paw.svg"
  5175. }
  5176. },
  5177. },
  5178. [
  5179. {
  5180. name: "Micro",
  5181. height: math.unit(3, "inches"),
  5182. default: true
  5183. },
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(5 + 5 / 12, "feet")
  5187. }
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5192. {
  5193. front: {
  5194. height: math.unit(6, "feet"),
  5195. weight: math.unit(300, "lbs"),
  5196. name: "Front",
  5197. image: {
  5198. source: "./media/characters/tyrnn/front.svg"
  5199. }
  5200. }
  5201. },
  5202. [
  5203. {
  5204. name: "Main Height",
  5205. height: math.unit(355, "feet"),
  5206. default: true
  5207. },
  5208. {
  5209. name: "Fave. Height",
  5210. height: math.unit(2400, "feet")
  5211. }
  5212. ]
  5213. ))
  5214. characterMakers.push(() => makeCharacter(
  5215. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5216. {
  5217. front: {
  5218. height: math.unit(6, "feet"),
  5219. weight: math.unit(300, "lbs"),
  5220. name: "Front",
  5221. image: {
  5222. source: "./media/characters/appledectomy/front.svg"
  5223. }
  5224. }
  5225. },
  5226. [
  5227. {
  5228. name: "Macro",
  5229. height: math.unit(2500, "feet")
  5230. },
  5231. {
  5232. name: "Megamacro",
  5233. height: math.unit(50, "miles"),
  5234. default: true
  5235. },
  5236. {
  5237. name: "Gigamacro",
  5238. height: math.unit(5000, "miles")
  5239. },
  5240. {
  5241. name: "Teramacro",
  5242. height: math.unit(250000, "miles")
  5243. },
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5248. {
  5249. front: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(200, "lbs"),
  5252. name: "Front",
  5253. image: {
  5254. source: "./media/characters/vulpes/front.svg",
  5255. extra: 573 / 543,
  5256. bottom: 0.033
  5257. }
  5258. },
  5259. side: {
  5260. height: math.unit(6, "feet"),
  5261. weight: math.unit(200, "lbs"),
  5262. name: "Side",
  5263. image: {
  5264. source: "./media/characters/vulpes/side.svg",
  5265. extra: 577 / 549,
  5266. bottom: 11 / 588
  5267. }
  5268. },
  5269. back: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(200, "lbs"),
  5272. name: "Back",
  5273. image: {
  5274. source: "./media/characters/vulpes/back.svg",
  5275. extra: 573 / 549,
  5276. bottom: 20 / 593
  5277. }
  5278. },
  5279. feet: {
  5280. height: math.unit(1.276, "feet"),
  5281. name: "Feet",
  5282. image: {
  5283. source: "./media/characters/vulpes/feet.svg"
  5284. }
  5285. },
  5286. maw: {
  5287. height: math.unit(1.18, "feet"),
  5288. name: "Maw",
  5289. image: {
  5290. source: "./media/characters/vulpes/maw.svg"
  5291. }
  5292. },
  5293. },
  5294. [
  5295. {
  5296. name: "Micro",
  5297. height: math.unit(2, "inches")
  5298. },
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(6.3, "feet")
  5302. },
  5303. {
  5304. name: "Macro",
  5305. height: math.unit(850, "feet")
  5306. },
  5307. {
  5308. name: "Megamacro",
  5309. height: math.unit(7500, "feet"),
  5310. default: true
  5311. },
  5312. {
  5313. name: "Gigamacro",
  5314. height: math.unit(570000, "miles")
  5315. }
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5320. {
  5321. front: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(210, "lbs"),
  5324. name: "Front",
  5325. image: {
  5326. source: "./media/characters/rain-fallen/front.svg"
  5327. }
  5328. },
  5329. side: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(210, "lbs"),
  5332. name: "Side",
  5333. image: {
  5334. source: "./media/characters/rain-fallen/side.svg"
  5335. }
  5336. },
  5337. back: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(210, "lbs"),
  5340. name: "Back",
  5341. image: {
  5342. source: "./media/characters/rain-fallen/back.svg"
  5343. }
  5344. },
  5345. feral: {
  5346. height: math.unit(9, "feet"),
  5347. weight: math.unit(700, "lbs"),
  5348. name: "Feral",
  5349. image: {
  5350. source: "./media/characters/rain-fallen/feral.svg"
  5351. }
  5352. },
  5353. },
  5354. [
  5355. {
  5356. name: "Meddling with Mortals",
  5357. height: math.unit(8 + 8/12, "feet")
  5358. },
  5359. {
  5360. name: "Normal",
  5361. height: math.unit(5, "meter")
  5362. },
  5363. {
  5364. name: "Macro",
  5365. height: math.unit(150, "meter"),
  5366. default: true
  5367. },
  5368. {
  5369. name: "Megamacro",
  5370. height: math.unit(278e6, "meter")
  5371. },
  5372. {
  5373. name: "Gigamacro",
  5374. height: math.unit(2e9, "meter")
  5375. },
  5376. {
  5377. name: "Teramacro",
  5378. height: math.unit(8e12, "meter")
  5379. },
  5380. {
  5381. name: "Devourer",
  5382. height: math.unit(14, "zettameters")
  5383. },
  5384. {
  5385. name: "Scarlet King",
  5386. height: math.unit(18, "yottameters")
  5387. },
  5388. {
  5389. name: "Void",
  5390. height: math.unit(1e88, "yottameters")
  5391. }
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5396. {
  5397. standing: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(180, "lbs"),
  5400. name: "Standing",
  5401. image: {
  5402. source: "./media/characters/zaakira/standing.svg",
  5403. extra: 1599/1504,
  5404. bottom: 39/1638
  5405. }
  5406. },
  5407. laying: {
  5408. height: math.unit(3.3, "feet"),
  5409. weight: math.unit(180, "lbs"),
  5410. name: "Laying",
  5411. image: {
  5412. source: "./media/characters/zaakira/laying.svg"
  5413. }
  5414. },
  5415. },
  5416. [
  5417. {
  5418. name: "Normal",
  5419. height: math.unit(12, "feet")
  5420. },
  5421. {
  5422. name: "Macro",
  5423. height: math.unit(279, "feet"),
  5424. default: true
  5425. }
  5426. ]
  5427. ))
  5428. characterMakers.push(() => makeCharacter(
  5429. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5430. {
  5431. femSfw: {
  5432. height: math.unit(8, "feet"),
  5433. weight: math.unit(350, "lb"),
  5434. name: "Fem",
  5435. image: {
  5436. source: "./media/characters/sigvald/fem-sfw.svg",
  5437. extra: 182 / 164,
  5438. bottom: 8.7 / 190.5
  5439. }
  5440. },
  5441. femNsfw: {
  5442. height: math.unit(8, "feet"),
  5443. weight: math.unit(350, "lb"),
  5444. name: "Fem (NSFW)",
  5445. image: {
  5446. source: "./media/characters/sigvald/fem-nsfw.svg",
  5447. extra: 182 / 164,
  5448. bottom: 8.7 / 190.5
  5449. }
  5450. },
  5451. maleNsfw: {
  5452. height: math.unit(8, "feet"),
  5453. weight: math.unit(350, "lb"),
  5454. name: "Male (NSFW)",
  5455. image: {
  5456. source: "./media/characters/sigvald/male-nsfw.svg",
  5457. extra: 182 / 164,
  5458. bottom: 8.7 / 190.5
  5459. }
  5460. },
  5461. hermNsfw: {
  5462. height: math.unit(8, "feet"),
  5463. weight: math.unit(350, "lb"),
  5464. name: "Herm (NSFW)",
  5465. image: {
  5466. source: "./media/characters/sigvald/herm-nsfw.svg",
  5467. extra: 182 / 164,
  5468. bottom: 8.7 / 190.5
  5469. }
  5470. },
  5471. dick: {
  5472. height: math.unit(2.36, "feet"),
  5473. name: "Dick",
  5474. image: {
  5475. source: "./media/characters/sigvald/dick.svg"
  5476. }
  5477. },
  5478. eye: {
  5479. height: math.unit(0.31, "feet"),
  5480. name: "Eye",
  5481. image: {
  5482. source: "./media/characters/sigvald/eye.svg"
  5483. }
  5484. },
  5485. mouth: {
  5486. height: math.unit(0.92, "feet"),
  5487. name: "Mouth",
  5488. image: {
  5489. source: "./media/characters/sigvald/mouth.svg"
  5490. }
  5491. },
  5492. paws: {
  5493. height: math.unit(2.2, "feet"),
  5494. name: "Paws",
  5495. image: {
  5496. source: "./media/characters/sigvald/paws.svg"
  5497. }
  5498. }
  5499. },
  5500. [
  5501. {
  5502. name: "Normal",
  5503. height: math.unit(8, "feet")
  5504. },
  5505. {
  5506. name: "Large",
  5507. height: math.unit(12, "feet")
  5508. },
  5509. {
  5510. name: "Larger",
  5511. height: math.unit(20, "feet")
  5512. },
  5513. {
  5514. name: "Macro",
  5515. height: math.unit(150, "feet")
  5516. },
  5517. {
  5518. name: "Macro+",
  5519. height: math.unit(200, "feet"),
  5520. default: true
  5521. },
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5526. {
  5527. side: {
  5528. height: math.unit(12, "feet"),
  5529. weight: math.unit(2000, "kg"),
  5530. name: "Side",
  5531. image: {
  5532. source: "./media/characters/scott/side.svg",
  5533. extra: 754 / 724,
  5534. bottom: 0.069
  5535. }
  5536. },
  5537. upright: {
  5538. height: math.unit(12, "feet"),
  5539. weight: math.unit(2000, "kg"),
  5540. name: "Upright",
  5541. image: {
  5542. source: "./media/characters/scott/upright.svg",
  5543. extra: 3881 / 3722,
  5544. bottom: 0.05
  5545. }
  5546. },
  5547. },
  5548. [
  5549. {
  5550. name: "Normal",
  5551. height: math.unit(12, "feet"),
  5552. default: true
  5553. },
  5554. ]
  5555. ))
  5556. characterMakers.push(() => makeCharacter(
  5557. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5558. {
  5559. side: {
  5560. height: math.unit(8, "meters"),
  5561. weight: math.unit(84755, "lbs"),
  5562. name: "Side",
  5563. image: {
  5564. source: "./media/characters/tobias/side.svg",
  5565. extra: 1474 / 1096,
  5566. bottom: 38.9 / 1513.1235
  5567. }
  5568. },
  5569. },
  5570. [
  5571. {
  5572. name: "Normal",
  5573. height: math.unit(8, "meters"),
  5574. default: true
  5575. },
  5576. ]
  5577. ))
  5578. characterMakers.push(() => makeCharacter(
  5579. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5580. {
  5581. front: {
  5582. height: math.unit(5.5, "feet"),
  5583. weight: math.unit(400, "lbs"),
  5584. name: "Front",
  5585. image: {
  5586. source: "./media/characters/kieran/front.svg",
  5587. extra: 2694 / 2364,
  5588. bottom: 217 / 2908
  5589. }
  5590. },
  5591. side: {
  5592. height: math.unit(5.5, "feet"),
  5593. weight: math.unit(400, "lbs"),
  5594. name: "Side",
  5595. image: {
  5596. source: "./media/characters/kieran/side.svg",
  5597. extra: 875 / 777,
  5598. bottom: 84.6 / 959
  5599. }
  5600. },
  5601. },
  5602. [
  5603. {
  5604. name: "Normal",
  5605. height: math.unit(5.5, "feet"),
  5606. default: true
  5607. },
  5608. ]
  5609. ))
  5610. characterMakers.push(() => makeCharacter(
  5611. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5612. {
  5613. side: {
  5614. height: math.unit(2, "meters"),
  5615. weight: math.unit(70, "kg"),
  5616. name: "Side",
  5617. image: {
  5618. source: "./media/characters/sanya/side.svg",
  5619. bottom: 0.02,
  5620. extra: 1.02
  5621. }
  5622. },
  5623. },
  5624. [
  5625. {
  5626. name: "Small",
  5627. height: math.unit(2, "meters")
  5628. },
  5629. {
  5630. name: "Normal",
  5631. height: math.unit(3, "meters")
  5632. },
  5633. {
  5634. name: "Macro",
  5635. height: math.unit(16, "meters"),
  5636. default: true
  5637. },
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5642. {
  5643. front: {
  5644. height: math.unit(2, "meters"),
  5645. weight: math.unit(120, "kg"),
  5646. name: "Front",
  5647. image: {
  5648. source: "./media/characters/miranda/front.svg",
  5649. extra: 195 / 185,
  5650. bottom: 10.9 / 206.5
  5651. }
  5652. },
  5653. back: {
  5654. height: math.unit(2, "meters"),
  5655. weight: math.unit(120, "kg"),
  5656. name: "Back",
  5657. image: {
  5658. source: "./media/characters/miranda/back.svg",
  5659. extra: 201 / 193,
  5660. bottom: 2.3 / 203.7
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(10, "feet"),
  5668. default: true
  5669. }
  5670. ]
  5671. ))
  5672. characterMakers.push(() => makeCharacter(
  5673. { name: "James", species: ["deer"], tags: ["anthro"] },
  5674. {
  5675. side: {
  5676. height: math.unit(2, "meters"),
  5677. weight: math.unit(100, "kg"),
  5678. name: "Front",
  5679. image: {
  5680. source: "./media/characters/james/front.svg",
  5681. extra: 10 / 8.5
  5682. }
  5683. },
  5684. },
  5685. [
  5686. {
  5687. name: "Normal",
  5688. height: math.unit(8.5, "feet"),
  5689. default: true
  5690. }
  5691. ]
  5692. ))
  5693. characterMakers.push(() => makeCharacter(
  5694. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5695. {
  5696. side: {
  5697. height: math.unit(9.5, "feet"),
  5698. weight: math.unit(2500, "lbs"),
  5699. name: "Side",
  5700. image: {
  5701. source: "./media/characters/heather/side.svg"
  5702. }
  5703. },
  5704. },
  5705. [
  5706. {
  5707. name: "Normal",
  5708. height: math.unit(9.5, "feet"),
  5709. default: true
  5710. }
  5711. ]
  5712. ))
  5713. characterMakers.push(() => makeCharacter(
  5714. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5715. {
  5716. side: {
  5717. height: math.unit(6.5, "feet"),
  5718. weight: math.unit(400, "lbs"),
  5719. name: "Side",
  5720. image: {
  5721. source: "./media/characters/lukas/side.svg",
  5722. extra: 7.25 / 6.5
  5723. }
  5724. },
  5725. },
  5726. [
  5727. {
  5728. name: "Normal",
  5729. height: math.unit(6.5, "feet"),
  5730. default: true
  5731. }
  5732. ]
  5733. ))
  5734. characterMakers.push(() => makeCharacter(
  5735. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5736. {
  5737. side: {
  5738. height: math.unit(5, "feet"),
  5739. weight: math.unit(3000, "lbs"),
  5740. name: "Side",
  5741. image: {
  5742. source: "./media/characters/louise/side.svg"
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(5, "feet"),
  5750. default: true
  5751. }
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5756. {
  5757. side: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(150, "lbs"),
  5760. name: "Side",
  5761. image: {
  5762. source: "./media/characters/ramona/side.svg",
  5763. extra: 871/854,
  5764. bottom: 41/912
  5765. }
  5766. },
  5767. },
  5768. [
  5769. {
  5770. name: "Normal",
  5771. height: math.unit(6 + 4/12, "feet")
  5772. },
  5773. {
  5774. name: "Minimacro",
  5775. height: math.unit(5.3, "meters"),
  5776. default: true
  5777. },
  5778. {
  5779. name: "Macro",
  5780. height: math.unit(20, "stories")
  5781. },
  5782. {
  5783. name: "Macro+",
  5784. height: math.unit(50, "stories")
  5785. },
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5790. {
  5791. standing: {
  5792. height: math.unit(5.75, "feet"),
  5793. weight: math.unit(160, "lbs"),
  5794. name: "Standing",
  5795. image: {
  5796. source: "./media/characters/deerpuff/standing.svg",
  5797. extra: 682 / 624
  5798. }
  5799. },
  5800. sitting: {
  5801. height: math.unit(5.75 / 1.79, "feet"),
  5802. weight: math.unit(160, "lbs"),
  5803. name: "Sitting",
  5804. image: {
  5805. source: "./media/characters/deerpuff/sitting.svg",
  5806. bottom: 44 / 400,
  5807. extra: 1
  5808. }
  5809. },
  5810. taurLaying: {
  5811. height: math.unit(6, "feet"),
  5812. weight: math.unit(400, "lbs"),
  5813. name: "Taur (Laying)",
  5814. image: {
  5815. source: "./media/characters/deerpuff/taur-laying.svg"
  5816. }
  5817. },
  5818. },
  5819. [
  5820. {
  5821. name: "Puffball",
  5822. height: math.unit(6, "inches")
  5823. },
  5824. {
  5825. name: "Normalpuff",
  5826. height: math.unit(5.75, "feet")
  5827. },
  5828. {
  5829. name: "Macropuff",
  5830. height: math.unit(1500, "feet"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Megapuff",
  5835. height: math.unit(500, "miles")
  5836. },
  5837. {
  5838. name: "Gigapuff",
  5839. height: math.unit(250000, "miles")
  5840. },
  5841. {
  5842. name: "Omegapuff",
  5843. height: math.unit(1000, "lightyears")
  5844. },
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5849. {
  5850. stomping: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(170, "lbs"),
  5853. name: "Stomping",
  5854. image: {
  5855. source: "./media/characters/vivian/stomping.svg"
  5856. }
  5857. },
  5858. sitting: {
  5859. height: math.unit(6 / 1.75, "feet"),
  5860. weight: math.unit(170, "lbs"),
  5861. name: "Sitting",
  5862. image: {
  5863. source: "./media/characters/vivian/sitting.svg",
  5864. bottom: 1 / 6.4,
  5865. extra: 1,
  5866. }
  5867. },
  5868. },
  5869. [
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(7, "feet"),
  5873. default: true
  5874. },
  5875. {
  5876. name: "Macro",
  5877. height: math.unit(10, "stories")
  5878. },
  5879. {
  5880. name: "Macro+",
  5881. height: math.unit(30, "stories")
  5882. },
  5883. {
  5884. name: "Megamacro",
  5885. height: math.unit(10, "miles")
  5886. },
  5887. {
  5888. name: "Megamacro+",
  5889. height: math.unit(2750000, "meters")
  5890. },
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5895. {
  5896. front: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(160, "lbs"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/prince/front.svg",
  5902. extra: 3400 / 3000
  5903. }
  5904. },
  5905. jumping: {
  5906. height: math.unit(6, "feet"),
  5907. weight: math.unit(160, "lbs"),
  5908. name: "Jumping",
  5909. image: {
  5910. source: "./media/characters/prince/jump.svg",
  5911. extra: 2555 / 2134
  5912. }
  5913. },
  5914. },
  5915. [
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(7.75, "feet"),
  5919. default: true
  5920. },
  5921. {
  5922. name: "Not cute",
  5923. height: math.unit(17, "feet")
  5924. },
  5925. {
  5926. name: "I said NOT",
  5927. height: math.unit(91, "feet")
  5928. },
  5929. {
  5930. name: "Please stop",
  5931. height: math.unit(560, "feet")
  5932. },
  5933. {
  5934. name: "What have you done",
  5935. height: math.unit(2200, "feet")
  5936. },
  5937. {
  5938. name: "Deer God",
  5939. height: math.unit(3.6, "miles")
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5945. {
  5946. standing: {
  5947. height: math.unit(6, "feet"),
  5948. weight: math.unit(300, "lbs"),
  5949. name: "Standing",
  5950. image: {
  5951. source: "./media/characters/psymon/standing.svg",
  5952. extra: 1888 / 1810,
  5953. bottom: 0.05
  5954. }
  5955. },
  5956. slithering: {
  5957. height: math.unit(6, "feet"),
  5958. weight: math.unit(300, "lbs"),
  5959. name: "Slithering",
  5960. image: {
  5961. source: "./media/characters/psymon/slithering.svg",
  5962. extra: 1330 / 1224
  5963. }
  5964. },
  5965. slitheringAlt: {
  5966. height: math.unit(6, "feet"),
  5967. weight: math.unit(300, "lbs"),
  5968. name: "Slithering (Alt)",
  5969. image: {
  5970. source: "./media/characters/psymon/slithering-alt.svg",
  5971. extra: 1330 / 1224
  5972. }
  5973. },
  5974. },
  5975. [
  5976. {
  5977. name: "Normal",
  5978. height: math.unit(11.25, "feet"),
  5979. default: true
  5980. },
  5981. {
  5982. name: "Large",
  5983. height: math.unit(27, "feet")
  5984. },
  5985. {
  5986. name: "Giant",
  5987. height: math.unit(87, "feet")
  5988. },
  5989. {
  5990. name: "Macro",
  5991. height: math.unit(365, "feet")
  5992. },
  5993. {
  5994. name: "Megamacro",
  5995. height: math.unit(3, "miles")
  5996. },
  5997. {
  5998. name: "World Serpent",
  5999. height: math.unit(8000, "miles")
  6000. },
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6005. {
  6006. front: {
  6007. height: math.unit(6, "feet"),
  6008. weight: math.unit(180, "lbs"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/daimos/front.svg",
  6012. extra: 4160 / 3897,
  6013. bottom: 0.021
  6014. }
  6015. }
  6016. },
  6017. [
  6018. {
  6019. name: "Normal",
  6020. height: math.unit(8, "feet"),
  6021. default: true
  6022. },
  6023. {
  6024. name: "Big Dog",
  6025. height: math.unit(22, "feet")
  6026. },
  6027. {
  6028. name: "Macro",
  6029. height: math.unit(127, "feet")
  6030. },
  6031. {
  6032. name: "Megamacro",
  6033. height: math.unit(3600, "feet")
  6034. },
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6039. {
  6040. side: {
  6041. height: math.unit(6, "feet"),
  6042. weight: math.unit(180, "lbs"),
  6043. name: "Side",
  6044. image: {
  6045. source: "./media/characters/blake/side.svg",
  6046. extra: 1212 / 1120,
  6047. bottom: 0.05
  6048. }
  6049. },
  6050. crouched: {
  6051. height: math.unit(6 * 0.57, "feet"),
  6052. weight: math.unit(180, "lbs"),
  6053. name: "Crouched",
  6054. image: {
  6055. source: "./media/characters/blake/crouched.svg",
  6056. extra: 840 / 587,
  6057. bottom: 0.04
  6058. }
  6059. },
  6060. bent: {
  6061. height: math.unit(6 * 0.75, "feet"),
  6062. weight: math.unit(180, "lbs"),
  6063. name: "Bent",
  6064. image: {
  6065. source: "./media/characters/blake/bent.svg",
  6066. extra: 592 / 544,
  6067. bottom: 0.035
  6068. }
  6069. },
  6070. },
  6071. [
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(8 + 1 / 6, "feet"),
  6075. default: true
  6076. },
  6077. {
  6078. name: "Big Backside",
  6079. height: math.unit(37, "feet")
  6080. },
  6081. {
  6082. name: "Subway Shredder",
  6083. height: math.unit(72, "feet")
  6084. },
  6085. {
  6086. name: "City Carver",
  6087. height: math.unit(1675, "feet")
  6088. },
  6089. {
  6090. name: "Tectonic Tweaker",
  6091. height: math.unit(2300, "miles")
  6092. },
  6093. ]
  6094. ))
  6095. characterMakers.push(() => makeCharacter(
  6096. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6097. {
  6098. front: {
  6099. height: math.unit(6, "feet"),
  6100. weight: math.unit(180, "lbs"),
  6101. name: "Front",
  6102. image: {
  6103. source: "./media/characters/guisetto/front.svg",
  6104. extra: 856 / 817,
  6105. bottom: 0.06
  6106. }
  6107. },
  6108. airborne: {
  6109. height: math.unit(6, "feet"),
  6110. weight: math.unit(180, "lbs"),
  6111. name: "Airborne",
  6112. image: {
  6113. source: "./media/characters/guisetto/airborne.svg",
  6114. extra: 584 / 525
  6115. }
  6116. },
  6117. },
  6118. [
  6119. {
  6120. name: "Normal",
  6121. height: math.unit(10 + 11 / 12, "feet"),
  6122. default: true
  6123. },
  6124. {
  6125. name: "Large",
  6126. height: math.unit(35, "feet")
  6127. },
  6128. {
  6129. name: "Macro",
  6130. height: math.unit(475, "feet")
  6131. },
  6132. ]
  6133. ))
  6134. characterMakers.push(() => makeCharacter(
  6135. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6136. {
  6137. front: {
  6138. height: math.unit(6, "feet"),
  6139. weight: math.unit(180, "lbs"),
  6140. name: "Front",
  6141. image: {
  6142. source: "./media/characters/luxor/front.svg",
  6143. extra: 2940 / 2152
  6144. }
  6145. },
  6146. back: {
  6147. height: math.unit(6, "feet"),
  6148. weight: math.unit(180, "lbs"),
  6149. name: "Back",
  6150. image: {
  6151. source: "./media/characters/luxor/back.svg",
  6152. extra: 1083 / 960
  6153. }
  6154. },
  6155. },
  6156. [
  6157. {
  6158. name: "Normal",
  6159. height: math.unit(5 + 5 / 6, "feet"),
  6160. default: true
  6161. },
  6162. {
  6163. name: "Lamp",
  6164. height: math.unit(50, "feet")
  6165. },
  6166. {
  6167. name: "Lämp",
  6168. height: math.unit(300, "feet")
  6169. },
  6170. {
  6171. name: "The sun is a lamp",
  6172. height: math.unit(250000, "miles")
  6173. },
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6178. {
  6179. front: {
  6180. height: math.unit(6, "feet"),
  6181. weight: math.unit(50, "lbs"),
  6182. name: "Front",
  6183. image: {
  6184. source: "./media/characters/huoyan/front.svg"
  6185. }
  6186. },
  6187. side: {
  6188. height: math.unit(6, "feet"),
  6189. weight: math.unit(180, "lbs"),
  6190. name: "Side",
  6191. image: {
  6192. source: "./media/characters/huoyan/side.svg"
  6193. }
  6194. },
  6195. },
  6196. [
  6197. {
  6198. name: "Chef",
  6199. height: math.unit(9, "feet")
  6200. },
  6201. {
  6202. name: "Normal",
  6203. height: math.unit(65, "feet"),
  6204. default: true
  6205. },
  6206. {
  6207. name: "Macro",
  6208. height: math.unit(780, "feet")
  6209. },
  6210. {
  6211. name: "Flaming Mountain",
  6212. height: math.unit(4.8, "miles")
  6213. },
  6214. {
  6215. name: "Celestial",
  6216. height: math.unit(765000, "miles")
  6217. },
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6222. {
  6223. front: {
  6224. height: math.unit(5 + 3 / 4, "feet"),
  6225. weight: math.unit(120, "lbs"),
  6226. name: "Front",
  6227. image: {
  6228. source: "./media/characters/tails/front.svg"
  6229. }
  6230. }
  6231. },
  6232. [
  6233. {
  6234. name: "Normal",
  6235. height: math.unit(5 + 3 / 4, "feet"),
  6236. default: true
  6237. }
  6238. ]
  6239. ))
  6240. characterMakers.push(() => makeCharacter(
  6241. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6242. {
  6243. front: {
  6244. height: math.unit(4, "feet"),
  6245. weight: math.unit(50, "lbs"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/rainy/front.svg"
  6249. }
  6250. }
  6251. },
  6252. [
  6253. {
  6254. name: "Macro",
  6255. height: math.unit(800, "feet"),
  6256. default: true
  6257. }
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(6, "feet"),
  6265. weight: math.unit(150, "lbs"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/rainier/front.svg"
  6269. }
  6270. }
  6271. },
  6272. [
  6273. {
  6274. name: "Micro",
  6275. height: math.unit(2, "mm"),
  6276. default: true
  6277. }
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6282. {
  6283. front: {
  6284. height: math.unit(8 + 4/12, "feet"),
  6285. weight: math.unit(450, "kilograms"),
  6286. volume: math.unit(5, "cups"),
  6287. name: "Front",
  6288. image: {
  6289. source: "./media/characters/andy-renard/front.svg",
  6290. extra: 1839/1726,
  6291. bottom: 134/1973
  6292. }
  6293. },
  6294. back: {
  6295. height: math.unit(8 + 4/12, "feet"),
  6296. weight: math.unit(450, "kilograms"),
  6297. volume: math.unit(5, "cups"),
  6298. name: "Back",
  6299. image: {
  6300. source: "./media/characters/andy-renard/back.svg",
  6301. extra: 1838/1710,
  6302. bottom: 105/1943
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Tall",
  6309. height: math.unit(8 + 4/12, "feet")
  6310. },
  6311. {
  6312. name: "Mini Macro",
  6313. height: math.unit(15, "feet"),
  6314. default: true
  6315. },
  6316. {
  6317. name: "Macro",
  6318. height: math.unit(100, "feet")
  6319. },
  6320. {
  6321. name: "Mega Macro",
  6322. height: math.unit(1000, "feet")
  6323. },
  6324. {
  6325. name: "Giga Macro",
  6326. height: math.unit(10, "miles")
  6327. },
  6328. {
  6329. name: "God Macro",
  6330. height: math.unit(1, "multiverse")
  6331. },
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6336. {
  6337. front: {
  6338. height: math.unit(6, "feet"),
  6339. weight: math.unit(210, "lbs"),
  6340. name: "Front",
  6341. image: {
  6342. source: "./media/characters/cimmaron/front-sfw.svg",
  6343. extra: 701 / 676,
  6344. bottom: 0.046
  6345. }
  6346. },
  6347. back: {
  6348. height: math.unit(6, "feet"),
  6349. weight: math.unit(210, "lbs"),
  6350. name: "Back",
  6351. image: {
  6352. source: "./media/characters/cimmaron/back-sfw.svg",
  6353. extra: 701 / 676,
  6354. bottom: 0.046
  6355. }
  6356. },
  6357. frontNsfw: {
  6358. height: math.unit(6, "feet"),
  6359. weight: math.unit(210, "lbs"),
  6360. name: "Front (NSFW)",
  6361. image: {
  6362. source: "./media/characters/cimmaron/front-nsfw.svg",
  6363. extra: 701 / 676,
  6364. bottom: 0.046
  6365. }
  6366. },
  6367. backNsfw: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(210, "lbs"),
  6370. name: "Back (NSFW)",
  6371. image: {
  6372. source: "./media/characters/cimmaron/back-nsfw.svg",
  6373. extra: 701 / 676,
  6374. bottom: 0.046
  6375. }
  6376. },
  6377. dick: {
  6378. height: math.unit(1.714, "feet"),
  6379. name: "Dick",
  6380. image: {
  6381. source: "./media/characters/cimmaron/dick.svg"
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Normal",
  6388. height: math.unit(6, "feet"),
  6389. default: true
  6390. },
  6391. {
  6392. name: "Macro Mayor",
  6393. height: math.unit(350, "meters")
  6394. },
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6399. {
  6400. front: {
  6401. height: math.unit(6, "feet"),
  6402. weight: math.unit(200, "lbs"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/akari/front.svg",
  6406. extra: 962 / 901,
  6407. bottom: 0.04
  6408. }
  6409. }
  6410. },
  6411. [
  6412. {
  6413. name: "Micro",
  6414. height: math.unit(5, "inches"),
  6415. default: true
  6416. },
  6417. {
  6418. name: "Normal",
  6419. height: math.unit(7, "feet")
  6420. },
  6421. ]
  6422. ))
  6423. characterMakers.push(() => makeCharacter(
  6424. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6425. {
  6426. front: {
  6427. height: math.unit(6, "feet"),
  6428. weight: math.unit(140, "lbs"),
  6429. name: "Front",
  6430. image: {
  6431. source: "./media/characters/cynosura/front.svg",
  6432. extra: 896 / 847
  6433. }
  6434. },
  6435. back: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(140, "lbs"),
  6438. name: "Back",
  6439. image: {
  6440. source: "./media/characters/cynosura/back.svg",
  6441. extra: 1365 / 1250
  6442. }
  6443. },
  6444. },
  6445. [
  6446. {
  6447. name: "Micro",
  6448. height: math.unit(4, "inches")
  6449. },
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(5.75, "feet"),
  6453. default: true
  6454. },
  6455. {
  6456. name: "Tall",
  6457. height: math.unit(10, "feet")
  6458. },
  6459. {
  6460. name: "Big",
  6461. height: math.unit(20, "feet")
  6462. },
  6463. {
  6464. name: "Macro",
  6465. height: math.unit(50, "feet")
  6466. },
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6471. {
  6472. front: {
  6473. height: math.unit(13 + 2/12, "feet"),
  6474. weight: math.unit(800, "kg"),
  6475. name: "Front",
  6476. image: {
  6477. source: "./media/characters/gin/front.svg",
  6478. extra: 1312/1191,
  6479. bottom: 45/1357
  6480. }
  6481. },
  6482. mouth: {
  6483. height: math.unit(2.39 * 1.8, "feet"),
  6484. name: "Mouth",
  6485. image: {
  6486. source: "./media/characters/gin/mouth.svg"
  6487. }
  6488. },
  6489. hand: {
  6490. height: math.unit(1.57 * 2.19, "feet"),
  6491. name: "Hand",
  6492. image: {
  6493. source: "./media/characters/gin/hand.svg"
  6494. }
  6495. },
  6496. foot: {
  6497. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6498. name: "Foot",
  6499. image: {
  6500. source: "./media/characters/gin/foot.svg"
  6501. }
  6502. },
  6503. sole: {
  6504. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6505. name: "Sole",
  6506. image: {
  6507. source: "./media/characters/gin/sole.svg"
  6508. }
  6509. },
  6510. },
  6511. [
  6512. {
  6513. name: "Very Small",
  6514. height: math.unit(13 + 2 / 12, "feet")
  6515. },
  6516. {
  6517. name: "Micro",
  6518. height: math.unit(600, "miles")
  6519. },
  6520. {
  6521. name: "Regular",
  6522. height: math.unit(20, "earths"),
  6523. default: true
  6524. },
  6525. {
  6526. name: "Macro",
  6527. height: math.unit(2.2, "solarradii")
  6528. },
  6529. {
  6530. name: "Teramacro",
  6531. height: math.unit(1.2, "galaxies")
  6532. },
  6533. {
  6534. name: "Omegamacro",
  6535. height: math.unit(200, "universes")
  6536. },
  6537. ]
  6538. ))
  6539. characterMakers.push(() => makeCharacter(
  6540. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6541. {
  6542. front: {
  6543. height: math.unit(6 + 1 / 6, "feet"),
  6544. weight: math.unit(178, "lbs"),
  6545. name: "Front",
  6546. image: {
  6547. source: "./media/characters/guy/front.svg"
  6548. }
  6549. }
  6550. },
  6551. [
  6552. {
  6553. name: "Normal",
  6554. height: math.unit(6 + 1 / 6, "feet"),
  6555. default: true
  6556. },
  6557. {
  6558. name: "Large",
  6559. height: math.unit(25 + 7 / 12, "feet")
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(60 + 9 / 12, "feet")
  6564. },
  6565. {
  6566. name: "Macro+",
  6567. height: math.unit(246, "feet")
  6568. },
  6569. {
  6570. name: "Macro++",
  6571. height: math.unit(878, "feet")
  6572. }
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6577. {
  6578. front: {
  6579. height: math.unit(9, "feet"),
  6580. weight: math.unit(800, "lbs"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/tiberius/front.svg",
  6584. extra: 2295 / 2071
  6585. }
  6586. },
  6587. back: {
  6588. height: math.unit(9, "feet"),
  6589. weight: math.unit(800, "lbs"),
  6590. name: "Back",
  6591. image: {
  6592. source: "./media/characters/tiberius/back.svg",
  6593. extra: 2373 / 2160
  6594. }
  6595. },
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(9, "feet"),
  6601. default: true
  6602. }
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6607. {
  6608. front: {
  6609. height: math.unit(6, "feet"),
  6610. weight: math.unit(600, "lbs"),
  6611. name: "Front",
  6612. image: {
  6613. source: "./media/characters/surgo/front.svg",
  6614. extra: 3591 / 2227
  6615. }
  6616. },
  6617. back: {
  6618. height: math.unit(6, "feet"),
  6619. weight: math.unit(600, "lbs"),
  6620. name: "Back",
  6621. image: {
  6622. source: "./media/characters/surgo/back.svg",
  6623. extra: 3557 / 2228
  6624. }
  6625. },
  6626. laying: {
  6627. height: math.unit(6 * 0.85, "feet"),
  6628. weight: math.unit(600, "lbs"),
  6629. name: "Laying",
  6630. image: {
  6631. source: "./media/characters/surgo/laying.svg"
  6632. }
  6633. },
  6634. },
  6635. [
  6636. {
  6637. name: "Normal",
  6638. height: math.unit(6, "feet"),
  6639. default: true
  6640. }
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6645. {
  6646. side: {
  6647. height: math.unit(6, "feet"),
  6648. weight: math.unit(150, "lbs"),
  6649. name: "Side",
  6650. image: {
  6651. source: "./media/characters/cibus/side.svg",
  6652. extra: 800 / 400
  6653. }
  6654. },
  6655. },
  6656. [
  6657. {
  6658. name: "Normal",
  6659. height: math.unit(6, "feet"),
  6660. default: true
  6661. }
  6662. ]
  6663. ))
  6664. characterMakers.push(() => makeCharacter(
  6665. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6666. {
  6667. front: {
  6668. height: math.unit(6, "feet"),
  6669. weight: math.unit(240, "lbs"),
  6670. name: "Front",
  6671. image: {
  6672. source: "./media/characters/nibbles/front.svg"
  6673. }
  6674. },
  6675. side: {
  6676. height: math.unit(6, "feet"),
  6677. weight: math.unit(240, "lbs"),
  6678. name: "Side",
  6679. image: {
  6680. source: "./media/characters/nibbles/side.svg"
  6681. }
  6682. },
  6683. },
  6684. [
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(9, "feet"),
  6688. default: true
  6689. }
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6694. {
  6695. side: {
  6696. height: math.unit(5 + 1 / 6, "feet"),
  6697. weight: math.unit(130, "lbs"),
  6698. name: "Side",
  6699. image: {
  6700. source: "./media/characters/rikky/side.svg",
  6701. extra: 851 / 801
  6702. }
  6703. },
  6704. },
  6705. [
  6706. {
  6707. name: "Normal",
  6708. height: math.unit(5 + 1 / 6, "feet")
  6709. },
  6710. {
  6711. name: "Macro",
  6712. height: math.unit(152, "feet"),
  6713. default: true
  6714. },
  6715. {
  6716. name: "Megamacro",
  6717. height: math.unit(7, "miles")
  6718. }
  6719. ]
  6720. ))
  6721. characterMakers.push(() => makeCharacter(
  6722. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6723. {
  6724. side: {
  6725. height: math.unit(370, "cm"),
  6726. weight: math.unit(350, "lbs"),
  6727. name: "Side",
  6728. image: {
  6729. source: "./media/characters/malfressa/side.svg"
  6730. }
  6731. },
  6732. walking: {
  6733. height: math.unit(370, "cm"),
  6734. weight: math.unit(350, "lbs"),
  6735. name: "Walking",
  6736. image: {
  6737. source: "./media/characters/malfressa/walking.svg"
  6738. }
  6739. },
  6740. feral: {
  6741. height: math.unit(2500, "cm"),
  6742. weight: math.unit(100000, "lbs"),
  6743. name: "Feral",
  6744. image: {
  6745. source: "./media/characters/malfressa/feral.svg",
  6746. extra: 2108 / 837,
  6747. bottom: 0.02
  6748. }
  6749. },
  6750. },
  6751. [
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(370, "cm")
  6755. },
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(300, "meters"),
  6759. default: true
  6760. }
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6765. {
  6766. front: {
  6767. height: math.unit(6, "feet"),
  6768. weight: math.unit(60, "kg"),
  6769. name: "Front",
  6770. image: {
  6771. source: "./media/characters/jaro/front.svg",
  6772. extra: 845/817,
  6773. bottom: 45/890
  6774. }
  6775. },
  6776. back: {
  6777. height: math.unit(6, "feet"),
  6778. weight: math.unit(60, "kg"),
  6779. name: "Back",
  6780. image: {
  6781. source: "./media/characters/jaro/back.svg",
  6782. extra: 847/817,
  6783. bottom: 34/881
  6784. }
  6785. },
  6786. },
  6787. [
  6788. {
  6789. name: "Micro",
  6790. height: math.unit(7, "inches")
  6791. },
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(5.5, "feet"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Minimacro",
  6799. height: math.unit(20, "feet")
  6800. },
  6801. {
  6802. name: "Macro",
  6803. height: math.unit(200, "meters")
  6804. }
  6805. ]
  6806. ))
  6807. characterMakers.push(() => makeCharacter(
  6808. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6809. {
  6810. front: {
  6811. height: math.unit(6, "feet"),
  6812. weight: math.unit(195, "lb"),
  6813. name: "Front",
  6814. image: {
  6815. source: "./media/characters/rogue/front.svg"
  6816. }
  6817. },
  6818. },
  6819. [
  6820. {
  6821. name: "Macro",
  6822. height: math.unit(90, "feet"),
  6823. default: true
  6824. },
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6829. {
  6830. standing: {
  6831. height: math.unit(5 + 8 / 12, "feet"),
  6832. weight: math.unit(140, "lb"),
  6833. name: "Standing",
  6834. image: {
  6835. source: "./media/characters/piper/standing.svg",
  6836. extra: 1440/1284,
  6837. bottom: 66/1506
  6838. }
  6839. },
  6840. running: {
  6841. height: math.unit(5 + 8 / 12, "feet"),
  6842. weight: math.unit(140, "lb"),
  6843. name: "Running",
  6844. image: {
  6845. source: "./media/characters/piper/running.svg",
  6846. extra: 3948/3655,
  6847. bottom: 0/3948
  6848. }
  6849. },
  6850. sole: {
  6851. height: math.unit(0.81, "feet"),
  6852. weight: math.unit(2, "kg"),
  6853. name: "Sole",
  6854. image: {
  6855. source: "./media/characters/piper/sole.svg"
  6856. }
  6857. },
  6858. nipple: {
  6859. height: math.unit(0.25, "feet"),
  6860. weight: math.unit(1.5, "lb"),
  6861. name: "Nipple",
  6862. image: {
  6863. source: "./media/characters/piper/nipple.svg"
  6864. }
  6865. },
  6866. head: {
  6867. height: math.unit(1.1, "feet"),
  6868. name: "Head",
  6869. image: {
  6870. source: "./media/characters/piper/head.svg"
  6871. }
  6872. },
  6873. },
  6874. [
  6875. {
  6876. name: "Micro",
  6877. height: math.unit(2, "inches")
  6878. },
  6879. {
  6880. name: "Normal",
  6881. height: math.unit(5 + 8 / 12, "feet")
  6882. },
  6883. {
  6884. name: "Macro",
  6885. height: math.unit(250, "feet"),
  6886. default: true
  6887. },
  6888. {
  6889. name: "Megamacro",
  6890. height: math.unit(7, "miles")
  6891. },
  6892. ]
  6893. ))
  6894. characterMakers.push(() => makeCharacter(
  6895. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6896. {
  6897. front: {
  6898. height: math.unit(6, "feet"),
  6899. weight: math.unit(220, "lb"),
  6900. name: "Front",
  6901. image: {
  6902. source: "./media/characters/gemini/front.svg"
  6903. }
  6904. },
  6905. back: {
  6906. height: math.unit(6, "feet"),
  6907. weight: math.unit(220, "lb"),
  6908. name: "Back",
  6909. image: {
  6910. source: "./media/characters/gemini/back.svg"
  6911. }
  6912. },
  6913. kneeling: {
  6914. height: math.unit(6 / 1.5, "feet"),
  6915. weight: math.unit(220, "lb"),
  6916. name: "Kneeling",
  6917. image: {
  6918. source: "./media/characters/gemini/kneeling.svg",
  6919. bottom: 0.02
  6920. }
  6921. },
  6922. },
  6923. [
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(300, "meters"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Megamacro",
  6931. height: math.unit(6900, "meters")
  6932. },
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6937. {
  6938. anthro: {
  6939. height: math.unit(2.35, "meters"),
  6940. weight: math.unit(73, "kg"),
  6941. name: "Anthro",
  6942. image: {
  6943. source: "./media/characters/alicia/anthro.svg",
  6944. extra: 2571 / 2385,
  6945. bottom: 75 / 2648
  6946. }
  6947. },
  6948. paw: {
  6949. height: math.unit(1.32, "feet"),
  6950. name: "Paw",
  6951. image: {
  6952. source: "./media/characters/alicia/paw.svg"
  6953. }
  6954. },
  6955. feral: {
  6956. height: math.unit(1.69, "meters"),
  6957. weight: math.unit(73, "kg"),
  6958. name: "Feral",
  6959. image: {
  6960. source: "./media/characters/alicia/feral.svg",
  6961. extra: 2123 / 1715,
  6962. bottom: 222 / 2349
  6963. }
  6964. },
  6965. },
  6966. [
  6967. {
  6968. name: "Normal",
  6969. height: math.unit(2.35, "meters")
  6970. },
  6971. {
  6972. name: "Macro",
  6973. height: math.unit(60, "meters"),
  6974. default: true
  6975. },
  6976. {
  6977. name: "Megamacro",
  6978. height: math.unit(10000, "kilometers")
  6979. },
  6980. ]
  6981. ))
  6982. characterMakers.push(() => makeCharacter(
  6983. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6984. {
  6985. front: {
  6986. height: math.unit(7, "feet"),
  6987. weight: math.unit(250, "lbs"),
  6988. name: "Front",
  6989. image: {
  6990. source: "./media/characters/archy/front.svg"
  6991. }
  6992. }
  6993. },
  6994. [
  6995. {
  6996. name: "Micro",
  6997. height: math.unit(1, "inch")
  6998. },
  6999. {
  7000. name: "Shorty",
  7001. height: math.unit(5, "feet")
  7002. },
  7003. {
  7004. name: "Normal",
  7005. height: math.unit(7, "feet")
  7006. },
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(600, "meters"),
  7010. default: true
  7011. },
  7012. {
  7013. name: "Megamacro",
  7014. height: math.unit(1, "mile")
  7015. },
  7016. ]
  7017. ))
  7018. characterMakers.push(() => makeCharacter(
  7019. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7020. {
  7021. front: {
  7022. height: math.unit(1.65, "meters"),
  7023. weight: math.unit(74, "kg"),
  7024. name: "Front",
  7025. image: {
  7026. source: "./media/characters/berri/front.svg",
  7027. extra: 857 / 837,
  7028. bottom: 18 / 877
  7029. }
  7030. },
  7031. bum: {
  7032. height: math.unit(1.46, "feet"),
  7033. name: "Bum",
  7034. image: {
  7035. source: "./media/characters/berri/bum.svg"
  7036. }
  7037. },
  7038. mouth: {
  7039. height: math.unit(0.44, "feet"),
  7040. name: "Mouth",
  7041. image: {
  7042. source: "./media/characters/berri/mouth.svg"
  7043. }
  7044. },
  7045. paw: {
  7046. height: math.unit(0.826, "feet"),
  7047. name: "Paw",
  7048. image: {
  7049. source: "./media/characters/berri/paw.svg"
  7050. }
  7051. },
  7052. },
  7053. [
  7054. {
  7055. name: "Normal",
  7056. height: math.unit(1.65, "meters")
  7057. },
  7058. {
  7059. name: "Macro",
  7060. height: math.unit(60, "m"),
  7061. default: true
  7062. },
  7063. {
  7064. name: "Megamacro",
  7065. height: math.unit(9.213, "km")
  7066. },
  7067. {
  7068. name: "Planet Eater",
  7069. height: math.unit(489, "megameters")
  7070. },
  7071. {
  7072. name: "Teramacro",
  7073. height: math.unit(2471635000000, "meters")
  7074. },
  7075. {
  7076. name: "Examacro",
  7077. height: math.unit(8.0624e+26, "meters")
  7078. }
  7079. ]
  7080. ))
  7081. characterMakers.push(() => makeCharacter(
  7082. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7083. {
  7084. front: {
  7085. height: math.unit(1.72, "meters"),
  7086. weight: math.unit(68, "kg"),
  7087. name: "Front",
  7088. image: {
  7089. source: "./media/characters/lexi/front.svg"
  7090. }
  7091. }
  7092. },
  7093. [
  7094. {
  7095. name: "Very Smol",
  7096. height: math.unit(10, "mm")
  7097. },
  7098. {
  7099. name: "Micro",
  7100. height: math.unit(6.8, "cm"),
  7101. default: true
  7102. },
  7103. {
  7104. name: "Normal",
  7105. height: math.unit(1.72, "m")
  7106. }
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(1.69, "meters"),
  7114. weight: math.unit(68, "kg"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/martin/front.svg",
  7118. extra: 596 / 581
  7119. }
  7120. }
  7121. },
  7122. [
  7123. {
  7124. name: "Micro",
  7125. height: math.unit(6.85, "cm"),
  7126. default: true
  7127. },
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(1.69, "m")
  7131. }
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7136. {
  7137. front: {
  7138. height: math.unit(1.69, "meters"),
  7139. weight: math.unit(68, "kg"),
  7140. name: "Front",
  7141. image: {
  7142. source: "./media/characters/juno/front.svg"
  7143. }
  7144. }
  7145. },
  7146. [
  7147. {
  7148. name: "Micro",
  7149. height: math.unit(7, "cm")
  7150. },
  7151. {
  7152. name: "Normal",
  7153. height: math.unit(1.89, "m")
  7154. },
  7155. {
  7156. name: "Macro",
  7157. height: math.unit(353, "meters"),
  7158. default: true
  7159. }
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(1.93, "meters"),
  7167. weight: math.unit(83, "kg"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/samantha/front.svg"
  7171. }
  7172. },
  7173. frontClothed: {
  7174. height: math.unit(1.93, "meters"),
  7175. weight: math.unit(83, "kg"),
  7176. name: "Front (Clothed)",
  7177. image: {
  7178. source: "./media/characters/samantha/front-clothed.svg"
  7179. }
  7180. },
  7181. back: {
  7182. height: math.unit(1.93, "meters"),
  7183. weight: math.unit(83, "kg"),
  7184. name: "Back",
  7185. image: {
  7186. source: "./media/characters/samantha/back.svg"
  7187. }
  7188. },
  7189. },
  7190. [
  7191. {
  7192. name: "Normal",
  7193. height: math.unit(1.93, "m")
  7194. },
  7195. {
  7196. name: "Macro",
  7197. height: math.unit(74, "meters"),
  7198. default: true
  7199. },
  7200. {
  7201. name: "Macro+",
  7202. height: math.unit(223, "meters"),
  7203. },
  7204. {
  7205. name: "Megamacro",
  7206. height: math.unit(8381, "meters"),
  7207. },
  7208. {
  7209. name: "Megamacro+",
  7210. height: math.unit(12000, "kilometers")
  7211. },
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7216. {
  7217. front: {
  7218. height: math.unit(1.92, "meters"),
  7219. weight: math.unit(80, "kg"),
  7220. name: "Front",
  7221. image: {
  7222. source: "./media/characters/dr-clay/front.svg"
  7223. }
  7224. },
  7225. frontClothed: {
  7226. height: math.unit(1.92, "meters"),
  7227. weight: math.unit(80, "kg"),
  7228. name: "Front (Clothed)",
  7229. image: {
  7230. source: "./media/characters/dr-clay/front-clothed.svg"
  7231. }
  7232. }
  7233. },
  7234. [
  7235. {
  7236. name: "Normal",
  7237. height: math.unit(1.92, "m")
  7238. },
  7239. {
  7240. name: "Macro",
  7241. height: math.unit(214, "meters"),
  7242. default: true
  7243. },
  7244. {
  7245. name: "Macro+",
  7246. height: math.unit(12.237, "meters"),
  7247. },
  7248. {
  7249. name: "Megamacro",
  7250. height: math.unit(557, "megameters"),
  7251. },
  7252. {
  7253. name: "Unimaginable",
  7254. height: math.unit(120e9, "lightyears")
  7255. },
  7256. ]
  7257. ))
  7258. characterMakers.push(() => makeCharacter(
  7259. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7260. {
  7261. front: {
  7262. height: math.unit(2, "meters"),
  7263. weight: math.unit(80, "kg"),
  7264. name: "Front",
  7265. image: {
  7266. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7267. }
  7268. }
  7269. },
  7270. [
  7271. {
  7272. name: "Teramacro",
  7273. height: math.unit(500000, "lightyears"),
  7274. default: true
  7275. },
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7280. {
  7281. crux: {
  7282. height: math.unit(2, "meters"),
  7283. weight: math.unit(150, "kg"),
  7284. name: "Crux",
  7285. image: {
  7286. source: "./media/characters/vemus/crux.svg",
  7287. extra: 1074/936,
  7288. bottom: 23/1097
  7289. }
  7290. },
  7291. skunkTanuki: {
  7292. height: math.unit(2, "meters"),
  7293. weight: math.unit(150, "kg"),
  7294. name: "Skunk-Tanuki",
  7295. image: {
  7296. source: "./media/characters/vemus/skunk-tanuki.svg",
  7297. extra: 926/893,
  7298. bottom: 20/946
  7299. }
  7300. },
  7301. },
  7302. [
  7303. {
  7304. name: "Normal",
  7305. height: math.unit(4, "meters"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Big",
  7310. height: math.unit(8, "meters")
  7311. },
  7312. {
  7313. name: "Macro",
  7314. height: math.unit(100, "meters")
  7315. },
  7316. {
  7317. name: "Macro+",
  7318. height: math.unit(1500, "meters")
  7319. },
  7320. {
  7321. name: "Stellar",
  7322. height: math.unit(14e8, "meters")
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7328. {
  7329. front: {
  7330. height: math.unit(2, "meters"),
  7331. weight: math.unit(70, "kg"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/beherit/front.svg",
  7335. extra: 1234/1109,
  7336. bottom: 55/1289
  7337. }
  7338. }
  7339. },
  7340. [
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(6, "feet")
  7344. },
  7345. {
  7346. name: "Lorg",
  7347. height: math.unit(25, "feet"),
  7348. default: true
  7349. },
  7350. {
  7351. name: "Lorger",
  7352. height: math.unit(75, "feet")
  7353. },
  7354. {
  7355. name: "Macro",
  7356. height: math.unit(200, "meters")
  7357. },
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7362. {
  7363. front: {
  7364. height: math.unit(2, "meters"),
  7365. weight: math.unit(150, "kg"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/everett/front.svg",
  7369. extra: 1017/866,
  7370. bottom: 86/1103
  7371. }
  7372. },
  7373. paw: {
  7374. height: math.unit(2 / 3.6, "meters"),
  7375. name: "Paw",
  7376. image: {
  7377. source: "./media/characters/everett/paw.svg"
  7378. }
  7379. },
  7380. },
  7381. [
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(15, "feet"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Lorg",
  7389. height: math.unit(70, "feet"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Lorger",
  7394. height: math.unit(250, "feet")
  7395. },
  7396. {
  7397. name: "Macro",
  7398. height: math.unit(500, "meters")
  7399. },
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7404. {
  7405. front: {
  7406. height: math.unit(2, "meters"),
  7407. weight: math.unit(86, "kg"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/rose/front.svg",
  7411. extra: 1785/1636,
  7412. bottom: 30/1815
  7413. },
  7414. form: "liom",
  7415. default: true
  7416. },
  7417. frontSporty: {
  7418. height: math.unit(2, "meters"),
  7419. weight: math.unit(86, "kg"),
  7420. name: "Front (Sporty)",
  7421. image: {
  7422. source: "./media/characters/rose/front-sporty.svg",
  7423. extra: 350/335,
  7424. bottom: 10/360
  7425. },
  7426. form: "liom"
  7427. },
  7428. frontAlt: {
  7429. height: math.unit(1.6, "meters"),
  7430. weight: math.unit(86, "kg"),
  7431. name: "Front (Alt)",
  7432. image: {
  7433. source: "./media/characters/rose/front-alt.svg",
  7434. extra: 299/283,
  7435. bottom: 3/302
  7436. },
  7437. form: "liom"
  7438. },
  7439. plush: {
  7440. height: math.unit(2, "meters"),
  7441. weight: math.unit(86/3, "kg"),
  7442. name: "Plush",
  7443. image: {
  7444. source: "./media/characters/rose/plush.svg",
  7445. extra: 361/337,
  7446. bottom: 11/372
  7447. },
  7448. form: "plush",
  7449. default: true
  7450. },
  7451. faeStanding: {
  7452. height: math.unit(10, "cm"),
  7453. weight: math.unit(10, "grams"),
  7454. name: "Standing",
  7455. image: {
  7456. source: "./media/characters/rose/fae-standing.svg",
  7457. extra: 1189/1060,
  7458. bottom: 27/1216
  7459. },
  7460. form: "fae",
  7461. default: true
  7462. },
  7463. faeSitting: {
  7464. height: math.unit(5, "cm"),
  7465. weight: math.unit(10, "grams"),
  7466. name: "Sitting",
  7467. image: {
  7468. source: "./media/characters/rose/fae-sitting.svg",
  7469. extra: 737/577,
  7470. bottom: 356/1093
  7471. },
  7472. form: "fae"
  7473. },
  7474. faePaw: {
  7475. height: math.unit(1.35, "cm"),
  7476. name: "Paw",
  7477. image: {
  7478. source: "./media/characters/rose/fae-paw.svg"
  7479. },
  7480. form: "fae"
  7481. },
  7482. },
  7483. [
  7484. {
  7485. name: "True Micro",
  7486. height: math.unit(9, "cm"),
  7487. form: "liom"
  7488. },
  7489. {
  7490. name: "Micro",
  7491. height: math.unit(16, "cm"),
  7492. form: "liom"
  7493. },
  7494. {
  7495. name: "Normal",
  7496. height: math.unit(1.85, "meters"),
  7497. default: true,
  7498. form: "liom"
  7499. },
  7500. {
  7501. name: "Mini-Macro",
  7502. height: math.unit(5, "meters"),
  7503. form: "liom"
  7504. },
  7505. {
  7506. name: "Macro",
  7507. height: math.unit(15, "meters"),
  7508. form: "liom"
  7509. },
  7510. {
  7511. name: "True Macro",
  7512. height: math.unit(40, "meters"),
  7513. form: "liom"
  7514. },
  7515. {
  7516. name: "City Scale",
  7517. height: math.unit(1, "km"),
  7518. form: "liom"
  7519. },
  7520. {
  7521. name: "Plushie",
  7522. height: math.unit(9, "cm"),
  7523. form: "plush",
  7524. default: true
  7525. },
  7526. {
  7527. name: "Fae",
  7528. height: math.unit(10, "cm"),
  7529. form: "fae",
  7530. default: true
  7531. },
  7532. ],
  7533. {
  7534. "liom": {
  7535. name: "Liom"
  7536. },
  7537. "plush": {
  7538. name: "Plush"
  7539. },
  7540. "fae": {
  7541. name: "Fae Fox",
  7542. default: true
  7543. }
  7544. }
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(2, "meters"),
  7551. weight: math.unit(350, "lbs"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/regal/front.svg"
  7555. }
  7556. },
  7557. back: {
  7558. height: math.unit(2, "meters"),
  7559. weight: math.unit(350, "lbs"),
  7560. name: "Back",
  7561. image: {
  7562. source: "./media/characters/regal/back.svg"
  7563. }
  7564. },
  7565. },
  7566. [
  7567. {
  7568. name: "Macro",
  7569. height: math.unit(350, "feet"),
  7570. default: true
  7571. }
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(4 + 11 / 12, "feet"),
  7579. weight: math.unit(100, "lbs"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/opal/front.svg"
  7583. }
  7584. },
  7585. frontAlt: {
  7586. height: math.unit(4 + 11 / 12, "feet"),
  7587. weight: math.unit(100, "lbs"),
  7588. name: "Front (Alt)",
  7589. image: {
  7590. source: "./media/characters/opal/front-alt.svg"
  7591. }
  7592. },
  7593. },
  7594. [
  7595. {
  7596. name: "Small",
  7597. height: math.unit(4 + 11 / 12, "feet")
  7598. },
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(20, "feet"),
  7602. default: true
  7603. },
  7604. {
  7605. name: "Macro",
  7606. height: math.unit(120, "feet")
  7607. },
  7608. {
  7609. name: "Megamacro",
  7610. height: math.unit(80, "miles")
  7611. },
  7612. {
  7613. name: "True Size",
  7614. height: math.unit(100000, "lightyears")
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(200, "lbs"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/vector-wuff/front.svg"
  7627. }
  7628. }
  7629. },
  7630. [
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(2.8, "meters")
  7634. },
  7635. {
  7636. name: "Macro",
  7637. height: math.unit(450, "meters"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Megamacro",
  7642. height: math.unit(15, "kilometers")
  7643. }
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(6, "feet"),
  7651. weight: math.unit(256, "lbs"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/dannik/front.svg"
  7655. }
  7656. }
  7657. },
  7658. [
  7659. {
  7660. name: "Macro",
  7661. height: math.unit(69.57, "meters"),
  7662. default: true
  7663. },
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7668. {
  7669. front: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(120, "lbs"),
  7672. name: "Front",
  7673. image: {
  7674. source: "./media/characters/azura-saharah/front.svg"
  7675. }
  7676. },
  7677. back: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(120, "lbs"),
  7680. name: "Back",
  7681. image: {
  7682. source: "./media/characters/azura-saharah/back.svg"
  7683. }
  7684. },
  7685. },
  7686. [
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(100, "feet"),
  7690. default: true
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7696. {
  7697. side: {
  7698. height: math.unit(5 + 4 / 12, "feet"),
  7699. weight: math.unit(163, "lbs"),
  7700. name: "Side",
  7701. image: {
  7702. source: "./media/characters/kennedy/side.svg"
  7703. }
  7704. }
  7705. },
  7706. [
  7707. {
  7708. name: "Standard Doggo",
  7709. height: math.unit(5 + 4 / 12, "feet")
  7710. },
  7711. {
  7712. name: "Big Doggo",
  7713. height: math.unit(25 + 3 / 12, "feet"),
  7714. default: true
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7720. {
  7721. front: {
  7722. height: math.unit(5 + 5/12, "feet"),
  7723. weight: math.unit(100, "lbs"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/odios-de-lunar/front.svg",
  7727. extra: 1468/1323,
  7728. bottom: 22/1490
  7729. }
  7730. }
  7731. },
  7732. [
  7733. {
  7734. name: "Micro",
  7735. height: math.unit(3, "inches")
  7736. },
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(5.5, "feet"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(100, "feet")
  7745. },
  7746. ]
  7747. ))
  7748. characterMakers.push(() => makeCharacter(
  7749. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7750. {
  7751. back: {
  7752. height: math.unit(6, "feet"),
  7753. weight: math.unit(220, "lbs"),
  7754. name: "Back",
  7755. image: {
  7756. source: "./media/characters/mandake/back.svg"
  7757. }
  7758. }
  7759. },
  7760. [
  7761. {
  7762. name: "Normal",
  7763. height: math.unit(7, "feet"),
  7764. default: true
  7765. },
  7766. {
  7767. name: "Macro",
  7768. height: math.unit(78, "feet")
  7769. },
  7770. {
  7771. name: "Macro+",
  7772. height: math.unit(300, "meters")
  7773. },
  7774. {
  7775. name: "Macro++",
  7776. height: math.unit(2400, "feet")
  7777. },
  7778. {
  7779. name: "Megamacro",
  7780. height: math.unit(5167, "meters")
  7781. },
  7782. {
  7783. name: "Gigamacro",
  7784. height: math.unit(41769, "miles")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(120, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/yozey/front.svg"
  7797. }
  7798. },
  7799. frontAlt: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(120, "lbs"),
  7802. name: "Front (Alt)",
  7803. image: {
  7804. source: "./media/characters/yozey/front-alt.svg"
  7805. }
  7806. },
  7807. side: {
  7808. height: math.unit(6, "feet"),
  7809. weight: math.unit(120, "lbs"),
  7810. name: "Side",
  7811. image: {
  7812. source: "./media/characters/yozey/side.svg"
  7813. }
  7814. },
  7815. },
  7816. [
  7817. {
  7818. name: "Micro",
  7819. height: math.unit(3, "inches"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "Normal",
  7824. height: math.unit(6, "feet")
  7825. }
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(103, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/valeska-voss/front.svg"
  7837. }
  7838. }
  7839. },
  7840. [
  7841. {
  7842. name: "Mini-Sized Sub",
  7843. height: math.unit(3.1, "inches")
  7844. },
  7845. {
  7846. name: "Mid-Sized Sub",
  7847. height: math.unit(6.2, "inches")
  7848. },
  7849. {
  7850. name: "Full-Sized Sub",
  7851. height: math.unit(9.3, "inches")
  7852. },
  7853. {
  7854. name: "Normal",
  7855. height: math.unit(5 + 2 / 12, "foot"),
  7856. default: true
  7857. },
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7862. {
  7863. front: {
  7864. height: math.unit(6, "feet"),
  7865. weight: math.unit(160, "lbs"),
  7866. name: "Front",
  7867. image: {
  7868. source: "./media/characters/gene-zeta/front.svg",
  7869. extra: 3006 / 2826,
  7870. bottom: 182 / 3188
  7871. }
  7872. }
  7873. },
  7874. [
  7875. {
  7876. name: "Micro",
  7877. height: math.unit(6, "inches")
  7878. },
  7879. {
  7880. name: "Normal",
  7881. height: math.unit(5 + 11 / 12, "foot"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Macro",
  7886. height: math.unit(140, "feet")
  7887. },
  7888. {
  7889. name: "Supercharged",
  7890. height: math.unit(2500, "feet")
  7891. },
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7896. {
  7897. front: {
  7898. height: math.unit(6, "feet"),
  7899. weight: math.unit(350, "lbs"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/razinox/front.svg",
  7903. extra: 1686 / 1548,
  7904. bottom: 28.2 / 1868
  7905. }
  7906. },
  7907. back: {
  7908. height: math.unit(6, "feet"),
  7909. weight: math.unit(350, "lbs"),
  7910. name: "Back",
  7911. image: {
  7912. source: "./media/characters/razinox/back.svg",
  7913. extra: 1660 / 1590,
  7914. bottom: 15 / 1665
  7915. }
  7916. },
  7917. },
  7918. [
  7919. {
  7920. name: "Normal",
  7921. height: math.unit(10 + 8 / 12, "foot")
  7922. },
  7923. {
  7924. name: "Minimacro",
  7925. height: math.unit(15, "foot")
  7926. },
  7927. {
  7928. name: "Macro",
  7929. height: math.unit(60, "foot"),
  7930. default: true
  7931. },
  7932. {
  7933. name: "Megamacro",
  7934. height: math.unit(5, "miles")
  7935. },
  7936. {
  7937. name: "Gigamacro",
  7938. height: math.unit(6000, "miles")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(150, "lbs"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/cobalt/front.svg"
  7951. }
  7952. }
  7953. },
  7954. [
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(8 + 1 / 12, "foot")
  7958. },
  7959. {
  7960. name: "Macro",
  7961. height: math.unit(111, "foot"),
  7962. default: true
  7963. },
  7964. {
  7965. name: "Supracosmic",
  7966. height: math.unit(1e42, "feet")
  7967. },
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(5, "inches"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/amanda/front.svg",
  7978. extra: 926/791,
  7979. bottom: 38/964
  7980. }
  7981. },
  7982. back: {
  7983. height: math.unit(5, "inches"),
  7984. name: "Back",
  7985. image: {
  7986. source: "./media/characters/amanda/back.svg",
  7987. extra: 909/805,
  7988. bottom: 43/952
  7989. }
  7990. },
  7991. },
  7992. [
  7993. {
  7994. name: "Micro",
  7995. height: math.unit(5, "inches"),
  7996. default: true
  7997. },
  7998. ]
  7999. ))
  8000. characterMakers.push(() => makeCharacter(
  8001. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8002. {
  8003. front: {
  8004. height: math.unit(2.75, "meters"),
  8005. weight: math.unit(1200, "lb"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/teal/front.svg",
  8009. extra: 2463 / 2320,
  8010. bottom: 166 / 2629
  8011. }
  8012. },
  8013. back: {
  8014. height: math.unit(2.75, "meters"),
  8015. weight: math.unit(1200, "lb"),
  8016. name: "Back",
  8017. image: {
  8018. source: "./media/characters/teal/back.svg",
  8019. extra: 2580 / 2489,
  8020. bottom: 151 / 2731
  8021. }
  8022. },
  8023. sitting: {
  8024. height: math.unit(1.9, "meters"),
  8025. weight: math.unit(1200, "lb"),
  8026. name: "Sitting",
  8027. image: {
  8028. source: "./media/characters/teal/sitting.svg",
  8029. extra: 623 / 590,
  8030. bottom: 121 / 744
  8031. }
  8032. },
  8033. standing: {
  8034. height: math.unit(2.75, "meters"),
  8035. weight: math.unit(1200, "lb"),
  8036. name: "Standing",
  8037. image: {
  8038. source: "./media/characters/teal/standing.svg",
  8039. extra: 923 / 893,
  8040. bottom: 60 / 983
  8041. }
  8042. },
  8043. stretching: {
  8044. height: math.unit(3.65, "meters"),
  8045. weight: math.unit(1200, "lb"),
  8046. name: "Stretching",
  8047. image: {
  8048. source: "./media/characters/teal/stretching.svg",
  8049. extra: 1276 / 1244,
  8050. bottom: 0 / 1276
  8051. }
  8052. },
  8053. legged: {
  8054. height: math.unit(1.3, "meters"),
  8055. weight: math.unit(100, "lb"),
  8056. name: "Legged",
  8057. image: {
  8058. source: "./media/characters/teal/legged.svg",
  8059. extra: 462 / 437,
  8060. bottom: 24 / 486
  8061. }
  8062. },
  8063. naga: {
  8064. height: math.unit(5.4, "meters"),
  8065. weight: math.unit(4000, "lb"),
  8066. name: "Naga",
  8067. image: {
  8068. source: "./media/characters/teal/naga.svg",
  8069. extra: 1902 / 1858,
  8070. bottom: 0 / 1902
  8071. }
  8072. },
  8073. hand: {
  8074. height: math.unit(0.52, "meters"),
  8075. name: "Hand",
  8076. image: {
  8077. source: "./media/characters/teal/hand.svg"
  8078. }
  8079. },
  8080. maw: {
  8081. height: math.unit(0.43, "meters"),
  8082. name: "Maw",
  8083. image: {
  8084. source: "./media/characters/teal/maw.svg"
  8085. }
  8086. },
  8087. slit: {
  8088. height: math.unit(0.25, "meters"),
  8089. name: "Slit",
  8090. image: {
  8091. source: "./media/characters/teal/slit.svg"
  8092. }
  8093. },
  8094. },
  8095. [
  8096. {
  8097. name: "Normal",
  8098. height: math.unit(2.75, "meters"),
  8099. default: true
  8100. },
  8101. {
  8102. name: "Macro",
  8103. height: math.unit(300, "feet")
  8104. },
  8105. {
  8106. name: "Macro+",
  8107. height: math.unit(2000, "feet")
  8108. },
  8109. ]
  8110. ))
  8111. characterMakers.push(() => makeCharacter(
  8112. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8113. {
  8114. frontCat: {
  8115. height: math.unit(6, "feet"),
  8116. weight: math.unit(180, "lbs"),
  8117. name: "Front (Cat)",
  8118. image: {
  8119. source: "./media/characters/ravin-amulet/front-cat.svg"
  8120. }
  8121. },
  8122. frontCatAlt: {
  8123. height: math.unit(6, "feet"),
  8124. weight: math.unit(180, "lbs"),
  8125. name: "Front (Alt, Cat)",
  8126. image: {
  8127. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8128. }
  8129. },
  8130. frontWerewolf: {
  8131. height: math.unit(6 * 1.2, "feet"),
  8132. weight: math.unit(225, "lbs"),
  8133. name: "Front (Werewolf)",
  8134. image: {
  8135. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8136. }
  8137. },
  8138. backWerewolf: {
  8139. height: math.unit(6 * 1.2, "feet"),
  8140. weight: math.unit(225, "lbs"),
  8141. name: "Back (Werewolf)",
  8142. image: {
  8143. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8144. }
  8145. },
  8146. },
  8147. [
  8148. {
  8149. name: "Nano",
  8150. height: math.unit(1, "micrometer")
  8151. },
  8152. {
  8153. name: "Micro",
  8154. height: math.unit(1, "inch")
  8155. },
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(6, "feet"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "Macro",
  8163. height: math.unit(60, "feet")
  8164. }
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8169. {
  8170. front: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(165, "lbs"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/fluoresce/front.svg"
  8176. }
  8177. }
  8178. },
  8179. [
  8180. {
  8181. name: "Micro",
  8182. height: math.unit(6, "cm")
  8183. },
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(5 + 7 / 12, "feet"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(56, "feet")
  8192. },
  8193. {
  8194. name: "Megamacro",
  8195. height: math.unit(1.9, "miles")
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(9 + 6 / 12, "feet"),
  8204. weight: math.unit(523, "lbs"),
  8205. name: "Side",
  8206. image: {
  8207. source: "./media/characters/aurora/side.svg"
  8208. }
  8209. }
  8210. },
  8211. [
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(9 + 6 / 12, "feet")
  8215. },
  8216. {
  8217. name: "Macro",
  8218. height: math.unit(96, "feet"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "Macro+",
  8223. height: math.unit(243, "feet")
  8224. },
  8225. ]
  8226. ))
  8227. characterMakers.push(() => makeCharacter(
  8228. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8229. {
  8230. front: {
  8231. height: math.unit(194, "cm"),
  8232. weight: math.unit(90, "kg"),
  8233. name: "Front",
  8234. image: {
  8235. source: "./media/characters/ranek/front.svg",
  8236. extra: 1862/1791,
  8237. bottom: 80/1942
  8238. }
  8239. },
  8240. back: {
  8241. height: math.unit(194, "cm"),
  8242. weight: math.unit(90, "kg"),
  8243. name: "Back",
  8244. image: {
  8245. source: "./media/characters/ranek/back.svg",
  8246. extra: 1853/1787,
  8247. bottom: 74/1927
  8248. }
  8249. },
  8250. feral: {
  8251. height: math.unit(30, "cm"),
  8252. weight: math.unit(1.6, "lbs"),
  8253. name: "Feral",
  8254. image: {
  8255. source: "./media/characters/ranek/feral.svg",
  8256. extra: 990/631,
  8257. bottom: 29/1019
  8258. }
  8259. },
  8260. },
  8261. [
  8262. {
  8263. name: "Normal",
  8264. height: math.unit(194, "cm"),
  8265. default: true
  8266. },
  8267. {
  8268. name: "Macro",
  8269. height: math.unit(100, "meters")
  8270. },
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8275. {
  8276. front: {
  8277. height: math.unit(5 + 6 / 12, "feet"),
  8278. weight: math.unit(153, "lbs"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/andrew-cooper/front.svg"
  8282. }
  8283. },
  8284. },
  8285. [
  8286. {
  8287. name: "Nano",
  8288. height: math.unit(1, "mm")
  8289. },
  8290. {
  8291. name: "Micro",
  8292. height: math.unit(2, "inches")
  8293. },
  8294. {
  8295. name: "Normal",
  8296. height: math.unit(5 + 6 / 12, "feet"),
  8297. default: true
  8298. }
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8303. {
  8304. front: {
  8305. height: math.unit(6, "feet"),
  8306. weight: math.unit(180, "lbs"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/akane-sato/front.svg",
  8310. extra: 1219 / 1140
  8311. }
  8312. },
  8313. back: {
  8314. height: math.unit(6, "feet"),
  8315. weight: math.unit(180, "lbs"),
  8316. name: "Back",
  8317. image: {
  8318. source: "./media/characters/akane-sato/back.svg",
  8319. extra: 1219 / 1170
  8320. }
  8321. },
  8322. },
  8323. [
  8324. {
  8325. name: "Normal",
  8326. height: math.unit(2.5, "meters")
  8327. },
  8328. {
  8329. name: "Macro",
  8330. height: math.unit(250, "meters"),
  8331. default: true
  8332. },
  8333. {
  8334. name: "Megamacro",
  8335. height: math.unit(25, "km")
  8336. },
  8337. ]
  8338. ))
  8339. characterMakers.push(() => makeCharacter(
  8340. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8341. {
  8342. front: {
  8343. height: math.unit(6, "feet"),
  8344. weight: math.unit(65, "kg"),
  8345. name: "Front",
  8346. image: {
  8347. source: "./media/characters/rook/front.svg",
  8348. extra: 960 / 950
  8349. }
  8350. }
  8351. },
  8352. [
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(8.8, "feet")
  8356. },
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(88, "feet"),
  8360. default: true
  8361. },
  8362. {
  8363. name: "Megamacro",
  8364. height: math.unit(8, "miles")
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(12 + 2 / 12, "feet"),
  8373. weight: math.unit(808, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/prodigy/front.svg"
  8377. }
  8378. }
  8379. },
  8380. [
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(12 + 2 / 12, "feet"),
  8384. default: true
  8385. },
  8386. {
  8387. name: "Macro",
  8388. height: math.unit(143, "feet")
  8389. },
  8390. {
  8391. name: "Macro+",
  8392. height: math.unit(400, "feet")
  8393. },
  8394. ]
  8395. ))
  8396. characterMakers.push(() => makeCharacter(
  8397. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8398. {
  8399. front: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(225, "lbs"),
  8402. name: "Front",
  8403. image: {
  8404. source: "./media/characters/daniel/front.svg"
  8405. }
  8406. },
  8407. leaning: {
  8408. height: math.unit(6, "feet"),
  8409. weight: math.unit(225, "lbs"),
  8410. name: "Leaning",
  8411. image: {
  8412. source: "./media/characters/daniel/leaning.svg"
  8413. }
  8414. },
  8415. },
  8416. [
  8417. {
  8418. name: "Macro",
  8419. height: math.unit(1000, "feet"),
  8420. default: true
  8421. },
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8426. {
  8427. front: {
  8428. height: math.unit(6, "feet"),
  8429. weight: math.unit(88, "lbs"),
  8430. name: "Front",
  8431. image: {
  8432. source: "./media/characters/chiros/front.svg",
  8433. extra: 306 / 226
  8434. }
  8435. },
  8436. side: {
  8437. height: math.unit(6, "feet"),
  8438. weight: math.unit(88, "lbs"),
  8439. name: "Side",
  8440. image: {
  8441. source: "./media/characters/chiros/side.svg",
  8442. extra: 306 / 226
  8443. }
  8444. },
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(6, "cm"),
  8450. default: true
  8451. },
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8456. {
  8457. front: {
  8458. height: math.unit(6, "feet"),
  8459. weight: math.unit(100, "lbs"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/selka/front.svg",
  8463. extra: 947 / 887
  8464. }
  8465. }
  8466. },
  8467. [
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(5, "cm"),
  8471. default: true
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(8 + 3 / 12, "feet"),
  8480. weight: math.unit(424, "lbs"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/verin/front.svg",
  8484. extra: 1845 / 1550
  8485. }
  8486. },
  8487. frontArmored: {
  8488. height: math.unit(8 + 3 / 12, "feet"),
  8489. weight: math.unit(424, "lbs"),
  8490. name: "Front (Armored)",
  8491. image: {
  8492. source: "./media/characters/verin/front-armor.svg",
  8493. extra: 1845 / 1550,
  8494. bottom: 0.01
  8495. }
  8496. },
  8497. back: {
  8498. height: math.unit(8 + 3 / 12, "feet"),
  8499. weight: math.unit(424, "lbs"),
  8500. name: "Back",
  8501. image: {
  8502. source: "./media/characters/verin/back.svg",
  8503. bottom: 0.1,
  8504. extra: 1
  8505. }
  8506. },
  8507. foot: {
  8508. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8509. name: "Foot",
  8510. image: {
  8511. source: "./media/characters/verin/foot.svg"
  8512. }
  8513. },
  8514. },
  8515. [
  8516. {
  8517. name: "Normal",
  8518. height: math.unit(8 + 3 / 12, "feet")
  8519. },
  8520. {
  8521. name: "Minimacro",
  8522. height: math.unit(21, "feet"),
  8523. default: true
  8524. },
  8525. {
  8526. name: "Macro",
  8527. height: math.unit(626, "feet")
  8528. },
  8529. ]
  8530. ))
  8531. characterMakers.push(() => makeCharacter(
  8532. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8533. {
  8534. front: {
  8535. height: math.unit(2.718, "meters"),
  8536. weight: math.unit(150, "lbs"),
  8537. name: "Front",
  8538. image: {
  8539. source: "./media/characters/sovrim-terraquian/front.svg",
  8540. extra: 1752/1689,
  8541. bottom: 36/1788
  8542. }
  8543. },
  8544. back: {
  8545. height: math.unit(2.718, "meters"),
  8546. weight: math.unit(150, "lbs"),
  8547. name: "Back",
  8548. image: {
  8549. source: "./media/characters/sovrim-terraquian/back.svg",
  8550. extra: 1698/1657,
  8551. bottom: 58/1756
  8552. }
  8553. },
  8554. tongue: {
  8555. height: math.unit(2.865, "feet"),
  8556. name: "Tongue",
  8557. image: {
  8558. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8559. }
  8560. },
  8561. hand: {
  8562. height: math.unit(1.61, "feet"),
  8563. name: "Hand",
  8564. image: {
  8565. source: "./media/characters/sovrim-terraquian/hand.svg"
  8566. }
  8567. },
  8568. foot: {
  8569. height: math.unit(1.05, "feet"),
  8570. name: "Foot",
  8571. image: {
  8572. source: "./media/characters/sovrim-terraquian/foot.svg"
  8573. }
  8574. },
  8575. footAlt: {
  8576. height: math.unit(0.88, "feet"),
  8577. name: "Foot (Alt)",
  8578. image: {
  8579. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Micro",
  8586. height: math.unit(2, "inches")
  8587. },
  8588. {
  8589. name: "Small",
  8590. height: math.unit(1, "meter")
  8591. },
  8592. {
  8593. name: "Normal",
  8594. height: math.unit(Math.E, "meters"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Macro",
  8599. height: math.unit(20, "meters")
  8600. },
  8601. {
  8602. name: "Macro+",
  8603. height: math.unit(400, "meters")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8609. {
  8610. front: {
  8611. height: math.unit(7, "feet"),
  8612. weight: math.unit(489, "lbs"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/reece-silvermane/front.svg",
  8616. bottom: 0.02,
  8617. extra: 1
  8618. }
  8619. },
  8620. },
  8621. [
  8622. {
  8623. name: "Macro",
  8624. height: math.unit(1.5, "miles"),
  8625. default: true
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(6, "feet"),
  8634. weight: math.unit(78, "kg"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/kane/front.svg",
  8638. extra: 978 / 899
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(2.1, "m"),
  8646. },
  8647. {
  8648. name: "Macro",
  8649. height: math.unit(1, "km"),
  8650. default: true
  8651. },
  8652. ]
  8653. ))
  8654. characterMakers.push(() => makeCharacter(
  8655. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8656. {
  8657. front: {
  8658. height: math.unit(6, "feet"),
  8659. weight: math.unit(200, "kg"),
  8660. name: "Front",
  8661. image: {
  8662. source: "./media/characters/tegon/front.svg",
  8663. bottom: 0.01,
  8664. extra: 1
  8665. }
  8666. },
  8667. },
  8668. [
  8669. {
  8670. name: "Micro",
  8671. height: math.unit(1, "inch")
  8672. },
  8673. {
  8674. name: "Normal",
  8675. height: math.unit(6 + 3 / 12, "feet"),
  8676. default: true
  8677. },
  8678. {
  8679. name: "Macro",
  8680. height: math.unit(300, "feet")
  8681. },
  8682. {
  8683. name: "Megamacro",
  8684. height: math.unit(69, "miles")
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8690. {
  8691. side: {
  8692. height: math.unit(6, "feet"),
  8693. weight: math.unit(2304, "lbs"),
  8694. name: "Side",
  8695. image: {
  8696. source: "./media/characters/arcturax/side.svg",
  8697. extra: 790 / 376,
  8698. bottom: 0.01
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Micro",
  8705. height: math.unit(2, "inch")
  8706. },
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(6, "feet")
  8710. },
  8711. {
  8712. name: "Macro",
  8713. height: math.unit(39, "feet"),
  8714. default: true
  8715. },
  8716. {
  8717. name: "Megamacro",
  8718. height: math.unit(7, "miles")
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(6, "feet"),
  8727. weight: math.unit(50, "lbs"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/sentri/front.svg",
  8731. extra: 1750 / 1570,
  8732. bottom: 0.025
  8733. }
  8734. },
  8735. frontAlt: {
  8736. height: math.unit(6, "feet"),
  8737. weight: math.unit(50, "lbs"),
  8738. name: "Front (Alt)",
  8739. image: {
  8740. source: "./media/characters/sentri/front-alt.svg",
  8741. extra: 1750 / 1570,
  8742. bottom: 0.025
  8743. }
  8744. },
  8745. },
  8746. [
  8747. {
  8748. name: "Normal",
  8749. height: math.unit(15, "feet"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Macro",
  8754. height: math.unit(2500, "feet")
  8755. }
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(5 + 8 / 12, "feet"),
  8763. weight: math.unit(130, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/corvin/front.svg",
  8767. extra: 1803 / 1629
  8768. }
  8769. },
  8770. frontShirt: {
  8771. height: math.unit(5 + 8 / 12, "feet"),
  8772. weight: math.unit(130, "lbs"),
  8773. name: "Front (Shirt)",
  8774. image: {
  8775. source: "./media/characters/corvin/front-shirt.svg",
  8776. extra: 1803 / 1629
  8777. }
  8778. },
  8779. frontPoncho: {
  8780. height: math.unit(5 + 8 / 12, "feet"),
  8781. weight: math.unit(130, "lbs"),
  8782. name: "Front (Poncho)",
  8783. image: {
  8784. source: "./media/characters/corvin/front-poncho.svg",
  8785. extra: 1803 / 1629
  8786. }
  8787. },
  8788. side: {
  8789. height: math.unit(5 + 8 / 12, "feet"),
  8790. weight: math.unit(130, "lbs"),
  8791. name: "Side",
  8792. image: {
  8793. source: "./media/characters/corvin/side.svg",
  8794. extra: 1012 / 945
  8795. }
  8796. },
  8797. back: {
  8798. height: math.unit(5 + 8 / 12, "feet"),
  8799. weight: math.unit(130, "lbs"),
  8800. name: "Back",
  8801. image: {
  8802. source: "./media/characters/corvin/back.svg",
  8803. extra: 1803 / 1629
  8804. }
  8805. },
  8806. },
  8807. [
  8808. {
  8809. name: "Micro",
  8810. height: math.unit(3, "inches")
  8811. },
  8812. {
  8813. name: "Normal",
  8814. height: math.unit(5 + 8 / 12, "feet")
  8815. },
  8816. {
  8817. name: "Macro",
  8818. height: math.unit(300, "feet"),
  8819. default: true
  8820. },
  8821. {
  8822. name: "Megamacro",
  8823. height: math.unit(500, "miles")
  8824. }
  8825. ]
  8826. ))
  8827. characterMakers.push(() => makeCharacter(
  8828. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8829. {
  8830. front: {
  8831. height: math.unit(6, "feet"),
  8832. weight: math.unit(135, "lbs"),
  8833. name: "Front",
  8834. image: {
  8835. source: "./media/characters/q/front.svg",
  8836. extra: 854 / 752,
  8837. bottom: 0.005
  8838. }
  8839. },
  8840. back: {
  8841. height: math.unit(6, "feet"),
  8842. weight: math.unit(130, "lbs"),
  8843. name: "Back",
  8844. image: {
  8845. source: "./media/characters/q/back.svg",
  8846. extra: 854 / 752
  8847. }
  8848. },
  8849. },
  8850. [
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(90, "feet"),
  8854. default: true
  8855. },
  8856. {
  8857. name: "Extra Macro",
  8858. height: math.unit(300, "feet"),
  8859. },
  8860. {
  8861. name: "BIG WALF",
  8862. height: math.unit(750, "feet"),
  8863. },
  8864. ]
  8865. ))
  8866. characterMakers.push(() => makeCharacter(
  8867. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8868. {
  8869. front: {
  8870. height: math.unit(3, "feet"),
  8871. weight: math.unit(28, "lbs"),
  8872. name: "Front",
  8873. image: {
  8874. source: "./media/characters/citrine/front.svg"
  8875. }
  8876. }
  8877. },
  8878. [
  8879. {
  8880. name: "Normal",
  8881. height: math.unit(3, "feet"),
  8882. default: true
  8883. }
  8884. ]
  8885. ))
  8886. characterMakers.push(() => makeCharacter(
  8887. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8888. {
  8889. front: {
  8890. height: math.unit(14, "feet"),
  8891. weight: math.unit(1450, "kg"),
  8892. preyCapacity: math.unit(15, "people"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/aura-starwind/front.svg",
  8896. extra: 1440/1327,
  8897. bottom: 11/1451
  8898. }
  8899. },
  8900. side: {
  8901. height: math.unit(14, "feet"),
  8902. weight: math.unit(1450, "kg"),
  8903. preyCapacity: math.unit(15, "people"),
  8904. name: "Side",
  8905. image: {
  8906. source: "./media/characters/aura-starwind/side.svg",
  8907. extra: 1654 / 1497
  8908. }
  8909. },
  8910. taur: {
  8911. height: math.unit(18, "feet"),
  8912. weight: math.unit(5500, "kg"),
  8913. preyCapacity: math.unit(50, "people"),
  8914. name: "Taur",
  8915. image: {
  8916. source: "./media/characters/aura-starwind/taur.svg",
  8917. extra: 1760 / 1650
  8918. }
  8919. },
  8920. feral: {
  8921. height: math.unit(46, "feet"),
  8922. weight: math.unit(25000, "kg"),
  8923. preyCapacity: math.unit(120, "people"),
  8924. name: "Feral",
  8925. image: {
  8926. source: "./media/characters/aura-starwind/feral.svg"
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(14, "feet"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Macro",
  8938. height: math.unit(50, "meters")
  8939. },
  8940. {
  8941. name: "Megamacro",
  8942. height: math.unit(5000, "meters")
  8943. },
  8944. {
  8945. name: "Gigamacro",
  8946. height: math.unit(100000, "kilometers")
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(2 + 7 / 12, "feet"),
  8955. weight: math.unit(32, "lbs"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/rivet/front.svg",
  8959. extra: 1716 / 1658,
  8960. bottom: 0.03
  8961. }
  8962. },
  8963. foot: {
  8964. height: math.unit(0.551, "feet"),
  8965. name: "Rivet's Foot",
  8966. image: {
  8967. source: "./media/characters/rivet/foot.svg"
  8968. },
  8969. rename: true
  8970. }
  8971. },
  8972. [
  8973. {
  8974. name: "Micro",
  8975. height: math.unit(1.5, "inches"),
  8976. },
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(2 + 7 / 12, "feet"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Macro",
  8984. height: math.unit(85, "feet")
  8985. },
  8986. {
  8987. name: "Megamacro",
  8988. height: math.unit(2.2, "km")
  8989. }
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(5 + 9 / 12, "feet"),
  8997. weight: math.unit(150, "lbs"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/coffee/front.svg",
  9001. extra: 3666 / 3032,
  9002. bottom: 0.04
  9003. }
  9004. },
  9005. foot: {
  9006. height: math.unit(1.29, "feet"),
  9007. name: "Foot",
  9008. image: {
  9009. source: "./media/characters/coffee/foot.svg"
  9010. }
  9011. },
  9012. },
  9013. [
  9014. {
  9015. name: "Micro",
  9016. height: math.unit(2, "inches"),
  9017. },
  9018. {
  9019. name: "Normal",
  9020. height: math.unit(5 + 9 / 12, "feet"),
  9021. default: true
  9022. },
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(800, "feet")
  9026. },
  9027. {
  9028. name: "Megamacro",
  9029. height: math.unit(25, "miles")
  9030. }
  9031. ]
  9032. ))
  9033. characterMakers.push(() => makeCharacter(
  9034. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9035. {
  9036. front: {
  9037. height: math.unit(6, "feet"),
  9038. weight: math.unit(200, "lbs"),
  9039. name: "Front",
  9040. image: {
  9041. source: "./media/characters/chari-gal/front.svg",
  9042. extra: 1568 / 1385,
  9043. bottom: 0.047
  9044. }
  9045. },
  9046. gigantamax: {
  9047. height: math.unit(6 * 16, "feet"),
  9048. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9049. name: "Gigantamax",
  9050. image: {
  9051. source: "./media/characters/chari-gal/gigantamax.svg",
  9052. extra: 1124 / 888,
  9053. bottom: 0.03
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(5 + 7 / 12, "feet")
  9061. },
  9062. {
  9063. name: "Macro",
  9064. height: math.unit(200, "feet"),
  9065. default: true
  9066. }
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9071. {
  9072. front: {
  9073. height: math.unit(6, "feet"),
  9074. weight: math.unit(150, "lbs"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/nova/front.svg",
  9078. extra: 5000 / 4722,
  9079. bottom: 0.02
  9080. }
  9081. }
  9082. },
  9083. [
  9084. {
  9085. name: "Micro-",
  9086. height: math.unit(0.8, "inches")
  9087. },
  9088. {
  9089. name: "Micro",
  9090. height: math.unit(2, "inches"),
  9091. default: true
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(3 + 1 / 12, "feet"),
  9100. weight: math.unit(21.7, "lbs"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/argent/front.svg",
  9104. extra: 1471 / 1331,
  9105. bottom: 100.8 / 1575.5
  9106. }
  9107. }
  9108. },
  9109. [
  9110. {
  9111. name: "Micro",
  9112. height: math.unit(2, "inches")
  9113. },
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(3 + 1 / 12, "feet"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Macro",
  9121. height: math.unit(120, "feet")
  9122. },
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9127. {
  9128. lamp: {
  9129. height: math.unit(7 * 1559 / 989, "feet"),
  9130. name: "Magic Lamp",
  9131. image: {
  9132. source: "./media/characters/mira-al-cul/lamp.svg",
  9133. extra: 1617 / 1559
  9134. }
  9135. },
  9136. front: {
  9137. height: math.unit(7, "feet"),
  9138. name: "Front",
  9139. image: {
  9140. source: "./media/characters/mira-al-cul/front.svg",
  9141. extra: 1044 / 990
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Heavily Restricted",
  9148. height: math.unit(7 * 1559 / 989, "feet")
  9149. },
  9150. {
  9151. name: "Freshly Freed",
  9152. height: math.unit(50 * 1559 / 989, "feet")
  9153. },
  9154. {
  9155. name: "World Encompassing",
  9156. height: math.unit(10000 * 1559 / 989, "miles")
  9157. },
  9158. {
  9159. name: "Galactic",
  9160. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9161. },
  9162. {
  9163. name: "Palmed Universe",
  9164. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9165. default: true
  9166. },
  9167. {
  9168. name: "Multiversal Matriarch",
  9169. height: math.unit(8.87e10, "yottameters")
  9170. },
  9171. {
  9172. name: "Void Mother",
  9173. height: math.unit(3.14e110, "yottaparsecs")
  9174. },
  9175. {
  9176. name: "Toying with Transcendence",
  9177. height: math.unit(1e307, "meters")
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9183. {
  9184. front: {
  9185. height: math.unit(17 + 1 / 12, "feet"),
  9186. weight: math.unit(476.2 * 5, "lbs"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/kuro-shi-uchū/front.svg",
  9190. extra: 2329 / 1835,
  9191. bottom: 0.02
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Micro",
  9198. height: math.unit(2, "inches")
  9199. },
  9200. {
  9201. name: "Normal",
  9202. height: math.unit(12, "meters")
  9203. },
  9204. {
  9205. name: "Planetary",
  9206. height: math.unit(0.00929, "AU"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Universal",
  9211. height: math.unit(20, "gigaparsecs")
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(5 + 2 / 12, "feet"),
  9220. weight: math.unit(120, "lbs"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/katherine/front.svg",
  9224. extra: 2075 / 1969
  9225. }
  9226. },
  9227. dress: {
  9228. height: math.unit(5 + 2 / 12, "feet"),
  9229. weight: math.unit(120, "lbs"),
  9230. name: "Dress",
  9231. image: {
  9232. source: "./media/characters/katherine/dress.svg",
  9233. extra: 2258 / 2064
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(1, "inches"),
  9241. default: true
  9242. },
  9243. {
  9244. name: "Normal",
  9245. height: math.unit(5 + 2 / 12, "feet")
  9246. },
  9247. {
  9248. name: "Macro",
  9249. height: math.unit(100, "meters")
  9250. },
  9251. {
  9252. name: "Megamacro",
  9253. height: math.unit(80, "miles")
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(7 + 8 / 12, "feet"),
  9262. weight: math.unit(250, "lbs"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/yevis/front.svg",
  9266. extra: 1938 / 1755
  9267. }
  9268. }
  9269. },
  9270. [
  9271. {
  9272. name: "Mortal",
  9273. height: math.unit(7 + 8 / 12, "feet")
  9274. },
  9275. {
  9276. name: "Battle",
  9277. height: math.unit(25 + 11 / 12, "feet")
  9278. },
  9279. {
  9280. name: "Wrath",
  9281. height: math.unit(1654 + 11 / 12, "feet")
  9282. },
  9283. {
  9284. name: "Planet Destroyer",
  9285. height: math.unit(12000, "miles")
  9286. },
  9287. {
  9288. name: "Galaxy Conqueror",
  9289. height: math.unit(1.45, "zettameters"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "Universal War",
  9294. height: math.unit(184, "gigaparsecs")
  9295. },
  9296. {
  9297. name: "Eternity War",
  9298. height: math.unit(1.98e55, "yottaparsecs")
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9304. {
  9305. front: {
  9306. height: math.unit(5 + 8 / 12, "feet"),
  9307. weight: math.unit(63, "kg"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/xavier/front.svg",
  9311. extra: 944 / 883
  9312. }
  9313. },
  9314. frontStretch: {
  9315. height: math.unit(5 + 8 / 12, "feet"),
  9316. weight: math.unit(63, "kg"),
  9317. name: "Stretching",
  9318. image: {
  9319. source: "./media/characters/xavier/front-stretch.svg",
  9320. extra: 962 / 820
  9321. }
  9322. },
  9323. },
  9324. [
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(5 + 8 / 12, "feet")
  9328. },
  9329. {
  9330. name: "Macro",
  9331. height: math.unit(100, "meters"),
  9332. default: true
  9333. },
  9334. {
  9335. name: "McLargeHuge",
  9336. height: math.unit(10, "miles")
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9342. {
  9343. front: {
  9344. height: math.unit(5 + 5 / 12, "feet"),
  9345. weight: math.unit(150, "lb"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/joshii/front.svg",
  9349. extra: 765 / 653,
  9350. bottom: 51 / 816
  9351. }
  9352. },
  9353. foot: {
  9354. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9355. name: "Foot",
  9356. image: {
  9357. source: "./media/characters/joshii/foot.svg"
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Micro",
  9364. height: math.unit(2, "inches"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(5 + 5 / 12, "feet")
  9370. },
  9371. {
  9372. name: "Macro",
  9373. height: math.unit(785, "feet")
  9374. },
  9375. {
  9376. name: "Megamacro",
  9377. height: math.unit(24.5, "miles")
  9378. },
  9379. ]
  9380. ))
  9381. characterMakers.push(() => makeCharacter(
  9382. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9383. {
  9384. front: {
  9385. height: math.unit(6, "feet"),
  9386. weight: math.unit(150, "lb"),
  9387. name: "Front",
  9388. image: {
  9389. source: "./media/characters/goddess-elizabeth/front.svg",
  9390. extra: 1800 / 1525,
  9391. bottom: 0.005
  9392. }
  9393. },
  9394. foot: {
  9395. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9396. name: "Foot",
  9397. image: {
  9398. source: "./media/characters/goddess-elizabeth/foot.svg"
  9399. }
  9400. },
  9401. mouth: {
  9402. height: math.unit(6, "feet"),
  9403. name: "Mouth",
  9404. image: {
  9405. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9406. }
  9407. },
  9408. },
  9409. [
  9410. {
  9411. name: "Micro",
  9412. height: math.unit(12, "feet")
  9413. },
  9414. {
  9415. name: "Normal",
  9416. height: math.unit(80, "miles"),
  9417. default: true
  9418. },
  9419. {
  9420. name: "Macro",
  9421. height: math.unit(15000, "parsecs")
  9422. },
  9423. ]
  9424. ))
  9425. characterMakers.push(() => makeCharacter(
  9426. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9427. {
  9428. front: {
  9429. height: math.unit(5 + 9 / 12, "feet"),
  9430. weight: math.unit(144, "lb"),
  9431. name: "Front",
  9432. image: {
  9433. source: "./media/characters/kara/front.svg"
  9434. }
  9435. },
  9436. feet: {
  9437. height: math.unit(6 / 6.765, "feet"),
  9438. name: "Kara's Feet",
  9439. rename: true,
  9440. image: {
  9441. source: "./media/characters/kara/feet.svg"
  9442. }
  9443. },
  9444. },
  9445. [
  9446. {
  9447. name: "Normal",
  9448. height: math.unit(5 + 9 / 12, "feet")
  9449. },
  9450. {
  9451. name: "Macro",
  9452. height: math.unit(174, "feet"),
  9453. default: true
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(18, "feet"),
  9462. weight: math.unit(4050, "lb"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/tyrone/front.svg",
  9466. extra: 2405 / 2270,
  9467. bottom: 182 / 2587
  9468. }
  9469. },
  9470. },
  9471. [
  9472. {
  9473. name: "Normal",
  9474. height: math.unit(18, "feet"),
  9475. default: true
  9476. },
  9477. {
  9478. name: "Macro",
  9479. height: math.unit(300, "feet")
  9480. },
  9481. {
  9482. name: "Megamacro",
  9483. height: math.unit(15, "km")
  9484. },
  9485. {
  9486. name: "Gigamacro",
  9487. height: math.unit(500, "km")
  9488. },
  9489. {
  9490. name: "Teramacro",
  9491. height: math.unit(0.5, "gigameters")
  9492. },
  9493. {
  9494. name: "Omnimacro",
  9495. height: math.unit(1e252, "yottauniverse")
  9496. },
  9497. ]
  9498. ))
  9499. characterMakers.push(() => makeCharacter(
  9500. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9501. {
  9502. front: {
  9503. height: math.unit(7 + 8 / 12, "feet"),
  9504. weight: math.unit(120, "lb"),
  9505. name: "Front",
  9506. image: {
  9507. source: "./media/characters/danny/front.svg",
  9508. extra: 1490 / 1350
  9509. }
  9510. },
  9511. back: {
  9512. height: math.unit(7 + 8 / 12, "feet"),
  9513. weight: math.unit(120, "lb"),
  9514. name: "Back",
  9515. image: {
  9516. source: "./media/characters/danny/back.svg",
  9517. extra: 1490 / 1350
  9518. }
  9519. },
  9520. },
  9521. [
  9522. {
  9523. name: "Normal",
  9524. height: math.unit(7 + 8 / 12, "feet"),
  9525. default: true
  9526. },
  9527. ]
  9528. ))
  9529. characterMakers.push(() => makeCharacter(
  9530. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9531. {
  9532. front: {
  9533. height: math.unit(3.5, "inches"),
  9534. weight: math.unit(19, "grams"),
  9535. name: "Front",
  9536. image: {
  9537. source: "./media/characters/mallow/front.svg",
  9538. extra: 471 / 431
  9539. }
  9540. },
  9541. back: {
  9542. height: math.unit(3.5, "inches"),
  9543. weight: math.unit(19, "grams"),
  9544. name: "Back",
  9545. image: {
  9546. source: "./media/characters/mallow/back.svg",
  9547. extra: 471 / 431
  9548. }
  9549. },
  9550. },
  9551. [
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(3.5, "inches"),
  9555. default: true
  9556. },
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9561. {
  9562. front: {
  9563. height: math.unit(9, "feet"),
  9564. weight: math.unit(230, "kg"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/starry-aqua/front.svg"
  9568. }
  9569. },
  9570. back: {
  9571. height: math.unit(9, "feet"),
  9572. weight: math.unit(230, "kg"),
  9573. name: "Back",
  9574. image: {
  9575. source: "./media/characters/starry-aqua/back.svg"
  9576. }
  9577. },
  9578. hand: {
  9579. height: math.unit(9 * 0.1168, "feet"),
  9580. name: "Hand",
  9581. image: {
  9582. source: "./media/characters/starry-aqua/hand.svg"
  9583. }
  9584. },
  9585. foot: {
  9586. height: math.unit(9 * 0.18, "feet"),
  9587. name: "Foot",
  9588. image: {
  9589. source: "./media/characters/starry-aqua/foot.svg"
  9590. }
  9591. }
  9592. },
  9593. [
  9594. {
  9595. name: "Micro",
  9596. height: math.unit(3, "inches")
  9597. },
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(9, "feet")
  9601. },
  9602. {
  9603. name: "Macro",
  9604. height: math.unit(300, "feet"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Megamacro",
  9609. height: math.unit(3200, "feet")
  9610. }
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(15, "feet"),
  9618. weight: math.unit(5026, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/luka-towers/front.svg",
  9622. extra: 1269/1133,
  9623. bottom: 51/1320
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(15, "feet"),
  9631. default: true
  9632. },
  9633. {
  9634. name: "Minimacro",
  9635. height: math.unit(25, "feet")
  9636. },
  9637. {
  9638. name: "Macro",
  9639. height: math.unit(320, "feet")
  9640. },
  9641. {
  9642. name: "Megamacro",
  9643. height: math.unit(35000, "feet")
  9644. },
  9645. {
  9646. name: "Gigamacro",
  9647. height: math.unit(4000, "miles")
  9648. },
  9649. {
  9650. name: "Teramacro",
  9651. height: math.unit(15000, "miles")
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9657. {
  9658. front: {
  9659. height: math.unit(6, "feet"),
  9660. weight: math.unit(150, "lb"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/natalie-nightring/front.svg",
  9664. extra: 1,
  9665. bottom: 0.06
  9666. }
  9667. },
  9668. },
  9669. [
  9670. {
  9671. name: "Uh Oh",
  9672. height: math.unit(0.1, "mm")
  9673. },
  9674. {
  9675. name: "Small",
  9676. height: math.unit(3, "inches")
  9677. },
  9678. {
  9679. name: "Human Scale",
  9680. height: math.unit(6, "feet")
  9681. },
  9682. {
  9683. name: "Librarian",
  9684. height: math.unit(50, "feet"),
  9685. default: true
  9686. },
  9687. {
  9688. name: "Immense",
  9689. height: math.unit(200, "miles")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(180, "lbs"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/danni-rosie/front.svg",
  9702. extra: 1260 / 1128,
  9703. bottom: 0.022
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Micro",
  9710. height: math.unit(2, "inches"),
  9711. default: true
  9712. },
  9713. ]
  9714. ))
  9715. characterMakers.push(() => makeCharacter(
  9716. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9717. {
  9718. front: {
  9719. height: math.unit(5 + 9 / 12, "feet"),
  9720. weight: math.unit(220, "lb"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/samantha-kruse/front.svg",
  9724. extra: (985 / 935),
  9725. bottom: 0.03
  9726. }
  9727. },
  9728. frontUndressed: {
  9729. height: math.unit(5 + 9 / 12, "feet"),
  9730. weight: math.unit(220, "lb"),
  9731. name: "Front (Undressed)",
  9732. image: {
  9733. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9734. extra: (973 / 923),
  9735. bottom: 0.025
  9736. }
  9737. },
  9738. fat: {
  9739. height: math.unit(5 + 9 / 12, "feet"),
  9740. weight: math.unit(900, "lb"),
  9741. name: "Front (Fat)",
  9742. image: {
  9743. source: "./media/characters/samantha-kruse/fat.svg",
  9744. extra: 2688 / 2561
  9745. }
  9746. },
  9747. },
  9748. [
  9749. {
  9750. name: "Normal",
  9751. height: math.unit(5 + 9 / 12, "feet"),
  9752. default: true
  9753. }
  9754. ]
  9755. ))
  9756. characterMakers.push(() => makeCharacter(
  9757. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9758. {
  9759. back: {
  9760. height: math.unit(5 + 4 / 12, "feet"),
  9761. weight: math.unit(4963, "lb"),
  9762. name: "Back",
  9763. image: {
  9764. source: "./media/characters/amelia-rosie/back.svg",
  9765. extra: 1113 / 963,
  9766. bottom: 0.01
  9767. }
  9768. },
  9769. },
  9770. [
  9771. {
  9772. name: "Level 0",
  9773. height: math.unit(5 + 4 / 12, "feet")
  9774. },
  9775. {
  9776. name: "Level 1",
  9777. height: math.unit(164597, "feet"),
  9778. default: true
  9779. },
  9780. {
  9781. name: "Level 2",
  9782. height: math.unit(956243, "miles")
  9783. },
  9784. {
  9785. name: "Level 3",
  9786. height: math.unit(29421709423, "miles")
  9787. },
  9788. {
  9789. name: "Level 4",
  9790. height: math.unit(154, "lightyears")
  9791. },
  9792. {
  9793. name: "Level 5",
  9794. height: math.unit(4738272, "lightyears")
  9795. },
  9796. {
  9797. name: "Level 6",
  9798. height: math.unit(145787152896, "lightyears")
  9799. },
  9800. ]
  9801. ))
  9802. characterMakers.push(() => makeCharacter(
  9803. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9804. {
  9805. front: {
  9806. height: math.unit(5 + 11 / 12, "feet"),
  9807. weight: math.unit(65, "kg"),
  9808. name: "Front",
  9809. image: {
  9810. source: "./media/characters/rook-kitara/front.svg",
  9811. extra: 1347 / 1274,
  9812. bottom: 0.005
  9813. }
  9814. },
  9815. },
  9816. [
  9817. {
  9818. name: "Totally Unfair",
  9819. height: math.unit(1.8, "mm")
  9820. },
  9821. {
  9822. name: "Lap Rookie",
  9823. height: math.unit(1.4, "feet")
  9824. },
  9825. {
  9826. name: "Normal",
  9827. height: math.unit(5 + 11 / 12, "feet"),
  9828. default: true
  9829. },
  9830. {
  9831. name: "How Did This Happen",
  9832. height: math.unit(80, "miles")
  9833. }
  9834. ]
  9835. ))
  9836. characterMakers.push(() => makeCharacter(
  9837. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9838. {
  9839. front: {
  9840. height: math.unit(7, "feet"),
  9841. weight: math.unit(300, "lb"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/pisces/front.svg",
  9845. extra: 2255 / 2115,
  9846. bottom: 0.03
  9847. }
  9848. },
  9849. back: {
  9850. height: math.unit(7, "feet"),
  9851. weight: math.unit(300, "lb"),
  9852. name: "Back",
  9853. image: {
  9854. source: "./media/characters/pisces/back.svg",
  9855. extra: 2146 / 2055,
  9856. bottom: 0.04
  9857. }
  9858. },
  9859. },
  9860. [
  9861. {
  9862. name: "Normal",
  9863. height: math.unit(7, "feet"),
  9864. default: true
  9865. },
  9866. {
  9867. name: "Swimming Pool",
  9868. height: math.unit(12.2, "meters")
  9869. },
  9870. {
  9871. name: "Olympic Swimming Pool",
  9872. height: math.unit(56.3, "meters")
  9873. },
  9874. {
  9875. name: "Lake Superior",
  9876. height: math.unit(93900, "meters")
  9877. },
  9878. {
  9879. name: "Mediterranean Sea",
  9880. height: math.unit(644457, "meters")
  9881. },
  9882. {
  9883. name: "World's Oceans",
  9884. height: math.unit(4567491, "meters")
  9885. },
  9886. ]
  9887. ))
  9888. characterMakers.push(() => makeCharacter(
  9889. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9890. {
  9891. front: {
  9892. height: math.unit(2.3, "meters"),
  9893. weight: math.unit(120, "kg"),
  9894. name: "Front",
  9895. image: {
  9896. source: "./media/characters/zelas/front.svg"
  9897. }
  9898. },
  9899. side: {
  9900. height: math.unit(2.3, "meters"),
  9901. weight: math.unit(120, "kg"),
  9902. name: "Side",
  9903. image: {
  9904. source: "./media/characters/zelas/side.svg"
  9905. }
  9906. },
  9907. back: {
  9908. height: math.unit(2.3, "meters"),
  9909. weight: math.unit(120, "kg"),
  9910. name: "Back",
  9911. image: {
  9912. source: "./media/characters/zelas/back.svg"
  9913. }
  9914. },
  9915. foot: {
  9916. height: math.unit(1.116, "feet"),
  9917. name: "Foot",
  9918. image: {
  9919. source: "./media/characters/zelas/foot.svg"
  9920. }
  9921. },
  9922. },
  9923. [
  9924. {
  9925. name: "Normal",
  9926. height: math.unit(2.3, "meters")
  9927. },
  9928. {
  9929. name: "Macro",
  9930. height: math.unit(30, "meters"),
  9931. default: true
  9932. },
  9933. ]
  9934. ))
  9935. characterMakers.push(() => makeCharacter(
  9936. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9937. {
  9938. front: {
  9939. height: math.unit(1, "inch"),
  9940. weight: math.unit(0.21, "grams"),
  9941. name: "Front",
  9942. image: {
  9943. source: "./media/characters/talbot/front.svg",
  9944. extra: 594 / 544
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Micro",
  9951. height: math.unit(1, "inch"),
  9952. default: true
  9953. },
  9954. ]
  9955. ))
  9956. characterMakers.push(() => makeCharacter(
  9957. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9958. {
  9959. front: {
  9960. height: math.unit(3 + 3 / 12, "feet"),
  9961. weight: math.unit(51.8, "lb"),
  9962. name: "Front",
  9963. image: {
  9964. source: "./media/characters/fliss/front.svg",
  9965. extra: 840 / 640
  9966. }
  9967. },
  9968. },
  9969. [
  9970. {
  9971. name: "Teeny Tiny",
  9972. height: math.unit(1, "mm")
  9973. },
  9974. {
  9975. name: "Small",
  9976. height: math.unit(1, "inch"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "Standard Sylveon",
  9981. height: math.unit(3 + 3 / 12, "feet")
  9982. },
  9983. {
  9984. name: "Large Nuisance",
  9985. height: math.unit(33, "feet")
  9986. },
  9987. {
  9988. name: "City Filler",
  9989. height: math.unit(3000, "feet")
  9990. },
  9991. {
  9992. name: "New Horizon",
  9993. height: math.unit(6000, "miles")
  9994. },
  9995. ]
  9996. ))
  9997. characterMakers.push(() => makeCharacter(
  9998. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9999. {
  10000. front: {
  10001. height: math.unit(5, "cm"),
  10002. weight: math.unit(1.94, "g"),
  10003. name: "Front",
  10004. image: {
  10005. source: "./media/characters/fleta/front.svg",
  10006. extra: 835 / 803
  10007. }
  10008. },
  10009. back: {
  10010. height: math.unit(5, "cm"),
  10011. weight: math.unit(1.94, "g"),
  10012. name: "Back",
  10013. image: {
  10014. source: "./media/characters/fleta/back.svg",
  10015. extra: 835 / 803
  10016. }
  10017. },
  10018. },
  10019. [
  10020. {
  10021. name: "Micro",
  10022. height: math.unit(5, "cm"),
  10023. default: true
  10024. },
  10025. ]
  10026. ))
  10027. characterMakers.push(() => makeCharacter(
  10028. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10029. {
  10030. front: {
  10031. height: math.unit(6, "feet"),
  10032. weight: math.unit(225, "lb"),
  10033. name: "Front",
  10034. image: {
  10035. source: "./media/characters/dominic/front.svg",
  10036. extra: 1770 / 1620,
  10037. bottom: 0.025
  10038. }
  10039. },
  10040. back: {
  10041. height: math.unit(6, "feet"),
  10042. weight: math.unit(225, "lb"),
  10043. name: "Back",
  10044. image: {
  10045. source: "./media/characters/dominic/back.svg",
  10046. extra: 1745 / 1620,
  10047. bottom: 0.065
  10048. }
  10049. },
  10050. },
  10051. [
  10052. {
  10053. name: "Nano",
  10054. height: math.unit(0.1, "mm")
  10055. },
  10056. {
  10057. name: "Micro-",
  10058. height: math.unit(1, "mm")
  10059. },
  10060. {
  10061. name: "Micro",
  10062. height: math.unit(4, "inches")
  10063. },
  10064. {
  10065. name: "Normal",
  10066. height: math.unit(6 + 4 / 12, "feet"),
  10067. default: true
  10068. },
  10069. {
  10070. name: "Macro",
  10071. height: math.unit(115, "feet")
  10072. },
  10073. {
  10074. name: "Macro+",
  10075. height: math.unit(955, "feet")
  10076. },
  10077. {
  10078. name: "Megamacro",
  10079. height: math.unit(8990, "feet")
  10080. },
  10081. {
  10082. name: "Gigmacro",
  10083. height: math.unit(9310, "miles")
  10084. },
  10085. {
  10086. name: "Teramacro",
  10087. height: math.unit(1567005010, "miles")
  10088. },
  10089. {
  10090. name: "Examacro",
  10091. height: math.unit(1425, "parsecs")
  10092. },
  10093. ]
  10094. ))
  10095. characterMakers.push(() => makeCharacter(
  10096. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10097. {
  10098. front: {
  10099. height: math.unit(400, "feet"),
  10100. weight: math.unit(44444444, "lb"),
  10101. name: "Front",
  10102. image: {
  10103. source: "./media/characters/major-colonel/front.svg"
  10104. }
  10105. },
  10106. back: {
  10107. height: math.unit(400, "feet"),
  10108. weight: math.unit(44444444, "lb"),
  10109. name: "Back",
  10110. image: {
  10111. source: "./media/characters/major-colonel/back.svg"
  10112. }
  10113. },
  10114. },
  10115. [
  10116. {
  10117. name: "Macro",
  10118. height: math.unit(400, "feet"),
  10119. default: true
  10120. },
  10121. ]
  10122. ))
  10123. characterMakers.push(() => makeCharacter(
  10124. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10125. {
  10126. catFront: {
  10127. height: math.unit(6, "feet"),
  10128. weight: math.unit(120, "lb"),
  10129. name: "Front (Cat Side)",
  10130. image: {
  10131. source: "./media/characters/axel-lycan/cat-front.svg",
  10132. extra: 430 / 402,
  10133. bottom: 43 / 472.35
  10134. }
  10135. },
  10136. catBack: {
  10137. height: math.unit(6, "feet"),
  10138. weight: math.unit(120, "lb"),
  10139. name: "Back (Cat Side)",
  10140. image: {
  10141. source: "./media/characters/axel-lycan/cat-back.svg",
  10142. extra: 447 / 419,
  10143. bottom: 23.3 / 469
  10144. }
  10145. },
  10146. wolfFront: {
  10147. height: math.unit(6, "feet"),
  10148. weight: math.unit(120, "lb"),
  10149. name: "Front (Wolf Side)",
  10150. image: {
  10151. source: "./media/characters/axel-lycan/wolf-front.svg",
  10152. extra: 485 / 456,
  10153. bottom: 19 / 504
  10154. }
  10155. },
  10156. wolfBack: {
  10157. height: math.unit(6, "feet"),
  10158. weight: math.unit(120, "lb"),
  10159. name: "Back (Wolf Side)",
  10160. image: {
  10161. source: "./media/characters/axel-lycan/wolf-back.svg",
  10162. extra: 475 / 438,
  10163. bottom: 39.2 / 514
  10164. }
  10165. },
  10166. },
  10167. [
  10168. {
  10169. name: "Macro",
  10170. height: math.unit(1, "km"),
  10171. default: true
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10177. {
  10178. front: {
  10179. height: math.unit(5 + 9 / 12, "feet"),
  10180. weight: math.unit(175, "lb"),
  10181. name: "Front",
  10182. image: {
  10183. source: "./media/characters/vanrel-hyena/front.svg",
  10184. extra: 1086 / 1010,
  10185. bottom: 0.04
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(5 + 9 / 12, "feet"),
  10193. default: true
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(6, "feet"),
  10202. weight: math.unit(103, "lb"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/abbott-absol/front.svg",
  10206. extra: 2010 / 1842
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Megamicro",
  10213. height: math.unit(0.1, "mm")
  10214. },
  10215. {
  10216. name: "Micro",
  10217. height: math.unit(1, "inch")
  10218. },
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(6, "feet"),
  10222. default: true
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(6, "feet"),
  10231. weight: math.unit(264, "lb"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/hector/front.svg",
  10235. extra: 2280 / 2130,
  10236. bottom: 0.07
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Normal",
  10243. height: math.unit(12.25, "foot"),
  10244. default: true
  10245. },
  10246. {
  10247. name: "Macro",
  10248. height: math.unit(160, "feet")
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(6, "feet"),
  10257. weight: math.unit(150, "lb"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/sal/front.svg",
  10261. extra: 1846 / 1699,
  10262. bottom: 0.04
  10263. }
  10264. },
  10265. },
  10266. [
  10267. {
  10268. name: "Megamacro",
  10269. height: math.unit(10, "miles"),
  10270. default: true
  10271. },
  10272. ]
  10273. ))
  10274. characterMakers.push(() => makeCharacter(
  10275. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10276. {
  10277. front: {
  10278. height: math.unit(3, "meters"),
  10279. weight: math.unit(450, "kg"),
  10280. name: "front",
  10281. image: {
  10282. source: "./media/characters/ranger/front.svg",
  10283. extra: 2401 / 2243,
  10284. bottom: 0.05
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(3, "meters"),
  10292. default: true
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10298. {
  10299. front: {
  10300. height: math.unit(14, "feet"),
  10301. weight: math.unit(800, "kg"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/theresa/front.svg",
  10305. extra: 3575 / 3346,
  10306. bottom: 0.03
  10307. }
  10308. },
  10309. },
  10310. [
  10311. {
  10312. name: "Normal",
  10313. height: math.unit(14, "feet"),
  10314. default: true
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10320. {
  10321. front: {
  10322. height: math.unit(6, "feet"),
  10323. weight: math.unit(3, "kg"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/ine/front.svg",
  10327. extra: 678 / 539,
  10328. bottom: 0.023
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(2.265, "feet"),
  10336. default: true
  10337. },
  10338. ]
  10339. ))
  10340. characterMakers.push(() => makeCharacter(
  10341. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10342. {
  10343. front: {
  10344. height: math.unit(5, "feet"),
  10345. weight: math.unit(30, "kg"),
  10346. name: "Front",
  10347. image: {
  10348. source: "./media/characters/vial/front.svg",
  10349. extra: 1365 / 1277,
  10350. bottom: 0.04
  10351. }
  10352. },
  10353. },
  10354. [
  10355. {
  10356. name: "Normal",
  10357. height: math.unit(5, "feet"),
  10358. default: true
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10364. {
  10365. side: {
  10366. height: math.unit(3.4, "meters"),
  10367. weight: math.unit(1000, "lb"),
  10368. name: "Side",
  10369. image: {
  10370. source: "./media/characters/rovoska/side.svg",
  10371. extra: 4403 / 1515
  10372. }
  10373. },
  10374. },
  10375. [
  10376. {
  10377. name: "Normal",
  10378. height: math.unit(3.4, "meters"),
  10379. default: true
  10380. },
  10381. ]
  10382. ))
  10383. characterMakers.push(() => makeCharacter(
  10384. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10385. {
  10386. front: {
  10387. height: math.unit(8, "feet"),
  10388. weight: math.unit(315, "lb"),
  10389. name: "Front",
  10390. image: {
  10391. source: "./media/characters/gunner-rotthbauer/front.svg"
  10392. }
  10393. },
  10394. back: {
  10395. height: math.unit(8, "feet"),
  10396. weight: math.unit(315, "lb"),
  10397. name: "Back",
  10398. image: {
  10399. source: "./media/characters/gunner-rotthbauer/back.svg"
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Micro",
  10406. height: math.unit(3.5, "inches")
  10407. },
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(8, "feet"),
  10411. default: true
  10412. },
  10413. {
  10414. name: "Macro",
  10415. height: math.unit(250, "feet")
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(1, "AU")
  10420. },
  10421. ]
  10422. ))
  10423. characterMakers.push(() => makeCharacter(
  10424. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10425. {
  10426. front: {
  10427. height: math.unit(5 + 5 / 12, "feet"),
  10428. weight: math.unit(140, "lb"),
  10429. name: "Front",
  10430. image: {
  10431. source: "./media/characters/allatia/front.svg",
  10432. extra: 1227 / 1180,
  10433. bottom: 0.027
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(5 + 5 / 12, "feet")
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(250, "feet"),
  10445. default: true
  10446. },
  10447. {
  10448. name: "Megamacro",
  10449. height: math.unit(8, "miles")
  10450. }
  10451. ]
  10452. ))
  10453. characterMakers.push(() => makeCharacter(
  10454. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10455. {
  10456. front: {
  10457. height: math.unit(6, "feet"),
  10458. weight: math.unit(120, "lb"),
  10459. name: "Front",
  10460. image: {
  10461. source: "./media/characters/tene/front.svg",
  10462. extra: 814/750,
  10463. bottom: 36/850
  10464. }
  10465. },
  10466. stomping: {
  10467. height: math.unit(2.025, "meters"),
  10468. weight: math.unit(120, "lb"),
  10469. name: "Stomping",
  10470. image: {
  10471. source: "./media/characters/tene/stomping.svg",
  10472. extra: 885/821,
  10473. bottom: 15/900
  10474. }
  10475. },
  10476. sitting: {
  10477. height: math.unit(1, "meter"),
  10478. weight: math.unit(120, "lb"),
  10479. name: "Sitting",
  10480. image: {
  10481. source: "./media/characters/tene/sitting.svg",
  10482. extra: 396/366,
  10483. bottom: 79/475
  10484. }
  10485. },
  10486. smiling: {
  10487. height: math.unit(1.2, "feet"),
  10488. name: "Smiling",
  10489. image: {
  10490. source: "./media/characters/tene/smiling.svg",
  10491. extra: 1364/1071,
  10492. bottom: 0/1364
  10493. }
  10494. },
  10495. smug: {
  10496. height: math.unit(1.3, "feet"),
  10497. name: "Smug",
  10498. image: {
  10499. source: "./media/characters/tene/smug.svg",
  10500. extra: 1323/1082,
  10501. bottom: 0/1323
  10502. }
  10503. },
  10504. feral: {
  10505. height: math.unit(3.9, "feet"),
  10506. weight: math.unit(250, "lb"),
  10507. name: "Feral",
  10508. image: {
  10509. source: "./media/characters/tene/feral.svg",
  10510. extra: 717 / 458,
  10511. bottom: 0.179
  10512. }
  10513. },
  10514. },
  10515. [
  10516. {
  10517. name: "Normal",
  10518. height: math.unit(6, "feet")
  10519. },
  10520. {
  10521. name: "Macro",
  10522. height: math.unit(300, "feet"),
  10523. default: true
  10524. },
  10525. {
  10526. name: "Megamacro",
  10527. height: math.unit(5, "miles")
  10528. },
  10529. ]
  10530. ))
  10531. characterMakers.push(() => makeCharacter(
  10532. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10533. {
  10534. side: {
  10535. height: math.unit(6, "feet"),
  10536. name: "Side",
  10537. image: {
  10538. source: "./media/characters/evander/side.svg",
  10539. extra: 877 / 477
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Normal",
  10546. height: math.unit(0.83, "meters"),
  10547. default: true
  10548. },
  10549. ]
  10550. ))
  10551. characterMakers.push(() => makeCharacter(
  10552. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10553. {
  10554. front: {
  10555. height: math.unit(12, "feet"),
  10556. weight: math.unit(1000, "lb"),
  10557. name: "Front",
  10558. image: {
  10559. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10560. extra: 1762 / 1611
  10561. }
  10562. },
  10563. back: {
  10564. height: math.unit(12, "feet"),
  10565. weight: math.unit(1000, "lb"),
  10566. name: "Back",
  10567. image: {
  10568. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10569. extra: 1762 / 1611
  10570. }
  10571. },
  10572. },
  10573. [
  10574. {
  10575. name: "Normal",
  10576. height: math.unit(12, "feet"),
  10577. default: true
  10578. },
  10579. {
  10580. name: "Kaiju",
  10581. height: math.unit(150, "feet")
  10582. },
  10583. ]
  10584. ))
  10585. characterMakers.push(() => makeCharacter(
  10586. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10587. {
  10588. front: {
  10589. height: math.unit(6, "feet"),
  10590. weight: math.unit(150, "lb"),
  10591. name: "Front",
  10592. image: {
  10593. source: "./media/characters/zero-alurus/front.svg"
  10594. }
  10595. },
  10596. back: {
  10597. height: math.unit(6, "feet"),
  10598. weight: math.unit(150, "lb"),
  10599. name: "Back",
  10600. image: {
  10601. source: "./media/characters/zero-alurus/back.svg"
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Normal",
  10608. height: math.unit(5 + 10 / 12, "feet")
  10609. },
  10610. {
  10611. name: "Macro",
  10612. height: math.unit(60, "feet"),
  10613. default: true
  10614. },
  10615. {
  10616. name: "Macro+",
  10617. height: math.unit(450, "feet")
  10618. },
  10619. ]
  10620. ))
  10621. characterMakers.push(() => makeCharacter(
  10622. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10623. {
  10624. front: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(200, "lb"),
  10627. name: "Front",
  10628. image: {
  10629. source: "./media/characters/mega-shi/front.svg",
  10630. extra: 1279 / 1250,
  10631. bottom: 0.02
  10632. }
  10633. },
  10634. back: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(200, "lb"),
  10637. name: "Back",
  10638. image: {
  10639. source: "./media/characters/mega-shi/back.svg",
  10640. extra: 1279 / 1250,
  10641. bottom: 0.02
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Micro",
  10648. height: math.unit(16 + 6 / 12, "feet")
  10649. },
  10650. {
  10651. name: "Third Dimension",
  10652. height: math.unit(40, "meters")
  10653. },
  10654. {
  10655. name: "Normal",
  10656. height: math.unit(660, "feet"),
  10657. default: true
  10658. },
  10659. {
  10660. name: "Megamacro",
  10661. height: math.unit(10, "miles")
  10662. },
  10663. {
  10664. name: "Planetary Launch",
  10665. height: math.unit(500, "miles")
  10666. },
  10667. {
  10668. name: "Interstellar",
  10669. height: math.unit(1e9, "miles")
  10670. },
  10671. {
  10672. name: "Leaving the Universe",
  10673. height: math.unit(1, "gigaparsec")
  10674. },
  10675. {
  10676. name: "Travelling Universes",
  10677. height: math.unit(30e15, "parsecs")
  10678. },
  10679. ]
  10680. ))
  10681. characterMakers.push(() => makeCharacter(
  10682. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10683. {
  10684. front: {
  10685. height: math.unit(5 + 4/12, "feet"),
  10686. weight: math.unit(120, "lb"),
  10687. name: "Front",
  10688. image: {
  10689. source: "./media/characters/odyssey/front.svg",
  10690. extra: 1747/1571,
  10691. bottom: 47/1794
  10692. }
  10693. },
  10694. side: {
  10695. height: math.unit(5.1, "feet"),
  10696. weight: math.unit(120, "lb"),
  10697. name: "Side",
  10698. image: {
  10699. source: "./media/characters/odyssey/side.svg",
  10700. extra: 1847/1619,
  10701. bottom: 47/1894
  10702. }
  10703. },
  10704. lounging: {
  10705. height: math.unit(1.464, "feet"),
  10706. weight: math.unit(120, "lb"),
  10707. name: "Lounging",
  10708. image: {
  10709. source: "./media/characters/odyssey/lounging.svg",
  10710. extra: 1235/837,
  10711. bottom: 551/1786
  10712. }
  10713. },
  10714. },
  10715. [
  10716. {
  10717. name: "Normal",
  10718. height: math.unit(5 + 4 / 12, "feet")
  10719. },
  10720. {
  10721. name: "Macro",
  10722. height: math.unit(1, "km")
  10723. },
  10724. {
  10725. name: "Megamacro",
  10726. height: math.unit(3000, "km")
  10727. },
  10728. {
  10729. name: "Gigamacro",
  10730. height: math.unit(1, "AU"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "Omniversal",
  10735. height: math.unit(100e14, "lightyears")
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10741. {
  10742. front: {
  10743. height: math.unit(6, "feet"),
  10744. weight: math.unit(300, "lb"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/mekuto/front.svg",
  10748. extra: 921 / 832,
  10749. bottom: 0.03
  10750. }
  10751. },
  10752. hand: {
  10753. height: math.unit(6 / 10.24, "feet"),
  10754. name: "Hand",
  10755. image: {
  10756. source: "./media/characters/mekuto/hand.svg"
  10757. }
  10758. },
  10759. foot: {
  10760. height: math.unit(6 / 5.05, "feet"),
  10761. name: "Foot",
  10762. image: {
  10763. source: "./media/characters/mekuto/foot.svg"
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Minimicro",
  10770. height: math.unit(0.2, "inches")
  10771. },
  10772. {
  10773. name: "Micro",
  10774. height: math.unit(1.5, "inches")
  10775. },
  10776. {
  10777. name: "Normal",
  10778. height: math.unit(5 + 11 / 12, "feet"),
  10779. default: true
  10780. },
  10781. {
  10782. name: "Minimacro",
  10783. height: math.unit(17 + 9 / 12, "feet")
  10784. },
  10785. {
  10786. name: "Macro",
  10787. height: math.unit(177.5, "feet")
  10788. },
  10789. {
  10790. name: "Megamacro",
  10791. height: math.unit(152, "miles")
  10792. },
  10793. ]
  10794. ))
  10795. characterMakers.push(() => makeCharacter(
  10796. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10797. {
  10798. front: {
  10799. height: math.unit(6.5, "inches"),
  10800. weight: math.unit(13, "oz"),
  10801. name: "Front",
  10802. image: {
  10803. source: "./media/characters/dafydd-tomos/front.svg",
  10804. extra: 2990 / 2603,
  10805. bottom: 0.03
  10806. }
  10807. },
  10808. },
  10809. [
  10810. {
  10811. name: "Micro",
  10812. height: math.unit(6.5, "inches"),
  10813. default: true
  10814. },
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10819. {
  10820. front: {
  10821. height: math.unit(6, "feet"),
  10822. weight: math.unit(150, "lb"),
  10823. name: "Front",
  10824. image: {
  10825. source: "./media/characters/splinter/front.svg",
  10826. extra: 2990 / 2882,
  10827. bottom: 0.04
  10828. }
  10829. },
  10830. back: {
  10831. height: math.unit(6, "feet"),
  10832. weight: math.unit(150, "lb"),
  10833. name: "Back",
  10834. image: {
  10835. source: "./media/characters/splinter/back.svg",
  10836. extra: 2990 / 2882,
  10837. bottom: 0.04
  10838. }
  10839. },
  10840. },
  10841. [
  10842. {
  10843. name: "Normal",
  10844. height: math.unit(6, "feet")
  10845. },
  10846. {
  10847. name: "Macro",
  10848. height: math.unit(230, "meters"),
  10849. default: true
  10850. },
  10851. ]
  10852. ))
  10853. characterMakers.push(() => makeCharacter(
  10854. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10855. {
  10856. front: {
  10857. height: math.unit(4 + 10 / 12, "feet"),
  10858. weight: math.unit(480, "lb"),
  10859. name: "Front",
  10860. image: {
  10861. source: "./media/characters/snow-gabumon/front.svg",
  10862. extra: 1140 / 963,
  10863. bottom: 0.058
  10864. }
  10865. },
  10866. back: {
  10867. height: math.unit(4 + 10 / 12, "feet"),
  10868. weight: math.unit(480, "lb"),
  10869. name: "Back",
  10870. image: {
  10871. source: "./media/characters/snow-gabumon/back.svg",
  10872. extra: 1115 / 962,
  10873. bottom: 0.041
  10874. }
  10875. },
  10876. frontUndresed: {
  10877. height: math.unit(4 + 10 / 12, "feet"),
  10878. weight: math.unit(480, "lb"),
  10879. name: "Front (Undressed)",
  10880. image: {
  10881. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10882. extra: 1061 / 960,
  10883. bottom: 0.045
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Micro",
  10890. height: math.unit(1, "inch")
  10891. },
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(4 + 10 / 12, "feet"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(200, "feet")
  10900. },
  10901. {
  10902. name: "Megamacro",
  10903. height: math.unit(120, "miles")
  10904. },
  10905. {
  10906. name: "Gigamacro",
  10907. height: math.unit(9800, "miles")
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(1.7, "meters"),
  10916. weight: math.unit(140, "lb"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/moody/front.svg",
  10920. extra: 3226 / 3007,
  10921. bottom: 0.087
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Micro",
  10928. height: math.unit(1, "mm")
  10929. },
  10930. {
  10931. name: "Normal",
  10932. height: math.unit(1.7, "meters"),
  10933. default: true
  10934. },
  10935. {
  10936. name: "Macro",
  10937. height: math.unit(80, "meters")
  10938. },
  10939. {
  10940. name: "Macro+",
  10941. height: math.unit(500, "meters")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10947. {
  10948. front: {
  10949. height: math.unit(6, "feet"),
  10950. weight: math.unit(150, "lb"),
  10951. name: "Front",
  10952. image: {
  10953. source: "./media/characters/zyas/front.svg",
  10954. extra: 1180 / 1120,
  10955. bottom: 0.045
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Normal",
  10962. height: math.unit(10, "feet"),
  10963. default: true
  10964. },
  10965. {
  10966. name: "Macro",
  10967. height: math.unit(500, "feet")
  10968. },
  10969. {
  10970. name: "Megamacro",
  10971. height: math.unit(5, "miles")
  10972. },
  10973. {
  10974. name: "Teramacro",
  10975. height: math.unit(150000, "miles")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10981. {
  10982. front: {
  10983. height: math.unit(6, "feet"),
  10984. weight: math.unit(150, "lb"),
  10985. name: "Front",
  10986. image: {
  10987. source: "./media/characters/cuon/front.svg",
  10988. extra: 1390 / 1320,
  10989. bottom: 0.008
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Micro",
  10996. height: math.unit(3, "inches")
  10997. },
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(18 + 9 / 12, "feet"),
  11001. default: true
  11002. },
  11003. {
  11004. name: "Macro",
  11005. height: math.unit(360, "feet")
  11006. },
  11007. {
  11008. name: "Megamacro",
  11009. height: math.unit(360, "miles")
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11015. {
  11016. front: {
  11017. height: math.unit(2.4, "meters"),
  11018. weight: math.unit(70, "kg"),
  11019. name: "Front",
  11020. image: {
  11021. source: "./media/characters/nyanuxk/front.svg",
  11022. extra: 1172 / 1084,
  11023. bottom: 0.065
  11024. }
  11025. },
  11026. side: {
  11027. height: math.unit(2.4, "meters"),
  11028. weight: math.unit(70, "kg"),
  11029. name: "Side",
  11030. image: {
  11031. source: "./media/characters/nyanuxk/side.svg",
  11032. extra: 1190 / 1132,
  11033. bottom: 0.007
  11034. }
  11035. },
  11036. back: {
  11037. height: math.unit(2.4, "meters"),
  11038. weight: math.unit(70, "kg"),
  11039. name: "Back",
  11040. image: {
  11041. source: "./media/characters/nyanuxk/back.svg",
  11042. extra: 1200 / 1141,
  11043. bottom: 0.015
  11044. }
  11045. },
  11046. foot: {
  11047. height: math.unit(0.52, "meters"),
  11048. name: "Foot",
  11049. image: {
  11050. source: "./media/characters/nyanuxk/foot.svg"
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Micro",
  11057. height: math.unit(2, "cm")
  11058. },
  11059. {
  11060. name: "Normal",
  11061. height: math.unit(2.4, "meters"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Smaller Macro",
  11066. height: math.unit(120, "meters")
  11067. },
  11068. {
  11069. name: "Bigger Macro",
  11070. height: math.unit(1.2, "km")
  11071. },
  11072. {
  11073. name: "Megamacro",
  11074. height: math.unit(15, "kilometers")
  11075. },
  11076. {
  11077. name: "Gigamacro",
  11078. height: math.unit(2000, "km")
  11079. },
  11080. {
  11081. name: "Teramacro",
  11082. height: math.unit(500000, "km")
  11083. },
  11084. ]
  11085. ))
  11086. characterMakers.push(() => makeCharacter(
  11087. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11088. {
  11089. side: {
  11090. height: math.unit(6, "feet"),
  11091. name: "Side",
  11092. image: {
  11093. source: "./media/characters/ailbhe/side.svg",
  11094. extra: 757 / 464,
  11095. bottom: 0.041
  11096. }
  11097. },
  11098. },
  11099. [
  11100. {
  11101. name: "Normal",
  11102. height: math.unit(1.07, "meters"),
  11103. default: true
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11109. {
  11110. front: {
  11111. height: math.unit(6, "feet"),
  11112. weight: math.unit(120, "kg"),
  11113. name: "Front",
  11114. image: {
  11115. source: "./media/characters/zevulfius/front.svg",
  11116. extra: 965 / 903
  11117. }
  11118. },
  11119. side: {
  11120. height: math.unit(6, "feet"),
  11121. weight: math.unit(120, "kg"),
  11122. name: "Side",
  11123. image: {
  11124. source: "./media/characters/zevulfius/side.svg",
  11125. extra: 939 / 900
  11126. }
  11127. },
  11128. back: {
  11129. height: math.unit(6, "feet"),
  11130. weight: math.unit(120, "kg"),
  11131. name: "Back",
  11132. image: {
  11133. source: "./media/characters/zevulfius/back.svg",
  11134. extra: 918 / 854,
  11135. bottom: 0.005
  11136. }
  11137. },
  11138. foot: {
  11139. height: math.unit(6 / 3.72, "feet"),
  11140. name: "Foot",
  11141. image: {
  11142. source: "./media/characters/zevulfius/foot.svg"
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Macro",
  11149. height: math.unit(750, "meters")
  11150. },
  11151. {
  11152. name: "Megamacro",
  11153. height: math.unit(20, "km"),
  11154. default: true
  11155. },
  11156. {
  11157. name: "Gigamacro",
  11158. height: math.unit(2000, "km")
  11159. },
  11160. {
  11161. name: "Teramacro",
  11162. height: math.unit(250000, "km")
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(100, "feet"),
  11171. weight: math.unit(350, "kg"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/rikes/front.svg",
  11175. extra: 1565 / 1483,
  11176. bottom: 0.017
  11177. }
  11178. },
  11179. },
  11180. [
  11181. {
  11182. name: "Macro",
  11183. height: math.unit(100, "feet"),
  11184. default: true
  11185. },
  11186. ]
  11187. ))
  11188. characterMakers.push(() => makeCharacter(
  11189. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11190. {
  11191. front: {
  11192. height: math.unit(8, "feet"),
  11193. weight: math.unit(356, "lb"),
  11194. name: "Front",
  11195. image: {
  11196. source: "./media/characters/adam-silver-mane/front.svg",
  11197. extra: 1036/937,
  11198. bottom: 63/1099
  11199. }
  11200. },
  11201. side: {
  11202. height: math.unit(8, "feet"),
  11203. weight: math.unit(356, "lb"),
  11204. name: "Side",
  11205. image: {
  11206. source: "./media/characters/adam-silver-mane/side.svg",
  11207. extra: 997/901,
  11208. bottom: 59/1056
  11209. }
  11210. },
  11211. frontNsfw: {
  11212. height: math.unit(8, "feet"),
  11213. weight: math.unit(356, "lb"),
  11214. name: "Front (NSFW)",
  11215. image: {
  11216. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11217. extra: 1036/937,
  11218. bottom: 63/1099
  11219. }
  11220. },
  11221. sideNsfw: {
  11222. height: math.unit(8, "feet"),
  11223. weight: math.unit(356, "lb"),
  11224. name: "Side (NSFW)",
  11225. image: {
  11226. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11227. extra: 997/901,
  11228. bottom: 59/1056
  11229. }
  11230. },
  11231. dick: {
  11232. height: math.unit(2.1, "feet"),
  11233. name: "Dick",
  11234. image: {
  11235. source: "./media/characters/adam-silver-mane/dick.svg"
  11236. }
  11237. },
  11238. taur: {
  11239. height: math.unit(16, "feet"),
  11240. weight: math.unit(1500, "kg"),
  11241. name: "Taur",
  11242. image: {
  11243. source: "./media/characters/adam-silver-mane/taur.svg",
  11244. extra: 1713 / 1571,
  11245. bottom: 0.01
  11246. }
  11247. },
  11248. },
  11249. [
  11250. {
  11251. name: "Normal",
  11252. height: math.unit(8, "feet")
  11253. },
  11254. {
  11255. name: "Minimacro",
  11256. height: math.unit(80, "feet")
  11257. },
  11258. {
  11259. name: "MDA",
  11260. height: math.unit(80, "meters")
  11261. },
  11262. {
  11263. name: "Macro",
  11264. height: math.unit(800, "feet"),
  11265. default: true
  11266. },
  11267. {
  11268. name: "Megamacro",
  11269. height: math.unit(8000, "feet")
  11270. },
  11271. {
  11272. name: "Gigamacro",
  11273. height: math.unit(800, "miles")
  11274. },
  11275. {
  11276. name: "Teramacro",
  11277. height: math.unit(80000, "miles")
  11278. },
  11279. {
  11280. name: "Celestial",
  11281. height: math.unit(8e6, "miles")
  11282. },
  11283. {
  11284. name: "Star Dragon",
  11285. height: math.unit(800000, "parsecs")
  11286. },
  11287. {
  11288. name: "Godly",
  11289. height: math.unit(800, "teraparsecs")
  11290. },
  11291. ]
  11292. ))
  11293. characterMakers.push(() => makeCharacter(
  11294. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11295. {
  11296. front: {
  11297. height: math.unit(6, "feet"),
  11298. weight: math.unit(150, "lb"),
  11299. name: "Front",
  11300. image: {
  11301. source: "./media/characters/ky'owin/front.svg",
  11302. extra: 3888 / 3068,
  11303. bottom: 0.015
  11304. }
  11305. },
  11306. },
  11307. [
  11308. {
  11309. name: "Normal",
  11310. height: math.unit(6 + 8 / 12, "feet")
  11311. },
  11312. {
  11313. name: "Large",
  11314. height: math.unit(68, "feet")
  11315. },
  11316. {
  11317. name: "Macro",
  11318. height: math.unit(132, "feet")
  11319. },
  11320. {
  11321. name: "Macro+",
  11322. height: math.unit(340, "feet")
  11323. },
  11324. {
  11325. name: "Macro++",
  11326. height: math.unit(680, "feet"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(1, "mile")
  11332. },
  11333. {
  11334. name: "Megamacro+",
  11335. height: math.unit(10, "miles")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(4, "feet"),
  11344. weight: math.unit(50, "lb"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/mal/front.svg",
  11348. extra: 785 / 724,
  11349. bottom: 0.07
  11350. }
  11351. },
  11352. },
  11353. [
  11354. {
  11355. name: "Micro",
  11356. height: math.unit(4, "inches")
  11357. },
  11358. {
  11359. name: "Normal",
  11360. height: math.unit(4, "feet"),
  11361. default: true
  11362. },
  11363. {
  11364. name: "Macro",
  11365. height: math.unit(200, "feet")
  11366. },
  11367. ]
  11368. ))
  11369. characterMakers.push(() => makeCharacter(
  11370. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11371. {
  11372. front: {
  11373. height: math.unit(6, "feet"),
  11374. weight: math.unit(150, "lb"),
  11375. name: "Front",
  11376. image: {
  11377. source: "./media/characters/jordan-deware/front.svg",
  11378. extra: 1191 / 1012
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Nano",
  11385. height: math.unit(0.01, "mm")
  11386. },
  11387. {
  11388. name: "Minimicro",
  11389. height: math.unit(1, "mm")
  11390. },
  11391. {
  11392. name: "Micro",
  11393. height: math.unit(0.5, "inches")
  11394. },
  11395. {
  11396. name: "Normal",
  11397. height: math.unit(4, "feet"),
  11398. default: true
  11399. },
  11400. {
  11401. name: "Minimacro",
  11402. height: math.unit(40, "meters")
  11403. },
  11404. {
  11405. name: "Small Macro",
  11406. height: math.unit(400, "meters")
  11407. },
  11408. {
  11409. name: "Macro",
  11410. height: math.unit(4, "miles")
  11411. },
  11412. {
  11413. name: "Megamacro",
  11414. height: math.unit(40, "miles")
  11415. },
  11416. {
  11417. name: "Megamacro+",
  11418. height: math.unit(400, "miles")
  11419. },
  11420. {
  11421. name: "Gigamacro",
  11422. height: math.unit(400000, "miles")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11428. {
  11429. side: {
  11430. height: math.unit(6, "feet"),
  11431. weight: math.unit(150, "lb"),
  11432. name: "Side",
  11433. image: {
  11434. source: "./media/characters/kimiko/side.svg",
  11435. extra: 600 / 358
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(15, "feet"),
  11443. default: true
  11444. },
  11445. {
  11446. name: "Macro",
  11447. height: math.unit(220, "feet")
  11448. },
  11449. {
  11450. name: "Macro+",
  11451. height: math.unit(1450, "feet")
  11452. },
  11453. {
  11454. name: "Megamacro",
  11455. height: math.unit(11500, "feet")
  11456. },
  11457. {
  11458. name: "Gigamacro",
  11459. height: math.unit(9500, "miles")
  11460. },
  11461. {
  11462. name: "Teramacro",
  11463. height: math.unit(2208005005, "miles")
  11464. },
  11465. {
  11466. name: "Examacro",
  11467. height: math.unit(2750, "parsecs")
  11468. },
  11469. {
  11470. name: "Zettamacro",
  11471. height: math.unit(101500, "parsecs")
  11472. },
  11473. ]
  11474. ))
  11475. characterMakers.push(() => makeCharacter(
  11476. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11477. {
  11478. front: {
  11479. height: math.unit(6, "feet"),
  11480. weight: math.unit(70, "kg"),
  11481. name: "Front",
  11482. image: {
  11483. source: "./media/characters/andrew-sleepy/front.svg"
  11484. }
  11485. },
  11486. side: {
  11487. height: math.unit(6, "feet"),
  11488. weight: math.unit(70, "kg"),
  11489. name: "Side",
  11490. image: {
  11491. source: "./media/characters/andrew-sleepy/side.svg"
  11492. }
  11493. },
  11494. },
  11495. [
  11496. {
  11497. name: "Micro",
  11498. height: math.unit(1, "mm"),
  11499. default: true
  11500. },
  11501. ]
  11502. ))
  11503. characterMakers.push(() => makeCharacter(
  11504. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11505. {
  11506. front: {
  11507. height: math.unit(6, "feet"),
  11508. weight: math.unit(150, "lb"),
  11509. name: "Front",
  11510. image: {
  11511. source: "./media/characters/judio/front.svg",
  11512. extra: 1258 / 1110
  11513. }
  11514. },
  11515. },
  11516. [
  11517. {
  11518. name: "Normal",
  11519. height: math.unit(5 + 6 / 12, "feet")
  11520. },
  11521. {
  11522. name: "Macro",
  11523. height: math.unit(1000, "feet"),
  11524. default: true
  11525. },
  11526. {
  11527. name: "Megamacro",
  11528. height: math.unit(10, "miles")
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11534. {
  11535. frontDressed: {
  11536. height: math.unit(6, "feet"),
  11537. weight: math.unit(68, "kg"),
  11538. name: "Front (Dressed)",
  11539. image: {
  11540. source: "./media/characters/nomaxice/front-dressed.svg",
  11541. extra: 1137/824,
  11542. bottom: 74/1211
  11543. }
  11544. },
  11545. frontShorts: {
  11546. height: math.unit(6, "feet"),
  11547. weight: math.unit(68, "kg"),
  11548. name: "Front (Shorts)",
  11549. image: {
  11550. source: "./media/characters/nomaxice/front-shorts.svg",
  11551. extra: 1137/824,
  11552. bottom: 74/1211
  11553. }
  11554. },
  11555. back: {
  11556. height: math.unit(6, "feet"),
  11557. weight: math.unit(68, "kg"),
  11558. name: "Back",
  11559. image: {
  11560. source: "./media/characters/nomaxice/back.svg",
  11561. extra: 822/786,
  11562. bottom: 39/861
  11563. }
  11564. },
  11565. hand: {
  11566. height: math.unit(0.565, "feet"),
  11567. name: "Hand",
  11568. image: {
  11569. source: "./media/characters/nomaxice/hand.svg"
  11570. }
  11571. },
  11572. foot: {
  11573. height: math.unit(1, "feet"),
  11574. name: "Foot",
  11575. image: {
  11576. source: "./media/characters/nomaxice/foot.svg"
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Micro",
  11583. height: math.unit(8, "cm")
  11584. },
  11585. {
  11586. name: "Norm",
  11587. height: math.unit(1.82, "m")
  11588. },
  11589. {
  11590. name: "Norm+",
  11591. height: math.unit(8.8, "feet"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Big",
  11596. height: math.unit(8, "meters")
  11597. },
  11598. {
  11599. name: "Macro",
  11600. height: math.unit(18, "meters")
  11601. },
  11602. {
  11603. name: "Macro+",
  11604. height: math.unit(88, "meters")
  11605. },
  11606. ]
  11607. ))
  11608. characterMakers.push(() => makeCharacter(
  11609. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11610. {
  11611. front: {
  11612. height: math.unit(12, "feet"),
  11613. weight: math.unit(1.5, "tons"),
  11614. name: "Front",
  11615. image: {
  11616. source: "./media/characters/dydros/front.svg",
  11617. extra: 863 / 800,
  11618. bottom: 0.015
  11619. }
  11620. },
  11621. back: {
  11622. height: math.unit(12, "feet"),
  11623. weight: math.unit(1.5, "tons"),
  11624. name: "Back",
  11625. image: {
  11626. source: "./media/characters/dydros/back.svg",
  11627. extra: 900 / 843,
  11628. bottom: 0.005
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(12, "feet"),
  11636. default: true
  11637. },
  11638. ]
  11639. ))
  11640. characterMakers.push(() => makeCharacter(
  11641. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11642. {
  11643. front: {
  11644. height: math.unit(6, "feet"),
  11645. weight: math.unit(100, "kg"),
  11646. name: "Front",
  11647. image: {
  11648. source: "./media/characters/riggi/front.svg",
  11649. extra: 5787 / 5303
  11650. }
  11651. },
  11652. hyper: {
  11653. height: math.unit(6 * 5 / 3, "feet"),
  11654. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11655. name: "Hyper",
  11656. image: {
  11657. source: "./media/characters/riggi/hyper.svg",
  11658. extra: 3595 / 3485
  11659. }
  11660. },
  11661. },
  11662. [
  11663. {
  11664. name: "Small Macro",
  11665. height: math.unit(50, "feet")
  11666. },
  11667. {
  11668. name: "Default",
  11669. height: math.unit(200, "feet"),
  11670. default: true
  11671. },
  11672. {
  11673. name: "Loom",
  11674. height: math.unit(10000, "feet")
  11675. },
  11676. {
  11677. name: "Cruising Altitude",
  11678. height: math.unit(30000, "feet")
  11679. },
  11680. {
  11681. name: "Megamacro",
  11682. height: math.unit(100, "miles")
  11683. },
  11684. {
  11685. name: "Continent Sized",
  11686. height: math.unit(2800, "miles")
  11687. },
  11688. {
  11689. name: "Earth Sized",
  11690. height: math.unit(8000, "miles")
  11691. },
  11692. ]
  11693. ))
  11694. characterMakers.push(() => makeCharacter(
  11695. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11696. {
  11697. front: {
  11698. height: math.unit(6, "feet"),
  11699. weight: math.unit(250, "lb"),
  11700. name: "Front",
  11701. image: {
  11702. source: "./media/characters/alexi/front.svg",
  11703. extra: 3483 / 3291,
  11704. bottom: 0.04
  11705. }
  11706. },
  11707. back: {
  11708. height: math.unit(6, "feet"),
  11709. weight: math.unit(250, "lb"),
  11710. name: "Back",
  11711. image: {
  11712. source: "./media/characters/alexi/back.svg",
  11713. extra: 3533 / 3356,
  11714. bottom: 0.021
  11715. }
  11716. },
  11717. frontTransforming: {
  11718. height: math.unit(8.58, "feet"),
  11719. weight: math.unit(1300, "lb"),
  11720. name: "Transforming",
  11721. image: {
  11722. source: "./media/characters/alexi/front-transforming.svg",
  11723. extra: 437 / 409,
  11724. bottom: 19 / 458.66
  11725. }
  11726. },
  11727. frontTransformed: {
  11728. height: math.unit(12.5, "feet"),
  11729. weight: math.unit(4000, "lb"),
  11730. name: "Transformed",
  11731. image: {
  11732. source: "./media/characters/alexi/front-transformed.svg",
  11733. extra: 639 / 614,
  11734. bottom: 30.55 / 671
  11735. }
  11736. },
  11737. },
  11738. [
  11739. {
  11740. name: "Normal",
  11741. height: math.unit(14, "feet"),
  11742. default: true
  11743. },
  11744. {
  11745. name: "Minimacro",
  11746. height: math.unit(30, "meters")
  11747. },
  11748. {
  11749. name: "Macro",
  11750. height: math.unit(500, "meters")
  11751. },
  11752. {
  11753. name: "Megamacro",
  11754. height: math.unit(9000, "km")
  11755. },
  11756. {
  11757. name: "Teramacro",
  11758. height: math.unit(384000, "km")
  11759. },
  11760. ]
  11761. ))
  11762. characterMakers.push(() => makeCharacter(
  11763. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11764. {
  11765. front: {
  11766. height: math.unit(6, "feet"),
  11767. weight: math.unit(150, "lb"),
  11768. name: "Front",
  11769. image: {
  11770. source: "./media/characters/kayroo/front.svg",
  11771. extra: 1153 / 1038,
  11772. bottom: 0.06
  11773. }
  11774. },
  11775. foot: {
  11776. height: math.unit(6, "feet"),
  11777. weight: math.unit(150, "lb"),
  11778. name: "Foot",
  11779. image: {
  11780. source: "./media/characters/kayroo/foot.svg"
  11781. }
  11782. },
  11783. },
  11784. [
  11785. {
  11786. name: "Normal",
  11787. height: math.unit(8, "feet"),
  11788. default: true
  11789. },
  11790. {
  11791. name: "Minimacro",
  11792. height: math.unit(250, "feet")
  11793. },
  11794. {
  11795. name: "Macro",
  11796. height: math.unit(2800, "feet")
  11797. },
  11798. {
  11799. name: "Megamacro",
  11800. height: math.unit(5200, "feet")
  11801. },
  11802. {
  11803. name: "Gigamacro",
  11804. height: math.unit(27000, "feet")
  11805. },
  11806. {
  11807. name: "Omega",
  11808. height: math.unit(45000, "feet")
  11809. },
  11810. ]
  11811. ))
  11812. characterMakers.push(() => makeCharacter(
  11813. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11814. {
  11815. front: {
  11816. height: math.unit(18, "feet"),
  11817. weight: math.unit(5800, "lb"),
  11818. name: "Front",
  11819. image: {
  11820. source: "./media/characters/rhys/front.svg",
  11821. extra: 3386 / 3090,
  11822. bottom: 0.07
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Normal",
  11829. height: math.unit(18, "feet"),
  11830. default: true
  11831. },
  11832. {
  11833. name: "Working Size",
  11834. height: math.unit(200, "feet")
  11835. },
  11836. {
  11837. name: "Demolition Size",
  11838. height: math.unit(2000, "feet")
  11839. },
  11840. {
  11841. name: "Maximum Licensed Size",
  11842. height: math.unit(5, "miles")
  11843. },
  11844. {
  11845. name: "Maximum Observed Size",
  11846. height: math.unit(10, "yottameters")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11852. {
  11853. front: {
  11854. height: math.unit(6, "feet"),
  11855. weight: math.unit(250, "lb"),
  11856. name: "Front",
  11857. image: {
  11858. source: "./media/characters/toto/front.svg",
  11859. extra: 527 / 479,
  11860. bottom: 0.05
  11861. }
  11862. },
  11863. },
  11864. [
  11865. {
  11866. name: "Micro",
  11867. height: math.unit(3, "feet")
  11868. },
  11869. {
  11870. name: "Normal",
  11871. height: math.unit(10, "feet")
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(150, "feet"),
  11876. default: true
  11877. },
  11878. {
  11879. name: "Megamacro",
  11880. height: math.unit(1200, "feet")
  11881. },
  11882. ]
  11883. ))
  11884. characterMakers.push(() => makeCharacter(
  11885. { name: "King", species: ["lion"], tags: ["anthro"] },
  11886. {
  11887. back: {
  11888. height: math.unit(6, "feet"),
  11889. weight: math.unit(150, "lb"),
  11890. name: "Back",
  11891. image: {
  11892. source: "./media/characters/king/back.svg"
  11893. }
  11894. },
  11895. },
  11896. [
  11897. {
  11898. name: "Micro",
  11899. height: math.unit(2, "inches")
  11900. },
  11901. {
  11902. name: "Normal",
  11903. height: math.unit(8, "feet")
  11904. },
  11905. {
  11906. name: "Macro",
  11907. height: math.unit(200, "feet"),
  11908. default: true
  11909. },
  11910. {
  11911. name: "Megamacro",
  11912. height: math.unit(50, "miles")
  11913. },
  11914. ]
  11915. ))
  11916. characterMakers.push(() => makeCharacter(
  11917. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11918. {
  11919. front: {
  11920. height: math.unit(11, "feet"),
  11921. weight: math.unit(1400, "lb"),
  11922. name: "Front",
  11923. image: {
  11924. source: "./media/characters/cordite/front.svg",
  11925. extra: 1919/1827,
  11926. bottom: 40/1959
  11927. }
  11928. },
  11929. side: {
  11930. height: math.unit(11, "feet"),
  11931. weight: math.unit(1400, "lb"),
  11932. name: "Side",
  11933. image: {
  11934. source: "./media/characters/cordite/side.svg",
  11935. extra: 1908/1793,
  11936. bottom: 38/1946
  11937. }
  11938. },
  11939. back: {
  11940. height: math.unit(11, "feet"),
  11941. weight: math.unit(1400, "lb"),
  11942. name: "Back",
  11943. image: {
  11944. source: "./media/characters/cordite/back.svg",
  11945. extra: 1938/1837,
  11946. bottom: 10/1948
  11947. }
  11948. },
  11949. feral: {
  11950. height: math.unit(2, "feet"),
  11951. weight: math.unit(90, "lb"),
  11952. name: "Feral",
  11953. image: {
  11954. source: "./media/characters/cordite/feral.svg",
  11955. extra: 1260 / 755,
  11956. bottom: 0.05
  11957. }
  11958. },
  11959. },
  11960. [
  11961. {
  11962. name: "Normal",
  11963. height: math.unit(11, "feet"),
  11964. default: true
  11965. },
  11966. ]
  11967. ))
  11968. characterMakers.push(() => makeCharacter(
  11969. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11970. {
  11971. front: {
  11972. height: math.unit(6, "feet"),
  11973. weight: math.unit(150, "lb"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/pianostrong/front.svg",
  11977. extra: 6577 / 6254,
  11978. bottom: 0.02
  11979. }
  11980. },
  11981. side: {
  11982. height: math.unit(6, "feet"),
  11983. weight: math.unit(150, "lb"),
  11984. name: "Side",
  11985. image: {
  11986. source: "./media/characters/pianostrong/side.svg",
  11987. extra: 6106 / 5730
  11988. }
  11989. },
  11990. back: {
  11991. height: math.unit(6, "feet"),
  11992. weight: math.unit(150, "lb"),
  11993. name: "Back",
  11994. image: {
  11995. source: "./media/characters/pianostrong/back.svg",
  11996. extra: 6085 / 5733,
  11997. bottom: 0.01
  11998. }
  11999. },
  12000. },
  12001. [
  12002. {
  12003. name: "Macro",
  12004. height: math.unit(100, "feet")
  12005. },
  12006. {
  12007. name: "Macro+",
  12008. height: math.unit(300, "feet"),
  12009. default: true
  12010. },
  12011. {
  12012. name: "Macro++",
  12013. height: math.unit(1000, "feet")
  12014. },
  12015. ]
  12016. ))
  12017. characterMakers.push(() => makeCharacter(
  12018. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12019. {
  12020. front: {
  12021. height: math.unit(6, "feet"),
  12022. weight: math.unit(150, "lb"),
  12023. name: "Front",
  12024. image: {
  12025. source: "./media/characters/kona/front.svg",
  12026. extra: 2960 / 2629,
  12027. bottom: 0.005
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Normal",
  12034. height: math.unit(11 + 8 / 12, "feet")
  12035. },
  12036. {
  12037. name: "Macro",
  12038. height: math.unit(850, "feet"),
  12039. default: true
  12040. },
  12041. {
  12042. name: "Macro+",
  12043. height: math.unit(1.5, "km"),
  12044. default: true
  12045. },
  12046. {
  12047. name: "Megamacro",
  12048. height: math.unit(80, "miles")
  12049. },
  12050. {
  12051. name: "Gigamacro",
  12052. height: math.unit(3500, "miles")
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12058. {
  12059. side: {
  12060. height: math.unit(1.9, "meters"),
  12061. weight: math.unit(326, "kg"),
  12062. name: "Side",
  12063. image: {
  12064. source: "./media/characters/levi/side.svg",
  12065. extra: 1704 / 1334,
  12066. bottom: 0.02
  12067. }
  12068. },
  12069. },
  12070. [
  12071. {
  12072. name: "Normal",
  12073. height: math.unit(1.9, "meters"),
  12074. default: true
  12075. },
  12076. {
  12077. name: "Macro",
  12078. height: math.unit(20, "meters")
  12079. },
  12080. {
  12081. name: "Macro+",
  12082. height: math.unit(200, "meters")
  12083. },
  12084. {
  12085. name: "Megamacro",
  12086. height: math.unit(2, "km")
  12087. },
  12088. {
  12089. name: "Megamacro+",
  12090. height: math.unit(20, "km")
  12091. },
  12092. {
  12093. name: "Gigamacro",
  12094. height: math.unit(2500, "km")
  12095. },
  12096. {
  12097. name: "Gigamacro+",
  12098. height: math.unit(120000, "km")
  12099. },
  12100. {
  12101. name: "Teramacro",
  12102. height: math.unit(7.77e6, "km")
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12108. {
  12109. front: {
  12110. height: math.unit(6 + 4/12, "feet"),
  12111. weight: math.unit(190, "lb"),
  12112. name: "Front",
  12113. image: {
  12114. source: "./media/characters/bmc/front.svg",
  12115. extra: 1626/1472,
  12116. bottom: 79/1705
  12117. }
  12118. },
  12119. back: {
  12120. height: math.unit(6 + 4/12, "feet"),
  12121. weight: math.unit(190, "lb"),
  12122. name: "Back",
  12123. image: {
  12124. source: "./media/characters/bmc/back.svg",
  12125. extra: 1640/1479,
  12126. bottom: 45/1685
  12127. }
  12128. },
  12129. frontArmor: {
  12130. height: math.unit(6 + 4/12, "feet"),
  12131. weight: math.unit(190, "lb"),
  12132. name: "Front-armor",
  12133. image: {
  12134. source: "./media/characters/bmc/front-armor.svg",
  12135. extra: 1538/1468,
  12136. bottom: 79/1617
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Human-sized",
  12143. height: math.unit(6 + 4 / 12, "feet")
  12144. },
  12145. {
  12146. name: "Interactive Size",
  12147. height: math.unit(25, "feet")
  12148. },
  12149. {
  12150. name: "Small",
  12151. height: math.unit(250, "feet")
  12152. },
  12153. {
  12154. name: "Normal",
  12155. height: math.unit(1250, "feet"),
  12156. default: true
  12157. },
  12158. {
  12159. name: "Good Day",
  12160. height: math.unit(88, "miles")
  12161. },
  12162. {
  12163. name: "Largest Measured Size",
  12164. height: math.unit(105.960, "galaxies")
  12165. },
  12166. ]
  12167. ))
  12168. characterMakers.push(() => makeCharacter(
  12169. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12170. {
  12171. front: {
  12172. height: math.unit(20, "feet"),
  12173. weight: math.unit(2016, "kg"),
  12174. name: "Front",
  12175. image: {
  12176. source: "./media/characters/sven-the-kaiju/front.svg",
  12177. extra: 1277/1250,
  12178. bottom: 35/1312
  12179. }
  12180. },
  12181. mouth: {
  12182. height: math.unit(1.85, "feet"),
  12183. name: "Mouth",
  12184. image: {
  12185. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Fairy",
  12192. height: math.unit(6, "inches")
  12193. },
  12194. {
  12195. name: "Normal",
  12196. height: math.unit(20, "feet"),
  12197. default: true
  12198. },
  12199. {
  12200. name: "Rampage",
  12201. height: math.unit(200, "feet")
  12202. },
  12203. {
  12204. name: "Archfey Forest Guardian",
  12205. height: math.unit(1, "mile")
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(4, "meters"),
  12214. weight: math.unit(2, "tons"),
  12215. name: "Front",
  12216. image: {
  12217. source: "./media/characters/marik/front.svg",
  12218. extra: 1057 / 1003,
  12219. bottom: 0.08
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Normal",
  12226. height: math.unit(4, "meters"),
  12227. default: true
  12228. },
  12229. {
  12230. name: "Macro",
  12231. height: math.unit(20, "meters")
  12232. },
  12233. {
  12234. name: "Megamacro",
  12235. height: math.unit(50, "km")
  12236. },
  12237. {
  12238. name: "Gigamacro",
  12239. height: math.unit(100, "km")
  12240. },
  12241. {
  12242. name: "Alpha Macro",
  12243. height: math.unit(7.88e7, "yottameters")
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12249. {
  12250. front: {
  12251. height: math.unit(6, "feet"),
  12252. weight: math.unit(110, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/mel/front.svg",
  12256. extra: 736 / 617,
  12257. bottom: 0.017
  12258. }
  12259. },
  12260. },
  12261. [
  12262. {
  12263. name: "Pico",
  12264. height: math.unit(3, "pm")
  12265. },
  12266. {
  12267. name: "Nano",
  12268. height: math.unit(3, "nm")
  12269. },
  12270. {
  12271. name: "Micro",
  12272. height: math.unit(0.3, "mm"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Micro+",
  12277. height: math.unit(3, "mm")
  12278. },
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(5 + 10.5 / 12, "feet")
  12282. },
  12283. ]
  12284. ))
  12285. characterMakers.push(() => makeCharacter(
  12286. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12287. {
  12288. kaiju: {
  12289. height: math.unit(1.75, "meters"),
  12290. weight: math.unit(55, "kg"),
  12291. name: "Kaiju",
  12292. image: {
  12293. source: "./media/characters/lykonous/kaiju.svg",
  12294. extra: 1055 / 946,
  12295. bottom: 0.135
  12296. }
  12297. },
  12298. },
  12299. [
  12300. {
  12301. name: "Normal",
  12302. height: math.unit(2.5, "meters"),
  12303. default: true
  12304. },
  12305. {
  12306. name: "Kaiju Dragon",
  12307. height: math.unit(60, "meters")
  12308. },
  12309. {
  12310. name: "Mega Kaiju",
  12311. height: math.unit(120, "km")
  12312. },
  12313. {
  12314. name: "Giga Kaiju",
  12315. height: math.unit(200, "megameters")
  12316. },
  12317. {
  12318. name: "Terra Kaiju",
  12319. height: math.unit(400, "gigameters")
  12320. },
  12321. {
  12322. name: "Kaiju Dragon God",
  12323. height: math.unit(13000, "exaparsecs")
  12324. },
  12325. ]
  12326. ))
  12327. characterMakers.push(() => makeCharacter(
  12328. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12329. {
  12330. front: {
  12331. height: math.unit(6, "feet"),
  12332. weight: math.unit(150, "lb"),
  12333. name: "Front",
  12334. image: {
  12335. source: "./media/characters/blü/front.svg",
  12336. extra: 1883 / 1564,
  12337. bottom: 0.031
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Normal",
  12344. height: math.unit(13, "feet"),
  12345. default: true
  12346. },
  12347. {
  12348. name: "Big Boi",
  12349. height: math.unit(150, "meters")
  12350. },
  12351. {
  12352. name: "Mini Stomper",
  12353. height: math.unit(300, "meters")
  12354. },
  12355. {
  12356. name: "Macro",
  12357. height: math.unit(1000, "meters")
  12358. },
  12359. {
  12360. name: "Megamacro",
  12361. height: math.unit(11000, "meters")
  12362. },
  12363. {
  12364. name: "Gigamacro",
  12365. height: math.unit(11000, "km")
  12366. },
  12367. {
  12368. name: "Teramacro",
  12369. height: math.unit(420000, "km")
  12370. },
  12371. {
  12372. name: "Examacro",
  12373. height: math.unit(120, "parsecs")
  12374. },
  12375. {
  12376. name: "God Tho",
  12377. height: math.unit(98000000000, "parsecs")
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12383. {
  12384. taurFront: {
  12385. height: math.unit(6, "feet"),
  12386. weight: math.unit(200, "lb"),
  12387. name: "Taur (Front)",
  12388. image: {
  12389. source: "./media/characters/scales/taur-front.svg",
  12390. extra: 1,
  12391. bottom: 0.05
  12392. }
  12393. },
  12394. taurBack: {
  12395. height: math.unit(6, "feet"),
  12396. weight: math.unit(200, "lb"),
  12397. name: "Taur (Back)",
  12398. image: {
  12399. source: "./media/characters/scales/taur-back.svg",
  12400. extra: 1,
  12401. bottom: 0.08
  12402. }
  12403. },
  12404. anthro: {
  12405. height: math.unit(6 * 7 / 12, "feet"),
  12406. weight: math.unit(100, "lb"),
  12407. name: "Anthro",
  12408. image: {
  12409. source: "./media/characters/scales/anthro.svg",
  12410. extra: 1,
  12411. bottom: 0.06
  12412. }
  12413. },
  12414. },
  12415. [
  12416. {
  12417. name: "Normal",
  12418. height: math.unit(12, "feet"),
  12419. default: true
  12420. },
  12421. ]
  12422. ))
  12423. characterMakers.push(() => makeCharacter(
  12424. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12425. {
  12426. front: {
  12427. height: math.unit(6, "feet"),
  12428. weight: math.unit(150, "lb"),
  12429. name: "Front",
  12430. image: {
  12431. source: "./media/characters/koragos/front.svg",
  12432. extra: 841 / 794,
  12433. bottom: 0.035
  12434. }
  12435. },
  12436. back: {
  12437. height: math.unit(6, "feet"),
  12438. weight: math.unit(150, "lb"),
  12439. name: "Back",
  12440. image: {
  12441. source: "./media/characters/koragos/back.svg",
  12442. extra: 841 / 810,
  12443. bottom: 0.022
  12444. }
  12445. },
  12446. },
  12447. [
  12448. {
  12449. name: "Normal",
  12450. height: math.unit(6 + 11 / 12, "feet"),
  12451. default: true
  12452. },
  12453. {
  12454. name: "Macro",
  12455. height: math.unit(490, "feet")
  12456. },
  12457. {
  12458. name: "Megamacro",
  12459. height: math.unit(10, "miles")
  12460. },
  12461. {
  12462. name: "Gigamacro",
  12463. height: math.unit(50, "miles")
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12469. {
  12470. front: {
  12471. height: math.unit(6, "feet"),
  12472. weight: math.unit(250, "lb"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/xylrem/front.svg",
  12476. extra: 3323 / 3050,
  12477. bottom: 0.065
  12478. }
  12479. },
  12480. },
  12481. [
  12482. {
  12483. name: "Micro",
  12484. height: math.unit(4, "feet")
  12485. },
  12486. {
  12487. name: "Normal",
  12488. height: math.unit(16, "feet"),
  12489. default: true
  12490. },
  12491. {
  12492. name: "Macro",
  12493. height: math.unit(2720, "feet")
  12494. },
  12495. {
  12496. name: "Megamacro",
  12497. height: math.unit(25000, "miles")
  12498. },
  12499. ]
  12500. ))
  12501. characterMakers.push(() => makeCharacter(
  12502. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12503. {
  12504. front: {
  12505. height: math.unit(8, "feet"),
  12506. weight: math.unit(250, "kg"),
  12507. name: "Front",
  12508. image: {
  12509. source: "./media/characters/ikideru/front.svg",
  12510. extra: 930 / 870,
  12511. bottom: 0.087
  12512. }
  12513. },
  12514. back: {
  12515. height: math.unit(8, "feet"),
  12516. weight: math.unit(250, "kg"),
  12517. name: "Back",
  12518. image: {
  12519. source: "./media/characters/ikideru/back.svg",
  12520. extra: 919 / 852,
  12521. bottom: 0.055
  12522. }
  12523. },
  12524. },
  12525. [
  12526. {
  12527. name: "Rare",
  12528. height: math.unit(8, "feet"),
  12529. default: true
  12530. },
  12531. {
  12532. name: "Playful Loom",
  12533. height: math.unit(80, "feet")
  12534. },
  12535. {
  12536. name: "City Leaner",
  12537. height: math.unit(230, "feet")
  12538. },
  12539. {
  12540. name: "Megamacro",
  12541. height: math.unit(2500, "feet")
  12542. },
  12543. {
  12544. name: "Gigamacro",
  12545. height: math.unit(26400, "feet")
  12546. },
  12547. {
  12548. name: "Tectonic Shifter",
  12549. height: math.unit(1.7, "megameters")
  12550. },
  12551. {
  12552. name: "Planet Carer",
  12553. height: math.unit(21, "megameters")
  12554. },
  12555. {
  12556. name: "God",
  12557. height: math.unit(11157.22, "parsecs")
  12558. },
  12559. ]
  12560. ))
  12561. characterMakers.push(() => makeCharacter(
  12562. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12563. {
  12564. front: {
  12565. height: math.unit(6, "feet"),
  12566. weight: math.unit(120, "lb"),
  12567. name: "Front",
  12568. image: {
  12569. source: "./media/characters/neo/front.svg"
  12570. }
  12571. },
  12572. },
  12573. [
  12574. {
  12575. name: "Micro",
  12576. height: math.unit(2, "inches"),
  12577. default: true
  12578. },
  12579. {
  12580. name: "Human Size",
  12581. height: math.unit(5 + 8 / 12, "feet")
  12582. },
  12583. ]
  12584. ))
  12585. characterMakers.push(() => makeCharacter(
  12586. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12587. {
  12588. front: {
  12589. height: math.unit(13 + 10 / 12, "feet"),
  12590. weight: math.unit(5320, "lb"),
  12591. name: "Front",
  12592. image: {
  12593. source: "./media/characters/chauncey-chantz/front.svg",
  12594. extra: 1587 / 1435,
  12595. bottom: 0.02
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Normal",
  12602. height: math.unit(13 + 10 / 12, "feet"),
  12603. default: true
  12604. },
  12605. {
  12606. name: "Macro",
  12607. height: math.unit(45, "feet")
  12608. },
  12609. {
  12610. name: "Megamacro",
  12611. height: math.unit(250, "miles")
  12612. },
  12613. {
  12614. name: "Planetary",
  12615. height: math.unit(10000, "miles")
  12616. },
  12617. {
  12618. name: "Galactic",
  12619. height: math.unit(40000, "parsecs")
  12620. },
  12621. {
  12622. name: "Universal",
  12623. height: math.unit(1, "yottameter")
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12629. {
  12630. front: {
  12631. height: math.unit(6, "feet"),
  12632. weight: math.unit(150, "lb"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/epifox/front.svg",
  12636. extra: 1,
  12637. bottom: 0.075
  12638. }
  12639. },
  12640. },
  12641. [
  12642. {
  12643. name: "Micro",
  12644. height: math.unit(6, "inches")
  12645. },
  12646. {
  12647. name: "Normal",
  12648. height: math.unit(12, "feet"),
  12649. default: true
  12650. },
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(3810, "feet")
  12654. },
  12655. {
  12656. name: "Megamacro",
  12657. height: math.unit(500, "miles")
  12658. },
  12659. ]
  12660. ))
  12661. characterMakers.push(() => makeCharacter(
  12662. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12663. {
  12664. front: {
  12665. height: math.unit(1.8796, "m"),
  12666. weight: math.unit(230, "lb"),
  12667. name: "Front",
  12668. image: {
  12669. source: "./media/characters/colin-t/front.svg",
  12670. extra: 1272 / 1193,
  12671. bottom: 0.07
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Micro",
  12678. height: math.unit(0.571, "meters")
  12679. },
  12680. {
  12681. name: "Normal",
  12682. height: math.unit(1.8796, "meters"),
  12683. default: true
  12684. },
  12685. {
  12686. name: "Tall",
  12687. height: math.unit(4, "meters")
  12688. },
  12689. {
  12690. name: "Macro",
  12691. height: math.unit(67.241, "meters")
  12692. },
  12693. {
  12694. name: "Megamacro",
  12695. height: math.unit(371.856, "meters")
  12696. },
  12697. {
  12698. name: "Planetary",
  12699. height: math.unit(12631.5689, "km")
  12700. },
  12701. ]
  12702. ))
  12703. characterMakers.push(() => makeCharacter(
  12704. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12705. {
  12706. front: {
  12707. height: math.unit(1.85, "meters"),
  12708. weight: math.unit(80, "kg"),
  12709. name: "Front",
  12710. image: {
  12711. source: "./media/characters/matvei/front.svg",
  12712. extra: 614 / 594,
  12713. bottom: 0.01
  12714. }
  12715. },
  12716. },
  12717. [
  12718. {
  12719. name: "Normal",
  12720. height: math.unit(1.85, "meters"),
  12721. default: true
  12722. },
  12723. ]
  12724. ))
  12725. characterMakers.push(() => makeCharacter(
  12726. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12727. {
  12728. front: {
  12729. height: math.unit(5 + 9 / 12, "feet"),
  12730. weight: math.unit(70, "lb"),
  12731. name: "Front",
  12732. image: {
  12733. source: "./media/characters/quincy/front.svg",
  12734. extra: 3041 / 2751
  12735. }
  12736. },
  12737. back: {
  12738. height: math.unit(5 + 9 / 12, "feet"),
  12739. weight: math.unit(70, "lb"),
  12740. name: "Back",
  12741. image: {
  12742. source: "./media/characters/quincy/back.svg",
  12743. extra: 3041 / 2751
  12744. }
  12745. },
  12746. flying: {
  12747. height: math.unit(5 + 4 / 12, "feet"),
  12748. weight: math.unit(70, "lb"),
  12749. name: "Flying",
  12750. image: {
  12751. source: "./media/characters/quincy/flying.svg",
  12752. extra: 1044 / 930
  12753. }
  12754. },
  12755. },
  12756. [
  12757. {
  12758. name: "Micro",
  12759. height: math.unit(3, "cm")
  12760. },
  12761. {
  12762. name: "Normal",
  12763. height: math.unit(5 + 9 / 12, "feet")
  12764. },
  12765. {
  12766. name: "Macro",
  12767. height: math.unit(200, "meters"),
  12768. default: true
  12769. },
  12770. {
  12771. name: "Megamacro",
  12772. height: math.unit(1000, "meters")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12778. {
  12779. front: {
  12780. height: math.unit(3 + 11/12, "feet"),
  12781. weight: math.unit(50, "lb"),
  12782. name: "Front",
  12783. image: {
  12784. source: "./media/characters/vanrel/front.svg",
  12785. extra: 1104/949,
  12786. bottom: 52/1156
  12787. }
  12788. },
  12789. back: {
  12790. height: math.unit(3 + 11/12, "feet"),
  12791. weight: math.unit(50, "lb"),
  12792. name: "Back",
  12793. image: {
  12794. source: "./media/characters/vanrel/back.svg",
  12795. extra: 1119/976,
  12796. bottom: 37/1156
  12797. }
  12798. },
  12799. tome: {
  12800. height: math.unit(1.35, "feet"),
  12801. weight: math.unit(10, "lb"),
  12802. name: "Vanrel's Tome",
  12803. rename: true,
  12804. image: {
  12805. source: "./media/characters/vanrel/tome.svg"
  12806. }
  12807. },
  12808. beans: {
  12809. height: math.unit(0.89, "feet"),
  12810. name: "Beans",
  12811. image: {
  12812. source: "./media/characters/vanrel/beans.svg"
  12813. }
  12814. },
  12815. },
  12816. [
  12817. {
  12818. name: "Normal",
  12819. height: math.unit(3 + 11/12, "feet"),
  12820. default: true
  12821. },
  12822. ]
  12823. ))
  12824. characterMakers.push(() => makeCharacter(
  12825. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12826. {
  12827. front: {
  12828. height: math.unit(7 + 5 / 12, "feet"),
  12829. name: "Front",
  12830. image: {
  12831. source: "./media/characters/kuiper-vanrel/front.svg",
  12832. extra: 1219/1169,
  12833. bottom: 69/1288
  12834. }
  12835. },
  12836. back: {
  12837. height: math.unit(7 + 5 / 12, "feet"),
  12838. name: "Back",
  12839. image: {
  12840. source: "./media/characters/kuiper-vanrel/back.svg",
  12841. extra: 1236/1193,
  12842. bottom: 27/1263
  12843. }
  12844. },
  12845. foot: {
  12846. height: math.unit(0.55, "meters"),
  12847. name: "Foot",
  12848. image: {
  12849. source: "./media/characters/kuiper-vanrel/foot.svg",
  12850. }
  12851. },
  12852. battle: {
  12853. height: math.unit(6.824, "feet"),
  12854. name: "Battle",
  12855. image: {
  12856. source: "./media/characters/kuiper-vanrel/battle.svg",
  12857. extra: 1466 / 1327,
  12858. bottom: 29 / 1492.5
  12859. }
  12860. },
  12861. meerkui: {
  12862. height: math.unit(18, "inches"),
  12863. name: "Meerkui",
  12864. image: {
  12865. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12866. extra: 1354/1289,
  12867. bottom: 69/1423
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Normal",
  12874. height: math.unit(7 + 5 / 12, "feet"),
  12875. default: true
  12876. },
  12877. ]
  12878. ))
  12879. characterMakers.push(() => makeCharacter(
  12880. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12881. {
  12882. front: {
  12883. height: math.unit(8 + 5 / 12, "feet"),
  12884. name: "Front",
  12885. image: {
  12886. source: "./media/characters/keset-vanrel/front.svg",
  12887. extra: 1231/1148,
  12888. bottom: 82/1313
  12889. }
  12890. },
  12891. back: {
  12892. height: math.unit(8 + 5 / 12, "feet"),
  12893. name: "Back",
  12894. image: {
  12895. source: "./media/characters/keset-vanrel/back.svg",
  12896. extra: 1240/1174,
  12897. bottom: 33/1273
  12898. }
  12899. },
  12900. hand: {
  12901. height: math.unit(0.6, "meters"),
  12902. name: "Hand",
  12903. image: {
  12904. source: "./media/characters/keset-vanrel/hand.svg"
  12905. }
  12906. },
  12907. foot: {
  12908. height: math.unit(0.94978, "meters"),
  12909. name: "Foot",
  12910. image: {
  12911. source: "./media/characters/keset-vanrel/foot.svg"
  12912. }
  12913. },
  12914. battle: {
  12915. height: math.unit(7.408, "feet"),
  12916. name: "Battle",
  12917. image: {
  12918. source: "./media/characters/keset-vanrel/battle.svg",
  12919. extra: 1890 / 1386,
  12920. bottom: 73.28 / 1970
  12921. }
  12922. },
  12923. },
  12924. [
  12925. {
  12926. name: "Normal",
  12927. height: math.unit(8 + 5 / 12, "feet"),
  12928. default: true
  12929. },
  12930. ]
  12931. ))
  12932. characterMakers.push(() => makeCharacter(
  12933. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12934. {
  12935. front: {
  12936. height: math.unit(6, "feet"),
  12937. weight: math.unit(150, "lb"),
  12938. name: "Front",
  12939. image: {
  12940. source: "./media/characters/neos/front.svg",
  12941. extra: 1696 / 992,
  12942. bottom: 0.14
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(54, "cm"),
  12950. default: true
  12951. },
  12952. {
  12953. name: "Macro",
  12954. height: math.unit(100, "m")
  12955. },
  12956. {
  12957. name: "Megamacro",
  12958. height: math.unit(10, "km")
  12959. },
  12960. {
  12961. name: "Megamacro+",
  12962. height: math.unit(100, "km")
  12963. },
  12964. {
  12965. name: "Gigamacro",
  12966. height: math.unit(100, "Mm")
  12967. },
  12968. {
  12969. name: "Teramacro",
  12970. height: math.unit(100, "Gm")
  12971. },
  12972. {
  12973. name: "Examacro",
  12974. height: math.unit(100, "Em")
  12975. },
  12976. {
  12977. name: "Godly",
  12978. height: math.unit(10000, "Ym")
  12979. },
  12980. {
  12981. name: "Beyond Godly",
  12982. height: math.unit(25, "multiverses")
  12983. },
  12984. ]
  12985. ))
  12986. characterMakers.push(() => makeCharacter(
  12987. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12988. {
  12989. feminine: {
  12990. height: math.unit(5, "feet"),
  12991. weight: math.unit(100, "lb"),
  12992. name: "Feminine",
  12993. image: {
  12994. source: "./media/characters/sammy-mouse/feminine.svg",
  12995. extra: 2526 / 2425,
  12996. bottom: 0.123
  12997. }
  12998. },
  12999. masculine: {
  13000. height: math.unit(5, "feet"),
  13001. weight: math.unit(100, "lb"),
  13002. name: "Masculine",
  13003. image: {
  13004. source: "./media/characters/sammy-mouse/masculine.svg",
  13005. extra: 2526 / 2425,
  13006. bottom: 0.123
  13007. }
  13008. },
  13009. },
  13010. [
  13011. {
  13012. name: "Micro",
  13013. height: math.unit(5, "inches")
  13014. },
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(5, "feet"),
  13018. default: true
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(60, "feet")
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13028. {
  13029. front: {
  13030. height: math.unit(4, "feet"),
  13031. weight: math.unit(50, "lb"),
  13032. name: "Front",
  13033. image: {
  13034. source: "./media/characters/kole/front.svg",
  13035. extra: 1423 / 1303,
  13036. bottom: 0.025
  13037. }
  13038. },
  13039. back: {
  13040. height: math.unit(4, "feet"),
  13041. weight: math.unit(50, "lb"),
  13042. name: "Back",
  13043. image: {
  13044. source: "./media/characters/kole/back.svg",
  13045. extra: 1426 / 1280,
  13046. bottom: 0.02
  13047. }
  13048. },
  13049. },
  13050. [
  13051. {
  13052. name: "Normal",
  13053. height: math.unit(4, "feet"),
  13054. default: true
  13055. },
  13056. ]
  13057. ))
  13058. characterMakers.push(() => makeCharacter(
  13059. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13060. {
  13061. front: {
  13062. height: math.unit(2.5, "feet"),
  13063. weight: math.unit(32, "lb"),
  13064. name: "Front",
  13065. image: {
  13066. source: "./media/characters/rufran/front.svg",
  13067. extra: 1313/885,
  13068. bottom: 94/1407
  13069. }
  13070. },
  13071. side: {
  13072. height: math.unit(2.5, "feet"),
  13073. weight: math.unit(32, "lb"),
  13074. name: "Side",
  13075. image: {
  13076. source: "./media/characters/rufran/side.svg",
  13077. extra: 1109/852,
  13078. bottom: 118/1227
  13079. }
  13080. },
  13081. back: {
  13082. height: math.unit(2.5, "feet"),
  13083. weight: math.unit(32, "lb"),
  13084. name: "Back",
  13085. image: {
  13086. source: "./media/characters/rufran/back.svg",
  13087. extra: 1280/878,
  13088. bottom: 131/1411
  13089. }
  13090. },
  13091. mouth: {
  13092. height: math.unit(1.13, "feet"),
  13093. name: "Mouth",
  13094. image: {
  13095. source: "./media/characters/rufran/mouth.svg"
  13096. }
  13097. },
  13098. foot: {
  13099. height: math.unit(1.33, "feet"),
  13100. name: "Foot",
  13101. image: {
  13102. source: "./media/characters/rufran/foot.svg"
  13103. }
  13104. },
  13105. koboldFront: {
  13106. height: math.unit(2 + 6 / 12, "feet"),
  13107. weight: math.unit(20, "lb"),
  13108. name: "Front (Kobold)",
  13109. image: {
  13110. source: "./media/characters/rufran/kobold-front.svg",
  13111. extra: 2041 / 1839,
  13112. bottom: 0.055
  13113. }
  13114. },
  13115. koboldBack: {
  13116. height: math.unit(2 + 6 / 12, "feet"),
  13117. weight: math.unit(20, "lb"),
  13118. name: "Back (Kobold)",
  13119. image: {
  13120. source: "./media/characters/rufran/kobold-back.svg",
  13121. extra: 2054 / 1839,
  13122. bottom: 0.01
  13123. }
  13124. },
  13125. koboldHand: {
  13126. height: math.unit(0.2166, "meters"),
  13127. name: "Hand (Kobold)",
  13128. image: {
  13129. source: "./media/characters/rufran/kobold-hand.svg"
  13130. }
  13131. },
  13132. koboldFoot: {
  13133. height: math.unit(0.185, "meters"),
  13134. name: "Foot (Kobold)",
  13135. image: {
  13136. source: "./media/characters/rufran/kobold-foot.svg"
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Micro",
  13143. height: math.unit(1, "inch")
  13144. },
  13145. {
  13146. name: "Normal",
  13147. height: math.unit(2 + 6 / 12, "feet"),
  13148. default: true
  13149. },
  13150. {
  13151. name: "Big",
  13152. height: math.unit(60, "feet")
  13153. },
  13154. {
  13155. name: "Macro",
  13156. height: math.unit(325, "feet")
  13157. },
  13158. ]
  13159. ))
  13160. characterMakers.push(() => makeCharacter(
  13161. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13162. {
  13163. front: {
  13164. height: math.unit(0.3, "meters"),
  13165. weight: math.unit(3.5, "kg"),
  13166. name: "Front",
  13167. image: {
  13168. source: "./media/characters/chip/front.svg",
  13169. extra: 748 / 674
  13170. }
  13171. },
  13172. },
  13173. [
  13174. {
  13175. name: "Micro",
  13176. height: math.unit(1, "inch"),
  13177. default: true
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13183. {
  13184. side: {
  13185. height: math.unit(2.3, "meters"),
  13186. weight: math.unit(3500, "lb"),
  13187. name: "Side",
  13188. image: {
  13189. source: "./media/characters/torvid/side.svg",
  13190. extra: 1972 / 722,
  13191. bottom: 0.035
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Normal",
  13198. height: math.unit(2.3, "meters"),
  13199. default: true
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(2, "meters"),
  13208. weight: math.unit(150.5, "kg"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/susan/front.svg",
  13212. extra: 693 / 635,
  13213. bottom: 0.05
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Megamacro",
  13220. height: math.unit(505, "miles"),
  13221. default: true
  13222. },
  13223. ]
  13224. ))
  13225. characterMakers.push(() => makeCharacter(
  13226. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13227. {
  13228. front: {
  13229. height: math.unit(6, "feet"),
  13230. weight: math.unit(150, "lb"),
  13231. name: "Front",
  13232. image: {
  13233. source: "./media/characters/raindrops/front.svg",
  13234. extra: 2655 / 2461,
  13235. bottom: 49 / 2705
  13236. }
  13237. },
  13238. back: {
  13239. height: math.unit(6, "feet"),
  13240. weight: math.unit(150, "lb"),
  13241. name: "Back",
  13242. image: {
  13243. source: "./media/characters/raindrops/back.svg",
  13244. extra: 2574 / 2400,
  13245. bottom: 65 / 2634
  13246. }
  13247. },
  13248. },
  13249. [
  13250. {
  13251. name: "Micro",
  13252. height: math.unit(6, "inches")
  13253. },
  13254. {
  13255. name: "Normal",
  13256. height: math.unit(6 + 2 / 12, "feet")
  13257. },
  13258. {
  13259. name: "Macro",
  13260. height: math.unit(131, "feet"),
  13261. default: true
  13262. },
  13263. {
  13264. name: "Megamacro",
  13265. height: math.unit(15, "miles")
  13266. },
  13267. {
  13268. name: "Gigamacro",
  13269. height: math.unit(4000, "miles")
  13270. },
  13271. {
  13272. name: "Teramacro",
  13273. height: math.unit(315000, "miles")
  13274. },
  13275. ]
  13276. ))
  13277. characterMakers.push(() => makeCharacter(
  13278. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13279. {
  13280. front: {
  13281. height: math.unit(2.794, "meters"),
  13282. weight: math.unit(325, "kg"),
  13283. name: "Front",
  13284. image: {
  13285. source: "./media/characters/tezwa/front.svg",
  13286. extra: 2083 / 1906,
  13287. bottom: 0.031
  13288. }
  13289. },
  13290. foot: {
  13291. height: math.unit(0.687, "meters"),
  13292. name: "Foot",
  13293. image: {
  13294. source: "./media/characters/tezwa/foot.svg"
  13295. }
  13296. },
  13297. },
  13298. [
  13299. {
  13300. name: "Normal",
  13301. height: math.unit(9 + 2 / 12, "feet"),
  13302. default: true
  13303. },
  13304. ]
  13305. ))
  13306. characterMakers.push(() => makeCharacter(
  13307. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13308. {
  13309. front: {
  13310. height: math.unit(58, "feet"),
  13311. weight: math.unit(89000, "lb"),
  13312. name: "Front",
  13313. image: {
  13314. source: "./media/characters/typhus/front.svg",
  13315. extra: 816 / 800,
  13316. bottom: 0.065
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(58, "feet"),
  13324. default: true
  13325. },
  13326. ]
  13327. ))
  13328. characterMakers.push(() => makeCharacter(
  13329. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13330. {
  13331. front: {
  13332. height: math.unit(12, "feet"),
  13333. weight: math.unit(6, "tonnes"),
  13334. name: "Front",
  13335. image: {
  13336. source: "./media/characters/lyra-von-wulf/front.svg",
  13337. extra: 1,
  13338. bottom: 0.10
  13339. }
  13340. },
  13341. frontMecha: {
  13342. height: math.unit(12, "feet"),
  13343. weight: math.unit(12, "tonnes"),
  13344. name: "Front (Mecha)",
  13345. image: {
  13346. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13347. extra: 1,
  13348. bottom: 0.042
  13349. }
  13350. },
  13351. maw: {
  13352. height: math.unit(2.2, "feet"),
  13353. name: "Maw",
  13354. image: {
  13355. source: "./media/characters/lyra-von-wulf/maw.svg"
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Normal",
  13362. height: math.unit(12, "feet"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Classic",
  13367. height: math.unit(50, "feet")
  13368. },
  13369. {
  13370. name: "Macro",
  13371. height: math.unit(500, "feet")
  13372. },
  13373. {
  13374. name: "Megamacro",
  13375. height: math.unit(1, "mile")
  13376. },
  13377. {
  13378. name: "Gigamacro",
  13379. height: math.unit(400, "miles")
  13380. },
  13381. {
  13382. name: "Teramacro",
  13383. height: math.unit(22000, "miles")
  13384. },
  13385. {
  13386. name: "Solarmacro",
  13387. height: math.unit(8600000, "miles")
  13388. },
  13389. {
  13390. name: "Galactic",
  13391. height: math.unit(1057000, "lightyears")
  13392. },
  13393. ]
  13394. ))
  13395. characterMakers.push(() => makeCharacter(
  13396. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13397. {
  13398. front: {
  13399. height: math.unit(6 + 10 / 12, "feet"),
  13400. weight: math.unit(150, "lb"),
  13401. name: "Front",
  13402. image: {
  13403. source: "./media/characters/dixon/front.svg",
  13404. extra: 3361 / 3209,
  13405. bottom: 0.01
  13406. }
  13407. },
  13408. },
  13409. [
  13410. {
  13411. name: "Normal",
  13412. height: math.unit(6 + 10 / 12, "feet"),
  13413. default: true
  13414. },
  13415. {
  13416. name: "Big",
  13417. height: math.unit(12, "meters")
  13418. },
  13419. {
  13420. name: "Macro",
  13421. height: math.unit(500, "meters")
  13422. },
  13423. {
  13424. name: "Megamacro",
  13425. height: math.unit(2, "km")
  13426. },
  13427. ]
  13428. ))
  13429. characterMakers.push(() => makeCharacter(
  13430. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13431. {
  13432. front: {
  13433. height: math.unit(185, "cm"),
  13434. weight: math.unit(68, "kg"),
  13435. name: "Front",
  13436. image: {
  13437. source: "./media/characters/kauko/front.svg",
  13438. extra: 1455 / 1421,
  13439. bottom: 0.03
  13440. }
  13441. },
  13442. back: {
  13443. height: math.unit(185, "cm"),
  13444. weight: math.unit(68, "kg"),
  13445. name: "Back",
  13446. image: {
  13447. source: "./media/characters/kauko/back.svg",
  13448. extra: 1455 / 1421,
  13449. bottom: 0.004
  13450. }
  13451. },
  13452. },
  13453. [
  13454. {
  13455. name: "Normal",
  13456. height: math.unit(185, "cm"),
  13457. default: true
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13463. {
  13464. front: {
  13465. height: math.unit(6, "feet"),
  13466. weight: math.unit(150, "kg"),
  13467. name: "Front",
  13468. image: {
  13469. source: "./media/characters/varg/front.svg",
  13470. extra: 1108 / 1018,
  13471. bottom: 0.0375
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Normal",
  13478. height: math.unit(5, "meters")
  13479. },
  13480. {
  13481. name: "Macro",
  13482. height: math.unit(200, "meters")
  13483. },
  13484. {
  13485. name: "Megamacro",
  13486. height: math.unit(20, "kilometers")
  13487. },
  13488. {
  13489. name: "True Size",
  13490. height: math.unit(211, "km"),
  13491. default: true
  13492. },
  13493. {
  13494. name: "Gigamacro",
  13495. height: math.unit(1000, "km")
  13496. },
  13497. {
  13498. name: "Gigamacro+",
  13499. height: math.unit(8000, "km")
  13500. },
  13501. {
  13502. name: "Teramacro",
  13503. height: math.unit(1000000, "km")
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13509. {
  13510. front: {
  13511. height: math.unit(7 + 7 / 12, "feet"),
  13512. weight: math.unit(267, "lb"),
  13513. name: "Front",
  13514. image: {
  13515. source: "./media/characters/dayza/front.svg",
  13516. extra: 1262 / 1200,
  13517. bottom: 0.035
  13518. }
  13519. },
  13520. side: {
  13521. height: math.unit(7 + 7 / 12, "feet"),
  13522. weight: math.unit(267, "lb"),
  13523. name: "Side",
  13524. image: {
  13525. source: "./media/characters/dayza/side.svg",
  13526. extra: 1295 / 1245,
  13527. bottom: 0.05
  13528. }
  13529. },
  13530. back: {
  13531. height: math.unit(7 + 7 / 12, "feet"),
  13532. weight: math.unit(267, "lb"),
  13533. name: "Back",
  13534. image: {
  13535. source: "./media/characters/dayza/back.svg",
  13536. extra: 1241 / 1170
  13537. }
  13538. },
  13539. },
  13540. [
  13541. {
  13542. name: "Normal",
  13543. height: math.unit(7 + 7 / 12, "feet"),
  13544. default: true
  13545. },
  13546. {
  13547. name: "Macro",
  13548. height: math.unit(155, "feet")
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13554. {
  13555. front: {
  13556. height: math.unit(6 + 5 / 12, "feet"),
  13557. weight: math.unit(160, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/xanthos/front.svg",
  13561. extra: 1,
  13562. bottom: 0.04
  13563. }
  13564. },
  13565. back: {
  13566. height: math.unit(6 + 5 / 12, "feet"),
  13567. weight: math.unit(160, "lb"),
  13568. name: "Back",
  13569. image: {
  13570. source: "./media/characters/xanthos/back.svg",
  13571. extra: 1,
  13572. bottom: 0.03
  13573. }
  13574. },
  13575. hand: {
  13576. height: math.unit(0.928, "feet"),
  13577. name: "Hand",
  13578. image: {
  13579. source: "./media/characters/xanthos/hand.svg"
  13580. }
  13581. },
  13582. foot: {
  13583. height: math.unit(1.286, "feet"),
  13584. name: "Foot",
  13585. image: {
  13586. source: "./media/characters/xanthos/foot.svg"
  13587. }
  13588. },
  13589. },
  13590. [
  13591. {
  13592. name: "Normal",
  13593. height: math.unit(6 + 5 / 12, "feet"),
  13594. default: true
  13595. },
  13596. {
  13597. name: "Normal+",
  13598. height: math.unit(6, "meters")
  13599. },
  13600. {
  13601. name: "Macro",
  13602. height: math.unit(40, "feet")
  13603. },
  13604. {
  13605. name: "Macro+",
  13606. height: math.unit(200, "meters")
  13607. },
  13608. {
  13609. name: "Megamacro",
  13610. height: math.unit(20, "km")
  13611. },
  13612. {
  13613. name: "Megamacro+",
  13614. height: math.unit(100, "km")
  13615. },
  13616. {
  13617. name: "Gigamacro",
  13618. height: math.unit(200, "megameters")
  13619. },
  13620. {
  13621. name: "Gigamacro+",
  13622. height: math.unit(1.5, "gigameters")
  13623. },
  13624. ]
  13625. ))
  13626. characterMakers.push(() => makeCharacter(
  13627. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13628. {
  13629. front: {
  13630. height: math.unit(6 + 3 / 12, "feet"),
  13631. weight: math.unit(215, "lb"),
  13632. name: "Front",
  13633. image: {
  13634. source: "./media/characters/grynn/front.svg",
  13635. extra: 4627 / 4209,
  13636. bottom: 0.047
  13637. }
  13638. },
  13639. },
  13640. [
  13641. {
  13642. name: "Micro",
  13643. height: math.unit(6, "inches")
  13644. },
  13645. {
  13646. name: "Normal",
  13647. height: math.unit(6 + 3 / 12, "feet"),
  13648. default: true
  13649. },
  13650. {
  13651. name: "Big",
  13652. height: math.unit(104, "feet")
  13653. },
  13654. {
  13655. name: "Macro",
  13656. height: math.unit(944, "feet")
  13657. },
  13658. {
  13659. name: "Macro+",
  13660. height: math.unit(9480, "feet")
  13661. },
  13662. {
  13663. name: "Megamacro",
  13664. height: math.unit(78752, "feet")
  13665. },
  13666. {
  13667. name: "Megamacro+",
  13668. height: math.unit(630128, "feet")
  13669. },
  13670. {
  13671. name: "Megamacro++",
  13672. height: math.unit(3150695, "feet")
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(7 + 5 / 12, "feet"),
  13681. weight: math.unit(450, "lb"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/mocha-aura/front.svg",
  13685. extra: 1907 / 1817,
  13686. bottom: 0.04
  13687. }
  13688. },
  13689. back: {
  13690. height: math.unit(7 + 5 / 12, "feet"),
  13691. weight: math.unit(450, "lb"),
  13692. name: "Back",
  13693. image: {
  13694. source: "./media/characters/mocha-aura/back.svg",
  13695. extra: 1900 / 1825,
  13696. bottom: 0.045
  13697. }
  13698. },
  13699. },
  13700. [
  13701. {
  13702. name: "Nano",
  13703. height: math.unit(1, "nm")
  13704. },
  13705. {
  13706. name: "Megamicro",
  13707. height: math.unit(1, "mm")
  13708. },
  13709. {
  13710. name: "Micro",
  13711. height: math.unit(3, "inches")
  13712. },
  13713. {
  13714. name: "Normal",
  13715. height: math.unit(7 + 5 / 12, "feet"),
  13716. default: true
  13717. },
  13718. {
  13719. name: "Macro",
  13720. height: math.unit(30, "feet")
  13721. },
  13722. {
  13723. name: "Megamacro",
  13724. height: math.unit(3500, "feet")
  13725. },
  13726. {
  13727. name: "Teramacro",
  13728. height: math.unit(500000, "miles")
  13729. },
  13730. {
  13731. name: "Petamacro",
  13732. height: math.unit(50000000000000000, "parsecs")
  13733. },
  13734. ]
  13735. ))
  13736. characterMakers.push(() => makeCharacter(
  13737. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13738. {
  13739. front: {
  13740. height: math.unit(6, "feet"),
  13741. weight: math.unit(150, "lb"),
  13742. name: "Front",
  13743. image: {
  13744. source: "./media/characters/ilisha-devya/front.svg",
  13745. extra: 1053/1049,
  13746. bottom: 270/1323
  13747. }
  13748. },
  13749. back: {
  13750. height: math.unit(6, "feet"),
  13751. weight: math.unit(150, "lb"),
  13752. name: "Back",
  13753. image: {
  13754. source: "./media/characters/ilisha-devya/back.svg",
  13755. extra: 1131/1128,
  13756. bottom: 39/1170
  13757. }
  13758. },
  13759. },
  13760. [
  13761. {
  13762. name: "Macro",
  13763. height: math.unit(500, "feet"),
  13764. default: true
  13765. },
  13766. {
  13767. name: "Megamacro",
  13768. height: math.unit(10, "miles")
  13769. },
  13770. {
  13771. name: "Gigamacro",
  13772. height: math.unit(100000, "miles")
  13773. },
  13774. {
  13775. name: "Examacro",
  13776. height: math.unit(1e9, "lightyears")
  13777. },
  13778. {
  13779. name: "Omniversal",
  13780. height: math.unit(1e33, "lightyears")
  13781. },
  13782. {
  13783. name: "Beyond Infinite",
  13784. height: math.unit(1e100, "lightyears")
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13790. {
  13791. Side: {
  13792. height: math.unit(6, "feet"),
  13793. weight: math.unit(150, "lb"),
  13794. name: "Side",
  13795. image: {
  13796. source: "./media/characters/mira/side.svg",
  13797. extra: 900 / 799,
  13798. bottom: 0.02
  13799. }
  13800. },
  13801. },
  13802. [
  13803. {
  13804. name: "Human Size",
  13805. height: math.unit(6, "feet")
  13806. },
  13807. {
  13808. name: "Macro",
  13809. height: math.unit(100, "feet"),
  13810. default: true
  13811. },
  13812. {
  13813. name: "Megamacro",
  13814. height: math.unit(10, "miles")
  13815. },
  13816. {
  13817. name: "Gigamacro",
  13818. height: math.unit(25000, "miles")
  13819. },
  13820. {
  13821. name: "Teramacro",
  13822. height: math.unit(300, "AU")
  13823. },
  13824. {
  13825. name: "Full Size",
  13826. height: math.unit(4.5e10, "lightyears")
  13827. },
  13828. ]
  13829. ))
  13830. characterMakers.push(() => makeCharacter(
  13831. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13832. {
  13833. front: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(150, "lb"),
  13836. name: "Front",
  13837. image: {
  13838. source: "./media/characters/holly/front.svg",
  13839. extra: 639 / 606
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(150, "lb"),
  13845. name: "Back",
  13846. image: {
  13847. source: "./media/characters/holly/back.svg",
  13848. extra: 623 / 598
  13849. }
  13850. },
  13851. frontWorking: {
  13852. height: math.unit(6, "feet"),
  13853. weight: math.unit(150, "lb"),
  13854. name: "Front (Working)",
  13855. image: {
  13856. source: "./media/characters/holly/front-working.svg",
  13857. extra: 607 / 577,
  13858. bottom: 0.048
  13859. }
  13860. },
  13861. },
  13862. [
  13863. {
  13864. name: "Normal",
  13865. height: math.unit(12 + 3 / 12, "feet"),
  13866. default: true
  13867. },
  13868. ]
  13869. ))
  13870. characterMakers.push(() => makeCharacter(
  13871. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13872. {
  13873. front: {
  13874. height: math.unit(6, "feet"),
  13875. weight: math.unit(150, "lb"),
  13876. name: "Front",
  13877. image: {
  13878. source: "./media/characters/porter/front.svg",
  13879. extra: 1,
  13880. bottom: 0.01
  13881. }
  13882. },
  13883. frontRobes: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(150, "lb"),
  13886. name: "Front (Robes)",
  13887. image: {
  13888. source: "./media/characters/porter/front-robes.svg",
  13889. extra: 1.01,
  13890. bottom: 0.01
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Normal",
  13897. height: math.unit(11 + 9 / 12, "feet"),
  13898. default: true
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13904. {
  13905. legendary: {
  13906. height: math.unit(6, "feet"),
  13907. weight: math.unit(150, "lb"),
  13908. name: "Legendary",
  13909. image: {
  13910. source: "./media/characters/lucy/legendary.svg",
  13911. extra: 1355 / 1100,
  13912. bottom: 0.045
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Legendary",
  13919. height: math.unit(86882 * 2, "miles"),
  13920. default: true
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(150, "lb"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/drusilla/front.svg",
  13933. extra: 678 / 635,
  13934. bottom: 0.03
  13935. }
  13936. },
  13937. back: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(150, "lb"),
  13940. name: "Back",
  13941. image: {
  13942. source: "./media/characters/drusilla/back.svg",
  13943. extra: 678 / 635,
  13944. bottom: 0.005
  13945. }
  13946. },
  13947. },
  13948. [
  13949. {
  13950. name: "Macro",
  13951. height: math.unit(100, "feet")
  13952. },
  13953. {
  13954. name: "Canon Height",
  13955. height: math.unit(2000, "feet"),
  13956. default: true
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13962. {
  13963. front: {
  13964. height: math.unit(6, "feet"),
  13965. weight: math.unit(180, "lb"),
  13966. name: "Front",
  13967. image: {
  13968. source: "./media/characters/renard-thatch/front.svg",
  13969. extra: 2411 / 2275,
  13970. bottom: 0.01
  13971. }
  13972. },
  13973. frontPosing: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(180, "lb"),
  13976. name: "Front (Posing)",
  13977. image: {
  13978. source: "./media/characters/renard-thatch/front-posing.svg",
  13979. extra: 2381 / 2261,
  13980. bottom: 0.01
  13981. }
  13982. },
  13983. back: {
  13984. height: math.unit(6, "feet"),
  13985. weight: math.unit(180, "lb"),
  13986. name: "Back",
  13987. image: {
  13988. source: "./media/characters/renard-thatch/back.svg",
  13989. extra: 2428 / 2288
  13990. }
  13991. },
  13992. },
  13993. [
  13994. {
  13995. name: "Micro",
  13996. height: math.unit(3, "inches")
  13997. },
  13998. {
  13999. name: "Default",
  14000. height: math.unit(6, "feet"),
  14001. default: true
  14002. },
  14003. {
  14004. name: "Macro",
  14005. height: math.unit(75, "feet")
  14006. },
  14007. ]
  14008. ))
  14009. characterMakers.push(() => makeCharacter(
  14010. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14011. {
  14012. front: {
  14013. height: math.unit(1450, "feet"),
  14014. weight: math.unit(1.21e6, "tons"),
  14015. name: "Front",
  14016. image: {
  14017. source: "./media/characters/sekvra/front.svg",
  14018. extra: 1193/1190,
  14019. bottom: 78/1271
  14020. }
  14021. },
  14022. side: {
  14023. height: math.unit(1450, "feet"),
  14024. weight: math.unit(1.21e6, "tons"),
  14025. name: "Side",
  14026. image: {
  14027. source: "./media/characters/sekvra/side.svg",
  14028. extra: 1193/1190,
  14029. bottom: 52/1245
  14030. }
  14031. },
  14032. back: {
  14033. height: math.unit(1450, "feet"),
  14034. weight: math.unit(1.21e6, "tons"),
  14035. name: "Back",
  14036. image: {
  14037. source: "./media/characters/sekvra/back.svg",
  14038. extra: 1219/1216,
  14039. bottom: 21/1240
  14040. }
  14041. },
  14042. frontClothed: {
  14043. height: math.unit(1450, "feet"),
  14044. weight: math.unit(1.21e6, "tons"),
  14045. name: "Front (Clothed)",
  14046. image: {
  14047. source: "./media/characters/sekvra/front-clothed.svg",
  14048. extra: 1192/1189,
  14049. bottom: 79/1271
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Macro",
  14056. height: math.unit(1450, "feet"),
  14057. default: true
  14058. },
  14059. {
  14060. name: "Megamacro",
  14061. height: math.unit(15000, "feet")
  14062. },
  14063. ]
  14064. ))
  14065. characterMakers.push(() => makeCharacter(
  14066. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14067. {
  14068. front: {
  14069. height: math.unit(6, "feet"),
  14070. weight: math.unit(150, "lb"),
  14071. name: "Front",
  14072. image: {
  14073. source: "./media/characters/carmine/front.svg",
  14074. extra: 1,
  14075. bottom: 0.035
  14076. }
  14077. },
  14078. frontArmor: {
  14079. height: math.unit(6, "feet"),
  14080. weight: math.unit(150, "lb"),
  14081. name: "Front (Armor)",
  14082. image: {
  14083. source: "./media/characters/carmine/front-armor.svg",
  14084. extra: 1,
  14085. bottom: 0.035
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Large",
  14092. height: math.unit(1, "mile")
  14093. },
  14094. {
  14095. name: "Huge",
  14096. height: math.unit(40, "miles"),
  14097. default: true
  14098. },
  14099. {
  14100. name: "Colossal",
  14101. height: math.unit(2500, "miles")
  14102. },
  14103. ]
  14104. ))
  14105. characterMakers.push(() => makeCharacter(
  14106. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14107. {
  14108. front: {
  14109. height: math.unit(6, "feet"),
  14110. weight: math.unit(150, "lb"),
  14111. name: "Front",
  14112. image: {
  14113. source: "./media/characters/elyssia/front.svg",
  14114. extra: 2201 / 2035,
  14115. bottom: 0.05
  14116. }
  14117. },
  14118. frontClothed: {
  14119. height: math.unit(6, "feet"),
  14120. weight: math.unit(150, "lb"),
  14121. name: "Front (Clothed)",
  14122. image: {
  14123. source: "./media/characters/elyssia/front-clothed.svg",
  14124. extra: 2201 / 2035,
  14125. bottom: 0.05
  14126. }
  14127. },
  14128. back: {
  14129. height: math.unit(6, "feet"),
  14130. weight: math.unit(150, "lb"),
  14131. name: "Back",
  14132. image: {
  14133. source: "./media/characters/elyssia/back.svg",
  14134. extra: 2201 / 2035,
  14135. bottom: 0.013
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Smaller",
  14142. height: math.unit(150, "feet")
  14143. },
  14144. {
  14145. name: "Standard",
  14146. height: math.unit(1400, "feet"),
  14147. default: true
  14148. },
  14149. {
  14150. name: "Distracted",
  14151. height: math.unit(15000, "feet")
  14152. },
  14153. ]
  14154. ))
  14155. characterMakers.push(() => makeCharacter(
  14156. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14157. {
  14158. front: {
  14159. height: math.unit(7 + 4/12, "feet"),
  14160. weight: math.unit(690, "lb"),
  14161. name: "Front",
  14162. image: {
  14163. source: "./media/characters/geno-maxwell/front.svg",
  14164. extra: 984/856,
  14165. bottom: 87/1071
  14166. }
  14167. },
  14168. back: {
  14169. height: math.unit(7 + 4/12, "feet"),
  14170. weight: math.unit(690, "lb"),
  14171. name: "Back",
  14172. image: {
  14173. source: "./media/characters/geno-maxwell/back.svg",
  14174. extra: 981/854,
  14175. bottom: 57/1038
  14176. }
  14177. },
  14178. frontCostume: {
  14179. height: math.unit(7 + 4/12, "feet"),
  14180. weight: math.unit(690, "lb"),
  14181. name: "Front (Costume)",
  14182. image: {
  14183. source: "./media/characters/geno-maxwell/front-costume.svg",
  14184. extra: 984/856,
  14185. bottom: 87/1071
  14186. }
  14187. },
  14188. backcostume: {
  14189. height: math.unit(7 + 4/12, "feet"),
  14190. weight: math.unit(690, "lb"),
  14191. name: "Back (Costume)",
  14192. image: {
  14193. source: "./media/characters/geno-maxwell/back-costume.svg",
  14194. extra: 981/854,
  14195. bottom: 57/1038
  14196. }
  14197. },
  14198. },
  14199. [
  14200. {
  14201. name: "Micro",
  14202. height: math.unit(3, "inches")
  14203. },
  14204. {
  14205. name: "Normal",
  14206. height: math.unit(7 + 4 / 12, "feet"),
  14207. default: true
  14208. },
  14209. {
  14210. name: "Macro",
  14211. height: math.unit(220, "feet")
  14212. },
  14213. {
  14214. name: "Megamacro",
  14215. height: math.unit(11, "miles")
  14216. },
  14217. ]
  14218. ))
  14219. characterMakers.push(() => makeCharacter(
  14220. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14221. {
  14222. front: {
  14223. height: math.unit(7 + 4/12, "feet"),
  14224. weight: math.unit(750, "lb"),
  14225. name: "Front",
  14226. image: {
  14227. source: "./media/characters/regena-maxwell/front.svg",
  14228. extra: 984/856,
  14229. bottom: 87/1071
  14230. }
  14231. },
  14232. back: {
  14233. height: math.unit(7 + 4/12, "feet"),
  14234. weight: math.unit(750, "lb"),
  14235. name: "Back",
  14236. image: {
  14237. source: "./media/characters/regena-maxwell/back.svg",
  14238. extra: 981/854,
  14239. bottom: 57/1038
  14240. }
  14241. },
  14242. frontCostume: {
  14243. height: math.unit(7 + 4/12, "feet"),
  14244. weight: math.unit(750, "lb"),
  14245. name: "Front (Costume)",
  14246. image: {
  14247. source: "./media/characters/regena-maxwell/front-costume.svg",
  14248. extra: 984/856,
  14249. bottom: 87/1071
  14250. }
  14251. },
  14252. backcostume: {
  14253. height: math.unit(7 + 4/12, "feet"),
  14254. weight: math.unit(750, "lb"),
  14255. name: "Back (Costume)",
  14256. image: {
  14257. source: "./media/characters/regena-maxwell/back-costume.svg",
  14258. extra: 981/854,
  14259. bottom: 57/1038
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(7 + 4 / 12, "feet"),
  14267. default: true
  14268. },
  14269. {
  14270. name: "Macro",
  14271. height: math.unit(220, "feet")
  14272. },
  14273. {
  14274. name: "Megamacro",
  14275. height: math.unit(11, "miles")
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14281. {
  14282. front: {
  14283. height: math.unit(6, "feet"),
  14284. weight: math.unit(150, "lb"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14288. extra: 860 / 690,
  14289. bottom: 0.03
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Normal",
  14296. height: math.unit(1.7, "meters"),
  14297. default: true
  14298. },
  14299. ]
  14300. ))
  14301. characterMakers.push(() => makeCharacter(
  14302. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14303. {
  14304. front: {
  14305. height: math.unit(6, "feet"),
  14306. weight: math.unit(150, "lb"),
  14307. name: "Front",
  14308. image: {
  14309. source: "./media/characters/quilly/front.svg",
  14310. extra: 890 / 776
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Gigamacro",
  14317. height: math.unit(404090, "miles"),
  14318. default: true
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(7 + 8 / 12, "feet"),
  14327. weight: math.unit(350, "lb"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/tempest/front.svg",
  14331. extra: 1175 / 1086,
  14332. bottom: 0.02
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Normal",
  14339. height: math.unit(7 + 8 / 12, "feet"),
  14340. default: true
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14346. {
  14347. side: {
  14348. height: math.unit(4 + 5 / 12, "feet"),
  14349. weight: math.unit(80, "lb"),
  14350. name: "Side",
  14351. image: {
  14352. source: "./media/characters/rodger/side.svg",
  14353. extra: 1235 / 1118
  14354. }
  14355. },
  14356. },
  14357. [
  14358. {
  14359. name: "Micro",
  14360. height: math.unit(1, "inch")
  14361. },
  14362. {
  14363. name: "Normal",
  14364. height: math.unit(4 + 5 / 12, "feet"),
  14365. default: true
  14366. },
  14367. {
  14368. name: "Macro",
  14369. height: math.unit(120, "feet")
  14370. },
  14371. ]
  14372. ))
  14373. characterMakers.push(() => makeCharacter(
  14374. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14375. {
  14376. front: {
  14377. height: math.unit(6, "feet"),
  14378. weight: math.unit(150, "lb"),
  14379. name: "Front",
  14380. image: {
  14381. source: "./media/characters/danyel/front.svg",
  14382. extra: 1185 / 1123,
  14383. bottom: 0.05
  14384. }
  14385. },
  14386. },
  14387. [
  14388. {
  14389. name: "Shrunken",
  14390. height: math.unit(0.5, "mm")
  14391. },
  14392. {
  14393. name: "Micro",
  14394. height: math.unit(1, "mm"),
  14395. default: true
  14396. },
  14397. {
  14398. name: "Upsized",
  14399. height: math.unit(5 + 5 / 12, "feet")
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14405. {
  14406. front: {
  14407. height: math.unit(5 + 6 / 12, "feet"),
  14408. weight: math.unit(200, "lb"),
  14409. name: "Front",
  14410. image: {
  14411. source: "./media/characters/vivian-bijoux/front.svg",
  14412. extra: 1217/1209,
  14413. bottom: 76/1293
  14414. }
  14415. },
  14416. back: {
  14417. height: math.unit(5 + 6 / 12, "feet"),
  14418. weight: math.unit(200, "lb"),
  14419. name: "Back",
  14420. image: {
  14421. source: "./media/characters/vivian-bijoux/back.svg",
  14422. extra: 1214/1208,
  14423. bottom: 51/1265
  14424. }
  14425. },
  14426. dressed: {
  14427. height: math.unit(5 + 6 / 12, "feet"),
  14428. weight: math.unit(200, "lb"),
  14429. name: "Dressed",
  14430. image: {
  14431. source: "./media/characters/vivian-bijoux/dressed.svg",
  14432. extra: 1217/1209,
  14433. bottom: 76/1293
  14434. }
  14435. },
  14436. },
  14437. [
  14438. {
  14439. name: "Normal",
  14440. height: math.unit(5 + 6 / 12, "feet"),
  14441. default: true
  14442. },
  14443. {
  14444. name: "Bad Dream",
  14445. height: math.unit(500, "feet")
  14446. },
  14447. {
  14448. name: "Nightmare",
  14449. height: math.unit(500, "miles")
  14450. },
  14451. ]
  14452. ))
  14453. characterMakers.push(() => makeCharacter(
  14454. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14455. {
  14456. front: {
  14457. height: math.unit(6 + 1 / 12, "feet"),
  14458. weight: math.unit(260, "lb"),
  14459. name: "Front",
  14460. image: {
  14461. source: "./media/characters/zeta/front.svg",
  14462. extra: 1968 / 1889,
  14463. bottom: 0.06
  14464. }
  14465. },
  14466. back: {
  14467. height: math.unit(6 + 1 / 12, "feet"),
  14468. weight: math.unit(260, "lb"),
  14469. name: "Back",
  14470. image: {
  14471. source: "./media/characters/zeta/back.svg",
  14472. extra: 1944 / 1858,
  14473. bottom: 0.03
  14474. }
  14475. },
  14476. hand: {
  14477. height: math.unit(1.112, "feet"),
  14478. name: "Hand",
  14479. image: {
  14480. source: "./media/characters/zeta/hand.svg"
  14481. }
  14482. },
  14483. foot: {
  14484. height: math.unit(1.48, "feet"),
  14485. name: "Foot",
  14486. image: {
  14487. source: "./media/characters/zeta/foot.svg"
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Micro",
  14494. height: math.unit(6, "inches")
  14495. },
  14496. {
  14497. name: "Normal",
  14498. height: math.unit(6 + 1 / 12, "feet"),
  14499. default: true
  14500. },
  14501. {
  14502. name: "Macro",
  14503. height: math.unit(20, "feet")
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14509. {
  14510. front: {
  14511. height: math.unit(6, "feet"),
  14512. weight: math.unit(150, "lb"),
  14513. name: "Front",
  14514. image: {
  14515. source: "./media/characters/jamie-larsen/front.svg",
  14516. extra: 962 / 933,
  14517. bottom: 0.02
  14518. }
  14519. },
  14520. back: {
  14521. height: math.unit(6, "feet"),
  14522. weight: math.unit(150, "lb"),
  14523. name: "Back",
  14524. image: {
  14525. source: "./media/characters/jamie-larsen/back.svg",
  14526. extra: 997 / 946
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Macro",
  14533. height: math.unit(28 + 7 / 12, "feet"),
  14534. default: true
  14535. },
  14536. {
  14537. name: "Macro+",
  14538. height: math.unit(180, "feet")
  14539. },
  14540. {
  14541. name: "Megamacro",
  14542. height: math.unit(10, "miles")
  14543. },
  14544. {
  14545. name: "Gigamacro",
  14546. height: math.unit(200000, "miles")
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14552. {
  14553. front: {
  14554. height: math.unit(6, "feet"),
  14555. weight: math.unit(120, "lb"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/vance/front.svg",
  14559. extra: 1980 / 1890,
  14560. bottom: 0.09
  14561. }
  14562. },
  14563. back: {
  14564. height: math.unit(6, "feet"),
  14565. weight: math.unit(120, "lb"),
  14566. name: "Back",
  14567. image: {
  14568. source: "./media/characters/vance/back.svg",
  14569. extra: 2081 / 1994,
  14570. bottom: 0.014
  14571. }
  14572. },
  14573. hand: {
  14574. height: math.unit(0.88, "feet"),
  14575. name: "Hand",
  14576. image: {
  14577. source: "./media/characters/vance/hand.svg"
  14578. }
  14579. },
  14580. foot: {
  14581. height: math.unit(0.64, "feet"),
  14582. name: "Foot",
  14583. image: {
  14584. source: "./media/characters/vance/foot.svg"
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Small",
  14591. height: math.unit(90, "feet"),
  14592. default: true
  14593. },
  14594. {
  14595. name: "Macro",
  14596. height: math.unit(100, "meters")
  14597. },
  14598. {
  14599. name: "Megamacro",
  14600. height: math.unit(15, "miles")
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14606. {
  14607. front: {
  14608. height: math.unit(6, "feet"),
  14609. weight: math.unit(180, "lb"),
  14610. name: "Front",
  14611. image: {
  14612. source: "./media/characters/xochitl/front.svg",
  14613. extra: 2297 / 2261,
  14614. bottom: 0.065
  14615. }
  14616. },
  14617. back: {
  14618. height: math.unit(6, "feet"),
  14619. weight: math.unit(180, "lb"),
  14620. name: "Back",
  14621. image: {
  14622. source: "./media/characters/xochitl/back.svg",
  14623. extra: 2386 / 2354,
  14624. bottom: 0.01
  14625. }
  14626. },
  14627. foot: {
  14628. height: math.unit(6 / 5 * 1.15, "feet"),
  14629. weight: math.unit(150, "lb"),
  14630. name: "Foot",
  14631. image: {
  14632. source: "./media/characters/xochitl/foot.svg"
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Macro",
  14639. height: math.unit(80, "feet")
  14640. },
  14641. {
  14642. name: "Macro+",
  14643. height: math.unit(400, "feet"),
  14644. default: true
  14645. },
  14646. {
  14647. name: "Gigamacro",
  14648. height: math.unit(80000, "miles")
  14649. },
  14650. {
  14651. name: "Gigamacro+",
  14652. height: math.unit(400000, "miles")
  14653. },
  14654. {
  14655. name: "Teramacro",
  14656. height: math.unit(300, "AU")
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14662. {
  14663. front: {
  14664. height: math.unit(6, "feet"),
  14665. weight: math.unit(150, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/vincent/front.svg",
  14669. extra: 1130 / 1080,
  14670. bottom: 0.055
  14671. }
  14672. },
  14673. beak: {
  14674. height: math.unit(6 * 0.1, "feet"),
  14675. name: "Beak",
  14676. image: {
  14677. source: "./media/characters/vincent/beak.svg"
  14678. }
  14679. },
  14680. hand: {
  14681. height: math.unit(6 * 0.85, "feet"),
  14682. weight: math.unit(150, "lb"),
  14683. name: "Hand",
  14684. image: {
  14685. source: "./media/characters/vincent/hand.svg"
  14686. }
  14687. },
  14688. foot: {
  14689. height: math.unit(6 * 0.19, "feet"),
  14690. weight: math.unit(150, "lb"),
  14691. name: "Foot",
  14692. image: {
  14693. source: "./media/characters/vincent/foot.svg"
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Base",
  14700. height: math.unit(6 + 5 / 12, "feet"),
  14701. default: true
  14702. },
  14703. {
  14704. name: "Macro",
  14705. height: math.unit(300, "feet")
  14706. },
  14707. {
  14708. name: "Megamacro",
  14709. height: math.unit(2, "miles")
  14710. },
  14711. {
  14712. name: "Gigamacro",
  14713. height: math.unit(1000, "miles")
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(2, "meters"),
  14722. weight: math.unit(500, "kg"),
  14723. name: "Front",
  14724. image: {
  14725. source: "./media/characters/coatl/front.svg",
  14726. extra: 3948 / 3500,
  14727. bottom: 0.082
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Normal",
  14734. height: math.unit(4, "meters")
  14735. },
  14736. {
  14737. name: "Macro",
  14738. height: math.unit(100, "meters"),
  14739. default: true
  14740. },
  14741. {
  14742. name: "Macro+",
  14743. height: math.unit(300, "meters")
  14744. },
  14745. {
  14746. name: "Megamacro",
  14747. height: math.unit(3, "gigameters")
  14748. },
  14749. {
  14750. name: "Megamacro+",
  14751. height: math.unit(300, "terameters")
  14752. },
  14753. {
  14754. name: "Megamacro++",
  14755. height: math.unit(3, "lightyears")
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(6, "feet"),
  14764. weight: math.unit(50, "kg"),
  14765. name: "front",
  14766. image: {
  14767. source: "./media/characters/shiroryu/front.svg",
  14768. extra: 1990 / 1935
  14769. }
  14770. },
  14771. },
  14772. [
  14773. {
  14774. name: "Mortal Mingling",
  14775. height: math.unit(3, "meters")
  14776. },
  14777. {
  14778. name: "Kaiju-ish",
  14779. height: math.unit(250, "meters")
  14780. },
  14781. {
  14782. name: "Somewhat Godly",
  14783. height: math.unit(400, "km"),
  14784. default: true
  14785. },
  14786. {
  14787. name: "Planetary",
  14788. height: math.unit(300, "megameters")
  14789. },
  14790. {
  14791. name: "Galaxy-dwarfing",
  14792. height: math.unit(450, "kiloparsecs")
  14793. },
  14794. {
  14795. name: "Universe Eater",
  14796. height: math.unit(150, "gigaparsecs")
  14797. },
  14798. {
  14799. name: "Almost Immeasurable",
  14800. height: math.unit(1.3e266, "yottaparsecs")
  14801. },
  14802. ]
  14803. ))
  14804. characterMakers.push(() => makeCharacter(
  14805. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14806. {
  14807. front: {
  14808. height: math.unit(6, "feet"),
  14809. weight: math.unit(150, "lb"),
  14810. name: "Front",
  14811. image: {
  14812. source: "./media/characters/umeko/front.svg",
  14813. extra: 1,
  14814. bottom: 0.019
  14815. }
  14816. },
  14817. frontArmored: {
  14818. height: math.unit(6, "feet"),
  14819. weight: math.unit(150, "lb"),
  14820. name: "Front (Armored)",
  14821. image: {
  14822. source: "./media/characters/umeko/front-armored.svg",
  14823. extra: 1,
  14824. bottom: 0.021
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Macro",
  14831. height: math.unit(220, "feet"),
  14832. default: true
  14833. },
  14834. {
  14835. name: "Guardian Dragon",
  14836. height: math.unit(50, "miles")
  14837. },
  14838. {
  14839. name: "Cosmic",
  14840. height: math.unit(800000, "miles")
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(6, "feet"),
  14849. weight: math.unit(150, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/cassidy/front.svg",
  14853. extra: 810/808,
  14854. bottom: 41/851
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Canon Height",
  14861. height: math.unit(120, "feet"),
  14862. default: true
  14863. },
  14864. {
  14865. name: "Macro+",
  14866. height: math.unit(400, "feet")
  14867. },
  14868. {
  14869. name: "Macro++",
  14870. height: math.unit(4000, "feet")
  14871. },
  14872. {
  14873. name: "Megamacro",
  14874. height: math.unit(3, "miles")
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(6, "feet"),
  14883. weight: math.unit(150, "lb"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/isaac/front.svg",
  14887. extra: 896 / 815,
  14888. bottom: 0.11
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Human Size",
  14895. height: math.unit(8, "feet"),
  14896. default: true
  14897. },
  14898. {
  14899. name: "Macro",
  14900. height: math.unit(400, "feet")
  14901. },
  14902. {
  14903. name: "Megamacro",
  14904. height: math.unit(50, "miles")
  14905. },
  14906. {
  14907. name: "Canon Height",
  14908. height: math.unit(200, "AU")
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(72, "kg"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/sleekit/front.svg",
  14921. extra: 4693 / 4487,
  14922. bottom: 0.012
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Minimum Height",
  14929. height: math.unit(10, "meters")
  14930. },
  14931. {
  14932. name: "Smaller",
  14933. height: math.unit(25, "meters")
  14934. },
  14935. {
  14936. name: "Larger",
  14937. height: math.unit(38, "meters"),
  14938. default: true
  14939. },
  14940. {
  14941. name: "Maximum height",
  14942. height: math.unit(100, "meters")
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14948. {
  14949. front: {
  14950. height: math.unit(6, "feet"),
  14951. weight: math.unit(150, "lb"),
  14952. name: "Front",
  14953. image: {
  14954. source: "./media/characters/nillia/front.svg",
  14955. extra: 2195 / 2037,
  14956. bottom: 0.005
  14957. }
  14958. },
  14959. back: {
  14960. height: math.unit(6, "feet"),
  14961. weight: math.unit(150, "lb"),
  14962. name: "Back",
  14963. image: {
  14964. source: "./media/characters/nillia/back.svg",
  14965. extra: 2195 / 2037,
  14966. bottom: 0.005
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Canon Height",
  14973. height: math.unit(489, "feet"),
  14974. default: true
  14975. }
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14980. {
  14981. front: {
  14982. height: math.unit(6, "feet"),
  14983. weight: math.unit(150, "lb"),
  14984. name: "Front",
  14985. image: {
  14986. source: "./media/characters/mesmyriza/front.svg",
  14987. extra: 2067 / 1784,
  14988. bottom: 0.035
  14989. }
  14990. },
  14991. foot: {
  14992. height: math.unit(6 / (250 / 35), "feet"),
  14993. name: "Foot",
  14994. image: {
  14995. source: "./media/characters/mesmyriza/foot.svg"
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Macro",
  15002. height: math.unit(457, "meters"),
  15003. default: true
  15004. },
  15005. {
  15006. name: "Megamacro",
  15007. height: math.unit(8, "megameters")
  15008. },
  15009. ]
  15010. ))
  15011. characterMakers.push(() => makeCharacter(
  15012. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15013. {
  15014. front: {
  15015. height: math.unit(6, "feet"),
  15016. weight: math.unit(250, "lb"),
  15017. name: "Front",
  15018. image: {
  15019. source: "./media/characters/saudade/front.svg",
  15020. extra: 1172 / 1139,
  15021. bottom: 0.035
  15022. }
  15023. },
  15024. },
  15025. [
  15026. {
  15027. name: "Micro",
  15028. height: math.unit(3, "inches")
  15029. },
  15030. {
  15031. name: "Normal",
  15032. height: math.unit(6, "feet"),
  15033. default: true
  15034. },
  15035. {
  15036. name: "Macro",
  15037. height: math.unit(50, "feet")
  15038. },
  15039. {
  15040. name: "Megamacro",
  15041. height: math.unit(2800, "feet")
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(5 + 4 / 12, "feet"),
  15050. weight: math.unit(100, "lb"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/keireer/front.svg",
  15054. extra: 716 / 666,
  15055. bottom: 0.05
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Normal",
  15062. height: math.unit(5 + 4 / 12, "feet"),
  15063. default: true
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(5.5, "feet"),
  15072. weight: math.unit(90, "kg"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/mirja/front.svg",
  15076. extra: 1452/1262,
  15077. bottom: 67/1519
  15078. }
  15079. },
  15080. frontDressed: {
  15081. height: math.unit(5.5, "feet"),
  15082. weight: math.unit(90, "lb"),
  15083. name: "Front (Dressed)",
  15084. image: {
  15085. source: "./media/characters/mirja/dressed.svg",
  15086. extra: 1452/1262,
  15087. bottom: 67/1519
  15088. }
  15089. },
  15090. back: {
  15091. height: math.unit(6, "feet"),
  15092. weight: math.unit(90, "lb"),
  15093. name: "Back",
  15094. image: {
  15095. source: "./media/characters/mirja/back.svg",
  15096. extra: 1892/1795,
  15097. bottom: 48/1940
  15098. }
  15099. },
  15100. maw: {
  15101. height: math.unit(1.312, "feet"),
  15102. name: "Maw",
  15103. image: {
  15104. source: "./media/characters/mirja/maw.svg"
  15105. }
  15106. },
  15107. paw: {
  15108. height: math.unit(1.15, "feet"),
  15109. name: "Paw",
  15110. image: {
  15111. source: "./media/characters/mirja/paw.svg"
  15112. }
  15113. },
  15114. },
  15115. [
  15116. {
  15117. name: "\"Incognito\"",
  15118. height: math.unit(3, "meters")
  15119. },
  15120. {
  15121. name: "Strolling Size",
  15122. height: math.unit(15, "km")
  15123. },
  15124. {
  15125. name: "Larger Strolling Size",
  15126. height: math.unit(400, "km")
  15127. },
  15128. {
  15129. name: "Preferred Size",
  15130. height: math.unit(5000, "km"),
  15131. default: true
  15132. },
  15133. {
  15134. name: "True Size",
  15135. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15136. },
  15137. ]
  15138. ))
  15139. characterMakers.push(() => makeCharacter(
  15140. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15141. {
  15142. front: {
  15143. height: math.unit(15, "feet"),
  15144. weight: math.unit(880, "kg"),
  15145. name: "Front",
  15146. image: {
  15147. source: "./media/characters/nightraver/front.svg",
  15148. extra: 2444 / 2160,
  15149. bottom: 0.027
  15150. }
  15151. },
  15152. back: {
  15153. height: math.unit(15, "feet"),
  15154. weight: math.unit(880, "kg"),
  15155. name: "Back",
  15156. image: {
  15157. source: "./media/characters/nightraver/back.svg",
  15158. extra: 2309 / 2180,
  15159. bottom: 0.005
  15160. }
  15161. },
  15162. sole: {
  15163. height: math.unit(2.878, "feet"),
  15164. name: "Sole",
  15165. image: {
  15166. source: "./media/characters/nightraver/sole.svg"
  15167. }
  15168. },
  15169. foot: {
  15170. height: math.unit(2.285, "feet"),
  15171. name: "Foot",
  15172. image: {
  15173. source: "./media/characters/nightraver/foot.svg"
  15174. }
  15175. },
  15176. maw: {
  15177. height: math.unit(2.67, "feet"),
  15178. name: "Maw",
  15179. image: {
  15180. source: "./media/characters/nightraver/maw.svg"
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Micro",
  15187. height: math.unit(1, "cm")
  15188. },
  15189. {
  15190. name: "Normal",
  15191. height: math.unit(15, "feet"),
  15192. default: true
  15193. },
  15194. {
  15195. name: "Macro",
  15196. height: math.unit(300, "feet")
  15197. },
  15198. {
  15199. name: "Megamacro",
  15200. height: math.unit(300, "miles")
  15201. },
  15202. {
  15203. name: "Gigamacro",
  15204. height: math.unit(10000, "miles")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15210. {
  15211. side: {
  15212. height: math.unit(2, "inches"),
  15213. weight: math.unit(5, "grams"),
  15214. name: "Side",
  15215. image: {
  15216. source: "./media/characters/arc/side.svg"
  15217. }
  15218. },
  15219. },
  15220. [
  15221. {
  15222. name: "Micro",
  15223. height: math.unit(2, "inches"),
  15224. default: true
  15225. },
  15226. ]
  15227. ))
  15228. characterMakers.push(() => makeCharacter(
  15229. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15230. {
  15231. front: {
  15232. height: math.unit(1.1938, "meters"),
  15233. weight: math.unit(54, "kg"),
  15234. name: "Front",
  15235. image: {
  15236. source: "./media/characters/nebula-shahar/front.svg",
  15237. extra: 1642 / 1436,
  15238. bottom: 0.06
  15239. }
  15240. },
  15241. },
  15242. [
  15243. {
  15244. name: "Megamicro",
  15245. height: math.unit(0.3, "mm")
  15246. },
  15247. {
  15248. name: "Micro",
  15249. height: math.unit(3, "cm")
  15250. },
  15251. {
  15252. name: "Normal",
  15253. height: math.unit(138, "cm"),
  15254. default: true
  15255. },
  15256. {
  15257. name: "Macro",
  15258. height: math.unit(30, "m")
  15259. },
  15260. ]
  15261. ))
  15262. characterMakers.push(() => makeCharacter(
  15263. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15264. {
  15265. front: {
  15266. height: math.unit(5.24, "feet"),
  15267. weight: math.unit(150, "lb"),
  15268. name: "Front",
  15269. image: {
  15270. source: "./media/characters/shayla/front.svg",
  15271. extra: 1512 / 1414,
  15272. bottom: 0.01
  15273. }
  15274. },
  15275. back: {
  15276. height: math.unit(5.24, "feet"),
  15277. weight: math.unit(150, "lb"),
  15278. name: "Back",
  15279. image: {
  15280. source: "./media/characters/shayla/back.svg",
  15281. extra: 1512 / 1414
  15282. }
  15283. },
  15284. hand: {
  15285. height: math.unit(0.7781496062992126, "feet"),
  15286. name: "Hand",
  15287. image: {
  15288. source: "./media/characters/shayla/hand.svg"
  15289. }
  15290. },
  15291. foot: {
  15292. height: math.unit(1.4206036745406823, "feet"),
  15293. name: "Foot",
  15294. image: {
  15295. source: "./media/characters/shayla/foot.svg"
  15296. }
  15297. },
  15298. },
  15299. [
  15300. {
  15301. name: "Micro",
  15302. height: math.unit(0.32, "feet")
  15303. },
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(5.24, "feet"),
  15307. default: true
  15308. },
  15309. {
  15310. name: "Macro",
  15311. height: math.unit(492.12, "feet")
  15312. },
  15313. {
  15314. name: "Megamacro",
  15315. height: math.unit(186.41, "miles")
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(2.2, "m"),
  15324. weight: math.unit(120, "kg"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/pia-jr/front.svg",
  15328. extra: 1000 / 970,
  15329. bottom: 0.035
  15330. }
  15331. },
  15332. hand: {
  15333. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15334. name: "Hand",
  15335. image: {
  15336. source: "./media/characters/pia-jr/hand.svg"
  15337. }
  15338. },
  15339. paw: {
  15340. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15341. name: "Paw",
  15342. image: {
  15343. source: "./media/characters/pia-jr/paw.svg"
  15344. }
  15345. },
  15346. },
  15347. [
  15348. {
  15349. name: "Micro",
  15350. height: math.unit(1.2, "cm")
  15351. },
  15352. {
  15353. name: "Normal",
  15354. height: math.unit(2.2, "m"),
  15355. default: true
  15356. },
  15357. {
  15358. name: "Macro",
  15359. height: math.unit(180, "m")
  15360. },
  15361. {
  15362. name: "Megamacro",
  15363. height: math.unit(420, "km")
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(2, "m"),
  15372. weight: math.unit(115, "kg"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/pia-sr/front.svg",
  15376. extra: 760 / 730,
  15377. bottom: 0.015
  15378. }
  15379. },
  15380. back: {
  15381. height: math.unit(2, "m"),
  15382. weight: math.unit(115, "kg"),
  15383. name: "Back",
  15384. image: {
  15385. source: "./media/characters/pia-sr/back.svg",
  15386. extra: 760 / 730,
  15387. bottom: 0.01
  15388. }
  15389. },
  15390. hand: {
  15391. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15392. name: "Hand",
  15393. image: {
  15394. source: "./media/characters/pia-sr/hand.svg"
  15395. }
  15396. },
  15397. foot: {
  15398. height: math.unit(1.83, "feet"),
  15399. name: "Foot",
  15400. image: {
  15401. source: "./media/characters/pia-sr/foot.svg"
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Micro",
  15408. height: math.unit(88, "mm")
  15409. },
  15410. {
  15411. name: "Normal",
  15412. height: math.unit(2, "m"),
  15413. default: true
  15414. },
  15415. {
  15416. name: "Macro",
  15417. height: math.unit(200, "m")
  15418. },
  15419. {
  15420. name: "Megamacro",
  15421. height: math.unit(420, "km")
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(8 + 2 / 12, "feet"),
  15430. weight: math.unit(300, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/kibibyte/front.svg",
  15434. extra: 2221 / 2098,
  15435. bottom: 0.04
  15436. }
  15437. },
  15438. },
  15439. [
  15440. {
  15441. name: "Normal",
  15442. height: math.unit(8 + 2 / 12, "feet"),
  15443. default: true
  15444. },
  15445. {
  15446. name: "Socialable Macro",
  15447. height: math.unit(50, "feet")
  15448. },
  15449. {
  15450. name: "Macro",
  15451. height: math.unit(300, "feet")
  15452. },
  15453. {
  15454. name: "Megamacro",
  15455. height: math.unit(500, "miles")
  15456. },
  15457. ]
  15458. ))
  15459. characterMakers.push(() => makeCharacter(
  15460. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15461. {
  15462. front: {
  15463. height: math.unit(6, "feet"),
  15464. weight: math.unit(150, "lb"),
  15465. name: "Front",
  15466. image: {
  15467. source: "./media/characters/felix/front.svg",
  15468. extra: 762 / 722,
  15469. bottom: 0.02
  15470. }
  15471. },
  15472. frontClothed: {
  15473. height: math.unit(6, "feet"),
  15474. weight: math.unit(150, "lb"),
  15475. name: "Front (Clothed)",
  15476. image: {
  15477. source: "./media/characters/felix/front-clothed.svg",
  15478. extra: 762 / 722,
  15479. bottom: 0.02
  15480. }
  15481. },
  15482. },
  15483. [
  15484. {
  15485. name: "Normal",
  15486. height: math.unit(6 + 8 / 12, "feet"),
  15487. default: true
  15488. },
  15489. {
  15490. name: "Macro",
  15491. height: math.unit(2600, "feet")
  15492. },
  15493. {
  15494. name: "Megamacro",
  15495. height: math.unit(450, "miles")
  15496. },
  15497. ]
  15498. ))
  15499. characterMakers.push(() => makeCharacter(
  15500. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15501. {
  15502. front: {
  15503. height: math.unit(6 + 1 / 12, "feet"),
  15504. weight: math.unit(250, "lb"),
  15505. name: "Front",
  15506. image: {
  15507. source: "./media/characters/tobo/front.svg",
  15508. extra: 608 / 586,
  15509. bottom: 0.023
  15510. }
  15511. },
  15512. back: {
  15513. height: math.unit(6 + 1 / 12, "feet"),
  15514. weight: math.unit(250, "lb"),
  15515. name: "Back",
  15516. image: {
  15517. source: "./media/characters/tobo/back.svg",
  15518. extra: 608 / 586
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Nano",
  15525. height: math.unit(2, "nm")
  15526. },
  15527. {
  15528. name: "Megamicro",
  15529. height: math.unit(0.1, "mm")
  15530. },
  15531. {
  15532. name: "Micro",
  15533. height: math.unit(1, "inch"),
  15534. default: true
  15535. },
  15536. {
  15537. name: "Human-sized",
  15538. height: math.unit(6 + 1 / 12, "feet")
  15539. },
  15540. {
  15541. name: "Macro",
  15542. height: math.unit(250, "feet")
  15543. },
  15544. {
  15545. name: "Megamacro",
  15546. height: math.unit(75, "miles")
  15547. },
  15548. {
  15549. name: "Texas-sized",
  15550. height: math.unit(750, "miles")
  15551. },
  15552. {
  15553. name: "Teramacro",
  15554. height: math.unit(50000, "miles")
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(6, "feet"),
  15563. weight: math.unit(269, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/danny-kapowsky/front.svg",
  15567. extra: 766 / 736,
  15568. bottom: 0.044
  15569. }
  15570. },
  15571. back: {
  15572. height: math.unit(6, "feet"),
  15573. weight: math.unit(269, "lb"),
  15574. name: "Back",
  15575. image: {
  15576. source: "./media/characters/danny-kapowsky/back.svg",
  15577. extra: 797 / 760,
  15578. bottom: 0.025
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Macro",
  15585. height: math.unit(150, "feet"),
  15586. default: true
  15587. },
  15588. {
  15589. name: "Macro+",
  15590. height: math.unit(200, "feet")
  15591. },
  15592. {
  15593. name: "Macro++",
  15594. height: math.unit(300, "feet")
  15595. },
  15596. {
  15597. name: "Macro+++",
  15598. height: math.unit(400, "feet")
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15604. {
  15605. side: {
  15606. height: math.unit(6, "feet"),
  15607. weight: math.unit(170, "lb"),
  15608. name: "Side",
  15609. image: {
  15610. source: "./media/characters/finn/side.svg",
  15611. extra: 1953 / 1807,
  15612. bottom: 0.057
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Megamacro",
  15619. height: math.unit(14445, "feet"),
  15620. default: true
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(5 + 6 / 12, "feet"),
  15629. weight: math.unit(125, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/roy/front.svg",
  15633. extra: 1,
  15634. bottom: 0.11
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Micro",
  15641. height: math.unit(3, "inches"),
  15642. default: true
  15643. },
  15644. {
  15645. name: "Normal",
  15646. height: math.unit(5 + 6 / 12, "feet")
  15647. },
  15648. {
  15649. name: "Lesser Macro",
  15650. height: math.unit(60, "feet")
  15651. },
  15652. {
  15653. name: "Greater Macro",
  15654. height: math.unit(120, "feet")
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15660. {
  15661. front: {
  15662. height: math.unit(6, "feet"),
  15663. weight: math.unit(100, "lb"),
  15664. name: "Front",
  15665. image: {
  15666. source: "./media/characters/aevsivs/front.svg",
  15667. extra: 1,
  15668. bottom: 0.03
  15669. }
  15670. },
  15671. back: {
  15672. height: math.unit(6, "feet"),
  15673. weight: math.unit(100, "lb"),
  15674. name: "Back",
  15675. image: {
  15676. source: "./media/characters/aevsivs/back.svg"
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Micro",
  15683. height: math.unit(2, "inches"),
  15684. default: true
  15685. },
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(5, "feet")
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15694. {
  15695. front: {
  15696. height: math.unit(5 + 7 / 12, "feet"),
  15697. weight: math.unit(159, "lb"),
  15698. name: "Front",
  15699. image: {
  15700. source: "./media/characters/hildegard/front.svg",
  15701. extra: 289 / 269,
  15702. bottom: 7.63 / 297.8
  15703. }
  15704. },
  15705. back: {
  15706. height: math.unit(5 + 7 / 12, "feet"),
  15707. weight: math.unit(159, "lb"),
  15708. name: "Back",
  15709. image: {
  15710. source: "./media/characters/hildegard/back.svg",
  15711. extra: 280 / 260,
  15712. bottom: 2.3 / 282
  15713. }
  15714. },
  15715. },
  15716. [
  15717. {
  15718. name: "Normal",
  15719. height: math.unit(5 + 7 / 12, "feet"),
  15720. default: true
  15721. },
  15722. ]
  15723. ))
  15724. characterMakers.push(() => makeCharacter(
  15725. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15726. {
  15727. bernard: {
  15728. height: math.unit(2 + 7 / 12, "feet"),
  15729. weight: math.unit(66, "lb"),
  15730. name: "Bernard",
  15731. rename: true,
  15732. image: {
  15733. source: "./media/characters/bernard-wilder/bernard.svg",
  15734. extra: 192 / 128,
  15735. bottom: 0.05
  15736. }
  15737. },
  15738. wilder: {
  15739. height: math.unit(5 + 8 / 12, "feet"),
  15740. weight: math.unit(143, "lb"),
  15741. name: "Wilder",
  15742. rename: true,
  15743. image: {
  15744. source: "./media/characters/bernard-wilder/wilder.svg",
  15745. extra: 361 / 312,
  15746. bottom: 0.02
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(2 + 7 / 12, "feet"),
  15754. default: true
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15760. {
  15761. anthro: {
  15762. height: math.unit(6 + 1 / 12, "feet"),
  15763. weight: math.unit(155, "lb"),
  15764. name: "Anthro",
  15765. image: {
  15766. source: "./media/characters/hearth/anthro.svg",
  15767. extra: 1178/1136,
  15768. bottom: 28/1206
  15769. }
  15770. },
  15771. feral: {
  15772. height: math.unit(3.78, "feet"),
  15773. weight: math.unit(35, "kg"),
  15774. name: "Feral",
  15775. image: {
  15776. source: "./media/characters/hearth/feral.svg",
  15777. extra: 153 / 135,
  15778. bottom: 0.03
  15779. }
  15780. },
  15781. },
  15782. [
  15783. {
  15784. name: "Normal",
  15785. height: math.unit(6 + 1 / 12, "feet"),
  15786. default: true
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15792. {
  15793. front: {
  15794. height: math.unit(6, "feet"),
  15795. weight: math.unit(182, "lb"),
  15796. name: "Front",
  15797. image: {
  15798. source: "./media/characters/ingrid/front.svg",
  15799. extra: 294 / 268,
  15800. bottom: 0.027
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(6, "feet"),
  15808. default: true
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15814. {
  15815. eevee: {
  15816. height: math.unit(2 + 10 / 12, "feet"),
  15817. weight: math.unit(86, "lb"),
  15818. name: "Malgam",
  15819. image: {
  15820. source: "./media/characters/malgam/eevee.svg",
  15821. extra: 952/784,
  15822. bottom: 38/990
  15823. }
  15824. },
  15825. sylveon: {
  15826. height: math.unit(4, "feet"),
  15827. weight: math.unit(101, "lb"),
  15828. name: "Future Malgam",
  15829. rename: true,
  15830. image: {
  15831. source: "./media/characters/malgam/sylveon.svg",
  15832. extra: 371 / 325,
  15833. bottom: 0.015
  15834. }
  15835. },
  15836. gigantamax: {
  15837. height: math.unit(50, "feet"),
  15838. name: "Gigantamax Malgam",
  15839. rename: true,
  15840. image: {
  15841. source: "./media/characters/malgam/gigantamax.svg"
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Normal",
  15848. height: math.unit(2 + 10 / 12, "feet"),
  15849. default: true
  15850. },
  15851. ]
  15852. ))
  15853. characterMakers.push(() => makeCharacter(
  15854. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15855. {
  15856. front: {
  15857. height: math.unit(5 + 11 / 12, "feet"),
  15858. weight: math.unit(188, "lb"),
  15859. name: "Front",
  15860. image: {
  15861. source: "./media/characters/fleur/front.svg",
  15862. extra: 309 / 283,
  15863. bottom: 0.007
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Normal",
  15870. height: math.unit(5 + 11 / 12, "feet"),
  15871. default: true
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(5 + 4 / 12, "feet"),
  15880. weight: math.unit(122, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/jude/front.svg",
  15884. extra: 288 / 273,
  15885. bottom: 0.03
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Normal",
  15892. height: math.unit(5 + 4 / 12, "feet"),
  15893. default: true
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15899. {
  15900. front: {
  15901. height: math.unit(5 + 11 / 12, "feet"),
  15902. weight: math.unit(190, "lb"),
  15903. name: "Front",
  15904. image: {
  15905. source: "./media/characters/seara/front.svg",
  15906. extra: 1,
  15907. bottom: 0.05
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(5 + 11 / 12, "feet"),
  15915. default: true
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15921. {
  15922. front: {
  15923. height: math.unit(16 + 5 / 12, "feet"),
  15924. weight: math.unit(524, "lb"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/caspian-lugia/front.svg",
  15928. extra: 1,
  15929. bottom: 0.04
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(16 + 5 / 12, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15943. {
  15944. front: {
  15945. height: math.unit(5 + 7 / 12, "feet"),
  15946. weight: math.unit(170, "lb"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/mika/front.svg",
  15950. extra: 1,
  15951. bottom: 0.016
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(5 + 7 / 12, "feet"),
  15959. default: true
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15965. {
  15966. front: {
  15967. height: math.unit(6 + 2 / 12, "feet"),
  15968. weight: math.unit(268, "lb"),
  15969. name: "Front",
  15970. image: {
  15971. source: "./media/characters/sol/front.svg",
  15972. extra: 247 / 231,
  15973. bottom: 0.05
  15974. }
  15975. },
  15976. },
  15977. [
  15978. {
  15979. name: "Normal",
  15980. height: math.unit(6 + 2 / 12, "feet"),
  15981. default: true
  15982. },
  15983. ]
  15984. ))
  15985. characterMakers.push(() => makeCharacter(
  15986. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15987. {
  15988. buizel: {
  15989. height: math.unit(2 + 5 / 12, "feet"),
  15990. weight: math.unit(87, "lb"),
  15991. name: "Front",
  15992. image: {
  15993. source: "./media/characters/umiko/buizel.svg",
  15994. extra: 172 / 157,
  15995. bottom: 0.01
  15996. },
  15997. form: "buizel",
  15998. default: true
  15999. },
  16000. floatzel: {
  16001. height: math.unit(5 + 9 / 12, "feet"),
  16002. weight: math.unit(250, "lb"),
  16003. name: "Front",
  16004. image: {
  16005. source: "./media/characters/umiko/floatzel.svg",
  16006. extra: 1076/1006,
  16007. bottom: 15/1091
  16008. },
  16009. form: "floatzel",
  16010. default: true
  16011. },
  16012. },
  16013. [
  16014. {
  16015. name: "Normal",
  16016. height: math.unit(2 + 5 / 12, "feet"),
  16017. form: "buizel",
  16018. default: true
  16019. },
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(5 + 9 / 12, "feet"),
  16023. form: "floatzel",
  16024. default: true
  16025. },
  16026. ],
  16027. {
  16028. "buizel": {
  16029. name: "Buizel"
  16030. },
  16031. "floatzel": {
  16032. name: "Floatzel",
  16033. default: true
  16034. }
  16035. }
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(6 + 2 / 12, "feet"),
  16042. weight: math.unit(146, "lb"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/iliac/front.svg",
  16046. extra: 389 / 365,
  16047. bottom: 0.035
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(6 + 2 / 12, "feet"),
  16055. default: true
  16056. },
  16057. ]
  16058. ))
  16059. characterMakers.push(() => makeCharacter(
  16060. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16061. {
  16062. front: {
  16063. height: math.unit(6, "feet"),
  16064. weight: math.unit(170, "lb"),
  16065. name: "Front",
  16066. image: {
  16067. source: "./media/characters/topaz/front.svg",
  16068. extra: 317 / 303,
  16069. bottom: 0.055
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(6, "feet"),
  16077. default: true
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16083. {
  16084. front: {
  16085. height: math.unit(5 + 11 / 12, "feet"),
  16086. weight: math.unit(144, "lb"),
  16087. name: "Front",
  16088. image: {
  16089. source: "./media/characters/gabriel/front.svg",
  16090. extra: 285 / 262,
  16091. bottom: 0.004
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Normal",
  16098. height: math.unit(5 + 11 / 12, "feet"),
  16099. default: true
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16105. {
  16106. side: {
  16107. height: math.unit(6 + 5 / 12, "feet"),
  16108. weight: math.unit(300, "lb"),
  16109. name: "Side",
  16110. image: {
  16111. source: "./media/characters/tempest-suicune/side.svg",
  16112. extra: 195 / 154,
  16113. bottom: 0.04
  16114. }
  16115. },
  16116. },
  16117. [
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(6 + 5 / 12, "feet"),
  16121. default: true
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16127. {
  16128. front: {
  16129. height: math.unit(7 + 2 / 12, "feet"),
  16130. weight: math.unit(322, "lb"),
  16131. name: "Front",
  16132. image: {
  16133. source: "./media/characters/vulcan/front.svg",
  16134. extra: 154 / 147,
  16135. bottom: 0.04
  16136. }
  16137. },
  16138. },
  16139. [
  16140. {
  16141. name: "Normal",
  16142. height: math.unit(7 + 2 / 12, "feet"),
  16143. default: true
  16144. },
  16145. ]
  16146. ))
  16147. characterMakers.push(() => makeCharacter(
  16148. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16149. {
  16150. front: {
  16151. height: math.unit(5 + 10 / 12, "feet"),
  16152. weight: math.unit(264, "lb"),
  16153. name: "Front",
  16154. image: {
  16155. source: "./media/characters/gault/front.svg",
  16156. extra: 161 / 140,
  16157. bottom: 0.028
  16158. }
  16159. },
  16160. },
  16161. [
  16162. {
  16163. name: "Normal",
  16164. height: math.unit(5 + 10 / 12, "feet"),
  16165. default: true
  16166. },
  16167. ]
  16168. ))
  16169. characterMakers.push(() => makeCharacter(
  16170. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16171. {
  16172. front: {
  16173. height: math.unit(6, "feet"),
  16174. weight: math.unit(150, "lb"),
  16175. name: "Front",
  16176. image: {
  16177. source: "./media/characters/shard/front.svg",
  16178. extra: 273 / 238,
  16179. bottom: 0.02
  16180. }
  16181. },
  16182. },
  16183. [
  16184. {
  16185. name: "Normal",
  16186. height: math.unit(3 + 6 / 12, "feet"),
  16187. default: true
  16188. },
  16189. ]
  16190. ))
  16191. characterMakers.push(() => makeCharacter(
  16192. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16193. {
  16194. front: {
  16195. height: math.unit(5 + 11 / 12, "feet"),
  16196. weight: math.unit(146, "lb"),
  16197. name: "Front",
  16198. image: {
  16199. source: "./media/characters/ashe/front.svg",
  16200. extra: 400 / 373,
  16201. bottom: 0.01
  16202. }
  16203. },
  16204. },
  16205. [
  16206. {
  16207. name: "Normal",
  16208. height: math.unit(5 + 11 / 12, "feet"),
  16209. default: true
  16210. },
  16211. ]
  16212. ))
  16213. characterMakers.push(() => makeCharacter(
  16214. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16215. {
  16216. front: {
  16217. height: math.unit(5 + 5 / 12, "feet"),
  16218. weight: math.unit(135, "lb"),
  16219. name: "Front",
  16220. image: {
  16221. source: "./media/characters/beatrix/front.svg",
  16222. extra: 392 / 379,
  16223. bottom: 0.01
  16224. }
  16225. },
  16226. },
  16227. [
  16228. {
  16229. name: "Normal",
  16230. height: math.unit(6, "feet"),
  16231. default: true
  16232. },
  16233. ]
  16234. ))
  16235. characterMakers.push(() => makeCharacter(
  16236. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16237. {
  16238. front: {
  16239. height: math.unit(6 + 2/12, "feet"),
  16240. weight: math.unit(135, "lb"),
  16241. name: "Front",
  16242. image: {
  16243. source: "./media/characters/ignatius/front.svg",
  16244. extra: 1380/1259,
  16245. bottom: 27/1407
  16246. }
  16247. },
  16248. },
  16249. [
  16250. {
  16251. name: "Normal",
  16252. height: math.unit(6 + 2/12, "feet"),
  16253. default: true
  16254. },
  16255. ]
  16256. ))
  16257. characterMakers.push(() => makeCharacter(
  16258. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16259. {
  16260. front: {
  16261. height: math.unit(6 + 2 / 12, "feet"),
  16262. weight: math.unit(138, "lb"),
  16263. name: "Front",
  16264. image: {
  16265. source: "./media/characters/mei-li/front.svg",
  16266. extra: 237 / 229,
  16267. bottom: 0.03
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Normal",
  16274. height: math.unit(6 + 2 / 12, "feet"),
  16275. default: true
  16276. },
  16277. ]
  16278. ))
  16279. characterMakers.push(() => makeCharacter(
  16280. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16281. {
  16282. front: {
  16283. height: math.unit(2 + 4 / 12, "feet"),
  16284. weight: math.unit(62, "lb"),
  16285. name: "Front",
  16286. image: {
  16287. source: "./media/characters/puru/front.svg",
  16288. extra: 206 / 149,
  16289. bottom: 0.06
  16290. }
  16291. },
  16292. },
  16293. [
  16294. {
  16295. name: "Normal",
  16296. height: math.unit(2 + 4 / 12, "feet"),
  16297. default: true
  16298. },
  16299. ]
  16300. ))
  16301. characterMakers.push(() => makeCharacter(
  16302. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16303. {
  16304. anthro: {
  16305. height: math.unit(5 + 8/12, "feet"),
  16306. weight: math.unit(200, "lb"),
  16307. energyNeed: math.unit(2000, "kcal"),
  16308. name: "Anthro",
  16309. image: {
  16310. source: "./media/characters/kee/anthro.svg",
  16311. extra: 3251/3184,
  16312. bottom: 250/3501
  16313. }
  16314. },
  16315. taur: {
  16316. height: math.unit(11, "feet"),
  16317. weight: math.unit(500, "lb"),
  16318. energyNeed: math.unit(5000, "kcal"),
  16319. name: "Taur",
  16320. image: {
  16321. source: "./media/characters/kee/taur.svg",
  16322. extra: 1362/1320,
  16323. bottom: 83/1445
  16324. }
  16325. },
  16326. },
  16327. [
  16328. {
  16329. name: "Normal",
  16330. height: math.unit(5 + 8/12, "feet"),
  16331. default: true
  16332. },
  16333. {
  16334. name: "Macro",
  16335. height: math.unit(35, "feet")
  16336. },
  16337. ]
  16338. ))
  16339. characterMakers.push(() => makeCharacter(
  16340. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16341. {
  16342. anthro: {
  16343. height: math.unit(7, "feet"),
  16344. weight: math.unit(190, "lb"),
  16345. name: "Anthro",
  16346. image: {
  16347. source: "./media/characters/cobalt-dracha/anthro.svg",
  16348. extra: 231 / 225,
  16349. bottom: 0.04
  16350. }
  16351. },
  16352. feral: {
  16353. height: math.unit(9 + 7 / 12, "feet"),
  16354. weight: math.unit(294, "lb"),
  16355. name: "Feral",
  16356. image: {
  16357. source: "./media/characters/cobalt-dracha/feral.svg",
  16358. extra: 692 / 633,
  16359. bottom: 0.05
  16360. }
  16361. },
  16362. },
  16363. [
  16364. {
  16365. name: "Normal",
  16366. height: math.unit(7, "feet"),
  16367. default: true
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16373. {
  16374. fallen: {
  16375. height: math.unit(11 + 8 / 12, "feet"),
  16376. weight: math.unit(485, "lb"),
  16377. name: "Java (Fallen)",
  16378. rename: true,
  16379. image: {
  16380. source: "./media/characters/java/fallen.svg",
  16381. extra: 226 / 208,
  16382. bottom: 0.005
  16383. }
  16384. },
  16385. godkin: {
  16386. height: math.unit(10 + 6 / 12, "feet"),
  16387. weight: math.unit(328, "lb"),
  16388. name: "Java (Godkin)",
  16389. rename: true,
  16390. image: {
  16391. source: "./media/characters/java/godkin.svg",
  16392. extra: 1104/1068,
  16393. bottom: 36/1140
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(11 + 8 / 12, "feet"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(5 + 9 / 12, "feet"),
  16410. weight: math.unit(170, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/purna/front.svg",
  16414. extra: 239 / 229,
  16415. bottom: 0.01
  16416. }
  16417. },
  16418. },
  16419. [
  16420. {
  16421. name: "Normal",
  16422. height: math.unit(5 + 9 / 12, "feet"),
  16423. default: true
  16424. },
  16425. ]
  16426. ))
  16427. characterMakers.push(() => makeCharacter(
  16428. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16429. {
  16430. front: {
  16431. height: math.unit(5 + 9 / 12, "feet"),
  16432. weight: math.unit(142, "lb"),
  16433. name: "Front",
  16434. image: {
  16435. source: "./media/characters/kuva/front.svg",
  16436. extra: 281 / 271,
  16437. bottom: 0.006
  16438. }
  16439. },
  16440. },
  16441. [
  16442. {
  16443. name: "Normal",
  16444. height: math.unit(5 + 9 / 12, "feet"),
  16445. default: true
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16451. {
  16452. anthro: {
  16453. height: math.unit(9 + 2 / 12, "feet"),
  16454. weight: math.unit(270, "lb"),
  16455. name: "Anthro",
  16456. image: {
  16457. source: "./media/characters/embra/anthro.svg",
  16458. extra: 200 / 187,
  16459. bottom: 0.02
  16460. }
  16461. },
  16462. feral: {
  16463. height: math.unit(18 + 8 / 12, "feet"),
  16464. weight: math.unit(576, "lb"),
  16465. name: "Feral",
  16466. image: {
  16467. source: "./media/characters/embra/feral.svg",
  16468. extra: 152 / 137,
  16469. bottom: 0.037
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(9 + 2 / 12, "feet"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16483. {
  16484. anthro: {
  16485. height: math.unit(10 + 9 / 12, "feet"),
  16486. weight: math.unit(224, "lb"),
  16487. name: "Anthro",
  16488. image: {
  16489. source: "./media/characters/grottos/anthro.svg",
  16490. extra: 350 / 332,
  16491. bottom: 0.045
  16492. }
  16493. },
  16494. feral: {
  16495. height: math.unit(20 + 7 / 12, "feet"),
  16496. weight: math.unit(629, "lb"),
  16497. name: "Feral",
  16498. image: {
  16499. source: "./media/characters/grottos/feral.svg",
  16500. extra: 207 / 190,
  16501. bottom: 0.05
  16502. }
  16503. },
  16504. },
  16505. [
  16506. {
  16507. name: "Normal",
  16508. height: math.unit(10 + 9 / 12, "feet"),
  16509. default: true
  16510. },
  16511. ]
  16512. ))
  16513. characterMakers.push(() => makeCharacter(
  16514. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16515. {
  16516. anthro: {
  16517. height: math.unit(9 + 6 / 12, "feet"),
  16518. weight: math.unit(298, "lb"),
  16519. name: "Anthro",
  16520. image: {
  16521. source: "./media/characters/frifna/anthro.svg",
  16522. extra: 282 / 269,
  16523. bottom: 0.015
  16524. }
  16525. },
  16526. feral: {
  16527. height: math.unit(16 + 2 / 12, "feet"),
  16528. weight: math.unit(624, "lb"),
  16529. name: "Feral",
  16530. image: {
  16531. source: "./media/characters/frifna/feral.svg"
  16532. }
  16533. },
  16534. },
  16535. [
  16536. {
  16537. name: "Normal",
  16538. height: math.unit(9 + 6 / 12, "feet"),
  16539. default: true
  16540. },
  16541. ]
  16542. ))
  16543. characterMakers.push(() => makeCharacter(
  16544. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16545. {
  16546. front: {
  16547. height: math.unit(6 + 2 / 12, "feet"),
  16548. weight: math.unit(168, "lb"),
  16549. name: "Front",
  16550. image: {
  16551. source: "./media/characters/elise/front.svg",
  16552. extra: 276 / 271
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(6 + 2 / 12, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16566. {
  16567. front: {
  16568. height: math.unit(5 + 10 / 12, "feet"),
  16569. weight: math.unit(210, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/glade/front.svg",
  16573. extra: 258 / 247,
  16574. bottom: 0.008
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(5 + 10 / 12, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16588. {
  16589. front: {
  16590. height: math.unit(5 + 10 / 12, "feet"),
  16591. weight: math.unit(129, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/rina/front.svg",
  16595. extra: 266 / 255,
  16596. bottom: 0.005
  16597. }
  16598. },
  16599. },
  16600. [
  16601. {
  16602. name: "Normal",
  16603. height: math.unit(5 + 10 / 12, "feet"),
  16604. default: true
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16610. {
  16611. front: {
  16612. height: math.unit(6 + 1 / 12, "feet"),
  16613. weight: math.unit(192, "lb"),
  16614. name: "Front",
  16615. image: {
  16616. source: "./media/characters/veronica/front.svg",
  16617. extra: 319 / 309,
  16618. bottom: 0.005
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(6 + 1 / 12, "feet"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(9 + 3 / 12, "feet"),
  16635. weight: math.unit(1100, "lb"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/braxton/front.svg",
  16639. extra: 1057 / 984,
  16640. bottom: 0.05
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Normal",
  16647. height: math.unit(9 + 3 / 12, "feet")
  16648. },
  16649. {
  16650. name: "Giant",
  16651. height: math.unit(300, "feet"),
  16652. default: true
  16653. },
  16654. {
  16655. name: "Macro",
  16656. height: math.unit(700, "feet")
  16657. },
  16658. {
  16659. name: "Megamacro",
  16660. height: math.unit(6000, "feet")
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16666. {
  16667. front: {
  16668. height: math.unit(6 + 7 / 12, "feet"),
  16669. weight: math.unit(150, "lb"),
  16670. name: "Front",
  16671. image: {
  16672. source: "./media/characters/blue-feyonics/front.svg",
  16673. extra: 1403 / 1306,
  16674. bottom: 0.047
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(6 + 7 / 12, "feet"),
  16682. default: true
  16683. },
  16684. ]
  16685. ))
  16686. characterMakers.push(() => makeCharacter(
  16687. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16688. {
  16689. front: {
  16690. height: math.unit(1.8, "meters"),
  16691. weight: math.unit(60, "kg"),
  16692. name: "Front",
  16693. image: {
  16694. source: "./media/characters/maxwell/front.svg",
  16695. extra: 2060 / 1873
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Micro",
  16702. height: math.unit(1, "mm")
  16703. },
  16704. {
  16705. name: "Normal",
  16706. height: math.unit(1.8, "meter"),
  16707. default: true
  16708. },
  16709. {
  16710. name: "Macro",
  16711. height: math.unit(30, "meters")
  16712. },
  16713. {
  16714. name: "Megamacro",
  16715. height: math.unit(10, "km")
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(6, "feet"),
  16724. weight: math.unit(150, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/jack/front.svg",
  16728. extra: 1754 / 1640,
  16729. bottom: 0.01
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(80000, "feet"),
  16737. default: true
  16738. },
  16739. {
  16740. name: "Max size",
  16741. height: math.unit(10, "lightyears")
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16747. {
  16748. urban: {
  16749. height: math.unit(5, "feet"),
  16750. weight: math.unit(240, "lb"),
  16751. name: "Urban",
  16752. image: {
  16753. source: "./media/characters/cafat/urban.svg",
  16754. extra: 1223/1126,
  16755. bottom: 205/1428
  16756. }
  16757. },
  16758. summer: {
  16759. height: math.unit(5, "feet"),
  16760. weight: math.unit(240, "lb"),
  16761. name: "Summer",
  16762. image: {
  16763. source: "./media/characters/cafat/summer.svg",
  16764. extra: 1223/1126,
  16765. bottom: 205/1428
  16766. }
  16767. },
  16768. winter: {
  16769. height: math.unit(5, "feet"),
  16770. weight: math.unit(240, "lb"),
  16771. name: "Winter",
  16772. image: {
  16773. source: "./media/characters/cafat/winter.svg",
  16774. extra: 1223/1126,
  16775. bottom: 205/1428
  16776. }
  16777. },
  16778. lingerie: {
  16779. height: math.unit(5, "feet"),
  16780. weight: math.unit(240, "lb"),
  16781. name: "Lingerie",
  16782. image: {
  16783. source: "./media/characters/cafat/lingerie.svg",
  16784. extra: 1223/1126,
  16785. bottom: 205/1428
  16786. }
  16787. },
  16788. upright: {
  16789. height: math.unit(6.3, "feet"),
  16790. weight: math.unit(240, "lb"),
  16791. name: "Upright",
  16792. image: {
  16793. source: "./media/characters/cafat/upright.svg",
  16794. bottom: 0.01
  16795. }
  16796. },
  16797. uprightFull: {
  16798. height: math.unit(6.3, "feet"),
  16799. weight: math.unit(240, "lb"),
  16800. name: "Upright (Full)",
  16801. image: {
  16802. source: "./media/characters/cafat/upright-full.svg",
  16803. bottom: 0.01
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Small",
  16810. height: math.unit(5, "feet"),
  16811. default: true
  16812. },
  16813. {
  16814. name: "Large",
  16815. height: math.unit(13, "feet")
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(6, "feet"),
  16824. weight: math.unit(150, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/verin-raharra/front.svg",
  16828. extra: 5019 / 4835,
  16829. bottom: 0.023
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(7 + 5 / 12, "feet"),
  16837. default: true
  16838. },
  16839. {
  16840. name: "Upsized",
  16841. height: math.unit(20, "feet")
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16847. {
  16848. front: {
  16849. height: math.unit(7, "feet"),
  16850. weight: math.unit(230, "lb"),
  16851. name: "Front",
  16852. image: {
  16853. source: "./media/characters/nakata/front.svg",
  16854. extra: 1.005,
  16855. bottom: 0.01
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(7, "feet"),
  16863. default: true
  16864. },
  16865. {
  16866. name: "Big",
  16867. height: math.unit(14, "feet")
  16868. },
  16869. {
  16870. name: "Macro",
  16871. height: math.unit(400, "feet")
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16877. {
  16878. front: {
  16879. height: math.unit(4.91, "feet"),
  16880. weight: math.unit(100, "lb"),
  16881. name: "Front",
  16882. image: {
  16883. source: "./media/characters/lily/front.svg",
  16884. extra: 1585 / 1415,
  16885. bottom: 0.02
  16886. }
  16887. },
  16888. },
  16889. [
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(4.91, "feet"),
  16893. default: true
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16899. {
  16900. laying: {
  16901. height: math.unit(4 + 4 / 12, "feet"),
  16902. weight: math.unit(600, "lb"),
  16903. name: "Laying",
  16904. image: {
  16905. source: "./media/characters/sheila/laying.svg",
  16906. extra: 1333 / 1265,
  16907. bottom: 0.16
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(4 + 4 / 12, "feet"),
  16915. default: true
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16921. {
  16922. front: {
  16923. height: math.unit(6, "feet"),
  16924. weight: math.unit(190, "lb"),
  16925. name: "Front",
  16926. image: {
  16927. source: "./media/characters/sax/front.svg",
  16928. extra: 1187 / 973,
  16929. bottom: 0.042
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Micro",
  16936. height: math.unit(4, "inches"),
  16937. default: true
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16943. {
  16944. front: {
  16945. height: math.unit(6, "feet"),
  16946. weight: math.unit(150, "lb"),
  16947. name: "Front",
  16948. image: {
  16949. source: "./media/characters/pandora/front.svg",
  16950. extra: 2720 / 2556,
  16951. bottom: 0.015
  16952. }
  16953. },
  16954. back: {
  16955. height: math.unit(6, "feet"),
  16956. weight: math.unit(150, "lb"),
  16957. name: "Back",
  16958. image: {
  16959. source: "./media/characters/pandora/back.svg",
  16960. extra: 2720 / 2556,
  16961. bottom: 0.01
  16962. }
  16963. },
  16964. beans: {
  16965. height: math.unit(6 / 8, "feet"),
  16966. name: "Beans",
  16967. image: {
  16968. source: "./media/characters/pandora/beans.svg"
  16969. }
  16970. },
  16971. collar: {
  16972. height: math.unit(0.31, "feet"),
  16973. name: "Collar",
  16974. image: {
  16975. source: "./media/characters/pandora/collar.svg"
  16976. }
  16977. },
  16978. skirt: {
  16979. height: math.unit(6, "feet"),
  16980. weight: math.unit(150, "lb"),
  16981. name: "Skirt",
  16982. image: {
  16983. source: "./media/characters/pandora/skirt.svg",
  16984. extra: 1622 / 1525,
  16985. bottom: 0.015
  16986. }
  16987. },
  16988. hoodie: {
  16989. height: math.unit(6, "feet"),
  16990. weight: math.unit(150, "lb"),
  16991. name: "Hoodie",
  16992. image: {
  16993. source: "./media/characters/pandora/hoodie.svg",
  16994. extra: 1622 / 1525,
  16995. bottom: 0.015
  16996. }
  16997. },
  16998. casual: {
  16999. height: math.unit(6, "feet"),
  17000. weight: math.unit(150, "lb"),
  17001. name: "Casual",
  17002. image: {
  17003. source: "./media/characters/pandora/casual.svg",
  17004. extra: 1622 / 1525,
  17005. bottom: 0.015
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Normal",
  17012. height: math.unit(6, "feet")
  17013. },
  17014. {
  17015. name: "Big Steppy",
  17016. height: math.unit(1, "km"),
  17017. default: true
  17018. },
  17019. {
  17020. name: "Galactic Steppy",
  17021. height: math.unit(2, "gigameters")
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17027. {
  17028. side: {
  17029. height: math.unit(10, "feet"),
  17030. weight: math.unit(800, "kg"),
  17031. name: "Side",
  17032. image: {
  17033. source: "./media/characters/venio-darcony/side.svg",
  17034. extra: 1373 / 1003,
  17035. bottom: 0.037
  17036. }
  17037. },
  17038. front: {
  17039. height: math.unit(19, "feet"),
  17040. weight: math.unit(800, "kg"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/venio-darcony/front.svg"
  17044. }
  17045. },
  17046. back: {
  17047. height: math.unit(19, "feet"),
  17048. weight: math.unit(800, "kg"),
  17049. name: "Back",
  17050. image: {
  17051. source: "./media/characters/venio-darcony/back.svg"
  17052. }
  17053. },
  17054. sideNsfw: {
  17055. height: math.unit(10, "feet"),
  17056. weight: math.unit(800, "kg"),
  17057. name: "Side (NSFW)",
  17058. image: {
  17059. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17060. extra: 1373 / 1003,
  17061. bottom: 0.037
  17062. }
  17063. },
  17064. frontNsfw: {
  17065. height: math.unit(19, "feet"),
  17066. weight: math.unit(800, "kg"),
  17067. name: "Front (NSFW)",
  17068. image: {
  17069. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17070. }
  17071. },
  17072. backNsfw: {
  17073. height: math.unit(19, "feet"),
  17074. weight: math.unit(800, "kg"),
  17075. name: "Back (NSFW)",
  17076. image: {
  17077. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17078. }
  17079. },
  17080. sideArmored: {
  17081. height: math.unit(10, "feet"),
  17082. weight: math.unit(800, "kg"),
  17083. name: "Side (Armored)",
  17084. image: {
  17085. source: "./media/characters/venio-darcony/side-armored.svg",
  17086. extra: 1373 / 1003,
  17087. bottom: 0.037
  17088. }
  17089. },
  17090. frontArmored: {
  17091. height: math.unit(19, "feet"),
  17092. weight: math.unit(900, "kg"),
  17093. name: "Front (Armored)",
  17094. image: {
  17095. source: "./media/characters/venio-darcony/front-armored.svg"
  17096. }
  17097. },
  17098. backArmored: {
  17099. height: math.unit(19, "feet"),
  17100. weight: math.unit(900, "kg"),
  17101. name: "Back (Armored)",
  17102. image: {
  17103. source: "./media/characters/venio-darcony/back-armored.svg"
  17104. }
  17105. },
  17106. sword: {
  17107. height: math.unit(10, "feet"),
  17108. weight: math.unit(50, "lb"),
  17109. name: "Sword",
  17110. image: {
  17111. source: "./media/characters/venio-darcony/sword.svg"
  17112. }
  17113. },
  17114. },
  17115. [
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(10, "feet")
  17119. },
  17120. {
  17121. name: "Macro",
  17122. height: math.unit(130, "feet"),
  17123. default: true
  17124. },
  17125. {
  17126. name: "Macro+",
  17127. height: math.unit(240, "feet")
  17128. },
  17129. ]
  17130. ))
  17131. characterMakers.push(() => makeCharacter(
  17132. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17133. {
  17134. front: {
  17135. height: math.unit(6, "feet"),
  17136. weight: math.unit(150, "lb"),
  17137. name: "Front",
  17138. image: {
  17139. source: "./media/characters/veski/front.svg",
  17140. extra: 1299 / 1225,
  17141. bottom: 0.04
  17142. }
  17143. },
  17144. back: {
  17145. height: math.unit(6, "feet"),
  17146. weight: math.unit(150, "lb"),
  17147. name: "Back",
  17148. image: {
  17149. source: "./media/characters/veski/back.svg",
  17150. extra: 1299 / 1225,
  17151. bottom: 0.008
  17152. }
  17153. },
  17154. maw: {
  17155. height: math.unit(1.5 * 1.21, "feet"),
  17156. name: "Maw",
  17157. image: {
  17158. source: "./media/characters/veski/maw.svg"
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Macro",
  17165. height: math.unit(2, "km"),
  17166. default: true
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(5 + 7 / 12, "feet"),
  17175. name: "Front",
  17176. image: {
  17177. source: "./media/characters/isabelle/front.svg",
  17178. extra: 2130 / 1976,
  17179. bottom: 0.05
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Supermicro",
  17186. height: math.unit(10, "micrometers")
  17187. },
  17188. {
  17189. name: "Micro",
  17190. height: math.unit(1, "inch")
  17191. },
  17192. {
  17193. name: "Tiny",
  17194. height: math.unit(5, "inches")
  17195. },
  17196. {
  17197. name: "Standard",
  17198. height: math.unit(5 + 7 / 12, "inches")
  17199. },
  17200. {
  17201. name: "Macro",
  17202. height: math.unit(80, "meters"),
  17203. default: true
  17204. },
  17205. {
  17206. name: "Megamacro",
  17207. height: math.unit(250, "meters")
  17208. },
  17209. {
  17210. name: "Gigamacro",
  17211. height: math.unit(5, "km")
  17212. },
  17213. {
  17214. name: "Cosmic",
  17215. height: math.unit(2.5e6, "miles")
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17221. {
  17222. front: {
  17223. height: math.unit(6, "feet"),
  17224. weight: math.unit(150, "lb"),
  17225. name: "Front",
  17226. image: {
  17227. source: "./media/characters/hanzo/front.svg",
  17228. extra: 374 / 344,
  17229. bottom: 0.02
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(8, "feet"),
  17237. default: true
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17243. {
  17244. front: {
  17245. height: math.unit(7, "feet"),
  17246. weight: math.unit(130, "lb"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/anna/front.svg",
  17250. extra: 169 / 145,
  17251. bottom: 0.06
  17252. }
  17253. },
  17254. full: {
  17255. height: math.unit(4.96, "feet"),
  17256. weight: math.unit(220, "lb"),
  17257. name: "Full",
  17258. image: {
  17259. source: "./media/characters/anna/full.svg",
  17260. extra: 138 / 114,
  17261. bottom: 0.15
  17262. }
  17263. },
  17264. tongue: {
  17265. height: math.unit(2.53, "feet"),
  17266. name: "Tongue",
  17267. image: {
  17268. source: "./media/characters/anna/tongue.svg"
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(7, "feet"),
  17276. default: true
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17282. {
  17283. front: {
  17284. height: math.unit(7, "feet"),
  17285. weight: math.unit(150, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/ian-corvid/front.svg",
  17289. extra: 150 / 142,
  17290. bottom: 0.02
  17291. }
  17292. },
  17293. back: {
  17294. height: math.unit(7, "feet"),
  17295. weight: math.unit(150, "lb"),
  17296. name: "Back",
  17297. image: {
  17298. source: "./media/characters/ian-corvid/back.svg",
  17299. extra: 150 / 143,
  17300. bottom: 0.01
  17301. }
  17302. },
  17303. stomping: {
  17304. height: math.unit(7, "feet"),
  17305. weight: math.unit(150, "lb"),
  17306. name: "Stomping",
  17307. image: {
  17308. source: "./media/characters/ian-corvid/stomping.svg",
  17309. extra: 76 / 72
  17310. }
  17311. },
  17312. sitting: {
  17313. height: math.unit(7 / 1.8, "feet"),
  17314. weight: math.unit(150, "lb"),
  17315. name: "Sitting",
  17316. image: {
  17317. source: "./media/characters/ian-corvid/sitting.svg",
  17318. extra: 1400 / 1269,
  17319. bottom: 0.15
  17320. }
  17321. },
  17322. },
  17323. [
  17324. {
  17325. name: "Tiny Microw",
  17326. height: math.unit(1, "inch")
  17327. },
  17328. {
  17329. name: "Microw",
  17330. height: math.unit(6, "inches")
  17331. },
  17332. {
  17333. name: "Crow",
  17334. height: math.unit(7 + 1 / 12, "feet"),
  17335. default: true
  17336. },
  17337. {
  17338. name: "Macrow",
  17339. height: math.unit(176, "feet")
  17340. },
  17341. ]
  17342. ))
  17343. characterMakers.push(() => makeCharacter(
  17344. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17345. {
  17346. front: {
  17347. height: math.unit(5 + 7 / 12, "feet"),
  17348. weight: math.unit(147, "lb"),
  17349. name: "Front",
  17350. image: {
  17351. source: "./media/characters/natalie-kellon/front.svg",
  17352. extra: 1214 / 1141,
  17353. bottom: 0.02
  17354. }
  17355. },
  17356. },
  17357. [
  17358. {
  17359. name: "Micro",
  17360. height: math.unit(1 / 16, "inch")
  17361. },
  17362. {
  17363. name: "Tiny",
  17364. height: math.unit(4, "inches")
  17365. },
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(5 + 7 / 12, "feet"),
  17369. default: true
  17370. },
  17371. {
  17372. name: "Amazon",
  17373. height: math.unit(12, "feet")
  17374. },
  17375. {
  17376. name: "Giantess",
  17377. height: math.unit(160, "meters")
  17378. },
  17379. {
  17380. name: "Titaness",
  17381. height: math.unit(800, "meters")
  17382. },
  17383. ]
  17384. ))
  17385. characterMakers.push(() => makeCharacter(
  17386. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17387. {
  17388. front: {
  17389. height: math.unit(6, "feet"),
  17390. weight: math.unit(150, "lb"),
  17391. name: "Front",
  17392. image: {
  17393. source: "./media/characters/alluria/front.svg",
  17394. extra: 806 / 738,
  17395. bottom: 0.01
  17396. }
  17397. },
  17398. side: {
  17399. height: math.unit(6, "feet"),
  17400. weight: math.unit(150, "lb"),
  17401. name: "Side",
  17402. image: {
  17403. source: "./media/characters/alluria/side.svg",
  17404. extra: 800 / 750,
  17405. }
  17406. },
  17407. back: {
  17408. height: math.unit(6, "feet"),
  17409. weight: math.unit(150, "lb"),
  17410. name: "Back",
  17411. image: {
  17412. source: "./media/characters/alluria/back.svg",
  17413. extra: 806 / 738,
  17414. }
  17415. },
  17416. frontMaid: {
  17417. height: math.unit(6, "feet"),
  17418. weight: math.unit(150, "lb"),
  17419. name: "Front (Maid)",
  17420. image: {
  17421. source: "./media/characters/alluria/front-maid.svg",
  17422. extra: 806 / 738,
  17423. bottom: 0.01
  17424. }
  17425. },
  17426. sideMaid: {
  17427. height: math.unit(6, "feet"),
  17428. weight: math.unit(150, "lb"),
  17429. name: "Side (Maid)",
  17430. image: {
  17431. source: "./media/characters/alluria/side-maid.svg",
  17432. extra: 800 / 750,
  17433. bottom: 0.005
  17434. }
  17435. },
  17436. backMaid: {
  17437. height: math.unit(6, "feet"),
  17438. weight: math.unit(150, "lb"),
  17439. name: "Back (Maid)",
  17440. image: {
  17441. source: "./media/characters/alluria/back-maid.svg",
  17442. extra: 806 / 738,
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Micro",
  17449. height: math.unit(6, "inches"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17456. {
  17457. front: {
  17458. height: math.unit(6, "feet"),
  17459. weight: math.unit(150, "lb"),
  17460. name: "Front",
  17461. image: {
  17462. source: "./media/characters/kyle/front.svg",
  17463. extra: 1069 / 962,
  17464. bottom: 77.228 / 1727.45
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Macro",
  17471. height: math.unit(150, "feet"),
  17472. default: true
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17478. {
  17479. front: {
  17480. height: math.unit(6, "feet"),
  17481. weight: math.unit(300, "lb"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/duncan/front.svg",
  17485. extra: 1650 / 1482,
  17486. bottom: 0.05
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Macro",
  17493. height: math.unit(100, "feet"),
  17494. default: true
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17500. {
  17501. front: {
  17502. height: math.unit(5 + 4 / 12, "feet"),
  17503. weight: math.unit(220, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/memory/front.svg",
  17507. extra: 3641 / 3545,
  17508. bottom: 0.03
  17509. }
  17510. },
  17511. back: {
  17512. height: math.unit(5 + 4 / 12, "feet"),
  17513. weight: math.unit(220, "lb"),
  17514. name: "Back",
  17515. image: {
  17516. source: "./media/characters/memory/back.svg",
  17517. extra: 3641 / 3545,
  17518. bottom: 0.025
  17519. }
  17520. },
  17521. frontSkirt: {
  17522. height: math.unit(5 + 4 / 12, "feet"),
  17523. weight: math.unit(220, "lb"),
  17524. name: "Front (Skirt)",
  17525. image: {
  17526. source: "./media/characters/memory/front-skirt.svg",
  17527. extra: 3641 / 3545,
  17528. bottom: 0.03
  17529. }
  17530. },
  17531. frontDress: {
  17532. height: math.unit(5 + 4 / 12, "feet"),
  17533. weight: math.unit(220, "lb"),
  17534. name: "Front (Dress)",
  17535. image: {
  17536. source: "./media/characters/memory/front-dress.svg",
  17537. extra: 3641 / 3545,
  17538. bottom: 0.03
  17539. }
  17540. },
  17541. },
  17542. [
  17543. {
  17544. name: "Micro",
  17545. height: math.unit(6, "inches"),
  17546. default: true
  17547. },
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(5 + 4 / 12, "feet")
  17551. },
  17552. ]
  17553. ))
  17554. characterMakers.push(() => makeCharacter(
  17555. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17556. {
  17557. front: {
  17558. height: math.unit(4 + 11 / 12, "feet"),
  17559. weight: math.unit(100, "lb"),
  17560. name: "Front",
  17561. image: {
  17562. source: "./media/characters/luno/front.svg",
  17563. extra: 1535 / 1487,
  17564. bottom: 0.03
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Micro",
  17571. height: math.unit(3, "inches")
  17572. },
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(4 + 11 / 12, "feet"),
  17576. default: true
  17577. },
  17578. {
  17579. name: "Macro",
  17580. height: math.unit(300, "feet")
  17581. },
  17582. {
  17583. name: "Megamacro",
  17584. height: math.unit(700, "miles")
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17590. {
  17591. front: {
  17592. height: math.unit(6 + 2 / 12, "feet"),
  17593. weight: math.unit(170, "lb"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/jamesy/front.svg",
  17597. extra: 440 / 382,
  17598. bottom: 0.005
  17599. }
  17600. },
  17601. },
  17602. [
  17603. {
  17604. name: "Micro",
  17605. height: math.unit(3, "inches")
  17606. },
  17607. {
  17608. name: "Normal",
  17609. height: math.unit(6 + 2 / 12, "feet"),
  17610. default: true
  17611. },
  17612. {
  17613. name: "Macro",
  17614. height: math.unit(300, "feet")
  17615. },
  17616. {
  17617. name: "Megamacro",
  17618. height: math.unit(700, "miles")
  17619. },
  17620. ]
  17621. ))
  17622. characterMakers.push(() => makeCharacter(
  17623. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17624. {
  17625. front: {
  17626. height: math.unit(6, "feet"),
  17627. weight: math.unit(160, "lb"),
  17628. name: "Front",
  17629. image: {
  17630. source: "./media/characters/mark/front.svg",
  17631. extra: 3300 / 3100,
  17632. bottom: 136.42 / 3440.47
  17633. }
  17634. },
  17635. },
  17636. [
  17637. {
  17638. name: "Macro",
  17639. height: math.unit(120, "meters")
  17640. },
  17641. {
  17642. name: "Bigger Macro",
  17643. height: math.unit(350, "meters")
  17644. },
  17645. {
  17646. name: "Megamacro",
  17647. height: math.unit(8, "km"),
  17648. default: true
  17649. },
  17650. {
  17651. name: "Continental",
  17652. height: math.unit(4550, "km")
  17653. },
  17654. {
  17655. name: "Planetary",
  17656. height: math.unit(65000, "km")
  17657. },
  17658. ]
  17659. ))
  17660. characterMakers.push(() => makeCharacter(
  17661. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17662. {
  17663. front: {
  17664. height: math.unit(6, "feet"),
  17665. weight: math.unit(400, "lb"),
  17666. name: "Front",
  17667. image: {
  17668. source: "./media/characters/mac/front.svg",
  17669. extra: 1048 / 987.7,
  17670. bottom: 60 / 1107.6,
  17671. }
  17672. },
  17673. },
  17674. [
  17675. {
  17676. name: "Macro",
  17677. height: math.unit(500, "feet"),
  17678. default: true
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17684. {
  17685. front: {
  17686. height: math.unit(5 + 2 / 12, "feet"),
  17687. weight: math.unit(190, "lb"),
  17688. name: "Front",
  17689. image: {
  17690. source: "./media/characters/bari/front.svg",
  17691. extra: 3156 / 2880,
  17692. bottom: 0.03
  17693. }
  17694. },
  17695. back: {
  17696. height: math.unit(5 + 2 / 12, "feet"),
  17697. weight: math.unit(190, "lb"),
  17698. name: "Back",
  17699. image: {
  17700. source: "./media/characters/bari/back.svg",
  17701. extra: 3260 / 2834,
  17702. bottom: 0.025
  17703. }
  17704. },
  17705. frontPlush: {
  17706. height: math.unit(5 + 2 / 12, "feet"),
  17707. weight: math.unit(190, "lb"),
  17708. name: "Front (Plush)",
  17709. image: {
  17710. source: "./media/characters/bari/front-plush.svg",
  17711. extra: 1112 / 1061,
  17712. bottom: 0.002
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Micro",
  17719. height: math.unit(3, "inches")
  17720. },
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(5 + 2 / 12, "feet"),
  17724. default: true
  17725. },
  17726. {
  17727. name: "Macro",
  17728. height: math.unit(20, "feet")
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17734. {
  17735. front: {
  17736. height: math.unit(6 + 1 / 12, "feet"),
  17737. weight: math.unit(275, "lb"),
  17738. name: "Front",
  17739. image: {
  17740. source: "./media/characters/hunter-misha-raven/front.svg"
  17741. }
  17742. },
  17743. },
  17744. [
  17745. {
  17746. name: "Mortal",
  17747. height: math.unit(6 + 1 / 12, "feet")
  17748. },
  17749. {
  17750. name: "Divine",
  17751. height: math.unit(1.12134e34, "parsecs"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(6 + 3 / 12, "feet"),
  17761. weight: math.unit(220, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/max-calore/front.svg",
  17765. extra: 1700 / 1648,
  17766. bottom: 0.01
  17767. }
  17768. },
  17769. back: {
  17770. height: math.unit(6 + 3 / 12, "feet"),
  17771. weight: math.unit(220, "lb"),
  17772. name: "Back",
  17773. image: {
  17774. source: "./media/characters/max-calore/back.svg",
  17775. extra: 1700 / 1648,
  17776. bottom: 0.01
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(6 + 3 / 12, "feet"),
  17784. default: true
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17790. {
  17791. side: {
  17792. height: math.unit(2 + 8 / 12, "feet"),
  17793. weight: math.unit(99, "lb"),
  17794. name: "Side",
  17795. image: {
  17796. source: "./media/characters/aspen/side.svg",
  17797. extra: 152 / 138,
  17798. bottom: 0.032
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(2 + 8 / 12, "feet"),
  17806. default: true
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17812. {
  17813. side: {
  17814. height: math.unit(3 + 2 / 12, "feet"),
  17815. weight: math.unit(224, "lb"),
  17816. name: "Side",
  17817. image: {
  17818. source: "./media/characters/sheila-feral-wolf/side.svg",
  17819. extra: 179 / 166,
  17820. bottom: 0.03
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Normal",
  17827. height: math.unit(3 + 2 / 12, "feet"),
  17828. default: true
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17834. {
  17835. side: {
  17836. height: math.unit(1 + 9 / 12, "feet"),
  17837. weight: math.unit(38, "lb"),
  17838. name: "Side",
  17839. image: {
  17840. source: "./media/characters/michelle/side.svg",
  17841. extra: 147 / 136.7,
  17842. bottom: 0.03
  17843. }
  17844. },
  17845. },
  17846. [
  17847. {
  17848. name: "Normal",
  17849. height: math.unit(1 + 9 / 12, "feet"),
  17850. default: true
  17851. },
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(1.54, "feet"),
  17859. weight: math.unit(50, "lb"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/nino/front.svg"
  17863. }
  17864. },
  17865. },
  17866. [
  17867. {
  17868. name: "Normal",
  17869. height: math.unit(1.54, "feet"),
  17870. default: true
  17871. },
  17872. ]
  17873. ))
  17874. characterMakers.push(() => makeCharacter(
  17875. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17876. {
  17877. front: {
  17878. height: math.unit(1.49, "feet"),
  17879. weight: math.unit(45, "lb"),
  17880. name: "Front",
  17881. image: {
  17882. source: "./media/characters/viola/front.svg"
  17883. }
  17884. },
  17885. },
  17886. [
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(1.49, "feet"),
  17890. default: true
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17896. {
  17897. front: {
  17898. height: math.unit(6 + 5 / 12, "feet"),
  17899. weight: math.unit(580, "lb"),
  17900. name: "Front",
  17901. image: {
  17902. source: "./media/characters/atlas/front.svg",
  17903. extra: 298.5 / 290,
  17904. bottom: 0.015
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(6 + 5 / 12, "feet"),
  17912. default: true
  17913. },
  17914. ]
  17915. ))
  17916. characterMakers.push(() => makeCharacter(
  17917. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17918. {
  17919. side: {
  17920. height: math.unit(15.6, "inches"),
  17921. weight: math.unit(10, "lb"),
  17922. name: "Side",
  17923. image: {
  17924. source: "./media/characters/davy/side.svg",
  17925. extra: 200 / 170,
  17926. bottom: 0.01
  17927. }
  17928. },
  17929. },
  17930. [
  17931. {
  17932. name: "Normal",
  17933. height: math.unit(15.6, "inches"),
  17934. default: true
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17940. {
  17941. side: {
  17942. height: math.unit(4 + 8 / 12, "feet"),
  17943. weight: math.unit(166, "lb"),
  17944. name: "Side",
  17945. image: {
  17946. source: "./media/characters/fiona/side.svg",
  17947. extra: 232 / 220,
  17948. bottom: 0.03
  17949. }
  17950. },
  17951. },
  17952. [
  17953. {
  17954. name: "Normal",
  17955. height: math.unit(4 + 8 / 12, "feet"),
  17956. default: true
  17957. },
  17958. ]
  17959. ))
  17960. characterMakers.push(() => makeCharacter(
  17961. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17962. {
  17963. front: {
  17964. height: math.unit(26, "inches"),
  17965. weight: math.unit(35, "lb"),
  17966. name: "Front",
  17967. image: {
  17968. source: "./media/characters/lyla/front.svg",
  17969. bottom: 0.1
  17970. }
  17971. },
  17972. },
  17973. [
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(3, "feet"),
  17977. default: true
  17978. },
  17979. ]
  17980. ))
  17981. characterMakers.push(() => makeCharacter(
  17982. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17983. {
  17984. side: {
  17985. height: math.unit(1.8, "feet"),
  17986. weight: math.unit(44, "lb"),
  17987. name: "Side",
  17988. image: {
  17989. source: "./media/characters/perseus/side.svg",
  17990. bottom: 0.21
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Normal",
  17997. height: math.unit(1.8, "feet"),
  17998. default: true
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18004. {
  18005. side: {
  18006. height: math.unit(4 + 2 / 12, "feet"),
  18007. weight: math.unit(20, "lb"),
  18008. name: "Side",
  18009. image: {
  18010. source: "./media/characters/remus/side.svg"
  18011. }
  18012. },
  18013. },
  18014. [
  18015. {
  18016. name: "Normal",
  18017. height: math.unit(4 + 2 / 12, "feet"),
  18018. default: true
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18024. {
  18025. front: {
  18026. height: math.unit(4 + 11 / 12, "feet"),
  18027. weight: math.unit(114, "lb"),
  18028. name: "Front",
  18029. image: {
  18030. source: "./media/characters/raf/front.svg",
  18031. extra: 1504/1339,
  18032. bottom: 26/1530
  18033. }
  18034. },
  18035. side: {
  18036. height: math.unit(4 + 11 / 12, "feet"),
  18037. weight: math.unit(114, "lb"),
  18038. name: "Side",
  18039. image: {
  18040. source: "./media/characters/raf/side.svg",
  18041. extra: 1466/1316,
  18042. bottom: 29/1495
  18043. }
  18044. },
  18045. paw: {
  18046. height: math.unit(1.45, "feet"),
  18047. name: "Paw",
  18048. image: {
  18049. source: "./media/characters/raf/paw.svg"
  18050. },
  18051. extraAttributes: {
  18052. "toeSize": {
  18053. name: "Toe Size",
  18054. power: 2,
  18055. type: "area",
  18056. base: math.unit(0.004, "m^2")
  18057. },
  18058. "padSize": {
  18059. name: "Pad Size",
  18060. power: 2,
  18061. type: "area",
  18062. base: math.unit(0.04, "m^2")
  18063. },
  18064. "footSize": {
  18065. name: "Foot Size",
  18066. power: 2,
  18067. type: "area",
  18068. base: math.unit(0.08, "m^2")
  18069. },
  18070. }
  18071. },
  18072. },
  18073. [
  18074. {
  18075. name: "Micro",
  18076. height: math.unit(2, "inches")
  18077. },
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(4 + 11 / 12, "feet"),
  18081. default: true
  18082. },
  18083. {
  18084. name: "Macro",
  18085. height: math.unit(70, "feet")
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18091. {
  18092. front: {
  18093. height: math.unit(1.5, "meters"),
  18094. weight: math.unit(68, "kg"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/liam-einarr/front.svg",
  18098. extra: 2822 / 2666
  18099. }
  18100. },
  18101. back: {
  18102. height: math.unit(1.5, "meters"),
  18103. weight: math.unit(68, "kg"),
  18104. name: "Back",
  18105. image: {
  18106. source: "./media/characters/liam-einarr/back.svg",
  18107. extra: 2822 / 2666,
  18108. bottom: 0.015
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(1.5, "meters"),
  18116. default: true
  18117. },
  18118. {
  18119. name: "Macro",
  18120. height: math.unit(150, "meters")
  18121. },
  18122. {
  18123. name: "Megamacro",
  18124. height: math.unit(35, "km")
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18130. {
  18131. front: {
  18132. height: math.unit(6, "feet"),
  18133. weight: math.unit(75, "kg"),
  18134. name: "Front",
  18135. image: {
  18136. source: "./media/characters/linda/front.svg",
  18137. extra: 930 / 874,
  18138. bottom: 0.004
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Normal",
  18145. height: math.unit(6, "feet"),
  18146. default: true
  18147. },
  18148. ]
  18149. ))
  18150. characterMakers.push(() => makeCharacter(
  18151. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18152. {
  18153. front: {
  18154. height: math.unit(6 + 8 / 12, "feet"),
  18155. weight: math.unit(220, "lb"),
  18156. name: "Front",
  18157. image: {
  18158. source: "./media/characters/caylex/front.svg",
  18159. extra: 821 / 772,
  18160. bottom: 0.07
  18161. }
  18162. },
  18163. back: {
  18164. height: math.unit(6 + 8 / 12, "feet"),
  18165. weight: math.unit(220, "lb"),
  18166. name: "Back",
  18167. image: {
  18168. source: "./media/characters/caylex/back.svg",
  18169. extra: 821 / 772,
  18170. bottom: 0.022
  18171. }
  18172. },
  18173. hand: {
  18174. height: math.unit(1.25, "feet"),
  18175. name: "Hand",
  18176. image: {
  18177. source: "./media/characters/caylex/hand.svg"
  18178. }
  18179. },
  18180. foot: {
  18181. height: math.unit(1.6, "feet"),
  18182. name: "Foot",
  18183. image: {
  18184. source: "./media/characters/caylex/foot.svg"
  18185. }
  18186. },
  18187. armored: {
  18188. height: math.unit(6 + 8 / 12, "feet"),
  18189. weight: math.unit(250, "lb"),
  18190. name: "Armored",
  18191. image: {
  18192. source: "./media/characters/caylex/armored.svg",
  18193. extra: 1420 / 1310,
  18194. bottom: 0.045
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(6 + 8 / 12, "feet"),
  18202. default: true
  18203. },
  18204. {
  18205. name: "Normal+",
  18206. height: math.unit(12, "feet")
  18207. },
  18208. ]
  18209. ))
  18210. characterMakers.push(() => makeCharacter(
  18211. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18212. {
  18213. front: {
  18214. height: math.unit(7 + 6 / 12, "feet"),
  18215. weight: math.unit(288, "lb"),
  18216. name: "Front",
  18217. image: {
  18218. source: "./media/characters/alana/front.svg",
  18219. extra: 679 / 653,
  18220. bottom: 22.5 / 701
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(7 + 6 / 12, "feet")
  18228. },
  18229. {
  18230. name: "Large",
  18231. height: math.unit(50, "feet")
  18232. },
  18233. {
  18234. name: "Macro",
  18235. height: math.unit(100, "feet"),
  18236. default: true
  18237. },
  18238. {
  18239. name: "Macro+",
  18240. height: math.unit(200, "feet")
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18246. {
  18247. front: {
  18248. height: math.unit(6 + 1 / 12, "feet"),
  18249. weight: math.unit(210, "lb"),
  18250. name: "Front",
  18251. image: {
  18252. source: "./media/characters/hasani/front.svg",
  18253. extra: 244 / 232,
  18254. bottom: 0.01
  18255. }
  18256. },
  18257. back: {
  18258. height: math.unit(6 + 1 / 12, "feet"),
  18259. weight: math.unit(210, "lb"),
  18260. name: "Back",
  18261. image: {
  18262. source: "./media/characters/hasani/back.svg",
  18263. extra: 244 / 232,
  18264. bottom: 0.01
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Normal",
  18271. height: math.unit(6 + 1 / 12, "feet")
  18272. },
  18273. {
  18274. name: "Macro",
  18275. height: math.unit(175, "feet"),
  18276. default: true
  18277. },
  18278. ]
  18279. ))
  18280. characterMakers.push(() => makeCharacter(
  18281. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18282. {
  18283. front: {
  18284. height: math.unit(1.82, "meters"),
  18285. weight: math.unit(140, "lb"),
  18286. name: "Front",
  18287. image: {
  18288. source: "./media/characters/nita/front.svg",
  18289. extra: 2473 / 2363,
  18290. bottom: 0.01
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Normal",
  18297. height: math.unit(1.82, "m")
  18298. },
  18299. {
  18300. name: "Macro",
  18301. height: math.unit(300, "m")
  18302. },
  18303. {
  18304. name: "Mistake Canon",
  18305. height: math.unit(0.5, "miles"),
  18306. default: true
  18307. },
  18308. {
  18309. name: "Big Mistake",
  18310. height: math.unit(13, "miles")
  18311. },
  18312. {
  18313. name: "Playing God",
  18314. height: math.unit(2450, "miles")
  18315. },
  18316. ]
  18317. ))
  18318. characterMakers.push(() => makeCharacter(
  18319. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18320. {
  18321. front: {
  18322. height: math.unit(4, "feet"),
  18323. weight: math.unit(120, "lb"),
  18324. name: "Front",
  18325. image: {
  18326. source: "./media/characters/shiriko/front.svg",
  18327. extra: 970/934,
  18328. bottom: 5/975
  18329. }
  18330. },
  18331. },
  18332. [
  18333. {
  18334. name: "Normal",
  18335. height: math.unit(4, "feet"),
  18336. default: true
  18337. },
  18338. ]
  18339. ))
  18340. characterMakers.push(() => makeCharacter(
  18341. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18342. {
  18343. front: {
  18344. height: math.unit(6, "feet"),
  18345. name: "front",
  18346. image: {
  18347. source: "./media/characters/deja/front.svg",
  18348. extra: 926 / 840,
  18349. bottom: 0.07
  18350. }
  18351. },
  18352. },
  18353. [
  18354. {
  18355. name: "Planck Length",
  18356. height: math.unit(1.6e-35, "meters")
  18357. },
  18358. {
  18359. name: "Normal",
  18360. height: math.unit(30.48, "meters"),
  18361. default: true
  18362. },
  18363. {
  18364. name: "Universal",
  18365. height: math.unit(8.8e26, "meters")
  18366. },
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18371. {
  18372. side: {
  18373. height: math.unit(8, "feet"),
  18374. weight: math.unit(6300, "lb"),
  18375. name: "Side",
  18376. image: {
  18377. source: "./media/characters/anima/side.svg",
  18378. bottom: 0.035
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Normal",
  18385. height: math.unit(8, "feet"),
  18386. default: true
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18392. {
  18393. front: {
  18394. height: math.unit(8, "feet"),
  18395. weight: math.unit(350, "lb"),
  18396. name: "Front",
  18397. image: {
  18398. source: "./media/characters/bianca/front.svg",
  18399. extra: 234 / 225,
  18400. bottom: 0.03
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(8, "feet"),
  18408. default: true
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18414. {
  18415. front: {
  18416. height: math.unit(11 + 5/12, "feet"),
  18417. weight: math.unit(1200, "lb"),
  18418. name: "Front",
  18419. image: {
  18420. source: "./media/characters/adinia/front.svg",
  18421. extra: 1767/1641,
  18422. bottom: 44/1811
  18423. },
  18424. extraAttributes: {
  18425. "energyIntake": {
  18426. name: "Energy Intake",
  18427. power: 3,
  18428. type: "energy",
  18429. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18430. },
  18431. }
  18432. },
  18433. back: {
  18434. height: math.unit(11 + 5/12, "feet"),
  18435. weight: math.unit(1200, "lb"),
  18436. name: "Back",
  18437. image: {
  18438. source: "./media/characters/adinia/back.svg",
  18439. extra: 1834/1684,
  18440. bottom: 14/1848
  18441. },
  18442. extraAttributes: {
  18443. "energyIntake": {
  18444. name: "Energy Intake",
  18445. power: 3,
  18446. type: "energy",
  18447. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18448. },
  18449. }
  18450. },
  18451. maw: {
  18452. height: math.unit(3.79, "feet"),
  18453. name: "Maw",
  18454. image: {
  18455. source: "./media/characters/adinia/maw.svg"
  18456. }
  18457. },
  18458. rump: {
  18459. height: math.unit(4.6, "feet"),
  18460. name: "Rump",
  18461. image: {
  18462. source: "./media/characters/adinia/rump.svg"
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Normal",
  18469. height: math.unit(11 + 5 / 12, "feet"),
  18470. default: true
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18476. {
  18477. front: {
  18478. height: math.unit(3, "meters"),
  18479. weight: math.unit(200, "kg"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/lykasa/front.svg",
  18483. extra: 1076 / 976,
  18484. bottom: 0.06
  18485. }
  18486. },
  18487. },
  18488. [
  18489. {
  18490. name: "Normal",
  18491. height: math.unit(3, "meters")
  18492. },
  18493. {
  18494. name: "Kaiju",
  18495. height: math.unit(120, "meters"),
  18496. default: true
  18497. },
  18498. {
  18499. name: "Mega Kaiju",
  18500. height: math.unit(240, "km")
  18501. },
  18502. {
  18503. name: "Giga Kaiju",
  18504. height: math.unit(400, "megameters")
  18505. },
  18506. {
  18507. name: "Tera Kaiju",
  18508. height: math.unit(800, "gigameters")
  18509. },
  18510. {
  18511. name: "Kaiju Dragon Goddess",
  18512. height: math.unit(26, "zettaparsecs")
  18513. },
  18514. ]
  18515. ))
  18516. characterMakers.push(() => makeCharacter(
  18517. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18518. {
  18519. side: {
  18520. height: math.unit(283 / 124 * 6, "feet"),
  18521. weight: math.unit(35000, "lb"),
  18522. name: "Side",
  18523. image: {
  18524. source: "./media/characters/malfaren/side.svg",
  18525. extra: 1310/529,
  18526. bottom: 24/1334
  18527. }
  18528. },
  18529. front: {
  18530. height: math.unit(22.36, "feet"),
  18531. weight: math.unit(35000, "lb"),
  18532. name: "Front",
  18533. image: {
  18534. source: "./media/characters/malfaren/front.svg",
  18535. extra: 1237/1115,
  18536. bottom: 32/1269
  18537. }
  18538. },
  18539. maw: {
  18540. height: math.unit(6.9, "feet"),
  18541. name: "Maw",
  18542. image: {
  18543. source: "./media/characters/malfaren/maw.svg"
  18544. }
  18545. },
  18546. dick: {
  18547. height: math.unit(6.19, "feet"),
  18548. name: "Dick",
  18549. image: {
  18550. source: "./media/characters/malfaren/dick.svg"
  18551. }
  18552. },
  18553. eye: {
  18554. height: math.unit(0.69, "feet"),
  18555. name: "Eye",
  18556. image: {
  18557. source: "./media/characters/malfaren/eye.svg"
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Big",
  18564. height: math.unit(283 / 162 * 6, "feet"),
  18565. },
  18566. {
  18567. name: "Bigger",
  18568. height: math.unit(283 / 124 * 6, "feet")
  18569. },
  18570. {
  18571. name: "Massive",
  18572. height: math.unit(283 / 92 * 6, "feet"),
  18573. default: true
  18574. },
  18575. {
  18576. name: "👀💦",
  18577. height: math.unit(283 / 73 * 6, "feet"),
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(1.7, "m"),
  18586. weight: math.unit(70, "kg"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/kernel/front.svg",
  18590. extra: 222 / 210,
  18591. bottom: 0.007
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Nano",
  18598. height: math.unit(17, "micrometers")
  18599. },
  18600. {
  18601. name: "Micro",
  18602. height: math.unit(1.7, "mm")
  18603. },
  18604. {
  18605. name: "Small",
  18606. height: math.unit(1.7, "cm")
  18607. },
  18608. {
  18609. name: "Normal",
  18610. height: math.unit(1.7, "m"),
  18611. default: true
  18612. },
  18613. ]
  18614. ))
  18615. characterMakers.push(() => makeCharacter(
  18616. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18617. {
  18618. front: {
  18619. height: math.unit(1.75, "meters"),
  18620. weight: math.unit(65, "kg"),
  18621. name: "Front",
  18622. image: {
  18623. source: "./media/characters/jayne-folest/front.svg",
  18624. extra: 2115 / 2007,
  18625. bottom: 0.02
  18626. }
  18627. },
  18628. back: {
  18629. height: math.unit(1.75, "meters"),
  18630. weight: math.unit(65, "kg"),
  18631. name: "Back",
  18632. image: {
  18633. source: "./media/characters/jayne-folest/back.svg",
  18634. extra: 2115 / 2007,
  18635. bottom: 0.005
  18636. }
  18637. },
  18638. frontClothed: {
  18639. height: math.unit(1.75, "meters"),
  18640. weight: math.unit(65, "kg"),
  18641. name: "Front (Clothed)",
  18642. image: {
  18643. source: "./media/characters/jayne-folest/front-clothed.svg",
  18644. extra: 2115 / 2007,
  18645. bottom: 0.035
  18646. }
  18647. },
  18648. hand: {
  18649. height: math.unit(1 / 1.260, "feet"),
  18650. name: "Hand",
  18651. image: {
  18652. source: "./media/characters/jayne-folest/hand.svg"
  18653. }
  18654. },
  18655. foot: {
  18656. height: math.unit(1 / 0.918, "feet"),
  18657. name: "Foot",
  18658. image: {
  18659. source: "./media/characters/jayne-folest/foot.svg"
  18660. }
  18661. },
  18662. },
  18663. [
  18664. {
  18665. name: "Micro",
  18666. height: math.unit(4, "cm")
  18667. },
  18668. {
  18669. name: "Normal",
  18670. height: math.unit(1.75, "meters")
  18671. },
  18672. {
  18673. name: "Macro",
  18674. height: math.unit(47.5, "meters"),
  18675. default: true
  18676. },
  18677. ]
  18678. ))
  18679. characterMakers.push(() => makeCharacter(
  18680. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18681. {
  18682. front: {
  18683. height: math.unit(180, "cm"),
  18684. weight: math.unit(70, "kg"),
  18685. name: "Front",
  18686. image: {
  18687. source: "./media/characters/algier/front.svg",
  18688. extra: 596 / 572,
  18689. bottom: 0.04
  18690. }
  18691. },
  18692. back: {
  18693. height: math.unit(180, "cm"),
  18694. weight: math.unit(70, "kg"),
  18695. name: "Back",
  18696. image: {
  18697. source: "./media/characters/algier/back.svg",
  18698. extra: 596 / 572,
  18699. bottom: 0.025
  18700. }
  18701. },
  18702. frontdressed: {
  18703. height: math.unit(180, "cm"),
  18704. weight: math.unit(150, "kg"),
  18705. name: "Front-dressed",
  18706. image: {
  18707. source: "./media/characters/algier/front-dressed.svg",
  18708. extra: 596 / 572,
  18709. bottom: 0.038
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Micro",
  18716. height: math.unit(5, "cm")
  18717. },
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(180, "cm"),
  18721. default: true
  18722. },
  18723. {
  18724. name: "Macro",
  18725. height: math.unit(64, "m")
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18731. {
  18732. upright: {
  18733. height: math.unit(7, "feet"),
  18734. weight: math.unit(300, "lb"),
  18735. name: "Upright",
  18736. image: {
  18737. source: "./media/characters/pretzel/upright.svg",
  18738. extra: 534 / 522,
  18739. bottom: 0.065
  18740. }
  18741. },
  18742. sprawling: {
  18743. height: math.unit(3.75, "feet"),
  18744. weight: math.unit(300, "lb"),
  18745. name: "Sprawling",
  18746. image: {
  18747. source: "./media/characters/pretzel/sprawling.svg",
  18748. extra: 314 / 281,
  18749. bottom: 0.1
  18750. }
  18751. },
  18752. tongue: {
  18753. height: math.unit(2, "feet"),
  18754. name: "Tongue",
  18755. image: {
  18756. source: "./media/characters/pretzel/tongue.svg"
  18757. }
  18758. },
  18759. },
  18760. [
  18761. {
  18762. name: "Normal",
  18763. height: math.unit(7, "feet"),
  18764. default: true
  18765. },
  18766. {
  18767. name: "Oversized",
  18768. height: math.unit(15, "feet")
  18769. },
  18770. {
  18771. name: "Huge",
  18772. height: math.unit(30, "feet")
  18773. },
  18774. {
  18775. name: "Macro",
  18776. height: math.unit(250, "feet")
  18777. },
  18778. ]
  18779. ))
  18780. characterMakers.push(() => makeCharacter(
  18781. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18782. {
  18783. sideFront: {
  18784. height: math.unit(5 + 2 / 12, "feet"),
  18785. weight: math.unit(120, "lb"),
  18786. name: "Front Side",
  18787. image: {
  18788. source: "./media/characters/roxi/side-front.svg",
  18789. extra: 2924 / 2717,
  18790. bottom: 0.08
  18791. }
  18792. },
  18793. sideBack: {
  18794. height: math.unit(5 + 2 / 12, "feet"),
  18795. weight: math.unit(120, "lb"),
  18796. name: "Back Side",
  18797. image: {
  18798. source: "./media/characters/roxi/side-back.svg",
  18799. extra: 2904 / 2693,
  18800. bottom: 0.06
  18801. }
  18802. },
  18803. front: {
  18804. height: math.unit(5 + 2 / 12, "feet"),
  18805. weight: math.unit(120, "lb"),
  18806. name: "Front",
  18807. image: {
  18808. source: "./media/characters/roxi/front.svg",
  18809. extra: 2028 / 1907,
  18810. bottom: 0.01
  18811. }
  18812. },
  18813. frontAlt: {
  18814. height: math.unit(5 + 2 / 12, "feet"),
  18815. weight: math.unit(120, "lb"),
  18816. name: "Front (Alt)",
  18817. image: {
  18818. source: "./media/characters/roxi/front-alt.svg",
  18819. extra: 1828 / 1798,
  18820. bottom: 0.01
  18821. }
  18822. },
  18823. sitting: {
  18824. height: math.unit(2.8, "feet"),
  18825. weight: math.unit(120, "lb"),
  18826. name: "Sitting",
  18827. image: {
  18828. source: "./media/characters/roxi/sitting.svg",
  18829. extra: 2660 / 2462,
  18830. bottom: 0.1
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Normal",
  18837. height: math.unit(5 + 2 / 12, "feet"),
  18838. default: true
  18839. },
  18840. ]
  18841. ))
  18842. characterMakers.push(() => makeCharacter(
  18843. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18844. {
  18845. side: {
  18846. height: math.unit(55, "feet"),
  18847. weight: math.unit(153, "tons"),
  18848. name: "Side",
  18849. image: {
  18850. source: "./media/characters/shadow/side.svg",
  18851. extra: 701 / 628,
  18852. bottom: 0.02
  18853. }
  18854. },
  18855. flying: {
  18856. height: math.unit(145, "feet"),
  18857. weight: math.unit(153, "tons"),
  18858. name: "Flying",
  18859. image: {
  18860. source: "./media/characters/shadow/flying.svg"
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Normal",
  18867. height: math.unit(55, "feet"),
  18868. default: true
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(6, "feet"),
  18877. weight: math.unit(200, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/marcie/front.svg",
  18881. extra: 960 / 876,
  18882. bottom: 58 / 1017.87
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Macro",
  18889. height: math.unit(1, "mile"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18896. {
  18897. front: {
  18898. height: math.unit(7, "feet"),
  18899. weight: math.unit(200, "lb"),
  18900. name: "Front",
  18901. image: {
  18902. source: "./media/characters/kachina/front.svg",
  18903. extra: 1290.68 / 1119,
  18904. bottom: 36.5 / 1327.18
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(7, "feet"),
  18912. default: true
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18918. {
  18919. looking: {
  18920. height: math.unit(2, "meters"),
  18921. weight: math.unit(300, "kg"),
  18922. name: "Looking",
  18923. image: {
  18924. source: "./media/characters/kash/looking.svg",
  18925. extra: 474 / 344,
  18926. bottom: 0.03
  18927. }
  18928. },
  18929. side: {
  18930. height: math.unit(2, "meters"),
  18931. weight: math.unit(300, "kg"),
  18932. name: "Side",
  18933. image: {
  18934. source: "./media/characters/kash/side.svg",
  18935. extra: 302 / 251,
  18936. bottom: 0.03
  18937. }
  18938. },
  18939. front: {
  18940. height: math.unit(2, "meters"),
  18941. weight: math.unit(300, "kg"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/kash/front.svg",
  18945. extra: 495 / 360,
  18946. bottom: 0.015
  18947. }
  18948. },
  18949. },
  18950. [
  18951. {
  18952. name: "Normal",
  18953. height: math.unit(2, "meters"),
  18954. default: true
  18955. },
  18956. {
  18957. name: "Big",
  18958. height: math.unit(3, "meters")
  18959. },
  18960. {
  18961. name: "Large",
  18962. height: math.unit(5, "meters")
  18963. },
  18964. ]
  18965. ))
  18966. characterMakers.push(() => makeCharacter(
  18967. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18968. {
  18969. feeding: {
  18970. height: math.unit(6.7, "feet"),
  18971. weight: math.unit(350, "lb"),
  18972. name: "Feeding",
  18973. image: {
  18974. source: "./media/characters/lalim/feeding.svg",
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(6.7, "feet"),
  18982. default: true
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18988. {
  18989. front: {
  18990. height: math.unit(9.5, "feet"),
  18991. weight: math.unit(600, "lb"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/de'vout/front.svg",
  18995. extra: 1443 / 1328,
  18996. bottom: 0.025
  18997. }
  18998. },
  18999. back: {
  19000. height: math.unit(9.5, "feet"),
  19001. weight: math.unit(600, "lb"),
  19002. name: "Back",
  19003. image: {
  19004. source: "./media/characters/de'vout/back.svg",
  19005. extra: 1443 / 1328
  19006. }
  19007. },
  19008. frontDressed: {
  19009. height: math.unit(9.5, "feet"),
  19010. weight: math.unit(600, "lb"),
  19011. name: "Front (Dressed",
  19012. image: {
  19013. source: "./media/characters/de'vout/front-dressed.svg",
  19014. extra: 1443 / 1328,
  19015. bottom: 0.025
  19016. }
  19017. },
  19018. backDressed: {
  19019. height: math.unit(9.5, "feet"),
  19020. weight: math.unit(600, "lb"),
  19021. name: "Back (Dressed",
  19022. image: {
  19023. source: "./media/characters/de'vout/back-dressed.svg",
  19024. extra: 1443 / 1328
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(9.5, "feet"),
  19032. default: true
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19038. {
  19039. front: {
  19040. height: math.unit(8, "feet"),
  19041. weight: math.unit(225, "lb"),
  19042. name: "Front",
  19043. image: {
  19044. source: "./media/characters/talana/front.svg",
  19045. extra: 1410 / 1300,
  19046. bottom: 0.015
  19047. }
  19048. },
  19049. frontDressed: {
  19050. height: math.unit(8, "feet"),
  19051. weight: math.unit(225, "lb"),
  19052. name: "Front (Dressed",
  19053. image: {
  19054. source: "./media/characters/talana/front-dressed.svg",
  19055. extra: 1410 / 1300,
  19056. bottom: 0.015
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(8, "feet"),
  19064. default: true
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19070. {
  19071. side: {
  19072. height: math.unit(7.2, "feet"),
  19073. weight: math.unit(150, "lb"),
  19074. name: "Side",
  19075. image: {
  19076. source: "./media/characters/xeauvok/side.svg",
  19077. extra: 1975 / 1523,
  19078. bottom: 0.07
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(7.2, "feet"),
  19086. default: true
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19092. {
  19093. side: {
  19094. height: math.unit(4, "meters"),
  19095. weight: math.unit(2200, "kg"),
  19096. name: "Side",
  19097. image: {
  19098. source: "./media/characters/zara/side.svg",
  19099. extra: 765/744,
  19100. bottom: 156/921
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(4, "meters"),
  19108. default: true
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19114. {
  19115. side: {
  19116. height: math.unit(6, "feet"),
  19117. weight: math.unit(150, "lb"),
  19118. name: "Side",
  19119. image: {
  19120. source: "./media/characters/richard-dragon/side.svg",
  19121. extra: 845 / 340,
  19122. bottom: 0.017
  19123. }
  19124. },
  19125. maw: {
  19126. height: math.unit(2.97, "feet"),
  19127. name: "Maw",
  19128. image: {
  19129. source: "./media/characters/richard-dragon/maw.svg"
  19130. }
  19131. },
  19132. },
  19133. [
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19138. {
  19139. front: {
  19140. height: math.unit(4, "feet"),
  19141. weight: math.unit(100, "lb"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/richard-smeargle/front.svg",
  19145. extra: 2952 / 2820,
  19146. bottom: 0.028
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(4, "feet"),
  19154. default: true
  19155. },
  19156. {
  19157. name: "Dynamax",
  19158. height: math.unit(20, "meters")
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19164. {
  19165. front: {
  19166. height: math.unit(6, "feet"),
  19167. weight: math.unit(110, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/klay/front.svg",
  19171. extra: 962 / 883,
  19172. bottom: 0.04
  19173. }
  19174. },
  19175. back: {
  19176. height: math.unit(6, "feet"),
  19177. weight: math.unit(110, "lb"),
  19178. name: "Back",
  19179. image: {
  19180. source: "./media/characters/klay/back.svg",
  19181. extra: 962 / 883
  19182. }
  19183. },
  19184. beans: {
  19185. height: math.unit(1.15, "feet"),
  19186. name: "Beans",
  19187. image: {
  19188. source: "./media/characters/klay/beans.svg"
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Micro",
  19195. height: math.unit(6, "inches")
  19196. },
  19197. {
  19198. name: "Mini",
  19199. height: math.unit(3, "feet")
  19200. },
  19201. {
  19202. name: "Normal",
  19203. height: math.unit(6, "feet"),
  19204. default: true
  19205. },
  19206. {
  19207. name: "Big",
  19208. height: math.unit(25, "feet")
  19209. },
  19210. {
  19211. name: "Macro",
  19212. height: math.unit(100, "feet")
  19213. },
  19214. {
  19215. name: "Megamacro",
  19216. height: math.unit(400, "feet")
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19222. {
  19223. front: {
  19224. height: math.unit(6, "feet"),
  19225. weight: math.unit(160, "lb"),
  19226. name: "Front",
  19227. image: {
  19228. source: "./media/characters/marcus/front.svg",
  19229. extra: 734 / 676,
  19230. bottom: 0.03
  19231. }
  19232. },
  19233. },
  19234. [
  19235. {
  19236. name: "Little",
  19237. height: math.unit(6, "feet")
  19238. },
  19239. {
  19240. name: "Normal",
  19241. height: math.unit(110, "feet"),
  19242. default: true
  19243. },
  19244. {
  19245. name: "Macro",
  19246. height: math.unit(250, "feet")
  19247. },
  19248. {
  19249. name: "Megamacro",
  19250. height: math.unit(1000, "feet")
  19251. },
  19252. ]
  19253. ))
  19254. characterMakers.push(() => makeCharacter(
  19255. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19256. {
  19257. front: {
  19258. height: math.unit(7, "feet"),
  19259. weight: math.unit(275, "lb"),
  19260. name: "Front",
  19261. image: {
  19262. source: "./media/characters/claude-delroute/front.svg",
  19263. extra: 902/827,
  19264. bottom: 26/928
  19265. }
  19266. },
  19267. side: {
  19268. height: math.unit(7, "feet"),
  19269. weight: math.unit(275, "lb"),
  19270. name: "Side",
  19271. image: {
  19272. source: "./media/characters/claude-delroute/side.svg",
  19273. extra: 908/853,
  19274. bottom: 16/924
  19275. }
  19276. },
  19277. back: {
  19278. height: math.unit(7, "feet"),
  19279. weight: math.unit(275, "lb"),
  19280. name: "Back",
  19281. image: {
  19282. source: "./media/characters/claude-delroute/back.svg",
  19283. extra: 911/829,
  19284. bottom: 18/929
  19285. }
  19286. },
  19287. maw: {
  19288. height: math.unit(0.6407, "meters"),
  19289. name: "Maw",
  19290. image: {
  19291. source: "./media/characters/claude-delroute/maw.svg"
  19292. }
  19293. },
  19294. },
  19295. [
  19296. {
  19297. name: "Normal",
  19298. height: math.unit(7, "feet"),
  19299. default: true
  19300. },
  19301. {
  19302. name: "Lorge",
  19303. height: math.unit(20, "feet")
  19304. },
  19305. ]
  19306. ))
  19307. characterMakers.push(() => makeCharacter(
  19308. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19309. {
  19310. front: {
  19311. height: math.unit(8 + 4 / 12, "feet"),
  19312. weight: math.unit(600, "lb"),
  19313. name: "Front",
  19314. image: {
  19315. source: "./media/characters/dragonien/front.svg",
  19316. extra: 100 / 94,
  19317. bottom: 3.3 / 103.3445
  19318. }
  19319. },
  19320. back: {
  19321. height: math.unit(8 + 4 / 12, "feet"),
  19322. weight: math.unit(600, "lb"),
  19323. name: "Back",
  19324. image: {
  19325. source: "./media/characters/dragonien/back.svg",
  19326. extra: 776 / 746,
  19327. bottom: 6.4 / 782.0616
  19328. }
  19329. },
  19330. foot: {
  19331. height: math.unit(1.54, "feet"),
  19332. name: "Foot",
  19333. image: {
  19334. source: "./media/characters/dragonien/foot.svg",
  19335. }
  19336. },
  19337. },
  19338. [
  19339. {
  19340. name: "Normal",
  19341. height: math.unit(8 + 4 / 12, "feet"),
  19342. default: true
  19343. },
  19344. {
  19345. name: "Macro",
  19346. height: math.unit(200, "feet")
  19347. },
  19348. {
  19349. name: "Megamacro",
  19350. height: math.unit(1, "mile")
  19351. },
  19352. {
  19353. name: "Gigamacro",
  19354. height: math.unit(1000, "miles")
  19355. },
  19356. ]
  19357. ))
  19358. characterMakers.push(() => makeCharacter(
  19359. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19360. {
  19361. front: {
  19362. height: math.unit(5 + 2 / 12, "feet"),
  19363. weight: math.unit(110, "lb"),
  19364. name: "Front",
  19365. image: {
  19366. source: "./media/characters/desta/front.svg",
  19367. extra: 767 / 726,
  19368. bottom: 11.7 / 779
  19369. }
  19370. },
  19371. back: {
  19372. height: math.unit(5 + 2 / 12, "feet"),
  19373. weight: math.unit(110, "lb"),
  19374. name: "Back",
  19375. image: {
  19376. source: "./media/characters/desta/back.svg",
  19377. extra: 777 / 728,
  19378. bottom: 6 / 784
  19379. }
  19380. },
  19381. frontAlt: {
  19382. height: math.unit(5 + 2 / 12, "feet"),
  19383. weight: math.unit(110, "lb"),
  19384. name: "Front",
  19385. image: {
  19386. source: "./media/characters/desta/front-alt.svg",
  19387. extra: 1482 / 1417
  19388. }
  19389. },
  19390. side: {
  19391. height: math.unit(5 + 2 / 12, "feet"),
  19392. weight: math.unit(110, "lb"),
  19393. name: "Side",
  19394. image: {
  19395. source: "./media/characters/desta/side.svg",
  19396. extra: 2579 / 2491,
  19397. bottom: 0.053
  19398. }
  19399. },
  19400. },
  19401. [
  19402. {
  19403. name: "Micro",
  19404. height: math.unit(6, "inches")
  19405. },
  19406. {
  19407. name: "Normal",
  19408. height: math.unit(5 + 2 / 12, "feet"),
  19409. default: true
  19410. },
  19411. {
  19412. name: "Macro",
  19413. height: math.unit(62, "feet")
  19414. },
  19415. {
  19416. name: "Megamacro",
  19417. height: math.unit(1800, "feet")
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19423. {
  19424. front: {
  19425. height: math.unit(10, "feet"),
  19426. weight: math.unit(700, "lb"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/storm-alystar/front.svg",
  19430. extra: 2112 / 1898,
  19431. bottom: 0.034
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Micro",
  19438. height: math.unit(3.5, "inches")
  19439. },
  19440. {
  19441. name: "Normal",
  19442. height: math.unit(10, "feet"),
  19443. default: true
  19444. },
  19445. {
  19446. name: "Macro",
  19447. height: math.unit(400, "feet")
  19448. },
  19449. {
  19450. name: "Deific",
  19451. height: math.unit(60, "miles")
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19457. {
  19458. front: {
  19459. height: math.unit(2.35, "meters"),
  19460. weight: math.unit(119, "kg"),
  19461. name: "Front",
  19462. image: {
  19463. source: "./media/characters/ilia/front.svg",
  19464. extra: 1285 / 1255,
  19465. bottom: 0.06
  19466. }
  19467. },
  19468. },
  19469. [
  19470. {
  19471. name: "Normal",
  19472. height: math.unit(2.35, "meters")
  19473. },
  19474. {
  19475. name: "Macro",
  19476. height: math.unit(140, "meters"),
  19477. default: true
  19478. },
  19479. {
  19480. name: "Megamacro",
  19481. height: math.unit(100, "miles")
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19487. {
  19488. front: {
  19489. height: math.unit(6 + 5 / 12, "feet"),
  19490. weight: math.unit(190, "lb"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/kingdead/front.svg",
  19494. extra: 1228 / 1177
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Micro",
  19501. height: math.unit(7, "inches")
  19502. },
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(6 + 5 / 12, "feet")
  19506. },
  19507. {
  19508. name: "Macro",
  19509. height: math.unit(150, "feet"),
  19510. default: true
  19511. },
  19512. {
  19513. name: "Megamacro",
  19514. height: math.unit(200, "miles")
  19515. },
  19516. ]
  19517. ))
  19518. characterMakers.push(() => makeCharacter(
  19519. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19520. {
  19521. front: {
  19522. height: math.unit(8, "feet"),
  19523. weight: math.unit(600, "lb"),
  19524. name: "Front",
  19525. image: {
  19526. source: "./media/characters/kyrehx/front.svg",
  19527. extra: 1195 / 1095,
  19528. bottom: 0.034
  19529. }
  19530. },
  19531. },
  19532. [
  19533. {
  19534. name: "Micro",
  19535. height: math.unit(2, "inches")
  19536. },
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(8, "feet"),
  19540. default: true
  19541. },
  19542. {
  19543. name: "Macro",
  19544. height: math.unit(255, "feet")
  19545. },
  19546. ]
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19550. {
  19551. front: {
  19552. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19553. weight: math.unit(184, "lb"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/xang/front.svg",
  19557. extra: 845 / 755
  19558. }
  19559. },
  19560. },
  19561. [
  19562. {
  19563. name: "Normal",
  19564. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19565. default: true
  19566. },
  19567. {
  19568. name: "Macro",
  19569. height: math.unit(0.935 * 146, "feet")
  19570. },
  19571. {
  19572. name: "Megamacro",
  19573. height: math.unit(0.935 * 3, "miles")
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19579. {
  19580. frontDressed: {
  19581. height: math.unit(5 + 7 / 12, "feet"),
  19582. weight: math.unit(140, "lb"),
  19583. name: "Front (Dressed)",
  19584. image: {
  19585. source: "./media/characters/doc-weardno/front-dressed.svg",
  19586. extra: 263 / 234
  19587. }
  19588. },
  19589. backDressed: {
  19590. height: math.unit(5 + 7 / 12, "feet"),
  19591. weight: math.unit(140, "lb"),
  19592. name: "Back (Dressed)",
  19593. image: {
  19594. source: "./media/characters/doc-weardno/back-dressed.svg",
  19595. extra: 266 / 238
  19596. }
  19597. },
  19598. front: {
  19599. height: math.unit(5 + 7 / 12, "feet"),
  19600. weight: math.unit(140, "lb"),
  19601. name: "Front",
  19602. image: {
  19603. source: "./media/characters/doc-weardno/front.svg",
  19604. extra: 254 / 233
  19605. }
  19606. },
  19607. },
  19608. [
  19609. {
  19610. name: "Micro",
  19611. height: math.unit(3, "inches")
  19612. },
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(5 + 7 / 12, "feet"),
  19616. default: true
  19617. },
  19618. {
  19619. name: "Macro",
  19620. height: math.unit(25, "feet")
  19621. },
  19622. {
  19623. name: "Megamacro",
  19624. height: math.unit(2, "miles")
  19625. },
  19626. ]
  19627. ))
  19628. characterMakers.push(() => makeCharacter(
  19629. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19630. {
  19631. front: {
  19632. height: math.unit(6 + 2 / 12, "feet"),
  19633. weight: math.unit(153, "lb"),
  19634. name: "Front",
  19635. image: {
  19636. source: "./media/characters/seth-whilst/front.svg",
  19637. bottom: 0.07
  19638. }
  19639. },
  19640. },
  19641. [
  19642. {
  19643. name: "Micro",
  19644. height: math.unit(5, "inches")
  19645. },
  19646. {
  19647. name: "Normal",
  19648. height: math.unit(6 + 2 / 12, "feet"),
  19649. default: true
  19650. },
  19651. ]
  19652. ))
  19653. characterMakers.push(() => makeCharacter(
  19654. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19655. {
  19656. front: {
  19657. height: math.unit(3, "inches"),
  19658. weight: math.unit(8, "grams"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/pocket-jabari/front.svg",
  19662. extra: 1024 / 974,
  19663. bottom: 0.039
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Minimicro",
  19670. height: math.unit(8, "mm")
  19671. },
  19672. {
  19673. name: "Micro",
  19674. height: math.unit(3, "inches"),
  19675. default: true
  19676. },
  19677. {
  19678. name: "Normal",
  19679. height: math.unit(3, "feet")
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19685. {
  19686. frontDressed: {
  19687. height: math.unit(15, "feet"),
  19688. weight: math.unit(3280, "lb"),
  19689. name: "Front (Dressed)",
  19690. image: {
  19691. source: "./media/characters/sapphy/front-dressed.svg",
  19692. extra: 1951/1654,
  19693. bottom: 194/2145
  19694. },
  19695. form: "anthro",
  19696. default: true
  19697. },
  19698. backDressed: {
  19699. height: math.unit(15, "feet"),
  19700. weight: math.unit(3280, "lb"),
  19701. name: "Back (Dressed)",
  19702. image: {
  19703. source: "./media/characters/sapphy/back-dressed.svg",
  19704. extra: 2058/1918,
  19705. bottom: 125/2183
  19706. },
  19707. form: "anthro"
  19708. },
  19709. frontNude: {
  19710. height: math.unit(15, "feet"),
  19711. weight: math.unit(3280, "lb"),
  19712. name: "Front (Nude)",
  19713. image: {
  19714. source: "./media/characters/sapphy/front-nude.svg",
  19715. extra: 1951/1654,
  19716. bottom: 194/2145
  19717. },
  19718. form: "anthro"
  19719. },
  19720. backNude: {
  19721. height: math.unit(15, "feet"),
  19722. weight: math.unit(3280, "lb"),
  19723. name: "Back (Nude)",
  19724. image: {
  19725. source: "./media/characters/sapphy/back-nude.svg",
  19726. extra: 2058/1918,
  19727. bottom: 125/2183
  19728. },
  19729. form: "anthro"
  19730. },
  19731. full: {
  19732. height: math.unit(15, "feet"),
  19733. weight: math.unit(3280, "lb"),
  19734. name: "Full",
  19735. image: {
  19736. source: "./media/characters/sapphy/full.svg",
  19737. extra: 1396/1317,
  19738. bottom: 44/1440
  19739. },
  19740. form: "anthro"
  19741. },
  19742. dick: {
  19743. height: math.unit(3.8, "feet"),
  19744. name: "Dick",
  19745. image: {
  19746. source: "./media/characters/sapphy/dick.svg"
  19747. },
  19748. form: "anthro"
  19749. },
  19750. feral: {
  19751. height: math.unit(35, "feet"),
  19752. weight: math.unit(160, "tons"),
  19753. name: "Feral",
  19754. image: {
  19755. source: "./media/characters/sapphy/feral.svg",
  19756. extra: 1050/573,
  19757. bottom: 60/1110
  19758. },
  19759. form: "feral",
  19760. default: true
  19761. },
  19762. },
  19763. [
  19764. {
  19765. name: "Normal",
  19766. height: math.unit(15, "feet"),
  19767. form: "anthro"
  19768. },
  19769. {
  19770. name: "Casual Macro",
  19771. height: math.unit(120, "feet"),
  19772. form: "anthro"
  19773. },
  19774. {
  19775. name: "Macro",
  19776. height: math.unit(2150, "feet"),
  19777. default: true,
  19778. form: "anthro"
  19779. },
  19780. {
  19781. name: "Megamacro",
  19782. height: math.unit(8, "miles"),
  19783. form: "anthro"
  19784. },
  19785. {
  19786. name: "Galaxy Mom",
  19787. height: math.unit(6, "megalightyears"),
  19788. form: "anthro"
  19789. },
  19790. {
  19791. name: "Normal",
  19792. height: math.unit(35, "feet"),
  19793. form: "feral",
  19794. default: true
  19795. },
  19796. {
  19797. name: "Macro",
  19798. height: math.unit(300, "feet"),
  19799. form: "feral"
  19800. },
  19801. {
  19802. name: "Galaxy Mom",
  19803. height: math.unit(10, "megalightyears"),
  19804. form: "feral"
  19805. },
  19806. ],
  19807. {
  19808. "anthro": {
  19809. name: "Anthro",
  19810. default: true
  19811. },
  19812. "feral": {
  19813. name: "Feral"
  19814. }
  19815. }
  19816. ))
  19817. characterMakers.push(() => makeCharacter(
  19818. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19819. {
  19820. front: {
  19821. height: math.unit(6, "feet"),
  19822. weight: math.unit(170, "lb"),
  19823. name: "Front",
  19824. image: {
  19825. source: "./media/characters/kiro/front.svg",
  19826. extra: 1064 / 1012,
  19827. bottom: 0.052
  19828. }
  19829. },
  19830. },
  19831. [
  19832. {
  19833. name: "Micro",
  19834. height: math.unit(6, "inches")
  19835. },
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(6, "feet"),
  19839. default: true
  19840. },
  19841. {
  19842. name: "Macro",
  19843. height: math.unit(72, "feet")
  19844. },
  19845. ]
  19846. ))
  19847. characterMakers.push(() => makeCharacter(
  19848. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19849. {
  19850. front: {
  19851. height: math.unit(5 + 9 / 12, "feet"),
  19852. weight: math.unit(175, "lb"),
  19853. name: "Front",
  19854. image: {
  19855. source: "./media/characters/irishfox/front.svg",
  19856. extra: 1912 / 1680,
  19857. bottom: 0.02
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Nano",
  19864. height: math.unit(1, "mm")
  19865. },
  19866. {
  19867. name: "Micro",
  19868. height: math.unit(2, "inches")
  19869. },
  19870. {
  19871. name: "Normal",
  19872. height: math.unit(5 + 9 / 12, "feet"),
  19873. default: true
  19874. },
  19875. {
  19876. name: "Macro",
  19877. height: math.unit(45, "feet")
  19878. },
  19879. ]
  19880. ))
  19881. characterMakers.push(() => makeCharacter(
  19882. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19883. {
  19884. front: {
  19885. height: math.unit(6 + 1 / 12, "feet"),
  19886. weight: math.unit(75, "lb"),
  19887. name: "Front",
  19888. image: {
  19889. source: "./media/characters/aronai-sieyes/front.svg",
  19890. extra: 1532/1450,
  19891. bottom: 42/1574
  19892. }
  19893. },
  19894. side: {
  19895. height: math.unit(6 + 1 / 12, "feet"),
  19896. weight: math.unit(75, "lb"),
  19897. name: "Side",
  19898. image: {
  19899. source: "./media/characters/aronai-sieyes/side.svg",
  19900. extra: 1422/1365,
  19901. bottom: 148/1570
  19902. }
  19903. },
  19904. back: {
  19905. height: math.unit(6 + 1 / 12, "feet"),
  19906. weight: math.unit(75, "lb"),
  19907. name: "Back",
  19908. image: {
  19909. source: "./media/characters/aronai-sieyes/back.svg",
  19910. extra: 1526/1464,
  19911. bottom: 51/1577
  19912. }
  19913. },
  19914. dressed: {
  19915. height: math.unit(6 + 1 / 12, "feet"),
  19916. weight: math.unit(75, "lb"),
  19917. name: "Dressed",
  19918. image: {
  19919. source: "./media/characters/aronai-sieyes/dressed.svg",
  19920. extra: 1559/1483,
  19921. bottom: 39/1598
  19922. }
  19923. },
  19924. slit: {
  19925. height: math.unit(1.3, "feet"),
  19926. name: "Slit",
  19927. image: {
  19928. source: "./media/characters/aronai-sieyes/slit.svg"
  19929. }
  19930. },
  19931. slitSpread: {
  19932. height: math.unit(0.9, "feet"),
  19933. name: "Slit (Spread)",
  19934. image: {
  19935. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19936. }
  19937. },
  19938. rump: {
  19939. height: math.unit(1.3, "feet"),
  19940. name: "Rump",
  19941. image: {
  19942. source: "./media/characters/aronai-sieyes/rump.svg"
  19943. }
  19944. },
  19945. maw: {
  19946. height: math.unit(1.25, "feet"),
  19947. name: "Maw",
  19948. image: {
  19949. source: "./media/characters/aronai-sieyes/maw.svg"
  19950. }
  19951. },
  19952. feral: {
  19953. height: math.unit(18, "feet"),
  19954. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19955. name: "Feral",
  19956. image: {
  19957. source: "./media/characters/aronai-sieyes/feral.svg",
  19958. extra: 1530 / 1240,
  19959. bottom: 0.035
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Micro",
  19966. height: math.unit(2, "inches")
  19967. },
  19968. {
  19969. name: "Normal",
  19970. height: math.unit(6 + 1 / 12, "feet"),
  19971. default: true
  19972. }
  19973. ]
  19974. ))
  19975. characterMakers.push(() => makeCharacter(
  19976. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19977. {
  19978. front: {
  19979. height: math.unit(12, "feet"),
  19980. weight: math.unit(410, "kg"),
  19981. name: "Front",
  19982. image: {
  19983. source: "./media/characters/xuna/front.svg",
  19984. extra: 2184 / 1980
  19985. }
  19986. },
  19987. side: {
  19988. height: math.unit(12, "feet"),
  19989. weight: math.unit(410, "kg"),
  19990. name: "Side",
  19991. image: {
  19992. source: "./media/characters/xuna/side.svg",
  19993. extra: 2184 / 1980
  19994. }
  19995. },
  19996. back: {
  19997. height: math.unit(12, "feet"),
  19998. weight: math.unit(410, "kg"),
  19999. name: "Back",
  20000. image: {
  20001. source: "./media/characters/xuna/back.svg",
  20002. extra: 2184 / 1980
  20003. }
  20004. },
  20005. },
  20006. [
  20007. {
  20008. name: "Nano glow",
  20009. height: math.unit(10, "nm")
  20010. },
  20011. {
  20012. name: "Micro floof",
  20013. height: math.unit(0.3, "m")
  20014. },
  20015. {
  20016. name: "Huggable softy boi",
  20017. height: math.unit(3.6576, "m"),
  20018. default: true
  20019. },
  20020. {
  20021. name: "Admirable floof",
  20022. height: math.unit(80, "meters")
  20023. },
  20024. {
  20025. name: "Gentle macro",
  20026. height: math.unit(300, "meters")
  20027. },
  20028. {
  20029. name: "Very careful floof",
  20030. height: math.unit(3200, "meters")
  20031. },
  20032. {
  20033. name: "The mega floof",
  20034. height: math.unit(36000, "meters")
  20035. },
  20036. {
  20037. name: "Giga-fur-Wicker",
  20038. height: math.unit(4800000, "meters")
  20039. },
  20040. {
  20041. name: "Licky world",
  20042. height: math.unit(20000000, "meters")
  20043. },
  20044. {
  20045. name: "Floofy cyan sun",
  20046. height: math.unit(1500000000, "meters")
  20047. },
  20048. {
  20049. name: "Milky Wicker",
  20050. height: math.unit(1000000000000000000000, "meters")
  20051. },
  20052. {
  20053. name: "The observing Wicker",
  20054. height: math.unit(999999999999999999999999999, "meters")
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20060. {
  20061. front: {
  20062. height: math.unit(5 + 9 / 12, "feet"),
  20063. weight: math.unit(150, "lb"),
  20064. name: "Front",
  20065. image: {
  20066. source: "./media/characters/arokha-sieyes/front.svg",
  20067. extra: 1425 / 1284,
  20068. bottom: 0.05
  20069. }
  20070. },
  20071. },
  20072. [
  20073. {
  20074. name: "Normal",
  20075. height: math.unit(5 + 9 / 12, "feet")
  20076. },
  20077. {
  20078. name: "Macro",
  20079. height: math.unit(30, "meters"),
  20080. default: true
  20081. },
  20082. ]
  20083. ))
  20084. characterMakers.push(() => makeCharacter(
  20085. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20086. {
  20087. front: {
  20088. height: math.unit(6, "feet"),
  20089. weight: math.unit(180, "lb"),
  20090. name: "Front",
  20091. image: {
  20092. source: "./media/characters/arokh-sieyes/front.svg",
  20093. extra: 1830 / 1769,
  20094. bottom: 0.01
  20095. }
  20096. },
  20097. },
  20098. [
  20099. {
  20100. name: "Normal",
  20101. height: math.unit(6, "feet")
  20102. },
  20103. {
  20104. name: "Macro",
  20105. height: math.unit(30, "meters"),
  20106. default: true
  20107. },
  20108. ]
  20109. ))
  20110. characterMakers.push(() => makeCharacter(
  20111. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20112. {
  20113. side: {
  20114. height: math.unit(13 + 1 / 12, "feet"),
  20115. weight: math.unit(8.5, "tonnes"),
  20116. name: "Side",
  20117. image: {
  20118. source: "./media/characters/goldeneye/side.svg",
  20119. extra: 1182 / 778,
  20120. bottom: 0.067
  20121. }
  20122. },
  20123. paw: {
  20124. height: math.unit(3.4, "feet"),
  20125. name: "Paw",
  20126. image: {
  20127. source: "./media/characters/goldeneye/paw.svg"
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Normal",
  20134. height: math.unit(13 + 1 / 12, "feet"),
  20135. default: true
  20136. },
  20137. ]
  20138. ))
  20139. characterMakers.push(() => makeCharacter(
  20140. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20141. {
  20142. front: {
  20143. height: math.unit(6 + 1 / 12, "feet"),
  20144. weight: math.unit(210, "lb"),
  20145. name: "Front",
  20146. image: {
  20147. source: "./media/characters/leonardo-lycheborne/front.svg",
  20148. extra: 776/723,
  20149. bottom: 34/810
  20150. }
  20151. },
  20152. side: {
  20153. height: math.unit(6 + 1 / 12, "feet"),
  20154. weight: math.unit(210, "lb"),
  20155. name: "Side",
  20156. image: {
  20157. source: "./media/characters/leonardo-lycheborne/side.svg",
  20158. extra: 780/728,
  20159. bottom: 12/792
  20160. }
  20161. },
  20162. back: {
  20163. height: math.unit(6 + 1 / 12, "feet"),
  20164. weight: math.unit(210, "lb"),
  20165. name: "Back",
  20166. image: {
  20167. source: "./media/characters/leonardo-lycheborne/back.svg",
  20168. extra: 775/721,
  20169. bottom: 17/792
  20170. }
  20171. },
  20172. hand: {
  20173. height: math.unit(1.08, "feet"),
  20174. name: "Hand",
  20175. image: {
  20176. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20177. }
  20178. },
  20179. foot: {
  20180. height: math.unit(1.32, "feet"),
  20181. name: "Foot",
  20182. image: {
  20183. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20184. }
  20185. },
  20186. maw: {
  20187. height: math.unit(1, "feet"),
  20188. name: "Maw",
  20189. image: {
  20190. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20191. }
  20192. },
  20193. were: {
  20194. height: math.unit(20, "feet"),
  20195. weight: math.unit(7800, "lb"),
  20196. name: "Were",
  20197. image: {
  20198. source: "./media/characters/leonardo-lycheborne/were.svg",
  20199. extra: 1224/1165,
  20200. bottom: 72/1296
  20201. }
  20202. },
  20203. feral: {
  20204. height: math.unit(7.5, "feet"),
  20205. weight: math.unit(600, "lb"),
  20206. name: "Feral",
  20207. image: {
  20208. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20209. extra: 797/702,
  20210. bottom: 139/936
  20211. }
  20212. },
  20213. taur: {
  20214. height: math.unit(11, "feet"),
  20215. weight: math.unit(3300, "lb"),
  20216. name: "Taur",
  20217. image: {
  20218. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20219. extra: 1271/1197,
  20220. bottom: 47/1318
  20221. }
  20222. },
  20223. barghest: {
  20224. height: math.unit(11, "feet"),
  20225. weight: math.unit(1300, "lb"),
  20226. name: "Barghest",
  20227. image: {
  20228. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20229. extra: 1291/1204,
  20230. bottom: 37/1328
  20231. }
  20232. },
  20233. dick: {
  20234. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20235. name: "Dick",
  20236. image: {
  20237. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20238. }
  20239. },
  20240. dickWere: {
  20241. height: math.unit((20) / 3.8, "feet"),
  20242. name: "Dick (Were)",
  20243. image: {
  20244. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20245. }
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(6 + 1 / 12, "feet"),
  20252. default: true
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20258. {
  20259. front: {
  20260. height: math.unit(10, "feet"),
  20261. weight: math.unit(350, "lb"),
  20262. name: "Front",
  20263. image: {
  20264. source: "./media/characters/jet/front.svg",
  20265. extra: 2050 / 1980,
  20266. bottom: 0.013
  20267. }
  20268. },
  20269. back: {
  20270. height: math.unit(10, "feet"),
  20271. weight: math.unit(350, "lb"),
  20272. name: "Back",
  20273. image: {
  20274. source: "./media/characters/jet/back.svg",
  20275. extra: 2050 / 1980,
  20276. bottom: 0.013
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Micro",
  20283. height: math.unit(6, "inches")
  20284. },
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(10, "feet"),
  20288. default: true
  20289. },
  20290. {
  20291. name: "Macro",
  20292. height: math.unit(100, "feet")
  20293. },
  20294. ]
  20295. ))
  20296. characterMakers.push(() => makeCharacter(
  20297. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20298. {
  20299. front: {
  20300. height: math.unit(15, "feet"),
  20301. weight: math.unit(2800, "lb"),
  20302. name: "Front",
  20303. image: {
  20304. source: "./media/characters/tanarath/front.svg",
  20305. extra: 2392 / 2220,
  20306. bottom: 0.03
  20307. }
  20308. },
  20309. back: {
  20310. height: math.unit(15, "feet"),
  20311. weight: math.unit(2800, "lb"),
  20312. name: "Back",
  20313. image: {
  20314. source: "./media/characters/tanarath/back.svg",
  20315. extra: 2392 / 2220,
  20316. bottom: 0.03
  20317. }
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Normal",
  20323. height: math.unit(15, "feet"),
  20324. default: true
  20325. },
  20326. ]
  20327. ))
  20328. characterMakers.push(() => makeCharacter(
  20329. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20330. {
  20331. front: {
  20332. height: math.unit(7 + 1 / 12, "feet"),
  20333. weight: math.unit(175, "lb"),
  20334. name: "Front",
  20335. image: {
  20336. source: "./media/characters/patty-cattybatty/front.svg",
  20337. extra: 908 / 874,
  20338. bottom: 0.025
  20339. }
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Micro",
  20345. height: math.unit(1, "inch")
  20346. },
  20347. {
  20348. name: "Normal",
  20349. height: math.unit(7 + 1 / 12, "feet")
  20350. },
  20351. {
  20352. name: "Mini Macro",
  20353. height: math.unit(155, "feet")
  20354. },
  20355. {
  20356. name: "Macro",
  20357. height: math.unit(1077, "feet")
  20358. },
  20359. {
  20360. name: "Mega Macro",
  20361. height: math.unit(47650, "feet"),
  20362. default: true
  20363. },
  20364. {
  20365. name: "Giga Macro",
  20366. height: math.unit(440, "miles")
  20367. },
  20368. {
  20369. name: "Tera Macro",
  20370. height: math.unit(8700, "miles")
  20371. },
  20372. {
  20373. name: "Planetary Macro",
  20374. height: math.unit(32700, "miles")
  20375. },
  20376. {
  20377. name: "Solar Macro",
  20378. height: math.unit(550000, "miles")
  20379. },
  20380. {
  20381. name: "Celestial Macro",
  20382. height: math.unit(2.5, "AU")
  20383. },
  20384. ]
  20385. ))
  20386. characterMakers.push(() => makeCharacter(
  20387. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20388. {
  20389. front: {
  20390. height: math.unit(4 + 5 / 12, "feet"),
  20391. weight: math.unit(90, "lb"),
  20392. name: "Front",
  20393. image: {
  20394. source: "./media/characters/cappu/front.svg",
  20395. extra: 1247 / 1152,
  20396. bottom: 0.012
  20397. }
  20398. },
  20399. },
  20400. [
  20401. {
  20402. name: "Normal",
  20403. height: math.unit(4 + 5 / 12, "feet"),
  20404. default: true
  20405. },
  20406. ]
  20407. ))
  20408. characterMakers.push(() => makeCharacter(
  20409. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20410. {
  20411. frontDressed: {
  20412. height: math.unit(70, "cm"),
  20413. weight: math.unit(6, "kg"),
  20414. name: "Front (Dressed)",
  20415. image: {
  20416. source: "./media/characters/sebi/front-dressed.svg",
  20417. extra: 713.5 / 686.5,
  20418. bottom: 0.003
  20419. }
  20420. },
  20421. front: {
  20422. height: math.unit(70, "cm"),
  20423. weight: math.unit(5, "kg"),
  20424. name: "Front",
  20425. image: {
  20426. source: "./media/characters/sebi/front.svg",
  20427. extra: 713.5 / 686.5,
  20428. bottom: 0.003
  20429. }
  20430. }
  20431. },
  20432. [
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(70, "cm"),
  20436. default: true
  20437. },
  20438. {
  20439. name: "Macro",
  20440. height: math.unit(8, "meters")
  20441. },
  20442. ]
  20443. ))
  20444. characterMakers.push(() => makeCharacter(
  20445. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20446. {
  20447. front: {
  20448. height: math.unit(6, "feet"),
  20449. weight: math.unit(150, "lb"),
  20450. name: "Front",
  20451. image: {
  20452. source: "./media/characters/typhek/front.svg",
  20453. extra: 1948 / 1929,
  20454. bottom: 0.025
  20455. }
  20456. },
  20457. side: {
  20458. height: math.unit(6, "feet"),
  20459. weight: math.unit(150, "lb"),
  20460. name: "Side",
  20461. image: {
  20462. source: "./media/characters/typhek/side.svg",
  20463. extra: 2034 / 2010,
  20464. bottom: 0.003
  20465. }
  20466. },
  20467. back: {
  20468. height: math.unit(6, "feet"),
  20469. weight: math.unit(150, "lb"),
  20470. name: "Back",
  20471. image: {
  20472. source: "./media/characters/typhek/back.svg",
  20473. extra: 2005 / 1978,
  20474. bottom: 0.004
  20475. }
  20476. },
  20477. palm: {
  20478. height: math.unit(1.2, "feet"),
  20479. name: "Palm",
  20480. image: {
  20481. source: "./media/characters/typhek/palm.svg"
  20482. }
  20483. },
  20484. fist: {
  20485. height: math.unit(1.1, "feet"),
  20486. name: "Fist",
  20487. image: {
  20488. source: "./media/characters/typhek/fist.svg"
  20489. }
  20490. },
  20491. foot: {
  20492. height: math.unit(1.57, "feet"),
  20493. name: "Foot",
  20494. image: {
  20495. source: "./media/characters/typhek/foot.svg"
  20496. }
  20497. },
  20498. sole: {
  20499. height: math.unit(2.05, "feet"),
  20500. name: "Sole",
  20501. image: {
  20502. source: "./media/characters/typhek/sole.svg"
  20503. }
  20504. },
  20505. },
  20506. [
  20507. {
  20508. name: "Macro",
  20509. height: math.unit(40, "stories"),
  20510. default: true
  20511. },
  20512. {
  20513. name: "Megamacro",
  20514. height: math.unit(1, "mile")
  20515. },
  20516. {
  20517. name: "Gigamacro",
  20518. height: math.unit(4000, "solarradii")
  20519. },
  20520. {
  20521. name: "Universal",
  20522. height: math.unit(1.1, "universes")
  20523. }
  20524. ]
  20525. ))
  20526. characterMakers.push(() => makeCharacter(
  20527. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20528. {
  20529. side: {
  20530. height: math.unit(5 + 7 / 12, "feet"),
  20531. weight: math.unit(150, "lb"),
  20532. name: "Side",
  20533. image: {
  20534. source: "./media/characters/kassy/side.svg",
  20535. extra: 1280 / 1225,
  20536. bottom: 0.002
  20537. }
  20538. },
  20539. front: {
  20540. height: math.unit(5 + 7 / 12, "feet"),
  20541. weight: math.unit(150, "lb"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/kassy/front.svg",
  20545. extra: 1280 / 1225,
  20546. bottom: 0.025
  20547. }
  20548. },
  20549. back: {
  20550. height: math.unit(5 + 7 / 12, "feet"),
  20551. weight: math.unit(150, "lb"),
  20552. name: "Back",
  20553. image: {
  20554. source: "./media/characters/kassy/back.svg",
  20555. extra: 1280 / 1225,
  20556. bottom: 0.002
  20557. }
  20558. },
  20559. foot: {
  20560. height: math.unit(1.266, "feet"),
  20561. name: "Foot",
  20562. image: {
  20563. source: "./media/characters/kassy/foot.svg"
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(5 + 7 / 12, "feet")
  20571. },
  20572. {
  20573. name: "Macro",
  20574. height: math.unit(137, "feet"),
  20575. default: true
  20576. },
  20577. {
  20578. name: "Megamacro",
  20579. height: math.unit(1, "mile")
  20580. },
  20581. ]
  20582. ))
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20585. {
  20586. front: {
  20587. height: math.unit(6 + 1 / 12, "feet"),
  20588. weight: math.unit(200, "lb"),
  20589. name: "Front",
  20590. image: {
  20591. source: "./media/characters/neil/front.svg",
  20592. extra: 1326 / 1250,
  20593. bottom: 0.023
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(6 + 1 / 12, "feet"),
  20601. default: true
  20602. },
  20603. {
  20604. name: "Macro",
  20605. height: math.unit(200, "feet")
  20606. },
  20607. ]
  20608. ))
  20609. characterMakers.push(() => makeCharacter(
  20610. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20611. {
  20612. front: {
  20613. height: math.unit(5 + 9 / 12, "feet"),
  20614. weight: math.unit(190, "lb"),
  20615. name: "Front",
  20616. image: {
  20617. source: "./media/characters/atticus/front.svg",
  20618. extra: 2934 / 2785,
  20619. bottom: 0.025
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(5 + 9 / 12, "feet"),
  20627. default: true
  20628. },
  20629. {
  20630. name: "Macro",
  20631. height: math.unit(180, "feet")
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20637. {
  20638. side: {
  20639. height: math.unit(9, "feet"),
  20640. weight: math.unit(650, "lb"),
  20641. name: "Side",
  20642. image: {
  20643. source: "./media/characters/milo/side.svg",
  20644. extra: 2644 / 2310,
  20645. bottom: 0.032
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Normal",
  20652. height: math.unit(9, "feet"),
  20653. default: true
  20654. },
  20655. {
  20656. name: "Macro",
  20657. height: math.unit(300, "feet")
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20663. {
  20664. side: {
  20665. height: math.unit(8, "meters"),
  20666. weight: math.unit(90000, "kg"),
  20667. name: "Side",
  20668. image: {
  20669. source: "./media/characters/ijzer/side.svg",
  20670. extra: 2756 / 1600,
  20671. bottom: 0.01
  20672. }
  20673. },
  20674. },
  20675. [
  20676. {
  20677. name: "Small",
  20678. height: math.unit(3, "meters")
  20679. },
  20680. {
  20681. name: "Normal",
  20682. height: math.unit(8, "meters"),
  20683. default: true
  20684. },
  20685. {
  20686. name: "Normal+",
  20687. height: math.unit(10, "meters")
  20688. },
  20689. {
  20690. name: "Bigger",
  20691. height: math.unit(24, "meters")
  20692. },
  20693. {
  20694. name: "Huge",
  20695. height: math.unit(80, "meters")
  20696. },
  20697. ]
  20698. ))
  20699. characterMakers.push(() => makeCharacter(
  20700. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20701. {
  20702. front: {
  20703. height: math.unit(6 + 2 / 12, "feet"),
  20704. weight: math.unit(153, "lb"),
  20705. name: "Front",
  20706. image: {
  20707. source: "./media/characters/luca-cervicum/front.svg",
  20708. extra: 370 / 327,
  20709. bottom: 0.015
  20710. }
  20711. },
  20712. back: {
  20713. height: math.unit(6 + 2 / 12, "feet"),
  20714. weight: math.unit(153, "lb"),
  20715. name: "Back",
  20716. image: {
  20717. source: "./media/characters/luca-cervicum/back.svg",
  20718. extra: 367 / 333,
  20719. bottom: 0.005
  20720. }
  20721. },
  20722. frontGear: {
  20723. height: math.unit(6 + 2 / 12, "feet"),
  20724. weight: math.unit(173, "lb"),
  20725. name: "Front (Gear)",
  20726. image: {
  20727. source: "./media/characters/luca-cervicum/front-gear.svg",
  20728. extra: 377 / 333,
  20729. bottom: 0.006
  20730. }
  20731. },
  20732. },
  20733. [
  20734. {
  20735. name: "Normal",
  20736. height: math.unit(6 + 2 / 12, "feet"),
  20737. default: true
  20738. },
  20739. ]
  20740. ))
  20741. characterMakers.push(() => makeCharacter(
  20742. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20743. {
  20744. front: {
  20745. height: math.unit(6 + 1 / 12, "feet"),
  20746. weight: math.unit(304, "lb"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/oliver/front.svg",
  20750. extra: 157 / 143,
  20751. bottom: 0.08
  20752. }
  20753. },
  20754. },
  20755. [
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(6 + 1 / 12, "feet"),
  20759. default: true
  20760. },
  20761. ]
  20762. ))
  20763. characterMakers.push(() => makeCharacter(
  20764. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20765. {
  20766. front: {
  20767. height: math.unit(5 + 7 / 12, "feet"),
  20768. weight: math.unit(140, "lb"),
  20769. name: "Front",
  20770. image: {
  20771. source: "./media/characters/shane/front.svg",
  20772. extra: 304 / 289,
  20773. bottom: 0.005
  20774. }
  20775. },
  20776. },
  20777. [
  20778. {
  20779. name: "Normal",
  20780. height: math.unit(5 + 7 / 12, "feet"),
  20781. default: true
  20782. },
  20783. ]
  20784. ))
  20785. characterMakers.push(() => makeCharacter(
  20786. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20787. {
  20788. front: {
  20789. height: math.unit(5 + 9 / 12, "feet"),
  20790. weight: math.unit(178, "lb"),
  20791. name: "Front",
  20792. image: {
  20793. source: "./media/characters/shin/front.svg",
  20794. extra: 159 / 151,
  20795. bottom: 0.015
  20796. }
  20797. },
  20798. },
  20799. [
  20800. {
  20801. name: "Normal",
  20802. height: math.unit(5 + 9 / 12, "feet"),
  20803. default: true
  20804. },
  20805. ]
  20806. ))
  20807. characterMakers.push(() => makeCharacter(
  20808. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20809. {
  20810. front: {
  20811. height: math.unit(5 + 10 / 12, "feet"),
  20812. weight: math.unit(168, "lb"),
  20813. name: "Front",
  20814. image: {
  20815. source: "./media/characters/xerxes/front.svg",
  20816. extra: 282 / 260,
  20817. bottom: 0.045
  20818. }
  20819. },
  20820. },
  20821. [
  20822. {
  20823. name: "Normal",
  20824. height: math.unit(5 + 10 / 12, "feet"),
  20825. default: true
  20826. },
  20827. ]
  20828. ))
  20829. characterMakers.push(() => makeCharacter(
  20830. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20831. {
  20832. front: {
  20833. height: math.unit(6 + 7 / 12, "feet"),
  20834. weight: math.unit(208, "lb"),
  20835. name: "Front",
  20836. image: {
  20837. source: "./media/characters/chaska/front.svg",
  20838. extra: 332 / 319,
  20839. bottom: 0.015
  20840. }
  20841. },
  20842. },
  20843. [
  20844. {
  20845. name: "Normal",
  20846. height: math.unit(6 + 7 / 12, "feet"),
  20847. default: true
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20853. {
  20854. front: {
  20855. height: math.unit(5 + 8 / 12, "feet"),
  20856. weight: math.unit(208, "lb"),
  20857. name: "Front",
  20858. image: {
  20859. source: "./media/characters/enuk/front.svg",
  20860. extra: 437 / 406,
  20861. bottom: 0.02
  20862. }
  20863. },
  20864. },
  20865. [
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(5 + 8 / 12, "feet"),
  20869. default: true
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20875. {
  20876. front: {
  20877. height: math.unit(5 + 10 / 12, "feet"),
  20878. weight: math.unit(252, "lb"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/bruun/front.svg",
  20882. extra: 197 / 187,
  20883. bottom: 0.012
  20884. }
  20885. },
  20886. },
  20887. [
  20888. {
  20889. name: "Normal",
  20890. height: math.unit(5 + 10 / 12, "feet"),
  20891. default: true
  20892. },
  20893. ]
  20894. ))
  20895. characterMakers.push(() => makeCharacter(
  20896. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20897. {
  20898. front: {
  20899. height: math.unit(6 + 10 / 12, "feet"),
  20900. weight: math.unit(255, "lb"),
  20901. name: "Front",
  20902. image: {
  20903. source: "./media/characters/alexeev/front.svg",
  20904. extra: 213 / 200,
  20905. bottom: 0.05
  20906. }
  20907. },
  20908. },
  20909. [
  20910. {
  20911. name: "Normal",
  20912. height: math.unit(6 + 10 / 12, "feet"),
  20913. default: true
  20914. },
  20915. ]
  20916. ))
  20917. characterMakers.push(() => makeCharacter(
  20918. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20919. {
  20920. front: {
  20921. height: math.unit(2 + 8 / 12, "feet"),
  20922. weight: math.unit(22, "lb"),
  20923. name: "Front",
  20924. image: {
  20925. source: "./media/characters/evelyn/front.svg",
  20926. extra: 208 / 180
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(2 + 8 / 12, "feet"),
  20934. default: true
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20940. {
  20941. front: {
  20942. height: math.unit(5 + 9 / 12, "feet"),
  20943. weight: math.unit(139, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/inca/front.svg",
  20947. extra: 294 / 291,
  20948. bottom: 0.03
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(5 + 9 / 12, "feet"),
  20956. default: true
  20957. },
  20958. ]
  20959. ))
  20960. characterMakers.push(() => makeCharacter(
  20961. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20962. {
  20963. front: {
  20964. height: math.unit(6 + 3 / 12, "feet"),
  20965. weight: math.unit(185, "lb"),
  20966. name: "Front",
  20967. image: {
  20968. source: "./media/characters/mera/front.svg",
  20969. extra: 291 / 277,
  20970. bottom: 0.03
  20971. }
  20972. },
  20973. },
  20974. [
  20975. {
  20976. name: "Normal",
  20977. height: math.unit(6 + 3 / 12, "feet"),
  20978. default: true
  20979. },
  20980. ]
  20981. ))
  20982. characterMakers.push(() => makeCharacter(
  20983. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20984. {
  20985. front: {
  20986. height: math.unit(6 + 7 / 12, "feet"),
  20987. weight: math.unit(160, "lb"),
  20988. name: "Front",
  20989. image: {
  20990. source: "./media/characters/ceres/front.svg",
  20991. extra: 1023 / 950,
  20992. bottom: 0.027
  20993. }
  20994. },
  20995. back: {
  20996. height: math.unit(6 + 7 / 12, "feet"),
  20997. weight: math.unit(160, "lb"),
  20998. name: "Back",
  20999. image: {
  21000. source: "./media/characters/ceres/back.svg",
  21001. extra: 1023 / 950
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(6 + 7 / 12, "feet"),
  21009. default: true
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21015. {
  21016. front: {
  21017. height: math.unit(5 + 10 / 12, "feet"),
  21018. weight: math.unit(150, "lb"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/kris/front.svg",
  21022. extra: 885 / 803,
  21023. bottom: 0.03
  21024. }
  21025. },
  21026. },
  21027. [
  21028. {
  21029. name: "Normal",
  21030. height: math.unit(5 + 10 / 12, "feet"),
  21031. default: true
  21032. },
  21033. ]
  21034. ))
  21035. characterMakers.push(() => makeCharacter(
  21036. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21037. {
  21038. front: {
  21039. height: math.unit(7, "feet"),
  21040. weight: math.unit(120, "kg"),
  21041. name: "Front",
  21042. image: {
  21043. source: "./media/characters/taluthus/front.svg",
  21044. extra: 903 / 833,
  21045. bottom: 0.015
  21046. }
  21047. },
  21048. },
  21049. [
  21050. {
  21051. name: "Normal",
  21052. height: math.unit(7, "feet"),
  21053. default: true
  21054. },
  21055. {
  21056. name: "Macro",
  21057. height: math.unit(300, "feet")
  21058. },
  21059. ]
  21060. ))
  21061. characterMakers.push(() => makeCharacter(
  21062. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21063. {
  21064. front: {
  21065. height: math.unit(5 + 9 / 12, "feet"),
  21066. weight: math.unit(145, "lb"),
  21067. name: "Front",
  21068. image: {
  21069. source: "./media/characters/dawn/front.svg",
  21070. extra: 2094 / 2016,
  21071. bottom: 0.025
  21072. }
  21073. },
  21074. back: {
  21075. height: math.unit(5 + 9 / 12, "feet"),
  21076. weight: math.unit(160, "lb"),
  21077. name: "Back",
  21078. image: {
  21079. source: "./media/characters/dawn/back.svg",
  21080. extra: 2112 / 2080,
  21081. bottom: 0.005
  21082. }
  21083. },
  21084. },
  21085. [
  21086. {
  21087. name: "Normal",
  21088. height: math.unit(6 + 7 / 12, "feet"),
  21089. default: true
  21090. },
  21091. ]
  21092. ))
  21093. characterMakers.push(() => makeCharacter(
  21094. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21095. {
  21096. anthro: {
  21097. height: math.unit(8 + 3 / 12, "feet"),
  21098. weight: math.unit(450, "lb"),
  21099. name: "Anthro",
  21100. image: {
  21101. source: "./media/characters/arador/anthro.svg",
  21102. extra: 1835 / 1718,
  21103. bottom: 0.025
  21104. }
  21105. },
  21106. feral: {
  21107. height: math.unit(4, "feet"),
  21108. weight: math.unit(200, "lb"),
  21109. name: "Feral",
  21110. image: {
  21111. source: "./media/characters/arador/feral.svg",
  21112. extra: 1683 / 1514,
  21113. bottom: 0.07
  21114. }
  21115. },
  21116. },
  21117. [
  21118. {
  21119. name: "Normal",
  21120. height: math.unit(8 + 3 / 12, "feet")
  21121. },
  21122. {
  21123. name: "Macro",
  21124. height: math.unit(82.5, "feet"),
  21125. default: true
  21126. },
  21127. ]
  21128. ))
  21129. characterMakers.push(() => makeCharacter(
  21130. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21131. {
  21132. front: {
  21133. height: math.unit(5 + 10 / 12, "feet"),
  21134. weight: math.unit(125, "lb"),
  21135. name: "Front",
  21136. image: {
  21137. source: "./media/characters/dharsi/front.svg",
  21138. extra: 716 / 630,
  21139. bottom: 0.035
  21140. }
  21141. },
  21142. },
  21143. [
  21144. {
  21145. name: "Nano",
  21146. height: math.unit(100, "nm")
  21147. },
  21148. {
  21149. name: "Micro",
  21150. height: math.unit(2, "inches")
  21151. },
  21152. {
  21153. name: "Normal",
  21154. height: math.unit(5 + 10 / 12, "feet"),
  21155. default: true
  21156. },
  21157. {
  21158. name: "Macro",
  21159. height: math.unit(1000, "feet")
  21160. },
  21161. {
  21162. name: "Megamacro",
  21163. height: math.unit(10, "miles")
  21164. },
  21165. {
  21166. name: "Gigamacro",
  21167. height: math.unit(3000, "miles")
  21168. },
  21169. {
  21170. name: "Teramacro",
  21171. height: math.unit(500000, "miles")
  21172. },
  21173. {
  21174. name: "Teramacro+",
  21175. height: math.unit(30, "galaxies")
  21176. },
  21177. ]
  21178. ))
  21179. characterMakers.push(() => makeCharacter(
  21180. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21181. {
  21182. front: {
  21183. height: math.unit(6, "feet"),
  21184. weight: math.unit(150, "lb"),
  21185. name: "Front",
  21186. image: {
  21187. source: "./media/characters/deathy/front.svg",
  21188. extra: 1552 / 1463,
  21189. bottom: 0.025
  21190. }
  21191. },
  21192. side: {
  21193. height: math.unit(6, "feet"),
  21194. weight: math.unit(150, "lb"),
  21195. name: "Side",
  21196. image: {
  21197. source: "./media/characters/deathy/side.svg",
  21198. extra: 1604 / 1455,
  21199. bottom: 0.025
  21200. }
  21201. },
  21202. back: {
  21203. height: math.unit(6, "feet"),
  21204. weight: math.unit(150, "lb"),
  21205. name: "Back",
  21206. image: {
  21207. source: "./media/characters/deathy/back.svg",
  21208. extra: 1580 / 1463,
  21209. bottom: 0.005
  21210. }
  21211. },
  21212. },
  21213. [
  21214. {
  21215. name: "Micro",
  21216. height: math.unit(5, "millimeters")
  21217. },
  21218. {
  21219. name: "Normal",
  21220. height: math.unit(6 + 5 / 12, "feet"),
  21221. default: true
  21222. },
  21223. ]
  21224. ))
  21225. characterMakers.push(() => makeCharacter(
  21226. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21227. {
  21228. front: {
  21229. height: math.unit(16, "feet"),
  21230. weight: math.unit(4000, "lb"),
  21231. name: "Front",
  21232. image: {
  21233. source: "./media/characters/juniper/front.svg",
  21234. bottom: 0.04
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Normal",
  21241. height: math.unit(16, "feet"),
  21242. default: true
  21243. },
  21244. ]
  21245. ))
  21246. characterMakers.push(() => makeCharacter(
  21247. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21248. {
  21249. front: {
  21250. height: math.unit(6, "feet"),
  21251. weight: math.unit(150, "lb"),
  21252. name: "Front",
  21253. image: {
  21254. source: "./media/characters/hipster/front.svg",
  21255. extra: 1312 / 1209,
  21256. bottom: 0.025
  21257. }
  21258. },
  21259. back: {
  21260. height: math.unit(6, "feet"),
  21261. weight: math.unit(150, "lb"),
  21262. name: "Back",
  21263. image: {
  21264. source: "./media/characters/hipster/back.svg",
  21265. extra: 1281 / 1196,
  21266. bottom: 0.01
  21267. }
  21268. },
  21269. },
  21270. [
  21271. {
  21272. name: "Micro",
  21273. height: math.unit(1, "mm")
  21274. },
  21275. {
  21276. name: "Normal",
  21277. height: math.unit(4, "inches"),
  21278. default: true
  21279. },
  21280. {
  21281. name: "Macro",
  21282. height: math.unit(500, "feet")
  21283. },
  21284. {
  21285. name: "Megamacro",
  21286. height: math.unit(1000, "miles")
  21287. },
  21288. ]
  21289. ))
  21290. characterMakers.push(() => makeCharacter(
  21291. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21292. {
  21293. front: {
  21294. height: math.unit(6, "feet"),
  21295. weight: math.unit(150, "lb"),
  21296. name: "Front",
  21297. image: {
  21298. source: "./media/characters/tendirmuldr/front.svg",
  21299. extra: 1878 / 1772,
  21300. bottom: 0.015
  21301. }
  21302. },
  21303. },
  21304. [
  21305. {
  21306. name: "Megamacro",
  21307. height: math.unit(1500, "miles"),
  21308. default: true
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21314. {
  21315. front: {
  21316. height: math.unit(14, "feet"),
  21317. weight: math.unit(12000, "lb"),
  21318. name: "Front",
  21319. image: {
  21320. source: "./media/characters/mort/front.svg",
  21321. extra: 365 / 318,
  21322. bottom: 0.01
  21323. }
  21324. },
  21325. side: {
  21326. height: math.unit(14, "feet"),
  21327. weight: math.unit(12000, "lb"),
  21328. name: "Side",
  21329. image: {
  21330. source: "./media/characters/mort/side.svg",
  21331. extra: 365 / 318,
  21332. bottom: 0.052
  21333. },
  21334. default: true
  21335. },
  21336. back: {
  21337. height: math.unit(14, "feet"),
  21338. weight: math.unit(12000, "lb"),
  21339. name: "Back",
  21340. image: {
  21341. source: "./media/characters/mort/back.svg",
  21342. extra: 371 / 332,
  21343. bottom: 0.18
  21344. }
  21345. },
  21346. },
  21347. [
  21348. {
  21349. name: "Normal",
  21350. height: math.unit(14, "feet"),
  21351. default: true
  21352. },
  21353. ]
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21357. {
  21358. front: {
  21359. height: math.unit(8, "feet"),
  21360. weight: math.unit(1, "ton"),
  21361. name: "Front",
  21362. image: {
  21363. source: "./media/characters/lycoa/front.svg",
  21364. extra: 1836/1728,
  21365. bottom: 81/1917
  21366. }
  21367. },
  21368. back: {
  21369. height: math.unit(8, "feet"),
  21370. weight: math.unit(1, "ton"),
  21371. name: "Back",
  21372. image: {
  21373. source: "./media/characters/lycoa/back.svg",
  21374. extra: 1785/1720,
  21375. bottom: 91/1876
  21376. }
  21377. },
  21378. head: {
  21379. height: math.unit(1.6243, "feet"),
  21380. name: "Head",
  21381. image: {
  21382. source: "./media/characters/lycoa/head.svg",
  21383. extra: 1011/782,
  21384. bottom: 0/1011
  21385. }
  21386. },
  21387. tailmaw: {
  21388. height: math.unit(1.9, "feet"),
  21389. name: "Tailmaw",
  21390. image: {
  21391. source: "./media/characters/lycoa/tailmaw.svg"
  21392. }
  21393. },
  21394. tentacles: {
  21395. height: math.unit(2.1, "feet"),
  21396. name: "Tentacles",
  21397. image: {
  21398. source: "./media/characters/lycoa/tentacles.svg"
  21399. }
  21400. },
  21401. dick: {
  21402. height: math.unit(1.73, "feet"),
  21403. name: "Dick",
  21404. image: {
  21405. source: "./media/characters/lycoa/dick.svg"
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Normal",
  21412. height: math.unit(8, "feet"),
  21413. default: true
  21414. },
  21415. {
  21416. name: "Macro",
  21417. height: math.unit(30, "feet")
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21423. {
  21424. front: {
  21425. height: math.unit(4 + 2 / 12, "feet"),
  21426. weight: math.unit(70, "lb"),
  21427. name: "Front",
  21428. image: {
  21429. source: "./media/characters/naldara/front.svg",
  21430. extra: 1664/1387,
  21431. bottom: 81/1745
  21432. },
  21433. form: "anthro",
  21434. default: true
  21435. },
  21436. naga: {
  21437. height: math.unit(20, "feet"),
  21438. weight: math.unit(15000, "kg"),
  21439. name: "Front",
  21440. image: {
  21441. source: "./media/characters/naldara/naga.svg",
  21442. extra: 1590/1396,
  21443. bottom: 285/1875
  21444. },
  21445. form: "naga",
  21446. default: true
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(4 + 2 / 12, "feet"),
  21453. form: "anthro",
  21454. default: true
  21455. },
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(20, "feet"),
  21459. form: "naga",
  21460. default: true
  21461. },
  21462. ],
  21463. {
  21464. "anthro": {
  21465. name: "Anthro",
  21466. default: true
  21467. },
  21468. "naga": {
  21469. name: "Naga"
  21470. }
  21471. }
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21475. {
  21476. front: {
  21477. height: math.unit(13 + 7 / 12, "feet"),
  21478. weight: math.unit(1500, "lb"),
  21479. name: "Front",
  21480. image: {
  21481. source: "./media/characters/briar/front.svg",
  21482. extra: 1223/1157,
  21483. bottom: 123/1346
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(13 + 7 / 12, "feet"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21497. {
  21498. side: {
  21499. height: math.unit(16, "feet"),
  21500. weight: math.unit(500, "lb"),
  21501. name: "Side",
  21502. image: {
  21503. source: "./media/characters/vanguard/side.svg",
  21504. extra: 1022/914,
  21505. bottom: 30/1052
  21506. }
  21507. },
  21508. sideAlt: {
  21509. height: math.unit(10, "feet"),
  21510. weight: math.unit(500, "lb"),
  21511. name: "Side (Alt)",
  21512. image: {
  21513. source: "./media/characters/vanguard/side-alt.svg",
  21514. extra: 502 / 425,
  21515. bottom: 0.087
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(17.71, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21529. {
  21530. front: {
  21531. height: math.unit(7.5, "feet"),
  21532. weight: math.unit(2, "lb"),
  21533. name: "Front",
  21534. image: {
  21535. source: "./media/characters/artemis/work-safe-front.svg",
  21536. extra: 1192 / 1075,
  21537. bottom: 0.07
  21538. },
  21539. form: "work-safe",
  21540. default: true
  21541. },
  21542. frontNsfw: {
  21543. height: math.unit(7.5, "feet"),
  21544. weight: math.unit(2, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/artemis/calibrating-front.svg",
  21548. extra: 1192 / 1075,
  21549. bottom: 0.07
  21550. },
  21551. form: "calibrating",
  21552. default: true
  21553. },
  21554. frontNsfwer: {
  21555. height: math.unit(7.5, "feet"),
  21556. weight: math.unit(2, "lb"),
  21557. name: "Front",
  21558. image: {
  21559. source: "./media/characters/artemis/oversize-load-front.svg",
  21560. extra: 1192 / 1075,
  21561. bottom: 0.07
  21562. },
  21563. form: "oversize-load",
  21564. default: true
  21565. },
  21566. side: {
  21567. height: math.unit(7.5, "feet"),
  21568. weight: math.unit(2, "lb"),
  21569. name: "Side",
  21570. image: {
  21571. source: "./media/characters/artemis/work-safe-side.svg",
  21572. extra: 1192 / 1075,
  21573. bottom: 0.07
  21574. },
  21575. form: "work-safe"
  21576. },
  21577. sideNsfw: {
  21578. height: math.unit(7.5, "feet"),
  21579. weight: math.unit(2, "lb"),
  21580. name: "Side",
  21581. image: {
  21582. source: "./media/characters/artemis/calibrating-side.svg",
  21583. extra: 1192 / 1075,
  21584. bottom: 0.07
  21585. },
  21586. form: "calibrating"
  21587. },
  21588. sideNsfwer: {
  21589. height: math.unit(7.5, "feet"),
  21590. weight: math.unit(2, "lb"),
  21591. name: "Side",
  21592. image: {
  21593. source: "./media/characters/artemis/oversize-load-side.svg",
  21594. extra: 1192 / 1075,
  21595. bottom: 0.07
  21596. },
  21597. form: "oversize-load"
  21598. },
  21599. maw: {
  21600. height: math.unit(1.1, "feet"),
  21601. name: "Maw",
  21602. image: {
  21603. source: "./media/characters/artemis/maw.svg"
  21604. },
  21605. form: "work-safe"
  21606. },
  21607. stomach: {
  21608. height: math.unit(0.95, "feet"),
  21609. name: "Stomach",
  21610. image: {
  21611. source: "./media/characters/artemis/stomach.svg"
  21612. },
  21613. form: "work-safe"
  21614. },
  21615. dickCanine: {
  21616. height: math.unit(1, "feet"),
  21617. name: "Dick (Canine)",
  21618. image: {
  21619. source: "./media/characters/artemis/dick-canine.svg"
  21620. },
  21621. form: "calibrating"
  21622. },
  21623. dickEquine: {
  21624. height: math.unit(0.85, "feet"),
  21625. name: "Dick (Equine)",
  21626. image: {
  21627. source: "./media/characters/artemis/dick-equine.svg"
  21628. },
  21629. form: "calibrating"
  21630. },
  21631. dickExotic: {
  21632. height: math.unit(0.85, "feet"),
  21633. name: "Dick (Exotic)",
  21634. image: {
  21635. source: "./media/characters/artemis/dick-exotic.svg"
  21636. },
  21637. form: "calibrating"
  21638. },
  21639. dickCanineBigger: {
  21640. height: math.unit(1 * 1.33, "feet"),
  21641. name: "Dick (Canine)",
  21642. image: {
  21643. source: "./media/characters/artemis/dick-canine.svg"
  21644. },
  21645. form: "oversize-load"
  21646. },
  21647. dickEquineBigger: {
  21648. height: math.unit(0.85 * 1.33, "feet"),
  21649. name: "Dick (Equine)",
  21650. image: {
  21651. source: "./media/characters/artemis/dick-equine.svg"
  21652. },
  21653. form: "oversize-load"
  21654. },
  21655. dickExoticBigger: {
  21656. height: math.unit(0.85 * 1.33, "feet"),
  21657. name: "Dick (Exotic)",
  21658. image: {
  21659. source: "./media/characters/artemis/dick-exotic.svg"
  21660. },
  21661. form: "oversize-load"
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(7.5, "feet"),
  21668. form: "work-safe",
  21669. default: true
  21670. },
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(7.5, "feet"),
  21674. form: "calibrating",
  21675. default: true
  21676. },
  21677. {
  21678. name: "Normal",
  21679. height: math.unit(7.5, "feet"),
  21680. form: "oversize-load",
  21681. default: true
  21682. },
  21683. {
  21684. name: "Enlarged",
  21685. height: math.unit(12, "feet"),
  21686. form: "work-safe",
  21687. },
  21688. {
  21689. name: "Enlarged",
  21690. height: math.unit(12, "feet"),
  21691. form: "calibrating",
  21692. },
  21693. {
  21694. name: "Enlarged",
  21695. height: math.unit(12, "feet"),
  21696. form: "oversize-load",
  21697. },
  21698. ],
  21699. {
  21700. "work-safe": {
  21701. name: "Work-Safe",
  21702. default: true
  21703. },
  21704. "calibrating": {
  21705. name: "Calibrating"
  21706. },
  21707. "oversize-load": {
  21708. name: "Oversize Load"
  21709. }
  21710. }
  21711. ))
  21712. characterMakers.push(() => makeCharacter(
  21713. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21714. {
  21715. front: {
  21716. height: math.unit(5 + 3 / 12, "feet"),
  21717. weight: math.unit(160, "lb"),
  21718. name: "Front",
  21719. image: {
  21720. source: "./media/characters/kira/front.svg",
  21721. extra: 906 / 786,
  21722. bottom: 0.01
  21723. }
  21724. },
  21725. back: {
  21726. height: math.unit(5 + 3 / 12, "feet"),
  21727. weight: math.unit(160, "lb"),
  21728. name: "Back",
  21729. image: {
  21730. source: "./media/characters/kira/back.svg",
  21731. extra: 882 / 757,
  21732. bottom: 0.005
  21733. }
  21734. },
  21735. frontDressed: {
  21736. height: math.unit(5 + 3 / 12, "feet"),
  21737. weight: math.unit(160, "lb"),
  21738. name: "Front (Dressed)",
  21739. image: {
  21740. source: "./media/characters/kira/front-dressed.svg",
  21741. extra: 906 / 786,
  21742. bottom: 0.01
  21743. }
  21744. },
  21745. beans: {
  21746. height: math.unit(0.92, "feet"),
  21747. name: "Beans",
  21748. image: {
  21749. source: "./media/characters/kira/beans.svg"
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Normal",
  21756. height: math.unit(5 + 3 / 12, "feet"),
  21757. default: true
  21758. },
  21759. ]
  21760. ))
  21761. characterMakers.push(() => makeCharacter(
  21762. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21763. {
  21764. front: {
  21765. height: math.unit(5 + 4 / 12, "feet"),
  21766. weight: math.unit(145, "lb"),
  21767. name: "Front",
  21768. image: {
  21769. source: "./media/characters/scramble/front.svg",
  21770. extra: 763 / 727,
  21771. bottom: 0.05
  21772. }
  21773. },
  21774. back: {
  21775. height: math.unit(5 + 4 / 12, "feet"),
  21776. weight: math.unit(145, "lb"),
  21777. name: "Back",
  21778. image: {
  21779. source: "./media/characters/scramble/back.svg",
  21780. extra: 826 / 737,
  21781. bottom: 0.002
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(5 + 4 / 12, "feet"),
  21789. default: true
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21795. {
  21796. side: {
  21797. height: math.unit(6 + 2 / 12, "feet"),
  21798. weight: math.unit(190, "lb"),
  21799. name: "Side",
  21800. image: {
  21801. source: "./media/characters/biscuit/side.svg",
  21802. extra: 858 / 791,
  21803. bottom: 0.044
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Normal",
  21810. height: math.unit(6 + 2 / 12, "feet"),
  21811. default: true
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21817. {
  21818. front: {
  21819. height: math.unit(5 + 2 / 12, "feet"),
  21820. weight: math.unit(120, "lb"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/poffin/front.svg",
  21824. extra: 786 / 680,
  21825. bottom: 0.005
  21826. }
  21827. },
  21828. },
  21829. [
  21830. {
  21831. name: "Normal",
  21832. height: math.unit(5 + 2 / 12, "feet"),
  21833. default: true
  21834. },
  21835. ]
  21836. ))
  21837. characterMakers.push(() => makeCharacter(
  21838. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21839. {
  21840. front: {
  21841. height: math.unit(6 + 3 / 12, "feet"),
  21842. weight: math.unit(519, "lb"),
  21843. name: "Front",
  21844. image: {
  21845. source: "./media/characters/dhari/front.svg",
  21846. extra: 1048 / 946,
  21847. bottom: 0.015
  21848. }
  21849. },
  21850. back: {
  21851. height: math.unit(6 + 3 / 12, "feet"),
  21852. weight: math.unit(519, "lb"),
  21853. name: "Back",
  21854. image: {
  21855. source: "./media/characters/dhari/back.svg",
  21856. extra: 1048 / 931,
  21857. bottom: 0.005
  21858. }
  21859. },
  21860. frontDressed: {
  21861. height: math.unit(6 + 3 / 12, "feet"),
  21862. weight: math.unit(519, "lb"),
  21863. name: "Front (Dressed)",
  21864. image: {
  21865. source: "./media/characters/dhari/front-dressed.svg",
  21866. extra: 1713 / 1546,
  21867. bottom: 0.02
  21868. }
  21869. },
  21870. backDressed: {
  21871. height: math.unit(6 + 3 / 12, "feet"),
  21872. weight: math.unit(519, "lb"),
  21873. name: "Back (Dressed)",
  21874. image: {
  21875. source: "./media/characters/dhari/back-dressed.svg",
  21876. extra: 1699 / 1537,
  21877. bottom: 0.01
  21878. }
  21879. },
  21880. maw: {
  21881. height: math.unit(0.95, "feet"),
  21882. name: "Maw",
  21883. image: {
  21884. source: "./media/characters/dhari/maw.svg"
  21885. }
  21886. },
  21887. wereFront: {
  21888. height: math.unit(12 + 8 / 12, "feet"),
  21889. weight: math.unit(4000, "lb"),
  21890. name: "Front (Were)",
  21891. image: {
  21892. source: "./media/characters/dhari/were-front.svg",
  21893. extra: 1065 / 969,
  21894. bottom: 0.015
  21895. }
  21896. },
  21897. wereBack: {
  21898. height: math.unit(12 + 8 / 12, "feet"),
  21899. weight: math.unit(4000, "lb"),
  21900. name: "Back (Were)",
  21901. image: {
  21902. source: "./media/characters/dhari/were-back.svg",
  21903. extra: 1065 / 969,
  21904. bottom: 0.012
  21905. }
  21906. },
  21907. wereMaw: {
  21908. height: math.unit(0.625, "meters"),
  21909. name: "Maw (Were)",
  21910. image: {
  21911. source: "./media/characters/dhari/were-maw.svg"
  21912. }
  21913. },
  21914. },
  21915. [
  21916. {
  21917. name: "Normal",
  21918. height: math.unit(6 + 3 / 12, "feet"),
  21919. default: true
  21920. },
  21921. ]
  21922. ))
  21923. characterMakers.push(() => makeCharacter(
  21924. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21925. {
  21926. anthro: {
  21927. height: math.unit(5 + 7 / 12, "feet"),
  21928. weight: math.unit(175, "lb"),
  21929. name: "Anthro",
  21930. image: {
  21931. source: "./media/characters/rena-dyne/anthro.svg",
  21932. extra: 1849 / 1785,
  21933. bottom: 0.005
  21934. }
  21935. },
  21936. taur: {
  21937. height: math.unit(15 + 6 / 12, "feet"),
  21938. weight: math.unit(8000, "lb"),
  21939. name: "Taur",
  21940. image: {
  21941. source: "./media/characters/rena-dyne/taur.svg",
  21942. extra: 2315 / 2234,
  21943. bottom: 0.033
  21944. }
  21945. },
  21946. },
  21947. [
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(5 + 7 / 12, "feet"),
  21951. default: true
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(8, "feet"),
  21960. weight: math.unit(600, "lb"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/weremeep/front.svg",
  21964. extra: 970/849,
  21965. bottom: 7/977
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Normal",
  21972. height: math.unit(8, "feet"),
  21973. default: true
  21974. },
  21975. {
  21976. name: "Lorg",
  21977. height: math.unit(12, "feet")
  21978. },
  21979. {
  21980. name: "Oh Lawd She Comin'",
  21981. height: math.unit(20, "feet")
  21982. },
  21983. ]
  21984. ))
  21985. characterMakers.push(() => makeCharacter(
  21986. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21987. {
  21988. front: {
  21989. height: math.unit(4, "feet"),
  21990. weight: math.unit(90, "lb"),
  21991. name: "Front",
  21992. image: {
  21993. source: "./media/characters/reza/front.svg",
  21994. extra: 1183 / 1111,
  21995. bottom: 0.017
  21996. }
  21997. },
  21998. back: {
  21999. height: math.unit(4, "feet"),
  22000. weight: math.unit(90, "lb"),
  22001. name: "Back",
  22002. image: {
  22003. source: "./media/characters/reza/back.svg",
  22004. extra: 1183 / 1111,
  22005. bottom: 0.01
  22006. }
  22007. },
  22008. drake: {
  22009. height: math.unit(30, "feet"),
  22010. weight: math.unit(246960, "lb"),
  22011. name: "Drake",
  22012. image: {
  22013. source: "./media/characters/reza/drake.svg",
  22014. extra: 2350 / 2024,
  22015. bottom: 60.7 / 2403
  22016. }
  22017. },
  22018. },
  22019. [
  22020. {
  22021. name: "Normal",
  22022. height: math.unit(4, "feet"),
  22023. default: true
  22024. },
  22025. ]
  22026. ))
  22027. characterMakers.push(() => makeCharacter(
  22028. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22029. {
  22030. side: {
  22031. height: math.unit(15, "feet"),
  22032. weight: math.unit(14, "tons"),
  22033. name: "Side",
  22034. image: {
  22035. source: "./media/characters/athea/side.svg",
  22036. extra: 960 / 540,
  22037. bottom: 0.003
  22038. }
  22039. },
  22040. sitting: {
  22041. height: math.unit(6 * 2.85, "feet"),
  22042. weight: math.unit(14, "tons"),
  22043. name: "Sitting",
  22044. image: {
  22045. source: "./media/characters/athea/sitting.svg",
  22046. extra: 621 / 581,
  22047. bottom: 0.075
  22048. }
  22049. },
  22050. maw: {
  22051. height: math.unit(7.59498031496063, "feet"),
  22052. name: "Maw",
  22053. image: {
  22054. source: "./media/characters/athea/maw.svg"
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Lap Cat",
  22061. height: math.unit(2.5, "feet")
  22062. },
  22063. {
  22064. name: "Minimacro",
  22065. height: math.unit(15, "feet"),
  22066. default: true
  22067. },
  22068. {
  22069. name: "Macro",
  22070. height: math.unit(120, "feet")
  22071. },
  22072. {
  22073. name: "Macro+",
  22074. height: math.unit(640, "feet")
  22075. },
  22076. {
  22077. name: "Colossus",
  22078. height: math.unit(2.2, "miles")
  22079. },
  22080. ]
  22081. ))
  22082. characterMakers.push(() => makeCharacter(
  22083. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22084. {
  22085. front: {
  22086. height: math.unit(8 + 8 / 12, "feet"),
  22087. weight: math.unit(130, "kg"),
  22088. name: "Front",
  22089. image: {
  22090. source: "./media/characters/seroko/front.svg",
  22091. extra: 1385 / 1280,
  22092. bottom: 0.025
  22093. }
  22094. },
  22095. back: {
  22096. height: math.unit(8 + 8 / 12, "feet"),
  22097. weight: math.unit(130, "kg"),
  22098. name: "Back",
  22099. image: {
  22100. source: "./media/characters/seroko/back.svg",
  22101. extra: 1369 / 1238,
  22102. bottom: 0.018
  22103. }
  22104. },
  22105. frontDressed: {
  22106. height: math.unit(8 + 8 / 12, "feet"),
  22107. weight: math.unit(130, "kg"),
  22108. name: "Front (Dressed)",
  22109. image: {
  22110. source: "./media/characters/seroko/front-dressed.svg",
  22111. extra: 1366 / 1275,
  22112. bottom: 0.03
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Normal",
  22119. height: math.unit(8 + 8 / 12, "feet"),
  22120. default: true
  22121. },
  22122. ]
  22123. ))
  22124. characterMakers.push(() => makeCharacter(
  22125. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22126. {
  22127. front: {
  22128. height: math.unit(5.5, "feet"),
  22129. weight: math.unit(160, "lb"),
  22130. name: "Front",
  22131. image: {
  22132. source: "./media/characters/quatzi/front.svg",
  22133. extra: 2346 / 2242,
  22134. bottom: 0.015
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Normal",
  22141. height: math.unit(5.5, "feet"),
  22142. default: true
  22143. },
  22144. {
  22145. name: "Big",
  22146. height: math.unit(7.7, "feet")
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22152. {
  22153. front: {
  22154. height: math.unit(5 + 11 / 12, "feet"),
  22155. weight: math.unit(180, "lb"),
  22156. name: "Front",
  22157. image: {
  22158. source: "./media/characters/sen/front.svg",
  22159. extra: 1321 / 1254,
  22160. bottom: 0.015
  22161. }
  22162. },
  22163. side: {
  22164. height: math.unit(5 + 11 / 12, "feet"),
  22165. weight: math.unit(180, "lb"),
  22166. name: "Side",
  22167. image: {
  22168. source: "./media/characters/sen/side.svg",
  22169. extra: 1321 / 1254,
  22170. bottom: 0.007
  22171. }
  22172. },
  22173. back: {
  22174. height: math.unit(5 + 11 / 12, "feet"),
  22175. weight: math.unit(180, "lb"),
  22176. name: "Back",
  22177. image: {
  22178. source: "./media/characters/sen/back.svg",
  22179. extra: 1321 / 1254
  22180. }
  22181. },
  22182. },
  22183. [
  22184. {
  22185. name: "Normal",
  22186. height: math.unit(5 + 11 / 12, "feet"),
  22187. default: true
  22188. },
  22189. ]
  22190. ))
  22191. characterMakers.push(() => makeCharacter(
  22192. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22193. {
  22194. front: {
  22195. height: math.unit(166.6, "cm"),
  22196. weight: math.unit(66.6, "kg"),
  22197. name: "Front",
  22198. image: {
  22199. source: "./media/characters/fruity/front.svg",
  22200. extra: 1510 / 1386,
  22201. bottom: 0.04
  22202. }
  22203. },
  22204. back: {
  22205. height: math.unit(166.6, "cm"),
  22206. weight: math.unit(66.6, "lb"),
  22207. name: "Back",
  22208. image: {
  22209. source: "./media/characters/fruity/back.svg",
  22210. extra: 1563 / 1435,
  22211. bottom: 0.005
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Normal",
  22218. height: math.unit(166.6, "cm"),
  22219. default: true
  22220. },
  22221. {
  22222. name: "Demonic",
  22223. height: math.unit(166.6, "feet")
  22224. },
  22225. ]
  22226. ))
  22227. characterMakers.push(() => makeCharacter(
  22228. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22229. {
  22230. side: {
  22231. height: math.unit(10, "feet"),
  22232. weight: math.unit(500, "lb"),
  22233. name: "Side",
  22234. image: {
  22235. source: "./media/characters/zost/side.svg",
  22236. extra: 2870/2533,
  22237. bottom: 252/3122
  22238. }
  22239. },
  22240. mawFront: {
  22241. height: math.unit(1.08, "meters"),
  22242. name: "Maw (Front)",
  22243. image: {
  22244. source: "./media/characters/zost/maw-front.svg"
  22245. }
  22246. },
  22247. mawSide: {
  22248. height: math.unit(2.66, "feet"),
  22249. name: "Maw (Side)",
  22250. image: {
  22251. source: "./media/characters/zost/maw-side.svg"
  22252. }
  22253. },
  22254. wingspan: {
  22255. height: math.unit(7.4, "feet"),
  22256. name: "Wingspan",
  22257. image: {
  22258. source: "./media/characters/zost/wingspan.svg"
  22259. }
  22260. },
  22261. },
  22262. [
  22263. {
  22264. name: "Normal",
  22265. height: math.unit(10, "feet"),
  22266. default: true
  22267. },
  22268. ]
  22269. ))
  22270. characterMakers.push(() => makeCharacter(
  22271. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22272. {
  22273. front: {
  22274. height: math.unit(5 + 4 / 12, "feet"),
  22275. weight: math.unit(120, "lb"),
  22276. name: "Front",
  22277. image: {
  22278. source: "./media/characters/luci/front.svg",
  22279. extra: 1985 / 1884,
  22280. bottom: 0.04
  22281. }
  22282. },
  22283. back: {
  22284. height: math.unit(5 + 4 / 12, "feet"),
  22285. weight: math.unit(120, "lb"),
  22286. name: "Back",
  22287. image: {
  22288. source: "./media/characters/luci/back.svg",
  22289. extra: 1892 / 1791,
  22290. bottom: 0.002
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Normal",
  22297. height: math.unit(5 + 4 / 12, "feet"),
  22298. default: true
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(1500, "feet"),
  22307. weight: math.unit(3.8e6, "tons"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/2th/front.svg",
  22311. extra: 3489 / 3350,
  22312. bottom: 0.1
  22313. }
  22314. },
  22315. foot: {
  22316. height: math.unit(461, "feet"),
  22317. name: "Foot",
  22318. image: {
  22319. source: "./media/characters/2th/foot.svg"
  22320. }
  22321. },
  22322. },
  22323. [
  22324. {
  22325. name: "\"Micro\"",
  22326. height: math.unit(15 + 7 / 12, "feet")
  22327. },
  22328. {
  22329. name: "Normal",
  22330. height: math.unit(1500, "feet"),
  22331. default: true
  22332. },
  22333. {
  22334. name: "Macro",
  22335. height: math.unit(5000, "feet")
  22336. },
  22337. {
  22338. name: "Megamacro",
  22339. height: math.unit(15, "miles")
  22340. },
  22341. {
  22342. name: "Gigamacro",
  22343. height: math.unit(4000, "miles")
  22344. },
  22345. {
  22346. name: "Galactic",
  22347. height: math.unit(50, "AU")
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22353. {
  22354. front: {
  22355. height: math.unit(5 + 6 / 12, "feet"),
  22356. weight: math.unit(220, "lb"),
  22357. name: "Front",
  22358. image: {
  22359. source: "./media/characters/amethyst/front.svg",
  22360. extra: 2078 / 2040,
  22361. bottom: 0.045
  22362. }
  22363. },
  22364. back: {
  22365. height: math.unit(5 + 6 / 12, "feet"),
  22366. weight: math.unit(220, "lb"),
  22367. name: "Back",
  22368. image: {
  22369. source: "./media/characters/amethyst/back.svg",
  22370. extra: 2021 / 1989,
  22371. bottom: 0.02
  22372. }
  22373. },
  22374. },
  22375. [
  22376. {
  22377. name: "Normal",
  22378. height: math.unit(5 + 6 / 12, "feet"),
  22379. default: true
  22380. },
  22381. ]
  22382. ))
  22383. characterMakers.push(() => makeCharacter(
  22384. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22385. {
  22386. front: {
  22387. height: math.unit(4 + 11 / 12, "feet"),
  22388. weight: math.unit(120, "lb"),
  22389. name: "Front",
  22390. image: {
  22391. source: "./media/characters/yumi-akiyama/front.svg",
  22392. extra: 1327 / 1235,
  22393. bottom: 0.02
  22394. }
  22395. },
  22396. back: {
  22397. height: math.unit(4 + 11 / 12, "feet"),
  22398. weight: math.unit(120, "lb"),
  22399. name: "Back",
  22400. image: {
  22401. source: "./media/characters/yumi-akiyama/back.svg",
  22402. extra: 1287 / 1245,
  22403. bottom: 0.002
  22404. }
  22405. },
  22406. },
  22407. [
  22408. {
  22409. name: "Galactic",
  22410. height: math.unit(50, "galaxies"),
  22411. default: true
  22412. },
  22413. {
  22414. name: "Universal",
  22415. height: math.unit(100, "universes")
  22416. },
  22417. ]
  22418. ))
  22419. characterMakers.push(() => makeCharacter(
  22420. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22421. {
  22422. front: {
  22423. height: math.unit(8, "feet"),
  22424. weight: math.unit(500, "lb"),
  22425. name: "Front",
  22426. image: {
  22427. source: "./media/characters/rifter-yrmori/front.svg",
  22428. extra: 1180 / 1125,
  22429. bottom: 0.02
  22430. }
  22431. },
  22432. back: {
  22433. height: math.unit(8, "feet"),
  22434. weight: math.unit(500, "lb"),
  22435. name: "Back",
  22436. image: {
  22437. source: "./media/characters/rifter-yrmori/back.svg",
  22438. extra: 1190 / 1145,
  22439. bottom: 0.001
  22440. }
  22441. },
  22442. wings: {
  22443. height: math.unit(7.75, "feet"),
  22444. weight: math.unit(500, "lb"),
  22445. name: "Wings",
  22446. image: {
  22447. source: "./media/characters/rifter-yrmori/wings.svg",
  22448. extra: 1357 / 1285
  22449. }
  22450. },
  22451. maw: {
  22452. height: math.unit(0.8, "feet"),
  22453. name: "Maw",
  22454. image: {
  22455. source: "./media/characters/rifter-yrmori/maw.svg"
  22456. }
  22457. },
  22458. mawfront: {
  22459. height: math.unit(1.45, "feet"),
  22460. name: "Maw (Front)",
  22461. image: {
  22462. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Normal",
  22469. height: math.unit(8, "feet"),
  22470. default: true
  22471. },
  22472. {
  22473. name: "Macro",
  22474. height: math.unit(42, "meters")
  22475. },
  22476. ]
  22477. ))
  22478. characterMakers.push(() => makeCharacter(
  22479. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22480. {
  22481. were: {
  22482. height: math.unit(25 + 6 / 12, "feet"),
  22483. weight: math.unit(10000, "lb"),
  22484. name: "Were",
  22485. image: {
  22486. source: "./media/characters/tahajin/were.svg",
  22487. extra: 801 / 770,
  22488. bottom: 0.042
  22489. }
  22490. },
  22491. aquatic: {
  22492. height: math.unit(6 + 4 / 12, "feet"),
  22493. weight: math.unit(160, "lb"),
  22494. name: "Aquatic",
  22495. image: {
  22496. source: "./media/characters/tahajin/aquatic.svg",
  22497. extra: 572 / 542,
  22498. bottom: 0.04
  22499. }
  22500. },
  22501. chow: {
  22502. height: math.unit(8 + 11 / 12, "feet"),
  22503. weight: math.unit(450, "lb"),
  22504. name: "Chow",
  22505. image: {
  22506. source: "./media/characters/tahajin/chow.svg",
  22507. extra: 660 / 640,
  22508. bottom: 0.015
  22509. }
  22510. },
  22511. demiNaga: {
  22512. height: math.unit(6 + 8 / 12, "feet"),
  22513. weight: math.unit(300, "lb"),
  22514. name: "Demi Naga",
  22515. image: {
  22516. source: "./media/characters/tahajin/demi-naga.svg",
  22517. extra: 643 / 615,
  22518. bottom: 0.1
  22519. }
  22520. },
  22521. data: {
  22522. height: math.unit(5, "inches"),
  22523. weight: math.unit(0.1, "lb"),
  22524. name: "Data",
  22525. image: {
  22526. source: "./media/characters/tahajin/data.svg"
  22527. }
  22528. },
  22529. fluu: {
  22530. height: math.unit(5 + 7 / 12, "feet"),
  22531. weight: math.unit(140, "lb"),
  22532. name: "Fluu",
  22533. image: {
  22534. source: "./media/characters/tahajin/fluu.svg",
  22535. extra: 628 / 592,
  22536. bottom: 0.02
  22537. }
  22538. },
  22539. starWarrior: {
  22540. height: math.unit(4 + 5 / 12, "feet"),
  22541. weight: math.unit(50, "lb"),
  22542. name: "Star Warrior",
  22543. image: {
  22544. source: "./media/characters/tahajin/star-warrior.svg"
  22545. }
  22546. },
  22547. },
  22548. [
  22549. {
  22550. name: "Normal",
  22551. height: math.unit(25 + 6 / 12, "feet"),
  22552. default: true
  22553. },
  22554. ]
  22555. ))
  22556. characterMakers.push(() => makeCharacter(
  22557. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22558. {
  22559. front: {
  22560. height: math.unit(8, "feet"),
  22561. weight: math.unit(350, "lb"),
  22562. name: "Front",
  22563. image: {
  22564. source: "./media/characters/gabira/front.svg",
  22565. extra: 1261/1154,
  22566. bottom: 51/1312
  22567. }
  22568. },
  22569. back: {
  22570. height: math.unit(8, "feet"),
  22571. weight: math.unit(350, "lb"),
  22572. name: "Back",
  22573. image: {
  22574. source: "./media/characters/gabira/back.svg",
  22575. extra: 1265/1163,
  22576. bottom: 46/1311
  22577. }
  22578. },
  22579. head: {
  22580. height: math.unit(2.85, "feet"),
  22581. name: "Head",
  22582. image: {
  22583. source: "./media/characters/gabira/head.svg"
  22584. }
  22585. },
  22586. },
  22587. [
  22588. {
  22589. name: "Normal",
  22590. height: math.unit(8, "feet"),
  22591. default: true
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22597. {
  22598. front: {
  22599. height: math.unit(5 + 3 / 12, "feet"),
  22600. weight: math.unit(137, "lb"),
  22601. name: "Front",
  22602. image: {
  22603. source: "./media/characters/sasha-katraine/front.svg",
  22604. extra: 1745/1694,
  22605. bottom: 37/1782
  22606. }
  22607. },
  22608. back: {
  22609. height: math.unit(5 + 3 / 12, "feet"),
  22610. weight: math.unit(137, "lb"),
  22611. name: "Back",
  22612. image: {
  22613. source: "./media/characters/sasha-katraine/back.svg",
  22614. extra: 1776/1699,
  22615. bottom: 26/1802
  22616. }
  22617. },
  22618. },
  22619. [
  22620. {
  22621. name: "Micro",
  22622. height: math.unit(5, "inches")
  22623. },
  22624. {
  22625. name: "Normal",
  22626. height: math.unit(5 + 3 / 12, "feet"),
  22627. default: true
  22628. },
  22629. ]
  22630. ))
  22631. characterMakers.push(() => makeCharacter(
  22632. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22633. {
  22634. side: {
  22635. height: math.unit(4, "inches"),
  22636. weight: math.unit(200, "grams"),
  22637. name: "Side",
  22638. image: {
  22639. source: "./media/characters/der/side.svg",
  22640. extra: 719 / 400,
  22641. bottom: 30.6 / 749.9187
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Micro",
  22648. height: math.unit(4, "inches"),
  22649. default: true
  22650. },
  22651. ]
  22652. ))
  22653. characterMakers.push(() => makeCharacter(
  22654. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22655. {
  22656. side: {
  22657. height: math.unit(30, "meters"),
  22658. weight: math.unit(700, "tonnes"),
  22659. name: "Side",
  22660. image: {
  22661. source: "./media/characters/fixerdragon/side.svg",
  22662. extra: (1293.0514 - 116.03) / 1106.86,
  22663. bottom: 116.03 / 1293.0514
  22664. }
  22665. },
  22666. },
  22667. [
  22668. {
  22669. name: "Planck",
  22670. height: math.unit(1.6e-35, "meters")
  22671. },
  22672. {
  22673. name: "Micro",
  22674. height: math.unit(0.4, "meters")
  22675. },
  22676. {
  22677. name: "Normal",
  22678. height: math.unit(30, "meters"),
  22679. default: true
  22680. },
  22681. {
  22682. name: "Megamacro",
  22683. height: math.unit(1.2, "megameters")
  22684. },
  22685. {
  22686. name: "Teramacro",
  22687. height: math.unit(130, "terameters")
  22688. },
  22689. {
  22690. name: "Yottamacro",
  22691. height: math.unit(6200, "yottameters")
  22692. },
  22693. ]
  22694. ));
  22695. characterMakers.push(() => makeCharacter(
  22696. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22697. {
  22698. front: {
  22699. height: math.unit(8, "feet"),
  22700. weight: math.unit(250, "lb"),
  22701. name: "Front",
  22702. image: {
  22703. source: "./media/characters/kite/front.svg",
  22704. extra: 2796 / 2659,
  22705. bottom: 0.002
  22706. }
  22707. },
  22708. },
  22709. [
  22710. {
  22711. name: "Normal",
  22712. height: math.unit(8, "feet"),
  22713. default: true
  22714. },
  22715. {
  22716. name: "Macro",
  22717. height: math.unit(360, "feet")
  22718. },
  22719. {
  22720. name: "Megamacro",
  22721. height: math.unit(1500, "feet")
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22727. {
  22728. front: {
  22729. height: math.unit(5 + 11/12, "feet"),
  22730. weight: math.unit(170, "lb"),
  22731. name: "Front",
  22732. image: {
  22733. source: "./media/characters/poojawa-vynar/front.svg",
  22734. extra: 1735/1585,
  22735. bottom: 96/1831
  22736. }
  22737. },
  22738. back: {
  22739. height: math.unit(5 + 11/12, "feet"),
  22740. weight: math.unit(170, "lb"),
  22741. name: "Back",
  22742. image: {
  22743. source: "./media/characters/poojawa-vynar/back.svg",
  22744. extra: 1749/1607,
  22745. bottom: 28/1777
  22746. }
  22747. },
  22748. male: {
  22749. height: math.unit(5 + 11/12, "feet"),
  22750. weight: math.unit(170, "lb"),
  22751. name: "Male",
  22752. image: {
  22753. source: "./media/characters/poojawa-vynar/male.svg",
  22754. extra: 1855/1713,
  22755. bottom: 63/1918
  22756. }
  22757. },
  22758. taur: {
  22759. height: math.unit(5 + 11/12, "feet"),
  22760. weight: math.unit(170, "lb"),
  22761. name: "Taur",
  22762. image: {
  22763. source: "./media/characters/poojawa-vynar/taur.svg",
  22764. extra: 1151/1059,
  22765. bottom: 356/1507
  22766. }
  22767. },
  22768. frontDressed: {
  22769. height: math.unit(5 + 11/12, "feet"),
  22770. weight: math.unit(170, "lb"),
  22771. name: "Front (Dressed)",
  22772. image: {
  22773. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22774. extra: 1735/1585,
  22775. bottom: 96/1831
  22776. }
  22777. },
  22778. backDressed: {
  22779. height: math.unit(5 + 11/12, "feet"),
  22780. weight: math.unit(170, "lb"),
  22781. name: "Back (Dressed)",
  22782. image: {
  22783. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22784. extra: 1749/1607,
  22785. bottom: 28/1777
  22786. }
  22787. },
  22788. maleDressed: {
  22789. height: math.unit(5 + 11/12, "feet"),
  22790. weight: math.unit(170, "lb"),
  22791. name: "Male (Dressed)",
  22792. image: {
  22793. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22794. extra: 1855/1713,
  22795. bottom: 63/1918
  22796. }
  22797. },
  22798. taurDressed: {
  22799. height: math.unit(5 + 11/12, "feet"),
  22800. weight: math.unit(170, "lb"),
  22801. name: "Taur (Dressed)",
  22802. image: {
  22803. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22804. extra: 1151/1059,
  22805. bottom: 356/1507
  22806. }
  22807. },
  22808. maw: {
  22809. height: math.unit(1.46, "feet"),
  22810. name: "Maw",
  22811. image: {
  22812. source: "./media/characters/poojawa-vynar/maw.svg"
  22813. }
  22814. },
  22815. head: {
  22816. height: math.unit(2.34, "feet"),
  22817. name: "Head",
  22818. image: {
  22819. source: "./media/characters/poojawa-vynar/head.svg"
  22820. }
  22821. },
  22822. paw: {
  22823. height: math.unit(1.61, "feet"),
  22824. name: "Paw",
  22825. image: {
  22826. source: "./media/characters/poojawa-vynar/paw.svg"
  22827. }
  22828. },
  22829. pawToering: {
  22830. height: math.unit(1.72, "feet"),
  22831. name: "Paw (Toering)",
  22832. image: {
  22833. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22834. }
  22835. },
  22836. toering: {
  22837. height: math.unit(2.9, "inches"),
  22838. name: "Toering",
  22839. image: {
  22840. source: "./media/characters/poojawa-vynar/toering.svg"
  22841. }
  22842. },
  22843. shaft: {
  22844. height: math.unit(0.625, "feet"),
  22845. name: "Shaft",
  22846. image: {
  22847. source: "./media/characters/poojawa-vynar/shaft.svg"
  22848. }
  22849. },
  22850. spade: {
  22851. height: math.unit(0.42, "feet"),
  22852. name: "Spade",
  22853. image: {
  22854. source: "./media/characters/poojawa-vynar/spade.svg"
  22855. }
  22856. },
  22857. },
  22858. [
  22859. {
  22860. name: "Shortstack",
  22861. height: math.unit(4, "feet")
  22862. },
  22863. {
  22864. name: "Normal",
  22865. height: math.unit(5 + 11 / 12, "feet"),
  22866. default: true
  22867. },
  22868. {
  22869. name: "Tauric",
  22870. height: math.unit(4, "meters")
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22876. {
  22877. front: {
  22878. height: math.unit(293, "meters"),
  22879. weight: math.unit(70400, "tons"),
  22880. name: "Front",
  22881. image: {
  22882. source: "./media/characters/violette/front.svg",
  22883. extra: 1227 / 1180,
  22884. bottom: 0.005
  22885. }
  22886. },
  22887. back: {
  22888. height: math.unit(293, "meters"),
  22889. weight: math.unit(70400, "tons"),
  22890. name: "Back",
  22891. image: {
  22892. source: "./media/characters/violette/back.svg",
  22893. extra: 1227 / 1180,
  22894. bottom: 0.005
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Macro",
  22901. height: math.unit(293, "meters"),
  22902. default: true
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22908. {
  22909. front: {
  22910. height: math.unit(1050, "feet"),
  22911. weight: math.unit(200000, "tons"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/alessandra/front.svg",
  22915. extra: 960 / 912,
  22916. bottom: 0.06
  22917. }
  22918. },
  22919. },
  22920. [
  22921. {
  22922. name: "Macro",
  22923. height: math.unit(1050, "feet")
  22924. },
  22925. {
  22926. name: "Macro+",
  22927. height: math.unit(900, "meters"),
  22928. default: true
  22929. },
  22930. ]
  22931. ))
  22932. characterMakers.push(() => makeCharacter(
  22933. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22934. {
  22935. front: {
  22936. height: math.unit(5, "feet"),
  22937. weight: math.unit(187, "lb"),
  22938. name: "Front",
  22939. image: {
  22940. source: "./media/characters/person/front.svg",
  22941. extra: 3087 / 2945,
  22942. bottom: 91 / 3181
  22943. }
  22944. },
  22945. },
  22946. [
  22947. {
  22948. name: "Micro",
  22949. height: math.unit(3, "inches")
  22950. },
  22951. {
  22952. name: "Normal",
  22953. height: math.unit(5, "feet"),
  22954. default: true
  22955. },
  22956. {
  22957. name: "Macro",
  22958. height: math.unit(90, "feet")
  22959. },
  22960. {
  22961. name: "Max Size",
  22962. height: math.unit(280, "feet")
  22963. },
  22964. ]
  22965. ))
  22966. characterMakers.push(() => makeCharacter(
  22967. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22968. {
  22969. front: {
  22970. height: math.unit(4.5, "meters"),
  22971. weight: math.unit(3200, "lb"),
  22972. name: "Front",
  22973. image: {
  22974. source: "./media/characters/ty/front.svg",
  22975. extra: 1038 / 960,
  22976. bottom: 31.156 / 1068
  22977. }
  22978. },
  22979. back: {
  22980. height: math.unit(4.5, "meters"),
  22981. weight: math.unit(3200, "lb"),
  22982. name: "Back",
  22983. image: {
  22984. source: "./media/characters/ty/back.svg",
  22985. extra: 1044 / 966,
  22986. bottom: 7.48 / 1049
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Normal",
  22993. height: math.unit(4.5, "meters"),
  22994. default: true
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23000. {
  23001. front: {
  23002. height: math.unit(5 + 4 / 12, "feet"),
  23003. weight: math.unit(115, "lb"),
  23004. name: "Front",
  23005. image: {
  23006. source: "./media/characters/rocky/front.svg",
  23007. extra: 1012 / 975,
  23008. bottom: 54 / 1066
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Normal",
  23015. height: math.unit(5 + 4 / 12, "feet"),
  23016. default: true
  23017. },
  23018. ]
  23019. ))
  23020. characterMakers.push(() => makeCharacter(
  23021. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23022. {
  23023. upright: {
  23024. height: math.unit(6, "meters"),
  23025. weight: math.unit(4000, "kg"),
  23026. name: "Upright",
  23027. image: {
  23028. source: "./media/characters/ruin/upright.svg",
  23029. extra: 668 / 661,
  23030. bottom: 42 / 799.8396
  23031. }
  23032. },
  23033. },
  23034. [
  23035. {
  23036. name: "Normal",
  23037. height: math.unit(6, "meters"),
  23038. default: true
  23039. },
  23040. ]
  23041. ))
  23042. characterMakers.push(() => makeCharacter(
  23043. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23044. {
  23045. front: {
  23046. height: math.unit(5, "feet"),
  23047. weight: math.unit(106, "lb"),
  23048. name: "Front",
  23049. image: {
  23050. source: "./media/characters/robin/front.svg",
  23051. extra: 862 / 799,
  23052. bottom: 42.4 / 914.8856
  23053. }
  23054. },
  23055. },
  23056. [
  23057. {
  23058. name: "Normal",
  23059. height: math.unit(5, "feet"),
  23060. default: true
  23061. },
  23062. ]
  23063. ))
  23064. characterMakers.push(() => makeCharacter(
  23065. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23066. {
  23067. side: {
  23068. height: math.unit(3, "feet"),
  23069. weight: math.unit(225, "lb"),
  23070. name: "Side",
  23071. image: {
  23072. source: "./media/characters/saian/side.svg",
  23073. extra: 566 / 356,
  23074. bottom: 79.7 / 643
  23075. }
  23076. },
  23077. maw: {
  23078. height: math.unit(2.85, "feet"),
  23079. name: "Maw",
  23080. image: {
  23081. source: "./media/characters/saian/maw.svg"
  23082. }
  23083. },
  23084. },
  23085. [
  23086. {
  23087. name: "Normal",
  23088. height: math.unit(3, "feet"),
  23089. default: true
  23090. },
  23091. ]
  23092. ))
  23093. characterMakers.push(() => makeCharacter(
  23094. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23095. {
  23096. side: {
  23097. height: math.unit(8, "feet"),
  23098. weight: math.unit(300, "lb"),
  23099. name: "Side",
  23100. image: {
  23101. source: "./media/characters/equus-silvermane/side.svg",
  23102. extra: 2176 / 2050,
  23103. bottom: 65.7 / 2245
  23104. }
  23105. },
  23106. front: {
  23107. height: math.unit(8, "feet"),
  23108. weight: math.unit(300, "lb"),
  23109. name: "Front",
  23110. image: {
  23111. source: "./media/characters/equus-silvermane/front.svg",
  23112. extra: 4633 / 4400,
  23113. bottom: 71.3 / 4706.915
  23114. }
  23115. },
  23116. sideStepping: {
  23117. height: math.unit(8, "feet"),
  23118. weight: math.unit(300, "lb"),
  23119. name: "Side (Stepping)",
  23120. image: {
  23121. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23122. extra: 1968 / 1860,
  23123. bottom: 16.4 / 1989
  23124. }
  23125. },
  23126. },
  23127. [
  23128. {
  23129. name: "Normal",
  23130. height: math.unit(8, "feet")
  23131. },
  23132. {
  23133. name: "Minimacro",
  23134. height: math.unit(75, "feet"),
  23135. default: true
  23136. },
  23137. {
  23138. name: "Macro",
  23139. height: math.unit(150, "feet")
  23140. },
  23141. {
  23142. name: "Macro+",
  23143. height: math.unit(1000, "feet")
  23144. },
  23145. {
  23146. name: "Megamacro",
  23147. height: math.unit(1, "mile")
  23148. },
  23149. ]
  23150. ))
  23151. characterMakers.push(() => makeCharacter(
  23152. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23153. {
  23154. side: {
  23155. height: math.unit(20, "feet"),
  23156. weight: math.unit(30000, "kg"),
  23157. name: "Side",
  23158. image: {
  23159. source: "./media/characters/windar/side.svg",
  23160. extra: 1491 / 1248,
  23161. bottom: 82.56 / 1568
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(20, "feet"),
  23169. default: true
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23175. {
  23176. side: {
  23177. height: math.unit(15.66, "feet"),
  23178. weight: math.unit(150, "lb"),
  23179. name: "Side",
  23180. image: {
  23181. source: "./media/characters/melody/side.svg",
  23182. extra: 1097 / 944,
  23183. bottom: 11.8 / 1109
  23184. }
  23185. },
  23186. sideOutfit: {
  23187. height: math.unit(15.66, "feet"),
  23188. weight: math.unit(150, "lb"),
  23189. name: "Side (Outfit)",
  23190. image: {
  23191. source: "./media/characters/melody/side-outfit.svg",
  23192. extra: 1097 / 944,
  23193. bottom: 11.8 / 1109
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(15.66, "feet"),
  23201. default: true
  23202. },
  23203. ]
  23204. ))
  23205. characterMakers.push(() => makeCharacter(
  23206. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23207. {
  23208. armoredFront: {
  23209. height: math.unit(8, "feet"),
  23210. weight: math.unit(325, "lb"),
  23211. name: "Front",
  23212. image: {
  23213. source: "./media/characters/windera/armored-front.svg",
  23214. extra: 1830/1598,
  23215. bottom: 151/1981
  23216. },
  23217. form: "armored",
  23218. default: true
  23219. },
  23220. macroFront: {
  23221. height: math.unit(70, "feet"),
  23222. weight: math.unit(315453, "lb"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/windera/macro-front.svg",
  23226. extra: 963/883,
  23227. bottom: 23/986
  23228. },
  23229. form: "macro",
  23230. default: true
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Normal",
  23236. height: math.unit(8, "feet"),
  23237. default: true,
  23238. form: "armored"
  23239. },
  23240. {
  23241. name: "Normal",
  23242. height: math.unit(70, "feet"),
  23243. default: true,
  23244. form: "macro"
  23245. },
  23246. ],
  23247. {
  23248. "armored": {
  23249. name: "Armored",
  23250. default: true
  23251. },
  23252. "macro": {
  23253. name: "Macro",
  23254. },
  23255. }
  23256. ))
  23257. characterMakers.push(() => makeCharacter(
  23258. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23259. {
  23260. front: {
  23261. height: math.unit(28.75, "feet"),
  23262. weight: math.unit(2000, "kg"),
  23263. name: "Front",
  23264. image: {
  23265. source: "./media/characters/sonear/front.svg",
  23266. extra: 1041.1 / 964.9,
  23267. bottom: 53.7 / 1096.6
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Normal",
  23274. height: math.unit(28.75, "feet"),
  23275. default: true
  23276. },
  23277. ]
  23278. ))
  23279. characterMakers.push(() => makeCharacter(
  23280. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23281. {
  23282. side: {
  23283. height: math.unit(25.5, "feet"),
  23284. weight: math.unit(23000, "kg"),
  23285. name: "Side",
  23286. image: {
  23287. source: "./media/characters/kanara/side.svg"
  23288. }
  23289. },
  23290. },
  23291. [
  23292. {
  23293. name: "Normal",
  23294. height: math.unit(25.5, "feet"),
  23295. default: true
  23296. },
  23297. ]
  23298. ))
  23299. characterMakers.push(() => makeCharacter(
  23300. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23301. {
  23302. side: {
  23303. height: math.unit(10, "feet"),
  23304. weight: math.unit(1000, "kg"),
  23305. name: "Side",
  23306. image: {
  23307. source: "./media/characters/ereus/side.svg",
  23308. extra: 1157 / 959,
  23309. bottom: 153 / 1312.5
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "Normal",
  23316. height: math.unit(10, "feet"),
  23317. default: true
  23318. },
  23319. ]
  23320. ))
  23321. characterMakers.push(() => makeCharacter(
  23322. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23323. {
  23324. side: {
  23325. height: math.unit(4.5, "feet"),
  23326. weight: math.unit(500, "lb"),
  23327. name: "Side",
  23328. image: {
  23329. source: "./media/characters/e-ter/side.svg",
  23330. extra: 1550 / 1248,
  23331. bottom: 146 / 1694
  23332. }
  23333. },
  23334. },
  23335. [
  23336. {
  23337. name: "Normal",
  23338. height: math.unit(4.5, "feet"),
  23339. default: true
  23340. },
  23341. ]
  23342. ))
  23343. characterMakers.push(() => makeCharacter(
  23344. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23345. {
  23346. side: {
  23347. height: math.unit(9.7, "feet"),
  23348. weight: math.unit(4000, "kg"),
  23349. name: "Side",
  23350. image: {
  23351. source: "./media/characters/yamie/side.svg"
  23352. }
  23353. },
  23354. },
  23355. [
  23356. {
  23357. name: "Normal",
  23358. height: math.unit(9.7, "feet"),
  23359. default: true
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23365. {
  23366. front: {
  23367. height: math.unit(50, "feet"),
  23368. weight: math.unit(50000, "kg"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/anders/front.svg",
  23372. extra: 570 / 539,
  23373. bottom: 14.7 / 586.7
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Large",
  23380. height: math.unit(50, "feet")
  23381. },
  23382. {
  23383. name: "Macro",
  23384. height: math.unit(2000, "feet"),
  23385. default: true
  23386. },
  23387. {
  23388. name: "Megamacro",
  23389. height: math.unit(12, "miles")
  23390. },
  23391. ]
  23392. ))
  23393. characterMakers.push(() => makeCharacter(
  23394. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23395. {
  23396. front: {
  23397. height: math.unit(7 + 2 / 12, "feet"),
  23398. weight: math.unit(300, "lb"),
  23399. name: "Front",
  23400. image: {
  23401. source: "./media/characters/reban/front.svg",
  23402. extra: 1287/1212,
  23403. bottom: 148/1435
  23404. }
  23405. },
  23406. head: {
  23407. height: math.unit(1.95, "feet"),
  23408. name: "Head",
  23409. image: {
  23410. source: "./media/characters/reban/head.svg"
  23411. }
  23412. },
  23413. maw: {
  23414. height: math.unit(0.95, "feet"),
  23415. name: "Maw",
  23416. image: {
  23417. source: "./media/characters/reban/maw.svg"
  23418. }
  23419. },
  23420. foot: {
  23421. height: math.unit(1.65, "feet"),
  23422. name: "Foot",
  23423. image: {
  23424. source: "./media/characters/reban/foot.svg"
  23425. }
  23426. },
  23427. dick: {
  23428. height: math.unit(7 / 5, "feet"),
  23429. name: "Dick",
  23430. image: {
  23431. source: "./media/characters/reban/dick.svg"
  23432. }
  23433. },
  23434. },
  23435. [
  23436. {
  23437. name: "Natural Height",
  23438. height: math.unit(7 + 2 / 12, "feet")
  23439. },
  23440. {
  23441. name: "Macro",
  23442. height: math.unit(500, "feet"),
  23443. default: true
  23444. },
  23445. {
  23446. name: "Canon Height",
  23447. height: math.unit(50, "AU")
  23448. },
  23449. ]
  23450. ))
  23451. characterMakers.push(() => makeCharacter(
  23452. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23453. {
  23454. front: {
  23455. height: math.unit(6, "feet"),
  23456. weight: math.unit(150, "lb"),
  23457. name: "Front",
  23458. image: {
  23459. source: "./media/characters/terrance-keayes/front.svg",
  23460. extra: 1.005,
  23461. bottom: 151 / 1615
  23462. }
  23463. },
  23464. side: {
  23465. height: math.unit(6, "feet"),
  23466. weight: math.unit(150, "lb"),
  23467. name: "Side",
  23468. image: {
  23469. source: "./media/characters/terrance-keayes/side.svg",
  23470. extra: 1.005,
  23471. bottom: 129.4 / 1544
  23472. }
  23473. },
  23474. back: {
  23475. height: math.unit(6, "feet"),
  23476. weight: math.unit(150, "lb"),
  23477. name: "Back",
  23478. image: {
  23479. source: "./media/characters/terrance-keayes/back.svg",
  23480. extra: 1.005,
  23481. bottom: 58.4 / 1557.3
  23482. }
  23483. },
  23484. dick: {
  23485. height: math.unit(6 * 0.208, "feet"),
  23486. name: "Dick",
  23487. image: {
  23488. source: "./media/characters/terrance-keayes/dick.svg"
  23489. }
  23490. },
  23491. },
  23492. [
  23493. {
  23494. name: "Canon Height",
  23495. height: math.unit(35, "miles"),
  23496. default: true
  23497. },
  23498. ]
  23499. ))
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23502. {
  23503. front: {
  23504. height: math.unit(6, "feet"),
  23505. weight: math.unit(150, "lb"),
  23506. name: "Front",
  23507. image: {
  23508. source: "./media/characters/ofelia/front.svg",
  23509. extra: 1130/1117,
  23510. bottom: 91/1221
  23511. }
  23512. },
  23513. back: {
  23514. height: math.unit(6, "feet"),
  23515. weight: math.unit(150, "lb"),
  23516. name: "Back",
  23517. image: {
  23518. source: "./media/characters/ofelia/back.svg",
  23519. extra: 1172/1159,
  23520. bottom: 28/1200
  23521. }
  23522. },
  23523. maw: {
  23524. height: math.unit(1, "feet"),
  23525. name: "Maw",
  23526. image: {
  23527. source: "./media/characters/ofelia/maw.svg"
  23528. }
  23529. },
  23530. foot: {
  23531. height: math.unit(1.949, "feet"),
  23532. name: "Foot",
  23533. image: {
  23534. source: "./media/characters/ofelia/foot.svg"
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Canon Height",
  23541. height: math.unit(2000, "miles"),
  23542. default: true
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23548. {
  23549. front: {
  23550. height: math.unit(6, "feet"),
  23551. weight: math.unit(150, "lb"),
  23552. name: "Front",
  23553. image: {
  23554. source: "./media/characters/samuel/front.svg",
  23555. extra: 265 / 258,
  23556. bottom: 2 / 266.1566
  23557. }
  23558. },
  23559. },
  23560. [
  23561. {
  23562. name: "Macro",
  23563. height: math.unit(100, "feet"),
  23564. default: true
  23565. },
  23566. {
  23567. name: "Full Size",
  23568. height: math.unit(1000, "miles")
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23574. {
  23575. front: {
  23576. height: math.unit(6, "feet"),
  23577. weight: math.unit(300, "lb"),
  23578. name: "Front",
  23579. image: {
  23580. source: "./media/characters/beishir-kiel/front.svg",
  23581. extra: 569 / 547,
  23582. bottom: 41.9 / 609
  23583. }
  23584. },
  23585. maw: {
  23586. height: math.unit(6 * 0.202, "feet"),
  23587. name: "Maw",
  23588. image: {
  23589. source: "./media/characters/beishir-kiel/maw.svg"
  23590. }
  23591. },
  23592. },
  23593. [
  23594. {
  23595. name: "Macro",
  23596. height: math.unit(300, "feet"),
  23597. default: true
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23603. {
  23604. front: {
  23605. height: math.unit(5 + 7/12, "feet"),
  23606. weight: math.unit(120, "lb"),
  23607. name: "Front",
  23608. image: {
  23609. source: "./media/characters/logan-grey/front.svg",
  23610. extra: 1836/1738,
  23611. bottom: 108/1944
  23612. }
  23613. },
  23614. back: {
  23615. height: math.unit(5 + 7/12, "feet"),
  23616. weight: math.unit(120, "lb"),
  23617. name: "Back",
  23618. image: {
  23619. source: "./media/characters/logan-grey/back.svg",
  23620. extra: 1880/1794,
  23621. bottom: 24/1904
  23622. }
  23623. },
  23624. frontSfw: {
  23625. height: math.unit(5 + 7/12, "feet"),
  23626. weight: math.unit(120, "lb"),
  23627. name: "Front (SFW)",
  23628. image: {
  23629. source: "./media/characters/logan-grey/front-sfw.svg",
  23630. extra: 1836/1738,
  23631. bottom: 108/1944
  23632. }
  23633. },
  23634. backSfw: {
  23635. height: math.unit(5 + 7/12, "feet"),
  23636. weight: math.unit(120, "lb"),
  23637. name: "Back (SFW)",
  23638. image: {
  23639. source: "./media/characters/logan-grey/back-sfw.svg",
  23640. extra: 1880/1794,
  23641. bottom: 24/1904
  23642. }
  23643. },
  23644. hands: {
  23645. height: math.unit(0.84, "feet"),
  23646. name: "Hands",
  23647. image: {
  23648. source: "./media/characters/logan-grey/hands.svg"
  23649. }
  23650. },
  23651. paws: {
  23652. height: math.unit(0.72, "feet"),
  23653. name: "Paws",
  23654. image: {
  23655. source: "./media/characters/logan-grey/paws.svg"
  23656. }
  23657. },
  23658. cock: {
  23659. height: math.unit(1.45, "feet"),
  23660. name: "Cock",
  23661. image: {
  23662. source: "./media/characters/logan-grey/cock.svg"
  23663. }
  23664. },
  23665. cockAlt: {
  23666. height: math.unit(1.437, "feet"),
  23667. name: "Cock (alt)",
  23668. image: {
  23669. source: "./media/characters/logan-grey/cock-alt.svg"
  23670. }
  23671. },
  23672. },
  23673. [
  23674. {
  23675. name: "Normal",
  23676. height: math.unit(5 + 8 / 12, "feet")
  23677. },
  23678. {
  23679. name: "The 500 Foot Femboy",
  23680. height: math.unit(500, "feet"),
  23681. default: true
  23682. },
  23683. {
  23684. name: "Megmacro",
  23685. height: math.unit(20, "miles")
  23686. },
  23687. ]
  23688. ))
  23689. characterMakers.push(() => makeCharacter(
  23690. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23691. {
  23692. front: {
  23693. height: math.unit(8 + 2 / 12, "feet"),
  23694. weight: math.unit(275, "lb"),
  23695. name: "Front",
  23696. image: {
  23697. source: "./media/characters/draganta/front.svg",
  23698. extra: 1177 / 1135,
  23699. bottom: 33.46 / 1212.1
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Normal",
  23706. height: math.unit(8 + 6 / 12, "feet"),
  23707. default: true
  23708. },
  23709. {
  23710. name: "Macro",
  23711. height: math.unit(150, "feet")
  23712. },
  23713. {
  23714. name: "Megamacro",
  23715. height: math.unit(1000, "miles")
  23716. },
  23717. ]
  23718. ))
  23719. characterMakers.push(() => makeCharacter(
  23720. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23721. {
  23722. front: {
  23723. height: math.unit(1.72, "m"),
  23724. weight: math.unit(80, "lb"),
  23725. name: "Front",
  23726. image: {
  23727. source: "./media/characters/voski/front.svg",
  23728. extra: 2076.22 / 2022.4,
  23729. bottom: 102.7 / 2177.3866
  23730. }
  23731. },
  23732. frontFlaccid: {
  23733. height: math.unit(1.72, "m"),
  23734. weight: math.unit(80, "lb"),
  23735. name: "Front (Flaccid)",
  23736. image: {
  23737. source: "./media/characters/voski/front-flaccid.svg",
  23738. extra: 2076.22 / 2022.4,
  23739. bottom: 102.7 / 2177.3866
  23740. }
  23741. },
  23742. frontErect: {
  23743. height: math.unit(1.72, "m"),
  23744. weight: math.unit(80, "lb"),
  23745. name: "Front (Erect)",
  23746. image: {
  23747. source: "./media/characters/voski/front-erect.svg",
  23748. extra: 2076.22 / 2022.4,
  23749. bottom: 102.7 / 2177.3866
  23750. }
  23751. },
  23752. back: {
  23753. height: math.unit(1.72, "m"),
  23754. weight: math.unit(80, "lb"),
  23755. name: "Back",
  23756. image: {
  23757. source: "./media/characters/voski/back.svg",
  23758. extra: 2104 / 2051,
  23759. bottom: 10.45 / 2113.63
  23760. }
  23761. },
  23762. },
  23763. [
  23764. {
  23765. name: "Normal",
  23766. height: math.unit(1.72, "m")
  23767. },
  23768. {
  23769. name: "Macro",
  23770. height: math.unit(55, "m"),
  23771. default: true
  23772. },
  23773. {
  23774. name: "Macro+",
  23775. height: math.unit(300, "m")
  23776. },
  23777. {
  23778. name: "Macro++",
  23779. height: math.unit(700, "m")
  23780. },
  23781. {
  23782. name: "Macro+++",
  23783. height: math.unit(4500, "m")
  23784. },
  23785. {
  23786. name: "Macro++++",
  23787. height: math.unit(45, "km")
  23788. },
  23789. {
  23790. name: "Macro+++++",
  23791. height: math.unit(1220, "km")
  23792. },
  23793. ]
  23794. ))
  23795. characterMakers.push(() => makeCharacter(
  23796. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23797. {
  23798. front: {
  23799. height: math.unit(2.3, "m"),
  23800. weight: math.unit(304, "kg"),
  23801. name: "Front",
  23802. image: {
  23803. source: "./media/characters/icowom-lee/front.svg",
  23804. extra: 985 / 955,
  23805. bottom: 25.4 / 1012
  23806. }
  23807. },
  23808. fronttentacles: {
  23809. height: math.unit(2.3, "m"),
  23810. weight: math.unit(304, "kg"),
  23811. name: "Front-tentacles",
  23812. image: {
  23813. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23814. extra: 985 / 955,
  23815. bottom: 25.4 / 1012
  23816. }
  23817. },
  23818. back: {
  23819. height: math.unit(2.3, "m"),
  23820. weight: math.unit(304, "kg"),
  23821. name: "Back",
  23822. image: {
  23823. source: "./media/characters/icowom-lee/back.svg",
  23824. extra: 975 / 954,
  23825. bottom: 9.5 / 985
  23826. }
  23827. },
  23828. backtentacles: {
  23829. height: math.unit(2.3, "m"),
  23830. weight: math.unit(304, "kg"),
  23831. name: "Back-tentacles",
  23832. image: {
  23833. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23834. extra: 975 / 954,
  23835. bottom: 9.5 / 985
  23836. }
  23837. },
  23838. frontDressed: {
  23839. height: math.unit(2.3, "m"),
  23840. weight: math.unit(304, "kg"),
  23841. name: "Front (Dressed)",
  23842. image: {
  23843. source: "./media/characters/icowom-lee/front-dressed.svg",
  23844. extra: 3076 / 2933,
  23845. bottom: 51.4 / 3125.1889
  23846. }
  23847. },
  23848. rump: {
  23849. height: math.unit(0.776, "meters"),
  23850. name: "Rump",
  23851. image: {
  23852. source: "./media/characters/icowom-lee/rump.svg"
  23853. }
  23854. },
  23855. genitals: {
  23856. height: math.unit(0.78, "meters"),
  23857. name: "Genitals",
  23858. image: {
  23859. source: "./media/characters/icowom-lee/genitals.svg"
  23860. }
  23861. },
  23862. },
  23863. [
  23864. {
  23865. name: "Normal",
  23866. height: math.unit(2.3, "meters"),
  23867. default: true
  23868. },
  23869. {
  23870. name: "Macro",
  23871. height: math.unit(94, "meters"),
  23872. default: true
  23873. },
  23874. ]
  23875. ))
  23876. characterMakers.push(() => makeCharacter(
  23877. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23878. {
  23879. front: {
  23880. height: math.unit(22, "meters"),
  23881. weight: math.unit(21000, "kg"),
  23882. name: "Front",
  23883. image: {
  23884. source: "./media/characters/shock-diamond/front.svg",
  23885. extra: 2204 / 2053,
  23886. bottom: 65 / 2239.47
  23887. }
  23888. },
  23889. frontNude: {
  23890. height: math.unit(22, "meters"),
  23891. weight: math.unit(21000, "kg"),
  23892. name: "Front (Nude)",
  23893. image: {
  23894. source: "./media/characters/shock-diamond/front-nude.svg",
  23895. extra: 2514 / 2285,
  23896. bottom: 13 / 2527.56
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(3, "meters")
  23904. },
  23905. {
  23906. name: "Macro",
  23907. height: math.unit(22, "meters"),
  23908. default: true
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23914. {
  23915. front: {
  23916. height: math.unit(5 + 4 / 12, "feet"),
  23917. weight: math.unit(120, "lb"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/rory/front.svg",
  23921. extra: 1318/1241,
  23922. bottom: 42/1360
  23923. }
  23924. },
  23925. back: {
  23926. height: math.unit(5 + 4 / 12, "feet"),
  23927. weight: math.unit(120, "lb"),
  23928. name: "Back",
  23929. image: {
  23930. source: "./media/characters/rory/back.svg",
  23931. extra: 1318/1241,
  23932. bottom: 42/1360
  23933. }
  23934. },
  23935. butt: {
  23936. height: math.unit(1.74, "feet"),
  23937. name: "Butt",
  23938. image: {
  23939. source: "./media/characters/rory/butt.svg"
  23940. }
  23941. },
  23942. dick: {
  23943. height: math.unit(1.02, "feet"),
  23944. name: "Dick",
  23945. image: {
  23946. source: "./media/characters/rory/dick.svg"
  23947. }
  23948. },
  23949. paws: {
  23950. height: math.unit(1, "feet"),
  23951. name: "Paws",
  23952. image: {
  23953. source: "./media/characters/rory/paws.svg"
  23954. }
  23955. },
  23956. frontAlt: {
  23957. height: math.unit(5 + 4 / 12, "feet"),
  23958. weight: math.unit(120, "lb"),
  23959. name: "Front (Alt)",
  23960. image: {
  23961. source: "./media/characters/rory/front-alt.svg",
  23962. extra: 589 / 556,
  23963. bottom: 45.7 / 635.76
  23964. }
  23965. },
  23966. frontAltNude: {
  23967. height: math.unit(5 + 4 / 12, "feet"),
  23968. weight: math.unit(120, "lb"),
  23969. name: "Front (Alt, Nude)",
  23970. image: {
  23971. source: "./media/characters/rory/front-alt-nude.svg",
  23972. extra: 589 / 556,
  23973. bottom: 45.7 / 635.76
  23974. }
  23975. },
  23976. side: {
  23977. height: math.unit(5 + 4 / 12, "feet"),
  23978. weight: math.unit(120, "lb"),
  23979. name: "Side",
  23980. image: {
  23981. source: "./media/characters/rory/side.svg",
  23982. extra: 597 / 564,
  23983. bottom: 55 / 653
  23984. }
  23985. },
  23986. backAlt: {
  23987. height: math.unit(5 + 4 / 12, "feet"),
  23988. weight: math.unit(120, "lb"),
  23989. name: "Back (Alt)",
  23990. image: {
  23991. source: "./media/characters/rory/back-alt.svg",
  23992. extra: 620 / 585,
  23993. bottom: 8.86 / 630.43
  23994. }
  23995. },
  23996. dickAlt: {
  23997. height: math.unit(0.86, "feet"),
  23998. name: "Dick (Alt)",
  23999. image: {
  24000. source: "./media/characters/rory/dick-alt.svg"
  24001. }
  24002. },
  24003. },
  24004. [
  24005. {
  24006. name: "Normal",
  24007. height: math.unit(5 + 4 / 12, "feet"),
  24008. default: true
  24009. },
  24010. {
  24011. name: "Macro",
  24012. height: math.unit(100, "feet")
  24013. },
  24014. {
  24015. name: "Macro+",
  24016. height: math.unit(140, "feet")
  24017. },
  24018. {
  24019. name: "Macro++",
  24020. height: math.unit(300, "feet")
  24021. },
  24022. ]
  24023. ))
  24024. characterMakers.push(() => makeCharacter(
  24025. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24026. {
  24027. front: {
  24028. height: math.unit(5 + 9 / 12, "feet"),
  24029. weight: math.unit(190, "lb"),
  24030. name: "Front",
  24031. image: {
  24032. source: "./media/characters/sprisk/front.svg",
  24033. extra: 1225 / 1180,
  24034. bottom: 42.7 / 1266.4
  24035. }
  24036. },
  24037. frontNsfw: {
  24038. height: math.unit(5 + 9 / 12, "feet"),
  24039. weight: math.unit(190, "lb"),
  24040. name: "Front (NSFW)",
  24041. image: {
  24042. source: "./media/characters/sprisk/front-nsfw.svg",
  24043. extra: 1225 / 1180,
  24044. bottom: 42.7 / 1266.4
  24045. }
  24046. },
  24047. back: {
  24048. height: math.unit(5 + 9 / 12, "feet"),
  24049. weight: math.unit(190, "lb"),
  24050. name: "Back",
  24051. image: {
  24052. source: "./media/characters/sprisk/back.svg",
  24053. extra: 1247 / 1200,
  24054. bottom: 5.6 / 1253.04
  24055. }
  24056. },
  24057. },
  24058. [
  24059. {
  24060. name: "Tiny",
  24061. height: math.unit(2, "inches")
  24062. },
  24063. {
  24064. name: "Normal",
  24065. height: math.unit(5 + 9 / 12, "feet"),
  24066. default: true
  24067. },
  24068. {
  24069. name: "Mini Macro",
  24070. height: math.unit(18, "feet")
  24071. },
  24072. {
  24073. name: "Macro",
  24074. height: math.unit(100, "feet")
  24075. },
  24076. {
  24077. name: "MACRO",
  24078. height: math.unit(50, "miles")
  24079. },
  24080. {
  24081. name: "M A C R O",
  24082. height: math.unit(300, "miles")
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24088. {
  24089. side: {
  24090. height: math.unit(15.6, "meters"),
  24091. weight: math.unit(700000, "kg"),
  24092. name: "Side",
  24093. image: {
  24094. source: "./media/characters/bunsen/side.svg",
  24095. extra: 1644 / 358
  24096. }
  24097. },
  24098. foot: {
  24099. height: math.unit(1.611 * 1644 / 358, "meter"),
  24100. name: "Foot",
  24101. image: {
  24102. source: "./media/characters/bunsen/foot.svg"
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Small",
  24109. height: math.unit(10, "feet")
  24110. },
  24111. {
  24112. name: "Normal",
  24113. height: math.unit(15.6, "meters"),
  24114. default: true
  24115. },
  24116. ]
  24117. ))
  24118. characterMakers.push(() => makeCharacter(
  24119. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24120. {
  24121. front: {
  24122. height: math.unit(4 + 11 / 12, "feet"),
  24123. weight: math.unit(140, "lb"),
  24124. name: "Front",
  24125. image: {
  24126. source: "./media/characters/sesh/front.svg",
  24127. extra: 3420 / 3231,
  24128. bottom: 72 / 3949.5
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Normal",
  24135. height: math.unit(4 + 11 / 12, "feet")
  24136. },
  24137. {
  24138. name: "Grown",
  24139. height: math.unit(15, "feet"),
  24140. default: true
  24141. },
  24142. {
  24143. name: "Macro",
  24144. height: math.unit(1500, "feet")
  24145. },
  24146. {
  24147. name: "Megamacro",
  24148. height: math.unit(30, "miles")
  24149. },
  24150. {
  24151. name: "Continental",
  24152. height: math.unit(3000, "miles")
  24153. },
  24154. {
  24155. name: "Gravity Mass",
  24156. height: math.unit(300000, "miles")
  24157. },
  24158. {
  24159. name: "Planet Buster",
  24160. height: math.unit(30000000, "miles")
  24161. },
  24162. {
  24163. name: "Big",
  24164. height: math.unit(3000000000, "miles")
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24170. {
  24171. front: {
  24172. height: math.unit(9, "feet"),
  24173. weight: math.unit(350, "lb"),
  24174. name: "Front",
  24175. image: {
  24176. source: "./media/characters/pepper/front.svg",
  24177. extra: 1448 / 1312,
  24178. bottom: 9.4 / 1457.88
  24179. }
  24180. },
  24181. back: {
  24182. height: math.unit(9, "feet"),
  24183. weight: math.unit(350, "lb"),
  24184. name: "Back",
  24185. image: {
  24186. source: "./media/characters/pepper/back.svg",
  24187. extra: 1423 / 1300,
  24188. bottom: 4.6 / 1429
  24189. }
  24190. },
  24191. maw: {
  24192. height: math.unit(0.932, "feet"),
  24193. name: "Maw",
  24194. image: {
  24195. source: "./media/characters/pepper/maw.svg"
  24196. }
  24197. },
  24198. },
  24199. [
  24200. {
  24201. name: "Normal",
  24202. height: math.unit(9, "feet"),
  24203. default: true
  24204. },
  24205. ]
  24206. ))
  24207. characterMakers.push(() => makeCharacter(
  24208. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24209. {
  24210. front: {
  24211. height: math.unit(6, "feet"),
  24212. weight: math.unit(150, "lb"),
  24213. name: "Front",
  24214. image: {
  24215. source: "./media/characters/maelstrom/front.svg",
  24216. extra: 2100 / 1883,
  24217. bottom: 94 / 2196.7
  24218. }
  24219. },
  24220. },
  24221. [
  24222. {
  24223. name: "Less Kaiju",
  24224. height: math.unit(200, "feet")
  24225. },
  24226. {
  24227. name: "Kaiju",
  24228. height: math.unit(400, "feet"),
  24229. default: true
  24230. },
  24231. {
  24232. name: "Kaiju-er",
  24233. height: math.unit(600, "feet")
  24234. },
  24235. ]
  24236. ))
  24237. characterMakers.push(() => makeCharacter(
  24238. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24239. {
  24240. front: {
  24241. height: math.unit(6 + 5 / 12, "feet"),
  24242. weight: math.unit(180, "lb"),
  24243. name: "Front",
  24244. image: {
  24245. source: "./media/characters/lexir/front.svg",
  24246. extra: 180 / 172,
  24247. bottom: 12 / 192
  24248. }
  24249. },
  24250. back: {
  24251. height: math.unit(6 + 5 / 12, "feet"),
  24252. weight: math.unit(180, "lb"),
  24253. name: "Back",
  24254. image: {
  24255. source: "./media/characters/lexir/back.svg",
  24256. extra: 1273/1201,
  24257. bottom: 39/1312
  24258. }
  24259. },
  24260. },
  24261. [
  24262. {
  24263. name: "Very Smal",
  24264. height: math.unit(1, "nm")
  24265. },
  24266. {
  24267. name: "Normal",
  24268. height: math.unit(6 + 5 / 12, "feet"),
  24269. default: true
  24270. },
  24271. {
  24272. name: "Macro",
  24273. height: math.unit(1, "mile")
  24274. },
  24275. {
  24276. name: "Megamacro",
  24277. height: math.unit(50, "miles")
  24278. },
  24279. ]
  24280. ))
  24281. characterMakers.push(() => makeCharacter(
  24282. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24283. {
  24284. front: {
  24285. height: math.unit(1.5, "meters"),
  24286. weight: math.unit(100, "lb"),
  24287. name: "Front",
  24288. image: {
  24289. source: "./media/characters/maksio/front.svg",
  24290. extra: 1549 / 1531,
  24291. bottom: 123.7 / 1674.5429
  24292. }
  24293. },
  24294. back: {
  24295. height: math.unit(1.5, "meters"),
  24296. weight: math.unit(100, "lb"),
  24297. name: "Back",
  24298. image: {
  24299. source: "./media/characters/maksio/back.svg",
  24300. extra: 1541 / 1509,
  24301. bottom: 97 / 1639
  24302. }
  24303. },
  24304. hand: {
  24305. height: math.unit(0.621, "feet"),
  24306. name: "Hand",
  24307. image: {
  24308. source: "./media/characters/maksio/hand.svg"
  24309. }
  24310. },
  24311. foot: {
  24312. height: math.unit(1.611, "feet"),
  24313. name: "Foot",
  24314. image: {
  24315. source: "./media/characters/maksio/foot.svg"
  24316. }
  24317. },
  24318. },
  24319. [
  24320. {
  24321. name: "Shrunken",
  24322. height: math.unit(10, "cm")
  24323. },
  24324. {
  24325. name: "Normal",
  24326. height: math.unit(150, "cm"),
  24327. default: true
  24328. },
  24329. ]
  24330. ))
  24331. characterMakers.push(() => makeCharacter(
  24332. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24333. {
  24334. front: {
  24335. height: math.unit(100, "feet"),
  24336. name: "Front",
  24337. image: {
  24338. source: "./media/characters/erza-bear/front.svg",
  24339. extra: 2449 / 2390,
  24340. bottom: 46 / 2494
  24341. }
  24342. },
  24343. back: {
  24344. height: math.unit(100, "feet"),
  24345. name: "Back",
  24346. image: {
  24347. source: "./media/characters/erza-bear/back.svg",
  24348. extra: 2489 / 2430,
  24349. bottom: 85.4 / 2480
  24350. }
  24351. },
  24352. tail: {
  24353. height: math.unit(42, "feet"),
  24354. name: "Tail",
  24355. image: {
  24356. source: "./media/characters/erza-bear/tail.svg"
  24357. }
  24358. },
  24359. tongue: {
  24360. height: math.unit(8, "feet"),
  24361. name: "Tongue",
  24362. image: {
  24363. source: "./media/characters/erza-bear/tongue.svg"
  24364. }
  24365. },
  24366. dick: {
  24367. height: math.unit(10.5, "feet"),
  24368. name: "Dick",
  24369. image: {
  24370. source: "./media/characters/erza-bear/dick.svg"
  24371. }
  24372. },
  24373. dickVertical: {
  24374. height: math.unit(16.9, "feet"),
  24375. name: "Dick (Vertical)",
  24376. image: {
  24377. source: "./media/characters/erza-bear/dick-vertical.svg"
  24378. }
  24379. },
  24380. },
  24381. [
  24382. {
  24383. name: "Macro",
  24384. height: math.unit(100, "feet"),
  24385. default: true
  24386. },
  24387. ]
  24388. ))
  24389. characterMakers.push(() => makeCharacter(
  24390. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24391. {
  24392. front: {
  24393. height: math.unit(172, "cm"),
  24394. weight: math.unit(73, "kg"),
  24395. name: "Front",
  24396. image: {
  24397. source: "./media/characters/violet-flor/front.svg",
  24398. extra: 1530 / 1442,
  24399. bottom: 61.9 / 1588.8
  24400. }
  24401. },
  24402. back: {
  24403. height: math.unit(180, "cm"),
  24404. weight: math.unit(73, "kg"),
  24405. name: "Back",
  24406. image: {
  24407. source: "./media/characters/violet-flor/back.svg",
  24408. extra: 1692 / 1630,
  24409. bottom: 20 / 1712
  24410. }
  24411. },
  24412. },
  24413. [
  24414. {
  24415. name: "Normal",
  24416. height: math.unit(172, "cm"),
  24417. default: true
  24418. },
  24419. ]
  24420. ))
  24421. characterMakers.push(() => makeCharacter(
  24422. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24423. {
  24424. front: {
  24425. height: math.unit(6, "feet"),
  24426. weight: math.unit(220, "lb"),
  24427. name: "Front",
  24428. image: {
  24429. source: "./media/characters/lynn-rhea/front.svg",
  24430. extra: 310 / 273
  24431. }
  24432. },
  24433. back: {
  24434. height: math.unit(6, "feet"),
  24435. weight: math.unit(220, "lb"),
  24436. name: "Back",
  24437. image: {
  24438. source: "./media/characters/lynn-rhea/back.svg",
  24439. extra: 310 / 273
  24440. }
  24441. },
  24442. dicks: {
  24443. height: math.unit(0.9, "feet"),
  24444. name: "Dicks",
  24445. image: {
  24446. source: "./media/characters/lynn-rhea/dicks.svg"
  24447. }
  24448. },
  24449. slit: {
  24450. height: math.unit(0.4, "feet"),
  24451. name: "Slit",
  24452. image: {
  24453. source: "./media/characters/lynn-rhea/slit.svg"
  24454. }
  24455. },
  24456. },
  24457. [
  24458. {
  24459. name: "Micro",
  24460. height: math.unit(1, "inch")
  24461. },
  24462. {
  24463. name: "Macro",
  24464. height: math.unit(60, "feet"),
  24465. default: true
  24466. },
  24467. {
  24468. name: "Megamacro",
  24469. height: math.unit(2, "miles")
  24470. },
  24471. {
  24472. name: "Gigamacro",
  24473. height: math.unit(3, "earths")
  24474. },
  24475. {
  24476. name: "Galactic",
  24477. height: math.unit(0.8, "galaxies")
  24478. },
  24479. ]
  24480. ))
  24481. characterMakers.push(() => makeCharacter(
  24482. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24483. {
  24484. front: {
  24485. height: math.unit(1600, "feet"),
  24486. weight: math.unit(85758785169, "kg"),
  24487. name: "Front",
  24488. image: {
  24489. source: "./media/characters/valathos/front.svg",
  24490. extra: 1451 / 1339
  24491. }
  24492. },
  24493. },
  24494. [
  24495. {
  24496. name: "Macro",
  24497. height: math.unit(1600, "feet"),
  24498. default: true
  24499. },
  24500. ]
  24501. ))
  24502. characterMakers.push(() => makeCharacter(
  24503. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24504. {
  24505. front: {
  24506. height: math.unit(7 + 5 / 12, "feet"),
  24507. weight: math.unit(300, "lb"),
  24508. name: "Front",
  24509. image: {
  24510. source: "./media/characters/azula/front.svg",
  24511. extra: 3208 / 2880,
  24512. bottom: 80.2 / 3277
  24513. }
  24514. },
  24515. back: {
  24516. height: math.unit(7 + 5 / 12, "feet"),
  24517. weight: math.unit(300, "lb"),
  24518. name: "Back",
  24519. image: {
  24520. source: "./media/characters/azula/back.svg",
  24521. extra: 3169 / 2822,
  24522. bottom: 150.6 / 3321
  24523. }
  24524. },
  24525. },
  24526. [
  24527. {
  24528. name: "Normal",
  24529. height: math.unit(7 + 5 / 12, "feet"),
  24530. default: true
  24531. },
  24532. {
  24533. name: "Big",
  24534. height: math.unit(20, "feet")
  24535. },
  24536. ]
  24537. ))
  24538. characterMakers.push(() => makeCharacter(
  24539. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24540. {
  24541. front: {
  24542. height: math.unit(5 + 1 / 12, "feet"),
  24543. weight: math.unit(110, "lb"),
  24544. name: "Front",
  24545. image: {
  24546. source: "./media/characters/rupert/front.svg",
  24547. extra: 1549 / 1495,
  24548. bottom: 54.2 / 1604.4
  24549. }
  24550. },
  24551. },
  24552. [
  24553. {
  24554. name: "Normal",
  24555. height: math.unit(5 + 1 / 12, "feet"),
  24556. default: true
  24557. },
  24558. ]
  24559. ))
  24560. characterMakers.push(() => makeCharacter(
  24561. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24562. {
  24563. front: {
  24564. height: math.unit(8 + 4 / 12, "feet"),
  24565. weight: math.unit(350, "lb"),
  24566. name: "Front",
  24567. image: {
  24568. source: "./media/characters/sheera-castellar/front.svg",
  24569. extra: 1957 / 1894,
  24570. bottom: 26.97 / 1975.017
  24571. }
  24572. },
  24573. side: {
  24574. height: math.unit(8 + 4 / 12, "feet"),
  24575. weight: math.unit(350, "lb"),
  24576. name: "Side",
  24577. image: {
  24578. source: "./media/characters/sheera-castellar/side.svg",
  24579. extra: 1957 / 1894
  24580. }
  24581. },
  24582. back: {
  24583. height: math.unit(8 + 4 / 12, "feet"),
  24584. weight: math.unit(350, "lb"),
  24585. name: "Back",
  24586. image: {
  24587. source: "./media/characters/sheera-castellar/back.svg",
  24588. extra: 1957 / 1894
  24589. }
  24590. },
  24591. angled: {
  24592. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24593. weight: math.unit(350, "lb"),
  24594. name: "Angled",
  24595. image: {
  24596. source: "./media/characters/sheera-castellar/angled.svg",
  24597. extra: 1807 / 1707,
  24598. bottom: 68 / 1875
  24599. }
  24600. },
  24601. genitals: {
  24602. height: math.unit(2.2, "feet"),
  24603. name: "Genitals",
  24604. image: {
  24605. source: "./media/characters/sheera-castellar/genitals.svg"
  24606. }
  24607. },
  24608. taur: {
  24609. height: math.unit(10 + 6/12, "feet"),
  24610. name: "Taur",
  24611. image: {
  24612. source: "./media/characters/sheera-castellar/taur.svg",
  24613. extra: 2017/1909,
  24614. bottom: 185/2202
  24615. }
  24616. },
  24617. },
  24618. [
  24619. {
  24620. name: "Normal",
  24621. height: math.unit(8 + 4 / 12, "feet")
  24622. },
  24623. {
  24624. name: "Macro",
  24625. height: math.unit(150, "feet"),
  24626. default: true
  24627. },
  24628. {
  24629. name: "Macro+",
  24630. height: math.unit(800, "feet")
  24631. },
  24632. ]
  24633. ))
  24634. characterMakers.push(() => makeCharacter(
  24635. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24636. {
  24637. front: {
  24638. height: math.unit(6, "feet"),
  24639. weight: math.unit(150, "lb"),
  24640. name: "Front",
  24641. image: {
  24642. source: "./media/characters/jaipur/front.svg",
  24643. extra: 3860 / 3731,
  24644. bottom: 287 / 4140
  24645. }
  24646. },
  24647. back: {
  24648. height: math.unit(6, "feet"),
  24649. weight: math.unit(150, "lb"),
  24650. name: "Back",
  24651. image: {
  24652. source: "./media/characters/jaipur/back.svg",
  24653. extra: 1637/1561,
  24654. bottom: 154/1791
  24655. }
  24656. },
  24657. },
  24658. [
  24659. {
  24660. name: "Normal",
  24661. height: math.unit(1.85, "meters"),
  24662. default: true
  24663. },
  24664. {
  24665. name: "Macro",
  24666. height: math.unit(150, "meters")
  24667. },
  24668. {
  24669. name: "Macro+",
  24670. height: math.unit(0.5, "miles")
  24671. },
  24672. {
  24673. name: "Macro++",
  24674. height: math.unit(2.5, "miles")
  24675. },
  24676. {
  24677. name: "Macro+++",
  24678. height: math.unit(12, "miles")
  24679. },
  24680. {
  24681. name: "Macro++++",
  24682. height: math.unit(120, "miles")
  24683. },
  24684. {
  24685. name: "Macro+++++",
  24686. height: math.unit(1200, "miles")
  24687. },
  24688. ]
  24689. ))
  24690. characterMakers.push(() => makeCharacter(
  24691. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24692. {
  24693. front: {
  24694. height: math.unit(6, "feet"),
  24695. weight: math.unit(150, "lb"),
  24696. name: "Front",
  24697. image: {
  24698. source: "./media/characters/sheila-wolf/front.svg",
  24699. extra: 1931 / 1808,
  24700. bottom: 29.5 / 1960
  24701. }
  24702. },
  24703. dick: {
  24704. height: math.unit(1.464, "feet"),
  24705. name: "Dick",
  24706. image: {
  24707. source: "./media/characters/sheila-wolf/dick.svg"
  24708. }
  24709. },
  24710. muzzle: {
  24711. height: math.unit(0.513, "feet"),
  24712. name: "Muzzle",
  24713. image: {
  24714. source: "./media/characters/sheila-wolf/muzzle.svg"
  24715. }
  24716. },
  24717. },
  24718. [
  24719. {
  24720. name: "Macro",
  24721. height: math.unit(70, "feet"),
  24722. default: true
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24728. {
  24729. front: {
  24730. height: math.unit(32, "meters"),
  24731. weight: math.unit(300000, "kg"),
  24732. name: "Front",
  24733. image: {
  24734. source: "./media/characters/almor/front.svg",
  24735. extra: 1408 / 1322,
  24736. bottom: 94.6 / 1506.5
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "Macro",
  24743. height: math.unit(32, "meters"),
  24744. default: true
  24745. },
  24746. ]
  24747. ))
  24748. characterMakers.push(() => makeCharacter(
  24749. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24750. {
  24751. front: {
  24752. height: math.unit(7, "feet"),
  24753. weight: math.unit(200, "lb"),
  24754. name: "Front",
  24755. image: {
  24756. source: "./media/characters/silver/front.svg",
  24757. extra: 472.1 / 450.5,
  24758. bottom: 26.5 / 499.424
  24759. }
  24760. },
  24761. },
  24762. [
  24763. {
  24764. name: "Normal",
  24765. height: math.unit(7, "feet"),
  24766. default: true
  24767. },
  24768. {
  24769. name: "Macro",
  24770. height: math.unit(800, "feet")
  24771. },
  24772. {
  24773. name: "Megamacro",
  24774. height: math.unit(250, "miles")
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24780. {
  24781. front: {
  24782. height: math.unit(6, "feet"),
  24783. weight: math.unit(150, "lb"),
  24784. name: "Front",
  24785. image: {
  24786. source: "./media/characters/pliskin/front.svg",
  24787. extra: 1469 / 1359,
  24788. bottom: 70 / 1540
  24789. }
  24790. },
  24791. },
  24792. [
  24793. {
  24794. name: "Micro",
  24795. height: math.unit(3, "inches")
  24796. },
  24797. {
  24798. name: "Normal",
  24799. height: math.unit(5 + 11 / 12, "feet"),
  24800. default: true
  24801. },
  24802. {
  24803. name: "Macro",
  24804. height: math.unit(120, "feet")
  24805. },
  24806. ]
  24807. ))
  24808. characterMakers.push(() => makeCharacter(
  24809. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24810. {
  24811. front: {
  24812. height: math.unit(6, "feet"),
  24813. weight: math.unit(150, "lb"),
  24814. name: "Front",
  24815. image: {
  24816. source: "./media/characters/sammy/front.svg",
  24817. extra: 1193 / 1089,
  24818. bottom: 30.5 / 1226
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Macro",
  24825. height: math.unit(1700, "feet"),
  24826. default: true
  24827. },
  24828. {
  24829. name: "Examacro",
  24830. height: math.unit(2.5e9, "lightyears")
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(21, "meters"),
  24839. weight: math.unit(12, "tonnes"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/kuru/front.svg",
  24843. extra: 4301 / 3785,
  24844. bottom: 371.3 / 4691
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Macro",
  24851. height: math.unit(21, "meters"),
  24852. default: true
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24858. {
  24859. front: {
  24860. height: math.unit(23, "meters"),
  24861. weight: math.unit(12.2, "tonnes"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/rakka/front.svg",
  24865. extra: 4670 / 4169,
  24866. bottom: 301 / 4968.7
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Macro",
  24873. height: math.unit(23, "meters"),
  24874. default: true
  24875. },
  24876. ]
  24877. ))
  24878. characterMakers.push(() => makeCharacter(
  24879. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24880. {
  24881. front: {
  24882. height: math.unit(6, "feet"),
  24883. weight: math.unit(150, "lb"),
  24884. name: "Front",
  24885. image: {
  24886. source: "./media/characters/rhys-feline/front.svg",
  24887. extra: 2488 / 2308,
  24888. bottom: 35.67 / 2519.19
  24889. }
  24890. },
  24891. },
  24892. [
  24893. {
  24894. name: "Really Small",
  24895. height: math.unit(1, "nm")
  24896. },
  24897. {
  24898. name: "Micro",
  24899. height: math.unit(4, "inches")
  24900. },
  24901. {
  24902. name: "Normal",
  24903. height: math.unit(4 + 10 / 12, "feet"),
  24904. default: true
  24905. },
  24906. {
  24907. name: "Macro",
  24908. height: math.unit(100, "feet")
  24909. },
  24910. {
  24911. name: "Megamacto",
  24912. height: math.unit(50, "miles")
  24913. },
  24914. ]
  24915. ))
  24916. characterMakers.push(() => makeCharacter(
  24917. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24918. {
  24919. side: {
  24920. height: math.unit(30, "feet"),
  24921. weight: math.unit(35000, "kg"),
  24922. name: "Side",
  24923. image: {
  24924. source: "./media/characters/alydar/side.svg",
  24925. extra: 234 / 222,
  24926. bottom: 6.5 / 241
  24927. }
  24928. },
  24929. front: {
  24930. height: math.unit(30, "feet"),
  24931. weight: math.unit(35000, "kg"),
  24932. name: "Front",
  24933. image: {
  24934. source: "./media/characters/alydar/front.svg",
  24935. extra: 223.37 / 210.2,
  24936. bottom: 22.3 / 246.76
  24937. }
  24938. },
  24939. top: {
  24940. height: math.unit(64.54, "feet"),
  24941. weight: math.unit(35000, "kg"),
  24942. name: "Top",
  24943. image: {
  24944. source: "./media/characters/alydar/top.svg"
  24945. }
  24946. },
  24947. anthro: {
  24948. height: math.unit(30, "feet"),
  24949. weight: math.unit(9000, "kg"),
  24950. name: "Anthro",
  24951. image: {
  24952. source: "./media/characters/alydar/anthro.svg",
  24953. extra: 432 / 421,
  24954. bottom: 7.18 / 440
  24955. }
  24956. },
  24957. maw: {
  24958. height: math.unit(11.693, "feet"),
  24959. name: "Maw",
  24960. image: {
  24961. source: "./media/characters/alydar/maw.svg"
  24962. }
  24963. },
  24964. head: {
  24965. height: math.unit(11.693, "feet"),
  24966. name: "Head",
  24967. image: {
  24968. source: "./media/characters/alydar/head.svg"
  24969. }
  24970. },
  24971. headAlt: {
  24972. height: math.unit(12.861, "feet"),
  24973. name: "Head (Alt)",
  24974. image: {
  24975. source: "./media/characters/alydar/head-alt.svg"
  24976. }
  24977. },
  24978. wing: {
  24979. height: math.unit(20.712, "feet"),
  24980. name: "Wing",
  24981. image: {
  24982. source: "./media/characters/alydar/wing.svg"
  24983. }
  24984. },
  24985. wingFeather: {
  24986. height: math.unit(9.662, "feet"),
  24987. name: "Wing Feather",
  24988. image: {
  24989. source: "./media/characters/alydar/wing-feather.svg"
  24990. }
  24991. },
  24992. countourFeather: {
  24993. height: math.unit(4.154, "feet"),
  24994. name: "Contour Feather",
  24995. image: {
  24996. source: "./media/characters/alydar/contour-feather.svg"
  24997. }
  24998. },
  24999. },
  25000. [
  25001. {
  25002. name: "Diplomatic",
  25003. height: math.unit(13, "feet"),
  25004. default: true
  25005. },
  25006. {
  25007. name: "Small",
  25008. height: math.unit(30, "feet")
  25009. },
  25010. {
  25011. name: "Normal",
  25012. height: math.unit(95, "feet"),
  25013. default: true
  25014. },
  25015. {
  25016. name: "Large",
  25017. height: math.unit(285, "feet")
  25018. },
  25019. {
  25020. name: "Incomprehensible",
  25021. height: math.unit(450, "megameters")
  25022. },
  25023. ]
  25024. ))
  25025. characterMakers.push(() => makeCharacter(
  25026. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25027. {
  25028. side: {
  25029. height: math.unit(11, "feet"),
  25030. weight: math.unit(1750, "kg"),
  25031. name: "Side",
  25032. image: {
  25033. source: "./media/characters/selicia/side.svg",
  25034. extra: 440 / 396,
  25035. bottom: 24.8 / 465.979
  25036. }
  25037. },
  25038. maw: {
  25039. height: math.unit(4.665, "feet"),
  25040. name: "Maw",
  25041. image: {
  25042. source: "./media/characters/selicia/maw.svg"
  25043. }
  25044. },
  25045. },
  25046. [
  25047. {
  25048. name: "Normal",
  25049. height: math.unit(11, "feet"),
  25050. default: true
  25051. },
  25052. ]
  25053. ))
  25054. characterMakers.push(() => makeCharacter(
  25055. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25056. {
  25057. side: {
  25058. height: math.unit(2 + 6 / 12, "feet"),
  25059. weight: math.unit(30, "lb"),
  25060. name: "Side",
  25061. image: {
  25062. source: "./media/characters/layla/side.svg",
  25063. extra: 244 / 188,
  25064. bottom: 18.2 / 262.1
  25065. }
  25066. },
  25067. back: {
  25068. height: math.unit(2 + 6 / 12, "feet"),
  25069. weight: math.unit(30, "lb"),
  25070. name: "Back",
  25071. image: {
  25072. source: "./media/characters/layla/back.svg",
  25073. extra: 308 / 241.5,
  25074. bottom: 8.9 / 316.8
  25075. }
  25076. },
  25077. cumming: {
  25078. height: math.unit(2 + 6 / 12, "feet"),
  25079. weight: math.unit(30, "lb"),
  25080. name: "Cumming",
  25081. image: {
  25082. source: "./media/characters/layla/cumming.svg",
  25083. extra: 342 / 279,
  25084. bottom: 595 / 938
  25085. }
  25086. },
  25087. dickFlaccid: {
  25088. height: math.unit(2.595, "feet"),
  25089. name: "Flaccid Genitals",
  25090. image: {
  25091. source: "./media/characters/layla/dick-flaccid.svg"
  25092. }
  25093. },
  25094. dickErect: {
  25095. height: math.unit(2.359, "feet"),
  25096. name: "Erect Genitals",
  25097. image: {
  25098. source: "./media/characters/layla/dick-erect.svg"
  25099. }
  25100. },
  25101. dragon: {
  25102. height: math.unit(40, "feet"),
  25103. name: "Dragon",
  25104. image: {
  25105. source: "./media/characters/layla/dragon.svg",
  25106. extra: 610/535,
  25107. bottom: 367/977
  25108. }
  25109. },
  25110. taur: {
  25111. height: math.unit(30, "feet"),
  25112. name: "Taur",
  25113. image: {
  25114. source: "./media/characters/layla/taur.svg",
  25115. extra: 1268/1199,
  25116. bottom: 112/1380
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Micro",
  25123. height: math.unit(1, "inch")
  25124. },
  25125. {
  25126. name: "Small",
  25127. height: math.unit(1, "foot")
  25128. },
  25129. {
  25130. name: "Normal",
  25131. height: math.unit(2 + 6 / 12, "feet"),
  25132. default: true
  25133. },
  25134. {
  25135. name: "Macro",
  25136. height: math.unit(200, "feet")
  25137. },
  25138. {
  25139. name: "Megamacro",
  25140. height: math.unit(1000, "miles")
  25141. },
  25142. {
  25143. name: "Planetary",
  25144. height: math.unit(8000, "miles")
  25145. },
  25146. {
  25147. name: "True Layla",
  25148. height: math.unit(200000 * 7, "multiverses")
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25154. {
  25155. back: {
  25156. height: math.unit(10.5, "feet"),
  25157. weight: math.unit(800, "lb"),
  25158. name: "Back",
  25159. image: {
  25160. source: "./media/characters/knox/back.svg",
  25161. extra: 1486 / 1089,
  25162. bottom: 107 / 1601.4
  25163. }
  25164. },
  25165. side: {
  25166. height: math.unit(10.5, "feet"),
  25167. weight: math.unit(800, "lb"),
  25168. name: "Side",
  25169. image: {
  25170. source: "./media/characters/knox/side.svg",
  25171. extra: 244 / 218,
  25172. bottom: 14 / 260
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Compact",
  25179. height: math.unit(10.5, "feet"),
  25180. default: true
  25181. },
  25182. {
  25183. name: "Dynamax",
  25184. height: math.unit(210, "feet")
  25185. },
  25186. {
  25187. name: "Full Macro",
  25188. height: math.unit(850, "feet")
  25189. },
  25190. ]
  25191. ))
  25192. characterMakers.push(() => makeCharacter(
  25193. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25194. {
  25195. front: {
  25196. height: math.unit(28, "feet"),
  25197. weight: math.unit(10500, "lb"),
  25198. name: "Front",
  25199. image: {
  25200. source: "./media/characters/kayda/front.svg",
  25201. extra: 1536 / 1428,
  25202. bottom: 68.7 / 1603
  25203. }
  25204. },
  25205. back: {
  25206. height: math.unit(28, "feet"),
  25207. weight: math.unit(10500, "lb"),
  25208. name: "Back",
  25209. image: {
  25210. source: "./media/characters/kayda/back.svg",
  25211. extra: 1557 / 1464,
  25212. bottom: 39.5 / 1597.49
  25213. }
  25214. },
  25215. dick: {
  25216. height: math.unit(3.858, "feet"),
  25217. name: "Dick",
  25218. image: {
  25219. source: "./media/characters/kayda/dick.svg"
  25220. }
  25221. },
  25222. },
  25223. [
  25224. {
  25225. name: "Macro",
  25226. height: math.unit(28, "feet"),
  25227. default: true
  25228. },
  25229. ]
  25230. ))
  25231. characterMakers.push(() => makeCharacter(
  25232. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25233. {
  25234. front: {
  25235. height: math.unit(10 + 11 / 12, "feet"),
  25236. weight: math.unit(1400, "lb"),
  25237. name: "Front",
  25238. image: {
  25239. source: "./media/characters/brian/front.svg",
  25240. extra: 737 / 692,
  25241. bottom: 55.4 / 785
  25242. }
  25243. },
  25244. },
  25245. [
  25246. {
  25247. name: "Normal",
  25248. height: math.unit(10 + 11 / 12, "feet"),
  25249. default: true
  25250. },
  25251. ]
  25252. ))
  25253. characterMakers.push(() => makeCharacter(
  25254. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25255. {
  25256. front: {
  25257. height: math.unit(5 + 8 / 12, "feet"),
  25258. weight: math.unit(140, "lb"),
  25259. name: "Front",
  25260. image: {
  25261. source: "./media/characters/khemri/front.svg",
  25262. extra: 4780 / 4059,
  25263. bottom: 80.1 / 4859.25
  25264. }
  25265. },
  25266. },
  25267. [
  25268. {
  25269. name: "Micro",
  25270. height: math.unit(6, "inches")
  25271. },
  25272. {
  25273. name: "Normal",
  25274. height: math.unit(5 + 8 / 12, "feet"),
  25275. default: true
  25276. },
  25277. ]
  25278. ))
  25279. characterMakers.push(() => makeCharacter(
  25280. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25281. {
  25282. front: {
  25283. height: math.unit(13, "feet"),
  25284. weight: math.unit(1700, "lb"),
  25285. name: "Front",
  25286. image: {
  25287. source: "./media/characters/felix-braveheart/front.svg",
  25288. extra: 1222 / 1157,
  25289. bottom: 53.2 / 1280
  25290. }
  25291. },
  25292. back: {
  25293. height: math.unit(13, "feet"),
  25294. weight: math.unit(1700, "lb"),
  25295. name: "Back",
  25296. image: {
  25297. source: "./media/characters/felix-braveheart/back.svg",
  25298. extra: 1277 / 1203,
  25299. bottom: 50.2 / 1327
  25300. }
  25301. },
  25302. feral: {
  25303. height: math.unit(6, "feet"),
  25304. weight: math.unit(400, "lb"),
  25305. name: "Feral",
  25306. image: {
  25307. source: "./media/characters/felix-braveheart/feral.svg",
  25308. extra: 682 / 625,
  25309. bottom: 6.9 / 688
  25310. }
  25311. },
  25312. },
  25313. [
  25314. {
  25315. name: "Normal",
  25316. height: math.unit(13, "feet"),
  25317. default: true
  25318. },
  25319. ]
  25320. ))
  25321. characterMakers.push(() => makeCharacter(
  25322. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25323. {
  25324. side: {
  25325. height: math.unit(5 + 11 / 12, "feet"),
  25326. weight: math.unit(1400, "lb"),
  25327. name: "Side",
  25328. image: {
  25329. source: "./media/characters/shadow-blade/side.svg",
  25330. extra: 1726 / 1267,
  25331. bottom: 58.4 / 1785
  25332. }
  25333. },
  25334. },
  25335. [
  25336. {
  25337. name: "Normal",
  25338. height: math.unit(5 + 11 / 12, "feet"),
  25339. default: true
  25340. },
  25341. ]
  25342. ))
  25343. characterMakers.push(() => makeCharacter(
  25344. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25345. {
  25346. front: {
  25347. height: math.unit(1 + 6 / 12, "feet"),
  25348. weight: math.unit(25, "lb"),
  25349. name: "Front",
  25350. image: {
  25351. source: "./media/characters/karla-halldor/front.svg",
  25352. extra: 1459 / 1383,
  25353. bottom: 12 / 1472
  25354. }
  25355. },
  25356. },
  25357. [
  25358. {
  25359. name: "Normal",
  25360. height: math.unit(1 + 6 / 12, "feet"),
  25361. default: true
  25362. },
  25363. ]
  25364. ))
  25365. characterMakers.push(() => makeCharacter(
  25366. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25367. {
  25368. front: {
  25369. height: math.unit(6 + 2 / 12, "feet"),
  25370. weight: math.unit(160, "lb"),
  25371. name: "Front",
  25372. image: {
  25373. source: "./media/characters/ariam/front.svg",
  25374. extra: 1073/976,
  25375. bottom: 52/1125
  25376. }
  25377. },
  25378. back: {
  25379. height: math.unit(6 + 2/12, "feet"),
  25380. weight: math.unit(160, "lb"),
  25381. name: "Back",
  25382. image: {
  25383. source: "./media/characters/ariam/back.svg",
  25384. extra: 1103/1023,
  25385. bottom: 9/1112
  25386. }
  25387. },
  25388. dressed: {
  25389. height: math.unit(6 + 2/12, "feet"),
  25390. weight: math.unit(160, "lb"),
  25391. name: "Dressed",
  25392. image: {
  25393. source: "./media/characters/ariam/dressed.svg",
  25394. extra: 1099/1009,
  25395. bottom: 25/1124
  25396. }
  25397. },
  25398. squatting: {
  25399. height: math.unit(4.1, "feet"),
  25400. weight: math.unit(160, "lb"),
  25401. name: "Squatting",
  25402. image: {
  25403. source: "./media/characters/ariam/squatting.svg",
  25404. extra: 2617 / 2112,
  25405. bottom: 61.2 / 2681,
  25406. }
  25407. },
  25408. },
  25409. [
  25410. {
  25411. name: "Normal",
  25412. height: math.unit(6 + 2 / 12, "feet"),
  25413. default: true
  25414. },
  25415. {
  25416. name: "Normal+",
  25417. height: math.unit(4, "meters")
  25418. },
  25419. {
  25420. name: "Macro",
  25421. height: math.unit(50, "meters")
  25422. },
  25423. {
  25424. name: "Macro+",
  25425. height: math.unit(100, "meters")
  25426. },
  25427. {
  25428. name: "Megamacro",
  25429. height: math.unit(20, "km")
  25430. },
  25431. {
  25432. name: "Caretaker",
  25433. height: math.unit(444, "megameters")
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25439. {
  25440. front: {
  25441. height: math.unit(1.67, "meters"),
  25442. weight: math.unit(140, "lb"),
  25443. name: "Front",
  25444. image: {
  25445. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25446. extra: 438 / 410,
  25447. bottom: 0.75 / 439
  25448. }
  25449. },
  25450. },
  25451. [
  25452. {
  25453. name: "Shrunken",
  25454. height: math.unit(7.6, "cm")
  25455. },
  25456. {
  25457. name: "Human Scale",
  25458. height: math.unit(1.67, "meters")
  25459. },
  25460. {
  25461. name: "Wolxi Scale",
  25462. height: math.unit(36.7, "meters"),
  25463. default: true
  25464. },
  25465. ]
  25466. ))
  25467. characterMakers.push(() => makeCharacter(
  25468. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25469. {
  25470. front: {
  25471. height: math.unit(1.73, "meters"),
  25472. weight: math.unit(240, "lb"),
  25473. name: "Front",
  25474. image: {
  25475. source: "./media/characters/izue-two-mothers/front.svg",
  25476. extra: 469 / 437,
  25477. bottom: 1.24 / 470.6
  25478. }
  25479. },
  25480. },
  25481. [
  25482. {
  25483. name: "Shrunken",
  25484. height: math.unit(7.86, "cm")
  25485. },
  25486. {
  25487. name: "Human Scale",
  25488. height: math.unit(1.73, "meters")
  25489. },
  25490. {
  25491. name: "Wolxi Scale",
  25492. height: math.unit(38, "meters"),
  25493. default: true
  25494. },
  25495. ]
  25496. ))
  25497. characterMakers.push(() => makeCharacter(
  25498. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25499. {
  25500. front: {
  25501. height: math.unit(1.55, "meters"),
  25502. weight: math.unit(120, "lb"),
  25503. name: "Front",
  25504. image: {
  25505. source: "./media/characters/teeku-love-shack/front.svg",
  25506. extra: 387 / 362,
  25507. bottom: 1.51 / 388
  25508. }
  25509. },
  25510. },
  25511. [
  25512. {
  25513. name: "Shrunken",
  25514. height: math.unit(7, "cm")
  25515. },
  25516. {
  25517. name: "Human Scale",
  25518. height: math.unit(1.55, "meters")
  25519. },
  25520. {
  25521. name: "Wolxi Scale",
  25522. height: math.unit(34.1, "meters"),
  25523. default: true
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25529. {
  25530. front: {
  25531. height: math.unit(1.83, "meters"),
  25532. weight: math.unit(135, "lb"),
  25533. name: "Front",
  25534. image: {
  25535. source: "./media/characters/dejma-the-red/front.svg",
  25536. extra: 480 / 458,
  25537. bottom: 1.8 / 482
  25538. }
  25539. },
  25540. },
  25541. [
  25542. {
  25543. name: "Shrunken",
  25544. height: math.unit(8.3, "cm")
  25545. },
  25546. {
  25547. name: "Human Scale",
  25548. height: math.unit(1.83, "meters")
  25549. },
  25550. {
  25551. name: "Wolxi Scale",
  25552. height: math.unit(40, "meters"),
  25553. default: true
  25554. },
  25555. ]
  25556. ))
  25557. characterMakers.push(() => makeCharacter(
  25558. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25559. {
  25560. front: {
  25561. height: math.unit(1.78, "meters"),
  25562. weight: math.unit(65, "kg"),
  25563. name: "Front",
  25564. image: {
  25565. source: "./media/characters/aki/front.svg",
  25566. extra: 452 / 415
  25567. }
  25568. },
  25569. frontNsfw: {
  25570. height: math.unit(1.78, "meters"),
  25571. weight: math.unit(65, "kg"),
  25572. name: "Front (NSFW)",
  25573. image: {
  25574. source: "./media/characters/aki/front-nsfw.svg",
  25575. extra: 452 / 415
  25576. }
  25577. },
  25578. back: {
  25579. height: math.unit(1.78, "meters"),
  25580. weight: math.unit(65, "kg"),
  25581. name: "Back",
  25582. image: {
  25583. source: "./media/characters/aki/back.svg",
  25584. extra: 452 / 415
  25585. }
  25586. },
  25587. rump: {
  25588. height: math.unit(2.05, "feet"),
  25589. name: "Rump",
  25590. image: {
  25591. source: "./media/characters/aki/rump.svg"
  25592. }
  25593. },
  25594. dick: {
  25595. height: math.unit(0.95, "feet"),
  25596. name: "Dick",
  25597. image: {
  25598. source: "./media/characters/aki/dick.svg"
  25599. }
  25600. },
  25601. },
  25602. [
  25603. {
  25604. name: "Micro",
  25605. height: math.unit(15, "cm")
  25606. },
  25607. {
  25608. name: "Normal",
  25609. height: math.unit(178, "cm"),
  25610. default: true
  25611. },
  25612. {
  25613. name: "Macro",
  25614. height: math.unit(214, "m")
  25615. },
  25616. {
  25617. name: "Macro+",
  25618. height: math.unit(534, "m")
  25619. },
  25620. ]
  25621. ))
  25622. characterMakers.push(() => makeCharacter(
  25623. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25624. {
  25625. front: {
  25626. height: math.unit(5 + 5 / 12, "feet"),
  25627. weight: math.unit(120, "lb"),
  25628. name: "Front",
  25629. image: {
  25630. source: "./media/characters/ari/front.svg",
  25631. extra: 1550/1471,
  25632. bottom: 39/1589
  25633. }
  25634. },
  25635. },
  25636. [
  25637. {
  25638. name: "Normal",
  25639. height: math.unit(5 + 5 / 12, "feet")
  25640. },
  25641. {
  25642. name: "Macro",
  25643. height: math.unit(100, "feet"),
  25644. default: true
  25645. },
  25646. {
  25647. name: "Megamacro",
  25648. height: math.unit(100, "miles")
  25649. },
  25650. {
  25651. name: "Gigamacro",
  25652. height: math.unit(80000, "miles")
  25653. },
  25654. ]
  25655. ))
  25656. characterMakers.push(() => makeCharacter(
  25657. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25658. {
  25659. side: {
  25660. height: math.unit(9, "feet"),
  25661. weight: math.unit(400, "kg"),
  25662. name: "Side",
  25663. image: {
  25664. source: "./media/characters/bolt/side.svg",
  25665. extra: 1126 / 896,
  25666. bottom: 60 / 1187.3,
  25667. }
  25668. },
  25669. },
  25670. [
  25671. {
  25672. name: "Micro",
  25673. height: math.unit(5, "inches")
  25674. },
  25675. {
  25676. name: "Normal",
  25677. height: math.unit(9, "feet"),
  25678. default: true
  25679. },
  25680. {
  25681. name: "Macro",
  25682. height: math.unit(700, "feet")
  25683. },
  25684. {
  25685. name: "Max Size",
  25686. height: math.unit(1.52e22, "yottameters")
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25692. {
  25693. front: {
  25694. height: math.unit(4.3, "meters"),
  25695. weight: math.unit(3, "tons"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/draekon-sylviar/front.svg",
  25699. extra: 2072/1512,
  25700. bottom: 74/2146
  25701. }
  25702. },
  25703. back: {
  25704. height: math.unit(4.3, "meters"),
  25705. weight: math.unit(3, "tons"),
  25706. name: "Back",
  25707. image: {
  25708. source: "./media/characters/draekon-sylviar/back.svg",
  25709. extra: 1639/1483,
  25710. bottom: 41/1680
  25711. }
  25712. },
  25713. feral: {
  25714. height: math.unit(1.15, "meters"),
  25715. weight: math.unit(3, "tons"),
  25716. name: "Feral",
  25717. image: {
  25718. source: "./media/characters/draekon-sylviar/feral.svg",
  25719. extra: 1033/395,
  25720. bottom: 130/1163
  25721. }
  25722. },
  25723. maw: {
  25724. height: math.unit(1.3, "meters"),
  25725. name: "Maw",
  25726. image: {
  25727. source: "./media/characters/draekon-sylviar/maw.svg"
  25728. }
  25729. },
  25730. mawSeparated: {
  25731. height: math.unit(1.53, "meters"),
  25732. name: "Separated Maw",
  25733. image: {
  25734. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25735. }
  25736. },
  25737. tail: {
  25738. height: math.unit(1.15, "meters"),
  25739. name: "Tail",
  25740. image: {
  25741. source: "./media/characters/draekon-sylviar/tail.svg"
  25742. }
  25743. },
  25744. tailDick: {
  25745. height: math.unit(1.15, "meters"),
  25746. name: "Tail (Dick)",
  25747. image: {
  25748. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25749. }
  25750. },
  25751. tailDickSeparated: {
  25752. height: math.unit(1.19, "meters"),
  25753. name: "Tail (Separated Dick)",
  25754. image: {
  25755. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25756. }
  25757. },
  25758. slit: {
  25759. height: math.unit(1, "meters"),
  25760. name: "Slit",
  25761. image: {
  25762. source: "./media/characters/draekon-sylviar/slit.svg"
  25763. }
  25764. },
  25765. dick: {
  25766. height: math.unit(1.15, "meters"),
  25767. name: "Dick",
  25768. image: {
  25769. source: "./media/characters/draekon-sylviar/dick.svg"
  25770. }
  25771. },
  25772. dickSeparated: {
  25773. height: math.unit(1.1, "meters"),
  25774. name: "Separated Dick",
  25775. image: {
  25776. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25777. }
  25778. },
  25779. sheath: {
  25780. height: math.unit(1.15, "meters"),
  25781. name: "Sheath",
  25782. image: {
  25783. source: "./media/characters/draekon-sylviar/sheath.svg"
  25784. }
  25785. },
  25786. },
  25787. [
  25788. {
  25789. name: "Small",
  25790. height: math.unit(4.53 / 2, "meters"),
  25791. default: true
  25792. },
  25793. {
  25794. name: "Normal",
  25795. height: math.unit(4.53, "meters"),
  25796. default: true
  25797. },
  25798. {
  25799. name: "Large",
  25800. height: math.unit(4.53 * 2, "meters"),
  25801. },
  25802. ]
  25803. ))
  25804. characterMakers.push(() => makeCharacter(
  25805. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25806. {
  25807. front: {
  25808. height: math.unit(6 + 2 / 12, "feet"),
  25809. weight: math.unit(180, "lb"),
  25810. name: "Front",
  25811. image: {
  25812. source: "./media/characters/brawler/front.svg",
  25813. extra: 3301 / 3027,
  25814. bottom: 138 / 3439
  25815. }
  25816. },
  25817. },
  25818. [
  25819. {
  25820. name: "Normal",
  25821. height: math.unit(6 + 2 / 12, "feet"),
  25822. default: true
  25823. },
  25824. ]
  25825. ))
  25826. characterMakers.push(() => makeCharacter(
  25827. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25828. {
  25829. front: {
  25830. height: math.unit(11, "feet"),
  25831. weight: math.unit(1000, "lb"),
  25832. name: "Front",
  25833. image: {
  25834. source: "./media/characters/alex/front.svg",
  25835. bottom: 44.5 / 620
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Micro",
  25842. height: math.unit(5, "inches")
  25843. },
  25844. {
  25845. name: "Normal",
  25846. height: math.unit(11, "feet"),
  25847. default: true
  25848. },
  25849. {
  25850. name: "Macro",
  25851. height: math.unit(9.5e9, "feet")
  25852. },
  25853. {
  25854. name: "Max Size",
  25855. height: math.unit(1.4e283, "yottameters")
  25856. },
  25857. ]
  25858. ))
  25859. characterMakers.push(() => makeCharacter(
  25860. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25861. {
  25862. female: {
  25863. height: math.unit(29.9, "m"),
  25864. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25865. name: "Female",
  25866. image: {
  25867. source: "./media/characters/zenari/female.svg",
  25868. extra: 3281.6 / 3217,
  25869. bottom: 72.2 / 3353
  25870. }
  25871. },
  25872. male: {
  25873. height: math.unit(27.7, "m"),
  25874. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25875. name: "Male",
  25876. image: {
  25877. source: "./media/characters/zenari/male.svg",
  25878. extra: 3008 / 2991,
  25879. bottom: 54.6 / 3069
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Macro",
  25886. height: math.unit(29.7, "meters"),
  25887. default: true
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25893. {
  25894. female: {
  25895. height: math.unit(23.8, "m"),
  25896. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25897. name: "Female",
  25898. image: {
  25899. source: "./media/characters/mactarian/female.svg",
  25900. extra: 2662 / 2569,
  25901. bottom: 73 / 2736
  25902. }
  25903. },
  25904. male: {
  25905. height: math.unit(23.8, "m"),
  25906. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25907. name: "Male",
  25908. image: {
  25909. source: "./media/characters/mactarian/male.svg",
  25910. extra: 2673 / 2600,
  25911. bottom: 76 / 2750
  25912. }
  25913. },
  25914. },
  25915. [
  25916. {
  25917. name: "Macro",
  25918. height: math.unit(23.8, "meters"),
  25919. default: true
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25925. {
  25926. female: {
  25927. height: math.unit(19.3, "m"),
  25928. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25929. name: "Female",
  25930. image: {
  25931. source: "./media/characters/umok/female.svg",
  25932. extra: 2186 / 2078,
  25933. bottom: 87 / 2277
  25934. }
  25935. },
  25936. male: {
  25937. height: math.unit(19.5, "m"),
  25938. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25939. name: "Male",
  25940. image: {
  25941. source: "./media/characters/umok/male.svg",
  25942. extra: 2233 / 2140,
  25943. bottom: 24.4 / 2258
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Macro",
  25950. height: math.unit(19.3, "meters"),
  25951. default: true
  25952. },
  25953. ]
  25954. ))
  25955. characterMakers.push(() => makeCharacter(
  25956. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25957. {
  25958. female: {
  25959. height: math.unit(26.15, "m"),
  25960. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25961. name: "Female",
  25962. image: {
  25963. source: "./media/characters/joraxian/female.svg",
  25964. extra: 2912 / 2824,
  25965. bottom: 36 / 2956
  25966. }
  25967. },
  25968. male: {
  25969. height: math.unit(25.4, "m"),
  25970. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25971. name: "Male",
  25972. image: {
  25973. source: "./media/characters/joraxian/male.svg",
  25974. extra: 2877 / 2721,
  25975. bottom: 82 / 2967
  25976. }
  25977. },
  25978. },
  25979. [
  25980. {
  25981. name: "Macro",
  25982. height: math.unit(26.15, "meters"),
  25983. default: true
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25989. {
  25990. female: {
  25991. height: math.unit(21.6, "m"),
  25992. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25993. name: "Female",
  25994. image: {
  25995. source: "./media/characters/sthara/female.svg",
  25996. extra: 2516 / 2347,
  25997. bottom: 21.5 / 2537
  25998. }
  25999. },
  26000. male: {
  26001. height: math.unit(24, "m"),
  26002. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26003. name: "Male",
  26004. image: {
  26005. source: "./media/characters/sthara/male.svg",
  26006. extra: 2732 / 2607,
  26007. bottom: 23 / 2732
  26008. }
  26009. },
  26010. },
  26011. [
  26012. {
  26013. name: "Macro",
  26014. height: math.unit(21.6, "meters"),
  26015. default: true
  26016. },
  26017. ]
  26018. ))
  26019. characterMakers.push(() => makeCharacter(
  26020. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26021. {
  26022. front: {
  26023. height: math.unit(6 + 4 / 12, "feet"),
  26024. weight: math.unit(175, "lb"),
  26025. name: "Front",
  26026. image: {
  26027. source: "./media/characters/luka-bryzant/front.svg",
  26028. extra: 311 / 289,
  26029. bottom: 4 / 315
  26030. }
  26031. },
  26032. back: {
  26033. height: math.unit(6 + 4 / 12, "feet"),
  26034. weight: math.unit(175, "lb"),
  26035. name: "Back",
  26036. image: {
  26037. source: "./media/characters/luka-bryzant/back.svg",
  26038. extra: 311 / 289,
  26039. bottom: 3.8 / 313.7
  26040. }
  26041. },
  26042. },
  26043. [
  26044. {
  26045. name: "Micro",
  26046. height: math.unit(10, "inches")
  26047. },
  26048. {
  26049. name: "Normal",
  26050. height: math.unit(6 + 4 / 12, "feet"),
  26051. default: true
  26052. },
  26053. {
  26054. name: "Large",
  26055. height: math.unit(12, "feet")
  26056. },
  26057. ]
  26058. ))
  26059. characterMakers.push(() => makeCharacter(
  26060. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26061. {
  26062. front: {
  26063. height: math.unit(5 + 7 / 12, "feet"),
  26064. weight: math.unit(185, "lb"),
  26065. name: "Front",
  26066. image: {
  26067. source: "./media/characters/aman-aquila/front.svg",
  26068. extra: 1013 / 976,
  26069. bottom: 45.6 / 1057
  26070. }
  26071. },
  26072. side: {
  26073. height: math.unit(5 + 7 / 12, "feet"),
  26074. weight: math.unit(185, "lb"),
  26075. name: "Side",
  26076. image: {
  26077. source: "./media/characters/aman-aquila/side.svg",
  26078. extra: 1054 / 1011,
  26079. bottom: 15 / 1070
  26080. }
  26081. },
  26082. back: {
  26083. height: math.unit(5 + 7 / 12, "feet"),
  26084. weight: math.unit(185, "lb"),
  26085. name: "Back",
  26086. image: {
  26087. source: "./media/characters/aman-aquila/back.svg",
  26088. extra: 1026 / 970,
  26089. bottom: 12 / 1039
  26090. }
  26091. },
  26092. head: {
  26093. height: math.unit(1.211, "feet"),
  26094. name: "Head",
  26095. image: {
  26096. source: "./media/characters/aman-aquila/head.svg",
  26097. }
  26098. },
  26099. },
  26100. [
  26101. {
  26102. name: "Minimicro",
  26103. height: math.unit(0.057, "inches")
  26104. },
  26105. {
  26106. name: "Micro",
  26107. height: math.unit(7, "inches")
  26108. },
  26109. {
  26110. name: "Mini",
  26111. height: math.unit(3 + 7 / 12, "feet")
  26112. },
  26113. {
  26114. name: "Normal",
  26115. height: math.unit(5 + 7 / 12, "feet"),
  26116. default: true
  26117. },
  26118. {
  26119. name: "Macro",
  26120. height: math.unit(157 + 7 / 12, "feet")
  26121. },
  26122. {
  26123. name: "Megamacro",
  26124. height: math.unit(1557 + 7 / 12, "feet")
  26125. },
  26126. {
  26127. name: "Gigamacro",
  26128. height: math.unit(15557 + 7 / 12, "feet")
  26129. },
  26130. ]
  26131. ))
  26132. characterMakers.push(() => makeCharacter(
  26133. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26134. {
  26135. front: {
  26136. height: math.unit(3 + 2 / 12, "inches"),
  26137. weight: math.unit(0.3, "ounces"),
  26138. name: "Front",
  26139. image: {
  26140. source: "./media/characters/hiphae/front.svg",
  26141. extra: 1931 / 1683,
  26142. bottom: 24 / 1955
  26143. }
  26144. },
  26145. },
  26146. [
  26147. {
  26148. name: "Normal",
  26149. height: math.unit(3 + 1 / 2, "inches"),
  26150. default: true
  26151. },
  26152. ]
  26153. ))
  26154. characterMakers.push(() => makeCharacter(
  26155. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26156. {
  26157. front: {
  26158. height: math.unit(5 + 10 / 12, "feet"),
  26159. weight: math.unit(165, "lb"),
  26160. name: "Front",
  26161. image: {
  26162. source: "./media/characters/nicky/front.svg",
  26163. extra: 3144 / 2886,
  26164. bottom: 45.6 / 3192
  26165. }
  26166. },
  26167. back: {
  26168. height: math.unit(5 + 10 / 12, "feet"),
  26169. weight: math.unit(165, "lb"),
  26170. name: "Back",
  26171. image: {
  26172. source: "./media/characters/nicky/back.svg",
  26173. extra: 3055 / 2804,
  26174. bottom: 28.4 / 3087
  26175. }
  26176. },
  26177. frontclothed: {
  26178. height: math.unit(5 + 10 / 12, "feet"),
  26179. weight: math.unit(165, "lb"),
  26180. name: "Front-clothed",
  26181. image: {
  26182. source: "./media/characters/nicky/front-clothed.svg",
  26183. extra: 3184.9 / 2926.9,
  26184. bottom: 86.5 / 3239.9
  26185. }
  26186. },
  26187. foot: {
  26188. height: math.unit(1.16, "feet"),
  26189. name: "Foot",
  26190. image: {
  26191. source: "./media/characters/nicky/foot.svg"
  26192. }
  26193. },
  26194. feet: {
  26195. height: math.unit(1.34, "feet"),
  26196. name: "Feet",
  26197. image: {
  26198. source: "./media/characters/nicky/feet.svg"
  26199. }
  26200. },
  26201. maw: {
  26202. height: math.unit(0.9, "feet"),
  26203. name: "Maw",
  26204. image: {
  26205. source: "./media/characters/nicky/maw.svg"
  26206. }
  26207. },
  26208. },
  26209. [
  26210. {
  26211. name: "Normal",
  26212. height: math.unit(5 + 10 / 12, "feet"),
  26213. default: true
  26214. },
  26215. {
  26216. name: "Macro",
  26217. height: math.unit(60, "feet")
  26218. },
  26219. {
  26220. name: "Megamacro",
  26221. height: math.unit(1, "mile")
  26222. },
  26223. ]
  26224. ))
  26225. characterMakers.push(() => makeCharacter(
  26226. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26227. {
  26228. side: {
  26229. height: math.unit(10, "feet"),
  26230. weight: math.unit(600, "lb"),
  26231. name: "Side",
  26232. image: {
  26233. source: "./media/characters/blair/side.svg",
  26234. bottom: 16.6 / 475,
  26235. extra: 458 / 431
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Micro",
  26242. height: math.unit(8, "inches")
  26243. },
  26244. {
  26245. name: "Normal",
  26246. height: math.unit(10, "feet"),
  26247. default: true
  26248. },
  26249. {
  26250. name: "Macro",
  26251. height: math.unit(180, "feet")
  26252. },
  26253. ]
  26254. ))
  26255. characterMakers.push(() => makeCharacter(
  26256. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26257. {
  26258. front: {
  26259. height: math.unit(5 + 4 / 12, "feet"),
  26260. weight: math.unit(125, "lb"),
  26261. name: "Front",
  26262. image: {
  26263. source: "./media/characters/fisher/front.svg",
  26264. extra: 444 / 390,
  26265. bottom: 2 / 444.8
  26266. }
  26267. },
  26268. },
  26269. [
  26270. {
  26271. name: "Micro",
  26272. height: math.unit(4, "inches")
  26273. },
  26274. {
  26275. name: "Normal",
  26276. height: math.unit(5 + 4 / 12, "feet"),
  26277. default: true
  26278. },
  26279. {
  26280. name: "Macro",
  26281. height: math.unit(100, "feet")
  26282. },
  26283. ]
  26284. ))
  26285. characterMakers.push(() => makeCharacter(
  26286. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26287. {
  26288. front: {
  26289. height: math.unit(6.71, "feet"),
  26290. weight: math.unit(200, "lb"),
  26291. preyCapacity: math.unit(1000000, "people"),
  26292. name: "Front",
  26293. image: {
  26294. source: "./media/characters/gliss/front.svg",
  26295. extra: 2347 / 2231,
  26296. bottom: 113 / 2462
  26297. }
  26298. },
  26299. hammerspaceSize: {
  26300. height: math.unit(6.71 * 717, "feet"),
  26301. weight: math.unit(200, "lb"),
  26302. preyCapacity: math.unit(1000000, "people"),
  26303. name: "Hammerspace Size",
  26304. image: {
  26305. source: "./media/characters/gliss/front.svg",
  26306. extra: 2347 / 2231,
  26307. bottom: 113 / 2462
  26308. }
  26309. },
  26310. },
  26311. [
  26312. {
  26313. name: "Normal",
  26314. height: math.unit(6.71, "feet"),
  26315. default: true
  26316. },
  26317. ]
  26318. ))
  26319. characterMakers.push(() => makeCharacter(
  26320. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26321. {
  26322. side: {
  26323. height: math.unit(1.44, "m"),
  26324. weight: math.unit(80, "kg"),
  26325. name: "Side",
  26326. image: {
  26327. source: "./media/characters/dune-anderson/side.svg",
  26328. bottom: 49 / 1426
  26329. }
  26330. },
  26331. },
  26332. [
  26333. {
  26334. name: "Wolf-sized",
  26335. height: math.unit(1.44, "meters")
  26336. },
  26337. {
  26338. name: "Normal",
  26339. height: math.unit(5.05, "meters"),
  26340. default: true
  26341. },
  26342. {
  26343. name: "Big",
  26344. height: math.unit(14.4, "meters")
  26345. },
  26346. {
  26347. name: "Huge",
  26348. height: math.unit(144, "meters")
  26349. },
  26350. ]
  26351. ))
  26352. characterMakers.push(() => makeCharacter(
  26353. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26354. {
  26355. front: {
  26356. height: math.unit(7, "feet"),
  26357. weight: math.unit(425, "lb"),
  26358. name: "Front",
  26359. image: {
  26360. source: "./media/characters/hind/front.svg",
  26361. extra: 2091 / 1860,
  26362. bottom: 129 / 2220
  26363. }
  26364. },
  26365. back: {
  26366. height: math.unit(7, "feet"),
  26367. weight: math.unit(425, "lb"),
  26368. name: "Back",
  26369. image: {
  26370. source: "./media/characters/hind/back.svg",
  26371. extra: 2091 / 1860,
  26372. bottom: 24.6 / 2309
  26373. }
  26374. },
  26375. tail: {
  26376. height: math.unit(2.8, "feet"),
  26377. name: "Tail",
  26378. image: {
  26379. source: "./media/characters/hind/tail.svg"
  26380. }
  26381. },
  26382. head: {
  26383. height: math.unit(2.55, "feet"),
  26384. name: "Head",
  26385. image: {
  26386. source: "./media/characters/hind/head.svg"
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "XS",
  26393. height: math.unit(0.7, "feet")
  26394. },
  26395. {
  26396. name: "Normal",
  26397. height: math.unit(7, "feet"),
  26398. default: true
  26399. },
  26400. {
  26401. name: "XL",
  26402. height: math.unit(70, "feet")
  26403. },
  26404. ]
  26405. ))
  26406. characterMakers.push(() => makeCharacter(
  26407. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26408. {
  26409. front: {
  26410. height: math.unit(2.1, "meters"),
  26411. weight: math.unit(150, "lb"),
  26412. name: "Front",
  26413. image: {
  26414. source: "./media/characters/tharquench-sizestealer/front.svg",
  26415. extra: 1605/1470,
  26416. bottom: 36/1641
  26417. }
  26418. },
  26419. frontAlt: {
  26420. height: math.unit(2.1, "meters"),
  26421. weight: math.unit(150, "lb"),
  26422. name: "Front (Alt)",
  26423. image: {
  26424. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26425. extra: 2318 / 2063,
  26426. bottom: 93.4 / 2410
  26427. }
  26428. },
  26429. },
  26430. [
  26431. {
  26432. name: "Nano",
  26433. height: math.unit(1, "mm")
  26434. },
  26435. {
  26436. name: "Micro",
  26437. height: math.unit(1, "cm")
  26438. },
  26439. {
  26440. name: "Normal",
  26441. height: math.unit(2.1, "meters"),
  26442. default: true
  26443. },
  26444. ]
  26445. ))
  26446. characterMakers.push(() => makeCharacter(
  26447. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26448. {
  26449. front: {
  26450. height: math.unit(7 + 5 / 12, "feet"),
  26451. weight: math.unit(357, "lb"),
  26452. name: "Front",
  26453. image: {
  26454. source: "./media/characters/solex-draconov/front.svg",
  26455. extra: 1993 / 1865,
  26456. bottom: 117 / 2111
  26457. }
  26458. },
  26459. },
  26460. [
  26461. {
  26462. name: "Natural Height",
  26463. height: math.unit(7 + 5 / 12, "feet"),
  26464. default: true
  26465. },
  26466. {
  26467. name: "Macro",
  26468. height: math.unit(350, "feet")
  26469. },
  26470. {
  26471. name: "Macro+",
  26472. height: math.unit(1000, "feet")
  26473. },
  26474. {
  26475. name: "Megamacro",
  26476. height: math.unit(20, "km")
  26477. },
  26478. {
  26479. name: "Megamacro+",
  26480. height: math.unit(1000, "km")
  26481. },
  26482. {
  26483. name: "Gigamacro",
  26484. height: math.unit(2.5, "Gm")
  26485. },
  26486. {
  26487. name: "Teramacro",
  26488. height: math.unit(15, "Tm")
  26489. },
  26490. {
  26491. name: "Galactic",
  26492. height: math.unit(30, "Zm")
  26493. },
  26494. {
  26495. name: "Universal",
  26496. height: math.unit(21000, "Ym")
  26497. },
  26498. {
  26499. name: "Omniversal",
  26500. height: math.unit(9.861e50, "Ym")
  26501. },
  26502. {
  26503. name: "Existential",
  26504. height: math.unit(1e300, "meters")
  26505. },
  26506. ]
  26507. ))
  26508. characterMakers.push(() => makeCharacter(
  26509. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26510. {
  26511. side: {
  26512. height: math.unit(25, "feet"),
  26513. weight: math.unit(90000, "lb"),
  26514. name: "Side",
  26515. image: {
  26516. source: "./media/characters/mandarax/side.svg",
  26517. extra: 614 / 332,
  26518. bottom: 55 / 630
  26519. }
  26520. },
  26521. lounging: {
  26522. height: math.unit(15.4, "feet"),
  26523. weight: math.unit(90000, "lb"),
  26524. name: "Lounging",
  26525. image: {
  26526. source: "./media/characters/mandarax/lounging.svg",
  26527. extra: 817/609,
  26528. bottom: 685/1502
  26529. }
  26530. },
  26531. head: {
  26532. height: math.unit(11.4, "feet"),
  26533. name: "Head",
  26534. image: {
  26535. source: "./media/characters/mandarax/head.svg"
  26536. }
  26537. },
  26538. belly: {
  26539. height: math.unit(33, "feet"),
  26540. name: "Belly",
  26541. preyCapacity: math.unit(500, "people"),
  26542. image: {
  26543. source: "./media/characters/mandarax/belly.svg"
  26544. }
  26545. },
  26546. dick: {
  26547. height: math.unit(8.46, "feet"),
  26548. name: "Dick",
  26549. image: {
  26550. source: "./media/characters/mandarax/dick.svg"
  26551. }
  26552. },
  26553. top: {
  26554. height: math.unit(28, "meters"),
  26555. name: "Top",
  26556. image: {
  26557. source: "./media/characters/mandarax/top.svg"
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(25, "feet"),
  26565. default: true
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(5, "feet"),
  26574. weight: math.unit(90, "lb"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/pixil/front.svg",
  26578. extra: 2000 / 1618,
  26579. bottom: 12.3 / 2011
  26580. }
  26581. },
  26582. },
  26583. [
  26584. {
  26585. name: "Normal",
  26586. height: math.unit(5, "feet"),
  26587. default: true
  26588. },
  26589. {
  26590. name: "Megamacro",
  26591. height: math.unit(10, "miles"),
  26592. },
  26593. ]
  26594. ))
  26595. characterMakers.push(() => makeCharacter(
  26596. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26597. {
  26598. front: {
  26599. height: math.unit(7 + 2 / 12, "feet"),
  26600. weight: math.unit(200, "lb"),
  26601. name: "Front",
  26602. image: {
  26603. source: "./media/characters/angel/front.svg",
  26604. extra: 1830 / 1737,
  26605. bottom: 22.6 / 1854,
  26606. }
  26607. },
  26608. },
  26609. [
  26610. {
  26611. name: "Normal",
  26612. height: math.unit(7 + 2 / 12, "feet"),
  26613. default: true
  26614. },
  26615. {
  26616. name: "Macro",
  26617. height: math.unit(1000, "feet")
  26618. },
  26619. {
  26620. name: "Megamacro",
  26621. height: math.unit(2, "miles")
  26622. },
  26623. {
  26624. name: "Gigamacro",
  26625. height: math.unit(20, "earths")
  26626. },
  26627. ]
  26628. ))
  26629. characterMakers.push(() => makeCharacter(
  26630. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26631. {
  26632. front: {
  26633. height: math.unit(5, "feet"),
  26634. weight: math.unit(180, "lb"),
  26635. name: "Front",
  26636. image: {
  26637. source: "./media/characters/mekana/front.svg",
  26638. extra: 1671 / 1605,
  26639. bottom: 3.5 / 1691
  26640. }
  26641. },
  26642. side: {
  26643. height: math.unit(5, "feet"),
  26644. weight: math.unit(180, "lb"),
  26645. name: "Side",
  26646. image: {
  26647. source: "./media/characters/mekana/side.svg",
  26648. extra: 1671 / 1605,
  26649. bottom: 3.5 / 1691
  26650. }
  26651. },
  26652. back: {
  26653. height: math.unit(5, "feet"),
  26654. weight: math.unit(180, "lb"),
  26655. name: "Back",
  26656. image: {
  26657. source: "./media/characters/mekana/back.svg",
  26658. extra: 1671 / 1605,
  26659. bottom: 3.5 / 1691
  26660. }
  26661. },
  26662. },
  26663. [
  26664. {
  26665. name: "Normal",
  26666. height: math.unit(5, "feet"),
  26667. default: true
  26668. },
  26669. ]
  26670. ))
  26671. characterMakers.push(() => makeCharacter(
  26672. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26673. {
  26674. front: {
  26675. height: math.unit(4 + 6 / 12, "feet"),
  26676. weight: math.unit(80, "lb"),
  26677. name: "Front",
  26678. image: {
  26679. source: "./media/characters/pixie/front.svg",
  26680. extra: 1924 / 1825,
  26681. bottom: 22.4 / 1946
  26682. }
  26683. },
  26684. },
  26685. [
  26686. {
  26687. name: "Normal",
  26688. height: math.unit(4 + 6 / 12, "feet"),
  26689. default: true
  26690. },
  26691. {
  26692. name: "Macro",
  26693. height: math.unit(40, "feet")
  26694. },
  26695. ]
  26696. ))
  26697. characterMakers.push(() => makeCharacter(
  26698. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26699. {
  26700. front: {
  26701. height: math.unit(2.1, "meters"),
  26702. weight: math.unit(200, "lb"),
  26703. name: "Front",
  26704. image: {
  26705. source: "./media/characters/the-lascivious/front.svg",
  26706. extra: 1 / 0.893,
  26707. bottom: 3.5 / 573.7
  26708. }
  26709. },
  26710. },
  26711. [
  26712. {
  26713. name: "Human Scale",
  26714. height: math.unit(2.1, "meters")
  26715. },
  26716. {
  26717. name: "Wolxi Scale",
  26718. height: math.unit(46.2, "m"),
  26719. default: true
  26720. },
  26721. {
  26722. name: "Boinker of Buildings",
  26723. height: math.unit(10, "km")
  26724. },
  26725. {
  26726. name: "Shagger of Skyscrapers",
  26727. height: math.unit(40, "km")
  26728. },
  26729. {
  26730. name: "Banger of Boroughs",
  26731. height: math.unit(4000, "km")
  26732. },
  26733. {
  26734. name: "Screwer of States",
  26735. height: math.unit(100000, "km")
  26736. },
  26737. {
  26738. name: "Pounder of Planets",
  26739. height: math.unit(2000000, "km")
  26740. },
  26741. ]
  26742. ))
  26743. characterMakers.push(() => makeCharacter(
  26744. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26745. {
  26746. front: {
  26747. height: math.unit(6, "feet"),
  26748. weight: math.unit(150, "lb"),
  26749. name: "Front",
  26750. image: {
  26751. source: "./media/characters/aj/front.svg",
  26752. extra: 2039 / 1562,
  26753. bottom: 40 / 2079
  26754. }
  26755. },
  26756. },
  26757. [
  26758. {
  26759. name: "Normal",
  26760. height: math.unit(11 + 6 / 12, "feet"),
  26761. default: true
  26762. },
  26763. {
  26764. name: "Megamacro",
  26765. height: math.unit(60, "megameters")
  26766. },
  26767. ]
  26768. ))
  26769. characterMakers.push(() => makeCharacter(
  26770. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26771. {
  26772. side: {
  26773. height: math.unit(31 + 8 / 12, "feet"),
  26774. weight: math.unit(75000, "kg"),
  26775. name: "Side",
  26776. image: {
  26777. source: "./media/characters/koros/side.svg",
  26778. extra: 1442 / 1297,
  26779. bottom: 122.7 / 1562
  26780. }
  26781. },
  26782. dicksKingsCrown: {
  26783. height: math.unit(6, "feet"),
  26784. name: "Dicks (King's Crown)",
  26785. image: {
  26786. source: "./media/characters/koros/dicks-kings-crown.svg"
  26787. }
  26788. },
  26789. dicksTailSet: {
  26790. height: math.unit(3, "feet"),
  26791. name: "Dicks (Tail Set)",
  26792. image: {
  26793. source: "./media/characters/koros/dicks-tail-set.svg"
  26794. }
  26795. },
  26796. dickCumming: {
  26797. height: math.unit(7.98, "feet"),
  26798. name: "Dick (Cumming)",
  26799. image: {
  26800. source: "./media/characters/koros/dick-cumming.svg"
  26801. }
  26802. },
  26803. dicksBack: {
  26804. height: math.unit(5.9, "feet"),
  26805. name: "Dicks (Back)",
  26806. image: {
  26807. source: "./media/characters/koros/dicks-back.svg"
  26808. }
  26809. },
  26810. dicksFront: {
  26811. height: math.unit(3.72, "feet"),
  26812. name: "Dicks (Front)",
  26813. image: {
  26814. source: "./media/characters/koros/dicks-front.svg"
  26815. }
  26816. },
  26817. dicksPeeking: {
  26818. height: math.unit(3.0, "feet"),
  26819. name: "Dicks (Peeking)",
  26820. image: {
  26821. source: "./media/characters/koros/dicks-peeking.svg"
  26822. }
  26823. },
  26824. eye: {
  26825. height: math.unit(1.7, "feet"),
  26826. name: "Eye",
  26827. image: {
  26828. source: "./media/characters/koros/eye.svg"
  26829. }
  26830. },
  26831. headFront: {
  26832. height: math.unit(11.69, "feet"),
  26833. name: "Head (Front)",
  26834. image: {
  26835. source: "./media/characters/koros/head-front.svg"
  26836. }
  26837. },
  26838. headSide: {
  26839. height: math.unit(14, "feet"),
  26840. name: "Head (Side)",
  26841. image: {
  26842. source: "./media/characters/koros/head-side.svg"
  26843. }
  26844. },
  26845. leg: {
  26846. height: math.unit(17, "feet"),
  26847. name: "Leg",
  26848. image: {
  26849. source: "./media/characters/koros/leg.svg"
  26850. }
  26851. },
  26852. mawSide: {
  26853. height: math.unit(12.8, "feet"),
  26854. name: "Maw (Side)",
  26855. image: {
  26856. source: "./media/characters/koros/maw-side.svg"
  26857. }
  26858. },
  26859. mawSpitting: {
  26860. height: math.unit(17, "feet"),
  26861. name: "Maw (Spitting)",
  26862. image: {
  26863. source: "./media/characters/koros/maw-spitting.svg"
  26864. }
  26865. },
  26866. slit: {
  26867. height: math.unit(2.8, "feet"),
  26868. name: "Slit",
  26869. image: {
  26870. source: "./media/characters/koros/slit.svg"
  26871. }
  26872. },
  26873. stomach: {
  26874. height: math.unit(6.8, "feet"),
  26875. preyCapacity: math.unit(20, "people"),
  26876. name: "Stomach",
  26877. image: {
  26878. source: "./media/characters/koros/stomach.svg"
  26879. }
  26880. },
  26881. wingspanBottom: {
  26882. height: math.unit(114, "feet"),
  26883. name: "Wingspan (Bottom)",
  26884. image: {
  26885. source: "./media/characters/koros/wingspan-bottom.svg"
  26886. }
  26887. },
  26888. wingspanTop: {
  26889. height: math.unit(104, "feet"),
  26890. name: "Wingspan (Top)",
  26891. image: {
  26892. source: "./media/characters/koros/wingspan-top.svg"
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Normal",
  26899. height: math.unit(31 + 8 / 12, "feet"),
  26900. default: true
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26906. {
  26907. front: {
  26908. height: math.unit(18 + 5 / 12, "feet"),
  26909. weight: math.unit(3750, "kg"),
  26910. name: "Front",
  26911. image: {
  26912. source: "./media/characters/vexx/front.svg",
  26913. extra: 426 / 396,
  26914. bottom: 31.5 / 458
  26915. }
  26916. },
  26917. maw: {
  26918. height: math.unit(6, "feet"),
  26919. name: "Maw",
  26920. image: {
  26921. source: "./media/characters/vexx/maw.svg"
  26922. }
  26923. },
  26924. },
  26925. [
  26926. {
  26927. name: "Normal",
  26928. height: math.unit(18 + 5 / 12, "feet"),
  26929. default: true
  26930. },
  26931. ]
  26932. ))
  26933. characterMakers.push(() => makeCharacter(
  26934. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26935. {
  26936. front: {
  26937. height: math.unit(17 + 6 / 12, "feet"),
  26938. weight: math.unit(150, "lb"),
  26939. name: "Front",
  26940. image: {
  26941. source: "./media/characters/baadra/front.svg",
  26942. extra: 1694/1553,
  26943. bottom: 179/1873
  26944. }
  26945. },
  26946. frontAlt: {
  26947. height: math.unit(17 + 6 / 12, "feet"),
  26948. weight: math.unit(150, "lb"),
  26949. name: "Front (Alt)",
  26950. image: {
  26951. source: "./media/characters/baadra/front-alt.svg",
  26952. extra: 3137 / 2890,
  26953. bottom: 168.4 / 3305
  26954. }
  26955. },
  26956. back: {
  26957. height: math.unit(17 + 6 / 12, "feet"),
  26958. weight: math.unit(150, "lb"),
  26959. name: "Back",
  26960. image: {
  26961. source: "./media/characters/baadra/back.svg",
  26962. extra: 3142 / 2890,
  26963. bottom: 220 / 3371
  26964. }
  26965. },
  26966. head: {
  26967. height: math.unit(5.45, "feet"),
  26968. name: "Head",
  26969. image: {
  26970. source: "./media/characters/baadra/head.svg"
  26971. }
  26972. },
  26973. headAngry: {
  26974. height: math.unit(4.95, "feet"),
  26975. name: "Head (Angry)",
  26976. image: {
  26977. source: "./media/characters/baadra/head-angry.svg"
  26978. }
  26979. },
  26980. headOpen: {
  26981. height: math.unit(6, "feet"),
  26982. name: "Head (Open)",
  26983. image: {
  26984. source: "./media/characters/baadra/head-open.svg"
  26985. }
  26986. },
  26987. },
  26988. [
  26989. {
  26990. name: "Normal",
  26991. height: math.unit(17 + 6 / 12, "feet"),
  26992. default: true
  26993. },
  26994. ]
  26995. ))
  26996. characterMakers.push(() => makeCharacter(
  26997. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26998. {
  26999. front: {
  27000. height: math.unit(7 + 3 / 12, "feet"),
  27001. weight: math.unit(180, "lb"),
  27002. name: "Front",
  27003. image: {
  27004. source: "./media/characters/juri/front.svg",
  27005. extra: 1401 / 1237,
  27006. bottom: 18.5 / 1418
  27007. }
  27008. },
  27009. side: {
  27010. height: math.unit(7 + 3 / 12, "feet"),
  27011. weight: math.unit(180, "lb"),
  27012. name: "Side",
  27013. image: {
  27014. source: "./media/characters/juri/side.svg",
  27015. extra: 1424 / 1242,
  27016. bottom: 18.5 / 1447
  27017. }
  27018. },
  27019. sitting: {
  27020. height: math.unit(6, "feet"),
  27021. weight: math.unit(180, "lb"),
  27022. name: "Sitting",
  27023. image: {
  27024. source: "./media/characters/juri/sitting.svg",
  27025. extra: 1270 / 1143,
  27026. bottom: 100 / 1343
  27027. }
  27028. },
  27029. back: {
  27030. height: math.unit(7 + 3 / 12, "feet"),
  27031. weight: math.unit(180, "lb"),
  27032. name: "Back",
  27033. image: {
  27034. source: "./media/characters/juri/back.svg",
  27035. extra: 1377 / 1240,
  27036. bottom: 23.7 / 1405
  27037. }
  27038. },
  27039. maw: {
  27040. height: math.unit(2.8, "feet"),
  27041. name: "Maw",
  27042. image: {
  27043. source: "./media/characters/juri/maw.svg"
  27044. }
  27045. },
  27046. stomach: {
  27047. height: math.unit(0.89, "feet"),
  27048. preyCapacity: math.unit(4, "liters"),
  27049. name: "Stomach",
  27050. image: {
  27051. source: "./media/characters/juri/stomach.svg"
  27052. }
  27053. },
  27054. },
  27055. [
  27056. {
  27057. name: "Normal",
  27058. height: math.unit(7 + 3 / 12, "feet"),
  27059. default: true
  27060. },
  27061. ]
  27062. ))
  27063. characterMakers.push(() => makeCharacter(
  27064. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27065. {
  27066. fox: {
  27067. height: math.unit(5 + 6 / 12, "feet"),
  27068. weight: math.unit(140, "lb"),
  27069. name: "Fox",
  27070. image: {
  27071. source: "./media/characters/maxene-sita/fox.svg",
  27072. extra: 146 / 138,
  27073. bottom: 2.1 / 148.19
  27074. }
  27075. },
  27076. foxLaying: {
  27077. height: math.unit(1.70, "feet"),
  27078. weight: math.unit(140, "lb"),
  27079. name: "Fox (Laying)",
  27080. image: {
  27081. source: "./media/characters/maxene-sita/fox-laying.svg",
  27082. extra: 910 / 572,
  27083. bottom: 71 / 981
  27084. }
  27085. },
  27086. kitsune: {
  27087. height: math.unit(10, "feet"),
  27088. weight: math.unit(800, "lb"),
  27089. name: "Kitsune",
  27090. image: {
  27091. source: "./media/characters/maxene-sita/kitsune.svg",
  27092. extra: 185 / 176,
  27093. bottom: 4.7 / 189.9
  27094. }
  27095. },
  27096. hellhound: {
  27097. height: math.unit(10, "feet"),
  27098. weight: math.unit(700, "lb"),
  27099. name: "Hellhound",
  27100. image: {
  27101. source: "./media/characters/maxene-sita/hellhound.svg",
  27102. extra: 1600 / 1545,
  27103. bottom: 81 / 1681
  27104. }
  27105. },
  27106. },
  27107. [
  27108. {
  27109. name: "Normal",
  27110. height: math.unit(5 + 6 / 12, "feet"),
  27111. default: true
  27112. },
  27113. ]
  27114. ))
  27115. characterMakers.push(() => makeCharacter(
  27116. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27117. {
  27118. front: {
  27119. height: math.unit(3 + 4 / 12, "feet"),
  27120. weight: math.unit(70, "lb"),
  27121. name: "Front",
  27122. image: {
  27123. source: "./media/characters/maia/front.svg",
  27124. extra: 227 / 219.5,
  27125. bottom: 40 / 267
  27126. }
  27127. },
  27128. back: {
  27129. height: math.unit(3 + 4 / 12, "feet"),
  27130. weight: math.unit(70, "lb"),
  27131. name: "Back",
  27132. image: {
  27133. source: "./media/characters/maia/back.svg",
  27134. extra: 237 / 225
  27135. }
  27136. },
  27137. },
  27138. [
  27139. {
  27140. name: "Normal",
  27141. height: math.unit(3 + 4 / 12, "feet"),
  27142. default: true
  27143. },
  27144. ]
  27145. ))
  27146. characterMakers.push(() => makeCharacter(
  27147. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27148. {
  27149. front: {
  27150. height: math.unit(5 + 10 / 12, "feet"),
  27151. weight: math.unit(197, "lb"),
  27152. name: "Front",
  27153. image: {
  27154. source: "./media/characters/jabaro/front.svg",
  27155. extra: 225 / 216,
  27156. bottom: 5.06 / 230
  27157. }
  27158. },
  27159. back: {
  27160. height: math.unit(5 + 10 / 12, "feet"),
  27161. weight: math.unit(197, "lb"),
  27162. name: "Back",
  27163. image: {
  27164. source: "./media/characters/jabaro/back.svg",
  27165. extra: 225 / 219,
  27166. bottom: 1.9 / 227
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Normal",
  27173. height: math.unit(5 + 10 / 12, "feet"),
  27174. default: true
  27175. },
  27176. ]
  27177. ))
  27178. characterMakers.push(() => makeCharacter(
  27179. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27180. {
  27181. front: {
  27182. height: math.unit(5 + 8 / 12, "feet"),
  27183. weight: math.unit(139, "lb"),
  27184. name: "Front",
  27185. image: {
  27186. source: "./media/characters/risa/front.svg",
  27187. extra: 270 / 260,
  27188. bottom: 11.2 / 282
  27189. }
  27190. },
  27191. back: {
  27192. height: math.unit(5 + 8 / 12, "feet"),
  27193. weight: math.unit(139, "lb"),
  27194. name: "Back",
  27195. image: {
  27196. source: "./media/characters/risa/back.svg",
  27197. extra: 264 / 255,
  27198. bottom: 4 / 268
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Normal",
  27205. height: math.unit(5 + 8 / 12, "feet"),
  27206. default: true
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27212. {
  27213. front: {
  27214. height: math.unit(2 + 11 / 12, "feet"),
  27215. weight: math.unit(30, "lb"),
  27216. name: "Front",
  27217. image: {
  27218. source: "./media/characters/weatley/front.svg",
  27219. bottom: 10.7 / 414,
  27220. extra: 403.5 / 362
  27221. }
  27222. },
  27223. back: {
  27224. height: math.unit(2 + 11 / 12, "feet"),
  27225. weight: math.unit(30, "lb"),
  27226. name: "Back",
  27227. image: {
  27228. source: "./media/characters/weatley/back.svg",
  27229. bottom: 10.7 / 414,
  27230. extra: 403.5 / 362
  27231. }
  27232. },
  27233. },
  27234. [
  27235. {
  27236. name: "Normal",
  27237. height: math.unit(2 + 11 / 12, "feet"),
  27238. default: true
  27239. },
  27240. ]
  27241. ))
  27242. characterMakers.push(() => makeCharacter(
  27243. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27244. {
  27245. front: {
  27246. height: math.unit(5 + 2 / 12, "feet"),
  27247. weight: math.unit(50, "kg"),
  27248. name: "Front",
  27249. image: {
  27250. source: "./media/characters/mercury-crescent/front.svg",
  27251. extra: 1088 / 1033,
  27252. bottom: 18.9 / 1109
  27253. }
  27254. },
  27255. },
  27256. [
  27257. {
  27258. name: "Normal",
  27259. height: math.unit(5 + 2 / 12, "feet"),
  27260. default: true
  27261. },
  27262. ]
  27263. ))
  27264. characterMakers.push(() => makeCharacter(
  27265. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27266. {
  27267. front: {
  27268. height: math.unit(2, "feet"),
  27269. weight: math.unit(15, "kg"),
  27270. name: "Front",
  27271. image: {
  27272. source: "./media/characters/diamond-jones/front.svg",
  27273. extra: 727/723,
  27274. bottom: 46/773
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(2, "feet"),
  27282. default: true
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(3, "feet"),
  27291. weight: math.unit(30, "kg"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/sweet-bit/front.svg",
  27295. extra: 675 / 567,
  27296. bottom: 27.7 / 703
  27297. }
  27298. },
  27299. },
  27300. [
  27301. {
  27302. name: "Normal",
  27303. height: math.unit(3, "feet"),
  27304. default: true
  27305. },
  27306. ]
  27307. ))
  27308. characterMakers.push(() => makeCharacter(
  27309. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27310. {
  27311. side: {
  27312. height: math.unit(9.178, "feet"),
  27313. weight: math.unit(500, "lb"),
  27314. name: "Side",
  27315. image: {
  27316. source: "./media/characters/umbrazen/side.svg",
  27317. extra: 1730 / 1473,
  27318. bottom: 34.6 / 1765
  27319. }
  27320. },
  27321. },
  27322. [
  27323. {
  27324. name: "Normal",
  27325. height: math.unit(9.178, "feet"),
  27326. default: true
  27327. },
  27328. ]
  27329. ))
  27330. characterMakers.push(() => makeCharacter(
  27331. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27332. {
  27333. front: {
  27334. height: math.unit(10, "feet"),
  27335. weight: math.unit(750, "lb"),
  27336. name: "Front",
  27337. image: {
  27338. source: "./media/characters/arlist/front.svg",
  27339. extra: 961 / 778,
  27340. bottom: 6.2 / 986
  27341. }
  27342. },
  27343. },
  27344. [
  27345. {
  27346. name: "Normal",
  27347. height: math.unit(10, "feet"),
  27348. default: true
  27349. },
  27350. ]
  27351. ))
  27352. characterMakers.push(() => makeCharacter(
  27353. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27354. {
  27355. front: {
  27356. height: math.unit(5 + 1 / 12, "feet"),
  27357. weight: math.unit(110, "lb"),
  27358. name: "Front",
  27359. image: {
  27360. source: "./media/characters/aradel/front.svg",
  27361. extra: 324 / 303,
  27362. bottom: 3.6 / 329.4
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "Normal",
  27369. height: math.unit(5 + 1 / 12, "feet"),
  27370. default: true
  27371. },
  27372. ]
  27373. ))
  27374. characterMakers.push(() => makeCharacter(
  27375. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27376. {
  27377. dressed: {
  27378. height: math.unit(3 + 8 / 12, "feet"),
  27379. weight: math.unit(50, "lb"),
  27380. name: "Dressed",
  27381. image: {
  27382. source: "./media/characters/serryn/dressed.svg",
  27383. extra: 1792 / 1656,
  27384. bottom: 43.5 / 1840
  27385. }
  27386. },
  27387. nude: {
  27388. height: math.unit(3 + 8 / 12, "feet"),
  27389. weight: math.unit(50, "lb"),
  27390. name: "Nude",
  27391. image: {
  27392. source: "./media/characters/serryn/nude.svg",
  27393. extra: 1792 / 1656,
  27394. bottom: 43.5 / 1840
  27395. }
  27396. },
  27397. },
  27398. [
  27399. {
  27400. name: "Normal",
  27401. height: math.unit(3 + 8 / 12, "feet"),
  27402. default: true
  27403. },
  27404. ]
  27405. ))
  27406. characterMakers.push(() => makeCharacter(
  27407. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27408. {
  27409. front: {
  27410. height: math.unit(7 + 10 / 12, "feet"),
  27411. weight: math.unit(255, "lb"),
  27412. name: "Front",
  27413. image: {
  27414. source: "./media/characters/xavier-thyme/front.svg",
  27415. extra: 3733 / 3642,
  27416. bottom: 131 / 3869
  27417. }
  27418. },
  27419. frontRaven: {
  27420. height: math.unit(7 + 10 / 12, "feet"),
  27421. weight: math.unit(255, "lb"),
  27422. name: "Front (Raven)",
  27423. image: {
  27424. source: "./media/characters/xavier-thyme/front-raven.svg",
  27425. extra: 4385 / 3642,
  27426. bottom: 131 / 4517
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(7 + 10 / 12, "feet"),
  27434. default: true
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27440. {
  27441. front: {
  27442. height: math.unit(1.6, "m"),
  27443. weight: math.unit(50, "kg"),
  27444. name: "Front",
  27445. image: {
  27446. source: "./media/characters/kiki/front.svg",
  27447. extra: 4682 / 3610,
  27448. bottom: 115 / 4777
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Normal",
  27455. height: math.unit(1.6, "meters"),
  27456. default: true
  27457. },
  27458. ]
  27459. ))
  27460. characterMakers.push(() => makeCharacter(
  27461. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27462. {
  27463. front: {
  27464. height: math.unit(50, "m"),
  27465. weight: math.unit(500, "tonnes"),
  27466. name: "Front",
  27467. image: {
  27468. source: "./media/characters/ryoko/front.svg",
  27469. extra: 4632 / 3926,
  27470. bottom: 193 / 4823
  27471. }
  27472. },
  27473. },
  27474. [
  27475. {
  27476. name: "Normal",
  27477. height: math.unit(50, "meters"),
  27478. default: true
  27479. },
  27480. ]
  27481. ))
  27482. characterMakers.push(() => makeCharacter(
  27483. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27484. {
  27485. front: {
  27486. height: math.unit(30, "m"),
  27487. weight: math.unit(22, "tonnes"),
  27488. name: "Front",
  27489. image: {
  27490. source: "./media/characters/elio/front.svg",
  27491. extra: 4582 / 3720,
  27492. bottom: 236 / 4828
  27493. }
  27494. },
  27495. },
  27496. [
  27497. {
  27498. name: "Normal",
  27499. height: math.unit(30, "meters"),
  27500. default: true
  27501. },
  27502. ]
  27503. ))
  27504. characterMakers.push(() => makeCharacter(
  27505. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27506. {
  27507. front: {
  27508. height: math.unit(6 + 3 / 12, "feet"),
  27509. weight: math.unit(120, "lb"),
  27510. name: "Front",
  27511. image: {
  27512. source: "./media/characters/azura/front.svg",
  27513. extra: 1149 / 1135,
  27514. bottom: 45 / 1194
  27515. }
  27516. },
  27517. frontClothed: {
  27518. height: math.unit(6 + 3 / 12, "feet"),
  27519. weight: math.unit(120, "lb"),
  27520. name: "Front (Clothed)",
  27521. image: {
  27522. source: "./media/characters/azura/front-clothed.svg",
  27523. extra: 1149 / 1135,
  27524. bottom: 45 / 1194
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Normal",
  27531. height: math.unit(6 + 3 / 12, "feet"),
  27532. default: true
  27533. },
  27534. {
  27535. name: "Macro",
  27536. height: math.unit(20 + 6 / 12, "feet")
  27537. },
  27538. {
  27539. name: "Megamacro",
  27540. height: math.unit(12, "miles")
  27541. },
  27542. {
  27543. name: "Gigamacro",
  27544. height: math.unit(10000, "miles")
  27545. },
  27546. {
  27547. name: "Teramacro",
  27548. height: math.unit(900000, "miles")
  27549. },
  27550. ]
  27551. ))
  27552. characterMakers.push(() => makeCharacter(
  27553. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27554. {
  27555. front: {
  27556. height: math.unit(12, "feet"),
  27557. weight: math.unit(1, "ton"),
  27558. capacity: math.unit(660000, "gallons"),
  27559. name: "Front",
  27560. image: {
  27561. source: "./media/characters/zeus/front.svg",
  27562. extra: 5005 / 4717,
  27563. bottom: 363 / 5388
  27564. }
  27565. },
  27566. },
  27567. [
  27568. {
  27569. name: "Normal",
  27570. height: math.unit(12, "feet")
  27571. },
  27572. {
  27573. name: "Preferred Size",
  27574. height: math.unit(0.5, "miles"),
  27575. default: true
  27576. },
  27577. {
  27578. name: "Giga Horse",
  27579. height: math.unit(300, "miles")
  27580. },
  27581. {
  27582. name: "Riding Planets",
  27583. height: math.unit(30, "megameters")
  27584. },
  27585. {
  27586. name: "Cosmic Giant",
  27587. height: math.unit(3, "zettameters")
  27588. },
  27589. {
  27590. name: "Breeding God",
  27591. height: math.unit(9.92e22, "yottameters")
  27592. },
  27593. ]
  27594. ))
  27595. characterMakers.push(() => makeCharacter(
  27596. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27597. {
  27598. side: {
  27599. height: math.unit(9, "feet"),
  27600. weight: math.unit(1500, "kg"),
  27601. name: "Side",
  27602. image: {
  27603. source: "./media/characters/fang/side.svg",
  27604. extra: 924 / 866,
  27605. bottom: 47.5 / 972.3
  27606. }
  27607. },
  27608. },
  27609. [
  27610. {
  27611. name: "Normal",
  27612. height: math.unit(9, "feet"),
  27613. default: true
  27614. },
  27615. {
  27616. name: "Macro",
  27617. height: math.unit(75 + 6 / 12, "feet")
  27618. },
  27619. {
  27620. name: "Teramacro",
  27621. height: math.unit(50000, "miles")
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27627. {
  27628. front: {
  27629. height: math.unit(10, "feet"),
  27630. weight: math.unit(2, "tons"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/rekhit/front.svg",
  27634. extra: 2796 / 2590,
  27635. bottom: 225 / 3022
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Normal",
  27642. height: math.unit(10, "feet"),
  27643. default: true
  27644. },
  27645. {
  27646. name: "Macro",
  27647. height: math.unit(500, "feet")
  27648. },
  27649. ]
  27650. ))
  27651. characterMakers.push(() => makeCharacter(
  27652. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27653. {
  27654. front: {
  27655. height: math.unit(7 + 6.451 / 12, "feet"),
  27656. weight: math.unit(310, "lb"),
  27657. name: "Front",
  27658. image: {
  27659. source: "./media/characters/dahlia-verrick/front.svg",
  27660. extra: 1488 / 1365,
  27661. bottom: 6.2 / 1495
  27662. }
  27663. },
  27664. back: {
  27665. height: math.unit(7 + 6.451 / 12, "feet"),
  27666. weight: math.unit(310, "lb"),
  27667. name: "Back",
  27668. image: {
  27669. source: "./media/characters/dahlia-verrick/back.svg",
  27670. extra: 1472 / 1351,
  27671. bottom: 5.28 / 1477
  27672. }
  27673. },
  27674. frontBusiness: {
  27675. height: math.unit(7 + 6.451 / 12, "feet"),
  27676. weight: math.unit(200, "lb"),
  27677. name: "Front (Business)",
  27678. image: {
  27679. source: "./media/characters/dahlia-verrick/front-business.svg",
  27680. extra: 1478 / 1381,
  27681. bottom: 5.5 / 1484
  27682. }
  27683. },
  27684. frontCasual: {
  27685. height: math.unit(7 + 6.451 / 12, "feet"),
  27686. weight: math.unit(200, "lb"),
  27687. name: "Front (Casual)",
  27688. image: {
  27689. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27690. extra: 1478 / 1381,
  27691. bottom: 5.5 / 1484
  27692. }
  27693. },
  27694. },
  27695. [
  27696. {
  27697. name: "Travel-Sized",
  27698. height: math.unit(7.45, "inches")
  27699. },
  27700. {
  27701. name: "Normal",
  27702. height: math.unit(7 + 6.451 / 12, "feet"),
  27703. default: true
  27704. },
  27705. {
  27706. name: "Hitting the Town",
  27707. height: math.unit(37 + 8 / 12, "feet")
  27708. },
  27709. {
  27710. name: "Stomp in the Suburbs",
  27711. height: math.unit(964 + 9.728 / 12, "feet")
  27712. },
  27713. {
  27714. name: "Sit on the City",
  27715. height: math.unit(61747 + 10.592 / 12, "feet")
  27716. },
  27717. {
  27718. name: "Glomp the Globe",
  27719. height: math.unit(252919327 + 4.832 / 12, "feet")
  27720. },
  27721. ]
  27722. ))
  27723. characterMakers.push(() => makeCharacter(
  27724. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27725. {
  27726. front: {
  27727. height: math.unit(6 + 4 / 12, "feet"),
  27728. weight: math.unit(320, "lb"),
  27729. name: "Front",
  27730. image: {
  27731. source: "./media/characters/balina-mahigan/front.svg",
  27732. extra: 447 / 428,
  27733. bottom: 18 / 466
  27734. }
  27735. },
  27736. back: {
  27737. height: math.unit(6 + 4 / 12, "feet"),
  27738. weight: math.unit(320, "lb"),
  27739. name: "Back",
  27740. image: {
  27741. source: "./media/characters/balina-mahigan/back.svg",
  27742. extra: 445 / 428,
  27743. bottom: 4.07 / 448
  27744. }
  27745. },
  27746. arm: {
  27747. height: math.unit(1.88, "feet"),
  27748. name: "Arm",
  27749. image: {
  27750. source: "./media/characters/balina-mahigan/arm.svg"
  27751. }
  27752. },
  27753. backPort: {
  27754. height: math.unit(0.685, "feet"),
  27755. name: "Back Port",
  27756. image: {
  27757. source: "./media/characters/balina-mahigan/back-port.svg"
  27758. }
  27759. },
  27760. hoofpaw: {
  27761. height: math.unit(1.41, "feet"),
  27762. name: "Hoofpaw",
  27763. image: {
  27764. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27765. }
  27766. },
  27767. leftHandBack: {
  27768. height: math.unit(0.938, "feet"),
  27769. name: "Left Hand (Back)",
  27770. image: {
  27771. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27772. }
  27773. },
  27774. leftHandFront: {
  27775. height: math.unit(0.938, "feet"),
  27776. name: "Left Hand (Front)",
  27777. image: {
  27778. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27779. }
  27780. },
  27781. rightHandBack: {
  27782. height: math.unit(0.95, "feet"),
  27783. name: "Right Hand (Back)",
  27784. image: {
  27785. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27786. }
  27787. },
  27788. rightHandFront: {
  27789. height: math.unit(0.95, "feet"),
  27790. name: "Right Hand (Front)",
  27791. image: {
  27792. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27793. }
  27794. },
  27795. },
  27796. [
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(6 + 4 / 12, "feet"),
  27800. default: true
  27801. },
  27802. ]
  27803. ))
  27804. characterMakers.push(() => makeCharacter(
  27805. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27806. {
  27807. front: {
  27808. height: math.unit(6, "feet"),
  27809. weight: math.unit(320, "lb"),
  27810. name: "Front",
  27811. image: {
  27812. source: "./media/characters/balina-mejeri/front.svg",
  27813. extra: 517 / 488,
  27814. bottom: 44.2 / 561
  27815. }
  27816. },
  27817. },
  27818. [
  27819. {
  27820. name: "Normal",
  27821. height: math.unit(6 + 4 / 12, "feet")
  27822. },
  27823. {
  27824. name: "Business",
  27825. height: math.unit(155, "feet"),
  27826. default: true
  27827. },
  27828. ]
  27829. ))
  27830. characterMakers.push(() => makeCharacter(
  27831. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27832. {
  27833. kneeling: {
  27834. height: math.unit(6 + 4 / 12, "feet"),
  27835. weight: math.unit(300 * 20, "lb"),
  27836. name: "Kneeling",
  27837. image: {
  27838. source: "./media/characters/balbarian/kneeling.svg",
  27839. extra: 922 / 862,
  27840. bottom: 42.4 / 965
  27841. }
  27842. },
  27843. },
  27844. [
  27845. {
  27846. name: "Normal",
  27847. height: math.unit(6 + 4 / 12, "feet")
  27848. },
  27849. {
  27850. name: "Treasured",
  27851. height: math.unit(18 + 9 / 12, "feet"),
  27852. default: true
  27853. },
  27854. {
  27855. name: "Macro",
  27856. height: math.unit(900, "feet")
  27857. },
  27858. ]
  27859. ))
  27860. characterMakers.push(() => makeCharacter(
  27861. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27862. {
  27863. front: {
  27864. height: math.unit(6 + 4 / 12, "feet"),
  27865. weight: math.unit(325, "lb"),
  27866. name: "Front",
  27867. image: {
  27868. source: "./media/characters/balina-amarini/front.svg",
  27869. extra: 415 / 403,
  27870. bottom: 19 / 433.4
  27871. }
  27872. },
  27873. back: {
  27874. height: math.unit(6 + 4 / 12, "feet"),
  27875. weight: math.unit(325, "lb"),
  27876. name: "Back",
  27877. image: {
  27878. source: "./media/characters/balina-amarini/back.svg",
  27879. extra: 415 / 403,
  27880. bottom: 13.5 / 432
  27881. }
  27882. },
  27883. overdrive: {
  27884. height: math.unit(6 + 4 / 12, "feet"),
  27885. weight: math.unit(400, "lb"),
  27886. name: "Overdrive",
  27887. image: {
  27888. source: "./media/characters/balina-amarini/overdrive.svg",
  27889. extra: 269 / 259,
  27890. bottom: 12 / 282
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Boom",
  27897. height: math.unit(9 + 10 / 12, "feet"),
  27898. default: true
  27899. },
  27900. {
  27901. name: "Macro",
  27902. height: math.unit(280, "feet")
  27903. },
  27904. ]
  27905. ))
  27906. characterMakers.push(() => makeCharacter(
  27907. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27908. {
  27909. goddess: {
  27910. height: math.unit(600, "feet"),
  27911. weight: math.unit(2000000, "tons"),
  27912. name: "Goddess",
  27913. image: {
  27914. source: "./media/characters/lady-kubwa/goddess.svg",
  27915. extra: 1240.5 / 1223,
  27916. bottom: 22 / 1263
  27917. }
  27918. },
  27919. goddesser: {
  27920. height: math.unit(900, "feet"),
  27921. weight: math.unit(20000000, "lb"),
  27922. name: "Goddess-er",
  27923. image: {
  27924. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27925. extra: 899 / 888,
  27926. bottom: 12.6 / 912
  27927. }
  27928. },
  27929. },
  27930. [
  27931. {
  27932. name: "Macro",
  27933. height: math.unit(600, "feet"),
  27934. default: true
  27935. },
  27936. {
  27937. name: "Megamacro",
  27938. height: math.unit(250, "miles")
  27939. },
  27940. ]
  27941. ))
  27942. characterMakers.push(() => makeCharacter(
  27943. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27944. {
  27945. front: {
  27946. height: math.unit(7 + 7 / 12, "feet"),
  27947. weight: math.unit(250, "lb"),
  27948. name: "Front",
  27949. image: {
  27950. source: "./media/characters/tala-grovehorn/front.svg",
  27951. extra: 2636 / 2525,
  27952. bottom: 147 / 2781
  27953. }
  27954. },
  27955. back: {
  27956. height: math.unit(7 + 7 / 12, "feet"),
  27957. weight: math.unit(250, "lb"),
  27958. name: "Back",
  27959. image: {
  27960. source: "./media/characters/tala-grovehorn/back.svg",
  27961. extra: 2635 / 2539,
  27962. bottom: 100 / 2732.8
  27963. }
  27964. },
  27965. mouth: {
  27966. height: math.unit(1.15, "feet"),
  27967. name: "Mouth",
  27968. image: {
  27969. source: "./media/characters/tala-grovehorn/mouth.svg"
  27970. }
  27971. },
  27972. dick: {
  27973. height: math.unit(2.36, "feet"),
  27974. name: "Dick",
  27975. image: {
  27976. source: "./media/characters/tala-grovehorn/dick.svg"
  27977. }
  27978. },
  27979. slit: {
  27980. height: math.unit(0.61, "feet"),
  27981. name: "Slit",
  27982. image: {
  27983. source: "./media/characters/tala-grovehorn/slit.svg"
  27984. }
  27985. },
  27986. },
  27987. [
  27988. ]
  27989. ))
  27990. characterMakers.push(() => makeCharacter(
  27991. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27992. {
  27993. front: {
  27994. height: math.unit(7 + 7 / 12, "feet"),
  27995. weight: math.unit(225, "lb"),
  27996. name: "Front",
  27997. image: {
  27998. source: "./media/characters/epona/front.svg",
  27999. extra: 2445 / 2290,
  28000. bottom: 251 / 2696
  28001. }
  28002. },
  28003. back: {
  28004. height: math.unit(7 + 7 / 12, "feet"),
  28005. weight: math.unit(225, "lb"),
  28006. name: "Back",
  28007. image: {
  28008. source: "./media/characters/epona/back.svg",
  28009. extra: 2546 / 2408,
  28010. bottom: 44 / 2589
  28011. }
  28012. },
  28013. genitals: {
  28014. height: math.unit(1.5, "feet"),
  28015. name: "Genitals",
  28016. image: {
  28017. source: "./media/characters/epona/genitals.svg"
  28018. }
  28019. },
  28020. },
  28021. [
  28022. {
  28023. name: "Normal",
  28024. height: math.unit(7 + 7 / 12, "feet"),
  28025. default: true
  28026. },
  28027. ]
  28028. ))
  28029. characterMakers.push(() => makeCharacter(
  28030. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28031. {
  28032. front: {
  28033. height: math.unit(7, "feet"),
  28034. weight: math.unit(518, "lb"),
  28035. name: "Front",
  28036. image: {
  28037. source: "./media/characters/avia-bloodbourn/front.svg",
  28038. extra: 1466 / 1350,
  28039. bottom: 65 / 1527
  28040. }
  28041. },
  28042. },
  28043. [
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(9.35, "feet"),
  28051. weight: math.unit(600, "lb"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/amera/front.svg",
  28055. extra: 891 / 818,
  28056. bottom: 30 / 922.7
  28057. }
  28058. },
  28059. back: {
  28060. height: math.unit(9.35, "feet"),
  28061. weight: math.unit(600, "lb"),
  28062. name: "Back",
  28063. image: {
  28064. source: "./media/characters/amera/back.svg",
  28065. extra: 876 / 824,
  28066. bottom: 6.8 / 884
  28067. }
  28068. },
  28069. dick: {
  28070. height: math.unit(2.14, "feet"),
  28071. name: "Dick",
  28072. image: {
  28073. source: "./media/characters/amera/dick.svg"
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Normal",
  28080. height: math.unit(9.35, "feet"),
  28081. default: true
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28087. {
  28088. kneeling: {
  28089. height: math.unit(3 + 4 / 12, "feet"),
  28090. weight: math.unit(90, "lb"),
  28091. name: "Kneeling",
  28092. image: {
  28093. source: "./media/characters/rosewen/kneeling.svg",
  28094. extra: 1835 / 1571,
  28095. bottom: 27.7 / 1862
  28096. }
  28097. },
  28098. },
  28099. [
  28100. {
  28101. name: "Normal",
  28102. height: math.unit(3 + 4 / 12, "feet"),
  28103. default: true
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28109. {
  28110. front: {
  28111. height: math.unit(5 + 10 / 12, "feet"),
  28112. weight: math.unit(200, "lb"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/sabah/front.svg",
  28116. extra: 849 / 763,
  28117. bottom: 33.9 / 881
  28118. }
  28119. },
  28120. },
  28121. [
  28122. {
  28123. name: "Normal",
  28124. height: math.unit(5 + 10 / 12, "feet"),
  28125. default: true
  28126. },
  28127. ]
  28128. ))
  28129. characterMakers.push(() => makeCharacter(
  28130. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28131. {
  28132. front: {
  28133. height: math.unit(3 + 5 / 12, "feet"),
  28134. weight: math.unit(40, "kg"),
  28135. name: "Front",
  28136. image: {
  28137. source: "./media/characters/purple-flame/front.svg",
  28138. extra: 1577 / 1412,
  28139. bottom: 97 / 1694
  28140. }
  28141. },
  28142. frontDressed: {
  28143. height: math.unit(3 + 5 / 12, "feet"),
  28144. weight: math.unit(40, "kg"),
  28145. name: "Front (Dressed)",
  28146. image: {
  28147. source: "./media/characters/purple-flame/front-dressed.svg",
  28148. extra: 1577 / 1412,
  28149. bottom: 97 / 1694
  28150. }
  28151. },
  28152. headphones: {
  28153. height: math.unit(0.85, "feet"),
  28154. name: "Headphones",
  28155. image: {
  28156. source: "./media/characters/purple-flame/headphones.svg"
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Really Small",
  28163. height: math.unit(5, "cm")
  28164. },
  28165. {
  28166. name: "Micro",
  28167. height: math.unit(1 + 5 / 12, "feet")
  28168. },
  28169. {
  28170. name: "Normal",
  28171. height: math.unit(3 + 5 / 12, "feet"),
  28172. default: true
  28173. },
  28174. {
  28175. name: "Minimacro",
  28176. height: math.unit(125, "feet")
  28177. },
  28178. {
  28179. name: "Macro",
  28180. height: math.unit(0.5, "miles")
  28181. },
  28182. {
  28183. name: "Megamacro",
  28184. height: math.unit(50, "miles")
  28185. },
  28186. {
  28187. name: "Gigantic",
  28188. height: math.unit(750, "miles")
  28189. },
  28190. {
  28191. name: "Planetary",
  28192. height: math.unit(15000, "miles")
  28193. },
  28194. ]
  28195. ))
  28196. characterMakers.push(() => makeCharacter(
  28197. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28198. {
  28199. front: {
  28200. height: math.unit(14, "feet"),
  28201. weight: math.unit(959, "lb"),
  28202. name: "Front",
  28203. image: {
  28204. source: "./media/characters/arsenal/front.svg",
  28205. extra: 2357 / 2157,
  28206. bottom: 93 / 2458
  28207. }
  28208. },
  28209. },
  28210. [
  28211. {
  28212. name: "Normal",
  28213. height: math.unit(14, "feet"),
  28214. default: true
  28215. },
  28216. ]
  28217. ))
  28218. characterMakers.push(() => makeCharacter(
  28219. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28220. {
  28221. front: {
  28222. height: math.unit(6, "feet"),
  28223. weight: math.unit(150, "lb"),
  28224. name: "Front",
  28225. image: {
  28226. source: "./media/characters/adira/front.svg",
  28227. extra: 1078 / 1029,
  28228. bottom: 87 / 1166
  28229. }
  28230. },
  28231. },
  28232. [
  28233. {
  28234. name: "Micro",
  28235. height: math.unit(4, "inches"),
  28236. default: true
  28237. },
  28238. {
  28239. name: "Macro",
  28240. height: math.unit(50, "feet")
  28241. },
  28242. ]
  28243. ))
  28244. characterMakers.push(() => makeCharacter(
  28245. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28246. {
  28247. front: {
  28248. height: math.unit(16, "feet"),
  28249. weight: math.unit(1000, "lb"),
  28250. name: "Front",
  28251. image: {
  28252. source: "./media/characters/grim/front.svg",
  28253. extra: 622 / 614,
  28254. bottom: 18.1 / 642
  28255. }
  28256. },
  28257. back: {
  28258. height: math.unit(16, "feet"),
  28259. weight: math.unit(1000, "lb"),
  28260. name: "Back",
  28261. image: {
  28262. source: "./media/characters/grim/back.svg",
  28263. extra: 610.6 / 602,
  28264. bottom: 40.8 / 652
  28265. }
  28266. },
  28267. hunched: {
  28268. height: math.unit(9.75, "feet"),
  28269. weight: math.unit(1000, "lb"),
  28270. name: "Hunched",
  28271. image: {
  28272. source: "./media/characters/grim/hunched.svg",
  28273. extra: 304 / 297,
  28274. bottom: 35.4 / 394
  28275. }
  28276. },
  28277. },
  28278. [
  28279. {
  28280. name: "Normal",
  28281. height: math.unit(16, "feet"),
  28282. default: true
  28283. },
  28284. ]
  28285. ))
  28286. characterMakers.push(() => makeCharacter(
  28287. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28288. {
  28289. front: {
  28290. height: math.unit(2.3, "meters"),
  28291. weight: math.unit(300, "lb"),
  28292. name: "Front",
  28293. image: {
  28294. source: "./media/characters/sinja/front-sfw.svg",
  28295. extra: 1393 / 1294,
  28296. bottom: 70 / 1463
  28297. }
  28298. },
  28299. frontNsfw: {
  28300. height: math.unit(2.3, "meters"),
  28301. weight: math.unit(300, "lb"),
  28302. name: "Front (NSFW)",
  28303. image: {
  28304. source: "./media/characters/sinja/front-nsfw.svg",
  28305. extra: 1393 / 1294,
  28306. bottom: 70 / 1463
  28307. }
  28308. },
  28309. back: {
  28310. height: math.unit(2.3, "meters"),
  28311. weight: math.unit(300, "lb"),
  28312. name: "Back",
  28313. image: {
  28314. source: "./media/characters/sinja/back.svg",
  28315. extra: 1393 / 1294,
  28316. bottom: 70 / 1463
  28317. }
  28318. },
  28319. head: {
  28320. height: math.unit(1.771, "feet"),
  28321. name: "Head",
  28322. image: {
  28323. source: "./media/characters/sinja/head.svg"
  28324. }
  28325. },
  28326. slit: {
  28327. height: math.unit(0.8, "feet"),
  28328. name: "Slit",
  28329. image: {
  28330. source: "./media/characters/sinja/slit.svg"
  28331. }
  28332. },
  28333. },
  28334. [
  28335. {
  28336. name: "Normal",
  28337. height: math.unit(2.3, "meters")
  28338. },
  28339. {
  28340. name: "Macro",
  28341. height: math.unit(91, "meters"),
  28342. default: true
  28343. },
  28344. {
  28345. name: "Megamacro",
  28346. height: math.unit(91440, "meters")
  28347. },
  28348. {
  28349. name: "Gigamacro",
  28350. height: math.unit(60960000, "meters")
  28351. },
  28352. {
  28353. name: "Teramacro",
  28354. height: math.unit(9144000000, "meters")
  28355. },
  28356. ]
  28357. ))
  28358. characterMakers.push(() => makeCharacter(
  28359. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28360. {
  28361. front: {
  28362. height: math.unit(1.7, "meters"),
  28363. weight: math.unit(130, "lb"),
  28364. name: "Front",
  28365. image: {
  28366. source: "./media/characters/kyu/front.svg",
  28367. extra: 415 / 395,
  28368. bottom: 5 / 420
  28369. }
  28370. },
  28371. head: {
  28372. height: math.unit(1.75, "feet"),
  28373. name: "Head",
  28374. image: {
  28375. source: "./media/characters/kyu/head.svg"
  28376. }
  28377. },
  28378. foot: {
  28379. height: math.unit(0.81, "feet"),
  28380. name: "Foot",
  28381. image: {
  28382. source: "./media/characters/kyu/foot.svg"
  28383. }
  28384. },
  28385. },
  28386. [
  28387. {
  28388. name: "Normal",
  28389. height: math.unit(1.7, "meters")
  28390. },
  28391. {
  28392. name: "Macro",
  28393. height: math.unit(131, "feet"),
  28394. default: true
  28395. },
  28396. {
  28397. name: "Megamacro",
  28398. height: math.unit(91440, "meters")
  28399. },
  28400. {
  28401. name: "Gigamacro",
  28402. height: math.unit(60960000, "meters")
  28403. },
  28404. {
  28405. name: "Teramacro",
  28406. height: math.unit(9144000000, "meters")
  28407. },
  28408. ]
  28409. ))
  28410. characterMakers.push(() => makeCharacter(
  28411. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28412. {
  28413. front: {
  28414. height: math.unit(7 + 1 / 12, "feet"),
  28415. weight: math.unit(250, "lb"),
  28416. name: "Front",
  28417. image: {
  28418. source: "./media/characters/joey/front.svg",
  28419. extra: 1791 / 1537,
  28420. bottom: 28 / 1816
  28421. }
  28422. },
  28423. },
  28424. [
  28425. {
  28426. name: "Micro",
  28427. height: math.unit(3, "inches")
  28428. },
  28429. {
  28430. name: "Normal",
  28431. height: math.unit(7 + 1 / 12, "feet"),
  28432. default: true
  28433. },
  28434. ]
  28435. ))
  28436. characterMakers.push(() => makeCharacter(
  28437. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28438. {
  28439. front: {
  28440. height: math.unit(165, "cm"),
  28441. weight: math.unit(140, "lb"),
  28442. name: "Front",
  28443. image: {
  28444. source: "./media/characters/sam-evans/front.svg",
  28445. extra: 3417 / 3230,
  28446. bottom: 41.3 / 3417
  28447. }
  28448. },
  28449. frontSixTails: {
  28450. height: math.unit(165, "cm"),
  28451. weight: math.unit(140, "lb"),
  28452. name: "Front-six-tails",
  28453. image: {
  28454. source: "./media/characters/sam-evans/front-six-tails.svg",
  28455. extra: 3417 / 3230,
  28456. bottom: 41.3 / 3417
  28457. }
  28458. },
  28459. back: {
  28460. height: math.unit(165, "cm"),
  28461. weight: math.unit(140, "lb"),
  28462. name: "Back",
  28463. image: {
  28464. source: "./media/characters/sam-evans/back.svg",
  28465. extra: 3227 / 3032,
  28466. bottom: 6.8 / 3234
  28467. }
  28468. },
  28469. face: {
  28470. height: math.unit(0.68, "feet"),
  28471. name: "Face",
  28472. image: {
  28473. source: "./media/characters/sam-evans/face.svg"
  28474. }
  28475. },
  28476. },
  28477. [
  28478. {
  28479. name: "Normal",
  28480. height: math.unit(165, "cm"),
  28481. default: true
  28482. },
  28483. {
  28484. name: "Macro",
  28485. height: math.unit(100, "meters")
  28486. },
  28487. {
  28488. name: "Macro+",
  28489. height: math.unit(800, "meters")
  28490. },
  28491. {
  28492. name: "Macro++",
  28493. height: math.unit(3, "km")
  28494. },
  28495. {
  28496. name: "Macro+++",
  28497. height: math.unit(30, "km")
  28498. },
  28499. ]
  28500. ))
  28501. characterMakers.push(() => makeCharacter(
  28502. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28503. {
  28504. front: {
  28505. height: math.unit(10, "feet"),
  28506. weight: math.unit(750, "lb"),
  28507. name: "Front",
  28508. image: {
  28509. source: "./media/characters/juliet-a/front.svg",
  28510. extra: 1766 / 1720,
  28511. bottom: 43 / 1809
  28512. }
  28513. },
  28514. back: {
  28515. height: math.unit(10, "feet"),
  28516. weight: math.unit(750, "lb"),
  28517. name: "Back",
  28518. image: {
  28519. source: "./media/characters/juliet-a/back.svg",
  28520. extra: 1781 / 1734,
  28521. bottom: 35 / 1810,
  28522. }
  28523. },
  28524. },
  28525. [
  28526. {
  28527. name: "Normal",
  28528. height: math.unit(10, "feet"),
  28529. default: true
  28530. },
  28531. {
  28532. name: "Dragon Form",
  28533. height: math.unit(250, "feet")
  28534. },
  28535. {
  28536. name: "Macro",
  28537. height: math.unit(1000, "feet")
  28538. },
  28539. {
  28540. name: "Megamacro",
  28541. height: math.unit(10000, "feet")
  28542. }
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28547. {
  28548. regular: {
  28549. height: math.unit(7 + 3 / 12, "feet"),
  28550. weight: math.unit(260, "lb"),
  28551. name: "Regular",
  28552. image: {
  28553. source: "./media/characters/wild/regular.svg",
  28554. extra: 97.45 / 92,
  28555. bottom: 6.8 / 104.3
  28556. }
  28557. },
  28558. biggums: {
  28559. height: math.unit(8 + 6 / 12, "feet"),
  28560. weight: math.unit(425, "lb"),
  28561. name: "Biggums",
  28562. image: {
  28563. source: "./media/characters/wild/biggums.svg",
  28564. extra: 97.45 / 92,
  28565. bottom: 7.5 / 132.34
  28566. }
  28567. },
  28568. mawRegular: {
  28569. height: math.unit(1.24, "feet"),
  28570. name: "Maw (Regular)",
  28571. image: {
  28572. source: "./media/characters/wild/maw.svg"
  28573. }
  28574. },
  28575. mawBiggums: {
  28576. height: math.unit(1.47, "feet"),
  28577. name: "Maw (Biggums)",
  28578. image: {
  28579. source: "./media/characters/wild/maw.svg"
  28580. }
  28581. },
  28582. },
  28583. [
  28584. {
  28585. name: "Normal",
  28586. height: math.unit(7 + 3 / 12, "feet"),
  28587. default: true
  28588. },
  28589. ]
  28590. ))
  28591. characterMakers.push(() => makeCharacter(
  28592. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28593. {
  28594. front: {
  28595. height: math.unit(2.5, "meters"),
  28596. weight: math.unit(200, "kg"),
  28597. name: "Front",
  28598. image: {
  28599. source: "./media/characters/vidar/front.svg",
  28600. extra: 2994 / 2795,
  28601. bottom: 56 / 3061
  28602. }
  28603. },
  28604. back: {
  28605. height: math.unit(2.5, "meters"),
  28606. weight: math.unit(200, "kg"),
  28607. name: "Back",
  28608. image: {
  28609. source: "./media/characters/vidar/back.svg",
  28610. extra: 3131 / 2928,
  28611. bottom: 13.5 / 3141.5
  28612. }
  28613. },
  28614. feral: {
  28615. height: math.unit(2.5, "meters"),
  28616. weight: math.unit(2000, "kg"),
  28617. name: "Feral",
  28618. image: {
  28619. source: "./media/characters/vidar/feral.svg",
  28620. extra: 2790 / 1765,
  28621. bottom: 6 / 2796
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Normal",
  28628. height: math.unit(2.5, "meters"),
  28629. default: true
  28630. },
  28631. {
  28632. name: "Macro",
  28633. height: math.unit(100, "meters")
  28634. },
  28635. ]
  28636. ))
  28637. characterMakers.push(() => makeCharacter(
  28638. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28639. {
  28640. front: {
  28641. height: math.unit(5 + 9 / 12, "feet"),
  28642. weight: math.unit(120, "lb"),
  28643. name: "Front",
  28644. image: {
  28645. source: "./media/characters/ash/front.svg",
  28646. extra: 2189 / 1961,
  28647. bottom: 5.2 / 2194
  28648. }
  28649. },
  28650. },
  28651. [
  28652. {
  28653. name: "Normal",
  28654. height: math.unit(5 + 9 / 12, "feet"),
  28655. default: true
  28656. },
  28657. ]
  28658. ))
  28659. characterMakers.push(() => makeCharacter(
  28660. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28661. {
  28662. front: {
  28663. height: math.unit(9, "feet"),
  28664. weight: math.unit(10000, "lb"),
  28665. name: "Front",
  28666. image: {
  28667. source: "./media/characters/gygabite/front.svg",
  28668. bottom: 31.7 / 537.8,
  28669. extra: 505 / 370
  28670. }
  28671. },
  28672. },
  28673. [
  28674. {
  28675. name: "Normal",
  28676. height: math.unit(9, "feet"),
  28677. default: true
  28678. },
  28679. ]
  28680. ))
  28681. characterMakers.push(() => makeCharacter(
  28682. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28683. {
  28684. front: {
  28685. height: math.unit(12, "feet"),
  28686. weight: math.unit(4000, "lb"),
  28687. name: "Front",
  28688. image: {
  28689. source: "./media/characters/p0tat0/front.svg",
  28690. extra: 1065 / 921,
  28691. bottom: 55.7 / 1121.25
  28692. }
  28693. },
  28694. },
  28695. [
  28696. {
  28697. name: "Normal",
  28698. height: math.unit(12, "feet"),
  28699. default: true
  28700. },
  28701. ]
  28702. ))
  28703. characterMakers.push(() => makeCharacter(
  28704. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28705. {
  28706. side: {
  28707. height: math.unit(6.5, "feet"),
  28708. weight: math.unit(800, "lb"),
  28709. name: "Side",
  28710. image: {
  28711. source: "./media/characters/dusk/side.svg",
  28712. extra: 615 / 373,
  28713. bottom: 53 / 664
  28714. }
  28715. },
  28716. sitting: {
  28717. height: math.unit(7, "feet"),
  28718. weight: math.unit(800, "lb"),
  28719. name: "Sitting",
  28720. image: {
  28721. source: "./media/characters/dusk/sitting.svg",
  28722. extra: 753 / 425,
  28723. bottom: 33 / 774
  28724. }
  28725. },
  28726. head: {
  28727. height: math.unit(6.1, "feet"),
  28728. name: "Head",
  28729. image: {
  28730. source: "./media/characters/dusk/head.svg"
  28731. }
  28732. },
  28733. },
  28734. [
  28735. {
  28736. name: "Normal",
  28737. height: math.unit(7, "feet"),
  28738. default: true
  28739. },
  28740. ]
  28741. ))
  28742. characterMakers.push(() => makeCharacter(
  28743. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28744. {
  28745. front: {
  28746. height: math.unit(15, "feet"),
  28747. weight: math.unit(7000, "lb"),
  28748. name: "Front",
  28749. image: {
  28750. source: "./media/characters/jay-direwolf/front.svg",
  28751. extra: 1810 / 1732,
  28752. bottom: 66 / 1892
  28753. }
  28754. },
  28755. },
  28756. [
  28757. {
  28758. name: "Normal",
  28759. height: math.unit(15, "feet"),
  28760. default: true
  28761. },
  28762. ]
  28763. ))
  28764. characterMakers.push(() => makeCharacter(
  28765. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28766. {
  28767. front: {
  28768. height: math.unit(4 + 9 / 12, "feet"),
  28769. weight: math.unit(130, "lb"),
  28770. name: "Front",
  28771. image: {
  28772. source: "./media/characters/anchovie/front.svg",
  28773. extra: 382 / 350,
  28774. bottom: 25 / 409
  28775. }
  28776. },
  28777. back: {
  28778. height: math.unit(4 + 9 / 12, "feet"),
  28779. weight: math.unit(130, "lb"),
  28780. name: "Back",
  28781. image: {
  28782. source: "./media/characters/anchovie/back.svg",
  28783. extra: 385 / 352,
  28784. bottom: 16.6 / 402
  28785. }
  28786. },
  28787. frontDressed: {
  28788. height: math.unit(4 + 9 / 12, "feet"),
  28789. weight: math.unit(130, "lb"),
  28790. name: "Front (Dressed)",
  28791. image: {
  28792. source: "./media/characters/anchovie/front-dressed.svg",
  28793. extra: 382 / 350,
  28794. bottom: 25 / 409
  28795. }
  28796. },
  28797. backDressed: {
  28798. height: math.unit(4 + 9 / 12, "feet"),
  28799. weight: math.unit(130, "lb"),
  28800. name: "Back (Dressed)",
  28801. image: {
  28802. source: "./media/characters/anchovie/back-dressed.svg",
  28803. extra: 385 / 352,
  28804. bottom: 16.6 / 402
  28805. }
  28806. },
  28807. },
  28808. [
  28809. {
  28810. name: "Micro",
  28811. height: math.unit(6.4, "inches")
  28812. },
  28813. {
  28814. name: "Normal",
  28815. height: math.unit(4 + 9 / 12, "feet"),
  28816. default: true
  28817. },
  28818. ]
  28819. ))
  28820. characterMakers.push(() => makeCharacter(
  28821. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28822. {
  28823. front: {
  28824. height: math.unit(2, "meters"),
  28825. weight: math.unit(180, "lb"),
  28826. name: "Front",
  28827. image: {
  28828. source: "./media/characters/acidrenamon/front.svg",
  28829. extra: 987 / 890,
  28830. bottom: 22.8 / 1009
  28831. }
  28832. },
  28833. back: {
  28834. height: math.unit(2, "meters"),
  28835. weight: math.unit(180, "lb"),
  28836. name: "Back",
  28837. image: {
  28838. source: "./media/characters/acidrenamon/back.svg",
  28839. extra: 983 / 891,
  28840. bottom: 8.4 / 992
  28841. }
  28842. },
  28843. head: {
  28844. height: math.unit(1.92, "feet"),
  28845. name: "Head",
  28846. image: {
  28847. source: "./media/characters/acidrenamon/head.svg"
  28848. }
  28849. },
  28850. rump: {
  28851. height: math.unit(1.72, "feet"),
  28852. name: "Rump",
  28853. image: {
  28854. source: "./media/characters/acidrenamon/rump.svg"
  28855. }
  28856. },
  28857. tail: {
  28858. height: math.unit(4.2, "feet"),
  28859. name: "Tail",
  28860. image: {
  28861. source: "./media/characters/acidrenamon/tail.svg"
  28862. }
  28863. },
  28864. },
  28865. [
  28866. {
  28867. name: "Normal",
  28868. height: math.unit(2, "meters"),
  28869. default: true
  28870. },
  28871. {
  28872. name: "Minimacro",
  28873. height: math.unit(7, "meters")
  28874. },
  28875. {
  28876. name: "Macro",
  28877. height: math.unit(200, "meters")
  28878. },
  28879. {
  28880. name: "Gigamacro",
  28881. height: math.unit(0.2, "earths")
  28882. },
  28883. ]
  28884. ))
  28885. characterMakers.push(() => makeCharacter(
  28886. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28887. {
  28888. front: {
  28889. height: math.unit(152, "feet"),
  28890. name: "Front",
  28891. image: {
  28892. source: "./media/characters/kenzie-lee/front.svg",
  28893. extra: 1869/1774,
  28894. bottom: 128/1997
  28895. }
  28896. },
  28897. side: {
  28898. height: math.unit(86, "feet"),
  28899. name: "Side",
  28900. image: {
  28901. source: "./media/characters/kenzie-lee/side.svg",
  28902. extra: 930/815,
  28903. bottom: 177/1107
  28904. }
  28905. },
  28906. paw: {
  28907. height: math.unit(15, "feet"),
  28908. name: "Paw",
  28909. image: {
  28910. source: "./media/characters/kenzie-lee/paw.svg"
  28911. }
  28912. },
  28913. },
  28914. [
  28915. {
  28916. name: "Kenzie Flea",
  28917. height: math.unit(2, "mm"),
  28918. default: true
  28919. },
  28920. {
  28921. name: "Micro",
  28922. height: math.unit(2, "inches")
  28923. },
  28924. {
  28925. name: "Normal",
  28926. height: math.unit(152, "feet")
  28927. },
  28928. {
  28929. name: "Megamacro",
  28930. height: math.unit(7, "miles")
  28931. },
  28932. {
  28933. name: "Gigamacro",
  28934. height: math.unit(8000, "miles")
  28935. },
  28936. ]
  28937. ))
  28938. characterMakers.push(() => makeCharacter(
  28939. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28940. {
  28941. front: {
  28942. height: math.unit(6, "feet"),
  28943. name: "Front",
  28944. image: {
  28945. source: "./media/characters/withers/front.svg",
  28946. extra: 1935/1760,
  28947. bottom: 72/2007
  28948. }
  28949. },
  28950. back: {
  28951. height: math.unit(6, "feet"),
  28952. name: "Back",
  28953. image: {
  28954. source: "./media/characters/withers/back.svg",
  28955. extra: 1944/1792,
  28956. bottom: 12/1956
  28957. }
  28958. },
  28959. dressed: {
  28960. height: math.unit(6, "feet"),
  28961. name: "Dressed",
  28962. image: {
  28963. source: "./media/characters/withers/dressed.svg",
  28964. extra: 1937/1765,
  28965. bottom: 73/2010
  28966. }
  28967. },
  28968. phase1: {
  28969. height: math.unit(1.1, "feet"),
  28970. name: "Phase 1",
  28971. image: {
  28972. source: "./media/characters/withers/phase-1.svg",
  28973. extra: 1885/1232,
  28974. bottom: 0/1885
  28975. }
  28976. },
  28977. phase2: {
  28978. height: math.unit(1.05, "feet"),
  28979. name: "Phase 2",
  28980. image: {
  28981. source: "./media/characters/withers/phase-2.svg",
  28982. extra: 1792/1090,
  28983. bottom: 0/1792
  28984. }
  28985. },
  28986. partyWipe: {
  28987. height: math.unit(1.1, "feet"),
  28988. name: "Party Wipe",
  28989. image: {
  28990. source: "./media/characters/withers/party-wipe.svg",
  28991. extra: 1864/1207,
  28992. bottom: 0/1864
  28993. }
  28994. },
  28995. },
  28996. [
  28997. {
  28998. name: "Macro",
  28999. height: math.unit(167, "feet"),
  29000. default: true
  29001. },
  29002. {
  29003. name: "Megamacro",
  29004. height: math.unit(15, "miles")
  29005. }
  29006. ]
  29007. ))
  29008. characterMakers.push(() => makeCharacter(
  29009. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29010. {
  29011. front: {
  29012. height: math.unit(6 + 7 / 12, "feet"),
  29013. weight: math.unit(250, "lb"),
  29014. name: "Front",
  29015. image: {
  29016. source: "./media/characters/nemoskii/front.svg",
  29017. extra: 2270 / 1734,
  29018. bottom: 86 / 2354
  29019. }
  29020. },
  29021. back: {
  29022. height: math.unit(6 + 7 / 12, "feet"),
  29023. weight: math.unit(250, "lb"),
  29024. name: "Back",
  29025. image: {
  29026. source: "./media/characters/nemoskii/back.svg",
  29027. extra: 1845 / 1788,
  29028. bottom: 10.5 / 1852
  29029. }
  29030. },
  29031. head: {
  29032. height: math.unit(1.31, "feet"),
  29033. name: "Head",
  29034. image: {
  29035. source: "./media/characters/nemoskii/head.svg"
  29036. }
  29037. },
  29038. },
  29039. [
  29040. {
  29041. name: "Micro",
  29042. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29043. },
  29044. {
  29045. name: "Normal",
  29046. height: math.unit(6 + 7 / 12, "feet"),
  29047. default: true
  29048. },
  29049. {
  29050. name: "Macro",
  29051. height: math.unit((6 + 7 / 12) * 150, "feet")
  29052. },
  29053. {
  29054. name: "Macro+",
  29055. height: math.unit((6 + 7 / 12) * 500, "feet")
  29056. },
  29057. {
  29058. name: "Megamacro",
  29059. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29060. },
  29061. ]
  29062. ))
  29063. characterMakers.push(() => makeCharacter(
  29064. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29065. {
  29066. front: {
  29067. height: math.unit(1, "mile"),
  29068. weight: math.unit(265261.9, "lb"),
  29069. name: "Front",
  29070. image: {
  29071. source: "./media/characters/shui/front.svg",
  29072. extra: 1633 / 1564,
  29073. bottom: 91.5 / 1726
  29074. }
  29075. },
  29076. },
  29077. [
  29078. {
  29079. name: "Macro",
  29080. height: math.unit(1, "mile"),
  29081. default: true
  29082. },
  29083. ]
  29084. ))
  29085. characterMakers.push(() => makeCharacter(
  29086. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29087. {
  29088. front: {
  29089. height: math.unit(12 + 6 / 12, "feet"),
  29090. weight: math.unit(1342, "lb"),
  29091. name: "Front",
  29092. image: {
  29093. source: "./media/characters/arokh-takakura/front.svg",
  29094. extra: 1089 / 1043,
  29095. bottom: 77.4 / 1176.7
  29096. }
  29097. },
  29098. back: {
  29099. height: math.unit(12 + 6 / 12, "feet"),
  29100. weight: math.unit(1342, "lb"),
  29101. name: "Back",
  29102. image: {
  29103. source: "./media/characters/arokh-takakura/back.svg",
  29104. extra: 1046 / 1019,
  29105. bottom: 102 / 1150
  29106. }
  29107. },
  29108. },
  29109. [
  29110. {
  29111. name: "Big",
  29112. height: math.unit(12 + 6 / 12, "feet"),
  29113. default: true
  29114. },
  29115. ]
  29116. ))
  29117. characterMakers.push(() => makeCharacter(
  29118. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29119. {
  29120. front: {
  29121. height: math.unit(5 + 6 / 12, "feet"),
  29122. weight: math.unit(150, "lb"),
  29123. name: "Front",
  29124. image: {
  29125. source: "./media/characters/theo/front.svg",
  29126. extra: 1184 / 1131,
  29127. bottom: 7.4 / 1191
  29128. }
  29129. },
  29130. },
  29131. [
  29132. {
  29133. name: "Micro",
  29134. height: math.unit(5, "inches")
  29135. },
  29136. {
  29137. name: "Normal",
  29138. height: math.unit(5 + 6 / 12, "feet"),
  29139. default: true
  29140. },
  29141. ]
  29142. ))
  29143. characterMakers.push(() => makeCharacter(
  29144. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29145. {
  29146. front: {
  29147. height: math.unit(5 + 9 / 12, "feet"),
  29148. weight: math.unit(130, "lb"),
  29149. name: "Front",
  29150. image: {
  29151. source: "./media/characters/cecelia-swift/front.svg",
  29152. extra: 502 / 484,
  29153. bottom: 23 / 523
  29154. }
  29155. },
  29156. back: {
  29157. height: math.unit(5 + 9 / 12, "feet"),
  29158. weight: math.unit(130, "lb"),
  29159. name: "Back",
  29160. image: {
  29161. source: "./media/characters/cecelia-swift/back.svg",
  29162. extra: 499 / 485,
  29163. bottom: 12 / 511
  29164. }
  29165. },
  29166. head: {
  29167. height: math.unit(0.90, "feet"),
  29168. name: "Head",
  29169. image: {
  29170. source: "./media/characters/cecelia-swift/head.svg"
  29171. }
  29172. },
  29173. rump: {
  29174. height: math.unit(1.75, "feet"),
  29175. name: "Rump",
  29176. image: {
  29177. source: "./media/characters/cecelia-swift/rump.svg"
  29178. }
  29179. },
  29180. },
  29181. [
  29182. {
  29183. name: "Normal",
  29184. height: math.unit(5 + 9 / 12, "feet"),
  29185. default: true
  29186. },
  29187. {
  29188. name: "Big",
  29189. height: math.unit(50, "feet")
  29190. },
  29191. {
  29192. name: "Macro",
  29193. height: math.unit(100, "feet")
  29194. },
  29195. {
  29196. name: "Macro+",
  29197. height: math.unit(500, "feet")
  29198. },
  29199. {
  29200. name: "Macro++",
  29201. height: math.unit(1000, "feet")
  29202. },
  29203. ]
  29204. ))
  29205. characterMakers.push(() => makeCharacter(
  29206. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29207. {
  29208. front: {
  29209. height: math.unit(6, "feet"),
  29210. weight: math.unit(150, "lb"),
  29211. name: "Front",
  29212. image: {
  29213. source: "./media/characters/kaunan/front.svg",
  29214. extra: 2890 / 2523,
  29215. bottom: 49 / 2939
  29216. }
  29217. },
  29218. },
  29219. [
  29220. {
  29221. name: "Macro",
  29222. height: math.unit(150, "feet"),
  29223. default: true
  29224. },
  29225. ]
  29226. ))
  29227. characterMakers.push(() => makeCharacter(
  29228. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29229. {
  29230. dressed: {
  29231. height: math.unit(175, "cm"),
  29232. weight: math.unit(60, "kg"),
  29233. name: "Dressed",
  29234. image: {
  29235. source: "./media/characters/fei/dressed.svg",
  29236. extra: 1402/1278,
  29237. bottom: 27/1429
  29238. }
  29239. },
  29240. nude: {
  29241. height: math.unit(175, "cm"),
  29242. weight: math.unit(60, "kg"),
  29243. name: "Nude",
  29244. image: {
  29245. source: "./media/characters/fei/nude.svg",
  29246. extra: 1402/1278,
  29247. bottom: 27/1429
  29248. }
  29249. },
  29250. heels: {
  29251. height: math.unit(0.466, "feet"),
  29252. name: "Heels",
  29253. image: {
  29254. source: "./media/characters/fei/heels.svg",
  29255. extra: 156/152,
  29256. bottom: 28/184
  29257. }
  29258. },
  29259. },
  29260. [
  29261. {
  29262. name: "Mortal",
  29263. height: math.unit(175, "cm")
  29264. },
  29265. {
  29266. name: "Normal",
  29267. height: math.unit(3500, "m")
  29268. },
  29269. {
  29270. name: "Stroll",
  29271. height: math.unit(18.4, "km"),
  29272. default: true
  29273. },
  29274. {
  29275. name: "Showoff",
  29276. height: math.unit(175, "km")
  29277. },
  29278. ]
  29279. ))
  29280. characterMakers.push(() => makeCharacter(
  29281. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29282. {
  29283. front: {
  29284. height: math.unit(7, "feet"),
  29285. weight: math.unit(1000, "kg"),
  29286. name: "Front",
  29287. image: {
  29288. source: "./media/characters/edrax/front.svg",
  29289. extra: 2838 / 2550,
  29290. bottom: 130 / 2968
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Small",
  29297. height: math.unit(7, "feet")
  29298. },
  29299. {
  29300. name: "Normal",
  29301. height: math.unit(1500, "meters")
  29302. },
  29303. {
  29304. name: "Mega",
  29305. height: math.unit(12000000, "km"),
  29306. default: true
  29307. },
  29308. {
  29309. name: "Megamacro",
  29310. height: math.unit(10600000, "lightyears")
  29311. },
  29312. {
  29313. name: "Hypermacro",
  29314. height: math.unit(256, "yottameters")
  29315. },
  29316. ]
  29317. ))
  29318. characterMakers.push(() => makeCharacter(
  29319. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29320. {
  29321. front: {
  29322. height: math.unit(10, "feet"),
  29323. weight: math.unit(750, "lb"),
  29324. name: "Front",
  29325. image: {
  29326. source: "./media/characters/clove/front.svg",
  29327. extra: 1918/1751,
  29328. bottom: 52/1970
  29329. }
  29330. },
  29331. back: {
  29332. height: math.unit(10, "feet"),
  29333. weight: math.unit(750, "lb"),
  29334. name: "Back",
  29335. image: {
  29336. source: "./media/characters/clove/back.svg",
  29337. extra: 1912/1747,
  29338. bottom: 50/1962
  29339. }
  29340. },
  29341. },
  29342. [
  29343. {
  29344. name: "Normal",
  29345. height: math.unit(10, "feet"),
  29346. default: true
  29347. },
  29348. ]
  29349. ))
  29350. characterMakers.push(() => makeCharacter(
  29351. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29352. {
  29353. front: {
  29354. height: math.unit(4, "feet"),
  29355. weight: math.unit(50, "lb"),
  29356. name: "Front",
  29357. image: {
  29358. source: "./media/characters/alex-rabbit/front.svg",
  29359. extra: 507 / 458,
  29360. bottom: 18.5 / 527
  29361. }
  29362. },
  29363. back: {
  29364. height: math.unit(4, "feet"),
  29365. weight: math.unit(50, "lb"),
  29366. name: "Back",
  29367. image: {
  29368. source: "./media/characters/alex-rabbit/back.svg",
  29369. extra: 502 / 460,
  29370. bottom: 18.9 / 521
  29371. }
  29372. },
  29373. },
  29374. [
  29375. {
  29376. name: "Normal",
  29377. height: math.unit(4, "feet"),
  29378. default: true
  29379. },
  29380. ]
  29381. ))
  29382. characterMakers.push(() => makeCharacter(
  29383. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29384. {
  29385. front: {
  29386. height: math.unit(1 + 3 / 12, "feet"),
  29387. weight: math.unit(80, "lb"),
  29388. name: "Front",
  29389. image: {
  29390. source: "./media/characters/zander-rose/front.svg",
  29391. extra: 916 / 797,
  29392. bottom: 17 / 933
  29393. }
  29394. },
  29395. back: {
  29396. height: math.unit(1 + 3 / 12, "feet"),
  29397. weight: math.unit(80, "lb"),
  29398. name: "Back",
  29399. image: {
  29400. source: "./media/characters/zander-rose/back.svg",
  29401. extra: 903 / 779,
  29402. bottom: 31 / 934
  29403. }
  29404. },
  29405. },
  29406. [
  29407. {
  29408. name: "Normal",
  29409. height: math.unit(1 + 3 / 12, "feet"),
  29410. default: true
  29411. },
  29412. ]
  29413. ))
  29414. characterMakers.push(() => makeCharacter(
  29415. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29416. {
  29417. anthro: {
  29418. height: math.unit(6, "feet"),
  29419. weight: math.unit(150, "lb"),
  29420. name: "Anthro",
  29421. image: {
  29422. source: "./media/characters/razz/anthro.svg",
  29423. extra: 1437 / 1343,
  29424. bottom: 48 / 1485
  29425. }
  29426. },
  29427. feral: {
  29428. height: math.unit(6, "feet"),
  29429. weight: math.unit(150, "lb"),
  29430. name: "Feral",
  29431. image: {
  29432. source: "./media/characters/razz/feral.svg",
  29433. extra: 2569 / 1385,
  29434. bottom: 95 / 2664
  29435. }
  29436. },
  29437. },
  29438. [
  29439. {
  29440. name: "Normal",
  29441. height: math.unit(6, "feet"),
  29442. default: true
  29443. },
  29444. ]
  29445. ))
  29446. characterMakers.push(() => makeCharacter(
  29447. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29448. {
  29449. front: {
  29450. height: math.unit(9 + 4 / 12, "feet"),
  29451. weight: math.unit(500, "lb"),
  29452. name: "Front",
  29453. image: {
  29454. source: "./media/characters/morrigan/front.svg",
  29455. extra: 2707 / 2579,
  29456. bottom: 156 / 2863
  29457. }
  29458. },
  29459. },
  29460. [
  29461. {
  29462. name: "Normal",
  29463. height: math.unit(9 + 4 / 12, "feet"),
  29464. default: true
  29465. },
  29466. ]
  29467. ))
  29468. characterMakers.push(() => makeCharacter(
  29469. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29470. {
  29471. front: {
  29472. height: math.unit(5, "stories"),
  29473. weight: math.unit(4000, "lb"),
  29474. name: "Front",
  29475. image: {
  29476. source: "./media/characters/jenene/front.svg",
  29477. extra: 1780 / 1710,
  29478. bottom: 57 / 1837
  29479. }
  29480. },
  29481. },
  29482. [
  29483. {
  29484. name: "Normal",
  29485. height: math.unit(5, "stories"),
  29486. default: true
  29487. },
  29488. ]
  29489. ))
  29490. characterMakers.push(() => makeCharacter(
  29491. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29492. {
  29493. taurSfw: {
  29494. height: math.unit(10, "meters"),
  29495. weight: math.unit(17500, "kg"),
  29496. name: "Taur",
  29497. image: {
  29498. source: "./media/characters/faey/taur-sfw.svg",
  29499. extra: 1200 / 968,
  29500. bottom: 41 / 1241
  29501. }
  29502. },
  29503. chestmaw: {
  29504. height: math.unit(2.01, "meters"),
  29505. name: "Chestmaw",
  29506. image: {
  29507. source: "./media/characters/faey/chestmaw.svg"
  29508. }
  29509. },
  29510. foot: {
  29511. height: math.unit(2.43, "meters"),
  29512. name: "Foot",
  29513. image: {
  29514. source: "./media/characters/faey/foot.svg"
  29515. }
  29516. },
  29517. jaws: {
  29518. height: math.unit(1.66, "meters"),
  29519. name: "Jaws",
  29520. image: {
  29521. source: "./media/characters/faey/jaws.svg"
  29522. }
  29523. },
  29524. tongues: {
  29525. height: math.unit(2.01, "meters"),
  29526. name: "Tongues",
  29527. image: {
  29528. source: "./media/characters/faey/tongues.svg"
  29529. }
  29530. },
  29531. },
  29532. [
  29533. {
  29534. name: "Small",
  29535. height: math.unit(10, "meters"),
  29536. default: true
  29537. },
  29538. {
  29539. name: "Big",
  29540. height: math.unit(500000, "km")
  29541. },
  29542. ]
  29543. ))
  29544. characterMakers.push(() => makeCharacter(
  29545. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29546. {
  29547. front: {
  29548. height: math.unit(7, "feet"),
  29549. weight: math.unit(275, "lb"),
  29550. name: "Front",
  29551. image: {
  29552. source: "./media/characters/roku/front.svg",
  29553. extra: 903 / 878,
  29554. bottom: 37 / 940
  29555. }
  29556. },
  29557. },
  29558. [
  29559. {
  29560. name: "Normal",
  29561. height: math.unit(7, "feet"),
  29562. default: true
  29563. },
  29564. {
  29565. name: "Macro",
  29566. height: math.unit(500, "feet")
  29567. },
  29568. {
  29569. name: "Megamacro",
  29570. height: math.unit(200, "miles")
  29571. },
  29572. ]
  29573. ))
  29574. characterMakers.push(() => makeCharacter(
  29575. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29576. {
  29577. front: {
  29578. height: math.unit(6 + 2 / 12, "feet"),
  29579. weight: math.unit(150, "lb"),
  29580. name: "Front",
  29581. image: {
  29582. source: "./media/characters/lira/front.svg",
  29583. extra: 1727 / 1605,
  29584. bottom: 26 / 1753
  29585. }
  29586. },
  29587. back: {
  29588. height: math.unit(6 + 2 / 12, "feet"),
  29589. weight: math.unit(150, "lb"),
  29590. name: "Back",
  29591. image: {
  29592. source: "./media/characters/lira/back.svg",
  29593. extra: 1713/1621,
  29594. bottom: 20/1733
  29595. }
  29596. },
  29597. hand: {
  29598. height: math.unit(0.75, "feet"),
  29599. name: "Hand",
  29600. image: {
  29601. source: "./media/characters/lira/hand.svg"
  29602. }
  29603. },
  29604. maw: {
  29605. height: math.unit(0.65, "feet"),
  29606. name: "Maw",
  29607. image: {
  29608. source: "./media/characters/lira/maw.svg"
  29609. }
  29610. },
  29611. pawDigi: {
  29612. height: math.unit(1.6, "feet"),
  29613. name: "Paw Digi",
  29614. image: {
  29615. source: "./media/characters/lira/paw-digi.svg"
  29616. }
  29617. },
  29618. pawPlanti: {
  29619. height: math.unit(1.4, "feet"),
  29620. name: "Paw Planti",
  29621. image: {
  29622. source: "./media/characters/lira/paw-planti.svg"
  29623. }
  29624. },
  29625. },
  29626. [
  29627. {
  29628. name: "Normal",
  29629. height: math.unit(6 + 2 / 12, "feet"),
  29630. default: true
  29631. },
  29632. {
  29633. name: "Macro",
  29634. height: math.unit(100, "feet")
  29635. },
  29636. {
  29637. name: "Macro²",
  29638. height: math.unit(1600, "feet")
  29639. },
  29640. {
  29641. name: "Planetary",
  29642. height: math.unit(20, "earths")
  29643. },
  29644. ]
  29645. ))
  29646. characterMakers.push(() => makeCharacter(
  29647. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29648. {
  29649. front: {
  29650. height: math.unit(6, "feet"),
  29651. weight: math.unit(150, "lb"),
  29652. name: "Front",
  29653. image: {
  29654. source: "./media/characters/hadjet/front.svg",
  29655. extra: 1480 / 1346,
  29656. bottom: 26 / 1506
  29657. }
  29658. },
  29659. frontNsfw: {
  29660. height: math.unit(6, "feet"),
  29661. weight: math.unit(150, "lb"),
  29662. name: "Front (NSFW)",
  29663. image: {
  29664. source: "./media/characters/hadjet/front-nsfw.svg",
  29665. extra: 1440 / 1358,
  29666. bottom: 52 / 1492
  29667. }
  29668. },
  29669. },
  29670. [
  29671. {
  29672. name: "Macro",
  29673. height: math.unit(10, "stories"),
  29674. default: true
  29675. },
  29676. {
  29677. name: "Megamacro",
  29678. height: math.unit(1.5, "miles")
  29679. },
  29680. {
  29681. name: "Megamacro+",
  29682. height: math.unit(5, "miles")
  29683. },
  29684. ]
  29685. ))
  29686. characterMakers.push(() => makeCharacter(
  29687. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29688. {
  29689. side: {
  29690. height: math.unit(106, "feet"),
  29691. weight: math.unit(500, "tonnes"),
  29692. name: "Side",
  29693. image: {
  29694. source: "./media/characters/kodran/side.svg",
  29695. extra: 553 / 480,
  29696. bottom: 33 / 586
  29697. }
  29698. },
  29699. front: {
  29700. height: math.unit(132, "feet"),
  29701. weight: math.unit(500, "tonnes"),
  29702. name: "Front",
  29703. image: {
  29704. source: "./media/characters/kodran/front.svg",
  29705. extra: 667 / 643,
  29706. bottom: 42 / 709
  29707. }
  29708. },
  29709. flying: {
  29710. height: math.unit(350, "feet"),
  29711. weight: math.unit(500, "tonnes"),
  29712. name: "Flying",
  29713. image: {
  29714. source: "./media/characters/kodran/flying.svg"
  29715. }
  29716. },
  29717. foot: {
  29718. height: math.unit(33, "feet"),
  29719. name: "Foot",
  29720. image: {
  29721. source: "./media/characters/kodran/foot.svg"
  29722. }
  29723. },
  29724. footFront: {
  29725. height: math.unit(19, "feet"),
  29726. name: "Foot (Front)",
  29727. image: {
  29728. source: "./media/characters/kodran/foot-front.svg",
  29729. extra: 261 / 261,
  29730. bottom: 91 / 352
  29731. }
  29732. },
  29733. headFront: {
  29734. height: math.unit(53, "feet"),
  29735. name: "Head (Front)",
  29736. image: {
  29737. source: "./media/characters/kodran/head-front.svg"
  29738. }
  29739. },
  29740. headSide: {
  29741. height: math.unit(65, "feet"),
  29742. name: "Head (Side)",
  29743. image: {
  29744. source: "./media/characters/kodran/head-side.svg"
  29745. }
  29746. },
  29747. throat: {
  29748. height: math.unit(79, "feet"),
  29749. name: "Throat",
  29750. image: {
  29751. source: "./media/characters/kodran/throat.svg"
  29752. }
  29753. },
  29754. },
  29755. [
  29756. {
  29757. name: "Large",
  29758. height: math.unit(106, "feet"),
  29759. default: true
  29760. },
  29761. ]
  29762. ))
  29763. characterMakers.push(() => makeCharacter(
  29764. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29765. {
  29766. side: {
  29767. height: math.unit(11, "feet"),
  29768. weight: math.unit(150, "lb"),
  29769. name: "Side",
  29770. image: {
  29771. source: "./media/characters/pyxaron/side.svg",
  29772. extra: 305 / 195,
  29773. bottom: 17 / 322
  29774. }
  29775. },
  29776. },
  29777. [
  29778. {
  29779. name: "Normal",
  29780. height: math.unit(11, "feet"),
  29781. default: true
  29782. },
  29783. ]
  29784. ))
  29785. characterMakers.push(() => makeCharacter(
  29786. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29787. {
  29788. front: {
  29789. height: math.unit(6, "feet"),
  29790. weight: math.unit(150, "lb"),
  29791. name: "Front",
  29792. image: {
  29793. source: "./media/characters/meep/front.svg",
  29794. extra: 88 / 80,
  29795. bottom: 6 / 94
  29796. }
  29797. },
  29798. },
  29799. [
  29800. {
  29801. name: "Fun Sized",
  29802. height: math.unit(2, "inches"),
  29803. default: true
  29804. },
  29805. {
  29806. name: "Friend Sized",
  29807. height: math.unit(8, "inches")
  29808. },
  29809. ]
  29810. ))
  29811. characterMakers.push(() => makeCharacter(
  29812. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29813. {
  29814. front: {
  29815. height: math.unit(15, "feet"),
  29816. weight: math.unit(2500, "lb"),
  29817. name: "Front",
  29818. image: {
  29819. source: "./media/characters/holly-rabbit/front.svg",
  29820. extra: 1433 / 1233,
  29821. bottom: 125 / 1558
  29822. }
  29823. },
  29824. dick: {
  29825. height: math.unit(4.6, "feet"),
  29826. name: "Dick",
  29827. image: {
  29828. source: "./media/characters/holly-rabbit/dick.svg"
  29829. }
  29830. },
  29831. },
  29832. [
  29833. {
  29834. name: "Normal",
  29835. height: math.unit(15, "feet"),
  29836. default: true
  29837. },
  29838. {
  29839. name: "Macro",
  29840. height: math.unit(250, "feet")
  29841. },
  29842. {
  29843. name: "Macro+",
  29844. height: math.unit(2500, "feet")
  29845. },
  29846. ]
  29847. ))
  29848. characterMakers.push(() => makeCharacter(
  29849. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29850. {
  29851. front: {
  29852. height: math.unit(3.02, "meters"),
  29853. weight: math.unit(500, "kg"),
  29854. name: "Front",
  29855. image: {
  29856. source: "./media/characters/drena/front.svg",
  29857. extra: 282 / 243,
  29858. bottom: 8 / 290
  29859. }
  29860. },
  29861. side: {
  29862. height: math.unit(3.02, "meters"),
  29863. weight: math.unit(500, "kg"),
  29864. name: "Side",
  29865. image: {
  29866. source: "./media/characters/drena/side.svg",
  29867. extra: 280 / 245,
  29868. bottom: 10 / 290
  29869. }
  29870. },
  29871. back: {
  29872. height: math.unit(3.02, "meters"),
  29873. weight: math.unit(500, "kg"),
  29874. name: "Back",
  29875. image: {
  29876. source: "./media/characters/drena/back.svg",
  29877. extra: 278 / 243,
  29878. bottom: 2 / 280
  29879. }
  29880. },
  29881. foot: {
  29882. height: math.unit(0.75, "meters"),
  29883. name: "Foot",
  29884. image: {
  29885. source: "./media/characters/drena/foot.svg"
  29886. }
  29887. },
  29888. maw: {
  29889. height: math.unit(0.82, "meters"),
  29890. name: "Maw",
  29891. image: {
  29892. source: "./media/characters/drena/maw.svg"
  29893. }
  29894. },
  29895. eating: {
  29896. height: math.unit(0.75, "meters"),
  29897. name: "Eating",
  29898. image: {
  29899. source: "./media/characters/drena/eating.svg"
  29900. }
  29901. },
  29902. rump: {
  29903. height: math.unit(0.93, "meters"),
  29904. name: "Rump",
  29905. image: {
  29906. source: "./media/characters/drena/rump.svg"
  29907. }
  29908. },
  29909. },
  29910. [
  29911. {
  29912. name: "Normal",
  29913. height: math.unit(3.02, "meters"),
  29914. default: true
  29915. },
  29916. ]
  29917. ))
  29918. characterMakers.push(() => makeCharacter(
  29919. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29920. {
  29921. front: {
  29922. height: math.unit(6 + 4 / 12, "feet"),
  29923. weight: math.unit(250, "lb"),
  29924. name: "Front",
  29925. image: {
  29926. source: "./media/characters/remmyzilla/front.svg",
  29927. extra: 4033 / 3588,
  29928. bottom: 123 / 4156
  29929. }
  29930. },
  29931. back: {
  29932. height: math.unit(6 + 4 / 12, "feet"),
  29933. weight: math.unit(250, "lb"),
  29934. name: "Back",
  29935. image: {
  29936. source: "./media/characters/remmyzilla/back.svg",
  29937. extra: 2687 / 2555,
  29938. bottom: 48 / 2735
  29939. }
  29940. },
  29941. paw: {
  29942. height: math.unit(1.73, "feet"),
  29943. name: "Paw",
  29944. image: {
  29945. source: "./media/characters/remmyzilla/paw.svg"
  29946. },
  29947. extraAttributes: {
  29948. "toeSize": {
  29949. name: "Toe Size",
  29950. power: 2,
  29951. type: "area",
  29952. base: math.unit(0.0035, "m^2")
  29953. },
  29954. "padSize": {
  29955. name: "Pad Size",
  29956. power: 2,
  29957. type: "area",
  29958. base: math.unit(0.015, "m^2")
  29959. },
  29960. "pawsize": {
  29961. name: "Paw Size",
  29962. power: 2,
  29963. type: "area",
  29964. base: math.unit(0.072, "m^2")
  29965. },
  29966. }
  29967. },
  29968. maw: {
  29969. height: math.unit(1.73, "feet"),
  29970. name: "Maw",
  29971. image: {
  29972. source: "./media/characters/remmyzilla/maw.svg"
  29973. }
  29974. },
  29975. },
  29976. [
  29977. {
  29978. name: "Normal",
  29979. height: math.unit(6 + 4 / 12, "feet")
  29980. },
  29981. {
  29982. name: "Minimacro",
  29983. height: math.unit(12 + 8 / 12, "feet")
  29984. },
  29985. {
  29986. name: "Normal",
  29987. height: math.unit(640, "feet"),
  29988. default: true
  29989. },
  29990. {
  29991. name: "Megamacro",
  29992. height: math.unit(6400, "feet")
  29993. },
  29994. {
  29995. name: "Gigamacro",
  29996. height: math.unit(64000, "miles")
  29997. },
  29998. ]
  29999. ))
  30000. characterMakers.push(() => makeCharacter(
  30001. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30002. {
  30003. front: {
  30004. height: math.unit(2.5, "meters"),
  30005. weight: math.unit(300, "lb"),
  30006. name: "Front",
  30007. image: {
  30008. source: "./media/characters/lawrence/front.svg",
  30009. extra: 357 / 335,
  30010. bottom: 30 / 387
  30011. }
  30012. },
  30013. back: {
  30014. height: math.unit(2.5, "meters"),
  30015. weight: math.unit(300, "lb"),
  30016. name: "Back",
  30017. image: {
  30018. source: "./media/characters/lawrence/back.svg",
  30019. extra: 357 / 338,
  30020. bottom: 16 / 373
  30021. }
  30022. },
  30023. head: {
  30024. height: math.unit(0.9, "meter"),
  30025. name: "Head",
  30026. image: {
  30027. source: "./media/characters/lawrence/head.svg"
  30028. }
  30029. },
  30030. maw: {
  30031. height: math.unit(0.7, "meter"),
  30032. name: "Maw",
  30033. image: {
  30034. source: "./media/characters/lawrence/maw.svg"
  30035. }
  30036. },
  30037. footBottom: {
  30038. height: math.unit(0.5, "meter"),
  30039. name: "Foot (Bottom)",
  30040. image: {
  30041. source: "./media/characters/lawrence/foot-bottom.svg"
  30042. }
  30043. },
  30044. footTop: {
  30045. height: math.unit(0.5, "meter"),
  30046. name: "Foot (Top)",
  30047. image: {
  30048. source: "./media/characters/lawrence/foot-top.svg"
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Normal",
  30055. height: math.unit(2.5, "meters"),
  30056. default: true
  30057. },
  30058. {
  30059. name: "Macro",
  30060. height: math.unit(95, "meters")
  30061. },
  30062. {
  30063. name: "Megamacro",
  30064. height: math.unit(150, "km")
  30065. },
  30066. ]
  30067. ))
  30068. characterMakers.push(() => makeCharacter(
  30069. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30070. {
  30071. front: {
  30072. height: math.unit(4.2, "meters"),
  30073. name: "Front",
  30074. image: {
  30075. source: "./media/characters/sydney/front.svg",
  30076. extra: 1323 / 1277,
  30077. bottom: 111 / 1434
  30078. }
  30079. },
  30080. },
  30081. [
  30082. {
  30083. name: "Normal",
  30084. height: math.unit(4.2, "meters"),
  30085. default: true
  30086. },
  30087. ]
  30088. ))
  30089. characterMakers.push(() => makeCharacter(
  30090. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30091. {
  30092. back: {
  30093. height: math.unit(201, "feet"),
  30094. name: "Back",
  30095. image: {
  30096. source: "./media/characters/jessica/back.svg",
  30097. extra: 273 / 259,
  30098. bottom: 7 / 280
  30099. }
  30100. },
  30101. },
  30102. [
  30103. {
  30104. name: "Normal",
  30105. height: math.unit(201, "feet"),
  30106. default: true
  30107. },
  30108. {
  30109. name: "Megamacro",
  30110. height: math.unit(8, "miles")
  30111. },
  30112. ]
  30113. ))
  30114. characterMakers.push(() => makeCharacter(
  30115. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30116. {
  30117. side: {
  30118. height: math.unit(5.6, "m"),
  30119. weight: math.unit(8000, "kg"),
  30120. name: "Side",
  30121. image: {
  30122. source: "./media/characters/victoria/side.svg",
  30123. extra: 1542/1229,
  30124. bottom: 124/1666
  30125. }
  30126. },
  30127. maw: {
  30128. height: math.unit(7.14, "feet"),
  30129. name: "Maw",
  30130. image: {
  30131. source: "./media/characters/victoria/maw.svg"
  30132. }
  30133. },
  30134. },
  30135. [
  30136. {
  30137. name: "Normal",
  30138. height: math.unit(5.6, "m"),
  30139. default: true
  30140. },
  30141. ]
  30142. ))
  30143. characterMakers.push(() => makeCharacter(
  30144. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30145. {
  30146. front: {
  30147. height: math.unit(5 + 6 / 12, "feet"),
  30148. name: "Front",
  30149. image: {
  30150. source: "./media/characters/cat/front.svg",
  30151. extra: 1449/1295,
  30152. bottom: 34/1483
  30153. },
  30154. form: "cat",
  30155. default: true
  30156. },
  30157. back: {
  30158. height: math.unit(5 + 6 / 12, "feet"),
  30159. name: "Back",
  30160. image: {
  30161. source: "./media/characters/cat/back.svg",
  30162. extra: 1466/1301,
  30163. bottom: 19/1485
  30164. },
  30165. form: "cat"
  30166. },
  30167. taur: {
  30168. height: math.unit(7, "feet"),
  30169. name: "Taur",
  30170. image: {
  30171. source: "./media/characters/cat/taur.svg",
  30172. extra: 1389/1233,
  30173. bottom: 83/1472
  30174. },
  30175. form: "taur",
  30176. default: true
  30177. },
  30178. lucarioFront: {
  30179. height: math.unit(4, "feet"),
  30180. name: "Lucario (Front)",
  30181. image: {
  30182. source: "./media/characters/cat/lucario-front.svg",
  30183. extra: 1149/1019,
  30184. bottom: 84/1233
  30185. },
  30186. form: "lucario",
  30187. default: true
  30188. },
  30189. lucarioBack: {
  30190. height: math.unit(4, "feet"),
  30191. name: "Lucario (Back)",
  30192. image: {
  30193. source: "./media/characters/cat/lucario-back.svg",
  30194. extra: 1190/1059,
  30195. bottom: 33/1223
  30196. },
  30197. form: "lucario"
  30198. },
  30199. megaLucario: {
  30200. height: math.unit(4, "feet"),
  30201. name: "Mega Lucario",
  30202. image: {
  30203. source: "./media/characters/cat/mega-lucario.svg",
  30204. extra: 1515 / 1319,
  30205. bottom: 63 / 1578
  30206. },
  30207. form: "lucario"
  30208. },
  30209. nickit: {
  30210. height: math.unit(2, "feet"),
  30211. name: "Nickit",
  30212. image: {
  30213. source: "./media/characters/cat/nickit.svg",
  30214. extra: 1980 / 1585,
  30215. bottom: 102 / 2082
  30216. },
  30217. form: "nickit",
  30218. default: true
  30219. },
  30220. lopunnyFront: {
  30221. height: math.unit(5, "feet"),
  30222. name: "Lopunny (Front)",
  30223. image: {
  30224. source: "./media/characters/cat/lopunny-front.svg",
  30225. extra: 1782 / 1469,
  30226. bottom: 38 / 1820
  30227. },
  30228. form: "lopunny",
  30229. default: true
  30230. },
  30231. lopunnyBack: {
  30232. height: math.unit(5, "feet"),
  30233. name: "Lopunny (Back)",
  30234. image: {
  30235. source: "./media/characters/cat/lopunny-back.svg",
  30236. extra: 1660 / 1490,
  30237. bottom: 25 / 1685
  30238. },
  30239. form: "lopunny"
  30240. },
  30241. },
  30242. [
  30243. {
  30244. name: "Really small",
  30245. height: math.unit(1, "nm")
  30246. },
  30247. {
  30248. name: "Micro",
  30249. height: math.unit(5, "inches")
  30250. },
  30251. {
  30252. name: "Normal",
  30253. height: math.unit(5 + 6 / 12, "feet"),
  30254. default: true
  30255. },
  30256. {
  30257. name: "Macro",
  30258. height: math.unit(50, "feet")
  30259. },
  30260. {
  30261. name: "Macro+",
  30262. height: math.unit(150, "feet")
  30263. },
  30264. {
  30265. name: "Megamacro",
  30266. height: math.unit(100, "miles")
  30267. },
  30268. ]
  30269. ))
  30270. characterMakers.push(() => makeCharacter(
  30271. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30272. {
  30273. front: {
  30274. height: math.unit(63.4, "meters"),
  30275. weight: math.unit(3.28349e+6, "kilograms"),
  30276. name: "Front",
  30277. image: {
  30278. source: "./media/characters/kirina-violet/front.svg",
  30279. extra: 2812 / 2725,
  30280. bottom: 0 / 2812
  30281. }
  30282. },
  30283. back: {
  30284. height: math.unit(63.4, "meters"),
  30285. weight: math.unit(3.28349e+6, "kilograms"),
  30286. name: "Back",
  30287. image: {
  30288. source: "./media/characters/kirina-violet/back.svg",
  30289. extra: 2812 / 2725,
  30290. bottom: 0 / 2812
  30291. }
  30292. },
  30293. mouth: {
  30294. height: math.unit(4.35, "meters"),
  30295. name: "Mouth",
  30296. image: {
  30297. source: "./media/characters/kirina-violet/mouth.svg"
  30298. }
  30299. },
  30300. paw: {
  30301. height: math.unit(5.6, "meters"),
  30302. name: "Paw",
  30303. image: {
  30304. source: "./media/characters/kirina-violet/paw.svg"
  30305. }
  30306. },
  30307. tail: {
  30308. height: math.unit(18, "meters"),
  30309. name: "Tail",
  30310. image: {
  30311. source: "./media/characters/kirina-violet/tail.svg"
  30312. }
  30313. },
  30314. },
  30315. [
  30316. {
  30317. name: "Macro",
  30318. height: math.unit(63.4, "meters"),
  30319. default: true
  30320. },
  30321. ]
  30322. ))
  30323. characterMakers.push(() => makeCharacter(
  30324. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30325. {
  30326. front: {
  30327. height: math.unit(75, "feet"),
  30328. name: "Front",
  30329. image: {
  30330. source: "./media/characters/cat-gigachu/front.svg",
  30331. extra: 1239/1027,
  30332. bottom: 32/1271
  30333. }
  30334. },
  30335. back: {
  30336. height: math.unit(75, "feet"),
  30337. name: "Back",
  30338. image: {
  30339. source: "./media/characters/cat-gigachu/back.svg",
  30340. extra: 1229/1030,
  30341. bottom: 9/1238
  30342. }
  30343. },
  30344. },
  30345. [
  30346. {
  30347. name: "Dynamax",
  30348. height: math.unit(75, "feet"),
  30349. default: true
  30350. },
  30351. ]
  30352. ))
  30353. characterMakers.push(() => makeCharacter(
  30354. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30355. {
  30356. front: {
  30357. height: math.unit(6, "feet"),
  30358. weight: math.unit(150, "lb"),
  30359. name: "Front",
  30360. image: {
  30361. source: "./media/characters/sfaiyan/front.svg",
  30362. extra: 999 / 978,
  30363. bottom: 5 / 1004
  30364. }
  30365. },
  30366. },
  30367. [
  30368. {
  30369. name: "Normal",
  30370. height: math.unit(1.82, "meters")
  30371. },
  30372. {
  30373. name: "Giant",
  30374. height: math.unit(2.27, "km"),
  30375. default: true
  30376. },
  30377. ]
  30378. ))
  30379. characterMakers.push(() => makeCharacter(
  30380. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30381. {
  30382. front: {
  30383. height: math.unit(179, "cm"),
  30384. weight: math.unit(100, "kg"),
  30385. name: "Front",
  30386. image: {
  30387. source: "./media/characters/raunehkeli/front.svg",
  30388. extra: 1934 / 1926,
  30389. bottom: 0 / 1934
  30390. }
  30391. },
  30392. },
  30393. [
  30394. {
  30395. name: "Normal",
  30396. height: math.unit(179, "cm")
  30397. },
  30398. {
  30399. name: "Maximum",
  30400. height: math.unit(575, "meters"),
  30401. default: true
  30402. },
  30403. ]
  30404. ))
  30405. characterMakers.push(() => makeCharacter(
  30406. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30407. {
  30408. front: {
  30409. height: math.unit(6, "feet"),
  30410. weight: math.unit(150, "lb"),
  30411. name: "Front",
  30412. image: {
  30413. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30414. extra: 2625 / 2518,
  30415. bottom: 60 / 2685
  30416. }
  30417. },
  30418. },
  30419. [
  30420. {
  30421. name: "Normal",
  30422. height: math.unit(6 + 2 / 12, "feet")
  30423. },
  30424. {
  30425. name: "Macro",
  30426. height: math.unit(1180, "feet"),
  30427. default: true
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30433. {
  30434. front: {
  30435. height: math.unit(5 + 6 / 12, "feet"),
  30436. weight: math.unit(108, "lb"),
  30437. name: "Front",
  30438. image: {
  30439. source: "./media/characters/lilith-zott/front.svg",
  30440. extra: 2510 / 2238,
  30441. bottom: 100 / 2610
  30442. }
  30443. },
  30444. frontDressed: {
  30445. height: math.unit(5 + 6 / 12, "feet"),
  30446. weight: math.unit(108, "lb"),
  30447. name: "Front (Dressed)",
  30448. image: {
  30449. source: "./media/characters/lilith-zott/front-dressed.svg",
  30450. extra: 2510 / 2238,
  30451. bottom: 100 / 2610
  30452. }
  30453. },
  30454. },
  30455. [
  30456. {
  30457. name: "Normal",
  30458. height: math.unit(5 + 6 / 12, "feet")
  30459. },
  30460. {
  30461. name: "Macro",
  30462. height: math.unit(1030, "feet"),
  30463. default: true
  30464. },
  30465. ]
  30466. ))
  30467. characterMakers.push(() => makeCharacter(
  30468. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30469. {
  30470. front: {
  30471. height: math.unit(6, "feet"),
  30472. weight: math.unit(150, "lb"),
  30473. name: "Front",
  30474. image: {
  30475. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30476. extra: 2567 / 2435,
  30477. bottom: 39 / 2606
  30478. }
  30479. },
  30480. frontSuper: {
  30481. height: math.unit(6, "feet"),
  30482. name: "Front (Super)",
  30483. image: {
  30484. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30485. extra: 2567 / 2435,
  30486. bottom: 39 / 2606
  30487. }
  30488. },
  30489. },
  30490. [
  30491. {
  30492. name: "Normal",
  30493. height: math.unit(5 + 10 / 12, "feet")
  30494. },
  30495. {
  30496. name: "Macro",
  30497. height: math.unit(1100, "feet"),
  30498. default: true
  30499. },
  30500. ]
  30501. ))
  30502. characterMakers.push(() => makeCharacter(
  30503. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30504. {
  30505. front: {
  30506. height: math.unit(100, "miles"),
  30507. name: "Front",
  30508. image: {
  30509. source: "./media/characters/sona/front.svg",
  30510. extra: 2433 / 2201,
  30511. bottom: 53 / 2486
  30512. }
  30513. },
  30514. foot: {
  30515. height: math.unit(16.1, "miles"),
  30516. name: "Foot",
  30517. image: {
  30518. source: "./media/characters/sona/foot.svg"
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Macro",
  30525. height: math.unit(100, "miles"),
  30526. default: true
  30527. },
  30528. ]
  30529. ))
  30530. characterMakers.push(() => makeCharacter(
  30531. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30532. {
  30533. front: {
  30534. height: math.unit(6, "feet"),
  30535. weight: math.unit(150, "lb"),
  30536. name: "Front",
  30537. image: {
  30538. source: "./media/characters/bailey/front.svg",
  30539. extra: 1778 / 1724,
  30540. bottom: 30 / 1808
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Micro",
  30547. height: math.unit(4, "inches")
  30548. },
  30549. {
  30550. name: "Normal",
  30551. height: math.unit(5 + 5 / 12, "feet"),
  30552. default: true
  30553. },
  30554. {
  30555. name: "Macro",
  30556. height: math.unit(250, "feet")
  30557. },
  30558. {
  30559. name: "Megamacro",
  30560. height: math.unit(100, "miles")
  30561. },
  30562. ]
  30563. ))
  30564. characterMakers.push(() => makeCharacter(
  30565. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30566. {
  30567. front: {
  30568. height: math.unit(5 + 2 / 12, "feet"),
  30569. weight: math.unit(120, "lb"),
  30570. name: "Front",
  30571. image: {
  30572. source: "./media/characters/snaps/front.svg",
  30573. extra: 2370 / 2177,
  30574. bottom: 48 / 2418
  30575. }
  30576. },
  30577. back: {
  30578. height: math.unit(5 + 2 / 12, "feet"),
  30579. weight: math.unit(120, "lb"),
  30580. name: "Back",
  30581. image: {
  30582. source: "./media/characters/snaps/back.svg",
  30583. extra: 2408 / 2258,
  30584. bottom: 15 / 2423
  30585. }
  30586. },
  30587. },
  30588. [
  30589. {
  30590. name: "Micro",
  30591. height: math.unit(9, "inches")
  30592. },
  30593. {
  30594. name: "Normal",
  30595. height: math.unit(5 + 2 / 12, "feet"),
  30596. default: true
  30597. },
  30598. {
  30599. name: "Mini Macro",
  30600. height: math.unit(10, "feet")
  30601. },
  30602. ]
  30603. ))
  30604. characterMakers.push(() => makeCharacter(
  30605. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30606. {
  30607. front: {
  30608. height: math.unit(1.8, "meters"),
  30609. weight: math.unit(85, "kg"),
  30610. name: "Front",
  30611. image: {
  30612. source: "./media/characters/azteck/front.svg",
  30613. extra: 2815 / 2625,
  30614. bottom: 89 / 2904
  30615. }
  30616. },
  30617. back: {
  30618. height: math.unit(1.8, "meters"),
  30619. weight: math.unit(85, "kg"),
  30620. name: "Back",
  30621. image: {
  30622. source: "./media/characters/azteck/back.svg",
  30623. extra: 2856 / 2648,
  30624. bottom: 85 / 2941
  30625. }
  30626. },
  30627. frontDressed: {
  30628. height: math.unit(1.8, "meters"),
  30629. weight: math.unit(85, "kg"),
  30630. name: "Front (Dressed)",
  30631. image: {
  30632. source: "./media/characters/azteck/front-dressed.svg",
  30633. extra: 2147 / 2003,
  30634. bottom: 68 / 2215
  30635. }
  30636. },
  30637. head: {
  30638. height: math.unit(0.47, "meters"),
  30639. weight: math.unit(85, "kg"),
  30640. name: "Head",
  30641. image: {
  30642. source: "./media/characters/azteck/head.svg"
  30643. }
  30644. },
  30645. },
  30646. [
  30647. {
  30648. name: "Bite sized",
  30649. height: math.unit(16, "cm")
  30650. },
  30651. {
  30652. name: "Normal",
  30653. height: math.unit(1.8, "meters"),
  30654. default: true
  30655. },
  30656. ]
  30657. ))
  30658. characterMakers.push(() => makeCharacter(
  30659. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30660. {
  30661. front: {
  30662. height: math.unit(6, "feet"),
  30663. weight: math.unit(150, "lb"),
  30664. name: "Front",
  30665. image: {
  30666. source: "./media/characters/pidge/front.svg",
  30667. extra: 1936/1820,
  30668. bottom: 0/1936
  30669. }
  30670. },
  30671. back: {
  30672. height: math.unit(6, "feet"),
  30673. weight: math.unit(150, "lb"),
  30674. name: "Back",
  30675. image: {
  30676. source: "./media/characters/pidge/back.svg",
  30677. extra: 1938/1843,
  30678. bottom: 0/1938
  30679. }
  30680. },
  30681. casual: {
  30682. height: math.unit(6, "feet"),
  30683. weight: math.unit(150, "lb"),
  30684. name: "Casual",
  30685. image: {
  30686. source: "./media/characters/pidge/casual.svg",
  30687. extra: 1936/1820,
  30688. bottom: 0/1936
  30689. }
  30690. },
  30691. tech: {
  30692. height: math.unit(6, "feet"),
  30693. weight: math.unit(150, "lb"),
  30694. name: "Tech",
  30695. image: {
  30696. source: "./media/characters/pidge/tech.svg",
  30697. extra: 1802/1682,
  30698. bottom: 0/1802
  30699. }
  30700. },
  30701. head: {
  30702. height: math.unit(1.61, "feet"),
  30703. name: "Head",
  30704. image: {
  30705. source: "./media/characters/pidge/head.svg"
  30706. }
  30707. },
  30708. collar: {
  30709. height: math.unit(0.82, "feet"),
  30710. name: "Collar",
  30711. image: {
  30712. source: "./media/characters/pidge/collar.svg"
  30713. }
  30714. },
  30715. },
  30716. [
  30717. {
  30718. name: "Macro",
  30719. height: math.unit(2, "mile"),
  30720. default: true
  30721. },
  30722. {
  30723. name: "PUPPY",
  30724. height: math.unit(20, "miles")
  30725. },
  30726. ]
  30727. ))
  30728. characterMakers.push(() => makeCharacter(
  30729. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30730. {
  30731. front: {
  30732. height: math.unit(6, "feet"),
  30733. weight: math.unit(150, "lb"),
  30734. name: "Front",
  30735. image: {
  30736. source: "./media/characters/en/front.svg",
  30737. extra: 1697 / 1563,
  30738. bottom: 103 / 1800
  30739. }
  30740. },
  30741. back: {
  30742. height: math.unit(6, "feet"),
  30743. weight: math.unit(150, "lb"),
  30744. name: "Back",
  30745. image: {
  30746. source: "./media/characters/en/back.svg",
  30747. extra: 1700 / 1570,
  30748. bottom: 51 / 1751
  30749. }
  30750. },
  30751. frontDressed: {
  30752. height: math.unit(6, "feet"),
  30753. weight: math.unit(150, "lb"),
  30754. name: "Front (Dressed)",
  30755. image: {
  30756. source: "./media/characters/en/front-dressed.svg",
  30757. extra: 1697 / 1563,
  30758. bottom: 103 / 1800
  30759. }
  30760. },
  30761. backDressed: {
  30762. height: math.unit(6, "feet"),
  30763. weight: math.unit(150, "lb"),
  30764. name: "Back (Dressed)",
  30765. image: {
  30766. source: "./media/characters/en/back-dressed.svg",
  30767. extra: 1700 / 1570,
  30768. bottom: 51 / 1751
  30769. }
  30770. },
  30771. },
  30772. [
  30773. {
  30774. name: "Macro",
  30775. height: math.unit(210, "feet"),
  30776. default: true
  30777. },
  30778. ]
  30779. ))
  30780. characterMakers.push(() => makeCharacter(
  30781. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30782. {
  30783. front: {
  30784. height: math.unit(6, "feet"),
  30785. weight: math.unit(150, "lb"),
  30786. name: "Front",
  30787. image: {
  30788. source: "./media/characters/haze-orris/front.svg",
  30789. extra: 3975 / 3525,
  30790. bottom: 137 / 4112
  30791. }
  30792. },
  30793. },
  30794. [
  30795. {
  30796. name: "Micro",
  30797. height: math.unit(150, "mm"),
  30798. default: true
  30799. },
  30800. ]
  30801. ))
  30802. characterMakers.push(() => makeCharacter(
  30803. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30804. {
  30805. front: {
  30806. height: math.unit(6, "feet"),
  30807. weight: math.unit(150, "lb"),
  30808. name: "Front",
  30809. image: {
  30810. source: "./media/characters/casselene-yaro/front.svg",
  30811. extra: 4721 / 4541,
  30812. bottom: 82 / 4803
  30813. }
  30814. },
  30815. back: {
  30816. height: math.unit(6, "feet"),
  30817. weight: math.unit(150, "lb"),
  30818. name: "Back",
  30819. image: {
  30820. source: "./media/characters/casselene-yaro/back.svg",
  30821. extra: 4569 / 4377,
  30822. bottom: 69 / 4638
  30823. }
  30824. },
  30825. dressed: {
  30826. height: math.unit(6, "feet"),
  30827. weight: math.unit(150, "lb"),
  30828. name: "Dressed",
  30829. image: {
  30830. source: "./media/characters/casselene-yaro/dressed.svg",
  30831. extra: 4721 / 4541,
  30832. bottom: 82 / 4803
  30833. }
  30834. },
  30835. maw: {
  30836. height: math.unit(1, "feet"),
  30837. name: "Maw",
  30838. image: {
  30839. source: "./media/characters/casselene-yaro/maw.svg"
  30840. }
  30841. },
  30842. },
  30843. [
  30844. {
  30845. name: "Macro",
  30846. height: math.unit(190, "feet"),
  30847. default: true
  30848. },
  30849. ]
  30850. ))
  30851. characterMakers.push(() => makeCharacter(
  30852. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30853. {
  30854. front: {
  30855. height: math.unit(10, "feet"),
  30856. weight: math.unit(15015, "lb"),
  30857. name: "Front",
  30858. image: {
  30859. source: "./media/characters/platine/front.svg",
  30860. extra: 1741/1650,
  30861. bottom: 84/1825
  30862. }
  30863. },
  30864. side: {
  30865. height: math.unit(10, "feet"),
  30866. weight: math.unit(15015, "lb"),
  30867. name: "Side",
  30868. image: {
  30869. source: "./media/characters/platine/side.svg",
  30870. extra: 1790/1705,
  30871. bottom: 29/1819
  30872. }
  30873. },
  30874. },
  30875. [
  30876. {
  30877. name: "Normal",
  30878. height: math.unit(10, "feet"),
  30879. default: true
  30880. },
  30881. {
  30882. name: "Macro",
  30883. height: math.unit(100, "feet")
  30884. },
  30885. {
  30886. name: "Megamacro",
  30887. height: math.unit(1000, "feet")
  30888. },
  30889. ]
  30890. ))
  30891. characterMakers.push(() => makeCharacter(
  30892. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30893. {
  30894. front: {
  30895. height: math.unit(15 + 5 / 12, "feet"),
  30896. weight: math.unit(4600, "lb"),
  30897. name: "Front",
  30898. image: {
  30899. source: "./media/characters/neapolitan-ananassa/front.svg",
  30900. extra: 2903 / 2736,
  30901. bottom: 0 / 2903
  30902. }
  30903. },
  30904. side: {
  30905. height: math.unit(15 + 5 / 12, "feet"),
  30906. weight: math.unit(4600, "lb"),
  30907. name: "Side",
  30908. image: {
  30909. source: "./media/characters/neapolitan-ananassa/side.svg",
  30910. extra: 2925 / 2719,
  30911. bottom: 0 / 2925
  30912. }
  30913. },
  30914. back: {
  30915. height: math.unit(15 + 5 / 12, "feet"),
  30916. weight: math.unit(4600, "lb"),
  30917. name: "Back",
  30918. image: {
  30919. source: "./media/characters/neapolitan-ananassa/back.svg",
  30920. extra: 2903 / 2736,
  30921. bottom: 0 / 2903
  30922. }
  30923. },
  30924. },
  30925. [
  30926. {
  30927. name: "Normal",
  30928. height: math.unit(15 + 5 / 12, "feet"),
  30929. default: true
  30930. },
  30931. {
  30932. name: "Post-Millenium",
  30933. height: math.unit(35 + 5 / 12, "feet")
  30934. },
  30935. {
  30936. name: "Post-Era",
  30937. height: math.unit(450 + 5 / 12, "feet")
  30938. },
  30939. ]
  30940. ))
  30941. characterMakers.push(() => makeCharacter(
  30942. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30943. {
  30944. front: {
  30945. height: math.unit(300, "meters"),
  30946. weight: math.unit(125000, "tonnes"),
  30947. name: "Front",
  30948. image: {
  30949. source: "./media/characters/pazuzu/front.svg",
  30950. extra: 877 / 794,
  30951. bottom: 47 / 924
  30952. }
  30953. },
  30954. },
  30955. [
  30956. {
  30957. name: "Macro",
  30958. height: math.unit(300, "meters"),
  30959. default: true
  30960. },
  30961. ]
  30962. ))
  30963. characterMakers.push(() => makeCharacter(
  30964. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30965. {
  30966. side: {
  30967. height: math.unit(10 + 7 / 12, "feet"),
  30968. weight: math.unit(2.5, "tons"),
  30969. name: "Side",
  30970. image: {
  30971. source: "./media/characters/aasha/side.svg",
  30972. extra: 1345 / 1245,
  30973. bottom: 111 / 1456
  30974. }
  30975. },
  30976. back: {
  30977. height: math.unit(10 + 7 / 12, "feet"),
  30978. weight: math.unit(2.5, "tons"),
  30979. name: "Back",
  30980. image: {
  30981. source: "./media/characters/aasha/back.svg",
  30982. extra: 1133 / 1057,
  30983. bottom: 257 / 1390
  30984. }
  30985. },
  30986. },
  30987. [
  30988. {
  30989. name: "Normal",
  30990. height: math.unit(10 + 7 / 12, "feet"),
  30991. default: true
  30992. },
  30993. ]
  30994. ))
  30995. characterMakers.push(() => makeCharacter(
  30996. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30997. {
  30998. front: {
  30999. height: math.unit(6 + 3 / 12, "feet"),
  31000. name: "Front",
  31001. image: {
  31002. source: "./media/characters/nevan/front.svg",
  31003. extra: 704 / 704,
  31004. bottom: 28 / 732
  31005. }
  31006. },
  31007. back: {
  31008. height: math.unit(6 + 3 / 12, "feet"),
  31009. name: "Back",
  31010. image: {
  31011. source: "./media/characters/nevan/back.svg",
  31012. extra: 714 / 714,
  31013. bottom: 21 / 735
  31014. }
  31015. },
  31016. frontFlaccid: {
  31017. height: math.unit(6 + 3 / 12, "feet"),
  31018. name: "Front (Flaccid)",
  31019. image: {
  31020. source: "./media/characters/nevan/front-flaccid.svg",
  31021. extra: 704 / 704,
  31022. bottom: 28 / 732
  31023. }
  31024. },
  31025. frontErect: {
  31026. height: math.unit(6 + 3 / 12, "feet"),
  31027. name: "Front (Erect)",
  31028. image: {
  31029. source: "./media/characters/nevan/front-erect.svg",
  31030. extra: 704 / 704,
  31031. bottom: 28 / 732
  31032. }
  31033. },
  31034. backFlaccid: {
  31035. height: math.unit(6 + 3 / 12, "feet"),
  31036. name: "Back (Flaccid)",
  31037. image: {
  31038. source: "./media/characters/nevan/back-flaccid.svg",
  31039. extra: 714 / 714,
  31040. bottom: 21 / 735
  31041. }
  31042. },
  31043. },
  31044. [
  31045. {
  31046. name: "Normal",
  31047. height: math.unit(6 + 3 / 12, "feet"),
  31048. default: true
  31049. },
  31050. ]
  31051. ))
  31052. characterMakers.push(() => makeCharacter(
  31053. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31054. {
  31055. front: {
  31056. height: math.unit(4, "feet"),
  31057. name: "Front",
  31058. image: {
  31059. source: "./media/characters/arhan/front.svg",
  31060. extra: 3368 / 3133,
  31061. bottom: 0 / 3368
  31062. }
  31063. },
  31064. side: {
  31065. height: math.unit(4, "feet"),
  31066. name: "Side",
  31067. image: {
  31068. source: "./media/characters/arhan/side.svg",
  31069. extra: 3347 / 3105,
  31070. bottom: 0 / 3347
  31071. }
  31072. },
  31073. tongue: {
  31074. height: math.unit(1.42, "feet"),
  31075. name: "Tongue",
  31076. image: {
  31077. source: "./media/characters/arhan/tongue.svg"
  31078. }
  31079. },
  31080. head: {
  31081. height: math.unit(0.85, "feet"),
  31082. name: "Head",
  31083. image: {
  31084. source: "./media/characters/arhan/head.svg"
  31085. }
  31086. },
  31087. },
  31088. [
  31089. {
  31090. name: "Normal",
  31091. height: math.unit(4, "feet"),
  31092. default: true
  31093. },
  31094. ]
  31095. ))
  31096. characterMakers.push(() => makeCharacter(
  31097. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31098. {
  31099. front: {
  31100. height: math.unit(5 + 7.5 / 12, "feet"),
  31101. weight: math.unit(120, "lb"),
  31102. name: "Front",
  31103. image: {
  31104. source: "./media/characters/digi-duncan/front.svg",
  31105. extra: 330 / 326,
  31106. bottom: 16 / 346
  31107. }
  31108. },
  31109. side: {
  31110. height: math.unit(5 + 7.5 / 12, "feet"),
  31111. weight: math.unit(120, "lb"),
  31112. name: "Side",
  31113. image: {
  31114. source: "./media/characters/digi-duncan/side.svg",
  31115. extra: 341 / 337,
  31116. bottom: 1 / 342
  31117. }
  31118. },
  31119. back: {
  31120. height: math.unit(5 + 7.5 / 12, "feet"),
  31121. weight: math.unit(120, "lb"),
  31122. name: "Back",
  31123. image: {
  31124. source: "./media/characters/digi-duncan/back.svg",
  31125. extra: 330 / 326,
  31126. bottom: 12 / 342
  31127. }
  31128. },
  31129. },
  31130. [
  31131. {
  31132. name: "Speck",
  31133. height: math.unit(0.25, "mm")
  31134. },
  31135. {
  31136. name: "Micro",
  31137. height: math.unit(5, "mm")
  31138. },
  31139. {
  31140. name: "Tiny",
  31141. height: math.unit(0.5, "inches"),
  31142. default: true
  31143. },
  31144. {
  31145. name: "Human",
  31146. height: math.unit(5 + 7.5 / 12, "feet")
  31147. },
  31148. {
  31149. name: "Minigiant",
  31150. height: math.unit(8 + 5.25, "feet")
  31151. },
  31152. {
  31153. name: "Giant",
  31154. height: math.unit(2000, "feet")
  31155. },
  31156. {
  31157. name: "Mega",
  31158. height: math.unit(371.1, "miles")
  31159. },
  31160. ]
  31161. ))
  31162. characterMakers.push(() => makeCharacter(
  31163. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31164. {
  31165. front: {
  31166. height: math.unit(2, "meters"),
  31167. weight: math.unit(350, "kg"),
  31168. name: "Front",
  31169. image: {
  31170. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31171. extra: 898 / 838,
  31172. bottom: 9 / 907
  31173. }
  31174. },
  31175. },
  31176. [
  31177. {
  31178. name: "Micro",
  31179. height: math.unit(8, "meters")
  31180. },
  31181. {
  31182. name: "Normal",
  31183. height: math.unit(50, "meters"),
  31184. default: true
  31185. },
  31186. {
  31187. name: "Macro",
  31188. height: math.unit(500, "meters")
  31189. },
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31194. {
  31195. front: {
  31196. height: math.unit(6 + 6 / 12, "feet"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/khardesh/front.svg",
  31200. extra: 1788/1596,
  31201. bottom: 66/1854
  31202. }
  31203. },
  31204. back: {
  31205. height: math.unit(6 + 6 / 12, "feet"),
  31206. name: "Back",
  31207. image: {
  31208. source: "./media/characters/khardesh/back.svg",
  31209. extra: 1781/1584,
  31210. bottom: 68/1849
  31211. }
  31212. },
  31213. },
  31214. [
  31215. {
  31216. name: "Normal",
  31217. height: math.unit(6 + 6 / 12, "feet"),
  31218. default: true
  31219. },
  31220. {
  31221. name: "Normal+",
  31222. height: math.unit(4, "meters")
  31223. },
  31224. {
  31225. name: "Macro",
  31226. height: math.unit(50, "meters")
  31227. },
  31228. {
  31229. name: "Macro+",
  31230. height: math.unit(100, "meters")
  31231. },
  31232. {
  31233. name: "Megamacro",
  31234. height: math.unit(20, "km")
  31235. },
  31236. ]
  31237. ))
  31238. characterMakers.push(() => makeCharacter(
  31239. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31240. {
  31241. front: {
  31242. height: math.unit(6, "feet"),
  31243. weight: math.unit(150, "lb"),
  31244. name: "Front",
  31245. image: {
  31246. source: "./media/characters/kosho/front.svg",
  31247. extra: 1847 / 1847,
  31248. bottom: 86 / 1933
  31249. }
  31250. },
  31251. },
  31252. [
  31253. {
  31254. name: "Second-stage micro",
  31255. height: math.unit(0.5, "inches")
  31256. },
  31257. {
  31258. name: "First-stage micro",
  31259. height: math.unit(6, "inches")
  31260. },
  31261. {
  31262. name: "Normal",
  31263. height: math.unit(6, "feet"),
  31264. default: true
  31265. },
  31266. {
  31267. name: "First-stage macro",
  31268. height: math.unit(72, "feet")
  31269. },
  31270. {
  31271. name: "Second-stage macro",
  31272. height: math.unit(864, "feet")
  31273. },
  31274. ]
  31275. ))
  31276. characterMakers.push(() => makeCharacter(
  31277. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31278. {
  31279. normal: {
  31280. height: math.unit(4 + 6 / 12, "feet"),
  31281. name: "Normal",
  31282. image: {
  31283. source: "./media/characters/hydra/normal.svg",
  31284. extra: 2833 / 2634,
  31285. bottom: 68 / 2901
  31286. }
  31287. },
  31288. smol: {
  31289. height: math.unit(0.705, "inches"),
  31290. name: "Smol",
  31291. image: {
  31292. source: "./media/characters/hydra/smol.svg",
  31293. extra: 2715 / 2540,
  31294. bottom: 0 / 2715
  31295. }
  31296. },
  31297. },
  31298. [
  31299. {
  31300. name: "Normal",
  31301. height: math.unit(4 + 6 / 12, "feet"),
  31302. default: true
  31303. }
  31304. ]
  31305. ))
  31306. characterMakers.push(() => makeCharacter(
  31307. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31308. {
  31309. front: {
  31310. height: math.unit(0.6, "cm"),
  31311. name: "Front",
  31312. image: {
  31313. source: "./media/characters/daz/front.svg",
  31314. extra: 1682 / 1164,
  31315. bottom: 42 / 1724
  31316. }
  31317. },
  31318. },
  31319. [
  31320. {
  31321. name: "Normal",
  31322. height: math.unit(0.6, "cm"),
  31323. default: true
  31324. },
  31325. ]
  31326. ))
  31327. characterMakers.push(() => makeCharacter(
  31328. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31329. {
  31330. front: {
  31331. height: math.unit(6, "feet"),
  31332. weight: math.unit(235, "lb"),
  31333. name: "Front",
  31334. image: {
  31335. source: "./media/characters/theo-pangolin/front.svg",
  31336. extra: 1996 / 1969,
  31337. bottom: 115 / 2111
  31338. }
  31339. },
  31340. back: {
  31341. height: math.unit(6, "feet"),
  31342. weight: math.unit(235, "lb"),
  31343. name: "Back",
  31344. image: {
  31345. source: "./media/characters/theo-pangolin/back.svg",
  31346. extra: 1979 / 1979,
  31347. bottom: 40 / 2019
  31348. }
  31349. },
  31350. feral: {
  31351. height: math.unit(2, "feet"),
  31352. weight: math.unit(30, "lb"),
  31353. name: "Feral",
  31354. image: {
  31355. source: "./media/characters/theo-pangolin/feral.svg",
  31356. extra: 803 / 791,
  31357. bottom: 181 / 984
  31358. }
  31359. },
  31360. footFive: {
  31361. height: math.unit(1.43, "feet"),
  31362. name: "Foot (Five Toes)",
  31363. image: {
  31364. source: "./media/characters/theo-pangolin/foot-five.svg"
  31365. }
  31366. },
  31367. footFour: {
  31368. height: math.unit(1.43, "feet"),
  31369. name: "Foot (Four Toes)",
  31370. image: {
  31371. source: "./media/characters/theo-pangolin/foot-four.svg"
  31372. }
  31373. },
  31374. handFour: {
  31375. height: math.unit(0.81, "feet"),
  31376. name: "Hand (Four Fingers)",
  31377. image: {
  31378. source: "./media/characters/theo-pangolin/hand-four.svg"
  31379. }
  31380. },
  31381. handThree: {
  31382. height: math.unit(0.81, "feet"),
  31383. name: "Hand (Three Fingers)",
  31384. image: {
  31385. source: "./media/characters/theo-pangolin/hand-three.svg"
  31386. }
  31387. },
  31388. headFront: {
  31389. height: math.unit(1.37, "feet"),
  31390. name: "Head (Front)",
  31391. image: {
  31392. source: "./media/characters/theo-pangolin/head-front.svg"
  31393. }
  31394. },
  31395. headSide: {
  31396. height: math.unit(1.43, "feet"),
  31397. name: "Head (Side)",
  31398. image: {
  31399. source: "./media/characters/theo-pangolin/head-side.svg"
  31400. }
  31401. },
  31402. tongue: {
  31403. height: math.unit(2.29, "feet"),
  31404. name: "Tongue",
  31405. image: {
  31406. source: "./media/characters/theo-pangolin/tongue.svg"
  31407. }
  31408. },
  31409. },
  31410. [
  31411. {
  31412. name: "Normal",
  31413. height: math.unit(6, "feet")
  31414. },
  31415. {
  31416. name: "Macro",
  31417. height: math.unit(400, "feet"),
  31418. default: true
  31419. },
  31420. ]
  31421. ))
  31422. characterMakers.push(() => makeCharacter(
  31423. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31424. {
  31425. front: {
  31426. height: math.unit(6, "inches"),
  31427. weight: math.unit(0.036, "kg"),
  31428. name: "Front",
  31429. image: {
  31430. source: "./media/characters/renée/front.svg",
  31431. extra: 900 / 886,
  31432. bottom: 8 / 908
  31433. }
  31434. },
  31435. },
  31436. [
  31437. {
  31438. name: "Nano",
  31439. height: math.unit(1, "nm")
  31440. },
  31441. {
  31442. name: "Micro",
  31443. height: math.unit(1, "mm")
  31444. },
  31445. {
  31446. name: "Normal",
  31447. height: math.unit(6, "inches")
  31448. },
  31449. {
  31450. name: "Macro",
  31451. height: math.unit(2000, "feet"),
  31452. default: true
  31453. },
  31454. {
  31455. name: "Megamacro",
  31456. height: math.unit(2, "km")
  31457. },
  31458. {
  31459. name: "Gigamacro",
  31460. height: math.unit(2000, "km")
  31461. },
  31462. {
  31463. name: "Teramacro",
  31464. height: math.unit(250000, "km")
  31465. },
  31466. ]
  31467. ))
  31468. characterMakers.push(() => makeCharacter(
  31469. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31470. {
  31471. front: {
  31472. height: math.unit(4, "meters"),
  31473. weight: math.unit(150, "kg"),
  31474. name: "Front",
  31475. image: {
  31476. source: "./media/characters/caledvwlch/front.svg",
  31477. extra: 1760 / 1551,
  31478. bottom: 28 / 1788
  31479. }
  31480. },
  31481. side: {
  31482. height: math.unit(4, "meters"),
  31483. weight: math.unit(150, "kg"),
  31484. name: "Side",
  31485. image: {
  31486. source: "./media/characters/caledvwlch/side.svg",
  31487. extra: 1605 / 1536,
  31488. bottom: 31 / 1636
  31489. }
  31490. },
  31491. back: {
  31492. height: math.unit(4, "meters"),
  31493. weight: math.unit(150, "kg"),
  31494. name: "Back",
  31495. image: {
  31496. source: "./media/characters/caledvwlch/back.svg",
  31497. extra: 1635 / 1565,
  31498. bottom: 27 / 1662
  31499. }
  31500. },
  31501. },
  31502. [
  31503. {
  31504. name: "\"Incognito\"",
  31505. height: math.unit(4, "meters")
  31506. },
  31507. {
  31508. name: "Small rampage",
  31509. height: math.unit(600, "meters")
  31510. },
  31511. {
  31512. name: "Mega",
  31513. height: math.unit(30, "km")
  31514. },
  31515. {
  31516. name: "Home-size",
  31517. height: math.unit(50, "km"),
  31518. default: true
  31519. },
  31520. {
  31521. name: "Giga",
  31522. height: math.unit(300, "km")
  31523. },
  31524. {
  31525. name: "Lounging",
  31526. height: math.unit(11000, "km")
  31527. },
  31528. {
  31529. name: "Planet snacking",
  31530. height: math.unit(2000000, "km")
  31531. },
  31532. ]
  31533. ))
  31534. characterMakers.push(() => makeCharacter(
  31535. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31536. {
  31537. front: {
  31538. height: math.unit(6, "feet"),
  31539. weight: math.unit(215, "lb"),
  31540. name: "Front",
  31541. image: {
  31542. source: "./media/characters/sapphire-svell/front.svg",
  31543. extra: 495 / 455,
  31544. bottom: 20 / 515
  31545. }
  31546. },
  31547. back: {
  31548. height: math.unit(6, "feet"),
  31549. weight: math.unit(216, "lb"),
  31550. name: "Back",
  31551. image: {
  31552. source: "./media/characters/sapphire-svell/back.svg",
  31553. extra: 497 / 477,
  31554. bottom: 7 / 504
  31555. }
  31556. },
  31557. maw: {
  31558. height: math.unit(1.57, "feet"),
  31559. name: "Maw",
  31560. image: {
  31561. source: "./media/characters/sapphire-svell/maw.svg"
  31562. }
  31563. },
  31564. foot: {
  31565. height: math.unit(1.07, "feet"),
  31566. name: "Foot",
  31567. image: {
  31568. source: "./media/characters/sapphire-svell/foot.svg"
  31569. }
  31570. },
  31571. toering: {
  31572. height: math.unit(1.7, "inch"),
  31573. name: "Toering",
  31574. image: {
  31575. source: "./media/characters/sapphire-svell/toering.svg"
  31576. }
  31577. },
  31578. },
  31579. [
  31580. {
  31581. name: "Normal",
  31582. height: math.unit(300, "feet"),
  31583. default: true
  31584. },
  31585. {
  31586. name: "Augmented",
  31587. height: math.unit(1250, "feet")
  31588. },
  31589. {
  31590. name: "Unleashed",
  31591. height: math.unit(3000, "feet")
  31592. },
  31593. ]
  31594. ))
  31595. characterMakers.push(() => makeCharacter(
  31596. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31597. {
  31598. side: {
  31599. height: math.unit(2 + 3 / 12, "feet"),
  31600. weight: math.unit(110, "lb"),
  31601. name: "Side",
  31602. image: {
  31603. source: "./media/characters/glitch-flux/side.svg",
  31604. extra: 997 / 805,
  31605. bottom: 20 / 1017
  31606. }
  31607. },
  31608. },
  31609. [
  31610. {
  31611. name: "Normal",
  31612. height: math.unit(2 + 3 / 12, "feet"),
  31613. default: true
  31614. },
  31615. ]
  31616. ))
  31617. characterMakers.push(() => makeCharacter(
  31618. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31619. {
  31620. front: {
  31621. height: math.unit(4, "meters"),
  31622. name: "Front",
  31623. image: {
  31624. source: "./media/characters/mid/front.svg",
  31625. extra: 507 / 476,
  31626. bottom: 17 / 524
  31627. }
  31628. },
  31629. back: {
  31630. height: math.unit(4, "meters"),
  31631. name: "Back",
  31632. image: {
  31633. source: "./media/characters/mid/back.svg",
  31634. extra: 519 / 487,
  31635. bottom: 7 / 526
  31636. }
  31637. },
  31638. stuck: {
  31639. height: math.unit(2.2, "meters"),
  31640. name: "Stuck",
  31641. image: {
  31642. source: "./media/characters/mid/stuck.svg",
  31643. extra: 1951 / 1869,
  31644. bottom: 88 / 2039
  31645. }
  31646. }
  31647. },
  31648. [
  31649. {
  31650. name: "Normal",
  31651. height: math.unit(4, "meters"),
  31652. default: true
  31653. },
  31654. {
  31655. name: "Big",
  31656. height: math.unit(10, "meters")
  31657. },
  31658. {
  31659. name: "Macro",
  31660. height: math.unit(800, "meters")
  31661. },
  31662. {
  31663. name: "Megamacro",
  31664. height: math.unit(100, "km")
  31665. },
  31666. {
  31667. name: "Overgrown",
  31668. height: math.unit(1, "parsec")
  31669. },
  31670. ]
  31671. ))
  31672. characterMakers.push(() => makeCharacter(
  31673. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31674. {
  31675. front: {
  31676. height: math.unit(2.5, "meters"),
  31677. weight: math.unit(225, "kg"),
  31678. name: "Front",
  31679. image: {
  31680. source: "./media/characters/iris/front.svg",
  31681. extra: 3348 / 3251,
  31682. bottom: 205 / 3553
  31683. }
  31684. },
  31685. maw: {
  31686. height: math.unit(0.56, "meter"),
  31687. name: "Maw",
  31688. image: {
  31689. source: "./media/characters/iris/maw.svg"
  31690. }
  31691. },
  31692. },
  31693. [
  31694. {
  31695. name: "Mewter cat",
  31696. height: math.unit(1.2, "meters")
  31697. },
  31698. {
  31699. name: "Normal",
  31700. height: math.unit(2.5, "meters"),
  31701. default: true
  31702. },
  31703. {
  31704. name: "Minimacro",
  31705. height: math.unit(18, "feet")
  31706. },
  31707. {
  31708. name: "Macro",
  31709. height: math.unit(140, "feet")
  31710. },
  31711. {
  31712. name: "Macro+",
  31713. height: math.unit(180, "meters")
  31714. },
  31715. {
  31716. name: "Megamacro",
  31717. height: math.unit(2746, "meters")
  31718. },
  31719. ]
  31720. ))
  31721. characterMakers.push(() => makeCharacter(
  31722. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31723. {
  31724. front: {
  31725. height: math.unit(6, "feet"),
  31726. weight: math.unit(135, "lb"),
  31727. name: "Front",
  31728. image: {
  31729. source: "./media/characters/axel/front.svg",
  31730. extra: 908 / 908,
  31731. bottom: 58 / 966
  31732. }
  31733. },
  31734. side: {
  31735. height: math.unit(6, "feet"),
  31736. weight: math.unit(135, "lb"),
  31737. name: "Side",
  31738. image: {
  31739. source: "./media/characters/axel/side.svg",
  31740. extra: 958 / 958,
  31741. bottom: 11 / 969
  31742. }
  31743. },
  31744. back: {
  31745. height: math.unit(6, "feet"),
  31746. weight: math.unit(135, "lb"),
  31747. name: "Back",
  31748. image: {
  31749. source: "./media/characters/axel/back.svg",
  31750. extra: 887 / 887,
  31751. bottom: 34 / 921
  31752. }
  31753. },
  31754. head: {
  31755. height: math.unit(1.07, "feet"),
  31756. name: "Head",
  31757. image: {
  31758. source: "./media/characters/axel/head.svg"
  31759. }
  31760. },
  31761. beak: {
  31762. height: math.unit(1.4, "feet"),
  31763. name: "Beak",
  31764. image: {
  31765. source: "./media/characters/axel/beak.svg"
  31766. }
  31767. },
  31768. beakSide: {
  31769. height: math.unit(1.4, "feet"),
  31770. name: "Beak Side",
  31771. image: {
  31772. source: "./media/characters/axel/beak-side.svg"
  31773. }
  31774. },
  31775. sheath: {
  31776. height: math.unit(0.5, "feet"),
  31777. name: "Sheath",
  31778. image: {
  31779. source: "./media/characters/axel/sheath.svg"
  31780. }
  31781. },
  31782. dick: {
  31783. height: math.unit(0.98, "feet"),
  31784. name: "Dick",
  31785. image: {
  31786. source: "./media/characters/axel/dick.svg"
  31787. }
  31788. },
  31789. },
  31790. [
  31791. {
  31792. name: "Macro",
  31793. height: math.unit(68, "meters"),
  31794. default: true
  31795. },
  31796. ]
  31797. ))
  31798. characterMakers.push(() => makeCharacter(
  31799. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31800. {
  31801. front: {
  31802. height: math.unit(3.5, "meters"),
  31803. weight: math.unit(1200, "kg"),
  31804. name: "Front",
  31805. image: {
  31806. source: "./media/characters/joanna/front.svg",
  31807. extra: 1596 / 1488,
  31808. bottom: 29 / 1625
  31809. }
  31810. },
  31811. back: {
  31812. height: math.unit(3.5, "meters"),
  31813. weight: math.unit(1200, "kg"),
  31814. name: "Back",
  31815. image: {
  31816. source: "./media/characters/joanna/back.svg",
  31817. extra: 1594 / 1495,
  31818. bottom: 26 / 1620
  31819. }
  31820. },
  31821. frontShorts: {
  31822. height: math.unit(3.5, "meters"),
  31823. weight: math.unit(1200, "kg"),
  31824. name: "Front (Shorts)",
  31825. image: {
  31826. source: "./media/characters/joanna/front-shorts.svg",
  31827. extra: 1596 / 1488,
  31828. bottom: 29 / 1625
  31829. }
  31830. },
  31831. frontBiker: {
  31832. height: math.unit(3.5, "meters"),
  31833. weight: math.unit(1200, "kg"),
  31834. name: "Front (Biker)",
  31835. image: {
  31836. source: "./media/characters/joanna/front-biker.svg",
  31837. extra: 1596 / 1488,
  31838. bottom: 29 / 1625
  31839. }
  31840. },
  31841. backBiker: {
  31842. height: math.unit(3.5, "meters"),
  31843. weight: math.unit(1200, "kg"),
  31844. name: "Back (Biker)",
  31845. image: {
  31846. source: "./media/characters/joanna/back-biker.svg",
  31847. extra: 1594 / 1495,
  31848. bottom: 88 / 1682
  31849. }
  31850. },
  31851. bikeLeft: {
  31852. height: math.unit(2.4, "meters"),
  31853. weight: math.unit(1600, "kg"),
  31854. name: "Bike (Left)",
  31855. image: {
  31856. source: "./media/characters/joanna/bike-left.svg",
  31857. extra: 720 / 720,
  31858. bottom: 8 / 728
  31859. }
  31860. },
  31861. bikeRight: {
  31862. height: math.unit(2.4, "meters"),
  31863. weight: math.unit(1600, "kg"),
  31864. name: "Bike (Right)",
  31865. image: {
  31866. source: "./media/characters/joanna/bike-right.svg",
  31867. extra: 720 / 720,
  31868. bottom: 8 / 728
  31869. }
  31870. },
  31871. },
  31872. [
  31873. {
  31874. name: "Incognito",
  31875. height: math.unit(3.5, "meters")
  31876. },
  31877. {
  31878. name: "Casual Big",
  31879. height: math.unit(200, "meters")
  31880. },
  31881. {
  31882. name: "Macro",
  31883. height: math.unit(600, "meters")
  31884. },
  31885. {
  31886. name: "Original",
  31887. height: math.unit(20, "km"),
  31888. default: true
  31889. },
  31890. {
  31891. name: "Giga",
  31892. height: math.unit(400, "km")
  31893. },
  31894. {
  31895. name: "Lounging",
  31896. height: math.unit(1500, "km")
  31897. },
  31898. {
  31899. name: "Planetary",
  31900. height: math.unit(200000, "km")
  31901. },
  31902. ]
  31903. ))
  31904. characterMakers.push(() => makeCharacter(
  31905. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31906. {
  31907. front: {
  31908. height: math.unit(6, "feet"),
  31909. weight: math.unit(150, "lb"),
  31910. name: "Front",
  31911. image: {
  31912. source: "./media/characters/hugo-sigil/front.svg",
  31913. extra: 522 / 500,
  31914. bottom: 2 / 524
  31915. }
  31916. },
  31917. back: {
  31918. height: math.unit(6, "feet"),
  31919. weight: math.unit(150, "lb"),
  31920. name: "Back",
  31921. image: {
  31922. source: "./media/characters/hugo-sigil/back.svg",
  31923. extra: 519 / 495,
  31924. bottom: 5 / 524
  31925. }
  31926. },
  31927. maw: {
  31928. height: math.unit(1.4, "feet"),
  31929. weight: math.unit(150, "lb"),
  31930. name: "Maw",
  31931. image: {
  31932. source: "./media/characters/hugo-sigil/maw.svg"
  31933. }
  31934. },
  31935. feet: {
  31936. height: math.unit(1.56, "feet"),
  31937. weight: math.unit(150, "lb"),
  31938. name: "Feet",
  31939. image: {
  31940. source: "./media/characters/hugo-sigil/feet.svg",
  31941. extra: 177 / 177,
  31942. bottom: 12 / 189
  31943. }
  31944. },
  31945. },
  31946. [
  31947. {
  31948. name: "Normal",
  31949. height: math.unit(6, "feet")
  31950. },
  31951. {
  31952. name: "Macro",
  31953. height: math.unit(200, "feet"),
  31954. default: true
  31955. },
  31956. ]
  31957. ))
  31958. characterMakers.push(() => makeCharacter(
  31959. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31960. {
  31961. front: {
  31962. height: math.unit(6, "feet"),
  31963. weight: math.unit(150, "lb"),
  31964. name: "Front",
  31965. image: {
  31966. source: "./media/characters/peri/front.svg",
  31967. extra: 2354 / 2233,
  31968. bottom: 49 / 2403
  31969. }
  31970. },
  31971. },
  31972. [
  31973. {
  31974. name: "Really Small",
  31975. height: math.unit(1, "nm")
  31976. },
  31977. {
  31978. name: "Micro",
  31979. height: math.unit(4, "inches")
  31980. },
  31981. {
  31982. name: "Normal",
  31983. height: math.unit(7, "inches"),
  31984. default: true
  31985. },
  31986. {
  31987. name: "Macro",
  31988. height: math.unit(400, "feet")
  31989. },
  31990. {
  31991. name: "Megamacro",
  31992. height: math.unit(100, "miles")
  31993. },
  31994. ]
  31995. ))
  31996. characterMakers.push(() => makeCharacter(
  31997. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31998. {
  31999. frontSlim: {
  32000. height: math.unit(7, "feet"),
  32001. name: "Front (Slim)",
  32002. image: {
  32003. source: "./media/characters/issilora/front-slim.svg",
  32004. extra: 529 / 449,
  32005. bottom: 53 / 582
  32006. }
  32007. },
  32008. sideSlim: {
  32009. height: math.unit(7, "feet"),
  32010. name: "Side (Slim)",
  32011. image: {
  32012. source: "./media/characters/issilora/side-slim.svg",
  32013. extra: 570 / 480,
  32014. bottom: 30 / 600
  32015. }
  32016. },
  32017. backSlim: {
  32018. height: math.unit(7, "feet"),
  32019. name: "Back (Slim)",
  32020. image: {
  32021. source: "./media/characters/issilora/back-slim.svg",
  32022. extra: 537 / 455,
  32023. bottom: 46 / 583
  32024. }
  32025. },
  32026. frontBuff: {
  32027. height: math.unit(7, "feet"),
  32028. name: "Front (Buff)",
  32029. image: {
  32030. source: "./media/characters/issilora/front-buff.svg",
  32031. extra: 2310 / 2035,
  32032. bottom: 335 / 2645
  32033. }
  32034. },
  32035. head: {
  32036. height: math.unit(1.94, "feet"),
  32037. name: "Head",
  32038. image: {
  32039. source: "./media/characters/issilora/head.svg"
  32040. }
  32041. },
  32042. },
  32043. [
  32044. {
  32045. name: "Minimum",
  32046. height: math.unit(7, "feet")
  32047. },
  32048. {
  32049. name: "Comfortable",
  32050. height: math.unit(17, "feet")
  32051. },
  32052. {
  32053. name: "Fun Size",
  32054. height: math.unit(47, "feet")
  32055. },
  32056. {
  32057. name: "Natural Macro",
  32058. height: math.unit(137, "feet"),
  32059. default: true
  32060. },
  32061. {
  32062. name: "Maximum Kaiju",
  32063. height: math.unit(397, "feet")
  32064. },
  32065. ]
  32066. ))
  32067. characterMakers.push(() => makeCharacter(
  32068. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32069. {
  32070. front: {
  32071. height: math.unit(50 + 9/12, "feet"),
  32072. weight: math.unit(32.8, "tons"),
  32073. name: "Front",
  32074. image: {
  32075. source: "./media/characters/irb'iiritaahn/front.svg",
  32076. extra: 1878/1826,
  32077. bottom: 326/2204
  32078. }
  32079. },
  32080. back: {
  32081. height: math.unit(50 + 9/12, "feet"),
  32082. weight: math.unit(32.8, "tons"),
  32083. name: "Back",
  32084. image: {
  32085. source: "./media/characters/irb'iiritaahn/back.svg",
  32086. extra: 2052/2018,
  32087. bottom: 152/2204
  32088. }
  32089. },
  32090. head: {
  32091. height: math.unit(12.86, "feet"),
  32092. name: "Head",
  32093. image: {
  32094. source: "./media/characters/irb'iiritaahn/head.svg"
  32095. }
  32096. },
  32097. maw: {
  32098. height: math.unit(9.66, "feet"),
  32099. name: "Maw",
  32100. image: {
  32101. source: "./media/characters/irb'iiritaahn/maw.svg"
  32102. }
  32103. },
  32104. frontDick: {
  32105. height: math.unit(8.78461, "feet"),
  32106. name: "Front Dick",
  32107. image: {
  32108. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32109. }
  32110. },
  32111. rearDick: {
  32112. height: math.unit(8.78461, "feet"),
  32113. name: "Rear Dick",
  32114. image: {
  32115. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32116. }
  32117. },
  32118. rearDickUnfolded: {
  32119. height: math.unit(8.78, "feet"),
  32120. name: "Rear Dick (Unfolded)",
  32121. image: {
  32122. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32123. }
  32124. },
  32125. wings: {
  32126. height: math.unit(43, "feet"),
  32127. name: "Wings",
  32128. image: {
  32129. source: "./media/characters/irb'iiritaahn/wings.svg"
  32130. }
  32131. },
  32132. },
  32133. [
  32134. {
  32135. name: "Macro",
  32136. height: math.unit(50 + 9/12, "feet"),
  32137. default: true
  32138. },
  32139. ]
  32140. ))
  32141. characterMakers.push(() => makeCharacter(
  32142. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32143. {
  32144. front: {
  32145. height: math.unit(205, "cm"),
  32146. weight: math.unit(102, "kg"),
  32147. name: "Front",
  32148. image: {
  32149. source: "./media/characters/irbisgreif/front.svg",
  32150. extra: 785/706,
  32151. bottom: 13/798
  32152. }
  32153. },
  32154. back: {
  32155. height: math.unit(205, "cm"),
  32156. weight: math.unit(102, "kg"),
  32157. name: "Back",
  32158. image: {
  32159. source: "./media/characters/irbisgreif/back.svg",
  32160. extra: 713/701,
  32161. bottom: 26/739
  32162. }
  32163. },
  32164. frontDressed: {
  32165. height: math.unit(216, "cm"),
  32166. weight: math.unit(102, "kg"),
  32167. name: "Front-dressed",
  32168. image: {
  32169. source: "./media/characters/irbisgreif/front-dressed.svg",
  32170. extra: 902/776,
  32171. bottom: 14/916
  32172. }
  32173. },
  32174. sideDressed: {
  32175. height: math.unit(195, "cm"),
  32176. weight: math.unit(102, "kg"),
  32177. name: "Side-dressed",
  32178. image: {
  32179. source: "./media/characters/irbisgreif/side-dressed.svg",
  32180. extra: 788/688,
  32181. bottom: 21/809
  32182. }
  32183. },
  32184. backDressed: {
  32185. height: math.unit(216, "cm"),
  32186. weight: math.unit(102, "kg"),
  32187. name: "Back-dressed",
  32188. image: {
  32189. source: "./media/characters/irbisgreif/back-dressed.svg",
  32190. extra: 901/783,
  32191. bottom: 10/911
  32192. }
  32193. },
  32194. dick: {
  32195. height: math.unit(0.49, "feet"),
  32196. name: "Dick",
  32197. image: {
  32198. source: "./media/characters/irbisgreif/dick.svg"
  32199. }
  32200. },
  32201. wingTop: {
  32202. height: math.unit(1.93 , "feet"),
  32203. name: "Wing-top",
  32204. image: {
  32205. source: "./media/characters/irbisgreif/wing-top.svg"
  32206. }
  32207. },
  32208. wingBottom: {
  32209. height: math.unit(1.93 , "feet"),
  32210. name: "Wing-bottom",
  32211. image: {
  32212. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32213. }
  32214. },
  32215. },
  32216. [
  32217. {
  32218. name: "Normal",
  32219. height: math.unit(216, "cm"),
  32220. default: true
  32221. },
  32222. ]
  32223. ))
  32224. characterMakers.push(() => makeCharacter(
  32225. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32226. {
  32227. front: {
  32228. height: math.unit(6, "feet"),
  32229. weight: math.unit(150, "lb"),
  32230. name: "Front",
  32231. image: {
  32232. source: "./media/characters/pride/front.svg",
  32233. extra: 1299/1230,
  32234. bottom: 18/1317
  32235. }
  32236. },
  32237. },
  32238. [
  32239. {
  32240. name: "Normal",
  32241. height: math.unit(7, "feet")
  32242. },
  32243. {
  32244. name: "Mini-macro",
  32245. height: math.unit(11, "feet")
  32246. },
  32247. {
  32248. name: "Macro",
  32249. height: math.unit(15, "meters"),
  32250. default: true
  32251. },
  32252. {
  32253. name: "Macro+",
  32254. height: math.unit(40, "meters")
  32255. },
  32256. ]
  32257. ))
  32258. characterMakers.push(() => makeCharacter(
  32259. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32260. {
  32261. front: {
  32262. height: math.unit(4 + 2 / 12, "feet"),
  32263. weight: math.unit(95, "lb"),
  32264. name: "Front",
  32265. image: {
  32266. source: "./media/characters/vaelophis-nyx/front.svg",
  32267. extra: 2532/2330,
  32268. bottom: 0/2532
  32269. }
  32270. },
  32271. back: {
  32272. height: math.unit(4 + 2 / 12, "feet"),
  32273. weight: math.unit(95, "lb"),
  32274. name: "Back",
  32275. image: {
  32276. source: "./media/characters/vaelophis-nyx/back.svg",
  32277. extra: 2484/2361,
  32278. bottom: 0/2484
  32279. }
  32280. },
  32281. feralSide: {
  32282. height: math.unit(2 + 1/12, "feet"),
  32283. weight: math.unit(20, "lb"),
  32284. name: "Feral (Side)",
  32285. image: {
  32286. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32287. extra: 1721/1581,
  32288. bottom: 70/1791
  32289. }
  32290. },
  32291. feralLazing: {
  32292. height: math.unit(1.08, "feet"),
  32293. weight: math.unit(20, "lb"),
  32294. name: "Feral (Lazing)",
  32295. image: {
  32296. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32297. extra: 822/822,
  32298. bottom: 248/1070
  32299. }
  32300. },
  32301. ear: {
  32302. height: math.unit(0.416, "feet"),
  32303. name: "Ear",
  32304. image: {
  32305. source: "./media/characters/vaelophis-nyx/ear.svg"
  32306. }
  32307. },
  32308. eye: {
  32309. height: math.unit(0.0748, "feet"),
  32310. name: "Eye",
  32311. image: {
  32312. source: "./media/characters/vaelophis-nyx/eye.svg"
  32313. }
  32314. },
  32315. mouth: {
  32316. height: math.unit(0.378, "feet"),
  32317. name: "Mouth",
  32318. image: {
  32319. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32320. }
  32321. },
  32322. spade: {
  32323. height: math.unit(0.55, "feet"),
  32324. name: "Spade",
  32325. image: {
  32326. source: "./media/characters/vaelophis-nyx/spade.svg"
  32327. }
  32328. },
  32329. },
  32330. [
  32331. {
  32332. name: "Normal",
  32333. height: math.unit(4 + 2/12, "feet"),
  32334. default: true
  32335. },
  32336. ]
  32337. ))
  32338. characterMakers.push(() => makeCharacter(
  32339. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32340. {
  32341. front: {
  32342. height: math.unit(7, "feet"),
  32343. weight: math.unit(231, "lb"),
  32344. name: "Front",
  32345. image: {
  32346. source: "./media/characters/flux/front.svg",
  32347. extra: 919/871,
  32348. bottom: 0/919
  32349. }
  32350. },
  32351. back: {
  32352. height: math.unit(7, "feet"),
  32353. weight: math.unit(231, "lb"),
  32354. name: "Back",
  32355. image: {
  32356. source: "./media/characters/flux/back.svg",
  32357. extra: 1040/992,
  32358. bottom: 0/1040
  32359. }
  32360. },
  32361. frontDressed: {
  32362. height: math.unit(7, "feet"),
  32363. weight: math.unit(231, "lb"),
  32364. name: "Front (Dressed)",
  32365. image: {
  32366. source: "./media/characters/flux/front-dressed.svg",
  32367. extra: 919/871,
  32368. bottom: 0/919
  32369. }
  32370. },
  32371. feralSide: {
  32372. height: math.unit(5, "feet"),
  32373. weight: math.unit(150, "lb"),
  32374. name: "Feral (Side)",
  32375. image: {
  32376. source: "./media/characters/flux/feral-side.svg",
  32377. extra: 598/528,
  32378. bottom: 28/626
  32379. }
  32380. },
  32381. head: {
  32382. height: math.unit(1.585, "feet"),
  32383. name: "Head",
  32384. image: {
  32385. source: "./media/characters/flux/head.svg"
  32386. }
  32387. },
  32388. headSide: {
  32389. height: math.unit(1.74, "feet"),
  32390. name: "Head (Side)",
  32391. image: {
  32392. source: "./media/characters/flux/head-side.svg"
  32393. }
  32394. },
  32395. headSideFire: {
  32396. height: math.unit(1.76, "feet"),
  32397. name: "Head (Side, Fire)",
  32398. image: {
  32399. source: "./media/characters/flux/head-side-fire.svg"
  32400. }
  32401. },
  32402. },
  32403. [
  32404. {
  32405. name: "Normal",
  32406. height: math.unit(7, "feet"),
  32407. default: true
  32408. },
  32409. ]
  32410. ))
  32411. characterMakers.push(() => makeCharacter(
  32412. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32413. {
  32414. front: {
  32415. height: math.unit(9, "feet"),
  32416. weight: math.unit(1012, "lb"),
  32417. name: "Front",
  32418. image: {
  32419. source: "./media/characters/ulfra-lupae/front.svg",
  32420. extra: 1083/1011,
  32421. bottom: 67/1150
  32422. }
  32423. },
  32424. },
  32425. [
  32426. {
  32427. name: "Micro",
  32428. height: math.unit(6, "inches")
  32429. },
  32430. {
  32431. name: "Socializing",
  32432. height: math.unit(6 + 5/12, "feet")
  32433. },
  32434. {
  32435. name: "Normal",
  32436. height: math.unit(9, "feet"),
  32437. default: true
  32438. },
  32439. {
  32440. name: "Macro",
  32441. height: math.unit(150, "feet")
  32442. },
  32443. ]
  32444. ))
  32445. characterMakers.push(() => makeCharacter(
  32446. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32447. {
  32448. front: {
  32449. height: math.unit(5 + 2/12, "feet"),
  32450. weight: math.unit(120, "lb"),
  32451. name: "Front",
  32452. image: {
  32453. source: "./media/characters/timber/front.svg",
  32454. extra: 2814/2705,
  32455. bottom: 181/2995
  32456. }
  32457. },
  32458. },
  32459. [
  32460. {
  32461. name: "Normal",
  32462. height: math.unit(5 + 2/12, "feet"),
  32463. default: true
  32464. },
  32465. ]
  32466. ))
  32467. characterMakers.push(() => makeCharacter(
  32468. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32469. {
  32470. front: {
  32471. height: math.unit(9, "feet"),
  32472. name: "Front",
  32473. image: {
  32474. source: "./media/characters/nicki/front.svg",
  32475. extra: 1240/990,
  32476. bottom: 45/1285
  32477. },
  32478. form: "anthro",
  32479. default: true
  32480. },
  32481. side: {
  32482. height: math.unit(9, "feet"),
  32483. name: "Side",
  32484. image: {
  32485. source: "./media/characters/nicki/side.svg",
  32486. extra: 1047/973,
  32487. bottom: 61/1108
  32488. },
  32489. form: "anthro"
  32490. },
  32491. back: {
  32492. height: math.unit(9, "feet"),
  32493. name: "Back",
  32494. image: {
  32495. source: "./media/characters/nicki/back.svg",
  32496. extra: 1006/965,
  32497. bottom: 39/1045
  32498. },
  32499. form: "anthro"
  32500. },
  32501. taur: {
  32502. height: math.unit(15, "feet"),
  32503. name: "Taur",
  32504. image: {
  32505. source: "./media/characters/nicki/taur.svg",
  32506. extra: 1592/1347,
  32507. bottom: 0/1592
  32508. },
  32509. form: "taur",
  32510. default: true
  32511. },
  32512. },
  32513. [
  32514. {
  32515. name: "Normal",
  32516. height: math.unit(9, "feet"),
  32517. form: "anthro",
  32518. default: true
  32519. },
  32520. {
  32521. name: "Normal",
  32522. height: math.unit(15, "feet"),
  32523. form: "taur",
  32524. default: true
  32525. }
  32526. ],
  32527. {
  32528. "anthro": {
  32529. name: "Anthro",
  32530. default: true
  32531. },
  32532. "taur": {
  32533. name: "Taur"
  32534. }
  32535. }
  32536. ))
  32537. characterMakers.push(() => makeCharacter(
  32538. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32539. {
  32540. front: {
  32541. height: math.unit(7 + 10/12, "feet"),
  32542. weight: math.unit(3.5, "tons"),
  32543. name: "Front",
  32544. image: {
  32545. source: "./media/characters/lee/front.svg",
  32546. extra: 1773/1615,
  32547. bottom: 86/1859
  32548. }
  32549. },
  32550. hand: {
  32551. height: math.unit(1.78, "feet"),
  32552. name: "Hand",
  32553. image: {
  32554. source: "./media/characters/lee/hand.svg"
  32555. }
  32556. },
  32557. maw: {
  32558. height: math.unit(1.18, "feet"),
  32559. name: "Maw",
  32560. image: {
  32561. source: "./media/characters/lee/maw.svg"
  32562. }
  32563. },
  32564. },
  32565. [
  32566. {
  32567. name: "Normal",
  32568. height: math.unit(7 + 10/12, "feet"),
  32569. default: true
  32570. },
  32571. ]
  32572. ))
  32573. characterMakers.push(() => makeCharacter(
  32574. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32575. {
  32576. front: {
  32577. height: math.unit(9, "feet"),
  32578. name: "Front",
  32579. image: {
  32580. source: "./media/characters/guti/front.svg",
  32581. extra: 4551/4355,
  32582. bottom: 123/4674
  32583. }
  32584. },
  32585. tongue: {
  32586. height: math.unit(1, "feet"),
  32587. name: "Tongue",
  32588. image: {
  32589. source: "./media/characters/guti/tongue.svg"
  32590. }
  32591. },
  32592. paw: {
  32593. height: math.unit(1.18, "feet"),
  32594. name: "Paw",
  32595. image: {
  32596. source: "./media/characters/guti/paw.svg"
  32597. }
  32598. },
  32599. },
  32600. [
  32601. {
  32602. name: "Normal",
  32603. height: math.unit(9, "feet"),
  32604. default: true
  32605. },
  32606. ]
  32607. ))
  32608. characterMakers.push(() => makeCharacter(
  32609. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32610. {
  32611. side: {
  32612. height: math.unit(5, "meters"),
  32613. name: "Side",
  32614. image: {
  32615. source: "./media/characters/vesper/side.svg",
  32616. extra: 1605/1518,
  32617. bottom: 0/1605
  32618. }
  32619. },
  32620. },
  32621. [
  32622. {
  32623. name: "Small",
  32624. height: math.unit(5, "meters")
  32625. },
  32626. {
  32627. name: "Sage",
  32628. height: math.unit(100, "meters"),
  32629. default: true
  32630. },
  32631. {
  32632. name: "Fun Size",
  32633. height: math.unit(600, "meters")
  32634. },
  32635. {
  32636. name: "Goddess",
  32637. height: math.unit(20000, "km")
  32638. },
  32639. {
  32640. name: "Maximum",
  32641. height: math.unit(5, "galaxies")
  32642. },
  32643. ]
  32644. ))
  32645. characterMakers.push(() => makeCharacter(
  32646. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32647. {
  32648. front: {
  32649. height: math.unit(6 + 3/12, "feet"),
  32650. weight: math.unit(190, "lb"),
  32651. name: "Front",
  32652. image: {
  32653. source: "./media/characters/gawain/front.svg",
  32654. extra: 2222/2139,
  32655. bottom: 90/2312
  32656. }
  32657. },
  32658. back: {
  32659. height: math.unit(6 + 3/12, "feet"),
  32660. weight: math.unit(190, "lb"),
  32661. name: "Back",
  32662. image: {
  32663. source: "./media/characters/gawain/back.svg",
  32664. extra: 2199/2111,
  32665. bottom: 73/2272
  32666. }
  32667. },
  32668. },
  32669. [
  32670. {
  32671. name: "Normal",
  32672. height: math.unit(6 + 3/12, "feet"),
  32673. default: true
  32674. },
  32675. ]
  32676. ))
  32677. characterMakers.push(() => makeCharacter(
  32678. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32679. {
  32680. side: {
  32681. height: math.unit(3.5, "meters"),
  32682. weight: math.unit(16000, "lb"),
  32683. name: "Side",
  32684. image: {
  32685. source: "./media/characters/dascalti/side.svg",
  32686. extra: 392/273,
  32687. bottom: 47/439
  32688. }
  32689. },
  32690. breath: {
  32691. height: math.unit(7.4, "feet"),
  32692. name: "Breath",
  32693. image: {
  32694. source: "./media/characters/dascalti/breath.svg"
  32695. }
  32696. },
  32697. fed: {
  32698. height: math.unit(3.6, "meters"),
  32699. weight: math.unit(16000, "lb"),
  32700. name: "Fed",
  32701. image: {
  32702. source: "./media/characters/dascalti/fed.svg",
  32703. extra: 1419/820,
  32704. bottom: 95/1514
  32705. }
  32706. },
  32707. },
  32708. [
  32709. {
  32710. name: "Normal",
  32711. height: math.unit(3.5, "meters"),
  32712. default: true
  32713. },
  32714. ]
  32715. ))
  32716. characterMakers.push(() => makeCharacter(
  32717. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32718. {
  32719. front: {
  32720. height: math.unit(3 + 5/12, "feet"),
  32721. name: "Front",
  32722. image: {
  32723. source: "./media/characters/mauve/front.svg",
  32724. extra: 1126/1033,
  32725. bottom: 65/1191
  32726. }
  32727. },
  32728. side: {
  32729. height: math.unit(3 + 5/12, "feet"),
  32730. name: "Side",
  32731. image: {
  32732. source: "./media/characters/mauve/side.svg",
  32733. extra: 1089/1001,
  32734. bottom: 29/1118
  32735. }
  32736. },
  32737. back: {
  32738. height: math.unit(3 + 5/12, "feet"),
  32739. name: "Back",
  32740. image: {
  32741. source: "./media/characters/mauve/back.svg",
  32742. extra: 1173/1053,
  32743. bottom: 109/1282
  32744. }
  32745. },
  32746. },
  32747. [
  32748. {
  32749. name: "Normal",
  32750. height: math.unit(3 + 5/12, "feet"),
  32751. default: true
  32752. },
  32753. ]
  32754. ))
  32755. characterMakers.push(() => makeCharacter(
  32756. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32757. {
  32758. front: {
  32759. height: math.unit(6 + 3/12, "feet"),
  32760. weight: math.unit(430, "lb"),
  32761. name: "Front",
  32762. image: {
  32763. source: "./media/characters/carlos/front.svg",
  32764. extra: 1964/1913,
  32765. bottom: 70/2034
  32766. }
  32767. },
  32768. },
  32769. [
  32770. {
  32771. name: "Normal",
  32772. height: math.unit(6 + 3/12, "feet"),
  32773. default: true
  32774. },
  32775. ]
  32776. ))
  32777. characterMakers.push(() => makeCharacter(
  32778. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32779. {
  32780. back: {
  32781. height: math.unit(5 + 10/12, "feet"),
  32782. weight: math.unit(200, "lb"),
  32783. name: "Back",
  32784. image: {
  32785. source: "./media/characters/jax/back.svg",
  32786. extra: 764/739,
  32787. bottom: 25/789
  32788. }
  32789. },
  32790. },
  32791. [
  32792. {
  32793. name: "Normal",
  32794. height: math.unit(5 + 10/12, "feet"),
  32795. default: true
  32796. },
  32797. ]
  32798. ))
  32799. characterMakers.push(() => makeCharacter(
  32800. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32801. {
  32802. front: {
  32803. height: math.unit(8, "feet"),
  32804. weight: math.unit(250, "lb"),
  32805. name: "Front",
  32806. image: {
  32807. source: "./media/characters/eikthynir/front.svg",
  32808. extra: 1332/1166,
  32809. bottom: 82/1414
  32810. }
  32811. },
  32812. back: {
  32813. height: math.unit(8, "feet"),
  32814. weight: math.unit(250, "lb"),
  32815. name: "Back",
  32816. image: {
  32817. source: "./media/characters/eikthynir/back.svg",
  32818. extra: 1342/1190,
  32819. bottom: 19/1361
  32820. }
  32821. },
  32822. dick: {
  32823. height: math.unit(2.35, "feet"),
  32824. name: "Dick",
  32825. image: {
  32826. source: "./media/characters/eikthynir/dick.svg"
  32827. }
  32828. },
  32829. },
  32830. [
  32831. {
  32832. name: "Normal",
  32833. height: math.unit(8, "feet"),
  32834. default: true
  32835. },
  32836. ]
  32837. ))
  32838. characterMakers.push(() => makeCharacter(
  32839. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32840. {
  32841. front: {
  32842. height: math.unit(99, "meters"),
  32843. weight: math.unit(13000, "tons"),
  32844. name: "Front",
  32845. image: {
  32846. source: "./media/characters/zlmos/front.svg",
  32847. extra: 2202/1992,
  32848. bottom: 315/2517
  32849. }
  32850. },
  32851. },
  32852. [
  32853. {
  32854. name: "Macro",
  32855. height: math.unit(99, "meters"),
  32856. default: true
  32857. },
  32858. ]
  32859. ))
  32860. characterMakers.push(() => makeCharacter(
  32861. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32862. {
  32863. front: {
  32864. height: math.unit(6 + 5/12, "feet"),
  32865. name: "Front",
  32866. image: {
  32867. source: "./media/characters/purri/front.svg",
  32868. extra: 1698/1610,
  32869. bottom: 32/1730
  32870. }
  32871. },
  32872. frontAlt: {
  32873. height: math.unit(6 + 5/12, "feet"),
  32874. name: "Front (Alt)",
  32875. image: {
  32876. source: "./media/characters/purri/front-alt.svg",
  32877. extra: 450/420,
  32878. bottom: 26/476
  32879. }
  32880. },
  32881. boots: {
  32882. height: math.unit(5.5, "feet"),
  32883. name: "Boots",
  32884. image: {
  32885. source: "./media/characters/purri/boots.svg",
  32886. extra: 905/853,
  32887. bottom: 18/923
  32888. }
  32889. },
  32890. lying: {
  32891. height: math.unit(2, "feet"),
  32892. name: "Lying",
  32893. image: {
  32894. source: "./media/characters/purri/lying.svg",
  32895. extra: 940/843,
  32896. bottom: 146/1086
  32897. }
  32898. },
  32899. devious: {
  32900. height: math.unit(1.77, "feet"),
  32901. name: "Devious",
  32902. image: {
  32903. source: "./media/characters/purri/devious.svg",
  32904. extra: 1440/1155,
  32905. bottom: 147/1587
  32906. }
  32907. },
  32908. bean: {
  32909. height: math.unit(1.94, "feet"),
  32910. name: "Bean",
  32911. image: {
  32912. source: "./media/characters/purri/bean.svg"
  32913. }
  32914. },
  32915. },
  32916. [
  32917. {
  32918. name: "Micro",
  32919. height: math.unit(1, "mm")
  32920. },
  32921. {
  32922. name: "Normal",
  32923. height: math.unit(6 + 5/12, "feet"),
  32924. default: true
  32925. },
  32926. {
  32927. name: "Macro :3c",
  32928. height: math.unit(2, "miles")
  32929. },
  32930. ]
  32931. ))
  32932. characterMakers.push(() => makeCharacter(
  32933. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32934. {
  32935. front: {
  32936. height: math.unit(6 + 2/12, "feet"),
  32937. weight: math.unit(250, "lb"),
  32938. name: "Front",
  32939. image: {
  32940. source: "./media/characters/moonlight/front.svg",
  32941. extra: 1044/908,
  32942. bottom: 56/1100
  32943. }
  32944. },
  32945. feral: {
  32946. height: math.unit(3 + 1/12, "feet"),
  32947. weight: math.unit(50, "kg"),
  32948. name: "Feral",
  32949. image: {
  32950. source: "./media/characters/moonlight/feral.svg",
  32951. extra: 3705/2791,
  32952. bottom: 145/3850
  32953. }
  32954. },
  32955. paw: {
  32956. height: math.unit(1, "feet"),
  32957. name: "Paw",
  32958. image: {
  32959. source: "./media/characters/moonlight/paw.svg"
  32960. }
  32961. },
  32962. paws: {
  32963. height: math.unit(0.98, "feet"),
  32964. name: "Paws",
  32965. image: {
  32966. source: "./media/characters/moonlight/paws.svg",
  32967. extra: 939/939,
  32968. bottom: 50/989
  32969. }
  32970. },
  32971. mouth: {
  32972. height: math.unit(0.48, "feet"),
  32973. name: "Mouth",
  32974. image: {
  32975. source: "./media/characters/moonlight/mouth.svg"
  32976. }
  32977. },
  32978. dick: {
  32979. height: math.unit(1.46, "feet"),
  32980. name: "Dick",
  32981. image: {
  32982. source: "./media/characters/moonlight/dick.svg"
  32983. }
  32984. },
  32985. },
  32986. [
  32987. {
  32988. name: "Normal",
  32989. height: math.unit(6 + 2/12, "feet"),
  32990. default: true
  32991. },
  32992. {
  32993. name: "Macro",
  32994. height: math.unit(300, "feet")
  32995. },
  32996. {
  32997. name: "Macro+",
  32998. height: math.unit(1, "mile")
  32999. },
  33000. {
  33001. name: "Mt. Moon",
  33002. height: math.unit(5, "miles")
  33003. },
  33004. {
  33005. name: "Megamacro",
  33006. height: math.unit(15, "miles")
  33007. },
  33008. ]
  33009. ))
  33010. characterMakers.push(() => makeCharacter(
  33011. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33012. {
  33013. back: {
  33014. height: math.unit(6, "feet"),
  33015. weight: math.unit(150, "lb"),
  33016. name: "Back",
  33017. image: {
  33018. source: "./media/characters/sylen/back.svg",
  33019. extra: 1335/1273,
  33020. bottom: 107/1442
  33021. }
  33022. },
  33023. },
  33024. [
  33025. {
  33026. name: "Normal",
  33027. height: math.unit(5 + 5/12, "feet")
  33028. },
  33029. {
  33030. name: "Megamacro",
  33031. height: math.unit(3, "miles"),
  33032. default: true
  33033. },
  33034. ]
  33035. ))
  33036. characterMakers.push(() => makeCharacter(
  33037. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33038. {
  33039. front: {
  33040. height: math.unit(6, "feet"),
  33041. weight: math.unit(190, "lb"),
  33042. name: "Front",
  33043. image: {
  33044. source: "./media/characters/huttser/front.svg",
  33045. extra: 1152/1058,
  33046. bottom: 23/1175
  33047. }
  33048. },
  33049. side: {
  33050. height: math.unit(6, "feet"),
  33051. weight: math.unit(190, "lb"),
  33052. name: "Side",
  33053. image: {
  33054. source: "./media/characters/huttser/side.svg",
  33055. extra: 1174/1065,
  33056. bottom: 18/1192
  33057. }
  33058. },
  33059. back: {
  33060. height: math.unit(6, "feet"),
  33061. weight: math.unit(190, "lb"),
  33062. name: "Back",
  33063. image: {
  33064. source: "./media/characters/huttser/back.svg",
  33065. extra: 1158/1056,
  33066. bottom: 12/1170
  33067. }
  33068. },
  33069. },
  33070. [
  33071. ]
  33072. ))
  33073. characterMakers.push(() => makeCharacter(
  33074. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33075. {
  33076. side: {
  33077. height: math.unit(12 + 9/12, "feet"),
  33078. weight: math.unit(15000, "lb"),
  33079. name: "Side",
  33080. image: {
  33081. source: "./media/characters/faan/side.svg",
  33082. extra: 2747/2697,
  33083. bottom: 0/2747
  33084. }
  33085. },
  33086. front: {
  33087. height: math.unit(12 + 9/12, "feet"),
  33088. weight: math.unit(15000, "lb"),
  33089. name: "Front",
  33090. image: {
  33091. source: "./media/characters/faan/front.svg",
  33092. extra: 607/571,
  33093. bottom: 24/631
  33094. }
  33095. },
  33096. head: {
  33097. height: math.unit(2.85, "feet"),
  33098. name: "Head",
  33099. image: {
  33100. source: "./media/characters/faan/head.svg"
  33101. }
  33102. },
  33103. headAlt: {
  33104. height: math.unit(3.13, "feet"),
  33105. name: "Head-alt",
  33106. image: {
  33107. source: "./media/characters/faan/head-alt.svg"
  33108. }
  33109. },
  33110. },
  33111. [
  33112. {
  33113. name: "Normal",
  33114. height: math.unit(12 + 9/12, "feet"),
  33115. default: true
  33116. },
  33117. ]
  33118. ))
  33119. characterMakers.push(() => makeCharacter(
  33120. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33121. {
  33122. front: {
  33123. height: math.unit(6, "feet"),
  33124. weight: math.unit(300, "lb"),
  33125. name: "Front",
  33126. image: {
  33127. source: "./media/characters/tanio/front.svg",
  33128. extra: 711/673,
  33129. bottom: 25/736
  33130. }
  33131. },
  33132. },
  33133. [
  33134. {
  33135. name: "Normal",
  33136. height: math.unit(6, "feet"),
  33137. default: true
  33138. },
  33139. ]
  33140. ))
  33141. characterMakers.push(() => makeCharacter(
  33142. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33143. {
  33144. front: {
  33145. height: math.unit(3, "inches"),
  33146. name: "Front",
  33147. image: {
  33148. source: "./media/characters/noboru/front.svg",
  33149. extra: 1039/932,
  33150. bottom: 18/1057
  33151. }
  33152. },
  33153. },
  33154. [
  33155. {
  33156. name: "Micro",
  33157. height: math.unit(3, "inches"),
  33158. default: true
  33159. },
  33160. ]
  33161. ))
  33162. characterMakers.push(() => makeCharacter(
  33163. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33164. {
  33165. front: {
  33166. height: math.unit(1.85, "meters"),
  33167. weight: math.unit(80, "kg"),
  33168. name: "Front",
  33169. image: {
  33170. source: "./media/characters/daniel-barrett/front.svg",
  33171. extra: 355/337,
  33172. bottom: 9/364
  33173. }
  33174. },
  33175. },
  33176. [
  33177. {
  33178. name: "Pico",
  33179. height: math.unit(0.0433, "mm")
  33180. },
  33181. {
  33182. name: "Nano",
  33183. height: math.unit(1.5, "mm")
  33184. },
  33185. {
  33186. name: "Micro",
  33187. height: math.unit(5.3, "cm"),
  33188. default: true
  33189. },
  33190. {
  33191. name: "Normal",
  33192. height: math.unit(1.85, "meters")
  33193. },
  33194. {
  33195. name: "Macro",
  33196. height: math.unit(64.7, "meters")
  33197. },
  33198. {
  33199. name: "Megamacro",
  33200. height: math.unit(2.26, "km")
  33201. },
  33202. {
  33203. name: "Gigamacro",
  33204. height: math.unit(79, "km")
  33205. },
  33206. {
  33207. name: "Teramacro",
  33208. height: math.unit(2765, "km")
  33209. },
  33210. {
  33211. name: "Petamacro",
  33212. height: math.unit(96678, "km")
  33213. },
  33214. ]
  33215. ))
  33216. characterMakers.push(() => makeCharacter(
  33217. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33218. {
  33219. front: {
  33220. height: math.unit(30, "meters"),
  33221. weight: math.unit(400, "tons"),
  33222. name: "Front",
  33223. image: {
  33224. source: "./media/characters/zeel/front.svg",
  33225. extra: 2599/2599,
  33226. bottom: 226/2825
  33227. }
  33228. },
  33229. },
  33230. [
  33231. {
  33232. name: "Macro",
  33233. height: math.unit(30, "meters"),
  33234. default: true
  33235. },
  33236. ]
  33237. ))
  33238. characterMakers.push(() => makeCharacter(
  33239. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33240. {
  33241. front: {
  33242. height: math.unit(6 + 7/12, "feet"),
  33243. weight: math.unit(210, "lb"),
  33244. name: "Front",
  33245. image: {
  33246. source: "./media/characters/tarn/front.svg",
  33247. extra: 3517/3220,
  33248. bottom: 91/3608
  33249. }
  33250. },
  33251. back: {
  33252. height: math.unit(6 + 7/12, "feet"),
  33253. weight: math.unit(210, "lb"),
  33254. name: "Back",
  33255. image: {
  33256. source: "./media/characters/tarn/back.svg",
  33257. extra: 3566/3241,
  33258. bottom: 34/3600
  33259. }
  33260. },
  33261. dick: {
  33262. height: math.unit(1.65, "feet"),
  33263. name: "Dick",
  33264. image: {
  33265. source: "./media/characters/tarn/dick.svg"
  33266. }
  33267. },
  33268. paw: {
  33269. height: math.unit(1.80, "feet"),
  33270. name: "Paw",
  33271. image: {
  33272. source: "./media/characters/tarn/paw.svg"
  33273. }
  33274. },
  33275. tongue: {
  33276. height: math.unit(0.97, "feet"),
  33277. name: "Tongue",
  33278. image: {
  33279. source: "./media/characters/tarn/tongue.svg"
  33280. }
  33281. },
  33282. },
  33283. [
  33284. {
  33285. name: "Micro",
  33286. height: math.unit(4, "inches")
  33287. },
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(6 + 7/12, "feet"),
  33291. default: true
  33292. },
  33293. {
  33294. name: "Macro",
  33295. height: math.unit(300, "feet")
  33296. },
  33297. ]
  33298. ))
  33299. characterMakers.push(() => makeCharacter(
  33300. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33301. {
  33302. front: {
  33303. height: math.unit(5 + 7/12, "feet"),
  33304. weight: math.unit(80, "kg"),
  33305. name: "Front",
  33306. image: {
  33307. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33308. extra: 3023/2865,
  33309. bottom: 33/3056
  33310. }
  33311. },
  33312. back: {
  33313. height: math.unit(5 + 7/12, "feet"),
  33314. weight: math.unit(80, "kg"),
  33315. name: "Back",
  33316. image: {
  33317. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33318. extra: 3020/2886,
  33319. bottom: 30/3050
  33320. }
  33321. },
  33322. dick: {
  33323. height: math.unit(0.98, "feet"),
  33324. name: "Dick",
  33325. image: {
  33326. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33327. }
  33328. },
  33329. anatomy: {
  33330. height: math.unit(2.86, "feet"),
  33331. name: "Anatomy",
  33332. image: {
  33333. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33334. }
  33335. },
  33336. },
  33337. [
  33338. {
  33339. name: "Really Small",
  33340. height: math.unit(2, "inches")
  33341. },
  33342. {
  33343. name: "Micro",
  33344. height: math.unit(5.583, "inches")
  33345. },
  33346. {
  33347. name: "Normal",
  33348. height: math.unit(5 + 7/12, "feet"),
  33349. default: true
  33350. },
  33351. {
  33352. name: "Macro",
  33353. height: math.unit(67, "feet")
  33354. },
  33355. {
  33356. name: "Megamacro",
  33357. height: math.unit(134, "feet")
  33358. },
  33359. ]
  33360. ))
  33361. characterMakers.push(() => makeCharacter(
  33362. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33363. {
  33364. front: {
  33365. height: math.unit(9, "feet"),
  33366. weight: math.unit(120, "lb"),
  33367. name: "Front",
  33368. image: {
  33369. source: "./media/characters/sally/front.svg",
  33370. extra: 1506/1349,
  33371. bottom: 66/1572
  33372. }
  33373. },
  33374. },
  33375. [
  33376. {
  33377. name: "Normal",
  33378. height: math.unit(9, "feet"),
  33379. default: true
  33380. },
  33381. ]
  33382. ))
  33383. characterMakers.push(() => makeCharacter(
  33384. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33385. {
  33386. front: {
  33387. height: math.unit(8, "feet"),
  33388. weight: math.unit(900, "lb"),
  33389. name: "Front",
  33390. image: {
  33391. source: "./media/characters/owen/front.svg",
  33392. extra: 1761/1657,
  33393. bottom: 74/1835
  33394. }
  33395. },
  33396. side: {
  33397. height: math.unit(8, "feet"),
  33398. weight: math.unit(900, "lb"),
  33399. name: "Side",
  33400. image: {
  33401. source: "./media/characters/owen/side.svg",
  33402. extra: 1797/1734,
  33403. bottom: 30/1827
  33404. }
  33405. },
  33406. back: {
  33407. height: math.unit(8, "feet"),
  33408. weight: math.unit(900, "lb"),
  33409. name: "Back",
  33410. image: {
  33411. source: "./media/characters/owen/back.svg",
  33412. extra: 1796/1706,
  33413. bottom: 59/1855
  33414. }
  33415. },
  33416. maw: {
  33417. height: math.unit(1.76, "feet"),
  33418. name: "Maw",
  33419. image: {
  33420. source: "./media/characters/owen/maw.svg"
  33421. }
  33422. },
  33423. },
  33424. [
  33425. {
  33426. name: "Normal",
  33427. height: math.unit(8, "feet"),
  33428. default: true
  33429. },
  33430. ]
  33431. ))
  33432. characterMakers.push(() => makeCharacter(
  33433. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33434. {
  33435. front: {
  33436. height: math.unit(4, "feet"),
  33437. weight: math.unit(400, "lb"),
  33438. name: "Front",
  33439. image: {
  33440. source: "./media/characters/ryth/front.svg",
  33441. extra: 1920/1748,
  33442. bottom: 42/1962
  33443. }
  33444. },
  33445. back: {
  33446. height: math.unit(4, "feet"),
  33447. weight: math.unit(400, "lb"),
  33448. name: "Back",
  33449. image: {
  33450. source: "./media/characters/ryth/back.svg",
  33451. extra: 1897/1690,
  33452. bottom: 89/1986
  33453. }
  33454. },
  33455. mouth: {
  33456. height: math.unit(1.39, "feet"),
  33457. name: "Mouth",
  33458. image: {
  33459. source: "./media/characters/ryth/mouth.svg"
  33460. }
  33461. },
  33462. tailmaw: {
  33463. height: math.unit(1.23, "feet"),
  33464. name: "Tailmaw",
  33465. image: {
  33466. source: "./media/characters/ryth/tailmaw.svg"
  33467. }
  33468. },
  33469. goia: {
  33470. height: math.unit(4, "meters"),
  33471. weight: math.unit(10800, "lb"),
  33472. name: "Goia",
  33473. image: {
  33474. source: "./media/characters/ryth/goia.svg",
  33475. extra: 745/640,
  33476. bottom: 107/852
  33477. }
  33478. },
  33479. goiaFront: {
  33480. height: math.unit(4, "meters"),
  33481. weight: math.unit(10800, "lb"),
  33482. name: "Goia (Front)",
  33483. image: {
  33484. source: "./media/characters/ryth/goia-front.svg",
  33485. extra: 750/586,
  33486. bottom: 114/864
  33487. }
  33488. },
  33489. goiaMaw: {
  33490. height: math.unit(5.55, "feet"),
  33491. name: "Goia Maw",
  33492. image: {
  33493. source: "./media/characters/ryth/goia-maw.svg"
  33494. }
  33495. },
  33496. goiaForepaw: {
  33497. height: math.unit(3.5, "feet"),
  33498. name: "Goia Forepaw",
  33499. image: {
  33500. source: "./media/characters/ryth/goia-forepaw.svg"
  33501. }
  33502. },
  33503. goiaHindpaw: {
  33504. height: math.unit(5.55, "feet"),
  33505. name: "Goia Hindpaw",
  33506. image: {
  33507. source: "./media/characters/ryth/goia-hindpaw.svg"
  33508. }
  33509. },
  33510. },
  33511. [
  33512. {
  33513. name: "Normal",
  33514. height: math.unit(4, "feet"),
  33515. default: true
  33516. },
  33517. ]
  33518. ))
  33519. characterMakers.push(() => makeCharacter(
  33520. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33521. {
  33522. front: {
  33523. height: math.unit(7, "feet"),
  33524. weight: math.unit(180, "lb"),
  33525. name: "Front",
  33526. image: {
  33527. source: "./media/characters/necrolance/front.svg",
  33528. extra: 1062/947,
  33529. bottom: 41/1103
  33530. }
  33531. },
  33532. back: {
  33533. height: math.unit(7, "feet"),
  33534. weight: math.unit(180, "lb"),
  33535. name: "Back",
  33536. image: {
  33537. source: "./media/characters/necrolance/back.svg",
  33538. extra: 1045/984,
  33539. bottom: 14/1059
  33540. }
  33541. },
  33542. wing: {
  33543. height: math.unit(2.67, "feet"),
  33544. name: "Wing",
  33545. image: {
  33546. source: "./media/characters/necrolance/wing.svg"
  33547. }
  33548. },
  33549. },
  33550. [
  33551. {
  33552. name: "Normal",
  33553. height: math.unit(7, "feet"),
  33554. default: true
  33555. },
  33556. ]
  33557. ))
  33558. characterMakers.push(() => makeCharacter(
  33559. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33560. {
  33561. front: {
  33562. height: math.unit(76, "meters"),
  33563. weight: math.unit(30000, "tons"),
  33564. name: "Front",
  33565. image: {
  33566. source: "./media/characters/tyler/front.svg",
  33567. extra: 1640/1640,
  33568. bottom: 114/1754
  33569. }
  33570. },
  33571. },
  33572. [
  33573. {
  33574. name: "Macro",
  33575. height: math.unit(76, "meters"),
  33576. default: true
  33577. },
  33578. ]
  33579. ))
  33580. characterMakers.push(() => makeCharacter(
  33581. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33582. {
  33583. front: {
  33584. height: math.unit(4 + 11/12, "feet"),
  33585. weight: math.unit(132, "lb"),
  33586. name: "Front",
  33587. image: {
  33588. source: "./media/characters/icey/front.svg",
  33589. extra: 2750/2550,
  33590. bottom: 33/2783
  33591. }
  33592. },
  33593. back: {
  33594. height: math.unit(4 + 11/12, "feet"),
  33595. weight: math.unit(132, "lb"),
  33596. name: "Back",
  33597. image: {
  33598. source: "./media/characters/icey/back.svg",
  33599. extra: 2624/2481,
  33600. bottom: 35/2659
  33601. }
  33602. },
  33603. },
  33604. [
  33605. {
  33606. name: "Normal",
  33607. height: math.unit(4 + 11/12, "feet"),
  33608. default: true
  33609. },
  33610. ]
  33611. ))
  33612. characterMakers.push(() => makeCharacter(
  33613. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33614. {
  33615. front: {
  33616. height: math.unit(100, "feet"),
  33617. weight: math.unit(0, "lb"),
  33618. name: "Front",
  33619. image: {
  33620. source: "./media/characters/smile/front.svg",
  33621. extra: 2983/2912,
  33622. bottom: 162/3145
  33623. }
  33624. },
  33625. back: {
  33626. height: math.unit(100, "feet"),
  33627. weight: math.unit(0, "lb"),
  33628. name: "Back",
  33629. image: {
  33630. source: "./media/characters/smile/back.svg",
  33631. extra: 3143/3031,
  33632. bottom: 91/3234
  33633. }
  33634. },
  33635. head: {
  33636. height: math.unit(26.3, "feet"),
  33637. weight: math.unit(0, "lb"),
  33638. name: "Head",
  33639. image: {
  33640. source: "./media/characters/smile/head.svg"
  33641. }
  33642. },
  33643. collar: {
  33644. height: math.unit(5.3, "feet"),
  33645. weight: math.unit(0, "lb"),
  33646. name: "Collar",
  33647. image: {
  33648. source: "./media/characters/smile/collar.svg"
  33649. }
  33650. },
  33651. },
  33652. [
  33653. {
  33654. name: "Macro",
  33655. height: math.unit(100, "feet"),
  33656. default: true
  33657. },
  33658. ]
  33659. ))
  33660. characterMakers.push(() => makeCharacter(
  33661. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33662. {
  33663. dragon: {
  33664. height: math.unit(26, "feet"),
  33665. weight: math.unit(36, "tons"),
  33666. name: "Dragon",
  33667. image: {
  33668. source: "./media/characters/arimphae/dragon.svg",
  33669. extra: 1574/983,
  33670. bottom: 357/1931
  33671. }
  33672. },
  33673. drake: {
  33674. height: math.unit(9, "feet"),
  33675. weight: math.unit(1.5, "tons"),
  33676. name: "Drake",
  33677. image: {
  33678. source: "./media/characters/arimphae/drake.svg",
  33679. extra: 1120/925,
  33680. bottom: 435/1555
  33681. }
  33682. },
  33683. },
  33684. [
  33685. {
  33686. name: "Small",
  33687. height: math.unit(26*5/9, "feet")
  33688. },
  33689. {
  33690. name: "Normal",
  33691. height: math.unit(26, "feet"),
  33692. default: true
  33693. },
  33694. ]
  33695. ))
  33696. characterMakers.push(() => makeCharacter(
  33697. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33698. {
  33699. front: {
  33700. height: math.unit(8 + 9/12, "feet"),
  33701. name: "Front",
  33702. image: {
  33703. source: "./media/characters/xander/front.svg",
  33704. extra: 1237/974,
  33705. bottom: 94/1331
  33706. }
  33707. },
  33708. },
  33709. [
  33710. {
  33711. name: "Normal",
  33712. height: math.unit(8 + 9/12, "feet"),
  33713. default: true
  33714. },
  33715. {
  33716. name: "Gaze Grabber",
  33717. height: math.unit(13 + 8/12, "feet")
  33718. },
  33719. {
  33720. name: "Jaw Dropper",
  33721. height: math.unit(27, "feet")
  33722. },
  33723. {
  33724. name: "Show Stopper",
  33725. height: math.unit(136, "feet")
  33726. },
  33727. {
  33728. name: "Superstar",
  33729. height: math.unit(1.9e6, "miles")
  33730. },
  33731. ]
  33732. ))
  33733. characterMakers.push(() => makeCharacter(
  33734. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33735. {
  33736. side: {
  33737. height: math.unit(2100, "feet"),
  33738. name: "Side",
  33739. image: {
  33740. source: "./media/characters/osiris/side.svg",
  33741. extra: 1105/939,
  33742. bottom: 167/1272
  33743. }
  33744. },
  33745. },
  33746. [
  33747. {
  33748. name: "Macro",
  33749. height: math.unit(2100, "feet"),
  33750. default: true
  33751. },
  33752. ]
  33753. ))
  33754. characterMakers.push(() => makeCharacter(
  33755. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33756. {
  33757. front: {
  33758. height: math.unit(6 + 8/12, "feet"),
  33759. weight: math.unit(225, "lb"),
  33760. name: "Front",
  33761. image: {
  33762. source: "./media/characters/rhys-londe/front.svg",
  33763. extra: 2258/2141,
  33764. bottom: 188/2446
  33765. }
  33766. },
  33767. back: {
  33768. height: math.unit(6 + 8/12, "feet"),
  33769. weight: math.unit(225, "lb"),
  33770. name: "Back",
  33771. image: {
  33772. source: "./media/characters/rhys-londe/back.svg",
  33773. extra: 2237/2137,
  33774. bottom: 63/2300
  33775. }
  33776. },
  33777. frontNsfw: {
  33778. height: math.unit(6 + 8/12, "feet"),
  33779. weight: math.unit(225, "lb"),
  33780. name: "Front (NSFW)",
  33781. image: {
  33782. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33783. extra: 2258/2141,
  33784. bottom: 188/2446
  33785. }
  33786. },
  33787. backNsfw: {
  33788. height: math.unit(6 + 8/12, "feet"),
  33789. weight: math.unit(225, "lb"),
  33790. name: "Back (NSFW)",
  33791. image: {
  33792. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33793. extra: 2237/2137,
  33794. bottom: 63/2300
  33795. }
  33796. },
  33797. dick: {
  33798. height: math.unit(30, "inches"),
  33799. name: "Dick",
  33800. image: {
  33801. source: "./media/characters/rhys-londe/dick.svg"
  33802. }
  33803. },
  33804. maw: {
  33805. height: math.unit(1.6, "feet"),
  33806. name: "Maw",
  33807. image: {
  33808. source: "./media/characters/rhys-londe/maw.svg"
  33809. }
  33810. },
  33811. },
  33812. [
  33813. {
  33814. name: "Normal",
  33815. height: math.unit(6 + 8/12, "feet"),
  33816. default: true
  33817. },
  33818. ]
  33819. ))
  33820. characterMakers.push(() => makeCharacter(
  33821. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33822. {
  33823. front: {
  33824. height: math.unit(3 + 10/12, "feet"),
  33825. weight: math.unit(90, "lb"),
  33826. name: "Front",
  33827. image: {
  33828. source: "./media/characters/taivas-ensim/front.svg",
  33829. extra: 1327/1216,
  33830. bottom: 96/1423
  33831. }
  33832. },
  33833. back: {
  33834. height: math.unit(3 + 10/12, "feet"),
  33835. weight: math.unit(90, "lb"),
  33836. name: "Back",
  33837. image: {
  33838. source: "./media/characters/taivas-ensim/back.svg",
  33839. extra: 1355/1247,
  33840. bottom: 11/1366
  33841. }
  33842. },
  33843. frontNsfw: {
  33844. height: math.unit(3 + 10/12, "feet"),
  33845. weight: math.unit(90, "lb"),
  33846. name: "Front (NSFW)",
  33847. image: {
  33848. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33849. extra: 1327/1216,
  33850. bottom: 96/1423
  33851. }
  33852. },
  33853. backNsfw: {
  33854. height: math.unit(3 + 10/12, "feet"),
  33855. weight: math.unit(90, "lb"),
  33856. name: "Back (NSFW)",
  33857. image: {
  33858. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33859. extra: 1355/1247,
  33860. bottom: 11/1366
  33861. }
  33862. },
  33863. },
  33864. [
  33865. {
  33866. name: "Normal",
  33867. height: math.unit(3 + 10/12, "feet"),
  33868. default: true
  33869. },
  33870. ]
  33871. ))
  33872. characterMakers.push(() => makeCharacter(
  33873. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33874. {
  33875. front: {
  33876. height: math.unit(9 + 6/12, "feet"),
  33877. weight: math.unit(940, "lb"),
  33878. name: "Front",
  33879. image: {
  33880. source: "./media/characters/byliss/front.svg",
  33881. extra: 1327/1290,
  33882. bottom: 82/1409
  33883. }
  33884. },
  33885. back: {
  33886. height: math.unit(9 + 6/12, "feet"),
  33887. weight: math.unit(940, "lb"),
  33888. name: "Back",
  33889. image: {
  33890. source: "./media/characters/byliss/back.svg",
  33891. extra: 1376/1349,
  33892. bottom: 9/1385
  33893. }
  33894. },
  33895. frontNsfw: {
  33896. height: math.unit(9 + 6/12, "feet"),
  33897. weight: math.unit(940, "lb"),
  33898. name: "Front (NSFW)",
  33899. image: {
  33900. source: "./media/characters/byliss/front-nsfw.svg",
  33901. extra: 1327/1290,
  33902. bottom: 82/1409
  33903. }
  33904. },
  33905. backNsfw: {
  33906. height: math.unit(9 + 6/12, "feet"),
  33907. weight: math.unit(940, "lb"),
  33908. name: "Back (NSFW)",
  33909. image: {
  33910. source: "./media/characters/byliss/back-nsfw.svg",
  33911. extra: 1376/1349,
  33912. bottom: 9/1385
  33913. }
  33914. },
  33915. },
  33916. [
  33917. {
  33918. name: "Normal",
  33919. height: math.unit(9 + 6/12, "feet"),
  33920. default: true
  33921. },
  33922. ]
  33923. ))
  33924. characterMakers.push(() => makeCharacter(
  33925. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33926. {
  33927. front: {
  33928. height: math.unit(5 + 2/12, "feet"),
  33929. weight: math.unit(200, "lb"),
  33930. name: "Front",
  33931. image: {
  33932. source: "./media/characters/noraly/front.svg",
  33933. extra: 4985/4773,
  33934. bottom: 150/5135
  33935. }
  33936. },
  33937. full: {
  33938. height: math.unit(5 + 2/12, "feet"),
  33939. weight: math.unit(164, "lb"),
  33940. name: "Full",
  33941. image: {
  33942. source: "./media/characters/noraly/full.svg",
  33943. extra: 1114/1059,
  33944. bottom: 35/1149
  33945. }
  33946. },
  33947. fuller: {
  33948. height: math.unit(5 + 2/12, "feet"),
  33949. weight: math.unit(230, "lb"),
  33950. name: "Fuller",
  33951. image: {
  33952. source: "./media/characters/noraly/fuller.svg",
  33953. extra: 1114/1059,
  33954. bottom: 35/1149
  33955. }
  33956. },
  33957. fullest: {
  33958. height: math.unit(5 + 2/12, "feet"),
  33959. weight: math.unit(300, "lb"),
  33960. name: "Fullest",
  33961. image: {
  33962. source: "./media/characters/noraly/fullest.svg",
  33963. extra: 1114/1059,
  33964. bottom: 35/1149
  33965. }
  33966. },
  33967. },
  33968. [
  33969. {
  33970. name: "Normal",
  33971. height: math.unit(5 + 2/12, "feet"),
  33972. default: true
  33973. },
  33974. ]
  33975. ))
  33976. characterMakers.push(() => makeCharacter(
  33977. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33978. {
  33979. front: {
  33980. height: math.unit(5 + 2/12, "feet"),
  33981. weight: math.unit(210, "lb"),
  33982. name: "Front",
  33983. image: {
  33984. source: "./media/characters/pera/front.svg",
  33985. extra: 1560/1531,
  33986. bottom: 165/1725
  33987. }
  33988. },
  33989. back: {
  33990. height: math.unit(5 + 2/12, "feet"),
  33991. weight: math.unit(210, "lb"),
  33992. name: "Back",
  33993. image: {
  33994. source: "./media/characters/pera/back.svg",
  33995. extra: 1523/1493,
  33996. bottom: 152/1675
  33997. }
  33998. },
  33999. dick: {
  34000. height: math.unit(2.4, "feet"),
  34001. name: "Dick",
  34002. image: {
  34003. source: "./media/characters/pera/dick.svg"
  34004. }
  34005. },
  34006. },
  34007. [
  34008. {
  34009. name: "Normal",
  34010. height: math.unit(5 + 2/12, "feet"),
  34011. default: true
  34012. },
  34013. ]
  34014. ))
  34015. characterMakers.push(() => makeCharacter(
  34016. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34017. {
  34018. front: {
  34019. height: math.unit(12, "feet"),
  34020. weight: math.unit(3200, "lb"),
  34021. name: "Front",
  34022. image: {
  34023. source: "./media/characters/julian/front.svg",
  34024. extra: 2962/2701,
  34025. bottom: 184/3146
  34026. }
  34027. },
  34028. maw: {
  34029. height: math.unit(5.35, "feet"),
  34030. name: "Maw",
  34031. image: {
  34032. source: "./media/characters/julian/maw.svg"
  34033. }
  34034. },
  34035. paw: {
  34036. height: math.unit(3.07, "feet"),
  34037. name: "Paw",
  34038. image: {
  34039. source: "./media/characters/julian/paw.svg"
  34040. }
  34041. },
  34042. },
  34043. [
  34044. {
  34045. name: "Default",
  34046. height: math.unit(12, "feet"),
  34047. default: true
  34048. },
  34049. {
  34050. name: "Big",
  34051. height: math.unit(50, "feet")
  34052. },
  34053. {
  34054. name: "Really Big",
  34055. height: math.unit(1, "mile")
  34056. },
  34057. {
  34058. name: "Extremely Big",
  34059. height: math.unit(100, "miles")
  34060. },
  34061. {
  34062. name: "Planet Hugger",
  34063. height: math.unit(200, "megameters")
  34064. },
  34065. {
  34066. name: "Unreasonably Big",
  34067. height: math.unit(1e300, "meters")
  34068. },
  34069. ]
  34070. ))
  34071. characterMakers.push(() => makeCharacter(
  34072. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34073. {
  34074. solgooleo: {
  34075. height: math.unit(4, "meters"),
  34076. weight: math.unit(6000*1.5, "kg"),
  34077. volume: math.unit(6000, "liters"),
  34078. name: "Solgooleo",
  34079. image: {
  34080. source: "./media/characters/pi/solgooleo.svg",
  34081. extra: 388/331,
  34082. bottom: 29/417
  34083. }
  34084. },
  34085. },
  34086. [
  34087. {
  34088. name: "Normal",
  34089. height: math.unit(4, "meters"),
  34090. default: true
  34091. },
  34092. ]
  34093. ))
  34094. characterMakers.push(() => makeCharacter(
  34095. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34096. {
  34097. front: {
  34098. height: math.unit(8, "feet"),
  34099. weight: math.unit(4, "tons"),
  34100. name: "Front",
  34101. image: {
  34102. source: "./media/characters/shaun/front.svg",
  34103. extra: 503/495,
  34104. bottom: 20/523
  34105. }
  34106. },
  34107. back: {
  34108. height: math.unit(8, "feet"),
  34109. weight: math.unit(4, "tons"),
  34110. name: "Back",
  34111. image: {
  34112. source: "./media/characters/shaun/back.svg",
  34113. extra: 487/480,
  34114. bottom: 20/507
  34115. }
  34116. },
  34117. },
  34118. [
  34119. {
  34120. name: "Lorg",
  34121. height: math.unit(8, "feet"),
  34122. default: true
  34123. },
  34124. ]
  34125. ))
  34126. characterMakers.push(() => makeCharacter(
  34127. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34128. {
  34129. frontAnthro: {
  34130. height: math.unit(7, "feet"),
  34131. name: "Front",
  34132. image: {
  34133. source: "./media/characters/sini/front-anthro.svg",
  34134. extra: 726/678,
  34135. bottom: 35/761
  34136. },
  34137. form: "anthro",
  34138. default: true
  34139. },
  34140. backAnthro: {
  34141. height: math.unit(7, "feet"),
  34142. name: "Back",
  34143. image: {
  34144. source: "./media/characters/sini/back-anthro.svg",
  34145. extra: 743/701,
  34146. bottom: 12/755
  34147. },
  34148. form: "anthro",
  34149. },
  34150. frontAnthroNsfw: {
  34151. height: math.unit(7, "feet"),
  34152. name: "Front (NSFW)",
  34153. image: {
  34154. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34155. extra: 726/678,
  34156. bottom: 35/761
  34157. },
  34158. form: "anthro"
  34159. },
  34160. backAnthroNsfw: {
  34161. height: math.unit(7, "feet"),
  34162. name: "Back (NSFW)",
  34163. image: {
  34164. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34165. extra: 743/701,
  34166. bottom: 12/755
  34167. },
  34168. form: "anthro",
  34169. },
  34170. mawAnthro: {
  34171. height: math.unit(2.14, "feet"),
  34172. name: "Maw",
  34173. image: {
  34174. source: "./media/characters/sini/maw-anthro.svg"
  34175. },
  34176. form: "anthro"
  34177. },
  34178. dick: {
  34179. height: math.unit(1.45, "feet"),
  34180. name: "Dick",
  34181. image: {
  34182. source: "./media/characters/sini/dick-anthro.svg"
  34183. },
  34184. form: "anthro"
  34185. },
  34186. feral: {
  34187. height: math.unit(16, "feet"),
  34188. name: "Feral",
  34189. image: {
  34190. source: "./media/characters/sini/feral.svg",
  34191. extra: 814/605,
  34192. bottom: 11/825
  34193. },
  34194. form: "feral",
  34195. default: true
  34196. },
  34197. feralNsfw: {
  34198. height: math.unit(16, "feet"),
  34199. name: "Feral (NSFW)",
  34200. image: {
  34201. source: "./media/characters/sini/feral-nsfw.svg",
  34202. extra: 814/605,
  34203. bottom: 11/825
  34204. },
  34205. form: "feral"
  34206. },
  34207. mawFeral: {
  34208. height: math.unit(5.66, "feet"),
  34209. name: "Maw",
  34210. image: {
  34211. source: "./media/characters/sini/maw-feral.svg"
  34212. },
  34213. form: "feral",
  34214. },
  34215. pawFeral: {
  34216. height: math.unit(5.17, "feet"),
  34217. name: "Paw",
  34218. image: {
  34219. source: "./media/characters/sini/paw-feral.svg"
  34220. },
  34221. form: "feral",
  34222. },
  34223. rumpFeral: {
  34224. height: math.unit(13.11, "feet"),
  34225. name: "Rump",
  34226. image: {
  34227. source: "./media/characters/sini/rump-feral.svg"
  34228. },
  34229. form: "feral",
  34230. },
  34231. dickFeral: {
  34232. height: math.unit(1, "feet"),
  34233. name: "Dick",
  34234. image: {
  34235. source: "./media/characters/sini/dick-feral.svg"
  34236. },
  34237. form: "feral",
  34238. },
  34239. eyeFeral: {
  34240. height: math.unit(1.23, "feet"),
  34241. name: "Eye",
  34242. image: {
  34243. source: "./media/characters/sini/eye-feral.svg"
  34244. },
  34245. form: "feral",
  34246. },
  34247. },
  34248. [
  34249. {
  34250. name: "Normal",
  34251. height: math.unit(7, "feet"),
  34252. default: true,
  34253. form: "anthro"
  34254. },
  34255. {
  34256. name: "Normal",
  34257. height: math.unit(16, "feet"),
  34258. default: true,
  34259. form: "feral"
  34260. },
  34261. ],
  34262. {
  34263. "anthro": {
  34264. name: "Anthro",
  34265. default: true
  34266. },
  34267. "feral": {
  34268. name: "Feral",
  34269. }
  34270. }
  34271. ))
  34272. characterMakers.push(() => makeCharacter(
  34273. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34274. {
  34275. side: {
  34276. height: math.unit(47.2, "meters"),
  34277. weight: math.unit(10000, "tons"),
  34278. name: "Side",
  34279. image: {
  34280. source: "./media/characters/raylldo/side.svg",
  34281. extra: 2363/642,
  34282. bottom: 221/2584
  34283. }
  34284. },
  34285. top: {
  34286. height: math.unit(240, "meters"),
  34287. weight: math.unit(10000, "tons"),
  34288. name: "Top",
  34289. image: {
  34290. source: "./media/characters/raylldo/top.svg"
  34291. }
  34292. },
  34293. bottom: {
  34294. height: math.unit(240, "meters"),
  34295. weight: math.unit(10000, "tons"),
  34296. name: "Bottom",
  34297. image: {
  34298. source: "./media/characters/raylldo/bottom.svg"
  34299. }
  34300. },
  34301. head: {
  34302. height: math.unit(38.6, "meters"),
  34303. name: "Head",
  34304. image: {
  34305. source: "./media/characters/raylldo/head.svg",
  34306. extra: 1335/1112,
  34307. bottom: 0/1335
  34308. }
  34309. },
  34310. maw: {
  34311. height: math.unit(16.37, "meters"),
  34312. name: "Maw",
  34313. image: {
  34314. source: "./media/characters/raylldo/maw.svg",
  34315. extra: 883/660,
  34316. bottom: 0/883
  34317. },
  34318. extraAttributes: {
  34319. preyCapacity: {
  34320. name: "Capacity",
  34321. power: 3,
  34322. type: "volume",
  34323. base: math.unit(1000, "people")
  34324. },
  34325. tongueSize: {
  34326. name: "Tongue Size",
  34327. power: 2,
  34328. type: "area",
  34329. base: math.unit(21, "m^2")
  34330. }
  34331. }
  34332. },
  34333. forepaw: {
  34334. height: math.unit(18, "meters"),
  34335. name: "Forepaw",
  34336. image: {
  34337. source: "./media/characters/raylldo/forepaw.svg"
  34338. }
  34339. },
  34340. hindpaw: {
  34341. height: math.unit(23, "meters"),
  34342. name: "Hindpaw",
  34343. image: {
  34344. source: "./media/characters/raylldo/hindpaw.svg"
  34345. }
  34346. },
  34347. genitals: {
  34348. height: math.unit(42, "meters"),
  34349. name: "Genitals",
  34350. image: {
  34351. source: "./media/characters/raylldo/genitals.svg"
  34352. }
  34353. },
  34354. },
  34355. [
  34356. {
  34357. name: "Normal",
  34358. height: math.unit(47.2, "meters"),
  34359. default: true
  34360. },
  34361. ]
  34362. ))
  34363. characterMakers.push(() => makeCharacter(
  34364. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34365. {
  34366. anthroFront: {
  34367. height: math.unit(9, "feet"),
  34368. weight: math.unit(600, "lb"),
  34369. name: "Anthro (Front)",
  34370. image: {
  34371. source: "./media/characters/glint/anthro-front.svg",
  34372. extra: 1097/1018,
  34373. bottom: 28/1125
  34374. }
  34375. },
  34376. anthroBack: {
  34377. height: math.unit(9, "feet"),
  34378. weight: math.unit(600, "lb"),
  34379. name: "Anthro (Back)",
  34380. image: {
  34381. source: "./media/characters/glint/anthro-back.svg",
  34382. extra: 1154/997,
  34383. bottom: 36/1190
  34384. }
  34385. },
  34386. feral: {
  34387. height: math.unit(11, "feet"),
  34388. weight: math.unit(50000, "lb"),
  34389. name: "Feral",
  34390. image: {
  34391. source: "./media/characters/glint/feral.svg",
  34392. extra: 3035/1585,
  34393. bottom: 1169/4204
  34394. }
  34395. },
  34396. dickAnthro: {
  34397. height: math.unit(0.7, "meters"),
  34398. name: "Dick (Anthro)",
  34399. image: {
  34400. source: "./media/characters/glint/dick-anthro.svg"
  34401. }
  34402. },
  34403. dickFeral: {
  34404. height: math.unit(2.65, "meters"),
  34405. name: "Dick (Feral)",
  34406. image: {
  34407. source: "./media/characters/glint/dick-feral.svg"
  34408. }
  34409. },
  34410. slitHidden: {
  34411. height: math.unit(5.85, "meters"),
  34412. name: "Slit (Hidden)",
  34413. image: {
  34414. source: "./media/characters/glint/slit-hidden.svg"
  34415. }
  34416. },
  34417. slitErect: {
  34418. height: math.unit(5.85, "meters"),
  34419. name: "Slit (Erect)",
  34420. image: {
  34421. source: "./media/characters/glint/slit-erect.svg"
  34422. }
  34423. },
  34424. mawAnthro: {
  34425. height: math.unit(0.63, "meters"),
  34426. name: "Maw (Anthro)",
  34427. image: {
  34428. source: "./media/characters/glint/maw.svg"
  34429. }
  34430. },
  34431. mawFeral: {
  34432. height: math.unit(2.89, "meters"),
  34433. name: "Maw (Feral)",
  34434. image: {
  34435. source: "./media/characters/glint/maw.svg"
  34436. }
  34437. },
  34438. },
  34439. [
  34440. {
  34441. name: "Normal",
  34442. height: math.unit(9, "feet"),
  34443. default: true
  34444. },
  34445. ]
  34446. ))
  34447. characterMakers.push(() => makeCharacter(
  34448. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34449. {
  34450. side: {
  34451. height: math.unit(15, "feet"),
  34452. weight: math.unit(5000, "kg"),
  34453. name: "Side",
  34454. image: {
  34455. source: "./media/characters/kairne/side.svg",
  34456. extra: 979/811,
  34457. bottom: 13/992
  34458. }
  34459. },
  34460. front: {
  34461. height: math.unit(15, "feet"),
  34462. weight: math.unit(5000, "kg"),
  34463. name: "Front",
  34464. image: {
  34465. source: "./media/characters/kairne/front.svg",
  34466. extra: 908/814,
  34467. bottom: 26/934
  34468. }
  34469. },
  34470. sideNsfw: {
  34471. height: math.unit(15, "feet"),
  34472. weight: math.unit(5000, "kg"),
  34473. name: "Side (NSFW)",
  34474. image: {
  34475. source: "./media/characters/kairne/side-nsfw.svg",
  34476. extra: 979/811,
  34477. bottom: 13/992
  34478. }
  34479. },
  34480. frontNsfw: {
  34481. height: math.unit(15, "feet"),
  34482. weight: math.unit(5000, "kg"),
  34483. name: "Front (NSFW)",
  34484. image: {
  34485. source: "./media/characters/kairne/front-nsfw.svg",
  34486. extra: 908/814,
  34487. bottom: 26/934
  34488. }
  34489. },
  34490. dickCaged: {
  34491. height: math.unit(0.65, "meters"),
  34492. name: "Dick-caged",
  34493. image: {
  34494. source: "./media/characters/kairne/dick-caged.svg"
  34495. }
  34496. },
  34497. dick: {
  34498. height: math.unit(0.79, "meters"),
  34499. name: "Dick",
  34500. image: {
  34501. source: "./media/characters/kairne/dick.svg"
  34502. }
  34503. },
  34504. genitals: {
  34505. height: math.unit(1.29, "meters"),
  34506. name: "Genitals",
  34507. image: {
  34508. source: "./media/characters/kairne/genitals.svg"
  34509. }
  34510. },
  34511. maw: {
  34512. height: math.unit(1.73, "meters"),
  34513. name: "Maw",
  34514. image: {
  34515. source: "./media/characters/kairne/maw.svg"
  34516. }
  34517. },
  34518. },
  34519. [
  34520. {
  34521. name: "Normal",
  34522. height: math.unit(15, "feet"),
  34523. default: true
  34524. },
  34525. ]
  34526. ))
  34527. characterMakers.push(() => makeCharacter(
  34528. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34529. {
  34530. front: {
  34531. height: math.unit(5 + 8/12, "feet"),
  34532. weight: math.unit(139, "lb"),
  34533. name: "Front",
  34534. image: {
  34535. source: "./media/characters/biscuit-jackal/front.svg",
  34536. extra: 2106/1961,
  34537. bottom: 58/2164
  34538. }
  34539. },
  34540. back: {
  34541. height: math.unit(5 + 8/12, "feet"),
  34542. weight: math.unit(139, "lb"),
  34543. name: "Back",
  34544. image: {
  34545. source: "./media/characters/biscuit-jackal/back.svg",
  34546. extra: 2132/1976,
  34547. bottom: 57/2189
  34548. }
  34549. },
  34550. werejackal: {
  34551. height: math.unit(6 + 3/12, "feet"),
  34552. weight: math.unit(188, "lb"),
  34553. name: "Werejackal",
  34554. image: {
  34555. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34556. extra: 2373/2178,
  34557. bottom: 53/2426
  34558. }
  34559. },
  34560. },
  34561. [
  34562. {
  34563. name: "Normal",
  34564. height: math.unit(5 + 8/12, "feet"),
  34565. default: true
  34566. },
  34567. ]
  34568. ))
  34569. characterMakers.push(() => makeCharacter(
  34570. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34571. {
  34572. front: {
  34573. height: math.unit(140, "cm"),
  34574. weight: math.unit(45, "kg"),
  34575. name: "Front",
  34576. image: {
  34577. source: "./media/characters/tayra-white/front.svg",
  34578. extra: 2229/2192,
  34579. bottom: 75/2304
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(140, "cm"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34593. {
  34594. front: {
  34595. height: math.unit(4 + 5/12, "feet"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/scoop/front.svg",
  34599. extra: 1257/1136,
  34600. bottom: 69/1326
  34601. }
  34602. },
  34603. back: {
  34604. height: math.unit(4 + 5/12, "feet"),
  34605. name: "Back",
  34606. image: {
  34607. source: "./media/characters/scoop/back.svg",
  34608. extra: 1321/1152,
  34609. bottom: 32/1353
  34610. }
  34611. },
  34612. maw: {
  34613. height: math.unit(0.68, "feet"),
  34614. name: "Maw",
  34615. image: {
  34616. source: "./media/characters/scoop/maw.svg"
  34617. }
  34618. },
  34619. },
  34620. [
  34621. {
  34622. name: "Really Small",
  34623. height: math.unit(1, "mm")
  34624. },
  34625. {
  34626. name: "Micro",
  34627. height: math.unit(1, "inch")
  34628. },
  34629. {
  34630. name: "Normal",
  34631. height: math.unit(4 + 5/12, "feet"),
  34632. default: true
  34633. },
  34634. {
  34635. name: "Macro",
  34636. height: math.unit(200, "feet")
  34637. },
  34638. {
  34639. name: "Megamacro",
  34640. height: math.unit(3240, "feet")
  34641. },
  34642. {
  34643. name: "Teramacro",
  34644. height: math.unit(2500, "miles")
  34645. },
  34646. ]
  34647. ))
  34648. characterMakers.push(() => makeCharacter(
  34649. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34650. {
  34651. front: {
  34652. height: math.unit(15 + 7/12, "feet"),
  34653. weight: math.unit(1150, "tons"),
  34654. name: "Front",
  34655. image: {
  34656. source: "./media/characters/saphinara/front.svg",
  34657. extra: 1837/1643,
  34658. bottom: 84/1921
  34659. },
  34660. form: "normal",
  34661. default: true
  34662. },
  34663. side: {
  34664. height: math.unit(15 + 7/12, "feet"),
  34665. weight: math.unit(1150, "tons"),
  34666. name: "Side",
  34667. image: {
  34668. source: "./media/characters/saphinara/side.svg",
  34669. extra: 605/547,
  34670. bottom: 6/611
  34671. },
  34672. form: "normal"
  34673. },
  34674. back: {
  34675. height: math.unit(15 + 7/12, "feet"),
  34676. weight: math.unit(1150, "tons"),
  34677. name: "Back",
  34678. image: {
  34679. source: "./media/characters/saphinara/back.svg",
  34680. extra: 591/531,
  34681. bottom: 13/604
  34682. },
  34683. form: "normal"
  34684. },
  34685. frontTail: {
  34686. height: math.unit(15 + 7/12, "feet"),
  34687. weight: math.unit(1150, "tons"),
  34688. name: "Front (Full Tail)",
  34689. image: {
  34690. source: "./media/characters/saphinara/front-tail.svg",
  34691. extra: 2256/1630,
  34692. bottom: 261/2517
  34693. },
  34694. form: "normal"
  34695. },
  34696. insides: {
  34697. height: math.unit(11.92, "feet"),
  34698. name: "Insides",
  34699. image: {
  34700. source: "./media/characters/saphinara/insides.svg"
  34701. },
  34702. form: "normal"
  34703. },
  34704. head: {
  34705. height: math.unit(4.17, "feet"),
  34706. name: "Head",
  34707. image: {
  34708. source: "./media/characters/saphinara/head.svg"
  34709. },
  34710. form: "normal"
  34711. },
  34712. tongue: {
  34713. height: math.unit(4.60, "feet"),
  34714. name: "Tongue",
  34715. image: {
  34716. source: "./media/characters/saphinara/tongue.svg"
  34717. },
  34718. form: "normal"
  34719. },
  34720. headEnraged: {
  34721. height: math.unit(5.55, "feet"),
  34722. name: "Head (Enraged)",
  34723. image: {
  34724. source: "./media/characters/saphinara/head-enraged.svg"
  34725. },
  34726. form: "normal"
  34727. },
  34728. wings: {
  34729. height: math.unit(11.95, "feet"),
  34730. name: "Wings",
  34731. image: {
  34732. source: "./media/characters/saphinara/wings.svg"
  34733. },
  34734. form: "normal"
  34735. },
  34736. feathers: {
  34737. height: math.unit(8.92, "feet"),
  34738. name: "Feathers",
  34739. image: {
  34740. source: "./media/characters/saphinara/feathers.svg"
  34741. },
  34742. form: "normal"
  34743. },
  34744. shackles: {
  34745. height: math.unit(2, "feet"),
  34746. name: "Shackles",
  34747. image: {
  34748. source: "./media/characters/saphinara/shackles.svg"
  34749. },
  34750. form: "normal"
  34751. },
  34752. eyes: {
  34753. height: math.unit(1.331, "feet"),
  34754. name: "Eyes",
  34755. image: {
  34756. source: "./media/characters/saphinara/eyes.svg"
  34757. },
  34758. form: "normal"
  34759. },
  34760. eyesEnraged: {
  34761. height: math.unit(1.331, "feet"),
  34762. name: "Eyes (Enraged)",
  34763. image: {
  34764. source: "./media/characters/saphinara/eyes-enraged.svg"
  34765. },
  34766. form: "normal"
  34767. },
  34768. trueFormSide: {
  34769. height: math.unit(200, "feet"),
  34770. weight: math.unit(1e7, "tons"),
  34771. name: "Side",
  34772. image: {
  34773. source: "./media/characters/saphinara/true-form-side.svg",
  34774. extra: 1399/770,
  34775. bottom: 97/1496
  34776. },
  34777. form: "true-form",
  34778. default: true
  34779. },
  34780. trueFormMaw: {
  34781. height: math.unit(71.5, "feet"),
  34782. name: "Maw",
  34783. image: {
  34784. source: "./media/characters/saphinara/true-form-maw.svg",
  34785. extra: 2302/1453,
  34786. bottom: 0/2302
  34787. },
  34788. form: "true-form"
  34789. },
  34790. meowberusSide: {
  34791. height: math.unit(75, "feet"),
  34792. weight: math.unit(180000, "kg"),
  34793. preyCapacity: math.unit(50000, "people"),
  34794. name: "Side",
  34795. image: {
  34796. source: "./media/characters/saphinara/meowberus-side.svg",
  34797. extra: 1400/711,
  34798. bottom: 126/1526
  34799. },
  34800. form: "meowberus",
  34801. extraAttributes: {
  34802. "pawArea": {
  34803. name: "Paw Size",
  34804. power: 2,
  34805. type: "area",
  34806. base: math.unit(35, "m^2")
  34807. }
  34808. }
  34809. },
  34810. },
  34811. [
  34812. {
  34813. name: "Normal",
  34814. height: math.unit(15 + 7/12, "feet"),
  34815. default: true,
  34816. form: "normal"
  34817. },
  34818. {
  34819. name: "Angry",
  34820. height: math.unit(30 + 6/12, "feet"),
  34821. form: "normal"
  34822. },
  34823. {
  34824. name: "Enraged",
  34825. height: math.unit(102 + 1/12, "feet"),
  34826. form: "normal"
  34827. },
  34828. {
  34829. name: "True",
  34830. height: math.unit(200, "feet"),
  34831. default: true,
  34832. form: "true-form"
  34833. },
  34834. {
  34835. name: "Normal",
  34836. height: math.unit(75, "feet"),
  34837. default: true,
  34838. form: "meowberus"
  34839. },
  34840. ],
  34841. {
  34842. "normal": {
  34843. name: "Normal",
  34844. default: true
  34845. },
  34846. "true-form": {
  34847. name: "True Form"
  34848. },
  34849. "meowberus": {
  34850. name: "Meowberus",
  34851. },
  34852. }
  34853. ))
  34854. characterMakers.push(() => makeCharacter(
  34855. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34856. {
  34857. front: {
  34858. height: math.unit(6 + 8/12, "feet"),
  34859. weight: math.unit(300, "lb"),
  34860. name: "Front",
  34861. image: {
  34862. source: "./media/characters/jrain/front.svg",
  34863. extra: 3039/2865,
  34864. bottom: 399/3438
  34865. }
  34866. },
  34867. back: {
  34868. height: math.unit(6 + 8/12, "feet"),
  34869. weight: math.unit(300, "lb"),
  34870. name: "Back",
  34871. image: {
  34872. source: "./media/characters/jrain/back.svg",
  34873. extra: 3089/2938,
  34874. bottom: 172/3261
  34875. }
  34876. },
  34877. head: {
  34878. height: math.unit(2.14, "feet"),
  34879. name: "Head",
  34880. image: {
  34881. source: "./media/characters/jrain/head.svg"
  34882. }
  34883. },
  34884. maw: {
  34885. height: math.unit(1.77, "feet"),
  34886. name: "Maw",
  34887. image: {
  34888. source: "./media/characters/jrain/maw.svg"
  34889. }
  34890. },
  34891. leftHand: {
  34892. height: math.unit(1.1, "feet"),
  34893. name: "Left Hand",
  34894. image: {
  34895. source: "./media/characters/jrain/left-hand.svg"
  34896. }
  34897. },
  34898. rightHand: {
  34899. height: math.unit(1.1, "feet"),
  34900. name: "Right Hand",
  34901. image: {
  34902. source: "./media/characters/jrain/right-hand.svg"
  34903. }
  34904. },
  34905. eye: {
  34906. height: math.unit(0.35, "feet"),
  34907. name: "Eye",
  34908. image: {
  34909. source: "./media/characters/jrain/eye.svg"
  34910. }
  34911. },
  34912. },
  34913. [
  34914. {
  34915. name: "Normal",
  34916. height: math.unit(6 + 8/12, "feet"),
  34917. default: true
  34918. },
  34919. {
  34920. name: "Casually Large",
  34921. height: math.unit(25, "feet")
  34922. },
  34923. {
  34924. name: "Giant",
  34925. height: math.unit(100, "feet")
  34926. },
  34927. {
  34928. name: "Kaiju",
  34929. height: math.unit(300, "feet")
  34930. },
  34931. ]
  34932. ))
  34933. characterMakers.push(() => makeCharacter(
  34934. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34935. {
  34936. dragon: {
  34937. height: math.unit(5, "meters"),
  34938. name: "Dragon",
  34939. image: {
  34940. source: "./media/characters/sabrina/dragon.svg",
  34941. extra: 3670 / 2365,
  34942. bottom: 333 / 4003
  34943. }
  34944. },
  34945. gryphon: {
  34946. height: math.unit(3, "meters"),
  34947. name: "Gryphon",
  34948. image: {
  34949. source: "./media/characters/sabrina/gryphon.svg",
  34950. extra: 1576 / 945,
  34951. bottom: 71 / 1647
  34952. }
  34953. },
  34954. snake: {
  34955. height: math.unit(12, "meters"),
  34956. name: "Snake",
  34957. image: {
  34958. source: "./media/characters/sabrina/snake.svg",
  34959. extra: 1758 / 1320,
  34960. bottom: 186 / 1944
  34961. }
  34962. },
  34963. collar: {
  34964. height: math.unit(1.86, "meters"),
  34965. name: "Collar",
  34966. image: {
  34967. source: "./media/characters/sabrina/collar.svg"
  34968. }
  34969. },
  34970. eye: {
  34971. height: math.unit(0.53, "meters"),
  34972. name: "Eye",
  34973. image: {
  34974. source: "./media/characters/sabrina/eye.svg"
  34975. }
  34976. },
  34977. foot: {
  34978. height: math.unit(1.86, "meters"),
  34979. name: "Foot",
  34980. image: {
  34981. source: "./media/characters/sabrina/foot.svg"
  34982. }
  34983. },
  34984. hand: {
  34985. height: math.unit(1.32, "meters"),
  34986. name: "Hand",
  34987. image: {
  34988. source: "./media/characters/sabrina/hand.svg"
  34989. }
  34990. },
  34991. head: {
  34992. height: math.unit(2.44, "meters"),
  34993. name: "Head",
  34994. image: {
  34995. source: "./media/characters/sabrina/head.svg"
  34996. }
  34997. },
  34998. headAngry: {
  34999. height: math.unit(2.44, "meters"),
  35000. name: "Head (Angry))",
  35001. image: {
  35002. source: "./media/characters/sabrina/head-angry.svg"
  35003. }
  35004. },
  35005. maw: {
  35006. height: math.unit(1.65, "meters"),
  35007. name: "Maw",
  35008. image: {
  35009. source: "./media/characters/sabrina/maw.svg"
  35010. }
  35011. },
  35012. spikes: {
  35013. height: math.unit(1.69, "meters"),
  35014. name: "Spikes",
  35015. image: {
  35016. source: "./media/characters/sabrina/spikes.svg"
  35017. }
  35018. },
  35019. stomach: {
  35020. height: math.unit(1.15, "meters"),
  35021. name: "Stomach",
  35022. image: {
  35023. source: "./media/characters/sabrina/stomach.svg"
  35024. }
  35025. },
  35026. tongue: {
  35027. height: math.unit(1.27, "meters"),
  35028. name: "Tongue",
  35029. image: {
  35030. source: "./media/characters/sabrina/tongue.svg"
  35031. }
  35032. },
  35033. wingDorsal: {
  35034. height: math.unit(4.85, "meters"),
  35035. name: "Wing (Dorsal)",
  35036. image: {
  35037. source: "./media/characters/sabrina/wing-dorsal.svg"
  35038. }
  35039. },
  35040. wingVentral: {
  35041. height: math.unit(4.85, "meters"),
  35042. name: "Wing (Ventral)",
  35043. image: {
  35044. source: "./media/characters/sabrina/wing-ventral.svg"
  35045. }
  35046. },
  35047. },
  35048. [
  35049. {
  35050. name: "Normal",
  35051. height: math.unit(5, "meters"),
  35052. default: true
  35053. },
  35054. ]
  35055. ))
  35056. characterMakers.push(() => makeCharacter(
  35057. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35058. {
  35059. frontMaid: {
  35060. height: math.unit(5 + 5/12, "feet"),
  35061. weight: math.unit(130, "lb"),
  35062. name: "Front (Maid)",
  35063. image: {
  35064. source: "./media/characters/midnight-tales/front-maid.svg",
  35065. extra: 489/454,
  35066. bottom: 61/550
  35067. }
  35068. },
  35069. frontFormal: {
  35070. height: math.unit(5 + 5/12, "feet"),
  35071. weight: math.unit(130, "lb"),
  35072. name: "Front (Formal)",
  35073. image: {
  35074. source: "./media/characters/midnight-tales/front-formal.svg",
  35075. extra: 489/454,
  35076. bottom: 61/550
  35077. }
  35078. },
  35079. back: {
  35080. height: math.unit(5 + 5/12, "feet"),
  35081. weight: math.unit(130, "lb"),
  35082. name: "Back",
  35083. image: {
  35084. source: "./media/characters/midnight-tales/back.svg",
  35085. extra: 498/456,
  35086. bottom: 33/531
  35087. }
  35088. },
  35089. frontBeast: {
  35090. height: math.unit(40, "feet"),
  35091. weight: math.unit(64000, "lb"),
  35092. name: "Front (Beast)",
  35093. image: {
  35094. source: "./media/characters/midnight-tales/front-beast.svg",
  35095. extra: 927/860,
  35096. bottom: 53/980
  35097. }
  35098. },
  35099. backBeast: {
  35100. height: math.unit(40, "feet"),
  35101. weight: math.unit(64000, "lb"),
  35102. name: "Back (Beast)",
  35103. image: {
  35104. source: "./media/characters/midnight-tales/back-beast.svg",
  35105. extra: 929/855,
  35106. bottom: 16/945
  35107. }
  35108. },
  35109. footBeast: {
  35110. height: math.unit(6.7, "feet"),
  35111. name: "Foot (Beast)",
  35112. image: {
  35113. source: "./media/characters/midnight-tales/foot-beast.svg"
  35114. }
  35115. },
  35116. headBeast: {
  35117. height: math.unit(8, "feet"),
  35118. name: "Head (Beast)",
  35119. image: {
  35120. source: "./media/characters/midnight-tales/head-beast.svg"
  35121. }
  35122. },
  35123. },
  35124. [
  35125. {
  35126. name: "Normal",
  35127. height: math.unit(5 + 5 / 12, "feet"),
  35128. default: true
  35129. },
  35130. {
  35131. name: "Macro",
  35132. height: math.unit(25, "feet")
  35133. },
  35134. ]
  35135. ))
  35136. characterMakers.push(() => makeCharacter(
  35137. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35138. {
  35139. front: {
  35140. height: math.unit(5 + 10/12, "feet"),
  35141. name: "Front",
  35142. image: {
  35143. source: "./media/characters/argon/front.svg",
  35144. extra: 2009/1935,
  35145. bottom: 118/2127
  35146. }
  35147. },
  35148. back: {
  35149. height: math.unit(5 + 10/12, "feet"),
  35150. name: "Back",
  35151. image: {
  35152. source: "./media/characters/argon/back.svg",
  35153. extra: 2047/1992,
  35154. bottom: 20/2067
  35155. }
  35156. },
  35157. frontDressed: {
  35158. height: math.unit(5 + 10/12, "feet"),
  35159. name: "Front (Dressed)",
  35160. image: {
  35161. source: "./media/characters/argon/front-dressed.svg",
  35162. extra: 2009/1935,
  35163. bottom: 118/2127
  35164. }
  35165. },
  35166. },
  35167. [
  35168. {
  35169. name: "Normal",
  35170. height: math.unit(5 + 10/12, "feet"),
  35171. default: true
  35172. },
  35173. ]
  35174. ))
  35175. characterMakers.push(() => makeCharacter(
  35176. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35177. {
  35178. front: {
  35179. height: math.unit(8 + 6/12, "feet"),
  35180. weight: math.unit(1150, "lb"),
  35181. name: "Front",
  35182. image: {
  35183. source: "./media/characters/kichi/front.svg",
  35184. extra: 1267/1164,
  35185. bottom: 61/1328
  35186. }
  35187. },
  35188. back: {
  35189. height: math.unit(8 + 6/12, "feet"),
  35190. weight: math.unit(1150, "lb"),
  35191. name: "Back",
  35192. image: {
  35193. source: "./media/characters/kichi/back.svg",
  35194. extra: 1273/1166,
  35195. bottom: 33/1306
  35196. }
  35197. },
  35198. },
  35199. [
  35200. {
  35201. name: "Normal",
  35202. height: math.unit(8 + 6/12, "feet"),
  35203. default: true
  35204. },
  35205. ]
  35206. ))
  35207. characterMakers.push(() => makeCharacter(
  35208. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35209. {
  35210. front: {
  35211. height: math.unit(6, "feet"),
  35212. weight: math.unit(210, "lb"),
  35213. name: "Front",
  35214. image: {
  35215. source: "./media/characters/manetel-greyscale/front.svg",
  35216. extra: 350/312,
  35217. bottom: 8/358
  35218. }
  35219. },
  35220. },
  35221. [
  35222. {
  35223. name: "Micro",
  35224. height: math.unit(2, "inches")
  35225. },
  35226. {
  35227. name: "Normal",
  35228. height: math.unit(6, "feet"),
  35229. default: true
  35230. },
  35231. {
  35232. name: "Minimacro",
  35233. height: math.unit(17, "feet")
  35234. },
  35235. {
  35236. name: "Macro",
  35237. height: math.unit(117, "feet")
  35238. },
  35239. ]
  35240. ))
  35241. characterMakers.push(() => makeCharacter(
  35242. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35243. {
  35244. side: {
  35245. height: math.unit(5 + 1/12, "feet"),
  35246. weight: math.unit(418, "lb"),
  35247. name: "Side",
  35248. image: {
  35249. source: "./media/characters/softpurr/side.svg",
  35250. extra: 1993/1945,
  35251. bottom: 134/2127
  35252. }
  35253. },
  35254. front: {
  35255. height: math.unit(5 + 1/12, "feet"),
  35256. weight: math.unit(418, "lb"),
  35257. name: "Front",
  35258. image: {
  35259. source: "./media/characters/softpurr/front.svg",
  35260. extra: 1950/1856,
  35261. bottom: 174/2124
  35262. }
  35263. },
  35264. paw: {
  35265. height: math.unit(1, "feet"),
  35266. name: "Paw",
  35267. image: {
  35268. source: "./media/characters/softpurr/paw.svg"
  35269. }
  35270. },
  35271. },
  35272. [
  35273. {
  35274. name: "Normal",
  35275. height: math.unit(5 + 1/12, "feet"),
  35276. default: true
  35277. },
  35278. ]
  35279. ))
  35280. characterMakers.push(() => makeCharacter(
  35281. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35282. {
  35283. front: {
  35284. height: math.unit(260, "meters"),
  35285. name: "Front",
  35286. image: {
  35287. source: "./media/characters/anahita/front.svg",
  35288. extra: 665/635,
  35289. bottom: 89/754
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Macro",
  35296. height: math.unit(260, "meters"),
  35297. default: true
  35298. },
  35299. ]
  35300. ))
  35301. characterMakers.push(() => makeCharacter(
  35302. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35303. {
  35304. front: {
  35305. height: math.unit(4 + 10/12, "feet"),
  35306. weight: math.unit(160, "lb"),
  35307. name: "Front",
  35308. image: {
  35309. source: "./media/characters/chip-mouse/front.svg",
  35310. extra: 3528/3408,
  35311. bottom: 0/3528
  35312. }
  35313. },
  35314. frontNsfw: {
  35315. height: math.unit(4 + 10/12, "feet"),
  35316. weight: math.unit(160, "lb"),
  35317. name: "Front (NSFW)",
  35318. image: {
  35319. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35320. extra: 3528/3408,
  35321. bottom: 0/3528
  35322. }
  35323. },
  35324. },
  35325. [
  35326. {
  35327. name: "Normal",
  35328. height: math.unit(4 + 10/12, "feet"),
  35329. default: true
  35330. },
  35331. ]
  35332. ))
  35333. characterMakers.push(() => makeCharacter(
  35334. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35335. {
  35336. side: {
  35337. height: math.unit(10, "feet"),
  35338. weight: math.unit(14000, "lb"),
  35339. name: "Side",
  35340. image: {
  35341. source: "./media/characters/kremm/side.svg",
  35342. extra: 1390/1053,
  35343. bottom: 90/1480
  35344. }
  35345. },
  35346. gut: {
  35347. height: math.unit(5.8, "feet"),
  35348. name: "Gut",
  35349. image: {
  35350. source: "./media/characters/kremm/gut.svg"
  35351. }
  35352. },
  35353. ass: {
  35354. height: math.unit(6.1, "feet"),
  35355. name: "Ass",
  35356. image: {
  35357. source: "./media/characters/kremm/ass.svg"
  35358. }
  35359. },
  35360. jaws: {
  35361. height: math.unit(2.2, "feet"),
  35362. name: "Jaws",
  35363. image: {
  35364. source: "./media/characters/kremm/jaws.svg"
  35365. }
  35366. },
  35367. dick: {
  35368. height: math.unit(4.26, "feet"),
  35369. name: "Dick",
  35370. image: {
  35371. source: "./media/characters/kremm/dick.svg"
  35372. }
  35373. },
  35374. },
  35375. [
  35376. {
  35377. name: "Normal",
  35378. height: math.unit(10, "feet"),
  35379. default: true
  35380. },
  35381. ]
  35382. ))
  35383. characterMakers.push(() => makeCharacter(
  35384. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35385. {
  35386. front: {
  35387. height: math.unit(30, "stories"),
  35388. name: "Front",
  35389. image: {
  35390. source: "./media/characters/kai/front.svg",
  35391. extra: 1892/1718,
  35392. bottom: 162/2054
  35393. }
  35394. },
  35395. },
  35396. [
  35397. {
  35398. name: "Macro",
  35399. height: math.unit(30, "stories"),
  35400. default: true
  35401. },
  35402. ]
  35403. ))
  35404. characterMakers.push(() => makeCharacter(
  35405. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35406. {
  35407. front: {
  35408. height: math.unit(6 + 4/12, "feet"),
  35409. weight: math.unit(145, "lb"),
  35410. name: "Front",
  35411. image: {
  35412. source: "./media/characters/sykes/front.svg",
  35413. extra: 1321 / 1187,
  35414. bottom: 66 / 1387
  35415. }
  35416. },
  35417. back: {
  35418. height: math.unit(6 + 4/12, "feet"),
  35419. weight: math.unit(145, "lb"),
  35420. name: "Back",
  35421. image: {
  35422. source: "./media/characters/sykes/back.svg",
  35423. extra: 1326/1181,
  35424. bottom: 31/1357
  35425. }
  35426. },
  35427. traditionalOutfit: {
  35428. height: math.unit(6 + 4/12, "feet"),
  35429. weight: math.unit(145, "lb"),
  35430. name: "Traditional Outfit",
  35431. image: {
  35432. source: "./media/characters/sykes/traditional-outfit.svg",
  35433. extra: 1321 / 1187,
  35434. bottom: 66 / 1387
  35435. }
  35436. },
  35437. adventureOutfit: {
  35438. height: math.unit(6 + 4/12, "feet"),
  35439. weight: math.unit(145, "lb"),
  35440. name: "Adventure Outfit",
  35441. image: {
  35442. source: "./media/characters/sykes/adventure-outfit.svg",
  35443. extra: 1321 / 1187,
  35444. bottom: 66 / 1387
  35445. }
  35446. },
  35447. handLeft: {
  35448. height: math.unit(0.9, "feet"),
  35449. name: "Hand (Left)",
  35450. image: {
  35451. source: "./media/characters/sykes/hand-left.svg"
  35452. }
  35453. },
  35454. handRight: {
  35455. height: math.unit(0.839, "feet"),
  35456. name: "Hand (Right)",
  35457. image: {
  35458. source: "./media/characters/sykes/hand-right.svg"
  35459. }
  35460. },
  35461. leftFoot: {
  35462. height: math.unit(1.2, "feet"),
  35463. name: "Foot (Left)",
  35464. image: {
  35465. source: "./media/characters/sykes/foot-left.svg"
  35466. }
  35467. },
  35468. rightFoot: {
  35469. height: math.unit(1.2, "feet"),
  35470. name: "Foot (Right)",
  35471. image: {
  35472. source: "./media/characters/sykes/foot-right.svg"
  35473. }
  35474. },
  35475. maw: {
  35476. height: math.unit(1.93, "feet"),
  35477. name: "Maw",
  35478. image: {
  35479. source: "./media/characters/sykes/maw.svg"
  35480. }
  35481. },
  35482. teeth: {
  35483. height: math.unit(0.51, "feet"),
  35484. name: "Teeth",
  35485. image: {
  35486. source: "./media/characters/sykes/teeth.svg"
  35487. }
  35488. },
  35489. tongue: {
  35490. height: math.unit(2.13, "feet"),
  35491. name: "Tongue",
  35492. image: {
  35493. source: "./media/characters/sykes/tongue.svg"
  35494. }
  35495. },
  35496. uvula: {
  35497. height: math.unit(0.16, "feet"),
  35498. name: "Uvula",
  35499. image: {
  35500. source: "./media/characters/sykes/uvula.svg"
  35501. }
  35502. },
  35503. collar: {
  35504. height: math.unit(0.287, "feet"),
  35505. name: "Collar",
  35506. image: {
  35507. source: "./media/characters/sykes/collar.svg"
  35508. }
  35509. },
  35510. tail: {
  35511. height: math.unit(3.8, "feet"),
  35512. name: "Tail",
  35513. image: {
  35514. source: "./media/characters/sykes/tail.svg"
  35515. }
  35516. },
  35517. },
  35518. [
  35519. {
  35520. name: "Shrunken",
  35521. height: math.unit(5, "inches")
  35522. },
  35523. {
  35524. name: "Normal",
  35525. height: math.unit(6 + 4 / 12, "feet"),
  35526. default: true
  35527. },
  35528. {
  35529. name: "Big",
  35530. height: math.unit(15, "feet")
  35531. },
  35532. ]
  35533. ))
  35534. characterMakers.push(() => makeCharacter(
  35535. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35536. {
  35537. front: {
  35538. height: math.unit(5 + 8/12, "feet"),
  35539. weight: math.unit(190, "lb"),
  35540. name: "Front",
  35541. image: {
  35542. source: "./media/characters/oven-otter/front.svg",
  35543. extra: 1809/1740,
  35544. bottom: 181/1990
  35545. }
  35546. },
  35547. back: {
  35548. height: math.unit(5 + 8/12, "feet"),
  35549. weight: math.unit(190, "lb"),
  35550. name: "Back",
  35551. image: {
  35552. source: "./media/characters/oven-otter/back.svg",
  35553. extra: 1709/1635,
  35554. bottom: 118/1827
  35555. }
  35556. },
  35557. hand: {
  35558. height: math.unit(1.07, "feet"),
  35559. name: "Hand",
  35560. image: {
  35561. source: "./media/characters/oven-otter/hand.svg"
  35562. }
  35563. },
  35564. beans: {
  35565. height: math.unit(1.74, "feet"),
  35566. name: "Beans",
  35567. image: {
  35568. source: "./media/characters/oven-otter/beans.svg"
  35569. }
  35570. },
  35571. },
  35572. [
  35573. {
  35574. name: "Micro",
  35575. height: math.unit(0.5, "inches")
  35576. },
  35577. {
  35578. name: "Normal",
  35579. height: math.unit(5 + 8/12, "feet"),
  35580. default: true
  35581. },
  35582. {
  35583. name: "Macro",
  35584. height: math.unit(250, "feet")
  35585. },
  35586. {
  35587. name: "Really High",
  35588. height: math.unit(420, "feet")
  35589. },
  35590. ]
  35591. ))
  35592. characterMakers.push(() => makeCharacter(
  35593. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35594. {
  35595. front: {
  35596. height: math.unit(5, "meters"),
  35597. weight: math.unit(292000000000000, "kg"),
  35598. name: "Front",
  35599. image: {
  35600. source: "./media/characters/devourer/front.svg",
  35601. extra: 1800/1733,
  35602. bottom: 211/2011
  35603. }
  35604. },
  35605. maw: {
  35606. height: math.unit(1.1, "meter"),
  35607. name: "Maw",
  35608. image: {
  35609. source: "./media/characters/devourer/maw.svg"
  35610. }
  35611. },
  35612. },
  35613. [
  35614. {
  35615. name: "Small",
  35616. height: math.unit(3, "meters")
  35617. },
  35618. {
  35619. name: "Large",
  35620. height: math.unit(5, "meters"),
  35621. default: true
  35622. },
  35623. ]
  35624. ))
  35625. characterMakers.push(() => makeCharacter(
  35626. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35627. {
  35628. front: {
  35629. height: math.unit(6, "feet"),
  35630. weight: math.unit(400, "lb"),
  35631. name: "Front",
  35632. image: {
  35633. source: "./media/characters/ellarby/front.svg",
  35634. extra: 1909/1763,
  35635. bottom: 80/1989
  35636. }
  35637. },
  35638. back: {
  35639. height: math.unit(6, "feet"),
  35640. weight: math.unit(400, "lb"),
  35641. name: "Back",
  35642. image: {
  35643. source: "./media/characters/ellarby/back.svg",
  35644. extra: 1914/1784,
  35645. bottom: 172/2086
  35646. }
  35647. },
  35648. },
  35649. [
  35650. {
  35651. name: "Mischief",
  35652. height: math.unit(18, "inches")
  35653. },
  35654. {
  35655. name: "Trouble",
  35656. height: math.unit(12, "feet")
  35657. },
  35658. {
  35659. name: "Havoc",
  35660. height: math.unit(200, "feet"),
  35661. default: true
  35662. },
  35663. {
  35664. name: "Pandemonium",
  35665. height: math.unit(1, "mile")
  35666. },
  35667. {
  35668. name: "Catastrophe",
  35669. height: math.unit(100, "miles")
  35670. },
  35671. ]
  35672. ))
  35673. characterMakers.push(() => makeCharacter(
  35674. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35675. {
  35676. front: {
  35677. height: math.unit(4.7, "meters"),
  35678. weight: math.unit(6500, "kg"),
  35679. name: "Front",
  35680. image: {
  35681. source: "./media/characters/vex/front.svg",
  35682. extra: 1288/1140,
  35683. bottom: 100/1388
  35684. }
  35685. },
  35686. },
  35687. [
  35688. {
  35689. name: "Normal",
  35690. height: math.unit(4.7, "meters"),
  35691. default: true
  35692. },
  35693. ]
  35694. ))
  35695. characterMakers.push(() => makeCharacter(
  35696. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35697. {
  35698. normal: {
  35699. height: math.unit(6, "feet"),
  35700. weight: math.unit(350, "lb"),
  35701. name: "Normal",
  35702. image: {
  35703. source: "./media/characters/teshy/normal.svg",
  35704. extra: 1795/1735,
  35705. bottom: 16/1811
  35706. }
  35707. },
  35708. monsterFront: {
  35709. height: math.unit(12, "feet"),
  35710. weight: math.unit(4700, "lb"),
  35711. name: "Monster (Front)",
  35712. image: {
  35713. source: "./media/characters/teshy/monster-front.svg",
  35714. extra: 2042/2034,
  35715. bottom: 128/2170
  35716. }
  35717. },
  35718. monsterSide: {
  35719. height: math.unit(12, "feet"),
  35720. weight: math.unit(4700, "lb"),
  35721. name: "Monster (Side)",
  35722. image: {
  35723. source: "./media/characters/teshy/monster-side.svg",
  35724. extra: 2067/2056,
  35725. bottom: 70/2137
  35726. }
  35727. },
  35728. monsterBack: {
  35729. height: math.unit(12, "feet"),
  35730. weight: math.unit(4700, "lb"),
  35731. name: "Monster (Back)",
  35732. image: {
  35733. source: "./media/characters/teshy/monster-back.svg",
  35734. extra: 1921/1914,
  35735. bottom: 171/2092
  35736. }
  35737. },
  35738. },
  35739. [
  35740. {
  35741. name: "Normal",
  35742. height: math.unit(6, "feet"),
  35743. default: true
  35744. },
  35745. ]
  35746. ))
  35747. characterMakers.push(() => makeCharacter(
  35748. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35749. {
  35750. front: {
  35751. height: math.unit(6, "feet"),
  35752. name: "Front",
  35753. image: {
  35754. source: "./media/characters/ramey/front.svg",
  35755. extra: 790/787,
  35756. bottom: 27/817
  35757. }
  35758. },
  35759. },
  35760. [
  35761. {
  35762. name: "Normal",
  35763. height: math.unit(6, "feet"),
  35764. default: true
  35765. },
  35766. ]
  35767. ))
  35768. characterMakers.push(() => makeCharacter(
  35769. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35770. {
  35771. front: {
  35772. height: math.unit(5 + 5/12, "feet"),
  35773. weight: math.unit(120, "lb"),
  35774. name: "Front",
  35775. image: {
  35776. source: "./media/characters/phirae/front.svg",
  35777. extra: 2491/2436,
  35778. bottom: 38/2529
  35779. }
  35780. },
  35781. },
  35782. [
  35783. {
  35784. name: "Normal",
  35785. height: math.unit(5 + 5/12, "feet"),
  35786. default: true
  35787. },
  35788. ]
  35789. ))
  35790. characterMakers.push(() => makeCharacter(
  35791. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35792. {
  35793. front: {
  35794. height: math.unit(5 + 3/12, "feet"),
  35795. name: "Front",
  35796. image: {
  35797. source: "./media/characters/stagglas/front.svg",
  35798. extra: 962/882,
  35799. bottom: 53/1015
  35800. }
  35801. },
  35802. feral: {
  35803. height: math.unit(335, "cm"),
  35804. name: "Feral",
  35805. image: {
  35806. source: "./media/characters/stagglas/feral.svg",
  35807. extra: 1732/1090,
  35808. bottom: 48/1780
  35809. }
  35810. },
  35811. },
  35812. [
  35813. {
  35814. name: "Normal",
  35815. height: math.unit(5 + 3/12, "feet"),
  35816. default: true
  35817. },
  35818. ]
  35819. ))
  35820. characterMakers.push(() => makeCharacter(
  35821. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35822. {
  35823. front: {
  35824. height: math.unit(5 + 4/12, "feet"),
  35825. weight: math.unit(145, "lb"),
  35826. name: "Front",
  35827. image: {
  35828. source: "./media/characters/starra/front.svg",
  35829. extra: 1790/1691,
  35830. bottom: 91/1881
  35831. }
  35832. },
  35833. },
  35834. [
  35835. {
  35836. name: "Normal",
  35837. height: math.unit(5 + 4/12, "feet"),
  35838. default: true
  35839. },
  35840. ]
  35841. ))
  35842. characterMakers.push(() => makeCharacter(
  35843. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35844. {
  35845. front: {
  35846. height: math.unit(2.2, "meters"),
  35847. name: "Front",
  35848. image: {
  35849. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35850. extra: 1194/1005,
  35851. bottom: 25/1219
  35852. }
  35853. },
  35854. },
  35855. [
  35856. {
  35857. name: "Normal",
  35858. height: math.unit(2.2, "meters"),
  35859. default: true
  35860. },
  35861. ]
  35862. ))
  35863. characterMakers.push(() => makeCharacter(
  35864. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35865. {
  35866. side: {
  35867. height: math.unit(8 + 2/12, "feet"),
  35868. weight: math.unit(1240, "lb"),
  35869. name: "Side",
  35870. image: {
  35871. source: "./media/characters/mika-valentine/side.svg",
  35872. extra: 2670/2501,
  35873. bottom: 250/2920
  35874. }
  35875. },
  35876. },
  35877. [
  35878. {
  35879. name: "Normal",
  35880. height: math.unit(8 + 2/12, "feet"),
  35881. default: true
  35882. },
  35883. ]
  35884. ))
  35885. characterMakers.push(() => makeCharacter(
  35886. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35887. {
  35888. front: {
  35889. height: math.unit(7 + 2/12, "feet"),
  35890. name: "Front",
  35891. image: {
  35892. source: "./media/characters/xoltol/front.svg",
  35893. extra: 2212/2124,
  35894. bottom: 84/2296
  35895. }
  35896. },
  35897. side: {
  35898. height: math.unit(7 + 2/12, "feet"),
  35899. name: "Side",
  35900. image: {
  35901. source: "./media/characters/xoltol/side.svg",
  35902. extra: 2273/2197,
  35903. bottom: 26/2299
  35904. }
  35905. },
  35906. hand: {
  35907. height: math.unit(2.5, "feet"),
  35908. name: "Hand",
  35909. image: {
  35910. source: "./media/characters/xoltol/hand.svg"
  35911. }
  35912. },
  35913. },
  35914. [
  35915. {
  35916. name: "Small-ish",
  35917. height: math.unit(5 + 11/12, "feet")
  35918. },
  35919. {
  35920. name: "Normal",
  35921. height: math.unit(7 + 2/12, "feet")
  35922. },
  35923. {
  35924. name: "\"Macro\"",
  35925. height: math.unit(14 + 9/12, "feet"),
  35926. default: true
  35927. },
  35928. {
  35929. name: "Alternate Height",
  35930. height: math.unit(20, "feet")
  35931. },
  35932. {
  35933. name: "Actually Macro",
  35934. height: math.unit(100, "feet")
  35935. },
  35936. ]
  35937. ))
  35938. characterMakers.push(() => makeCharacter(
  35939. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35940. {
  35941. front: {
  35942. height: math.unit(5 + 2/12, "feet"),
  35943. name: "Front",
  35944. image: {
  35945. source: "./media/characters/kotetsu-redwood/front.svg",
  35946. extra: 1053/942,
  35947. bottom: 60/1113
  35948. }
  35949. },
  35950. },
  35951. [
  35952. {
  35953. name: "Normal",
  35954. height: math.unit(5 + 2/12, "feet"),
  35955. default: true
  35956. },
  35957. ]
  35958. ))
  35959. characterMakers.push(() => makeCharacter(
  35960. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35961. {
  35962. front: {
  35963. height: math.unit(2.4, "meters"),
  35964. weight: math.unit(125, "kg"),
  35965. name: "Front",
  35966. image: {
  35967. source: "./media/characters/lilith/front.svg",
  35968. extra: 1590/1513,
  35969. bottom: 203/1793
  35970. }
  35971. },
  35972. },
  35973. [
  35974. {
  35975. name: "Humanoid",
  35976. height: math.unit(2.4, "meters")
  35977. },
  35978. {
  35979. name: "Normal",
  35980. height: math.unit(6, "meters"),
  35981. default: true
  35982. },
  35983. {
  35984. name: "Largest",
  35985. height: math.unit(55, "meters")
  35986. },
  35987. ]
  35988. ))
  35989. characterMakers.push(() => makeCharacter(
  35990. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35991. {
  35992. front: {
  35993. height: math.unit(8 + 4/12, "feet"),
  35994. weight: math.unit(535, "lb"),
  35995. name: "Front",
  35996. image: {
  35997. source: "./media/characters/beh'kah-bolger/front.svg",
  35998. extra: 1660/1603,
  35999. bottom: 37/1697
  36000. }
  36001. },
  36002. },
  36003. [
  36004. {
  36005. name: "Normal",
  36006. height: math.unit(8 + 4/12, "feet"),
  36007. default: true
  36008. },
  36009. {
  36010. name: "Kaiju",
  36011. height: math.unit(250, "feet")
  36012. },
  36013. {
  36014. name: "Still Growing",
  36015. height: math.unit(10, "miles")
  36016. },
  36017. {
  36018. name: "Continental",
  36019. height: math.unit(5000, "miles")
  36020. },
  36021. {
  36022. name: "Final Form",
  36023. height: math.unit(2500000, "miles")
  36024. },
  36025. ]
  36026. ))
  36027. characterMakers.push(() => makeCharacter(
  36028. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36029. {
  36030. front: {
  36031. height: math.unit(7 + 2/12, "feet"),
  36032. weight: math.unit(230, "kg"),
  36033. name: "Front",
  36034. image: {
  36035. source: "./media/characters/tatyana-milewska/front.svg",
  36036. extra: 1199/1150,
  36037. bottom: 86/1285
  36038. }
  36039. },
  36040. },
  36041. [
  36042. {
  36043. name: "Normal",
  36044. height: math.unit(7 + 2/12, "feet"),
  36045. default: true
  36046. },
  36047. {
  36048. name: "Big",
  36049. height: math.unit(12, "feet")
  36050. },
  36051. {
  36052. name: "Minimacro",
  36053. height: math.unit(20, "feet")
  36054. },
  36055. {
  36056. name: "Macro",
  36057. height: math.unit(120, "feet")
  36058. },
  36059. ]
  36060. ))
  36061. characterMakers.push(() => makeCharacter(
  36062. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36063. {
  36064. front: {
  36065. height: math.unit(7 + 8/12, "feet"),
  36066. weight: math.unit(152, "kg"),
  36067. name: "Front",
  36068. image: {
  36069. source: "./media/characters/helen-arri/front.svg",
  36070. extra: 440/423,
  36071. bottom: 14/454
  36072. }
  36073. },
  36074. back: {
  36075. height: math.unit(7 + 8/12, "feet"),
  36076. weight: math.unit(152, "kg"),
  36077. name: "Back",
  36078. image: {
  36079. source: "./media/characters/helen-arri/back.svg",
  36080. extra: 443/426,
  36081. bottom: 8/451
  36082. }
  36083. },
  36084. },
  36085. [
  36086. {
  36087. name: "Normal",
  36088. height: math.unit(7 + 8/12, "feet"),
  36089. default: true
  36090. },
  36091. {
  36092. name: "Big",
  36093. height: math.unit(14, "feet")
  36094. },
  36095. {
  36096. name: "Minimacro",
  36097. height: math.unit(24, "feet")
  36098. },
  36099. {
  36100. name: "Macro",
  36101. height: math.unit(140, "feet")
  36102. },
  36103. ]
  36104. ))
  36105. characterMakers.push(() => makeCharacter(
  36106. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36107. {
  36108. front: {
  36109. height: math.unit(6, "meters"),
  36110. name: "Front",
  36111. image: {
  36112. source: "./media/characters/ehanu-rehu/front.svg",
  36113. extra: 1800/1800,
  36114. bottom: 59/1859
  36115. }
  36116. },
  36117. },
  36118. [
  36119. {
  36120. name: "Normal",
  36121. height: math.unit(6, "meters"),
  36122. default: true
  36123. },
  36124. ]
  36125. ))
  36126. characterMakers.push(() => makeCharacter(
  36127. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36128. {
  36129. front: {
  36130. height: math.unit(7 + 3/12, "feet"),
  36131. name: "Front",
  36132. image: {
  36133. source: "./media/characters/renholder/front.svg",
  36134. extra: 3096/2960,
  36135. bottom: 250/3346
  36136. }
  36137. },
  36138. },
  36139. [
  36140. {
  36141. name: "Normal Bat",
  36142. height: math.unit(7 + 3/12, "feet"),
  36143. default: true
  36144. },
  36145. {
  36146. name: "Slightly Tall Bat",
  36147. height: math.unit(100, "feet")
  36148. },
  36149. {
  36150. name: "Big Bat",
  36151. height: math.unit(1000, "feet")
  36152. },
  36153. {
  36154. name: "City-Sized Bat",
  36155. height: math.unit(200000, "feet")
  36156. },
  36157. {
  36158. name: "Bigger Bat",
  36159. height: math.unit(10000, "miles")
  36160. },
  36161. {
  36162. name: "Solar Sized Bat",
  36163. height: math.unit(100, "AU")
  36164. },
  36165. {
  36166. name: "Galactic Bat",
  36167. height: math.unit(200000, "lightyears")
  36168. },
  36169. {
  36170. name: "Universally Known Bat",
  36171. height: math.unit(1, "universe")
  36172. },
  36173. ]
  36174. ))
  36175. characterMakers.push(() => makeCharacter(
  36176. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36177. {
  36178. front: {
  36179. height: math.unit(6 + 11/12, "feet"),
  36180. weight: math.unit(250, "lb"),
  36181. name: "Front",
  36182. image: {
  36183. source: "./media/characters/cookiecat/front.svg",
  36184. extra: 893/827,
  36185. bottom: 14/907
  36186. }
  36187. },
  36188. },
  36189. [
  36190. {
  36191. name: "Micro",
  36192. height: math.unit(3, "inches")
  36193. },
  36194. {
  36195. name: "Normal",
  36196. height: math.unit(6 + 11/12, "feet"),
  36197. default: true
  36198. },
  36199. {
  36200. name: "Macro",
  36201. height: math.unit(100, "feet")
  36202. },
  36203. {
  36204. name: "Macro+",
  36205. height: math.unit(404, "feet")
  36206. },
  36207. {
  36208. name: "Megamacro",
  36209. height: math.unit(165, "miles")
  36210. },
  36211. {
  36212. name: "Planetary",
  36213. height: math.unit(4600, "miles")
  36214. },
  36215. ]
  36216. ))
  36217. characterMakers.push(() => makeCharacter(
  36218. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36219. {
  36220. front: {
  36221. height: math.unit(10 + 3/12, "feet"),
  36222. weight: math.unit(1500, "lb"),
  36223. name: "Front",
  36224. image: {
  36225. source: "./media/characters/tux-kusanagi/front.svg",
  36226. extra: 944/840,
  36227. bottom: 39/983
  36228. }
  36229. },
  36230. back: {
  36231. height: math.unit(10 + 3/12, "feet"),
  36232. weight: math.unit(1500, "lb"),
  36233. name: "Back",
  36234. image: {
  36235. source: "./media/characters/tux-kusanagi/back.svg",
  36236. extra: 941/842,
  36237. bottom: 28/969
  36238. }
  36239. },
  36240. rump: {
  36241. height: math.unit(5.25, "feet"),
  36242. name: "Rump",
  36243. image: {
  36244. source: "./media/characters/tux-kusanagi/rump.svg"
  36245. }
  36246. },
  36247. beak: {
  36248. height: math.unit(1.54, "feet"),
  36249. name: "Beak",
  36250. image: {
  36251. source: "./media/characters/tux-kusanagi/beak.svg"
  36252. }
  36253. },
  36254. },
  36255. [
  36256. {
  36257. name: "Normal",
  36258. height: math.unit(10 + 3/12, "feet"),
  36259. default: true
  36260. },
  36261. ]
  36262. ))
  36263. characterMakers.push(() => makeCharacter(
  36264. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36265. {
  36266. front: {
  36267. height: math.unit(58, "feet"),
  36268. weight: math.unit(200, "tons"),
  36269. name: "Front",
  36270. image: {
  36271. source: "./media/characters/uzarmazari/front.svg",
  36272. extra: 1575/1455,
  36273. bottom: 152/1727
  36274. }
  36275. },
  36276. back: {
  36277. height: math.unit(58, "feet"),
  36278. weight: math.unit(200, "tons"),
  36279. name: "Back",
  36280. image: {
  36281. source: "./media/characters/uzarmazari/back.svg",
  36282. extra: 1585/1510,
  36283. bottom: 157/1742
  36284. }
  36285. },
  36286. head: {
  36287. height: math.unit(26, "feet"),
  36288. name: "Head",
  36289. image: {
  36290. source: "./media/characters/uzarmazari/head.svg"
  36291. }
  36292. },
  36293. },
  36294. [
  36295. {
  36296. name: "Normal",
  36297. height: math.unit(58, "feet"),
  36298. default: true
  36299. },
  36300. ]
  36301. ))
  36302. characterMakers.push(() => makeCharacter(
  36303. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36304. {
  36305. side: {
  36306. height: math.unit(15, "feet"),
  36307. name: "Side",
  36308. image: {
  36309. source: "./media/characters/akitu/side.svg",
  36310. extra: 1421/1321,
  36311. bottom: 157/1578
  36312. }
  36313. },
  36314. front: {
  36315. height: math.unit(15, "feet"),
  36316. name: "Front",
  36317. image: {
  36318. source: "./media/characters/akitu/front.svg",
  36319. extra: 1435/1326,
  36320. bottom: 232/1667
  36321. }
  36322. },
  36323. },
  36324. [
  36325. {
  36326. name: "Normal",
  36327. height: math.unit(15, "feet"),
  36328. default: true
  36329. },
  36330. ]
  36331. ))
  36332. characterMakers.push(() => makeCharacter(
  36333. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36334. {
  36335. front: {
  36336. height: math.unit(10 + 8/12, "feet"),
  36337. name: "Front",
  36338. image: {
  36339. source: "./media/characters/azalie-croixland/front.svg",
  36340. extra: 1972/1856,
  36341. bottom: 31/2003
  36342. }
  36343. },
  36344. },
  36345. [
  36346. {
  36347. name: "Original Height",
  36348. height: math.unit(5 + 4/12, "feet")
  36349. },
  36350. {
  36351. name: "Normal Height",
  36352. height: math.unit(10 + 8/12, "feet"),
  36353. default: true
  36354. },
  36355. ]
  36356. ))
  36357. characterMakers.push(() => makeCharacter(
  36358. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36359. {
  36360. side: {
  36361. height: math.unit(7 + 1/12, "feet"),
  36362. weight: math.unit(245, "lb"),
  36363. name: "Side",
  36364. image: {
  36365. source: "./media/characters/kavus-kazian/side.svg",
  36366. extra: 349/342,
  36367. bottom: 15/364
  36368. }
  36369. },
  36370. },
  36371. [
  36372. {
  36373. name: "Normal",
  36374. height: math.unit(7 + 1/12, "feet"),
  36375. default: true
  36376. },
  36377. ]
  36378. ))
  36379. characterMakers.push(() => makeCharacter(
  36380. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36381. {
  36382. normalFront: {
  36383. height: math.unit(5 + 11/12, "feet"),
  36384. name: "Front",
  36385. image: {
  36386. source: "./media/characters/moonlight-rose/normal-front.svg",
  36387. extra: 1980/1825,
  36388. bottom: 18/1998
  36389. },
  36390. form: "normal",
  36391. default: true
  36392. },
  36393. normalBack: {
  36394. height: math.unit(5 + 11/12, "feet"),
  36395. name: "Back",
  36396. image: {
  36397. source: "./media/characters/moonlight-rose/normal-back.svg",
  36398. extra: 2010/1839,
  36399. bottom: 10/2020
  36400. },
  36401. form: "normal"
  36402. },
  36403. demonFront: {
  36404. height: math.unit(1.5, "earths"),
  36405. name: "Front",
  36406. image: {
  36407. source: "./media/characters/moonlight-rose/demon.svg",
  36408. extra: 1400/1294,
  36409. bottom: 45/1445
  36410. },
  36411. form: "demon",
  36412. default: true
  36413. },
  36414. terraFront: {
  36415. height: math.unit(1.5, "earths"),
  36416. name: "Front",
  36417. image: {
  36418. source: "./media/characters/moonlight-rose/terra.svg"
  36419. },
  36420. form: "terra",
  36421. default: true
  36422. },
  36423. jupiterFront: {
  36424. height: math.unit(69911*2, "km"),
  36425. name: "Front",
  36426. image: {
  36427. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36428. extra: 1367/1286,
  36429. bottom: 55/1422
  36430. },
  36431. form: "jupiter",
  36432. default: true
  36433. },
  36434. neptuneFront: {
  36435. height: math.unit(24622*2, "feet"),
  36436. name: "Front",
  36437. image: {
  36438. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36439. extra: 1851/1712,
  36440. bottom: 0/1851
  36441. },
  36442. form: "neptune",
  36443. default: true
  36444. },
  36445. },
  36446. [
  36447. {
  36448. name: "\"Natural\" Height",
  36449. height: math.unit(5 + 11/12, "feet"),
  36450. form: "normal"
  36451. },
  36452. {
  36453. name: "Smallest comfortable size",
  36454. height: math.unit(40, "meters"),
  36455. form: "normal"
  36456. },
  36457. {
  36458. name: "Common size",
  36459. height: math.unit(50, "km"),
  36460. form: "normal",
  36461. default: true
  36462. },
  36463. {
  36464. name: "Normal",
  36465. height: math.unit(1.5, "earths"),
  36466. form: "demon",
  36467. default: true
  36468. },
  36469. {
  36470. name: "Universal",
  36471. height: math.unit(15, "universes"),
  36472. form: "demon"
  36473. },
  36474. {
  36475. name: "Earth",
  36476. height: math.unit(1.5, "earths"),
  36477. form: "terra",
  36478. default: true
  36479. },
  36480. {
  36481. name: "Super Earth",
  36482. height: math.unit(67.5, "earths"),
  36483. form: "terra"
  36484. },
  36485. {
  36486. name: "Doesn't fit in a solar system...",
  36487. height: math.unit(1, "galaxy"),
  36488. form: "terra"
  36489. },
  36490. {
  36491. name: "Saturn",
  36492. height: math.unit(58232*2, "km"),
  36493. form: "jupiter"
  36494. },
  36495. {
  36496. name: "Jupiter",
  36497. height: math.unit(69911*2, "km"),
  36498. form: "jupiter",
  36499. default: true
  36500. },
  36501. {
  36502. name: "HD 100546 b",
  36503. height: math.unit(482938, "km"),
  36504. form: "jupiter"
  36505. },
  36506. {
  36507. name: "Enceladus",
  36508. height: math.unit(513*2, "km"),
  36509. form: "neptune"
  36510. },
  36511. {
  36512. name: "Europe",
  36513. height: math.unit(1560*2, "km"),
  36514. form: "neptune"
  36515. },
  36516. {
  36517. name: "Neptune",
  36518. height: math.unit(24622*2, "km"),
  36519. form: "neptune",
  36520. default: true
  36521. },
  36522. {
  36523. name: "CoRoT-9b",
  36524. height: math.unit(75067*2, "km"),
  36525. form: "neptune"
  36526. },
  36527. ],
  36528. {
  36529. "normal": {
  36530. name: "Normal",
  36531. default: true
  36532. },
  36533. "demon": {
  36534. name: "Demon"
  36535. },
  36536. "terra": {
  36537. name: "Terra"
  36538. },
  36539. "jupiter": {
  36540. name: "Jupiter"
  36541. },
  36542. "neptune": {
  36543. name: "Neptune"
  36544. }
  36545. }
  36546. ))
  36547. characterMakers.push(() => makeCharacter(
  36548. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36549. {
  36550. front: {
  36551. height: math.unit(16, "feet"),
  36552. weight: math.unit(610, "kg"),
  36553. name: "Front",
  36554. image: {
  36555. source: "./media/characters/huckle/front.svg",
  36556. extra: 1731/1625,
  36557. bottom: 33/1764
  36558. }
  36559. },
  36560. back: {
  36561. height: math.unit(16, "feet"),
  36562. weight: math.unit(610, "kg"),
  36563. name: "Back",
  36564. image: {
  36565. source: "./media/characters/huckle/back.svg",
  36566. extra: 1738/1651,
  36567. bottom: 37/1775
  36568. }
  36569. },
  36570. laughing: {
  36571. height: math.unit(3.75, "feet"),
  36572. name: "Laughing",
  36573. image: {
  36574. source: "./media/characters/huckle/laughing.svg"
  36575. }
  36576. },
  36577. angry: {
  36578. height: math.unit(4.15, "feet"),
  36579. name: "Angry",
  36580. image: {
  36581. source: "./media/characters/huckle/angry.svg"
  36582. }
  36583. },
  36584. },
  36585. [
  36586. {
  36587. name: "Normal",
  36588. height: math.unit(16, "feet"),
  36589. default: true
  36590. },
  36591. {
  36592. name: "Mini Macro",
  36593. height: math.unit(463, "feet")
  36594. },
  36595. {
  36596. name: "Macro",
  36597. height: math.unit(1680, "meters")
  36598. },
  36599. {
  36600. name: "Mega Macro",
  36601. height: math.unit(175, "km")
  36602. },
  36603. {
  36604. name: "Terra Macro",
  36605. height: math.unit(32, "gigameters")
  36606. },
  36607. {
  36608. name: "Multiverse+",
  36609. height: math.unit(2.56e23, "yottameters")
  36610. },
  36611. ]
  36612. ))
  36613. characterMakers.push(() => makeCharacter(
  36614. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36615. {
  36616. front: {
  36617. height: math.unit(6 + 9/12, "feet"),
  36618. weight: math.unit(280, "lb"),
  36619. name: "Front",
  36620. image: {
  36621. source: "./media/characters/candy/front.svg",
  36622. extra: 234/217,
  36623. bottom: 11/245
  36624. }
  36625. },
  36626. },
  36627. [
  36628. {
  36629. name: "Really Small",
  36630. height: math.unit(0.1, "nm")
  36631. },
  36632. {
  36633. name: "Micro",
  36634. height: math.unit(2, "inches")
  36635. },
  36636. {
  36637. name: "Normal",
  36638. height: math.unit(6 + 9/12, "feet"),
  36639. default: true
  36640. },
  36641. {
  36642. name: "Small Macro",
  36643. height: math.unit(69, "feet")
  36644. },
  36645. {
  36646. name: "Macro",
  36647. height: math.unit(160, "feet")
  36648. },
  36649. {
  36650. name: "Megamacro",
  36651. height: math.unit(22000, "miles")
  36652. },
  36653. {
  36654. name: "Gigamacro",
  36655. height: math.unit(50000, "miles")
  36656. },
  36657. ]
  36658. ))
  36659. characterMakers.push(() => makeCharacter(
  36660. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36661. {
  36662. front: {
  36663. height: math.unit(4, "feet"),
  36664. weight: math.unit(90, "lb"),
  36665. name: "Front",
  36666. image: {
  36667. source: "./media/characters/joey-mcdonald/front.svg",
  36668. extra: 1059/852,
  36669. bottom: 33/1092
  36670. }
  36671. },
  36672. back: {
  36673. height: math.unit(4, "feet"),
  36674. weight: math.unit(90, "lb"),
  36675. name: "Back",
  36676. image: {
  36677. source: "./media/characters/joey-mcdonald/back.svg",
  36678. extra: 1077/879,
  36679. bottom: 5/1082
  36680. }
  36681. },
  36682. frontKobold: {
  36683. height: math.unit(4, "feet"),
  36684. weight: math.unit(100, "lb"),
  36685. name: "Front-kobold",
  36686. image: {
  36687. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36688. extra: 1480/1367,
  36689. bottom: 0/1480
  36690. }
  36691. },
  36692. backKobold: {
  36693. height: math.unit(4, "feet"),
  36694. weight: math.unit(100, "lb"),
  36695. name: "Back-kobold",
  36696. image: {
  36697. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36698. extra: 1449/1361,
  36699. bottom: 0/1449
  36700. }
  36701. },
  36702. },
  36703. [
  36704. {
  36705. name: "Normal",
  36706. height: math.unit(4, "feet"),
  36707. default: true
  36708. },
  36709. ]
  36710. ))
  36711. characterMakers.push(() => makeCharacter(
  36712. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36713. {
  36714. front: {
  36715. height: math.unit(12 + 6/12, "feet"),
  36716. name: "Front",
  36717. image: {
  36718. source: "./media/characters/kass-lockheed/front.svg",
  36719. extra: 354/343,
  36720. bottom: 9/363
  36721. }
  36722. },
  36723. back: {
  36724. height: math.unit(12 + 6/12, "feet"),
  36725. name: "Back",
  36726. image: {
  36727. source: "./media/characters/kass-lockheed/back.svg",
  36728. extra: 364/352,
  36729. bottom: 3/367
  36730. }
  36731. },
  36732. dick: {
  36733. height: math.unit(3.12, "feet"),
  36734. name: "Dick",
  36735. image: {
  36736. source: "./media/characters/kass-lockheed/dick.svg"
  36737. }
  36738. },
  36739. head: {
  36740. height: math.unit(2.6, "feet"),
  36741. name: "Head",
  36742. image: {
  36743. source: "./media/characters/kass-lockheed/head.svg"
  36744. }
  36745. },
  36746. bleh: {
  36747. height: math.unit(2.85, "feet"),
  36748. name: "Bleh",
  36749. image: {
  36750. source: "./media/characters/kass-lockheed/bleh.svg"
  36751. }
  36752. },
  36753. smug: {
  36754. height: math.unit(2.85, "feet"),
  36755. name: "Smug",
  36756. image: {
  36757. source: "./media/characters/kass-lockheed/smug.svg"
  36758. }
  36759. },
  36760. },
  36761. [
  36762. {
  36763. name: "Normal",
  36764. height: math.unit(12 + 6/12, "feet"),
  36765. default: true
  36766. },
  36767. ]
  36768. ))
  36769. characterMakers.push(() => makeCharacter(
  36770. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36771. {
  36772. front: {
  36773. height: math.unit(6 + 2/12, "feet"),
  36774. name: "Front",
  36775. image: {
  36776. source: "./media/characters/taylor/front.svg",
  36777. extra: 639/495,
  36778. bottom: 12/651
  36779. }
  36780. },
  36781. },
  36782. [
  36783. {
  36784. name: "Normal",
  36785. height: math.unit(6 + 2/12, "feet"),
  36786. default: true
  36787. },
  36788. {
  36789. name: "Big",
  36790. height: math.unit(15, "feet")
  36791. },
  36792. {
  36793. name: "Lorg",
  36794. height: math.unit(80, "feet")
  36795. },
  36796. {
  36797. name: "Too Lorg",
  36798. height: math.unit(120, "feet")
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36804. {
  36805. front: {
  36806. height: math.unit(15, "feet"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/kaizer/front.svg",
  36810. extra: 1612/1436,
  36811. bottom: 43/1655
  36812. }
  36813. },
  36814. },
  36815. [
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(15, "feet"),
  36819. default: true
  36820. },
  36821. ]
  36822. ))
  36823. characterMakers.push(() => makeCharacter(
  36824. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36825. {
  36826. front: {
  36827. height: math.unit(2, "feet"),
  36828. weight: math.unit(30, "lb"),
  36829. name: "Front",
  36830. image: {
  36831. source: "./media/characters/sandy/front.svg",
  36832. extra: 1439/1307,
  36833. bottom: 194/1633
  36834. }
  36835. },
  36836. },
  36837. [
  36838. {
  36839. name: "Normal",
  36840. height: math.unit(2, "feet"),
  36841. default: true
  36842. },
  36843. ]
  36844. ))
  36845. characterMakers.push(() => makeCharacter(
  36846. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36847. {
  36848. front: {
  36849. height: math.unit(3, "feet"),
  36850. name: "Front",
  36851. image: {
  36852. source: "./media/characters/mellvi/front.svg",
  36853. extra: 1831/1630,
  36854. bottom: 58/1889
  36855. }
  36856. },
  36857. },
  36858. [
  36859. {
  36860. name: "Normal",
  36861. height: math.unit(3, "feet"),
  36862. default: true
  36863. },
  36864. ]
  36865. ))
  36866. characterMakers.push(() => makeCharacter(
  36867. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36868. {
  36869. front: {
  36870. height: math.unit(5 + 11/12, "feet"),
  36871. weight: math.unit(200, "lb"),
  36872. name: "Front",
  36873. image: {
  36874. source: "./media/characters/shirou/front.svg",
  36875. extra: 2491/2383,
  36876. bottom: 189/2680
  36877. }
  36878. },
  36879. back: {
  36880. height: math.unit(5 + 11/12, "feet"),
  36881. weight: math.unit(200, "lb"),
  36882. name: "Back",
  36883. image: {
  36884. source: "./media/characters/shirou/back.svg",
  36885. extra: 2554/2450,
  36886. bottom: 76/2630
  36887. }
  36888. },
  36889. },
  36890. [
  36891. {
  36892. name: "Normal",
  36893. height: math.unit(5 + 11/12, "feet"),
  36894. default: true
  36895. },
  36896. ]
  36897. ))
  36898. characterMakers.push(() => makeCharacter(
  36899. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36900. {
  36901. front: {
  36902. height: math.unit(6 + 3/12, "feet"),
  36903. weight: math.unit(177, "lb"),
  36904. name: "Front",
  36905. image: {
  36906. source: "./media/characters/noryu/front.svg",
  36907. extra: 973/885,
  36908. bottom: 10/983
  36909. }
  36910. },
  36911. },
  36912. [
  36913. {
  36914. name: "Normal",
  36915. height: math.unit(6 + 3/12, "feet"),
  36916. default: true
  36917. },
  36918. ]
  36919. ))
  36920. characterMakers.push(() => makeCharacter(
  36921. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36922. {
  36923. front: {
  36924. height: math.unit(5 + 6/12, "feet"),
  36925. weight: math.unit(170, "lb"),
  36926. name: "Front",
  36927. image: {
  36928. source: "./media/characters/mevolas-rubenido/front.svg",
  36929. extra: 2109/1901,
  36930. bottom: 96/2205
  36931. }
  36932. },
  36933. },
  36934. [
  36935. {
  36936. name: "Normal",
  36937. height: math.unit(5 + 6/12, "feet"),
  36938. default: true
  36939. },
  36940. ]
  36941. ))
  36942. characterMakers.push(() => makeCharacter(
  36943. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36944. {
  36945. front: {
  36946. height: math.unit(100, "feet"),
  36947. name: "Front",
  36948. image: {
  36949. source: "./media/characters/dee/front.svg",
  36950. extra: 2153/2036,
  36951. bottom: 59/2212
  36952. }
  36953. },
  36954. back: {
  36955. height: math.unit(100, "feet"),
  36956. name: "Back",
  36957. image: {
  36958. source: "./media/characters/dee/back.svg",
  36959. extra: 2183/2058,
  36960. bottom: 75/2258
  36961. }
  36962. },
  36963. foot: {
  36964. height: math.unit(19.43, "feet"),
  36965. name: "Foot",
  36966. image: {
  36967. source: "./media/characters/dee/foot.svg"
  36968. }
  36969. },
  36970. hoof: {
  36971. height: math.unit(20.6, "feet"),
  36972. name: "Hoof",
  36973. image: {
  36974. source: "./media/characters/dee/hoof.svg"
  36975. }
  36976. },
  36977. },
  36978. [
  36979. {
  36980. name: "Macro",
  36981. height: math.unit(100, "feet"),
  36982. default: true
  36983. },
  36984. ]
  36985. ))
  36986. characterMakers.push(() => makeCharacter(
  36987. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36988. {
  36989. front: {
  36990. height: math.unit(5 + 6/12, "feet"),
  36991. name: "Front",
  36992. image: {
  36993. source: "./media/characters/teh/front.svg",
  36994. extra: 1002/847,
  36995. bottom: 62/1064
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Normal",
  37002. height: math.unit(5 + 6/12, "feet"),
  37003. default: true
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37009. {
  37010. side: {
  37011. height: math.unit(6 + 1/12, "feet"),
  37012. weight: math.unit(204, "lb"),
  37013. name: "Side",
  37014. image: {
  37015. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37016. extra: 974/775,
  37017. bottom: 169/1143
  37018. }
  37019. },
  37020. sitting: {
  37021. height: math.unit(6 + 2/12, "feet"),
  37022. weight: math.unit(204, "lb"),
  37023. name: "Sitting",
  37024. image: {
  37025. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37026. extra: 1175/964,
  37027. bottom: 378/1553
  37028. }
  37029. },
  37030. },
  37031. [
  37032. {
  37033. name: "Normal",
  37034. height: math.unit(6 + 1/12, "feet"),
  37035. default: true
  37036. },
  37037. ]
  37038. ))
  37039. characterMakers.push(() => makeCharacter(
  37040. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37041. {
  37042. front: {
  37043. height: math.unit(6, "inches"),
  37044. name: "Front",
  37045. image: {
  37046. source: "./media/characters/tululi/front.svg",
  37047. extra: 1997/1876,
  37048. bottom: 20/2017
  37049. }
  37050. },
  37051. },
  37052. [
  37053. {
  37054. name: "Normal",
  37055. height: math.unit(6, "inches"),
  37056. default: true
  37057. },
  37058. ]
  37059. ))
  37060. characterMakers.push(() => makeCharacter(
  37061. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37062. {
  37063. front: {
  37064. height: math.unit(4 + 1/12, "feet"),
  37065. name: "Front",
  37066. image: {
  37067. source: "./media/characters/star/front.svg",
  37068. extra: 1493/1189,
  37069. bottom: 48/1541
  37070. }
  37071. },
  37072. },
  37073. [
  37074. {
  37075. name: "Normal",
  37076. height: math.unit(4 + 1/12, "feet"),
  37077. default: true
  37078. },
  37079. ]
  37080. ))
  37081. characterMakers.push(() => makeCharacter(
  37082. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37083. {
  37084. front: {
  37085. height: math.unit(6 + 3/12, "feet"),
  37086. name: "Front",
  37087. image: {
  37088. source: "./media/characters/comet/front.svg",
  37089. extra: 1681/1462,
  37090. bottom: 26/1707
  37091. }
  37092. },
  37093. },
  37094. [
  37095. {
  37096. name: "Normal",
  37097. height: math.unit(6 + 3/12, "feet"),
  37098. default: true
  37099. },
  37100. ]
  37101. ))
  37102. characterMakers.push(() => makeCharacter(
  37103. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37104. {
  37105. front: {
  37106. height: math.unit(950, "feet"),
  37107. name: "Front",
  37108. image: {
  37109. source: "./media/characters/vortex/front.svg",
  37110. extra: 1497/1434,
  37111. bottom: 56/1553
  37112. }
  37113. },
  37114. maw: {
  37115. height: math.unit(285, "feet"),
  37116. name: "Maw",
  37117. image: {
  37118. source: "./media/characters/vortex/maw.svg"
  37119. }
  37120. },
  37121. },
  37122. [
  37123. {
  37124. name: "Macro",
  37125. height: math.unit(950, "feet"),
  37126. default: true
  37127. },
  37128. ]
  37129. ))
  37130. characterMakers.push(() => makeCharacter(
  37131. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37132. {
  37133. front: {
  37134. height: math.unit(600, "feet"),
  37135. weight: math.unit(0.02, "grams"),
  37136. name: "Front",
  37137. image: {
  37138. source: "./media/characters/doodle/front.svg",
  37139. extra: 1578/1413,
  37140. bottom: 37/1615
  37141. }
  37142. },
  37143. },
  37144. [
  37145. {
  37146. name: "Macro",
  37147. height: math.unit(600, "feet"),
  37148. default: true
  37149. },
  37150. ]
  37151. ))
  37152. characterMakers.push(() => makeCharacter(
  37153. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37154. {
  37155. front: {
  37156. height: math.unit(6 + 6/12, "feet"),
  37157. name: "Front",
  37158. image: {
  37159. source: "./media/characters/jai/front.svg",
  37160. extra: 1645/1534,
  37161. bottom: 115/1760
  37162. }
  37163. },
  37164. },
  37165. [
  37166. {
  37167. name: "Normal",
  37168. height: math.unit(6 + 6/12, "feet"),
  37169. default: true
  37170. },
  37171. ]
  37172. ))
  37173. characterMakers.push(() => makeCharacter(
  37174. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37175. {
  37176. front: {
  37177. height: math.unit(6 + 8/12, "feet"),
  37178. name: "Front",
  37179. image: {
  37180. source: "./media/characters/pixel/front.svg",
  37181. extra: 1900/1735,
  37182. bottom: 63/1963
  37183. }
  37184. },
  37185. },
  37186. [
  37187. {
  37188. name: "Normal",
  37189. height: math.unit(6 + 8/12, "feet"),
  37190. default: true
  37191. },
  37192. ]
  37193. ))
  37194. characterMakers.push(() => makeCharacter(
  37195. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37196. {
  37197. back: {
  37198. height: math.unit(4 + 1/12, "feet"),
  37199. weight: math.unit(75, "lb"),
  37200. name: "Back",
  37201. image: {
  37202. source: "./media/characters/rhett/back.svg",
  37203. extra: 930/878,
  37204. bottom: 25/955
  37205. }
  37206. },
  37207. front: {
  37208. height: math.unit(4 + 1/12, "feet"),
  37209. weight: math.unit(75, "lb"),
  37210. name: "Front",
  37211. image: {
  37212. source: "./media/characters/rhett/front.svg",
  37213. extra: 1682/1586,
  37214. bottom: 92/1774
  37215. }
  37216. },
  37217. },
  37218. [
  37219. {
  37220. name: "Micro",
  37221. height: math.unit(8, "inches")
  37222. },
  37223. {
  37224. name: "Tiny",
  37225. height: math.unit(2, "feet")
  37226. },
  37227. {
  37228. name: "Normal",
  37229. height: math.unit(4 + 1/12, "feet"),
  37230. default: true
  37231. },
  37232. ]
  37233. ))
  37234. characterMakers.push(() => makeCharacter(
  37235. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37236. {
  37237. front: {
  37238. height: math.unit(3 + 3/12, "feet"),
  37239. name: "Front",
  37240. image: {
  37241. source: "./media/characters/penny/front.svg",
  37242. extra: 1406/1311,
  37243. bottom: 26/1432
  37244. }
  37245. },
  37246. },
  37247. [
  37248. {
  37249. name: "Normal",
  37250. height: math.unit(3 + 3/12, "feet"),
  37251. default: true
  37252. },
  37253. ]
  37254. ))
  37255. characterMakers.push(() => makeCharacter(
  37256. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37257. {
  37258. front: {
  37259. height: math.unit(4 + 11/12, "feet"),
  37260. name: "Front",
  37261. image: {
  37262. source: "./media/characters/monty/front.svg",
  37263. extra: 1479/1209,
  37264. bottom: 0/1479
  37265. }
  37266. },
  37267. },
  37268. [
  37269. {
  37270. name: "Normal",
  37271. height: math.unit(4 + 11/12, "feet"),
  37272. default: true
  37273. },
  37274. ]
  37275. ))
  37276. characterMakers.push(() => makeCharacter(
  37277. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37278. {
  37279. front: {
  37280. height: math.unit(8 + 4/12, "feet"),
  37281. name: "Front",
  37282. image: {
  37283. source: "./media/characters/sterling/front.svg",
  37284. extra: 1420/1236,
  37285. bottom: 27/1447
  37286. }
  37287. },
  37288. },
  37289. [
  37290. {
  37291. name: "Normal",
  37292. height: math.unit(8 + 4/12, "feet"),
  37293. default: true
  37294. },
  37295. ]
  37296. ))
  37297. characterMakers.push(() => makeCharacter(
  37298. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37299. {
  37300. front: {
  37301. height: math.unit(15, "feet"),
  37302. name: "Front",
  37303. image: {
  37304. source: "./media/characters/marble/front.svg",
  37305. extra: 973/937,
  37306. bottom: 32/1005
  37307. }
  37308. },
  37309. },
  37310. [
  37311. {
  37312. name: "Normal",
  37313. height: math.unit(15, "feet"),
  37314. default: true
  37315. },
  37316. ]
  37317. ))
  37318. characterMakers.push(() => makeCharacter(
  37319. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37320. {
  37321. front: {
  37322. height: math.unit(3, "inches"),
  37323. name: "Front",
  37324. image: {
  37325. source: "./media/characters/powder/front.svg",
  37326. extra: 1504/1334,
  37327. bottom: 518/2022
  37328. }
  37329. },
  37330. },
  37331. [
  37332. {
  37333. name: "Normal",
  37334. height: math.unit(3, "inches"),
  37335. default: true
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37341. {
  37342. front: {
  37343. height: math.unit(4 + 5/12, "feet"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/joey-raccoon/front.svg",
  37347. extra: 1273/1197,
  37348. bottom: 0/1273
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(4 + 5/12, "feet"),
  37356. default: true
  37357. },
  37358. ]
  37359. ))
  37360. characterMakers.push(() => makeCharacter(
  37361. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37362. {
  37363. front: {
  37364. height: math.unit(8 + 4/12, "feet"),
  37365. name: "Front",
  37366. image: {
  37367. source: "./media/characters/vick/front.svg",
  37368. extra: 2187/2118,
  37369. bottom: 47/2234
  37370. }
  37371. },
  37372. },
  37373. [
  37374. {
  37375. name: "Normal",
  37376. height: math.unit(8 + 4/12, "feet"),
  37377. default: true
  37378. },
  37379. ]
  37380. ))
  37381. characterMakers.push(() => makeCharacter(
  37382. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37383. {
  37384. front: {
  37385. height: math.unit(5 + 5/12, "feet"),
  37386. name: "Front",
  37387. image: {
  37388. source: "./media/characters/mitsy/front.svg",
  37389. extra: 1842/1695,
  37390. bottom: 0/1842
  37391. }
  37392. },
  37393. },
  37394. [
  37395. {
  37396. name: "Normal",
  37397. height: math.unit(5 + 5/12, "feet"),
  37398. default: true
  37399. },
  37400. ]
  37401. ))
  37402. characterMakers.push(() => makeCharacter(
  37403. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37404. {
  37405. front: {
  37406. height: math.unit(6 + 3/12, "feet"),
  37407. name: "Front",
  37408. image: {
  37409. source: "./media/characters/silvy/front.svg",
  37410. extra: 1995/1836,
  37411. bottom: 225/2220
  37412. }
  37413. },
  37414. },
  37415. [
  37416. {
  37417. name: "Normal",
  37418. height: math.unit(6 + 3/12, "feet"),
  37419. default: true
  37420. },
  37421. ]
  37422. ))
  37423. characterMakers.push(() => makeCharacter(
  37424. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37425. {
  37426. front: {
  37427. height: math.unit(3 + 8/12, "feet"),
  37428. name: "Front",
  37429. image: {
  37430. source: "./media/characters/rodney/front.svg",
  37431. extra: 1956/1747,
  37432. bottom: 31/1987
  37433. }
  37434. },
  37435. frontDressed: {
  37436. height: math.unit(2.9, "feet"),
  37437. name: "Front (Dressed)",
  37438. image: {
  37439. source: "./media/characters/rodney/front-dressed.svg",
  37440. extra: 1382/1241,
  37441. bottom: 385/1767
  37442. }
  37443. },
  37444. },
  37445. [
  37446. {
  37447. name: "Normal",
  37448. height: math.unit(3 + 8/12, "feet"),
  37449. default: true
  37450. },
  37451. ]
  37452. ))
  37453. characterMakers.push(() => makeCharacter(
  37454. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37455. {
  37456. front: {
  37457. height: math.unit(5 + 9/12, "feet"),
  37458. weight: math.unit(194, "lbs"),
  37459. name: "Front",
  37460. image: {
  37461. source: "./media/characters/zakail-sudekai/front.svg",
  37462. extra: 2696/2533,
  37463. bottom: 248/2944
  37464. }
  37465. },
  37466. maw: {
  37467. height: math.unit(1.35, "feet"),
  37468. name: "Maw",
  37469. image: {
  37470. source: "./media/characters/zakail-sudekai/maw.svg"
  37471. }
  37472. },
  37473. },
  37474. [
  37475. {
  37476. name: "Normal",
  37477. height: math.unit(5 + 9/12, "feet"),
  37478. default: true
  37479. },
  37480. ]
  37481. ))
  37482. characterMakers.push(() => makeCharacter(
  37483. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37484. {
  37485. front: {
  37486. height: math.unit(8 + 4/12, "feet"),
  37487. weight: math.unit(1200, "lb"),
  37488. name: "Front",
  37489. image: {
  37490. source: "./media/characters/eleanor/front.svg",
  37491. extra: 1226/1192,
  37492. bottom: 52/1278
  37493. }
  37494. },
  37495. back: {
  37496. height: math.unit(8 + 4/12, "feet"),
  37497. weight: math.unit(1200, "lb"),
  37498. name: "Back",
  37499. image: {
  37500. source: "./media/characters/eleanor/back.svg",
  37501. extra: 1242/1184,
  37502. bottom: 60/1302
  37503. }
  37504. },
  37505. head: {
  37506. height: math.unit(2.62, "feet"),
  37507. name: "Head",
  37508. image: {
  37509. source: "./media/characters/eleanor/head.svg"
  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: "Tanya", species: ["shark"], tags: ["anthro"] },
  37523. {
  37524. front: {
  37525. height: math.unit(8 + 4/12, "feet"),
  37526. weight: math.unit(750, "lb"),
  37527. name: "Front",
  37528. image: {
  37529. source: "./media/characters/tanya/front.svg",
  37530. extra: 1749/1615,
  37531. bottom: 33/1782
  37532. }
  37533. },
  37534. },
  37535. [
  37536. {
  37537. name: "Normal",
  37538. height: math.unit(8 + 4/12, "feet"),
  37539. default: true
  37540. },
  37541. ]
  37542. ))
  37543. characterMakers.push(() => makeCharacter(
  37544. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37545. {
  37546. front: {
  37547. height: math.unit(5, "feet"),
  37548. weight: math.unit(225, "lb"),
  37549. name: "Front",
  37550. image: {
  37551. source: "./media/characters/cindy/front.svg",
  37552. extra: 1320/1250,
  37553. bottom: 42/1362
  37554. }
  37555. },
  37556. frontDressed: {
  37557. height: math.unit(5, "feet"),
  37558. weight: math.unit(225, "lb"),
  37559. name: "Front (Dressed)",
  37560. image: {
  37561. source: "./media/characters/cindy/front-dressed.svg",
  37562. extra: 1320/1250,
  37563. bottom: 42/1362
  37564. }
  37565. },
  37566. back: {
  37567. height: math.unit(5, "feet"),
  37568. weight: math.unit(225, "lb"),
  37569. name: "Back",
  37570. image: {
  37571. source: "./media/characters/cindy/back.svg",
  37572. extra: 1384/1346,
  37573. bottom: 14/1398
  37574. }
  37575. },
  37576. },
  37577. [
  37578. {
  37579. name: "Normal",
  37580. height: math.unit(5, "feet"),
  37581. default: true
  37582. },
  37583. ]
  37584. ))
  37585. characterMakers.push(() => makeCharacter(
  37586. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37587. {
  37588. front: {
  37589. height: math.unit(6 + 9/12, "feet"),
  37590. weight: math.unit(440, "lb"),
  37591. name: "Front",
  37592. image: {
  37593. source: "./media/characters/wilbur-owen/front.svg",
  37594. extra: 1575/1448,
  37595. bottom: 72/1647
  37596. }
  37597. },
  37598. back: {
  37599. height: math.unit(6 + 9/12, "feet"),
  37600. weight: math.unit(440, "lb"),
  37601. name: "Back",
  37602. image: {
  37603. source: "./media/characters/wilbur-owen/back.svg",
  37604. extra: 1578/1445,
  37605. bottom: 36/1614
  37606. }
  37607. },
  37608. },
  37609. [
  37610. {
  37611. name: "Normal",
  37612. height: math.unit(6 + 9/12, "feet"),
  37613. default: true
  37614. },
  37615. ]
  37616. ))
  37617. characterMakers.push(() => makeCharacter(
  37618. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37619. {
  37620. front: {
  37621. height: math.unit(6 + 5/12, "feet"),
  37622. weight: math.unit(650, "lb"),
  37623. name: "Front",
  37624. image: {
  37625. source: "./media/characters/keegan/front.svg",
  37626. extra: 2387/2198,
  37627. bottom: 33/2420
  37628. }
  37629. },
  37630. side: {
  37631. height: math.unit(6 + 5/12, "feet"),
  37632. weight: math.unit(650, "lb"),
  37633. name: "Side",
  37634. image: {
  37635. source: "./media/characters/keegan/side.svg",
  37636. extra: 2390/2202,
  37637. bottom: 47/2437
  37638. }
  37639. },
  37640. back: {
  37641. height: math.unit(6 + 5/12, "feet"),
  37642. weight: math.unit(650, "lb"),
  37643. name: "Back",
  37644. image: {
  37645. source: "./media/characters/keegan/back.svg",
  37646. extra: 2418/2268,
  37647. bottom: 15/2433
  37648. }
  37649. },
  37650. frontSfw: {
  37651. height: math.unit(6 + 5/12, "feet"),
  37652. weight: math.unit(650, "lb"),
  37653. name: "Front (SFW)",
  37654. image: {
  37655. source: "./media/characters/keegan/front-sfw.svg",
  37656. extra: 2387/2198,
  37657. bottom: 33/2420
  37658. }
  37659. },
  37660. beans: {
  37661. height: math.unit(1.85, "feet"),
  37662. name: "Beans",
  37663. image: {
  37664. source: "./media/characters/keegan/beans.svg"
  37665. }
  37666. },
  37667. },
  37668. [
  37669. {
  37670. name: "Normal",
  37671. height: math.unit(6 + 5/12, "feet"),
  37672. default: true
  37673. },
  37674. ]
  37675. ))
  37676. characterMakers.push(() => makeCharacter(
  37677. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37678. {
  37679. front: {
  37680. height: math.unit(9, "feet"),
  37681. name: "Front",
  37682. image: {
  37683. source: "./media/characters/colton/front.svg",
  37684. extra: 1589/1326,
  37685. bottom: 139/1728
  37686. }
  37687. },
  37688. },
  37689. [
  37690. {
  37691. name: "Normal",
  37692. height: math.unit(9, "feet"),
  37693. default: true
  37694. },
  37695. ]
  37696. ))
  37697. characterMakers.push(() => makeCharacter(
  37698. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37699. {
  37700. front: {
  37701. height: math.unit(2 + 9/12, "feet"),
  37702. name: "Front",
  37703. image: {
  37704. source: "./media/characters/bora/front.svg",
  37705. extra: 1265/1250,
  37706. bottom: 24/1289
  37707. }
  37708. },
  37709. },
  37710. [
  37711. {
  37712. name: "Normal",
  37713. height: math.unit(2 + 9/12, "feet"),
  37714. default: true
  37715. },
  37716. ]
  37717. ))
  37718. characterMakers.push(() => makeCharacter(
  37719. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37720. {
  37721. front: {
  37722. height: math.unit(8, "feet"),
  37723. name: "Front",
  37724. image: {
  37725. source: "./media/characters/myu-myu/front.svg",
  37726. extra: 1949/1857,
  37727. bottom: 90/2039
  37728. }
  37729. },
  37730. },
  37731. [
  37732. {
  37733. name: "Normal",
  37734. height: math.unit(8, "feet"),
  37735. default: true
  37736. },
  37737. {
  37738. name: "Big",
  37739. height: math.unit(15, "feet")
  37740. },
  37741. {
  37742. name: "BIG",
  37743. height: math.unit(25, "feet")
  37744. },
  37745. ]
  37746. ))
  37747. characterMakers.push(() => makeCharacter(
  37748. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37749. {
  37750. side: {
  37751. height: math.unit(7 + 5/12, "feet"),
  37752. weight: math.unit(2800, "lb"),
  37753. name: "Side",
  37754. image: {
  37755. source: "./media/characters/haloren/side.svg",
  37756. extra: 1793/409,
  37757. bottom: 59/1852
  37758. }
  37759. },
  37760. frontPaw: {
  37761. height: math.unit(2.36, "feet"),
  37762. name: "Front paw",
  37763. image: {
  37764. source: "./media/characters/haloren/front-paw.svg"
  37765. }
  37766. },
  37767. hindPaw: {
  37768. height: math.unit(3.18, "feet"),
  37769. name: "Hind paw",
  37770. image: {
  37771. source: "./media/characters/haloren/hind-paw.svg"
  37772. }
  37773. },
  37774. maw: {
  37775. height: math.unit(5.05, "feet"),
  37776. name: "Maw",
  37777. image: {
  37778. source: "./media/characters/haloren/maw.svg"
  37779. }
  37780. },
  37781. dick: {
  37782. height: math.unit(2.90, "feet"),
  37783. name: "Dick",
  37784. image: {
  37785. source: "./media/characters/haloren/dick.svg"
  37786. }
  37787. },
  37788. },
  37789. [
  37790. {
  37791. name: "Normal",
  37792. height: math.unit(7 + 5/12, "feet"),
  37793. default: true
  37794. },
  37795. {
  37796. name: "Enhanced",
  37797. height: math.unit(14 + 3/12, "feet")
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37803. {
  37804. front: {
  37805. height: math.unit(171, "cm"),
  37806. name: "Front",
  37807. image: {
  37808. source: "./media/characters/kimmy/front.svg",
  37809. extra: 1491/1435,
  37810. bottom: 53/1544
  37811. }
  37812. },
  37813. },
  37814. [
  37815. {
  37816. name: "Small",
  37817. height: math.unit(9, "cm")
  37818. },
  37819. {
  37820. name: "Normal",
  37821. height: math.unit(171, "cm"),
  37822. default: true
  37823. },
  37824. ]
  37825. ))
  37826. characterMakers.push(() => makeCharacter(
  37827. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37828. {
  37829. front: {
  37830. height: math.unit(8, "feet"),
  37831. weight: math.unit(300, "lb"),
  37832. name: "Front",
  37833. image: {
  37834. source: "./media/characters/galeboomer/front.svg",
  37835. extra: 4651/4415,
  37836. bottom: 162/4813
  37837. }
  37838. },
  37839. back: {
  37840. height: math.unit(8, "feet"),
  37841. weight: math.unit(300, "lb"),
  37842. name: "Back",
  37843. image: {
  37844. source: "./media/characters/galeboomer/back.svg",
  37845. extra: 4544/4314,
  37846. bottom: 16/4560
  37847. }
  37848. },
  37849. frontAlt: {
  37850. height: math.unit(8, "feet"),
  37851. weight: math.unit(300, "lb"),
  37852. name: "Front (Alt)",
  37853. image: {
  37854. source: "./media/characters/galeboomer/front-alt.svg",
  37855. extra: 4458/4228,
  37856. bottom: 68/4526
  37857. }
  37858. },
  37859. maw: {
  37860. height: math.unit(1.2, "feet"),
  37861. name: "Maw",
  37862. image: {
  37863. source: "./media/characters/galeboomer/maw.svg"
  37864. }
  37865. },
  37866. },
  37867. [
  37868. {
  37869. name: "Normal",
  37870. height: math.unit(8, "feet"),
  37871. default: true
  37872. },
  37873. ]
  37874. ))
  37875. characterMakers.push(() => makeCharacter(
  37876. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37877. {
  37878. front: {
  37879. height: math.unit(5 + 9/12, "feet"),
  37880. weight: math.unit(120, "lb"),
  37881. name: "Front",
  37882. image: {
  37883. source: "./media/characters/chyr/front.svg",
  37884. extra: 1323/1254,
  37885. bottom: 63/1386
  37886. }
  37887. },
  37888. back: {
  37889. height: math.unit(5 + 9/12, "feet"),
  37890. weight: math.unit(120, "lb"),
  37891. name: "Back",
  37892. image: {
  37893. source: "./media/characters/chyr/back.svg",
  37894. extra: 1323/1252,
  37895. bottom: 48/1371
  37896. }
  37897. },
  37898. },
  37899. [
  37900. {
  37901. name: "Normal",
  37902. height: math.unit(5 + 9/12, "feet"),
  37903. default: true
  37904. },
  37905. ]
  37906. ))
  37907. characterMakers.push(() => makeCharacter(
  37908. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37909. {
  37910. front: {
  37911. height: math.unit(7, "feet"),
  37912. weight: math.unit(310, "lb"),
  37913. name: "Front",
  37914. image: {
  37915. source: "./media/characters/solarus/front.svg",
  37916. extra: 2415/2021,
  37917. bottom: 103/2518
  37918. }
  37919. },
  37920. back: {
  37921. height: math.unit(7, "feet"),
  37922. weight: math.unit(310, "lb"),
  37923. name: "Back",
  37924. image: {
  37925. source: "./media/characters/solarus/back.svg",
  37926. extra: 2463/2089,
  37927. bottom: 79/2542
  37928. }
  37929. },
  37930. },
  37931. [
  37932. {
  37933. name: "Normal",
  37934. height: math.unit(7, "feet"),
  37935. default: true
  37936. },
  37937. ]
  37938. ))
  37939. characterMakers.push(() => makeCharacter(
  37940. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37941. {
  37942. front: {
  37943. height: math.unit(16, "feet"),
  37944. name: "Front",
  37945. image: {
  37946. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37947. extra: 1844/1780,
  37948. bottom: 58/1902
  37949. }
  37950. },
  37951. winterCoat: {
  37952. height: math.unit(16, "feet"),
  37953. name: "Winter Coat",
  37954. image: {
  37955. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37956. extra: 1807/1775,
  37957. bottom: 69/1876
  37958. }
  37959. },
  37960. },
  37961. [
  37962. {
  37963. name: "Normal",
  37964. height: math.unit(16, "feet"),
  37965. default: true
  37966. },
  37967. {
  37968. name: "Chicago Size",
  37969. height: math.unit(560, "feet")
  37970. },
  37971. ]
  37972. ))
  37973. characterMakers.push(() => makeCharacter(
  37974. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37975. {
  37976. front: {
  37977. height: math.unit(11 + 6/12, "feet"),
  37978. weight: math.unit(1366, "lb"),
  37979. name: "Front",
  37980. image: {
  37981. source: "./media/characters/lexor/front.svg",
  37982. extra: 1560/1481,
  37983. bottom: 211/1771
  37984. }
  37985. },
  37986. back: {
  37987. height: math.unit(11 + 6/12, "feet"),
  37988. weight: math.unit(1366, "lb"),
  37989. name: "Back",
  37990. image: {
  37991. source: "./media/characters/lexor/back.svg",
  37992. extra: 1614/1533,
  37993. bottom: 76/1690
  37994. }
  37995. },
  37996. maw: {
  37997. height: math.unit(3, "feet"),
  37998. name: "Maw",
  37999. image: {
  38000. source: "./media/characters/lexor/maw.svg"
  38001. }
  38002. },
  38003. dick: {
  38004. height: math.unit(2.59, "feet"),
  38005. name: "Dick",
  38006. image: {
  38007. source: "./media/characters/lexor/dick.svg"
  38008. }
  38009. },
  38010. },
  38011. [
  38012. {
  38013. name: "Normal",
  38014. height: math.unit(11 + 6/12, "feet"),
  38015. default: true
  38016. },
  38017. ]
  38018. ))
  38019. characterMakers.push(() => makeCharacter(
  38020. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38021. {
  38022. front: {
  38023. height: math.unit(5 + 8/12, "feet"),
  38024. name: "Front",
  38025. image: {
  38026. source: "./media/characters/magnum/front.svg",
  38027. extra: 942/855,
  38028. bottom: 26/968
  38029. }
  38030. },
  38031. },
  38032. [
  38033. {
  38034. name: "Normal",
  38035. height: math.unit(5 + 8/12, "feet"),
  38036. default: true
  38037. },
  38038. ]
  38039. ))
  38040. characterMakers.push(() => makeCharacter(
  38041. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38042. {
  38043. front: {
  38044. height: math.unit(18 + 4/12, "feet"),
  38045. weight: math.unit(1500, "kg"),
  38046. name: "Front",
  38047. image: {
  38048. source: "./media/characters/solas-sharpsman/front.svg",
  38049. extra: 1698/1589,
  38050. bottom: 0/1698
  38051. }
  38052. },
  38053. },
  38054. [
  38055. {
  38056. name: "Normal",
  38057. height: math.unit(18 + 4/12, "feet"),
  38058. default: true
  38059. },
  38060. ]
  38061. ))
  38062. characterMakers.push(() => makeCharacter(
  38063. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38064. {
  38065. front: {
  38066. height: math.unit(5 + 5/12, "feet"),
  38067. weight: math.unit(180, "lb"),
  38068. name: "Front",
  38069. image: {
  38070. source: "./media/characters/october/front.svg",
  38071. extra: 1800/1650,
  38072. bottom: 0/1800
  38073. }
  38074. },
  38075. frontNsfw: {
  38076. height: math.unit(5 + 5/12, "feet"),
  38077. weight: math.unit(180, "lb"),
  38078. name: "Front (NSFW)",
  38079. image: {
  38080. source: "./media/characters/october/front-nsfw.svg",
  38081. extra: 1392/1307,
  38082. bottom: 42/1434
  38083. }
  38084. },
  38085. },
  38086. [
  38087. {
  38088. name: "Normal",
  38089. height: math.unit(5 + 5/12, "feet"),
  38090. default: true
  38091. },
  38092. ]
  38093. ))
  38094. characterMakers.push(() => makeCharacter(
  38095. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38096. {
  38097. front: {
  38098. height: math.unit(8 + 6/12, "feet"),
  38099. name: "Front",
  38100. image: {
  38101. source: "./media/characters/essynkardi/front.svg",
  38102. extra: 1914/1846,
  38103. bottom: 22/1936
  38104. }
  38105. },
  38106. },
  38107. [
  38108. {
  38109. name: "Normal",
  38110. height: math.unit(8 + 6/12, "feet"),
  38111. default: true
  38112. },
  38113. ]
  38114. ))
  38115. characterMakers.push(() => makeCharacter(
  38116. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38117. {
  38118. front: {
  38119. height: math.unit(6 + 6/12, "feet"),
  38120. weight: math.unit(7, "lb"),
  38121. name: "Front",
  38122. image: {
  38123. source: "./media/characters/icky/front.svg",
  38124. extra: 813/782,
  38125. bottom: 66/879
  38126. }
  38127. },
  38128. back: {
  38129. height: math.unit(6 + 6/12, "feet"),
  38130. weight: math.unit(7, "lb"),
  38131. name: "Back",
  38132. image: {
  38133. source: "./media/characters/icky/back.svg",
  38134. extra: 754/735,
  38135. bottom: 56/810
  38136. }
  38137. },
  38138. },
  38139. [
  38140. {
  38141. name: "Normal",
  38142. height: math.unit(6 + 6/12, "feet"),
  38143. default: true
  38144. },
  38145. ]
  38146. ))
  38147. characterMakers.push(() => makeCharacter(
  38148. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38149. {
  38150. front: {
  38151. height: math.unit(15, "feet"),
  38152. name: "Front",
  38153. image: {
  38154. source: "./media/characters/rojas/front.svg",
  38155. extra: 1462/1408,
  38156. bottom: 95/1557
  38157. }
  38158. },
  38159. back: {
  38160. height: math.unit(15, "feet"),
  38161. name: "Back",
  38162. image: {
  38163. source: "./media/characters/rojas/back.svg",
  38164. extra: 1023/954,
  38165. bottom: 28/1051
  38166. }
  38167. },
  38168. },
  38169. [
  38170. {
  38171. name: "Normal",
  38172. height: math.unit(15, "feet"),
  38173. default: true
  38174. },
  38175. ]
  38176. ))
  38177. characterMakers.push(() => makeCharacter(
  38178. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38179. {
  38180. frontHuman: {
  38181. height: math.unit(5 + 7/12, "feet"),
  38182. name: "Front (Human)",
  38183. image: {
  38184. source: "./media/characters/alek-dryagan/front-human.svg",
  38185. extra: 1687/1667,
  38186. bottom: 69/1756
  38187. }
  38188. },
  38189. backHuman: {
  38190. height: math.unit(5 + 7/12, "feet"),
  38191. name: "Back (Human)",
  38192. image: {
  38193. source: "./media/characters/alek-dryagan/back-human.svg",
  38194. extra: 1670/1649,
  38195. bottom: 65/1735
  38196. }
  38197. },
  38198. frontDemi: {
  38199. height: math.unit(65, "feet"),
  38200. name: "Front (Demi)",
  38201. image: {
  38202. source: "./media/characters/alek-dryagan/front-demi.svg",
  38203. extra: 1669/1642,
  38204. bottom: 49/1718
  38205. }
  38206. },
  38207. backDemi: {
  38208. height: math.unit(65, "feet"),
  38209. name: "Back (Demi)",
  38210. image: {
  38211. source: "./media/characters/alek-dryagan/back-demi.svg",
  38212. extra: 1658/1637,
  38213. bottom: 40/1698
  38214. }
  38215. },
  38216. mawHuman: {
  38217. height: math.unit(0.3, "feet"),
  38218. name: "Maw (Human)",
  38219. image: {
  38220. source: "./media/characters/alek-dryagan/maw-human.svg"
  38221. }
  38222. },
  38223. mawDemi: {
  38224. height: math.unit(3.8, "feet"),
  38225. name: "Maw (Demi)",
  38226. image: {
  38227. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38228. }
  38229. },
  38230. },
  38231. [
  38232. {
  38233. name: "Normal",
  38234. height: math.unit(5 + 7/12, "feet"),
  38235. default: true
  38236. },
  38237. ]
  38238. ))
  38239. characterMakers.push(() => makeCharacter(
  38240. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38241. {
  38242. frontHuman: {
  38243. height: math.unit(5 + 2/12, "feet"),
  38244. name: "Front (Human)",
  38245. image: {
  38246. source: "./media/characters/gen/front-human.svg",
  38247. extra: 1627/1538,
  38248. bottom: 71/1698
  38249. }
  38250. },
  38251. backHuman: {
  38252. height: math.unit(5 + 2/12, "feet"),
  38253. name: "Back (Human)",
  38254. image: {
  38255. source: "./media/characters/gen/back-human.svg",
  38256. extra: 1638/1548,
  38257. bottom: 69/1707
  38258. }
  38259. },
  38260. frontDemi: {
  38261. height: math.unit(5 + 2/12, "feet"),
  38262. name: "Front (Demi)",
  38263. image: {
  38264. source: "./media/characters/gen/front-demi.svg",
  38265. extra: 1627/1538,
  38266. bottom: 71/1698
  38267. }
  38268. },
  38269. backDemi: {
  38270. height: math.unit(5 + 2/12, "feet"),
  38271. name: "Back (Demi)",
  38272. image: {
  38273. source: "./media/characters/gen/back-demi.svg",
  38274. extra: 1638/1548,
  38275. bottom: 69/1707
  38276. }
  38277. },
  38278. },
  38279. [
  38280. {
  38281. name: "Normal",
  38282. height: math.unit(5 + 2/12, "feet"),
  38283. default: true
  38284. },
  38285. ]
  38286. ))
  38287. characterMakers.push(() => makeCharacter(
  38288. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38289. {
  38290. frontImp: {
  38291. height: math.unit(1 + 11/12, "feet"),
  38292. name: "Front (Imp)",
  38293. image: {
  38294. source: "./media/characters/max-kobold/front-imp.svg",
  38295. extra: 1238/1134,
  38296. bottom: 81/1319
  38297. }
  38298. },
  38299. backImp: {
  38300. height: math.unit(1 + 11/12, "feet"),
  38301. name: "Back (Imp)",
  38302. image: {
  38303. source: "./media/characters/max-kobold/back-imp.svg",
  38304. extra: 1334/1175,
  38305. bottom: 34/1368
  38306. }
  38307. },
  38308. frontDemi: {
  38309. height: math.unit(5 + 9/12, "feet"),
  38310. name: "Front (Demi)",
  38311. image: {
  38312. source: "./media/characters/max-kobold/front-demi.svg",
  38313. extra: 1715/1685,
  38314. bottom: 54/1769
  38315. }
  38316. },
  38317. backDemi: {
  38318. height: math.unit(5 + 9/12, "feet"),
  38319. name: "Back (Demi)",
  38320. image: {
  38321. source: "./media/characters/max-kobold/back-demi.svg",
  38322. extra: 1752/1729,
  38323. bottom: 41/1793
  38324. }
  38325. },
  38326. handImp: {
  38327. height: math.unit(0.45, "feet"),
  38328. name: "Hand (Imp)",
  38329. image: {
  38330. source: "./media/characters/max-kobold/hand.svg"
  38331. }
  38332. },
  38333. pawImp: {
  38334. height: math.unit(0.46, "feet"),
  38335. name: "Paw (Imp)",
  38336. image: {
  38337. source: "./media/characters/max-kobold/paw.svg"
  38338. }
  38339. },
  38340. handDemi: {
  38341. height: math.unit(0.80, "feet"),
  38342. name: "Hand (Demi)",
  38343. image: {
  38344. source: "./media/characters/max-kobold/hand.svg"
  38345. }
  38346. },
  38347. pawDemi: {
  38348. height: math.unit(1.1, "feet"),
  38349. name: "Paw (Demi)",
  38350. image: {
  38351. source: "./media/characters/max-kobold/paw.svg"
  38352. }
  38353. },
  38354. headImp: {
  38355. height: math.unit(1.33, "feet"),
  38356. name: "Head (Imp)",
  38357. image: {
  38358. source: "./media/characters/max-kobold/head-imp.svg"
  38359. }
  38360. },
  38361. mawImp: {
  38362. height: math.unit(0.75, "feet"),
  38363. name: "Maw (Imp)",
  38364. image: {
  38365. source: "./media/characters/max-kobold/maw-imp.svg"
  38366. }
  38367. },
  38368. mawDemi: {
  38369. height: math.unit(0.42, "feet"),
  38370. name: "Maw (Demi)",
  38371. image: {
  38372. source: "./media/characters/max-kobold/maw-demi.svg"
  38373. }
  38374. },
  38375. },
  38376. [
  38377. {
  38378. name: "Normal",
  38379. height: math.unit(1 + 11/12, "feet"),
  38380. default: true
  38381. },
  38382. ]
  38383. ))
  38384. characterMakers.push(() => makeCharacter(
  38385. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38386. {
  38387. front: {
  38388. height: math.unit(7 + 5/12, "feet"),
  38389. name: "Front",
  38390. image: {
  38391. source: "./media/characters/carbon/front.svg",
  38392. extra: 1754/1689,
  38393. bottom: 65/1819
  38394. }
  38395. },
  38396. back: {
  38397. height: math.unit(7 + 5/12, "feet"),
  38398. name: "Back",
  38399. image: {
  38400. source: "./media/characters/carbon/back.svg",
  38401. extra: 1762/1695,
  38402. bottom: 24/1786
  38403. }
  38404. },
  38405. frontGigantamax: {
  38406. height: math.unit(150, "feet"),
  38407. name: "Front (Gigantamax)",
  38408. image: {
  38409. source: "./media/characters/carbon/front-gigantamax.svg",
  38410. extra: 1826/1669,
  38411. bottom: 59/1885
  38412. }
  38413. },
  38414. backGigantamax: {
  38415. height: math.unit(150, "feet"),
  38416. name: "Back (Gigantamax)",
  38417. image: {
  38418. source: "./media/characters/carbon/back-gigantamax.svg",
  38419. extra: 1796/1653,
  38420. bottom: 53/1849
  38421. }
  38422. },
  38423. maw: {
  38424. height: math.unit(0.48, "feet"),
  38425. name: "Maw",
  38426. image: {
  38427. source: "./media/characters/carbon/maw.svg"
  38428. }
  38429. },
  38430. mawGigantamax: {
  38431. height: math.unit(7.5, "feet"),
  38432. name: "Maw (Gigantamax)",
  38433. image: {
  38434. source: "./media/characters/carbon/maw-gigantamax.svg"
  38435. }
  38436. },
  38437. },
  38438. [
  38439. {
  38440. name: "Normal",
  38441. height: math.unit(7 + 5/12, "feet"),
  38442. default: true
  38443. },
  38444. ]
  38445. ))
  38446. characterMakers.push(() => makeCharacter(
  38447. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38448. {
  38449. front: {
  38450. height: math.unit(6, "feet"),
  38451. name: "Front",
  38452. image: {
  38453. source: "./media/characters/maverick/front.svg",
  38454. extra: 1672/1661,
  38455. bottom: 85/1757
  38456. }
  38457. },
  38458. back: {
  38459. height: math.unit(6, "feet"),
  38460. name: "Back",
  38461. image: {
  38462. source: "./media/characters/maverick/back.svg",
  38463. extra: 1642/1631,
  38464. bottom: 38/1680
  38465. }
  38466. },
  38467. },
  38468. [
  38469. {
  38470. name: "Normal",
  38471. height: math.unit(6, "feet"),
  38472. default: true
  38473. },
  38474. ]
  38475. ))
  38476. characterMakers.push(() => makeCharacter(
  38477. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38478. {
  38479. front: {
  38480. height: math.unit(15, "feet"),
  38481. weight: math.unit(615, "lb"),
  38482. name: "Front",
  38483. image: {
  38484. source: "./media/characters/grockle/front.svg",
  38485. extra: 1535/1427,
  38486. bottom: 56/1591
  38487. }
  38488. },
  38489. },
  38490. [
  38491. {
  38492. name: "Normal",
  38493. height: math.unit(15, "feet"),
  38494. default: true
  38495. },
  38496. {
  38497. name: "Large",
  38498. height: math.unit(150, "feet")
  38499. },
  38500. {
  38501. name: "Macro",
  38502. height: math.unit(1876, "feet")
  38503. },
  38504. {
  38505. name: "Mega Macro",
  38506. height: math.unit(121940, "feet")
  38507. },
  38508. {
  38509. name: "Giga Macro",
  38510. height: math.unit(750, "km")
  38511. },
  38512. {
  38513. name: "Tera Macro",
  38514. height: math.unit(750000, "km")
  38515. },
  38516. {
  38517. name: "Galactic",
  38518. height: math.unit(1.4e5, "km")
  38519. },
  38520. {
  38521. name: "Godlike",
  38522. height: math.unit(9.8e280, "galaxies")
  38523. },
  38524. ]
  38525. ))
  38526. characterMakers.push(() => makeCharacter(
  38527. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38528. {
  38529. front: {
  38530. height: math.unit(11, "meters"),
  38531. weight: math.unit(20, "tonnes"),
  38532. name: "Front",
  38533. image: {
  38534. source: "./media/characters/alistair/front.svg",
  38535. extra: 1265/1009,
  38536. bottom: 93/1358
  38537. }
  38538. },
  38539. },
  38540. [
  38541. {
  38542. name: "Normal",
  38543. height: math.unit(11, "meters"),
  38544. default: true
  38545. },
  38546. ]
  38547. ))
  38548. characterMakers.push(() => makeCharacter(
  38549. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38550. {
  38551. front: {
  38552. height: math.unit(5 + 8/12, "feet"),
  38553. name: "Front",
  38554. image: {
  38555. source: "./media/characters/haruka/front.svg",
  38556. extra: 2012/1952,
  38557. bottom: 0/2012
  38558. }
  38559. },
  38560. },
  38561. [
  38562. {
  38563. name: "Normal",
  38564. height: math.unit(5 + 8/12, "feet"),
  38565. default: true
  38566. },
  38567. ]
  38568. ))
  38569. characterMakers.push(() => makeCharacter(
  38570. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38571. {
  38572. back: {
  38573. height: math.unit(9, "feet"),
  38574. name: "Back",
  38575. image: {
  38576. source: "./media/characters/vivian-sylveon/back.svg",
  38577. extra: 1853/1714,
  38578. bottom: 0/1853
  38579. }
  38580. },
  38581. },
  38582. [
  38583. {
  38584. name: "Normal",
  38585. height: math.unit(9, "feet"),
  38586. default: true
  38587. },
  38588. {
  38589. name: "Macro",
  38590. height: math.unit(500, "feet")
  38591. },
  38592. {
  38593. name: "Megamacro",
  38594. height: math.unit(600, "miles")
  38595. },
  38596. {
  38597. name: "Gigamacro",
  38598. height: math.unit(30000, "miles")
  38599. },
  38600. ]
  38601. ))
  38602. characterMakers.push(() => makeCharacter(
  38603. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38604. {
  38605. anthro: {
  38606. height: math.unit(5 + 10/12, "feet"),
  38607. weight: math.unit(100, "lb"),
  38608. name: "Anthro",
  38609. image: {
  38610. source: "./media/characters/daiki/anthro.svg",
  38611. extra: 1115/1027,
  38612. bottom: 69/1184
  38613. }
  38614. },
  38615. feral: {
  38616. height: math.unit(200, "feet"),
  38617. name: "Feral",
  38618. image: {
  38619. source: "./media/characters/daiki/feral.svg",
  38620. extra: 1256/313,
  38621. bottom: 39/1295
  38622. }
  38623. },
  38624. feralHead: {
  38625. height: math.unit(171, "feet"),
  38626. name: "Feral Head",
  38627. image: {
  38628. source: "./media/characters/daiki/feral-head.svg"
  38629. }
  38630. },
  38631. manaDragon: {
  38632. height: math.unit(170, "meters"),
  38633. name: "Mana-dragon",
  38634. image: {
  38635. source: "./media/characters/daiki/mana-dragon.svg",
  38636. extra: 763/420,
  38637. bottom: 97/860
  38638. }
  38639. },
  38640. },
  38641. [
  38642. {
  38643. name: "Normal",
  38644. height: math.unit(5 + 10/12, "feet"),
  38645. default: true
  38646. },
  38647. ]
  38648. ))
  38649. characterMakers.push(() => makeCharacter(
  38650. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38651. {
  38652. fullyEquippedFront: {
  38653. height: math.unit(3 + 1/12, "feet"),
  38654. weight: math.unit(24, "lb"),
  38655. name: "Fully Equipped (Front)",
  38656. image: {
  38657. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38658. extra: 687/605,
  38659. bottom: 18/705
  38660. }
  38661. },
  38662. fullyEquippedBack: {
  38663. height: math.unit(3 + 1/12, "feet"),
  38664. weight: math.unit(24, "lb"),
  38665. name: "Fully Equipped (Back)",
  38666. image: {
  38667. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38668. extra: 689/590,
  38669. bottom: 18/707
  38670. }
  38671. },
  38672. dailyWear: {
  38673. height: math.unit(3 + 1/12, "feet"),
  38674. weight: math.unit(24, "lb"),
  38675. name: "Daily Wear",
  38676. image: {
  38677. source: "./media/characters/tea-spot/daily-wear.svg",
  38678. extra: 701/620,
  38679. bottom: 21/722
  38680. }
  38681. },
  38682. maidWork: {
  38683. height: math.unit(3 + 1/12, "feet"),
  38684. weight: math.unit(24, "lb"),
  38685. name: "Maid Work",
  38686. image: {
  38687. source: "./media/characters/tea-spot/maid-work.svg",
  38688. extra: 693/609,
  38689. bottom: 15/708
  38690. }
  38691. },
  38692. },
  38693. [
  38694. {
  38695. name: "Normal",
  38696. height: math.unit(3 + 1/12, "feet"),
  38697. default: true
  38698. },
  38699. ]
  38700. ))
  38701. characterMakers.push(() => makeCharacter(
  38702. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38703. {
  38704. front: {
  38705. height: math.unit(175, "cm"),
  38706. weight: math.unit(75, "kg"),
  38707. name: "Front",
  38708. image: {
  38709. source: "./media/characters/chee/front.svg",
  38710. extra: 1796/1740,
  38711. bottom: 40/1836
  38712. }
  38713. },
  38714. },
  38715. [
  38716. {
  38717. name: "Micro-Micro",
  38718. height: math.unit(1, "nm")
  38719. },
  38720. {
  38721. name: "Micro-erst",
  38722. height: math.unit(1, "micrometer")
  38723. },
  38724. {
  38725. name: "Micro-er",
  38726. height: math.unit(1, "cm")
  38727. },
  38728. {
  38729. name: "Normal",
  38730. height: math.unit(175, "cm"),
  38731. default: true
  38732. },
  38733. {
  38734. name: "Macro",
  38735. height: math.unit(100, "m")
  38736. },
  38737. {
  38738. name: "Macro-er",
  38739. height: math.unit(1, "km")
  38740. },
  38741. {
  38742. name: "Macro-erst",
  38743. height: math.unit(10, "km")
  38744. },
  38745. {
  38746. name: "Macro-Macro",
  38747. height: math.unit(100, "km")
  38748. },
  38749. ]
  38750. ))
  38751. characterMakers.push(() => makeCharacter(
  38752. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38753. {
  38754. front: {
  38755. height: math.unit(11 + 9/12, "feet"),
  38756. weight: math.unit(935, "lb"),
  38757. name: "Front",
  38758. image: {
  38759. source: "./media/characters/kingsley/front.svg",
  38760. extra: 1803/1674,
  38761. bottom: 127/1930
  38762. }
  38763. },
  38764. frontNude: {
  38765. height: math.unit(11 + 9/12, "feet"),
  38766. weight: math.unit(935, "lb"),
  38767. name: "Front (Nude)",
  38768. image: {
  38769. source: "./media/characters/kingsley/front-nude.svg",
  38770. extra: 1803/1674,
  38771. bottom: 127/1930
  38772. }
  38773. },
  38774. },
  38775. [
  38776. {
  38777. name: "Normal",
  38778. height: math.unit(11 + 9/12, "feet"),
  38779. default: true
  38780. },
  38781. ]
  38782. ))
  38783. characterMakers.push(() => makeCharacter(
  38784. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38785. {
  38786. side: {
  38787. height: math.unit(9, "feet"),
  38788. name: "Side",
  38789. image: {
  38790. source: "./media/characters/rymel/side.svg",
  38791. extra: 792/469,
  38792. bottom: 121/913
  38793. }
  38794. },
  38795. maw: {
  38796. height: math.unit(2.4, "meters"),
  38797. name: "Maw",
  38798. image: {
  38799. source: "./media/characters/rymel/maw.svg"
  38800. }
  38801. },
  38802. },
  38803. [
  38804. {
  38805. name: "House Drake",
  38806. height: math.unit(2, "feet")
  38807. },
  38808. {
  38809. name: "Reduced",
  38810. height: math.unit(4.5, "feet")
  38811. },
  38812. {
  38813. name: "Normal",
  38814. height: math.unit(9, "feet"),
  38815. default: true
  38816. },
  38817. ]
  38818. ))
  38819. characterMakers.push(() => makeCharacter(
  38820. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38821. {
  38822. front: {
  38823. height: math.unit(1.74, "meters"),
  38824. weight: math.unit(55, "kg"),
  38825. name: "Front",
  38826. image: {
  38827. source: "./media/characters/rubus/front.svg",
  38828. extra: 1894/1742,
  38829. bottom: 44/1938
  38830. }
  38831. },
  38832. },
  38833. [
  38834. {
  38835. name: "Normal",
  38836. height: math.unit(1.74, "meters"),
  38837. default: true
  38838. },
  38839. ]
  38840. ))
  38841. characterMakers.push(() => makeCharacter(
  38842. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38843. {
  38844. front: {
  38845. height: math.unit(5 + 2/12, "feet"),
  38846. weight: math.unit(112, "lb"),
  38847. name: "Front",
  38848. image: {
  38849. source: "./media/characters/cassie-kingston/front.svg",
  38850. extra: 1438/1390,
  38851. bottom: 47/1485
  38852. }
  38853. },
  38854. },
  38855. [
  38856. {
  38857. name: "Normal",
  38858. height: math.unit(5 + 2/12, "feet"),
  38859. default: true
  38860. },
  38861. {
  38862. name: "Macro",
  38863. height: math.unit(128, "feet")
  38864. },
  38865. {
  38866. name: "Megamacro",
  38867. height: math.unit(2.56, "miles")
  38868. },
  38869. ]
  38870. ))
  38871. characterMakers.push(() => makeCharacter(
  38872. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38873. {
  38874. front: {
  38875. height: math.unit(7, "feet"),
  38876. name: "Front",
  38877. image: {
  38878. source: "./media/characters/fox/front.svg",
  38879. extra: 1798/1703,
  38880. bottom: 55/1853
  38881. }
  38882. },
  38883. back: {
  38884. height: math.unit(7, "feet"),
  38885. name: "Back",
  38886. image: {
  38887. source: "./media/characters/fox/back.svg",
  38888. extra: 1748/1649,
  38889. bottom: 32/1780
  38890. }
  38891. },
  38892. head: {
  38893. height: math.unit(1.95, "feet"),
  38894. name: "Head",
  38895. image: {
  38896. source: "./media/characters/fox/head.svg"
  38897. }
  38898. },
  38899. dick: {
  38900. height: math.unit(1.33, "feet"),
  38901. name: "Dick",
  38902. image: {
  38903. source: "./media/characters/fox/dick.svg"
  38904. }
  38905. },
  38906. foot: {
  38907. height: math.unit(1, "feet"),
  38908. name: "Foot",
  38909. image: {
  38910. source: "./media/characters/fox/foot.svg"
  38911. }
  38912. },
  38913. paw: {
  38914. height: math.unit(0.92, "feet"),
  38915. name: "Paw",
  38916. image: {
  38917. source: "./media/characters/fox/paw.svg"
  38918. }
  38919. },
  38920. },
  38921. [
  38922. {
  38923. name: "Small",
  38924. height: math.unit(3, "inches")
  38925. },
  38926. {
  38927. name: "\"Realistic\"",
  38928. height: math.unit(7, "feet")
  38929. },
  38930. {
  38931. name: "Normal",
  38932. height: math.unit(150, "feet"),
  38933. default: true
  38934. },
  38935. {
  38936. name: "BIG",
  38937. height: math.unit(1200, "feet")
  38938. },
  38939. {
  38940. name: "👀",
  38941. height: math.unit(5, "miles")
  38942. },
  38943. {
  38944. name: "👀👀👀",
  38945. height: math.unit(64, "miles")
  38946. },
  38947. ]
  38948. ))
  38949. characterMakers.push(() => makeCharacter(
  38950. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38951. {
  38952. front: {
  38953. height: math.unit(625, "feet"),
  38954. name: "Front",
  38955. image: {
  38956. source: "./media/characters/asonja-rossa/front.svg",
  38957. extra: 1833/1686,
  38958. bottom: 24/1857
  38959. }
  38960. },
  38961. back: {
  38962. height: math.unit(625, "feet"),
  38963. name: "Back",
  38964. image: {
  38965. source: "./media/characters/asonja-rossa/back.svg",
  38966. extra: 1852/1753,
  38967. bottom: 26/1878
  38968. }
  38969. },
  38970. },
  38971. [
  38972. {
  38973. name: "Macro",
  38974. height: math.unit(625, "feet"),
  38975. default: true
  38976. },
  38977. ]
  38978. ))
  38979. characterMakers.push(() => makeCharacter(
  38980. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38981. {
  38982. side: {
  38983. height: math.unit(8, "feet"),
  38984. name: "Side",
  38985. image: {
  38986. source: "./media/characters/rezukii/side.svg",
  38987. extra: 979/542,
  38988. bottom: 87/1066
  38989. }
  38990. },
  38991. sitting: {
  38992. height: math.unit(14.6, "feet"),
  38993. name: "Sitting",
  38994. image: {
  38995. source: "./media/characters/rezukii/sitting.svg",
  38996. extra: 1023/813,
  38997. bottom: 45/1068
  38998. }
  38999. },
  39000. },
  39001. [
  39002. {
  39003. name: "Tiny",
  39004. height: math.unit(2, "feet")
  39005. },
  39006. {
  39007. name: "Smol",
  39008. height: math.unit(4, "feet")
  39009. },
  39010. {
  39011. name: "Normal",
  39012. height: math.unit(8, "feet"),
  39013. default: true
  39014. },
  39015. {
  39016. name: "Big",
  39017. height: math.unit(12, "feet")
  39018. },
  39019. {
  39020. name: "Macro",
  39021. height: math.unit(30, "feet")
  39022. },
  39023. ]
  39024. ))
  39025. characterMakers.push(() => makeCharacter(
  39026. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39027. {
  39028. front: {
  39029. height: math.unit(14, "feet"),
  39030. weight: math.unit(9.5, "tonnes"),
  39031. name: "Front",
  39032. image: {
  39033. source: "./media/characters/dawnheart/front.svg",
  39034. extra: 2792/2675,
  39035. bottom: 64/2856
  39036. }
  39037. },
  39038. },
  39039. [
  39040. {
  39041. name: "Normal",
  39042. height: math.unit(14, "feet"),
  39043. default: true
  39044. },
  39045. ]
  39046. ))
  39047. characterMakers.push(() => makeCharacter(
  39048. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39049. {
  39050. front: {
  39051. height: math.unit(1.7, "m"),
  39052. name: "Front",
  39053. image: {
  39054. source: "./media/characters/gladi/front.svg",
  39055. extra: 1460/1362,
  39056. bottom: 19/1479
  39057. }
  39058. },
  39059. back: {
  39060. height: math.unit(1.7, "m"),
  39061. name: "Back",
  39062. image: {
  39063. source: "./media/characters/gladi/back.svg",
  39064. extra: 1459/1357,
  39065. bottom: 12/1471
  39066. }
  39067. },
  39068. feral: {
  39069. height: math.unit(2.05, "m"),
  39070. name: "Feral",
  39071. image: {
  39072. source: "./media/characters/gladi/feral.svg",
  39073. extra: 821/557,
  39074. bottom: 91/912
  39075. }
  39076. },
  39077. },
  39078. [
  39079. {
  39080. name: "Shortest",
  39081. height: math.unit(70, "cm")
  39082. },
  39083. {
  39084. name: "Normal",
  39085. height: math.unit(1.7, "m")
  39086. },
  39087. {
  39088. name: "Macro",
  39089. height: math.unit(10, "m"),
  39090. default: true
  39091. },
  39092. {
  39093. name: "Tallest",
  39094. height: math.unit(200, "m")
  39095. },
  39096. ]
  39097. ))
  39098. characterMakers.push(() => makeCharacter(
  39099. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39100. {
  39101. front: {
  39102. height: math.unit(5 + 7/12, "feet"),
  39103. weight: math.unit(2, "tons"),
  39104. name: "Front",
  39105. image: {
  39106. source: "./media/characters/erdno/front.svg",
  39107. extra: 1234/1129,
  39108. bottom: 35/1269
  39109. }
  39110. },
  39111. angled: {
  39112. height: math.unit(5 + 7/12, "feet"),
  39113. weight: math.unit(2, "tons"),
  39114. name: "Angled",
  39115. image: {
  39116. source: "./media/characters/erdno/angled.svg",
  39117. extra: 1185/1139,
  39118. bottom: 36/1221
  39119. }
  39120. },
  39121. side: {
  39122. height: math.unit(5 + 7/12, "feet"),
  39123. weight: math.unit(2, "tons"),
  39124. name: "Side",
  39125. image: {
  39126. source: "./media/characters/erdno/side.svg",
  39127. extra: 1191/1144,
  39128. bottom: 40/1231
  39129. }
  39130. },
  39131. back: {
  39132. height: math.unit(5 + 7/12, "feet"),
  39133. weight: math.unit(2, "tons"),
  39134. name: "Back",
  39135. image: {
  39136. source: "./media/characters/erdno/back.svg",
  39137. extra: 1202/1146,
  39138. bottom: 17/1219
  39139. }
  39140. },
  39141. frontNsfw: {
  39142. height: math.unit(5 + 7/12, "feet"),
  39143. weight: math.unit(2, "tons"),
  39144. name: "Front (NSFW)",
  39145. image: {
  39146. source: "./media/characters/erdno/front-nsfw.svg",
  39147. extra: 1234/1129,
  39148. bottom: 35/1269
  39149. }
  39150. },
  39151. angledNsfw: {
  39152. height: math.unit(5 + 7/12, "feet"),
  39153. weight: math.unit(2, "tons"),
  39154. name: "Angled (NSFW)",
  39155. image: {
  39156. source: "./media/characters/erdno/angled-nsfw.svg",
  39157. extra: 1185/1139,
  39158. bottom: 36/1221
  39159. }
  39160. },
  39161. sideNsfw: {
  39162. height: math.unit(5 + 7/12, "feet"),
  39163. weight: math.unit(2, "tons"),
  39164. name: "Side (NSFW)",
  39165. image: {
  39166. source: "./media/characters/erdno/side-nsfw.svg",
  39167. extra: 1191/1144,
  39168. bottom: 40/1231
  39169. }
  39170. },
  39171. backNsfw: {
  39172. height: math.unit(5 + 7/12, "feet"),
  39173. weight: math.unit(2, "tons"),
  39174. name: "Back (NSFW)",
  39175. image: {
  39176. source: "./media/characters/erdno/back-nsfw.svg",
  39177. extra: 1202/1146,
  39178. bottom: 17/1219
  39179. }
  39180. },
  39181. frontHyper: {
  39182. height: math.unit(5 + 7/12, "feet"),
  39183. weight: math.unit(2, "tons"),
  39184. name: "Front (Hyper)",
  39185. image: {
  39186. source: "./media/characters/erdno/front-hyper.svg",
  39187. extra: 1298/1136,
  39188. bottom: 35/1333
  39189. }
  39190. },
  39191. },
  39192. [
  39193. {
  39194. name: "Normal",
  39195. height: math.unit(5 + 7/12, "feet"),
  39196. default: true
  39197. },
  39198. {
  39199. name: "Big",
  39200. height: math.unit(5.7, "meters")
  39201. },
  39202. {
  39203. name: "Macro",
  39204. height: math.unit(5.7, "kilometers")
  39205. },
  39206. {
  39207. name: "Megamacro",
  39208. height: math.unit(5.7, "earths")
  39209. },
  39210. ]
  39211. ))
  39212. characterMakers.push(() => makeCharacter(
  39213. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39214. {
  39215. front: {
  39216. height: math.unit(5 + 10/12, "feet"),
  39217. weight: math.unit(150, "lb"),
  39218. name: "Front",
  39219. image: {
  39220. source: "./media/characters/jamie/front.svg",
  39221. extra: 1908/1768,
  39222. bottom: 19/1927
  39223. }
  39224. },
  39225. },
  39226. [
  39227. {
  39228. name: "Minimum",
  39229. height: math.unit(2, "cm")
  39230. },
  39231. {
  39232. name: "Micro",
  39233. height: math.unit(3, "inches")
  39234. },
  39235. {
  39236. name: "Normal",
  39237. height: math.unit(5 + 10/12, "feet"),
  39238. default: true
  39239. },
  39240. {
  39241. name: "Macro",
  39242. height: math.unit(150, "feet")
  39243. },
  39244. {
  39245. name: "Megamacro",
  39246. height: math.unit(10000, "m")
  39247. },
  39248. ]
  39249. ))
  39250. characterMakers.push(() => makeCharacter(
  39251. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39252. {
  39253. front: {
  39254. height: math.unit(2, "meters"),
  39255. weight: math.unit(100, "kg"),
  39256. name: "Front",
  39257. image: {
  39258. source: "./media/characters/shiron/front.svg",
  39259. extra: 2103/1985,
  39260. bottom: 98/2201
  39261. }
  39262. },
  39263. back: {
  39264. height: math.unit(2, "meters"),
  39265. weight: math.unit(100, "kg"),
  39266. name: "Back",
  39267. image: {
  39268. source: "./media/characters/shiron/back.svg",
  39269. extra: 2110/2015,
  39270. bottom: 89/2199
  39271. }
  39272. },
  39273. hand: {
  39274. height: math.unit(0.96, "feet"),
  39275. name: "Hand",
  39276. image: {
  39277. source: "./media/characters/shiron/hand.svg"
  39278. }
  39279. },
  39280. foot: {
  39281. height: math.unit(1.464, "feet"),
  39282. name: "Foot",
  39283. image: {
  39284. source: "./media/characters/shiron/foot.svg"
  39285. }
  39286. },
  39287. },
  39288. [
  39289. {
  39290. name: "Normal",
  39291. height: math.unit(2, "meters")
  39292. },
  39293. {
  39294. name: "Macro",
  39295. height: math.unit(500, "meters"),
  39296. default: true
  39297. },
  39298. {
  39299. name: "Megamacro",
  39300. height: math.unit(20, "km")
  39301. },
  39302. ]
  39303. ))
  39304. characterMakers.push(() => makeCharacter(
  39305. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39306. {
  39307. front: {
  39308. height: math.unit(6, "feet"),
  39309. name: "Front",
  39310. image: {
  39311. source: "./media/characters/sam/front.svg",
  39312. extra: 849/826,
  39313. bottom: 19/868
  39314. }
  39315. },
  39316. },
  39317. [
  39318. {
  39319. name: "Normal",
  39320. height: math.unit(6, "feet"),
  39321. default: true
  39322. },
  39323. ]
  39324. ))
  39325. characterMakers.push(() => makeCharacter(
  39326. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39327. {
  39328. front: {
  39329. height: math.unit(8 + 4/12, "feet"),
  39330. weight: math.unit(122, "kg"),
  39331. name: "Front",
  39332. image: {
  39333. source: "./media/characters/namori-kurogawa/front.svg",
  39334. extra: 1894/1576,
  39335. bottom: 34/1928
  39336. }
  39337. },
  39338. },
  39339. [
  39340. {
  39341. name: "Normal",
  39342. height: math.unit(8 + 4/12, "feet"),
  39343. default: true
  39344. },
  39345. ]
  39346. ))
  39347. characterMakers.push(() => makeCharacter(
  39348. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39349. {
  39350. front: {
  39351. height: math.unit(9, "feet"),
  39352. weight: math.unit(621, "lb"),
  39353. name: "Front",
  39354. image: {
  39355. source: "./media/characters/unmru/front.svg",
  39356. extra: 1853/1747,
  39357. bottom: 73/1926
  39358. }
  39359. },
  39360. side: {
  39361. height: math.unit(9, "feet"),
  39362. weight: math.unit(621, "lb"),
  39363. name: "Side",
  39364. image: {
  39365. source: "./media/characters/unmru/side.svg",
  39366. extra: 1781/1671,
  39367. bottom: 127/1908
  39368. }
  39369. },
  39370. back: {
  39371. height: math.unit(9, "feet"),
  39372. weight: math.unit(621, "lb"),
  39373. name: "Back",
  39374. image: {
  39375. source: "./media/characters/unmru/back.svg",
  39376. extra: 1894/1765,
  39377. bottom: 75/1969
  39378. }
  39379. },
  39380. dick: {
  39381. height: math.unit(3, "feet"),
  39382. weight: math.unit(35, "lb"),
  39383. name: "Dick",
  39384. image: {
  39385. source: "./media/characters/unmru/dick.svg"
  39386. }
  39387. },
  39388. },
  39389. [
  39390. {
  39391. name: "Normal",
  39392. height: math.unit(9, "feet")
  39393. },
  39394. {
  39395. name: "Natural",
  39396. height: math.unit(27, "feet"),
  39397. default: true
  39398. },
  39399. {
  39400. name: "Giant",
  39401. height: math.unit(90, "feet")
  39402. },
  39403. {
  39404. name: "Kaiju",
  39405. height: math.unit(270, "feet")
  39406. },
  39407. {
  39408. name: "Macro",
  39409. height: math.unit(900, "feet")
  39410. },
  39411. {
  39412. name: "Macro+",
  39413. height: math.unit(2700, "feet")
  39414. },
  39415. {
  39416. name: "Megamacro",
  39417. height: math.unit(9000, "feet")
  39418. },
  39419. {
  39420. name: "City-Crushing",
  39421. height: math.unit(27000, "feet")
  39422. },
  39423. {
  39424. name: "Mountain-Mashing",
  39425. height: math.unit(90000, "feet")
  39426. },
  39427. {
  39428. name: "Earth-Eclipsing",
  39429. height: math.unit(2.7e8, "feet")
  39430. },
  39431. {
  39432. name: "Sol-Swallowing",
  39433. height: math.unit(9e10, "feet")
  39434. },
  39435. {
  39436. name: "Majoris-Munching",
  39437. height: math.unit(2.7e13, "feet")
  39438. },
  39439. ]
  39440. ))
  39441. characterMakers.push(() => makeCharacter(
  39442. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39443. {
  39444. front: {
  39445. height: math.unit(1, "inch"),
  39446. name: "Front",
  39447. image: {
  39448. source: "./media/characters/squeaks-mouse/front.svg",
  39449. extra: 352/308,
  39450. bottom: 25/377
  39451. }
  39452. },
  39453. },
  39454. [
  39455. {
  39456. name: "Micro",
  39457. height: math.unit(1, "inch"),
  39458. default: true
  39459. },
  39460. ]
  39461. ))
  39462. characterMakers.push(() => makeCharacter(
  39463. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39464. {
  39465. side: {
  39466. height: math.unit(35, "feet"),
  39467. name: "Side",
  39468. image: {
  39469. source: "./media/characters/sayko/side.svg",
  39470. extra: 1697/1021,
  39471. bottom: 82/1779
  39472. }
  39473. },
  39474. head: {
  39475. height: math.unit(16, "feet"),
  39476. name: "Head",
  39477. image: {
  39478. source: "./media/characters/sayko/head.svg"
  39479. }
  39480. },
  39481. forepaw: {
  39482. height: math.unit(7.85, "feet"),
  39483. name: "Forepaw",
  39484. image: {
  39485. source: "./media/characters/sayko/forepaw.svg"
  39486. }
  39487. },
  39488. hindpaw: {
  39489. height: math.unit(8.8, "feet"),
  39490. name: "Hindpaw",
  39491. image: {
  39492. source: "./media/characters/sayko/hindpaw.svg"
  39493. }
  39494. },
  39495. },
  39496. [
  39497. {
  39498. name: "Normal",
  39499. height: math.unit(35, "feet"),
  39500. default: true
  39501. },
  39502. {
  39503. name: "Colossus",
  39504. height: math.unit(100, "meters")
  39505. },
  39506. {
  39507. name: "\"Small\" Deity",
  39508. height: math.unit(1, "km")
  39509. },
  39510. {
  39511. name: "\"Large\" Deity",
  39512. height: math.unit(15, "km")
  39513. },
  39514. ]
  39515. ))
  39516. characterMakers.push(() => makeCharacter(
  39517. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39518. {
  39519. front: {
  39520. height: math.unit(6, "feet"),
  39521. weight: math.unit(250, "lb"),
  39522. name: "Front",
  39523. image: {
  39524. source: "./media/characters/mukiro/front.svg",
  39525. extra: 1368/1310,
  39526. bottom: 34/1402
  39527. }
  39528. },
  39529. },
  39530. [
  39531. {
  39532. name: "Normal",
  39533. height: math.unit(6, "feet"),
  39534. default: true
  39535. },
  39536. ]
  39537. ))
  39538. characterMakers.push(() => makeCharacter(
  39539. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39540. {
  39541. front: {
  39542. height: math.unit(12 + 4/12, "feet"),
  39543. name: "Front",
  39544. image: {
  39545. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39546. extra: 1346/1311,
  39547. bottom: 65/1411
  39548. }
  39549. },
  39550. },
  39551. [
  39552. {
  39553. name: "Base",
  39554. height: math.unit(12 + 4/12, "feet"),
  39555. default: true
  39556. },
  39557. {
  39558. name: "Macro",
  39559. height: math.unit(150, "feet")
  39560. },
  39561. {
  39562. name: "Mega",
  39563. height: math.unit(2, "miles")
  39564. },
  39565. {
  39566. name: "Demi God",
  39567. height: math.unit(4, "AU")
  39568. },
  39569. {
  39570. name: "God Size",
  39571. height: math.unit(1, "universe")
  39572. },
  39573. ]
  39574. ))
  39575. characterMakers.push(() => makeCharacter(
  39576. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39577. {
  39578. front: {
  39579. height: math.unit(3 + 3/12, "feet"),
  39580. weight: math.unit(88, "lb"),
  39581. name: "Front",
  39582. image: {
  39583. source: "./media/characters/trey/front.svg",
  39584. extra: 1815/1509,
  39585. bottom: 60/1875
  39586. }
  39587. },
  39588. },
  39589. [
  39590. {
  39591. name: "Normal",
  39592. height: math.unit(3 + 3/12, "feet"),
  39593. default: true
  39594. },
  39595. ]
  39596. ))
  39597. characterMakers.push(() => makeCharacter(
  39598. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39599. {
  39600. front: {
  39601. height: math.unit(4, "meters"),
  39602. name: "Front",
  39603. image: {
  39604. source: "./media/characters/adelonda/front.svg",
  39605. extra: 1077/982,
  39606. bottom: 39/1116
  39607. }
  39608. },
  39609. back: {
  39610. height: math.unit(4, "meters"),
  39611. name: "Back",
  39612. image: {
  39613. source: "./media/characters/adelonda/back.svg",
  39614. extra: 1105/1003,
  39615. bottom: 25/1130
  39616. }
  39617. },
  39618. feral: {
  39619. height: math.unit(40/1.5, "meters"),
  39620. name: "Feral",
  39621. image: {
  39622. source: "./media/characters/adelonda/feral.svg",
  39623. extra: 597/271,
  39624. bottom: 387/984
  39625. }
  39626. },
  39627. },
  39628. [
  39629. {
  39630. name: "Normal",
  39631. height: math.unit(4, "meters"),
  39632. default: true
  39633. },
  39634. ]
  39635. ))
  39636. characterMakers.push(() => makeCharacter(
  39637. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39638. {
  39639. front: {
  39640. height: math.unit(8 + 4/12, "feet"),
  39641. weight: math.unit(670, "lb"),
  39642. name: "Front",
  39643. image: {
  39644. source: "./media/characters/acadiel/front.svg",
  39645. extra: 1901/1595,
  39646. bottom: 142/2043
  39647. }
  39648. },
  39649. },
  39650. [
  39651. {
  39652. name: "Normal",
  39653. height: math.unit(8 + 4/12, "feet"),
  39654. default: true
  39655. },
  39656. {
  39657. name: "Macro",
  39658. height: math.unit(200, "feet")
  39659. },
  39660. ]
  39661. ))
  39662. characterMakers.push(() => makeCharacter(
  39663. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39664. {
  39665. front: {
  39666. height: math.unit(6 + 2/12, "feet"),
  39667. weight: math.unit(185, "lb"),
  39668. name: "Front",
  39669. image: {
  39670. source: "./media/characters/kayne-ein/front.svg",
  39671. extra: 1780/1560,
  39672. bottom: 81/1861
  39673. }
  39674. },
  39675. },
  39676. [
  39677. {
  39678. name: "Normal",
  39679. height: math.unit(6 + 2/12, "feet"),
  39680. default: true
  39681. },
  39682. {
  39683. name: "Transformation Stage",
  39684. height: math.unit(15, "feet")
  39685. },
  39686. {
  39687. name: "Macro",
  39688. height: math.unit(150, "feet")
  39689. },
  39690. {
  39691. name: "Earth's Shadow",
  39692. height: math.unit(6200, "miles")
  39693. },
  39694. {
  39695. name: "Universal Demon",
  39696. height: math.unit(28e9, "parsecs")
  39697. },
  39698. {
  39699. name: "Multiverse God",
  39700. height: math.unit(3, "multiverses")
  39701. },
  39702. ]
  39703. ))
  39704. characterMakers.push(() => makeCharacter(
  39705. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39706. {
  39707. front: {
  39708. height: math.unit(5 + 5/12, "feet"),
  39709. name: "Front",
  39710. image: {
  39711. source: "./media/characters/fawn/front.svg",
  39712. extra: 1873/1731,
  39713. bottom: 95/1968
  39714. }
  39715. },
  39716. back: {
  39717. height: math.unit(5 + 5/12, "feet"),
  39718. name: "Back",
  39719. image: {
  39720. source: "./media/characters/fawn/back.svg",
  39721. extra: 1813/1700,
  39722. bottom: 14/1827
  39723. }
  39724. },
  39725. hoof: {
  39726. height: math.unit(1.45, "feet"),
  39727. name: "Hoof",
  39728. image: {
  39729. source: "./media/characters/fawn/hoof.svg"
  39730. }
  39731. },
  39732. },
  39733. [
  39734. {
  39735. name: "Normal",
  39736. height: math.unit(5 + 5/12, "feet"),
  39737. default: true
  39738. },
  39739. ]
  39740. ))
  39741. characterMakers.push(() => makeCharacter(
  39742. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39743. {
  39744. front: {
  39745. height: math.unit(2 + 5/12, "feet"),
  39746. name: "Front",
  39747. image: {
  39748. source: "./media/characters/orion/front.svg",
  39749. extra: 1366/1304,
  39750. bottom: 43/1409
  39751. }
  39752. },
  39753. paw: {
  39754. height: math.unit(0.52, "feet"),
  39755. name: "Paw",
  39756. image: {
  39757. source: "./media/characters/orion/paw.svg"
  39758. }
  39759. },
  39760. },
  39761. [
  39762. {
  39763. name: "Normal",
  39764. height: math.unit(2 + 5/12, "feet"),
  39765. default: true
  39766. },
  39767. ]
  39768. ))
  39769. characterMakers.push(() => makeCharacter(
  39770. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39771. {
  39772. front: {
  39773. height: math.unit(5 + 10/12, "feet"),
  39774. name: "Front",
  39775. image: {
  39776. source: "./media/characters/vera/front.svg",
  39777. extra: 1680/1575,
  39778. bottom: 49/1729
  39779. }
  39780. },
  39781. back: {
  39782. height: math.unit(5 + 10/12, "feet"),
  39783. name: "Back",
  39784. image: {
  39785. source: "./media/characters/vera/back.svg",
  39786. extra: 1700/1588,
  39787. bottom: 18/1718
  39788. }
  39789. },
  39790. arcanine: {
  39791. height: math.unit(6 + 8/12, "feet"),
  39792. name: "Arcanine",
  39793. image: {
  39794. source: "./media/characters/vera/arcanine.svg",
  39795. extra: 1590/1511,
  39796. bottom: 71/1661
  39797. }
  39798. },
  39799. maw: {
  39800. height: math.unit(0.82, "feet"),
  39801. name: "Maw",
  39802. image: {
  39803. source: "./media/characters/vera/maw.svg"
  39804. }
  39805. },
  39806. mawArcanine: {
  39807. height: math.unit(0.97, "feet"),
  39808. name: "Maw (Arcanine)",
  39809. image: {
  39810. source: "./media/characters/vera/maw-arcanine.svg"
  39811. }
  39812. },
  39813. paw: {
  39814. height: math.unit(0.75, "feet"),
  39815. name: "Paw",
  39816. image: {
  39817. source: "./media/characters/vera/paw.svg"
  39818. }
  39819. },
  39820. pawprint: {
  39821. height: math.unit(0.52, "feet"),
  39822. name: "Pawprint",
  39823. image: {
  39824. source: "./media/characters/vera/pawprint.svg"
  39825. }
  39826. },
  39827. },
  39828. [
  39829. {
  39830. name: "Normal",
  39831. height: math.unit(5 + 10/12, "feet"),
  39832. default: true
  39833. },
  39834. {
  39835. name: "Macro",
  39836. height: math.unit(75, "feet")
  39837. },
  39838. ]
  39839. ))
  39840. characterMakers.push(() => makeCharacter(
  39841. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39842. {
  39843. front: {
  39844. height: math.unit(4, "feet"),
  39845. weight: math.unit(40, "lb"),
  39846. name: "Front",
  39847. image: {
  39848. source: "./media/characters/orvan-rabbit/front.svg",
  39849. extra: 1896/1642,
  39850. bottom: 29/1925
  39851. }
  39852. },
  39853. },
  39854. [
  39855. {
  39856. name: "Normal",
  39857. height: math.unit(4, "feet"),
  39858. default: true
  39859. },
  39860. ]
  39861. ))
  39862. characterMakers.push(() => makeCharacter(
  39863. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39864. {
  39865. front: {
  39866. height: math.unit(6, "feet"),
  39867. weight: math.unit(168, "lb"),
  39868. name: "Front",
  39869. image: {
  39870. source: "./media/characters/lisa/front.svg",
  39871. extra: 2065/1867,
  39872. bottom: 46/2111
  39873. }
  39874. },
  39875. back: {
  39876. height: math.unit(6, "feet"),
  39877. weight: math.unit(168, "lb"),
  39878. name: "Back",
  39879. image: {
  39880. source: "./media/characters/lisa/back.svg",
  39881. extra: 1982/1838,
  39882. bottom: 29/2011
  39883. }
  39884. },
  39885. maw: {
  39886. height: math.unit(0.81, "feet"),
  39887. name: "Maw",
  39888. image: {
  39889. source: "./media/characters/lisa/maw.svg"
  39890. }
  39891. },
  39892. paw: {
  39893. height: math.unit(0.9, "feet"),
  39894. name: "Paw",
  39895. image: {
  39896. source: "./media/characters/lisa/paw.svg"
  39897. }
  39898. },
  39899. caribousune: {
  39900. height: math.unit(7 + 2/12, "feet"),
  39901. weight: math.unit(268, "lb"),
  39902. name: "Caribousune",
  39903. image: {
  39904. source: "./media/characters/lisa/caribousune.svg",
  39905. extra: 1843/1633,
  39906. bottom: 29/1872
  39907. }
  39908. },
  39909. frontCaribousune: {
  39910. height: math.unit(7 + 2/12, "feet"),
  39911. weight: math.unit(268, "lb"),
  39912. name: "Front (Caribousune)",
  39913. image: {
  39914. source: "./media/characters/lisa/front-caribousune.svg",
  39915. extra: 1818/1638,
  39916. bottom: 52/1870
  39917. }
  39918. },
  39919. sideCaribousune: {
  39920. height: math.unit(7 + 2/12, "feet"),
  39921. weight: math.unit(268, "lb"),
  39922. name: "Side (Caribousune)",
  39923. image: {
  39924. source: "./media/characters/lisa/side-caribousune.svg",
  39925. extra: 1851/1635,
  39926. bottom: 16/1867
  39927. }
  39928. },
  39929. backCaribousune: {
  39930. height: math.unit(7 + 2/12, "feet"),
  39931. weight: math.unit(268, "lb"),
  39932. name: "Back (Caribousune)",
  39933. image: {
  39934. source: "./media/characters/lisa/back-caribousune.svg",
  39935. extra: 1801/1604,
  39936. bottom: 44/1845
  39937. }
  39938. },
  39939. caribou: {
  39940. height: math.unit(7 + 2/12, "feet"),
  39941. weight: math.unit(268, "lb"),
  39942. name: "Caribou",
  39943. image: {
  39944. source: "./media/characters/lisa/caribou.svg",
  39945. extra: 1843/1633,
  39946. bottom: 29/1872
  39947. }
  39948. },
  39949. frontCaribou: {
  39950. height: math.unit(7 + 2/12, "feet"),
  39951. weight: math.unit(268, "lb"),
  39952. name: "Front (Caribou)",
  39953. image: {
  39954. source: "./media/characters/lisa/front-caribou.svg",
  39955. extra: 1818/1638,
  39956. bottom: 52/1870
  39957. }
  39958. },
  39959. sideCaribou: {
  39960. height: math.unit(7 + 2/12, "feet"),
  39961. weight: math.unit(268, "lb"),
  39962. name: "Side (Caribou)",
  39963. image: {
  39964. source: "./media/characters/lisa/side-caribou.svg",
  39965. extra: 1851/1635,
  39966. bottom: 16/1867
  39967. }
  39968. },
  39969. backCaribou: {
  39970. height: math.unit(7 + 2/12, "feet"),
  39971. weight: math.unit(268, "lb"),
  39972. name: "Back (Caribou)",
  39973. image: {
  39974. source: "./media/characters/lisa/back-caribou.svg",
  39975. extra: 1801/1604,
  39976. bottom: 44/1845
  39977. }
  39978. },
  39979. mawCaribou: {
  39980. height: math.unit(1.45, "feet"),
  39981. name: "Maw (Caribou)",
  39982. image: {
  39983. source: "./media/characters/lisa/maw-caribou.svg"
  39984. }
  39985. },
  39986. mawCaribousune: {
  39987. height: math.unit(1.45, "feet"),
  39988. name: "Maw (Caribousune)",
  39989. image: {
  39990. source: "./media/characters/lisa/maw-caribousune.svg"
  39991. }
  39992. },
  39993. pawCaribousune: {
  39994. height: math.unit(1.61, "feet"),
  39995. name: "Paw (Caribou)",
  39996. image: {
  39997. source: "./media/characters/lisa/paw-caribousune.svg"
  39998. }
  39999. },
  40000. },
  40001. [
  40002. {
  40003. name: "Normal",
  40004. height: math.unit(6, "feet")
  40005. },
  40006. {
  40007. name: "God Size",
  40008. height: math.unit(72, "feet"),
  40009. default: true
  40010. },
  40011. {
  40012. name: "Towering",
  40013. height: math.unit(288, "feet")
  40014. },
  40015. {
  40016. name: "City Size",
  40017. height: math.unit(48384, "feet")
  40018. },
  40019. {
  40020. name: "Continental",
  40021. height: math.unit(4200, "miles")
  40022. },
  40023. {
  40024. name: "Planet Eater",
  40025. height: math.unit(42, "earths")
  40026. },
  40027. {
  40028. name: "Star Swallower",
  40029. height: math.unit(42, "solarradii")
  40030. },
  40031. {
  40032. name: "System Swallower",
  40033. height: math.unit(84000, "AU")
  40034. },
  40035. {
  40036. name: "Galaxy Gobbler",
  40037. height: math.unit(42, "galaxies")
  40038. },
  40039. {
  40040. name: "Universe Devourer",
  40041. height: math.unit(42, "universes")
  40042. },
  40043. {
  40044. name: "Multiverse Muncher",
  40045. height: math.unit(42, "multiverses")
  40046. },
  40047. ]
  40048. ))
  40049. characterMakers.push(() => makeCharacter(
  40050. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40051. {
  40052. front: {
  40053. height: math.unit(36, "feet"),
  40054. name: "Front",
  40055. image: {
  40056. source: "./media/characters/shadow-rat/front.svg",
  40057. extra: 1845/1758,
  40058. bottom: 83/1928
  40059. }
  40060. },
  40061. },
  40062. [
  40063. {
  40064. name: "Macro",
  40065. height: math.unit(36, "feet"),
  40066. default: true
  40067. },
  40068. ]
  40069. ))
  40070. characterMakers.push(() => makeCharacter(
  40071. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40072. {
  40073. side: {
  40074. height: math.unit(8, "feet"),
  40075. weight: math.unit(2630, "lb"),
  40076. name: "Side",
  40077. image: {
  40078. source: "./media/characters/torallia/side.svg",
  40079. extra: 2164/2021,
  40080. bottom: 371/2535
  40081. }
  40082. },
  40083. },
  40084. [
  40085. {
  40086. name: "Mortal Interaction",
  40087. height: math.unit(8, "feet")
  40088. },
  40089. {
  40090. name: "Natural",
  40091. height: math.unit(24, "feet"),
  40092. default: true
  40093. },
  40094. {
  40095. name: "Giant",
  40096. height: math.unit(80, "feet")
  40097. },
  40098. {
  40099. name: "Kaiju",
  40100. height: math.unit(240, "feet")
  40101. },
  40102. {
  40103. name: "Macro",
  40104. height: math.unit(800, "feet")
  40105. },
  40106. {
  40107. name: "Macro+",
  40108. height: math.unit(2400, "feet")
  40109. },
  40110. {
  40111. name: "Macro++",
  40112. height: math.unit(8000, "feet")
  40113. },
  40114. {
  40115. name: "City-Crushing",
  40116. height: math.unit(24000, "feet")
  40117. },
  40118. {
  40119. name: "Mountain-Mashing",
  40120. height: math.unit(80000, "feet")
  40121. },
  40122. {
  40123. name: "District Demolisher",
  40124. height: math.unit(240000, "feet")
  40125. },
  40126. {
  40127. name: "Tri-County Terror",
  40128. height: math.unit(800000, "feet")
  40129. },
  40130. {
  40131. name: "State Smasher",
  40132. height: math.unit(2.4e6, "feet")
  40133. },
  40134. {
  40135. name: "Nation Nemesis",
  40136. height: math.unit(8e6, "feet")
  40137. },
  40138. {
  40139. name: "Continent Cracker",
  40140. height: math.unit(2.4e7, "feet")
  40141. },
  40142. {
  40143. name: "Planet-Pillaging",
  40144. height: math.unit(8e7, "feet")
  40145. },
  40146. {
  40147. name: "Earth-Eclipsing",
  40148. height: math.unit(2.4e8, "feet")
  40149. },
  40150. {
  40151. name: "Jovian-Jostling",
  40152. height: math.unit(8e8, "feet")
  40153. },
  40154. {
  40155. name: "Gas Giant Gulper",
  40156. height: math.unit(2.4e9, "feet")
  40157. },
  40158. {
  40159. name: "Astral Annihilator",
  40160. height: math.unit(8e9, "feet")
  40161. },
  40162. {
  40163. name: "Celestial Conqueror",
  40164. height: math.unit(2.4e10, "feet")
  40165. },
  40166. {
  40167. name: "Sol-Swallowing",
  40168. height: math.unit(8e10, "feet")
  40169. },
  40170. {
  40171. name: "Hunter of the Heavens",
  40172. height: math.unit(2.4e13, "feet")
  40173. },
  40174. ]
  40175. ))
  40176. characterMakers.push(() => makeCharacter(
  40177. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40178. {
  40179. front: {
  40180. height: math.unit(6 + 8/12, "feet"),
  40181. weight: math.unit(250, "kilograms"),
  40182. volume: math.unit(28, "liters"),
  40183. name: "Front",
  40184. image: {
  40185. source: "./media/characters/rebecca-pawlson/front.svg",
  40186. extra: 1737/1596,
  40187. bottom: 107/1844
  40188. }
  40189. },
  40190. back: {
  40191. height: math.unit(6 + 8/12, "feet"),
  40192. weight: math.unit(250, "kilograms"),
  40193. volume: math.unit(28, "liters"),
  40194. name: "Back",
  40195. image: {
  40196. source: "./media/characters/rebecca-pawlson/back.svg",
  40197. extra: 1702/1523,
  40198. bottom: 86/1788
  40199. }
  40200. },
  40201. },
  40202. [
  40203. {
  40204. name: "Normal",
  40205. height: math.unit(6 + 8/12, "feet")
  40206. },
  40207. {
  40208. name: "Mini Macro",
  40209. height: math.unit(10, "feet"),
  40210. default: true
  40211. },
  40212. {
  40213. name: "Macro",
  40214. height: math.unit(100, "feet")
  40215. },
  40216. {
  40217. name: "Mega Macro",
  40218. height: math.unit(2500, "feet")
  40219. },
  40220. {
  40221. name: "Giga Macro",
  40222. height: math.unit(50, "miles")
  40223. },
  40224. ]
  40225. ))
  40226. characterMakers.push(() => makeCharacter(
  40227. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40228. {
  40229. front: {
  40230. height: math.unit(7 + 6/12, "feet"),
  40231. weight: math.unit(600, "lb"),
  40232. name: "Front",
  40233. image: {
  40234. source: "./media/characters/moxie-nova/front.svg",
  40235. extra: 1734/1652,
  40236. bottom: 41/1775
  40237. }
  40238. },
  40239. },
  40240. [
  40241. {
  40242. name: "Normal",
  40243. height: math.unit(7 + 6/12, "feet"),
  40244. default: true
  40245. },
  40246. ]
  40247. ))
  40248. characterMakers.push(() => makeCharacter(
  40249. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40250. {
  40251. goat: {
  40252. height: math.unit(4, "feet"),
  40253. weight: math.unit(180, "lb"),
  40254. name: "Goat",
  40255. image: {
  40256. source: "./media/characters/tiffany/goat.svg",
  40257. extra: 1845/1595,
  40258. bottom: 106/1951
  40259. }
  40260. },
  40261. front: {
  40262. height: math.unit(5, "feet"),
  40263. weight: math.unit(150, "lb"),
  40264. name: "Foxcoon",
  40265. image: {
  40266. source: "./media/characters/tiffany/foxcoon.svg",
  40267. extra: 1941/1845,
  40268. bottom: 58/1999
  40269. }
  40270. },
  40271. },
  40272. [
  40273. {
  40274. name: "Normal",
  40275. height: math.unit(5, "feet"),
  40276. default: true
  40277. },
  40278. ]
  40279. ))
  40280. characterMakers.push(() => makeCharacter(
  40281. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40282. {
  40283. front: {
  40284. height: math.unit(8, "feet"),
  40285. weight: math.unit(300, "lb"),
  40286. name: "Front",
  40287. image: {
  40288. source: "./media/characters/raxinath/front.svg",
  40289. extra: 1407/1309,
  40290. bottom: 39/1446
  40291. }
  40292. },
  40293. back: {
  40294. height: math.unit(8, "feet"),
  40295. weight: math.unit(300, "lb"),
  40296. name: "Back",
  40297. image: {
  40298. source: "./media/characters/raxinath/back.svg",
  40299. extra: 1405/1315,
  40300. bottom: 9/1414
  40301. }
  40302. },
  40303. },
  40304. [
  40305. {
  40306. name: "Speck",
  40307. height: math.unit(0.5, "nm")
  40308. },
  40309. {
  40310. name: "Micro",
  40311. height: math.unit(3, "inches")
  40312. },
  40313. {
  40314. name: "Kobold",
  40315. height: math.unit(3, "feet")
  40316. },
  40317. {
  40318. name: "Normal",
  40319. height: math.unit(8, "feet"),
  40320. default: true
  40321. },
  40322. {
  40323. name: "Giant",
  40324. height: math.unit(50, "feet")
  40325. },
  40326. {
  40327. name: "Macro",
  40328. height: math.unit(1000, "feet")
  40329. },
  40330. {
  40331. name: "Megamacro",
  40332. height: math.unit(1, "mile")
  40333. },
  40334. ]
  40335. ))
  40336. characterMakers.push(() => makeCharacter(
  40337. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40338. {
  40339. front: {
  40340. height: math.unit(10, "feet"),
  40341. weight: math.unit(1442, "lb"),
  40342. name: "Front",
  40343. image: {
  40344. source: "./media/characters/mal-dragon/front.svg",
  40345. extra: 1515/1444,
  40346. bottom: 113/1628
  40347. }
  40348. },
  40349. back: {
  40350. height: math.unit(10, "feet"),
  40351. weight: math.unit(1442, "lb"),
  40352. name: "Back",
  40353. image: {
  40354. source: "./media/characters/mal-dragon/back.svg",
  40355. extra: 1527/1434,
  40356. bottom: 25/1552
  40357. }
  40358. },
  40359. },
  40360. [
  40361. {
  40362. name: "Mortal Interaction",
  40363. height: math.unit(10, "feet"),
  40364. default: true
  40365. },
  40366. {
  40367. name: "Large",
  40368. height: math.unit(30, "feet")
  40369. },
  40370. {
  40371. name: "Kaiju",
  40372. height: math.unit(300, "feet")
  40373. },
  40374. {
  40375. name: "Megamacro",
  40376. height: math.unit(10000, "feet")
  40377. },
  40378. {
  40379. name: "Continent Cracker",
  40380. height: math.unit(30000000, "feet")
  40381. },
  40382. {
  40383. name: "Sol-Swallowing",
  40384. height: math.unit(1e11, "feet")
  40385. },
  40386. {
  40387. name: "Light Universal",
  40388. height: math.unit(5, "universes")
  40389. },
  40390. {
  40391. name: "Universe Atoms",
  40392. height: math.unit(1.829e9, "universes")
  40393. },
  40394. {
  40395. name: "Light Multiversal",
  40396. height: math.unit(5, "multiverses")
  40397. },
  40398. {
  40399. name: "Multiverse Atoms",
  40400. height: math.unit(1.829e9, "multiverses")
  40401. },
  40402. {
  40403. name: "Fabric of Time",
  40404. height: math.unit(1e262, "multiverses")
  40405. },
  40406. ]
  40407. ))
  40408. characterMakers.push(() => makeCharacter(
  40409. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40410. {
  40411. front: {
  40412. height: math.unit(9, "feet"),
  40413. weight: math.unit(1050, "lb"),
  40414. name: "Front",
  40415. image: {
  40416. source: "./media/characters/tabitha/front.svg",
  40417. extra: 2083/1994,
  40418. bottom: 68/2151
  40419. }
  40420. },
  40421. },
  40422. [
  40423. {
  40424. name: "Baseline",
  40425. height: math.unit(9, "feet"),
  40426. default: true
  40427. },
  40428. {
  40429. name: "Giant",
  40430. height: math.unit(90, "feet")
  40431. },
  40432. {
  40433. name: "Macro",
  40434. height: math.unit(900, "feet")
  40435. },
  40436. {
  40437. name: "Megamacro",
  40438. height: math.unit(9000, "feet")
  40439. },
  40440. {
  40441. name: "City-Crushing",
  40442. height: math.unit(27000, "feet")
  40443. },
  40444. {
  40445. name: "Mountain-Mashing",
  40446. height: math.unit(90000, "feet")
  40447. },
  40448. {
  40449. name: "Nation Nemesis",
  40450. height: math.unit(9e6, "feet")
  40451. },
  40452. {
  40453. name: "Continent Cracker",
  40454. height: math.unit(27e6, "feet")
  40455. },
  40456. {
  40457. name: "Earth-Eclipsing",
  40458. height: math.unit(2.7e8, "feet")
  40459. },
  40460. {
  40461. name: "Gas Giant Gulper",
  40462. height: math.unit(2.7e9, "feet")
  40463. },
  40464. {
  40465. name: "Sol-Swallowing",
  40466. height: math.unit(9e10, "feet")
  40467. },
  40468. {
  40469. name: "Galaxy Gulper",
  40470. height: math.unit(9, "galaxies")
  40471. },
  40472. {
  40473. name: "Cosmos Churner",
  40474. height: math.unit(9, "universes")
  40475. },
  40476. ]
  40477. ))
  40478. characterMakers.push(() => makeCharacter(
  40479. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40480. {
  40481. front: {
  40482. height: math.unit(160, "cm"),
  40483. weight: math.unit(55, "kg"),
  40484. name: "Front",
  40485. image: {
  40486. source: "./media/characters/tow/front.svg",
  40487. extra: 1751/1722,
  40488. bottom: 74/1825
  40489. }
  40490. },
  40491. },
  40492. [
  40493. {
  40494. name: "Norm",
  40495. height: math.unit(160, "cm")
  40496. },
  40497. {
  40498. name: "Casual",
  40499. height: math.unit(3200, "m"),
  40500. default: true
  40501. },
  40502. {
  40503. name: "Show-Off",
  40504. height: math.unit(160, "km")
  40505. },
  40506. ]
  40507. ))
  40508. characterMakers.push(() => makeCharacter(
  40509. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40510. {
  40511. front: {
  40512. height: math.unit(7 + 11/12, "feet"),
  40513. weight: math.unit(342.8, "lb"),
  40514. name: "Front",
  40515. image: {
  40516. source: "./media/characters/vivian-orca-dragon/front.svg",
  40517. extra: 1890/1865,
  40518. bottom: 28/1918
  40519. }
  40520. },
  40521. },
  40522. [
  40523. {
  40524. name: "Micro",
  40525. height: math.unit(5, "inches")
  40526. },
  40527. {
  40528. name: "Normal",
  40529. height: math.unit(7 + 11/12, "feet"),
  40530. default: true
  40531. },
  40532. {
  40533. name: "Macro",
  40534. height: math.unit(395 + 7/12, "feet")
  40535. },
  40536. ]
  40537. ))
  40538. characterMakers.push(() => makeCharacter(
  40539. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40540. {
  40541. side: {
  40542. height: math.unit(10, "feet"),
  40543. weight: math.unit(1442, "lb"),
  40544. name: "Side",
  40545. image: {
  40546. source: "./media/characters/lotherakon/side.svg",
  40547. extra: 1604/1497,
  40548. bottom: 89/1693
  40549. }
  40550. },
  40551. },
  40552. [
  40553. {
  40554. name: "Mortal Interaction",
  40555. height: math.unit(10, "feet")
  40556. },
  40557. {
  40558. name: "Large",
  40559. height: math.unit(30, "feet"),
  40560. default: true
  40561. },
  40562. {
  40563. name: "Giant",
  40564. height: math.unit(100, "feet")
  40565. },
  40566. {
  40567. name: "Kaiju",
  40568. height: math.unit(300, "feet")
  40569. },
  40570. {
  40571. name: "Macro",
  40572. height: math.unit(1000, "feet")
  40573. },
  40574. {
  40575. name: "Macro+",
  40576. height: math.unit(3000, "feet")
  40577. },
  40578. {
  40579. name: "Megamacro",
  40580. height: math.unit(10000, "feet")
  40581. },
  40582. {
  40583. name: "City-Crushing",
  40584. height: math.unit(30000, "feet")
  40585. },
  40586. {
  40587. name: "Continent Cracker",
  40588. height: math.unit(30e6, "feet")
  40589. },
  40590. {
  40591. name: "Earth Eclipsing",
  40592. height: math.unit(3e8, "feet")
  40593. },
  40594. {
  40595. name: "Gas Giant Gulper",
  40596. height: math.unit(3e9, "feet")
  40597. },
  40598. {
  40599. name: "Sol-Swallowing",
  40600. height: math.unit(1e11, "feet")
  40601. },
  40602. {
  40603. name: "System Swallower",
  40604. height: math.unit(3e14, "feet")
  40605. },
  40606. {
  40607. name: "Galaxy Gulper",
  40608. height: math.unit(10, "galaxies")
  40609. },
  40610. {
  40611. name: "Light Universal",
  40612. height: math.unit(5, "universes")
  40613. },
  40614. {
  40615. name: "Universe Palm",
  40616. height: math.unit(20, "universes")
  40617. },
  40618. {
  40619. name: "Light Multiversal",
  40620. height: math.unit(5, "multiverses")
  40621. },
  40622. {
  40623. name: "Multiverse Palm",
  40624. height: math.unit(20, "multiverses")
  40625. },
  40626. {
  40627. name: "Inferno Incarnate",
  40628. height: math.unit(1e7, "multiverses")
  40629. },
  40630. ]
  40631. ))
  40632. characterMakers.push(() => makeCharacter(
  40633. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40634. {
  40635. front: {
  40636. height: math.unit(8, "feet"),
  40637. weight: math.unit(1200, "lb"),
  40638. name: "Front",
  40639. image: {
  40640. source: "./media/characters/malithee/front.svg",
  40641. extra: 1675/1640,
  40642. bottom: 162/1837
  40643. }
  40644. },
  40645. },
  40646. [
  40647. {
  40648. name: "Mortal Interaction",
  40649. height: math.unit(8, "feet"),
  40650. default: true
  40651. },
  40652. {
  40653. name: "Large",
  40654. height: math.unit(24, "feet")
  40655. },
  40656. {
  40657. name: "Kaiju",
  40658. height: math.unit(240, "feet")
  40659. },
  40660. {
  40661. name: "Megamacro",
  40662. height: math.unit(8000, "feet")
  40663. },
  40664. {
  40665. name: "Continent Cracker",
  40666. height: math.unit(24e6, "feet")
  40667. },
  40668. {
  40669. name: "Earth-Eclipsing",
  40670. height: math.unit(2.4e8, "feet")
  40671. },
  40672. {
  40673. name: "Sol-Swallowing",
  40674. height: math.unit(8e10, "feet")
  40675. },
  40676. {
  40677. name: "Galaxy Gulper",
  40678. height: math.unit(8, "galaxies")
  40679. },
  40680. {
  40681. name: "Light Universal",
  40682. height: math.unit(4, "universes")
  40683. },
  40684. {
  40685. name: "Universe Atoms",
  40686. height: math.unit(1.829e9, "universes")
  40687. },
  40688. {
  40689. name: "Light Multiversal",
  40690. height: math.unit(4, "multiverses")
  40691. },
  40692. {
  40693. name: "Multiverse Atoms",
  40694. height: math.unit(1.829e9, "multiverses")
  40695. },
  40696. {
  40697. name: "Nigh-Omnipresence",
  40698. height: math.unit(8e261, "multiverses")
  40699. },
  40700. ]
  40701. ))
  40702. characterMakers.push(() => makeCharacter(
  40703. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40704. {
  40705. front: {
  40706. height: math.unit(10, "feet"),
  40707. weight: math.unit(1500, "lb"),
  40708. name: "Front",
  40709. image: {
  40710. source: "./media/characters/miles-thestia/front.svg",
  40711. extra: 1812/1727,
  40712. bottom: 86/1898
  40713. }
  40714. },
  40715. back: {
  40716. height: math.unit(10, "feet"),
  40717. weight: math.unit(1500, "lb"),
  40718. name: "Back",
  40719. image: {
  40720. source: "./media/characters/miles-thestia/back.svg",
  40721. extra: 1799/1690,
  40722. bottom: 47/1846
  40723. }
  40724. },
  40725. frontNsfw: {
  40726. height: math.unit(10, "feet"),
  40727. weight: math.unit(1500, "lb"),
  40728. name: "Front (NSFW)",
  40729. image: {
  40730. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40731. extra: 1812/1727,
  40732. bottom: 86/1898
  40733. }
  40734. },
  40735. },
  40736. [
  40737. {
  40738. name: "Mini-Macro",
  40739. height: math.unit(10, "feet"),
  40740. default: true
  40741. },
  40742. ]
  40743. ))
  40744. characterMakers.push(() => makeCharacter(
  40745. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40746. {
  40747. front: {
  40748. height: math.unit(25, "feet"),
  40749. name: "Front",
  40750. image: {
  40751. source: "./media/characters/titan-s-wulf/front.svg",
  40752. extra: 1560/1484,
  40753. bottom: 76/1636
  40754. }
  40755. },
  40756. },
  40757. [
  40758. {
  40759. name: "Smallest",
  40760. height: math.unit(25, "feet"),
  40761. default: true
  40762. },
  40763. {
  40764. name: "Normal",
  40765. height: math.unit(200, "feet")
  40766. },
  40767. {
  40768. name: "Macro",
  40769. height: math.unit(200000, "feet")
  40770. },
  40771. {
  40772. name: "Multiversal Original",
  40773. height: math.unit(10000, "multiverses")
  40774. },
  40775. ]
  40776. ))
  40777. characterMakers.push(() => makeCharacter(
  40778. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40779. {
  40780. front: {
  40781. height: math.unit(8, "feet"),
  40782. weight: math.unit(553, "lb"),
  40783. name: "Front",
  40784. image: {
  40785. source: "./media/characters/tawendeh/front.svg",
  40786. extra: 2365/2268,
  40787. bottom: 83/2448
  40788. }
  40789. },
  40790. frontClothed: {
  40791. height: math.unit(8, "feet"),
  40792. weight: math.unit(553, "lb"),
  40793. name: "Front (Clothed)",
  40794. image: {
  40795. source: "./media/characters/tawendeh/front-clothed.svg",
  40796. extra: 2365/2268,
  40797. bottom: 83/2448
  40798. }
  40799. },
  40800. back: {
  40801. height: math.unit(8, "feet"),
  40802. weight: math.unit(553, "lb"),
  40803. name: "Back",
  40804. image: {
  40805. source: "./media/characters/tawendeh/back.svg",
  40806. extra: 2397/2294,
  40807. bottom: 42/2439
  40808. }
  40809. },
  40810. },
  40811. [
  40812. {
  40813. name: "Mortal Interaction",
  40814. height: math.unit(8, "feet"),
  40815. default: true
  40816. },
  40817. {
  40818. name: "Giant",
  40819. height: math.unit(80, "feet")
  40820. },
  40821. {
  40822. name: "Macro",
  40823. height: math.unit(800, "feet")
  40824. },
  40825. {
  40826. name: "Megamacro",
  40827. height: math.unit(8000, "feet")
  40828. },
  40829. {
  40830. name: "City-Crushing",
  40831. height: math.unit(24000, "feet")
  40832. },
  40833. {
  40834. name: "Mountain-Mashing",
  40835. height: math.unit(80000, "feet")
  40836. },
  40837. {
  40838. name: "Nation Nemesis",
  40839. height: math.unit(8e6, "feet")
  40840. },
  40841. {
  40842. name: "Continent Cracker",
  40843. height: math.unit(24e6, "feet")
  40844. },
  40845. {
  40846. name: "Earth-Eclipsing",
  40847. height: math.unit(2.4e8, "feet")
  40848. },
  40849. {
  40850. name: "Gas Giant Gulper",
  40851. height: math.unit(2.4e9, "feet")
  40852. },
  40853. {
  40854. name: "Sol-Swallowing",
  40855. height: math.unit(8e10, "feet")
  40856. },
  40857. {
  40858. name: "Galaxy Gulper",
  40859. height: math.unit(8, "galaxies")
  40860. },
  40861. {
  40862. name: "Cosmos Churner",
  40863. height: math.unit(8, "universes")
  40864. },
  40865. {
  40866. name: "Omnipotent Otter",
  40867. height: math.unit(80, "universes")
  40868. },
  40869. ]
  40870. ))
  40871. characterMakers.push(() => makeCharacter(
  40872. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40873. {
  40874. front: {
  40875. height: math.unit(2.6, "meters"),
  40876. weight: math.unit(900, "kg"),
  40877. name: "Front",
  40878. image: {
  40879. source: "./media/characters/neesha/front.svg",
  40880. extra: 1803/1653,
  40881. bottom: 128/1931
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Normal",
  40888. height: math.unit(2.6, "meters"),
  40889. default: true
  40890. },
  40891. {
  40892. name: "Macro",
  40893. height: math.unit(50, "meters")
  40894. },
  40895. ]
  40896. ))
  40897. characterMakers.push(() => makeCharacter(
  40898. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40899. {
  40900. front: {
  40901. height: math.unit(5, "feet"),
  40902. weight: math.unit(185, "lb"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/kyera/front.svg",
  40906. extra: 1875/1790,
  40907. bottom: 96/1971
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Normal",
  40914. height: math.unit(5, "feet"),
  40915. default: true
  40916. },
  40917. ]
  40918. ))
  40919. characterMakers.push(() => makeCharacter(
  40920. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40921. {
  40922. front: {
  40923. height: math.unit(7 + 6/12, "feet"),
  40924. weight: math.unit(540, "lb"),
  40925. name: "Front",
  40926. image: {
  40927. source: "./media/characters/yuko/front.svg",
  40928. extra: 1282/1222,
  40929. bottom: 101/1383
  40930. }
  40931. },
  40932. frontClothed: {
  40933. height: math.unit(7 + 6/12, "feet"),
  40934. weight: math.unit(540, "lb"),
  40935. name: "Front (Clothed)",
  40936. image: {
  40937. source: "./media/characters/yuko/front-clothed.svg",
  40938. extra: 1282/1222,
  40939. bottom: 101/1383
  40940. }
  40941. },
  40942. },
  40943. [
  40944. {
  40945. name: "Normal",
  40946. height: math.unit(7 + 6/12, "feet"),
  40947. default: true
  40948. },
  40949. {
  40950. name: "Macro",
  40951. height: math.unit(26 + 9/12, "feet")
  40952. },
  40953. {
  40954. name: "Megamacro",
  40955. height: math.unit(300, "feet")
  40956. },
  40957. {
  40958. name: "Gigamacro",
  40959. height: math.unit(5000, "feet")
  40960. },
  40961. {
  40962. name: "Planetary",
  40963. height: math.unit(10000, "miles")
  40964. },
  40965. ]
  40966. ))
  40967. characterMakers.push(() => makeCharacter(
  40968. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40969. {
  40970. front: {
  40971. height: math.unit(8 + 2/12, "feet"),
  40972. weight: math.unit(600, "lb"),
  40973. name: "Front",
  40974. image: {
  40975. source: "./media/characters/deam-nitrel/front.svg",
  40976. extra: 1308/1234,
  40977. bottom: 125/1433
  40978. }
  40979. },
  40980. },
  40981. [
  40982. {
  40983. name: "Normal",
  40984. height: math.unit(8 + 2/12, "feet"),
  40985. default: true
  40986. },
  40987. ]
  40988. ))
  40989. characterMakers.push(() => makeCharacter(
  40990. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40991. {
  40992. front: {
  40993. height: math.unit(6.1, "feet"),
  40994. weight: math.unit(180, "lb"),
  40995. name: "Front",
  40996. image: {
  40997. source: "./media/characters/skyress/front.svg",
  40998. extra: 1045/915,
  40999. bottom: 28/1073
  41000. }
  41001. },
  41002. maw: {
  41003. height: math.unit(1, "feet"),
  41004. name: "Maw",
  41005. image: {
  41006. source: "./media/characters/skyress/maw.svg"
  41007. }
  41008. },
  41009. },
  41010. [
  41011. {
  41012. name: "Normal",
  41013. height: math.unit(6.1, "feet"),
  41014. default: true
  41015. },
  41016. {
  41017. name: "Macro",
  41018. height: math.unit(200, "feet")
  41019. },
  41020. ]
  41021. ))
  41022. characterMakers.push(() => makeCharacter(
  41023. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41024. {
  41025. front: {
  41026. height: math.unit(4 + 2/12, "feet"),
  41027. weight: math.unit(40, "kg"),
  41028. name: "Front",
  41029. image: {
  41030. source: "./media/characters/amethyst-jones/front.svg",
  41031. extra: 1220/1150,
  41032. bottom: 101/1321
  41033. }
  41034. },
  41035. },
  41036. [
  41037. {
  41038. name: "Normal",
  41039. height: math.unit(4 + 2/12, "feet"),
  41040. default: true
  41041. },
  41042. ]
  41043. ))
  41044. characterMakers.push(() => makeCharacter(
  41045. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41046. {
  41047. front: {
  41048. height: math.unit(1.7, "m"),
  41049. weight: math.unit(135, "lb"),
  41050. name: "Front",
  41051. image: {
  41052. source: "./media/characters/jade/front.svg",
  41053. extra: 1818/1767,
  41054. bottom: 32/1850
  41055. }
  41056. },
  41057. back: {
  41058. height: math.unit(1.7, "m"),
  41059. weight: math.unit(135, "lb"),
  41060. name: "Back",
  41061. image: {
  41062. source: "./media/characters/jade/back.svg",
  41063. extra: 1869/1809,
  41064. bottom: 35/1904
  41065. }
  41066. },
  41067. hand: {
  41068. height: math.unit(0.24, "m"),
  41069. name: "Hand",
  41070. image: {
  41071. source: "./media/characters/jade/hand.svg"
  41072. }
  41073. },
  41074. foot: {
  41075. height: math.unit(0.263, "m"),
  41076. name: "Foot",
  41077. image: {
  41078. source: "./media/characters/jade/foot.svg"
  41079. }
  41080. },
  41081. dick: {
  41082. height: math.unit(0.47, "m"),
  41083. name: "Dick",
  41084. image: {
  41085. source: "./media/characters/jade/dick.svg"
  41086. }
  41087. },
  41088. },
  41089. [
  41090. {
  41091. name: "Micro",
  41092. height: math.unit(22, "cm")
  41093. },
  41094. {
  41095. name: "Normal",
  41096. height: math.unit(1.7, "m"),
  41097. default: true
  41098. },
  41099. {
  41100. name: "Macro",
  41101. height: math.unit(152, "m")
  41102. },
  41103. ]
  41104. ))
  41105. characterMakers.push(() => makeCharacter(
  41106. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41107. {
  41108. front: {
  41109. height: math.unit(100, "miles"),
  41110. weight: math.unit(20000, "tons"),
  41111. name: "Front",
  41112. image: {
  41113. source: "./media/characters/cookie/front.svg",
  41114. extra: 1125/1070,
  41115. bottom: 30/1155
  41116. }
  41117. },
  41118. },
  41119. [
  41120. {
  41121. name: "Big",
  41122. height: math.unit(50, "feet")
  41123. },
  41124. {
  41125. name: "Macro",
  41126. height: math.unit(100, "miles"),
  41127. default: true
  41128. },
  41129. {
  41130. name: "Megamacro",
  41131. height: math.unit(90000, "miles")
  41132. },
  41133. ]
  41134. ))
  41135. characterMakers.push(() => makeCharacter(
  41136. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41137. {
  41138. front: {
  41139. height: math.unit(6, "feet"),
  41140. weight: math.unit(145, "lb"),
  41141. name: "Front",
  41142. image: {
  41143. source: "./media/characters/farzian/front.svg",
  41144. extra: 1902/1693,
  41145. bottom: 108/2010
  41146. }
  41147. },
  41148. },
  41149. [
  41150. {
  41151. name: "Macro",
  41152. height: math.unit(500, "feet"),
  41153. default: true
  41154. },
  41155. ]
  41156. ))
  41157. characterMakers.push(() => makeCharacter(
  41158. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41159. {
  41160. front: {
  41161. height: math.unit(3 + 6/12, "feet"),
  41162. weight: math.unit(50, "lb"),
  41163. name: "Front",
  41164. image: {
  41165. source: "./media/characters/kimberly-tilson/front.svg",
  41166. extra: 1400/1322,
  41167. bottom: 36/1436
  41168. }
  41169. },
  41170. back: {
  41171. height: math.unit(3 + 6/12, "feet"),
  41172. weight: math.unit(50, "lb"),
  41173. name: "Back",
  41174. image: {
  41175. source: "./media/characters/kimberly-tilson/back.svg",
  41176. extra: 1370/1307,
  41177. bottom: 20/1390
  41178. }
  41179. },
  41180. },
  41181. [
  41182. {
  41183. name: "Normal",
  41184. height: math.unit(3 + 6/12, "feet"),
  41185. default: true
  41186. },
  41187. ]
  41188. ))
  41189. characterMakers.push(() => makeCharacter(
  41190. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41191. {
  41192. front: {
  41193. height: math.unit(1148, "feet"),
  41194. weight: math.unit(34057, "lb"),
  41195. name: "Front",
  41196. image: {
  41197. source: "./media/characters/harthos/front.svg",
  41198. extra: 1391/1339,
  41199. bottom: 13/1404
  41200. }
  41201. },
  41202. },
  41203. [
  41204. {
  41205. name: "Macro",
  41206. height: math.unit(1148, "feet"),
  41207. default: true
  41208. },
  41209. ]
  41210. ))
  41211. characterMakers.push(() => makeCharacter(
  41212. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41213. {
  41214. front: {
  41215. height: math.unit(15, "feet"),
  41216. name: "Front",
  41217. image: {
  41218. source: "./media/characters/hypatia/front.svg",
  41219. extra: 1653/1591,
  41220. bottom: 79/1732
  41221. }
  41222. },
  41223. },
  41224. [
  41225. {
  41226. name: "Normal",
  41227. height: math.unit(15, "feet")
  41228. },
  41229. {
  41230. name: "Small",
  41231. height: math.unit(300, "feet")
  41232. },
  41233. {
  41234. name: "Macro",
  41235. height: math.unit(2500, "feet"),
  41236. default: true
  41237. },
  41238. {
  41239. name: "Mega Macro",
  41240. height: math.unit(1500, "miles")
  41241. },
  41242. {
  41243. name: "Giga Macro",
  41244. height: math.unit(1.5e6, "miles")
  41245. },
  41246. ]
  41247. ))
  41248. characterMakers.push(() => makeCharacter(
  41249. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41250. {
  41251. front: {
  41252. height: math.unit(6, "feet"),
  41253. weight: math.unit(200, "lb"),
  41254. name: "Front",
  41255. image: {
  41256. source: "./media/characters/wulver/front.svg",
  41257. extra: 1724/1632,
  41258. bottom: 130/1854
  41259. }
  41260. },
  41261. frontNsfw: {
  41262. height: math.unit(6, "feet"),
  41263. weight: math.unit(200, "lb"),
  41264. name: "Front (NSFW)",
  41265. image: {
  41266. source: "./media/characters/wulver/front-nsfw.svg",
  41267. extra: 1724/1632,
  41268. bottom: 130/1854
  41269. }
  41270. },
  41271. },
  41272. [
  41273. {
  41274. name: "Human-Sized",
  41275. height: math.unit(6, "feet")
  41276. },
  41277. {
  41278. name: "Normal",
  41279. height: math.unit(4, "meters"),
  41280. default: true
  41281. },
  41282. {
  41283. name: "Large",
  41284. height: math.unit(6, "m")
  41285. },
  41286. ]
  41287. ))
  41288. characterMakers.push(() => makeCharacter(
  41289. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41290. {
  41291. front: {
  41292. height: math.unit(7, "feet"),
  41293. name: "Front",
  41294. image: {
  41295. source: "./media/characters/maru/front.svg",
  41296. extra: 1595/1570,
  41297. bottom: 0/1595
  41298. }
  41299. },
  41300. },
  41301. [
  41302. {
  41303. name: "Normal",
  41304. height: math.unit(7, "feet"),
  41305. default: true
  41306. },
  41307. {
  41308. name: "Macro",
  41309. height: math.unit(700, "feet")
  41310. },
  41311. {
  41312. name: "Mega Macro",
  41313. height: math.unit(25, "miles")
  41314. },
  41315. ]
  41316. ))
  41317. characterMakers.push(() => makeCharacter(
  41318. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41319. {
  41320. front: {
  41321. height: math.unit(6, "feet"),
  41322. weight: math.unit(170, "lb"),
  41323. name: "Front",
  41324. image: {
  41325. source: "./media/characters/xenon/front.svg",
  41326. extra: 1376/1305,
  41327. bottom: 56/1432
  41328. }
  41329. },
  41330. back: {
  41331. height: math.unit(6, "feet"),
  41332. weight: math.unit(170, "lb"),
  41333. name: "Back",
  41334. image: {
  41335. source: "./media/characters/xenon/back.svg",
  41336. extra: 1328/1259,
  41337. bottom: 95/1423
  41338. }
  41339. },
  41340. maw: {
  41341. height: math.unit(0.52, "feet"),
  41342. name: "Maw",
  41343. image: {
  41344. source: "./media/characters/xenon/maw.svg"
  41345. }
  41346. },
  41347. hand: {
  41348. height: math.unit(0.82, "feet"),
  41349. name: "Hand",
  41350. image: {
  41351. source: "./media/characters/xenon/hand.svg"
  41352. }
  41353. },
  41354. foot: {
  41355. height: math.unit(1.13, "feet"),
  41356. name: "Foot",
  41357. image: {
  41358. source: "./media/characters/xenon/foot.svg"
  41359. }
  41360. },
  41361. },
  41362. [
  41363. {
  41364. name: "Micro",
  41365. height: math.unit(0.8, "inches")
  41366. },
  41367. {
  41368. name: "Normal",
  41369. height: math.unit(6, "feet")
  41370. },
  41371. {
  41372. name: "Macro",
  41373. height: math.unit(50, "feet"),
  41374. default: true
  41375. },
  41376. {
  41377. name: "Macro+",
  41378. height: math.unit(250, "feet")
  41379. },
  41380. {
  41381. name: "Megamacro",
  41382. height: math.unit(1500, "feet")
  41383. },
  41384. ]
  41385. ))
  41386. characterMakers.push(() => makeCharacter(
  41387. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41388. {
  41389. front: {
  41390. height: math.unit(7 + 5/12, "feet"),
  41391. name: "Front",
  41392. image: {
  41393. source: "./media/characters/zane/front.svg",
  41394. extra: 1260/1203,
  41395. bottom: 94/1354
  41396. }
  41397. },
  41398. back: {
  41399. height: math.unit(5.05, "feet"),
  41400. name: "Back",
  41401. image: {
  41402. source: "./media/characters/zane/back.svg",
  41403. extra: 893/829,
  41404. bottom: 30/923
  41405. }
  41406. },
  41407. werewolf: {
  41408. height: math.unit(11, "feet"),
  41409. name: "Werewolf",
  41410. image: {
  41411. source: "./media/characters/zane/werewolf.svg",
  41412. extra: 1383/1323,
  41413. bottom: 89/1472
  41414. }
  41415. },
  41416. foot: {
  41417. height: math.unit(1.46, "feet"),
  41418. name: "Foot",
  41419. image: {
  41420. source: "./media/characters/zane/foot.svg"
  41421. }
  41422. },
  41423. footFront: {
  41424. height: math.unit(0.784, "feet"),
  41425. name: "Foot (Front)",
  41426. image: {
  41427. source: "./media/characters/zane/foot-front.svg"
  41428. }
  41429. },
  41430. dick: {
  41431. height: math.unit(1.95, "feet"),
  41432. name: "Dick",
  41433. image: {
  41434. source: "./media/characters/zane/dick.svg"
  41435. }
  41436. },
  41437. dickWerewolf: {
  41438. height: math.unit(3.77, "feet"),
  41439. name: "Dick (Werewolf)",
  41440. image: {
  41441. source: "./media/characters/zane/dick.svg"
  41442. }
  41443. },
  41444. },
  41445. [
  41446. {
  41447. name: "Normal",
  41448. height: math.unit(7 + 5/12, "feet"),
  41449. default: true
  41450. },
  41451. ]
  41452. ))
  41453. characterMakers.push(() => makeCharacter(
  41454. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41455. {
  41456. front: {
  41457. height: math.unit(6 + 2/12, "feet"),
  41458. weight: math.unit(284, "lb"),
  41459. name: "Front",
  41460. image: {
  41461. source: "./media/characters/benni-desparque/front.svg",
  41462. extra: 1353/1126,
  41463. bottom: 69/1422
  41464. }
  41465. },
  41466. },
  41467. [
  41468. {
  41469. name: "Civilian",
  41470. height: math.unit(6 + 2/12, "feet")
  41471. },
  41472. {
  41473. name: "Normal",
  41474. height: math.unit(98, "feet"),
  41475. default: true
  41476. },
  41477. {
  41478. name: "Kaiju Fighter",
  41479. height: math.unit(268, "feet")
  41480. },
  41481. ]
  41482. ))
  41483. characterMakers.push(() => makeCharacter(
  41484. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41485. {
  41486. front: {
  41487. height: math.unit(5, "feet"),
  41488. weight: math.unit(105, "lb"),
  41489. name: "Front",
  41490. image: {
  41491. source: "./media/characters/maxine/front.svg",
  41492. extra: 1386/1250,
  41493. bottom: 71/1457
  41494. }
  41495. },
  41496. },
  41497. [
  41498. {
  41499. name: "Normal",
  41500. height: math.unit(5, "feet"),
  41501. default: true
  41502. },
  41503. ]
  41504. ))
  41505. characterMakers.push(() => makeCharacter(
  41506. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41507. {
  41508. front: {
  41509. height: math.unit(11 + 7/12, "feet"),
  41510. weight: math.unit(9576, "lb"),
  41511. name: "Front",
  41512. image: {
  41513. source: "./media/characters/scaly/front.svg",
  41514. extra: 888/867,
  41515. bottom: 36/924
  41516. }
  41517. },
  41518. },
  41519. [
  41520. {
  41521. name: "Normal",
  41522. height: math.unit(11 + 7/12, "feet"),
  41523. default: true
  41524. },
  41525. ]
  41526. ))
  41527. characterMakers.push(() => makeCharacter(
  41528. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41529. {
  41530. front: {
  41531. height: math.unit(6 + 3/12, "feet"),
  41532. name: "Front",
  41533. image: {
  41534. source: "./media/characters/saelria/front.svg",
  41535. extra: 1243/1138,
  41536. bottom: 46/1289
  41537. }
  41538. },
  41539. },
  41540. [
  41541. {
  41542. name: "Micro",
  41543. height: math.unit(6, "inches"),
  41544. },
  41545. {
  41546. name: "Normal",
  41547. height: math.unit(6 + 3/12, "feet"),
  41548. default: true
  41549. },
  41550. {
  41551. name: "Macro",
  41552. height: math.unit(25, "feet")
  41553. },
  41554. ]
  41555. ))
  41556. characterMakers.push(() => makeCharacter(
  41557. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41558. {
  41559. front: {
  41560. height: math.unit(80, "meters"),
  41561. weight: math.unit(7000, "tonnes"),
  41562. name: "Front",
  41563. image: {
  41564. source: "./media/characters/tef/front.svg",
  41565. extra: 2036/1991,
  41566. bottom: 54/2090
  41567. }
  41568. },
  41569. back: {
  41570. height: math.unit(80, "meters"),
  41571. weight: math.unit(7000, "tonnes"),
  41572. name: "Back",
  41573. image: {
  41574. source: "./media/characters/tef/back.svg",
  41575. extra: 2036/1991,
  41576. bottom: 54/2090
  41577. }
  41578. },
  41579. },
  41580. [
  41581. {
  41582. name: "Macro",
  41583. height: math.unit(80, "meters"),
  41584. default: true
  41585. },
  41586. ]
  41587. ))
  41588. characterMakers.push(() => makeCharacter(
  41589. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41590. {
  41591. front: {
  41592. height: math.unit(13, "feet"),
  41593. weight: math.unit(6, "tons"),
  41594. name: "Front",
  41595. image: {
  41596. source: "./media/characters/rover/front.svg",
  41597. extra: 1233/1156,
  41598. bottom: 50/1283
  41599. }
  41600. },
  41601. back: {
  41602. height: math.unit(13, "feet"),
  41603. weight: math.unit(6, "tons"),
  41604. name: "Back",
  41605. image: {
  41606. source: "./media/characters/rover/back.svg",
  41607. extra: 1327/1258,
  41608. bottom: 39/1366
  41609. }
  41610. },
  41611. },
  41612. [
  41613. {
  41614. name: "Normal",
  41615. height: math.unit(13, "feet"),
  41616. default: true
  41617. },
  41618. {
  41619. name: "Macro",
  41620. height: math.unit(1300, "feet")
  41621. },
  41622. {
  41623. name: "Megamacro",
  41624. height: math.unit(1300, "miles")
  41625. },
  41626. {
  41627. name: "Gigamacro",
  41628. height: math.unit(1300000, "miles")
  41629. },
  41630. ]
  41631. ))
  41632. characterMakers.push(() => makeCharacter(
  41633. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41634. {
  41635. front: {
  41636. height: math.unit(6, "feet"),
  41637. weight: math.unit(150, "lb"),
  41638. name: "Front",
  41639. image: {
  41640. source: "./media/characters/ariz/front.svg",
  41641. extra: 1401/1346,
  41642. bottom: 5/1406
  41643. }
  41644. },
  41645. },
  41646. [
  41647. {
  41648. name: "Normal",
  41649. height: math.unit(10, "feet"),
  41650. default: true
  41651. },
  41652. ]
  41653. ))
  41654. characterMakers.push(() => makeCharacter(
  41655. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41656. {
  41657. front: {
  41658. height: math.unit(6, "feet"),
  41659. weight: math.unit(140, "lb"),
  41660. name: "Front",
  41661. image: {
  41662. source: "./media/characters/sigrun/front.svg",
  41663. extra: 1418/1359,
  41664. bottom: 27/1445
  41665. }
  41666. },
  41667. },
  41668. [
  41669. {
  41670. name: "Macro",
  41671. height: math.unit(35, "feet"),
  41672. default: true
  41673. },
  41674. ]
  41675. ))
  41676. characterMakers.push(() => makeCharacter(
  41677. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41678. {
  41679. front: {
  41680. height: math.unit(6, "feet"),
  41681. weight: math.unit(150, "lb"),
  41682. name: "Front",
  41683. image: {
  41684. source: "./media/characters/numin/front.svg",
  41685. extra: 1433/1388,
  41686. bottom: 12/1445
  41687. }
  41688. },
  41689. },
  41690. [
  41691. {
  41692. name: "Macro",
  41693. height: math.unit(21.5, "km"),
  41694. default: true
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41700. {
  41701. front: {
  41702. height: math.unit(6, "feet"),
  41703. weight: math.unit(463, "lb"),
  41704. name: "Front",
  41705. image: {
  41706. source: "./media/characters/melwa/front.svg",
  41707. extra: 1307/1248,
  41708. bottom: 93/1400
  41709. }
  41710. },
  41711. },
  41712. [
  41713. {
  41714. name: "Macro",
  41715. height: math.unit(50, "meters"),
  41716. default: true
  41717. },
  41718. ]
  41719. ))
  41720. characterMakers.push(() => makeCharacter(
  41721. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41722. {
  41723. front: {
  41724. height: math.unit(325, "feet"),
  41725. name: "Front",
  41726. image: {
  41727. source: "./media/characters/zorkaiju/front.svg",
  41728. extra: 1955/1814,
  41729. bottom: 40/1995
  41730. }
  41731. },
  41732. frontExtended: {
  41733. height: math.unit(325, "feet"),
  41734. name: "Front (Extended)",
  41735. image: {
  41736. source: "./media/characters/zorkaiju/front-extended.svg",
  41737. extra: 1955/1814,
  41738. bottom: 40/1995
  41739. }
  41740. },
  41741. side: {
  41742. height: math.unit(325, "feet"),
  41743. name: "Side",
  41744. image: {
  41745. source: "./media/characters/zorkaiju/side.svg",
  41746. extra: 1495/1396,
  41747. bottom: 17/1512
  41748. }
  41749. },
  41750. sideExtended: {
  41751. height: math.unit(325, "feet"),
  41752. name: "Side (Extended)",
  41753. image: {
  41754. source: "./media/characters/zorkaiju/side-extended.svg",
  41755. extra: 1495/1396,
  41756. bottom: 17/1512
  41757. }
  41758. },
  41759. back: {
  41760. height: math.unit(325, "feet"),
  41761. name: "Back",
  41762. image: {
  41763. source: "./media/characters/zorkaiju/back.svg",
  41764. extra: 1959/1821,
  41765. bottom: 31/1990
  41766. }
  41767. },
  41768. backExtended: {
  41769. height: math.unit(325, "feet"),
  41770. name: "Back (Extended)",
  41771. image: {
  41772. source: "./media/characters/zorkaiju/back-extended.svg",
  41773. extra: 1959/1821,
  41774. bottom: 31/1990
  41775. }
  41776. },
  41777. hand: {
  41778. height: math.unit(58.4, "feet"),
  41779. name: "Hand",
  41780. image: {
  41781. source: "./media/characters/zorkaiju/hand.svg"
  41782. }
  41783. },
  41784. handExtended: {
  41785. height: math.unit(61.4, "feet"),
  41786. name: "Hand (Extended)",
  41787. image: {
  41788. source: "./media/characters/zorkaiju/hand-extended.svg"
  41789. }
  41790. },
  41791. foot: {
  41792. height: math.unit(95, "feet"),
  41793. name: "Foot",
  41794. image: {
  41795. source: "./media/characters/zorkaiju/foot.svg"
  41796. }
  41797. },
  41798. leftArm: {
  41799. height: math.unit(59, "feet"),
  41800. name: "Left Arm",
  41801. image: {
  41802. source: "./media/characters/zorkaiju/left-arm.svg"
  41803. }
  41804. },
  41805. rightArm: {
  41806. height: math.unit(59, "feet"),
  41807. name: "Right Arm",
  41808. image: {
  41809. source: "./media/characters/zorkaiju/right-arm.svg"
  41810. }
  41811. },
  41812. leftArmExtended: {
  41813. height: math.unit(59 * 1.033546, "feet"),
  41814. name: "Left Arm (Extended)",
  41815. image: {
  41816. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41817. }
  41818. },
  41819. rightArmExtended: {
  41820. height: math.unit(59 * 1.0496, "feet"),
  41821. name: "Right Arm (Extended)",
  41822. image: {
  41823. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41824. }
  41825. },
  41826. tail: {
  41827. height: math.unit(104, "feet"),
  41828. name: "Tail",
  41829. image: {
  41830. source: "./media/characters/zorkaiju/tail.svg"
  41831. }
  41832. },
  41833. tailExtended: {
  41834. height: math.unit(104, "feet"),
  41835. name: "Tail (Extended)",
  41836. image: {
  41837. source: "./media/characters/zorkaiju/tail-extended.svg"
  41838. }
  41839. },
  41840. tailBottom: {
  41841. height: math.unit(104, "feet"),
  41842. name: "Tail Bottom",
  41843. image: {
  41844. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41845. }
  41846. },
  41847. crystal: {
  41848. height: math.unit(27.54, "feet"),
  41849. name: "Crystal",
  41850. image: {
  41851. source: "./media/characters/zorkaiju/crystal.svg"
  41852. }
  41853. },
  41854. },
  41855. [
  41856. {
  41857. name: "Kaiju",
  41858. height: math.unit(325, "feet"),
  41859. default: true
  41860. },
  41861. ]
  41862. ))
  41863. characterMakers.push(() => makeCharacter(
  41864. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41865. {
  41866. front: {
  41867. height: math.unit(6 + 1/12, "feet"),
  41868. weight: math.unit(115, "lb"),
  41869. name: "Front",
  41870. image: {
  41871. source: "./media/characters/bailey-belfry/front.svg",
  41872. extra: 1240/1121,
  41873. bottom: 101/1341
  41874. }
  41875. },
  41876. },
  41877. [
  41878. {
  41879. name: "Normal",
  41880. height: math.unit(6 + 1/12, "feet"),
  41881. default: true
  41882. },
  41883. ]
  41884. ))
  41885. characterMakers.push(() => makeCharacter(
  41886. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41887. {
  41888. side: {
  41889. height: math.unit(4, "meters"),
  41890. weight: math.unit(250, "kg"),
  41891. name: "Side",
  41892. image: {
  41893. source: "./media/characters/blacky/side.svg",
  41894. extra: 1027/919,
  41895. bottom: 43/1070
  41896. }
  41897. },
  41898. maw: {
  41899. height: math.unit(1, "meters"),
  41900. name: "Maw",
  41901. image: {
  41902. source: "./media/characters/blacky/maw.svg"
  41903. }
  41904. },
  41905. paw: {
  41906. height: math.unit(1, "meters"),
  41907. name: "Paw",
  41908. image: {
  41909. source: "./media/characters/blacky/paw.svg"
  41910. }
  41911. },
  41912. },
  41913. [
  41914. {
  41915. name: "Normal",
  41916. height: math.unit(4, "meters"),
  41917. default: true
  41918. },
  41919. ]
  41920. ))
  41921. characterMakers.push(() => makeCharacter(
  41922. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41923. {
  41924. front: {
  41925. height: math.unit(170, "cm"),
  41926. weight: math.unit(66, "kg"),
  41927. name: "Front",
  41928. image: {
  41929. source: "./media/characters/thux-ei/front.svg",
  41930. extra: 1109/1011,
  41931. bottom: 8/1117
  41932. }
  41933. },
  41934. },
  41935. [
  41936. {
  41937. name: "Normal",
  41938. height: math.unit(170, "cm"),
  41939. default: true
  41940. },
  41941. ]
  41942. ))
  41943. characterMakers.push(() => makeCharacter(
  41944. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41945. {
  41946. front: {
  41947. height: math.unit(5, "feet"),
  41948. weight: math.unit(120, "lb"),
  41949. name: "Front",
  41950. image: {
  41951. source: "./media/characters/roxanne-voltaire/front.svg",
  41952. extra: 1901/1779,
  41953. bottom: 53/1954
  41954. }
  41955. },
  41956. },
  41957. [
  41958. {
  41959. name: "Normal",
  41960. height: math.unit(5, "feet"),
  41961. default: true
  41962. },
  41963. {
  41964. name: "Giant",
  41965. height: math.unit(50, "feet")
  41966. },
  41967. {
  41968. name: "Titan",
  41969. height: math.unit(500, "feet")
  41970. },
  41971. {
  41972. name: "Macro",
  41973. height: math.unit(5000, "feet")
  41974. },
  41975. {
  41976. name: "Megamacro",
  41977. height: math.unit(50000, "feet")
  41978. },
  41979. {
  41980. name: "Gigamacro",
  41981. height: math.unit(500000, "feet")
  41982. },
  41983. {
  41984. name: "Teramacro",
  41985. height: math.unit(5e6, "feet")
  41986. },
  41987. ]
  41988. ))
  41989. characterMakers.push(() => makeCharacter(
  41990. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41991. {
  41992. front: {
  41993. height: math.unit(6 + 2/12, "feet"),
  41994. name: "Front",
  41995. image: {
  41996. source: "./media/characters/squeaks/front.svg",
  41997. extra: 1823/1768,
  41998. bottom: 138/1961
  41999. }
  42000. },
  42001. },
  42002. [
  42003. {
  42004. name: "Micro",
  42005. height: math.unit(0.5, "inches")
  42006. },
  42007. {
  42008. name: "Normal",
  42009. height: math.unit(6 + 2/12, "feet"),
  42010. default: true
  42011. },
  42012. {
  42013. name: "Macro",
  42014. height: math.unit(600, "feet")
  42015. },
  42016. ]
  42017. ))
  42018. characterMakers.push(() => makeCharacter(
  42019. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42020. {
  42021. front: {
  42022. height: math.unit(1.72, "meters"),
  42023. name: "Front",
  42024. image: {
  42025. source: "./media/characters/archinger/front.svg",
  42026. extra: 1861/1675,
  42027. bottom: 125/1986
  42028. }
  42029. },
  42030. back: {
  42031. height: math.unit(1.72, "meters"),
  42032. name: "Back",
  42033. image: {
  42034. source: "./media/characters/archinger/back.svg",
  42035. extra: 1844/1701,
  42036. bottom: 104/1948
  42037. }
  42038. },
  42039. cock: {
  42040. height: math.unit(0.59, "feet"),
  42041. name: "Cock",
  42042. image: {
  42043. source: "./media/characters/archinger/cock.svg"
  42044. }
  42045. },
  42046. },
  42047. [
  42048. {
  42049. name: "Normal",
  42050. height: math.unit(1.72, "meters"),
  42051. default: true
  42052. },
  42053. {
  42054. name: "Macro",
  42055. height: math.unit(84, "meters")
  42056. },
  42057. {
  42058. name: "Macro+",
  42059. height: math.unit(112, "meters")
  42060. },
  42061. {
  42062. name: "Macro++",
  42063. height: math.unit(960, "meters")
  42064. },
  42065. {
  42066. name: "Macro+++",
  42067. height: math.unit(4, "km")
  42068. },
  42069. {
  42070. name: "Macro++++",
  42071. height: math.unit(48, "km")
  42072. },
  42073. {
  42074. name: "Macro+++++",
  42075. height: math.unit(4500, "km")
  42076. },
  42077. ]
  42078. ))
  42079. characterMakers.push(() => makeCharacter(
  42080. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42081. {
  42082. front: {
  42083. height: math.unit(5 + 5/12, "feet"),
  42084. name: "Front",
  42085. image: {
  42086. source: "./media/characters/alsnapz/front.svg",
  42087. extra: 1157/1065,
  42088. bottom: 42/1199
  42089. }
  42090. },
  42091. },
  42092. [
  42093. {
  42094. name: "Normal",
  42095. height: math.unit(5 + 5/12, "feet"),
  42096. default: true
  42097. },
  42098. ]
  42099. ))
  42100. characterMakers.push(() => makeCharacter(
  42101. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42102. {
  42103. side: {
  42104. height: math.unit(3.2, "earths"),
  42105. name: "Side",
  42106. image: {
  42107. source: "./media/characters/mag/side.svg",
  42108. extra: 1331/1008,
  42109. bottom: 52/1383
  42110. }
  42111. },
  42112. wing: {
  42113. height: math.unit(1.94, "earths"),
  42114. name: "Wing",
  42115. image: {
  42116. source: "./media/characters/mag/wing.svg"
  42117. }
  42118. },
  42119. dick: {
  42120. height: math.unit(1.8, "earths"),
  42121. name: "Dick",
  42122. image: {
  42123. source: "./media/characters/mag/dick.svg"
  42124. }
  42125. },
  42126. ass: {
  42127. height: math.unit(1.33, "earths"),
  42128. name: "Ass",
  42129. image: {
  42130. source: "./media/characters/mag/ass.svg"
  42131. }
  42132. },
  42133. head: {
  42134. height: math.unit(1.1, "earths"),
  42135. name: "Head",
  42136. image: {
  42137. source: "./media/characters/mag/head.svg"
  42138. }
  42139. },
  42140. maw: {
  42141. height: math.unit(1.62, "earths"),
  42142. name: "Maw",
  42143. image: {
  42144. source: "./media/characters/mag/maw.svg"
  42145. }
  42146. },
  42147. },
  42148. [
  42149. {
  42150. name: "Small",
  42151. height: math.unit(162, "feet")
  42152. },
  42153. {
  42154. name: "Normal",
  42155. height: math.unit(3.2, "earths"),
  42156. default: true
  42157. },
  42158. ]
  42159. ))
  42160. characterMakers.push(() => makeCharacter(
  42161. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42162. {
  42163. front: {
  42164. height: math.unit(512, "feet"),
  42165. weight: math.unit(63509, "tonnes"),
  42166. name: "Front",
  42167. image: {
  42168. source: "./media/characters/vorrel-harroc/front.svg",
  42169. extra: 1075/1063,
  42170. bottom: 62/1137
  42171. }
  42172. },
  42173. },
  42174. [
  42175. {
  42176. name: "Normal",
  42177. height: math.unit(10, "feet")
  42178. },
  42179. {
  42180. name: "Macro",
  42181. height: math.unit(512, "feet"),
  42182. default: true
  42183. },
  42184. {
  42185. name: "Megamacro",
  42186. height: math.unit(256, "miles")
  42187. },
  42188. {
  42189. name: "Gigamacro",
  42190. height: math.unit(4096, "miles")
  42191. },
  42192. ]
  42193. ))
  42194. characterMakers.push(() => makeCharacter(
  42195. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42196. {
  42197. side: {
  42198. height: math.unit(50, "feet"),
  42199. name: "Side",
  42200. image: {
  42201. source: "./media/characters/froimar/side.svg",
  42202. extra: 855/638,
  42203. bottom: 99/954
  42204. }
  42205. },
  42206. },
  42207. [
  42208. {
  42209. name: "Macro",
  42210. height: math.unit(50, "feet"),
  42211. default: true
  42212. },
  42213. ]
  42214. ))
  42215. characterMakers.push(() => makeCharacter(
  42216. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42217. {
  42218. front: {
  42219. height: math.unit(210, "miles"),
  42220. name: "Front",
  42221. image: {
  42222. source: "./media/characters/timothy/front.svg",
  42223. extra: 1007/943,
  42224. bottom: 62/1069
  42225. }
  42226. },
  42227. frontSkirt: {
  42228. height: math.unit(210, "miles"),
  42229. name: "Front (Skirt)",
  42230. image: {
  42231. source: "./media/characters/timothy/front-skirt.svg",
  42232. extra: 1007/943,
  42233. bottom: 62/1069
  42234. }
  42235. },
  42236. frontCoat: {
  42237. height: math.unit(210, "miles"),
  42238. name: "Front (Coat)",
  42239. image: {
  42240. source: "./media/characters/timothy/front-coat.svg",
  42241. extra: 1007/943,
  42242. bottom: 62/1069
  42243. }
  42244. },
  42245. },
  42246. [
  42247. {
  42248. name: "Macro",
  42249. height: math.unit(210, "miles"),
  42250. default: true
  42251. },
  42252. {
  42253. name: "Megamacro",
  42254. height: math.unit(210000, "miles")
  42255. },
  42256. ]
  42257. ))
  42258. characterMakers.push(() => makeCharacter(
  42259. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42260. {
  42261. front: {
  42262. height: math.unit(188, "feet"),
  42263. name: "Front",
  42264. image: {
  42265. source: "./media/characters/pyotr/front.svg",
  42266. extra: 1912/1826,
  42267. bottom: 18/1930
  42268. }
  42269. },
  42270. },
  42271. [
  42272. {
  42273. name: "Macro",
  42274. height: math.unit(188, "feet"),
  42275. default: true
  42276. },
  42277. {
  42278. name: "Megamacro",
  42279. height: math.unit(8, "miles")
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42285. {
  42286. side: {
  42287. height: math.unit(10, "feet"),
  42288. weight: math.unit(4500, "lb"),
  42289. name: "Side",
  42290. image: {
  42291. source: "./media/characters/ackart/side.svg",
  42292. extra: 1776/1668,
  42293. bottom: 116/1892
  42294. }
  42295. },
  42296. },
  42297. [
  42298. {
  42299. name: "Normal",
  42300. height: math.unit(10, "feet"),
  42301. default: true
  42302. },
  42303. ]
  42304. ))
  42305. characterMakers.push(() => makeCharacter(
  42306. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42307. {
  42308. side: {
  42309. height: math.unit(21, "feet"),
  42310. name: "Side",
  42311. image: {
  42312. source: "./media/characters/nolow/side.svg",
  42313. extra: 1484/1434,
  42314. bottom: 85/1569
  42315. }
  42316. },
  42317. sideErect: {
  42318. height: math.unit(21, "feet"),
  42319. name: "Side-erect",
  42320. image: {
  42321. source: "./media/characters/nolow/side-erect.svg",
  42322. extra: 1484/1434,
  42323. bottom: 85/1569
  42324. }
  42325. },
  42326. },
  42327. [
  42328. {
  42329. name: "Regular",
  42330. height: math.unit(12, "feet")
  42331. },
  42332. {
  42333. name: "Big Chee",
  42334. height: math.unit(21, "feet"),
  42335. default: true
  42336. },
  42337. ]
  42338. ))
  42339. characterMakers.push(() => makeCharacter(
  42340. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42341. {
  42342. front: {
  42343. height: math.unit(7, "feet"),
  42344. weight: math.unit(250, "lb"),
  42345. name: "Front",
  42346. image: {
  42347. source: "./media/characters/nines/front.svg",
  42348. extra: 1741/1607,
  42349. bottom: 41/1782
  42350. }
  42351. },
  42352. side: {
  42353. height: math.unit(7, "feet"),
  42354. weight: math.unit(250, "lb"),
  42355. name: "Side",
  42356. image: {
  42357. source: "./media/characters/nines/side.svg",
  42358. extra: 1854/1735,
  42359. bottom: 93/1947
  42360. }
  42361. },
  42362. back: {
  42363. height: math.unit(7, "feet"),
  42364. weight: math.unit(250, "lb"),
  42365. name: "Back",
  42366. image: {
  42367. source: "./media/characters/nines/back.svg",
  42368. extra: 1748/1615,
  42369. bottom: 20/1768
  42370. }
  42371. },
  42372. },
  42373. [
  42374. {
  42375. name: "Megamacro",
  42376. height: math.unit(99, "km"),
  42377. default: true
  42378. },
  42379. ]
  42380. ))
  42381. characterMakers.push(() => makeCharacter(
  42382. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42383. {
  42384. front: {
  42385. height: math.unit(5 + 10/12, "feet"),
  42386. weight: math.unit(210, "lb"),
  42387. name: "Front",
  42388. image: {
  42389. source: "./media/characters/zenith/front.svg",
  42390. extra: 1531/1452,
  42391. bottom: 198/1729
  42392. }
  42393. },
  42394. back: {
  42395. height: math.unit(5 + 10/12, "feet"),
  42396. weight: math.unit(210, "lb"),
  42397. name: "Back",
  42398. image: {
  42399. source: "./media/characters/zenith/back.svg",
  42400. extra: 1571/1487,
  42401. bottom: 75/1646
  42402. }
  42403. },
  42404. },
  42405. [
  42406. {
  42407. name: "Normal",
  42408. height: math.unit(5 + 10/12, "feet"),
  42409. default: true
  42410. }
  42411. ]
  42412. ))
  42413. characterMakers.push(() => makeCharacter(
  42414. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42415. {
  42416. front: {
  42417. height: math.unit(4, "feet"),
  42418. weight: math.unit(60, "lb"),
  42419. name: "Front",
  42420. image: {
  42421. source: "./media/characters/jasper/front.svg",
  42422. extra: 1450/1379,
  42423. bottom: 19/1469
  42424. }
  42425. },
  42426. },
  42427. [
  42428. {
  42429. name: "Normal",
  42430. height: math.unit(4, "feet"),
  42431. default: true
  42432. },
  42433. ]
  42434. ))
  42435. characterMakers.push(() => makeCharacter(
  42436. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42437. {
  42438. front: {
  42439. height: math.unit(6 + 5/12, "feet"),
  42440. weight: math.unit(290, "lb"),
  42441. name: "Front",
  42442. image: {
  42443. source: "./media/characters/tiberius-thyben/front.svg",
  42444. extra: 757/739,
  42445. bottom: 39/796
  42446. }
  42447. },
  42448. },
  42449. [
  42450. {
  42451. name: "Micro",
  42452. height: math.unit(1.5, "inches")
  42453. },
  42454. {
  42455. name: "Normal",
  42456. height: math.unit(6 + 5/12, "feet"),
  42457. default: true
  42458. },
  42459. {
  42460. name: "Macro",
  42461. height: math.unit(300, "feet")
  42462. },
  42463. ]
  42464. ))
  42465. characterMakers.push(() => makeCharacter(
  42466. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42467. {
  42468. front: {
  42469. height: math.unit(5 + 6/12, "feet"),
  42470. weight: math.unit(60, "kg"),
  42471. name: "Front",
  42472. image: {
  42473. source: "./media/characters/sabre/front.svg",
  42474. extra: 738/671,
  42475. bottom: 27/765
  42476. }
  42477. },
  42478. },
  42479. [
  42480. {
  42481. name: "Teeny",
  42482. height: math.unit(2, "inches")
  42483. },
  42484. {
  42485. name: "Smol",
  42486. height: math.unit(8, "inches")
  42487. },
  42488. {
  42489. name: "Normal",
  42490. height: math.unit(5 + 6/12, "feet"),
  42491. default: true
  42492. },
  42493. {
  42494. name: "Mini-Macro",
  42495. height: math.unit(15, "feet")
  42496. },
  42497. {
  42498. name: "Macro",
  42499. height: math.unit(50, "feet")
  42500. },
  42501. ]
  42502. ))
  42503. characterMakers.push(() => makeCharacter(
  42504. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42505. {
  42506. front: {
  42507. height: math.unit(6 + 4/12, "feet"),
  42508. weight: math.unit(170, "lb"),
  42509. name: "Front",
  42510. image: {
  42511. source: "./media/characters/charlie/front.svg",
  42512. extra: 1348/1228,
  42513. bottom: 15/1363
  42514. }
  42515. },
  42516. },
  42517. [
  42518. {
  42519. name: "Macro",
  42520. height: math.unit(1700, "meters"),
  42521. default: true
  42522. },
  42523. {
  42524. name: "MegaMacro",
  42525. height: math.unit(20400, "meters")
  42526. },
  42527. ]
  42528. ))
  42529. characterMakers.push(() => makeCharacter(
  42530. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42531. {
  42532. front: {
  42533. height: math.unit(6 + 3/12, "feet"),
  42534. weight: math.unit(185, "lb"),
  42535. name: "Front",
  42536. image: {
  42537. source: "./media/characters/susan-grant/front.svg",
  42538. extra: 1351/1327,
  42539. bottom: 26/1377
  42540. }
  42541. },
  42542. },
  42543. [
  42544. {
  42545. name: "Normal",
  42546. height: math.unit(6 + 3/12, "feet"),
  42547. default: true
  42548. },
  42549. {
  42550. name: "Macro",
  42551. height: math.unit(225, "feet")
  42552. },
  42553. {
  42554. name: "Macro+",
  42555. height: math.unit(900, "feet")
  42556. },
  42557. {
  42558. name: "MegaMacro",
  42559. height: math.unit(14400, "feet")
  42560. },
  42561. ]
  42562. ))
  42563. characterMakers.push(() => makeCharacter(
  42564. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42565. {
  42566. front: {
  42567. height: math.unit(5 + 4/12, "feet"),
  42568. weight: math.unit(110, "lb"),
  42569. name: "Front",
  42570. image: {
  42571. source: "./media/characters/axel-isanov/front.svg",
  42572. extra: 1096/1065,
  42573. bottom: 13/1109
  42574. }
  42575. },
  42576. },
  42577. [
  42578. {
  42579. name: "Normal",
  42580. height: math.unit(5 + 4/12, "feet"),
  42581. default: true
  42582. },
  42583. ]
  42584. ))
  42585. characterMakers.push(() => makeCharacter(
  42586. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42587. {
  42588. front: {
  42589. height: math.unit(9, "feet"),
  42590. weight: math.unit(467, "lb"),
  42591. name: "Front",
  42592. image: {
  42593. source: "./media/characters/necahual/front.svg",
  42594. extra: 920/873,
  42595. bottom: 26/946
  42596. }
  42597. },
  42598. back: {
  42599. height: math.unit(9, "feet"),
  42600. weight: math.unit(467, "lb"),
  42601. name: "Back",
  42602. image: {
  42603. source: "./media/characters/necahual/back.svg",
  42604. extra: 930/884,
  42605. bottom: 16/946
  42606. }
  42607. },
  42608. frontUnderwear: {
  42609. height: math.unit(9, "feet"),
  42610. weight: math.unit(467, "lb"),
  42611. name: "Front (Underwear)",
  42612. image: {
  42613. source: "./media/characters/necahual/front-underwear.svg",
  42614. extra: 920/873,
  42615. bottom: 26/946
  42616. }
  42617. },
  42618. frontDressed: {
  42619. height: math.unit(9, "feet"),
  42620. weight: math.unit(467, "lb"),
  42621. name: "Front (Dressed)",
  42622. image: {
  42623. source: "./media/characters/necahual/front-dressed.svg",
  42624. extra: 920/873,
  42625. bottom: 26/946
  42626. }
  42627. },
  42628. },
  42629. [
  42630. {
  42631. name: "Comprsesed",
  42632. height: math.unit(9, "feet")
  42633. },
  42634. {
  42635. name: "Natural",
  42636. height: math.unit(15, "feet"),
  42637. default: true
  42638. },
  42639. {
  42640. name: "Boosted",
  42641. height: math.unit(50, "feet")
  42642. },
  42643. {
  42644. name: "Boosted+",
  42645. height: math.unit(150, "feet")
  42646. },
  42647. {
  42648. name: "Max",
  42649. height: math.unit(500, "feet")
  42650. },
  42651. ]
  42652. ))
  42653. characterMakers.push(() => makeCharacter(
  42654. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42655. {
  42656. front: {
  42657. height: math.unit(22 + 1/12, "feet"),
  42658. weight: math.unit(3200, "lb"),
  42659. name: "Front",
  42660. image: {
  42661. source: "./media/characters/theo-acacia/front.svg",
  42662. extra: 1796/1741,
  42663. bottom: 83/1879
  42664. }
  42665. },
  42666. frontUnderwear: {
  42667. height: math.unit(22 + 1/12, "feet"),
  42668. weight: math.unit(3200, "lb"),
  42669. name: "Front (Underwear)",
  42670. image: {
  42671. source: "./media/characters/theo-acacia/front-underwear.svg",
  42672. extra: 1796/1741,
  42673. bottom: 83/1879
  42674. }
  42675. },
  42676. frontNude: {
  42677. height: math.unit(22 + 1/12, "feet"),
  42678. weight: math.unit(3200, "lb"),
  42679. name: "Front (Nude)",
  42680. image: {
  42681. source: "./media/characters/theo-acacia/front-nude.svg",
  42682. extra: 1796/1741,
  42683. bottom: 83/1879
  42684. }
  42685. },
  42686. },
  42687. [
  42688. {
  42689. name: "Normal",
  42690. height: math.unit(22 + 1/12, "feet"),
  42691. default: true
  42692. },
  42693. ]
  42694. ))
  42695. characterMakers.push(() => makeCharacter(
  42696. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42697. {
  42698. front: {
  42699. height: math.unit(20, "feet"),
  42700. name: "Front",
  42701. image: {
  42702. source: "./media/characters/astra/front.svg",
  42703. extra: 1850/1714,
  42704. bottom: 106/1956
  42705. }
  42706. },
  42707. frontUndressed: {
  42708. height: math.unit(20, "feet"),
  42709. name: "Front (Undressed)",
  42710. image: {
  42711. source: "./media/characters/astra/front-undressed.svg",
  42712. extra: 1926/1749,
  42713. bottom: 0/1926
  42714. }
  42715. },
  42716. hand: {
  42717. height: math.unit(1.53, "feet"),
  42718. name: "Hand",
  42719. image: {
  42720. source: "./media/characters/astra/hand.svg"
  42721. }
  42722. },
  42723. paw: {
  42724. height: math.unit(1.53, "feet"),
  42725. name: "Paw",
  42726. image: {
  42727. source: "./media/characters/astra/paw.svg"
  42728. }
  42729. },
  42730. },
  42731. [
  42732. {
  42733. name: "Smallest",
  42734. height: math.unit(20, "feet")
  42735. },
  42736. {
  42737. name: "Normal",
  42738. height: math.unit(1e9, "miles"),
  42739. default: true
  42740. },
  42741. {
  42742. name: "Larger",
  42743. height: math.unit(5, "multiverses")
  42744. },
  42745. {
  42746. name: "Largest",
  42747. height: math.unit(1e9, "multiverses")
  42748. },
  42749. ]
  42750. ))
  42751. characterMakers.push(() => makeCharacter(
  42752. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42753. {
  42754. front: {
  42755. height: math.unit(8, "feet"),
  42756. name: "Front",
  42757. image: {
  42758. source: "./media/characters/breanna/front.svg",
  42759. extra: 1912/1632,
  42760. bottom: 33/1945
  42761. }
  42762. },
  42763. },
  42764. [
  42765. {
  42766. name: "Smallest",
  42767. height: math.unit(8, "feet")
  42768. },
  42769. {
  42770. name: "Normal",
  42771. height: math.unit(1, "mile"),
  42772. default: true
  42773. },
  42774. {
  42775. name: "Maximum",
  42776. height: math.unit(1500000000000, "lightyears")
  42777. },
  42778. ]
  42779. ))
  42780. characterMakers.push(() => makeCharacter(
  42781. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42782. {
  42783. front: {
  42784. height: math.unit(5 + 11/12, "feet"),
  42785. weight: math.unit(155, "lb"),
  42786. name: "Front",
  42787. image: {
  42788. source: "./media/characters/cai/front.svg",
  42789. extra: 1823/1702,
  42790. bottom: 32/1855
  42791. }
  42792. },
  42793. back: {
  42794. height: math.unit(5 + 11/12, "feet"),
  42795. weight: math.unit(155, "lb"),
  42796. name: "Back",
  42797. image: {
  42798. source: "./media/characters/cai/back.svg",
  42799. extra: 1809/1708,
  42800. bottom: 31/1840
  42801. }
  42802. },
  42803. },
  42804. [
  42805. {
  42806. name: "Normal",
  42807. height: math.unit(5 + 11/12, "feet"),
  42808. default: true
  42809. },
  42810. {
  42811. name: "Big",
  42812. height: math.unit(15, "feet")
  42813. },
  42814. {
  42815. name: "Macro",
  42816. height: math.unit(200, "feet")
  42817. },
  42818. ]
  42819. ))
  42820. characterMakers.push(() => makeCharacter(
  42821. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42822. {
  42823. front: {
  42824. height: math.unit(5 + 6/12, "feet"),
  42825. weight: math.unit(160, "lb"),
  42826. name: "Front",
  42827. image: {
  42828. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42829. extra: 1227/1174,
  42830. bottom: 37/1264
  42831. }
  42832. },
  42833. },
  42834. [
  42835. {
  42836. name: "Macro",
  42837. height: math.unit(444, "meters"),
  42838. default: true
  42839. },
  42840. ]
  42841. ))
  42842. characterMakers.push(() => makeCharacter(
  42843. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42844. {
  42845. front: {
  42846. height: math.unit(18 + 7/12, "feet"),
  42847. name: "Front",
  42848. image: {
  42849. source: "./media/characters/rex/front.svg",
  42850. extra: 1941/1807,
  42851. bottom: 66/2007
  42852. }
  42853. },
  42854. back: {
  42855. height: math.unit(18 + 7/12, "feet"),
  42856. name: "Back",
  42857. image: {
  42858. source: "./media/characters/rex/back.svg",
  42859. extra: 1937/1822,
  42860. bottom: 42/1979
  42861. }
  42862. },
  42863. boot: {
  42864. height: math.unit(3.45, "feet"),
  42865. name: "Boot",
  42866. image: {
  42867. source: "./media/characters/rex/boot.svg"
  42868. }
  42869. },
  42870. paw: {
  42871. height: math.unit(4.17, "feet"),
  42872. name: "Paw",
  42873. image: {
  42874. source: "./media/characters/rex/paw.svg"
  42875. }
  42876. },
  42877. head: {
  42878. height: math.unit(6.728, "feet"),
  42879. name: "Head",
  42880. image: {
  42881. source: "./media/characters/rex/head.svg"
  42882. }
  42883. },
  42884. },
  42885. [
  42886. {
  42887. name: "Nano",
  42888. height: math.unit(18 + 7/12, "feet")
  42889. },
  42890. {
  42891. name: "Micro",
  42892. height: math.unit(1.5, "megameters")
  42893. },
  42894. {
  42895. name: "Normal",
  42896. height: math.unit(440, "megameters"),
  42897. default: true
  42898. },
  42899. {
  42900. name: "Macro",
  42901. height: math.unit(2.5, "gigameters")
  42902. },
  42903. {
  42904. name: "Gigamacro",
  42905. height: math.unit(2, "galaxies")
  42906. },
  42907. ]
  42908. ))
  42909. characterMakers.push(() => makeCharacter(
  42910. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42911. {
  42912. side: {
  42913. height: math.unit(32, "feet"),
  42914. weight: math.unit(250000, "lb"),
  42915. name: "Side",
  42916. image: {
  42917. source: "./media/characters/silverwing/side.svg",
  42918. extra: 1100/1019,
  42919. bottom: 204/1304
  42920. }
  42921. },
  42922. },
  42923. [
  42924. {
  42925. name: "Normal",
  42926. height: math.unit(32, "feet"),
  42927. default: true
  42928. },
  42929. ]
  42930. ))
  42931. characterMakers.push(() => makeCharacter(
  42932. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42933. {
  42934. front: {
  42935. height: math.unit(6 + 6/12, "feet"),
  42936. weight: math.unit(350, "lb"),
  42937. name: "Front",
  42938. image: {
  42939. source: "./media/characters/tristan-hawthorne/front.svg",
  42940. extra: 1159/1124,
  42941. bottom: 37/1196
  42942. },
  42943. form: "labrador",
  42944. default: true
  42945. },
  42946. skunkFront: {
  42947. height: math.unit(4 + 6/12, "feet"),
  42948. weight: math.unit(120, "lb"),
  42949. name: "Front",
  42950. image: {
  42951. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42952. extra: 1609/1551,
  42953. bottom: 169/1778
  42954. },
  42955. form: "skunk",
  42956. default: true
  42957. },
  42958. },
  42959. [
  42960. {
  42961. name: "Normal",
  42962. height: math.unit(6 + 6/12, "feet"),
  42963. form: "labrador",
  42964. default: true
  42965. },
  42966. {
  42967. name: "Normal",
  42968. height: math.unit(4 + 6/12, "feet"),
  42969. form: "skunk",
  42970. default: true
  42971. },
  42972. ],
  42973. {
  42974. "labrador": {
  42975. name: "Labrador",
  42976. default: true
  42977. },
  42978. "skunk": {
  42979. name: "Skunk"
  42980. }
  42981. }
  42982. ))
  42983. characterMakers.push(() => makeCharacter(
  42984. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42985. {
  42986. front: {
  42987. height: math.unit(5 + 11/12, "feet"),
  42988. weight: math.unit(190, "lb"),
  42989. name: "Front",
  42990. image: {
  42991. source: "./media/characters/mizu/front.svg",
  42992. extra: 1988/1788,
  42993. bottom: 14/2002
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Normal",
  43000. height: math.unit(5 + 11/12, "feet"),
  43001. default: true
  43002. },
  43003. ]
  43004. ))
  43005. characterMakers.push(() => makeCharacter(
  43006. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43007. {
  43008. front: {
  43009. height: math.unit(1.7, "feet"),
  43010. weight: math.unit(50, "lb"),
  43011. name: "Front",
  43012. image: {
  43013. source: "./media/characters/dechroma/front.svg",
  43014. extra: 1095/859,
  43015. bottom: 64/1159
  43016. }
  43017. },
  43018. },
  43019. [
  43020. {
  43021. name: "Normal",
  43022. height: math.unit(1.7, "feet"),
  43023. default: true
  43024. },
  43025. ]
  43026. ))
  43027. characterMakers.push(() => makeCharacter(
  43028. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43029. {
  43030. side: {
  43031. height: math.unit(30, "feet"),
  43032. name: "Side",
  43033. image: {
  43034. source: "./media/characters/veluren-thanazel/side.svg",
  43035. extra: 1611/633,
  43036. bottom: 118/1729
  43037. }
  43038. },
  43039. front: {
  43040. height: math.unit(30, "feet"),
  43041. name: "Front",
  43042. image: {
  43043. source: "./media/characters/veluren-thanazel/front.svg",
  43044. extra: 1486/636,
  43045. bottom: 238/1724
  43046. }
  43047. },
  43048. head: {
  43049. height: math.unit(21.4, "feet"),
  43050. name: "Head",
  43051. image: {
  43052. source: "./media/characters/veluren-thanazel/head.svg"
  43053. }
  43054. },
  43055. genitals: {
  43056. height: math.unit(19.4, "feet"),
  43057. name: "Genitals",
  43058. image: {
  43059. source: "./media/characters/veluren-thanazel/genitals.svg"
  43060. }
  43061. },
  43062. },
  43063. [
  43064. {
  43065. name: "Social",
  43066. height: math.unit(6, "feet")
  43067. },
  43068. {
  43069. name: "Play",
  43070. height: math.unit(12, "feet")
  43071. },
  43072. {
  43073. name: "True",
  43074. height: math.unit(30, "feet"),
  43075. default: true
  43076. },
  43077. ]
  43078. ))
  43079. characterMakers.push(() => makeCharacter(
  43080. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43081. {
  43082. front: {
  43083. height: math.unit(7 + 6/12, "feet"),
  43084. weight: math.unit(500, "kg"),
  43085. name: "Front",
  43086. image: {
  43087. source: "./media/characters/arcturas/front.svg",
  43088. extra: 1700/1500,
  43089. bottom: 145/1845
  43090. }
  43091. },
  43092. },
  43093. [
  43094. {
  43095. name: "Normal",
  43096. height: math.unit(7 + 6/12, "feet"),
  43097. default: true
  43098. },
  43099. ]
  43100. ))
  43101. characterMakers.push(() => makeCharacter(
  43102. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43103. {
  43104. side: {
  43105. height: math.unit(6, "feet"),
  43106. weight: math.unit(2, "tons"),
  43107. name: "Side",
  43108. image: {
  43109. source: "./media/characters/vitaen/side.svg",
  43110. extra: 1157/617,
  43111. bottom: 122/1279
  43112. }
  43113. },
  43114. },
  43115. [
  43116. {
  43117. name: "Normal",
  43118. height: math.unit(6, "feet"),
  43119. default: true
  43120. },
  43121. ]
  43122. ))
  43123. characterMakers.push(() => makeCharacter(
  43124. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43125. {
  43126. front: {
  43127. height: math.unit(19, "feet"),
  43128. name: "Front",
  43129. image: {
  43130. source: "./media/characters/fia-dreamweaver/front.svg",
  43131. extra: 1630/1504,
  43132. bottom: 25/1655
  43133. }
  43134. },
  43135. },
  43136. [
  43137. {
  43138. name: "Normal",
  43139. height: math.unit(19, "feet"),
  43140. default: true
  43141. },
  43142. ]
  43143. ))
  43144. characterMakers.push(() => makeCharacter(
  43145. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43146. {
  43147. front: {
  43148. height: math.unit(5 + 4/12, "feet"),
  43149. name: "Front",
  43150. image: {
  43151. source: "./media/characters/artan/front.svg",
  43152. extra: 1618/1535,
  43153. bottom: 46/1664
  43154. }
  43155. },
  43156. back: {
  43157. height: math.unit(5 + 4/12, "feet"),
  43158. name: "Back",
  43159. image: {
  43160. source: "./media/characters/artan/back.svg",
  43161. extra: 1618/1543,
  43162. bottom: 31/1649
  43163. }
  43164. },
  43165. },
  43166. [
  43167. {
  43168. name: "Normal",
  43169. height: math.unit(5 + 4/12, "feet"),
  43170. default: true
  43171. },
  43172. ]
  43173. ))
  43174. characterMakers.push(() => makeCharacter(
  43175. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43176. {
  43177. side: {
  43178. height: math.unit(182, "cm"),
  43179. weight: math.unit(1000, "lb"),
  43180. name: "Side",
  43181. image: {
  43182. source: "./media/characters/silver-dragon/side.svg",
  43183. extra: 710/287,
  43184. bottom: 88/798
  43185. }
  43186. },
  43187. },
  43188. [
  43189. {
  43190. name: "Normal",
  43191. height: math.unit(182, "cm"),
  43192. default: true
  43193. },
  43194. ]
  43195. ))
  43196. characterMakers.push(() => makeCharacter(
  43197. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43198. {
  43199. side: {
  43200. height: math.unit(6 + 6/12, "feet"),
  43201. weight: math.unit(1.5, "tons"),
  43202. name: "Side",
  43203. image: {
  43204. source: "./media/characters/zephyr/side.svg",
  43205. extra: 1433/586,
  43206. bottom: 109/1542
  43207. }
  43208. },
  43209. },
  43210. [
  43211. {
  43212. name: "Normal",
  43213. height: math.unit(6 + 6/12, "feet"),
  43214. default: true
  43215. },
  43216. ]
  43217. ))
  43218. characterMakers.push(() => makeCharacter(
  43219. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43220. {
  43221. side: {
  43222. height: math.unit(1, "feet"),
  43223. name: "Side",
  43224. image: {
  43225. source: "./media/characters/vixye/side.svg",
  43226. extra: 632/541,
  43227. bottom: 0/632
  43228. }
  43229. },
  43230. },
  43231. [
  43232. {
  43233. name: "Normal",
  43234. height: math.unit(1, "feet"),
  43235. default: true
  43236. },
  43237. {
  43238. name: "True",
  43239. height: math.unit(1e15, "multiverses")
  43240. },
  43241. ]
  43242. ))
  43243. characterMakers.push(() => makeCharacter(
  43244. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43245. {
  43246. front: {
  43247. height: math.unit(8 + 2/12, "feet"),
  43248. weight: math.unit(650, "lb"),
  43249. name: "Front",
  43250. image: {
  43251. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43252. extra: 1174/1137,
  43253. bottom: 82/1256
  43254. }
  43255. },
  43256. back: {
  43257. height: math.unit(8 + 2/12, "feet"),
  43258. weight: math.unit(650, "lb"),
  43259. name: "Back",
  43260. image: {
  43261. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43262. extra: 1204/1157,
  43263. bottom: 46/1250
  43264. }
  43265. },
  43266. },
  43267. [
  43268. {
  43269. name: "Wildform",
  43270. height: math.unit(8 + 2/12, "feet"),
  43271. default: true
  43272. },
  43273. ]
  43274. ))
  43275. characterMakers.push(() => makeCharacter(
  43276. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43277. {
  43278. front: {
  43279. height: math.unit(18, "feet"),
  43280. name: "Front",
  43281. image: {
  43282. source: "./media/characters/cyphin/front.svg",
  43283. extra: 970/886,
  43284. bottom: 42/1012
  43285. }
  43286. },
  43287. back: {
  43288. height: math.unit(18, "feet"),
  43289. name: "Back",
  43290. image: {
  43291. source: "./media/characters/cyphin/back.svg",
  43292. extra: 1009/894,
  43293. bottom: 24/1033
  43294. }
  43295. },
  43296. head: {
  43297. height: math.unit(5.05, "feet"),
  43298. name: "Head",
  43299. image: {
  43300. source: "./media/characters/cyphin/head.svg"
  43301. }
  43302. },
  43303. tailbud: {
  43304. height: math.unit(5, "feet"),
  43305. name: "Tailbud",
  43306. image: {
  43307. source: "./media/characters/cyphin/tailbud.svg"
  43308. }
  43309. },
  43310. },
  43311. [
  43312. ]
  43313. ))
  43314. characterMakers.push(() => makeCharacter(
  43315. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43316. {
  43317. side: {
  43318. height: math.unit(10, "feet"),
  43319. weight: math.unit(6, "tons"),
  43320. name: "Side",
  43321. image: {
  43322. source: "./media/characters/raijin/side.svg",
  43323. extra: 1529/613,
  43324. bottom: 337/1866
  43325. }
  43326. },
  43327. },
  43328. [
  43329. {
  43330. name: "Normal",
  43331. height: math.unit(10, "feet"),
  43332. default: true
  43333. },
  43334. ]
  43335. ))
  43336. characterMakers.push(() => makeCharacter(
  43337. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43338. {
  43339. side: {
  43340. height: math.unit(9, "feet"),
  43341. name: "Side",
  43342. image: {
  43343. source: "./media/characters/nilghais/side.svg",
  43344. extra: 1047/744,
  43345. bottom: 91/1138
  43346. }
  43347. },
  43348. head: {
  43349. height: math.unit(3.14, "feet"),
  43350. name: "Head",
  43351. image: {
  43352. source: "./media/characters/nilghais/head.svg"
  43353. }
  43354. },
  43355. mouth: {
  43356. height: math.unit(4.6, "feet"),
  43357. name: "Mouth",
  43358. image: {
  43359. source: "./media/characters/nilghais/mouth.svg"
  43360. }
  43361. },
  43362. wings: {
  43363. height: math.unit(24, "feet"),
  43364. name: "Wings",
  43365. image: {
  43366. source: "./media/characters/nilghais/wings.svg"
  43367. }
  43368. },
  43369. ass: {
  43370. height: math.unit(6.12, "feet"),
  43371. name: "Ass",
  43372. image: {
  43373. source: "./media/characters/nilghais/ass.svg"
  43374. }
  43375. },
  43376. },
  43377. [
  43378. {
  43379. name: "Normal",
  43380. height: math.unit(9, "feet"),
  43381. default: true
  43382. },
  43383. ]
  43384. ))
  43385. characterMakers.push(() => makeCharacter(
  43386. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43387. {
  43388. regular: {
  43389. height: math.unit(16 + 2/12, "feet"),
  43390. weight: math.unit(2300, "lb"),
  43391. name: "Regular",
  43392. image: {
  43393. source: "./media/characters/zolgar/regular.svg",
  43394. extra: 1246/1004,
  43395. bottom: 124/1370
  43396. }
  43397. },
  43398. boxers: {
  43399. height: math.unit(16 + 2/12, "feet"),
  43400. weight: math.unit(2300, "lb"),
  43401. name: "Boxers",
  43402. image: {
  43403. source: "./media/characters/zolgar/boxers.svg",
  43404. extra: 1246/1004,
  43405. bottom: 124/1370
  43406. }
  43407. },
  43408. armored: {
  43409. height: math.unit(16 + 2/12, "feet"),
  43410. weight: math.unit(2300, "lb"),
  43411. name: "Armored",
  43412. image: {
  43413. source: "./media/characters/zolgar/armored.svg",
  43414. extra: 1246/1004,
  43415. bottom: 124/1370
  43416. }
  43417. },
  43418. goth: {
  43419. height: math.unit(16 + 2/12, "feet"),
  43420. weight: math.unit(2300, "lb"),
  43421. name: "Goth",
  43422. image: {
  43423. source: "./media/characters/zolgar/goth.svg",
  43424. extra: 1246/1004,
  43425. bottom: 124/1370
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Shrunken Down",
  43432. height: math.unit(9 + 2/12, "feet")
  43433. },
  43434. {
  43435. name: "Normal",
  43436. height: math.unit(16 + 2/12, "feet"),
  43437. default: true
  43438. },
  43439. ]
  43440. ))
  43441. characterMakers.push(() => makeCharacter(
  43442. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43443. {
  43444. front: {
  43445. height: math.unit(6, "feet"),
  43446. weight: math.unit(168, "lb"),
  43447. name: "Front",
  43448. image: {
  43449. source: "./media/characters/luca/front.svg",
  43450. extra: 841/667,
  43451. bottom: 102/943
  43452. }
  43453. },
  43454. },
  43455. [
  43456. {
  43457. name: "Normal",
  43458. height: math.unit(6, "feet"),
  43459. default: true
  43460. },
  43461. ]
  43462. ))
  43463. characterMakers.push(() => makeCharacter(
  43464. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43465. {
  43466. side: {
  43467. height: math.unit(7 + 3/12, "feet"),
  43468. weight: math.unit(312, "lb"),
  43469. name: "Side",
  43470. image: {
  43471. source: "./media/characters/zezo/side.svg",
  43472. extra: 1192/1067,
  43473. bottom: 63/1255
  43474. }
  43475. },
  43476. },
  43477. [
  43478. {
  43479. name: "Normal",
  43480. height: math.unit(7 + 3/12, "feet"),
  43481. default: true
  43482. },
  43483. ]
  43484. ))
  43485. characterMakers.push(() => makeCharacter(
  43486. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43487. {
  43488. front: {
  43489. height: math.unit(5 + 5/12, "feet"),
  43490. weight: math.unit(170, "lb"),
  43491. name: "Front",
  43492. image: {
  43493. source: "./media/characters/mayso/front.svg",
  43494. extra: 1215/1108,
  43495. bottom: 16/1231
  43496. }
  43497. },
  43498. },
  43499. [
  43500. {
  43501. name: "Normal",
  43502. height: math.unit(5 + 5/12, "feet"),
  43503. default: true
  43504. },
  43505. ]
  43506. ))
  43507. characterMakers.push(() => makeCharacter(
  43508. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43509. {
  43510. front: {
  43511. height: math.unit(4 + 3/12, "feet"),
  43512. weight: math.unit(80, "lb"),
  43513. name: "Front",
  43514. image: {
  43515. source: "./media/characters/hess/front.svg",
  43516. extra: 1200/1123,
  43517. bottom: 16/1216
  43518. }
  43519. },
  43520. },
  43521. [
  43522. {
  43523. name: "Normal",
  43524. height: math.unit(4 + 3/12, "feet"),
  43525. default: true
  43526. },
  43527. ]
  43528. ))
  43529. characterMakers.push(() => makeCharacter(
  43530. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43531. {
  43532. front: {
  43533. height: math.unit(1.9, "meters"),
  43534. name: "Front",
  43535. image: {
  43536. source: "./media/characters/ashgar/front.svg",
  43537. extra: 1177/1146,
  43538. bottom: 99/1276
  43539. }
  43540. },
  43541. back: {
  43542. height: math.unit(1.9, "meters"),
  43543. name: "Back",
  43544. image: {
  43545. source: "./media/characters/ashgar/back.svg",
  43546. extra: 1201/1183,
  43547. bottom: 53/1254
  43548. }
  43549. },
  43550. feral: {
  43551. height: math.unit(1.4, "meters"),
  43552. name: "Feral",
  43553. image: {
  43554. source: "./media/characters/ashgar/feral.svg",
  43555. extra: 370/345,
  43556. bottom: 45/415
  43557. }
  43558. },
  43559. },
  43560. [
  43561. {
  43562. name: "Normal",
  43563. height: math.unit(1.9, "meters"),
  43564. default: true
  43565. },
  43566. ]
  43567. ))
  43568. characterMakers.push(() => makeCharacter(
  43569. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43570. {
  43571. regular: {
  43572. height: math.unit(6, "feet"),
  43573. weight: math.unit(220, "lb"),
  43574. name: "Regular",
  43575. image: {
  43576. source: "./media/characters/phillip/regular.svg",
  43577. extra: 1373/1277,
  43578. bottom: 75/1448
  43579. }
  43580. },
  43581. dressed: {
  43582. height: math.unit(6, "feet"),
  43583. weight: math.unit(220, "lb"),
  43584. name: "Dressed",
  43585. image: {
  43586. source: "./media/characters/phillip/dressed.svg",
  43587. extra: 1373/1277,
  43588. bottom: 75/1448
  43589. }
  43590. },
  43591. paw: {
  43592. height: math.unit(1.44, "feet"),
  43593. name: "Paw",
  43594. image: {
  43595. source: "./media/characters/phillip/paw.svg"
  43596. }
  43597. },
  43598. },
  43599. [
  43600. {
  43601. name: "Normal",
  43602. height: math.unit(6, "feet"),
  43603. default: true
  43604. },
  43605. ]
  43606. ))
  43607. characterMakers.push(() => makeCharacter(
  43608. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43609. {
  43610. side: {
  43611. height: math.unit(42, "feet"),
  43612. name: "Side",
  43613. image: {
  43614. source: "./media/characters/uvula/side.svg",
  43615. extra: 683/586,
  43616. bottom: 60/743
  43617. }
  43618. },
  43619. front: {
  43620. height: math.unit(42, "feet"),
  43621. name: "Front",
  43622. image: {
  43623. source: "./media/characters/uvula/front.svg",
  43624. extra: 705/613,
  43625. bottom: 54/759
  43626. }
  43627. },
  43628. maw: {
  43629. height: math.unit(23.5, "feet"),
  43630. name: "Maw",
  43631. image: {
  43632. source: "./media/characters/uvula/maw.svg"
  43633. }
  43634. },
  43635. },
  43636. [
  43637. {
  43638. name: "Original Size",
  43639. height: math.unit(14, "inches")
  43640. },
  43641. {
  43642. name: "Human Size",
  43643. height: math.unit(6, "feet")
  43644. },
  43645. {
  43646. name: "Big",
  43647. height: math.unit(42, "feet"),
  43648. default: true
  43649. },
  43650. {
  43651. name: "Bigger",
  43652. height: math.unit(100, "feet")
  43653. },
  43654. ]
  43655. ))
  43656. characterMakers.push(() => makeCharacter(
  43657. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43658. {
  43659. front: {
  43660. height: math.unit(5 + 11/12, "feet"),
  43661. name: "Front",
  43662. image: {
  43663. source: "./media/characters/lannah/front.svg",
  43664. extra: 1208/1113,
  43665. bottom: 97/1305
  43666. }
  43667. },
  43668. },
  43669. [
  43670. {
  43671. name: "Normal",
  43672. height: math.unit(5 + 11/12, "feet"),
  43673. default: true
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43679. {
  43680. front: {
  43681. height: math.unit(6 + 3/12, "feet"),
  43682. weight: math.unit(3.5, "tons"),
  43683. name: "Front",
  43684. image: {
  43685. source: "./media/characters/emberflame/front.svg",
  43686. extra: 1198/672,
  43687. bottom: 82/1280
  43688. }
  43689. },
  43690. side: {
  43691. height: math.unit(6 + 3/12, "feet"),
  43692. weight: math.unit(3.5, "tons"),
  43693. name: "Side",
  43694. image: {
  43695. source: "./media/characters/emberflame/side.svg",
  43696. extra: 938/527,
  43697. bottom: 56/994
  43698. }
  43699. },
  43700. },
  43701. [
  43702. {
  43703. name: "Normal",
  43704. height: math.unit(6 + 3/12, "feet"),
  43705. default: true
  43706. },
  43707. ]
  43708. ))
  43709. characterMakers.push(() => makeCharacter(
  43710. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43711. {
  43712. side: {
  43713. height: math.unit(17.5, "feet"),
  43714. weight: math.unit(35, "tons"),
  43715. name: "Side",
  43716. image: {
  43717. source: "./media/characters/sophie-ambrose/side.svg",
  43718. extra: 1573/1242,
  43719. bottom: 71/1644
  43720. }
  43721. },
  43722. maw: {
  43723. height: math.unit(7.4, "feet"),
  43724. name: "Maw",
  43725. image: {
  43726. source: "./media/characters/sophie-ambrose/maw.svg"
  43727. }
  43728. },
  43729. },
  43730. [
  43731. {
  43732. name: "Normal",
  43733. height: math.unit(17.5, "feet"),
  43734. default: true
  43735. },
  43736. ]
  43737. ))
  43738. characterMakers.push(() => makeCharacter(
  43739. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43740. {
  43741. front: {
  43742. height: math.unit(280, "feet"),
  43743. weight: math.unit(550, "tons"),
  43744. name: "Front",
  43745. image: {
  43746. source: "./media/characters/king-mugi/front.svg",
  43747. extra: 1102/947,
  43748. bottom: 104/1206
  43749. }
  43750. },
  43751. },
  43752. [
  43753. {
  43754. name: "King Mugi",
  43755. height: math.unit(280, "feet"),
  43756. default: true
  43757. },
  43758. ]
  43759. ))
  43760. characterMakers.push(() => makeCharacter(
  43761. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43762. {
  43763. front: {
  43764. height: math.unit(64, "meters"),
  43765. name: "Front",
  43766. image: {
  43767. source: "./media/characters/nova-fox/front.svg",
  43768. extra: 1310/1246,
  43769. bottom: 65/1375
  43770. }
  43771. },
  43772. },
  43773. [
  43774. {
  43775. name: "Macro",
  43776. height: math.unit(64, "meters"),
  43777. default: true
  43778. },
  43779. ]
  43780. ))
  43781. characterMakers.push(() => makeCharacter(
  43782. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43783. {
  43784. front: {
  43785. height: math.unit(6 + 3/12, "feet"),
  43786. weight: math.unit(170, "lb"),
  43787. name: "Front",
  43788. image: {
  43789. source: "./media/characters/sam-bat/front.svg",
  43790. extra: 1601/1411,
  43791. bottom: 125/1726
  43792. }
  43793. },
  43794. back: {
  43795. height: math.unit(6 + 3/12, "feet"),
  43796. weight: math.unit(170, "lb"),
  43797. name: "Back",
  43798. image: {
  43799. source: "./media/characters/sam-bat/back.svg",
  43800. extra: 1577/1405,
  43801. bottom: 58/1635
  43802. }
  43803. },
  43804. },
  43805. [
  43806. {
  43807. name: "Normal",
  43808. height: math.unit(6 + 3/12, "feet"),
  43809. default: true
  43810. },
  43811. ]
  43812. ))
  43813. characterMakers.push(() => makeCharacter(
  43814. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43815. {
  43816. front: {
  43817. height: math.unit(59, "feet"),
  43818. weight: math.unit(40000, "lb"),
  43819. name: "Front",
  43820. image: {
  43821. source: "./media/characters/inari/front.svg",
  43822. extra: 1884/1350,
  43823. bottom: 95/1979
  43824. }
  43825. },
  43826. },
  43827. [
  43828. {
  43829. name: "Gigantamax",
  43830. height: math.unit(59, "feet"),
  43831. default: true
  43832. },
  43833. ]
  43834. ))
  43835. characterMakers.push(() => makeCharacter(
  43836. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43837. {
  43838. front: {
  43839. height: math.unit(5 + 8/12, "feet"),
  43840. name: "Front",
  43841. image: {
  43842. source: "./media/characters/elizabeth/front.svg",
  43843. extra: 1395/1298,
  43844. bottom: 54/1449
  43845. }
  43846. },
  43847. mouth: {
  43848. height: math.unit(1.97, "feet"),
  43849. name: "Mouth",
  43850. image: {
  43851. source: "./media/characters/elizabeth/mouth.svg"
  43852. }
  43853. },
  43854. foot: {
  43855. height: math.unit(1.17, "feet"),
  43856. name: "Foot",
  43857. image: {
  43858. source: "./media/characters/elizabeth/foot.svg"
  43859. }
  43860. },
  43861. },
  43862. [
  43863. {
  43864. name: "Normal",
  43865. height: math.unit(5 + 8/12, "feet"),
  43866. default: true
  43867. },
  43868. {
  43869. name: "Minimacro",
  43870. height: math.unit(18, "feet")
  43871. },
  43872. {
  43873. name: "Macro",
  43874. height: math.unit(180, "feet")
  43875. },
  43876. ]
  43877. ))
  43878. characterMakers.push(() => makeCharacter(
  43879. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43880. {
  43881. front: {
  43882. height: math.unit(5 + 2/12, "feet"),
  43883. name: "Front",
  43884. image: {
  43885. source: "./media/characters/october-gossamer/front.svg",
  43886. extra: 505/454,
  43887. bottom: 7/512
  43888. }
  43889. },
  43890. back: {
  43891. height: math.unit(5 + 2/12, "feet"),
  43892. name: "Back",
  43893. image: {
  43894. source: "./media/characters/october-gossamer/back.svg",
  43895. extra: 501/454,
  43896. bottom: 11/512
  43897. }
  43898. },
  43899. },
  43900. [
  43901. {
  43902. name: "Normal",
  43903. height: math.unit(5 + 2/12, "feet"),
  43904. default: true
  43905. },
  43906. ]
  43907. ))
  43908. characterMakers.push(() => makeCharacter(
  43909. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43910. {
  43911. front: {
  43912. height: math.unit(5, "feet"),
  43913. name: "Front",
  43914. image: {
  43915. source: "./media/characters/epiglottis/front.svg",
  43916. extra: 923/849,
  43917. bottom: 17/940
  43918. }
  43919. },
  43920. },
  43921. [
  43922. {
  43923. name: "Original Size",
  43924. height: math.unit(10, "inches")
  43925. },
  43926. {
  43927. name: "Human Size",
  43928. height: math.unit(5, "feet"),
  43929. default: true
  43930. },
  43931. {
  43932. name: "Big",
  43933. height: math.unit(25, "feet")
  43934. },
  43935. {
  43936. name: "Bigger",
  43937. height: math.unit(50, "feet")
  43938. },
  43939. {
  43940. name: "oh lawd",
  43941. height: math.unit(75, "feet")
  43942. },
  43943. ]
  43944. ))
  43945. characterMakers.push(() => makeCharacter(
  43946. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43947. {
  43948. front: {
  43949. height: math.unit(2 + 4/12, "feet"),
  43950. weight: math.unit(60, "lb"),
  43951. name: "Front",
  43952. image: {
  43953. source: "./media/characters/lerm/front.svg",
  43954. extra: 796/790,
  43955. bottom: 79/875
  43956. }
  43957. },
  43958. },
  43959. [
  43960. {
  43961. name: "Normal",
  43962. height: math.unit(2 + 4/12, "feet"),
  43963. default: true
  43964. },
  43965. ]
  43966. ))
  43967. characterMakers.push(() => makeCharacter(
  43968. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43969. {
  43970. front: {
  43971. height: math.unit(5.5, "feet"),
  43972. weight: math.unit(130, "lb"),
  43973. name: "Front",
  43974. image: {
  43975. source: "./media/characters/xena-nebadon/front.svg",
  43976. extra: 1828/1730,
  43977. bottom: 79/1907
  43978. }
  43979. },
  43980. },
  43981. [
  43982. {
  43983. name: "Tiny Puppy",
  43984. height: math.unit(3, "inches")
  43985. },
  43986. {
  43987. name: "Normal",
  43988. height: math.unit(5.5, "feet"),
  43989. default: true
  43990. },
  43991. {
  43992. name: "Lotta Lady",
  43993. height: math.unit(12, "feet")
  43994. },
  43995. {
  43996. name: "Pretty Big",
  43997. height: math.unit(100, "feet")
  43998. },
  43999. {
  44000. name: "Big",
  44001. height: math.unit(500, "feet")
  44002. },
  44003. {
  44004. name: "Skyscraper Toys",
  44005. height: math.unit(2500, "feet")
  44006. },
  44007. {
  44008. name: "Plane Catcher",
  44009. height: math.unit(8, "miles")
  44010. },
  44011. {
  44012. name: "Planet Toys",
  44013. height: math.unit(15, "earths")
  44014. },
  44015. {
  44016. name: "Stardust",
  44017. height: math.unit(0.25, "galaxies")
  44018. },
  44019. {
  44020. name: "Snacks",
  44021. height: math.unit(70, "universes")
  44022. },
  44023. ]
  44024. ))
  44025. characterMakers.push(() => makeCharacter(
  44026. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44027. {
  44028. front: {
  44029. height: math.unit(1.6, "meters"),
  44030. weight: math.unit(60, "kg"),
  44031. name: "Front",
  44032. image: {
  44033. source: "./media/characters/bounty/front.svg",
  44034. extra: 1426/1308,
  44035. bottom: 15/1441
  44036. }
  44037. },
  44038. back: {
  44039. height: math.unit(1.6, "meters"),
  44040. weight: math.unit(60, "kg"),
  44041. name: "Back",
  44042. image: {
  44043. source: "./media/characters/bounty/back.svg",
  44044. extra: 1417/1307,
  44045. bottom: 8/1425
  44046. }
  44047. },
  44048. },
  44049. [
  44050. {
  44051. name: "Normal",
  44052. height: math.unit(1.6, "meters"),
  44053. default: true
  44054. },
  44055. {
  44056. name: "Macro",
  44057. height: math.unit(300, "meters")
  44058. },
  44059. ]
  44060. ))
  44061. characterMakers.push(() => makeCharacter(
  44062. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44063. {
  44064. front: {
  44065. height: math.unit(2 + 8/12, "feet"),
  44066. weight: math.unit(15, "lb"),
  44067. name: "Front",
  44068. image: {
  44069. source: "./media/characters/mochi/front.svg",
  44070. extra: 1022/852,
  44071. bottom: 435/1457
  44072. }
  44073. },
  44074. back: {
  44075. height: math.unit(2 + 8/12, "feet"),
  44076. weight: math.unit(15, "lb"),
  44077. name: "Back",
  44078. image: {
  44079. source: "./media/characters/mochi/back.svg",
  44080. extra: 1335/1119,
  44081. bottom: 39/1374
  44082. }
  44083. },
  44084. bird: {
  44085. height: math.unit(2 + 8/12, "feet"),
  44086. weight: math.unit(15, "lb"),
  44087. name: "Bird",
  44088. image: {
  44089. source: "./media/characters/mochi/bird.svg",
  44090. extra: 1251/1113,
  44091. bottom: 178/1429
  44092. }
  44093. },
  44094. kaiju: {
  44095. height: math.unit(154, "feet"),
  44096. weight: math.unit(1e7, "lb"),
  44097. name: "Kaiju",
  44098. image: {
  44099. source: "./media/characters/mochi/kaiju.svg",
  44100. extra: 460/324,
  44101. bottom: 40/500
  44102. }
  44103. },
  44104. head: {
  44105. height: math.unit(1.21, "feet"),
  44106. name: "Head",
  44107. image: {
  44108. source: "./media/characters/mochi/head.svg"
  44109. }
  44110. },
  44111. alternateTail: {
  44112. height: math.unit(2 + 8/12, "feet"),
  44113. weight: math.unit(45, "lb"),
  44114. name: "Alternate Tail",
  44115. image: {
  44116. source: "./media/characters/mochi/alternate-tail.svg",
  44117. extra: 139/76,
  44118. bottom: 45/184
  44119. }
  44120. },
  44121. },
  44122. [
  44123. {
  44124. name: "Micro",
  44125. height: math.unit(2, "inches")
  44126. },
  44127. {
  44128. name: "Normal",
  44129. height: math.unit(2 + 8/12, "feet"),
  44130. default: true
  44131. },
  44132. {
  44133. name: "Macro",
  44134. height: math.unit(106, "feet")
  44135. },
  44136. ]
  44137. ))
  44138. characterMakers.push(() => makeCharacter(
  44139. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44140. {
  44141. front: {
  44142. height: math.unit(5.67, "feet"),
  44143. weight: math.unit(135, "lb"),
  44144. name: "Front",
  44145. image: {
  44146. source: "./media/characters/sarel/front.svg",
  44147. extra: 865/788,
  44148. bottom: 97/962
  44149. }
  44150. },
  44151. back: {
  44152. height: math.unit(5.67, "feet"),
  44153. weight: math.unit(135, "lb"),
  44154. name: "Back",
  44155. image: {
  44156. source: "./media/characters/sarel/back.svg",
  44157. extra: 857/777,
  44158. bottom: 32/889
  44159. }
  44160. },
  44161. chozoan: {
  44162. height: math.unit(5.67, "feet"),
  44163. weight: math.unit(135, "lb"),
  44164. name: "Chozoan",
  44165. image: {
  44166. source: "./media/characters/sarel/chozoan.svg",
  44167. extra: 865/788,
  44168. bottom: 97/962
  44169. }
  44170. },
  44171. current: {
  44172. height: math.unit(5.67, "feet"),
  44173. weight: math.unit(135, "lb"),
  44174. name: "Current",
  44175. image: {
  44176. source: "./media/characters/sarel/current.svg",
  44177. extra: 865/788,
  44178. bottom: 97/962
  44179. }
  44180. },
  44181. head: {
  44182. height: math.unit(1.77, "feet"),
  44183. name: "Head",
  44184. image: {
  44185. source: "./media/characters/sarel/head.svg"
  44186. }
  44187. },
  44188. claws: {
  44189. height: math.unit(1.8, "feet"),
  44190. name: "Claws",
  44191. image: {
  44192. source: "./media/characters/sarel/claws.svg"
  44193. }
  44194. },
  44195. clawsAlt: {
  44196. height: math.unit(1.8, "feet"),
  44197. name: "Claws-alt",
  44198. image: {
  44199. source: "./media/characters/sarel/claws-alt.svg"
  44200. }
  44201. },
  44202. },
  44203. [
  44204. {
  44205. name: "Normal",
  44206. height: math.unit(5.67, "feet"),
  44207. default: true
  44208. },
  44209. ]
  44210. ))
  44211. characterMakers.push(() => makeCharacter(
  44212. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44213. {
  44214. front: {
  44215. height: math.unit(5500, "feet"),
  44216. name: "Front",
  44217. image: {
  44218. source: "./media/characters/alyonia/front.svg",
  44219. extra: 1200/1135,
  44220. bottom: 29/1229
  44221. }
  44222. },
  44223. back: {
  44224. height: math.unit(5500, "feet"),
  44225. name: "Back",
  44226. image: {
  44227. source: "./media/characters/alyonia/back.svg",
  44228. extra: 1205/1138,
  44229. bottom: 10/1215
  44230. }
  44231. },
  44232. },
  44233. [
  44234. {
  44235. name: "Small",
  44236. height: math.unit(10, "feet")
  44237. },
  44238. {
  44239. name: "Macro",
  44240. height: math.unit(500, "feet")
  44241. },
  44242. {
  44243. name: "Mega Macro",
  44244. height: math.unit(5500, "feet"),
  44245. default: true
  44246. },
  44247. {
  44248. name: "Mega Macro+",
  44249. height: math.unit(500000, "feet")
  44250. },
  44251. {
  44252. name: "Giga Macro",
  44253. height: math.unit(3000, "miles")
  44254. },
  44255. {
  44256. name: "Tera Macro",
  44257. height: math.unit(2.8e6, "miles")
  44258. },
  44259. {
  44260. name: "Galactic",
  44261. height: math.unit(120000, "lightyears")
  44262. },
  44263. ]
  44264. ))
  44265. characterMakers.push(() => makeCharacter(
  44266. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44267. {
  44268. werewolf: {
  44269. height: math.unit(8, "feet"),
  44270. weight: math.unit(425, "lb"),
  44271. name: "Werewolf",
  44272. image: {
  44273. source: "./media/characters/autumn/werewolf.svg",
  44274. extra: 2154/2031,
  44275. bottom: 160/2314
  44276. }
  44277. },
  44278. human: {
  44279. height: math.unit(5 + 8/12, "feet"),
  44280. weight: math.unit(150, "lb"),
  44281. name: "Human",
  44282. image: {
  44283. source: "./media/characters/autumn/human.svg",
  44284. extra: 1200/1149,
  44285. bottom: 30/1230
  44286. }
  44287. },
  44288. },
  44289. [
  44290. {
  44291. name: "Normal",
  44292. height: math.unit(8, "feet"),
  44293. default: true
  44294. },
  44295. ]
  44296. ))
  44297. characterMakers.push(() => makeCharacter(
  44298. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44299. {
  44300. front: {
  44301. height: math.unit(8 + 5/12, "feet"),
  44302. weight: math.unit(825, "lb"),
  44303. name: "Front",
  44304. image: {
  44305. source: "./media/characters/cobalt-charizard/front.svg",
  44306. extra: 1268/1155,
  44307. bottom: 122/1390
  44308. }
  44309. },
  44310. side: {
  44311. height: math.unit(8 + 5/12, "feet"),
  44312. weight: math.unit(825, "lb"),
  44313. name: "Side",
  44314. image: {
  44315. source: "./media/characters/cobalt-charizard/side.svg",
  44316. extra: 1348/1257,
  44317. bottom: 58/1406
  44318. }
  44319. },
  44320. gMax: {
  44321. height: math.unit(134 + 11/12, "feet"),
  44322. name: "G-Max",
  44323. image: {
  44324. source: "./media/characters/cobalt-charizard/g-max.svg",
  44325. extra: 1835/1541,
  44326. bottom: 151/1986
  44327. }
  44328. },
  44329. },
  44330. [
  44331. {
  44332. name: "Normal",
  44333. height: math.unit(8 + 5/12, "feet"),
  44334. default: true
  44335. },
  44336. ]
  44337. ))
  44338. characterMakers.push(() => makeCharacter(
  44339. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44340. {
  44341. front: {
  44342. height: math.unit(6 + 3/12, "feet"),
  44343. weight: math.unit(210, "lb"),
  44344. name: "Front",
  44345. image: {
  44346. source: "./media/characters/stella/front.svg",
  44347. extra: 3549/3335,
  44348. bottom: 51/3600
  44349. }
  44350. },
  44351. },
  44352. [
  44353. {
  44354. name: "Normal",
  44355. height: math.unit(6 + 3/12, "feet"),
  44356. default: true
  44357. },
  44358. ]
  44359. ))
  44360. characterMakers.push(() => makeCharacter(
  44361. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44362. {
  44363. front: {
  44364. height: math.unit(5, "feet"),
  44365. weight: math.unit(90, "lb"),
  44366. name: "Front",
  44367. image: {
  44368. source: "./media/characters/riley-bishop/front.svg",
  44369. extra: 1450/1428,
  44370. bottom: 152/1602
  44371. }
  44372. },
  44373. },
  44374. [
  44375. {
  44376. name: "Normal",
  44377. height: math.unit(5, "feet"),
  44378. default: true
  44379. },
  44380. ]
  44381. ))
  44382. characterMakers.push(() => makeCharacter(
  44383. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44384. {
  44385. side: {
  44386. height: math.unit(8 + 2/12, "feet"),
  44387. weight: math.unit(500, "kg"),
  44388. name: "Side",
  44389. image: {
  44390. source: "./media/characters/theo-arcanine/side.svg",
  44391. extra: 1342/1074,
  44392. bottom: 111/1453
  44393. }
  44394. },
  44395. },
  44396. [
  44397. {
  44398. name: "Normal",
  44399. height: math.unit(8 + 2/12, "feet"),
  44400. default: true
  44401. },
  44402. ]
  44403. ))
  44404. characterMakers.push(() => makeCharacter(
  44405. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44406. {
  44407. front: {
  44408. height: math.unit(4, "feet"),
  44409. name: "Front",
  44410. image: {
  44411. source: "./media/characters/kali/front.svg",
  44412. extra: 1921/1357,
  44413. bottom: 70/1991
  44414. }
  44415. },
  44416. },
  44417. [
  44418. {
  44419. name: "Normal",
  44420. height: math.unit(4, "feet"),
  44421. default: true
  44422. },
  44423. {
  44424. name: "Macro",
  44425. height: math.unit(32, "meters")
  44426. },
  44427. {
  44428. name: "Macro+",
  44429. height: math.unit(150, "meters")
  44430. },
  44431. {
  44432. name: "Megamacro",
  44433. height: math.unit(7500, "meters")
  44434. },
  44435. {
  44436. name: "Megamacro+",
  44437. height: math.unit(80, "kilometers")
  44438. },
  44439. ]
  44440. ))
  44441. characterMakers.push(() => makeCharacter(
  44442. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44443. {
  44444. side: {
  44445. height: math.unit(5 + 11/12, "feet"),
  44446. weight: math.unit(236, "lb"),
  44447. name: "Side",
  44448. image: {
  44449. source: "./media/characters/gapp/side.svg",
  44450. extra: 775/340,
  44451. bottom: 58/833
  44452. }
  44453. },
  44454. mouth: {
  44455. height: math.unit(2.98, "feet"),
  44456. name: "Mouth",
  44457. image: {
  44458. source: "./media/characters/gapp/mouth.svg"
  44459. }
  44460. },
  44461. },
  44462. [
  44463. {
  44464. name: "Normal",
  44465. height: math.unit(5 + 1/12, "feet"),
  44466. default: true
  44467. },
  44468. ]
  44469. ))
  44470. characterMakers.push(() => makeCharacter(
  44471. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44472. {
  44473. front: {
  44474. height: math.unit(6, "feet"),
  44475. name: "Front",
  44476. image: {
  44477. source: "./media/characters/persephone/front.svg",
  44478. extra: 1895/1717,
  44479. bottom: 96/1991
  44480. }
  44481. },
  44482. back: {
  44483. height: math.unit(6, "feet"),
  44484. name: "Back",
  44485. image: {
  44486. source: "./media/characters/persephone/back.svg",
  44487. extra: 1868/1679,
  44488. bottom: 26/1894
  44489. }
  44490. },
  44491. casual: {
  44492. height: math.unit(6, "feet"),
  44493. name: "Casual",
  44494. image: {
  44495. source: "./media/characters/persephone/casual.svg",
  44496. extra: 1713/1541,
  44497. bottom: 76/1789
  44498. }
  44499. },
  44500. },
  44501. [
  44502. {
  44503. name: "Human Size",
  44504. height: math.unit(6, "feet")
  44505. },
  44506. {
  44507. name: "Big Steppy",
  44508. height: math.unit(600, "meters"),
  44509. default: true
  44510. },
  44511. {
  44512. name: "Galaxy Brain",
  44513. height: math.unit(1, "zettameter")
  44514. },
  44515. ]
  44516. ))
  44517. characterMakers.push(() => makeCharacter(
  44518. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44519. {
  44520. front: {
  44521. height: math.unit(1.85, "meters"),
  44522. name: "Front",
  44523. image: {
  44524. source: "./media/characters/riley-foxthing/front.svg",
  44525. extra: 1495/1354,
  44526. bottom: 122/1617
  44527. }
  44528. },
  44529. frontAlt: {
  44530. height: math.unit(1.85, "meters"),
  44531. name: "Front (Alt)",
  44532. image: {
  44533. source: "./media/characters/riley-foxthing/front-alt.svg",
  44534. extra: 1572/1389,
  44535. bottom: 116/1688
  44536. }
  44537. },
  44538. },
  44539. [
  44540. {
  44541. name: "Normal Sized",
  44542. height: math.unit(1.85, "meters"),
  44543. default: true
  44544. },
  44545. {
  44546. name: "Quite Sizable",
  44547. height: math.unit(5, "meters")
  44548. },
  44549. {
  44550. name: "Rather Large",
  44551. height: math.unit(20, "meters")
  44552. },
  44553. {
  44554. name: "Macro",
  44555. height: math.unit(450, "meters")
  44556. },
  44557. {
  44558. name: "Giga",
  44559. height: math.unit(5, "km")
  44560. },
  44561. ]
  44562. ))
  44563. characterMakers.push(() => makeCharacter(
  44564. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44565. {
  44566. front: {
  44567. height: math.unit(6, "feet"),
  44568. weight: math.unit(200, "lb"),
  44569. name: "Front",
  44570. image: {
  44571. source: "./media/characters/blizzard/front.svg",
  44572. extra: 1136/990,
  44573. bottom: 136/1272
  44574. }
  44575. },
  44576. back: {
  44577. height: math.unit(6, "feet"),
  44578. weight: math.unit(200, "lb"),
  44579. name: "Back",
  44580. image: {
  44581. source: "./media/characters/blizzard/back.svg",
  44582. extra: 1175/1034,
  44583. bottom: 97/1272
  44584. }
  44585. },
  44586. sitting: {
  44587. height: math.unit(3.725, "feet"),
  44588. weight: math.unit(200, "lb"),
  44589. name: "Sitting",
  44590. image: {
  44591. source: "./media/characters/blizzard/sitting.svg",
  44592. extra: 581/485,
  44593. bottom: 90/671
  44594. }
  44595. },
  44596. frontWizard: {
  44597. height: math.unit(7.9, "feet"),
  44598. weight: math.unit(200, "lb"),
  44599. name: "Front (Wizard)",
  44600. image: {
  44601. source: "./media/characters/blizzard/front-wizard.svg"
  44602. }
  44603. },
  44604. backWizard: {
  44605. height: math.unit(7.9, "feet"),
  44606. weight: math.unit(200, "lb"),
  44607. name: "Back (Wizard)",
  44608. image: {
  44609. source: "./media/characters/blizzard/back-wizard.svg"
  44610. }
  44611. },
  44612. frontNsfw: {
  44613. height: math.unit(6, "feet"),
  44614. weight: math.unit(200, "lb"),
  44615. name: "Front (NSFW)",
  44616. image: {
  44617. source: "./media/characters/blizzard/front-nsfw.svg",
  44618. extra: 1136/990,
  44619. bottom: 136/1272
  44620. }
  44621. },
  44622. backNsfw: {
  44623. height: math.unit(6, "feet"),
  44624. weight: math.unit(200, "lb"),
  44625. name: "Back (NSFW)",
  44626. image: {
  44627. source: "./media/characters/blizzard/back-nsfw.svg",
  44628. extra: 1175/1034,
  44629. bottom: 97/1272
  44630. }
  44631. },
  44632. sittingNsfw: {
  44633. height: math.unit(3.725, "feet"),
  44634. weight: math.unit(200, "lb"),
  44635. name: "Sitting (NSFW)",
  44636. image: {
  44637. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44638. extra: 581/485,
  44639. bottom: 90/671
  44640. }
  44641. },
  44642. wizardFrontNsfw: {
  44643. height: math.unit(7.9, "feet"),
  44644. weight: math.unit(200, "lb"),
  44645. name: "Wizard (Front, NSFW)",
  44646. image: {
  44647. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44648. }
  44649. },
  44650. },
  44651. [
  44652. {
  44653. name: "Normal",
  44654. height: math.unit(6, "feet"),
  44655. default: true
  44656. },
  44657. ]
  44658. ))
  44659. characterMakers.push(() => makeCharacter(
  44660. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44661. {
  44662. front: {
  44663. height: math.unit(5 + 2/12, "feet"),
  44664. name: "Front",
  44665. image: {
  44666. source: "./media/characters/lumi/front.svg",
  44667. extra: 1328/1268,
  44668. bottom: 103/1431
  44669. }
  44670. },
  44671. back: {
  44672. height: math.unit(5 + 2/12, "feet"),
  44673. name: "Back",
  44674. image: {
  44675. source: "./media/characters/lumi/back.svg",
  44676. extra: 1381/1327,
  44677. bottom: 43/1424
  44678. }
  44679. },
  44680. },
  44681. [
  44682. {
  44683. name: "Normal",
  44684. height: math.unit(5 + 2/12, "feet"),
  44685. default: true
  44686. },
  44687. ]
  44688. ))
  44689. characterMakers.push(() => makeCharacter(
  44690. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44691. {
  44692. front: {
  44693. height: math.unit(5 + 9/12, "feet"),
  44694. name: "Front",
  44695. image: {
  44696. source: "./media/characters/aliya-cotton/front.svg",
  44697. extra: 577/564,
  44698. bottom: 29/606
  44699. }
  44700. },
  44701. },
  44702. [
  44703. {
  44704. name: "Normal",
  44705. height: math.unit(5 + 9/12, "feet"),
  44706. default: true
  44707. },
  44708. ]
  44709. ))
  44710. characterMakers.push(() => makeCharacter(
  44711. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44712. {
  44713. front: {
  44714. height: math.unit(2.7, "meters"),
  44715. weight: math.unit(25000, "lb"),
  44716. name: "Front",
  44717. image: {
  44718. source: "./media/characters/noah-luxray/front.svg",
  44719. extra: 1644/825,
  44720. bottom: 339/1983
  44721. }
  44722. },
  44723. side: {
  44724. height: math.unit(2.97, "meters"),
  44725. weight: math.unit(25000, "lb"),
  44726. name: "Side",
  44727. image: {
  44728. source: "./media/characters/noah-luxray/side.svg",
  44729. extra: 1319/650,
  44730. bottom: 163/1482
  44731. }
  44732. },
  44733. dick: {
  44734. height: math.unit(7.4, "feet"),
  44735. weight: math.unit(2500, "lb"),
  44736. name: "Dick",
  44737. image: {
  44738. source: "./media/characters/noah-luxray/dick.svg"
  44739. }
  44740. },
  44741. dickAlt: {
  44742. height: math.unit(10.83, "feet"),
  44743. weight: math.unit(2500, "lb"),
  44744. name: "Dick-alt",
  44745. image: {
  44746. source: "./media/characters/noah-luxray/dick-alt.svg"
  44747. }
  44748. },
  44749. },
  44750. [
  44751. {
  44752. name: "BIG",
  44753. height: math.unit(2.7, "meters"),
  44754. default: true
  44755. },
  44756. ]
  44757. ))
  44758. characterMakers.push(() => makeCharacter(
  44759. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44760. {
  44761. standing: {
  44762. height: math.unit(183, "cm"),
  44763. weight: math.unit(68, "kg"),
  44764. name: "Standing",
  44765. image: {
  44766. source: "./media/characters/arion/standing.svg",
  44767. extra: 1869/1807,
  44768. bottom: 93/1962
  44769. }
  44770. },
  44771. reclining: {
  44772. height: math.unit(70.5, "cm"),
  44773. weight: math.unit(68, "lb"),
  44774. name: "Reclining",
  44775. image: {
  44776. source: "./media/characters/arion/reclining.svg",
  44777. extra: 937/870,
  44778. bottom: 63/1000
  44779. }
  44780. },
  44781. },
  44782. [
  44783. {
  44784. name: "Colossus Size, Low",
  44785. height: math.unit(33, "meters"),
  44786. default: true
  44787. },
  44788. {
  44789. name: "Colossus Size, Mid",
  44790. height: math.unit(52, "meters")
  44791. },
  44792. {
  44793. name: "Colossus Size, High",
  44794. height: math.unit(60, "meters")
  44795. },
  44796. {
  44797. name: "Titan Size, Low",
  44798. height: math.unit(91, "meters"),
  44799. },
  44800. {
  44801. name: "Titan Size, Mid",
  44802. height: math.unit(122, "meters")
  44803. },
  44804. {
  44805. name: "Titan Size, High",
  44806. height: math.unit(162, "meters")
  44807. },
  44808. ]
  44809. ))
  44810. characterMakers.push(() => makeCharacter(
  44811. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44812. {
  44813. front: {
  44814. height: math.unit(53, "meters"),
  44815. name: "Front",
  44816. image: {
  44817. source: "./media/characters/stellar-marbey/front.svg",
  44818. extra: 1913/1805,
  44819. bottom: 92/2005
  44820. }
  44821. },
  44822. back: {
  44823. height: math.unit(53, "meters"),
  44824. name: "Back",
  44825. image: {
  44826. source: "./media/characters/stellar-marbey/back.svg",
  44827. extra: 1960/1851,
  44828. bottom: 28/1988
  44829. }
  44830. },
  44831. mouth: {
  44832. height: math.unit(3.5, "meters"),
  44833. name: "Mouth",
  44834. image: {
  44835. source: "./media/characters/stellar-marbey/mouth.svg"
  44836. }
  44837. },
  44838. },
  44839. [
  44840. {
  44841. name: "Macro",
  44842. height: math.unit(53, "meters"),
  44843. default: true
  44844. },
  44845. ]
  44846. ))
  44847. characterMakers.push(() => makeCharacter(
  44848. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44849. {
  44850. front: {
  44851. height: math.unit(8 + 1/12, "feet"),
  44852. weight: math.unit(233, "lb"),
  44853. name: "Front",
  44854. image: {
  44855. source: "./media/characters/matsu/front.svg",
  44856. extra: 832/772,
  44857. bottom: 40/872
  44858. }
  44859. },
  44860. back: {
  44861. height: math.unit(8 + 1/12, "feet"),
  44862. weight: math.unit(233, "lb"),
  44863. name: "Back",
  44864. image: {
  44865. source: "./media/characters/matsu/back.svg",
  44866. extra: 839/780,
  44867. bottom: 47/886
  44868. }
  44869. },
  44870. },
  44871. [
  44872. {
  44873. name: "Normal",
  44874. height: math.unit(8 + 1/12, "feet"),
  44875. default: true
  44876. },
  44877. ]
  44878. ))
  44879. characterMakers.push(() => makeCharacter(
  44880. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44881. {
  44882. front: {
  44883. height: math.unit(4, "feet"),
  44884. weight: math.unit(148, "lb"),
  44885. name: "Front",
  44886. image: {
  44887. source: "./media/characters/thiz/front.svg",
  44888. extra: 1913/1748,
  44889. bottom: 62/1975
  44890. }
  44891. },
  44892. },
  44893. [
  44894. {
  44895. name: "Normal",
  44896. height: math.unit(4, "feet"),
  44897. default: true
  44898. },
  44899. ]
  44900. ))
  44901. characterMakers.push(() => makeCharacter(
  44902. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44903. {
  44904. front: {
  44905. height: math.unit(7 + 6/12, "feet"),
  44906. weight: math.unit(267, "lb"),
  44907. name: "Front",
  44908. image: {
  44909. source: "./media/characters/marcel/front.svg",
  44910. extra: 1221/1096,
  44911. bottom: 76/1297
  44912. }
  44913. },
  44914. },
  44915. [
  44916. {
  44917. name: "Normal",
  44918. height: math.unit(7 + 6/12, "feet"),
  44919. default: true
  44920. },
  44921. ]
  44922. ))
  44923. characterMakers.push(() => makeCharacter(
  44924. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44925. {
  44926. side: {
  44927. height: math.unit(42, "meters"),
  44928. name: "Side",
  44929. image: {
  44930. source: "./media/characters/flake/side.svg",
  44931. extra: 1525/1306,
  44932. bottom: 209/1734
  44933. }
  44934. },
  44935. },
  44936. [
  44937. {
  44938. name: "Normal",
  44939. height: math.unit(42, "meters"),
  44940. default: true
  44941. },
  44942. ]
  44943. ))
  44944. characterMakers.push(() => makeCharacter(
  44945. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44946. {
  44947. dressed: {
  44948. height: math.unit(6 + 4/12, "feet"),
  44949. weight: math.unit(520, "lb"),
  44950. name: "Dressed",
  44951. image: {
  44952. source: "./media/characters/someonne/dressed.svg",
  44953. extra: 1020/1010,
  44954. bottom: 178/1198
  44955. }
  44956. },
  44957. undressed: {
  44958. height: math.unit(6 + 4/12, "feet"),
  44959. weight: math.unit(520, "lb"),
  44960. name: "Undressed",
  44961. image: {
  44962. source: "./media/characters/someonne/undressed.svg",
  44963. extra: 1019/1014,
  44964. bottom: 169/1188
  44965. }
  44966. },
  44967. },
  44968. [
  44969. {
  44970. name: "Normal",
  44971. height: math.unit(6 + 4/12, "feet"),
  44972. default: true
  44973. },
  44974. ]
  44975. ))
  44976. characterMakers.push(() => makeCharacter(
  44977. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44978. {
  44979. front: {
  44980. height: math.unit(3, "feet"),
  44981. weight: math.unit(30, "lb"),
  44982. name: "Front",
  44983. image: {
  44984. source: "./media/characters/till/front.svg",
  44985. extra: 892/823,
  44986. bottom: 55/947
  44987. }
  44988. },
  44989. },
  44990. [
  44991. {
  44992. name: "Normal",
  44993. height: math.unit(3, "feet"),
  44994. default: true
  44995. },
  44996. ]
  44997. ))
  44998. characterMakers.push(() => makeCharacter(
  44999. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45000. {
  45001. front: {
  45002. height: math.unit(9 + 8/12, "feet"),
  45003. weight: math.unit(800, "lb"),
  45004. name: "Front",
  45005. image: {
  45006. source: "./media/characters/sydney-heki/front.svg",
  45007. extra: 1360/1300,
  45008. bottom: 22/1382
  45009. }
  45010. },
  45011. back: {
  45012. height: math.unit(9 + 8/12, "feet"),
  45013. weight: math.unit(800, "lb"),
  45014. name: "Back",
  45015. image: {
  45016. source: "./media/characters/sydney-heki/back.svg",
  45017. extra: 1356/1293,
  45018. bottom: 12/1368
  45019. }
  45020. },
  45021. frontDressed: {
  45022. height: math.unit(9 + 8/12, "feet"),
  45023. weight: math.unit(800, "lb"),
  45024. name: "Front-dressed",
  45025. image: {
  45026. source: "./media/characters/sydney-heki/front-dressed.svg",
  45027. extra: 1360/1300,
  45028. bottom: 22/1382
  45029. }
  45030. },
  45031. },
  45032. [
  45033. {
  45034. name: "Normal",
  45035. height: math.unit(9 + 8/12, "feet"),
  45036. default: true
  45037. },
  45038. {
  45039. name: "Macro",
  45040. height: math.unit(500, "feet")
  45041. },
  45042. {
  45043. name: "Megamacro",
  45044. height: math.unit(3.6, "miles")
  45045. },
  45046. ]
  45047. ))
  45048. characterMakers.push(() => makeCharacter(
  45049. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45050. {
  45051. front: {
  45052. height: math.unit(200, "cm"),
  45053. weight: math.unit(250, "lb"),
  45054. name: "Front",
  45055. image: {
  45056. source: "./media/characters/fowler-karlsson/front.svg",
  45057. extra: 897/845,
  45058. bottom: 123/1020
  45059. }
  45060. },
  45061. back: {
  45062. height: math.unit(200, "cm"),
  45063. weight: math.unit(250, "lb"),
  45064. name: "Back",
  45065. image: {
  45066. source: "./media/characters/fowler-karlsson/back.svg",
  45067. extra: 999/944,
  45068. bottom: 26/1025
  45069. }
  45070. },
  45071. dick: {
  45072. height: math.unit(1.92, "feet"),
  45073. weight: math.unit(150, "lb"),
  45074. name: "Dick",
  45075. image: {
  45076. source: "./media/characters/fowler-karlsson/dick.svg"
  45077. }
  45078. },
  45079. },
  45080. [
  45081. {
  45082. name: "Normal",
  45083. height: math.unit(200, "cm"),
  45084. default: true
  45085. },
  45086. {
  45087. name: "Smaller Macro",
  45088. height: math.unit(90, "m")
  45089. },
  45090. {
  45091. name: "Macro",
  45092. height: math.unit(150, "m")
  45093. },
  45094. {
  45095. name: "Bigger Macro",
  45096. height: math.unit(300, "m")
  45097. },
  45098. ]
  45099. ))
  45100. characterMakers.push(() => makeCharacter(
  45101. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45102. {
  45103. side: {
  45104. height: math.unit(8 + 2/12, "feet"),
  45105. weight: math.unit(1, "tonne"),
  45106. name: "Side",
  45107. image: {
  45108. source: "./media/characters/rylide/side.svg",
  45109. extra: 1318/1034,
  45110. bottom: 106/1424
  45111. }
  45112. },
  45113. sitting: {
  45114. height: math.unit(303, "cm"),
  45115. weight: math.unit(1, "tonne"),
  45116. name: "Sitting",
  45117. image: {
  45118. source: "./media/characters/rylide/sitting.svg",
  45119. extra: 1303/1103,
  45120. bottom: 36/1339
  45121. }
  45122. },
  45123. },
  45124. [
  45125. {
  45126. name: "Normal",
  45127. height: math.unit(8 + 2/12, "feet"),
  45128. default: true
  45129. },
  45130. ]
  45131. ))
  45132. characterMakers.push(() => makeCharacter(
  45133. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45134. {
  45135. front: {
  45136. height: math.unit(5 + 10/12, "feet"),
  45137. weight: math.unit(160, "lb"),
  45138. name: "Front",
  45139. image: {
  45140. source: "./media/characters/pudask/front.svg",
  45141. extra: 1616/1590,
  45142. bottom: 161/1777
  45143. }
  45144. },
  45145. },
  45146. [
  45147. {
  45148. name: "Ferret Height",
  45149. height: math.unit(2 + 5/12, "feet")
  45150. },
  45151. {
  45152. name: "Canon Height",
  45153. height: math.unit(5 + 10/12, "feet"),
  45154. default: true
  45155. },
  45156. ]
  45157. ))
  45158. characterMakers.push(() => makeCharacter(
  45159. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45160. {
  45161. front: {
  45162. height: math.unit(3 + 6/12, "feet"),
  45163. weight: math.unit(60, "lb"),
  45164. name: "Front",
  45165. image: {
  45166. source: "./media/characters/ramita/front.svg",
  45167. extra: 1402/1232,
  45168. bottom: 62/1464
  45169. }
  45170. },
  45171. dressed: {
  45172. height: math.unit(3 + 6/12, "feet"),
  45173. weight: math.unit(60, "lb"),
  45174. name: "Dressed",
  45175. image: {
  45176. source: "./media/characters/ramita/dressed.svg",
  45177. extra: 1534/1249,
  45178. bottom: 50/1584
  45179. }
  45180. },
  45181. },
  45182. [
  45183. {
  45184. name: "Normal",
  45185. height: math.unit(3 + 6/12, "feet"),
  45186. default: true
  45187. },
  45188. ]
  45189. ))
  45190. characterMakers.push(() => makeCharacter(
  45191. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45192. {
  45193. front: {
  45194. height: math.unit(8, "feet"),
  45195. name: "Front",
  45196. image: {
  45197. source: "./media/characters/ark/front.svg",
  45198. extra: 772/693,
  45199. bottom: 45/817
  45200. }
  45201. },
  45202. },
  45203. [
  45204. {
  45205. name: "Normal",
  45206. height: math.unit(8, "feet"),
  45207. default: true
  45208. },
  45209. ]
  45210. ))
  45211. characterMakers.push(() => makeCharacter(
  45212. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45213. {
  45214. front: {
  45215. height: math.unit(6, "feet"),
  45216. weight: math.unit(250, "lb"),
  45217. volume: math.unit(5/8, "gallons"),
  45218. name: "Front",
  45219. image: {
  45220. source: "./media/characters/ludwig-horn/front.svg",
  45221. extra: 1782/1635,
  45222. bottom: 96/1878
  45223. }
  45224. },
  45225. back: {
  45226. height: math.unit(6, "feet"),
  45227. weight: math.unit(250, "lb"),
  45228. volume: math.unit(5/8, "gallons"),
  45229. name: "Back",
  45230. image: {
  45231. source: "./media/characters/ludwig-horn/back.svg",
  45232. extra: 1874/1729,
  45233. bottom: 27/1901
  45234. }
  45235. },
  45236. dick: {
  45237. height: math.unit(1.05, "feet"),
  45238. weight: math.unit(15, "lb"),
  45239. volume: math.unit(5/8, "gallons"),
  45240. name: "Dick",
  45241. image: {
  45242. source: "./media/characters/ludwig-horn/dick.svg"
  45243. }
  45244. },
  45245. },
  45246. [
  45247. {
  45248. name: "Small",
  45249. height: math.unit(6, "feet")
  45250. },
  45251. {
  45252. name: "Typical",
  45253. height: math.unit(12, "feet"),
  45254. default: true
  45255. },
  45256. {
  45257. name: "Building",
  45258. height: math.unit(80, "feet")
  45259. },
  45260. {
  45261. name: "Town",
  45262. height: math.unit(800, "feet")
  45263. },
  45264. {
  45265. name: "Kingdom",
  45266. height: math.unit(80000, "feet")
  45267. },
  45268. {
  45269. name: "Planet",
  45270. height: math.unit(8000000, "feet")
  45271. },
  45272. {
  45273. name: "Universe",
  45274. height: math.unit(8000000000, "feet")
  45275. },
  45276. {
  45277. name: "Transcended",
  45278. height: math.unit(8e27, "feet")
  45279. },
  45280. ]
  45281. ))
  45282. characterMakers.push(() => makeCharacter(
  45283. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45284. {
  45285. front: {
  45286. height: math.unit(5, "feet"),
  45287. weight: math.unit(50, "kg"),
  45288. name: "Front",
  45289. image: {
  45290. source: "./media/characters/biot-avery/front.svg",
  45291. extra: 1295/1232,
  45292. bottom: 86/1381
  45293. }
  45294. },
  45295. },
  45296. [
  45297. {
  45298. name: "Normal",
  45299. height: math.unit(5, "feet"),
  45300. default: true
  45301. },
  45302. ]
  45303. ))
  45304. characterMakers.push(() => makeCharacter(
  45305. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45306. {
  45307. front: {
  45308. height: math.unit(6, "feet"),
  45309. name: "Front",
  45310. image: {
  45311. source: "./media/characters/kitsune-kiro/front.svg",
  45312. extra: 1270/1158,
  45313. bottom: 42/1312
  45314. }
  45315. },
  45316. frontAlt: {
  45317. height: math.unit(6, "feet"),
  45318. name: "Front-alt",
  45319. image: {
  45320. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45321. extra: 1130/1081,
  45322. bottom: 36/1166
  45323. }
  45324. },
  45325. },
  45326. [
  45327. {
  45328. name: "Smol",
  45329. height: math.unit(3, "feet")
  45330. },
  45331. {
  45332. name: "Normal",
  45333. height: math.unit(6, "feet"),
  45334. default: true
  45335. },
  45336. ]
  45337. ))
  45338. characterMakers.push(() => makeCharacter(
  45339. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45340. {
  45341. front: {
  45342. height: math.unit(6, "feet"),
  45343. weight: math.unit(125, "lb"),
  45344. name: "Front",
  45345. image: {
  45346. source: "./media/characters/jack-thatcher/front.svg",
  45347. extra: 1474/1370,
  45348. bottom: 26/1500
  45349. }
  45350. },
  45351. back: {
  45352. height: math.unit(6, "feet"),
  45353. weight: math.unit(125, "lb"),
  45354. name: "Back",
  45355. image: {
  45356. source: "./media/characters/jack-thatcher/back.svg",
  45357. extra: 1489/1384,
  45358. bottom: 18/1507
  45359. }
  45360. },
  45361. },
  45362. [
  45363. {
  45364. name: "Normal",
  45365. height: math.unit(6, "feet"),
  45366. default: true
  45367. },
  45368. {
  45369. name: "Macro",
  45370. height: math.unit(75, "feet")
  45371. },
  45372. {
  45373. name: "Macro-er",
  45374. height: math.unit(250, "feet")
  45375. },
  45376. ]
  45377. ))
  45378. characterMakers.push(() => makeCharacter(
  45379. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45380. {
  45381. front: {
  45382. height: math.unit(7, "feet"),
  45383. weight: math.unit(110, "kg"),
  45384. name: "Front",
  45385. image: {
  45386. source: "./media/characters/max-hyper/front.svg",
  45387. extra: 1969/1881,
  45388. bottom: 49/2018
  45389. }
  45390. },
  45391. },
  45392. [
  45393. {
  45394. name: "Normal",
  45395. height: math.unit(7, "feet"),
  45396. default: true
  45397. },
  45398. ]
  45399. ))
  45400. characterMakers.push(() => makeCharacter(
  45401. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45402. {
  45403. front: {
  45404. height: math.unit(5 + 5/12, "feet"),
  45405. weight: math.unit(160, "lb"),
  45406. name: "Front",
  45407. image: {
  45408. source: "./media/characters/spook/front.svg",
  45409. extra: 794/791,
  45410. bottom: 54/848
  45411. }
  45412. },
  45413. back: {
  45414. height: math.unit(5 + 5/12, "feet"),
  45415. weight: math.unit(160, "lb"),
  45416. name: "Back",
  45417. image: {
  45418. source: "./media/characters/spook/back.svg",
  45419. extra: 812/798,
  45420. bottom: 32/844
  45421. }
  45422. },
  45423. },
  45424. [
  45425. {
  45426. name: "Normal",
  45427. height: math.unit(5 + 5/12, "feet"),
  45428. default: true
  45429. },
  45430. ]
  45431. ))
  45432. characterMakers.push(() => makeCharacter(
  45433. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45434. {
  45435. front: {
  45436. height: math.unit(18, "feet"),
  45437. name: "Front",
  45438. image: {
  45439. source: "./media/characters/xeaduulix/front.svg",
  45440. extra: 1380/1166,
  45441. bottom: 110/1490
  45442. }
  45443. },
  45444. back: {
  45445. height: math.unit(18, "feet"),
  45446. name: "Back",
  45447. image: {
  45448. source: "./media/characters/xeaduulix/back.svg",
  45449. extra: 1592/1170,
  45450. bottom: 128/1720
  45451. }
  45452. },
  45453. frontNsfw: {
  45454. height: math.unit(18, "feet"),
  45455. name: "Front (NSFW)",
  45456. image: {
  45457. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45458. extra: 1380/1166,
  45459. bottom: 110/1490
  45460. }
  45461. },
  45462. backNsfw: {
  45463. height: math.unit(18, "feet"),
  45464. name: "Back (NSFW)",
  45465. image: {
  45466. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45467. extra: 1592/1170,
  45468. bottom: 128/1720
  45469. }
  45470. },
  45471. },
  45472. [
  45473. {
  45474. name: "Normal",
  45475. height: math.unit(18, "feet"),
  45476. default: true
  45477. },
  45478. ]
  45479. ))
  45480. characterMakers.push(() => makeCharacter(
  45481. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45482. {
  45483. spreadWings: {
  45484. height: math.unit(20, "feet"),
  45485. name: "Spread Wings",
  45486. image: {
  45487. source: "./media/characters/fledge/spread-wings.svg",
  45488. extra: 693/635,
  45489. bottom: 26/719
  45490. }
  45491. },
  45492. front: {
  45493. height: math.unit(20, "feet"),
  45494. name: "Front",
  45495. image: {
  45496. source: "./media/characters/fledge/front.svg",
  45497. extra: 684/637,
  45498. bottom: 18/702
  45499. }
  45500. },
  45501. frontAlt: {
  45502. height: math.unit(20, "feet"),
  45503. name: "Front (Alt)",
  45504. image: {
  45505. source: "./media/characters/fledge/front-alt.svg",
  45506. extra: 708/664,
  45507. bottom: 13/721
  45508. }
  45509. },
  45510. back: {
  45511. height: math.unit(20, "feet"),
  45512. name: "Back",
  45513. image: {
  45514. source: "./media/characters/fledge/back.svg",
  45515. extra: 718/634,
  45516. bottom: 22/740
  45517. }
  45518. },
  45519. head: {
  45520. height: math.unit(5.55, "feet"),
  45521. name: "Head",
  45522. image: {
  45523. source: "./media/characters/fledge/head.svg"
  45524. }
  45525. },
  45526. headAlt: {
  45527. height: math.unit(5.1, "feet"),
  45528. name: "Head (Alt)",
  45529. image: {
  45530. source: "./media/characters/fledge/head-alt.svg"
  45531. }
  45532. },
  45533. },
  45534. [
  45535. {
  45536. name: "Small",
  45537. height: math.unit(6 + 2/12, "feet")
  45538. },
  45539. {
  45540. name: "Big",
  45541. height: math.unit(20, "feet"),
  45542. default: true
  45543. },
  45544. {
  45545. name: "Giant",
  45546. height: math.unit(100, "feet")
  45547. },
  45548. {
  45549. name: "Macro",
  45550. height: math.unit(200, "feet")
  45551. },
  45552. ]
  45553. ))
  45554. characterMakers.push(() => makeCharacter(
  45555. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45556. {
  45557. front: {
  45558. height: math.unit(1, "meter"),
  45559. name: "Front",
  45560. image: {
  45561. source: "./media/characters/atlas-morenai/front.svg",
  45562. extra: 1275/1043,
  45563. bottom: 19/1294
  45564. }
  45565. },
  45566. back: {
  45567. height: math.unit(1, "meter"),
  45568. name: "Back",
  45569. image: {
  45570. source: "./media/characters/atlas-morenai/back.svg",
  45571. extra: 1141/1001,
  45572. bottom: 25/1166
  45573. }
  45574. },
  45575. },
  45576. [
  45577. {
  45578. name: "Normal",
  45579. height: math.unit(1, "meter"),
  45580. default: true
  45581. },
  45582. {
  45583. name: "Magic-Infused",
  45584. height: math.unit(5, "meters")
  45585. },
  45586. ]
  45587. ))
  45588. characterMakers.push(() => makeCharacter(
  45589. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45590. {
  45591. front: {
  45592. height: math.unit(5, "meters"),
  45593. name: "Front",
  45594. image: {
  45595. source: "./media/characters/cintia/front.svg",
  45596. extra: 1312/1228,
  45597. bottom: 38/1350
  45598. }
  45599. },
  45600. back: {
  45601. height: math.unit(5, "meters"),
  45602. name: "Back",
  45603. image: {
  45604. source: "./media/characters/cintia/back.svg",
  45605. extra: 1260/1166,
  45606. bottom: 98/1358
  45607. }
  45608. },
  45609. frontDick: {
  45610. height: math.unit(5, "meters"),
  45611. name: "Front (Dick)",
  45612. image: {
  45613. source: "./media/characters/cintia/front-dick.svg",
  45614. extra: 1312/1228,
  45615. bottom: 38/1350
  45616. }
  45617. },
  45618. backDick: {
  45619. height: math.unit(5, "meters"),
  45620. name: "Back (Dick)",
  45621. image: {
  45622. source: "./media/characters/cintia/back-dick.svg",
  45623. extra: 1260/1166,
  45624. bottom: 98/1358
  45625. }
  45626. },
  45627. bust: {
  45628. height: math.unit(1.97, "meters"),
  45629. name: "Bust",
  45630. image: {
  45631. source: "./media/characters/cintia/bust.svg",
  45632. extra: 617/565,
  45633. bottom: 0/617
  45634. }
  45635. },
  45636. },
  45637. [
  45638. {
  45639. name: "Normal",
  45640. height: math.unit(5, "meters"),
  45641. default: true
  45642. },
  45643. ]
  45644. ))
  45645. characterMakers.push(() => makeCharacter(
  45646. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45647. {
  45648. side: {
  45649. height: math.unit(100, "feet"),
  45650. name: "Side",
  45651. image: {
  45652. source: "./media/characters/denora/side.svg",
  45653. extra: 875/803,
  45654. bottom: 9/884
  45655. }
  45656. },
  45657. },
  45658. [
  45659. {
  45660. name: "Standard",
  45661. height: math.unit(100, "feet"),
  45662. default: true
  45663. },
  45664. {
  45665. name: "Grand",
  45666. height: math.unit(1000, "feet")
  45667. },
  45668. {
  45669. name: "Conquering",
  45670. height: math.unit(10000, "feet")
  45671. },
  45672. ]
  45673. ))
  45674. characterMakers.push(() => makeCharacter(
  45675. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45676. {
  45677. dressed: {
  45678. height: math.unit(8 + 5/12, "feet"),
  45679. weight: math.unit(700, "lb"),
  45680. name: "Dressed",
  45681. image: {
  45682. source: "./media/characters/kiva/dressed.svg",
  45683. extra: 1102/1055,
  45684. bottom: 60/1162
  45685. }
  45686. },
  45687. nude: {
  45688. height: math.unit(8 + 5/12, "feet"),
  45689. weight: math.unit(700, "lb"),
  45690. name: "Nude",
  45691. image: {
  45692. source: "./media/characters/kiva/nude.svg",
  45693. extra: 1102/1055,
  45694. bottom: 60/1162
  45695. }
  45696. },
  45697. },
  45698. [
  45699. {
  45700. name: "Base Height",
  45701. height: math.unit(8 + 5/12, "feet"),
  45702. default: true
  45703. },
  45704. {
  45705. name: "Macro",
  45706. height: math.unit(100, "feet")
  45707. },
  45708. {
  45709. name: "Max",
  45710. height: math.unit(3280, "feet")
  45711. },
  45712. ]
  45713. ))
  45714. characterMakers.push(() => makeCharacter(
  45715. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45716. {
  45717. front: {
  45718. height: math.unit(6 + 8/12, "feet"),
  45719. weight: math.unit(250, "lb"),
  45720. name: "Front",
  45721. image: {
  45722. source: "./media/characters/ztragon/front.svg",
  45723. extra: 1825/1684,
  45724. bottom: 98/1923
  45725. }
  45726. },
  45727. },
  45728. [
  45729. {
  45730. name: "Normal",
  45731. height: math.unit(6 + 8/12, "feet"),
  45732. default: true
  45733. },
  45734. {
  45735. name: "Macro",
  45736. height: math.unit(80, "feet")
  45737. },
  45738. ]
  45739. ))
  45740. characterMakers.push(() => makeCharacter(
  45741. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45742. {
  45743. front: {
  45744. height: math.unit(10.4, "feet"),
  45745. weight: math.unit(2, "tons"),
  45746. name: "Front",
  45747. image: {
  45748. source: "./media/characters/yesenia/front.svg",
  45749. extra: 1479/1474,
  45750. bottom: 233/1712
  45751. }
  45752. },
  45753. },
  45754. [
  45755. {
  45756. name: "Normal",
  45757. height: math.unit(10.4, "feet"),
  45758. default: true
  45759. },
  45760. ]
  45761. ))
  45762. characterMakers.push(() => makeCharacter(
  45763. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45764. {
  45765. normal: {
  45766. height: math.unit(6 + 1/12, "feet"),
  45767. weight: math.unit(180, "lb"),
  45768. name: "Normal",
  45769. image: {
  45770. source: "./media/characters/leanne-lycheborne/normal.svg",
  45771. extra: 1748/1660,
  45772. bottom: 98/1846
  45773. }
  45774. },
  45775. were: {
  45776. height: math.unit(12, "feet"),
  45777. weight: math.unit(1600, "lb"),
  45778. name: "Were",
  45779. image: {
  45780. source: "./media/characters/leanne-lycheborne/were.svg",
  45781. extra: 1485/1432,
  45782. bottom: 66/1551
  45783. }
  45784. },
  45785. },
  45786. [
  45787. {
  45788. name: "Normal",
  45789. height: math.unit(6 + 1/12, "feet"),
  45790. default: true
  45791. },
  45792. ]
  45793. ))
  45794. characterMakers.push(() => makeCharacter(
  45795. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45796. {
  45797. side: {
  45798. height: math.unit(13, "feet"),
  45799. name: "Side",
  45800. image: {
  45801. source: "./media/characters/kira-tyler/side.svg",
  45802. extra: 693/393,
  45803. bottom: 58/751
  45804. }
  45805. },
  45806. },
  45807. [
  45808. {
  45809. name: "Normal",
  45810. height: math.unit(13, "feet"),
  45811. default: true
  45812. },
  45813. ]
  45814. ))
  45815. characterMakers.push(() => makeCharacter(
  45816. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45817. {
  45818. front: {
  45819. height: math.unit(10.3, "feet"),
  45820. weight: math.unit(150, "lb"),
  45821. name: "Front",
  45822. image: {
  45823. source: "./media/characters/blaze/front.svg",
  45824. extra: 1378/1286,
  45825. bottom: 172/1550
  45826. }
  45827. },
  45828. },
  45829. [
  45830. {
  45831. name: "Normal",
  45832. height: math.unit(10.3, "feet"),
  45833. default: true
  45834. },
  45835. ]
  45836. ))
  45837. characterMakers.push(() => makeCharacter(
  45838. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45839. {
  45840. side: {
  45841. height: math.unit(2, "meters"),
  45842. weight: math.unit(400, "kg"),
  45843. name: "Side",
  45844. image: {
  45845. source: "./media/characters/anu/side.svg",
  45846. extra: 506/394,
  45847. bottom: 18/524
  45848. }
  45849. },
  45850. },
  45851. [
  45852. {
  45853. name: "Humanoid",
  45854. height: math.unit(2, "meters")
  45855. },
  45856. {
  45857. name: "Normal",
  45858. height: math.unit(5, "meters"),
  45859. default: true
  45860. },
  45861. ]
  45862. ))
  45863. characterMakers.push(() => makeCharacter(
  45864. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45865. {
  45866. front: {
  45867. height: math.unit(5 + 5/12, "feet"),
  45868. weight: math.unit(170, "lb"),
  45869. name: "Front",
  45870. image: {
  45871. source: "./media/characters/synx-the-lynx/front.svg",
  45872. extra: 1893/1745,
  45873. bottom: 17/1910
  45874. }
  45875. },
  45876. side: {
  45877. height: math.unit(5 + 5/12, "feet"),
  45878. weight: math.unit(170, "lb"),
  45879. name: "Side",
  45880. image: {
  45881. source: "./media/characters/synx-the-lynx/side.svg",
  45882. extra: 1884/1740,
  45883. bottom: 39/1923
  45884. }
  45885. },
  45886. back: {
  45887. height: math.unit(5 + 5/12, "feet"),
  45888. weight: math.unit(170, "lb"),
  45889. name: "Back",
  45890. image: {
  45891. source: "./media/characters/synx-the-lynx/back.svg",
  45892. extra: 1903/1755,
  45893. bottom: 14/1917
  45894. }
  45895. },
  45896. },
  45897. [
  45898. {
  45899. name: "Normal",
  45900. height: math.unit(5 + 5/12, "feet"),
  45901. default: true
  45902. },
  45903. ]
  45904. ))
  45905. characterMakers.push(() => makeCharacter(
  45906. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45907. {
  45908. back: {
  45909. height: math.unit(15, "feet"),
  45910. name: "Back",
  45911. image: {
  45912. source: "./media/characters/nadezda-fex/back.svg",
  45913. extra: 1695/1481,
  45914. bottom: 25/1720
  45915. }
  45916. },
  45917. },
  45918. [
  45919. {
  45920. name: "Normal",
  45921. height: math.unit(15, "feet"),
  45922. default: true
  45923. },
  45924. {
  45925. name: "Macro",
  45926. height: math.unit(2.5, "miles")
  45927. },
  45928. {
  45929. name: "Goddess",
  45930. height: math.unit(2, "multiverses")
  45931. },
  45932. ]
  45933. ))
  45934. characterMakers.push(() => makeCharacter(
  45935. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45936. {
  45937. front: {
  45938. height: math.unit(216, "cm"),
  45939. name: "Front",
  45940. image: {
  45941. source: "./media/characters/lev/front.svg",
  45942. extra: 1728/1670,
  45943. bottom: 82/1810
  45944. }
  45945. },
  45946. back: {
  45947. height: math.unit(216, "cm"),
  45948. name: "Back",
  45949. image: {
  45950. source: "./media/characters/lev/back.svg",
  45951. extra: 1738/1675,
  45952. bottom: 24/1762
  45953. }
  45954. },
  45955. dressed: {
  45956. height: math.unit(216, "cm"),
  45957. name: "Dressed",
  45958. image: {
  45959. source: "./media/characters/lev/dressed.svg",
  45960. extra: 1397/1351,
  45961. bottom: 73/1470
  45962. }
  45963. },
  45964. head: {
  45965. height: math.unit(0.51, "meter"),
  45966. name: "Head",
  45967. image: {
  45968. source: "./media/characters/lev/head.svg"
  45969. }
  45970. },
  45971. },
  45972. [
  45973. {
  45974. name: "Normal",
  45975. height: math.unit(216, "cm"),
  45976. default: true
  45977. },
  45978. {
  45979. name: "Relatively Macro",
  45980. height: math.unit(80, "meters")
  45981. },
  45982. {
  45983. name: "Megamacro",
  45984. height: math.unit(21600, "meters")
  45985. },
  45986. {
  45987. name: "Megamacro+",
  45988. height: math.unit(64800, "meters")
  45989. },
  45990. ]
  45991. ))
  45992. characterMakers.push(() => makeCharacter(
  45993. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45994. {
  45995. front: {
  45996. height: math.unit(2, "meters"),
  45997. weight: math.unit(80, "kg"),
  45998. name: "Front",
  45999. image: {
  46000. source: "./media/characters/moka/front.svg",
  46001. extra: 1337/1255,
  46002. bottom: 58/1395
  46003. }
  46004. },
  46005. },
  46006. [
  46007. {
  46008. name: "Micro",
  46009. height: math.unit(15, "cm")
  46010. },
  46011. {
  46012. name: "Normal",
  46013. height: math.unit(2, "meters"),
  46014. default: true
  46015. },
  46016. {
  46017. name: "Macro",
  46018. height: math.unit(20, "meters"),
  46019. },
  46020. ]
  46021. ))
  46022. characterMakers.push(() => makeCharacter(
  46023. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46024. {
  46025. front: {
  46026. height: math.unit(9, "feet"),
  46027. weight: math.unit(240, "lb"),
  46028. name: "Front",
  46029. image: {
  46030. source: "./media/characters/kuzco/front.svg",
  46031. extra: 1593/1487,
  46032. bottom: 32/1625
  46033. }
  46034. },
  46035. side: {
  46036. height: math.unit(9, "feet"),
  46037. weight: math.unit(240, "lb"),
  46038. name: "Side",
  46039. image: {
  46040. source: "./media/characters/kuzco/side.svg",
  46041. extra: 1575/1485,
  46042. bottom: 30/1605
  46043. }
  46044. },
  46045. back: {
  46046. height: math.unit(9, "feet"),
  46047. weight: math.unit(240, "lb"),
  46048. name: "Back",
  46049. image: {
  46050. source: "./media/characters/kuzco/back.svg",
  46051. extra: 1603/1514,
  46052. bottom: 14/1617
  46053. }
  46054. },
  46055. },
  46056. [
  46057. {
  46058. name: "Normal",
  46059. height: math.unit(9, "feet"),
  46060. default: true
  46061. },
  46062. ]
  46063. ))
  46064. characterMakers.push(() => makeCharacter(
  46065. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46066. {
  46067. side: {
  46068. height: math.unit(2, "meters"),
  46069. weight: math.unit(300, "kg"),
  46070. name: "Side",
  46071. image: {
  46072. source: "./media/characters/ceruleus/side.svg",
  46073. extra: 1068/974,
  46074. bottom: 126/1194
  46075. }
  46076. },
  46077. },
  46078. [
  46079. {
  46080. name: "Normal",
  46081. height: math.unit(16, "meters"),
  46082. default: true
  46083. },
  46084. ]
  46085. ))
  46086. characterMakers.push(() => makeCharacter(
  46087. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46088. {
  46089. front: {
  46090. height: math.unit(9, "feet"),
  46091. weight: math.unit(500, "kg"),
  46092. name: "Front",
  46093. image: {
  46094. source: "./media/characters/acouya/front.svg",
  46095. extra: 1660/1473,
  46096. bottom: 28/1688
  46097. }
  46098. },
  46099. },
  46100. [
  46101. {
  46102. name: "Normal",
  46103. height: math.unit(9, "feet"),
  46104. default: true
  46105. },
  46106. ]
  46107. ))
  46108. characterMakers.push(() => makeCharacter(
  46109. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46110. {
  46111. front: {
  46112. height: math.unit(5 + 6/12, "feet"),
  46113. weight: math.unit(195, "lb"),
  46114. name: "Front",
  46115. image: {
  46116. source: "./media/characters/vant/front.svg",
  46117. extra: 1396/1320,
  46118. bottom: 20/1416
  46119. }
  46120. },
  46121. back: {
  46122. height: math.unit(5 + 6/12, "feet"),
  46123. weight: math.unit(195, "lb"),
  46124. name: "Back",
  46125. image: {
  46126. source: "./media/characters/vant/back.svg",
  46127. extra: 1396/1320,
  46128. bottom: 20/1416
  46129. }
  46130. },
  46131. maw: {
  46132. height: math.unit(0.75, "feet"),
  46133. name: "Maw",
  46134. image: {
  46135. source: "./media/characters/vant/maw.svg"
  46136. }
  46137. },
  46138. paw: {
  46139. height: math.unit(1.07, "feet"),
  46140. name: "Paw",
  46141. image: {
  46142. source: "./media/characters/vant/paw.svg"
  46143. }
  46144. },
  46145. },
  46146. [
  46147. {
  46148. name: "Micro",
  46149. height: math.unit(0.25, "inches")
  46150. },
  46151. {
  46152. name: "Normal",
  46153. height: math.unit(5 + 6/12, "feet"),
  46154. default: true
  46155. },
  46156. {
  46157. name: "Macro",
  46158. height: math.unit(75, "feet")
  46159. },
  46160. ]
  46161. ))
  46162. characterMakers.push(() => makeCharacter(
  46163. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46164. {
  46165. front: {
  46166. height: math.unit(30, "meters"),
  46167. weight: math.unit(363, "tons"),
  46168. name: "Front",
  46169. image: {
  46170. source: "./media/characters/ahra/front.svg",
  46171. extra: 1914/1814,
  46172. bottom: 46/1960
  46173. }
  46174. },
  46175. },
  46176. [
  46177. {
  46178. name: "Macro",
  46179. height: math.unit(30, "meters"),
  46180. default: true
  46181. },
  46182. ]
  46183. ))
  46184. characterMakers.push(() => makeCharacter(
  46185. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46186. {
  46187. undressed: {
  46188. height: math.unit(2, "m"),
  46189. weight: math.unit(250, "kg"),
  46190. name: "Undressed",
  46191. image: {
  46192. source: "./media/characters/coriander/undressed.svg",
  46193. extra: 1757/1606,
  46194. bottom: 107/1864
  46195. }
  46196. },
  46197. dressed: {
  46198. height: math.unit(2, "m"),
  46199. weight: math.unit(250, "kg"),
  46200. name: "Dressed",
  46201. image: {
  46202. source: "./media/characters/coriander/dressed.svg",
  46203. extra: 1757/1606,
  46204. bottom: 107/1864
  46205. }
  46206. },
  46207. },
  46208. [
  46209. {
  46210. name: "Normal",
  46211. height: math.unit(4, "meters"),
  46212. default: true
  46213. },
  46214. {
  46215. name: "XL",
  46216. height: math.unit(6, "meters")
  46217. },
  46218. {
  46219. name: "XXL",
  46220. height: math.unit(8, "meters")
  46221. },
  46222. ]
  46223. ))
  46224. characterMakers.push(() => makeCharacter(
  46225. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46226. {
  46227. front: {
  46228. height: math.unit(6, "feet"),
  46229. name: "Front",
  46230. image: {
  46231. source: "./media/characters/syrinx/front.svg",
  46232. extra: 1557/1259,
  46233. bottom: 171/1728
  46234. }
  46235. },
  46236. },
  46237. [
  46238. {
  46239. name: "Normal",
  46240. height: math.unit(6 + 3/12, "feet"),
  46241. default: true
  46242. },
  46243. ]
  46244. ))
  46245. characterMakers.push(() => makeCharacter(
  46246. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46247. {
  46248. front: {
  46249. height: math.unit(11 + 6/12, "feet"),
  46250. weight: math.unit(1.5, "tons"),
  46251. name: "Front",
  46252. image: {
  46253. source: "./media/characters/bor/front.svg",
  46254. extra: 1189/1109,
  46255. bottom: 170/1359
  46256. }
  46257. },
  46258. },
  46259. [
  46260. {
  46261. name: "Normal",
  46262. height: math.unit(11 + 6/12, "feet"),
  46263. default: true
  46264. },
  46265. {
  46266. name: "Macro",
  46267. height: math.unit(32 + 9/12, "feet")
  46268. },
  46269. ]
  46270. ))
  46271. characterMakers.push(() => makeCharacter(
  46272. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46273. {
  46274. anthro: {
  46275. height: math.unit(9, "feet"),
  46276. weight: math.unit(2076, "lb"),
  46277. name: "Anthro",
  46278. image: {
  46279. source: "./media/characters/abacus/anthro.svg",
  46280. extra: 1540/1494,
  46281. bottom: 233/1773
  46282. }
  46283. },
  46284. pigeon: {
  46285. height: math.unit(1, "feet"),
  46286. name: "Pigeon",
  46287. image: {
  46288. source: "./media/characters/abacus/pigeon.svg",
  46289. extra: 528/525,
  46290. bottom: 46/574
  46291. }
  46292. },
  46293. },
  46294. [
  46295. {
  46296. name: "Normal",
  46297. height: math.unit(9, "feet"),
  46298. default: true
  46299. },
  46300. ]
  46301. ))
  46302. characterMakers.push(() => makeCharacter(
  46303. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46304. {
  46305. side: {
  46306. height: math.unit(6, "feet"),
  46307. name: "Side",
  46308. image: {
  46309. source: "./media/characters/delkhan/side.svg",
  46310. extra: 1884/1786,
  46311. bottom: 308/2192
  46312. }
  46313. },
  46314. head: {
  46315. height: math.unit(3.38, "feet"),
  46316. name: "Head",
  46317. image: {
  46318. source: "./media/characters/delkhan/head.svg"
  46319. }
  46320. },
  46321. },
  46322. [
  46323. {
  46324. name: "Normal",
  46325. height: math.unit(72, "feet"),
  46326. default: true
  46327. },
  46328. {
  46329. name: "Giant",
  46330. height: math.unit(172, "feet")
  46331. },
  46332. ]
  46333. ))
  46334. characterMakers.push(() => makeCharacter(
  46335. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46336. {
  46337. standing: {
  46338. height: math.unit(6, "feet"),
  46339. name: "Standing",
  46340. image: {
  46341. source: "./media/characters/euchidat/standing.svg",
  46342. extra: 1612/1553,
  46343. bottom: 116/1728
  46344. }
  46345. },
  46346. leaning: {
  46347. height: math.unit(6, "feet"),
  46348. name: "Leaning",
  46349. image: {
  46350. source: "./media/characters/euchidat/leaning.svg",
  46351. extra: 1719/1674,
  46352. bottom: 27/1746
  46353. }
  46354. },
  46355. },
  46356. [
  46357. {
  46358. name: "Normal",
  46359. height: math.unit(175, "feet"),
  46360. default: true
  46361. },
  46362. {
  46363. name: "Megamacro",
  46364. height: math.unit(190, "miles")
  46365. },
  46366. {
  46367. name: "Gigamacro",
  46368. height: math.unit(190000, "miles")
  46369. },
  46370. ]
  46371. ))
  46372. characterMakers.push(() => makeCharacter(
  46373. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46374. {
  46375. front: {
  46376. height: math.unit(6, "feet"),
  46377. weight: math.unit(150, "lb"),
  46378. name: "Front",
  46379. image: {
  46380. source: "./media/characters/rebecca-stack/front.svg",
  46381. extra: 1256/1201,
  46382. bottom: 18/1274
  46383. }
  46384. },
  46385. },
  46386. [
  46387. {
  46388. name: "Normal",
  46389. height: math.unit(5 + 8/12, "feet"),
  46390. default: true
  46391. },
  46392. {
  46393. name: "Demolitionist",
  46394. height: math.unit(200, "feet")
  46395. },
  46396. {
  46397. name: "Out of Control",
  46398. height: math.unit(2, "miles")
  46399. },
  46400. {
  46401. name: "Giga",
  46402. height: math.unit(7200, "miles")
  46403. },
  46404. ]
  46405. ))
  46406. characterMakers.push(() => makeCharacter(
  46407. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46408. {
  46409. front: {
  46410. height: math.unit(6, "feet"),
  46411. weight: math.unit(150, "lb"),
  46412. name: "Front",
  46413. image: {
  46414. source: "./media/characters/jenny-cartwright/front.svg",
  46415. extra: 1384/1376,
  46416. bottom: 58/1442
  46417. }
  46418. },
  46419. },
  46420. [
  46421. {
  46422. name: "Normal",
  46423. height: math.unit(6 + 7/12, "feet"),
  46424. default: true
  46425. },
  46426. {
  46427. name: "Librarian",
  46428. height: math.unit(55, "feet")
  46429. },
  46430. {
  46431. name: "Sightseer",
  46432. height: math.unit(50, "miles")
  46433. },
  46434. {
  46435. name: "Giga",
  46436. height: math.unit(30000, "miles")
  46437. },
  46438. ]
  46439. ))
  46440. characterMakers.push(() => makeCharacter(
  46441. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46442. {
  46443. nude: {
  46444. height: math.unit(8, "feet"),
  46445. weight: math.unit(225, "lb"),
  46446. name: "Nude",
  46447. image: {
  46448. source: "./media/characters/marvy/nude.svg",
  46449. extra: 1900/1683,
  46450. bottom: 89/1989
  46451. }
  46452. },
  46453. dressed: {
  46454. height: math.unit(8, "feet"),
  46455. weight: math.unit(225, "lb"),
  46456. name: "Dressed",
  46457. image: {
  46458. source: "./media/characters/marvy/dressed.svg",
  46459. extra: 1900/1683,
  46460. bottom: 89/1989
  46461. }
  46462. },
  46463. head: {
  46464. height: math.unit(2.85, "feet"),
  46465. name: "Head",
  46466. image: {
  46467. source: "./media/characters/marvy/head.svg"
  46468. }
  46469. },
  46470. },
  46471. [
  46472. {
  46473. name: "Normal",
  46474. height: math.unit(8, "feet"),
  46475. default: true
  46476. },
  46477. ]
  46478. ))
  46479. characterMakers.push(() => makeCharacter(
  46480. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46481. {
  46482. front: {
  46483. height: math.unit(8, "feet"),
  46484. weight: math.unit(250, "lb"),
  46485. name: "Front",
  46486. image: {
  46487. source: "./media/characters/leah/front.svg",
  46488. extra: 1257/1149,
  46489. bottom: 109/1366
  46490. }
  46491. },
  46492. },
  46493. [
  46494. {
  46495. name: "Normal",
  46496. height: math.unit(8, "feet"),
  46497. default: true
  46498. },
  46499. {
  46500. name: "Minimacro",
  46501. height: math.unit(40, "feet")
  46502. },
  46503. {
  46504. name: "Macro",
  46505. height: math.unit(124, "feet")
  46506. },
  46507. {
  46508. name: "Megamacro",
  46509. height: math.unit(850, "feet")
  46510. },
  46511. ]
  46512. ))
  46513. characterMakers.push(() => makeCharacter(
  46514. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46515. {
  46516. side: {
  46517. height: math.unit(13 + 6/12, "feet"),
  46518. weight: math.unit(3200, "lb"),
  46519. name: "Side",
  46520. image: {
  46521. source: "./media/characters/alvir/side.svg",
  46522. extra: 896/589,
  46523. bottom: 26/922
  46524. }
  46525. },
  46526. },
  46527. [
  46528. {
  46529. name: "Normal",
  46530. height: math.unit(13 + 6/12, "feet"),
  46531. default: true
  46532. },
  46533. ]
  46534. ))
  46535. characterMakers.push(() => makeCharacter(
  46536. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46537. {
  46538. front: {
  46539. height: math.unit(5 + 4/12, "feet"),
  46540. weight: math.unit(236, "lb"),
  46541. name: "Front",
  46542. image: {
  46543. source: "./media/characters/zaina-khalil/front.svg",
  46544. extra: 1533/1485,
  46545. bottom: 94/1627
  46546. }
  46547. },
  46548. side: {
  46549. height: math.unit(5 + 4/12, "feet"),
  46550. weight: math.unit(236, "lb"),
  46551. name: "Side",
  46552. image: {
  46553. source: "./media/characters/zaina-khalil/side.svg",
  46554. extra: 1537/1498,
  46555. bottom: 66/1603
  46556. }
  46557. },
  46558. back: {
  46559. height: math.unit(5 + 4/12, "feet"),
  46560. weight: math.unit(236, "lb"),
  46561. name: "Back",
  46562. image: {
  46563. source: "./media/characters/zaina-khalil/back.svg",
  46564. extra: 1546/1494,
  46565. bottom: 89/1635
  46566. }
  46567. },
  46568. },
  46569. [
  46570. {
  46571. name: "Normal",
  46572. height: math.unit(5 + 4/12, "feet"),
  46573. default: true
  46574. },
  46575. ]
  46576. ))
  46577. characterMakers.push(() => makeCharacter(
  46578. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46579. {
  46580. side: {
  46581. height: math.unit(12, "feet"),
  46582. weight: math.unit(4000, "lb"),
  46583. name: "Side",
  46584. image: {
  46585. source: "./media/characters/terry/side.svg",
  46586. extra: 1518/1439,
  46587. bottom: 149/1667
  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: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46601. {
  46602. front: {
  46603. height: math.unit(12, "feet"),
  46604. weight: math.unit(1500, "lb"),
  46605. name: "Front",
  46606. image: {
  46607. source: "./media/characters/kahea/front.svg",
  46608. extra: 1722/1617,
  46609. bottom: 179/1901
  46610. }
  46611. },
  46612. },
  46613. [
  46614. {
  46615. name: "Normal",
  46616. height: math.unit(12, "feet"),
  46617. default: true
  46618. },
  46619. ]
  46620. ))
  46621. characterMakers.push(() => makeCharacter(
  46622. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46623. {
  46624. demonFront: {
  46625. height: math.unit(36, "feet"),
  46626. name: "Front",
  46627. image: {
  46628. source: "./media/characters/alex-xuria/demon-front.svg",
  46629. extra: 1705/1673,
  46630. bottom: 198/1903
  46631. },
  46632. form: "demon",
  46633. default: true
  46634. },
  46635. demonBack: {
  46636. height: math.unit(36, "feet"),
  46637. name: "Back",
  46638. image: {
  46639. source: "./media/characters/alex-xuria/demon-back.svg",
  46640. extra: 1725/1693,
  46641. bottom: 70/1795
  46642. },
  46643. form: "demon"
  46644. },
  46645. demonHead: {
  46646. height: math.unit(2.14, "meters"),
  46647. name: "Head",
  46648. image: {
  46649. source: "./media/characters/alex-xuria/demon-head.svg"
  46650. },
  46651. form: "demon"
  46652. },
  46653. demonHand: {
  46654. height: math.unit(1.61, "meters"),
  46655. name: "Hand",
  46656. image: {
  46657. source: "./media/characters/alex-xuria/demon-hand.svg"
  46658. },
  46659. form: "demon"
  46660. },
  46661. demonPaw: {
  46662. height: math.unit(1.35, "meters"),
  46663. name: "Paw",
  46664. image: {
  46665. source: "./media/characters/alex-xuria/demon-paw.svg"
  46666. },
  46667. form: "demon"
  46668. },
  46669. demonFoot: {
  46670. height: math.unit(2.2, "meters"),
  46671. name: "Foot",
  46672. image: {
  46673. source: "./media/characters/alex-xuria/demon-foot.svg"
  46674. },
  46675. form: "demon"
  46676. },
  46677. demonCock: {
  46678. height: math.unit(1.74, "meters"),
  46679. name: "Cock",
  46680. image: {
  46681. source: "./media/characters/alex-xuria/demon-cock.svg"
  46682. },
  46683. form: "demon"
  46684. },
  46685. demonTailClosed: {
  46686. height: math.unit(1.47, "meters"),
  46687. name: "Tail (Closed)",
  46688. image: {
  46689. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46690. },
  46691. form: "demon"
  46692. },
  46693. demonTailOpen: {
  46694. height: math.unit(2.85, "meters"),
  46695. name: "Tail (Open)",
  46696. image: {
  46697. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46698. },
  46699. form: "demon"
  46700. },
  46701. incubusFront: {
  46702. height: math.unit(12, "feet"),
  46703. name: "Front",
  46704. image: {
  46705. source: "./media/characters/alex-xuria/incubus-front.svg",
  46706. extra: 1754/1677,
  46707. bottom: 125/1879
  46708. },
  46709. form: "incubus",
  46710. default: true
  46711. },
  46712. incubusBack: {
  46713. height: math.unit(12, "feet"),
  46714. name: "Back",
  46715. image: {
  46716. source: "./media/characters/alex-xuria/incubus-back.svg",
  46717. extra: 1702/1647,
  46718. bottom: 30/1732
  46719. },
  46720. form: "incubus"
  46721. },
  46722. incubusHead: {
  46723. height: math.unit(3.45, "feet"),
  46724. name: "Head",
  46725. image: {
  46726. source: "./media/characters/alex-xuria/incubus-head.svg"
  46727. },
  46728. form: "incubus"
  46729. },
  46730. rabbitFront: {
  46731. height: math.unit(6, "feet"),
  46732. name: "Front",
  46733. image: {
  46734. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46735. extra: 1369/1349,
  46736. bottom: 45/1414
  46737. },
  46738. form: "rabbit",
  46739. default: true
  46740. },
  46741. rabbitSide: {
  46742. height: math.unit(6, "feet"),
  46743. name: "Side",
  46744. image: {
  46745. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46746. extra: 1370/1356,
  46747. bottom: 37/1407
  46748. },
  46749. form: "rabbit"
  46750. },
  46751. rabbitBack: {
  46752. height: math.unit(6, "feet"),
  46753. name: "Back",
  46754. image: {
  46755. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46756. extra: 1375/1358,
  46757. bottom: 43/1418
  46758. },
  46759. form: "rabbit"
  46760. },
  46761. },
  46762. [
  46763. {
  46764. name: "Normal",
  46765. height: math.unit(6, "feet"),
  46766. default: true,
  46767. form: "rabbit"
  46768. },
  46769. {
  46770. name: "Incubus",
  46771. height: math.unit(12, "feet"),
  46772. default: true,
  46773. form: "incubus"
  46774. },
  46775. {
  46776. name: "Demon",
  46777. height: math.unit(36, "feet"),
  46778. default: true,
  46779. form: "demon"
  46780. }
  46781. ],
  46782. {
  46783. "demon": {
  46784. name: "Demon",
  46785. default: true
  46786. },
  46787. "incubus": {
  46788. name: "Incubus",
  46789. },
  46790. "rabbit": {
  46791. name: "Rabbit"
  46792. }
  46793. }
  46794. ))
  46795. characterMakers.push(() => makeCharacter(
  46796. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46797. {
  46798. front: {
  46799. height: math.unit(7 + 5/12, "feet"),
  46800. weight: math.unit(510, "lb"),
  46801. name: "Front",
  46802. image: {
  46803. source: "./media/characters/syrup/front.svg",
  46804. extra: 932/916,
  46805. bottom: 26/958
  46806. }
  46807. },
  46808. },
  46809. [
  46810. {
  46811. name: "Normal",
  46812. height: math.unit(7 + 5/12, "feet"),
  46813. default: true
  46814. },
  46815. {
  46816. name: "Big",
  46817. height: math.unit(50, "feet")
  46818. },
  46819. {
  46820. name: "Macro",
  46821. height: math.unit(300, "feet")
  46822. },
  46823. {
  46824. name: "Megamacro",
  46825. height: math.unit(1, "mile")
  46826. },
  46827. ]
  46828. ))
  46829. characterMakers.push(() => makeCharacter(
  46830. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46831. {
  46832. front: {
  46833. height: math.unit(6 + 9/12, "feet"),
  46834. name: "Front",
  46835. image: {
  46836. source: "./media/characters/zeimne/front.svg",
  46837. extra: 1969/1806,
  46838. bottom: 53/2022
  46839. }
  46840. },
  46841. },
  46842. [
  46843. {
  46844. name: "Normal",
  46845. height: math.unit(6 + 9/12, "feet"),
  46846. default: true
  46847. },
  46848. {
  46849. name: "Giant",
  46850. height: math.unit(550, "feet")
  46851. },
  46852. {
  46853. name: "Mega",
  46854. height: math.unit(3, "miles")
  46855. },
  46856. {
  46857. name: "Giga",
  46858. height: math.unit(250, "miles")
  46859. },
  46860. {
  46861. name: "Tera",
  46862. height: math.unit(1, "AU")
  46863. },
  46864. ]
  46865. ))
  46866. characterMakers.push(() => makeCharacter(
  46867. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46868. {
  46869. front: {
  46870. height: math.unit(5 + 2/12, "feet"),
  46871. name: "Front",
  46872. image: {
  46873. source: "./media/characters/grar/front.svg",
  46874. extra: 1331/1119,
  46875. bottom: 60/1391
  46876. }
  46877. },
  46878. back: {
  46879. height: math.unit(5 + 2/12, "feet"),
  46880. name: "Back",
  46881. image: {
  46882. source: "./media/characters/grar/back.svg",
  46883. extra: 1385/1169,
  46884. bottom: 23/1408
  46885. }
  46886. },
  46887. },
  46888. [
  46889. {
  46890. name: "Normal",
  46891. height: math.unit(5 + 2/12, "feet"),
  46892. default: true
  46893. },
  46894. ]
  46895. ))
  46896. characterMakers.push(() => makeCharacter(
  46897. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46898. {
  46899. front: {
  46900. height: math.unit(13 + 7/12, "feet"),
  46901. weight: math.unit(2200, "lb"),
  46902. name: "Front",
  46903. image: {
  46904. source: "./media/characters/endraya/front.svg",
  46905. extra: 1289/1215,
  46906. bottom: 50/1339
  46907. }
  46908. },
  46909. nude: {
  46910. height: math.unit(13 + 7/12, "feet"),
  46911. weight: math.unit(2200, "lb"),
  46912. name: "Nude",
  46913. image: {
  46914. source: "./media/characters/endraya/nude.svg",
  46915. extra: 1247/1171,
  46916. bottom: 40/1287
  46917. }
  46918. },
  46919. head: {
  46920. height: math.unit(2.6, "feet"),
  46921. name: "Head",
  46922. image: {
  46923. source: "./media/characters/endraya/head.svg"
  46924. }
  46925. },
  46926. slit: {
  46927. height: math.unit(3.4, "feet"),
  46928. name: "Slit",
  46929. image: {
  46930. source: "./media/characters/endraya/slit.svg"
  46931. }
  46932. },
  46933. },
  46934. [
  46935. {
  46936. name: "Normal",
  46937. height: math.unit(13 + 7/12, "feet"),
  46938. default: true
  46939. },
  46940. {
  46941. name: "Macro",
  46942. height: math.unit(200, "feet")
  46943. },
  46944. ]
  46945. ))
  46946. characterMakers.push(() => makeCharacter(
  46947. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46948. {
  46949. front: {
  46950. height: math.unit(1.81, "meters"),
  46951. weight: math.unit(69, "kg"),
  46952. name: "Front",
  46953. image: {
  46954. source: "./media/characters/rodryana/front.svg",
  46955. extra: 2002/1921,
  46956. bottom: 53/2055
  46957. }
  46958. },
  46959. back: {
  46960. height: math.unit(1.81, "meters"),
  46961. weight: math.unit(69, "kg"),
  46962. name: "Back",
  46963. image: {
  46964. source: "./media/characters/rodryana/back.svg",
  46965. extra: 1993/1926,
  46966. bottom: 48/2041
  46967. }
  46968. },
  46969. maw: {
  46970. height: math.unit(0.19769417475, "meters"),
  46971. name: "Maw",
  46972. image: {
  46973. source: "./media/characters/rodryana/maw.svg"
  46974. }
  46975. },
  46976. slit: {
  46977. height: math.unit(0.31631067961, "meters"),
  46978. name: "Slit",
  46979. image: {
  46980. source: "./media/characters/rodryana/slit.svg"
  46981. }
  46982. },
  46983. },
  46984. [
  46985. {
  46986. name: "Normal",
  46987. height: math.unit(1.81, "meters")
  46988. },
  46989. {
  46990. name: "Mini Macro",
  46991. height: math.unit(181, "meters")
  46992. },
  46993. {
  46994. name: "Macro",
  46995. height: math.unit(452, "meters"),
  46996. default: true
  46997. },
  46998. {
  46999. name: "Mega Macro",
  47000. height: math.unit(1.375, "km")
  47001. },
  47002. {
  47003. name: "Giga Macro",
  47004. height: math.unit(13.575, "km")
  47005. },
  47006. ]
  47007. ))
  47008. characterMakers.push(() => makeCharacter(
  47009. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47010. {
  47011. front: {
  47012. height: math.unit(6, "feet"),
  47013. weight: math.unit(1000, "lb"),
  47014. name: "Front",
  47015. image: {
  47016. source: "./media/characters/asaya/front.svg",
  47017. extra: 1460/1200,
  47018. bottom: 71/1531
  47019. }
  47020. },
  47021. },
  47022. [
  47023. {
  47024. name: "Normal",
  47025. height: math.unit(8, "km"),
  47026. default: true
  47027. },
  47028. ]
  47029. ))
  47030. characterMakers.push(() => makeCharacter(
  47031. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47032. {
  47033. front: {
  47034. height: math.unit(3.5, "meters"),
  47035. name: "Front",
  47036. image: {
  47037. source: "./media/characters/sarzu-and-israz/front.svg",
  47038. extra: 1570/1558,
  47039. bottom: 150/1720
  47040. },
  47041. },
  47042. back: {
  47043. height: math.unit(3.5, "meters"),
  47044. name: "Back",
  47045. image: {
  47046. source: "./media/characters/sarzu-and-israz/back.svg",
  47047. extra: 1523/1509,
  47048. bottom: 132/1655
  47049. },
  47050. },
  47051. frontFemale: {
  47052. height: math.unit(3.5, "meters"),
  47053. name: "Front (Female)",
  47054. image: {
  47055. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47056. extra: 1570/1558,
  47057. bottom: 150/1720
  47058. },
  47059. },
  47060. frontHerm: {
  47061. height: math.unit(3.5, "meters"),
  47062. name: "Front (Herm)",
  47063. image: {
  47064. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47065. extra: 1570/1558,
  47066. bottom: 150/1720
  47067. },
  47068. },
  47069. },
  47070. [
  47071. {
  47072. name: "Normal",
  47073. height: math.unit(3.5, "meters"),
  47074. default: true,
  47075. },
  47076. {
  47077. name: "Macro",
  47078. height: math.unit(65.5, "meters"),
  47079. },
  47080. ],
  47081. ))
  47082. characterMakers.push(() => makeCharacter(
  47083. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47084. {
  47085. front: {
  47086. height: math.unit(6, "feet"),
  47087. weight: math.unit(250, "lb"),
  47088. name: "Front",
  47089. image: {
  47090. source: "./media/characters/zenimma/front.svg",
  47091. extra: 1346/1320,
  47092. bottom: 58/1404
  47093. }
  47094. },
  47095. back: {
  47096. height: math.unit(6, "feet"),
  47097. weight: math.unit(250, "lb"),
  47098. name: "Back",
  47099. image: {
  47100. source: "./media/characters/zenimma/back.svg",
  47101. extra: 1324/1308,
  47102. bottom: 44/1368
  47103. }
  47104. },
  47105. dick: {
  47106. height: math.unit(1.44, "feet"),
  47107. name: "Dick",
  47108. image: {
  47109. source: "./media/characters/zenimma/dick.svg"
  47110. }
  47111. },
  47112. },
  47113. [
  47114. {
  47115. name: "Canon Height",
  47116. height: math.unit(66, "miles"),
  47117. default: true
  47118. },
  47119. ]
  47120. ))
  47121. characterMakers.push(() => makeCharacter(
  47122. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47123. {
  47124. nude: {
  47125. height: math.unit(6, "feet"),
  47126. weight: math.unit(150, "lb"),
  47127. name: "Nude",
  47128. image: {
  47129. source: "./media/characters/shavon/nude.svg",
  47130. extra: 1242/1096,
  47131. bottom: 98/1340
  47132. }
  47133. },
  47134. dressed: {
  47135. height: math.unit(6, "feet"),
  47136. weight: math.unit(150, "lb"),
  47137. name: "Dressed",
  47138. image: {
  47139. source: "./media/characters/shavon/dressed.svg",
  47140. extra: 1242/1096,
  47141. bottom: 98/1340
  47142. }
  47143. },
  47144. },
  47145. [
  47146. {
  47147. name: "Macro",
  47148. height: math.unit(255, "feet"),
  47149. default: true
  47150. },
  47151. ]
  47152. ))
  47153. characterMakers.push(() => makeCharacter(
  47154. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47155. {
  47156. front: {
  47157. height: math.unit(6, "feet"),
  47158. name: "Front",
  47159. image: {
  47160. source: "./media/characters/steph/front.svg",
  47161. extra: 1430/1330,
  47162. bottom: 54/1484
  47163. }
  47164. },
  47165. },
  47166. [
  47167. {
  47168. name: "Normal",
  47169. height: math.unit(6, "feet"),
  47170. default: true
  47171. },
  47172. ]
  47173. ))
  47174. characterMakers.push(() => makeCharacter(
  47175. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47176. {
  47177. front: {
  47178. height: math.unit(9, "feet"),
  47179. weight: math.unit(400, "lb"),
  47180. name: "Front",
  47181. image: {
  47182. source: "./media/characters/kil'aman/front.svg",
  47183. extra: 1210/1159,
  47184. bottom: 109/1319
  47185. }
  47186. },
  47187. head: {
  47188. height: math.unit(2.14, "feet"),
  47189. name: "Head",
  47190. image: {
  47191. source: "./media/characters/kil'aman/head.svg"
  47192. }
  47193. },
  47194. maw: {
  47195. height: math.unit(1.21, "feet"),
  47196. name: "Maw",
  47197. image: {
  47198. source: "./media/characters/kil'aman/maw.svg"
  47199. }
  47200. },
  47201. foot: {
  47202. height: math.unit(1.7, "feet"),
  47203. name: "Foot",
  47204. image: {
  47205. source: "./media/characters/kil'aman/foot.svg"
  47206. }
  47207. },
  47208. dick: {
  47209. height: math.unit(2.1, "feet"),
  47210. name: "Dick",
  47211. image: {
  47212. source: "./media/characters/kil'aman/dick.svg"
  47213. }
  47214. },
  47215. },
  47216. [
  47217. {
  47218. name: "Normal",
  47219. height: math.unit(9, "feet")
  47220. },
  47221. {
  47222. name: "Canon Height",
  47223. height: math.unit(10, "miles"),
  47224. default: true
  47225. },
  47226. {
  47227. name: "Maximum",
  47228. height: math.unit(6e9, "miles")
  47229. },
  47230. ]
  47231. ))
  47232. characterMakers.push(() => makeCharacter(
  47233. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47234. {
  47235. front: {
  47236. height: math.unit(90, "feet"),
  47237. weight: math.unit(675000, "lb"),
  47238. name: "Front",
  47239. image: {
  47240. source: "./media/characters/qadan/front.svg",
  47241. extra: 1012/1004,
  47242. bottom: 78/1090
  47243. }
  47244. },
  47245. back: {
  47246. height: math.unit(90, "feet"),
  47247. weight: math.unit(675000, "lb"),
  47248. name: "Back",
  47249. image: {
  47250. source: "./media/characters/qadan/back.svg",
  47251. extra: 1042/1031,
  47252. bottom: 55/1097
  47253. }
  47254. },
  47255. armored: {
  47256. height: math.unit(90, "feet"),
  47257. weight: math.unit(675000, "lb"),
  47258. name: "Armored",
  47259. image: {
  47260. source: "./media/characters/qadan/armored.svg",
  47261. extra: 1047/1037,
  47262. bottom: 48/1095
  47263. }
  47264. },
  47265. },
  47266. [
  47267. {
  47268. name: "Normal",
  47269. height: math.unit(90, "feet"),
  47270. default: true
  47271. },
  47272. ]
  47273. ))
  47274. characterMakers.push(() => makeCharacter(
  47275. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47276. {
  47277. front: {
  47278. height: math.unit(6, "feet"),
  47279. weight: math.unit(225, "lb"),
  47280. name: "Front",
  47281. image: {
  47282. source: "./media/characters/brooke/front.svg",
  47283. extra: 1050/1010,
  47284. bottom: 66/1116
  47285. }
  47286. },
  47287. back: {
  47288. height: math.unit(6, "feet"),
  47289. weight: math.unit(225, "lb"),
  47290. name: "Back",
  47291. image: {
  47292. source: "./media/characters/brooke/back.svg",
  47293. extra: 1053/1013,
  47294. bottom: 41/1094
  47295. }
  47296. },
  47297. dressed: {
  47298. height: math.unit(6, "feet"),
  47299. weight: math.unit(225, "lb"),
  47300. name: "Dressed",
  47301. image: {
  47302. source: "./media/characters/brooke/dressed.svg",
  47303. extra: 1050/1010,
  47304. bottom: 66/1116
  47305. }
  47306. },
  47307. },
  47308. [
  47309. {
  47310. name: "Canon Height",
  47311. height: math.unit(500, "miles"),
  47312. default: true
  47313. },
  47314. ]
  47315. ))
  47316. characterMakers.push(() => makeCharacter(
  47317. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47318. {
  47319. front: {
  47320. height: math.unit(6 + 2/12, "feet"),
  47321. weight: math.unit(210, "lb"),
  47322. name: "Front",
  47323. image: {
  47324. source: "./media/characters/wubs/front.svg",
  47325. extra: 1345/1325,
  47326. bottom: 70/1415
  47327. }
  47328. },
  47329. back: {
  47330. height: math.unit(6 + 2/12, "feet"),
  47331. weight: math.unit(210, "lb"),
  47332. name: "Back",
  47333. image: {
  47334. source: "./media/characters/wubs/back.svg",
  47335. extra: 1296/1275,
  47336. bottom: 58/1354
  47337. }
  47338. },
  47339. },
  47340. [
  47341. {
  47342. name: "Normal",
  47343. height: math.unit(6 + 2/12, "feet"),
  47344. default: true
  47345. },
  47346. {
  47347. name: "Macro",
  47348. height: math.unit(1000, "feet")
  47349. },
  47350. {
  47351. name: "Megamacro",
  47352. height: math.unit(1, "mile")
  47353. },
  47354. ]
  47355. ))
  47356. characterMakers.push(() => makeCharacter(
  47357. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47358. {
  47359. front: {
  47360. height: math.unit(4, "feet"),
  47361. weight: math.unit(120, "lb"),
  47362. name: "Front",
  47363. image: {
  47364. source: "./media/characters/blue/front.svg",
  47365. extra: 1636/1525,
  47366. bottom: 43/1679
  47367. }
  47368. },
  47369. back: {
  47370. height: math.unit(4, "feet"),
  47371. weight: math.unit(120, "lb"),
  47372. name: "Back",
  47373. image: {
  47374. source: "./media/characters/blue/back.svg",
  47375. extra: 1660/1560,
  47376. bottom: 57/1717
  47377. }
  47378. },
  47379. paws: {
  47380. height: math.unit(0.826, "feet"),
  47381. name: "Paws",
  47382. image: {
  47383. source: "./media/characters/blue/paws.svg"
  47384. }
  47385. },
  47386. },
  47387. [
  47388. {
  47389. name: "Micro",
  47390. height: math.unit(3, "inches")
  47391. },
  47392. {
  47393. name: "Normal",
  47394. height: math.unit(4, "feet"),
  47395. default: true
  47396. },
  47397. {
  47398. name: "Femenine Form",
  47399. height: math.unit(14, "feet")
  47400. },
  47401. {
  47402. name: "Werebat Form",
  47403. height: math.unit(18, "feet")
  47404. },
  47405. ]
  47406. ))
  47407. characterMakers.push(() => makeCharacter(
  47408. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47409. {
  47410. female: {
  47411. height: math.unit(7 + 4/12, "feet"),
  47412. weight: math.unit(243, "lb"),
  47413. name: "Female",
  47414. image: {
  47415. source: "./media/characters/kaya/female.svg",
  47416. extra: 975/898,
  47417. bottom: 34/1009
  47418. }
  47419. },
  47420. herm: {
  47421. height: math.unit(7 + 4/12, "feet"),
  47422. weight: math.unit(243, "lb"),
  47423. name: "Herm",
  47424. image: {
  47425. source: "./media/characters/kaya/herm.svg",
  47426. extra: 975/898,
  47427. bottom: 34/1009
  47428. }
  47429. },
  47430. },
  47431. [
  47432. {
  47433. name: "Normal",
  47434. height: math.unit(7 + 4/12, "feet"),
  47435. default: true
  47436. },
  47437. ]
  47438. ))
  47439. characterMakers.push(() => makeCharacter(
  47440. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47441. {
  47442. female: {
  47443. height: math.unit(9 + 4/12, "feet"),
  47444. weight: math.unit(398, "lb"),
  47445. name: "Female",
  47446. image: {
  47447. source: "./media/characters/kassandra/female.svg",
  47448. extra: 908/839,
  47449. bottom: 61/969
  47450. }
  47451. },
  47452. intersex: {
  47453. height: math.unit(9 + 4/12, "feet"),
  47454. weight: math.unit(398, "lb"),
  47455. name: "Intersex",
  47456. image: {
  47457. source: "./media/characters/kassandra/intersex.svg",
  47458. extra: 908/839,
  47459. bottom: 61/969
  47460. }
  47461. },
  47462. },
  47463. [
  47464. {
  47465. name: "Normal",
  47466. height: math.unit(9 + 4/12, "feet"),
  47467. default: true
  47468. },
  47469. ]
  47470. ))
  47471. characterMakers.push(() => makeCharacter(
  47472. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47473. {
  47474. front: {
  47475. height: math.unit(3, "meters"),
  47476. name: "Front",
  47477. image: {
  47478. source: "./media/characters/amy/front.svg",
  47479. extra: 1380/1343,
  47480. bottom: 70/1450
  47481. }
  47482. },
  47483. back: {
  47484. height: math.unit(3, "meters"),
  47485. name: "Back",
  47486. image: {
  47487. source: "./media/characters/amy/back.svg",
  47488. extra: 1380/1347,
  47489. bottom: 66/1446
  47490. }
  47491. },
  47492. },
  47493. [
  47494. {
  47495. name: "Normal",
  47496. height: math.unit(3, "meters"),
  47497. default: true
  47498. },
  47499. ]
  47500. ))
  47501. characterMakers.push(() => makeCharacter(
  47502. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47503. {
  47504. side: {
  47505. height: math.unit(47, "cm"),
  47506. weight: math.unit(10.8, "kg"),
  47507. name: "Side",
  47508. image: {
  47509. source: "./media/characters/alphaschakal/side.svg",
  47510. extra: 1058/568,
  47511. bottom: 62/1120
  47512. }
  47513. },
  47514. back: {
  47515. height: math.unit(78, "cm"),
  47516. weight: math.unit(10.8, "kg"),
  47517. name: "Back",
  47518. image: {
  47519. source: "./media/characters/alphaschakal/back.svg",
  47520. extra: 1102/942,
  47521. bottom: 185/1287
  47522. }
  47523. },
  47524. head: {
  47525. height: math.unit(28, "cm"),
  47526. name: "Head",
  47527. image: {
  47528. source: "./media/characters/alphaschakal/head.svg",
  47529. extra: 696/508,
  47530. bottom: 0/696
  47531. }
  47532. },
  47533. paw: {
  47534. height: math.unit(16, "cm"),
  47535. name: "Paw",
  47536. image: {
  47537. source: "./media/characters/alphaschakal/paw.svg"
  47538. }
  47539. },
  47540. },
  47541. [
  47542. {
  47543. name: "Normal",
  47544. height: math.unit(47, "cm"),
  47545. default: true
  47546. },
  47547. {
  47548. name: "Macro",
  47549. height: math.unit(340, "cm")
  47550. },
  47551. ]
  47552. ))
  47553. characterMakers.push(() => makeCharacter(
  47554. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47555. {
  47556. front: {
  47557. height: math.unit(36, "earths"),
  47558. name: "Front",
  47559. image: {
  47560. source: "./media/characters/ecobyss/front.svg",
  47561. extra: 1282/1215,
  47562. bottom: 11/1293
  47563. }
  47564. },
  47565. back: {
  47566. height: math.unit(36, "earths"),
  47567. name: "Back",
  47568. image: {
  47569. source: "./media/characters/ecobyss/back.svg",
  47570. extra: 1291/1222,
  47571. bottom: 8/1299
  47572. }
  47573. },
  47574. },
  47575. [
  47576. {
  47577. name: "Normal",
  47578. height: math.unit(36, "earths"),
  47579. default: true
  47580. },
  47581. ]
  47582. ))
  47583. characterMakers.push(() => makeCharacter(
  47584. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47585. {
  47586. front: {
  47587. height: math.unit(12, "feet"),
  47588. name: "Front",
  47589. image: {
  47590. source: "./media/characters/vasuk/front.svg",
  47591. extra: 1326/1207,
  47592. bottom: 64/1390
  47593. }
  47594. },
  47595. },
  47596. [
  47597. {
  47598. name: "Normal",
  47599. height: math.unit(12, "feet"),
  47600. default: true
  47601. },
  47602. ]
  47603. ))
  47604. characterMakers.push(() => makeCharacter(
  47605. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47606. {
  47607. side: {
  47608. height: math.unit(100, "feet"),
  47609. name: "Side",
  47610. image: {
  47611. source: "./media/characters/linneaus/side.svg",
  47612. extra: 987/807,
  47613. bottom: 47/1034
  47614. }
  47615. },
  47616. },
  47617. [
  47618. {
  47619. name: "Macro",
  47620. height: math.unit(100, "feet"),
  47621. default: true
  47622. },
  47623. ]
  47624. ))
  47625. characterMakers.push(() => makeCharacter(
  47626. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47627. {
  47628. front: {
  47629. height: math.unit(8, "feet"),
  47630. weight: math.unit(1200, "lb"),
  47631. name: "Front",
  47632. image: {
  47633. source: "./media/characters/nyterious-daligdig/front.svg",
  47634. extra: 1284/1094,
  47635. bottom: 84/1368
  47636. }
  47637. },
  47638. back: {
  47639. height: math.unit(8, "feet"),
  47640. weight: math.unit(1200, "lb"),
  47641. name: "Back",
  47642. image: {
  47643. source: "./media/characters/nyterious-daligdig/back.svg",
  47644. extra: 1301/1121,
  47645. bottom: 129/1430
  47646. }
  47647. },
  47648. mouth: {
  47649. height: math.unit(1.464, "feet"),
  47650. name: "Mouth",
  47651. image: {
  47652. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47653. }
  47654. },
  47655. },
  47656. [
  47657. {
  47658. name: "Small",
  47659. height: math.unit(8, "feet"),
  47660. default: true
  47661. },
  47662. {
  47663. name: "Normal",
  47664. height: math.unit(15, "feet")
  47665. },
  47666. {
  47667. name: "Macro",
  47668. height: math.unit(90, "feet")
  47669. },
  47670. ]
  47671. ))
  47672. characterMakers.push(() => makeCharacter(
  47673. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47674. {
  47675. front: {
  47676. height: math.unit(7 + 4/12, "feet"),
  47677. weight: math.unit(252, "lb"),
  47678. name: "Front",
  47679. image: {
  47680. source: "./media/characters/bandel/front.svg",
  47681. extra: 1946/1775,
  47682. bottom: 26/1972
  47683. }
  47684. },
  47685. back: {
  47686. height: math.unit(7 + 4/12, "feet"),
  47687. weight: math.unit(252, "lb"),
  47688. name: "Back",
  47689. image: {
  47690. source: "./media/characters/bandel/back.svg",
  47691. extra: 1940/1770,
  47692. bottom: 25/1965
  47693. }
  47694. },
  47695. maw: {
  47696. height: math.unit(2.15, "feet"),
  47697. name: "Maw",
  47698. image: {
  47699. source: "./media/characters/bandel/maw.svg"
  47700. }
  47701. },
  47702. stomach: {
  47703. height: math.unit(1.95, "feet"),
  47704. name: "Stomach",
  47705. image: {
  47706. source: "./media/characters/bandel/stomach.svg"
  47707. }
  47708. },
  47709. },
  47710. [
  47711. {
  47712. name: "Normal",
  47713. height: math.unit(7 + 4/12, "feet"),
  47714. default: true
  47715. },
  47716. ]
  47717. ))
  47718. characterMakers.push(() => makeCharacter(
  47719. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47720. {
  47721. front: {
  47722. height: math.unit(10 + 5/12, "feet"),
  47723. weight: math.unit(773.5, "kg"),
  47724. name: "Front",
  47725. image: {
  47726. source: "./media/characters/zed/front.svg",
  47727. extra: 987/941,
  47728. bottom: 52/1039
  47729. }
  47730. },
  47731. },
  47732. [
  47733. {
  47734. name: "Short",
  47735. height: math.unit(5 + 4/12, "feet")
  47736. },
  47737. {
  47738. name: "Average",
  47739. height: math.unit(10 + 5/12, "feet"),
  47740. default: true
  47741. },
  47742. {
  47743. name: "Mini-Macro",
  47744. height: math.unit(24 + 9/12, "feet")
  47745. },
  47746. {
  47747. name: "Macro",
  47748. height: math.unit(249, "feet")
  47749. },
  47750. {
  47751. name: "Mega-Macro",
  47752. height: math.unit(12490, "feet")
  47753. },
  47754. {
  47755. name: "Giga-Macro",
  47756. height: math.unit(24.9, "miles")
  47757. },
  47758. {
  47759. name: "Tera-Macro",
  47760. height: math.unit(24900, "miles")
  47761. },
  47762. {
  47763. name: "Cosmic Scale",
  47764. height: math.unit(38.9, "lightyears")
  47765. },
  47766. {
  47767. name: "Universal Scale",
  47768. height: math.unit(138e12, "lightyears")
  47769. },
  47770. ]
  47771. ))
  47772. characterMakers.push(() => makeCharacter(
  47773. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47774. {
  47775. front: {
  47776. height: math.unit(1561, "inches"),
  47777. name: "Front",
  47778. image: {
  47779. source: "./media/characters/ivan/front.svg",
  47780. extra: 1126/1071,
  47781. bottom: 26/1152
  47782. }
  47783. },
  47784. back: {
  47785. height: math.unit(1561, "inches"),
  47786. name: "Back",
  47787. image: {
  47788. source: "./media/characters/ivan/back.svg",
  47789. extra: 1134/1079,
  47790. bottom: 30/1164
  47791. }
  47792. },
  47793. },
  47794. [
  47795. {
  47796. name: "Normal",
  47797. height: math.unit(1561, "inches"),
  47798. default: true
  47799. },
  47800. ]
  47801. ))
  47802. characterMakers.push(() => makeCharacter(
  47803. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47804. {
  47805. front: {
  47806. height: math.unit(5 + 7/12, "feet"),
  47807. weight: math.unit(150, "lb"),
  47808. name: "Front",
  47809. image: {
  47810. source: "./media/characters/robin-arctic-hare/front.svg",
  47811. extra: 1148/974,
  47812. bottom: 20/1168
  47813. }
  47814. },
  47815. },
  47816. [
  47817. {
  47818. name: "Normal",
  47819. height: math.unit(5 + 7/12, "feet"),
  47820. default: true
  47821. },
  47822. ]
  47823. ))
  47824. characterMakers.push(() => makeCharacter(
  47825. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47826. {
  47827. side: {
  47828. height: math.unit(5, "feet"),
  47829. name: "Side",
  47830. image: {
  47831. source: "./media/characters/birch/side.svg",
  47832. extra: 985/796,
  47833. bottom: 111/1096
  47834. }
  47835. },
  47836. },
  47837. [
  47838. {
  47839. name: "Normal",
  47840. height: math.unit(5, "feet"),
  47841. default: true
  47842. },
  47843. ]
  47844. ))
  47845. characterMakers.push(() => makeCharacter(
  47846. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47847. {
  47848. front: {
  47849. height: math.unit(4, "feet"),
  47850. name: "Front",
  47851. image: {
  47852. source: "./media/characters/rasp/front.svg",
  47853. extra: 561/478,
  47854. bottom: 74/635
  47855. }
  47856. },
  47857. },
  47858. [
  47859. {
  47860. name: "Normal",
  47861. height: math.unit(4, "feet"),
  47862. default: true
  47863. },
  47864. ]
  47865. ))
  47866. characterMakers.push(() => makeCharacter(
  47867. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47868. {
  47869. front: {
  47870. height: math.unit(4 + 6/12, "feet"),
  47871. name: "Front",
  47872. image: {
  47873. source: "./media/characters/agatha/front.svg",
  47874. extra: 947/933,
  47875. bottom: 42/989
  47876. }
  47877. },
  47878. back: {
  47879. height: math.unit(4 + 6/12, "feet"),
  47880. name: "Back",
  47881. image: {
  47882. source: "./media/characters/agatha/back.svg",
  47883. extra: 935/922,
  47884. bottom: 48/983
  47885. }
  47886. },
  47887. },
  47888. [
  47889. {
  47890. name: "Normal",
  47891. height: math.unit(4 + 6 /12, "feet"),
  47892. default: true
  47893. },
  47894. {
  47895. name: "Max Size",
  47896. height: math.unit(500, "feet")
  47897. },
  47898. ]
  47899. ))
  47900. characterMakers.push(() => makeCharacter(
  47901. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47902. {
  47903. side: {
  47904. height: math.unit(30, "feet"),
  47905. name: "Side",
  47906. image: {
  47907. source: "./media/characters/roggy/side.svg",
  47908. extra: 909/643,
  47909. bottom: 63/972
  47910. }
  47911. },
  47912. lounging: {
  47913. height: math.unit(20, "feet"),
  47914. name: "Lounging",
  47915. image: {
  47916. source: "./media/characters/roggy/lounging.svg",
  47917. extra: 643/479,
  47918. bottom: 145/788
  47919. }
  47920. },
  47921. handpaw: {
  47922. height: math.unit(13.1, "feet"),
  47923. name: "Handpaw",
  47924. image: {
  47925. source: "./media/characters/roggy/handpaw.svg"
  47926. }
  47927. },
  47928. footpaw: {
  47929. height: math.unit(15.8, "feet"),
  47930. name: "Footpaw",
  47931. image: {
  47932. source: "./media/characters/roggy/footpaw.svg"
  47933. }
  47934. },
  47935. },
  47936. [
  47937. {
  47938. name: "Menacing",
  47939. height: math.unit(30, "feet"),
  47940. default: true
  47941. },
  47942. ]
  47943. ))
  47944. characterMakers.push(() => makeCharacter(
  47945. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47946. {
  47947. front: {
  47948. height: math.unit(5 + 7/12, "feet"),
  47949. weight: math.unit(135, "lb"),
  47950. name: "Front",
  47951. image: {
  47952. source: "./media/characters/naomi/front.svg",
  47953. extra: 1209/1154,
  47954. bottom: 129/1338
  47955. }
  47956. },
  47957. back: {
  47958. height: math.unit(5 + 7/12, "feet"),
  47959. weight: math.unit(135, "lb"),
  47960. name: "Back",
  47961. image: {
  47962. source: "./media/characters/naomi/back.svg",
  47963. extra: 1252/1190,
  47964. bottom: 23/1275
  47965. }
  47966. },
  47967. },
  47968. [
  47969. {
  47970. name: "Normal",
  47971. height: math.unit(5 + 7 /12, "feet"),
  47972. default: true
  47973. },
  47974. ]
  47975. ))
  47976. characterMakers.push(() => makeCharacter(
  47977. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47978. {
  47979. side: {
  47980. height: math.unit(35, "meters"),
  47981. name: "Side",
  47982. image: {
  47983. source: "./media/characters/kimpi/side.svg",
  47984. extra: 419/382,
  47985. bottom: 63/482
  47986. }
  47987. },
  47988. hand: {
  47989. height: math.unit(8.96, "meters"),
  47990. name: "Hand",
  47991. image: {
  47992. source: "./media/characters/kimpi/hand.svg"
  47993. }
  47994. },
  47995. },
  47996. [
  47997. {
  47998. name: "Normal",
  47999. height: math.unit(35, "meters"),
  48000. default: true
  48001. },
  48002. ]
  48003. ))
  48004. characterMakers.push(() => makeCharacter(
  48005. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48006. {
  48007. front: {
  48008. height: math.unit(4 + 4/12, "feet"),
  48009. name: "Front",
  48010. image: {
  48011. source: "./media/characters/pepper-purrloin/front.svg",
  48012. extra: 1141/1024,
  48013. bottom: 21/1162
  48014. }
  48015. },
  48016. },
  48017. [
  48018. {
  48019. name: "Normal",
  48020. height: math.unit(4 + 4/12, "feet"),
  48021. default: true
  48022. },
  48023. ]
  48024. ))
  48025. characterMakers.push(() => makeCharacter(
  48026. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48027. {
  48028. front: {
  48029. height: math.unit(6 + 2/12, "feet"),
  48030. name: "Front",
  48031. image: {
  48032. source: "./media/characters/raphael/front.svg",
  48033. extra: 1101/962,
  48034. bottom: 59/1160
  48035. }
  48036. },
  48037. },
  48038. [
  48039. {
  48040. name: "Normal",
  48041. height: math.unit(6 + 2/12, "feet"),
  48042. default: true
  48043. },
  48044. ]
  48045. ))
  48046. characterMakers.push(() => makeCharacter(
  48047. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48048. {
  48049. front: {
  48050. height: math.unit(6, "feet"),
  48051. weight: math.unit(150, "lb"),
  48052. name: "Front",
  48053. image: {
  48054. source: "./media/characters/victor-williams/front.svg",
  48055. extra: 1894/1825,
  48056. bottom: 67/1961
  48057. }
  48058. },
  48059. },
  48060. [
  48061. {
  48062. name: "Normal",
  48063. height: math.unit(6, "feet"),
  48064. default: true
  48065. },
  48066. ]
  48067. ))
  48068. characterMakers.push(() => makeCharacter(
  48069. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48070. {
  48071. front: {
  48072. height: math.unit(5 + 8/12, "feet"),
  48073. weight: math.unit(150, "lb"),
  48074. name: "Front",
  48075. image: {
  48076. source: "./media/characters/rachel/front.svg",
  48077. extra: 1902/1787,
  48078. bottom: 46/1948
  48079. }
  48080. },
  48081. },
  48082. [
  48083. {
  48084. name: "Base Height",
  48085. height: math.unit(5 + 8/12, "feet"),
  48086. default: true
  48087. },
  48088. {
  48089. name: "Macro",
  48090. height: math.unit(200, "feet")
  48091. },
  48092. {
  48093. name: "Mega Macro",
  48094. height: math.unit(1, "mile")
  48095. },
  48096. {
  48097. name: "Giga Macro",
  48098. height: math.unit(1500, "miles")
  48099. },
  48100. {
  48101. name: "Tera Macro",
  48102. height: math.unit(8000, "miles")
  48103. },
  48104. {
  48105. name: "Tera Macro+",
  48106. height: math.unit(2e5, "miles")
  48107. },
  48108. ]
  48109. ))
  48110. characterMakers.push(() => makeCharacter(
  48111. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48112. {
  48113. front: {
  48114. height: math.unit(6.5, "feet"),
  48115. name: "Front",
  48116. image: {
  48117. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48118. extra: 860/819,
  48119. bottom: 307/1167
  48120. }
  48121. },
  48122. back: {
  48123. height: math.unit(6.5, "feet"),
  48124. name: "Back",
  48125. image: {
  48126. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48127. extra: 880/837,
  48128. bottom: 395/1275
  48129. }
  48130. },
  48131. sleeping: {
  48132. height: math.unit(2.79, "feet"),
  48133. name: "Sleeping",
  48134. image: {
  48135. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48136. extra: 465/383,
  48137. bottom: 263/728
  48138. }
  48139. },
  48140. maw: {
  48141. height: math.unit(2.52, "feet"),
  48142. name: "Maw",
  48143. image: {
  48144. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48145. }
  48146. },
  48147. },
  48148. [
  48149. {
  48150. name: "Normal",
  48151. height: math.unit(6.5, "feet"),
  48152. default: true
  48153. },
  48154. ]
  48155. ))
  48156. characterMakers.push(() => makeCharacter(
  48157. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48158. {
  48159. front: {
  48160. height: math.unit(5, "feet"),
  48161. name: "Front",
  48162. image: {
  48163. source: "./media/characters/nova-nerium/front.svg",
  48164. extra: 1548/1392,
  48165. bottom: 374/1922
  48166. }
  48167. },
  48168. back: {
  48169. height: math.unit(5, "feet"),
  48170. name: "Back",
  48171. image: {
  48172. source: "./media/characters/nova-nerium/back.svg",
  48173. extra: 1658/1468,
  48174. bottom: 257/1915
  48175. }
  48176. },
  48177. },
  48178. [
  48179. {
  48180. name: "Normal",
  48181. height: math.unit(5, "feet"),
  48182. default: true
  48183. },
  48184. ]
  48185. ))
  48186. characterMakers.push(() => makeCharacter(
  48187. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48188. {
  48189. front: {
  48190. height: math.unit(5 + 4/12, "feet"),
  48191. name: "Front",
  48192. image: {
  48193. source: "./media/characters/ashe-pyriph/front.svg",
  48194. extra: 1935/1747,
  48195. bottom: 60/1995
  48196. }
  48197. },
  48198. },
  48199. [
  48200. {
  48201. name: "Normal",
  48202. height: math.unit(5 + 4/12, "feet"),
  48203. default: true
  48204. },
  48205. ]
  48206. ))
  48207. characterMakers.push(() => makeCharacter(
  48208. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48209. {
  48210. front: {
  48211. height: math.unit(8.7, "feet"),
  48212. name: "Front",
  48213. image: {
  48214. source: "./media/characters/flicker-wisp/front.svg",
  48215. extra: 1835/1613,
  48216. bottom: 449/2284
  48217. }
  48218. },
  48219. side: {
  48220. height: math.unit(8.7, "feet"),
  48221. name: "Side",
  48222. image: {
  48223. source: "./media/characters/flicker-wisp/side.svg",
  48224. extra: 1841/1642,
  48225. bottom: 336/2177
  48226. },
  48227. default: true
  48228. },
  48229. maw: {
  48230. height: math.unit(3.35, "feet"),
  48231. name: "Maw",
  48232. image: {
  48233. source: "./media/characters/flicker-wisp/maw.svg",
  48234. extra: 2338/1506,
  48235. bottom: 0/2338
  48236. }
  48237. },
  48238. ovipositor: {
  48239. height: math.unit(4.95, "feet"),
  48240. name: "Ovipositor",
  48241. image: {
  48242. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48243. }
  48244. },
  48245. egg: {
  48246. height: math.unit(0.385, "feet"),
  48247. weight: math.unit(2, "lb"),
  48248. name: "Egg",
  48249. image: {
  48250. source: "./media/characters/flicker-wisp/egg.svg"
  48251. }
  48252. },
  48253. },
  48254. [
  48255. {
  48256. name: "Normal",
  48257. height: math.unit(8.7, "feet"),
  48258. default: true
  48259. },
  48260. ]
  48261. ))
  48262. characterMakers.push(() => makeCharacter(
  48263. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48264. {
  48265. side: {
  48266. height: math.unit(11, "feet"),
  48267. name: "Side",
  48268. image: {
  48269. source: "./media/characters/faefnul/side.svg",
  48270. extra: 1100/1007,
  48271. bottom: 0/1100
  48272. }
  48273. },
  48274. },
  48275. [
  48276. {
  48277. name: "Normal",
  48278. height: math.unit(11, "feet"),
  48279. default: true
  48280. },
  48281. ]
  48282. ))
  48283. characterMakers.push(() => makeCharacter(
  48284. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48285. {
  48286. front: {
  48287. height: math.unit(6 + 2/12, "feet"),
  48288. name: "Front",
  48289. image: {
  48290. source: "./media/characters/shady/front.svg",
  48291. extra: 502/461,
  48292. bottom: 9/511
  48293. }
  48294. },
  48295. kneeling: {
  48296. height: math.unit(4.6, "feet"),
  48297. name: "Kneeling",
  48298. image: {
  48299. source: "./media/characters/shady/kneeling.svg",
  48300. extra: 1328/1219,
  48301. bottom: 117/1445
  48302. }
  48303. },
  48304. maw: {
  48305. height: math.unit(2, "feet"),
  48306. name: "Maw",
  48307. image: {
  48308. source: "./media/characters/shady/maw.svg"
  48309. }
  48310. },
  48311. },
  48312. [
  48313. {
  48314. name: "Nano",
  48315. height: math.unit(1, "mm")
  48316. },
  48317. {
  48318. name: "Micro",
  48319. height: math.unit(12, "mm")
  48320. },
  48321. {
  48322. name: "Tiny",
  48323. height: math.unit(3, "inches")
  48324. },
  48325. {
  48326. name: "Normal",
  48327. height: math.unit(6 + 2/12, "feet"),
  48328. default: true
  48329. },
  48330. {
  48331. name: "Big",
  48332. height: math.unit(15, "feet")
  48333. },
  48334. {
  48335. name: "Macro",
  48336. height: math.unit(150, "feet")
  48337. },
  48338. {
  48339. name: "Titanic",
  48340. height: math.unit(500, "feet")
  48341. },
  48342. ]
  48343. ))
  48344. characterMakers.push(() => makeCharacter(
  48345. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48346. {
  48347. front: {
  48348. height: math.unit(12, "feet"),
  48349. name: "Front",
  48350. image: {
  48351. source: "./media/characters/fenrir/front.svg",
  48352. extra: 968/875,
  48353. bottom: 22/990
  48354. }
  48355. },
  48356. },
  48357. [
  48358. {
  48359. name: "Big",
  48360. height: math.unit(12, "feet"),
  48361. default: true
  48362. },
  48363. ]
  48364. ))
  48365. characterMakers.push(() => makeCharacter(
  48366. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48367. {
  48368. front: {
  48369. height: math.unit(5 + 4/12, "feet"),
  48370. name: "Front",
  48371. image: {
  48372. source: "./media/characters/makar/front.svg",
  48373. extra: 1181/1112,
  48374. bottom: 78/1259
  48375. }
  48376. },
  48377. },
  48378. [
  48379. {
  48380. name: "Normal",
  48381. height: math.unit(5 + 4/12, "feet"),
  48382. default: true
  48383. },
  48384. ]
  48385. ))
  48386. characterMakers.push(() => makeCharacter(
  48387. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48388. {
  48389. front: {
  48390. height: math.unit(5 + 7/12, "feet"),
  48391. name: "Front",
  48392. image: {
  48393. source: "./media/characters/callow/front.svg",
  48394. extra: 1482/1304,
  48395. bottom: 23/1505
  48396. }
  48397. },
  48398. back: {
  48399. height: math.unit(5 + 7/12, "feet"),
  48400. name: "Back",
  48401. image: {
  48402. source: "./media/characters/callow/back.svg",
  48403. extra: 1484/1296,
  48404. bottom: 25/1509
  48405. }
  48406. },
  48407. },
  48408. [
  48409. {
  48410. name: "Micro",
  48411. height: math.unit(3, "inches"),
  48412. default: true
  48413. },
  48414. {
  48415. name: "Normal",
  48416. height: math.unit(5 + 7/12, "feet")
  48417. },
  48418. ]
  48419. ))
  48420. characterMakers.push(() => makeCharacter(
  48421. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48422. {
  48423. front: {
  48424. height: math.unit(6 + 2/12, "feet"),
  48425. name: "Front",
  48426. image: {
  48427. source: "./media/characters/natel/front.svg",
  48428. extra: 1833/1692,
  48429. bottom: 166/1999
  48430. }
  48431. },
  48432. },
  48433. [
  48434. {
  48435. name: "Normal",
  48436. height: math.unit(6 + 2/12, "feet"),
  48437. default: true
  48438. },
  48439. ]
  48440. ))
  48441. characterMakers.push(() => makeCharacter(
  48442. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48443. {
  48444. front: {
  48445. height: math.unit(1.75, "meters"),
  48446. name: "Front",
  48447. image: {
  48448. source: "./media/characters/misu/front.svg",
  48449. extra: 1690/1558,
  48450. bottom: 234/1924
  48451. }
  48452. },
  48453. back: {
  48454. height: math.unit(1.75, "meters"),
  48455. name: "Back",
  48456. image: {
  48457. source: "./media/characters/misu/back.svg",
  48458. extra: 1762/1618,
  48459. bottom: 146/1908
  48460. }
  48461. },
  48462. frontNude: {
  48463. height: math.unit(1.75, "meters"),
  48464. name: "Front (Nude)",
  48465. image: {
  48466. source: "./media/characters/misu/front-nude.svg",
  48467. extra: 1690/1558,
  48468. bottom: 234/1924
  48469. }
  48470. },
  48471. backNude: {
  48472. height: math.unit(1.75, "meters"),
  48473. name: "Back (Nude)",
  48474. image: {
  48475. source: "./media/characters/misu/back-nude.svg",
  48476. extra: 1762/1618,
  48477. bottom: 146/1908
  48478. }
  48479. },
  48480. frontErect: {
  48481. height: math.unit(1.75, "meters"),
  48482. name: "Front (Erect)",
  48483. image: {
  48484. source: "./media/characters/misu/front-erect.svg",
  48485. extra: 1690/1558,
  48486. bottom: 234/1924
  48487. }
  48488. },
  48489. maw: {
  48490. height: math.unit(0.47, "meters"),
  48491. name: "Maw",
  48492. image: {
  48493. source: "./media/characters/misu/maw.svg"
  48494. }
  48495. },
  48496. head: {
  48497. height: math.unit(0.35, "meters"),
  48498. name: "Head",
  48499. image: {
  48500. source: "./media/characters/misu/head.svg"
  48501. }
  48502. },
  48503. rear: {
  48504. height: math.unit(0.47, "meters"),
  48505. name: "Rear",
  48506. image: {
  48507. source: "./media/characters/misu/rear.svg"
  48508. }
  48509. },
  48510. },
  48511. [
  48512. {
  48513. name: "Normal",
  48514. height: math.unit(1.75, "meters")
  48515. },
  48516. {
  48517. name: "Not good for the people",
  48518. height: math.unit(42, "meters")
  48519. },
  48520. {
  48521. name: "Not good for the neighborhood",
  48522. height: math.unit(135, "meters")
  48523. },
  48524. {
  48525. name: "Bit bigger problem",
  48526. height: math.unit(380, "meters"),
  48527. default: true
  48528. },
  48529. {
  48530. name: "Not good for the city",
  48531. height: math.unit(1.5, "km")
  48532. },
  48533. {
  48534. name: "Not good for the county",
  48535. height: math.unit(5.5, "km")
  48536. },
  48537. {
  48538. name: "Not good for the state",
  48539. height: math.unit(25, "km")
  48540. },
  48541. {
  48542. name: "Not good for the country",
  48543. height: math.unit(125, "km")
  48544. },
  48545. {
  48546. name: "Not good for the continent",
  48547. height: math.unit(2100, "km")
  48548. },
  48549. {
  48550. name: "Not good for the planet",
  48551. height: math.unit(35000, "km")
  48552. },
  48553. {
  48554. name: "Just no",
  48555. height: math.unit(8.5e18, "km")
  48556. },
  48557. ]
  48558. ))
  48559. characterMakers.push(() => makeCharacter(
  48560. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48561. {
  48562. front: {
  48563. height: math.unit(6.5, "feet"),
  48564. name: "Front",
  48565. image: {
  48566. source: "./media/characters/poppy/front.svg",
  48567. extra: 1878/1812,
  48568. bottom: 43/1921
  48569. }
  48570. },
  48571. feet: {
  48572. height: math.unit(1.06, "feet"),
  48573. name: "Feet",
  48574. image: {
  48575. source: "./media/characters/poppy/feet.svg",
  48576. extra: 1083/1083,
  48577. bottom: 87/1170
  48578. }
  48579. },
  48580. },
  48581. [
  48582. {
  48583. name: "Human",
  48584. height: math.unit(6.5, "feet")
  48585. },
  48586. {
  48587. name: "Default",
  48588. height: math.unit(300, "feet"),
  48589. default: true
  48590. },
  48591. {
  48592. name: "Huge",
  48593. height: math.unit(850, "feet")
  48594. },
  48595. {
  48596. name: "Mega",
  48597. height: math.unit(8000, "feet")
  48598. },
  48599. {
  48600. name: "Giga",
  48601. height: math.unit(300, "miles")
  48602. },
  48603. ]
  48604. ))
  48605. characterMakers.push(() => makeCharacter(
  48606. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48607. {
  48608. bipedal: {
  48609. height: math.unit(7, "feet"),
  48610. name: "Bipedal",
  48611. image: {
  48612. source: "./media/characters/zener/bipedal.svg",
  48613. extra: 874/805,
  48614. bottom: 109/983
  48615. }
  48616. },
  48617. quadrupedal: {
  48618. height: math.unit(4.64, "feet"),
  48619. name: "Quadrupedal",
  48620. image: {
  48621. source: "./media/characters/zener/quadrupedal.svg",
  48622. extra: 638/507,
  48623. bottom: 190/828
  48624. }
  48625. },
  48626. cock: {
  48627. height: math.unit(18, "inches"),
  48628. name: "Cock",
  48629. image: {
  48630. source: "./media/characters/zener/cock.svg"
  48631. }
  48632. },
  48633. },
  48634. [
  48635. {
  48636. name: "Normal",
  48637. height: math.unit(7, "feet"),
  48638. default: true
  48639. },
  48640. ]
  48641. ))
  48642. characterMakers.push(() => makeCharacter(
  48643. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48644. {
  48645. nude: {
  48646. height: math.unit(5 + 6/12, "feet"),
  48647. name: "Nude",
  48648. image: {
  48649. source: "./media/characters/charlie-dog/nude.svg",
  48650. extra: 768/734,
  48651. bottom: 26/794
  48652. }
  48653. },
  48654. dressed: {
  48655. height: math.unit(5 + 6/12, "feet"),
  48656. name: "Dressed",
  48657. image: {
  48658. source: "./media/characters/charlie-dog/dressed.svg",
  48659. extra: 768/734,
  48660. bottom: 26/794
  48661. }
  48662. },
  48663. },
  48664. [
  48665. {
  48666. name: "Normal",
  48667. height: math.unit(5 + 6/12, "feet"),
  48668. default: true
  48669. },
  48670. ]
  48671. ))
  48672. characterMakers.push(() => makeCharacter(
  48673. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48674. {
  48675. front: {
  48676. height: math.unit(6 + 4/12, "feet"),
  48677. name: "Front",
  48678. image: {
  48679. source: "./media/characters/ir'istrasz/front.svg",
  48680. extra: 1014/977,
  48681. bottom: 65/1079
  48682. }
  48683. },
  48684. back: {
  48685. height: math.unit(6 + 4/12, "feet"),
  48686. name: "Back",
  48687. image: {
  48688. source: "./media/characters/ir'istrasz/back.svg",
  48689. extra: 1024/992,
  48690. bottom: 34/1058
  48691. }
  48692. },
  48693. },
  48694. [
  48695. {
  48696. name: "Normal",
  48697. height: math.unit(6 + 4/12, "feet"),
  48698. default: true
  48699. },
  48700. ]
  48701. ))
  48702. characterMakers.push(() => makeCharacter(
  48703. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48704. {
  48705. front: {
  48706. height: math.unit(5 + 8/12, "feet"),
  48707. name: "Front",
  48708. image: {
  48709. source: "./media/characters/dee-ditto/front.svg",
  48710. extra: 1874/1785,
  48711. bottom: 68/1942
  48712. }
  48713. },
  48714. back: {
  48715. height: math.unit(5 + 8/12, "feet"),
  48716. name: "Back",
  48717. image: {
  48718. source: "./media/characters/dee-ditto/back.svg",
  48719. extra: 1870/1783,
  48720. bottom: 77/1947
  48721. }
  48722. },
  48723. },
  48724. [
  48725. {
  48726. name: "Normal",
  48727. height: math.unit(5 + 8/12, "feet"),
  48728. default: true
  48729. },
  48730. ]
  48731. ))
  48732. characterMakers.push(() => makeCharacter(
  48733. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48734. {
  48735. front: {
  48736. height: math.unit(7 + 6/12, "feet"),
  48737. name: "Front",
  48738. image: {
  48739. source: "./media/characters/fey/front.svg",
  48740. extra: 995/979,
  48741. bottom: 30/1025
  48742. }
  48743. },
  48744. back: {
  48745. height: math.unit(7 + 6/12, "feet"),
  48746. name: "Back",
  48747. image: {
  48748. source: "./media/characters/fey/back.svg",
  48749. extra: 1079/1008,
  48750. bottom: 5/1084
  48751. }
  48752. },
  48753. dressed: {
  48754. height: math.unit(7 + 6/12, "feet"),
  48755. name: "Dressed",
  48756. image: {
  48757. source: "./media/characters/fey/dressed.svg",
  48758. extra: 995/979,
  48759. bottom: 30/1025
  48760. }
  48761. },
  48762. },
  48763. [
  48764. {
  48765. name: "Normal",
  48766. height: math.unit(7 + 6/12, "feet"),
  48767. default: true
  48768. },
  48769. ]
  48770. ))
  48771. characterMakers.push(() => makeCharacter(
  48772. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48773. {
  48774. standing: {
  48775. height: math.unit(17, "feet"),
  48776. name: "Standing",
  48777. image: {
  48778. source: "./media/characters/aster/standing.svg",
  48779. extra: 1798/1598,
  48780. bottom: 117/1915
  48781. }
  48782. },
  48783. },
  48784. [
  48785. {
  48786. name: "Normal",
  48787. height: math.unit(17, "feet"),
  48788. default: true
  48789. },
  48790. {
  48791. name: "Homewrecker",
  48792. height: math.unit(95, "feet")
  48793. },
  48794. {
  48795. name: "Planet Devourer",
  48796. height: math.unit(1008000, "miles")
  48797. },
  48798. ]
  48799. ))
  48800. characterMakers.push(() => makeCharacter(
  48801. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48802. {
  48803. front: {
  48804. height: math.unit(6 + 5/12, "feet"),
  48805. weight: math.unit(265, "lb"),
  48806. name: "Front",
  48807. image: {
  48808. source: "./media/characters/devon-childs/front.svg",
  48809. extra: 1795/1721,
  48810. bottom: 41/1836
  48811. }
  48812. },
  48813. side: {
  48814. height: math.unit(6 + 5/12, "feet"),
  48815. weight: math.unit(265, "lb"),
  48816. name: "Side",
  48817. image: {
  48818. source: "./media/characters/devon-childs/side.svg",
  48819. extra: 1812/1738,
  48820. bottom: 30/1842
  48821. }
  48822. },
  48823. back: {
  48824. height: math.unit(6 + 5/12, "feet"),
  48825. weight: math.unit(265, "lb"),
  48826. name: "Back",
  48827. image: {
  48828. source: "./media/characters/devon-childs/back.svg",
  48829. extra: 1808/1735,
  48830. bottom: 23/1831
  48831. }
  48832. },
  48833. hand: {
  48834. height: math.unit(1.464, "feet"),
  48835. name: "Hand",
  48836. image: {
  48837. source: "./media/characters/devon-childs/hand.svg"
  48838. }
  48839. },
  48840. foot: {
  48841. height: math.unit(1.6, "feet"),
  48842. name: "Foot",
  48843. image: {
  48844. source: "./media/characters/devon-childs/foot.svg"
  48845. }
  48846. },
  48847. },
  48848. [
  48849. {
  48850. name: "Micro",
  48851. height: math.unit(7, "cm")
  48852. },
  48853. {
  48854. name: "Normal",
  48855. height: math.unit(6 + 5/12, "feet"),
  48856. default: true
  48857. },
  48858. {
  48859. name: "Macro",
  48860. height: math.unit(154, "feet")
  48861. },
  48862. ]
  48863. ))
  48864. characterMakers.push(() => makeCharacter(
  48865. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48866. {
  48867. front: {
  48868. height: math.unit(6, "feet"),
  48869. weight: math.unit(180, "lb"),
  48870. name: "Front",
  48871. image: {
  48872. source: "./media/characters/lydemox-vir/front.svg",
  48873. extra: 1632/1435,
  48874. bottom: 58/1690
  48875. }
  48876. },
  48877. frontSFW: {
  48878. height: math.unit(6, "feet"),
  48879. weight: math.unit(180, "lb"),
  48880. name: "Front (SFW)",
  48881. image: {
  48882. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48883. extra: 1632/1435,
  48884. bottom: 58/1690
  48885. }
  48886. },
  48887. back: {
  48888. height: math.unit(6, "feet"),
  48889. weight: math.unit(180, "lb"),
  48890. name: "Back",
  48891. image: {
  48892. source: "./media/characters/lydemox-vir/back.svg",
  48893. extra: 1593/1408,
  48894. bottom: 31/1624
  48895. }
  48896. },
  48897. paw: {
  48898. height: math.unit(1.85, "feet"),
  48899. name: "Paw",
  48900. image: {
  48901. source: "./media/characters/lydemox-vir/paw.svg"
  48902. }
  48903. },
  48904. dick: {
  48905. height: math.unit(1.8, "feet"),
  48906. name: "Dick",
  48907. image: {
  48908. source: "./media/characters/lydemox-vir/dick.svg"
  48909. }
  48910. },
  48911. },
  48912. [
  48913. {
  48914. name: "Macro",
  48915. height: math.unit(100, "feet"),
  48916. default: true
  48917. },
  48918. {
  48919. name: "Teramacro",
  48920. height: math.unit(1, "earth")
  48921. },
  48922. {
  48923. name: "Planetary",
  48924. height: math.unit(20, "earths")
  48925. },
  48926. ]
  48927. ))
  48928. characterMakers.push(() => makeCharacter(
  48929. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48930. {
  48931. front: {
  48932. height: math.unit(15 + 8/12, "feet"),
  48933. weight: math.unit(1237, "kg"),
  48934. name: "Front",
  48935. image: {
  48936. source: "./media/characters/mia/front.svg",
  48937. extra: 1573/1446,
  48938. bottom: 58/1631
  48939. }
  48940. },
  48941. },
  48942. [
  48943. {
  48944. name: "Small",
  48945. height: math.unit(9 + 5/12, "feet")
  48946. },
  48947. {
  48948. name: "Normal",
  48949. height: math.unit(15 + 8/12, "feet"),
  48950. default: true
  48951. },
  48952. ]
  48953. ))
  48954. characterMakers.push(() => makeCharacter(
  48955. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48956. {
  48957. front: {
  48958. height: math.unit(10 + 6/12, "feet"),
  48959. weight: math.unit(1.3, "tons"),
  48960. name: "Front",
  48961. image: {
  48962. source: "./media/characters/mr-graves/front.svg",
  48963. extra: 1779/1695,
  48964. bottom: 198/1977
  48965. }
  48966. },
  48967. },
  48968. [
  48969. {
  48970. name: "Normal",
  48971. height: math.unit(10 + 6 /12, "feet"),
  48972. default: true
  48973. },
  48974. ]
  48975. ))
  48976. characterMakers.push(() => makeCharacter(
  48977. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48978. {
  48979. dressedFront: {
  48980. height: math.unit(5 + 8/12, "feet"),
  48981. weight: math.unit(125, "lb"),
  48982. name: "Dressed (Front)",
  48983. image: {
  48984. source: "./media/characters/jess/dressed-front.svg",
  48985. extra: 1176/1152,
  48986. bottom: 42/1218
  48987. }
  48988. },
  48989. dressedSide: {
  48990. height: math.unit(5 + 8/12, "feet"),
  48991. weight: math.unit(125, "lb"),
  48992. name: "Dressed (Side)",
  48993. image: {
  48994. source: "./media/characters/jess/dressed-side.svg",
  48995. extra: 1204/1190,
  48996. bottom: 6/1210
  48997. }
  48998. },
  48999. nudeFront: {
  49000. height: math.unit(5 + 8/12, "feet"),
  49001. weight: math.unit(125, "lb"),
  49002. name: "Nude (Front)",
  49003. image: {
  49004. source: "./media/characters/jess/nude-front.svg",
  49005. extra: 1176/1152,
  49006. bottom: 42/1218
  49007. }
  49008. },
  49009. nudeSide: {
  49010. height: math.unit(5 + 8/12, "feet"),
  49011. weight: math.unit(125, "lb"),
  49012. name: "Nude (Side)",
  49013. image: {
  49014. source: "./media/characters/jess/nude-side.svg",
  49015. extra: 1204/1190,
  49016. bottom: 6/1210
  49017. }
  49018. },
  49019. organsFront: {
  49020. height: math.unit(2.83799342105, "feet"),
  49021. name: "Organs (Front)",
  49022. image: {
  49023. source: "./media/characters/jess/organs-front.svg"
  49024. }
  49025. },
  49026. organsSide: {
  49027. height: math.unit(2.64225290474, "feet"),
  49028. name: "Organs (Side)",
  49029. image: {
  49030. source: "./media/characters/jess/organs-side.svg"
  49031. }
  49032. },
  49033. digestiveTractFront: {
  49034. height: math.unit(2.8106580871, "feet"),
  49035. name: "Digestive Tract (Front)",
  49036. image: {
  49037. source: "./media/characters/jess/digestive-tract-front.svg"
  49038. }
  49039. },
  49040. digestiveTractSide: {
  49041. height: math.unit(2.54365045014, "feet"),
  49042. name: "Digestive Tract (Side)",
  49043. image: {
  49044. source: "./media/characters/jess/digestive-tract-side.svg"
  49045. }
  49046. },
  49047. respiratorySystemFront: {
  49048. height: math.unit(1.11196233456, "feet"),
  49049. name: "Respiratory System (Front)",
  49050. image: {
  49051. source: "./media/characters/jess/respiratory-system-front.svg"
  49052. }
  49053. },
  49054. respiratorySystemSide: {
  49055. height: math.unit(0.89327966297, "feet"),
  49056. name: "Respiratory System (Side)",
  49057. image: {
  49058. source: "./media/characters/jess/respiratory-system-side.svg"
  49059. }
  49060. },
  49061. urinaryTractFront: {
  49062. height: math.unit(1.16126356186, "feet"),
  49063. name: "Urinary Tract (Front)",
  49064. image: {
  49065. source: "./media/characters/jess/urinary-tract-front.svg"
  49066. }
  49067. },
  49068. urinaryTractSide: {
  49069. height: math.unit(1.20910039627, "feet"),
  49070. name: "Urinary Tract (Side)",
  49071. image: {
  49072. source: "./media/characters/jess/urinary-tract-side.svg"
  49073. }
  49074. },
  49075. reproductiveOrgansFront: {
  49076. height: math.unit(0.48422591566, "feet"),
  49077. name: "Reproductive Organs (Front)",
  49078. image: {
  49079. source: "./media/characters/jess/reproductive-organs-front.svg"
  49080. }
  49081. },
  49082. reproductiveOrgansSide: {
  49083. height: math.unit(0.61553314481, "feet"),
  49084. name: "Reproductive Organs (Side)",
  49085. image: {
  49086. source: "./media/characters/jess/reproductive-organs-side.svg"
  49087. }
  49088. },
  49089. breastsFront: {
  49090. height: math.unit(0.47690395121, "feet"),
  49091. name: "Breasts (Front)",
  49092. image: {
  49093. source: "./media/characters/jess/breasts-front.svg"
  49094. }
  49095. },
  49096. breastsSide: {
  49097. height: math.unit(0.30556998307, "feet"),
  49098. name: "Breasts (Side)",
  49099. image: {
  49100. source: "./media/characters/jess/breasts-side.svg"
  49101. }
  49102. },
  49103. heartFront: {
  49104. height: math.unit(0.53011022622, "feet"),
  49105. name: "Heart (Front)",
  49106. image: {
  49107. source: "./media/characters/jess/heart-front.svg"
  49108. }
  49109. },
  49110. heartSide: {
  49111. height: math.unit(0.51790695213, "feet"),
  49112. name: "Heart (Side)",
  49113. image: {
  49114. source: "./media/characters/jess/heart-side.svg"
  49115. }
  49116. },
  49117. earsAndNoseFront: {
  49118. height: math.unit(0.29385483995, "feet"),
  49119. name: "Ears and Nose (Front)",
  49120. image: {
  49121. source: "./media/characters/jess/ears-and-nose-front.svg"
  49122. }
  49123. },
  49124. earsAndNoseSide: {
  49125. height: math.unit(0.18109658741, "feet"),
  49126. name: "Ears and Nose (Side)",
  49127. image: {
  49128. source: "./media/characters/jess/ears-and-nose-side.svg"
  49129. }
  49130. },
  49131. },
  49132. [
  49133. {
  49134. name: "Normal",
  49135. height: math.unit(5 + 8/12, "feet"),
  49136. default: true
  49137. },
  49138. ]
  49139. ))
  49140. characterMakers.push(() => makeCharacter(
  49141. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49142. {
  49143. front: {
  49144. height: math.unit(6, "feet"),
  49145. weight: math.unit(6.64467e-7, "grams"),
  49146. name: "Front",
  49147. image: {
  49148. source: "./media/characters/wimpering/front.svg",
  49149. extra: 597/587,
  49150. bottom: 34/631
  49151. }
  49152. },
  49153. },
  49154. [
  49155. {
  49156. name: "Micro",
  49157. height: math.unit(0.4, "mm"),
  49158. default: true
  49159. },
  49160. ]
  49161. ))
  49162. characterMakers.push(() => makeCharacter(
  49163. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49164. {
  49165. front: {
  49166. height: math.unit(5 + 2/12, "feet"),
  49167. weight: math.unit(110, "lb"),
  49168. name: "Front",
  49169. image: {
  49170. source: "./media/characters/keltre/front.svg",
  49171. extra: 1099/1057,
  49172. bottom: 22/1121
  49173. }
  49174. },
  49175. back: {
  49176. height: math.unit(5 + 2/12, "feet"),
  49177. weight: math.unit(110, "lb"),
  49178. name: "Back",
  49179. image: {
  49180. source: "./media/characters/keltre/back.svg",
  49181. extra: 1095/1053,
  49182. bottom: 17/1112
  49183. }
  49184. },
  49185. dressed: {
  49186. height: math.unit(5 + 2/12, "feet"),
  49187. weight: math.unit(110, "lb"),
  49188. name: "Dressed",
  49189. image: {
  49190. source: "./media/characters/keltre/dressed.svg",
  49191. extra: 1099/1057,
  49192. bottom: 22/1121
  49193. }
  49194. },
  49195. winter: {
  49196. height: math.unit(5 + 2/12, "feet"),
  49197. weight: math.unit(110, "lb"),
  49198. name: "Winter",
  49199. image: {
  49200. source: "./media/characters/keltre/winter.svg",
  49201. extra: 1099/1057,
  49202. bottom: 22/1121
  49203. }
  49204. },
  49205. head: {
  49206. height: math.unit(1.61 * 0.86, "feet"),
  49207. name: "Head",
  49208. image: {
  49209. source: "./media/characters/keltre/head.svg",
  49210. extra: 534/421,
  49211. bottom: 0/534
  49212. }
  49213. },
  49214. hand: {
  49215. height: math.unit(1.3 * 0.86, "feet"),
  49216. name: "Hand",
  49217. image: {
  49218. source: "./media/characters/keltre/hand.svg"
  49219. }
  49220. },
  49221. foot: {
  49222. height: math.unit(1.8 * 0.86, "feet"),
  49223. name: "Foot",
  49224. image: {
  49225. source: "./media/characters/keltre/foot.svg"
  49226. }
  49227. },
  49228. },
  49229. [
  49230. {
  49231. name: "Fine",
  49232. height: math.unit(1, "inch")
  49233. },
  49234. {
  49235. name: "Dimnutive",
  49236. height: math.unit(4, "inches")
  49237. },
  49238. {
  49239. name: "Tiny",
  49240. height: math.unit(1, "foot")
  49241. },
  49242. {
  49243. name: "Small",
  49244. height: math.unit(3, "feet")
  49245. },
  49246. {
  49247. name: "Normal",
  49248. height: math.unit(5 + 2/12, "feet"),
  49249. default: true
  49250. },
  49251. ]
  49252. ))
  49253. characterMakers.push(() => makeCharacter(
  49254. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49255. {
  49256. front: {
  49257. height: math.unit(6 + 2/12, "feet"),
  49258. name: "Front",
  49259. image: {
  49260. source: "./media/characters/nox/front.svg",
  49261. extra: 1917/1830,
  49262. bottom: 74/1991
  49263. }
  49264. },
  49265. back: {
  49266. height: math.unit(6 + 2/12, "feet"),
  49267. name: "Back",
  49268. image: {
  49269. source: "./media/characters/nox/back.svg",
  49270. extra: 1896/1815,
  49271. bottom: 21/1917
  49272. }
  49273. },
  49274. head: {
  49275. height: math.unit(1.1, "feet"),
  49276. name: "Head",
  49277. image: {
  49278. source: "./media/characters/nox/head.svg",
  49279. extra: 874/704,
  49280. bottom: 0/874
  49281. }
  49282. },
  49283. tattoo: {
  49284. height: math.unit(0.729, "feet"),
  49285. name: "Tattoo",
  49286. image: {
  49287. source: "./media/characters/nox/tattoo.svg"
  49288. }
  49289. },
  49290. },
  49291. [
  49292. {
  49293. name: "Normal",
  49294. height: math.unit(6 + 2/12, "feet")
  49295. },
  49296. {
  49297. name: "Gigamacro",
  49298. height: math.unit(2, "earths"),
  49299. default: true
  49300. },
  49301. {
  49302. name: "Cosmic",
  49303. height: math.unit(867, "yottameters")
  49304. },
  49305. ]
  49306. ))
  49307. characterMakers.push(() => makeCharacter(
  49308. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49309. {
  49310. front: {
  49311. height: math.unit(6, "feet"),
  49312. weight: math.unit(150, "lb"),
  49313. name: "Front",
  49314. image: {
  49315. source: "./media/characters/caspian/front.svg",
  49316. extra: 1443/1359,
  49317. bottom: 0/1443
  49318. }
  49319. },
  49320. back: {
  49321. height: math.unit(6, "feet"),
  49322. weight: math.unit(150, "lb"),
  49323. name: "Back",
  49324. image: {
  49325. source: "./media/characters/caspian/back.svg",
  49326. extra: 1379/1309,
  49327. bottom: 0/1379
  49328. }
  49329. },
  49330. head: {
  49331. height: math.unit(0.9, "feet"),
  49332. name: "Head",
  49333. image: {
  49334. source: "./media/characters/caspian/head.svg",
  49335. extra: 692/492,
  49336. bottom: 0/692
  49337. }
  49338. },
  49339. headAlt: {
  49340. height: math.unit(0.95, "feet"),
  49341. name: "Head (Alt)",
  49342. image: {
  49343. source: "./media/characters/caspian/head-alt.svg",
  49344. extra: 668/508,
  49345. bottom: 0/668
  49346. }
  49347. },
  49348. hand: {
  49349. height: math.unit(0.8, "feet"),
  49350. name: "Hand",
  49351. image: {
  49352. source: "./media/characters/caspian/hand.svg"
  49353. }
  49354. },
  49355. paw: {
  49356. height: math.unit(0.95, "feet"),
  49357. name: "Paw",
  49358. image: {
  49359. source: "./media/characters/caspian/paw.svg"
  49360. }
  49361. },
  49362. },
  49363. [
  49364. {
  49365. name: "Normal",
  49366. height: math.unit(162, "feet"),
  49367. default: true
  49368. },
  49369. ]
  49370. ))
  49371. characterMakers.push(() => makeCharacter(
  49372. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49373. {
  49374. front: {
  49375. height: math.unit(6, "feet"),
  49376. name: "Front",
  49377. image: {
  49378. source: "./media/characters/myra-aisling/front.svg",
  49379. extra: 1268/1166,
  49380. bottom: 73/1341
  49381. }
  49382. },
  49383. back: {
  49384. height: math.unit(6, "feet"),
  49385. name: "Back",
  49386. image: {
  49387. source: "./media/characters/myra-aisling/back.svg",
  49388. extra: 1249/1149,
  49389. bottom: 79/1328
  49390. }
  49391. },
  49392. dressed: {
  49393. height: math.unit(6, "feet"),
  49394. name: "Dressed",
  49395. image: {
  49396. source: "./media/characters/myra-aisling/dressed.svg",
  49397. extra: 1290/1189,
  49398. bottom: 47/1337
  49399. }
  49400. },
  49401. hand: {
  49402. height: math.unit(1.1, "feet"),
  49403. name: "Hand",
  49404. image: {
  49405. source: "./media/characters/myra-aisling/hand.svg"
  49406. }
  49407. },
  49408. paw: {
  49409. height: math.unit(1.23, "feet"),
  49410. name: "Paw",
  49411. image: {
  49412. source: "./media/characters/myra-aisling/paw.svg"
  49413. }
  49414. },
  49415. },
  49416. [
  49417. {
  49418. name: "Normal",
  49419. height: math.unit(160, "feet"),
  49420. default: true
  49421. },
  49422. ]
  49423. ))
  49424. characterMakers.push(() => makeCharacter(
  49425. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49426. {
  49427. front: {
  49428. height: math.unit(6, "feet"),
  49429. name: "Front",
  49430. image: {
  49431. source: "./media/characters/tenley-sidero/front.svg",
  49432. extra: 1365/1276,
  49433. bottom: 47/1412
  49434. }
  49435. },
  49436. back: {
  49437. height: math.unit(6, "feet"),
  49438. name: "Back",
  49439. image: {
  49440. source: "./media/characters/tenley-sidero/back.svg",
  49441. extra: 1383/1283,
  49442. bottom: 35/1418
  49443. }
  49444. },
  49445. dressed: {
  49446. height: math.unit(6, "feet"),
  49447. name: "Dressed",
  49448. image: {
  49449. source: "./media/characters/tenley-sidero/dressed.svg",
  49450. extra: 1364/1275,
  49451. bottom: 42/1406
  49452. }
  49453. },
  49454. head: {
  49455. height: math.unit(1.47, "feet"),
  49456. name: "Head",
  49457. image: {
  49458. source: "./media/characters/tenley-sidero/head.svg",
  49459. extra: 610/490,
  49460. bottom: 0/610
  49461. }
  49462. },
  49463. },
  49464. [
  49465. {
  49466. name: "Normal",
  49467. height: math.unit(154, "feet"),
  49468. default: true
  49469. },
  49470. ]
  49471. ))
  49472. characterMakers.push(() => makeCharacter(
  49473. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49474. {
  49475. front: {
  49476. height: math.unit(5, "inches"),
  49477. name: "Front",
  49478. image: {
  49479. source: "./media/characters/mallory/front.svg",
  49480. extra: 1919/1678,
  49481. bottom: 29/1948
  49482. }
  49483. },
  49484. hand: {
  49485. height: math.unit(0.73, "inches"),
  49486. name: "Hand",
  49487. image: {
  49488. source: "./media/characters/mallory/hand.svg"
  49489. }
  49490. },
  49491. paw: {
  49492. height: math.unit(0.68, "inches"),
  49493. name: "Paw",
  49494. image: {
  49495. source: "./media/characters/mallory/paw.svg"
  49496. }
  49497. },
  49498. },
  49499. [
  49500. {
  49501. name: "Small",
  49502. height: math.unit(5, "inches"),
  49503. default: true
  49504. },
  49505. ]
  49506. ))
  49507. characterMakers.push(() => makeCharacter(
  49508. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49509. {
  49510. naked: {
  49511. height: math.unit(6, "feet"),
  49512. name: "Naked",
  49513. image: {
  49514. source: "./media/characters/mab/naked.svg",
  49515. extra: 1855/1757,
  49516. bottom: 208/2063
  49517. }
  49518. },
  49519. outside: {
  49520. height: math.unit(6, "feet"),
  49521. name: "Outside",
  49522. image: {
  49523. source: "./media/characters/mab/outside.svg",
  49524. extra: 1855/1757,
  49525. bottom: 208/2063
  49526. }
  49527. },
  49528. party: {
  49529. height: math.unit(6, "feet"),
  49530. name: "Party",
  49531. image: {
  49532. source: "./media/characters/mab/party.svg",
  49533. extra: 1855/1757,
  49534. bottom: 208/2063
  49535. }
  49536. },
  49537. },
  49538. [
  49539. {
  49540. name: "Normal",
  49541. height: math.unit(165, "feet"),
  49542. default: true
  49543. },
  49544. ]
  49545. ))
  49546. characterMakers.push(() => makeCharacter(
  49547. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49548. {
  49549. feral: {
  49550. height: math.unit(12, "feet"),
  49551. weight: math.unit(20000, "lb"),
  49552. name: "Side",
  49553. image: {
  49554. source: "./media/characters/winter/feral.svg",
  49555. extra: 1286/943,
  49556. bottom: 112/1398
  49557. },
  49558. form: "feral",
  49559. default: true
  49560. },
  49561. feralNsfw: {
  49562. height: math.unit(12, "feet"),
  49563. weight: math.unit(20000, "lb"),
  49564. name: "Side (NSFW)",
  49565. image: {
  49566. source: "./media/characters/winter/feral-nsfw.svg",
  49567. extra: 1286/943,
  49568. bottom: 112/1398
  49569. },
  49570. form: "feral"
  49571. },
  49572. dick: {
  49573. height: math.unit(3.79, "feet"),
  49574. name: "Dick",
  49575. image: {
  49576. source: "./media/characters/winter/dick.svg"
  49577. },
  49578. form: "feral"
  49579. },
  49580. anthro: {
  49581. height: math.unit(12, "feet"),
  49582. weight: math.unit(10, "tons"),
  49583. name: "Anthro",
  49584. image: {
  49585. source: "./media/characters/winter/anthro.svg",
  49586. extra: 1701/1553,
  49587. bottom: 64/1765
  49588. },
  49589. form: "anthro",
  49590. default: true
  49591. },
  49592. },
  49593. [
  49594. {
  49595. name: "Big",
  49596. height: math.unit(12, "feet"),
  49597. default: true,
  49598. form: "feral"
  49599. },
  49600. {
  49601. name: "Big",
  49602. height: math.unit(12, "feet"),
  49603. default: true,
  49604. form: "anthro"
  49605. },
  49606. ],
  49607. {
  49608. "feral": {
  49609. name: "Feral",
  49610. default: true
  49611. },
  49612. "anthro": {
  49613. name: "Anthro"
  49614. }
  49615. }
  49616. ))
  49617. characterMakers.push(() => makeCharacter(
  49618. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49619. {
  49620. front: {
  49621. height: math.unit(4.1, "inches"),
  49622. name: "Front",
  49623. image: {
  49624. source: "./media/characters/alto/front.svg",
  49625. extra: 736/627,
  49626. bottom: 90/826
  49627. }
  49628. },
  49629. },
  49630. [
  49631. {
  49632. name: "Normal",
  49633. height: math.unit(4.1, "inches"),
  49634. default: true
  49635. },
  49636. ]
  49637. ))
  49638. characterMakers.push(() => makeCharacter(
  49639. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49640. {
  49641. sitting: {
  49642. height: math.unit(3, "feet"),
  49643. name: "Sitting",
  49644. image: {
  49645. source: "./media/characters/ratstrid-v/sitting.svg",
  49646. extra: 355/310,
  49647. bottom: 136/491
  49648. }
  49649. },
  49650. },
  49651. [
  49652. {
  49653. name: "Normal",
  49654. height: math.unit(3, "feet"),
  49655. default: true
  49656. },
  49657. ]
  49658. ))
  49659. characterMakers.push(() => makeCharacter(
  49660. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49661. {
  49662. back: {
  49663. height: math.unit(6, "feet"),
  49664. weight: math.unit(350, "lb"),
  49665. name: "Back",
  49666. image: {
  49667. source: "./media/characters/siz/back.svg",
  49668. extra: 1449/1274,
  49669. bottom: 13/1462
  49670. }
  49671. },
  49672. },
  49673. [
  49674. {
  49675. name: "Over-Overcompressed",
  49676. height: math.unit(8, "feet")
  49677. },
  49678. {
  49679. name: "Overcompressed",
  49680. height: math.unit(32, "feet")
  49681. },
  49682. {
  49683. name: "Compressed",
  49684. height: math.unit(128, "feet"),
  49685. default: true
  49686. },
  49687. {
  49688. name: "Half-Compressed",
  49689. height: math.unit(512, "feet")
  49690. },
  49691. {
  49692. name: "Quarter-Compressed",
  49693. height: math.unit(2048, "feet")
  49694. },
  49695. {
  49696. name: "Uncompressed?",
  49697. height: math.unit(8192, "feet")
  49698. },
  49699. ]
  49700. ))
  49701. characterMakers.push(() => makeCharacter(
  49702. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49703. {
  49704. front: {
  49705. height: math.unit(5 + 9/12, "feet"),
  49706. weight: math.unit(150, "lb"),
  49707. name: "Front",
  49708. image: {
  49709. source: "./media/characters/ven/front.svg",
  49710. extra: 1372/1320,
  49711. bottom: 73/1445
  49712. }
  49713. },
  49714. side: {
  49715. height: math.unit(5 + 9/12, "feet"),
  49716. weight: math.unit(1150, "lb"),
  49717. name: "Side",
  49718. image: {
  49719. source: "./media/characters/ven/side.svg",
  49720. extra: 1119/1070,
  49721. bottom: 42/1161
  49722. },
  49723. default: true
  49724. },
  49725. },
  49726. [
  49727. {
  49728. name: "Normal",
  49729. height: math.unit(5 + 9/12, "feet"),
  49730. default: true
  49731. },
  49732. ]
  49733. ))
  49734. characterMakers.push(() => makeCharacter(
  49735. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49736. {
  49737. front: {
  49738. height: math.unit(12, "feet"),
  49739. weight: math.unit(1000, "kg"),
  49740. name: "Front",
  49741. image: {
  49742. source: "./media/characters/maple/front.svg",
  49743. extra: 1193/1081,
  49744. bottom: 22/1215
  49745. }
  49746. },
  49747. },
  49748. [
  49749. {
  49750. name: "Compressed",
  49751. height: math.unit(7, "feet")
  49752. },
  49753. {
  49754. name: "Normal",
  49755. height: math.unit(12, "feet"),
  49756. default: true
  49757. },
  49758. ]
  49759. ))
  49760. characterMakers.push(() => makeCharacter(
  49761. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49762. {
  49763. front: {
  49764. height: math.unit(9, "feet"),
  49765. weight: math.unit(1500, "lb"),
  49766. name: "Front",
  49767. image: {
  49768. source: "./media/characters/nora/front.svg",
  49769. extra: 1348/1286,
  49770. bottom: 218/1566
  49771. }
  49772. },
  49773. erect: {
  49774. height: math.unit(9, "feet"),
  49775. weight: math.unit(11500, "lb"),
  49776. name: "Erect",
  49777. image: {
  49778. source: "./media/characters/nora/erect.svg",
  49779. extra: 1488/1433,
  49780. bottom: 133/1621
  49781. }
  49782. },
  49783. },
  49784. [
  49785. {
  49786. name: "Normal",
  49787. height: math.unit(9, "feet"),
  49788. default: true
  49789. },
  49790. ]
  49791. ))
  49792. characterMakers.push(() => makeCharacter(
  49793. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49794. {
  49795. front: {
  49796. height: math.unit(25, "feet"),
  49797. weight: math.unit(27500, "lb"),
  49798. name: "Front",
  49799. image: {
  49800. source: "./media/characters/north-caudin/front.svg",
  49801. extra: 1184/1082,
  49802. bottom: 23/1207
  49803. }
  49804. },
  49805. },
  49806. [
  49807. {
  49808. name: "Compressed",
  49809. height: math.unit(10, "feet")
  49810. },
  49811. {
  49812. name: "Normal",
  49813. height: math.unit(25, "feet"),
  49814. default: true
  49815. },
  49816. ]
  49817. ))
  49818. characterMakers.push(() => makeCharacter(
  49819. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49820. {
  49821. front: {
  49822. height: math.unit(9, "feet"),
  49823. weight: math.unit(1250, "lb"),
  49824. name: "Front",
  49825. image: {
  49826. source: "./media/characters/merrian/front.svg",
  49827. extra: 2393/2304,
  49828. bottom: 40/2433
  49829. }
  49830. },
  49831. },
  49832. [
  49833. {
  49834. name: "Normal",
  49835. height: math.unit(9, "feet"),
  49836. default: true
  49837. },
  49838. ]
  49839. ))
  49840. characterMakers.push(() => makeCharacter(
  49841. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49842. {
  49843. front: {
  49844. height: math.unit(9, "feet"),
  49845. weight: math.unit(1000, "lb"),
  49846. name: "Front",
  49847. image: {
  49848. source: "./media/characters/hazel/front.svg",
  49849. extra: 2351/2298,
  49850. bottom: 38/2389
  49851. }
  49852. },
  49853. },
  49854. [
  49855. {
  49856. name: "Normal",
  49857. height: math.unit(9, "feet"),
  49858. default: true
  49859. },
  49860. ]
  49861. ))
  49862. characterMakers.push(() => makeCharacter(
  49863. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49864. {
  49865. front: {
  49866. height: math.unit(13, "feet"),
  49867. weight: math.unit(3200, "lb"),
  49868. name: "Front",
  49869. image: {
  49870. source: "./media/characters/emma/front.svg",
  49871. extra: 2263/2029,
  49872. bottom: 68/2331
  49873. }
  49874. },
  49875. },
  49876. [
  49877. {
  49878. name: "Normal",
  49879. height: math.unit(13, "feet"),
  49880. default: true
  49881. },
  49882. ]
  49883. ))
  49884. characterMakers.push(() => makeCharacter(
  49885. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49886. {
  49887. front: {
  49888. height: math.unit(11 + 9/12, "feet"),
  49889. weight: math.unit(2500, "lb"),
  49890. name: "Front",
  49891. image: {
  49892. source: "./media/characters/ilumina/front.svg",
  49893. extra: 2248/2209,
  49894. bottom: 164/2412
  49895. }
  49896. },
  49897. },
  49898. [
  49899. {
  49900. name: "Normal",
  49901. height: math.unit(11 + 9/12, "feet"),
  49902. default: true
  49903. },
  49904. ]
  49905. ))
  49906. characterMakers.push(() => makeCharacter(
  49907. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49908. {
  49909. front: {
  49910. height: math.unit(8 + 10/12, "feet"),
  49911. weight: math.unit(1350, "lb"),
  49912. name: "Front",
  49913. image: {
  49914. source: "./media/characters/moonshine/front.svg",
  49915. extra: 2395/2288,
  49916. bottom: 40/2435
  49917. }
  49918. },
  49919. },
  49920. [
  49921. {
  49922. name: "Normal",
  49923. height: math.unit(8 + 10/12, "feet"),
  49924. default: true
  49925. },
  49926. ]
  49927. ))
  49928. characterMakers.push(() => makeCharacter(
  49929. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49930. {
  49931. front: {
  49932. height: math.unit(14, "feet"),
  49933. weight: math.unit(3400, "lb"),
  49934. name: "Front",
  49935. image: {
  49936. source: "./media/characters/aletia/front.svg",
  49937. extra: 1185/1052,
  49938. bottom: 21/1206
  49939. }
  49940. },
  49941. },
  49942. [
  49943. {
  49944. name: "Compressed",
  49945. height: math.unit(8, "feet")
  49946. },
  49947. {
  49948. name: "Normal",
  49949. height: math.unit(14, "feet"),
  49950. default: true
  49951. },
  49952. ]
  49953. ))
  49954. characterMakers.push(() => makeCharacter(
  49955. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49956. {
  49957. front: {
  49958. height: math.unit(17, "feet"),
  49959. weight: math.unit(6500, "lb"),
  49960. name: "Front",
  49961. image: {
  49962. source: "./media/characters/deidra/front.svg",
  49963. extra: 1201/1081,
  49964. bottom: 16/1217
  49965. }
  49966. },
  49967. },
  49968. [
  49969. {
  49970. name: "Compressed",
  49971. height: math.unit(9 + 6/12, "feet")
  49972. },
  49973. {
  49974. name: "Normal",
  49975. height: math.unit(17, "feet"),
  49976. default: true
  49977. },
  49978. ]
  49979. ))
  49980. characterMakers.push(() => makeCharacter(
  49981. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49982. {
  49983. front: {
  49984. height: math.unit(7 + 4/12, "feet"),
  49985. weight: math.unit(280, "lb"),
  49986. name: "Front",
  49987. image: {
  49988. source: "./media/characters/freki-yrmori/front.svg",
  49989. extra: 1286/1182,
  49990. bottom: 29/1315
  49991. }
  49992. },
  49993. maw: {
  49994. height: math.unit(0.9, "feet"),
  49995. name: "Maw",
  49996. image: {
  49997. source: "./media/characters/freki-yrmori/maw.svg"
  49998. }
  49999. },
  50000. },
  50001. [
  50002. {
  50003. name: "Normal",
  50004. height: math.unit(7 + 4/12, "feet"),
  50005. default: true
  50006. },
  50007. {
  50008. name: "Macro",
  50009. height: math.unit(38.5, "meters")
  50010. },
  50011. ]
  50012. ))
  50013. characterMakers.push(() => makeCharacter(
  50014. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50015. {
  50016. side: {
  50017. height: math.unit(47.2, "meters"),
  50018. weight: math.unit(10000, "tons"),
  50019. name: "Side",
  50020. image: {
  50021. source: "./media/characters/aetherios/side.svg",
  50022. extra: 2363/642,
  50023. bottom: 221/2584
  50024. }
  50025. },
  50026. top: {
  50027. height: math.unit(240, "meters"),
  50028. weight: math.unit(10000, "tons"),
  50029. name: "Top",
  50030. image: {
  50031. source: "./media/characters/aetherios/top.svg"
  50032. }
  50033. },
  50034. bottom: {
  50035. height: math.unit(240, "meters"),
  50036. weight: math.unit(10000, "tons"),
  50037. name: "Bottom",
  50038. image: {
  50039. source: "./media/characters/aetherios/bottom.svg"
  50040. }
  50041. },
  50042. head: {
  50043. height: math.unit(38.6, "meters"),
  50044. name: "Head",
  50045. image: {
  50046. source: "./media/characters/aetherios/head.svg",
  50047. extra: 1335/1112,
  50048. bottom: 0/1335
  50049. }
  50050. },
  50051. front: {
  50052. height: math.unit(29, "meters"),
  50053. name: "Front",
  50054. image: {
  50055. source: "./media/characters/aetherios/front.svg",
  50056. extra: 1266/953,
  50057. bottom: 158/1424
  50058. }
  50059. },
  50060. maw: {
  50061. height: math.unit(16.37, "meters"),
  50062. name: "Maw",
  50063. image: {
  50064. source: "./media/characters/aetherios/maw.svg",
  50065. extra: 748/637,
  50066. bottom: 0/748
  50067. },
  50068. extraAttributes: {
  50069. preyCapacity: {
  50070. name: "Capacity",
  50071. power: 3,
  50072. type: "volume",
  50073. base: math.unit(1000, "people")
  50074. },
  50075. tongueSize: {
  50076. name: "Tongue Size",
  50077. power: 2,
  50078. type: "area",
  50079. base: math.unit(21, "m^2")
  50080. }
  50081. }
  50082. },
  50083. forepaw: {
  50084. height: math.unit(18, "meters"),
  50085. name: "Forepaw",
  50086. image: {
  50087. source: "./media/characters/aetherios/forepaw.svg"
  50088. }
  50089. },
  50090. hindpaw: {
  50091. height: math.unit(23, "meters"),
  50092. name: "Hindpaw",
  50093. image: {
  50094. source: "./media/characters/aetherios/hindpaw.svg"
  50095. }
  50096. },
  50097. genitals: {
  50098. height: math.unit(42, "meters"),
  50099. name: "Genitals",
  50100. image: {
  50101. source: "./media/characters/aetherios/genitals.svg"
  50102. }
  50103. },
  50104. },
  50105. [
  50106. {
  50107. name: "Normal",
  50108. height: math.unit(47.2, "meters"),
  50109. default: true
  50110. },
  50111. {
  50112. name: "Macro",
  50113. height: math.unit(160, "meters")
  50114. },
  50115. {
  50116. name: "Mega",
  50117. height: math.unit(1.87, "km")
  50118. },
  50119. {
  50120. name: "Giga",
  50121. height: math.unit(40000, "km")
  50122. },
  50123. {
  50124. name: "Stellar",
  50125. height: math.unit(158000000, "km")
  50126. },
  50127. {
  50128. name: "Cosmic",
  50129. height: math.unit(9.46e12, "km")
  50130. },
  50131. ]
  50132. ))
  50133. characterMakers.push(() => makeCharacter(
  50134. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50135. {
  50136. front: {
  50137. height: math.unit(5 + 4/12, "feet"),
  50138. weight: math.unit(80, "lb"),
  50139. name: "Front",
  50140. image: {
  50141. source: "./media/characters/mizu-gieeg/front.svg",
  50142. extra: 850/709,
  50143. bottom: 52/902
  50144. }
  50145. },
  50146. back: {
  50147. height: math.unit(5 + 4/12, "feet"),
  50148. weight: math.unit(80, "lb"),
  50149. name: "Back",
  50150. image: {
  50151. source: "./media/characters/mizu-gieeg/back.svg",
  50152. extra: 882/745,
  50153. bottom: 25/907
  50154. }
  50155. },
  50156. },
  50157. [
  50158. {
  50159. name: "Normal",
  50160. height: math.unit(5 + 4/12, "feet"),
  50161. default: true
  50162. },
  50163. ]
  50164. ))
  50165. characterMakers.push(() => makeCharacter(
  50166. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50167. {
  50168. front: {
  50169. height: math.unit(6, "feet"),
  50170. name: "Front",
  50171. image: {
  50172. source: "./media/characters/roselle-st-papier/front.svg",
  50173. extra: 1430/1280,
  50174. bottom: 37/1467
  50175. }
  50176. },
  50177. back: {
  50178. height: math.unit(6, "feet"),
  50179. name: "Back",
  50180. image: {
  50181. source: "./media/characters/roselle-st-papier/back.svg",
  50182. extra: 1491/1296,
  50183. bottom: 23/1514
  50184. }
  50185. },
  50186. ear: {
  50187. height: math.unit(1.26, "feet"),
  50188. name: "Ear",
  50189. image: {
  50190. source: "./media/characters/roselle-st-papier/ear.svg"
  50191. }
  50192. },
  50193. },
  50194. [
  50195. {
  50196. name: "Normal",
  50197. height: math.unit(150, "feet"),
  50198. default: true
  50199. },
  50200. ]
  50201. ))
  50202. characterMakers.push(() => makeCharacter(
  50203. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50204. {
  50205. front: {
  50206. height: math.unit(1, "inches"),
  50207. name: "Front",
  50208. image: {
  50209. source: "./media/characters/valargent/front.svg",
  50210. extra: 1825/1694,
  50211. bottom: 62/1887
  50212. }
  50213. },
  50214. back: {
  50215. height: math.unit(1, "inches"),
  50216. name: "Back",
  50217. image: {
  50218. source: "./media/characters/valargent/back.svg",
  50219. extra: 1775/1682,
  50220. bottom: 88/1863
  50221. }
  50222. },
  50223. },
  50224. [
  50225. {
  50226. name: "Micro",
  50227. height: math.unit(1, "inch"),
  50228. default: true
  50229. },
  50230. ]
  50231. ))
  50232. characterMakers.push(() => makeCharacter(
  50233. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50234. {
  50235. front: {
  50236. height: math.unit(3.4, "meters"),
  50237. name: "Front",
  50238. image: {
  50239. source: "./media/characters/zarina/front.svg",
  50240. extra: 1733/1425,
  50241. bottom: 93/1826
  50242. }
  50243. },
  50244. squatting: {
  50245. height: math.unit(2.14, "meters"),
  50246. name: "Squatting",
  50247. image: {
  50248. source: "./media/characters/zarina/squatting.svg",
  50249. extra: 1073/788,
  50250. bottom: 63/1136
  50251. }
  50252. },
  50253. back: {
  50254. height: math.unit(2.14, "meters"),
  50255. name: "Back",
  50256. image: {
  50257. source: "./media/characters/zarina/back.svg",
  50258. extra: 1128/885,
  50259. bottom: 0/1128
  50260. }
  50261. },
  50262. },
  50263. [
  50264. {
  50265. name: "Normal",
  50266. height: math.unit(3.4, "meters"),
  50267. default: true
  50268. },
  50269. {
  50270. name: "Big",
  50271. height: math.unit(5, "meters")
  50272. },
  50273. {
  50274. name: "Macro",
  50275. height: math.unit(110, "meters")
  50276. },
  50277. ]
  50278. ))
  50279. characterMakers.push(() => makeCharacter(
  50280. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50281. {
  50282. front: {
  50283. height: math.unit(7, "feet"),
  50284. name: "Front",
  50285. image: {
  50286. source: "./media/characters/ventus-astro-fox/front.svg",
  50287. extra: 1792/1623,
  50288. bottom: 28/1820
  50289. }
  50290. },
  50291. back: {
  50292. height: math.unit(7, "feet"),
  50293. name: "Back",
  50294. image: {
  50295. source: "./media/characters/ventus-astro-fox/back.svg",
  50296. extra: 1789/1620,
  50297. bottom: 31/1820
  50298. }
  50299. },
  50300. outfit: {
  50301. height: math.unit(7, "feet"),
  50302. name: "Outfit",
  50303. image: {
  50304. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50305. extra: 1054/925,
  50306. bottom: 15/1069
  50307. }
  50308. },
  50309. head: {
  50310. height: math.unit(1.12, "feet"),
  50311. name: "Head",
  50312. image: {
  50313. source: "./media/characters/ventus-astro-fox/head.svg",
  50314. extra: 866/504,
  50315. bottom: 0/866
  50316. }
  50317. },
  50318. hand: {
  50319. height: math.unit(1, "feet"),
  50320. name: "Hand",
  50321. image: {
  50322. source: "./media/characters/ventus-astro-fox/hand.svg"
  50323. }
  50324. },
  50325. paw: {
  50326. height: math.unit(1.5, "feet"),
  50327. name: "Paw",
  50328. image: {
  50329. source: "./media/characters/ventus-astro-fox/paw.svg"
  50330. }
  50331. },
  50332. },
  50333. [
  50334. {
  50335. name: "Normal",
  50336. height: math.unit(7, "feet"),
  50337. default: true
  50338. },
  50339. {
  50340. name: "Macro",
  50341. height: math.unit(200, "feet")
  50342. },
  50343. {
  50344. name: "Cosmic",
  50345. height: math.unit(3, "universes")
  50346. },
  50347. ]
  50348. ))
  50349. characterMakers.push(() => makeCharacter(
  50350. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50351. {
  50352. front: {
  50353. height: math.unit(3, "meters"),
  50354. weight: math.unit(7000, "lb"),
  50355. name: "Front",
  50356. image: {
  50357. source: "./media/characters/core-t/front.svg",
  50358. extra: 5729/4941,
  50359. bottom: 1129/6858
  50360. }
  50361. },
  50362. },
  50363. [
  50364. {
  50365. name: "Big",
  50366. height: math.unit(3, "meters"),
  50367. default: true
  50368. },
  50369. ]
  50370. ))
  50371. characterMakers.push(() => makeCharacter(
  50372. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50373. {
  50374. normal: {
  50375. height: math.unit(6 + 6/12, "feet"),
  50376. weight: math.unit(275, "lb"),
  50377. name: "Front",
  50378. image: {
  50379. source: "./media/characters/cadbunny/normal.svg",
  50380. extra: 1129/947,
  50381. bottom: 93/1222
  50382. },
  50383. default: true,
  50384. form: "normal"
  50385. },
  50386. gigantamax: {
  50387. height: math.unit(26, "feet"),
  50388. weight: math.unit(16000, "lb"),
  50389. name: "Front",
  50390. image: {
  50391. source: "./media/characters/cadbunny/gigantamax.svg",
  50392. extra: 1133/944,
  50393. bottom: 90/1223
  50394. },
  50395. default: true,
  50396. form: "gigantamax"
  50397. },
  50398. },
  50399. [
  50400. {
  50401. name: "Normal",
  50402. height: math.unit(6 + 6/12, "feet"),
  50403. default: true,
  50404. form: "normal"
  50405. },
  50406. {
  50407. name: "Small",
  50408. height: math.unit(26, "feet"),
  50409. default: true,
  50410. form: "gigantamax"
  50411. },
  50412. {
  50413. name: "Large",
  50414. height: math.unit(78, "feet"),
  50415. form: "gigantamax"
  50416. },
  50417. ],
  50418. {
  50419. "normal": {
  50420. name: "Normal",
  50421. default: true
  50422. },
  50423. "gigantamax": {
  50424. name: "Gigantamax"
  50425. }
  50426. }
  50427. ))
  50428. characterMakers.push(() => makeCharacter(
  50429. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50430. {
  50431. anthroFront: {
  50432. height: math.unit(8, "feet"),
  50433. weight: math.unit(300, "lb"),
  50434. name: "Front",
  50435. image: {
  50436. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50437. extra: 1272/1176,
  50438. bottom: 53/1325
  50439. },
  50440. form: "anthro",
  50441. default: true
  50442. },
  50443. feralSide: {
  50444. height: math.unit(4, "feet"),
  50445. weight: math.unit(250, "lb"),
  50446. name: "Side",
  50447. image: {
  50448. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50449. extra: 731/621,
  50450. bottom: 0/731
  50451. },
  50452. form: "feral",
  50453. default: true
  50454. },
  50455. },
  50456. [
  50457. {
  50458. name: "Regular",
  50459. height: math.unit(8, "feet"),
  50460. form: "anthro"
  50461. },
  50462. {
  50463. name: "Macro",
  50464. height: math.unit(250, "feet"),
  50465. form: "anthro",
  50466. default: true
  50467. },
  50468. {
  50469. name: "Regular",
  50470. height: math.unit(4, "feet"),
  50471. form: "feral"
  50472. },
  50473. {
  50474. name: "Macro",
  50475. height: math.unit(125, "feet"),
  50476. form: "feral",
  50477. default: true
  50478. },
  50479. ],
  50480. {
  50481. "anthro": {
  50482. name: "Anthro",
  50483. default: true
  50484. },
  50485. "feral": {
  50486. name: "Feral",
  50487. },
  50488. }
  50489. ))
  50490. characterMakers.push(() => makeCharacter(
  50491. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50492. {
  50493. front: {
  50494. height: math.unit(11 + 10/12, "feet"),
  50495. weight: math.unit(1587, "kg"),
  50496. name: "Front",
  50497. image: {
  50498. source: "./media/characters/maple-javira-dragon/front.svg",
  50499. extra: 1136/744,
  50500. bottom: 73/1209
  50501. }
  50502. },
  50503. side: {
  50504. height: math.unit(11 + 10/12, "feet"),
  50505. weight: math.unit(1587, "kg"),
  50506. name: "Side",
  50507. image: {
  50508. source: "./media/characters/maple-javira-dragon/side.svg",
  50509. extra: 712/505,
  50510. bottom: 17/729
  50511. }
  50512. },
  50513. head: {
  50514. height: math.unit(8.05, "feet"),
  50515. name: "Head",
  50516. image: {
  50517. source: "./media/characters/maple-javira-dragon/head.svg",
  50518. extra: 1420/1344,
  50519. bottom: 0/1420
  50520. }
  50521. },
  50522. },
  50523. [
  50524. {
  50525. name: "Normal",
  50526. height: math.unit(11 + 10/12, "feet"),
  50527. default: true
  50528. },
  50529. ]
  50530. ))
  50531. characterMakers.push(() => makeCharacter(
  50532. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50533. {
  50534. front: {
  50535. height: math.unit(117, "cm"),
  50536. weight: math.unit(50, "kg"),
  50537. name: "Front",
  50538. image: {
  50539. source: "./media/characters/sonia-wyverntail/front.svg",
  50540. extra: 708/592,
  50541. bottom: 25/733
  50542. }
  50543. },
  50544. },
  50545. [
  50546. {
  50547. name: "Normal",
  50548. height: math.unit(117, "cm"),
  50549. default: true
  50550. },
  50551. ]
  50552. ))
  50553. characterMakers.push(() => makeCharacter(
  50554. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50555. {
  50556. front: {
  50557. height: math.unit(6 + 5/12, "feet"),
  50558. name: "Front",
  50559. image: {
  50560. source: "./media/characters/micah/front.svg",
  50561. extra: 1758/1546,
  50562. bottom: 214/1972
  50563. }
  50564. },
  50565. },
  50566. [
  50567. {
  50568. name: "Normal",
  50569. height: math.unit(6 + 5/12, "feet"),
  50570. default: true
  50571. },
  50572. ]
  50573. ))
  50574. characterMakers.push(() => makeCharacter(
  50575. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50576. {
  50577. front: {
  50578. height: math.unit(5 + 10/12, "feet"),
  50579. weight: math.unit(220, "lb"),
  50580. name: "Front",
  50581. image: {
  50582. source: "./media/characters/zarya/front.svg",
  50583. extra: 593/572,
  50584. bottom: 50/643
  50585. }
  50586. },
  50587. back: {
  50588. height: math.unit(5 + 10/12, "feet"),
  50589. weight: math.unit(220, "lb"),
  50590. name: "Back",
  50591. image: {
  50592. source: "./media/characters/zarya/back.svg",
  50593. extra: 603/582,
  50594. bottom: 38/641
  50595. }
  50596. },
  50597. },
  50598. [
  50599. {
  50600. name: "Normal",
  50601. height: math.unit(5 + 10/12, "feet"),
  50602. default: true
  50603. },
  50604. ]
  50605. ))
  50606. characterMakers.push(() => makeCharacter(
  50607. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50608. {
  50609. front: {
  50610. height: math.unit(7.5, "feet"),
  50611. name: "Front",
  50612. image: {
  50613. source: "./media/characters/sven-hatisson/front.svg",
  50614. extra: 917/857,
  50615. bottom: 42/959
  50616. }
  50617. },
  50618. back: {
  50619. height: math.unit(7.5, "feet"),
  50620. name: "Back",
  50621. image: {
  50622. source: "./media/characters/sven-hatisson/back.svg",
  50623. extra: 903/856,
  50624. bottom: 15/918
  50625. }
  50626. },
  50627. },
  50628. [
  50629. {
  50630. name: "Base Height",
  50631. height: math.unit(7.5, "feet")
  50632. },
  50633. {
  50634. name: "Usual Height",
  50635. height: math.unit(13.5, "feet"),
  50636. default: true
  50637. },
  50638. {
  50639. name: "Smaller Macro",
  50640. height: math.unit(85, "feet")
  50641. },
  50642. {
  50643. name: "Moderate Macro",
  50644. height: math.unit(320, "feet")
  50645. },
  50646. {
  50647. name: "Large Macro",
  50648. height: math.unit(1000, "feet")
  50649. },
  50650. {
  50651. name: "Largest Size",
  50652. height: math.unit(2, "miles")
  50653. },
  50654. ]
  50655. ))
  50656. characterMakers.push(() => makeCharacter(
  50657. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50658. {
  50659. side: {
  50660. height: math.unit(1.8, "meters"),
  50661. weight: math.unit(275, "kg"),
  50662. name: "Side",
  50663. image: {
  50664. source: "./media/characters/terra/side.svg",
  50665. extra: 1273/1147,
  50666. bottom: 0/1273
  50667. }
  50668. },
  50669. },
  50670. [
  50671. {
  50672. name: "Normal",
  50673. height: math.unit(16.2, "meters"),
  50674. default: true
  50675. },
  50676. ]
  50677. ))
  50678. characterMakers.push(() => makeCharacter(
  50679. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50680. {
  50681. borzoiFront: {
  50682. height: math.unit(6 + 9/12, "feet"),
  50683. name: "Front",
  50684. image: {
  50685. source: "./media/characters/rae/borzoi-front.svg",
  50686. extra: 1161/1098,
  50687. bottom: 31/1192
  50688. },
  50689. form: "borzoi",
  50690. default: true
  50691. },
  50692. werewolfFront: {
  50693. height: math.unit(8 + 7/12, "feet"),
  50694. name: "Front",
  50695. image: {
  50696. source: "./media/characters/rae/werewolf-front.svg",
  50697. extra: 1411/1334,
  50698. bottom: 127/1538
  50699. },
  50700. form: "werewolf",
  50701. default: true
  50702. },
  50703. },
  50704. [
  50705. {
  50706. name: "Normal",
  50707. height: math.unit(6 + 9/12, "feet"),
  50708. default: true,
  50709. form: "borzoi"
  50710. },
  50711. {
  50712. name: "Normal",
  50713. height: math.unit(8 + 7/12, "feet"),
  50714. default: true,
  50715. form: "werewolf"
  50716. },
  50717. ],
  50718. {
  50719. "borzoi": {
  50720. name: "Borzoi",
  50721. default: true
  50722. },
  50723. "werewolf": {
  50724. name: "Werewolf",
  50725. },
  50726. }
  50727. ))
  50728. characterMakers.push(() => makeCharacter(
  50729. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50730. {
  50731. front: {
  50732. height: math.unit(8 + 7/12, "feet"),
  50733. weight: math.unit(482, "lb"),
  50734. name: "Front",
  50735. image: {
  50736. source: "./media/characters/kit/front.svg",
  50737. extra: 1247/1103,
  50738. bottom: 41/1288
  50739. }
  50740. },
  50741. back: {
  50742. height: math.unit(8 + 7/12, "feet"),
  50743. weight: math.unit(482, "lb"),
  50744. name: "Back",
  50745. image: {
  50746. source: "./media/characters/kit/back.svg",
  50747. extra: 1252/1123,
  50748. bottom: 21/1273
  50749. }
  50750. },
  50751. paw: {
  50752. height: math.unit(1.46, "feet"),
  50753. name: "Paw",
  50754. image: {
  50755. source: "./media/characters/kit/paw.svg"
  50756. }
  50757. },
  50758. },
  50759. [
  50760. {
  50761. name: "Normal",
  50762. height: math.unit(2.61, "meters"),
  50763. default: true
  50764. },
  50765. {
  50766. name: "\"Tall\"",
  50767. height: math.unit(8.21, "meters")
  50768. },
  50769. {
  50770. name: "Tall",
  50771. height: math.unit(19.6, "meters")
  50772. },
  50773. {
  50774. name: "Very Tall",
  50775. height: math.unit(57.91, "meters")
  50776. },
  50777. {
  50778. name: "Semi-Macro",
  50779. height: math.unit(138.64, "meters")
  50780. },
  50781. {
  50782. name: "Macro",
  50783. height: math.unit(831.99, "meters")
  50784. },
  50785. {
  50786. name: "EX-Macro",
  50787. height: math.unit(96451121, "meters")
  50788. },
  50789. {
  50790. name: "S1-Omnipotent",
  50791. height: math.unit(4.42074e+9, "meters")
  50792. },
  50793. {
  50794. name: "S2-Omnipotent",
  50795. height: math.unit(9.42074e+17, "meters")
  50796. },
  50797. {
  50798. name: "Omnipotent",
  50799. height: math.unit(4.23112e+24, "meters")
  50800. },
  50801. {
  50802. name: "Hypergod",
  50803. height: math.unit(5.05176e+27, "meters")
  50804. },
  50805. {
  50806. name: "Hypergod-EX",
  50807. height: math.unit(9.45532e+49, "meters")
  50808. },
  50809. {
  50810. name: "Hypergod-SP",
  50811. height: math.unit(9.45532e+195, "meters")
  50812. },
  50813. ]
  50814. ))
  50815. characterMakers.push(() => makeCharacter(
  50816. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50817. {
  50818. side: {
  50819. height: math.unit(0.6, "meters"),
  50820. weight: math.unit(24, "kg"),
  50821. name: "Side",
  50822. image: {
  50823. source: "./media/characters/celeste/side.svg",
  50824. extra: 810/517,
  50825. bottom: 53/863
  50826. }
  50827. },
  50828. },
  50829. [
  50830. {
  50831. name: "Velociraptor",
  50832. height: math.unit(0.6, "meters"),
  50833. default: true
  50834. },
  50835. {
  50836. name: "Utahraptor",
  50837. height: math.unit(1.8, "meters")
  50838. },
  50839. {
  50840. name: "Gallimimus",
  50841. height: math.unit(4.0, "meters")
  50842. },
  50843. {
  50844. name: "Large",
  50845. height: math.unit(20, "meters")
  50846. },
  50847. {
  50848. name: "Planetary",
  50849. height: math.unit(50, "megameters")
  50850. },
  50851. {
  50852. name: "Stellar",
  50853. height: math.unit(1.5, "gigameters")
  50854. },
  50855. {
  50856. name: "Galactic",
  50857. height: math.unit(100, "exameters")
  50858. },
  50859. ]
  50860. ))
  50861. characterMakers.push(() => makeCharacter(
  50862. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50863. {
  50864. front: {
  50865. height: math.unit(6, "feet"),
  50866. weight: math.unit(210, "lb"),
  50867. name: "Front",
  50868. image: {
  50869. source: "./media/characters/glacia/front.svg",
  50870. extra: 958/901,
  50871. bottom: 45/1003
  50872. }
  50873. },
  50874. },
  50875. [
  50876. {
  50877. name: "Macro",
  50878. height: math.unit(1000, "meters"),
  50879. default: true
  50880. },
  50881. ]
  50882. ))
  50883. characterMakers.push(() => makeCharacter(
  50884. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50885. {
  50886. front: {
  50887. height: math.unit(4, "meters"),
  50888. name: "Front",
  50889. image: {
  50890. source: "./media/characters/giri/front.svg",
  50891. extra: 966/894,
  50892. bottom: 21/987
  50893. }
  50894. },
  50895. },
  50896. [
  50897. {
  50898. name: "Normal",
  50899. height: math.unit(4, "meters"),
  50900. default: true
  50901. },
  50902. ]
  50903. ))
  50904. characterMakers.push(() => makeCharacter(
  50905. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50906. {
  50907. back: {
  50908. height: math.unit(4, "feet"),
  50909. weight: math.unit(37, "lb"),
  50910. name: "Back",
  50911. image: {
  50912. source: "./media/characters/tin/back.svg",
  50913. extra: 845/780,
  50914. bottom: 28/873
  50915. }
  50916. },
  50917. },
  50918. [
  50919. {
  50920. name: "Normal",
  50921. height: math.unit(4, "feet"),
  50922. default: true
  50923. },
  50924. ]
  50925. ))
  50926. characterMakers.push(() => makeCharacter(
  50927. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50928. {
  50929. front: {
  50930. height: math.unit(25, "feet"),
  50931. name: "Front",
  50932. image: {
  50933. source: "./media/characters/cadenza-vivace/front.svg",
  50934. extra: 1842/1578,
  50935. bottom: 30/1872
  50936. }
  50937. },
  50938. },
  50939. [
  50940. {
  50941. name: "Macro",
  50942. height: math.unit(25, "feet"),
  50943. default: true
  50944. },
  50945. ]
  50946. ))
  50947. characterMakers.push(() => makeCharacter(
  50948. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50949. {
  50950. front: {
  50951. height: math.unit(10, "feet"),
  50952. weight: math.unit(625, "kg"),
  50953. name: "Front",
  50954. image: {
  50955. source: "./media/characters/zain/front.svg",
  50956. extra: 1682/1498,
  50957. bottom: 223/1905
  50958. }
  50959. },
  50960. back: {
  50961. height: math.unit(10, "feet"),
  50962. weight: math.unit(625, "kg"),
  50963. name: "Back",
  50964. image: {
  50965. source: "./media/characters/zain/back.svg",
  50966. extra: 1814/1657,
  50967. bottom: 152/1966
  50968. }
  50969. },
  50970. head: {
  50971. height: math.unit(10, "feet"),
  50972. weight: math.unit(625, "kg"),
  50973. name: "Head",
  50974. image: {
  50975. source: "./media/characters/zain/head.svg",
  50976. extra: 1059/762,
  50977. bottom: 0/1059
  50978. }
  50979. },
  50980. },
  50981. [
  50982. {
  50983. name: "Normal",
  50984. height: math.unit(10, "feet"),
  50985. default: true
  50986. },
  50987. ]
  50988. ))
  50989. characterMakers.push(() => makeCharacter(
  50990. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50991. {
  50992. front: {
  50993. height: math.unit(6 + 5/12, "feet"),
  50994. weight: math.unit(750, "lb"),
  50995. name: "Front",
  50996. image: {
  50997. source: "./media/characters/ruchex/front.svg",
  50998. extra: 877/820,
  50999. bottom: 17/894
  51000. },
  51001. extraAttributes: {
  51002. "width": {
  51003. name: "Width",
  51004. power: 1,
  51005. type: "length",
  51006. base: math.unit(4.757, "feet")
  51007. },
  51008. }
  51009. },
  51010. },
  51011. [
  51012. {
  51013. name: "Normal",
  51014. height: math.unit(6 + 5/12, "feet"),
  51015. default: true
  51016. },
  51017. ]
  51018. ))
  51019. characterMakers.push(() => makeCharacter(
  51020. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51021. {
  51022. dressedFront: {
  51023. height: math.unit(191, "cm"),
  51024. weight: math.unit(80, "kg"),
  51025. name: "Front",
  51026. image: {
  51027. source: "./media/characters/buster/dressed-front.svg",
  51028. extra: 1022/973,
  51029. bottom: 69/1091
  51030. }
  51031. },
  51032. dressedBack: {
  51033. height: math.unit(191, "cm"),
  51034. weight: math.unit(80, "kg"),
  51035. name: "Back",
  51036. image: {
  51037. source: "./media/characters/buster/dressed-back.svg",
  51038. extra: 1018/970,
  51039. bottom: 55/1073
  51040. }
  51041. },
  51042. nudeFront: {
  51043. height: math.unit(191, "cm"),
  51044. weight: math.unit(80, "kg"),
  51045. name: "Front (Nude)",
  51046. image: {
  51047. source: "./media/characters/buster/nude-front.svg",
  51048. extra: 1022/973,
  51049. bottom: 69/1091
  51050. }
  51051. },
  51052. nudeBack: {
  51053. height: math.unit(191, "cm"),
  51054. weight: math.unit(80, "kg"),
  51055. name: "Back (Nude)",
  51056. image: {
  51057. source: "./media/characters/buster/nude-back.svg",
  51058. extra: 1018/970,
  51059. bottom: 55/1073
  51060. }
  51061. },
  51062. dick: {
  51063. height: math.unit(2.59, "feet"),
  51064. name: "Dick",
  51065. image: {
  51066. source: "./media/characters/buster/dick.svg"
  51067. }
  51068. },
  51069. ass: {
  51070. height: math.unit(1.2, "feet"),
  51071. name: "Ass",
  51072. image: {
  51073. source: "./media/characters/buster/ass.svg"
  51074. }
  51075. },
  51076. },
  51077. [
  51078. {
  51079. name: "Normal",
  51080. height: math.unit(191, "cm"),
  51081. default: true
  51082. },
  51083. ]
  51084. ))
  51085. characterMakers.push(() => makeCharacter(
  51086. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51087. {
  51088. side: {
  51089. height: math.unit(8.1, "feet"),
  51090. weight: math.unit(3500, "lb"),
  51091. name: "Side",
  51092. image: {
  51093. source: "./media/characters/sonya/side.svg",
  51094. extra: 1730/1317,
  51095. bottom: 86/1816
  51096. }
  51097. },
  51098. },
  51099. [
  51100. {
  51101. name: "Normal",
  51102. height: math.unit(8.1, "feet"),
  51103. default: true
  51104. },
  51105. ]
  51106. ))
  51107. characterMakers.push(() => makeCharacter(
  51108. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51109. {
  51110. front: {
  51111. height: math.unit(6, "feet"),
  51112. weight: math.unit(150, "lb"),
  51113. name: "Front",
  51114. image: {
  51115. source: "./media/characters/cadence-andrysiak/front.svg",
  51116. extra: 1164/1121,
  51117. bottom: 60/1224
  51118. }
  51119. },
  51120. back: {
  51121. height: math.unit(6, "feet"),
  51122. weight: math.unit(150, "lb"),
  51123. name: "Back",
  51124. image: {
  51125. source: "./media/characters/cadence-andrysiak/back.svg",
  51126. extra: 1200/1165,
  51127. bottom: 9/1209
  51128. }
  51129. },
  51130. dressed: {
  51131. height: math.unit(6, "feet"),
  51132. weight: math.unit(150, "lb"),
  51133. name: "Dressed",
  51134. image: {
  51135. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51136. extra: 1164/1121,
  51137. bottom: 60/1224
  51138. }
  51139. },
  51140. },
  51141. [
  51142. {
  51143. name: "Micro",
  51144. height: math.unit(1, "mm")
  51145. },
  51146. {
  51147. name: "Normal",
  51148. height: math.unit(6, "feet"),
  51149. default: true
  51150. },
  51151. ]
  51152. ))
  51153. characterMakers.push(() => makeCharacter(
  51154. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51155. {
  51156. front: {
  51157. height: math.unit(60, "inches"),
  51158. weight: math.unit(16, "lb"),
  51159. preyCapacity: math.unit(80, "liters"),
  51160. name: "Front",
  51161. image: {
  51162. source: "./media/characters/penny-lynx/front.svg",
  51163. extra: 1959/1769,
  51164. bottom: 49/2008
  51165. }
  51166. },
  51167. },
  51168. [
  51169. {
  51170. name: "Nokia",
  51171. height: math.unit(2, "inches")
  51172. },
  51173. {
  51174. name: "Desktop",
  51175. height: math.unit(24, "inches")
  51176. },
  51177. {
  51178. name: "TV",
  51179. height: math.unit(60, "inches")
  51180. },
  51181. {
  51182. name: "Jumbotron",
  51183. height: math.unit(12, "feet")
  51184. },
  51185. {
  51186. name: "Billboard",
  51187. height: math.unit(48, "feet"),
  51188. default: true
  51189. },
  51190. {
  51191. name: "IMAX",
  51192. height: math.unit(96, "feet")
  51193. },
  51194. {
  51195. name: "SINGULARITY",
  51196. height: math.unit(864938, "miles")
  51197. },
  51198. ]
  51199. ))
  51200. characterMakers.push(() => makeCharacter(
  51201. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51202. {
  51203. front: {
  51204. height: math.unit(5 + 4/12, "feet"),
  51205. weight: math.unit(230, "lb"),
  51206. name: "Front",
  51207. image: {
  51208. source: "./media/characters/sukebe/front.svg",
  51209. extra: 2130/2038,
  51210. bottom: 90/2220
  51211. }
  51212. },
  51213. back: {
  51214. height: math.unit(3.48, "feet"),
  51215. weight: math.unit(230, "lb"),
  51216. name: "Back",
  51217. image: {
  51218. source: "./media/characters/sukebe/back.svg",
  51219. extra: 1670/1604,
  51220. bottom: 0/1670
  51221. }
  51222. },
  51223. },
  51224. [
  51225. {
  51226. name: "Normal",
  51227. height: math.unit(5 + 4/12, "feet"),
  51228. default: true
  51229. },
  51230. ]
  51231. ))
  51232. characterMakers.push(() => makeCharacter(
  51233. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51234. {
  51235. front: {
  51236. height: math.unit(6, "feet"),
  51237. name: "Front",
  51238. image: {
  51239. source: "./media/characters/nylla/front.svg",
  51240. extra: 1868/1699,
  51241. bottom: 97/1965
  51242. }
  51243. },
  51244. back: {
  51245. height: math.unit(6, "feet"),
  51246. name: "Back",
  51247. image: {
  51248. source: "./media/characters/nylla/back.svg",
  51249. extra: 1889/1712,
  51250. bottom: 93/1982
  51251. }
  51252. },
  51253. frontNsfw: {
  51254. height: math.unit(6, "feet"),
  51255. name: "Front (NSFW)",
  51256. image: {
  51257. source: "./media/characters/nylla/front-nsfw.svg",
  51258. extra: 1868/1699,
  51259. bottom: 97/1965
  51260. },
  51261. extraAttributes: {
  51262. "dickLength": {
  51263. name: "Dick Length",
  51264. power: 1,
  51265. type: "length",
  51266. base: math.unit(1.4, "feet")
  51267. },
  51268. "cumVolume": {
  51269. name: "Cum Volume",
  51270. power: 3,
  51271. type: "volume",
  51272. base: math.unit(100, "mL")
  51273. },
  51274. }
  51275. },
  51276. backNsfw: {
  51277. height: math.unit(6, "feet"),
  51278. name: "Back (NSFW)",
  51279. image: {
  51280. source: "./media/characters/nylla/back-nsfw.svg",
  51281. extra: 1889/1712,
  51282. bottom: 93/1982
  51283. }
  51284. },
  51285. maw: {
  51286. height: math.unit(2.10, "feet"),
  51287. name: "Maw",
  51288. image: {
  51289. source: "./media/characters/nylla/maw.svg"
  51290. }
  51291. },
  51292. paws: {
  51293. height: math.unit(2.06, "feet"),
  51294. name: "Paws",
  51295. image: {
  51296. source: "./media/characters/nylla/paws.svg"
  51297. }
  51298. },
  51299. muzzle: {
  51300. height: math.unit(0.61, "feet"),
  51301. name: "Muzzle",
  51302. image: {
  51303. source: "./media/characters/nylla/muzzle.svg"
  51304. }
  51305. },
  51306. sheath: {
  51307. height: math.unit(1.305, "feet"),
  51308. name: "Sheath",
  51309. image: {
  51310. source: "./media/characters/nylla/sheath.svg"
  51311. }
  51312. },
  51313. },
  51314. [
  51315. {
  51316. name: "Micro",
  51317. height: math.unit(7.5, "inches")
  51318. },
  51319. {
  51320. name: "Normal",
  51321. height: math.unit(7, "feet"),
  51322. default: true
  51323. },
  51324. {
  51325. name: "Macro",
  51326. height: math.unit(60, "feet")
  51327. },
  51328. {
  51329. name: "Mega",
  51330. height: math.unit(200, "feet")
  51331. },
  51332. ]
  51333. ))
  51334. characterMakers.push(() => makeCharacter(
  51335. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51336. {
  51337. front: {
  51338. height: math.unit(10, "feet"),
  51339. weight: math.unit(2300, "lb"),
  51340. name: "Front",
  51341. image: {
  51342. source: "./media/characters/hunt3r/front.svg",
  51343. extra: 1909/1742,
  51344. bottom: 46/1955
  51345. }
  51346. },
  51347. },
  51348. [
  51349. {
  51350. name: "Normal",
  51351. height: math.unit(10, "feet"),
  51352. default: true
  51353. },
  51354. ]
  51355. ))
  51356. characterMakers.push(() => makeCharacter(
  51357. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51358. {
  51359. dressed: {
  51360. height: math.unit(11, "feet"),
  51361. weight: math.unit(18500, "lb"),
  51362. preyCapacity: math.unit(9, "people"),
  51363. name: "Dressed",
  51364. image: {
  51365. source: "./media/characters/cylphis/dressed.svg",
  51366. extra: 1028/1003,
  51367. bottom: 75/1103
  51368. },
  51369. },
  51370. undressed: {
  51371. height: math.unit(11, "feet"),
  51372. weight: math.unit(18500, "lb"),
  51373. preyCapacity: math.unit(9, "people"),
  51374. name: "Undressed",
  51375. image: {
  51376. source: "./media/characters/cylphis/undressed.svg",
  51377. extra: 1028/1003,
  51378. bottom: 75/1103
  51379. }
  51380. },
  51381. full: {
  51382. height: math.unit(11, "feet"),
  51383. weight: math.unit(18500 + 150*9, "lb"),
  51384. preyCapacity: math.unit(9, "people"),
  51385. name: "Full",
  51386. image: {
  51387. source: "./media/characters/cylphis/full.svg",
  51388. extra: 1028/1003,
  51389. bottom: 75/1103
  51390. }
  51391. },
  51392. },
  51393. [
  51394. {
  51395. name: "Small",
  51396. height: math.unit(8, "feet")
  51397. },
  51398. {
  51399. name: "Normal",
  51400. height: math.unit(11, "feet"),
  51401. default: true
  51402. },
  51403. ]
  51404. ))
  51405. characterMakers.push(() => makeCharacter(
  51406. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51407. {
  51408. front: {
  51409. height: math.unit(2 + 7/12, "feet"),
  51410. name: "Front",
  51411. image: {
  51412. source: "./media/characters/orishan/front.svg",
  51413. extra: 1058/1023,
  51414. bottom: 23/1081
  51415. }
  51416. },
  51417. back: {
  51418. height: math.unit(2 + 7/12, "feet"),
  51419. name: "Back",
  51420. image: {
  51421. source: "./media/characters/orishan/back.svg",
  51422. extra: 1058/1023,
  51423. bottom: 23/1081
  51424. }
  51425. },
  51426. },
  51427. [
  51428. {
  51429. name: "Micro",
  51430. height: math.unit(2, "cm")
  51431. },
  51432. {
  51433. name: "Normal",
  51434. height: math.unit(2 + 7/12, "feet"),
  51435. default: true
  51436. },
  51437. ]
  51438. ))
  51439. characterMakers.push(() => makeCharacter(
  51440. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51441. {
  51442. front: {
  51443. height: math.unit(3, "meters"),
  51444. weight: math.unit(508, "kg"),
  51445. name: "Front",
  51446. image: {
  51447. source: "./media/characters/seranis/front.svg",
  51448. extra: 1478/1454,
  51449. bottom: 41/1519
  51450. }
  51451. },
  51452. },
  51453. [
  51454. {
  51455. name: "Normal",
  51456. height: math.unit(3, "meters"),
  51457. default: true
  51458. },
  51459. {
  51460. name: "Macro",
  51461. height: math.unit(108, "meters")
  51462. },
  51463. {
  51464. name: "Megamacro",
  51465. height: math.unit(1250, "meters")
  51466. },
  51467. ]
  51468. ))
  51469. characterMakers.push(() => makeCharacter(
  51470. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51471. {
  51472. undressed: {
  51473. height: math.unit(5 + 3/12, "feet"),
  51474. name: "Undressed",
  51475. image: {
  51476. source: "./media/characters/ankou/undressed.svg",
  51477. extra: 1301/1213,
  51478. bottom: 87/1388
  51479. }
  51480. },
  51481. dressed: {
  51482. height: math.unit(5 + 3/12, "feet"),
  51483. name: "Dressed",
  51484. image: {
  51485. source: "./media/characters/ankou/dressed.svg",
  51486. extra: 1301/1213,
  51487. bottom: 87/1388
  51488. }
  51489. },
  51490. head: {
  51491. height: math.unit(1.61, "feet"),
  51492. name: "Head",
  51493. image: {
  51494. source: "./media/characters/ankou/head.svg"
  51495. }
  51496. },
  51497. },
  51498. [
  51499. {
  51500. name: "Normal",
  51501. height: math.unit(5 + 3/12, "feet"),
  51502. default: true
  51503. },
  51504. ]
  51505. ))
  51506. characterMakers.push(() => makeCharacter(
  51507. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51508. {
  51509. side: {
  51510. height: math.unit(6 + 3/12, "feet"),
  51511. weight: math.unit(200, "kg"),
  51512. name: "Side",
  51513. image: {
  51514. source: "./media/characters/juniper-skunktaur/side.svg",
  51515. extra: 1574/1229,
  51516. bottom: 38/1612
  51517. }
  51518. },
  51519. front: {
  51520. height: math.unit(6 + 3/12, "feet"),
  51521. weight: math.unit(200, "kg"),
  51522. name: "Front",
  51523. image: {
  51524. source: "./media/characters/juniper-skunktaur/front.svg",
  51525. extra: 1337/1278,
  51526. bottom: 22/1359
  51527. }
  51528. },
  51529. back: {
  51530. height: math.unit(6 + 3/12, "feet"),
  51531. weight: math.unit(200, "kg"),
  51532. name: "Back",
  51533. image: {
  51534. source: "./media/characters/juniper-skunktaur/back.svg",
  51535. extra: 1618/1273,
  51536. bottom: 13/1631
  51537. }
  51538. },
  51539. top: {
  51540. height: math.unit(2.62, "feet"),
  51541. weight: math.unit(200, "kg"),
  51542. name: "Top",
  51543. image: {
  51544. source: "./media/characters/juniper-skunktaur/top.svg"
  51545. }
  51546. },
  51547. },
  51548. [
  51549. {
  51550. name: "Normal",
  51551. height: math.unit(6 + 3/12, "feet"),
  51552. default: true
  51553. },
  51554. ]
  51555. ))
  51556. characterMakers.push(() => makeCharacter(
  51557. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51558. {
  51559. front: {
  51560. height: math.unit(20.5, "feet"),
  51561. name: "Front",
  51562. image: {
  51563. source: "./media/characters/rei/front.svg",
  51564. extra: 1349/1195,
  51565. bottom: 31/1380
  51566. }
  51567. },
  51568. back: {
  51569. height: math.unit(20.5, "feet"),
  51570. name: "Back",
  51571. image: {
  51572. source: "./media/characters/rei/back.svg",
  51573. extra: 1358/1204,
  51574. bottom: 22/1380
  51575. }
  51576. },
  51577. pawsDigi: {
  51578. height: math.unit(3.45, "feet"),
  51579. name: "Paws (Digi)",
  51580. image: {
  51581. source: "./media/characters/rei/paws-digi.svg"
  51582. }
  51583. },
  51584. pawsPlanti: {
  51585. height: math.unit(3.45, "feet"),
  51586. name: "Paws (Planti)",
  51587. image: {
  51588. source: "./media/characters/rei/paws-planti.svg"
  51589. }
  51590. },
  51591. },
  51592. [
  51593. {
  51594. name: "Normal",
  51595. height: math.unit(20.5, "feet"),
  51596. default: true
  51597. },
  51598. ]
  51599. ))
  51600. characterMakers.push(() => makeCharacter(
  51601. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51602. {
  51603. front: {
  51604. height: math.unit(5 + 11/12, "feet"),
  51605. name: "Front",
  51606. image: {
  51607. source: "./media/characters/carina/front.svg",
  51608. extra: 1720/1449,
  51609. bottom: 14/1734
  51610. }
  51611. },
  51612. back: {
  51613. height: math.unit(5 + 11/12, "feet"),
  51614. name: "Back",
  51615. image: {
  51616. source: "./media/characters/carina/back.svg",
  51617. extra: 1493/1445,
  51618. bottom: 17/1510
  51619. }
  51620. },
  51621. paw: {
  51622. height: math.unit(0.92, "feet"),
  51623. name: "Paw",
  51624. image: {
  51625. source: "./media/characters/carina/paw.svg"
  51626. }
  51627. },
  51628. },
  51629. [
  51630. {
  51631. name: "Normal",
  51632. height: math.unit(5 + 11/12, "feet"),
  51633. default: true
  51634. },
  51635. ]
  51636. ))
  51637. characterMakers.push(() => makeCharacter(
  51638. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51639. {
  51640. front: {
  51641. height: math.unit(4.88, "meters"),
  51642. name: "Front",
  51643. image: {
  51644. source: "./media/characters/maya/front.svg",
  51645. extra: 1222/1145,
  51646. bottom: 57/1279
  51647. }
  51648. },
  51649. },
  51650. [
  51651. {
  51652. name: "Normal",
  51653. height: math.unit(4.88, "meters"),
  51654. default: true
  51655. },
  51656. {
  51657. name: "Macro",
  51658. height: math.unit(38.1, "meters")
  51659. },
  51660. {
  51661. name: "Macro+",
  51662. height: math.unit(152.4, "meters")
  51663. },
  51664. {
  51665. name: "Macro++",
  51666. height: math.unit(16.09, "km")
  51667. },
  51668. {
  51669. name: "Mega-macro",
  51670. height: math.unit(700, "megameters")
  51671. },
  51672. ]
  51673. ))
  51674. characterMakers.push(() => makeCharacter(
  51675. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51676. {
  51677. front: {
  51678. height: math.unit(6 + 2/12, "feet"),
  51679. weight: math.unit(500, "lb"),
  51680. preyCapacity: math.unit(4, "people"),
  51681. name: "Front",
  51682. image: {
  51683. source: "./media/characters/yepir/front.svg"
  51684. }
  51685. },
  51686. side: {
  51687. height: math.unit(6 + 2/12, "feet"),
  51688. weight: math.unit(500, "lb"),
  51689. preyCapacity: math.unit(4, "people"),
  51690. name: "Side",
  51691. image: {
  51692. source: "./media/characters/yepir/side.svg"
  51693. }
  51694. },
  51695. paw: {
  51696. height: math.unit(1.05, "feet"),
  51697. name: "Paw",
  51698. image: {
  51699. source: "./media/characters/yepir/paw.svg"
  51700. }
  51701. },
  51702. },
  51703. [
  51704. {
  51705. name: "Normal",
  51706. height: math.unit(6 + 2/12, "feet"),
  51707. default: true
  51708. },
  51709. ]
  51710. ))
  51711. characterMakers.push(() => makeCharacter(
  51712. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51713. {
  51714. front: {
  51715. height: math.unit(5 + 4/12, "feet"),
  51716. name: "Front",
  51717. image: {
  51718. source: "./media/characters/russec/front.svg",
  51719. extra: 1926/1626,
  51720. bottom: 72/1998
  51721. }
  51722. },
  51723. back: {
  51724. height: math.unit(5 + 4/12, "feet"),
  51725. name: "Back",
  51726. image: {
  51727. source: "./media/characters/russec/back.svg",
  51728. extra: 1910/1591,
  51729. bottom: 48/1958
  51730. }
  51731. },
  51732. },
  51733. [
  51734. {
  51735. name: "Small",
  51736. height: math.unit(5 + 4/12, "feet")
  51737. },
  51738. {
  51739. name: "Normal",
  51740. height: math.unit(72, "feet"),
  51741. default: true
  51742. },
  51743. ]
  51744. ))
  51745. characterMakers.push(() => makeCharacter(
  51746. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51747. {
  51748. side: {
  51749. height: math.unit(12, "feet"),
  51750. name: "Side",
  51751. image: {
  51752. source: "./media/characters/cianus/side.svg",
  51753. extra: 808/526,
  51754. bottom: 61/869
  51755. }
  51756. },
  51757. },
  51758. [
  51759. {
  51760. name: "Normal",
  51761. height: math.unit(12, "feet"),
  51762. default: true
  51763. },
  51764. ]
  51765. ))
  51766. characterMakers.push(() => makeCharacter(
  51767. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51768. {
  51769. front: {
  51770. height: math.unit(9 + 6/12, "feet"),
  51771. weight: math.unit(300, "lb"),
  51772. name: "Front",
  51773. image: {
  51774. source: "./media/characters/ahab/front.svg",
  51775. extra: 1897/1868,
  51776. bottom: 121/2018
  51777. }
  51778. },
  51779. frontNsfw: {
  51780. height: math.unit(9 + 6/12, "feet"),
  51781. weight: math.unit(300, "lb"),
  51782. name: "Front-nsfw",
  51783. image: {
  51784. source: "./media/characters/ahab/front-nsfw.svg",
  51785. extra: 1897/1868,
  51786. bottom: 121/2018
  51787. }
  51788. },
  51789. },
  51790. [
  51791. {
  51792. name: "Normal",
  51793. height: math.unit(9 + 6/12, "feet")
  51794. },
  51795. {
  51796. name: "Macro",
  51797. height: math.unit(657, "feet"),
  51798. default: true
  51799. },
  51800. ]
  51801. ))
  51802. characterMakers.push(() => makeCharacter(
  51803. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51804. {
  51805. front: {
  51806. height: math.unit(2.69, "meters"),
  51807. weight: math.unit(132, "kg"),
  51808. name: "Front",
  51809. image: {
  51810. source: "./media/characters/aarkus/front.svg",
  51811. extra: 1400/1231,
  51812. bottom: 34/1434
  51813. }
  51814. },
  51815. back: {
  51816. height: math.unit(2.69, "meters"),
  51817. weight: math.unit(132, "kg"),
  51818. name: "Back",
  51819. image: {
  51820. source: "./media/characters/aarkus/back.svg",
  51821. extra: 1381/1218,
  51822. bottom: 30/1411
  51823. }
  51824. },
  51825. frontNsfw: {
  51826. height: math.unit(2.69, "meters"),
  51827. weight: math.unit(132, "kg"),
  51828. name: "Front (NSFW)",
  51829. image: {
  51830. source: "./media/characters/aarkus/front-nsfw.svg",
  51831. extra: 1400/1231,
  51832. bottom: 34/1434
  51833. }
  51834. },
  51835. foot: {
  51836. height: math.unit(1.45, "feet"),
  51837. name: "Foot",
  51838. image: {
  51839. source: "./media/characters/aarkus/foot.svg"
  51840. }
  51841. },
  51842. head: {
  51843. height: math.unit(2.85, "feet"),
  51844. name: "Head",
  51845. image: {
  51846. source: "./media/characters/aarkus/head.svg"
  51847. }
  51848. },
  51849. headAlt: {
  51850. height: math.unit(3.07, "feet"),
  51851. name: "Head (Alt)",
  51852. image: {
  51853. source: "./media/characters/aarkus/head-alt.svg"
  51854. }
  51855. },
  51856. mouth: {
  51857. height: math.unit(1.25, "feet"),
  51858. name: "Mouth",
  51859. image: {
  51860. source: "./media/characters/aarkus/mouth.svg"
  51861. }
  51862. },
  51863. dick: {
  51864. height: math.unit(1.77, "feet"),
  51865. name: "Dick",
  51866. image: {
  51867. source: "./media/characters/aarkus/dick.svg"
  51868. }
  51869. },
  51870. },
  51871. [
  51872. {
  51873. name: "Normal",
  51874. height: math.unit(2.69, "meters"),
  51875. default: true
  51876. },
  51877. {
  51878. name: "Macro",
  51879. height: math.unit(269, "meters")
  51880. },
  51881. {
  51882. name: "Macro+",
  51883. height: math.unit(672.5, "meters")
  51884. },
  51885. {
  51886. name: "Megamacro",
  51887. height: math.unit(2.017, "km")
  51888. },
  51889. ]
  51890. ))
  51891. characterMakers.push(() => makeCharacter(
  51892. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  51893. {
  51894. front: {
  51895. height: math.unit(23.47, "cm"),
  51896. weight: math.unit(600, "grams"),
  51897. name: "Front",
  51898. image: {
  51899. source: "./media/characters/diode/front.svg",
  51900. extra: 1778/1396,
  51901. bottom: 95/1873
  51902. }
  51903. },
  51904. side: {
  51905. height: math.unit(23.47, "cm"),
  51906. weight: math.unit(600, "grams"),
  51907. name: "Side",
  51908. image: {
  51909. source: "./media/characters/diode/side.svg",
  51910. extra: 1831/1404,
  51911. bottom: 86/1917
  51912. }
  51913. },
  51914. wings: {
  51915. height: math.unit(0.683, "feet"),
  51916. name: "Wings",
  51917. image: {
  51918. source: "./media/characters/diode/wings.svg"
  51919. }
  51920. },
  51921. },
  51922. [
  51923. {
  51924. name: "Normal",
  51925. height: math.unit(23.47, "cm"),
  51926. default: true
  51927. },
  51928. ]
  51929. ))
  51930. characterMakers.push(() => makeCharacter(
  51931. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  51932. {
  51933. front: {
  51934. height: math.unit(6 + 3/12, "feet"),
  51935. weight: math.unit(250, "lb"),
  51936. name: "Front",
  51937. image: {
  51938. source: "./media/characters/reika/front.svg",
  51939. extra: 1120/1078,
  51940. bottom: 86/1206
  51941. }
  51942. },
  51943. },
  51944. [
  51945. {
  51946. name: "Normal",
  51947. height: math.unit(6 + 3/12, "feet"),
  51948. default: true
  51949. },
  51950. ]
  51951. ))
  51952. characterMakers.push(() => makeCharacter(
  51953. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  51954. {
  51955. front: {
  51956. height: math.unit(16 + 8/12, "feet"),
  51957. weight: math.unit(9000, "lb"),
  51958. name: "Front",
  51959. image: {
  51960. source: "./media/characters/lokuto-takama/front.svg",
  51961. extra: 1774/1632,
  51962. bottom: 147/1921
  51963. },
  51964. extraAttributes: {
  51965. "bustWidth": {
  51966. name: "Bust Width",
  51967. power: 1,
  51968. type: "length",
  51969. base: math.unit(2.4, "meters")
  51970. },
  51971. "breastWeight": {
  51972. name: "Breast Weight",
  51973. power: 3,
  51974. type: "mass",
  51975. base: math.unit(1000, "kg")
  51976. },
  51977. }
  51978. },
  51979. },
  51980. [
  51981. {
  51982. name: "Normal",
  51983. height: math.unit(16 + 8/12, "feet"),
  51984. default: true
  51985. },
  51986. ]
  51987. ))
  51988. characterMakers.push(() => makeCharacter(
  51989. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  51990. {
  51991. front: {
  51992. height: math.unit(10, "cm"),
  51993. weight: math.unit(850, "grams"),
  51994. name: "Front",
  51995. image: {
  51996. source: "./media/characters/owak-bone/front.svg",
  51997. extra: 1965/1801,
  51998. bottom: 31/1996
  51999. }
  52000. },
  52001. },
  52002. [
  52003. {
  52004. name: "Normal",
  52005. height: math.unit(10, "cm"),
  52006. default: true
  52007. },
  52008. ]
  52009. ))
  52010. characterMakers.push(() => makeCharacter(
  52011. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52012. {
  52013. front: {
  52014. height: math.unit(2 + 6/12, "feet"),
  52015. weight: math.unit(9, "lb"),
  52016. name: "Front",
  52017. image: {
  52018. source: "./media/characters/muffin/front.svg",
  52019. extra: 1220/1195,
  52020. bottom: 84/1304
  52021. }
  52022. },
  52023. },
  52024. [
  52025. {
  52026. name: "Normal",
  52027. height: math.unit(2 + 6/12, "feet"),
  52028. default: true
  52029. },
  52030. ]
  52031. ))
  52032. characterMakers.push(() => makeCharacter(
  52033. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52034. {
  52035. front: {
  52036. height: math.unit(7, "feet"),
  52037. name: "Front",
  52038. image: {
  52039. source: "./media/characters/chimera/front.svg",
  52040. extra: 1752/1614,
  52041. bottom: 68/1820
  52042. }
  52043. },
  52044. },
  52045. [
  52046. {
  52047. name: "Normal",
  52048. height: math.unit(7, "feet")
  52049. },
  52050. {
  52051. name: "Gigamacro",
  52052. height: math.unit(2.9, "gigameters"),
  52053. default: true
  52054. },
  52055. {
  52056. name: "Universal",
  52057. height: math.unit(1.56e26, "yottameters")
  52058. },
  52059. ]
  52060. ))
  52061. characterMakers.push(() => makeCharacter(
  52062. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52063. {
  52064. front: {
  52065. height: math.unit(3, "feet"),
  52066. weight: math.unit(20, "lb"),
  52067. name: "Front",
  52068. image: {
  52069. source: "./media/characters/kit-fennec-fox/front.svg",
  52070. extra: 1027/932,
  52071. bottom: 16/1043
  52072. }
  52073. },
  52074. back: {
  52075. height: math.unit(3, "feet"),
  52076. weight: math.unit(20, "lb"),
  52077. name: "Back",
  52078. image: {
  52079. source: "./media/characters/kit-fennec-fox/back.svg",
  52080. extra: 1027/932,
  52081. bottom: 16/1043
  52082. }
  52083. },
  52084. },
  52085. [
  52086. {
  52087. name: "Normal",
  52088. height: math.unit(3, "feet"),
  52089. default: true
  52090. },
  52091. ]
  52092. ))
  52093. characterMakers.push(() => makeCharacter(
  52094. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52095. {
  52096. front: {
  52097. height: math.unit(167, "cm"),
  52098. name: "Front",
  52099. image: {
  52100. source: "./media/characters/blue-otter/front.svg",
  52101. extra: 1951/1920,
  52102. bottom: 31/1982
  52103. }
  52104. },
  52105. },
  52106. [
  52107. {
  52108. name: "Otter-Sized",
  52109. height: math.unit(100, "cm")
  52110. },
  52111. {
  52112. name: "Normal",
  52113. height: math.unit(167, "cm"),
  52114. default: true
  52115. },
  52116. ]
  52117. ))
  52118. characterMakers.push(() => makeCharacter(
  52119. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52120. {
  52121. front: {
  52122. height: math.unit(4 + 4/12, "feet"),
  52123. name: "Front",
  52124. image: {
  52125. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52126. extra: 1072/1067,
  52127. bottom: 117/1189
  52128. }
  52129. },
  52130. back: {
  52131. height: math.unit(4 + 4/12, "feet"),
  52132. name: "Back",
  52133. image: {
  52134. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52135. extra: 1135/1129,
  52136. bottom: 57/1192
  52137. }
  52138. },
  52139. head: {
  52140. height: math.unit(1.77, "feet"),
  52141. name: "Head",
  52142. image: {
  52143. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52144. }
  52145. },
  52146. },
  52147. [
  52148. {
  52149. name: "Normal",
  52150. height: math.unit(4 + 4/12, "feet"),
  52151. default: true
  52152. },
  52153. ]
  52154. ))
  52155. characterMakers.push(() => makeCharacter(
  52156. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52157. {
  52158. front: {
  52159. height: math.unit(2, "inches"),
  52160. name: "Front",
  52161. image: {
  52162. source: "./media/characters/carley-hartford/front.svg",
  52163. extra: 1035/988,
  52164. bottom: 23/1058
  52165. }
  52166. },
  52167. back: {
  52168. height: math.unit(2, "inches"),
  52169. name: "Back",
  52170. image: {
  52171. source: "./media/characters/carley-hartford/back.svg",
  52172. extra: 1035/988,
  52173. bottom: 23/1058
  52174. }
  52175. },
  52176. dressed: {
  52177. height: math.unit(2, "inches"),
  52178. name: "Dressed",
  52179. image: {
  52180. source: "./media/characters/carley-hartford/dressed.svg",
  52181. extra: 651/620,
  52182. bottom: 0/651
  52183. }
  52184. },
  52185. },
  52186. [
  52187. {
  52188. name: "Micro",
  52189. height: math.unit(2, "inches"),
  52190. default: true
  52191. },
  52192. {
  52193. name: "Macro",
  52194. height: math.unit(6 + 3/12, "feet")
  52195. },
  52196. ]
  52197. ))
  52198. characterMakers.push(() => makeCharacter(
  52199. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52200. {
  52201. front: {
  52202. height: math.unit(2 + 3/12, "feet"),
  52203. weight: math.unit(15 + 7/16, "lb"),
  52204. name: "Front",
  52205. image: {
  52206. source: "./media/characters/duke/front.svg",
  52207. extra: 910/815,
  52208. bottom: 30/940
  52209. }
  52210. },
  52211. },
  52212. [
  52213. {
  52214. name: "Normal",
  52215. height: math.unit(2 + 3/12, "feet"),
  52216. default: true
  52217. },
  52218. ]
  52219. ))
  52220. characterMakers.push(() => makeCharacter(
  52221. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52222. {
  52223. front: {
  52224. height: math.unit(5 + 4/12, "feet"),
  52225. weight: math.unit(156, "lb"),
  52226. name: "Front",
  52227. image: {
  52228. source: "./media/characters/dein/front.svg",
  52229. extra: 855/815,
  52230. bottom: 48/903
  52231. }
  52232. },
  52233. side: {
  52234. height: math.unit(5 + 4/12, "feet"),
  52235. weight: math.unit(156, "lb"),
  52236. name: "side",
  52237. image: {
  52238. source: "./media/characters/dein/side.svg",
  52239. extra: 846/803,
  52240. bottom: 25/871
  52241. }
  52242. },
  52243. maw: {
  52244. height: math.unit(1.45, "feet"),
  52245. name: "Maw",
  52246. image: {
  52247. source: "./media/characters/dein/maw.svg"
  52248. }
  52249. },
  52250. },
  52251. [
  52252. {
  52253. name: "Ferret Sized",
  52254. height: math.unit(2 + 5/12, "feet")
  52255. },
  52256. {
  52257. name: "Normal",
  52258. height: math.unit(5 + 4/12, "feet"),
  52259. default: true
  52260. },
  52261. ]
  52262. ))
  52263. characterMakers.push(() => makeCharacter(
  52264. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52265. {
  52266. front: {
  52267. height: math.unit(84 + 8/12, "feet"),
  52268. weight: math.unit(942180, "lb"),
  52269. name: "Front",
  52270. image: {
  52271. source: "./media/characters/daurine-arima/front.svg",
  52272. extra: 1989/1782,
  52273. bottom: 37/2026
  52274. }
  52275. },
  52276. side: {
  52277. height: math.unit(84 + 8/12, "feet"),
  52278. weight: math.unit(942180, "lb"),
  52279. name: "Side",
  52280. image: {
  52281. source: "./media/characters/daurine-arima/side.svg",
  52282. extra: 1997/1790,
  52283. bottom: 21/2018
  52284. }
  52285. },
  52286. back: {
  52287. height: math.unit(84 + 8/12, "feet"),
  52288. weight: math.unit(942180, "lb"),
  52289. name: "Back",
  52290. image: {
  52291. source: "./media/characters/daurine-arima/back.svg",
  52292. extra: 1992/1800,
  52293. bottom: 12/2004
  52294. }
  52295. },
  52296. head: {
  52297. height: math.unit(15.5, "feet"),
  52298. name: "Head",
  52299. image: {
  52300. source: "./media/characters/daurine-arima/head.svg"
  52301. }
  52302. },
  52303. headAlt: {
  52304. height: math.unit(19.19, "feet"),
  52305. name: "Head (Alt)",
  52306. image: {
  52307. source: "./media/characters/daurine-arima/head-alt.svg"
  52308. }
  52309. },
  52310. },
  52311. [
  52312. {
  52313. name: "Minimum height",
  52314. height: math.unit(8 + 10/12, "feet")
  52315. },
  52316. {
  52317. name: "Comfort height",
  52318. height: math.unit(19 + 6 /12, "feet")
  52319. },
  52320. {
  52321. name: "\"Normal\" height",
  52322. height: math.unit(28 + 10/12, "feet")
  52323. },
  52324. {
  52325. name: "Base height",
  52326. height: math.unit(84 + 8/12, "feet"),
  52327. default: true
  52328. },
  52329. {
  52330. name: "Mini-macro",
  52331. height: math.unit(2360, "feet")
  52332. },
  52333. {
  52334. name: "Macro",
  52335. height: math.unit(10, "miles")
  52336. },
  52337. {
  52338. name: "Goddess",
  52339. height: math.unit(9.99e40, "yottameters")
  52340. },
  52341. ]
  52342. ))
  52343. characterMakers.push(() => makeCharacter(
  52344. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52345. {
  52346. front: {
  52347. height: math.unit(2.3, "meters"),
  52348. name: "Front",
  52349. image: {
  52350. source: "./media/characters/cilenomon/front.svg",
  52351. extra: 1963/1778,
  52352. bottom: 54/2017
  52353. }
  52354. },
  52355. },
  52356. [
  52357. {
  52358. name: "Normal",
  52359. height: math.unit(2.3, "meters"),
  52360. default: true
  52361. },
  52362. {
  52363. name: "Big",
  52364. height: math.unit(5, "meters")
  52365. },
  52366. {
  52367. name: "Macro",
  52368. height: math.unit(30, "meters")
  52369. },
  52370. {
  52371. name: "True",
  52372. height: math.unit(1, "universe")
  52373. },
  52374. ]
  52375. ))
  52376. characterMakers.push(() => makeCharacter(
  52377. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52378. {
  52379. front: {
  52380. height: math.unit(5, "feet"),
  52381. name: "Front",
  52382. image: {
  52383. source: "./media/characters/sen-mink/front.svg",
  52384. extra: 1727/1675,
  52385. bottom: 35/1762
  52386. }
  52387. },
  52388. },
  52389. [
  52390. {
  52391. name: "Normal",
  52392. height: math.unit(5, "feet"),
  52393. default: true
  52394. },
  52395. ]
  52396. ))
  52397. characterMakers.push(() => makeCharacter(
  52398. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52399. {
  52400. front: {
  52401. height: math.unit(5.42999, "feet"),
  52402. weight: math.unit(100, "lb"),
  52403. name: "Front",
  52404. image: {
  52405. source: "./media/characters/ophois/front.svg",
  52406. extra: 1429/1286,
  52407. bottom: 60/1489
  52408. }
  52409. },
  52410. },
  52411. [
  52412. {
  52413. name: "Normal",
  52414. height: math.unit(5.42999, "feet"),
  52415. default: true
  52416. },
  52417. ]
  52418. ))
  52419. characterMakers.push(() => makeCharacter(
  52420. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52421. {
  52422. front: {
  52423. height: math.unit(2, "meters"),
  52424. name: "Front",
  52425. image: {
  52426. source: "./media/characters/riley/front.svg",
  52427. extra: 1779/1754,
  52428. bottom: 139/1918
  52429. }
  52430. },
  52431. },
  52432. [
  52433. {
  52434. name: "Normal",
  52435. height: math.unit(2, "meters"),
  52436. default: true
  52437. },
  52438. ]
  52439. ))
  52440. characterMakers.push(() => makeCharacter(
  52441. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52442. {
  52443. front: {
  52444. height: math.unit(6 + 2/12, "feet"),
  52445. weight: math.unit(195, "lb"),
  52446. preyCapacity: math.unit(6, "people"),
  52447. name: "Front",
  52448. image: {
  52449. source: "./media/characters/shuken-flash/front.svg",
  52450. extra: 1905/1739,
  52451. bottom: 65/1970
  52452. }
  52453. },
  52454. back: {
  52455. height: math.unit(6 + 2/12, "feet"),
  52456. weight: math.unit(195, "lb"),
  52457. preyCapacity: math.unit(6, "people"),
  52458. name: "Back",
  52459. image: {
  52460. source: "./media/characters/shuken-flash/back.svg",
  52461. extra: 1912/1751,
  52462. bottom: 13/1925
  52463. }
  52464. },
  52465. },
  52466. [
  52467. {
  52468. name: "Normal",
  52469. height: math.unit(6 + 2/12, "feet"),
  52470. default: true
  52471. },
  52472. ]
  52473. ))
  52474. characterMakers.push(() => makeCharacter(
  52475. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52476. {
  52477. front: {
  52478. height: math.unit(5 + 9/12, "feet"),
  52479. weight: math.unit(150, "lb"),
  52480. name: "Front",
  52481. image: {
  52482. source: "./media/characters/plat/front.svg",
  52483. extra: 1816/1703,
  52484. bottom: 43/1859
  52485. }
  52486. },
  52487. side: {
  52488. height: math.unit(5 + 9/12, "feet"),
  52489. weight: math.unit(300, "lb"),
  52490. name: "Side",
  52491. image: {
  52492. source: "./media/characters/plat/side.svg",
  52493. extra: 1824/1699,
  52494. bottom: 18/1842
  52495. }
  52496. },
  52497. },
  52498. [
  52499. {
  52500. name: "Normal",
  52501. height: math.unit(5 + 9/12, "feet"),
  52502. default: true
  52503. },
  52504. ]
  52505. ))
  52506. characterMakers.push(() => makeCharacter(
  52507. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52508. {
  52509. front: {
  52510. height: math.unit(9, "feet"),
  52511. weight: math.unit(1800, "lb"),
  52512. name: "Front",
  52513. image: {
  52514. source: "./media/characters/elaine/front.svg",
  52515. extra: 1833/1354,
  52516. bottom: 25/1858
  52517. }
  52518. },
  52519. back: {
  52520. height: math.unit(8.8, "feet"),
  52521. weight: math.unit(1800, "lb"),
  52522. name: "Back",
  52523. image: {
  52524. source: "./media/characters/elaine/back.svg",
  52525. extra: 1641/1233,
  52526. bottom: 53/1694
  52527. }
  52528. },
  52529. },
  52530. [
  52531. {
  52532. name: "Normal",
  52533. height: math.unit(9, "feet"),
  52534. default: true
  52535. },
  52536. ]
  52537. ))
  52538. characterMakers.push(() => makeCharacter(
  52539. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52540. {
  52541. front: {
  52542. height: math.unit(17 + 9/12, "feet"),
  52543. weight: math.unit(8000, "lb"),
  52544. name: "Front",
  52545. image: {
  52546. source: "./media/characters/vera-raven/front.svg",
  52547. extra: 1457/1412,
  52548. bottom: 121/1578
  52549. }
  52550. },
  52551. side: {
  52552. height: math.unit(17 + 9/12, "feet"),
  52553. weight: math.unit(8000, "lb"),
  52554. name: "Side",
  52555. image: {
  52556. source: "./media/characters/vera-raven/side.svg",
  52557. extra: 1510/1464,
  52558. bottom: 54/1564
  52559. }
  52560. },
  52561. },
  52562. [
  52563. {
  52564. name: "Normal",
  52565. height: math.unit(17 + 9/12, "feet"),
  52566. default: true
  52567. },
  52568. ]
  52569. ))
  52570. characterMakers.push(() => makeCharacter(
  52571. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52572. {
  52573. dressed: {
  52574. height: math.unit(6 + 9/12, "feet"),
  52575. name: "Dressed",
  52576. image: {
  52577. source: "./media/characters/nakisha/dressed.svg",
  52578. extra: 1909/1757,
  52579. bottom: 48/1957
  52580. }
  52581. },
  52582. nude: {
  52583. height: math.unit(6 + 9/12, "feet"),
  52584. name: "Nude",
  52585. image: {
  52586. source: "./media/characters/nakisha/nude.svg",
  52587. extra: 1917/1765,
  52588. bottom: 34/1951
  52589. }
  52590. },
  52591. },
  52592. [
  52593. {
  52594. name: "Normal",
  52595. height: math.unit(6 + 9/12, "feet"),
  52596. default: true
  52597. },
  52598. ]
  52599. ))
  52600. characterMakers.push(() => makeCharacter(
  52601. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52602. {
  52603. front: {
  52604. height: math.unit(87, "meters"),
  52605. name: "Front",
  52606. image: {
  52607. source: "./media/characters/serafin/front.svg",
  52608. extra: 1919/1776,
  52609. bottom: 65/1984
  52610. }
  52611. },
  52612. },
  52613. [
  52614. {
  52615. name: "Normal",
  52616. height: math.unit(87, "meters"),
  52617. default: true
  52618. },
  52619. ]
  52620. ))
  52621. characterMakers.push(() => makeCharacter(
  52622. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52623. {
  52624. front: {
  52625. height: math.unit(6, "feet"),
  52626. weight: math.unit(150, "lb"),
  52627. name: "Front",
  52628. image: {
  52629. source: "./media/characters/poptart/front.svg",
  52630. extra: 615/583,
  52631. bottom: 23/638
  52632. }
  52633. },
  52634. back: {
  52635. height: math.unit(6, "feet"),
  52636. weight: math.unit(150, "lb"),
  52637. name: "Back",
  52638. image: {
  52639. source: "./media/characters/poptart/back.svg",
  52640. extra: 617/584,
  52641. bottom: 22/639
  52642. }
  52643. },
  52644. frontNsfw: {
  52645. height: math.unit(6, "feet"),
  52646. weight: math.unit(150, "lb"),
  52647. name: "Front (NSFW)",
  52648. image: {
  52649. source: "./media/characters/poptart/front-nsfw.svg",
  52650. extra: 615/583,
  52651. bottom: 23/638
  52652. }
  52653. },
  52654. backNsfw: {
  52655. height: math.unit(6, "feet"),
  52656. weight: math.unit(150, "lb"),
  52657. name: "Back (NSFW)",
  52658. image: {
  52659. source: "./media/characters/poptart/back-nsfw.svg",
  52660. extra: 617/584,
  52661. bottom: 22/639
  52662. }
  52663. },
  52664. hand: {
  52665. height: math.unit(1.14, "feet"),
  52666. name: "Hand",
  52667. image: {
  52668. source: "./media/characters/poptart/hand.svg"
  52669. }
  52670. },
  52671. foot: {
  52672. height: math.unit(1.5, "feet"),
  52673. name: "Foot",
  52674. image: {
  52675. source: "./media/characters/poptart/foot.svg"
  52676. }
  52677. },
  52678. },
  52679. [
  52680. {
  52681. name: "Normal",
  52682. height: math.unit(6, "feet"),
  52683. default: true
  52684. },
  52685. ]
  52686. ))
  52687. //characters
  52688. function makeCharacters() {
  52689. const results = [];
  52690. characterMakers.forEach(character => {
  52691. results.push(character());
  52692. });
  52693. return results;
  52694. }