less copy protection, more size visualization
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

57725 行
1.4 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. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["mustelid"]
  1800. },
  1801. "teshari": {
  1802. name: "Teshari",
  1803. parents: ["avian", "raptor"]
  1804. },
  1805. "alicorn": {
  1806. name: "Alicorn",
  1807. parents: ["horse"]
  1808. },
  1809. "atlas-moth": {
  1810. name: "Atlas Moth",
  1811. parents: ["moth"]
  1812. },
  1813. "owlbear": {
  1814. name: "Owlbear",
  1815. parents: ["owl", "bear", "monster"]
  1816. },
  1817. "owl": {
  1818. name: "Owl",
  1819. parents: ["avian"]
  1820. },
  1821. "silvertongue": {
  1822. name: "Silvertongue",
  1823. parents: ["reptile"]
  1824. },
  1825. "ahuizotl": {
  1826. name: "Ahuizotl",
  1827. parents: ["monster"]
  1828. },
  1829. "ender-dragon": {
  1830. name: "Ender Dragon",
  1831. parents: ["dragon"]
  1832. },
  1833. "bruhathkayosaurus": {
  1834. name: "Bruhathkayosaurus",
  1835. parents: ["sauropod"]
  1836. },
  1837. "sauropod": {
  1838. name: "Sauropod",
  1839. parents: ["dinosaur"]
  1840. },
  1841. "black-sable-antelope": {
  1842. name: "Black Sable Antelope",
  1843. parents: ["antelope"]
  1844. },
  1845. "slime": {
  1846. name: "Slime",
  1847. parents: ["goo"]
  1848. },
  1849. "utahraptor": {
  1850. name: "Utahraptor",
  1851. parents: ["raptor"]
  1852. },
  1853. "indian-giant-squirrel": {
  1854. name: "Indian Giant Squirrel",
  1855. parents: ["squirrel"]
  1856. },
  1857. "golden-retriever": {
  1858. name: "Golden Retriever",
  1859. parents: ["dog"]
  1860. },
  1861. "triceratops": {
  1862. name: "Triceratops",
  1863. parents: ["dinosaur"]
  1864. },
  1865. "drake": {
  1866. name: "Drake",
  1867. parents: ["dragon"]
  1868. },
  1869. "okapi": {
  1870. name: "Okapi",
  1871. parents: ["giraffe"]
  1872. },
  1873. "arctic-hare": {
  1874. name: "Arctic Hare",
  1875. parents: ["hare"]
  1876. },
  1877. "hare": {
  1878. name: "Hare",
  1879. parents: ["leporidae"]
  1880. },
  1881. "leporidae": {
  1882. name: "Leporidae",
  1883. parents: ["mammal"]
  1884. },
  1885. "leopard-gecko": {
  1886. name: "Leopard Gecko",
  1887. parents: ["gecko"]
  1888. },
  1889. "dreamspawn": {
  1890. name: "Dreamspawn",
  1891. parents: ["illusion"]
  1892. },
  1893. "illusion": {
  1894. name: "Illusion",
  1895. parents: []
  1896. },
  1897. "purrloin": {
  1898. name: "Purrloin",
  1899. parents: ["cat", "pokemon"]
  1900. },
  1901. "noivern": {
  1902. name: "Noivern",
  1903. parents: ["bat", "dragon", "pokemon"]
  1904. },
  1905. "hedgehog": {
  1906. name: "Hedgehog",
  1907. parents: ["mammal"]
  1908. },
  1909. "liger": {
  1910. name: "Liger",
  1911. parents: ["lion", "tiger", "hybrid"]
  1912. },
  1913. "hybrid": {
  1914. name: "Hybrid",
  1915. parents: []
  1916. },
  1917. "drider": {
  1918. name: "Drider",
  1919. parents: ["spider"]
  1920. },
  1921. "sabresune": {
  1922. name: "Sabresune",
  1923. parents: ["kitsune", "sabertooth-tiger"]
  1924. },
  1925. "ditto": {
  1926. name: "Ditto",
  1927. parents: ["pokemon", "goo"]
  1928. },
  1929. "amogus": {
  1930. name: "Amogus",
  1931. parents: ["deity"]
  1932. },
  1933. "ferret": {
  1934. name: "Ferret",
  1935. parents: ["mustelid"]
  1936. },
  1937. "guinea-pig": {
  1938. name: "Guinea Pig",
  1939. parents: ["rodent"]
  1940. },
  1941. "viper": {
  1942. name: "Viper",
  1943. parents: ["snake"]
  1944. },
  1945. "cinderace": {
  1946. name: "Cinderace",
  1947. parents: ["pokemon", "rabbit"]
  1948. },
  1949. "caudin": {
  1950. name: "Caudin",
  1951. parents: ["dragon"]
  1952. },
  1953. "red-winged-blackbird": {
  1954. name: "Red-Winged Blackbird",
  1955. parents: ["avian"]
  1956. },
  1957. "hooded-wheater": {
  1958. name: "Hooded Wheater",
  1959. parents: ["passerine"]
  1960. },
  1961. "passerine": {
  1962. name: "Passerine",
  1963. parents: ["avian"]
  1964. },
  1965. "gieeg": {
  1966. name: "Gieeg",
  1967. parents: ["alien"]
  1968. },
  1969. "ringtail": {
  1970. name: "Ringtail",
  1971. parents: ["raccoon"]
  1972. },
  1973. "hisuian-zoroark": {
  1974. name: "Hisuian Zoroark",
  1975. parents: ["zoroark", "hisuian"]
  1976. },
  1977. "hisuian": {
  1978. name: "Hisuian",
  1979. parents: ["regional-pokemon"]
  1980. },
  1981. "regional-pokemon": {
  1982. name: "Regional Pokemon",
  1983. parents: ["pokemon"]
  1984. },
  1985. "cybeast": {
  1986. name: "Cybeast",
  1987. parents: ["computer-virus"]
  1988. },
  1989. "javira-dragon": {
  1990. name: "Javira Dragon",
  1991. parents: ["dragon"]
  1992. },
  1993. "koopew": {
  1994. name: "Koopew",
  1995. parents: ["dragon", "alien"]
  1996. },
  1997. "nevrean": {
  1998. name: "Nevrean",
  1999. parents: ["avian", "vilous"]
  2000. },
  2001. "vilous": {
  2002. name: "Vilous Species",
  2003. parents: []
  2004. },
  2005. "titanoboa": {
  2006. name: "Titanoboa",
  2007. parents: ["snake"]
  2008. },
  2009. "raichu": {
  2010. name: "Raichu",
  2011. parents: ["pikachu"]
  2012. },
  2013. "taur": {
  2014. name: "Taur",
  2015. parents: []
  2016. },
  2017. "continental-giant-rabbit": {
  2018. name: "Continental Giant Rabbit",
  2019. parents: ["rabbit"]
  2020. },
  2021. "demigryph": {
  2022. name: "Demigryph",
  2023. parents: ["lion", "eagle"]
  2024. },
  2025. "bald-eagle": {
  2026. name: "Bald Eagle",
  2027. parents: ["eagle"]
  2028. },
  2029. "kestrel": {
  2030. name: "Kestrel",
  2031. parents: ["falcon"]
  2032. },
  2033. "mockingbird": {
  2034. name: "Mockingbird",
  2035. parents: ["songbird"]
  2036. },
  2037. "songbird": {
  2038. name: "Songbird",
  2039. parents: ["avian"]
  2040. },
  2041. "bird-of-prey": {
  2042. name: "Bird of Prey",
  2043. parents: ["avian"]
  2044. },
  2045. "marowak": {
  2046. name: "Marowak",
  2047. parents: ["pokemon", "reptile"]
  2048. },
  2049. "joltik": {
  2050. name: "Joltik",
  2051. parents: ["pokemon", "insect"]
  2052. },
  2053. "mink": {
  2054. name: "Mink",
  2055. parents: ["mustelid"]
  2056. },
  2057. "sandcat": {
  2058. name: "Sandcat",
  2059. parents: ["cat"]
  2060. },
  2061. "hrothgar": {
  2062. name: "Hrothgar",
  2063. parents: ["cat"]
  2064. },
  2065. "garchomp": {
  2066. name: "Garchomp",
  2067. parents: ["dragon", "pokemon"]
  2068. },
  2069. "nargacuga": {
  2070. name: "Nargacuga",
  2071. parents: ["monster-hunter"]
  2072. },
  2073. "sable": {
  2074. name: "Sable",
  2075. parents: ["marten"]
  2076. },
  2077. "deino": {
  2078. name: "Deino",
  2079. parents: ["pokemon", "dinosaur"]
  2080. },
  2081. "housecat": {
  2082. name: "Housecat",
  2083. parents: ["cat"]
  2084. },
  2085. "bombay-cat": {
  2086. name: "Bombay Cat",
  2087. parents: ["housecat"]
  2088. },
  2089. "maine-coon": {
  2090. name: "Maine Coon",
  2091. parents: ["housecat"]
  2092. },
  2093. "coelacanth": {
  2094. name: "Coelacanth",
  2095. parents: ["fish"]
  2096. },
  2097. "silvally": {
  2098. name: "Silvally",
  2099. parents: ["legendary-pokemon"]
  2100. },
  2101. "legendary-pokemon": {
  2102. name: "Legendary Pokemon",
  2103. parents: ["pokemon"]
  2104. },
  2105. "great-maccao": {
  2106. name: "Great Maccao",
  2107. parents: ["monster-hunter", "raptor"]
  2108. },
  2109. "shapeshifter": {
  2110. name: "shapeshifter",
  2111. parents: []
  2112. },
  2113. "obstagoon": {
  2114. name: "Obstagoon",
  2115. parents: ["zigzagoon"]
  2116. },
  2117. "thomsons-gazelle": {
  2118. name: "Thomsons Gazelle",
  2119. parents: ["gazelle"]
  2120. },
  2121. "gazelle": {
  2122. name: "Gazelle",
  2123. parents: ["antelope"]
  2124. },
  2125. "monkey": {
  2126. name: "Monkey",
  2127. parents: ["mammal"]
  2128. },
  2129. "serval": {
  2130. name: "Serval",
  2131. parents: ["cat"]
  2132. },
  2133. "swampert": {
  2134. name: "Swampert",
  2135. parents: ["pokemon"]
  2136. },
  2137. "red-fox": {
  2138. name: "Red Fox",
  2139. parents: ["fox"]
  2140. },
  2141. "sliver": {
  2142. name: "Sliver",
  2143. parents: ["alien"]
  2144. },
  2145. "sergix": {
  2146. name: "Sergix",
  2147. parents: ["demon", "sergal", "phoenix"]
  2148. },
  2149. "behemoth": {
  2150. name: "Behemoth",
  2151. parents: ["monster", "dragon", "final-fantasy"]
  2152. },
  2153. "final-fantasy": {
  2154. name: "Final Fantasy",
  2155. parents: ["video-games"]
  2156. },
  2157. "video-games": {
  2158. name: "Video Games",
  2159. parents: []
  2160. },
  2161. "eastern-cottontail-rabbit": {
  2162. name: "Eastern Cottontail Rabbit",
  2163. parents: ["rabbit"]
  2164. },
  2165. "thresher-shark": {
  2166. name: "Thresher Shark",
  2167. parents: ["shark"]
  2168. },
  2169. "ai": {
  2170. name: "AI",
  2171. parents: []
  2172. },
  2173. "black-tip-reef-shark": {
  2174. name: "Black Tip Reef Shark",
  2175. parents: ["shark"]
  2176. },
  2177. "quetzalcoatlus-northropi": {
  2178. name: "Quetzalcoatlus Northropi",
  2179. parents: ["dinosaur"]
  2180. },
  2181. "snivy": {
  2182. name: "Snivy",
  2183. parents: ["pokemon", "snake"]
  2184. },
  2185. }
  2186. //species
  2187. function getSpeciesInfo(speciesList) {
  2188. let result = new Set();
  2189. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2190. result.add(entry)
  2191. });
  2192. return Array.from(result);
  2193. };
  2194. function getSpeciesInfoHelper(species) {
  2195. if (!speciesData[species]) {
  2196. console.warn(species + " doesn't exist");
  2197. return [];
  2198. }
  2199. if (speciesData[species].parents) {
  2200. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2201. } else {
  2202. return [species];
  2203. }
  2204. }
  2205. characterMakers.push(() => makeCharacter(
  2206. {
  2207. name: "Fen",
  2208. species: ["crux"],
  2209. description: {
  2210. title: "Bio",
  2211. text: "Very furry. Sheds on everything."
  2212. },
  2213. tags: [
  2214. "anthro",
  2215. "goo"
  2216. ]
  2217. },
  2218. {
  2219. front: {
  2220. height: math.unit(12, "feet"),
  2221. weight: math.unit(2400, "lb"),
  2222. preyCapacity: math.unit(1, "people"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/fen/front.svg",
  2226. extra: 1804/1562,
  2227. bottom: 205/2009
  2228. },
  2229. extraAttributes: {
  2230. pawSize: {
  2231. name: "Paw Size",
  2232. power: 2,
  2233. type: "area",
  2234. base: math.unit(0.35, "m^2")
  2235. }
  2236. }
  2237. },
  2238. diving: {
  2239. height: math.unit(4.9, "meters"),
  2240. weight: math.unit(2400, "lb"),
  2241. name: "Diving",
  2242. image: {
  2243. source: "./media/characters/fen/diving.svg"
  2244. }
  2245. },
  2246. sleeby: {
  2247. height: math.unit(3.45, "meters"),
  2248. weight: math.unit(2400, "lb"),
  2249. name: "Sleeby",
  2250. image: {
  2251. source: "./media/characters/fen/sleeby.svg"
  2252. }
  2253. },
  2254. goo: {
  2255. height: math.unit(12, "feet"),
  2256. weight: math.unit(3600, "lb"),
  2257. volume: math.unit(1000, "liters"),
  2258. preyCapacity: math.unit(6, "people"),
  2259. name: "Goo",
  2260. image: {
  2261. source: "./media/characters/fen/goo.svg",
  2262. extra: 1307/1071,
  2263. bottom: 134/1441
  2264. }
  2265. },
  2266. gooNsfw: {
  2267. height: math.unit(12, "feet"),
  2268. weight: math.unit(3750, "lb"),
  2269. volume: math.unit(1000, "liters"),
  2270. preyCapacity: math.unit(6, "people"),
  2271. name: "Goo (NSFW)",
  2272. image: {
  2273. source: "./media/characters/fen/goo-nsfw.svg",
  2274. extra: 1875/1734,
  2275. bottom: 122/1997
  2276. }
  2277. },
  2278. maw: {
  2279. height: math.unit(5.03, "feet"),
  2280. name: "Maw",
  2281. image: {
  2282. source: "./media/characters/fen/maw.svg"
  2283. }
  2284. },
  2285. gooCeiling: {
  2286. height: math.unit(6.6, "feet"),
  2287. weight: math.unit(3000, "lb"),
  2288. volume: math.unit(1000, "liters"),
  2289. preyCapacity: math.unit(6, "people"),
  2290. name: "Goo (Ceiling)",
  2291. image: {
  2292. source: "./media/characters/fen/goo-ceiling.svg"
  2293. }
  2294. },
  2295. paw: {
  2296. height: math.unit(3.77, "feet"),
  2297. name: "Paw",
  2298. image: {
  2299. source: "./media/characters/fen/paw.svg"
  2300. },
  2301. extraAttributes: {
  2302. "toeSize": {
  2303. name: "Toe Size",
  2304. power: 2,
  2305. type: "area",
  2306. base: math.unit(0.02875, "m^2")
  2307. },
  2308. "pawSize": {
  2309. name: "Paw Size",
  2310. power: 2,
  2311. type: "area",
  2312. base: math.unit(0.378, "m^2")
  2313. },
  2314. }
  2315. },
  2316. tail: {
  2317. height: math.unit(12.1, "feet"),
  2318. name: "Tail",
  2319. image: {
  2320. source: "./media/characters/fen/tail.svg"
  2321. }
  2322. },
  2323. tailFull: {
  2324. height: math.unit(12.1, "feet"),
  2325. name: "Full Tail",
  2326. image: {
  2327. source: "./media/characters/fen/tail-full.svg"
  2328. }
  2329. },
  2330. back: {
  2331. height: math.unit(12, "feet"),
  2332. weight: math.unit(2400, "lb"),
  2333. name: "Back",
  2334. image: {
  2335. source: "./media/characters/fen/back.svg",
  2336. },
  2337. info: {
  2338. description: {
  2339. mode: "append",
  2340. text: "\n\nHe is not currently looking at you."
  2341. }
  2342. }
  2343. },
  2344. full: {
  2345. height: math.unit(1.85, "meter"),
  2346. weight: math.unit(3200, "lb"),
  2347. name: "Full",
  2348. image: {
  2349. source: "./media/characters/fen/full.svg",
  2350. extra: 1133/859,
  2351. bottom: 145/1278
  2352. },
  2353. info: {
  2354. description: {
  2355. mode: "append",
  2356. text: "\n\nMunch."
  2357. }
  2358. }
  2359. },
  2360. gooLounging: {
  2361. height: math.unit(4.53, "feet"),
  2362. weight: math.unit(3000, "lb"),
  2363. preyCapacity: math.unit(6, "people"),
  2364. name: "Goo (Lounging)",
  2365. image: {
  2366. source: "./media/characters/fen/goo-lounging.svg",
  2367. bottom: 116 / 613
  2368. }
  2369. },
  2370. lounging: {
  2371. height: math.unit(10.52, "feet"),
  2372. weight: math.unit(2400, "lb"),
  2373. name: "Lounging",
  2374. image: {
  2375. source: "./media/characters/fen/lounging.svg"
  2376. }
  2377. },
  2378. },
  2379. [
  2380. {
  2381. name: "Small",
  2382. height: math.unit(2.2428, "meter")
  2383. },
  2384. {
  2385. name: "Normal",
  2386. height: math.unit(12, "feet"),
  2387. default: true,
  2388. },
  2389. {
  2390. name: "Big",
  2391. height: math.unit(20, "feet")
  2392. },
  2393. {
  2394. name: "Minimacro",
  2395. height: math.unit(40, "feet"),
  2396. info: {
  2397. description: {
  2398. mode: "append",
  2399. text: "\n\nTOO DAMN BIG"
  2400. }
  2401. }
  2402. },
  2403. {
  2404. name: "Macro",
  2405. height: math.unit(100, "feet"),
  2406. info: {
  2407. description: {
  2408. mode: "append",
  2409. text: "\n\nTOO DAMN BIG"
  2410. }
  2411. }
  2412. },
  2413. {
  2414. name: "Megamacro",
  2415. height: math.unit(2, "miles")
  2416. },
  2417. {
  2418. name: "Gigamacro",
  2419. height: math.unit(10, "earths")
  2420. },
  2421. ]
  2422. ))
  2423. characterMakers.push(() => makeCharacter(
  2424. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2425. {
  2426. front: {
  2427. height: math.unit(183, "cm"),
  2428. weight: math.unit(80, "kg"),
  2429. name: "Front",
  2430. image: {
  2431. source: "./media/characters/sofia-fluttertail/front.svg",
  2432. bottom: 0.01,
  2433. extra: 2154 / 2081
  2434. }
  2435. },
  2436. frontAlt: {
  2437. height: math.unit(183, "cm"),
  2438. weight: math.unit(80, "kg"),
  2439. name: "Front (alt)",
  2440. image: {
  2441. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2442. }
  2443. },
  2444. back: {
  2445. height: math.unit(183, "cm"),
  2446. weight: math.unit(80, "kg"),
  2447. name: "Back",
  2448. image: {
  2449. source: "./media/characters/sofia-fluttertail/back.svg"
  2450. }
  2451. },
  2452. kneeling: {
  2453. height: math.unit(125, "cm"),
  2454. weight: math.unit(80, "kg"),
  2455. name: "Kneeling",
  2456. image: {
  2457. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2458. extra: 1033 / 977,
  2459. bottom: 23.7 / 1057
  2460. }
  2461. },
  2462. maw: {
  2463. height: math.unit(183 / 5, "cm"),
  2464. name: "Maw",
  2465. image: {
  2466. source: "./media/characters/sofia-fluttertail/maw.svg"
  2467. }
  2468. },
  2469. mawcloseup: {
  2470. height: math.unit(183 / 5 * 0.41, "cm"),
  2471. name: "Maw (Closeup)",
  2472. image: {
  2473. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2474. }
  2475. },
  2476. paws: {
  2477. height: math.unit(1.17, "feet"),
  2478. name: "Paws",
  2479. image: {
  2480. source: "./media/characters/sofia-fluttertail/paws.svg",
  2481. extra: 851 / 851,
  2482. bottom: 17 / 868
  2483. }
  2484. },
  2485. },
  2486. [
  2487. {
  2488. name: "Normal",
  2489. height: math.unit(1.83, "meter")
  2490. },
  2491. {
  2492. name: "Size Thief",
  2493. height: math.unit(18, "feet")
  2494. },
  2495. {
  2496. name: "50 Foot Collie",
  2497. height: math.unit(50, "feet")
  2498. },
  2499. {
  2500. name: "Macro",
  2501. height: math.unit(96, "feet"),
  2502. default: true
  2503. },
  2504. {
  2505. name: "Megamerger",
  2506. height: math.unit(650, "feet")
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2512. {
  2513. front: {
  2514. height: math.unit(7, "feet"),
  2515. weight: math.unit(100, "kg"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/march/front.svg",
  2519. extra: 1992/1851,
  2520. bottom: 39/2031
  2521. }
  2522. },
  2523. foot: {
  2524. height: math.unit(0.9, "feet"),
  2525. name: "Foot",
  2526. image: {
  2527. source: "./media/characters/march/foot.svg"
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(7.9, "feet")
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(220, "meters")
  2539. },
  2540. {
  2541. name: "Megamacro",
  2542. height: math.unit(2.98, "km"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Gigamacro",
  2547. height: math.unit(15963, "km")
  2548. },
  2549. {
  2550. name: "Teramacro",
  2551. height: math.unit(2980000000, "km")
  2552. },
  2553. {
  2554. name: "Examacro",
  2555. height: math.unit(250, "parsecs")
  2556. },
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(6, "feet"),
  2564. weight: math.unit(60, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/noir/front.svg",
  2568. extra: 1,
  2569. bottom: 0.032
  2570. }
  2571. },
  2572. },
  2573. [
  2574. {
  2575. name: "Normal",
  2576. height: math.unit(6.6, "feet")
  2577. },
  2578. {
  2579. name: "Macro",
  2580. height: math.unit(500, "feet")
  2581. },
  2582. {
  2583. name: "Megamacro",
  2584. height: math.unit(2.5, "km"),
  2585. default: true
  2586. },
  2587. {
  2588. name: "Gigamacro",
  2589. height: math.unit(22500, "km")
  2590. },
  2591. {
  2592. name: "Teramacro",
  2593. height: math.unit(2500000000, "km")
  2594. },
  2595. {
  2596. name: "Examacro",
  2597. height: math.unit(200, "parsecs")
  2598. },
  2599. ]
  2600. ))
  2601. characterMakers.push(() => makeCharacter(
  2602. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2603. {
  2604. front: {
  2605. height: math.unit(7, "feet"),
  2606. weight: math.unit(100, "kg"),
  2607. name: "Front",
  2608. image: {
  2609. source: "./media/characters/okuri/front.svg",
  2610. extra: 739/665,
  2611. bottom: 39/778
  2612. }
  2613. },
  2614. back: {
  2615. height: math.unit(7, "feet"),
  2616. weight: math.unit(100, "kg"),
  2617. name: "Back",
  2618. image: {
  2619. source: "./media/characters/okuri/back.svg",
  2620. extra: 734/653,
  2621. bottom: 13/747
  2622. }
  2623. },
  2624. sitting: {
  2625. height: math.unit(2.95, "feet"),
  2626. weight: math.unit(100, "kg"),
  2627. name: "Sitting",
  2628. image: {
  2629. source: "./media/characters/okuri/sitting.svg",
  2630. extra: 370/318,
  2631. bottom: 99/469
  2632. }
  2633. },
  2634. },
  2635. [
  2636. {
  2637. name: "Smallest",
  2638. height: math.unit(5 + 2/12, "feet")
  2639. },
  2640. {
  2641. name: "Smaller",
  2642. height: math.unit(300, "feet")
  2643. },
  2644. {
  2645. name: "Small",
  2646. height: math.unit(1000, "feet")
  2647. },
  2648. {
  2649. name: "Macro",
  2650. height: math.unit(1, "mile")
  2651. },
  2652. {
  2653. name: "Mega Macro (Small)",
  2654. height: math.unit(20, "km")
  2655. },
  2656. {
  2657. name: "Mega Macro (Large)",
  2658. height: math.unit(600, "km")
  2659. },
  2660. {
  2661. name: "Giga Macro",
  2662. height: math.unit(10000, "km")
  2663. },
  2664. {
  2665. name: "Normal",
  2666. height: math.unit(577560, "km"),
  2667. default: true
  2668. },
  2669. {
  2670. name: "Large",
  2671. height: math.unit(4, "galaxies")
  2672. },
  2673. {
  2674. name: "Largest",
  2675. height: math.unit(15, "multiverses")
  2676. },
  2677. ]
  2678. ))
  2679. characterMakers.push(() => makeCharacter(
  2680. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2681. {
  2682. front: {
  2683. height: math.unit(7, "feet"),
  2684. weight: math.unit(100, "kg"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/manny/front.svg",
  2688. extra: 1,
  2689. bottom: 0.06
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(7, "feet"),
  2694. weight: math.unit(100, "kg"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/manny/back.svg",
  2698. extra: 1,
  2699. bottom: 0.014
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Normal",
  2706. height: math.unit(7, "feet"),
  2707. },
  2708. {
  2709. name: "Macro",
  2710. height: math.unit(78, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Macro+",
  2715. height: math.unit(300, "meters")
  2716. },
  2717. {
  2718. name: "Macro++",
  2719. height: math.unit(2400, "meters")
  2720. },
  2721. {
  2722. name: "Megamacro",
  2723. height: math.unit(5167, "meters")
  2724. },
  2725. {
  2726. name: "Gigamacro",
  2727. height: math.unit(41769, "miles")
  2728. },
  2729. ]
  2730. ))
  2731. characterMakers.push(() => makeCharacter(
  2732. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2733. {
  2734. front: {
  2735. height: math.unit(7, "feet"),
  2736. weight: math.unit(100, "kg"),
  2737. name: "Front",
  2738. image: {
  2739. source: "./media/characters/adake/front-1.svg"
  2740. }
  2741. },
  2742. frontAlt: {
  2743. height: math.unit(7, "feet"),
  2744. weight: math.unit(100, "kg"),
  2745. name: "Front (Alt)",
  2746. image: {
  2747. source: "./media/characters/adake/front-2.svg",
  2748. extra: 1,
  2749. bottom: 0.01
  2750. }
  2751. },
  2752. back: {
  2753. height: math.unit(7, "feet"),
  2754. weight: math.unit(100, "kg"),
  2755. name: "Back",
  2756. image: {
  2757. source: "./media/characters/adake/back.svg",
  2758. }
  2759. },
  2760. kneel: {
  2761. height: math.unit(5.385, "feet"),
  2762. weight: math.unit(100, "kg"),
  2763. name: "Kneeling",
  2764. image: {
  2765. source: "./media/characters/adake/kneel.svg",
  2766. bottom: 0.052
  2767. }
  2768. },
  2769. },
  2770. [
  2771. {
  2772. name: "Normal",
  2773. height: math.unit(7, "feet"),
  2774. },
  2775. {
  2776. name: "Macro",
  2777. height: math.unit(78, "feet"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Macro+",
  2782. height: math.unit(300, "meters")
  2783. },
  2784. {
  2785. name: "Macro++",
  2786. height: math.unit(2400, "meters")
  2787. },
  2788. {
  2789. name: "Megamacro",
  2790. height: math.unit(5167, "meters")
  2791. },
  2792. {
  2793. name: "Gigamacro",
  2794. height: math.unit(41769, "miles")
  2795. },
  2796. ]
  2797. ))
  2798. characterMakers.push(() => makeCharacter(
  2799. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2800. {
  2801. front: {
  2802. height: math.unit(1.65, "meters"),
  2803. weight: math.unit(50, "kg"),
  2804. name: "Front",
  2805. image: {
  2806. source: "./media/characters/elijah/front.svg",
  2807. extra: 858 / 830,
  2808. bottom: 95.5 / 953.8559
  2809. }
  2810. },
  2811. back: {
  2812. height: math.unit(1.65, "meters"),
  2813. weight: math.unit(50, "kg"),
  2814. name: "Back",
  2815. image: {
  2816. source: "./media/characters/elijah/back.svg",
  2817. extra: 895 / 850,
  2818. bottom: 5.3 / 897.956
  2819. }
  2820. },
  2821. frontNsfw: {
  2822. height: math.unit(1.65, "meters"),
  2823. weight: math.unit(50, "kg"),
  2824. name: "Front (NSFW)",
  2825. image: {
  2826. source: "./media/characters/elijah/front-nsfw.svg",
  2827. extra: 858 / 830,
  2828. bottom: 95.5 / 953.8559
  2829. }
  2830. },
  2831. backNsfw: {
  2832. height: math.unit(1.65, "meters"),
  2833. weight: math.unit(50, "kg"),
  2834. name: "Back (NSFW)",
  2835. image: {
  2836. source: "./media/characters/elijah/back-nsfw.svg",
  2837. extra: 895 / 850,
  2838. bottom: 5.3 / 897.956
  2839. }
  2840. },
  2841. dick: {
  2842. height: math.unit(1, "feet"),
  2843. name: "Dick",
  2844. image: {
  2845. source: "./media/characters/elijah/dick.svg"
  2846. }
  2847. },
  2848. beakOpen: {
  2849. height: math.unit(1.25, "feet"),
  2850. name: "Beak (Open)",
  2851. image: {
  2852. source: "./media/characters/elijah/beak-open.svg"
  2853. }
  2854. },
  2855. beakShut: {
  2856. height: math.unit(1.25, "feet"),
  2857. name: "Beak (Shut)",
  2858. image: {
  2859. source: "./media/characters/elijah/beak-shut.svg"
  2860. }
  2861. },
  2862. footFlexing: {
  2863. height: math.unit(1.61, "feet"),
  2864. name: "Foot (Flexing)",
  2865. image: {
  2866. source: "./media/characters/elijah/foot-flexing.svg"
  2867. }
  2868. },
  2869. footStepping: {
  2870. height: math.unit(1.44, "feet"),
  2871. name: "Foot (Stepping)",
  2872. image: {
  2873. source: "./media/characters/elijah/foot-stepping.svg"
  2874. }
  2875. },
  2876. plantigradeLeg: {
  2877. height: math.unit(2.34, "feet"),
  2878. name: "Plantigrade Leg",
  2879. image: {
  2880. source: "./media/characters/elijah/plantigrade-leg.svg"
  2881. }
  2882. },
  2883. plantigradeFootLeft: {
  2884. height: math.unit(0.9, "feet"),
  2885. name: "Plantigrade Foot (Left)",
  2886. image: {
  2887. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2888. }
  2889. },
  2890. plantigradeFootRight: {
  2891. height: math.unit(0.9, "feet"),
  2892. name: "Plantigrade Foot (Right)",
  2893. image: {
  2894. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2895. }
  2896. },
  2897. },
  2898. [
  2899. {
  2900. name: "Normal",
  2901. height: math.unit(1.65, "meters")
  2902. },
  2903. {
  2904. name: "Macro",
  2905. height: math.unit(55, "meters"),
  2906. default: true
  2907. },
  2908. {
  2909. name: "Macro+",
  2910. height: math.unit(105, "meters")
  2911. },
  2912. ]
  2913. ))
  2914. characterMakers.push(() => makeCharacter(
  2915. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2916. {
  2917. front: {
  2918. height: math.unit(7 + 2/12, "feet"),
  2919. weight: math.unit(320, "kg"),
  2920. preyCapacity: math.unit(0.276549935, "people"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/rai/front.svg",
  2924. extra: 1802/1696,
  2925. bottom: 68/1870
  2926. },
  2927. form: "anthro",
  2928. default: true
  2929. },
  2930. frontDressed: {
  2931. height: math.unit(7 + 2/12, "feet"),
  2932. weight: math.unit(320, "kg"),
  2933. preyCapacity: math.unit(0.276549935, "people"),
  2934. name: "Front (Dressed)",
  2935. image: {
  2936. source: "./media/characters/rai/front-dressed.svg",
  2937. extra: 1802/1696,
  2938. bottom: 68/1870
  2939. },
  2940. form: "anthro"
  2941. },
  2942. side: {
  2943. height: math.unit(7 + 2/12, "feet"),
  2944. weight: math.unit(320, "kg"),
  2945. preyCapacity: math.unit(0.276549935, "people"),
  2946. name: "Side",
  2947. image: {
  2948. source: "./media/characters/rai/side.svg",
  2949. extra: 1789/1710,
  2950. bottom: 115/1904
  2951. },
  2952. form: "anthro"
  2953. },
  2954. back: {
  2955. height: math.unit(7 + 2/12, "feet"),
  2956. weight: math.unit(320, "kg"),
  2957. preyCapacity: math.unit(0.276549935, "people"),
  2958. name: "Back",
  2959. image: {
  2960. source: "./media/characters/rai/back.svg",
  2961. extra: 1770/1707,
  2962. bottom: 28/1798
  2963. },
  2964. form: "anthro"
  2965. },
  2966. feral: {
  2967. height: math.unit(9.5, "feet"),
  2968. weight: math.unit(640, "kg"),
  2969. preyCapacity: math.unit(4, "people"),
  2970. name: "Feral",
  2971. image: {
  2972. source: "./media/characters/rai/feral.svg",
  2973. extra: 945/553,
  2974. bottom: 176/1121
  2975. },
  2976. form: "feral",
  2977. default: true
  2978. },
  2979. dragon: {
  2980. height: math.unit(23, "feet"),
  2981. weight: math.unit(50000, "lb"),
  2982. name: "Dragon",
  2983. image: {
  2984. source: "./media/characters/rai/dragon.svg",
  2985. extra: 2498 / 2030,
  2986. bottom: 85.2 / 2584
  2987. },
  2988. form: "dragon",
  2989. default: true
  2990. },
  2991. maw: {
  2992. height: math.unit(1.69, "feet"),
  2993. name: "Maw",
  2994. image: {
  2995. source: "./media/characters/rai/maw.svg"
  2996. },
  2997. form: "anthro"
  2998. },
  2999. },
  3000. [
  3001. {
  3002. name: "Normal",
  3003. height: math.unit(7 + 2/12, "feet"),
  3004. form: "anthro"
  3005. },
  3006. {
  3007. name: "Big",
  3008. height: math.unit(11, "feet"),
  3009. form: "anthro"
  3010. },
  3011. {
  3012. name: "Minimacro",
  3013. height: math.unit(77, "feet"),
  3014. form: "anthro"
  3015. },
  3016. {
  3017. name: "Macro",
  3018. height: math.unit(302, "feet"),
  3019. default: true,
  3020. form: "anthro"
  3021. },
  3022. {
  3023. name: "Normal",
  3024. height: math.unit(9.5, "feet"),
  3025. form: "feral",
  3026. default: true
  3027. },
  3028. {
  3029. name: "Normal",
  3030. height: math.unit(23, "feet"),
  3031. form: "dragon",
  3032. default: true
  3033. }
  3034. ],
  3035. {
  3036. "anthro": {
  3037. name: "Anthro",
  3038. default: true
  3039. },
  3040. "feral": {
  3041. name: "Feral",
  3042. },
  3043. "dragon": {
  3044. name: "Dragon",
  3045. },
  3046. }
  3047. ))
  3048. characterMakers.push(() => makeCharacter(
  3049. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3050. {
  3051. frontDressed: {
  3052. height: math.unit(216, "feet"),
  3053. weight: math.unit(7000000, "lb"),
  3054. preyCapacity: math.unit(1321, "people"),
  3055. name: "Front (Dressed)",
  3056. image: {
  3057. source: "./media/characters/jazzy/front-dressed.svg",
  3058. extra: 2738 / 2651,
  3059. bottom: 41.8 / 2786
  3060. }
  3061. },
  3062. backDressed: {
  3063. height: math.unit(216, "feet"),
  3064. weight: math.unit(7000000, "lb"),
  3065. preyCapacity: math.unit(1321, "people"),
  3066. name: "Back (Dressed)",
  3067. image: {
  3068. source: "./media/characters/jazzy/back-dressed.svg",
  3069. extra: 2775 / 2673,
  3070. bottom: 36.8 / 2817
  3071. }
  3072. },
  3073. front: {
  3074. height: math.unit(216, "feet"),
  3075. weight: math.unit(7000000, "lb"),
  3076. preyCapacity: math.unit(1321, "people"),
  3077. name: "Front",
  3078. image: {
  3079. source: "./media/characters/jazzy/front.svg",
  3080. extra: 2738 / 2651,
  3081. bottom: 41.8 / 2786
  3082. }
  3083. },
  3084. back: {
  3085. height: math.unit(216, "feet"),
  3086. weight: math.unit(7000000, "lb"),
  3087. preyCapacity: math.unit(1321, "people"),
  3088. name: "Back",
  3089. image: {
  3090. source: "./media/characters/jazzy/back.svg",
  3091. extra: 2775 / 2673,
  3092. bottom: 36.8 / 2817
  3093. }
  3094. },
  3095. maw: {
  3096. height: math.unit(20, "feet"),
  3097. name: "Maw",
  3098. image: {
  3099. source: "./media/characters/jazzy/maw.svg"
  3100. }
  3101. },
  3102. paws: {
  3103. height: math.unit(27.5, "feet"),
  3104. name: "Paws",
  3105. image: {
  3106. source: "./media/characters/jazzy/paws.svg"
  3107. }
  3108. },
  3109. eye: {
  3110. height: math.unit(4.4, "feet"),
  3111. name: "Eye",
  3112. image: {
  3113. source: "./media/characters/jazzy/eye.svg"
  3114. }
  3115. },
  3116. droneOffense: {
  3117. height: math.unit(9.5, "inches"),
  3118. name: "Drone (Offense)",
  3119. image: {
  3120. source: "./media/characters/jazzy/drone-offense.svg"
  3121. }
  3122. },
  3123. droneRecon: {
  3124. height: math.unit(9.5, "inches"),
  3125. name: "Drone (Recon)",
  3126. image: {
  3127. source: "./media/characters/jazzy/drone-recon.svg"
  3128. }
  3129. },
  3130. droneDefense: {
  3131. height: math.unit(9.5, "inches"),
  3132. name: "Drone (Defense)",
  3133. image: {
  3134. source: "./media/characters/jazzy/drone-defense.svg"
  3135. }
  3136. },
  3137. },
  3138. [
  3139. {
  3140. name: "Macro",
  3141. height: math.unit(216, "feet"),
  3142. default: true
  3143. },
  3144. ]
  3145. ))
  3146. characterMakers.push(() => makeCharacter(
  3147. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3148. {
  3149. front: {
  3150. height: math.unit(9 + 6/12, "feet"),
  3151. weight: math.unit(700, "lb"),
  3152. name: "Front",
  3153. image: {
  3154. source: "./media/characters/flamm/front.svg",
  3155. extra: 1736/1596,
  3156. bottom: 93/1829
  3157. }
  3158. },
  3159. buff: {
  3160. height: math.unit(9 + 6/12, "feet"),
  3161. weight: math.unit(950, "lb"),
  3162. name: "Buff",
  3163. image: {
  3164. source: "./media/characters/flamm/buff.svg",
  3165. extra: 3018/2874,
  3166. bottom: 221/3239
  3167. }
  3168. },
  3169. },
  3170. [
  3171. {
  3172. name: "Normal",
  3173. height: math.unit(9.5, "feet")
  3174. },
  3175. {
  3176. name: "Macro",
  3177. height: math.unit(200, "feet"),
  3178. default: true
  3179. },
  3180. ]
  3181. ))
  3182. characterMakers.push(() => makeCharacter(
  3183. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3184. {
  3185. front: {
  3186. height: math.unit(5 + 3/12, "feet"),
  3187. weight: math.unit(60, "kg"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/zephiro/front.svg",
  3191. extra: 1873/1761,
  3192. bottom: 147/2020
  3193. }
  3194. },
  3195. side: {
  3196. height: math.unit(5 + 3/12, "feet"),
  3197. weight: math.unit(60, "kg"),
  3198. name: "Side",
  3199. image: {
  3200. source: "./media/characters/zephiro/side.svg",
  3201. extra: 1929/1827,
  3202. bottom: 65/1994
  3203. }
  3204. },
  3205. back: {
  3206. height: math.unit(5 + 3/12, "feet"),
  3207. weight: math.unit(60, "kg"),
  3208. name: "Back",
  3209. image: {
  3210. source: "./media/characters/zephiro/back.svg",
  3211. extra: 1926/1816,
  3212. bottom: 41/1967
  3213. }
  3214. },
  3215. hand: {
  3216. height: math.unit(0.68, "feet"),
  3217. name: "Hand",
  3218. image: {
  3219. source: "./media/characters/zephiro/hand.svg"
  3220. }
  3221. },
  3222. paw: {
  3223. height: math.unit(1, "feet"),
  3224. name: "Paw",
  3225. image: {
  3226. source: "./media/characters/zephiro/paw.svg"
  3227. }
  3228. },
  3229. beans: {
  3230. height: math.unit(0.93, "feet"),
  3231. name: "Beans",
  3232. image: {
  3233. source: "./media/characters/zephiro/beans.svg"
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Micro",
  3240. height: math.unit(3, "inches")
  3241. },
  3242. {
  3243. name: "Normal",
  3244. height: math.unit(5 + 3 / 12, "feet"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Macro",
  3249. height: math.unit(118, "feet")
  3250. },
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3255. {
  3256. front: {
  3257. height: math.unit(5, "feet"),
  3258. weight: math.unit(90, "kg"),
  3259. preyCapacity: math.unit(14, "people"),
  3260. name: "Front",
  3261. image: {
  3262. source: "./media/characters/fory/front.svg",
  3263. extra: 2862 / 2674,
  3264. bottom: 180 / 3043.8
  3265. },
  3266. form: "weaselbun",
  3267. default: true,
  3268. extraAttributes: {
  3269. "pawSize": {
  3270. name: "Paw Size",
  3271. power: 2,
  3272. type: "area",
  3273. base: math.unit(0.1596, "m^2")
  3274. },
  3275. "pawLength": {
  3276. name: "Paw Length",
  3277. power: 1,
  3278. type: "length",
  3279. base: math.unit(0.7, "m")
  3280. }
  3281. }
  3282. },
  3283. back: {
  3284. height: math.unit(5, "feet"),
  3285. weight: math.unit(90, "kg"),
  3286. preyCapacity: math.unit(14, "people"),
  3287. name: "Back",
  3288. image: {
  3289. source: "./media/characters/fory/back.svg",
  3290. extra: 1790/1672,
  3291. bottom: 84/1874
  3292. },
  3293. form: "weaselbun",
  3294. extraAttributes: {
  3295. "pawSize": {
  3296. name: "Paw Size",
  3297. power: 2,
  3298. type: "area",
  3299. base: math.unit(0.1596, "m^2")
  3300. },
  3301. "pawLength": {
  3302. name: "Paw Length",
  3303. power: 1,
  3304. type: "length",
  3305. base: math.unit(0.7, "m")
  3306. }
  3307. }
  3308. },
  3309. paw: {
  3310. height: math.unit(2.14, "feet"),
  3311. name: "Paw",
  3312. image: {
  3313. source: "./media/characters/fory/paw.svg"
  3314. },
  3315. form: "weaselbun",
  3316. extraAttributes: {
  3317. "pawSize": {
  3318. name: "Paw Size",
  3319. power: 2,
  3320. type: "area",
  3321. base: math.unit(0.1596, "m^2")
  3322. },
  3323. "pawLength": {
  3324. name: "Paw Length",
  3325. power: 1,
  3326. type: "length",
  3327. base: math.unit(0.48, "m")
  3328. }
  3329. }
  3330. },
  3331. bunBack: {
  3332. height: math.unit(3, "feet"),
  3333. weight: math.unit(20, "kg"),
  3334. preyCapacity: math.unit(3, "people"),
  3335. name: "Back",
  3336. image: {
  3337. source: "./media/characters/fory/bun-back.svg",
  3338. extra: 1749/1564,
  3339. bottom: 246/1995
  3340. },
  3341. form: "bun",
  3342. default: true,
  3343. extraAttributes: {
  3344. "pawSize": {
  3345. name: "Paw Size",
  3346. power: 2,
  3347. type: "area",
  3348. base: math.unit(0.072, "m^2")
  3349. },
  3350. "pawLength": {
  3351. name: "Paw Length",
  3352. power: 1,
  3353. type: "length",
  3354. base: math.unit(0.45, "m")
  3355. }
  3356. }
  3357. },
  3358. },
  3359. [
  3360. {
  3361. name: "Normal",
  3362. height: math.unit(5, "feet"),
  3363. form: "weaselbun"
  3364. },
  3365. {
  3366. name: "Macro",
  3367. height: math.unit(50, "feet"),
  3368. default: true,
  3369. form: "weaselbun"
  3370. },
  3371. {
  3372. name: "Megamacro",
  3373. height: math.unit(10, "miles"),
  3374. form: "weaselbun"
  3375. },
  3376. {
  3377. name: "Gigamacro",
  3378. height: math.unit(5, "earths"),
  3379. form: "weaselbun"
  3380. },
  3381. {
  3382. name: "Normal",
  3383. height: math.unit(3, "feet"),
  3384. default: true,
  3385. form: "bun"
  3386. },
  3387. {
  3388. name: "Fun-Size",
  3389. height: math.unit(12, "feet"),
  3390. form: "bun"
  3391. },
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(100, "feet"),
  3395. form: "bun"
  3396. },
  3397. {
  3398. name: "Planetary",
  3399. height: math.unit(3, "earths"),
  3400. form: "bun"
  3401. },
  3402. ],
  3403. {
  3404. "weaselbun": {
  3405. name: "Weaselbun",
  3406. default: true
  3407. },
  3408. "bun": {
  3409. name: "Bun",
  3410. },
  3411. }
  3412. ))
  3413. characterMakers.push(() => makeCharacter(
  3414. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3415. {
  3416. front: {
  3417. height: math.unit(7, "feet"),
  3418. weight: math.unit(90, "kg"),
  3419. name: "Front",
  3420. image: {
  3421. source: "./media/characters/kurrikage/front.svg",
  3422. extra: 1845/1733,
  3423. bottom: 119/1964
  3424. }
  3425. },
  3426. back: {
  3427. height: math.unit(7, "feet"),
  3428. weight: math.unit(90, "kg"),
  3429. name: "Back",
  3430. image: {
  3431. source: "./media/characters/kurrikage/back.svg",
  3432. extra: 1790/1677,
  3433. bottom: 61/1851
  3434. }
  3435. },
  3436. dressed: {
  3437. height: math.unit(7, "feet"),
  3438. weight: math.unit(90, "kg"),
  3439. name: "Dressed",
  3440. image: {
  3441. source: "./media/characters/kurrikage/dressed.svg",
  3442. extra: 1845/1733,
  3443. bottom: 119/1964
  3444. }
  3445. },
  3446. foot: {
  3447. height: math.unit(1.5, "feet"),
  3448. name: "Foot",
  3449. image: {
  3450. source: "./media/characters/kurrikage/foot.svg"
  3451. }
  3452. },
  3453. staff: {
  3454. height: math.unit(6.7, "feet"),
  3455. name: "Staff",
  3456. image: {
  3457. source: "./media/characters/kurrikage/staff.svg"
  3458. }
  3459. },
  3460. peek: {
  3461. height: math.unit(1.05, "feet"),
  3462. name: "Peeking",
  3463. image: {
  3464. source: "./media/characters/kurrikage/peek.svg",
  3465. bottom: 0.08
  3466. }
  3467. },
  3468. },
  3469. [
  3470. {
  3471. name: "Normal",
  3472. height: math.unit(12, "feet"),
  3473. default: true
  3474. },
  3475. {
  3476. name: "Big",
  3477. height: math.unit(20, "feet")
  3478. },
  3479. {
  3480. name: "Macro",
  3481. height: math.unit(500, "feet")
  3482. },
  3483. {
  3484. name: "Megamacro",
  3485. height: math.unit(20, "miles")
  3486. },
  3487. ]
  3488. ))
  3489. characterMakers.push(() => makeCharacter(
  3490. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3491. {
  3492. front: {
  3493. height: math.unit(6, "feet"),
  3494. weight: math.unit(75, "kg"),
  3495. name: "Front",
  3496. image: {
  3497. source: "./media/characters/shingo/front.svg",
  3498. extra: 1900/1825,
  3499. bottom: 82/1982
  3500. }
  3501. },
  3502. side: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(75, "kg"),
  3505. name: "Side",
  3506. image: {
  3507. source: "./media/characters/shingo/side.svg",
  3508. extra: 1930/1865,
  3509. bottom: 16/1946
  3510. }
  3511. },
  3512. back: {
  3513. height: math.unit(6, "feet"),
  3514. weight: math.unit(75, "kg"),
  3515. name: "Back",
  3516. image: {
  3517. source: "./media/characters/shingo/back.svg",
  3518. extra: 1922/1852,
  3519. bottom: 16/1938
  3520. }
  3521. },
  3522. frontDressed: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(150, "lb"),
  3525. name: "Front-dressed",
  3526. image: {
  3527. source: "./media/characters/shingo/front-dressed.svg",
  3528. extra: 1900/1825,
  3529. bottom: 82/1982
  3530. }
  3531. },
  3532. paw: {
  3533. height: math.unit(1.29, "feet"),
  3534. name: "Paw",
  3535. image: {
  3536. source: "./media/characters/shingo/paw.svg"
  3537. }
  3538. },
  3539. hand: {
  3540. height: math.unit(1.07, "feet"),
  3541. name: "Hand",
  3542. image: {
  3543. source: "./media/characters/shingo/hand.svg"
  3544. }
  3545. },
  3546. frontAlt: {
  3547. height: math.unit(6, "feet"),
  3548. weight: math.unit(75, "kg"),
  3549. name: "Front (Alt)",
  3550. image: {
  3551. source: "./media/characters/shingo/front-alt.svg",
  3552. extra: 3511 / 3338,
  3553. bottom: 0.005
  3554. }
  3555. },
  3556. frontAlt2: {
  3557. height: math.unit(6, "feet"),
  3558. weight: math.unit(75, "kg"),
  3559. name: "Front (Alt 2)",
  3560. image: {
  3561. source: "./media/characters/shingo/front-alt-2.svg",
  3562. extra: 706/681,
  3563. bottom: 11/717
  3564. }
  3565. },
  3566. pawAlt: {
  3567. height: math.unit(1, "feet"),
  3568. name: "Paw (Alt)",
  3569. image: {
  3570. source: "./media/characters/shingo/paw-alt.svg"
  3571. }
  3572. },
  3573. },
  3574. [
  3575. {
  3576. name: "Micro",
  3577. height: math.unit(4, "inches")
  3578. },
  3579. {
  3580. name: "Normal",
  3581. height: math.unit(6, "feet"),
  3582. default: true
  3583. },
  3584. {
  3585. name: "Macro",
  3586. height: math.unit(108, "feet")
  3587. },
  3588. {
  3589. name: "Macro+",
  3590. height: math.unit(1500, "feet")
  3591. },
  3592. ]
  3593. ))
  3594. characterMakers.push(() => makeCharacter(
  3595. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3596. {
  3597. side: {
  3598. height: math.unit(6, "feet"),
  3599. weight: math.unit(75, "kg"),
  3600. name: "Side",
  3601. image: {
  3602. source: "./media/characters/aigey/side.svg"
  3603. }
  3604. },
  3605. },
  3606. [
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(200, "feet"),
  3610. default: true
  3611. },
  3612. {
  3613. name: "Megamacro",
  3614. height: math.unit(100, "miles")
  3615. },
  3616. ]
  3617. )
  3618. )
  3619. characterMakers.push(() => makeCharacter(
  3620. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3621. {
  3622. front: {
  3623. height: math.unit(5 + 5 / 12, "feet"),
  3624. weight: math.unit(75, "kg"),
  3625. name: "Front",
  3626. image: {
  3627. source: "./media/characters/natasha/front.svg",
  3628. extra: 859 / 824,
  3629. bottom: 23 / 879.6
  3630. }
  3631. },
  3632. frontNsfw: {
  3633. height: math.unit(5 + 5 / 12, "feet"),
  3634. weight: math.unit(75, "kg"),
  3635. name: "Front (NSFW)",
  3636. image: {
  3637. source: "./media/characters/natasha/front-nsfw.svg",
  3638. extra: 859 / 824,
  3639. bottom: 23 / 879.6
  3640. }
  3641. },
  3642. frontErect: {
  3643. height: math.unit(5 + 5 / 12, "feet"),
  3644. weight: math.unit(75, "kg"),
  3645. name: "Front (Erect)",
  3646. image: {
  3647. source: "./media/characters/natasha/front-erect.svg",
  3648. extra: 859 / 824,
  3649. bottom: 23 / 879.6
  3650. }
  3651. },
  3652. back: {
  3653. height: math.unit(5 + 5 / 12, "feet"),
  3654. weight: math.unit(75, "kg"),
  3655. name: "Back",
  3656. image: {
  3657. source: "./media/characters/natasha/back.svg",
  3658. extra: 887.9 / 852.6,
  3659. bottom: 9.7 / 896.4
  3660. }
  3661. },
  3662. backAlt: {
  3663. height: math.unit(5 + 5 / 12, "feet"),
  3664. weight: math.unit(75, "kg"),
  3665. name: "Back (Alt)",
  3666. image: {
  3667. source: "./media/characters/natasha/back-alt.svg",
  3668. extra: 1236.7 / 1192,
  3669. bottom: 22.3 / 1258.2
  3670. }
  3671. },
  3672. dick: {
  3673. height: math.unit(1.772, "feet"),
  3674. name: "Dick",
  3675. image: {
  3676. source: "./media/characters/natasha/dick.svg"
  3677. }
  3678. },
  3679. paw: {
  3680. height: math.unit(0.250, "meters"),
  3681. name: "Paw",
  3682. image: {
  3683. source: "./media/characters/natasha/paw.svg"
  3684. },
  3685. extraAttributes: {
  3686. "toeSize": {
  3687. name: "Toe Size",
  3688. power: 2,
  3689. type: "area",
  3690. base: math.unit(0.0024, "m^2")
  3691. },
  3692. "padSize": {
  3693. name: "Pad Size",
  3694. power: 2,
  3695. type: "area",
  3696. base: math.unit(0.00889, "m^2")
  3697. },
  3698. "pawSize": {
  3699. name: "Paw Size",
  3700. power: 2,
  3701. type: "area",
  3702. base: math.unit(0.023667, "m^2")
  3703. },
  3704. }
  3705. },
  3706. },
  3707. [
  3708. {
  3709. name: "Shortstack",
  3710. height: math.unit(3, "feet"),
  3711. default: true
  3712. },
  3713. {
  3714. name: "Normal",
  3715. height: math.unit(5 + 5 / 12, "feet")
  3716. },
  3717. {
  3718. name: "Large",
  3719. height: math.unit(12, "feet")
  3720. },
  3721. {
  3722. name: "Macro",
  3723. height: math.unit(100, "feet")
  3724. },
  3725. {
  3726. name: "Macro+",
  3727. height: math.unit(260, "feet")
  3728. },
  3729. {
  3730. name: "Macro++",
  3731. height: math.unit(1, "mile")
  3732. },
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3737. {
  3738. front: {
  3739. height: math.unit(6, "feet"),
  3740. weight: math.unit(75, "kg"),
  3741. name: "Front",
  3742. image: {
  3743. source: "./media/characters/malik/front.svg",
  3744. extra: 1750/1561,
  3745. bottom: 80/1830
  3746. },
  3747. extraAttributes: {
  3748. "toeSize": {
  3749. name: "Toe Size",
  3750. power: 2,
  3751. type: "area",
  3752. base: math.unit(0.0159, "m^2")
  3753. },
  3754. "pawSize": {
  3755. name: "Paw Size",
  3756. power: 2,
  3757. type: "area",
  3758. base: math.unit(0.09834, "m^2")
  3759. },
  3760. }
  3761. },
  3762. side: {
  3763. height: math.unit(6, "feet"),
  3764. weight: math.unit(75, "kg"),
  3765. name: "Side",
  3766. image: {
  3767. source: "./media/characters/malik/side.svg",
  3768. extra: 1802/1685,
  3769. bottom: 42/1844
  3770. },
  3771. extraAttributes: {
  3772. "toeSize": {
  3773. name: "Toe Size",
  3774. power: 2,
  3775. type: "area",
  3776. base: math.unit(0.0159, "m^2")
  3777. },
  3778. "pawSize": {
  3779. name: "Paw Size",
  3780. power: 2,
  3781. type: "area",
  3782. base: math.unit(0.09834, "m^2")
  3783. },
  3784. }
  3785. },
  3786. back: {
  3787. height: math.unit(6, "feet"),
  3788. weight: math.unit(75, "kg"),
  3789. name: "Back",
  3790. image: {
  3791. source: "./media/characters/malik/back.svg",
  3792. extra: 1803/1607,
  3793. bottom: 33/1836
  3794. },
  3795. extraAttributes: {
  3796. "toeSize": {
  3797. name: "Toe Size",
  3798. power: 2,
  3799. type: "area",
  3800. base: math.unit(0.0159, "m^2")
  3801. },
  3802. "pawSize": {
  3803. name: "Paw Size",
  3804. power: 2,
  3805. type: "area",
  3806. base: math.unit(0.09834, "m^2")
  3807. },
  3808. }
  3809. },
  3810. },
  3811. [
  3812. {
  3813. name: "Macro",
  3814. height: math.unit(156, "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Macro+",
  3819. height: math.unit(1188, "feet")
  3820. },
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(6, "feet"),
  3828. weight: math.unit(75, "kg"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/sefer/front.svg",
  3832. extra: 848 / 659,
  3833. bottom: 28.3 / 876.442
  3834. }
  3835. },
  3836. back: {
  3837. height: math.unit(6, "feet"),
  3838. weight: math.unit(75, "kg"),
  3839. name: "Back",
  3840. image: {
  3841. source: "./media/characters/sefer/back.svg",
  3842. extra: 864 / 695,
  3843. bottom: 10 / 871
  3844. }
  3845. },
  3846. frontDressed: {
  3847. height: math.unit(6, "feet"),
  3848. weight: math.unit(75, "kg"),
  3849. name: "Dressed",
  3850. image: {
  3851. source: "./media/characters/sefer/dressed.svg",
  3852. extra: 839 / 653,
  3853. bottom: 37.6 / 878
  3854. }
  3855. },
  3856. },
  3857. [
  3858. {
  3859. name: "Normal",
  3860. height: math.unit(6, "feet"),
  3861. default: true
  3862. },
  3863. {
  3864. name: "Big",
  3865. height: math.unit(8, "meters")
  3866. },
  3867. ]
  3868. ))
  3869. characterMakers.push(() => makeCharacter(
  3870. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3871. {
  3872. body: {
  3873. height: math.unit(2.2428, "meter"),
  3874. weight: math.unit(124.738, "kg"),
  3875. name: "Body",
  3876. image: {
  3877. extra: 1225 / 1050,
  3878. source: "./media/characters/north/front.svg"
  3879. }
  3880. }
  3881. },
  3882. [
  3883. {
  3884. name: "Micro",
  3885. height: math.unit(4, "inches")
  3886. },
  3887. {
  3888. name: "Macro",
  3889. height: math.unit(63, "meters")
  3890. },
  3891. {
  3892. name: "Megamacro",
  3893. height: math.unit(101, "miles"),
  3894. default: true
  3895. }
  3896. ]
  3897. ))
  3898. characterMakers.push(() => makeCharacter(
  3899. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3900. {
  3901. angled: {
  3902. height: math.unit(4, "meter"),
  3903. weight: math.unit(150, "kg"),
  3904. name: "Angled",
  3905. image: {
  3906. source: "./media/characters/talan/angled-sfw.svg",
  3907. bottom: 29 / 3734
  3908. }
  3909. },
  3910. angledNsfw: {
  3911. height: math.unit(4, "meter"),
  3912. weight: math.unit(150, "kg"),
  3913. name: "Angled (NSFW)",
  3914. image: {
  3915. source: "./media/characters/talan/angled-nsfw.svg",
  3916. bottom: 29 / 3734
  3917. }
  3918. },
  3919. frontNsfw: {
  3920. height: math.unit(4, "meter"),
  3921. weight: math.unit(150, "kg"),
  3922. name: "Front (NSFW)",
  3923. image: {
  3924. source: "./media/characters/talan/front-nsfw.svg",
  3925. bottom: 29 / 3734
  3926. }
  3927. },
  3928. sideNsfw: {
  3929. height: math.unit(4, "meter"),
  3930. weight: math.unit(150, "kg"),
  3931. name: "Side (NSFW)",
  3932. image: {
  3933. source: "./media/characters/talan/side-nsfw.svg",
  3934. bottom: 29 / 3734
  3935. }
  3936. },
  3937. back: {
  3938. height: math.unit(4, "meter"),
  3939. weight: math.unit(150, "kg"),
  3940. name: "Back",
  3941. image: {
  3942. source: "./media/characters/talan/back.svg"
  3943. }
  3944. },
  3945. dickBottom: {
  3946. height: math.unit(0.621, "meter"),
  3947. name: "Dick (Bottom)",
  3948. image: {
  3949. source: "./media/characters/talan/dick-bottom.svg"
  3950. }
  3951. },
  3952. dickTop: {
  3953. height: math.unit(0.621, "meter"),
  3954. name: "Dick (Top)",
  3955. image: {
  3956. source: "./media/characters/talan/dick-top.svg"
  3957. }
  3958. },
  3959. dickSide: {
  3960. height: math.unit(0.305, "meter"),
  3961. name: "Dick (Side)",
  3962. image: {
  3963. source: "./media/characters/talan/dick-side.svg"
  3964. }
  3965. },
  3966. dickFront: {
  3967. height: math.unit(0.305, "meter"),
  3968. name: "Dick (Front)",
  3969. image: {
  3970. source: "./media/characters/talan/dick-front.svg"
  3971. }
  3972. },
  3973. },
  3974. [
  3975. {
  3976. name: "Normal",
  3977. height: math.unit(4, "meters")
  3978. },
  3979. {
  3980. name: "Macro",
  3981. height: math.unit(100, "meters")
  3982. },
  3983. {
  3984. name: "Megamacro",
  3985. height: math.unit(2, "miles"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Gigamacro",
  3990. height: math.unit(5000, "miles")
  3991. },
  3992. {
  3993. name: "Teramacro",
  3994. height: math.unit(100, "parsecs")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(2, "meter"),
  4003. weight: math.unit(90, "kg"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/gael'rathus/front.svg"
  4007. }
  4008. },
  4009. frontAlt: {
  4010. height: math.unit(2, "meter"),
  4011. weight: math.unit(90, "kg"),
  4012. name: "Front (alt)",
  4013. image: {
  4014. source: "./media/characters/gael'rathus/front-alt.svg"
  4015. }
  4016. },
  4017. frontAlt2: {
  4018. height: math.unit(2, "meter"),
  4019. weight: math.unit(90, "kg"),
  4020. name: "Front (alt 2)",
  4021. image: {
  4022. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4023. }
  4024. }
  4025. },
  4026. [
  4027. {
  4028. name: "Normal",
  4029. height: math.unit(9, "feet"),
  4030. default: true
  4031. },
  4032. {
  4033. name: "Large",
  4034. height: math.unit(25, "feet")
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(0.25, "miles")
  4039. },
  4040. {
  4041. name: "Megamacro",
  4042. height: math.unit(10, "miles")
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4048. {
  4049. side: {
  4050. height: math.unit(2, "meter"),
  4051. weight: math.unit(140, "kg"),
  4052. name: "Side",
  4053. image: {
  4054. source: "./media/characters/sosha/side.svg",
  4055. extra: 1170/1006,
  4056. bottom: 94/1264
  4057. }
  4058. },
  4059. maw: {
  4060. height: math.unit(2.87, "feet"),
  4061. name: "Maw",
  4062. image: {
  4063. source: "./media/characters/sosha/maw.svg",
  4064. extra: 966/865,
  4065. bottom: 0/966
  4066. }
  4067. },
  4068. cooch: {
  4069. height: math.unit(5.6, "feet"),
  4070. name: "Cooch",
  4071. image: {
  4072. source: "./media/characters/sosha/cooch.svg"
  4073. }
  4074. },
  4075. },
  4076. [
  4077. {
  4078. name: "Normal",
  4079. height: math.unit(12, "feet"),
  4080. default: true
  4081. }
  4082. ]
  4083. ))
  4084. characterMakers.push(() => makeCharacter(
  4085. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4086. {
  4087. side: {
  4088. height: math.unit(5 + 5 / 12, "feet"),
  4089. weight: math.unit(170, "kg"),
  4090. name: "Side",
  4091. image: {
  4092. source: "./media/characters/runnola/side.svg",
  4093. extra: 741 / 448,
  4094. bottom: 0.05
  4095. }
  4096. },
  4097. },
  4098. [
  4099. {
  4100. name: "Small",
  4101. height: math.unit(3, "feet")
  4102. },
  4103. {
  4104. name: "Normal",
  4105. height: math.unit(5 + 5 / 12, "feet"),
  4106. default: true
  4107. },
  4108. {
  4109. name: "Big",
  4110. height: math.unit(10, "feet")
  4111. },
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(2, "meter"),
  4119. weight: math.unit(50, "kg"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/kurribird/front.svg",
  4123. bottom: 0.015
  4124. }
  4125. },
  4126. frontAlt: {
  4127. height: math.unit(1.5, "meter"),
  4128. weight: math.unit(50, "kg"),
  4129. name: "Front (Alt)",
  4130. image: {
  4131. source: "./media/characters/kurribird/front-alt.svg",
  4132. extra: 1.45
  4133. }
  4134. },
  4135. },
  4136. [
  4137. {
  4138. name: "Normal",
  4139. height: math.unit(7, "feet")
  4140. },
  4141. {
  4142. name: "Big",
  4143. height: math.unit(12, "feet"),
  4144. default: true
  4145. },
  4146. {
  4147. name: "Macro",
  4148. height: math.unit(1500, "feet")
  4149. },
  4150. {
  4151. name: "Megamacro",
  4152. height: math.unit(2, "miles")
  4153. }
  4154. ]
  4155. ))
  4156. characterMakers.push(() => makeCharacter(
  4157. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4158. {
  4159. front: {
  4160. height: math.unit(2, "meter"),
  4161. weight: math.unit(80, "kg"),
  4162. name: "Front",
  4163. image: {
  4164. source: "./media/characters/elbial/front.svg",
  4165. extra: 1643 / 1556,
  4166. bottom: 60.2 / 1696
  4167. }
  4168. },
  4169. side: {
  4170. height: math.unit(2, "meter"),
  4171. weight: math.unit(80, "kg"),
  4172. name: "Side",
  4173. image: {
  4174. source: "./media/characters/elbial/side.svg",
  4175. extra: 1601/1528,
  4176. bottom: 97/1698
  4177. }
  4178. },
  4179. back: {
  4180. height: math.unit(2, "meter"),
  4181. weight: math.unit(80, "kg"),
  4182. name: "Back",
  4183. image: {
  4184. source: "./media/characters/elbial/back.svg",
  4185. extra: 1653/1569,
  4186. bottom: 20/1673
  4187. }
  4188. },
  4189. frontDressed: {
  4190. height: math.unit(2, "meter"),
  4191. weight: math.unit(80, "kg"),
  4192. name: "Front (Dressed)",
  4193. image: {
  4194. source: "./media/characters/elbial/front-dressed.svg",
  4195. extra: 1638/1569,
  4196. bottom: 70/1708
  4197. }
  4198. },
  4199. genitals: {
  4200. height: math.unit(2 / 3.367, "meter"),
  4201. name: "Genitals",
  4202. image: {
  4203. source: "./media/characters/elbial/genitals.svg"
  4204. }
  4205. },
  4206. },
  4207. [
  4208. {
  4209. name: "Large",
  4210. height: math.unit(100, "feet")
  4211. },
  4212. {
  4213. name: "Macro",
  4214. height: math.unit(500, "feet"),
  4215. default: true
  4216. },
  4217. {
  4218. name: "Megamacro",
  4219. height: math.unit(10, "miles")
  4220. },
  4221. {
  4222. name: "Gigamacro",
  4223. height: math.unit(25000, "miles")
  4224. },
  4225. {
  4226. name: "Full-Size",
  4227. height: math.unit(8000000, "gigaparsecs")
  4228. }
  4229. ]
  4230. ))
  4231. characterMakers.push(() => makeCharacter(
  4232. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4233. {
  4234. front: {
  4235. height: math.unit(2, "meter"),
  4236. weight: math.unit(60, "kg"),
  4237. name: "Front",
  4238. image: {
  4239. source: "./media/characters/noah/front.svg"
  4240. }
  4241. },
  4242. talons: {
  4243. height: math.unit(0.315, "meter"),
  4244. name: "Talons",
  4245. image: {
  4246. source: "./media/characters/noah/talons.svg"
  4247. }
  4248. }
  4249. },
  4250. [
  4251. {
  4252. name: "Large",
  4253. height: math.unit(50, "feet")
  4254. },
  4255. {
  4256. name: "Macro",
  4257. height: math.unit(750, "feet"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Megamacro",
  4262. height: math.unit(50, "miles")
  4263. },
  4264. {
  4265. name: "Gigamacro",
  4266. height: math.unit(100000, "miles")
  4267. },
  4268. {
  4269. name: "Full-Size",
  4270. height: math.unit(3000000000, "miles")
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4276. {
  4277. front: {
  4278. height: math.unit(2, "meter"),
  4279. weight: math.unit(80, "kg"),
  4280. name: "Front",
  4281. image: {
  4282. source: "./media/characters/natalya/front.svg"
  4283. }
  4284. },
  4285. back: {
  4286. height: math.unit(2, "meter"),
  4287. weight: math.unit(80, "kg"),
  4288. name: "Back",
  4289. image: {
  4290. source: "./media/characters/natalya/back.svg"
  4291. }
  4292. }
  4293. },
  4294. [
  4295. {
  4296. name: "Normal",
  4297. height: math.unit(150, "feet"),
  4298. default: true
  4299. },
  4300. {
  4301. name: "Megamacro",
  4302. height: math.unit(5, "miles")
  4303. },
  4304. {
  4305. name: "Full-Size",
  4306. height: math.unit(600, "kiloparsecs")
  4307. }
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4312. {
  4313. front: {
  4314. height: math.unit(2, "meter"),
  4315. weight: math.unit(50, "kg"),
  4316. name: "Front",
  4317. image: {
  4318. source: "./media/characters/erestrebah/front.svg",
  4319. extra: 1262/1162,
  4320. bottom: 96/1358
  4321. }
  4322. },
  4323. back: {
  4324. height: math.unit(2, "meter"),
  4325. weight: math.unit(50, "kg"),
  4326. name: "Back",
  4327. image: {
  4328. source: "./media/characters/erestrebah/back.svg",
  4329. extra: 1257/1139,
  4330. bottom: 13/1270
  4331. }
  4332. },
  4333. wing: {
  4334. height: math.unit(2, "meter"),
  4335. weight: math.unit(50, "kg"),
  4336. name: "Wing",
  4337. image: {
  4338. source: "./media/characters/erestrebah/wing.svg",
  4339. extra: 1262/1162,
  4340. bottom: 96/1358
  4341. }
  4342. },
  4343. mouth: {
  4344. height: math.unit(0.39, "feet"),
  4345. name: "Mouth",
  4346. image: {
  4347. source: "./media/characters/erestrebah/mouth.svg"
  4348. }
  4349. }
  4350. },
  4351. [
  4352. {
  4353. name: "Normal",
  4354. height: math.unit(10, "feet")
  4355. },
  4356. {
  4357. name: "Large",
  4358. height: math.unit(50, "feet"),
  4359. default: true
  4360. },
  4361. {
  4362. name: "Macro",
  4363. height: math.unit(300, "feet")
  4364. },
  4365. {
  4366. name: "Macro+",
  4367. height: math.unit(750, "feet")
  4368. },
  4369. {
  4370. name: "Megamacro",
  4371. height: math.unit(3, "miles")
  4372. }
  4373. ]
  4374. ))
  4375. characterMakers.push(() => makeCharacter(
  4376. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4377. {
  4378. front: {
  4379. height: math.unit(2, "meter"),
  4380. weight: math.unit(80, "kg"),
  4381. name: "Front",
  4382. image: {
  4383. source: "./media/characters/jennifer/front.svg",
  4384. bottom: 0.11,
  4385. extra: 1.16
  4386. }
  4387. },
  4388. frontAlt: {
  4389. height: math.unit(2, "meter"),
  4390. weight: math.unit(80, "kg"),
  4391. name: "Front (Alt)",
  4392. image: {
  4393. source: "./media/characters/jennifer/front-alt.svg"
  4394. }
  4395. }
  4396. },
  4397. [
  4398. {
  4399. name: "Canon Height",
  4400. height: math.unit(120, "feet"),
  4401. default: true
  4402. },
  4403. {
  4404. name: "Macro+",
  4405. height: math.unit(300, "feet")
  4406. },
  4407. {
  4408. name: "Megamacro",
  4409. height: math.unit(20000, "feet")
  4410. }
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4415. {
  4416. front: {
  4417. height: math.unit(2, "meter"),
  4418. weight: math.unit(50, "kg"),
  4419. name: "Front",
  4420. image: {
  4421. source: "./media/characters/kalista/front.svg",
  4422. extra: 1314/1145,
  4423. bottom: 101/1415
  4424. }
  4425. },
  4426. back: {
  4427. height: math.unit(2, "meter"),
  4428. weight: math.unit(50, "kg"),
  4429. name: "Back",
  4430. image: {
  4431. source: "./media/characters/kalista/back.svg",
  4432. extra: 1366 / 1156,
  4433. bottom: 33.9 / 1362.78
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Uncomfortably Small",
  4440. height: math.unit(10, "feet")
  4441. },
  4442. {
  4443. name: "Small",
  4444. height: math.unit(30, "feet")
  4445. },
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(100, "feet"),
  4449. default: true
  4450. },
  4451. {
  4452. name: "Macro+",
  4453. height: math.unit(2000, "feet")
  4454. },
  4455. {
  4456. name: "True Form",
  4457. height: math.unit(8924, "miles")
  4458. }
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4463. {
  4464. front: {
  4465. height: math.unit(2, "meter"),
  4466. weight: math.unit(120, "kg"),
  4467. name: "Front",
  4468. image: {
  4469. source: "./media/characters/ggv/front.svg"
  4470. }
  4471. },
  4472. side: {
  4473. height: math.unit(2, "meter"),
  4474. weight: math.unit(120, "kg"),
  4475. name: "Side",
  4476. image: {
  4477. source: "./media/characters/ggv/side.svg"
  4478. }
  4479. }
  4480. },
  4481. [
  4482. {
  4483. name: "Extremely Puny",
  4484. height: math.unit(9 + 5 / 12, "feet")
  4485. },
  4486. {
  4487. name: "Horribly Small",
  4488. height: math.unit(47.7, "miles"),
  4489. default: true
  4490. },
  4491. {
  4492. name: "Reasonably Sized",
  4493. height: math.unit(25000, "parsecs")
  4494. },
  4495. {
  4496. name: "Slightly Uncompressed",
  4497. height: math.unit(7.77e31, "parsecs")
  4498. },
  4499. {
  4500. name: "Omniversal",
  4501. height: math.unit(1e300, "meters")
  4502. },
  4503. ]
  4504. ))
  4505. characterMakers.push(() => makeCharacter(
  4506. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4507. {
  4508. front: {
  4509. height: math.unit(2, "meter"),
  4510. weight: math.unit(75, "lb"),
  4511. name: "Front",
  4512. image: {
  4513. source: "./media/characters/napalm/front.svg"
  4514. }
  4515. },
  4516. back: {
  4517. height: math.unit(2, "meter"),
  4518. weight: math.unit(75, "lb"),
  4519. name: "Back",
  4520. image: {
  4521. source: "./media/characters/napalm/back.svg"
  4522. }
  4523. }
  4524. },
  4525. [
  4526. {
  4527. name: "Standard",
  4528. height: math.unit(55, "feet"),
  4529. default: true
  4530. }
  4531. ]
  4532. ))
  4533. characterMakers.push(() => makeCharacter(
  4534. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4535. {
  4536. front: {
  4537. height: math.unit(7 + 5 / 6, "feet"),
  4538. weight: math.unit(325, "lb"),
  4539. name: "Front",
  4540. image: {
  4541. source: "./media/characters/asana/front.svg",
  4542. extra: 1133 / 1060,
  4543. bottom: 15.2 / 1148.6
  4544. }
  4545. },
  4546. back: {
  4547. height: math.unit(7 + 5 / 6, "feet"),
  4548. weight: math.unit(325, "lb"),
  4549. name: "Back",
  4550. image: {
  4551. source: "./media/characters/asana/back.svg",
  4552. extra: 1114 / 1043,
  4553. bottom: 5 / 1120
  4554. }
  4555. },
  4556. dressedDark: {
  4557. height: math.unit(7 + 5 / 6, "feet"),
  4558. weight: math.unit(325, "lb"),
  4559. name: "Dressed (Dark)",
  4560. image: {
  4561. source: "./media/characters/asana/dressed-dark.svg",
  4562. extra: 1133 / 1060,
  4563. bottom: 15.2 / 1148.6
  4564. }
  4565. },
  4566. dressedLight: {
  4567. height: math.unit(7 + 5 / 6, "feet"),
  4568. weight: math.unit(325, "lb"),
  4569. name: "Dressed (Light)",
  4570. image: {
  4571. source: "./media/characters/asana/dressed-light.svg",
  4572. extra: 1133 / 1060,
  4573. bottom: 15.2 / 1148.6
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Standard",
  4580. height: math.unit(7 + 5 / 6, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Large",
  4585. height: math.unit(10, "meters")
  4586. },
  4587. {
  4588. name: "Macro",
  4589. height: math.unit(2500, "meters")
  4590. },
  4591. {
  4592. name: "Megamacro",
  4593. height: math.unit(5e6, "meters")
  4594. },
  4595. {
  4596. name: "Examacro",
  4597. height: math.unit(5e12, "lightyears")
  4598. },
  4599. {
  4600. name: "Max Size",
  4601. height: math.unit(1e31, "lightyears")
  4602. }
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4607. {
  4608. front: {
  4609. height: math.unit(2, "meter"),
  4610. weight: math.unit(60, "kg"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/ebony/front.svg",
  4614. bottom: 0.03,
  4615. extra: 1045 / 810 + 0.03
  4616. }
  4617. },
  4618. side: {
  4619. height: math.unit(2, "meter"),
  4620. weight: math.unit(60, "kg"),
  4621. name: "Side",
  4622. image: {
  4623. source: "./media/characters/ebony/side.svg",
  4624. bottom: 0.03,
  4625. extra: 1045 / 810 + 0.03
  4626. }
  4627. },
  4628. back: {
  4629. height: math.unit(2, "meter"),
  4630. weight: math.unit(60, "kg"),
  4631. name: "Back",
  4632. image: {
  4633. source: "./media/characters/ebony/back.svg",
  4634. bottom: 0.01,
  4635. extra: 1045 / 810 + 0.01
  4636. }
  4637. },
  4638. },
  4639. [
  4640. // TODO check why I did this lol
  4641. {
  4642. name: "Standard",
  4643. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4644. default: true
  4645. },
  4646. {
  4647. name: "Macro",
  4648. height: math.unit(200, "feet")
  4649. },
  4650. {
  4651. name: "Gigamacro",
  4652. height: math.unit(13000, "km")
  4653. }
  4654. ]
  4655. ))
  4656. characterMakers.push(() => makeCharacter(
  4657. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4658. {
  4659. front: {
  4660. height: math.unit(6, "feet"),
  4661. weight: math.unit(175, "lb"),
  4662. name: "Front",
  4663. image: {
  4664. source: "./media/characters/mountain/front.svg",
  4665. extra: 972 / 955,
  4666. bottom: 64 / 1036.6
  4667. }
  4668. },
  4669. back: {
  4670. height: math.unit(6, "feet"),
  4671. weight: math.unit(175, "lb"),
  4672. name: "Back",
  4673. image: {
  4674. source: "./media/characters/mountain/back.svg",
  4675. extra: 970 / 950,
  4676. bottom: 28.25 / 999
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "Large",
  4683. height: math.unit(20, "meters")
  4684. },
  4685. {
  4686. name: "Macro",
  4687. height: math.unit(300, "meters")
  4688. },
  4689. {
  4690. name: "Gigamacro",
  4691. height: math.unit(10000, "km"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Examacro",
  4696. height: math.unit(10e9, "lightyears")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(8, "feet"),
  4705. weight: math.unit(500, "lb"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/rick/front.svg"
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Normal",
  4715. height: math.unit(8, "feet"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Macro",
  4720. height: math.unit(5, "km")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(8, "feet"),
  4729. weight: math.unit(120, "lb"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/ona/front.svg"
  4733. }
  4734. },
  4735. frontAlt: {
  4736. height: math.unit(8, "feet"),
  4737. weight: math.unit(120, "lb"),
  4738. name: "Front (Alt)",
  4739. image: {
  4740. source: "./media/characters/ona/front-alt.svg"
  4741. }
  4742. },
  4743. back: {
  4744. height: math.unit(8, "feet"),
  4745. weight: math.unit(120, "lb"),
  4746. name: "Back",
  4747. image: {
  4748. source: "./media/characters/ona/back.svg"
  4749. }
  4750. },
  4751. foot: {
  4752. height: math.unit(1.1, "feet"),
  4753. name: "Foot",
  4754. image: {
  4755. source: "./media/characters/ona/foot.svg"
  4756. }
  4757. }
  4758. },
  4759. [
  4760. {
  4761. name: "Megamacro",
  4762. height: math.unit(70, "km"),
  4763. default: true
  4764. },
  4765. {
  4766. name: "Gigamacro",
  4767. height: math.unit(681818, "miles")
  4768. },
  4769. {
  4770. name: "Examacro",
  4771. height: math.unit(3800000, "lightyears")
  4772. },
  4773. ]
  4774. ))
  4775. characterMakers.push(() => makeCharacter(
  4776. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4777. {
  4778. front: {
  4779. height: math.unit(12, "feet"),
  4780. weight: math.unit(3000, "lb"),
  4781. name: "Front",
  4782. image: {
  4783. source: "./media/characters/mech/front.svg",
  4784. extra: 2900 / 2770,
  4785. bottom: 110 / 3010
  4786. }
  4787. },
  4788. back: {
  4789. height: math.unit(12, "feet"),
  4790. weight: math.unit(3000, "lb"),
  4791. name: "Back",
  4792. image: {
  4793. source: "./media/characters/mech/back.svg",
  4794. extra: 3011 / 2890,
  4795. bottom: 94 / 3105
  4796. }
  4797. },
  4798. maw: {
  4799. height: math.unit(3.07, "feet"),
  4800. name: "Maw",
  4801. image: {
  4802. source: "./media/characters/mech/maw.svg"
  4803. }
  4804. },
  4805. head: {
  4806. height: math.unit(3.07, "feet"),
  4807. name: "Head",
  4808. image: {
  4809. source: "./media/characters/mech/head.svg"
  4810. }
  4811. },
  4812. dick: {
  4813. height: math.unit(1.43, "feet"),
  4814. name: "Dick",
  4815. image: {
  4816. source: "./media/characters/mech/dick.svg"
  4817. }
  4818. },
  4819. },
  4820. [
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(12, "feet")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(300, "feet"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Macro+",
  4832. height: math.unit(1500, "feet")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(1.3, "meter"),
  4841. weight: math.unit(30, "kg"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/gregory/front.svg",
  4845. }
  4846. }
  4847. },
  4848. [
  4849. {
  4850. name: "Normal",
  4851. height: math.unit(1.3, "meter"),
  4852. default: true
  4853. },
  4854. {
  4855. name: "Macro",
  4856. height: math.unit(20, "meter")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4862. {
  4863. front: {
  4864. height: math.unit(2.8, "meter"),
  4865. weight: math.unit(200, "kg"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/elory/front.svg",
  4869. }
  4870. }
  4871. },
  4872. [
  4873. {
  4874. name: "Normal",
  4875. height: math.unit(2.8, "meter"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Macro",
  4880. height: math.unit(38, "meter")
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4886. {
  4887. front: {
  4888. height: math.unit(470, "feet"),
  4889. weight: math.unit(924, "tons"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/angelpatamon/front.svg",
  4893. }
  4894. }
  4895. },
  4896. [
  4897. {
  4898. name: "Normal",
  4899. height: math.unit(470, "feet"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Deity Size I",
  4904. height: math.unit(28651.2, "km")
  4905. },
  4906. {
  4907. name: "Deity Size II",
  4908. height: math.unit(171907.2, "km")
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4914. {
  4915. side: {
  4916. height: math.unit(7.2, "meter"),
  4917. weight: math.unit(8.2, "tons"),
  4918. name: "Side",
  4919. image: {
  4920. source: "./media/characters/cryae/side.svg",
  4921. extra: 3500 / 1500
  4922. }
  4923. }
  4924. },
  4925. [
  4926. {
  4927. name: "Normal",
  4928. height: math.unit(7.2, "meter"),
  4929. default: true
  4930. }
  4931. ]
  4932. ))
  4933. characterMakers.push(() => makeCharacter(
  4934. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4935. {
  4936. front: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(175, "lb"),
  4939. name: "Front",
  4940. image: {
  4941. source: "./media/characters/xera/front.svg",
  4942. extra: 2377 / 1972,
  4943. bottom: 75.5 / 2452
  4944. }
  4945. },
  4946. side: {
  4947. height: math.unit(6, "feet"),
  4948. weight: math.unit(175, "lb"),
  4949. name: "Side",
  4950. image: {
  4951. source: "./media/characters/xera/side.svg",
  4952. extra: 2345 / 2019,
  4953. bottom: 39.7 / 2384
  4954. }
  4955. },
  4956. back: {
  4957. height: math.unit(6, "feet"),
  4958. weight: math.unit(175, "lb"),
  4959. name: "Back",
  4960. image: {
  4961. source: "./media/characters/xera/back.svg",
  4962. extra: 2095 / 1984,
  4963. bottom: 67 / 2166
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Small",
  4970. height: math.unit(10, "feet")
  4971. },
  4972. {
  4973. name: "Macro",
  4974. height: math.unit(500, "meters"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro+",
  4979. height: math.unit(10, "km")
  4980. },
  4981. {
  4982. name: "Gigamacro",
  4983. height: math.unit(25000, "km")
  4984. },
  4985. {
  4986. name: "Teramacro",
  4987. height: math.unit(3e6, "km")
  4988. }
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(6, "feet"),
  4996. weight: math.unit(175, "lb"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/nebula/front.svg",
  5000. extra: 2566 / 2362,
  5001. bottom: 81 / 2644
  5002. }
  5003. }
  5004. },
  5005. [
  5006. {
  5007. name: "Small",
  5008. height: math.unit(4.5, "meters")
  5009. },
  5010. {
  5011. name: "Macro",
  5012. height: math.unit(1500, "meters"),
  5013. default: true
  5014. },
  5015. {
  5016. name: "Megamacro",
  5017. height: math.unit(150, "km")
  5018. },
  5019. {
  5020. name: "Gigamacro",
  5021. height: math.unit(27000, "km")
  5022. }
  5023. ]
  5024. ))
  5025. characterMakers.push(() => makeCharacter(
  5026. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5027. {
  5028. front: {
  5029. height: math.unit(6, "feet"),
  5030. weight: math.unit(225, "lb"),
  5031. name: "Front",
  5032. image: {
  5033. source: "./media/characters/abysgar/front.svg",
  5034. extra: 1739/1614,
  5035. bottom: 71/1810
  5036. }
  5037. },
  5038. frontNsfw: {
  5039. height: math.unit(6, "feet"),
  5040. weight: math.unit(225, "lb"),
  5041. name: "Front (NSFW)",
  5042. image: {
  5043. source: "./media/characters/abysgar/front-nsfw.svg",
  5044. extra: 1739/1614,
  5045. bottom: 71/1810
  5046. }
  5047. },
  5048. back: {
  5049. height: math.unit(4.6, "feet"),
  5050. weight: math.unit(225, "lb"),
  5051. name: "Back",
  5052. image: {
  5053. source: "./media/characters/abysgar/back.svg",
  5054. extra: 1384/1327,
  5055. bottom: 0/1384
  5056. }
  5057. },
  5058. head: {
  5059. height: math.unit(1.25, "feet"),
  5060. name: "Head",
  5061. image: {
  5062. source: "./media/characters/abysgar/head.svg",
  5063. extra: 669/569,
  5064. bottom: 0/669
  5065. }
  5066. },
  5067. },
  5068. [
  5069. {
  5070. name: "Small",
  5071. height: math.unit(4.5, "meters")
  5072. },
  5073. {
  5074. name: "Macro",
  5075. height: math.unit(1250, "meters"),
  5076. default: true
  5077. },
  5078. {
  5079. name: "Megamacro",
  5080. height: math.unit(125, "km")
  5081. },
  5082. {
  5083. name: "Gigamacro",
  5084. height: math.unit(26000, "km")
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(6, "feet"),
  5093. weight: math.unit(180, "lb"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/yakuz/front.svg"
  5097. }
  5098. }
  5099. },
  5100. [
  5101. {
  5102. name: "Small",
  5103. height: math.unit(5, "meters")
  5104. },
  5105. {
  5106. name: "Macro",
  5107. height: math.unit(1500, "meters"),
  5108. default: true
  5109. },
  5110. {
  5111. name: "Megamacro",
  5112. height: math.unit(200, "km")
  5113. },
  5114. {
  5115. name: "Gigamacro",
  5116. height: math.unit(100000, "km")
  5117. }
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5122. {
  5123. front: {
  5124. height: math.unit(6, "feet"),
  5125. weight: math.unit(175, "lb"),
  5126. name: "Front",
  5127. image: {
  5128. source: "./media/characters/mirova/front.svg",
  5129. extra: 3334 / 3071,
  5130. bottom: 42 / 3375.6
  5131. }
  5132. }
  5133. },
  5134. [
  5135. {
  5136. name: "Small",
  5137. height: math.unit(5, "meters")
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(900, "meters"),
  5142. default: true
  5143. },
  5144. {
  5145. name: "Megamacro",
  5146. height: math.unit(135, "km")
  5147. },
  5148. {
  5149. name: "Gigamacro",
  5150. height: math.unit(20000, "km")
  5151. }
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5156. {
  5157. side: {
  5158. height: math.unit(28.35, "feet"),
  5159. weight: math.unit(99.75, "tons"),
  5160. name: "Side",
  5161. image: {
  5162. source: "./media/characters/asana-mech/side.svg",
  5163. extra: 923 / 699,
  5164. bottom: 50 / 975
  5165. }
  5166. },
  5167. chaingun: {
  5168. height: math.unit(7, "feet"),
  5169. weight: math.unit(2400, "lb"),
  5170. name: "Chaingun",
  5171. image: {
  5172. source: "./media/characters/asana-mech/chaingun.svg"
  5173. }
  5174. },
  5175. laser: {
  5176. height: math.unit(7.12, "feet"),
  5177. weight: math.unit(2000, "lb"),
  5178. name: "Laser",
  5179. image: {
  5180. source: "./media/characters/asana-mech/laser.svg"
  5181. }
  5182. },
  5183. },
  5184. [
  5185. {
  5186. name: "Normal",
  5187. height: math.unit(28.35, "feet"),
  5188. default: true
  5189. },
  5190. {
  5191. name: "Macro",
  5192. height: math.unit(2500, "feet")
  5193. },
  5194. {
  5195. name: "Megamacro",
  5196. height: math.unit(25, "miles")
  5197. },
  5198. {
  5199. name: "Examacro",
  5200. height: math.unit(6e8, "lightyears")
  5201. },
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5206. {
  5207. front: {
  5208. height: math.unit(5, "meters"),
  5209. weight: math.unit(1000, "kg"),
  5210. name: "Front",
  5211. image: {
  5212. source: "./media/characters/asche/front.svg",
  5213. extra: 1258 / 1190,
  5214. bottom: 47 / 1305
  5215. }
  5216. },
  5217. frontUnderwear: {
  5218. height: math.unit(5, "meters"),
  5219. weight: math.unit(1000, "kg"),
  5220. name: "Front (Underwear)",
  5221. image: {
  5222. source: "./media/characters/asche/front-underwear.svg",
  5223. extra: 1258 / 1190,
  5224. bottom: 47 / 1305
  5225. }
  5226. },
  5227. frontDressed: {
  5228. height: math.unit(5, "meters"),
  5229. weight: math.unit(1000, "kg"),
  5230. name: "Front (Dressed)",
  5231. image: {
  5232. source: "./media/characters/asche/front-dressed.svg",
  5233. extra: 1258 / 1190,
  5234. bottom: 47 / 1305
  5235. }
  5236. },
  5237. frontArmor: {
  5238. height: math.unit(5, "meters"),
  5239. weight: math.unit(1000, "kg"),
  5240. name: "Front (Armored)",
  5241. image: {
  5242. source: "./media/characters/asche/front-armored.svg",
  5243. extra: 1374 / 1308,
  5244. bottom: 23 / 1397
  5245. }
  5246. },
  5247. mp724: {
  5248. height: math.unit(0.96, "meters"),
  5249. weight: math.unit(38, "kg"),
  5250. name: "H&K MP724",
  5251. image: {
  5252. source: "./media/characters/asche/h&k-mp724.svg"
  5253. }
  5254. },
  5255. side: {
  5256. height: math.unit(5, "meters"),
  5257. weight: math.unit(1000, "kg"),
  5258. name: "Side",
  5259. image: {
  5260. source: "./media/characters/asche/side.svg",
  5261. extra: 1717 / 1609,
  5262. bottom: 0.005
  5263. }
  5264. },
  5265. back: {
  5266. height: math.unit(5, "meters"),
  5267. weight: math.unit(1000, "kg"),
  5268. name: "Back",
  5269. image: {
  5270. source: "./media/characters/asche/back.svg",
  5271. extra: 1570 / 1501
  5272. }
  5273. },
  5274. },
  5275. [
  5276. {
  5277. name: "DEFCON 5",
  5278. height: math.unit(5, "meters")
  5279. },
  5280. {
  5281. name: "DEFCON 4",
  5282. height: math.unit(500, "meters"),
  5283. default: true
  5284. },
  5285. {
  5286. name: "DEFCON 3",
  5287. height: math.unit(5, "km")
  5288. },
  5289. {
  5290. name: "DEFCON 2",
  5291. height: math.unit(500, "km")
  5292. },
  5293. {
  5294. name: "DEFCON 1",
  5295. height: math.unit(500000, "km")
  5296. },
  5297. {
  5298. name: "DEFCON 0",
  5299. height: math.unit(3, "gigaparsecs")
  5300. },
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5305. {
  5306. front: {
  5307. height: math.unit(7, "feet"),
  5308. weight: math.unit(92.7, "kg"),
  5309. name: "Front",
  5310. image: {
  5311. source: "./media/characters/gale/front.svg",
  5312. extra: 977/919,
  5313. bottom: 105/1082
  5314. }
  5315. },
  5316. side: {
  5317. height: math.unit(6.7, "feet"),
  5318. weight: math.unit(92.7, "kg"),
  5319. name: "Side",
  5320. image: {
  5321. source: "./media/characters/gale/side.svg",
  5322. extra: 978/922,
  5323. bottom: 140/1118
  5324. }
  5325. },
  5326. back: {
  5327. height: math.unit(7, "feet"),
  5328. weight: math.unit(92.7, "kg"),
  5329. name: "Back",
  5330. image: {
  5331. source: "./media/characters/gale/back.svg",
  5332. extra: 966/920,
  5333. bottom: 61/1027
  5334. }
  5335. },
  5336. maw: {
  5337. height: math.unit(2.23, "feet"),
  5338. name: "Maw",
  5339. image: {
  5340. source: "./media/characters/gale/maw.svg"
  5341. }
  5342. },
  5343. foot: {
  5344. height: math.unit(2.1, "feet"),
  5345. name: "Foot",
  5346. image: {
  5347. source: "./media/characters/gale/foot.svg"
  5348. }
  5349. },
  5350. },
  5351. [
  5352. {
  5353. name: "Normal",
  5354. height: math.unit(7, "feet")
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(150, "feet"),
  5359. default: true
  5360. },
  5361. {
  5362. name: "Macro+",
  5363. height: math.unit(300, "feet")
  5364. },
  5365. ]
  5366. ))
  5367. characterMakers.push(() => makeCharacter(
  5368. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5369. {
  5370. front: {
  5371. height: math.unit(5 + 10/12, "feet"),
  5372. weight: math.unit(67, "kg"),
  5373. name: "Front",
  5374. image: {
  5375. source: "./media/characters/draylen/front.svg",
  5376. extra: 832/777,
  5377. bottom: 85/917
  5378. }
  5379. }
  5380. },
  5381. [
  5382. {
  5383. name: "Normal",
  5384. height: math.unit(5 + 10/12, "feet")
  5385. },
  5386. {
  5387. name: "Macro",
  5388. height: math.unit(150, "feet"),
  5389. default: true
  5390. }
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5395. {
  5396. front: {
  5397. height: math.unit(7 + 9 / 12, "feet"),
  5398. weight: math.unit(379, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/chez/front.svg"
  5402. }
  5403. },
  5404. side: {
  5405. height: math.unit(7 + 9 / 12, "feet"),
  5406. weight: math.unit(379, "lbs"),
  5407. name: "Side",
  5408. image: {
  5409. source: "./media/characters/chez/side.svg"
  5410. }
  5411. }
  5412. },
  5413. [
  5414. {
  5415. name: "Normal",
  5416. height: math.unit(7 + 9 / 12, "feet"),
  5417. default: true
  5418. },
  5419. {
  5420. name: "God King",
  5421. height: math.unit(9750000, "meters")
  5422. }
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5427. {
  5428. front: {
  5429. height: math.unit(6, "feet"),
  5430. weight: math.unit(275, "lbs"),
  5431. name: "Front",
  5432. image: {
  5433. source: "./media/characters/kaylum/front.svg",
  5434. bottom: 0.01,
  5435. extra: 1166 / 1031
  5436. }
  5437. },
  5438. frontWingless: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(275, "lbs"),
  5441. name: "Front (Wingless)",
  5442. image: {
  5443. source: "./media/characters/kaylum/front-wingless.svg",
  5444. bottom: 0.01,
  5445. extra: 1117 / 1031
  5446. }
  5447. }
  5448. },
  5449. [
  5450. {
  5451. name: "Normal",
  5452. height: math.unit(3.05, "meters")
  5453. },
  5454. {
  5455. name: "Master",
  5456. height: math.unit(5.5, "meters")
  5457. },
  5458. {
  5459. name: "Rampage",
  5460. height: math.unit(19, "meters")
  5461. },
  5462. {
  5463. name: "Macro Lite",
  5464. height: math.unit(37, "meters")
  5465. },
  5466. {
  5467. name: "Hyper Predator",
  5468. height: math.unit(61, "meters")
  5469. },
  5470. {
  5471. name: "Macro",
  5472. height: math.unit(138, "meters"),
  5473. default: true
  5474. }
  5475. ]
  5476. ))
  5477. characterMakers.push(() => makeCharacter(
  5478. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5479. {
  5480. front: {
  5481. height: math.unit(5 + 5 / 12, "feet"),
  5482. weight: math.unit(120, "lbs"),
  5483. name: "Front",
  5484. image: {
  5485. source: "./media/characters/geta/front.svg",
  5486. extra: 1003/933,
  5487. bottom: 21/1024
  5488. }
  5489. },
  5490. paw: {
  5491. height: math.unit(0.35, "feet"),
  5492. name: "Paw",
  5493. image: {
  5494. source: "./media/characters/geta/paw.svg"
  5495. }
  5496. },
  5497. },
  5498. [
  5499. {
  5500. name: "Micro",
  5501. height: math.unit(3, "inches"),
  5502. default: true
  5503. },
  5504. {
  5505. name: "Normal",
  5506. height: math.unit(5 + 5 / 12, "feet")
  5507. }
  5508. ]
  5509. ))
  5510. characterMakers.push(() => makeCharacter(
  5511. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5512. {
  5513. front: {
  5514. height: math.unit(6, "feet"),
  5515. weight: math.unit(300, "lbs"),
  5516. name: "Front",
  5517. image: {
  5518. source: "./media/characters/tyrnn/front.svg"
  5519. }
  5520. }
  5521. },
  5522. [
  5523. {
  5524. name: "Main Height",
  5525. height: math.unit(355, "feet"),
  5526. default: true
  5527. },
  5528. {
  5529. name: "Fave. Height",
  5530. height: math.unit(2400, "feet")
  5531. }
  5532. ]
  5533. ))
  5534. characterMakers.push(() => makeCharacter(
  5535. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5536. {
  5537. front: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(300, "lbs"),
  5540. name: "Front",
  5541. image: {
  5542. source: "./media/characters/appledectomy/front.svg"
  5543. }
  5544. }
  5545. },
  5546. [
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(2500, "feet")
  5550. },
  5551. {
  5552. name: "Megamacro",
  5553. height: math.unit(50, "miles"),
  5554. default: true
  5555. },
  5556. {
  5557. name: "Gigamacro",
  5558. height: math.unit(5000, "miles")
  5559. },
  5560. {
  5561. name: "Teramacro",
  5562. height: math.unit(250000, "miles")
  5563. },
  5564. ]
  5565. ))
  5566. characterMakers.push(() => makeCharacter(
  5567. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5568. {
  5569. front: {
  5570. height: math.unit(6, "feet"),
  5571. weight: math.unit(200, "lbs"),
  5572. name: "Front",
  5573. image: {
  5574. source: "./media/characters/vulpes/front.svg",
  5575. extra: 573 / 543,
  5576. bottom: 0.033
  5577. }
  5578. },
  5579. side: {
  5580. height: math.unit(6, "feet"),
  5581. weight: math.unit(200, "lbs"),
  5582. name: "Side",
  5583. image: {
  5584. source: "./media/characters/vulpes/side.svg",
  5585. extra: 577 / 549,
  5586. bottom: 11 / 588
  5587. }
  5588. },
  5589. back: {
  5590. height: math.unit(6, "feet"),
  5591. weight: math.unit(200, "lbs"),
  5592. name: "Back",
  5593. image: {
  5594. source: "./media/characters/vulpes/back.svg",
  5595. extra: 573 / 549,
  5596. bottom: 20 / 593
  5597. }
  5598. },
  5599. feet: {
  5600. height: math.unit(1.276, "feet"),
  5601. name: "Feet",
  5602. image: {
  5603. source: "./media/characters/vulpes/feet.svg"
  5604. }
  5605. },
  5606. maw: {
  5607. height: math.unit(1.18, "feet"),
  5608. name: "Maw",
  5609. image: {
  5610. source: "./media/characters/vulpes/maw.svg"
  5611. }
  5612. },
  5613. },
  5614. [
  5615. {
  5616. name: "Micro",
  5617. height: math.unit(2, "inches")
  5618. },
  5619. {
  5620. name: "Normal",
  5621. height: math.unit(6.3, "feet")
  5622. },
  5623. {
  5624. name: "Macro",
  5625. height: math.unit(850, "feet")
  5626. },
  5627. {
  5628. name: "Megamacro",
  5629. height: math.unit(7500, "feet"),
  5630. default: true
  5631. },
  5632. {
  5633. name: "Gigamacro",
  5634. height: math.unit(570000, "miles")
  5635. }
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5640. {
  5641. front: {
  5642. height: math.unit(6, "feet"),
  5643. weight: math.unit(210, "lbs"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/rain-fallen/front.svg"
  5647. }
  5648. },
  5649. side: {
  5650. height: math.unit(6, "feet"),
  5651. weight: math.unit(210, "lbs"),
  5652. name: "Side",
  5653. image: {
  5654. source: "./media/characters/rain-fallen/side.svg"
  5655. }
  5656. },
  5657. back: {
  5658. height: math.unit(6, "feet"),
  5659. weight: math.unit(210, "lbs"),
  5660. name: "Back",
  5661. image: {
  5662. source: "./media/characters/rain-fallen/back.svg"
  5663. }
  5664. },
  5665. feral: {
  5666. height: math.unit(9, "feet"),
  5667. weight: math.unit(700, "lbs"),
  5668. name: "Feral",
  5669. image: {
  5670. source: "./media/characters/rain-fallen/feral.svg"
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Meddling with Mortals",
  5677. height: math.unit(8 + 8/12, "feet")
  5678. },
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(5, "meter")
  5682. },
  5683. {
  5684. name: "Macro",
  5685. height: math.unit(150, "meter"),
  5686. default: true
  5687. },
  5688. {
  5689. name: "Megamacro",
  5690. height: math.unit(278e6, "meter")
  5691. },
  5692. {
  5693. name: "Gigamacro",
  5694. height: math.unit(2e9, "meter")
  5695. },
  5696. {
  5697. name: "Teramacro",
  5698. height: math.unit(8e12, "meter")
  5699. },
  5700. {
  5701. name: "Devourer",
  5702. height: math.unit(14, "zettameters")
  5703. },
  5704. {
  5705. name: "Scarlet King",
  5706. height: math.unit(18, "yottameters")
  5707. },
  5708. {
  5709. name: "Void",
  5710. height: math.unit(1e88, "yottameters")
  5711. }
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5716. {
  5717. standing: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(180, "lbs"),
  5720. name: "Standing",
  5721. image: {
  5722. source: "./media/characters/zaakira/standing.svg",
  5723. extra: 1599/1504,
  5724. bottom: 39/1638
  5725. }
  5726. },
  5727. laying: {
  5728. height: math.unit(3.3, "feet"),
  5729. weight: math.unit(180, "lbs"),
  5730. name: "Laying",
  5731. image: {
  5732. source: "./media/characters/zaakira/laying.svg"
  5733. }
  5734. },
  5735. },
  5736. [
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(12, "feet")
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(279, "feet"),
  5744. default: true
  5745. }
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5750. {
  5751. femSfw: {
  5752. height: math.unit(8, "feet"),
  5753. weight: math.unit(350, "lb"),
  5754. name: "Fem",
  5755. image: {
  5756. source: "./media/characters/sigvald/fem-sfw.svg",
  5757. extra: 182 / 164,
  5758. bottom: 8.7 / 190.5
  5759. }
  5760. },
  5761. femNsfw: {
  5762. height: math.unit(8, "feet"),
  5763. weight: math.unit(350, "lb"),
  5764. name: "Fem (NSFW)",
  5765. image: {
  5766. source: "./media/characters/sigvald/fem-nsfw.svg",
  5767. extra: 182 / 164,
  5768. bottom: 8.7 / 190.5
  5769. }
  5770. },
  5771. maleNsfw: {
  5772. height: math.unit(8, "feet"),
  5773. weight: math.unit(350, "lb"),
  5774. name: "Male (NSFW)",
  5775. image: {
  5776. source: "./media/characters/sigvald/male-nsfw.svg",
  5777. extra: 182 / 164,
  5778. bottom: 8.7 / 190.5
  5779. }
  5780. },
  5781. hermNsfw: {
  5782. height: math.unit(8, "feet"),
  5783. weight: math.unit(350, "lb"),
  5784. name: "Herm (NSFW)",
  5785. image: {
  5786. source: "./media/characters/sigvald/herm-nsfw.svg",
  5787. extra: 182 / 164,
  5788. bottom: 8.7 / 190.5
  5789. }
  5790. },
  5791. dick: {
  5792. height: math.unit(2.36, "feet"),
  5793. name: "Dick",
  5794. image: {
  5795. source: "./media/characters/sigvald/dick.svg"
  5796. }
  5797. },
  5798. eye: {
  5799. height: math.unit(0.31, "feet"),
  5800. name: "Eye",
  5801. image: {
  5802. source: "./media/characters/sigvald/eye.svg"
  5803. }
  5804. },
  5805. mouth: {
  5806. height: math.unit(0.92, "feet"),
  5807. name: "Mouth",
  5808. image: {
  5809. source: "./media/characters/sigvald/mouth.svg"
  5810. }
  5811. },
  5812. paws: {
  5813. height: math.unit(2.2, "feet"),
  5814. name: "Paws",
  5815. image: {
  5816. source: "./media/characters/sigvald/paws.svg"
  5817. }
  5818. }
  5819. },
  5820. [
  5821. {
  5822. name: "Normal",
  5823. height: math.unit(8, "feet")
  5824. },
  5825. {
  5826. name: "Large",
  5827. height: math.unit(12, "feet")
  5828. },
  5829. {
  5830. name: "Larger",
  5831. height: math.unit(20, "feet")
  5832. },
  5833. {
  5834. name: "Macro",
  5835. height: math.unit(150, "feet")
  5836. },
  5837. {
  5838. name: "Macro+",
  5839. height: math.unit(200, "feet"),
  5840. default: true
  5841. },
  5842. ]
  5843. ))
  5844. characterMakers.push(() => makeCharacter(
  5845. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5846. {
  5847. side: {
  5848. height: math.unit(12, "feet"),
  5849. weight: math.unit(2000, "kg"),
  5850. name: "Side",
  5851. image: {
  5852. source: "./media/characters/scott/side.svg",
  5853. extra: 754 / 724,
  5854. bottom: 0.069
  5855. }
  5856. },
  5857. upright: {
  5858. height: math.unit(12, "feet"),
  5859. weight: math.unit(2000, "kg"),
  5860. name: "Upright",
  5861. image: {
  5862. source: "./media/characters/scott/upright.svg",
  5863. extra: 3881 / 3722,
  5864. bottom: 0.05
  5865. }
  5866. },
  5867. },
  5868. [
  5869. {
  5870. name: "Normal",
  5871. height: math.unit(12, "feet"),
  5872. default: true
  5873. },
  5874. ]
  5875. ))
  5876. characterMakers.push(() => makeCharacter(
  5877. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5878. {
  5879. side: {
  5880. height: math.unit(8, "meters"),
  5881. weight: math.unit(84755, "lbs"),
  5882. name: "Side",
  5883. image: {
  5884. source: "./media/characters/tobias/side.svg",
  5885. extra: 1474 / 1096,
  5886. bottom: 38.9 / 1513.1235
  5887. }
  5888. },
  5889. },
  5890. [
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(8, "meters"),
  5894. default: true
  5895. },
  5896. ]
  5897. ))
  5898. characterMakers.push(() => makeCharacter(
  5899. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5900. {
  5901. front: {
  5902. height: math.unit(5.5, "feet"),
  5903. weight: math.unit(400, "lbs"),
  5904. name: "Front",
  5905. image: {
  5906. source: "./media/characters/kieran/front.svg",
  5907. extra: 2694 / 2364,
  5908. bottom: 217 / 2908
  5909. }
  5910. },
  5911. side: {
  5912. height: math.unit(5.5, "feet"),
  5913. weight: math.unit(400, "lbs"),
  5914. name: "Side",
  5915. image: {
  5916. source: "./media/characters/kieran/side.svg",
  5917. extra: 875 / 777,
  5918. bottom: 84.6 / 959
  5919. }
  5920. },
  5921. },
  5922. [
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(5.5, "feet"),
  5926. default: true
  5927. },
  5928. ]
  5929. ))
  5930. characterMakers.push(() => makeCharacter(
  5931. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5932. {
  5933. side: {
  5934. height: math.unit(2, "meters"),
  5935. weight: math.unit(70, "kg"),
  5936. name: "Side",
  5937. image: {
  5938. source: "./media/characters/sanya/side.svg",
  5939. bottom: 0.02,
  5940. extra: 1.02
  5941. }
  5942. },
  5943. },
  5944. [
  5945. {
  5946. name: "Small",
  5947. height: math.unit(2, "meters")
  5948. },
  5949. {
  5950. name: "Normal",
  5951. height: math.unit(3, "meters")
  5952. },
  5953. {
  5954. name: "Macro",
  5955. height: math.unit(16, "meters"),
  5956. default: true
  5957. },
  5958. ]
  5959. ))
  5960. characterMakers.push(() => makeCharacter(
  5961. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5962. {
  5963. front: {
  5964. height: math.unit(2, "meters"),
  5965. weight: math.unit(120, "kg"),
  5966. name: "Front",
  5967. image: {
  5968. source: "./media/characters/miranda/front.svg",
  5969. extra: 195 / 185,
  5970. bottom: 10.9 / 206.5
  5971. }
  5972. },
  5973. back: {
  5974. height: math.unit(2, "meters"),
  5975. weight: math.unit(120, "kg"),
  5976. name: "Back",
  5977. image: {
  5978. source: "./media/characters/miranda/back.svg",
  5979. extra: 201 / 193,
  5980. bottom: 2.3 / 203.7
  5981. }
  5982. },
  5983. },
  5984. [
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(10, "feet"),
  5988. default: true
  5989. }
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "James", species: ["deer"], tags: ["anthro"] },
  5994. {
  5995. side: {
  5996. height: math.unit(2, "meters"),
  5997. weight: math.unit(100, "kg"),
  5998. name: "Front",
  5999. image: {
  6000. source: "./media/characters/james/front.svg",
  6001. extra: 10 / 8.5
  6002. }
  6003. },
  6004. },
  6005. [
  6006. {
  6007. name: "Normal",
  6008. height: math.unit(8.5, "feet"),
  6009. default: true
  6010. }
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6015. {
  6016. side: {
  6017. height: math.unit(9.5, "feet"),
  6018. weight: math.unit(2500, "lbs"),
  6019. name: "Side",
  6020. image: {
  6021. source: "./media/characters/heather/side.svg"
  6022. }
  6023. },
  6024. },
  6025. [
  6026. {
  6027. name: "Normal",
  6028. height: math.unit(9.5, "feet"),
  6029. default: true
  6030. }
  6031. ]
  6032. ))
  6033. characterMakers.push(() => makeCharacter(
  6034. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6035. {
  6036. side: {
  6037. height: math.unit(6.5, "feet"),
  6038. weight: math.unit(400, "lbs"),
  6039. name: "Side",
  6040. image: {
  6041. source: "./media/characters/lukas/side.svg",
  6042. extra: 7.25 / 6.5
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(6.5, "feet"),
  6050. default: true
  6051. }
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6056. {
  6057. side: {
  6058. height: math.unit(5, "feet"),
  6059. weight: math.unit(3000, "lbs"),
  6060. name: "Side",
  6061. image: {
  6062. source: "./media/characters/louise/side.svg"
  6063. }
  6064. },
  6065. },
  6066. [
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(5, "feet"),
  6070. default: true
  6071. }
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6076. {
  6077. side: {
  6078. height: math.unit(6, "feet"),
  6079. weight: math.unit(150, "lbs"),
  6080. name: "Side",
  6081. image: {
  6082. source: "./media/characters/ramona/side.svg",
  6083. extra: 871/854,
  6084. bottom: 41/912
  6085. }
  6086. },
  6087. },
  6088. [
  6089. {
  6090. name: "Normal",
  6091. height: math.unit(6 + 4/12, "feet")
  6092. },
  6093. {
  6094. name: "Minimacro",
  6095. height: math.unit(5.3, "meters"),
  6096. default: true
  6097. },
  6098. {
  6099. name: "Macro",
  6100. height: math.unit(20, "stories")
  6101. },
  6102. {
  6103. name: "Macro+",
  6104. height: math.unit(50, "stories")
  6105. },
  6106. ]
  6107. ))
  6108. characterMakers.push(() => makeCharacter(
  6109. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6110. {
  6111. standing: {
  6112. height: math.unit(5.75, "feet"),
  6113. weight: math.unit(160, "lbs"),
  6114. name: "Standing",
  6115. image: {
  6116. source: "./media/characters/deerpuff/standing.svg",
  6117. extra: 682 / 624
  6118. }
  6119. },
  6120. sitting: {
  6121. height: math.unit(5.75 / 1.79, "feet"),
  6122. weight: math.unit(160, "lbs"),
  6123. name: "Sitting",
  6124. image: {
  6125. source: "./media/characters/deerpuff/sitting.svg",
  6126. bottom: 44 / 400,
  6127. extra: 1
  6128. }
  6129. },
  6130. taurLaying: {
  6131. height: math.unit(6, "feet"),
  6132. weight: math.unit(400, "lbs"),
  6133. name: "Taur (Laying)",
  6134. image: {
  6135. source: "./media/characters/deerpuff/taur-laying.svg"
  6136. }
  6137. },
  6138. },
  6139. [
  6140. {
  6141. name: "Puffball",
  6142. height: math.unit(6, "inches")
  6143. },
  6144. {
  6145. name: "Normalpuff",
  6146. height: math.unit(5.75, "feet")
  6147. },
  6148. {
  6149. name: "Macropuff",
  6150. height: math.unit(1500, "feet"),
  6151. default: true
  6152. },
  6153. {
  6154. name: "Megapuff",
  6155. height: math.unit(500, "miles")
  6156. },
  6157. {
  6158. name: "Gigapuff",
  6159. height: math.unit(250000, "miles")
  6160. },
  6161. {
  6162. name: "Omegapuff",
  6163. height: math.unit(1000, "lightyears")
  6164. },
  6165. ]
  6166. ))
  6167. characterMakers.push(() => makeCharacter(
  6168. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6169. {
  6170. stomping: {
  6171. height: math.unit(6, "feet"),
  6172. weight: math.unit(170, "lbs"),
  6173. name: "Stomping",
  6174. image: {
  6175. source: "./media/characters/vivian/stomping.svg"
  6176. }
  6177. },
  6178. sitting: {
  6179. height: math.unit(6 / 1.75, "feet"),
  6180. weight: math.unit(170, "lbs"),
  6181. name: "Sitting",
  6182. image: {
  6183. source: "./media/characters/vivian/sitting.svg",
  6184. bottom: 1 / 6.4,
  6185. extra: 1,
  6186. }
  6187. },
  6188. },
  6189. [
  6190. {
  6191. name: "Normal",
  6192. height: math.unit(7, "feet"),
  6193. default: true
  6194. },
  6195. {
  6196. name: "Macro",
  6197. height: math.unit(10, "stories")
  6198. },
  6199. {
  6200. name: "Macro+",
  6201. height: math.unit(30, "stories")
  6202. },
  6203. {
  6204. name: "Megamacro",
  6205. height: math.unit(10, "miles")
  6206. },
  6207. {
  6208. name: "Megamacro+",
  6209. height: math.unit(2750000, "meters")
  6210. },
  6211. ]
  6212. ))
  6213. characterMakers.push(() => makeCharacter(
  6214. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6215. {
  6216. front: {
  6217. height: math.unit(6, "feet"),
  6218. weight: math.unit(160, "lbs"),
  6219. name: "Front",
  6220. image: {
  6221. source: "./media/characters/prince/front.svg",
  6222. extra: 1938/1682,
  6223. bottom: 45/1983
  6224. }
  6225. },
  6226. back: {
  6227. height: math.unit(6, "feet"),
  6228. weight: math.unit(160, "lbs"),
  6229. name: "Back",
  6230. image: {
  6231. source: "./media/characters/prince/back.svg",
  6232. extra: 1955/1726,
  6233. bottom: 6/1961
  6234. }
  6235. },
  6236. },
  6237. [
  6238. {
  6239. name: "Normal",
  6240. height: math.unit(7.75, "feet"),
  6241. default: true
  6242. },
  6243. {
  6244. name: "Not cute",
  6245. height: math.unit(17, "feet")
  6246. },
  6247. {
  6248. name: "I said NOT",
  6249. height: math.unit(91, "feet")
  6250. },
  6251. {
  6252. name: "Please stop",
  6253. height: math.unit(560, "feet")
  6254. },
  6255. {
  6256. name: "What have you done",
  6257. height: math.unit(2200, "feet")
  6258. },
  6259. {
  6260. name: "Deer God",
  6261. height: math.unit(3.6, "miles")
  6262. },
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6267. {
  6268. standing: {
  6269. height: math.unit(6, "feet"),
  6270. weight: math.unit(300, "lbs"),
  6271. name: "Standing",
  6272. image: {
  6273. source: "./media/characters/psymon/standing.svg",
  6274. extra: 1888 / 1810,
  6275. bottom: 0.05
  6276. }
  6277. },
  6278. slithering: {
  6279. height: math.unit(6, "feet"),
  6280. weight: math.unit(300, "lbs"),
  6281. name: "Slithering",
  6282. image: {
  6283. source: "./media/characters/psymon/slithering.svg",
  6284. extra: 1330 / 1224
  6285. }
  6286. },
  6287. slitheringAlt: {
  6288. height: math.unit(6, "feet"),
  6289. weight: math.unit(300, "lbs"),
  6290. name: "Slithering (Alt)",
  6291. image: {
  6292. source: "./media/characters/psymon/slithering-alt.svg",
  6293. extra: 1330 / 1224
  6294. }
  6295. },
  6296. },
  6297. [
  6298. {
  6299. name: "Normal",
  6300. height: math.unit(11.25, "feet"),
  6301. default: true
  6302. },
  6303. {
  6304. name: "Large",
  6305. height: math.unit(27, "feet")
  6306. },
  6307. {
  6308. name: "Giant",
  6309. height: math.unit(87, "feet")
  6310. },
  6311. {
  6312. name: "Macro",
  6313. height: math.unit(365, "feet")
  6314. },
  6315. {
  6316. name: "Megamacro",
  6317. height: math.unit(3, "miles")
  6318. },
  6319. {
  6320. name: "World Serpent",
  6321. height: math.unit(8000, "miles")
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(6, "feet"),
  6330. weight: math.unit(180, "lbs"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/daimos/front.svg",
  6334. extra: 4160 / 3897,
  6335. bottom: 0.021
  6336. }
  6337. }
  6338. },
  6339. [
  6340. {
  6341. name: "Normal",
  6342. height: math.unit(8, "feet"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Big Dog",
  6347. height: math.unit(22, "feet")
  6348. },
  6349. {
  6350. name: "Macro",
  6351. height: math.unit(127, "feet")
  6352. },
  6353. {
  6354. name: "Megamacro",
  6355. height: math.unit(3600, "feet")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6361. {
  6362. side: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(180, "lbs"),
  6365. name: "Side",
  6366. image: {
  6367. source: "./media/characters/blake/side.svg",
  6368. extra: 1212 / 1120,
  6369. bottom: 0.05
  6370. }
  6371. },
  6372. crouched: {
  6373. height: math.unit(6 * 0.57, "feet"),
  6374. weight: math.unit(180, "lbs"),
  6375. name: "Crouched",
  6376. image: {
  6377. source: "./media/characters/blake/crouched.svg",
  6378. extra: 840 / 587,
  6379. bottom: 0.04
  6380. }
  6381. },
  6382. bent: {
  6383. height: math.unit(6 * 0.75, "feet"),
  6384. weight: math.unit(180, "lbs"),
  6385. name: "Bent",
  6386. image: {
  6387. source: "./media/characters/blake/bent.svg",
  6388. extra: 592 / 544,
  6389. bottom: 0.035
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(8 + 1 / 6, "feet"),
  6397. default: true
  6398. },
  6399. {
  6400. name: "Big Backside",
  6401. height: math.unit(37, "feet")
  6402. },
  6403. {
  6404. name: "Subway Shredder",
  6405. height: math.unit(72, "feet")
  6406. },
  6407. {
  6408. name: "City Carver",
  6409. height: math.unit(1675, "feet")
  6410. },
  6411. {
  6412. name: "Tectonic Tweaker",
  6413. height: math.unit(2300, "miles")
  6414. },
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(180, "lbs"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/guisetto/front.svg",
  6426. extra: 856 / 817,
  6427. bottom: 0.06
  6428. }
  6429. },
  6430. airborne: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(180, "lbs"),
  6433. name: "Airborne",
  6434. image: {
  6435. source: "./media/characters/guisetto/airborne.svg",
  6436. extra: 584 / 525
  6437. }
  6438. },
  6439. },
  6440. [
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(10 + 11 / 12, "feet"),
  6444. default: true
  6445. },
  6446. {
  6447. name: "Large",
  6448. height: math.unit(35, "feet")
  6449. },
  6450. {
  6451. name: "Macro",
  6452. height: math.unit(475, "feet")
  6453. },
  6454. ]
  6455. ))
  6456. characterMakers.push(() => makeCharacter(
  6457. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6458. {
  6459. front: {
  6460. height: math.unit(6, "feet"),
  6461. weight: math.unit(180, "lbs"),
  6462. name: "Front",
  6463. image: {
  6464. source: "./media/characters/luxor/front.svg",
  6465. extra: 2940 / 2152
  6466. }
  6467. },
  6468. back: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(180, "lbs"),
  6471. name: "Back",
  6472. image: {
  6473. source: "./media/characters/luxor/back.svg",
  6474. extra: 1083 / 960
  6475. }
  6476. },
  6477. },
  6478. [
  6479. {
  6480. name: "Normal",
  6481. height: math.unit(5 + 5 / 6, "feet"),
  6482. default: true
  6483. },
  6484. {
  6485. name: "Lamp",
  6486. height: math.unit(50, "feet")
  6487. },
  6488. {
  6489. name: "Lämp",
  6490. height: math.unit(300, "feet")
  6491. },
  6492. {
  6493. name: "The sun is a lamp",
  6494. height: math.unit(250000, "miles")
  6495. },
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6500. {
  6501. front: {
  6502. height: math.unit(6, "feet"),
  6503. weight: math.unit(50, "lbs"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/huoyan/front.svg"
  6507. }
  6508. },
  6509. side: {
  6510. height: math.unit(6, "feet"),
  6511. weight: math.unit(180, "lbs"),
  6512. name: "Side",
  6513. image: {
  6514. source: "./media/characters/huoyan/side.svg"
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Chef",
  6521. height: math.unit(9, "feet")
  6522. },
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(65, "feet"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Macro",
  6530. height: math.unit(780, "feet")
  6531. },
  6532. {
  6533. name: "Flaming Mountain",
  6534. height: math.unit(4.8, "miles")
  6535. },
  6536. {
  6537. name: "Celestial",
  6538. height: math.unit(765000, "miles")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(5 + 3 / 4, "feet"),
  6547. weight: math.unit(120, "lbs"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/tails/front.svg"
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(5 + 3 / 4, "feet"),
  6558. default: true
  6559. }
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(4, "feet"),
  6567. weight: math.unit(50, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/rainy/front.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(800, "feet"),
  6578. default: true
  6579. }
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(150, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/rainier/front.svg"
  6591. }
  6592. }
  6593. },
  6594. [
  6595. {
  6596. name: "Micro",
  6597. height: math.unit(2, "mm"),
  6598. default: true
  6599. }
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(8 + 4/12, "feet"),
  6607. weight: math.unit(450, "kilograms"),
  6608. volume: math.unit(5, "cups"),
  6609. name: "Front",
  6610. image: {
  6611. source: "./media/characters/andy-renard/front.svg",
  6612. extra: 1839/1726,
  6613. bottom: 134/1973
  6614. }
  6615. },
  6616. back: {
  6617. height: math.unit(8 + 4/12, "feet"),
  6618. weight: math.unit(450, "kilograms"),
  6619. volume: math.unit(5, "cups"),
  6620. name: "Back",
  6621. image: {
  6622. source: "./media/characters/andy-renard/back.svg",
  6623. extra: 1838/1710,
  6624. bottom: 105/1943
  6625. }
  6626. },
  6627. },
  6628. [
  6629. {
  6630. name: "Tall",
  6631. height: math.unit(8 + 4/12, "feet")
  6632. },
  6633. {
  6634. name: "Mini Macro",
  6635. height: math.unit(15, "feet"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(100, "feet")
  6641. },
  6642. {
  6643. name: "Mega Macro",
  6644. height: math.unit(1000, "feet")
  6645. },
  6646. {
  6647. name: "Giga Macro",
  6648. height: math.unit(10, "miles")
  6649. },
  6650. {
  6651. name: "God Macro",
  6652. height: math.unit(1, "multiverse")
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6658. {
  6659. front: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(210, "lbs"),
  6662. name: "Front",
  6663. image: {
  6664. source: "./media/characters/cimmaron/front-sfw.svg",
  6665. extra: 701 / 676,
  6666. bottom: 0.046
  6667. }
  6668. },
  6669. back: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(210, "lbs"),
  6672. name: "Back",
  6673. image: {
  6674. source: "./media/characters/cimmaron/back-sfw.svg",
  6675. extra: 701 / 676,
  6676. bottom: 0.046
  6677. }
  6678. },
  6679. frontNsfw: {
  6680. height: math.unit(6, "feet"),
  6681. weight: math.unit(210, "lbs"),
  6682. name: "Front (NSFW)",
  6683. image: {
  6684. source: "./media/characters/cimmaron/front-nsfw.svg",
  6685. extra: 701 / 676,
  6686. bottom: 0.046
  6687. }
  6688. },
  6689. backNsfw: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(210, "lbs"),
  6692. name: "Back (NSFW)",
  6693. image: {
  6694. source: "./media/characters/cimmaron/back-nsfw.svg",
  6695. extra: 701 / 676,
  6696. bottom: 0.046
  6697. }
  6698. },
  6699. dick: {
  6700. height: math.unit(1.714, "feet"),
  6701. name: "Dick",
  6702. image: {
  6703. source: "./media/characters/cimmaron/dick.svg"
  6704. }
  6705. },
  6706. },
  6707. [
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(6, "feet"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Macro Mayor",
  6715. height: math.unit(350, "meters")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(200, "lbs"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/akari/front.svg",
  6728. extra: 962 / 901,
  6729. bottom: 0.04
  6730. }
  6731. }
  6732. },
  6733. [
  6734. {
  6735. name: "Micro",
  6736. height: math.unit(5, "inches"),
  6737. default: true
  6738. },
  6739. {
  6740. name: "Normal",
  6741. height: math.unit(7, "feet")
  6742. },
  6743. ]
  6744. ))
  6745. characterMakers.push(() => makeCharacter(
  6746. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6747. {
  6748. front: {
  6749. height: math.unit(6, "feet"),
  6750. weight: math.unit(140, "lbs"),
  6751. name: "Front",
  6752. image: {
  6753. source: "./media/characters/cynosura/front.svg",
  6754. extra: 437/410,
  6755. bottom: 9/446
  6756. }
  6757. },
  6758. back: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(140, "lbs"),
  6761. name: "Back",
  6762. image: {
  6763. source: "./media/characters/cynosura/back.svg",
  6764. extra: 1304/1160,
  6765. bottom: 71/1375
  6766. }
  6767. },
  6768. },
  6769. [
  6770. {
  6771. name: "Micro",
  6772. height: math.unit(4, "inches")
  6773. },
  6774. {
  6775. name: "Normal",
  6776. height: math.unit(5.75, "feet"),
  6777. default: true
  6778. },
  6779. {
  6780. name: "Tall",
  6781. height: math.unit(10, "feet")
  6782. },
  6783. {
  6784. name: "Big",
  6785. height: math.unit(20, "feet")
  6786. },
  6787. {
  6788. name: "Macro",
  6789. height: math.unit(50, "feet")
  6790. },
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6795. {
  6796. front: {
  6797. height: math.unit(13 + 2/12, "feet"),
  6798. weight: math.unit(800, "kg"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/gin/front.svg",
  6802. extra: 1312/1191,
  6803. bottom: 45/1357
  6804. }
  6805. },
  6806. mouth: {
  6807. height: math.unit(2.39 * 1.8, "feet"),
  6808. name: "Mouth",
  6809. image: {
  6810. source: "./media/characters/gin/mouth.svg"
  6811. }
  6812. },
  6813. hand: {
  6814. height: math.unit(1.57 * 2.19, "feet"),
  6815. name: "Hand",
  6816. image: {
  6817. source: "./media/characters/gin/hand.svg"
  6818. }
  6819. },
  6820. foot: {
  6821. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6822. name: "Foot",
  6823. image: {
  6824. source: "./media/characters/gin/foot.svg"
  6825. }
  6826. },
  6827. sole: {
  6828. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6829. name: "Sole",
  6830. image: {
  6831. source: "./media/characters/gin/sole.svg"
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Very Small",
  6838. height: math.unit(13 + 2 / 12, "feet")
  6839. },
  6840. {
  6841. name: "Micro",
  6842. height: math.unit(600, "miles")
  6843. },
  6844. {
  6845. name: "Regular",
  6846. height: math.unit(20, "earths"),
  6847. default: true
  6848. },
  6849. {
  6850. name: "Macro",
  6851. height: math.unit(2.2, "solarradii")
  6852. },
  6853. {
  6854. name: "Teramacro",
  6855. height: math.unit(1.2, "galaxies")
  6856. },
  6857. {
  6858. name: "Omegamacro",
  6859. height: math.unit(200, "universes")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6865. {
  6866. front: {
  6867. height: math.unit(6 + 1 / 6, "feet"),
  6868. weight: math.unit(178, "lbs"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/guy/front.svg"
  6872. }
  6873. }
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(6 + 1 / 6, "feet"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Large",
  6883. height: math.unit(25 + 7 / 12, "feet")
  6884. },
  6885. {
  6886. name: "Macro",
  6887. height: math.unit(60 + 9 / 12, "feet")
  6888. },
  6889. {
  6890. name: "Macro+",
  6891. height: math.unit(246, "feet")
  6892. },
  6893. {
  6894. name: "Macro++",
  6895. height: math.unit(878, "feet")
  6896. }
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(9, "feet"),
  6904. weight: math.unit(800, "lbs"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/tiberius/front.svg",
  6908. extra: 2295 / 2071
  6909. }
  6910. },
  6911. back: {
  6912. height: math.unit(9, "feet"),
  6913. weight: math.unit(800, "lbs"),
  6914. name: "Back",
  6915. image: {
  6916. source: "./media/characters/tiberius/back.svg",
  6917. extra: 2373 / 2160
  6918. }
  6919. },
  6920. },
  6921. [
  6922. {
  6923. name: "Normal",
  6924. height: math.unit(9, "feet"),
  6925. default: true
  6926. }
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6931. {
  6932. front: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(600, "lbs"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/surgo/front.svg",
  6938. extra: 3591 / 2227
  6939. }
  6940. },
  6941. back: {
  6942. height: math.unit(6, "feet"),
  6943. weight: math.unit(600, "lbs"),
  6944. name: "Back",
  6945. image: {
  6946. source: "./media/characters/surgo/back.svg",
  6947. extra: 3557 / 2228
  6948. }
  6949. },
  6950. laying: {
  6951. height: math.unit(6 * 0.85, "feet"),
  6952. weight: math.unit(600, "lbs"),
  6953. name: "Laying",
  6954. image: {
  6955. source: "./media/characters/surgo/laying.svg"
  6956. }
  6957. },
  6958. },
  6959. [
  6960. {
  6961. name: "Normal",
  6962. height: math.unit(6, "feet"),
  6963. default: true
  6964. }
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6969. {
  6970. side: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(150, "lbs"),
  6973. name: "Side",
  6974. image: {
  6975. source: "./media/characters/cibus/side.svg",
  6976. extra: 800 / 400
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Normal",
  6983. height: math.unit(6, "feet"),
  6984. default: true
  6985. }
  6986. ]
  6987. ))
  6988. characterMakers.push(() => makeCharacter(
  6989. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6990. {
  6991. front: {
  6992. height: math.unit(6, "feet"),
  6993. weight: math.unit(240, "lbs"),
  6994. name: "Front",
  6995. image: {
  6996. source: "./media/characters/nibbles/front.svg"
  6997. }
  6998. },
  6999. side: {
  7000. height: math.unit(6, "feet"),
  7001. weight: math.unit(240, "lbs"),
  7002. name: "Side",
  7003. image: {
  7004. source: "./media/characters/nibbles/side.svg"
  7005. }
  7006. },
  7007. },
  7008. [
  7009. {
  7010. name: "Normal",
  7011. height: math.unit(9, "feet"),
  7012. default: true
  7013. }
  7014. ]
  7015. ))
  7016. characterMakers.push(() => makeCharacter(
  7017. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7018. {
  7019. side: {
  7020. height: math.unit(5 + 1 / 6, "feet"),
  7021. weight: math.unit(130, "lbs"),
  7022. name: "Side",
  7023. image: {
  7024. source: "./media/characters/rikky/side.svg",
  7025. extra: 851 / 801
  7026. }
  7027. },
  7028. },
  7029. [
  7030. {
  7031. name: "Normal",
  7032. height: math.unit(5 + 1 / 6, "feet")
  7033. },
  7034. {
  7035. name: "Macro",
  7036. height: math.unit(152, "feet"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Megamacro",
  7041. height: math.unit(7, "miles")
  7042. }
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7047. {
  7048. side: {
  7049. height: math.unit(370, "cm"),
  7050. weight: math.unit(350, "lbs"),
  7051. name: "Side",
  7052. image: {
  7053. source: "./media/characters/malfressa/side.svg"
  7054. }
  7055. },
  7056. walking: {
  7057. height: math.unit(370, "cm"),
  7058. weight: math.unit(350, "lbs"),
  7059. name: "Walking",
  7060. image: {
  7061. source: "./media/characters/malfressa/walking.svg"
  7062. }
  7063. },
  7064. feral: {
  7065. height: math.unit(2500, "cm"),
  7066. weight: math.unit(100000, "lbs"),
  7067. name: "Feral",
  7068. image: {
  7069. source: "./media/characters/malfressa/feral.svg",
  7070. extra: 2108 / 837,
  7071. bottom: 0.02
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(370, "cm")
  7079. },
  7080. {
  7081. name: "Macro",
  7082. height: math.unit(300, "meters"),
  7083. default: true
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(60, "kg"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/jaro/front.svg",
  7096. extra: 845/817,
  7097. bottom: 45/890
  7098. }
  7099. },
  7100. back: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(60, "kg"),
  7103. name: "Back",
  7104. image: {
  7105. source: "./media/characters/jaro/back.svg",
  7106. extra: 847/817,
  7107. bottom: 34/881
  7108. }
  7109. },
  7110. },
  7111. [
  7112. {
  7113. name: "Micro",
  7114. height: math.unit(7, "inches")
  7115. },
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(5.5, "feet"),
  7119. default: true
  7120. },
  7121. {
  7122. name: "Minimacro",
  7123. height: math.unit(20, "feet")
  7124. },
  7125. {
  7126. name: "Macro",
  7127. height: math.unit(200, "meters")
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(195, "lb"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/rogue/front.svg"
  7140. }
  7141. },
  7142. },
  7143. [
  7144. {
  7145. name: "Macro",
  7146. height: math.unit(90, "feet"),
  7147. default: true
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7153. {
  7154. standing: {
  7155. height: math.unit(5 + 8 / 12, "feet"),
  7156. weight: math.unit(140, "lb"),
  7157. name: "Standing",
  7158. image: {
  7159. source: "./media/characters/piper/standing.svg",
  7160. extra: 1440/1284,
  7161. bottom: 66/1506
  7162. }
  7163. },
  7164. running: {
  7165. height: math.unit(5 + 8 / 12, "feet"),
  7166. weight: math.unit(140, "lb"),
  7167. name: "Running",
  7168. image: {
  7169. source: "./media/characters/piper/running.svg",
  7170. extra: 3948/3655,
  7171. bottom: 0/3948
  7172. }
  7173. },
  7174. sole: {
  7175. height: math.unit(0.81, "feet"),
  7176. weight: math.unit(2, "kg"),
  7177. name: "Sole",
  7178. image: {
  7179. source: "./media/characters/piper/sole.svg"
  7180. }
  7181. },
  7182. nipple: {
  7183. height: math.unit(0.25, "feet"),
  7184. weight: math.unit(1.5, "lb"),
  7185. name: "Nipple",
  7186. image: {
  7187. source: "./media/characters/piper/nipple.svg"
  7188. }
  7189. },
  7190. head: {
  7191. height: math.unit(1.1, "feet"),
  7192. name: "Head",
  7193. image: {
  7194. source: "./media/characters/piper/head.svg"
  7195. }
  7196. },
  7197. },
  7198. [
  7199. {
  7200. name: "Micro",
  7201. height: math.unit(2, "inches")
  7202. },
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(5 + 8 / 12, "feet")
  7206. },
  7207. {
  7208. name: "Macro",
  7209. height: math.unit(250, "feet"),
  7210. default: true
  7211. },
  7212. {
  7213. name: "Megamacro",
  7214. height: math.unit(7, "miles")
  7215. },
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7220. {
  7221. front: {
  7222. height: math.unit(6, "feet"),
  7223. weight: math.unit(220, "lb"),
  7224. name: "Front",
  7225. image: {
  7226. source: "./media/characters/gemini/front.svg"
  7227. }
  7228. },
  7229. back: {
  7230. height: math.unit(6, "feet"),
  7231. weight: math.unit(220, "lb"),
  7232. name: "Back",
  7233. image: {
  7234. source: "./media/characters/gemini/back.svg"
  7235. }
  7236. },
  7237. kneeling: {
  7238. height: math.unit(6 / 1.5, "feet"),
  7239. weight: math.unit(220, "lb"),
  7240. name: "Kneeling",
  7241. image: {
  7242. source: "./media/characters/gemini/kneeling.svg",
  7243. bottom: 0.02
  7244. }
  7245. },
  7246. },
  7247. [
  7248. {
  7249. name: "Macro",
  7250. height: math.unit(300, "meters"),
  7251. default: true
  7252. },
  7253. {
  7254. name: "Megamacro",
  7255. height: math.unit(6900, "meters")
  7256. },
  7257. ]
  7258. ))
  7259. characterMakers.push(() => makeCharacter(
  7260. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7261. {
  7262. anthro: {
  7263. height: math.unit(2.35, "meters"),
  7264. weight: math.unit(73, "kg"),
  7265. name: "Anthro",
  7266. image: {
  7267. source: "./media/characters/alicia/anthro.svg",
  7268. extra: 2571 / 2385,
  7269. bottom: 75 / 2648
  7270. }
  7271. },
  7272. paw: {
  7273. height: math.unit(1.32, "feet"),
  7274. name: "Paw",
  7275. image: {
  7276. source: "./media/characters/alicia/paw.svg"
  7277. }
  7278. },
  7279. feral: {
  7280. height: math.unit(1.69, "meters"),
  7281. weight: math.unit(73, "kg"),
  7282. name: "Feral",
  7283. image: {
  7284. source: "./media/characters/alicia/feral.svg",
  7285. extra: 2123 / 1715,
  7286. bottom: 222 / 2349
  7287. }
  7288. },
  7289. },
  7290. [
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(2.35, "meters")
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(60, "meters"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Megamacro",
  7302. height: math.unit(10000, "kilometers")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(7, "feet"),
  7311. weight: math.unit(250, "lbs"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/archy/front.svg"
  7315. }
  7316. }
  7317. },
  7318. [
  7319. {
  7320. name: "Micro",
  7321. height: math.unit(1, "inch")
  7322. },
  7323. {
  7324. name: "Shorty",
  7325. height: math.unit(5, "feet")
  7326. },
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(7, "feet")
  7330. },
  7331. {
  7332. name: "Macro",
  7333. height: math.unit(600, "meters"),
  7334. default: true
  7335. },
  7336. {
  7337. name: "Megamacro",
  7338. height: math.unit(1, "mile")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(1.65, "meters"),
  7347. weight: math.unit(74, "kg"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/berri/front.svg",
  7351. extra: 857 / 837,
  7352. bottom: 18 / 877
  7353. }
  7354. },
  7355. bum: {
  7356. height: math.unit(1.46, "feet"),
  7357. name: "Bum",
  7358. image: {
  7359. source: "./media/characters/berri/bum.svg"
  7360. }
  7361. },
  7362. mouth: {
  7363. height: math.unit(0.44, "feet"),
  7364. name: "Mouth",
  7365. image: {
  7366. source: "./media/characters/berri/mouth.svg"
  7367. }
  7368. },
  7369. paw: {
  7370. height: math.unit(0.826, "feet"),
  7371. name: "Paw",
  7372. image: {
  7373. source: "./media/characters/berri/paw.svg"
  7374. }
  7375. },
  7376. },
  7377. [
  7378. {
  7379. name: "Normal",
  7380. height: math.unit(1.65, "meters")
  7381. },
  7382. {
  7383. name: "Macro",
  7384. height: math.unit(60, "m"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Megamacro",
  7389. height: math.unit(9.213, "km")
  7390. },
  7391. {
  7392. name: "Planet Eater",
  7393. height: math.unit(489, "megameters")
  7394. },
  7395. {
  7396. name: "Teramacro",
  7397. height: math.unit(2471635000000, "meters")
  7398. },
  7399. {
  7400. name: "Examacro",
  7401. height: math.unit(8.0624e+26, "meters")
  7402. }
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(1.72, "meters"),
  7410. weight: math.unit(68, "kg"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/lexi/front.svg"
  7414. }
  7415. }
  7416. },
  7417. [
  7418. {
  7419. name: "Very Smol",
  7420. height: math.unit(10, "mm")
  7421. },
  7422. {
  7423. name: "Micro",
  7424. height: math.unit(6.8, "cm"),
  7425. default: true
  7426. },
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(1.72, "m")
  7430. }
  7431. ]
  7432. ))
  7433. characterMakers.push(() => makeCharacter(
  7434. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7435. {
  7436. front: {
  7437. height: math.unit(1.69, "meters"),
  7438. weight: math.unit(68, "kg"),
  7439. name: "Front",
  7440. image: {
  7441. source: "./media/characters/martin/front.svg",
  7442. extra: 596 / 581
  7443. }
  7444. }
  7445. },
  7446. [
  7447. {
  7448. name: "Micro",
  7449. height: math.unit(6.85, "cm"),
  7450. default: true
  7451. },
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(1.69, "m")
  7455. }
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(1.69, "meters"),
  7463. weight: math.unit(68, "kg"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/juno/front.svg"
  7467. }
  7468. }
  7469. },
  7470. [
  7471. {
  7472. name: "Micro",
  7473. height: math.unit(7, "cm")
  7474. },
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(1.89, "m")
  7478. },
  7479. {
  7480. name: "Macro",
  7481. height: math.unit(353, "meters"),
  7482. default: true
  7483. }
  7484. ]
  7485. ))
  7486. characterMakers.push(() => makeCharacter(
  7487. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7488. {
  7489. front: {
  7490. height: math.unit(1.93, "meters"),
  7491. weight: math.unit(83, "kg"),
  7492. name: "Front",
  7493. image: {
  7494. source: "./media/characters/samantha/front.svg"
  7495. }
  7496. },
  7497. frontClothed: {
  7498. height: math.unit(1.93, "meters"),
  7499. weight: math.unit(83, "kg"),
  7500. name: "Front (Clothed)",
  7501. image: {
  7502. source: "./media/characters/samantha/front-clothed.svg"
  7503. }
  7504. },
  7505. back: {
  7506. height: math.unit(1.93, "meters"),
  7507. weight: math.unit(83, "kg"),
  7508. name: "Back",
  7509. image: {
  7510. source: "./media/characters/samantha/back.svg"
  7511. }
  7512. },
  7513. },
  7514. [
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(1.93, "m")
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(74, "meters"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Macro+",
  7526. height: math.unit(223, "meters"),
  7527. },
  7528. {
  7529. name: "Megamacro",
  7530. height: math.unit(8381, "meters"),
  7531. },
  7532. {
  7533. name: "Megamacro+",
  7534. height: math.unit(12000, "kilometers")
  7535. },
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7540. {
  7541. front: {
  7542. height: math.unit(1.92, "meters"),
  7543. weight: math.unit(80, "kg"),
  7544. name: "Front",
  7545. image: {
  7546. source: "./media/characters/dr-clay/front.svg"
  7547. }
  7548. },
  7549. frontClothed: {
  7550. height: math.unit(1.92, "meters"),
  7551. weight: math.unit(80, "kg"),
  7552. name: "Front (Clothed)",
  7553. image: {
  7554. source: "./media/characters/dr-clay/front-clothed.svg"
  7555. }
  7556. }
  7557. },
  7558. [
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(1.92, "m")
  7562. },
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(214, "meters"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Macro+",
  7570. height: math.unit(12.237, "meters"),
  7571. },
  7572. {
  7573. name: "Megamacro",
  7574. height: math.unit(557, "megameters"),
  7575. },
  7576. {
  7577. name: "Unimaginable",
  7578. height: math.unit(120e9, "lightyears")
  7579. },
  7580. ]
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7584. {
  7585. front: {
  7586. height: math.unit(2, "meters"),
  7587. weight: math.unit(80, "kg"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7591. }
  7592. }
  7593. },
  7594. [
  7595. {
  7596. name: "Teramacro",
  7597. height: math.unit(500000, "lightyears"),
  7598. default: true
  7599. },
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7604. {
  7605. crux: {
  7606. height: math.unit(2, "meters"),
  7607. weight: math.unit(150, "kg"),
  7608. name: "Crux",
  7609. image: {
  7610. source: "./media/characters/vemus/crux.svg",
  7611. extra: 1074/936,
  7612. bottom: 23/1097
  7613. }
  7614. },
  7615. skunkTanuki: {
  7616. height: math.unit(2, "meters"),
  7617. weight: math.unit(150, "kg"),
  7618. name: "Skunk-Tanuki",
  7619. image: {
  7620. source: "./media/characters/vemus/skunk-tanuki.svg",
  7621. extra: 926/893,
  7622. bottom: 20/946
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(4, "meters"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Big",
  7634. height: math.unit(8, "meters")
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(100, "meters")
  7639. },
  7640. {
  7641. name: "Macro+",
  7642. height: math.unit(1500, "meters")
  7643. },
  7644. {
  7645. name: "Stellar",
  7646. height: math.unit(14e8, "meters")
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7652. {
  7653. front: {
  7654. height: math.unit(2, "meters"),
  7655. weight: math.unit(70, "kg"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/beherit/front.svg",
  7659. extra: 1234/1109,
  7660. bottom: 55/1289
  7661. }
  7662. }
  7663. },
  7664. [
  7665. {
  7666. name: "Normal",
  7667. height: math.unit(6, "feet")
  7668. },
  7669. {
  7670. name: "Lorg",
  7671. height: math.unit(25, "feet"),
  7672. default: true
  7673. },
  7674. {
  7675. name: "Lorger",
  7676. height: math.unit(75, "feet")
  7677. },
  7678. {
  7679. name: "Macro",
  7680. height: math.unit(200, "meters")
  7681. },
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7686. {
  7687. front: {
  7688. height: math.unit(2, "meters"),
  7689. weight: math.unit(150, "kg"),
  7690. name: "Front",
  7691. image: {
  7692. source: "./media/characters/everett/front.svg",
  7693. extra: 1017/866,
  7694. bottom: 86/1103
  7695. }
  7696. },
  7697. paw: {
  7698. height: math.unit(2 / 3.6, "meters"),
  7699. name: "Paw",
  7700. image: {
  7701. source: "./media/characters/everett/paw.svg"
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(15, "feet"),
  7709. default: true
  7710. },
  7711. {
  7712. name: "Lorg",
  7713. height: math.unit(70, "feet"),
  7714. default: true
  7715. },
  7716. {
  7717. name: "Lorger",
  7718. height: math.unit(250, "feet")
  7719. },
  7720. {
  7721. name: "Macro",
  7722. height: math.unit(500, "meters")
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7728. {
  7729. front: {
  7730. height: math.unit(2, "meters"),
  7731. weight: math.unit(86, "kg"),
  7732. name: "Front",
  7733. image: {
  7734. source: "./media/characters/rose/front.svg",
  7735. extra: 1785/1636,
  7736. bottom: 30/1815
  7737. },
  7738. form: "liom",
  7739. default: true
  7740. },
  7741. frontSporty: {
  7742. height: math.unit(2, "meters"),
  7743. weight: math.unit(86, "kg"),
  7744. name: "Front (Sporty)",
  7745. image: {
  7746. source: "./media/characters/rose/front-sporty.svg",
  7747. extra: 350/335,
  7748. bottom: 10/360
  7749. },
  7750. form: "liom"
  7751. },
  7752. frontAlt: {
  7753. height: math.unit(1.6, "meters"),
  7754. weight: math.unit(86, "kg"),
  7755. name: "Front (Alt)",
  7756. image: {
  7757. source: "./media/characters/rose/front-alt.svg",
  7758. extra: 299/283,
  7759. bottom: 3/302
  7760. },
  7761. form: "liom"
  7762. },
  7763. plush: {
  7764. height: math.unit(2, "meters"),
  7765. weight: math.unit(86/3, "kg"),
  7766. name: "Plush",
  7767. image: {
  7768. source: "./media/characters/rose/plush.svg",
  7769. extra: 361/337,
  7770. bottom: 11/372
  7771. },
  7772. form: "plush",
  7773. default: true
  7774. },
  7775. faeStanding: {
  7776. height: math.unit(10, "cm"),
  7777. weight: math.unit(10, "grams"),
  7778. name: "Standing",
  7779. image: {
  7780. source: "./media/characters/rose/fae-standing.svg",
  7781. extra: 1189/1060,
  7782. bottom: 27/1216
  7783. },
  7784. form: "fae",
  7785. default: true
  7786. },
  7787. faeSitting: {
  7788. height: math.unit(5, "cm"),
  7789. weight: math.unit(10, "grams"),
  7790. name: "Sitting",
  7791. image: {
  7792. source: "./media/characters/rose/fae-sitting.svg",
  7793. extra: 737/577,
  7794. bottom: 356/1093
  7795. },
  7796. form: "fae"
  7797. },
  7798. faePaw: {
  7799. height: math.unit(1.35, "cm"),
  7800. name: "Paw",
  7801. image: {
  7802. source: "./media/characters/rose/fae-paw.svg"
  7803. },
  7804. form: "fae"
  7805. },
  7806. },
  7807. [
  7808. {
  7809. name: "True Micro",
  7810. height: math.unit(9, "cm"),
  7811. form: "liom"
  7812. },
  7813. {
  7814. name: "Micro",
  7815. height: math.unit(16, "cm"),
  7816. form: "liom"
  7817. },
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(1.85, "meters"),
  7821. default: true,
  7822. form: "liom"
  7823. },
  7824. {
  7825. name: "Mini-Macro",
  7826. height: math.unit(5, "meters"),
  7827. form: "liom"
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(15, "meters"),
  7832. form: "liom"
  7833. },
  7834. {
  7835. name: "True Macro",
  7836. height: math.unit(40, "meters"),
  7837. form: "liom"
  7838. },
  7839. {
  7840. name: "City Scale",
  7841. height: math.unit(1, "km"),
  7842. form: "liom"
  7843. },
  7844. {
  7845. name: "Plushie",
  7846. height: math.unit(9, "cm"),
  7847. form: "plush",
  7848. default: true
  7849. },
  7850. {
  7851. name: "Fae",
  7852. height: math.unit(10, "cm"),
  7853. form: "fae",
  7854. default: true
  7855. },
  7856. ],
  7857. {
  7858. "liom": {
  7859. name: "Liom"
  7860. },
  7861. "plush": {
  7862. name: "Plush"
  7863. },
  7864. "fae": {
  7865. name: "Fae Fox",
  7866. default: true
  7867. }
  7868. }
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(2, "meters"),
  7875. weight: math.unit(350, "lbs"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/regal/front.svg"
  7879. }
  7880. },
  7881. back: {
  7882. height: math.unit(2, "meters"),
  7883. weight: math.unit(350, "lbs"),
  7884. name: "Back",
  7885. image: {
  7886. source: "./media/characters/regal/back.svg"
  7887. }
  7888. },
  7889. },
  7890. [
  7891. {
  7892. name: "Macro",
  7893. height: math.unit(350, "feet"),
  7894. default: true
  7895. }
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(4 + 11 / 12, "feet"),
  7903. weight: math.unit(100, "lbs"),
  7904. name: "Front",
  7905. image: {
  7906. source: "./media/characters/opal/front.svg"
  7907. }
  7908. },
  7909. frontAlt: {
  7910. height: math.unit(4 + 11 / 12, "feet"),
  7911. weight: math.unit(100, "lbs"),
  7912. name: "Front (Alt)",
  7913. image: {
  7914. source: "./media/characters/opal/front-alt.svg"
  7915. }
  7916. },
  7917. },
  7918. [
  7919. {
  7920. name: "Small",
  7921. height: math.unit(4 + 11 / 12, "feet")
  7922. },
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(20, "feet"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Macro",
  7930. height: math.unit(120, "feet")
  7931. },
  7932. {
  7933. name: "Megamacro",
  7934. height: math.unit(80, "miles")
  7935. },
  7936. {
  7937. name: "True Size",
  7938. height: math.unit(100000, "lightyears")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(200, "lbs"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/vector-wuff/front.svg"
  7951. }
  7952. }
  7953. },
  7954. [
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(2.8, "meters")
  7958. },
  7959. {
  7960. name: "Macro",
  7961. height: math.unit(450, "meters"),
  7962. default: true
  7963. },
  7964. {
  7965. name: "Megamacro",
  7966. height: math.unit(15, "kilometers")
  7967. }
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(6, "feet"),
  7975. weight: math.unit(256, "lbs"),
  7976. name: "Front",
  7977. image: {
  7978. source: "./media/characters/dannik/front.svg"
  7979. }
  7980. }
  7981. },
  7982. [
  7983. {
  7984. name: "Macro",
  7985. height: math.unit(69.57, "meters"),
  7986. default: true
  7987. },
  7988. ]
  7989. ))
  7990. characterMakers.push(() => makeCharacter(
  7991. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7992. {
  7993. front: {
  7994. height: math.unit(6, "feet"),
  7995. weight: math.unit(120, "lbs"),
  7996. name: "Front",
  7997. image: {
  7998. source: "./media/characters/azura-saharah/front.svg"
  7999. }
  8000. },
  8001. back: {
  8002. height: math.unit(6, "feet"),
  8003. weight: math.unit(120, "lbs"),
  8004. name: "Back",
  8005. image: {
  8006. source: "./media/characters/azura-saharah/back.svg"
  8007. }
  8008. },
  8009. },
  8010. [
  8011. {
  8012. name: "Macro",
  8013. height: math.unit(100, "feet"),
  8014. default: true
  8015. },
  8016. ]
  8017. ))
  8018. characterMakers.push(() => makeCharacter(
  8019. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8020. {
  8021. side: {
  8022. height: math.unit(5 + 4 / 12, "feet"),
  8023. weight: math.unit(163, "lbs"),
  8024. name: "Side",
  8025. image: {
  8026. source: "./media/characters/kennedy/side.svg"
  8027. }
  8028. }
  8029. },
  8030. [
  8031. {
  8032. name: "Standard Doggo",
  8033. height: math.unit(5 + 4 / 12, "feet")
  8034. },
  8035. {
  8036. name: "Big Doggo",
  8037. height: math.unit(25 + 3 / 12, "feet"),
  8038. default: true
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(5 + 5/12, "feet"),
  8047. weight: math.unit(100, "lbs"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/odios-de-lunar/front.svg",
  8051. extra: 1468/1323,
  8052. bottom: 22/1490
  8053. }
  8054. }
  8055. },
  8056. [
  8057. {
  8058. name: "Micro",
  8059. height: math.unit(3, "inches")
  8060. },
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(5.5, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(100, "feet")
  8069. },
  8070. ]
  8071. ))
  8072. characterMakers.push(() => makeCharacter(
  8073. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8074. {
  8075. back: {
  8076. height: math.unit(6, "feet"),
  8077. weight: math.unit(220, "lbs"),
  8078. name: "Back",
  8079. image: {
  8080. source: "./media/characters/mandake/back.svg"
  8081. }
  8082. }
  8083. },
  8084. [
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(7, "feet"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Macro",
  8092. height: math.unit(78, "feet")
  8093. },
  8094. {
  8095. name: "Macro+",
  8096. height: math.unit(300, "meters")
  8097. },
  8098. {
  8099. name: "Macro++",
  8100. height: math.unit(2400, "feet")
  8101. },
  8102. {
  8103. name: "Megamacro",
  8104. height: math.unit(5167, "meters")
  8105. },
  8106. {
  8107. name: "Gigamacro",
  8108. height: math.unit(41769, "miles")
  8109. },
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(120, "lbs"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/yozey/front.svg"
  8121. }
  8122. },
  8123. frontAlt: {
  8124. height: math.unit(6, "feet"),
  8125. weight: math.unit(120, "lbs"),
  8126. name: "Front (Alt)",
  8127. image: {
  8128. source: "./media/characters/yozey/front-alt.svg"
  8129. }
  8130. },
  8131. side: {
  8132. height: math.unit(6, "feet"),
  8133. weight: math.unit(120, "lbs"),
  8134. name: "Side",
  8135. image: {
  8136. source: "./media/characters/yozey/side.svg"
  8137. }
  8138. },
  8139. },
  8140. [
  8141. {
  8142. name: "Micro",
  8143. height: math.unit(3, "inches"),
  8144. default: true
  8145. },
  8146. {
  8147. name: "Normal",
  8148. height: math.unit(6, "feet")
  8149. }
  8150. ]
  8151. ))
  8152. characterMakers.push(() => makeCharacter(
  8153. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8154. {
  8155. front: {
  8156. height: math.unit(6, "feet"),
  8157. weight: math.unit(103, "lbs"),
  8158. name: "Front",
  8159. image: {
  8160. source: "./media/characters/valeska-voss/front.svg"
  8161. }
  8162. }
  8163. },
  8164. [
  8165. {
  8166. name: "Mini-Sized Sub",
  8167. height: math.unit(3.1, "inches")
  8168. },
  8169. {
  8170. name: "Mid-Sized Sub",
  8171. height: math.unit(6.2, "inches")
  8172. },
  8173. {
  8174. name: "Full-Sized Sub",
  8175. height: math.unit(9.3, "inches")
  8176. },
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(5 + 2 / 12, "foot"),
  8180. default: true
  8181. },
  8182. ]
  8183. ))
  8184. characterMakers.push(() => makeCharacter(
  8185. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8186. {
  8187. front: {
  8188. height: math.unit(6, "feet"),
  8189. weight: math.unit(160, "lbs"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/gene-zeta/front.svg",
  8193. extra: 3006 / 2826,
  8194. bottom: 182 / 3188
  8195. }
  8196. }
  8197. },
  8198. [
  8199. {
  8200. name: "Micro",
  8201. height: math.unit(6, "inches")
  8202. },
  8203. {
  8204. name: "Normal",
  8205. height: math.unit(5 + 11 / 12, "foot"),
  8206. default: true
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(140, "feet")
  8211. },
  8212. {
  8213. name: "Supercharged",
  8214. height: math.unit(2500, "feet")
  8215. },
  8216. ]
  8217. ))
  8218. characterMakers.push(() => makeCharacter(
  8219. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8220. {
  8221. front: {
  8222. height: math.unit(6, "feet"),
  8223. weight: math.unit(350, "lbs"),
  8224. name: "Front",
  8225. image: {
  8226. source: "./media/characters/razinox/front.svg",
  8227. extra: 1686 / 1548,
  8228. bottom: 28.2 / 1868
  8229. }
  8230. },
  8231. back: {
  8232. height: math.unit(6, "feet"),
  8233. weight: math.unit(350, "lbs"),
  8234. name: "Back",
  8235. image: {
  8236. source: "./media/characters/razinox/back.svg",
  8237. extra: 1660 / 1590,
  8238. bottom: 15 / 1665
  8239. }
  8240. },
  8241. },
  8242. [
  8243. {
  8244. name: "Normal",
  8245. height: math.unit(10 + 8 / 12, "foot")
  8246. },
  8247. {
  8248. name: "Minimacro",
  8249. height: math.unit(15, "foot")
  8250. },
  8251. {
  8252. name: "Macro",
  8253. height: math.unit(60, "foot"),
  8254. default: true
  8255. },
  8256. {
  8257. name: "Megamacro",
  8258. height: math.unit(5, "miles")
  8259. },
  8260. {
  8261. name: "Gigamacro",
  8262. height: math.unit(6000, "miles")
  8263. },
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8268. {
  8269. front: {
  8270. height: math.unit(6, "feet"),
  8271. weight: math.unit(150, "lbs"),
  8272. name: "Front",
  8273. image: {
  8274. source: "./media/characters/cobalt/front.svg"
  8275. }
  8276. }
  8277. },
  8278. [
  8279. {
  8280. name: "Normal",
  8281. height: math.unit(8 + 1 / 12, "foot")
  8282. },
  8283. {
  8284. name: "Macro",
  8285. height: math.unit(111, "foot"),
  8286. default: true
  8287. },
  8288. {
  8289. name: "Supracosmic",
  8290. height: math.unit(1e42, "feet")
  8291. },
  8292. ]
  8293. ))
  8294. characterMakers.push(() => makeCharacter(
  8295. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8296. {
  8297. front: {
  8298. height: math.unit(5, "inches"),
  8299. name: "Front",
  8300. image: {
  8301. source: "./media/characters/amanda/front.svg",
  8302. extra: 926/791,
  8303. bottom: 38/964
  8304. }
  8305. },
  8306. back: {
  8307. height: math.unit(5, "inches"),
  8308. name: "Back",
  8309. image: {
  8310. source: "./media/characters/amanda/back.svg",
  8311. extra: 909/805,
  8312. bottom: 43/952
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(5, "inches"),
  8320. default: true
  8321. },
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(2.75, "meters"),
  8329. weight: math.unit(1200, "lb"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/teal/front.svg",
  8333. extra: 2463 / 2320,
  8334. bottom: 166 / 2629
  8335. }
  8336. },
  8337. back: {
  8338. height: math.unit(2.75, "meters"),
  8339. weight: math.unit(1200, "lb"),
  8340. name: "Back",
  8341. image: {
  8342. source: "./media/characters/teal/back.svg",
  8343. extra: 2580 / 2489,
  8344. bottom: 151 / 2731
  8345. }
  8346. },
  8347. sitting: {
  8348. height: math.unit(1.9, "meters"),
  8349. weight: math.unit(1200, "lb"),
  8350. name: "Sitting",
  8351. image: {
  8352. source: "./media/characters/teal/sitting.svg",
  8353. extra: 623 / 590,
  8354. bottom: 121 / 744
  8355. }
  8356. },
  8357. standing: {
  8358. height: math.unit(2.75, "meters"),
  8359. weight: math.unit(1200, "lb"),
  8360. name: "Standing",
  8361. image: {
  8362. source: "./media/characters/teal/standing.svg",
  8363. extra: 923 / 893,
  8364. bottom: 60 / 983
  8365. }
  8366. },
  8367. stretching: {
  8368. height: math.unit(3.65, "meters"),
  8369. weight: math.unit(1200, "lb"),
  8370. name: "Stretching",
  8371. image: {
  8372. source: "./media/characters/teal/stretching.svg",
  8373. extra: 1276 / 1244,
  8374. bottom: 0 / 1276
  8375. }
  8376. },
  8377. legged: {
  8378. height: math.unit(1.3, "meters"),
  8379. weight: math.unit(100, "lb"),
  8380. name: "Legged",
  8381. image: {
  8382. source: "./media/characters/teal/legged.svg",
  8383. extra: 462 / 437,
  8384. bottom: 24 / 486
  8385. }
  8386. },
  8387. naga: {
  8388. height: math.unit(5.4, "meters"),
  8389. weight: math.unit(4000, "lb"),
  8390. name: "Naga",
  8391. image: {
  8392. source: "./media/characters/teal/naga.svg",
  8393. extra: 1902 / 1858,
  8394. bottom: 0 / 1902
  8395. }
  8396. },
  8397. hand: {
  8398. height: math.unit(0.52, "meters"),
  8399. name: "Hand",
  8400. image: {
  8401. source: "./media/characters/teal/hand.svg"
  8402. }
  8403. },
  8404. maw: {
  8405. height: math.unit(0.43, "meters"),
  8406. name: "Maw",
  8407. image: {
  8408. source: "./media/characters/teal/maw.svg"
  8409. }
  8410. },
  8411. slit: {
  8412. height: math.unit(0.25, "meters"),
  8413. name: "Slit",
  8414. image: {
  8415. source: "./media/characters/teal/slit.svg"
  8416. }
  8417. },
  8418. },
  8419. [
  8420. {
  8421. name: "Normal",
  8422. height: math.unit(2.75, "meters"),
  8423. default: true
  8424. },
  8425. {
  8426. name: "Macro",
  8427. height: math.unit(300, "feet")
  8428. },
  8429. {
  8430. name: "Macro+",
  8431. height: math.unit(2000, "feet")
  8432. },
  8433. ]
  8434. ))
  8435. characterMakers.push(() => makeCharacter(
  8436. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8437. {
  8438. frontCat: {
  8439. height: math.unit(6, "feet"),
  8440. weight: math.unit(180, "lbs"),
  8441. name: "Front (Cat)",
  8442. image: {
  8443. source: "./media/characters/ravin-amulet/front-cat.svg"
  8444. }
  8445. },
  8446. frontCatAlt: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(180, "lbs"),
  8449. name: "Front (Alt, Cat)",
  8450. image: {
  8451. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8452. }
  8453. },
  8454. frontWerewolf: {
  8455. height: math.unit(6 * 1.2, "feet"),
  8456. weight: math.unit(225, "lbs"),
  8457. name: "Front (Werewolf)",
  8458. image: {
  8459. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8460. }
  8461. },
  8462. backWerewolf: {
  8463. height: math.unit(6 * 1.2, "feet"),
  8464. weight: math.unit(225, "lbs"),
  8465. name: "Back (Werewolf)",
  8466. image: {
  8467. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8468. }
  8469. },
  8470. },
  8471. [
  8472. {
  8473. name: "Nano",
  8474. height: math.unit(1, "micrometer")
  8475. },
  8476. {
  8477. name: "Micro",
  8478. height: math.unit(1, "inch")
  8479. },
  8480. {
  8481. name: "Normal",
  8482. height: math.unit(6, "feet"),
  8483. default: true
  8484. },
  8485. {
  8486. name: "Macro",
  8487. height: math.unit(60, "feet")
  8488. }
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(165, "lbs"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/fluoresce/front.svg"
  8500. }
  8501. }
  8502. },
  8503. [
  8504. {
  8505. name: "Micro",
  8506. height: math.unit(6, "cm")
  8507. },
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(5 + 7 / 12, "feet"),
  8511. default: true
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(56, "feet")
  8516. },
  8517. {
  8518. name: "Megamacro",
  8519. height: math.unit(1.9, "miles")
  8520. },
  8521. ]
  8522. ))
  8523. characterMakers.push(() => makeCharacter(
  8524. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8525. {
  8526. front: {
  8527. height: math.unit(9 + 6 / 12, "feet"),
  8528. weight: math.unit(523, "lbs"),
  8529. name: "Side",
  8530. image: {
  8531. source: "./media/characters/aurora/side.svg",
  8532. extra: 474/393,
  8533. bottom: 5/479
  8534. }
  8535. }
  8536. },
  8537. [
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(9 + 6 / 12, "feet")
  8541. },
  8542. {
  8543. name: "Macro",
  8544. height: math.unit(96, "feet"),
  8545. default: true
  8546. },
  8547. {
  8548. name: "Macro+",
  8549. height: math.unit(243, "feet")
  8550. },
  8551. ]
  8552. ))
  8553. characterMakers.push(() => makeCharacter(
  8554. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8555. {
  8556. front: {
  8557. height: math.unit(194, "cm"),
  8558. weight: math.unit(90, "kg"),
  8559. name: "Front",
  8560. image: {
  8561. source: "./media/characters/ranek/front.svg",
  8562. extra: 1862/1791,
  8563. bottom: 80/1942
  8564. }
  8565. },
  8566. back: {
  8567. height: math.unit(194, "cm"),
  8568. weight: math.unit(90, "kg"),
  8569. name: "Back",
  8570. image: {
  8571. source: "./media/characters/ranek/back.svg",
  8572. extra: 1853/1787,
  8573. bottom: 74/1927
  8574. }
  8575. },
  8576. feral: {
  8577. height: math.unit(30, "cm"),
  8578. weight: math.unit(1.6, "lbs"),
  8579. name: "Feral",
  8580. image: {
  8581. source: "./media/characters/ranek/feral.svg",
  8582. extra: 990/631,
  8583. bottom: 29/1019
  8584. }
  8585. },
  8586. },
  8587. [
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(194, "cm"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(100, "meters")
  8596. },
  8597. ]
  8598. ))
  8599. characterMakers.push(() => makeCharacter(
  8600. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8601. {
  8602. front: {
  8603. height: math.unit(5 + 6 / 12, "feet"),
  8604. weight: math.unit(153, "lbs"),
  8605. name: "Front",
  8606. image: {
  8607. source: "./media/characters/andrew-cooper/front.svg"
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Nano",
  8614. height: math.unit(1, "mm")
  8615. },
  8616. {
  8617. name: "Micro",
  8618. height: math.unit(2, "inches")
  8619. },
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(5 + 6 / 12, "feet"),
  8623. default: true
  8624. }
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8629. {
  8630. front: {
  8631. height: math.unit(6, "feet"),
  8632. weight: math.unit(180, "lbs"),
  8633. name: "Front",
  8634. image: {
  8635. source: "./media/characters/akane-sato/front.svg",
  8636. extra: 1219 / 1140
  8637. }
  8638. },
  8639. back: {
  8640. height: math.unit(6, "feet"),
  8641. weight: math.unit(180, "lbs"),
  8642. name: "Back",
  8643. image: {
  8644. source: "./media/characters/akane-sato/back.svg",
  8645. extra: 1219 / 1170
  8646. }
  8647. },
  8648. },
  8649. [
  8650. {
  8651. name: "Normal",
  8652. height: math.unit(2.5, "meters")
  8653. },
  8654. {
  8655. name: "Macro",
  8656. height: math.unit(250, "meters"),
  8657. default: true
  8658. },
  8659. {
  8660. name: "Megamacro",
  8661. height: math.unit(25, "km")
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(65, "kg"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/rook/front.svg",
  8674. extra: 960 / 950
  8675. }
  8676. }
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(8.8, "feet")
  8682. },
  8683. {
  8684. name: "Macro",
  8685. height: math.unit(88, "feet"),
  8686. default: true
  8687. },
  8688. {
  8689. name: "Megamacro",
  8690. height: math.unit(8, "miles")
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(12 + 2 / 12, "feet"),
  8699. weight: math.unit(808, "lbs"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/prodigy/front.svg"
  8703. }
  8704. }
  8705. },
  8706. [
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(12 + 2 / 12, "feet"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Macro",
  8714. height: math.unit(143, "feet")
  8715. },
  8716. {
  8717. name: "Macro+",
  8718. height: math.unit(400, "feet")
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(6, "feet"),
  8727. weight: math.unit(225, "lbs"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/daniel/front.svg"
  8731. }
  8732. },
  8733. leaning: {
  8734. height: math.unit(6, "feet"),
  8735. weight: math.unit(225, "lbs"),
  8736. name: "Leaning",
  8737. image: {
  8738. source: "./media/characters/daniel/leaning.svg"
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(1000, "feet"),
  8746. default: true
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(6, "feet"),
  8755. weight: math.unit(88, "lbs"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/chiros/front.svg",
  8759. extra: 306 / 226
  8760. }
  8761. },
  8762. side: {
  8763. height: math.unit(6, "feet"),
  8764. weight: math.unit(88, "lbs"),
  8765. name: "Side",
  8766. image: {
  8767. source: "./media/characters/chiros/side.svg",
  8768. extra: 306 / 226
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Normal",
  8775. height: math.unit(6, "cm"),
  8776. default: true
  8777. },
  8778. ]
  8779. ))
  8780. characterMakers.push(() => makeCharacter(
  8781. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8782. {
  8783. front: {
  8784. height: math.unit(6, "feet"),
  8785. weight: math.unit(100, "lbs"),
  8786. name: "Front",
  8787. image: {
  8788. source: "./media/characters/selka/front.svg",
  8789. extra: 947 / 887
  8790. }
  8791. }
  8792. },
  8793. [
  8794. {
  8795. name: "Normal",
  8796. height: math.unit(5, "cm"),
  8797. default: true
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(8 + 3 / 12, "feet"),
  8806. weight: math.unit(424, "lbs"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/verin/front.svg",
  8810. extra: 1845 / 1550
  8811. }
  8812. },
  8813. frontArmored: {
  8814. height: math.unit(8 + 3 / 12, "feet"),
  8815. weight: math.unit(424, "lbs"),
  8816. name: "Front (Armored)",
  8817. image: {
  8818. source: "./media/characters/verin/front-armor.svg",
  8819. extra: 1845 / 1550,
  8820. bottom: 0.01
  8821. }
  8822. },
  8823. back: {
  8824. height: math.unit(8 + 3 / 12, "feet"),
  8825. weight: math.unit(424, "lbs"),
  8826. name: "Back",
  8827. image: {
  8828. source: "./media/characters/verin/back.svg",
  8829. bottom: 0.1,
  8830. extra: 1
  8831. }
  8832. },
  8833. foot: {
  8834. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8835. name: "Foot",
  8836. image: {
  8837. source: "./media/characters/verin/foot.svg"
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Normal",
  8844. height: math.unit(8 + 3 / 12, "feet")
  8845. },
  8846. {
  8847. name: "Minimacro",
  8848. height: math.unit(21, "feet"),
  8849. default: true
  8850. },
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(626, "feet")
  8854. },
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8859. {
  8860. front: {
  8861. height: math.unit(2.718, "meters"),
  8862. weight: math.unit(150, "lbs"),
  8863. name: "Front",
  8864. image: {
  8865. source: "./media/characters/sovrim-terraquian/front.svg",
  8866. extra: 1752/1689,
  8867. bottom: 36/1788
  8868. }
  8869. },
  8870. back: {
  8871. height: math.unit(2.718, "meters"),
  8872. weight: math.unit(150, "lbs"),
  8873. name: "Back",
  8874. image: {
  8875. source: "./media/characters/sovrim-terraquian/back.svg",
  8876. extra: 1698/1657,
  8877. bottom: 58/1756
  8878. }
  8879. },
  8880. tongue: {
  8881. height: math.unit(2.865, "feet"),
  8882. name: "Tongue",
  8883. image: {
  8884. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8885. }
  8886. },
  8887. hand: {
  8888. height: math.unit(1.61, "feet"),
  8889. name: "Hand",
  8890. image: {
  8891. source: "./media/characters/sovrim-terraquian/hand.svg"
  8892. }
  8893. },
  8894. foot: {
  8895. height: math.unit(1.05, "feet"),
  8896. name: "Foot",
  8897. image: {
  8898. source: "./media/characters/sovrim-terraquian/foot.svg"
  8899. }
  8900. },
  8901. footAlt: {
  8902. height: math.unit(0.88, "feet"),
  8903. name: "Foot (Alt)",
  8904. image: {
  8905. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8906. }
  8907. },
  8908. },
  8909. [
  8910. {
  8911. name: "Micro",
  8912. height: math.unit(2, "inches")
  8913. },
  8914. {
  8915. name: "Small",
  8916. height: math.unit(1, "meter")
  8917. },
  8918. {
  8919. name: "Normal",
  8920. height: math.unit(Math.E, "meters"),
  8921. default: true
  8922. },
  8923. {
  8924. name: "Macro",
  8925. height: math.unit(20, "meters")
  8926. },
  8927. {
  8928. name: "Macro+",
  8929. height: math.unit(400, "meters")
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8935. {
  8936. front: {
  8937. height: math.unit(7, "feet"),
  8938. weight: math.unit(489, "lbs"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/reece-silvermane/front.svg",
  8942. bottom: 0.02,
  8943. extra: 1
  8944. }
  8945. },
  8946. },
  8947. [
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(1.5, "miles"),
  8951. default: true
  8952. },
  8953. ]
  8954. ))
  8955. characterMakers.push(() => makeCharacter(
  8956. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8957. {
  8958. front: {
  8959. height: math.unit(6, "feet"),
  8960. weight: math.unit(78, "kg"),
  8961. name: "Front",
  8962. image: {
  8963. source: "./media/characters/kane/front.svg",
  8964. extra: 978 / 899
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(2.1, "m"),
  8972. },
  8973. {
  8974. name: "Macro",
  8975. height: math.unit(1, "km"),
  8976. default: true
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8982. {
  8983. front: {
  8984. height: math.unit(6, "feet"),
  8985. weight: math.unit(200, "kg"),
  8986. name: "Front",
  8987. image: {
  8988. source: "./media/characters/tegon/front.svg",
  8989. bottom: 0.01,
  8990. extra: 1
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Micro",
  8997. height: math.unit(1, "inch")
  8998. },
  8999. {
  9000. name: "Normal",
  9001. height: math.unit(6 + 3 / 12, "feet"),
  9002. default: true
  9003. },
  9004. {
  9005. name: "Macro",
  9006. height: math.unit(300, "feet")
  9007. },
  9008. {
  9009. name: "Megamacro",
  9010. height: math.unit(69, "miles")
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9016. {
  9017. side: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(2304, "lbs"),
  9020. name: "Side",
  9021. image: {
  9022. source: "./media/characters/arcturax/side.svg",
  9023. extra: 790 / 376,
  9024. bottom: 0.01
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Micro",
  9031. height: math.unit(2, "inch")
  9032. },
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(6, "feet")
  9036. },
  9037. {
  9038. name: "Macro",
  9039. height: math.unit(39, "feet"),
  9040. default: true
  9041. },
  9042. {
  9043. name: "Megamacro",
  9044. height: math.unit(7, "miles")
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(6, "feet"),
  9053. weight: math.unit(50, "lbs"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/sentri/front.svg",
  9057. extra: 1750 / 1570,
  9058. bottom: 0.025
  9059. }
  9060. },
  9061. frontAlt: {
  9062. height: math.unit(6, "feet"),
  9063. weight: math.unit(50, "lbs"),
  9064. name: "Front (Alt)",
  9065. image: {
  9066. source: "./media/characters/sentri/front-alt.svg",
  9067. extra: 1750 / 1570,
  9068. bottom: 0.025
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Normal",
  9075. height: math.unit(15, "feet"),
  9076. default: true
  9077. },
  9078. {
  9079. name: "Macro",
  9080. height: math.unit(2500, "feet")
  9081. }
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(5 + 8 / 12, "feet"),
  9089. weight: math.unit(130, "lbs"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/corvin/front.svg",
  9093. extra: 1803 / 1629
  9094. }
  9095. },
  9096. frontShirt: {
  9097. height: math.unit(5 + 8 / 12, "feet"),
  9098. weight: math.unit(130, "lbs"),
  9099. name: "Front (Shirt)",
  9100. image: {
  9101. source: "./media/characters/corvin/front-shirt.svg",
  9102. extra: 1803 / 1629
  9103. }
  9104. },
  9105. frontPoncho: {
  9106. height: math.unit(5 + 8 / 12, "feet"),
  9107. weight: math.unit(130, "lbs"),
  9108. name: "Front (Poncho)",
  9109. image: {
  9110. source: "./media/characters/corvin/front-poncho.svg",
  9111. extra: 1803 / 1629
  9112. }
  9113. },
  9114. side: {
  9115. height: math.unit(5 + 8 / 12, "feet"),
  9116. weight: math.unit(130, "lbs"),
  9117. name: "Side",
  9118. image: {
  9119. source: "./media/characters/corvin/side.svg",
  9120. extra: 1012 / 945
  9121. }
  9122. },
  9123. back: {
  9124. height: math.unit(5 + 8 / 12, "feet"),
  9125. weight: math.unit(130, "lbs"),
  9126. name: "Back",
  9127. image: {
  9128. source: "./media/characters/corvin/back.svg",
  9129. extra: 1803 / 1629
  9130. }
  9131. },
  9132. },
  9133. [
  9134. {
  9135. name: "Micro",
  9136. height: math.unit(3, "inches")
  9137. },
  9138. {
  9139. name: "Normal",
  9140. height: math.unit(5 + 8 / 12, "feet")
  9141. },
  9142. {
  9143. name: "Macro",
  9144. height: math.unit(300, "feet"),
  9145. default: true
  9146. },
  9147. {
  9148. name: "Megamacro",
  9149. height: math.unit(500, "miles")
  9150. }
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9155. {
  9156. front: {
  9157. height: math.unit(6, "feet"),
  9158. weight: math.unit(135, "lbs"),
  9159. name: "Front",
  9160. image: {
  9161. source: "./media/characters/q/front.svg",
  9162. extra: 854 / 752,
  9163. bottom: 0.005
  9164. }
  9165. },
  9166. back: {
  9167. height: math.unit(6, "feet"),
  9168. weight: math.unit(130, "lbs"),
  9169. name: "Back",
  9170. image: {
  9171. source: "./media/characters/q/back.svg",
  9172. extra: 854 / 752
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(90, "feet"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Extra Macro",
  9184. height: math.unit(300, "feet"),
  9185. },
  9186. {
  9187. name: "BIG WALF",
  9188. height: math.unit(750, "feet"),
  9189. },
  9190. ]
  9191. ))
  9192. characterMakers.push(() => makeCharacter(
  9193. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9194. {
  9195. front: {
  9196. height: math.unit(3, "feet"),
  9197. weight: math.unit(28, "lbs"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/citrine/front.svg"
  9201. }
  9202. }
  9203. },
  9204. [
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(3, "feet"),
  9208. default: true
  9209. }
  9210. ]
  9211. ))
  9212. characterMakers.push(() => makeCharacter(
  9213. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9214. {
  9215. front: {
  9216. height: math.unit(14, "feet"),
  9217. weight: math.unit(1450, "kg"),
  9218. preyCapacity: math.unit(15, "people"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/aura-starwind/front.svg",
  9222. extra: 1440/1327,
  9223. bottom: 11/1451
  9224. }
  9225. },
  9226. side: {
  9227. height: math.unit(14, "feet"),
  9228. weight: math.unit(1450, "kg"),
  9229. preyCapacity: math.unit(15, "people"),
  9230. name: "Side",
  9231. image: {
  9232. source: "./media/characters/aura-starwind/side.svg",
  9233. extra: 1654 / 1497
  9234. }
  9235. },
  9236. taur: {
  9237. height: math.unit(18, "feet"),
  9238. weight: math.unit(5500, "kg"),
  9239. preyCapacity: math.unit(50, "people"),
  9240. name: "Taur",
  9241. image: {
  9242. source: "./media/characters/aura-starwind/taur.svg",
  9243. extra: 1760 / 1650
  9244. }
  9245. },
  9246. feral: {
  9247. height: math.unit(46, "feet"),
  9248. weight: math.unit(25000, "kg"),
  9249. preyCapacity: math.unit(120, "people"),
  9250. name: "Feral",
  9251. image: {
  9252. source: "./media/characters/aura-starwind/feral.svg"
  9253. }
  9254. },
  9255. },
  9256. [
  9257. {
  9258. name: "Normal",
  9259. height: math.unit(14, "feet"),
  9260. default: true
  9261. },
  9262. {
  9263. name: "Macro",
  9264. height: math.unit(50, "meters")
  9265. },
  9266. {
  9267. name: "Megamacro",
  9268. height: math.unit(5000, "meters")
  9269. },
  9270. {
  9271. name: "Gigamacro",
  9272. height: math.unit(100000, "kilometers")
  9273. },
  9274. ]
  9275. ))
  9276. characterMakers.push(() => makeCharacter(
  9277. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9278. {
  9279. front: {
  9280. height: math.unit(2 + 7 / 12, "feet"),
  9281. weight: math.unit(32, "lbs"),
  9282. name: "Front",
  9283. image: {
  9284. source: "./media/characters/rivet/front.svg",
  9285. extra: 1716 / 1658,
  9286. bottom: 0.03
  9287. }
  9288. },
  9289. foot: {
  9290. height: math.unit(0.551, "feet"),
  9291. name: "Rivet's Foot",
  9292. image: {
  9293. source: "./media/characters/rivet/foot.svg"
  9294. },
  9295. rename: true
  9296. }
  9297. },
  9298. [
  9299. {
  9300. name: "Micro",
  9301. height: math.unit(1.5, "inches"),
  9302. },
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(2 + 7 / 12, "feet"),
  9306. default: true
  9307. },
  9308. {
  9309. name: "Macro",
  9310. height: math.unit(85, "feet")
  9311. },
  9312. {
  9313. name: "Megamacro",
  9314. height: math.unit(2.2, "km")
  9315. }
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(5 + 9 / 12, "feet"),
  9323. weight: math.unit(150, "lbs"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/coffee/front.svg",
  9327. extra: 946/880,
  9328. bottom: 66/1012
  9329. }
  9330. },
  9331. foot: {
  9332. height: math.unit(1.29, "feet"),
  9333. name: "Foot",
  9334. image: {
  9335. source: "./media/characters/coffee/foot.svg"
  9336. }
  9337. },
  9338. },
  9339. [
  9340. {
  9341. name: "Micro",
  9342. height: math.unit(2, "inches"),
  9343. },
  9344. {
  9345. name: "Normal",
  9346. height: math.unit(5 + 9 / 12, "feet"),
  9347. default: true
  9348. },
  9349. {
  9350. name: "Macro",
  9351. height: math.unit(800, "feet")
  9352. },
  9353. {
  9354. name: "Megamacro",
  9355. height: math.unit(25, "miles")
  9356. }
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(6, "feet"),
  9364. weight: math.unit(200, "lbs"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/chari-gal/front.svg",
  9368. extra: 1568 / 1385,
  9369. bottom: 0.047
  9370. }
  9371. },
  9372. gigantamax: {
  9373. height: math.unit(6 * 16, "feet"),
  9374. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9375. name: "Gigantamax",
  9376. image: {
  9377. source: "./media/characters/chari-gal/gigantamax.svg",
  9378. extra: 1124 / 888,
  9379. bottom: 0.03
  9380. }
  9381. },
  9382. },
  9383. [
  9384. {
  9385. name: "Normal",
  9386. height: math.unit(5 + 7 / 12, "feet")
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(200, "feet"),
  9391. default: true
  9392. }
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9397. {
  9398. front: {
  9399. height: math.unit(6, "feet"),
  9400. weight: math.unit(150, "lbs"),
  9401. name: "Front",
  9402. image: {
  9403. source: "./media/characters/nova/front.svg",
  9404. extra: 5000 / 4722,
  9405. bottom: 0.02
  9406. }
  9407. }
  9408. },
  9409. [
  9410. {
  9411. name: "Micro-",
  9412. height: math.unit(0.8, "inches")
  9413. },
  9414. {
  9415. name: "Micro",
  9416. height: math.unit(2, "inches"),
  9417. default: true
  9418. },
  9419. ]
  9420. ))
  9421. characterMakers.push(() => makeCharacter(
  9422. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9423. {
  9424. koboldFront: {
  9425. height: math.unit(3 + 1 / 12, "feet"),
  9426. weight: math.unit(21.7, "lbs"),
  9427. name: "Front",
  9428. image: {
  9429. source: "./media/characters/argent/kobold-front.svg",
  9430. extra: 1471 / 1331,
  9431. bottom: 100.8 / 1575.5
  9432. },
  9433. form: "kobold",
  9434. default: true
  9435. },
  9436. dragonFront: {
  9437. height: math.unit(75, "inches"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/argent/dragon-front.svg",
  9441. extra: 1389/1248,
  9442. bottom: 54/1443
  9443. },
  9444. form: "dragon",
  9445. },
  9446. dragonBack: {
  9447. height: math.unit(75, "inches"),
  9448. name: "Back",
  9449. image: {
  9450. source: "./media/characters/argent/dragon-back.svg",
  9451. extra: 1399/1271,
  9452. bottom: 23/1422
  9453. },
  9454. form: "dragon",
  9455. },
  9456. dragonDressed: {
  9457. height: math.unit(75, "inches"),
  9458. name: "Dressed",
  9459. image: {
  9460. source: "./media/characters/argent/dragon-dressed.svg",
  9461. extra: 1350/1215,
  9462. bottom: 26/1376
  9463. },
  9464. form: "dragon"
  9465. },
  9466. dragonHead: {
  9467. height: math.unit(23.5, "inches"),
  9468. name: "Head",
  9469. image: {
  9470. source: "./media/characters/argent/dragon-head.svg"
  9471. },
  9472. form: "dragon",
  9473. },
  9474. },
  9475. [
  9476. {
  9477. name: "Micro",
  9478. height: math.unit(2, "inches"),
  9479. form: "kobold",
  9480. },
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(3 + 1 / 12, "feet"),
  9484. form: "kobold",
  9485. default: true
  9486. },
  9487. {
  9488. name: "Macro",
  9489. height: math.unit(120, "feet"),
  9490. form: "kobold",
  9491. },
  9492. {
  9493. name: "Speck",
  9494. height: math.unit(1, "mm"),
  9495. form: "dragon",
  9496. },
  9497. {
  9498. name: "Tiny",
  9499. height: math.unit(1, "cm"),
  9500. form: "dragon",
  9501. },
  9502. {
  9503. name: "Micro",
  9504. height: math.unit(5, "cm"),
  9505. form: "dragon",
  9506. },
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(75, "inches"),
  9510. form: "dragon",
  9511. default: true
  9512. },
  9513. {
  9514. name: "Extra Tall",
  9515. height: math.unit(9, "feet"),
  9516. form: "dragon",
  9517. },
  9518. {
  9519. name: "Inconvenient",
  9520. height: math.unit(5, "meters"),
  9521. form: "dragon",
  9522. },
  9523. {
  9524. name: "Macro",
  9525. height: math.unit(70, "meters"),
  9526. form: "dragon",
  9527. },
  9528. {
  9529. name: "Macro+",
  9530. height: math.unit(250, "meters"),
  9531. form: "dragon",
  9532. },
  9533. {
  9534. name: "Megamacro",
  9535. height: math.unit(20, "km"),
  9536. form: "dragon",
  9537. },
  9538. {
  9539. name: "Mountainous",
  9540. height: math.unit(100, "km"),
  9541. form: "dragon",
  9542. },
  9543. {
  9544. name: "Continental",
  9545. height: math.unit(2, "megameters"),
  9546. form: "dragon",
  9547. },
  9548. {
  9549. name: "Too Big",
  9550. height: math.unit(900, "megameters"),
  9551. form: "dragon",
  9552. },
  9553. ],
  9554. {
  9555. "kobold": {
  9556. name: "Kobold",
  9557. default: true
  9558. },
  9559. "dragon": {
  9560. name: "Dragon",
  9561. },
  9562. }
  9563. ))
  9564. characterMakers.push(() => makeCharacter(
  9565. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9566. {
  9567. lamp: {
  9568. height: math.unit(7 * 1559 / 989, "feet"),
  9569. name: "Magic Lamp",
  9570. image: {
  9571. source: "./media/characters/mira-al-cul/lamp.svg",
  9572. extra: 1617 / 1559
  9573. }
  9574. },
  9575. front: {
  9576. height: math.unit(7, "feet"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/mira-al-cul/front.svg",
  9580. extra: 1044 / 990
  9581. }
  9582. },
  9583. },
  9584. [
  9585. {
  9586. name: "Heavily Restricted",
  9587. height: math.unit(7 * 1559 / 989, "feet")
  9588. },
  9589. {
  9590. name: "Freshly Freed",
  9591. height: math.unit(50 * 1559 / 989, "feet")
  9592. },
  9593. {
  9594. name: "World Encompassing",
  9595. height: math.unit(10000 * 1559 / 989, "miles")
  9596. },
  9597. {
  9598. name: "Galactic",
  9599. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9600. },
  9601. {
  9602. name: "Palmed Universe",
  9603. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9604. default: true
  9605. },
  9606. {
  9607. name: "Multiversal Matriarch",
  9608. height: math.unit(8.87e10, "yottameters")
  9609. },
  9610. {
  9611. name: "Void Mother",
  9612. height: math.unit(3.14e110, "yottaparsecs")
  9613. },
  9614. {
  9615. name: "Toying with Transcendence",
  9616. height: math.unit(1e307, "meters")
  9617. },
  9618. ]
  9619. ))
  9620. characterMakers.push(() => makeCharacter(
  9621. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9622. {
  9623. front: {
  9624. height: math.unit(17 + 1 / 12, "feet"),
  9625. weight: math.unit(476.2 * 5, "lbs"),
  9626. name: "Front",
  9627. image: {
  9628. source: "./media/characters/kuro-shi-uchū/front.svg",
  9629. extra: 2329 / 1835,
  9630. bottom: 0.02
  9631. }
  9632. },
  9633. },
  9634. [
  9635. {
  9636. name: "Micro",
  9637. height: math.unit(2, "inches")
  9638. },
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(12, "meters")
  9642. },
  9643. {
  9644. name: "Planetary",
  9645. height: math.unit(0.00929, "AU"),
  9646. default: true
  9647. },
  9648. {
  9649. name: "Universal",
  9650. height: math.unit(20, "gigaparsecs")
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(5 + 2 / 12, "feet"),
  9659. weight: math.unit(120, "lbs"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/katherine/front.svg",
  9663. extra: 2075 / 1969
  9664. }
  9665. },
  9666. dress: {
  9667. height: math.unit(5 + 2 / 12, "feet"),
  9668. weight: math.unit(120, "lbs"),
  9669. name: "Dress",
  9670. image: {
  9671. source: "./media/characters/katherine/dress.svg",
  9672. extra: 2258 / 2064
  9673. }
  9674. },
  9675. },
  9676. [
  9677. {
  9678. name: "Micro",
  9679. height: math.unit(1, "inches"),
  9680. default: true
  9681. },
  9682. {
  9683. name: "Normal",
  9684. height: math.unit(5 + 2 / 12, "feet")
  9685. },
  9686. {
  9687. name: "Macro",
  9688. height: math.unit(100, "meters")
  9689. },
  9690. {
  9691. name: "Megamacro",
  9692. height: math.unit(80, "miles")
  9693. },
  9694. ]
  9695. ))
  9696. characterMakers.push(() => makeCharacter(
  9697. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9698. {
  9699. front: {
  9700. height: math.unit(7 + 8 / 12, "feet"),
  9701. weight: math.unit(250, "lbs"),
  9702. name: "Front",
  9703. image: {
  9704. source: "./media/characters/yevis/front.svg",
  9705. extra: 1938 / 1755
  9706. }
  9707. }
  9708. },
  9709. [
  9710. {
  9711. name: "Mortal",
  9712. height: math.unit(7 + 8 / 12, "feet")
  9713. },
  9714. {
  9715. name: "Battle",
  9716. height: math.unit(25 + 11 / 12, "feet")
  9717. },
  9718. {
  9719. name: "Wrath",
  9720. height: math.unit(1654 + 11 / 12, "feet")
  9721. },
  9722. {
  9723. name: "Planet Destroyer",
  9724. height: math.unit(12000, "miles")
  9725. },
  9726. {
  9727. name: "Galaxy Conqueror",
  9728. height: math.unit(1.45, "zettameters"),
  9729. default: true
  9730. },
  9731. {
  9732. name: "Universal War",
  9733. height: math.unit(184, "gigaparsecs")
  9734. },
  9735. {
  9736. name: "Eternity War",
  9737. height: math.unit(1.98e55, "yottaparsecs")
  9738. },
  9739. ]
  9740. ))
  9741. characterMakers.push(() => makeCharacter(
  9742. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9743. {
  9744. front: {
  9745. height: math.unit(5 + 8 / 12, "feet"),
  9746. weight: math.unit(63, "kg"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/xavier/front.svg",
  9750. extra: 944 / 883
  9751. }
  9752. },
  9753. frontStretch: {
  9754. height: math.unit(5 + 8 / 12, "feet"),
  9755. weight: math.unit(63, "kg"),
  9756. name: "Stretching",
  9757. image: {
  9758. source: "./media/characters/xavier/front-stretch.svg",
  9759. extra: 962 / 820
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Normal",
  9766. height: math.unit(5 + 8 / 12, "feet")
  9767. },
  9768. {
  9769. name: "Macro",
  9770. height: math.unit(100, "meters"),
  9771. default: true
  9772. },
  9773. {
  9774. name: "McLargeHuge",
  9775. height: math.unit(10, "miles")
  9776. },
  9777. ]
  9778. ))
  9779. characterMakers.push(() => makeCharacter(
  9780. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9781. {
  9782. front: {
  9783. height: math.unit(5 + 5 / 12, "feet"),
  9784. weight: math.unit(150, "lb"),
  9785. name: "Front",
  9786. image: {
  9787. source: "./media/characters/joshii/front.svg",
  9788. extra: 765 / 653,
  9789. bottom: 51 / 816
  9790. }
  9791. },
  9792. foot: {
  9793. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9794. name: "Foot",
  9795. image: {
  9796. source: "./media/characters/joshii/foot.svg"
  9797. }
  9798. },
  9799. },
  9800. [
  9801. {
  9802. name: "Micro",
  9803. height: math.unit(2, "inches")
  9804. },
  9805. {
  9806. name: "Normal",
  9807. height: math.unit(5 + 5 / 12, "feet")
  9808. },
  9809. {
  9810. name: "Macro",
  9811. height: math.unit(785, "feet"),
  9812. default: true
  9813. },
  9814. {
  9815. name: "Megamacro",
  9816. height: math.unit(24.5, "miles")
  9817. },
  9818. ]
  9819. ))
  9820. characterMakers.push(() => makeCharacter(
  9821. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9822. {
  9823. front: {
  9824. height: math.unit(6, "feet"),
  9825. weight: math.unit(150, "lb"),
  9826. name: "Front",
  9827. image: {
  9828. source: "./media/characters/goddess-elizabeth/front.svg",
  9829. extra: 1800 / 1525,
  9830. bottom: 0.005
  9831. }
  9832. },
  9833. foot: {
  9834. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9835. name: "Foot",
  9836. image: {
  9837. source: "./media/characters/goddess-elizabeth/foot.svg"
  9838. }
  9839. },
  9840. mouth: {
  9841. height: math.unit(6, "feet"),
  9842. name: "Mouth",
  9843. image: {
  9844. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Micro",
  9851. height: math.unit(12, "feet")
  9852. },
  9853. {
  9854. name: "Normal",
  9855. height: math.unit(80, "miles"),
  9856. default: true
  9857. },
  9858. {
  9859. name: "Macro",
  9860. height: math.unit(15000, "parsecs")
  9861. },
  9862. ]
  9863. ))
  9864. characterMakers.push(() => makeCharacter(
  9865. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9866. {
  9867. front: {
  9868. height: math.unit(5 + 9 / 12, "feet"),
  9869. weight: math.unit(144, "lb"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/kara/front.svg"
  9873. }
  9874. },
  9875. feet: {
  9876. height: math.unit(6 / 6.765, "feet"),
  9877. name: "Kara's Feet",
  9878. rename: true,
  9879. image: {
  9880. source: "./media/characters/kara/feet.svg"
  9881. }
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(5 + 9 / 12, "feet")
  9888. },
  9889. {
  9890. name: "Macro",
  9891. height: math.unit(174, "feet"),
  9892. default: true
  9893. },
  9894. ]
  9895. ))
  9896. characterMakers.push(() => makeCharacter(
  9897. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9898. {
  9899. front: {
  9900. height: math.unit(18, "feet"),
  9901. weight: math.unit(4050, "lb"),
  9902. name: "Front",
  9903. image: {
  9904. source: "./media/characters/tyrone/front.svg",
  9905. extra: 2405 / 2270,
  9906. bottom: 182 / 2587
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Normal",
  9913. height: math.unit(18, "feet"),
  9914. default: true
  9915. },
  9916. {
  9917. name: "Macro",
  9918. height: math.unit(300, "feet")
  9919. },
  9920. {
  9921. name: "Megamacro",
  9922. height: math.unit(15, "km")
  9923. },
  9924. {
  9925. name: "Gigamacro",
  9926. height: math.unit(500, "km")
  9927. },
  9928. {
  9929. name: "Teramacro",
  9930. height: math.unit(0.5, "gigameters")
  9931. },
  9932. {
  9933. name: "Omnimacro",
  9934. height: math.unit(1e252, "yottauniverse")
  9935. },
  9936. ]
  9937. ))
  9938. characterMakers.push(() => makeCharacter(
  9939. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9940. {
  9941. front: {
  9942. height: math.unit(7 + 8 / 12, "feet"),
  9943. weight: math.unit(120, "lb"),
  9944. name: "Front",
  9945. image: {
  9946. source: "./media/characters/danny/front.svg",
  9947. extra: 1490 / 1350
  9948. }
  9949. },
  9950. back: {
  9951. height: math.unit(7 + 8 / 12, "feet"),
  9952. weight: math.unit(120, "lb"),
  9953. name: "Back",
  9954. image: {
  9955. source: "./media/characters/danny/back.svg",
  9956. extra: 1490 / 1350
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Normal",
  9963. height: math.unit(7 + 8 / 12, "feet"),
  9964. default: true
  9965. },
  9966. ]
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9970. {
  9971. front: {
  9972. height: math.unit(3.5, "inches"),
  9973. weight: math.unit(19, "grams"),
  9974. name: "Front",
  9975. image: {
  9976. source: "./media/characters/mallow/front.svg",
  9977. extra: 471 / 431
  9978. }
  9979. },
  9980. back: {
  9981. height: math.unit(3.5, "inches"),
  9982. weight: math.unit(19, "grams"),
  9983. name: "Back",
  9984. image: {
  9985. source: "./media/characters/mallow/back.svg",
  9986. extra: 471 / 431
  9987. }
  9988. },
  9989. },
  9990. [
  9991. {
  9992. name: "Normal",
  9993. height: math.unit(3.5, "inches"),
  9994. default: true
  9995. },
  9996. ]
  9997. ))
  9998. characterMakers.push(() => makeCharacter(
  9999. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10000. {
  10001. front: {
  10002. height: math.unit(9, "feet"),
  10003. weight: math.unit(230, "kg"),
  10004. name: "Front",
  10005. image: {
  10006. source: "./media/characters/starry-aqua/front.svg"
  10007. }
  10008. },
  10009. back: {
  10010. height: math.unit(9, "feet"),
  10011. weight: math.unit(230, "kg"),
  10012. name: "Back",
  10013. image: {
  10014. source: "./media/characters/starry-aqua/back.svg"
  10015. }
  10016. },
  10017. hand: {
  10018. height: math.unit(9 * 0.1168, "feet"),
  10019. name: "Hand",
  10020. image: {
  10021. source: "./media/characters/starry-aqua/hand.svg"
  10022. }
  10023. },
  10024. foot: {
  10025. height: math.unit(9 * 0.18, "feet"),
  10026. name: "Foot",
  10027. image: {
  10028. source: "./media/characters/starry-aqua/foot.svg"
  10029. }
  10030. }
  10031. },
  10032. [
  10033. {
  10034. name: "Micro",
  10035. height: math.unit(3, "inches")
  10036. },
  10037. {
  10038. name: "Normal",
  10039. height: math.unit(9, "feet")
  10040. },
  10041. {
  10042. name: "Macro",
  10043. height: math.unit(300, "feet"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Megamacro",
  10048. height: math.unit(3200, "feet")
  10049. }
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10054. {
  10055. front: {
  10056. height: math.unit(15, "feet"),
  10057. weight: math.unit(5026, "lb"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/luka-towers/front.svg",
  10061. extra: 1269/1133,
  10062. bottom: 51/1320
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Normal",
  10069. height: math.unit(15, "feet"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Minimacro",
  10074. height: math.unit(25, "feet")
  10075. },
  10076. {
  10077. name: "Macro",
  10078. height: math.unit(320, "feet")
  10079. },
  10080. {
  10081. name: "Megamacro",
  10082. height: math.unit(35000, "feet")
  10083. },
  10084. {
  10085. name: "Gigamacro",
  10086. height: math.unit(4000, "miles")
  10087. },
  10088. {
  10089. name: "Teramacro",
  10090. height: math.unit(15000, "miles")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(6, "feet"),
  10099. weight: math.unit(150, "lb"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/natalie-nightring/front.svg",
  10103. extra: 1,
  10104. bottom: 0.06
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Uh Oh",
  10111. height: math.unit(0.1, "mm")
  10112. },
  10113. {
  10114. name: "Small",
  10115. height: math.unit(3, "inches")
  10116. },
  10117. {
  10118. name: "Human Scale",
  10119. height: math.unit(6, "feet")
  10120. },
  10121. {
  10122. name: "Librarian",
  10123. height: math.unit(50, "feet"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Immense",
  10128. height: math.unit(200, "miles")
  10129. },
  10130. ]
  10131. ))
  10132. characterMakers.push(() => makeCharacter(
  10133. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10134. {
  10135. front: {
  10136. height: math.unit(6, "feet"),
  10137. weight: math.unit(180, "lbs"),
  10138. name: "Front",
  10139. image: {
  10140. source: "./media/characters/danni-rosie/front.svg",
  10141. extra: 1260 / 1128,
  10142. bottom: 0.022
  10143. }
  10144. },
  10145. },
  10146. [
  10147. {
  10148. name: "Micro",
  10149. height: math.unit(2, "inches"),
  10150. default: true
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(5 + 9 / 12, "feet"),
  10159. weight: math.unit(220, "lb"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/samantha-kruse/front.svg",
  10163. extra: (985 / 935),
  10164. bottom: 0.03
  10165. }
  10166. },
  10167. frontUndressed: {
  10168. height: math.unit(5 + 9 / 12, "feet"),
  10169. weight: math.unit(220, "lb"),
  10170. name: "Front (Undressed)",
  10171. image: {
  10172. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10173. extra: (973 / 923),
  10174. bottom: 0.025
  10175. }
  10176. },
  10177. fat: {
  10178. height: math.unit(5 + 9 / 12, "feet"),
  10179. weight: math.unit(900, "lb"),
  10180. name: "Front (Fat)",
  10181. image: {
  10182. source: "./media/characters/samantha-kruse/fat.svg",
  10183. extra: 2688 / 2561
  10184. }
  10185. },
  10186. },
  10187. [
  10188. {
  10189. name: "Normal",
  10190. height: math.unit(5 + 9 / 12, "feet"),
  10191. default: true
  10192. }
  10193. ]
  10194. ))
  10195. characterMakers.push(() => makeCharacter(
  10196. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10197. {
  10198. back: {
  10199. height: math.unit(5 + 4 / 12, "feet"),
  10200. weight: math.unit(4963, "lb"),
  10201. name: "Back",
  10202. image: {
  10203. source: "./media/characters/amelia-rosie/back.svg",
  10204. extra: 1113 / 963,
  10205. bottom: 0.01
  10206. }
  10207. },
  10208. },
  10209. [
  10210. {
  10211. name: "Level 0",
  10212. height: math.unit(5 + 4 / 12, "feet")
  10213. },
  10214. {
  10215. name: "Level 1",
  10216. height: math.unit(164597, "feet"),
  10217. default: true
  10218. },
  10219. {
  10220. name: "Level 2",
  10221. height: math.unit(956243, "miles")
  10222. },
  10223. {
  10224. name: "Level 3",
  10225. height: math.unit(29421709423, "miles")
  10226. },
  10227. {
  10228. name: "Level 4",
  10229. height: math.unit(154, "lightyears")
  10230. },
  10231. {
  10232. name: "Level 5",
  10233. height: math.unit(4738272, "lightyears")
  10234. },
  10235. {
  10236. name: "Level 6",
  10237. height: math.unit(145787152896, "lightyears")
  10238. },
  10239. ]
  10240. ))
  10241. characterMakers.push(() => makeCharacter(
  10242. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10243. {
  10244. front: {
  10245. height: math.unit(5 + 11 / 12, "feet"),
  10246. weight: math.unit(65, "kg"),
  10247. name: "Front",
  10248. image: {
  10249. source: "./media/characters/rook-kitara/front.svg",
  10250. extra: 1347 / 1274,
  10251. bottom: 0.005
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Totally Unfair",
  10258. height: math.unit(1.8, "mm")
  10259. },
  10260. {
  10261. name: "Lap Rookie",
  10262. height: math.unit(1.4, "feet")
  10263. },
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(5 + 11 / 12, "feet"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "How Did This Happen",
  10271. height: math.unit(80, "miles")
  10272. }
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10277. {
  10278. front: {
  10279. height: math.unit(7, "feet"),
  10280. weight: math.unit(300, "lb"),
  10281. name: "Front",
  10282. image: {
  10283. source: "./media/characters/pisces/front.svg",
  10284. extra: 2255 / 2115,
  10285. bottom: 0.03
  10286. }
  10287. },
  10288. back: {
  10289. height: math.unit(7, "feet"),
  10290. weight: math.unit(300, "lb"),
  10291. name: "Back",
  10292. image: {
  10293. source: "./media/characters/pisces/back.svg",
  10294. extra: 2146 / 2055,
  10295. bottom: 0.04
  10296. }
  10297. },
  10298. },
  10299. [
  10300. {
  10301. name: "Normal",
  10302. height: math.unit(7, "feet"),
  10303. default: true
  10304. },
  10305. {
  10306. name: "Swimming Pool",
  10307. height: math.unit(12.2, "meters")
  10308. },
  10309. {
  10310. name: "Olympic Swimming Pool",
  10311. height: math.unit(56.3, "meters")
  10312. },
  10313. {
  10314. name: "Lake Superior",
  10315. height: math.unit(93900, "meters")
  10316. },
  10317. {
  10318. name: "Mediterranean Sea",
  10319. height: math.unit(644457, "meters")
  10320. },
  10321. {
  10322. name: "World's Oceans",
  10323. height: math.unit(4567491, "meters")
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10329. {
  10330. front: {
  10331. height: math.unit(2.3, "meters"),
  10332. weight: math.unit(120, "kg"),
  10333. name: "Front",
  10334. image: {
  10335. source: "./media/characters/zelas/front.svg"
  10336. }
  10337. },
  10338. side: {
  10339. height: math.unit(2.3, "meters"),
  10340. weight: math.unit(120, "kg"),
  10341. name: "Side",
  10342. image: {
  10343. source: "./media/characters/zelas/side.svg"
  10344. }
  10345. },
  10346. back: {
  10347. height: math.unit(2.3, "meters"),
  10348. weight: math.unit(120, "kg"),
  10349. name: "Back",
  10350. image: {
  10351. source: "./media/characters/zelas/back.svg"
  10352. }
  10353. },
  10354. foot: {
  10355. height: math.unit(1.116, "feet"),
  10356. name: "Foot",
  10357. image: {
  10358. source: "./media/characters/zelas/foot.svg"
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Normal",
  10365. height: math.unit(2.3, "meters")
  10366. },
  10367. {
  10368. name: "Macro",
  10369. height: math.unit(30, "meters"),
  10370. default: true
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10376. {
  10377. front: {
  10378. height: math.unit(1, "inch"),
  10379. weight: math.unit(0.21, "grams"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/talbot/front.svg",
  10383. extra: 594 / 544
  10384. }
  10385. },
  10386. },
  10387. [
  10388. {
  10389. name: "Micro",
  10390. height: math.unit(1, "inch"),
  10391. default: true
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10397. {
  10398. front: {
  10399. height: math.unit(3 + 3 / 12, "feet"),
  10400. weight: math.unit(51.8, "lb"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/fliss/front.svg",
  10404. extra: 840 / 640
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Teeny Tiny",
  10411. height: math.unit(1, "mm")
  10412. },
  10413. {
  10414. name: "Small",
  10415. height: math.unit(1, "inch"),
  10416. default: true
  10417. },
  10418. {
  10419. name: "Standard Sylveon",
  10420. height: math.unit(3 + 3 / 12, "feet")
  10421. },
  10422. {
  10423. name: "Large Nuisance",
  10424. height: math.unit(33, "feet")
  10425. },
  10426. {
  10427. name: "City Filler",
  10428. height: math.unit(3000, "feet")
  10429. },
  10430. {
  10431. name: "New Horizon",
  10432. height: math.unit(6000, "miles")
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(5, "cm"),
  10441. weight: math.unit(1.94, "g"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/fleta/front.svg",
  10445. extra: 835 / 803
  10446. }
  10447. },
  10448. back: {
  10449. height: math.unit(5, "cm"),
  10450. weight: math.unit(1.94, "g"),
  10451. name: "Back",
  10452. image: {
  10453. source: "./media/characters/fleta/back.svg",
  10454. extra: 835 / 803
  10455. }
  10456. },
  10457. },
  10458. [
  10459. {
  10460. name: "Micro",
  10461. height: math.unit(5, "cm"),
  10462. default: true
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10468. {
  10469. front: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(225, "lb"),
  10472. name: "Front",
  10473. image: {
  10474. source: "./media/characters/dominic/front.svg",
  10475. extra: 1770 / 1620,
  10476. bottom: 0.025
  10477. }
  10478. },
  10479. back: {
  10480. height: math.unit(6, "feet"),
  10481. weight: math.unit(225, "lb"),
  10482. name: "Back",
  10483. image: {
  10484. source: "./media/characters/dominic/back.svg",
  10485. extra: 1745 / 1620,
  10486. bottom: 0.065
  10487. }
  10488. },
  10489. },
  10490. [
  10491. {
  10492. name: "Nano",
  10493. height: math.unit(0.1, "mm")
  10494. },
  10495. {
  10496. name: "Micro-",
  10497. height: math.unit(1, "mm")
  10498. },
  10499. {
  10500. name: "Micro",
  10501. height: math.unit(4, "inches")
  10502. },
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(6 + 4 / 12, "feet"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(115, "feet")
  10511. },
  10512. {
  10513. name: "Macro+",
  10514. height: math.unit(955, "feet")
  10515. },
  10516. {
  10517. name: "Megamacro",
  10518. height: math.unit(8990, "feet")
  10519. },
  10520. {
  10521. name: "Gigmacro",
  10522. height: math.unit(9310, "miles")
  10523. },
  10524. {
  10525. name: "Teramacro",
  10526. height: math.unit(1567005010, "miles")
  10527. },
  10528. {
  10529. name: "Examacro",
  10530. height: math.unit(1425, "parsecs")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(400, "feet"),
  10539. weight: math.unit(44444444, "lb"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/major-colonel/front.svg"
  10543. }
  10544. },
  10545. back: {
  10546. height: math.unit(400, "feet"),
  10547. weight: math.unit(44444444, "lb"),
  10548. name: "Back",
  10549. image: {
  10550. source: "./media/characters/major-colonel/back.svg"
  10551. }
  10552. },
  10553. },
  10554. [
  10555. {
  10556. name: "Macro",
  10557. height: math.unit(400, "feet"),
  10558. default: true
  10559. },
  10560. ]
  10561. ))
  10562. characterMakers.push(() => makeCharacter(
  10563. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10564. {
  10565. catFront: {
  10566. height: math.unit(6, "feet"),
  10567. weight: math.unit(120, "lb"),
  10568. name: "Front (Cat Side)",
  10569. image: {
  10570. source: "./media/characters/axel-lycan/cat-front.svg",
  10571. extra: 430 / 402,
  10572. bottom: 43 / 472.35
  10573. }
  10574. },
  10575. catBack: {
  10576. height: math.unit(6, "feet"),
  10577. weight: math.unit(120, "lb"),
  10578. name: "Back (Cat Side)",
  10579. image: {
  10580. source: "./media/characters/axel-lycan/cat-back.svg",
  10581. extra: 447 / 419,
  10582. bottom: 23.3 / 469
  10583. }
  10584. },
  10585. wolfFront: {
  10586. height: math.unit(6, "feet"),
  10587. weight: math.unit(120, "lb"),
  10588. name: "Front (Wolf Side)",
  10589. image: {
  10590. source: "./media/characters/axel-lycan/wolf-front.svg",
  10591. extra: 485 / 456,
  10592. bottom: 19 / 504
  10593. }
  10594. },
  10595. wolfBack: {
  10596. height: math.unit(6, "feet"),
  10597. weight: math.unit(120, "lb"),
  10598. name: "Back (Wolf Side)",
  10599. image: {
  10600. source: "./media/characters/axel-lycan/wolf-back.svg",
  10601. extra: 475 / 438,
  10602. bottom: 39.2 / 514
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Macro",
  10609. height: math.unit(1, "km"),
  10610. default: true
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(5 + 9 / 12, "feet"),
  10619. weight: math.unit(175, "lb"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/vanrel-hyena/front.svg",
  10623. extra: 1086 / 1010,
  10624. bottom: 0.04
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(5 + 9 / 12, "feet"),
  10632. default: true
  10633. },
  10634. ]
  10635. ))
  10636. characterMakers.push(() => makeCharacter(
  10637. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10638. {
  10639. front: {
  10640. height: math.unit(6, "feet"),
  10641. weight: math.unit(103, "lb"),
  10642. name: "Front",
  10643. image: {
  10644. source: "./media/characters/abbott-absol/front.svg",
  10645. extra: 2010 / 1842
  10646. }
  10647. },
  10648. },
  10649. [
  10650. {
  10651. name: "Megamicro",
  10652. height: math.unit(0.1, "mm")
  10653. },
  10654. {
  10655. name: "Micro",
  10656. height: math.unit(1, "inch")
  10657. },
  10658. {
  10659. name: "Normal",
  10660. height: math.unit(6, "feet"),
  10661. default: true
  10662. },
  10663. ]
  10664. ))
  10665. characterMakers.push(() => makeCharacter(
  10666. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10667. {
  10668. front: {
  10669. height: math.unit(6, "feet"),
  10670. weight: math.unit(264, "lb"),
  10671. name: "Front",
  10672. image: {
  10673. source: "./media/characters/hector/front.svg",
  10674. extra: 2280 / 2130,
  10675. bottom: 0.07
  10676. }
  10677. },
  10678. },
  10679. [
  10680. {
  10681. name: "Normal",
  10682. height: math.unit(12.25, "foot"),
  10683. default: true
  10684. },
  10685. {
  10686. name: "Macro",
  10687. height: math.unit(160, "feet")
  10688. },
  10689. ]
  10690. ))
  10691. characterMakers.push(() => makeCharacter(
  10692. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10693. {
  10694. front: {
  10695. height: math.unit(6, "feet"),
  10696. weight: math.unit(150, "lb"),
  10697. name: "Front",
  10698. image: {
  10699. source: "./media/characters/sal/front.svg",
  10700. extra: 1846 / 1699,
  10701. bottom: 0.04
  10702. }
  10703. },
  10704. },
  10705. [
  10706. {
  10707. name: "Megamacro",
  10708. height: math.unit(10, "miles"),
  10709. default: true
  10710. },
  10711. ]
  10712. ))
  10713. characterMakers.push(() => makeCharacter(
  10714. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10715. {
  10716. front: {
  10717. height: math.unit(3, "meters"),
  10718. weight: math.unit(450, "kg"),
  10719. name: "front",
  10720. image: {
  10721. source: "./media/characters/ranger/front.svg",
  10722. extra: 2401 / 2243,
  10723. bottom: 0.05
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(3, "meters"),
  10731. default: true
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10737. {
  10738. front: {
  10739. height: math.unit(14, "feet"),
  10740. weight: math.unit(800, "kg"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/theresa/front.svg",
  10744. extra: 3575 / 3346,
  10745. bottom: 0.03
  10746. }
  10747. },
  10748. },
  10749. [
  10750. {
  10751. name: "Normal",
  10752. height: math.unit(14, "feet"),
  10753. default: true
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10759. {
  10760. front: {
  10761. height: math.unit(6, "feet"),
  10762. weight: math.unit(3, "kg"),
  10763. name: "Front",
  10764. image: {
  10765. source: "./media/characters/ine/front.svg",
  10766. extra: 678 / 539,
  10767. bottom: 0.023
  10768. }
  10769. },
  10770. },
  10771. [
  10772. {
  10773. name: "Normal",
  10774. height: math.unit(2.265, "feet"),
  10775. default: true
  10776. },
  10777. ]
  10778. ))
  10779. characterMakers.push(() => makeCharacter(
  10780. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10781. {
  10782. front: {
  10783. height: math.unit(5, "feet"),
  10784. weight: math.unit(30, "kg"),
  10785. name: "Front",
  10786. image: {
  10787. source: "./media/characters/vial/front.svg",
  10788. extra: 1365 / 1277,
  10789. bottom: 0.04
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Normal",
  10796. height: math.unit(5, "feet"),
  10797. default: true
  10798. },
  10799. ]
  10800. ))
  10801. characterMakers.push(() => makeCharacter(
  10802. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10803. {
  10804. side: {
  10805. height: math.unit(3.4, "meters"),
  10806. weight: math.unit(1000, "lb"),
  10807. name: "Side",
  10808. image: {
  10809. source: "./media/characters/rovoska/side.svg",
  10810. extra: 4403 / 1515
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(3.4, "meters"),
  10818. default: true
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(8, "feet"),
  10827. weight: math.unit(315, "lb"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/gunner-rotthbauer/front.svg"
  10831. }
  10832. },
  10833. back: {
  10834. height: math.unit(8, "feet"),
  10835. weight: math.unit(315, "lb"),
  10836. name: "Back",
  10837. image: {
  10838. source: "./media/characters/gunner-rotthbauer/back.svg"
  10839. }
  10840. },
  10841. },
  10842. [
  10843. {
  10844. name: "Micro",
  10845. height: math.unit(3.5, "inches")
  10846. },
  10847. {
  10848. name: "Normal",
  10849. height: math.unit(8, "feet"),
  10850. default: true
  10851. },
  10852. {
  10853. name: "Macro",
  10854. height: math.unit(250, "feet")
  10855. },
  10856. {
  10857. name: "Megamacro",
  10858. height: math.unit(1, "AU")
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10864. {
  10865. front: {
  10866. height: math.unit(5 + 5 / 12, "feet"),
  10867. weight: math.unit(140, "lb"),
  10868. name: "Front",
  10869. image: {
  10870. source: "./media/characters/allatia/front.svg",
  10871. extra: 1227 / 1180,
  10872. bottom: 0.027
  10873. }
  10874. },
  10875. },
  10876. [
  10877. {
  10878. name: "Normal",
  10879. height: math.unit(5 + 5 / 12, "feet")
  10880. },
  10881. {
  10882. name: "Macro",
  10883. height: math.unit(250, "feet"),
  10884. default: true
  10885. },
  10886. {
  10887. name: "Megamacro",
  10888. height: math.unit(8, "miles")
  10889. }
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10894. {
  10895. front: {
  10896. height: math.unit(6, "feet"),
  10897. weight: math.unit(120, "lb"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/tene/front.svg",
  10901. extra: 814/750,
  10902. bottom: 36/850
  10903. }
  10904. },
  10905. stomping: {
  10906. height: math.unit(2.025, "meters"),
  10907. weight: math.unit(120, "lb"),
  10908. name: "Stomping",
  10909. image: {
  10910. source: "./media/characters/tene/stomping.svg",
  10911. extra: 885/821,
  10912. bottom: 15/900
  10913. }
  10914. },
  10915. sitting: {
  10916. height: math.unit(1, "meter"),
  10917. weight: math.unit(120, "lb"),
  10918. name: "Sitting",
  10919. image: {
  10920. source: "./media/characters/tene/sitting.svg",
  10921. extra: 396/366,
  10922. bottom: 79/475
  10923. }
  10924. },
  10925. smiling: {
  10926. height: math.unit(1.2, "feet"),
  10927. name: "Smiling",
  10928. image: {
  10929. source: "./media/characters/tene/smiling.svg",
  10930. extra: 1364/1071,
  10931. bottom: 0/1364
  10932. }
  10933. },
  10934. smug: {
  10935. height: math.unit(1.3, "feet"),
  10936. name: "Smug",
  10937. image: {
  10938. source: "./media/characters/tene/smug.svg",
  10939. extra: 1323/1082,
  10940. bottom: 0/1323
  10941. }
  10942. },
  10943. feral: {
  10944. height: math.unit(3.9, "feet"),
  10945. weight: math.unit(250, "lb"),
  10946. name: "Feral",
  10947. image: {
  10948. source: "./media/characters/tene/feral.svg",
  10949. extra: 717 / 458,
  10950. bottom: 0.179
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Normal",
  10957. height: math.unit(6, "feet")
  10958. },
  10959. {
  10960. name: "Macro",
  10961. height: math.unit(300, "feet"),
  10962. default: true
  10963. },
  10964. {
  10965. name: "Megamacro",
  10966. height: math.unit(5, "miles")
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10972. {
  10973. side: {
  10974. height: math.unit(6, "feet"),
  10975. name: "Side",
  10976. image: {
  10977. source: "./media/characters/evander/side.svg",
  10978. extra: 877 / 477
  10979. }
  10980. },
  10981. },
  10982. [
  10983. {
  10984. name: "Normal",
  10985. height: math.unit(0.83, "meters"),
  10986. default: true
  10987. },
  10988. ]
  10989. ))
  10990. characterMakers.push(() => makeCharacter(
  10991. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10992. {
  10993. front: {
  10994. height: math.unit(12, "feet"),
  10995. weight: math.unit(1000, "lb"),
  10996. name: "Front",
  10997. image: {
  10998. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10999. extra: 1762 / 1611
  11000. }
  11001. },
  11002. back: {
  11003. height: math.unit(12, "feet"),
  11004. weight: math.unit(1000, "lb"),
  11005. name: "Back",
  11006. image: {
  11007. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11008. extra: 1762 / 1611
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Normal",
  11015. height: math.unit(12, "feet"),
  11016. default: true
  11017. },
  11018. {
  11019. name: "Kaiju",
  11020. height: math.unit(150, "feet")
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(150, "lb"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/zero-alurus/front.svg"
  11033. }
  11034. },
  11035. back: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(150, "lb"),
  11038. name: "Back",
  11039. image: {
  11040. source: "./media/characters/zero-alurus/back.svg"
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Normal",
  11047. height: math.unit(5 + 10 / 12, "feet")
  11048. },
  11049. {
  11050. name: "Macro",
  11051. height: math.unit(60, "feet"),
  11052. default: true
  11053. },
  11054. {
  11055. name: "Macro+",
  11056. height: math.unit(450, "feet")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(200, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/mega-shi/front.svg",
  11069. extra: 1279 / 1250,
  11070. bottom: 0.02
  11071. }
  11072. },
  11073. back: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(200, "lb"),
  11076. name: "Back",
  11077. image: {
  11078. source: "./media/characters/mega-shi/back.svg",
  11079. extra: 1279 / 1250,
  11080. bottom: 0.02
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Micro",
  11087. height: math.unit(16 + 6 / 12, "feet")
  11088. },
  11089. {
  11090. name: "Third Dimension",
  11091. height: math.unit(40, "meters")
  11092. },
  11093. {
  11094. name: "Normal",
  11095. height: math.unit(660, "feet"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Megamacro",
  11100. height: math.unit(10, "miles")
  11101. },
  11102. {
  11103. name: "Planetary Launch",
  11104. height: math.unit(500, "miles")
  11105. },
  11106. {
  11107. name: "Interstellar",
  11108. height: math.unit(1e9, "miles")
  11109. },
  11110. {
  11111. name: "Leaving the Universe",
  11112. height: math.unit(1, "gigaparsec")
  11113. },
  11114. {
  11115. name: "Travelling Universes",
  11116. height: math.unit(30e15, "parsecs")
  11117. },
  11118. ]
  11119. ))
  11120. characterMakers.push(() => makeCharacter(
  11121. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11122. {
  11123. front: {
  11124. height: math.unit(5 + 4/12, "feet"),
  11125. weight: math.unit(120, "lb"),
  11126. name: "Front",
  11127. image: {
  11128. source: "./media/characters/odyssey/front.svg",
  11129. extra: 1747/1571,
  11130. bottom: 47/1794
  11131. }
  11132. },
  11133. side: {
  11134. height: math.unit(5.1, "feet"),
  11135. weight: math.unit(120, "lb"),
  11136. name: "Side",
  11137. image: {
  11138. source: "./media/characters/odyssey/side.svg",
  11139. extra: 1847/1619,
  11140. bottom: 47/1894
  11141. }
  11142. },
  11143. lounging: {
  11144. height: math.unit(1.464, "feet"),
  11145. weight: math.unit(120, "lb"),
  11146. name: "Lounging",
  11147. image: {
  11148. source: "./media/characters/odyssey/lounging.svg",
  11149. extra: 1235/837,
  11150. bottom: 551/1786
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Normal",
  11157. height: math.unit(5 + 4 / 12, "feet")
  11158. },
  11159. {
  11160. name: "Macro",
  11161. height: math.unit(1, "km")
  11162. },
  11163. {
  11164. name: "Megamacro",
  11165. height: math.unit(3000, "km")
  11166. },
  11167. {
  11168. name: "Gigamacro",
  11169. height: math.unit(1, "AU"),
  11170. default: true
  11171. },
  11172. {
  11173. name: "Omniversal",
  11174. height: math.unit(100e14, "lightyears")
  11175. },
  11176. ]
  11177. ))
  11178. characterMakers.push(() => makeCharacter(
  11179. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11180. {
  11181. front: {
  11182. height: math.unit(6, "feet"),
  11183. weight: math.unit(300, "lb"),
  11184. name: "Front",
  11185. image: {
  11186. source: "./media/characters/mekuto/front.svg",
  11187. extra: 921 / 832,
  11188. bottom: 0.03
  11189. }
  11190. },
  11191. hand: {
  11192. height: math.unit(6 / 10.24, "feet"),
  11193. name: "Hand",
  11194. image: {
  11195. source: "./media/characters/mekuto/hand.svg"
  11196. }
  11197. },
  11198. foot: {
  11199. height: math.unit(6 / 5.05, "feet"),
  11200. name: "Foot",
  11201. image: {
  11202. source: "./media/characters/mekuto/foot.svg"
  11203. }
  11204. },
  11205. },
  11206. [
  11207. {
  11208. name: "Minimicro",
  11209. height: math.unit(0.2, "inches")
  11210. },
  11211. {
  11212. name: "Micro",
  11213. height: math.unit(1.5, "inches")
  11214. },
  11215. {
  11216. name: "Normal",
  11217. height: math.unit(5 + 11 / 12, "feet"),
  11218. default: true
  11219. },
  11220. {
  11221. name: "Minimacro",
  11222. height: math.unit(17 + 9 / 12, "feet")
  11223. },
  11224. {
  11225. name: "Macro",
  11226. height: math.unit(177.5, "feet")
  11227. },
  11228. {
  11229. name: "Megamacro",
  11230. height: math.unit(152, "miles")
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11236. {
  11237. front: {
  11238. height: math.unit(6.5, "inches"),
  11239. weight: math.unit(13, "oz"),
  11240. name: "Front",
  11241. image: {
  11242. source: "./media/characters/dafydd-tomos/front.svg",
  11243. extra: 2990 / 2603,
  11244. bottom: 0.03
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Micro",
  11251. height: math.unit(6.5, "inches"),
  11252. default: true
  11253. },
  11254. ]
  11255. ))
  11256. characterMakers.push(() => makeCharacter(
  11257. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11258. {
  11259. front: {
  11260. height: math.unit(6, "feet"),
  11261. weight: math.unit(150, "lb"),
  11262. name: "Front",
  11263. image: {
  11264. source: "./media/characters/splinter/front.svg",
  11265. extra: 2990 / 2882,
  11266. bottom: 0.04
  11267. }
  11268. },
  11269. back: {
  11270. height: math.unit(6, "feet"),
  11271. weight: math.unit(150, "lb"),
  11272. name: "Back",
  11273. image: {
  11274. source: "./media/characters/splinter/back.svg",
  11275. extra: 2990 / 2882,
  11276. bottom: 0.04
  11277. }
  11278. },
  11279. },
  11280. [
  11281. {
  11282. name: "Normal",
  11283. height: math.unit(6, "feet")
  11284. },
  11285. {
  11286. name: "Macro",
  11287. height: math.unit(230, "meters"),
  11288. default: true
  11289. },
  11290. ]
  11291. ))
  11292. characterMakers.push(() => makeCharacter(
  11293. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11294. {
  11295. front: {
  11296. height: math.unit(4 + 10 / 12, "feet"),
  11297. weight: math.unit(480, "lb"),
  11298. name: "Front",
  11299. image: {
  11300. source: "./media/characters/snow-gabumon/front.svg",
  11301. extra: 1140 / 963,
  11302. bottom: 0.058
  11303. }
  11304. },
  11305. back: {
  11306. height: math.unit(4 + 10 / 12, "feet"),
  11307. weight: math.unit(480, "lb"),
  11308. name: "Back",
  11309. image: {
  11310. source: "./media/characters/snow-gabumon/back.svg",
  11311. extra: 1115 / 962,
  11312. bottom: 0.041
  11313. }
  11314. },
  11315. frontUndresed: {
  11316. height: math.unit(4 + 10 / 12, "feet"),
  11317. weight: math.unit(480, "lb"),
  11318. name: "Front (Undressed)",
  11319. image: {
  11320. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11321. extra: 1061 / 960,
  11322. bottom: 0.045
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Micro",
  11329. height: math.unit(1, "inch")
  11330. },
  11331. {
  11332. name: "Normal",
  11333. height: math.unit(4 + 10 / 12, "feet"),
  11334. default: true
  11335. },
  11336. {
  11337. name: "Macro",
  11338. height: math.unit(200, "feet")
  11339. },
  11340. {
  11341. name: "Megamacro",
  11342. height: math.unit(120, "miles")
  11343. },
  11344. {
  11345. name: "Gigamacro",
  11346. height: math.unit(9800, "miles")
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11352. {
  11353. front: {
  11354. height: math.unit(1.7, "meters"),
  11355. weight: math.unit(140, "lb"),
  11356. name: "Front",
  11357. image: {
  11358. source: "./media/characters/moody/front.svg",
  11359. extra: 3226 / 3007,
  11360. bottom: 0.087
  11361. }
  11362. },
  11363. },
  11364. [
  11365. {
  11366. name: "Micro",
  11367. height: math.unit(1, "mm")
  11368. },
  11369. {
  11370. name: "Normal",
  11371. height: math.unit(1.7, "meters"),
  11372. default: true
  11373. },
  11374. {
  11375. name: "Macro",
  11376. height: math.unit(80, "meters")
  11377. },
  11378. {
  11379. name: "Macro+",
  11380. height: math.unit(500, "meters")
  11381. },
  11382. ]
  11383. ))
  11384. characterMakers.push(() => makeCharacter(
  11385. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11386. {
  11387. front: {
  11388. height: math.unit(6, "feet"),
  11389. weight: math.unit(150, "lb"),
  11390. name: "Front",
  11391. image: {
  11392. source: "./media/characters/zyas/front.svg",
  11393. extra: 1180 / 1120,
  11394. bottom: 0.045
  11395. }
  11396. },
  11397. },
  11398. [
  11399. {
  11400. name: "Normal",
  11401. height: math.unit(10, "feet"),
  11402. default: true
  11403. },
  11404. {
  11405. name: "Macro",
  11406. height: math.unit(500, "feet")
  11407. },
  11408. {
  11409. name: "Megamacro",
  11410. height: math.unit(5, "miles")
  11411. },
  11412. {
  11413. name: "Teramacro",
  11414. height: math.unit(150000, "miles")
  11415. },
  11416. ]
  11417. ))
  11418. characterMakers.push(() => makeCharacter(
  11419. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11420. {
  11421. front: {
  11422. height: math.unit(6, "feet"),
  11423. weight: math.unit(150, "lb"),
  11424. name: "Front",
  11425. image: {
  11426. source: "./media/characters/cuon/front.svg",
  11427. extra: 1390 / 1320,
  11428. bottom: 0.008
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Micro",
  11435. height: math.unit(3, "inches")
  11436. },
  11437. {
  11438. name: "Normal",
  11439. height: math.unit(18 + 9 / 12, "feet"),
  11440. default: true
  11441. },
  11442. {
  11443. name: "Macro",
  11444. height: math.unit(360, "feet")
  11445. },
  11446. {
  11447. name: "Megamacro",
  11448. height: math.unit(360, "miles")
  11449. },
  11450. ]
  11451. ))
  11452. characterMakers.push(() => makeCharacter(
  11453. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11454. {
  11455. front: {
  11456. height: math.unit(2.4, "meters"),
  11457. weight: math.unit(70, "kg"),
  11458. name: "Front",
  11459. image: {
  11460. source: "./media/characters/nyanuxk/front.svg",
  11461. extra: 1172 / 1084,
  11462. bottom: 0.065
  11463. }
  11464. },
  11465. side: {
  11466. height: math.unit(2.4, "meters"),
  11467. weight: math.unit(70, "kg"),
  11468. name: "Side",
  11469. image: {
  11470. source: "./media/characters/nyanuxk/side.svg",
  11471. extra: 1190 / 1132,
  11472. bottom: 0.007
  11473. }
  11474. },
  11475. back: {
  11476. height: math.unit(2.4, "meters"),
  11477. weight: math.unit(70, "kg"),
  11478. name: "Back",
  11479. image: {
  11480. source: "./media/characters/nyanuxk/back.svg",
  11481. extra: 1200 / 1141,
  11482. bottom: 0.015
  11483. }
  11484. },
  11485. foot: {
  11486. height: math.unit(0.52, "meters"),
  11487. name: "Foot",
  11488. image: {
  11489. source: "./media/characters/nyanuxk/foot.svg"
  11490. }
  11491. },
  11492. },
  11493. [
  11494. {
  11495. name: "Micro",
  11496. height: math.unit(2, "cm")
  11497. },
  11498. {
  11499. name: "Normal",
  11500. height: math.unit(2.4, "meters"),
  11501. default: true
  11502. },
  11503. {
  11504. name: "Smaller Macro",
  11505. height: math.unit(120, "meters")
  11506. },
  11507. {
  11508. name: "Bigger Macro",
  11509. height: math.unit(1.2, "km")
  11510. },
  11511. {
  11512. name: "Megamacro",
  11513. height: math.unit(15, "kilometers")
  11514. },
  11515. {
  11516. name: "Gigamacro",
  11517. height: math.unit(2000, "km")
  11518. },
  11519. {
  11520. name: "Teramacro",
  11521. height: math.unit(500000, "km")
  11522. },
  11523. ]
  11524. ))
  11525. characterMakers.push(() => makeCharacter(
  11526. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11527. {
  11528. side: {
  11529. height: math.unit(6, "feet"),
  11530. name: "Side",
  11531. image: {
  11532. source: "./media/characters/ailbhe/side.svg",
  11533. extra: 757 / 464,
  11534. bottom: 0.041
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Normal",
  11541. height: math.unit(1.07, "meters"),
  11542. default: true
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(6, "feet"),
  11551. weight: math.unit(120, "kg"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/zevulfius/front.svg",
  11555. extra: 965 / 903
  11556. }
  11557. },
  11558. side: {
  11559. height: math.unit(6, "feet"),
  11560. weight: math.unit(120, "kg"),
  11561. name: "Side",
  11562. image: {
  11563. source: "./media/characters/zevulfius/side.svg",
  11564. extra: 939 / 900
  11565. }
  11566. },
  11567. back: {
  11568. height: math.unit(6, "feet"),
  11569. weight: math.unit(120, "kg"),
  11570. name: "Back",
  11571. image: {
  11572. source: "./media/characters/zevulfius/back.svg",
  11573. extra: 918 / 854,
  11574. bottom: 0.005
  11575. }
  11576. },
  11577. foot: {
  11578. height: math.unit(6 / 3.72, "feet"),
  11579. name: "Foot",
  11580. image: {
  11581. source: "./media/characters/zevulfius/foot.svg"
  11582. }
  11583. },
  11584. },
  11585. [
  11586. {
  11587. name: "Macro",
  11588. height: math.unit(750, "meters")
  11589. },
  11590. {
  11591. name: "Megamacro",
  11592. height: math.unit(20, "km"),
  11593. default: true
  11594. },
  11595. {
  11596. name: "Gigamacro",
  11597. height: math.unit(2000, "km")
  11598. },
  11599. {
  11600. name: "Teramacro",
  11601. height: math.unit(250000, "km")
  11602. },
  11603. ]
  11604. ))
  11605. characterMakers.push(() => makeCharacter(
  11606. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11607. {
  11608. front: {
  11609. height: math.unit(100, "feet"),
  11610. weight: math.unit(350, "kg"),
  11611. name: "Front",
  11612. image: {
  11613. source: "./media/characters/rikes/front.svg",
  11614. extra: 1565 / 1483,
  11615. bottom: 0.017
  11616. }
  11617. },
  11618. },
  11619. [
  11620. {
  11621. name: "Macro",
  11622. height: math.unit(100, "feet"),
  11623. default: true
  11624. },
  11625. ]
  11626. ))
  11627. characterMakers.push(() => makeCharacter(
  11628. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11629. {
  11630. front: {
  11631. height: math.unit(8, "feet"),
  11632. weight: math.unit(356, "lb"),
  11633. name: "Front",
  11634. image: {
  11635. source: "./media/characters/adam-silver-mane/front.svg",
  11636. extra: 1036/937,
  11637. bottom: 63/1099
  11638. }
  11639. },
  11640. side: {
  11641. height: math.unit(8, "feet"),
  11642. weight: math.unit(356, "lb"),
  11643. name: "Side",
  11644. image: {
  11645. source: "./media/characters/adam-silver-mane/side.svg",
  11646. extra: 997/901,
  11647. bottom: 59/1056
  11648. }
  11649. },
  11650. frontNsfw: {
  11651. height: math.unit(8, "feet"),
  11652. weight: math.unit(356, "lb"),
  11653. name: "Front (NSFW)",
  11654. image: {
  11655. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11656. extra: 1036/937,
  11657. bottom: 63/1099
  11658. }
  11659. },
  11660. sideNsfw: {
  11661. height: math.unit(8, "feet"),
  11662. weight: math.unit(356, "lb"),
  11663. name: "Side (NSFW)",
  11664. image: {
  11665. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11666. extra: 997/901,
  11667. bottom: 59/1056
  11668. }
  11669. },
  11670. dick: {
  11671. height: math.unit(2.1, "feet"),
  11672. name: "Dick",
  11673. image: {
  11674. source: "./media/characters/adam-silver-mane/dick.svg"
  11675. }
  11676. },
  11677. taur: {
  11678. height: math.unit(16, "feet"),
  11679. weight: math.unit(1500, "kg"),
  11680. name: "Taur",
  11681. image: {
  11682. source: "./media/characters/adam-silver-mane/taur.svg",
  11683. extra: 1713 / 1571,
  11684. bottom: 0.01
  11685. }
  11686. },
  11687. },
  11688. [
  11689. {
  11690. name: "Normal",
  11691. height: math.unit(8, "feet")
  11692. },
  11693. {
  11694. name: "Minimacro",
  11695. height: math.unit(80, "feet")
  11696. },
  11697. {
  11698. name: "MDA",
  11699. height: math.unit(80, "meters")
  11700. },
  11701. {
  11702. name: "Macro",
  11703. height: math.unit(800, "feet"),
  11704. default: true
  11705. },
  11706. {
  11707. name: "Megamacro",
  11708. height: math.unit(8000, "feet")
  11709. },
  11710. {
  11711. name: "Gigamacro",
  11712. height: math.unit(800, "miles")
  11713. },
  11714. {
  11715. name: "Teramacro",
  11716. height: math.unit(80000, "miles")
  11717. },
  11718. {
  11719. name: "Celestial",
  11720. height: math.unit(8e6, "miles")
  11721. },
  11722. {
  11723. name: "Star Dragon",
  11724. height: math.unit(800000, "parsecs")
  11725. },
  11726. {
  11727. name: "Godly",
  11728. height: math.unit(800, "teraparsecs")
  11729. },
  11730. ]
  11731. ))
  11732. characterMakers.push(() => makeCharacter(
  11733. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11734. {
  11735. front: {
  11736. height: math.unit(6, "feet"),
  11737. weight: math.unit(150, "lb"),
  11738. name: "Front",
  11739. image: {
  11740. source: "./media/characters/ky'owin/front.svg",
  11741. extra: 3862/3053,
  11742. bottom: 74/3936
  11743. }
  11744. },
  11745. },
  11746. [
  11747. {
  11748. name: "Normal",
  11749. height: math.unit(6 + 8 / 12, "feet")
  11750. },
  11751. {
  11752. name: "Large",
  11753. height: math.unit(68, "feet")
  11754. },
  11755. {
  11756. name: "Macro",
  11757. height: math.unit(132, "feet")
  11758. },
  11759. {
  11760. name: "Macro+",
  11761. height: math.unit(340, "feet")
  11762. },
  11763. {
  11764. name: "Macro++",
  11765. height: math.unit(680, "feet"),
  11766. default: true
  11767. },
  11768. {
  11769. name: "Megamacro",
  11770. height: math.unit(1, "mile")
  11771. },
  11772. {
  11773. name: "Megamacro+",
  11774. height: math.unit(10, "miles")
  11775. },
  11776. ]
  11777. ))
  11778. characterMakers.push(() => makeCharacter(
  11779. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11780. {
  11781. front: {
  11782. height: math.unit(4, "feet"),
  11783. weight: math.unit(50, "lb"),
  11784. name: "Front",
  11785. image: {
  11786. source: "./media/characters/mal/front.svg",
  11787. extra: 785 / 724,
  11788. bottom: 0.07
  11789. }
  11790. },
  11791. },
  11792. [
  11793. {
  11794. name: "Micro",
  11795. height: math.unit(4, "inches")
  11796. },
  11797. {
  11798. name: "Normal",
  11799. height: math.unit(4, "feet"),
  11800. default: true
  11801. },
  11802. {
  11803. name: "Macro",
  11804. height: math.unit(200, "feet")
  11805. },
  11806. ]
  11807. ))
  11808. characterMakers.push(() => makeCharacter(
  11809. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11810. {
  11811. front: {
  11812. height: math.unit(6, "feet"),
  11813. weight: math.unit(150, "lb"),
  11814. name: "Front",
  11815. image: {
  11816. source: "./media/characters/jordan-deware/front.svg",
  11817. extra: 1191 / 1012
  11818. }
  11819. },
  11820. },
  11821. [
  11822. {
  11823. name: "Nano",
  11824. height: math.unit(0.01, "mm")
  11825. },
  11826. {
  11827. name: "Minimicro",
  11828. height: math.unit(1, "mm")
  11829. },
  11830. {
  11831. name: "Micro",
  11832. height: math.unit(0.5, "inches")
  11833. },
  11834. {
  11835. name: "Normal",
  11836. height: math.unit(4, "feet"),
  11837. default: true
  11838. },
  11839. {
  11840. name: "Minimacro",
  11841. height: math.unit(40, "meters")
  11842. },
  11843. {
  11844. name: "Small Macro",
  11845. height: math.unit(400, "meters")
  11846. },
  11847. {
  11848. name: "Macro",
  11849. height: math.unit(4, "miles")
  11850. },
  11851. {
  11852. name: "Megamacro",
  11853. height: math.unit(40, "miles")
  11854. },
  11855. {
  11856. name: "Megamacro+",
  11857. height: math.unit(400, "miles")
  11858. },
  11859. {
  11860. name: "Gigamacro",
  11861. height: math.unit(400000, "miles")
  11862. },
  11863. ]
  11864. ))
  11865. characterMakers.push(() => makeCharacter(
  11866. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11867. {
  11868. side: {
  11869. height: math.unit(6, "feet"),
  11870. weight: math.unit(150, "lb"),
  11871. name: "Side",
  11872. image: {
  11873. source: "./media/characters/kimiko/side.svg",
  11874. extra: 600 / 358
  11875. }
  11876. },
  11877. },
  11878. [
  11879. {
  11880. name: "Normal",
  11881. height: math.unit(15, "feet"),
  11882. default: true
  11883. },
  11884. {
  11885. name: "Macro",
  11886. height: math.unit(220, "feet")
  11887. },
  11888. {
  11889. name: "Macro+",
  11890. height: math.unit(1450, "feet")
  11891. },
  11892. {
  11893. name: "Megamacro",
  11894. height: math.unit(11500, "feet")
  11895. },
  11896. {
  11897. name: "Gigamacro",
  11898. height: math.unit(9500, "miles")
  11899. },
  11900. {
  11901. name: "Teramacro",
  11902. height: math.unit(2208005005, "miles")
  11903. },
  11904. {
  11905. name: "Examacro",
  11906. height: math.unit(2750, "parsecs")
  11907. },
  11908. {
  11909. name: "Zettamacro",
  11910. height: math.unit(101500, "parsecs")
  11911. },
  11912. ]
  11913. ))
  11914. characterMakers.push(() => makeCharacter(
  11915. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11916. {
  11917. front: {
  11918. height: math.unit(6, "feet"),
  11919. weight: math.unit(70, "kg"),
  11920. name: "Front",
  11921. image: {
  11922. source: "./media/characters/andrew-sleepy/front.svg"
  11923. }
  11924. },
  11925. side: {
  11926. height: math.unit(6, "feet"),
  11927. weight: math.unit(70, "kg"),
  11928. name: "Side",
  11929. image: {
  11930. source: "./media/characters/andrew-sleepy/side.svg"
  11931. }
  11932. },
  11933. },
  11934. [
  11935. {
  11936. name: "Micro",
  11937. height: math.unit(1, "mm"),
  11938. default: true
  11939. },
  11940. ]
  11941. ))
  11942. characterMakers.push(() => makeCharacter(
  11943. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11944. {
  11945. front: {
  11946. height: math.unit(6, "feet"),
  11947. weight: math.unit(150, "lb"),
  11948. name: "Front",
  11949. image: {
  11950. source: "./media/characters/judio/front.svg",
  11951. extra: 1258 / 1110
  11952. }
  11953. },
  11954. },
  11955. [
  11956. {
  11957. name: "Normal",
  11958. height: math.unit(5 + 6 / 12, "feet")
  11959. },
  11960. {
  11961. name: "Macro",
  11962. height: math.unit(1000, "feet"),
  11963. default: true
  11964. },
  11965. {
  11966. name: "Megamacro",
  11967. height: math.unit(10, "miles")
  11968. },
  11969. ]
  11970. ))
  11971. characterMakers.push(() => makeCharacter(
  11972. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11973. {
  11974. frontDressed: {
  11975. height: math.unit(6, "feet"),
  11976. weight: math.unit(68, "kg"),
  11977. name: "Front (Dressed)",
  11978. image: {
  11979. source: "./media/characters/nomaxice/front-dressed.svg",
  11980. extra: 1137/824,
  11981. bottom: 74/1211
  11982. }
  11983. },
  11984. frontShorts: {
  11985. height: math.unit(6, "feet"),
  11986. weight: math.unit(68, "kg"),
  11987. name: "Front (Shorts)",
  11988. image: {
  11989. source: "./media/characters/nomaxice/front-shorts.svg",
  11990. extra: 1137/824,
  11991. bottom: 74/1211
  11992. }
  11993. },
  11994. back: {
  11995. height: math.unit(6, "feet"),
  11996. weight: math.unit(68, "kg"),
  11997. name: "Back",
  11998. image: {
  11999. source: "./media/characters/nomaxice/back.svg",
  12000. extra: 822/786,
  12001. bottom: 39/861
  12002. }
  12003. },
  12004. hand: {
  12005. height: math.unit(0.565, "feet"),
  12006. name: "Hand",
  12007. image: {
  12008. source: "./media/characters/nomaxice/hand.svg"
  12009. }
  12010. },
  12011. foot: {
  12012. height: math.unit(1, "feet"),
  12013. name: "Foot",
  12014. image: {
  12015. source: "./media/characters/nomaxice/foot.svg"
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Micro",
  12022. height: math.unit(8, "cm")
  12023. },
  12024. {
  12025. name: "Norm",
  12026. height: math.unit(1.82, "m")
  12027. },
  12028. {
  12029. name: "Norm+",
  12030. height: math.unit(8.8, "feet"),
  12031. default: true
  12032. },
  12033. {
  12034. name: "Big",
  12035. height: math.unit(8, "meters")
  12036. },
  12037. {
  12038. name: "Macro",
  12039. height: math.unit(18, "meters")
  12040. },
  12041. {
  12042. name: "Macro+",
  12043. height: math.unit(88, "meters")
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(12, "feet"),
  12052. weight: math.unit(1.5, "tons"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/dydros/front.svg",
  12056. extra: 863 / 800,
  12057. bottom: 0.015
  12058. }
  12059. },
  12060. back: {
  12061. height: math.unit(12, "feet"),
  12062. weight: math.unit(1.5, "tons"),
  12063. name: "Back",
  12064. image: {
  12065. source: "./media/characters/dydros/back.svg",
  12066. extra: 900 / 843,
  12067. bottom: 0.005
  12068. }
  12069. },
  12070. },
  12071. [
  12072. {
  12073. name: "Normal",
  12074. height: math.unit(12, "feet"),
  12075. default: true
  12076. },
  12077. ]
  12078. ))
  12079. characterMakers.push(() => makeCharacter(
  12080. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12081. {
  12082. front: {
  12083. height: math.unit(6, "feet"),
  12084. weight: math.unit(100, "kg"),
  12085. name: "Front",
  12086. image: {
  12087. source: "./media/characters/riggi/front.svg",
  12088. extra: 5787 / 5303
  12089. }
  12090. },
  12091. hyper: {
  12092. height: math.unit(6 * 5 / 3, "feet"),
  12093. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12094. name: "Hyper",
  12095. image: {
  12096. source: "./media/characters/riggi/hyper.svg",
  12097. extra: 3595 / 3485
  12098. }
  12099. },
  12100. },
  12101. [
  12102. {
  12103. name: "Small Macro",
  12104. height: math.unit(50, "feet")
  12105. },
  12106. {
  12107. name: "Default",
  12108. height: math.unit(200, "feet"),
  12109. default: true
  12110. },
  12111. {
  12112. name: "Loom",
  12113. height: math.unit(10000, "feet")
  12114. },
  12115. {
  12116. name: "Cruising Altitude",
  12117. height: math.unit(30000, "feet")
  12118. },
  12119. {
  12120. name: "Megamacro",
  12121. height: math.unit(100, "miles")
  12122. },
  12123. {
  12124. name: "Continent Sized",
  12125. height: math.unit(2800, "miles")
  12126. },
  12127. {
  12128. name: "Earth Sized",
  12129. height: math.unit(8000, "miles")
  12130. },
  12131. ]
  12132. ))
  12133. characterMakers.push(() => makeCharacter(
  12134. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12135. {
  12136. front: {
  12137. height: math.unit(6, "feet"),
  12138. weight: math.unit(250, "lb"),
  12139. name: "Front",
  12140. image: {
  12141. source: "./media/characters/alexi/front.svg",
  12142. extra: 3483 / 3291,
  12143. bottom: 0.04
  12144. }
  12145. },
  12146. back: {
  12147. height: math.unit(6, "feet"),
  12148. weight: math.unit(250, "lb"),
  12149. name: "Back",
  12150. image: {
  12151. source: "./media/characters/alexi/back.svg",
  12152. extra: 3533 / 3356,
  12153. bottom: 0.021
  12154. }
  12155. },
  12156. frontTransforming: {
  12157. height: math.unit(8.58, "feet"),
  12158. weight: math.unit(1300, "lb"),
  12159. name: "Transforming",
  12160. image: {
  12161. source: "./media/characters/alexi/front-transforming.svg",
  12162. extra: 437 / 409,
  12163. bottom: 19 / 458.66
  12164. }
  12165. },
  12166. frontTransformed: {
  12167. height: math.unit(12.5, "feet"),
  12168. weight: math.unit(4000, "lb"),
  12169. name: "Transformed",
  12170. image: {
  12171. source: "./media/characters/alexi/front-transformed.svg",
  12172. extra: 639 / 614,
  12173. bottom: 30.55 / 671
  12174. }
  12175. },
  12176. },
  12177. [
  12178. {
  12179. name: "Normal",
  12180. height: math.unit(14, "feet"),
  12181. default: true
  12182. },
  12183. {
  12184. name: "Minimacro",
  12185. height: math.unit(30, "meters")
  12186. },
  12187. {
  12188. name: "Macro",
  12189. height: math.unit(500, "meters")
  12190. },
  12191. {
  12192. name: "Megamacro",
  12193. height: math.unit(9000, "km")
  12194. },
  12195. {
  12196. name: "Teramacro",
  12197. height: math.unit(384000, "km")
  12198. },
  12199. ]
  12200. ))
  12201. characterMakers.push(() => makeCharacter(
  12202. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12203. {
  12204. front: {
  12205. height: math.unit(6, "feet"),
  12206. weight: math.unit(150, "lb"),
  12207. name: "Front",
  12208. image: {
  12209. source: "./media/characters/kayroo/front.svg",
  12210. extra: 1153 / 1038,
  12211. bottom: 0.06
  12212. }
  12213. },
  12214. foot: {
  12215. height: math.unit(6, "feet"),
  12216. weight: math.unit(150, "lb"),
  12217. name: "Foot",
  12218. image: {
  12219. source: "./media/characters/kayroo/foot.svg"
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Normal",
  12226. height: math.unit(8, "feet"),
  12227. default: true
  12228. },
  12229. {
  12230. name: "Minimacro",
  12231. height: math.unit(250, "feet")
  12232. },
  12233. {
  12234. name: "Macro",
  12235. height: math.unit(2800, "feet")
  12236. },
  12237. {
  12238. name: "Megamacro",
  12239. height: math.unit(5200, "feet")
  12240. },
  12241. {
  12242. name: "Gigamacro",
  12243. height: math.unit(27000, "feet")
  12244. },
  12245. {
  12246. name: "Omega",
  12247. height: math.unit(45000, "feet")
  12248. },
  12249. ]
  12250. ))
  12251. characterMakers.push(() => makeCharacter(
  12252. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12253. {
  12254. front: {
  12255. height: math.unit(18, "feet"),
  12256. weight: math.unit(5800, "lb"),
  12257. name: "Front",
  12258. image: {
  12259. source: "./media/characters/rhys/front.svg",
  12260. extra: 3386 / 3090,
  12261. bottom: 0.07
  12262. }
  12263. },
  12264. },
  12265. [
  12266. {
  12267. name: "Normal",
  12268. height: math.unit(18, "feet"),
  12269. default: true
  12270. },
  12271. {
  12272. name: "Working Size",
  12273. height: math.unit(200, "feet")
  12274. },
  12275. {
  12276. name: "Demolition Size",
  12277. height: math.unit(2000, "feet")
  12278. },
  12279. {
  12280. name: "Maximum Licensed Size",
  12281. height: math.unit(5, "miles")
  12282. },
  12283. {
  12284. name: "Maximum Observed Size",
  12285. height: math.unit(10, "yottameters")
  12286. },
  12287. ]
  12288. ))
  12289. characterMakers.push(() => makeCharacter(
  12290. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12291. {
  12292. front: {
  12293. height: math.unit(6, "feet"),
  12294. weight: math.unit(250, "lb"),
  12295. name: "Front",
  12296. image: {
  12297. source: "./media/characters/toto/front.svg",
  12298. extra: 527 / 479,
  12299. bottom: 0.05
  12300. }
  12301. },
  12302. },
  12303. [
  12304. {
  12305. name: "Micro",
  12306. height: math.unit(3, "feet")
  12307. },
  12308. {
  12309. name: "Normal",
  12310. height: math.unit(10, "feet")
  12311. },
  12312. {
  12313. name: "Macro",
  12314. height: math.unit(150, "feet"),
  12315. default: true
  12316. },
  12317. {
  12318. name: "Megamacro",
  12319. height: math.unit(1200, "feet")
  12320. },
  12321. ]
  12322. ))
  12323. characterMakers.push(() => makeCharacter(
  12324. { name: "King", species: ["lion"], tags: ["anthro"] },
  12325. {
  12326. back: {
  12327. height: math.unit(6, "feet"),
  12328. weight: math.unit(150, "lb"),
  12329. name: "Back",
  12330. image: {
  12331. source: "./media/characters/king/back.svg"
  12332. }
  12333. },
  12334. },
  12335. [
  12336. {
  12337. name: "Micro",
  12338. height: math.unit(2, "inches")
  12339. },
  12340. {
  12341. name: "Normal",
  12342. height: math.unit(8, "feet")
  12343. },
  12344. {
  12345. name: "Macro",
  12346. height: math.unit(200, "feet"),
  12347. default: true
  12348. },
  12349. {
  12350. name: "Megamacro",
  12351. height: math.unit(50, "miles")
  12352. },
  12353. ]
  12354. ))
  12355. characterMakers.push(() => makeCharacter(
  12356. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12357. {
  12358. front: {
  12359. height: math.unit(11, "feet"),
  12360. weight: math.unit(1400, "lb"),
  12361. name: "Front",
  12362. image: {
  12363. source: "./media/characters/cordite/front.svg",
  12364. extra: 1919/1827,
  12365. bottom: 40/1959
  12366. }
  12367. },
  12368. side: {
  12369. height: math.unit(11, "feet"),
  12370. weight: math.unit(1400, "lb"),
  12371. name: "Side",
  12372. image: {
  12373. source: "./media/characters/cordite/side.svg",
  12374. extra: 1908/1793,
  12375. bottom: 38/1946
  12376. }
  12377. },
  12378. back: {
  12379. height: math.unit(11, "feet"),
  12380. weight: math.unit(1400, "lb"),
  12381. name: "Back",
  12382. image: {
  12383. source: "./media/characters/cordite/back.svg",
  12384. extra: 1938/1837,
  12385. bottom: 10/1948
  12386. }
  12387. },
  12388. feral: {
  12389. height: math.unit(2, "feet"),
  12390. weight: math.unit(90, "lb"),
  12391. name: "Feral",
  12392. image: {
  12393. source: "./media/characters/cordite/feral.svg",
  12394. extra: 1260 / 755,
  12395. bottom: 0.05
  12396. }
  12397. },
  12398. },
  12399. [
  12400. {
  12401. name: "Normal",
  12402. height: math.unit(11, "feet"),
  12403. default: true
  12404. },
  12405. ]
  12406. ))
  12407. characterMakers.push(() => makeCharacter(
  12408. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12409. {
  12410. front: {
  12411. height: math.unit(6, "feet"),
  12412. weight: math.unit(150, "lb"),
  12413. name: "Front",
  12414. image: {
  12415. source: "./media/characters/pianostrong/front.svg",
  12416. extra: 6577 / 6254,
  12417. bottom: 0.02
  12418. }
  12419. },
  12420. side: {
  12421. height: math.unit(6, "feet"),
  12422. weight: math.unit(150, "lb"),
  12423. name: "Side",
  12424. image: {
  12425. source: "./media/characters/pianostrong/side.svg",
  12426. extra: 6106 / 5730
  12427. }
  12428. },
  12429. back: {
  12430. height: math.unit(6, "feet"),
  12431. weight: math.unit(150, "lb"),
  12432. name: "Back",
  12433. image: {
  12434. source: "./media/characters/pianostrong/back.svg",
  12435. extra: 6085 / 5733,
  12436. bottom: 0.01
  12437. }
  12438. },
  12439. },
  12440. [
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(100, "feet")
  12444. },
  12445. {
  12446. name: "Macro+",
  12447. height: math.unit(300, "feet"),
  12448. default: true
  12449. },
  12450. {
  12451. name: "Macro++",
  12452. height: math.unit(1000, "feet")
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(6, "feet"),
  12461. weight: math.unit(150, "lb"),
  12462. name: "Front",
  12463. image: {
  12464. source: "./media/characters/kona/front.svg",
  12465. extra: 2960 / 2629,
  12466. bottom: 0.005
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Normal",
  12473. height: math.unit(11 + 8 / 12, "feet")
  12474. },
  12475. {
  12476. name: "Macro",
  12477. height: math.unit(850, "feet"),
  12478. default: true
  12479. },
  12480. {
  12481. name: "Macro+",
  12482. height: math.unit(1.5, "km"),
  12483. default: true
  12484. },
  12485. {
  12486. name: "Megamacro",
  12487. height: math.unit(80, "miles")
  12488. },
  12489. {
  12490. name: "Gigamacro",
  12491. height: math.unit(3500, "miles")
  12492. },
  12493. ]
  12494. ))
  12495. characterMakers.push(() => makeCharacter(
  12496. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12497. {
  12498. side: {
  12499. height: math.unit(1.9, "meters"),
  12500. weight: math.unit(326, "kg"),
  12501. name: "Side",
  12502. image: {
  12503. source: "./media/characters/levi/side.svg",
  12504. extra: 1704 / 1334,
  12505. bottom: 0.02
  12506. }
  12507. },
  12508. },
  12509. [
  12510. {
  12511. name: "Normal",
  12512. height: math.unit(1.9, "meters"),
  12513. default: true
  12514. },
  12515. {
  12516. name: "Macro",
  12517. height: math.unit(20, "meters")
  12518. },
  12519. {
  12520. name: "Macro+",
  12521. height: math.unit(200, "meters")
  12522. },
  12523. {
  12524. name: "Megamacro",
  12525. height: math.unit(2, "km")
  12526. },
  12527. {
  12528. name: "Megamacro+",
  12529. height: math.unit(20, "km")
  12530. },
  12531. {
  12532. name: "Gigamacro",
  12533. height: math.unit(2500, "km")
  12534. },
  12535. {
  12536. name: "Gigamacro+",
  12537. height: math.unit(120000, "km")
  12538. },
  12539. {
  12540. name: "Teramacro",
  12541. height: math.unit(7.77e6, "km")
  12542. },
  12543. ]
  12544. ))
  12545. characterMakers.push(() => makeCharacter(
  12546. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12547. {
  12548. front: {
  12549. height: math.unit(6 + 4/12, "feet"),
  12550. weight: math.unit(190, "lb"),
  12551. name: "Front",
  12552. image: {
  12553. source: "./media/characters/bmc/front.svg",
  12554. extra: 1626/1472,
  12555. bottom: 79/1705
  12556. }
  12557. },
  12558. back: {
  12559. height: math.unit(6 + 4/12, "feet"),
  12560. weight: math.unit(190, "lb"),
  12561. name: "Back",
  12562. image: {
  12563. source: "./media/characters/bmc/back.svg",
  12564. extra: 1640/1479,
  12565. bottom: 45/1685
  12566. }
  12567. },
  12568. frontArmor: {
  12569. height: math.unit(6 + 4/12, "feet"),
  12570. weight: math.unit(190, "lb"),
  12571. name: "Front-armor",
  12572. image: {
  12573. source: "./media/characters/bmc/front-armor.svg",
  12574. extra: 1538/1468,
  12575. bottom: 79/1617
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Human-sized",
  12582. height: math.unit(6 + 4 / 12, "feet")
  12583. },
  12584. {
  12585. name: "Interactive Size",
  12586. height: math.unit(25, "feet")
  12587. },
  12588. {
  12589. name: "Small",
  12590. height: math.unit(250, "feet")
  12591. },
  12592. {
  12593. name: "Normal",
  12594. height: math.unit(1250, "feet"),
  12595. default: true
  12596. },
  12597. {
  12598. name: "Good Day",
  12599. height: math.unit(88, "miles")
  12600. },
  12601. {
  12602. name: "Largest Measured Size",
  12603. height: math.unit(105.960, "galaxies")
  12604. },
  12605. ]
  12606. ))
  12607. characterMakers.push(() => makeCharacter(
  12608. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12609. {
  12610. front: {
  12611. height: math.unit(20, "feet"),
  12612. weight: math.unit(2016, "kg"),
  12613. name: "Front",
  12614. image: {
  12615. source: "./media/characters/sven-the-kaiju/front.svg",
  12616. extra: 1277/1250,
  12617. bottom: 35/1312
  12618. }
  12619. },
  12620. mouth: {
  12621. height: math.unit(1.85, "feet"),
  12622. name: "Mouth",
  12623. image: {
  12624. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Fairy",
  12631. height: math.unit(6, "inches")
  12632. },
  12633. {
  12634. name: "Normal",
  12635. height: math.unit(20, "feet"),
  12636. default: true
  12637. },
  12638. {
  12639. name: "Rampage",
  12640. height: math.unit(200, "feet")
  12641. },
  12642. {
  12643. name: "Archfey Forest Guardian",
  12644. height: math.unit(1, "mile")
  12645. },
  12646. ]
  12647. ))
  12648. characterMakers.push(() => makeCharacter(
  12649. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12650. {
  12651. front: {
  12652. height: math.unit(4, "meters"),
  12653. weight: math.unit(2, "tons"),
  12654. name: "Front",
  12655. image: {
  12656. source: "./media/characters/marik/front.svg",
  12657. extra: 1057 / 1003,
  12658. bottom: 0.08
  12659. }
  12660. },
  12661. },
  12662. [
  12663. {
  12664. name: "Normal",
  12665. height: math.unit(4, "meters"),
  12666. default: true
  12667. },
  12668. {
  12669. name: "Macro",
  12670. height: math.unit(20, "meters")
  12671. },
  12672. {
  12673. name: "Megamacro",
  12674. height: math.unit(50, "km")
  12675. },
  12676. {
  12677. name: "Gigamacro",
  12678. height: math.unit(100, "km")
  12679. },
  12680. {
  12681. name: "Alpha Macro",
  12682. height: math.unit(7.88e7, "yottameters")
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(110, "lb"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/mel/front.svg",
  12695. extra: 736 / 617,
  12696. bottom: 0.017
  12697. }
  12698. },
  12699. },
  12700. [
  12701. {
  12702. name: "Pico",
  12703. height: math.unit(3, "pm")
  12704. },
  12705. {
  12706. name: "Nano",
  12707. height: math.unit(3, "nm")
  12708. },
  12709. {
  12710. name: "Micro",
  12711. height: math.unit(0.3, "mm"),
  12712. default: true
  12713. },
  12714. {
  12715. name: "Micro+",
  12716. height: math.unit(3, "mm")
  12717. },
  12718. {
  12719. name: "Normal",
  12720. height: math.unit(5 + 10.5 / 12, "feet")
  12721. },
  12722. ]
  12723. ))
  12724. characterMakers.push(() => makeCharacter(
  12725. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12726. {
  12727. kaiju: {
  12728. height: math.unit(1.75, "meters"),
  12729. weight: math.unit(55, "kg"),
  12730. name: "Kaiju",
  12731. image: {
  12732. source: "./media/characters/lykonous/kaiju.svg",
  12733. extra: 1055 / 946,
  12734. bottom: 0.135
  12735. }
  12736. },
  12737. },
  12738. [
  12739. {
  12740. name: "Normal",
  12741. height: math.unit(2.5, "meters"),
  12742. default: true
  12743. },
  12744. {
  12745. name: "Kaiju Dragon",
  12746. height: math.unit(60, "meters")
  12747. },
  12748. {
  12749. name: "Mega Kaiju",
  12750. height: math.unit(120, "km")
  12751. },
  12752. {
  12753. name: "Giga Kaiju",
  12754. height: math.unit(200, "megameters")
  12755. },
  12756. {
  12757. name: "Terra Kaiju",
  12758. height: math.unit(400, "gigameters")
  12759. },
  12760. {
  12761. name: "Kaiju Dragon God",
  12762. height: math.unit(13000, "exaparsecs")
  12763. },
  12764. ]
  12765. ))
  12766. characterMakers.push(() => makeCharacter(
  12767. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12768. {
  12769. front: {
  12770. height: math.unit(6, "feet"),
  12771. weight: math.unit(150, "lb"),
  12772. name: "Front",
  12773. image: {
  12774. source: "./media/characters/blü/front.svg",
  12775. extra: 1883 / 1564,
  12776. bottom: 0.031
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Normal",
  12783. height: math.unit(13, "feet"),
  12784. default: true
  12785. },
  12786. {
  12787. name: "Big Boi",
  12788. height: math.unit(150, "meters")
  12789. },
  12790. {
  12791. name: "Mini Stomper",
  12792. height: math.unit(300, "meters")
  12793. },
  12794. {
  12795. name: "Macro",
  12796. height: math.unit(1000, "meters")
  12797. },
  12798. {
  12799. name: "Megamacro",
  12800. height: math.unit(11000, "meters")
  12801. },
  12802. {
  12803. name: "Gigamacro",
  12804. height: math.unit(11000, "km")
  12805. },
  12806. {
  12807. name: "Teramacro",
  12808. height: math.unit(420000, "km")
  12809. },
  12810. {
  12811. name: "Examacro",
  12812. height: math.unit(120, "parsecs")
  12813. },
  12814. {
  12815. name: "God Tho",
  12816. height: math.unit(98000000000, "parsecs")
  12817. },
  12818. ]
  12819. ))
  12820. characterMakers.push(() => makeCharacter(
  12821. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12822. {
  12823. taurFront: {
  12824. height: math.unit(6, "feet"),
  12825. weight: math.unit(200, "lb"),
  12826. name: "Taur (Front)",
  12827. image: {
  12828. source: "./media/characters/scales/taur-front.svg",
  12829. extra: 1,
  12830. bottom: 0.05
  12831. }
  12832. },
  12833. taurBack: {
  12834. height: math.unit(6, "feet"),
  12835. weight: math.unit(200, "lb"),
  12836. name: "Taur (Back)",
  12837. image: {
  12838. source: "./media/characters/scales/taur-back.svg",
  12839. extra: 1,
  12840. bottom: 0.08
  12841. }
  12842. },
  12843. anthro: {
  12844. height: math.unit(6 * 7 / 12, "feet"),
  12845. weight: math.unit(100, "lb"),
  12846. name: "Anthro",
  12847. image: {
  12848. source: "./media/characters/scales/anthro.svg",
  12849. extra: 1,
  12850. bottom: 0.06
  12851. }
  12852. },
  12853. },
  12854. [
  12855. {
  12856. name: "Normal",
  12857. height: math.unit(12, "feet"),
  12858. default: true
  12859. },
  12860. ]
  12861. ))
  12862. characterMakers.push(() => makeCharacter(
  12863. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12864. {
  12865. front: {
  12866. height: math.unit(6, "feet"),
  12867. weight: math.unit(150, "lb"),
  12868. name: "Front",
  12869. image: {
  12870. source: "./media/characters/koragos/front.svg",
  12871. extra: 841 / 794,
  12872. bottom: 0.035
  12873. }
  12874. },
  12875. back: {
  12876. height: math.unit(6, "feet"),
  12877. weight: math.unit(150, "lb"),
  12878. name: "Back",
  12879. image: {
  12880. source: "./media/characters/koragos/back.svg",
  12881. extra: 841 / 810,
  12882. bottom: 0.022
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Normal",
  12889. height: math.unit(6 + 11 / 12, "feet"),
  12890. default: true
  12891. },
  12892. {
  12893. name: "Macro",
  12894. height: math.unit(490, "feet")
  12895. },
  12896. {
  12897. name: "Megamacro",
  12898. height: math.unit(10, "miles")
  12899. },
  12900. {
  12901. name: "Gigamacro",
  12902. height: math.unit(50, "miles")
  12903. },
  12904. ]
  12905. ))
  12906. characterMakers.push(() => makeCharacter(
  12907. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12908. {
  12909. front: {
  12910. height: math.unit(6, "feet"),
  12911. weight: math.unit(250, "lb"),
  12912. name: "Front",
  12913. image: {
  12914. source: "./media/characters/xylrem/front.svg",
  12915. extra: 3323 / 3050,
  12916. bottom: 0.065
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Micro",
  12923. height: math.unit(4, "feet")
  12924. },
  12925. {
  12926. name: "Normal",
  12927. height: math.unit(16, "feet"),
  12928. default: true
  12929. },
  12930. {
  12931. name: "Macro",
  12932. height: math.unit(2720, "feet")
  12933. },
  12934. {
  12935. name: "Megamacro",
  12936. height: math.unit(25000, "miles")
  12937. },
  12938. ]
  12939. ))
  12940. characterMakers.push(() => makeCharacter(
  12941. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12942. {
  12943. front: {
  12944. height: math.unit(8, "feet"),
  12945. weight: math.unit(250, "kg"),
  12946. name: "Front",
  12947. image: {
  12948. source: "./media/characters/ikideru/front.svg",
  12949. extra: 930 / 870,
  12950. bottom: 0.087
  12951. }
  12952. },
  12953. back: {
  12954. height: math.unit(8, "feet"),
  12955. weight: math.unit(250, "kg"),
  12956. name: "Back",
  12957. image: {
  12958. source: "./media/characters/ikideru/back.svg",
  12959. extra: 919 / 852,
  12960. bottom: 0.055
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Rare",
  12967. height: math.unit(8, "feet"),
  12968. default: true
  12969. },
  12970. {
  12971. name: "Playful Loom",
  12972. height: math.unit(80, "feet")
  12973. },
  12974. {
  12975. name: "City Leaner",
  12976. height: math.unit(230, "feet")
  12977. },
  12978. {
  12979. name: "Megamacro",
  12980. height: math.unit(2500, "feet")
  12981. },
  12982. {
  12983. name: "Gigamacro",
  12984. height: math.unit(26400, "feet")
  12985. },
  12986. {
  12987. name: "Tectonic Shifter",
  12988. height: math.unit(1.7, "megameters")
  12989. },
  12990. {
  12991. name: "Planet Carer",
  12992. height: math.unit(21, "megameters")
  12993. },
  12994. {
  12995. name: "God",
  12996. height: math.unit(11157.22, "parsecs")
  12997. },
  12998. ]
  12999. ))
  13000. characterMakers.push(() => makeCharacter(
  13001. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13002. {
  13003. front: {
  13004. height: math.unit(6, "feet"),
  13005. weight: math.unit(120, "lb"),
  13006. name: "Front",
  13007. image: {
  13008. source: "./media/characters/neo/front.svg"
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Micro",
  13015. height: math.unit(2, "inches"),
  13016. default: true
  13017. },
  13018. {
  13019. name: "Human Size",
  13020. height: math.unit(5 + 8 / 12, "feet")
  13021. },
  13022. ]
  13023. ))
  13024. characterMakers.push(() => makeCharacter(
  13025. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13026. {
  13027. front: {
  13028. height: math.unit(13 + 10 / 12, "feet"),
  13029. weight: math.unit(5320, "lb"),
  13030. name: "Front",
  13031. image: {
  13032. source: "./media/characters/chauncey-chantz/front.svg",
  13033. extra: 1587 / 1435,
  13034. bottom: 0.02
  13035. }
  13036. },
  13037. },
  13038. [
  13039. {
  13040. name: "Normal",
  13041. height: math.unit(13 + 10 / 12, "feet"),
  13042. default: true
  13043. },
  13044. {
  13045. name: "Macro",
  13046. height: math.unit(45, "feet")
  13047. },
  13048. {
  13049. name: "Megamacro",
  13050. height: math.unit(250, "miles")
  13051. },
  13052. {
  13053. name: "Planetary",
  13054. height: math.unit(10000, "miles")
  13055. },
  13056. {
  13057. name: "Galactic",
  13058. height: math.unit(40000, "parsecs")
  13059. },
  13060. {
  13061. name: "Universal",
  13062. height: math.unit(1, "yottameter")
  13063. },
  13064. ]
  13065. ))
  13066. characterMakers.push(() => makeCharacter(
  13067. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13068. {
  13069. front: {
  13070. height: math.unit(6, "feet"),
  13071. weight: math.unit(150, "lb"),
  13072. name: "Front",
  13073. image: {
  13074. source: "./media/characters/epifox/front.svg",
  13075. extra: 1,
  13076. bottom: 0.075
  13077. }
  13078. },
  13079. },
  13080. [
  13081. {
  13082. name: "Micro",
  13083. height: math.unit(6, "inches")
  13084. },
  13085. {
  13086. name: "Normal",
  13087. height: math.unit(12, "feet"),
  13088. default: true
  13089. },
  13090. {
  13091. name: "Macro",
  13092. height: math.unit(3810, "feet")
  13093. },
  13094. {
  13095. name: "Megamacro",
  13096. height: math.unit(500, "miles")
  13097. },
  13098. ]
  13099. ))
  13100. characterMakers.push(() => makeCharacter(
  13101. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13102. {
  13103. front: {
  13104. height: math.unit(1.8796, "m"),
  13105. weight: math.unit(230, "lb"),
  13106. name: "Front",
  13107. image: {
  13108. source: "./media/characters/colin-t/front.svg",
  13109. extra: 1272 / 1193,
  13110. bottom: 0.07
  13111. }
  13112. },
  13113. },
  13114. [
  13115. {
  13116. name: "Micro",
  13117. height: math.unit(0.571, "meters")
  13118. },
  13119. {
  13120. name: "Normal",
  13121. height: math.unit(1.8796, "meters"),
  13122. default: true
  13123. },
  13124. {
  13125. name: "Tall",
  13126. height: math.unit(4, "meters")
  13127. },
  13128. {
  13129. name: "Macro",
  13130. height: math.unit(67.241, "meters")
  13131. },
  13132. {
  13133. name: "Megamacro",
  13134. height: math.unit(371.856, "meters")
  13135. },
  13136. {
  13137. name: "Planetary",
  13138. height: math.unit(12631.5689, "km")
  13139. },
  13140. ]
  13141. ))
  13142. characterMakers.push(() => makeCharacter(
  13143. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13144. {
  13145. front: {
  13146. height: math.unit(1.85, "meters"),
  13147. weight: math.unit(80, "kg"),
  13148. name: "Front",
  13149. image: {
  13150. source: "./media/characters/matvei/front.svg",
  13151. extra: 456/447,
  13152. bottom: 8/464
  13153. }
  13154. },
  13155. back: {
  13156. height: math.unit(1.85, "meters"),
  13157. weight: math.unit(80, "kg"),
  13158. name: "Back",
  13159. image: {
  13160. source: "./media/characters/matvei/back.svg",
  13161. extra: 434/427,
  13162. bottom: 11/445
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Normal",
  13169. height: math.unit(1.85, "meters"),
  13170. default: true
  13171. },
  13172. ]
  13173. ))
  13174. characterMakers.push(() => makeCharacter(
  13175. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13176. {
  13177. front: {
  13178. height: math.unit(5 + 9 / 12, "feet"),
  13179. weight: math.unit(70, "lb"),
  13180. name: "Front",
  13181. image: {
  13182. source: "./media/characters/quincy/front.svg",
  13183. extra: 3041 / 2751
  13184. }
  13185. },
  13186. back: {
  13187. height: math.unit(5 + 9 / 12, "feet"),
  13188. weight: math.unit(70, "lb"),
  13189. name: "Back",
  13190. image: {
  13191. source: "./media/characters/quincy/back.svg",
  13192. extra: 3041 / 2751
  13193. }
  13194. },
  13195. flying: {
  13196. height: math.unit(5 + 4 / 12, "feet"),
  13197. weight: math.unit(70, "lb"),
  13198. name: "Flying",
  13199. image: {
  13200. source: "./media/characters/quincy/flying.svg",
  13201. extra: 1044 / 930
  13202. }
  13203. },
  13204. },
  13205. [
  13206. {
  13207. name: "Micro",
  13208. height: math.unit(3, "cm")
  13209. },
  13210. {
  13211. name: "Normal",
  13212. height: math.unit(5 + 9 / 12, "feet")
  13213. },
  13214. {
  13215. name: "Macro",
  13216. height: math.unit(200, "meters"),
  13217. default: true
  13218. },
  13219. {
  13220. name: "Megamacro",
  13221. height: math.unit(1000, "meters")
  13222. },
  13223. ]
  13224. ))
  13225. characterMakers.push(() => makeCharacter(
  13226. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13227. {
  13228. front: {
  13229. height: math.unit(3 + 11/12, "feet"),
  13230. weight: math.unit(50, "lb"),
  13231. name: "Front",
  13232. image: {
  13233. source: "./media/characters/vanrel/front.svg",
  13234. extra: 1104/949,
  13235. bottom: 52/1156
  13236. }
  13237. },
  13238. back: {
  13239. height: math.unit(3 + 11/12, "feet"),
  13240. weight: math.unit(50, "lb"),
  13241. name: "Back",
  13242. image: {
  13243. source: "./media/characters/vanrel/back.svg",
  13244. extra: 1119/976,
  13245. bottom: 37/1156
  13246. }
  13247. },
  13248. tome: {
  13249. height: math.unit(1.35, "feet"),
  13250. weight: math.unit(10, "lb"),
  13251. name: "Vanrel's Tome",
  13252. rename: true,
  13253. image: {
  13254. source: "./media/characters/vanrel/tome.svg"
  13255. }
  13256. },
  13257. beans: {
  13258. height: math.unit(0.89, "feet"),
  13259. name: "Beans",
  13260. image: {
  13261. source: "./media/characters/vanrel/beans.svg"
  13262. }
  13263. },
  13264. },
  13265. [
  13266. {
  13267. name: "Normal",
  13268. height: math.unit(3 + 11/12, "feet"),
  13269. default: true
  13270. },
  13271. ]
  13272. ))
  13273. characterMakers.push(() => makeCharacter(
  13274. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13275. {
  13276. front: {
  13277. height: math.unit(7 + 5 / 12, "feet"),
  13278. name: "Front",
  13279. image: {
  13280. source: "./media/characters/kuiper-vanrel/front.svg",
  13281. extra: 1219/1169,
  13282. bottom: 69/1288
  13283. }
  13284. },
  13285. back: {
  13286. height: math.unit(7 + 5 / 12, "feet"),
  13287. name: "Back",
  13288. image: {
  13289. source: "./media/characters/kuiper-vanrel/back.svg",
  13290. extra: 1236/1193,
  13291. bottom: 27/1263
  13292. }
  13293. },
  13294. foot: {
  13295. height: math.unit(0.55, "meters"),
  13296. name: "Foot",
  13297. image: {
  13298. source: "./media/characters/kuiper-vanrel/foot.svg",
  13299. }
  13300. },
  13301. battle: {
  13302. height: math.unit(6.824, "feet"),
  13303. name: "Battle",
  13304. image: {
  13305. source: "./media/characters/kuiper-vanrel/battle.svg",
  13306. extra: 1466 / 1327,
  13307. bottom: 29 / 1492.5
  13308. }
  13309. },
  13310. meerkui: {
  13311. height: math.unit(18, "inches"),
  13312. name: "Meerkui",
  13313. image: {
  13314. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13315. extra: 1354/1289,
  13316. bottom: 69/1423
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Normal",
  13323. height: math.unit(7 + 5 / 12, "feet"),
  13324. default: true
  13325. },
  13326. ]
  13327. ))
  13328. characterMakers.push(() => makeCharacter(
  13329. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13330. {
  13331. front: {
  13332. height: math.unit(8 + 5 / 12, "feet"),
  13333. name: "Front",
  13334. image: {
  13335. source: "./media/characters/keset-vanrel/front.svg",
  13336. extra: 1231/1148,
  13337. bottom: 82/1313
  13338. }
  13339. },
  13340. back: {
  13341. height: math.unit(8 + 5 / 12, "feet"),
  13342. name: "Back",
  13343. image: {
  13344. source: "./media/characters/keset-vanrel/back.svg",
  13345. extra: 1240/1174,
  13346. bottom: 33/1273
  13347. }
  13348. },
  13349. hand: {
  13350. height: math.unit(0.6, "meters"),
  13351. name: "Hand",
  13352. image: {
  13353. source: "./media/characters/keset-vanrel/hand.svg"
  13354. }
  13355. },
  13356. foot: {
  13357. height: math.unit(0.94978, "meters"),
  13358. name: "Foot",
  13359. image: {
  13360. source: "./media/characters/keset-vanrel/foot.svg"
  13361. }
  13362. },
  13363. battle: {
  13364. height: math.unit(7.408, "feet"),
  13365. name: "Battle",
  13366. image: {
  13367. source: "./media/characters/keset-vanrel/battle.svg",
  13368. extra: 1890 / 1386,
  13369. bottom: 73.28 / 1970
  13370. }
  13371. },
  13372. },
  13373. [
  13374. {
  13375. name: "Normal",
  13376. height: math.unit(8 + 5 / 12, "feet"),
  13377. default: true
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13383. {
  13384. front: {
  13385. height: math.unit(6, "feet"),
  13386. weight: math.unit(150, "lb"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/neos/front.svg",
  13390. extra: 1696 / 992,
  13391. bottom: 0.14
  13392. }
  13393. },
  13394. },
  13395. [
  13396. {
  13397. name: "Normal",
  13398. height: math.unit(54, "cm"),
  13399. default: true
  13400. },
  13401. {
  13402. name: "Macro",
  13403. height: math.unit(100, "m")
  13404. },
  13405. {
  13406. name: "Megamacro",
  13407. height: math.unit(10, "km")
  13408. },
  13409. {
  13410. name: "Megamacro+",
  13411. height: math.unit(100, "km")
  13412. },
  13413. {
  13414. name: "Gigamacro",
  13415. height: math.unit(100, "Mm")
  13416. },
  13417. {
  13418. name: "Teramacro",
  13419. height: math.unit(100, "Gm")
  13420. },
  13421. {
  13422. name: "Examacro",
  13423. height: math.unit(100, "Em")
  13424. },
  13425. {
  13426. name: "Godly",
  13427. height: math.unit(10000, "Ym")
  13428. },
  13429. {
  13430. name: "Beyond Godly",
  13431. height: math.unit(25, "multiverses")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13437. {
  13438. feminine: {
  13439. height: math.unit(5, "feet"),
  13440. weight: math.unit(100, "lb"),
  13441. name: "Feminine",
  13442. image: {
  13443. source: "./media/characters/sammy-mouse/feminine.svg",
  13444. extra: 2526 / 2425,
  13445. bottom: 0.123
  13446. }
  13447. },
  13448. masculine: {
  13449. height: math.unit(5, "feet"),
  13450. weight: math.unit(100, "lb"),
  13451. name: "Masculine",
  13452. image: {
  13453. source: "./media/characters/sammy-mouse/masculine.svg",
  13454. extra: 2526 / 2425,
  13455. bottom: 0.123
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Micro",
  13462. height: math.unit(5, "inches")
  13463. },
  13464. {
  13465. name: "Normal",
  13466. height: math.unit(5, "feet"),
  13467. default: true
  13468. },
  13469. {
  13470. name: "Macro",
  13471. height: math.unit(60, "feet")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(4, "feet"),
  13480. weight: math.unit(50, "lb"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/kole/front.svg",
  13484. extra: 1423 / 1303,
  13485. bottom: 0.025
  13486. }
  13487. },
  13488. back: {
  13489. height: math.unit(4, "feet"),
  13490. weight: math.unit(50, "lb"),
  13491. name: "Back",
  13492. image: {
  13493. source: "./media/characters/kole/back.svg",
  13494. extra: 1426 / 1280,
  13495. bottom: 0.02
  13496. }
  13497. },
  13498. },
  13499. [
  13500. {
  13501. name: "Normal",
  13502. height: math.unit(4, "feet"),
  13503. default: true
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13509. {
  13510. front: {
  13511. height: math.unit(2.5, "feet"),
  13512. weight: math.unit(32, "lb"),
  13513. name: "Front",
  13514. image: {
  13515. source: "./media/characters/rufran/front.svg",
  13516. extra: 1313/885,
  13517. bottom: 94/1407
  13518. }
  13519. },
  13520. side: {
  13521. height: math.unit(2.5, "feet"),
  13522. weight: math.unit(32, "lb"),
  13523. name: "Side",
  13524. image: {
  13525. source: "./media/characters/rufran/side.svg",
  13526. extra: 1109/852,
  13527. bottom: 118/1227
  13528. }
  13529. },
  13530. back: {
  13531. height: math.unit(2.5, "feet"),
  13532. weight: math.unit(32, "lb"),
  13533. name: "Back",
  13534. image: {
  13535. source: "./media/characters/rufran/back.svg",
  13536. extra: 1280/878,
  13537. bottom: 131/1411
  13538. }
  13539. },
  13540. mouth: {
  13541. height: math.unit(1.13, "feet"),
  13542. name: "Mouth",
  13543. image: {
  13544. source: "./media/characters/rufran/mouth.svg"
  13545. }
  13546. },
  13547. foot: {
  13548. height: math.unit(1.33, "feet"),
  13549. name: "Foot",
  13550. image: {
  13551. source: "./media/characters/rufran/foot.svg"
  13552. }
  13553. },
  13554. koboldFront: {
  13555. height: math.unit(2 + 6 / 12, "feet"),
  13556. weight: math.unit(20, "lb"),
  13557. name: "Front (Kobold)",
  13558. image: {
  13559. source: "./media/characters/rufran/kobold-front.svg",
  13560. extra: 2041 / 1839,
  13561. bottom: 0.055
  13562. }
  13563. },
  13564. koboldBack: {
  13565. height: math.unit(2 + 6 / 12, "feet"),
  13566. weight: math.unit(20, "lb"),
  13567. name: "Back (Kobold)",
  13568. image: {
  13569. source: "./media/characters/rufran/kobold-back.svg",
  13570. extra: 2054 / 1839,
  13571. bottom: 0.01
  13572. }
  13573. },
  13574. koboldHand: {
  13575. height: math.unit(0.2166, "meters"),
  13576. name: "Hand (Kobold)",
  13577. image: {
  13578. source: "./media/characters/rufran/kobold-hand.svg"
  13579. }
  13580. },
  13581. koboldFoot: {
  13582. height: math.unit(0.185, "meters"),
  13583. name: "Foot (Kobold)",
  13584. image: {
  13585. source: "./media/characters/rufran/kobold-foot.svg"
  13586. }
  13587. },
  13588. },
  13589. [
  13590. {
  13591. name: "Micro",
  13592. height: math.unit(1, "inch")
  13593. },
  13594. {
  13595. name: "Normal",
  13596. height: math.unit(2 + 6 / 12, "feet"),
  13597. default: true
  13598. },
  13599. {
  13600. name: "Big",
  13601. height: math.unit(60, "feet")
  13602. },
  13603. {
  13604. name: "Macro",
  13605. height: math.unit(325, "feet")
  13606. },
  13607. ]
  13608. ))
  13609. characterMakers.push(() => makeCharacter(
  13610. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13611. {
  13612. front: {
  13613. height: math.unit(0.3, "meters"),
  13614. weight: math.unit(3.5, "kg"),
  13615. name: "Front",
  13616. image: {
  13617. source: "./media/characters/chip/front.svg",
  13618. extra: 748 / 674
  13619. }
  13620. },
  13621. },
  13622. [
  13623. {
  13624. name: "Micro",
  13625. height: math.unit(1, "inch"),
  13626. default: true
  13627. },
  13628. ]
  13629. ))
  13630. characterMakers.push(() => makeCharacter(
  13631. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13632. {
  13633. side: {
  13634. height: math.unit(2.3, "meters"),
  13635. weight: math.unit(3500, "lb"),
  13636. name: "Side",
  13637. image: {
  13638. source: "./media/characters/torvid/side.svg",
  13639. extra: 1972 / 722,
  13640. bottom: 0.035
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Normal",
  13647. height: math.unit(2.3, "meters"),
  13648. default: true
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13654. {
  13655. front: {
  13656. height: math.unit(2, "meters"),
  13657. weight: math.unit(150.5, "kg"),
  13658. name: "Front",
  13659. image: {
  13660. source: "./media/characters/susan/front.svg",
  13661. extra: 693 / 635,
  13662. bottom: 0.05
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Megamacro",
  13669. height: math.unit(505, "miles"),
  13670. default: true
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13676. {
  13677. front: {
  13678. height: math.unit(6, "feet"),
  13679. weight: math.unit(150, "lb"),
  13680. name: "Front",
  13681. image: {
  13682. source: "./media/characters/raindrops/front.svg",
  13683. extra: 2655 / 2461,
  13684. bottom: 49 / 2705
  13685. }
  13686. },
  13687. back: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(150, "lb"),
  13690. name: "Back",
  13691. image: {
  13692. source: "./media/characters/raindrops/back.svg",
  13693. extra: 2574 / 2400,
  13694. bottom: 65 / 2634
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Micro",
  13701. height: math.unit(6, "inches")
  13702. },
  13703. {
  13704. name: "Normal",
  13705. height: math.unit(6 + 2 / 12, "feet")
  13706. },
  13707. {
  13708. name: "Macro",
  13709. height: math.unit(131, "feet"),
  13710. default: true
  13711. },
  13712. {
  13713. name: "Megamacro",
  13714. height: math.unit(15, "miles")
  13715. },
  13716. {
  13717. name: "Gigamacro",
  13718. height: math.unit(4000, "miles")
  13719. },
  13720. {
  13721. name: "Teramacro",
  13722. height: math.unit(315000, "miles")
  13723. },
  13724. ]
  13725. ))
  13726. characterMakers.push(() => makeCharacter(
  13727. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13728. {
  13729. front: {
  13730. height: math.unit(2.794, "meters"),
  13731. weight: math.unit(325, "kg"),
  13732. name: "Front",
  13733. image: {
  13734. source: "./media/characters/tezwa/front.svg",
  13735. extra: 2083 / 1906,
  13736. bottom: 0.031
  13737. }
  13738. },
  13739. foot: {
  13740. height: math.unit(0.687, "meters"),
  13741. name: "Foot",
  13742. image: {
  13743. source: "./media/characters/tezwa/foot.svg"
  13744. }
  13745. },
  13746. },
  13747. [
  13748. {
  13749. name: "Normal",
  13750. height: math.unit(9 + 2 / 12, "feet"),
  13751. default: true
  13752. },
  13753. ]
  13754. ))
  13755. characterMakers.push(() => makeCharacter(
  13756. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13757. {
  13758. front: {
  13759. height: math.unit(58, "feet"),
  13760. weight: math.unit(89000, "lb"),
  13761. name: "Front",
  13762. image: {
  13763. source: "./media/characters/typhus/front.svg",
  13764. extra: 816 / 800,
  13765. bottom: 0.065
  13766. }
  13767. },
  13768. },
  13769. [
  13770. {
  13771. name: "Macro",
  13772. height: math.unit(58, "feet"),
  13773. default: true
  13774. },
  13775. ]
  13776. ))
  13777. characterMakers.push(() => makeCharacter(
  13778. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13779. {
  13780. front: {
  13781. height: math.unit(12, "feet"),
  13782. weight: math.unit(6, "tonnes"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/lyra-von-wulf/front.svg",
  13786. extra: 1,
  13787. bottom: 0.10
  13788. }
  13789. },
  13790. frontMecha: {
  13791. height: math.unit(12, "feet"),
  13792. weight: math.unit(12, "tonnes"),
  13793. name: "Front (Mecha)",
  13794. image: {
  13795. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13796. extra: 1,
  13797. bottom: 0.042
  13798. }
  13799. },
  13800. maw: {
  13801. height: math.unit(2.2, "feet"),
  13802. name: "Maw",
  13803. image: {
  13804. source: "./media/characters/lyra-von-wulf/maw.svg"
  13805. }
  13806. },
  13807. },
  13808. [
  13809. {
  13810. name: "Normal",
  13811. height: math.unit(12, "feet"),
  13812. default: true
  13813. },
  13814. {
  13815. name: "Classic",
  13816. height: math.unit(50, "feet")
  13817. },
  13818. {
  13819. name: "Macro",
  13820. height: math.unit(500, "feet")
  13821. },
  13822. {
  13823. name: "Megamacro",
  13824. height: math.unit(1, "mile")
  13825. },
  13826. {
  13827. name: "Gigamacro",
  13828. height: math.unit(400, "miles")
  13829. },
  13830. {
  13831. name: "Teramacro",
  13832. height: math.unit(22000, "miles")
  13833. },
  13834. {
  13835. name: "Solarmacro",
  13836. height: math.unit(8600000, "miles")
  13837. },
  13838. {
  13839. name: "Galactic",
  13840. height: math.unit(1057000, "lightyears")
  13841. },
  13842. ]
  13843. ))
  13844. characterMakers.push(() => makeCharacter(
  13845. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13846. {
  13847. front: {
  13848. height: math.unit(6 + 10 / 12, "feet"),
  13849. weight: math.unit(150, "lb"),
  13850. name: "Front",
  13851. image: {
  13852. source: "./media/characters/dixon/front.svg",
  13853. extra: 3361 / 3209,
  13854. bottom: 0.01
  13855. }
  13856. },
  13857. },
  13858. [
  13859. {
  13860. name: "Normal",
  13861. height: math.unit(6 + 10 / 12, "feet"),
  13862. default: true
  13863. },
  13864. {
  13865. name: "Big",
  13866. height: math.unit(12, "meters")
  13867. },
  13868. {
  13869. name: "Macro",
  13870. height: math.unit(500, "meters")
  13871. },
  13872. {
  13873. name: "Megamacro",
  13874. height: math.unit(2, "km")
  13875. },
  13876. ]
  13877. ))
  13878. characterMakers.push(() => makeCharacter(
  13879. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13880. {
  13881. front: {
  13882. height: math.unit(185, "cm"),
  13883. weight: math.unit(68, "kg"),
  13884. name: "Front",
  13885. image: {
  13886. source: "./media/characters/kauko/front.svg",
  13887. extra: 1455 / 1421,
  13888. bottom: 0.03
  13889. }
  13890. },
  13891. back: {
  13892. height: math.unit(185, "cm"),
  13893. weight: math.unit(68, "kg"),
  13894. name: "Back",
  13895. image: {
  13896. source: "./media/characters/kauko/back.svg",
  13897. extra: 1455 / 1421,
  13898. bottom: 0.004
  13899. }
  13900. },
  13901. },
  13902. [
  13903. {
  13904. name: "Normal",
  13905. height: math.unit(185, "cm"),
  13906. default: true
  13907. },
  13908. ]
  13909. ))
  13910. characterMakers.push(() => makeCharacter(
  13911. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13912. {
  13913. frontSfw: {
  13914. height: math.unit(5, "meters"),
  13915. weight: math.unit(4250, "lb"),
  13916. name: "Front",
  13917. image: {
  13918. source: "./media/characters/varg/front-sfw.svg",
  13919. extra: 1103/1010,
  13920. bottom: 50/1153
  13921. },
  13922. form: "anthro",
  13923. default: true
  13924. },
  13925. backSfw: {
  13926. height: math.unit(5, "meters"),
  13927. weight: math.unit(4250, "lb"),
  13928. name: "Back",
  13929. image: {
  13930. source: "./media/characters/varg/back-sfw.svg",
  13931. extra: 1038/1022,
  13932. bottom: 36/1074
  13933. },
  13934. form: "anthro"
  13935. },
  13936. frontNsfw: {
  13937. height: math.unit(5, "meters"),
  13938. weight: math.unit(4250, "lb"),
  13939. name: "Front (NSFW)",
  13940. image: {
  13941. source: "./media/characters/varg/front-nsfw.svg",
  13942. extra: 1103/1010,
  13943. bottom: 50/1153
  13944. },
  13945. form: "anthro"
  13946. },
  13947. sheath: {
  13948. height: math.unit(3.8, "feet"),
  13949. weight: math.unit(90, "kilograms"),
  13950. name: "Sheath",
  13951. image: {
  13952. source: "./media/characters/varg/sheath.svg"
  13953. },
  13954. form: "anthro"
  13955. },
  13956. dick: {
  13957. height: math.unit(4.6, "feet"),
  13958. weight: math.unit(451, "kilograms"),
  13959. name: "Dick",
  13960. image: {
  13961. source: "./media/characters/varg/dick.svg"
  13962. },
  13963. form: "anthro"
  13964. },
  13965. feralSfw: {
  13966. height: math.unit(5, "meters"),
  13967. weight: math.unit(100000, "lb"),
  13968. name: "Side",
  13969. image: {
  13970. source: "./media/characters/varg/feral-sfw.svg",
  13971. extra: 1065/511,
  13972. bottom: 211/1276
  13973. },
  13974. form: "feral",
  13975. default: true
  13976. },
  13977. feralNsfw: {
  13978. height: math.unit(5, "meters"),
  13979. weight: math.unit(100000, "lb"),
  13980. name: "Side (NSFW)",
  13981. image: {
  13982. source: "./media/characters/varg/feral-nsfw.svg",
  13983. extra: 1065/511,
  13984. bottom: 211/1276
  13985. },
  13986. form: "feral",
  13987. },
  13988. feralSheath: {
  13989. height: math.unit(9.8, "feet"),
  13990. weight: math.unit(2000, "kilograms"),
  13991. name: "Sheath",
  13992. image: {
  13993. source: "./media/characters/varg/sheath.svg"
  13994. },
  13995. form: "feral"
  13996. },
  13997. feralDick: {
  13998. height: math.unit(13.11, "feet"),
  13999. weight: math.unit(10440, "kilograms"),
  14000. name: "Dick",
  14001. image: {
  14002. source: "./media/characters/varg/dick.svg"
  14003. },
  14004. form: "feral"
  14005. },
  14006. },
  14007. [
  14008. {
  14009. name: "Normal",
  14010. height: math.unit(5, "meters"),
  14011. form: "anthro"
  14012. },
  14013. {
  14014. name: "Macro",
  14015. height: math.unit(200, "meters"),
  14016. form: "anthro"
  14017. },
  14018. {
  14019. name: "Megamacro",
  14020. height: math.unit(20, "kilometers"),
  14021. form: "anthro"
  14022. },
  14023. {
  14024. name: "True Size",
  14025. height: math.unit(211, "km"),
  14026. form: "anthro",
  14027. default: true
  14028. },
  14029. {
  14030. name: "Gigamacro",
  14031. height: math.unit(1000, "km"),
  14032. form: "anthro"
  14033. },
  14034. {
  14035. name: "Gigamacro+",
  14036. height: math.unit(8000, "km"),
  14037. form: "anthro"
  14038. },
  14039. {
  14040. name: "Teramacro",
  14041. height: math.unit(1000000, "km"),
  14042. form: "anthro"
  14043. },
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(5, "meters"),
  14047. form: "feral"
  14048. },
  14049. {
  14050. name: "Macro",
  14051. height: math.unit(200, "meters"),
  14052. form: "feral"
  14053. },
  14054. {
  14055. name: "Megamacro",
  14056. height: math.unit(20, "kilometers"),
  14057. form: "feral"
  14058. },
  14059. {
  14060. name: "True Size",
  14061. height: math.unit(211, "km"),
  14062. form: "feral",
  14063. default: true
  14064. },
  14065. {
  14066. name: "Gigamacro",
  14067. height: math.unit(1000, "km"),
  14068. form: "feral"
  14069. },
  14070. {
  14071. name: "Gigamacro+",
  14072. height: math.unit(8000, "km"),
  14073. form: "feral"
  14074. },
  14075. {
  14076. name: "Teramacro",
  14077. height: math.unit(1000000, "km"),
  14078. form: "feral"
  14079. },
  14080. ],
  14081. {
  14082. "anthro": {
  14083. name: "Anthro",
  14084. default: true
  14085. },
  14086. "feral": {
  14087. name: "Feral",
  14088. },
  14089. }
  14090. ))
  14091. characterMakers.push(() => makeCharacter(
  14092. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14093. {
  14094. front: {
  14095. height: math.unit(7 + 7 / 12, "feet"),
  14096. weight: math.unit(267, "lb"),
  14097. name: "Front",
  14098. image: {
  14099. source: "./media/characters/dayza/front.svg",
  14100. extra: 1262 / 1200,
  14101. bottom: 0.035
  14102. }
  14103. },
  14104. side: {
  14105. height: math.unit(7 + 7 / 12, "feet"),
  14106. weight: math.unit(267, "lb"),
  14107. name: "Side",
  14108. image: {
  14109. source: "./media/characters/dayza/side.svg",
  14110. extra: 1295 / 1245,
  14111. bottom: 0.05
  14112. }
  14113. },
  14114. back: {
  14115. height: math.unit(7 + 7 / 12, "feet"),
  14116. weight: math.unit(267, "lb"),
  14117. name: "Back",
  14118. image: {
  14119. source: "./media/characters/dayza/back.svg",
  14120. extra: 1241 / 1170
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Normal",
  14127. height: math.unit(7 + 7 / 12, "feet"),
  14128. default: true
  14129. },
  14130. {
  14131. name: "Macro",
  14132. height: math.unit(155, "feet")
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14138. {
  14139. front: {
  14140. height: math.unit(6 + 5 / 12, "feet"),
  14141. weight: math.unit(160, "lb"),
  14142. name: "Front",
  14143. image: {
  14144. source: "./media/characters/xanthos/front.svg",
  14145. extra: 1,
  14146. bottom: 0.04
  14147. }
  14148. },
  14149. back: {
  14150. height: math.unit(6 + 5 / 12, "feet"),
  14151. weight: math.unit(160, "lb"),
  14152. name: "Back",
  14153. image: {
  14154. source: "./media/characters/xanthos/back.svg",
  14155. extra: 1,
  14156. bottom: 0.03
  14157. }
  14158. },
  14159. hand: {
  14160. height: math.unit(0.928, "feet"),
  14161. name: "Hand",
  14162. image: {
  14163. source: "./media/characters/xanthos/hand.svg"
  14164. }
  14165. },
  14166. foot: {
  14167. height: math.unit(1.286, "feet"),
  14168. name: "Foot",
  14169. image: {
  14170. source: "./media/characters/xanthos/foot.svg"
  14171. }
  14172. },
  14173. },
  14174. [
  14175. {
  14176. name: "Normal",
  14177. height: math.unit(6 + 5 / 12, "feet"),
  14178. default: true
  14179. },
  14180. {
  14181. name: "Normal+",
  14182. height: math.unit(6, "meters")
  14183. },
  14184. {
  14185. name: "Macro",
  14186. height: math.unit(40, "feet")
  14187. },
  14188. {
  14189. name: "Macro+",
  14190. height: math.unit(200, "meters")
  14191. },
  14192. {
  14193. name: "Megamacro",
  14194. height: math.unit(20, "km")
  14195. },
  14196. {
  14197. name: "Megamacro+",
  14198. height: math.unit(100, "km")
  14199. },
  14200. {
  14201. name: "Gigamacro",
  14202. height: math.unit(200, "megameters")
  14203. },
  14204. {
  14205. name: "Gigamacro+",
  14206. height: math.unit(1.5, "gigameters")
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14212. {
  14213. front: {
  14214. height: math.unit(6 + 3 / 12, "feet"),
  14215. weight: math.unit(215, "lb"),
  14216. name: "Front",
  14217. image: {
  14218. source: "./media/characters/grynn/front.svg",
  14219. extra: 4627 / 4209,
  14220. bottom: 0.047
  14221. }
  14222. },
  14223. },
  14224. [
  14225. {
  14226. name: "Micro",
  14227. height: math.unit(6, "inches")
  14228. },
  14229. {
  14230. name: "Normal",
  14231. height: math.unit(6 + 3 / 12, "feet"),
  14232. default: true
  14233. },
  14234. {
  14235. name: "Big",
  14236. height: math.unit(104, "feet")
  14237. },
  14238. {
  14239. name: "Macro",
  14240. height: math.unit(944, "feet")
  14241. },
  14242. {
  14243. name: "Macro+",
  14244. height: math.unit(9480, "feet")
  14245. },
  14246. {
  14247. name: "Megamacro",
  14248. height: math.unit(78752, "feet")
  14249. },
  14250. {
  14251. name: "Megamacro+",
  14252. height: math.unit(630128, "feet")
  14253. },
  14254. {
  14255. name: "Megamacro++",
  14256. height: math.unit(3150695, "feet")
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14262. {
  14263. front: {
  14264. height: math.unit(7 + 5 / 12, "feet"),
  14265. weight: math.unit(450, "lb"),
  14266. name: "Front",
  14267. image: {
  14268. source: "./media/characters/mocha-aura/front.svg",
  14269. extra: 1907 / 1817,
  14270. bottom: 0.04
  14271. }
  14272. },
  14273. back: {
  14274. height: math.unit(7 + 5 / 12, "feet"),
  14275. weight: math.unit(450, "lb"),
  14276. name: "Back",
  14277. image: {
  14278. source: "./media/characters/mocha-aura/back.svg",
  14279. extra: 1900 / 1825,
  14280. bottom: 0.045
  14281. }
  14282. },
  14283. },
  14284. [
  14285. {
  14286. name: "Nano",
  14287. height: math.unit(1, "nm")
  14288. },
  14289. {
  14290. name: "Megamicro",
  14291. height: math.unit(1, "mm")
  14292. },
  14293. {
  14294. name: "Micro",
  14295. height: math.unit(3, "inches")
  14296. },
  14297. {
  14298. name: "Normal",
  14299. height: math.unit(7 + 5 / 12, "feet"),
  14300. default: true
  14301. },
  14302. {
  14303. name: "Macro",
  14304. height: math.unit(30, "feet")
  14305. },
  14306. {
  14307. name: "Megamacro",
  14308. height: math.unit(3500, "feet")
  14309. },
  14310. {
  14311. name: "Teramacro",
  14312. height: math.unit(500000, "miles")
  14313. },
  14314. {
  14315. name: "Petamacro",
  14316. height: math.unit(50000000000000000, "parsecs")
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14322. {
  14323. front: {
  14324. height: math.unit(6, "feet"),
  14325. weight: math.unit(150, "lb"),
  14326. name: "Front",
  14327. image: {
  14328. source: "./media/characters/ilisha-devya/front.svg",
  14329. extra: 1053/1049,
  14330. bottom: 270/1323
  14331. }
  14332. },
  14333. back: {
  14334. height: math.unit(6, "feet"),
  14335. weight: math.unit(150, "lb"),
  14336. name: "Back",
  14337. image: {
  14338. source: "./media/characters/ilisha-devya/back.svg",
  14339. extra: 1131/1128,
  14340. bottom: 39/1170
  14341. }
  14342. },
  14343. },
  14344. [
  14345. {
  14346. name: "Macro",
  14347. height: math.unit(500, "feet"),
  14348. default: true
  14349. },
  14350. {
  14351. name: "Megamacro",
  14352. height: math.unit(10, "miles")
  14353. },
  14354. {
  14355. name: "Gigamacro",
  14356. height: math.unit(100000, "miles")
  14357. },
  14358. {
  14359. name: "Examacro",
  14360. height: math.unit(1e9, "lightyears")
  14361. },
  14362. {
  14363. name: "Omniversal",
  14364. height: math.unit(1e33, "lightyears")
  14365. },
  14366. {
  14367. name: "Beyond Infinite",
  14368. height: math.unit(1e100, "lightyears")
  14369. },
  14370. ]
  14371. ))
  14372. characterMakers.push(() => makeCharacter(
  14373. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14374. {
  14375. Side: {
  14376. height: math.unit(6, "feet"),
  14377. weight: math.unit(150, "lb"),
  14378. name: "Side",
  14379. image: {
  14380. source: "./media/characters/mira/side.svg",
  14381. extra: 900 / 799,
  14382. bottom: 0.02
  14383. }
  14384. },
  14385. },
  14386. [
  14387. {
  14388. name: "Human Size",
  14389. height: math.unit(6, "feet")
  14390. },
  14391. {
  14392. name: "Macro",
  14393. height: math.unit(100, "feet"),
  14394. default: true
  14395. },
  14396. {
  14397. name: "Megamacro",
  14398. height: math.unit(10, "miles")
  14399. },
  14400. {
  14401. name: "Gigamacro",
  14402. height: math.unit(25000, "miles")
  14403. },
  14404. {
  14405. name: "Teramacro",
  14406. height: math.unit(300, "AU")
  14407. },
  14408. {
  14409. name: "Full Size",
  14410. height: math.unit(4.5e10, "lightyears")
  14411. },
  14412. ]
  14413. ))
  14414. characterMakers.push(() => makeCharacter(
  14415. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14416. {
  14417. front: {
  14418. height: math.unit(6, "feet"),
  14419. weight: math.unit(150, "lb"),
  14420. name: "Front",
  14421. image: {
  14422. source: "./media/characters/holly/front.svg",
  14423. extra: 639 / 606
  14424. }
  14425. },
  14426. back: {
  14427. height: math.unit(6, "feet"),
  14428. weight: math.unit(150, "lb"),
  14429. name: "Back",
  14430. image: {
  14431. source: "./media/characters/holly/back.svg",
  14432. extra: 623 / 598
  14433. }
  14434. },
  14435. frontWorking: {
  14436. height: math.unit(6, "feet"),
  14437. weight: math.unit(150, "lb"),
  14438. name: "Front (Working)",
  14439. image: {
  14440. source: "./media/characters/holly/front-working.svg",
  14441. extra: 607 / 577,
  14442. bottom: 0.048
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Normal",
  14449. height: math.unit(12 + 3 / 12, "feet"),
  14450. default: true
  14451. },
  14452. ]
  14453. ))
  14454. characterMakers.push(() => makeCharacter(
  14455. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14456. {
  14457. front: {
  14458. height: math.unit(6, "feet"),
  14459. weight: math.unit(150, "lb"),
  14460. name: "Front",
  14461. image: {
  14462. source: "./media/characters/porter/front.svg",
  14463. extra: 1,
  14464. bottom: 0.01
  14465. }
  14466. },
  14467. frontRobes: {
  14468. height: math.unit(6, "feet"),
  14469. weight: math.unit(150, "lb"),
  14470. name: "Front (Robes)",
  14471. image: {
  14472. source: "./media/characters/porter/front-robes.svg",
  14473. extra: 1.01,
  14474. bottom: 0.01
  14475. }
  14476. },
  14477. },
  14478. [
  14479. {
  14480. name: "Normal",
  14481. height: math.unit(11 + 9 / 12, "feet"),
  14482. default: true
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14488. {
  14489. legendary: {
  14490. height: math.unit(6, "feet"),
  14491. weight: math.unit(150, "lb"),
  14492. name: "Legendary",
  14493. image: {
  14494. source: "./media/characters/lucy/legendary.svg",
  14495. extra: 1355 / 1100,
  14496. bottom: 0.045
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Legendary",
  14503. height: math.unit(86882 * 2, "miles"),
  14504. default: true
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14510. {
  14511. front: {
  14512. height: math.unit(6, "feet"),
  14513. weight: math.unit(150, "lb"),
  14514. name: "Front",
  14515. image: {
  14516. source: "./media/characters/drusilla/front.svg",
  14517. extra: 678 / 635,
  14518. bottom: 0.03
  14519. }
  14520. },
  14521. back: {
  14522. height: math.unit(6, "feet"),
  14523. weight: math.unit(150, "lb"),
  14524. name: "Back",
  14525. image: {
  14526. source: "./media/characters/drusilla/back.svg",
  14527. extra: 678 / 635,
  14528. bottom: 0.005
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Macro",
  14535. height: math.unit(100, "feet")
  14536. },
  14537. {
  14538. name: "Canon Height",
  14539. height: math.unit(2000, "feet"),
  14540. default: true
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14546. {
  14547. front: {
  14548. height: math.unit(6, "feet"),
  14549. weight: math.unit(180, "lb"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/renard-thatch/front.svg",
  14553. extra: 2411 / 2275,
  14554. bottom: 0.01
  14555. }
  14556. },
  14557. frontPosing: {
  14558. height: math.unit(6, "feet"),
  14559. weight: math.unit(180, "lb"),
  14560. name: "Front (Posing)",
  14561. image: {
  14562. source: "./media/characters/renard-thatch/front-posing.svg",
  14563. extra: 2381 / 2261,
  14564. bottom: 0.01
  14565. }
  14566. },
  14567. back: {
  14568. height: math.unit(6, "feet"),
  14569. weight: math.unit(180, "lb"),
  14570. name: "Back",
  14571. image: {
  14572. source: "./media/characters/renard-thatch/back.svg",
  14573. extra: 2428 / 2288
  14574. }
  14575. },
  14576. },
  14577. [
  14578. {
  14579. name: "Micro",
  14580. height: math.unit(3, "inches")
  14581. },
  14582. {
  14583. name: "Default",
  14584. height: math.unit(6, "feet"),
  14585. default: true
  14586. },
  14587. {
  14588. name: "Macro",
  14589. height: math.unit(75, "feet")
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14595. {
  14596. front: {
  14597. height: math.unit(1450, "feet"),
  14598. weight: math.unit(1.21e6, "tons"),
  14599. name: "Front",
  14600. image: {
  14601. source: "./media/characters/sekvra/front.svg",
  14602. extra: 1193/1190,
  14603. bottom: 78/1271
  14604. }
  14605. },
  14606. side: {
  14607. height: math.unit(1450, "feet"),
  14608. weight: math.unit(1.21e6, "tons"),
  14609. name: "Side",
  14610. image: {
  14611. source: "./media/characters/sekvra/side.svg",
  14612. extra: 1193/1190,
  14613. bottom: 52/1245
  14614. }
  14615. },
  14616. back: {
  14617. height: math.unit(1450, "feet"),
  14618. weight: math.unit(1.21e6, "tons"),
  14619. name: "Back",
  14620. image: {
  14621. source: "./media/characters/sekvra/back.svg",
  14622. extra: 1219/1216,
  14623. bottom: 21/1240
  14624. }
  14625. },
  14626. frontClothed: {
  14627. height: math.unit(1450, "feet"),
  14628. weight: math.unit(1.21e6, "tons"),
  14629. name: "Front (Clothed)",
  14630. image: {
  14631. source: "./media/characters/sekvra/front-clothed.svg",
  14632. extra: 1192/1189,
  14633. bottom: 79/1271
  14634. }
  14635. },
  14636. },
  14637. [
  14638. {
  14639. name: "Macro",
  14640. height: math.unit(1450, "feet"),
  14641. default: true
  14642. },
  14643. {
  14644. name: "Megamacro",
  14645. height: math.unit(15000, "feet")
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14651. {
  14652. front: {
  14653. height: math.unit(6, "feet"),
  14654. weight: math.unit(150, "lb"),
  14655. name: "Front",
  14656. image: {
  14657. source: "./media/characters/carmine/front.svg",
  14658. extra: 1,
  14659. bottom: 0.035
  14660. }
  14661. },
  14662. frontArmor: {
  14663. height: math.unit(6, "feet"),
  14664. weight: math.unit(150, "lb"),
  14665. name: "Front (Armor)",
  14666. image: {
  14667. source: "./media/characters/carmine/front-armor.svg",
  14668. extra: 1,
  14669. bottom: 0.035
  14670. }
  14671. },
  14672. },
  14673. [
  14674. {
  14675. name: "Large",
  14676. height: math.unit(1, "mile")
  14677. },
  14678. {
  14679. name: "Huge",
  14680. height: math.unit(40, "miles"),
  14681. default: true
  14682. },
  14683. {
  14684. name: "Colossal",
  14685. height: math.unit(2500, "miles")
  14686. },
  14687. ]
  14688. ))
  14689. characterMakers.push(() => makeCharacter(
  14690. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14691. {
  14692. front: {
  14693. height: math.unit(6, "feet"),
  14694. weight: math.unit(150, "lb"),
  14695. name: "Front",
  14696. image: {
  14697. source: "./media/characters/elyssia/front.svg",
  14698. extra: 2201 / 2035,
  14699. bottom: 0.05
  14700. }
  14701. },
  14702. frontClothed: {
  14703. height: math.unit(6, "feet"),
  14704. weight: math.unit(150, "lb"),
  14705. name: "Front (Clothed)",
  14706. image: {
  14707. source: "./media/characters/elyssia/front-clothed.svg",
  14708. extra: 2201 / 2035,
  14709. bottom: 0.05
  14710. }
  14711. },
  14712. back: {
  14713. height: math.unit(6, "feet"),
  14714. weight: math.unit(150, "lb"),
  14715. name: "Back",
  14716. image: {
  14717. source: "./media/characters/elyssia/back.svg",
  14718. extra: 2201 / 2035,
  14719. bottom: 0.013
  14720. }
  14721. },
  14722. },
  14723. [
  14724. {
  14725. name: "Smaller",
  14726. height: math.unit(150, "feet")
  14727. },
  14728. {
  14729. name: "Standard",
  14730. height: math.unit(1400, "feet"),
  14731. default: true
  14732. },
  14733. {
  14734. name: "Distracted",
  14735. height: math.unit(15000, "feet")
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14741. {
  14742. front: {
  14743. height: math.unit(7 + 4/12, "feet"),
  14744. weight: math.unit(690, "lb"),
  14745. name: "Front",
  14746. image: {
  14747. source: "./media/characters/geno-maxwell/front.svg",
  14748. extra: 984/856,
  14749. bottom: 87/1071
  14750. }
  14751. },
  14752. back: {
  14753. height: math.unit(7 + 4/12, "feet"),
  14754. weight: math.unit(690, "lb"),
  14755. name: "Back",
  14756. image: {
  14757. source: "./media/characters/geno-maxwell/back.svg",
  14758. extra: 981/854,
  14759. bottom: 57/1038
  14760. }
  14761. },
  14762. frontCostume: {
  14763. height: math.unit(7 + 4/12, "feet"),
  14764. weight: math.unit(690, "lb"),
  14765. name: "Front (Costume)",
  14766. image: {
  14767. source: "./media/characters/geno-maxwell/front-costume.svg",
  14768. extra: 984/856,
  14769. bottom: 87/1071
  14770. }
  14771. },
  14772. backcostume: {
  14773. height: math.unit(7 + 4/12, "feet"),
  14774. weight: math.unit(690, "lb"),
  14775. name: "Back (Costume)",
  14776. image: {
  14777. source: "./media/characters/geno-maxwell/back-costume.svg",
  14778. extra: 981/854,
  14779. bottom: 57/1038
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Micro",
  14786. height: math.unit(3, "inches")
  14787. },
  14788. {
  14789. name: "Normal",
  14790. height: math.unit(7 + 4 / 12, "feet"),
  14791. default: true
  14792. },
  14793. {
  14794. name: "Macro",
  14795. height: math.unit(220, "feet")
  14796. },
  14797. {
  14798. name: "Megamacro",
  14799. height: math.unit(11, "miles")
  14800. },
  14801. ]
  14802. ))
  14803. characterMakers.push(() => makeCharacter(
  14804. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14805. {
  14806. front: {
  14807. height: math.unit(7 + 4/12, "feet"),
  14808. weight: math.unit(750, "lb"),
  14809. name: "Front",
  14810. image: {
  14811. source: "./media/characters/regena-maxwell/front.svg",
  14812. extra: 984/856,
  14813. bottom: 87/1071
  14814. }
  14815. },
  14816. back: {
  14817. height: math.unit(7 + 4/12, "feet"),
  14818. weight: math.unit(750, "lb"),
  14819. name: "Back",
  14820. image: {
  14821. source: "./media/characters/regena-maxwell/back.svg",
  14822. extra: 981/854,
  14823. bottom: 57/1038
  14824. }
  14825. },
  14826. frontCostume: {
  14827. height: math.unit(7 + 4/12, "feet"),
  14828. weight: math.unit(750, "lb"),
  14829. name: "Front (Costume)",
  14830. image: {
  14831. source: "./media/characters/regena-maxwell/front-costume.svg",
  14832. extra: 984/856,
  14833. bottom: 87/1071
  14834. }
  14835. },
  14836. backcostume: {
  14837. height: math.unit(7 + 4/12, "feet"),
  14838. weight: math.unit(750, "lb"),
  14839. name: "Back (Costume)",
  14840. image: {
  14841. source: "./media/characters/regena-maxwell/back-costume.svg",
  14842. extra: 981/854,
  14843. bottom: 57/1038
  14844. }
  14845. },
  14846. },
  14847. [
  14848. {
  14849. name: "Normal",
  14850. height: math.unit(7 + 4 / 12, "feet"),
  14851. default: true
  14852. },
  14853. {
  14854. name: "Macro",
  14855. height: math.unit(220, "feet")
  14856. },
  14857. {
  14858. name: "Megamacro",
  14859. height: math.unit(11, "miles")
  14860. },
  14861. ]
  14862. ))
  14863. characterMakers.push(() => makeCharacter(
  14864. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14865. {
  14866. front: {
  14867. height: math.unit(6, "feet"),
  14868. weight: math.unit(150, "lb"),
  14869. name: "Front",
  14870. image: {
  14871. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14872. extra: 860 / 690,
  14873. bottom: 0.03
  14874. }
  14875. },
  14876. },
  14877. [
  14878. {
  14879. name: "Normal",
  14880. height: math.unit(1.7, "meters"),
  14881. default: true
  14882. },
  14883. ]
  14884. ))
  14885. characterMakers.push(() => makeCharacter(
  14886. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14887. {
  14888. front: {
  14889. height: math.unit(6, "feet"),
  14890. weight: math.unit(150, "lb"),
  14891. name: "Front",
  14892. image: {
  14893. source: "./media/characters/quilly/front.svg",
  14894. extra: 890 / 776
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Gigamacro",
  14901. height: math.unit(404090, "miles"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(7 + 8 / 12, "feet"),
  14911. weight: math.unit(350, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/tempest/front.svg",
  14915. extra: 1175 / 1086,
  14916. bottom: 0.02
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(7 + 8 / 12, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14930. {
  14931. side: {
  14932. height: math.unit(4 + 5 / 12, "feet"),
  14933. weight: math.unit(80, "lb"),
  14934. name: "Side",
  14935. image: {
  14936. source: "./media/characters/rodger/side.svg",
  14937. extra: 1235 / 1118
  14938. }
  14939. },
  14940. },
  14941. [
  14942. {
  14943. name: "Micro",
  14944. height: math.unit(1, "inch")
  14945. },
  14946. {
  14947. name: "Normal",
  14948. height: math.unit(4 + 5 / 12, "feet"),
  14949. default: true
  14950. },
  14951. {
  14952. name: "Macro",
  14953. height: math.unit(120, "feet")
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14959. {
  14960. front: {
  14961. height: math.unit(6, "feet"),
  14962. weight: math.unit(150, "lb"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/danyel/front.svg",
  14966. extra: 1185 / 1123,
  14967. bottom: 0.05
  14968. }
  14969. },
  14970. },
  14971. [
  14972. {
  14973. name: "Shrunken",
  14974. height: math.unit(0.5, "mm")
  14975. },
  14976. {
  14977. name: "Micro",
  14978. height: math.unit(1, "mm"),
  14979. default: true
  14980. },
  14981. {
  14982. name: "Upsized",
  14983. height: math.unit(5 + 5 / 12, "feet")
  14984. },
  14985. ]
  14986. ))
  14987. characterMakers.push(() => makeCharacter(
  14988. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14989. {
  14990. front: {
  14991. height: math.unit(5 + 6 / 12, "feet"),
  14992. weight: math.unit(200, "lb"),
  14993. name: "Front",
  14994. image: {
  14995. source: "./media/characters/vivian-bijoux/front.svg",
  14996. extra: 1217/1209,
  14997. bottom: 76/1293
  14998. }
  14999. },
  15000. back: {
  15001. height: math.unit(5 + 6 / 12, "feet"),
  15002. weight: math.unit(200, "lb"),
  15003. name: "Back",
  15004. image: {
  15005. source: "./media/characters/vivian-bijoux/back.svg",
  15006. extra: 1214/1208,
  15007. bottom: 51/1265
  15008. }
  15009. },
  15010. dressed: {
  15011. height: math.unit(5 + 6 / 12, "feet"),
  15012. weight: math.unit(200, "lb"),
  15013. name: "Dressed",
  15014. image: {
  15015. source: "./media/characters/vivian-bijoux/dressed.svg",
  15016. extra: 1217/1209,
  15017. bottom: 76/1293
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Normal",
  15024. height: math.unit(5 + 6 / 12, "feet"),
  15025. default: true
  15026. },
  15027. {
  15028. name: "Bad Dream",
  15029. height: math.unit(500, "feet")
  15030. },
  15031. {
  15032. name: "Nightmare",
  15033. height: math.unit(500, "miles")
  15034. },
  15035. ]
  15036. ))
  15037. characterMakers.push(() => makeCharacter(
  15038. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15039. {
  15040. front: {
  15041. height: math.unit(6 + 1 / 12, "feet"),
  15042. weight: math.unit(260, "lb"),
  15043. name: "Front",
  15044. image: {
  15045. source: "./media/characters/zeta/front.svg",
  15046. extra: 1968 / 1889,
  15047. bottom: 0.06
  15048. }
  15049. },
  15050. back: {
  15051. height: math.unit(6 + 1 / 12, "feet"),
  15052. weight: math.unit(260, "lb"),
  15053. name: "Back",
  15054. image: {
  15055. source: "./media/characters/zeta/back.svg",
  15056. extra: 1944 / 1858,
  15057. bottom: 0.03
  15058. }
  15059. },
  15060. hand: {
  15061. height: math.unit(1.112, "feet"),
  15062. name: "Hand",
  15063. image: {
  15064. source: "./media/characters/zeta/hand.svg"
  15065. }
  15066. },
  15067. foot: {
  15068. height: math.unit(1.48, "feet"),
  15069. name: "Foot",
  15070. image: {
  15071. source: "./media/characters/zeta/foot.svg"
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Micro",
  15078. height: math.unit(6, "inches")
  15079. },
  15080. {
  15081. name: "Normal",
  15082. height: math.unit(6 + 1 / 12, "feet"),
  15083. default: true
  15084. },
  15085. {
  15086. name: "Macro",
  15087. height: math.unit(20, "feet")
  15088. },
  15089. ]
  15090. ))
  15091. characterMakers.push(() => makeCharacter(
  15092. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15093. {
  15094. front: {
  15095. height: math.unit(6, "feet"),
  15096. weight: math.unit(150, "lb"),
  15097. name: "Front",
  15098. image: {
  15099. source: "./media/characters/jamie-larsen/front.svg",
  15100. extra: 962 / 933,
  15101. bottom: 0.02
  15102. }
  15103. },
  15104. back: {
  15105. height: math.unit(6, "feet"),
  15106. weight: math.unit(150, "lb"),
  15107. name: "Back",
  15108. image: {
  15109. source: "./media/characters/jamie-larsen/back.svg",
  15110. extra: 997 / 946
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Macro",
  15117. height: math.unit(28 + 7 / 12, "feet"),
  15118. default: true
  15119. },
  15120. {
  15121. name: "Macro+",
  15122. height: math.unit(180, "feet")
  15123. },
  15124. {
  15125. name: "Megamacro",
  15126. height: math.unit(10, "miles")
  15127. },
  15128. {
  15129. name: "Gigamacro",
  15130. height: math.unit(200000, "miles")
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(6, "feet"),
  15139. weight: math.unit(120, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/vance/front.svg",
  15143. extra: 1980 / 1890,
  15144. bottom: 0.09
  15145. }
  15146. },
  15147. back: {
  15148. height: math.unit(6, "feet"),
  15149. weight: math.unit(120, "lb"),
  15150. name: "Back",
  15151. image: {
  15152. source: "./media/characters/vance/back.svg",
  15153. extra: 2081 / 1994,
  15154. bottom: 0.014
  15155. }
  15156. },
  15157. hand: {
  15158. height: math.unit(0.88, "feet"),
  15159. name: "Hand",
  15160. image: {
  15161. source: "./media/characters/vance/hand.svg"
  15162. }
  15163. },
  15164. foot: {
  15165. height: math.unit(0.64, "feet"),
  15166. name: "Foot",
  15167. image: {
  15168. source: "./media/characters/vance/foot.svg"
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Small",
  15175. height: math.unit(90, "feet"),
  15176. default: true
  15177. },
  15178. {
  15179. name: "Macro",
  15180. height: math.unit(100, "meters")
  15181. },
  15182. {
  15183. name: "Megamacro",
  15184. height: math.unit(15, "miles")
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15190. {
  15191. front: {
  15192. height: math.unit(6, "feet"),
  15193. weight: math.unit(180, "lb"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/xochitl/front.svg",
  15197. extra: 2297 / 2261,
  15198. bottom: 0.065
  15199. }
  15200. },
  15201. back: {
  15202. height: math.unit(6, "feet"),
  15203. weight: math.unit(180, "lb"),
  15204. name: "Back",
  15205. image: {
  15206. source: "./media/characters/xochitl/back.svg",
  15207. extra: 2386 / 2354,
  15208. bottom: 0.01
  15209. }
  15210. },
  15211. foot: {
  15212. height: math.unit(6 / 5 * 1.15, "feet"),
  15213. weight: math.unit(150, "lb"),
  15214. name: "Foot",
  15215. image: {
  15216. source: "./media/characters/xochitl/foot.svg"
  15217. }
  15218. },
  15219. },
  15220. [
  15221. {
  15222. name: "Macro",
  15223. height: math.unit(80, "feet")
  15224. },
  15225. {
  15226. name: "Macro+",
  15227. height: math.unit(400, "feet"),
  15228. default: true
  15229. },
  15230. {
  15231. name: "Gigamacro",
  15232. height: math.unit(80000, "miles")
  15233. },
  15234. {
  15235. name: "Gigamacro+",
  15236. height: math.unit(400000, "miles")
  15237. },
  15238. {
  15239. name: "Teramacro",
  15240. height: math.unit(300, "AU")
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(6, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/vincent/front.svg",
  15253. extra: 1130 / 1080,
  15254. bottom: 0.055
  15255. }
  15256. },
  15257. beak: {
  15258. height: math.unit(6 * 0.1, "feet"),
  15259. name: "Beak",
  15260. image: {
  15261. source: "./media/characters/vincent/beak.svg"
  15262. }
  15263. },
  15264. hand: {
  15265. height: math.unit(6 * 0.85, "feet"),
  15266. weight: math.unit(150, "lb"),
  15267. name: "Hand",
  15268. image: {
  15269. source: "./media/characters/vincent/hand.svg"
  15270. }
  15271. },
  15272. foot: {
  15273. height: math.unit(6 * 0.19, "feet"),
  15274. weight: math.unit(150, "lb"),
  15275. name: "Foot",
  15276. image: {
  15277. source: "./media/characters/vincent/foot.svg"
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Base",
  15284. height: math.unit(6 + 5 / 12, "feet"),
  15285. default: true
  15286. },
  15287. {
  15288. name: "Macro",
  15289. height: math.unit(300, "feet")
  15290. },
  15291. {
  15292. name: "Megamacro",
  15293. height: math.unit(2, "miles")
  15294. },
  15295. {
  15296. name: "Gigamacro",
  15297. height: math.unit(1000, "miles")
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(2, "meters"),
  15306. weight: math.unit(500, "kg"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/coatl/front.svg",
  15310. extra: 3948 / 3500,
  15311. bottom: 0.082
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(4, "meters")
  15319. },
  15320. {
  15321. name: "Macro",
  15322. height: math.unit(100, "meters"),
  15323. default: true
  15324. },
  15325. {
  15326. name: "Macro+",
  15327. height: math.unit(300, "meters")
  15328. },
  15329. {
  15330. name: "Megamacro",
  15331. height: math.unit(3, "gigameters")
  15332. },
  15333. {
  15334. name: "Megamacro+",
  15335. height: math.unit(300, "terameters")
  15336. },
  15337. {
  15338. name: "Megamacro++",
  15339. height: math.unit(3, "lightyears")
  15340. },
  15341. ]
  15342. ))
  15343. characterMakers.push(() => makeCharacter(
  15344. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15345. {
  15346. front: {
  15347. height: math.unit(6, "feet"),
  15348. weight: math.unit(50, "kg"),
  15349. name: "front",
  15350. image: {
  15351. source: "./media/characters/shiroryu/front.svg",
  15352. extra: 1990 / 1935
  15353. }
  15354. },
  15355. },
  15356. [
  15357. {
  15358. name: "Mortal Mingling",
  15359. height: math.unit(3, "meters")
  15360. },
  15361. {
  15362. name: "Kaiju-ish",
  15363. height: math.unit(250, "meters")
  15364. },
  15365. {
  15366. name: "Somewhat Godly",
  15367. height: math.unit(400, "km"),
  15368. default: true
  15369. },
  15370. {
  15371. name: "Planetary",
  15372. height: math.unit(300, "megameters")
  15373. },
  15374. {
  15375. name: "Galaxy-dwarfing",
  15376. height: math.unit(450, "kiloparsecs")
  15377. },
  15378. {
  15379. name: "Universe Eater",
  15380. height: math.unit(150, "gigaparsecs")
  15381. },
  15382. {
  15383. name: "Almost Immeasurable",
  15384. height: math.unit(1.3e266, "yottaparsecs")
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15390. {
  15391. front: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(150, "lb"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/umeko/front.svg",
  15397. extra: 1,
  15398. bottom: 0.019
  15399. }
  15400. },
  15401. frontArmored: {
  15402. height: math.unit(6, "feet"),
  15403. weight: math.unit(150, "lb"),
  15404. name: "Front (Armored)",
  15405. image: {
  15406. source: "./media/characters/umeko/front-armored.svg",
  15407. extra: 1,
  15408. bottom: 0.021
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Macro",
  15415. height: math.unit(220, "feet"),
  15416. default: true
  15417. },
  15418. {
  15419. name: "Guardian Dragon",
  15420. height: math.unit(50, "miles")
  15421. },
  15422. {
  15423. name: "Cosmic",
  15424. height: math.unit(800000, "miles")
  15425. },
  15426. ]
  15427. ))
  15428. characterMakers.push(() => makeCharacter(
  15429. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15430. {
  15431. front: {
  15432. height: math.unit(6, "feet"),
  15433. weight: math.unit(150, "lb"),
  15434. name: "Front",
  15435. image: {
  15436. source: "./media/characters/cassidy/front.svg",
  15437. extra: 810/808,
  15438. bottom: 41/851
  15439. }
  15440. },
  15441. },
  15442. [
  15443. {
  15444. name: "Canon Height",
  15445. height: math.unit(120, "feet"),
  15446. default: true
  15447. },
  15448. {
  15449. name: "Macro+",
  15450. height: math.unit(400, "feet")
  15451. },
  15452. {
  15453. name: "Macro++",
  15454. height: math.unit(4000, "feet")
  15455. },
  15456. {
  15457. name: "Megamacro",
  15458. height: math.unit(3, "miles")
  15459. },
  15460. ]
  15461. ))
  15462. characterMakers.push(() => makeCharacter(
  15463. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15464. {
  15465. front: {
  15466. height: math.unit(6, "feet"),
  15467. weight: math.unit(150, "lb"),
  15468. name: "Front",
  15469. image: {
  15470. source: "./media/characters/isaac/front.svg",
  15471. extra: 896 / 815,
  15472. bottom: 0.11
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Human Size",
  15479. height: math.unit(8, "feet"),
  15480. default: true
  15481. },
  15482. {
  15483. name: "Macro",
  15484. height: math.unit(400, "feet")
  15485. },
  15486. {
  15487. name: "Megamacro",
  15488. height: math.unit(50, "miles")
  15489. },
  15490. {
  15491. name: "Canon Height",
  15492. height: math.unit(200, "AU")
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(6, "feet"),
  15501. weight: math.unit(72, "kg"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/sleekit/front.svg",
  15505. extra: 4693 / 4487,
  15506. bottom: 0.012
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Minimum Height",
  15513. height: math.unit(10, "meters")
  15514. },
  15515. {
  15516. name: "Smaller",
  15517. height: math.unit(25, "meters")
  15518. },
  15519. {
  15520. name: "Larger",
  15521. height: math.unit(38, "meters"),
  15522. default: true
  15523. },
  15524. {
  15525. name: "Maximum height",
  15526. height: math.unit(100, "meters")
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(6, "feet"),
  15535. weight: math.unit(150, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/nillia/front.svg",
  15539. extra: 2195 / 2037,
  15540. bottom: 0.005
  15541. }
  15542. },
  15543. back: {
  15544. height: math.unit(6, "feet"),
  15545. weight: math.unit(150, "lb"),
  15546. name: "Back",
  15547. image: {
  15548. source: "./media/characters/nillia/back.svg",
  15549. extra: 2195 / 2037,
  15550. bottom: 0.005
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Canon Height",
  15557. height: math.unit(489, "feet"),
  15558. default: true
  15559. }
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15564. {
  15565. front: {
  15566. height: math.unit(6, "feet"),
  15567. weight: math.unit(150, "lb"),
  15568. name: "Front",
  15569. image: {
  15570. source: "./media/characters/mesmyriza/front.svg",
  15571. extra: 2067 / 1784,
  15572. bottom: 0.035
  15573. }
  15574. },
  15575. foot: {
  15576. height: math.unit(6 / (250 / 35), "feet"),
  15577. name: "Foot",
  15578. image: {
  15579. source: "./media/characters/mesmyriza/foot.svg"
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Macro",
  15586. height: math.unit(457, "meters"),
  15587. default: true
  15588. },
  15589. {
  15590. name: "Megamacro",
  15591. height: math.unit(8, "megameters")
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(6, "feet"),
  15600. weight: math.unit(250, "lb"),
  15601. name: "Front",
  15602. image: {
  15603. source: "./media/characters/saudade/front.svg",
  15604. extra: 1172 / 1139,
  15605. bottom: 0.035
  15606. }
  15607. },
  15608. },
  15609. [
  15610. {
  15611. name: "Micro",
  15612. height: math.unit(3, "inches")
  15613. },
  15614. {
  15615. name: "Normal",
  15616. height: math.unit(6, "feet"),
  15617. default: true
  15618. },
  15619. {
  15620. name: "Macro",
  15621. height: math.unit(50, "feet")
  15622. },
  15623. {
  15624. name: "Megamacro",
  15625. height: math.unit(2800, "feet")
  15626. },
  15627. ]
  15628. ))
  15629. characterMakers.push(() => makeCharacter(
  15630. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15631. {
  15632. front: {
  15633. height: math.unit(5 + 4 / 12, "feet"),
  15634. weight: math.unit(100, "lb"),
  15635. name: "Front",
  15636. image: {
  15637. source: "./media/characters/keireer/front.svg",
  15638. extra: 716 / 666,
  15639. bottom: 0.05
  15640. }
  15641. },
  15642. },
  15643. [
  15644. {
  15645. name: "Normal",
  15646. height: math.unit(5 + 4 / 12, "feet"),
  15647. default: true
  15648. },
  15649. ]
  15650. ))
  15651. characterMakers.push(() => makeCharacter(
  15652. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15653. {
  15654. front: {
  15655. height: math.unit(5.5, "feet"),
  15656. weight: math.unit(90, "kg"),
  15657. name: "Front",
  15658. image: {
  15659. source: "./media/characters/mirja/front.svg",
  15660. extra: 1452/1262,
  15661. bottom: 67/1519
  15662. }
  15663. },
  15664. frontDressed: {
  15665. height: math.unit(5.5, "feet"),
  15666. weight: math.unit(90, "lb"),
  15667. name: "Front (Dressed)",
  15668. image: {
  15669. source: "./media/characters/mirja/dressed.svg",
  15670. extra: 1452/1262,
  15671. bottom: 67/1519
  15672. }
  15673. },
  15674. back: {
  15675. height: math.unit(6, "feet"),
  15676. weight: math.unit(90, "lb"),
  15677. name: "Back",
  15678. image: {
  15679. source: "./media/characters/mirja/back.svg",
  15680. extra: 1892/1795,
  15681. bottom: 48/1940
  15682. }
  15683. },
  15684. maw: {
  15685. height: math.unit(1.312, "feet"),
  15686. name: "Maw",
  15687. image: {
  15688. source: "./media/characters/mirja/maw.svg"
  15689. }
  15690. },
  15691. paw: {
  15692. height: math.unit(1.15, "feet"),
  15693. name: "Paw",
  15694. image: {
  15695. source: "./media/characters/mirja/paw.svg"
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "\"Incognito\"",
  15702. height: math.unit(3, "meters")
  15703. },
  15704. {
  15705. name: "Strolling Size",
  15706. height: math.unit(15, "km")
  15707. },
  15708. {
  15709. name: "Larger Strolling Size",
  15710. height: math.unit(400, "km")
  15711. },
  15712. {
  15713. name: "Preferred Size",
  15714. height: math.unit(5000, "km"),
  15715. default: true
  15716. },
  15717. {
  15718. name: "True Size",
  15719. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15720. },
  15721. ]
  15722. ))
  15723. characterMakers.push(() => makeCharacter(
  15724. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15725. {
  15726. front: {
  15727. height: math.unit(15, "feet"),
  15728. weight: math.unit(880, "kg"),
  15729. name: "Front",
  15730. image: {
  15731. source: "./media/characters/nightraver/front.svg",
  15732. extra: 2444 / 2160,
  15733. bottom: 0.027
  15734. }
  15735. },
  15736. back: {
  15737. height: math.unit(15, "feet"),
  15738. weight: math.unit(880, "kg"),
  15739. name: "Back",
  15740. image: {
  15741. source: "./media/characters/nightraver/back.svg",
  15742. extra: 2309 / 2180,
  15743. bottom: 0.005
  15744. }
  15745. },
  15746. sole: {
  15747. height: math.unit(2.878, "feet"),
  15748. name: "Sole",
  15749. image: {
  15750. source: "./media/characters/nightraver/sole.svg"
  15751. }
  15752. },
  15753. foot: {
  15754. height: math.unit(2.285, "feet"),
  15755. name: "Foot",
  15756. image: {
  15757. source: "./media/characters/nightraver/foot.svg"
  15758. }
  15759. },
  15760. maw: {
  15761. height: math.unit(2.67, "feet"),
  15762. name: "Maw",
  15763. image: {
  15764. source: "./media/characters/nightraver/maw.svg"
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Micro",
  15771. height: math.unit(1, "cm")
  15772. },
  15773. {
  15774. name: "Normal",
  15775. height: math.unit(15, "feet"),
  15776. default: true
  15777. },
  15778. {
  15779. name: "Macro",
  15780. height: math.unit(300, "feet")
  15781. },
  15782. {
  15783. name: "Megamacro",
  15784. height: math.unit(300, "miles")
  15785. },
  15786. {
  15787. name: "Gigamacro",
  15788. height: math.unit(10000, "miles")
  15789. },
  15790. ]
  15791. ))
  15792. characterMakers.push(() => makeCharacter(
  15793. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15794. {
  15795. side: {
  15796. height: math.unit(2, "inches"),
  15797. weight: math.unit(5, "grams"),
  15798. name: "Side",
  15799. image: {
  15800. source: "./media/characters/arc/side.svg"
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Micro",
  15807. height: math.unit(2, "inches"),
  15808. default: true
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15814. {
  15815. front: {
  15816. height: math.unit(1.1938, "meters"),
  15817. weight: math.unit(54, "kg"),
  15818. name: "Front",
  15819. image: {
  15820. source: "./media/characters/nebula-shahar/front.svg",
  15821. extra: 1642 / 1436,
  15822. bottom: 0.06
  15823. }
  15824. },
  15825. },
  15826. [
  15827. {
  15828. name: "Megamicro",
  15829. height: math.unit(0.3, "mm")
  15830. },
  15831. {
  15832. name: "Micro",
  15833. height: math.unit(3, "cm")
  15834. },
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(138, "cm"),
  15838. default: true
  15839. },
  15840. {
  15841. name: "Macro",
  15842. height: math.unit(30, "m")
  15843. },
  15844. ]
  15845. ))
  15846. characterMakers.push(() => makeCharacter(
  15847. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15848. {
  15849. front: {
  15850. height: math.unit(5.24, "feet"),
  15851. weight: math.unit(150, "lb"),
  15852. name: "Front",
  15853. image: {
  15854. source: "./media/characters/shayla/front.svg",
  15855. extra: 1512 / 1414,
  15856. bottom: 0.01
  15857. }
  15858. },
  15859. back: {
  15860. height: math.unit(5.24, "feet"),
  15861. weight: math.unit(150, "lb"),
  15862. name: "Back",
  15863. image: {
  15864. source: "./media/characters/shayla/back.svg",
  15865. extra: 1512 / 1414
  15866. }
  15867. },
  15868. hand: {
  15869. height: math.unit(0.7781496062992126, "feet"),
  15870. name: "Hand",
  15871. image: {
  15872. source: "./media/characters/shayla/hand.svg"
  15873. }
  15874. },
  15875. foot: {
  15876. height: math.unit(1.4206036745406823, "feet"),
  15877. name: "Foot",
  15878. image: {
  15879. source: "./media/characters/shayla/foot.svg"
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Micro",
  15886. height: math.unit(0.32, "feet")
  15887. },
  15888. {
  15889. name: "Normal",
  15890. height: math.unit(5.24, "feet"),
  15891. default: true
  15892. },
  15893. {
  15894. name: "Macro",
  15895. height: math.unit(492.12, "feet")
  15896. },
  15897. {
  15898. name: "Megamacro",
  15899. height: math.unit(186.41, "miles")
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(2.2, "m"),
  15908. weight: math.unit(120, "kg"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/pia-jr/front.svg",
  15912. extra: 1000 / 970,
  15913. bottom: 0.035
  15914. }
  15915. },
  15916. hand: {
  15917. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15918. name: "Hand",
  15919. image: {
  15920. source: "./media/characters/pia-jr/hand.svg"
  15921. }
  15922. },
  15923. paw: {
  15924. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15925. name: "Paw",
  15926. image: {
  15927. source: "./media/characters/pia-jr/paw.svg"
  15928. }
  15929. },
  15930. },
  15931. [
  15932. {
  15933. name: "Micro",
  15934. height: math.unit(1.2, "cm")
  15935. },
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(2.2, "m"),
  15939. default: true
  15940. },
  15941. {
  15942. name: "Macro",
  15943. height: math.unit(180, "m")
  15944. },
  15945. {
  15946. name: "Megamacro",
  15947. height: math.unit(420, "km")
  15948. },
  15949. ]
  15950. ))
  15951. characterMakers.push(() => makeCharacter(
  15952. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15953. {
  15954. front: {
  15955. height: math.unit(2, "m"),
  15956. weight: math.unit(115, "kg"),
  15957. name: "Front",
  15958. image: {
  15959. source: "./media/characters/pia-sr/front.svg",
  15960. extra: 760 / 730,
  15961. bottom: 0.015
  15962. }
  15963. },
  15964. back: {
  15965. height: math.unit(2, "m"),
  15966. weight: math.unit(115, "kg"),
  15967. name: "Back",
  15968. image: {
  15969. source: "./media/characters/pia-sr/back.svg",
  15970. extra: 760 / 730,
  15971. bottom: 0.01
  15972. }
  15973. },
  15974. hand: {
  15975. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15976. name: "Hand",
  15977. image: {
  15978. source: "./media/characters/pia-sr/hand.svg"
  15979. }
  15980. },
  15981. foot: {
  15982. height: math.unit(1.83, "feet"),
  15983. name: "Foot",
  15984. image: {
  15985. source: "./media/characters/pia-sr/foot.svg"
  15986. }
  15987. },
  15988. },
  15989. [
  15990. {
  15991. name: "Micro",
  15992. height: math.unit(88, "mm")
  15993. },
  15994. {
  15995. name: "Normal",
  15996. height: math.unit(2, "m"),
  15997. default: true
  15998. },
  15999. {
  16000. name: "Macro",
  16001. height: math.unit(200, "m")
  16002. },
  16003. {
  16004. name: "Megamacro",
  16005. height: math.unit(420, "km")
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(8 + 2 / 12, "feet"),
  16014. weight: math.unit(300, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/kibibyte/front.svg",
  16018. extra: 2221 / 2098,
  16019. bottom: 0.04
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(8 + 2 / 12, "feet"),
  16027. default: true
  16028. },
  16029. {
  16030. name: "Socialable Macro",
  16031. height: math.unit(50, "feet")
  16032. },
  16033. {
  16034. name: "Macro",
  16035. height: math.unit(300, "feet")
  16036. },
  16037. {
  16038. name: "Megamacro",
  16039. height: math.unit(500, "miles")
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16045. {
  16046. front: {
  16047. height: math.unit(6, "feet"),
  16048. weight: math.unit(150, "lb"),
  16049. name: "Front",
  16050. image: {
  16051. source: "./media/characters/felix/front.svg",
  16052. extra: 762 / 722,
  16053. bottom: 0.02
  16054. }
  16055. },
  16056. frontClothed: {
  16057. height: math.unit(6, "feet"),
  16058. weight: math.unit(150, "lb"),
  16059. name: "Front (Clothed)",
  16060. image: {
  16061. source: "./media/characters/felix/front-clothed.svg",
  16062. extra: 762 / 722,
  16063. bottom: 0.02
  16064. }
  16065. },
  16066. },
  16067. [
  16068. {
  16069. name: "Normal",
  16070. height: math.unit(6 + 8 / 12, "feet"),
  16071. default: true
  16072. },
  16073. {
  16074. name: "Macro",
  16075. height: math.unit(2600, "feet")
  16076. },
  16077. {
  16078. name: "Megamacro",
  16079. height: math.unit(450, "miles")
  16080. },
  16081. ]
  16082. ))
  16083. characterMakers.push(() => makeCharacter(
  16084. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16085. {
  16086. front: {
  16087. height: math.unit(6 + 1 / 12, "feet"),
  16088. weight: math.unit(250, "lb"),
  16089. name: "Front",
  16090. image: {
  16091. source: "./media/characters/tobo/front.svg",
  16092. extra: 608 / 586,
  16093. bottom: 0.023
  16094. }
  16095. },
  16096. back: {
  16097. height: math.unit(6 + 1 / 12, "feet"),
  16098. weight: math.unit(250, "lb"),
  16099. name: "Back",
  16100. image: {
  16101. source: "./media/characters/tobo/back.svg",
  16102. extra: 608 / 586
  16103. }
  16104. },
  16105. },
  16106. [
  16107. {
  16108. name: "Nano",
  16109. height: math.unit(2, "nm")
  16110. },
  16111. {
  16112. name: "Megamicro",
  16113. height: math.unit(0.1, "mm")
  16114. },
  16115. {
  16116. name: "Micro",
  16117. height: math.unit(1, "inch"),
  16118. default: true
  16119. },
  16120. {
  16121. name: "Human-sized",
  16122. height: math.unit(6 + 1 / 12, "feet")
  16123. },
  16124. {
  16125. name: "Macro",
  16126. height: math.unit(250, "feet")
  16127. },
  16128. {
  16129. name: "Megamacro",
  16130. height: math.unit(75, "miles")
  16131. },
  16132. {
  16133. name: "Texas-sized",
  16134. height: math.unit(750, "miles")
  16135. },
  16136. {
  16137. name: "Teramacro",
  16138. height: math.unit(50000, "miles")
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16144. {
  16145. front: {
  16146. height: math.unit(6, "feet"),
  16147. weight: math.unit(269, "lb"),
  16148. name: "Front",
  16149. image: {
  16150. source: "./media/characters/danny-kapowsky/front.svg",
  16151. extra: 766 / 736,
  16152. bottom: 0.044
  16153. }
  16154. },
  16155. back: {
  16156. height: math.unit(6, "feet"),
  16157. weight: math.unit(269, "lb"),
  16158. name: "Back",
  16159. image: {
  16160. source: "./media/characters/danny-kapowsky/back.svg",
  16161. extra: 797 / 760,
  16162. bottom: 0.025
  16163. }
  16164. },
  16165. },
  16166. [
  16167. {
  16168. name: "Macro",
  16169. height: math.unit(150, "feet"),
  16170. default: true
  16171. },
  16172. {
  16173. name: "Macro+",
  16174. height: math.unit(200, "feet")
  16175. },
  16176. {
  16177. name: "Macro++",
  16178. height: math.unit(300, "feet")
  16179. },
  16180. {
  16181. name: "Macro+++",
  16182. height: math.unit(400, "feet")
  16183. },
  16184. ]
  16185. ))
  16186. characterMakers.push(() => makeCharacter(
  16187. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16188. {
  16189. side: {
  16190. height: math.unit(6, "feet"),
  16191. weight: math.unit(170, "lb"),
  16192. name: "Side",
  16193. image: {
  16194. source: "./media/characters/finn/side.svg",
  16195. extra: 1953 / 1807,
  16196. bottom: 0.057
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Megamacro",
  16203. height: math.unit(14445, "feet"),
  16204. default: true
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16210. {
  16211. front: {
  16212. height: math.unit(5 + 6 / 12, "feet"),
  16213. weight: math.unit(125, "lb"),
  16214. name: "Front",
  16215. image: {
  16216. source: "./media/characters/roy/front.svg",
  16217. extra: 1,
  16218. bottom: 0.11
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Micro",
  16225. height: math.unit(3, "inches"),
  16226. default: true
  16227. },
  16228. {
  16229. name: "Normal",
  16230. height: math.unit(5 + 6 / 12, "feet")
  16231. },
  16232. {
  16233. name: "Lesser Macro",
  16234. height: math.unit(60, "feet")
  16235. },
  16236. {
  16237. name: "Greater Macro",
  16238. height: math.unit(120, "feet")
  16239. },
  16240. ]
  16241. ))
  16242. characterMakers.push(() => makeCharacter(
  16243. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16244. {
  16245. front: {
  16246. height: math.unit(6, "feet"),
  16247. weight: math.unit(100, "lb"),
  16248. name: "Front",
  16249. image: {
  16250. source: "./media/characters/aevsivs/front.svg",
  16251. extra: 1,
  16252. bottom: 0.03
  16253. }
  16254. },
  16255. back: {
  16256. height: math.unit(6, "feet"),
  16257. weight: math.unit(100, "lb"),
  16258. name: "Back",
  16259. image: {
  16260. source: "./media/characters/aevsivs/back.svg"
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Micro",
  16267. height: math.unit(2, "inches"),
  16268. default: true
  16269. },
  16270. {
  16271. name: "Normal",
  16272. height: math.unit(5, "feet")
  16273. },
  16274. ]
  16275. ))
  16276. characterMakers.push(() => makeCharacter(
  16277. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16278. {
  16279. front: {
  16280. height: math.unit(5 + 7 / 12, "feet"),
  16281. weight: math.unit(159, "lb"),
  16282. name: "Front",
  16283. image: {
  16284. source: "./media/characters/hildegard/front.svg",
  16285. extra: 289 / 269,
  16286. bottom: 7.63 / 297.8
  16287. }
  16288. },
  16289. back: {
  16290. height: math.unit(5 + 7 / 12, "feet"),
  16291. weight: math.unit(159, "lb"),
  16292. name: "Back",
  16293. image: {
  16294. source: "./media/characters/hildegard/back.svg",
  16295. extra: 280 / 260,
  16296. bottom: 2.3 / 282
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Normal",
  16303. height: math.unit(5 + 7 / 12, "feet"),
  16304. default: true
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16310. {
  16311. bernard: {
  16312. height: math.unit(2 + 7 / 12, "feet"),
  16313. weight: math.unit(66, "lb"),
  16314. name: "Bernard",
  16315. rename: true,
  16316. image: {
  16317. source: "./media/characters/bernard-wilder/bernard.svg",
  16318. extra: 192 / 128,
  16319. bottom: 0.05
  16320. }
  16321. },
  16322. wilder: {
  16323. height: math.unit(5 + 8 / 12, "feet"),
  16324. weight: math.unit(143, "lb"),
  16325. name: "Wilder",
  16326. rename: true,
  16327. image: {
  16328. source: "./media/characters/bernard-wilder/wilder.svg",
  16329. extra: 361 / 312,
  16330. bottom: 0.02
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Normal",
  16337. height: math.unit(2 + 7 / 12, "feet"),
  16338. default: true
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16344. {
  16345. anthro: {
  16346. height: math.unit(6 + 1 / 12, "feet"),
  16347. weight: math.unit(155, "lb"),
  16348. name: "Anthro",
  16349. image: {
  16350. source: "./media/characters/hearth/anthro.svg",
  16351. extra: 1178/1136,
  16352. bottom: 28/1206
  16353. }
  16354. },
  16355. feral: {
  16356. height: math.unit(3.78, "feet"),
  16357. weight: math.unit(35, "kg"),
  16358. name: "Feral",
  16359. image: {
  16360. source: "./media/characters/hearth/feral.svg",
  16361. extra: 153 / 135,
  16362. bottom: 0.03
  16363. }
  16364. },
  16365. },
  16366. [
  16367. {
  16368. name: "Normal",
  16369. height: math.unit(6 + 1 / 12, "feet"),
  16370. default: true
  16371. },
  16372. ]
  16373. ))
  16374. characterMakers.push(() => makeCharacter(
  16375. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16376. {
  16377. front: {
  16378. height: math.unit(6, "feet"),
  16379. weight: math.unit(182, "lb"),
  16380. name: "Front",
  16381. image: {
  16382. source: "./media/characters/ingrid/front.svg",
  16383. extra: 294 / 268,
  16384. bottom: 0.027
  16385. }
  16386. },
  16387. },
  16388. [
  16389. {
  16390. name: "Normal",
  16391. height: math.unit(6, "feet"),
  16392. default: true
  16393. },
  16394. ]
  16395. ))
  16396. characterMakers.push(() => makeCharacter(
  16397. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16398. {
  16399. eevee: {
  16400. height: math.unit(2 + 10 / 12, "feet"),
  16401. weight: math.unit(86, "lb"),
  16402. name: "Malgam",
  16403. image: {
  16404. source: "./media/characters/malgam/eevee.svg",
  16405. extra: 952/784,
  16406. bottom: 38/990
  16407. }
  16408. },
  16409. sylveon: {
  16410. height: math.unit(4, "feet"),
  16411. weight: math.unit(101, "lb"),
  16412. name: "Future Malgam",
  16413. rename: true,
  16414. image: {
  16415. source: "./media/characters/malgam/sylveon.svg",
  16416. extra: 371 / 325,
  16417. bottom: 0.015
  16418. }
  16419. },
  16420. gigantamax: {
  16421. height: math.unit(50, "feet"),
  16422. name: "Gigantamax Malgam",
  16423. rename: true,
  16424. image: {
  16425. source: "./media/characters/malgam/gigantamax.svg"
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Normal",
  16432. height: math.unit(2 + 10 / 12, "feet"),
  16433. default: true
  16434. },
  16435. ]
  16436. ))
  16437. characterMakers.push(() => makeCharacter(
  16438. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16439. {
  16440. front: {
  16441. height: math.unit(5 + 11 / 12, "feet"),
  16442. weight: math.unit(188, "lb"),
  16443. name: "Front",
  16444. image: {
  16445. source: "./media/characters/fleur/front.svg",
  16446. extra: 309 / 283,
  16447. bottom: 0.007
  16448. }
  16449. },
  16450. },
  16451. [
  16452. {
  16453. name: "Normal",
  16454. height: math.unit(5 + 11 / 12, "feet"),
  16455. default: true
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16461. {
  16462. front: {
  16463. height: math.unit(5 + 4 / 12, "feet"),
  16464. weight: math.unit(122, "lb"),
  16465. name: "Front",
  16466. image: {
  16467. source: "./media/characters/jude/front.svg",
  16468. extra: 288 / 273,
  16469. bottom: 0.03
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(5 + 4 / 12, "feet"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16483. {
  16484. front: {
  16485. height: math.unit(5 + 11 / 12, "feet"),
  16486. weight: math.unit(190, "lb"),
  16487. name: "Front",
  16488. image: {
  16489. source: "./media/characters/seara/front.svg",
  16490. extra: 1,
  16491. bottom: 0.05
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Normal",
  16498. height: math.unit(5 + 11 / 12, "feet"),
  16499. default: true
  16500. },
  16501. ]
  16502. ))
  16503. characterMakers.push(() => makeCharacter(
  16504. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16505. {
  16506. front: {
  16507. height: math.unit(16 + 5 / 12, "feet"),
  16508. weight: math.unit(524, "lb"),
  16509. name: "Front",
  16510. image: {
  16511. source: "./media/characters/caspian-lugia/front.svg",
  16512. extra: 1,
  16513. bottom: 0.04
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Normal",
  16520. height: math.unit(16 + 5 / 12, "feet"),
  16521. default: true
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16527. {
  16528. front: {
  16529. height: math.unit(5 + 7 / 12, "feet"),
  16530. weight: math.unit(170, "lb"),
  16531. name: "Front",
  16532. image: {
  16533. source: "./media/characters/mika/front.svg",
  16534. extra: 1,
  16535. bottom: 0.016
  16536. }
  16537. },
  16538. },
  16539. [
  16540. {
  16541. name: "Normal",
  16542. height: math.unit(5 + 7 / 12, "feet"),
  16543. default: true
  16544. },
  16545. ]
  16546. ))
  16547. characterMakers.push(() => makeCharacter(
  16548. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16549. {
  16550. front: {
  16551. height: math.unit(6 + 2 / 12, "feet"),
  16552. weight: math.unit(268, "lb"),
  16553. name: "Front",
  16554. image: {
  16555. source: "./media/characters/sol/front.svg",
  16556. extra: 247 / 231,
  16557. bottom: 0.05
  16558. }
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Normal",
  16564. height: math.unit(6 + 2 / 12, "feet"),
  16565. default: true
  16566. },
  16567. ]
  16568. ))
  16569. characterMakers.push(() => makeCharacter(
  16570. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16571. {
  16572. buizel: {
  16573. height: math.unit(2 + 5 / 12, "feet"),
  16574. weight: math.unit(87, "lb"),
  16575. name: "Front",
  16576. image: {
  16577. source: "./media/characters/umiko/buizel.svg",
  16578. extra: 172 / 157,
  16579. bottom: 0.01
  16580. },
  16581. form: "buizel",
  16582. default: true
  16583. },
  16584. floatzel: {
  16585. height: math.unit(5 + 9 / 12, "feet"),
  16586. weight: math.unit(250, "lb"),
  16587. name: "Front",
  16588. image: {
  16589. source: "./media/characters/umiko/floatzel.svg",
  16590. extra: 1076/1006,
  16591. bottom: 15/1091
  16592. },
  16593. form: "floatzel",
  16594. default: true
  16595. },
  16596. },
  16597. [
  16598. {
  16599. name: "Normal",
  16600. height: math.unit(2 + 5 / 12, "feet"),
  16601. form: "buizel",
  16602. default: true
  16603. },
  16604. {
  16605. name: "Normal",
  16606. height: math.unit(5 + 9 / 12, "feet"),
  16607. form: "floatzel",
  16608. default: true
  16609. },
  16610. ],
  16611. {
  16612. "buizel": {
  16613. name: "Buizel"
  16614. },
  16615. "floatzel": {
  16616. name: "Floatzel",
  16617. default: true
  16618. }
  16619. }
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16623. {
  16624. front: {
  16625. height: math.unit(6 + 2 / 12, "feet"),
  16626. weight: math.unit(146, "lb"),
  16627. name: "Front",
  16628. image: {
  16629. source: "./media/characters/iliac/front.svg",
  16630. extra: 389 / 365,
  16631. bottom: 0.035
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Normal",
  16638. height: math.unit(6 + 2 / 12, "feet"),
  16639. default: true
  16640. },
  16641. ]
  16642. ))
  16643. characterMakers.push(() => makeCharacter(
  16644. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16645. {
  16646. front: {
  16647. height: math.unit(6, "feet"),
  16648. weight: math.unit(170, "lb"),
  16649. name: "Front",
  16650. image: {
  16651. source: "./media/characters/topaz/front.svg",
  16652. extra: 317 / 303,
  16653. bottom: 0.055
  16654. }
  16655. },
  16656. },
  16657. [
  16658. {
  16659. name: "Normal",
  16660. height: math.unit(6, "feet"),
  16661. default: true
  16662. },
  16663. ]
  16664. ))
  16665. characterMakers.push(() => makeCharacter(
  16666. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16667. {
  16668. front: {
  16669. height: math.unit(5 + 11 / 12, "feet"),
  16670. weight: math.unit(144, "lb"),
  16671. name: "Front",
  16672. image: {
  16673. source: "./media/characters/gabriel/front.svg",
  16674. extra: 285 / 262,
  16675. bottom: 0.004
  16676. }
  16677. },
  16678. },
  16679. [
  16680. {
  16681. name: "Normal",
  16682. height: math.unit(5 + 11 / 12, "feet"),
  16683. default: true
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16689. {
  16690. side: {
  16691. height: math.unit(6 + 5 / 12, "feet"),
  16692. weight: math.unit(300, "lb"),
  16693. name: "Side",
  16694. image: {
  16695. source: "./media/characters/tempest-suicune/side.svg",
  16696. extra: 195 / 154,
  16697. bottom: 0.04
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(6 + 5 / 12, "feet"),
  16705. default: true
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16711. {
  16712. front: {
  16713. height: math.unit(7 + 2 / 12, "feet"),
  16714. weight: math.unit(322, "lb"),
  16715. name: "Front",
  16716. image: {
  16717. source: "./media/characters/vulcan/front.svg",
  16718. extra: 154 / 147,
  16719. bottom: 0.04
  16720. }
  16721. },
  16722. },
  16723. [
  16724. {
  16725. name: "Normal",
  16726. height: math.unit(7 + 2 / 12, "feet"),
  16727. default: true
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16733. {
  16734. front: {
  16735. height: math.unit(5 + 10 / 12, "feet"),
  16736. weight: math.unit(264, "lb"),
  16737. name: "Front",
  16738. image: {
  16739. source: "./media/characters/gault/front.svg",
  16740. extra: 161 / 140,
  16741. bottom: 0.028
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(5 + 10 / 12, "feet"),
  16749. default: true
  16750. },
  16751. ]
  16752. ))
  16753. characterMakers.push(() => makeCharacter(
  16754. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16755. {
  16756. front: {
  16757. height: math.unit(6, "feet"),
  16758. weight: math.unit(150, "lb"),
  16759. name: "Front",
  16760. image: {
  16761. source: "./media/characters/shard/front.svg",
  16762. extra: 273 / 238,
  16763. bottom: 0.02
  16764. }
  16765. },
  16766. },
  16767. [
  16768. {
  16769. name: "Normal",
  16770. height: math.unit(3 + 6 / 12, "feet"),
  16771. default: true
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(5 + 11 / 12, "feet"),
  16780. weight: math.unit(146, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/ashe/front.svg",
  16784. extra: 400 / 373,
  16785. bottom: 0.01
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Normal",
  16792. height: math.unit(5 + 11 / 12, "feet"),
  16793. default: true
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(5 + 5 / 12, "feet"),
  16802. weight: math.unit(135, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/beatrix/front.svg",
  16806. extra: 392 / 379,
  16807. bottom: 0.01
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(6, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(6 + 2/12, "feet"),
  16824. weight: math.unit(135, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/ignatius/front.svg",
  16828. extra: 1380/1259,
  16829. bottom: 27/1407
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(6 + 2/12, "feet"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16843. {
  16844. front: {
  16845. height: math.unit(6 + 2 / 12, "feet"),
  16846. weight: math.unit(138, "lb"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/mei-li/front.svg",
  16850. extra: 237 / 229,
  16851. bottom: 0.03
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(6 + 2 / 12, "feet"),
  16859. default: true
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16865. {
  16866. front: {
  16867. height: math.unit(2 + 4 / 12, "feet"),
  16868. weight: math.unit(62, "lb"),
  16869. name: "Front",
  16870. image: {
  16871. source: "./media/characters/puru/front.svg",
  16872. extra: 206 / 149,
  16873. bottom: 0.06
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(2 + 4 / 12, "feet"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16887. {
  16888. anthro: {
  16889. height: math.unit(5 + 8/12, "feet"),
  16890. weight: math.unit(200, "lb"),
  16891. energyNeed: math.unit(2000, "kcal"),
  16892. name: "Anthro",
  16893. image: {
  16894. source: "./media/characters/kee/anthro.svg",
  16895. extra: 3251/3184,
  16896. bottom: 250/3501
  16897. }
  16898. },
  16899. taur: {
  16900. height: math.unit(11, "feet"),
  16901. weight: math.unit(500, "lb"),
  16902. energyNeed: math.unit(5000, "kcal"),
  16903. name: "Taur",
  16904. image: {
  16905. source: "./media/characters/kee/taur.svg",
  16906. extra: 1362/1320,
  16907. bottom: 83/1445
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(5 + 8/12, "feet"),
  16915. default: true
  16916. },
  16917. {
  16918. name: "Macro",
  16919. height: math.unit(35, "feet")
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16925. {
  16926. anthro: {
  16927. height: math.unit(7, "feet"),
  16928. weight: math.unit(190, "lb"),
  16929. name: "Anthro",
  16930. image: {
  16931. source: "./media/characters/cobalt-dracha/anthro.svg",
  16932. extra: 231 / 225,
  16933. bottom: 0.04
  16934. }
  16935. },
  16936. feral: {
  16937. height: math.unit(9 + 7 / 12, "feet"),
  16938. weight: math.unit(294, "lb"),
  16939. name: "Feral",
  16940. image: {
  16941. source: "./media/characters/cobalt-dracha/feral.svg",
  16942. extra: 692 / 633,
  16943. bottom: 0.05
  16944. }
  16945. },
  16946. },
  16947. [
  16948. {
  16949. name: "Normal",
  16950. height: math.unit(7, "feet"),
  16951. default: true
  16952. },
  16953. ]
  16954. ))
  16955. characterMakers.push(() => makeCharacter(
  16956. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16957. {
  16958. fallen: {
  16959. height: math.unit(11 + 8 / 12, "feet"),
  16960. weight: math.unit(485, "lb"),
  16961. name: "Java (Fallen)",
  16962. rename: true,
  16963. image: {
  16964. source: "./media/characters/java/fallen.svg",
  16965. extra: 226 / 208,
  16966. bottom: 0.005
  16967. }
  16968. },
  16969. godkin: {
  16970. height: math.unit(10 + 6 / 12, "feet"),
  16971. weight: math.unit(328, "lb"),
  16972. name: "Java (Godkin)",
  16973. rename: true,
  16974. image: {
  16975. source: "./media/characters/java/godkin.svg",
  16976. extra: 1104/1068,
  16977. bottom: 36/1140
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Normal",
  16984. height: math.unit(11 + 8 / 12, "feet"),
  16985. default: true
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16991. {
  16992. front: {
  16993. height: math.unit(5 + 9 / 12, "feet"),
  16994. weight: math.unit(170, "lb"),
  16995. name: "Front",
  16996. image: {
  16997. source: "./media/characters/purna/front.svg",
  16998. extra: 239 / 229,
  16999. bottom: 0.01
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(5 + 9 / 12, "feet"),
  17007. default: true
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17013. {
  17014. front: {
  17015. height: math.unit(5 + 9 / 12, "feet"),
  17016. weight: math.unit(142, "lb"),
  17017. name: "Front",
  17018. image: {
  17019. source: "./media/characters/kuva/front.svg",
  17020. extra: 281 / 271,
  17021. bottom: 0.006
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(5 + 9 / 12, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17035. {
  17036. anthro: {
  17037. height: math.unit(9 + 2 / 12, "feet"),
  17038. weight: math.unit(270, "lb"),
  17039. name: "Anthro",
  17040. image: {
  17041. source: "./media/characters/embra/anthro.svg",
  17042. extra: 200 / 187,
  17043. bottom: 0.02
  17044. }
  17045. },
  17046. feral: {
  17047. height: math.unit(18 + 8 / 12, "feet"),
  17048. weight: math.unit(576, "lb"),
  17049. name: "Feral",
  17050. image: {
  17051. source: "./media/characters/embra/feral.svg",
  17052. extra: 152 / 137,
  17053. bottom: 0.037
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Normal",
  17060. height: math.unit(9 + 2 / 12, "feet"),
  17061. default: true
  17062. },
  17063. ]
  17064. ))
  17065. characterMakers.push(() => makeCharacter(
  17066. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17067. {
  17068. anthro: {
  17069. height: math.unit(10 + 9 / 12, "feet"),
  17070. weight: math.unit(224, "lb"),
  17071. name: "Anthro",
  17072. image: {
  17073. source: "./media/characters/grottos/anthro.svg",
  17074. extra: 350 / 332,
  17075. bottom: 0.045
  17076. }
  17077. },
  17078. feral: {
  17079. height: math.unit(20 + 7 / 12, "feet"),
  17080. weight: math.unit(629, "lb"),
  17081. name: "Feral",
  17082. image: {
  17083. source: "./media/characters/grottos/feral.svg",
  17084. extra: 207 / 190,
  17085. bottom: 0.05
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Normal",
  17092. height: math.unit(10 + 9 / 12, "feet"),
  17093. default: true
  17094. },
  17095. ]
  17096. ))
  17097. characterMakers.push(() => makeCharacter(
  17098. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17099. {
  17100. anthro: {
  17101. height: math.unit(9 + 6 / 12, "feet"),
  17102. weight: math.unit(298, "lb"),
  17103. name: "Anthro",
  17104. image: {
  17105. source: "./media/characters/frifna/anthro.svg",
  17106. extra: 282 / 269,
  17107. bottom: 0.015
  17108. }
  17109. },
  17110. feral: {
  17111. height: math.unit(16 + 2 / 12, "feet"),
  17112. weight: math.unit(624, "lb"),
  17113. name: "Feral",
  17114. image: {
  17115. source: "./media/characters/frifna/feral.svg"
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(9 + 6 / 12, "feet"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17129. {
  17130. front: {
  17131. height: math.unit(6 + 2 / 12, "feet"),
  17132. weight: math.unit(168, "lb"),
  17133. name: "Front",
  17134. image: {
  17135. source: "./media/characters/elise/front.svg",
  17136. extra: 276 / 271
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(6 + 2 / 12, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(5 + 10 / 12, "feet"),
  17153. weight: math.unit(210, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/glade/front.svg",
  17157. extra: 258 / 247,
  17158. bottom: 0.008
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Normal",
  17165. height: math.unit(5 + 10 / 12, "feet"),
  17166. default: true
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(5 + 10 / 12, "feet"),
  17175. weight: math.unit(129, "lb"),
  17176. name: "Front",
  17177. image: {
  17178. source: "./media/characters/rina/front.svg",
  17179. extra: 266 / 255,
  17180. bottom: 0.005
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(5 + 10 / 12, "feet"),
  17188. default: true
  17189. },
  17190. ]
  17191. ))
  17192. characterMakers.push(() => makeCharacter(
  17193. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17194. {
  17195. front: {
  17196. height: math.unit(6 + 1 / 12, "feet"),
  17197. weight: math.unit(192, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/veronica/front.svg",
  17201. extra: 319 / 309,
  17202. bottom: 0.005
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(6 + 1 / 12, "feet"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17216. {
  17217. front: {
  17218. height: math.unit(9 + 3 / 12, "feet"),
  17219. weight: math.unit(1100, "lb"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/braxton/front.svg",
  17223. extra: 1057 / 984,
  17224. bottom: 0.05
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(9 + 3 / 12, "feet")
  17232. },
  17233. {
  17234. name: "Giant",
  17235. height: math.unit(300, "feet"),
  17236. default: true
  17237. },
  17238. {
  17239. name: "Macro",
  17240. height: math.unit(700, "feet")
  17241. },
  17242. {
  17243. name: "Megamacro",
  17244. height: math.unit(6000, "feet")
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17250. {
  17251. front: {
  17252. height: math.unit(6 + 7 / 12, "feet"),
  17253. weight: math.unit(150, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/blue-feyonics/front.svg",
  17257. extra: 1403 / 1306,
  17258. bottom: 0.047
  17259. }
  17260. },
  17261. },
  17262. [
  17263. {
  17264. name: "Normal",
  17265. height: math.unit(6 + 7 / 12, "feet"),
  17266. default: true
  17267. },
  17268. ]
  17269. ))
  17270. characterMakers.push(() => makeCharacter(
  17271. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17272. {
  17273. front: {
  17274. height: math.unit(1.8, "meters"),
  17275. weight: math.unit(60, "kg"),
  17276. name: "Front",
  17277. image: {
  17278. source: "./media/characters/maxwell/front.svg",
  17279. extra: 2060 / 1873
  17280. }
  17281. },
  17282. },
  17283. [
  17284. {
  17285. name: "Micro",
  17286. height: math.unit(1, "mm")
  17287. },
  17288. {
  17289. name: "Normal",
  17290. height: math.unit(1.8, "meter"),
  17291. default: true
  17292. },
  17293. {
  17294. name: "Macro",
  17295. height: math.unit(30, "meters")
  17296. },
  17297. {
  17298. name: "Megamacro",
  17299. height: math.unit(10, "km")
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17305. {
  17306. front: {
  17307. height: math.unit(6, "feet"),
  17308. weight: math.unit(150, "lb"),
  17309. name: "Front",
  17310. image: {
  17311. source: "./media/characters/jack/front.svg",
  17312. extra: 1754 / 1640,
  17313. bottom: 0.01
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Normal",
  17320. height: math.unit(80000, "feet"),
  17321. default: true
  17322. },
  17323. {
  17324. name: "Max size",
  17325. height: math.unit(10, "lightyears")
  17326. },
  17327. ]
  17328. ))
  17329. characterMakers.push(() => makeCharacter(
  17330. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17331. {
  17332. urban: {
  17333. height: math.unit(5, "feet"),
  17334. weight: math.unit(240, "lb"),
  17335. name: "Urban",
  17336. image: {
  17337. source: "./media/characters/cafat/urban.svg",
  17338. extra: 1223/1126,
  17339. bottom: 205/1428
  17340. }
  17341. },
  17342. summer: {
  17343. height: math.unit(5, "feet"),
  17344. weight: math.unit(240, "lb"),
  17345. name: "Summer",
  17346. image: {
  17347. source: "./media/characters/cafat/summer.svg",
  17348. extra: 1223/1126,
  17349. bottom: 205/1428
  17350. }
  17351. },
  17352. winter: {
  17353. height: math.unit(5, "feet"),
  17354. weight: math.unit(240, "lb"),
  17355. name: "Winter",
  17356. image: {
  17357. source: "./media/characters/cafat/winter.svg",
  17358. extra: 1223/1126,
  17359. bottom: 205/1428
  17360. }
  17361. },
  17362. lingerie: {
  17363. height: math.unit(5, "feet"),
  17364. weight: math.unit(240, "lb"),
  17365. name: "Lingerie",
  17366. image: {
  17367. source: "./media/characters/cafat/lingerie.svg",
  17368. extra: 1223/1126,
  17369. bottom: 205/1428
  17370. }
  17371. },
  17372. upright: {
  17373. height: math.unit(6.3, "feet"),
  17374. weight: math.unit(240, "lb"),
  17375. name: "Upright",
  17376. image: {
  17377. source: "./media/characters/cafat/upright.svg",
  17378. bottom: 0.01
  17379. }
  17380. },
  17381. uprightFull: {
  17382. height: math.unit(6.3, "feet"),
  17383. weight: math.unit(240, "lb"),
  17384. name: "Upright (Full)",
  17385. image: {
  17386. source: "./media/characters/cafat/upright-full.svg",
  17387. bottom: 0.01
  17388. }
  17389. },
  17390. },
  17391. [
  17392. {
  17393. name: "Small",
  17394. height: math.unit(5, "feet"),
  17395. default: true
  17396. },
  17397. {
  17398. name: "Large",
  17399. height: math.unit(13, "feet")
  17400. },
  17401. ]
  17402. ))
  17403. characterMakers.push(() => makeCharacter(
  17404. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17405. {
  17406. front: {
  17407. height: math.unit(6, "feet"),
  17408. weight: math.unit(150, "lb"),
  17409. name: "Front",
  17410. image: {
  17411. source: "./media/characters/verin-raharra/front.svg",
  17412. extra: 5019 / 4835,
  17413. bottom: 0.023
  17414. }
  17415. },
  17416. },
  17417. [
  17418. {
  17419. name: "Normal",
  17420. height: math.unit(7 + 5 / 12, "feet"),
  17421. default: true
  17422. },
  17423. {
  17424. name: "Upsized",
  17425. height: math.unit(20, "feet")
  17426. },
  17427. ]
  17428. ))
  17429. characterMakers.push(() => makeCharacter(
  17430. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17431. {
  17432. front: {
  17433. height: math.unit(7, "feet"),
  17434. weight: math.unit(230, "lb"),
  17435. name: "Front",
  17436. image: {
  17437. source: "./media/characters/nakata/front.svg",
  17438. extra: 1.005,
  17439. bottom: 0.01
  17440. }
  17441. },
  17442. },
  17443. [
  17444. {
  17445. name: "Normal",
  17446. height: math.unit(7, "feet"),
  17447. default: true
  17448. },
  17449. {
  17450. name: "Big",
  17451. height: math.unit(14, "feet")
  17452. },
  17453. {
  17454. name: "Macro",
  17455. height: math.unit(400, "feet")
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17461. {
  17462. front: {
  17463. height: math.unit(4.91, "feet"),
  17464. weight: math.unit(100, "lb"),
  17465. name: "Front",
  17466. image: {
  17467. source: "./media/characters/lily/front.svg",
  17468. extra: 1585 / 1415,
  17469. bottom: 0.02
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Normal",
  17476. height: math.unit(4.91, "feet"),
  17477. default: true
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17483. {
  17484. laying: {
  17485. height: math.unit(4 + 4 / 12, "feet"),
  17486. weight: math.unit(600, "lb"),
  17487. name: "Laying",
  17488. image: {
  17489. source: "./media/characters/sheila/laying.svg",
  17490. extra: 1333 / 1265,
  17491. bottom: 0.16
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(4 + 4 / 12, "feet"),
  17499. default: true
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(6, "feet"),
  17508. weight: math.unit(190, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/sax/front.svg",
  17512. extra: 1187 / 973,
  17513. bottom: 0.042
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Micro",
  17520. height: math.unit(4, "inches"),
  17521. default: true
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17527. {
  17528. front: {
  17529. height: math.unit(6, "feet"),
  17530. weight: math.unit(150, "lb"),
  17531. name: "Front",
  17532. image: {
  17533. source: "./media/characters/pandora/front.svg",
  17534. extra: 2720 / 2556,
  17535. bottom: 0.015
  17536. }
  17537. },
  17538. back: {
  17539. height: math.unit(6, "feet"),
  17540. weight: math.unit(150, "lb"),
  17541. name: "Back",
  17542. image: {
  17543. source: "./media/characters/pandora/back.svg",
  17544. extra: 2720 / 2556,
  17545. bottom: 0.01
  17546. }
  17547. },
  17548. beans: {
  17549. height: math.unit(6 / 8, "feet"),
  17550. name: "Beans",
  17551. image: {
  17552. source: "./media/characters/pandora/beans.svg"
  17553. }
  17554. },
  17555. collar: {
  17556. height: math.unit(0.31, "feet"),
  17557. name: "Collar",
  17558. image: {
  17559. source: "./media/characters/pandora/collar.svg"
  17560. }
  17561. },
  17562. skirt: {
  17563. height: math.unit(6, "feet"),
  17564. weight: math.unit(150, "lb"),
  17565. name: "Skirt",
  17566. image: {
  17567. source: "./media/characters/pandora/skirt.svg",
  17568. extra: 1622 / 1525,
  17569. bottom: 0.015
  17570. }
  17571. },
  17572. hoodie: {
  17573. height: math.unit(6, "feet"),
  17574. weight: math.unit(150, "lb"),
  17575. name: "Hoodie",
  17576. image: {
  17577. source: "./media/characters/pandora/hoodie.svg",
  17578. extra: 1622 / 1525,
  17579. bottom: 0.015
  17580. }
  17581. },
  17582. casual: {
  17583. height: math.unit(6, "feet"),
  17584. weight: math.unit(150, "lb"),
  17585. name: "Casual",
  17586. image: {
  17587. source: "./media/characters/pandora/casual.svg",
  17588. extra: 1622 / 1525,
  17589. bottom: 0.015
  17590. }
  17591. },
  17592. },
  17593. [
  17594. {
  17595. name: "Normal",
  17596. height: math.unit(6, "feet")
  17597. },
  17598. {
  17599. name: "Big Steppy",
  17600. height: math.unit(1, "km"),
  17601. default: true
  17602. },
  17603. {
  17604. name: "Galactic Steppy",
  17605. height: math.unit(2, "gigameters")
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17611. {
  17612. side: {
  17613. height: math.unit(10, "feet"),
  17614. weight: math.unit(800, "kg"),
  17615. name: "Side",
  17616. image: {
  17617. source: "./media/characters/venio-darcony/side.svg",
  17618. extra: 1373 / 1003,
  17619. bottom: 0.037
  17620. }
  17621. },
  17622. front: {
  17623. height: math.unit(19, "feet"),
  17624. weight: math.unit(800, "kg"),
  17625. name: "Front",
  17626. image: {
  17627. source: "./media/characters/venio-darcony/front.svg"
  17628. }
  17629. },
  17630. back: {
  17631. height: math.unit(19, "feet"),
  17632. weight: math.unit(800, "kg"),
  17633. name: "Back",
  17634. image: {
  17635. source: "./media/characters/venio-darcony/back.svg"
  17636. }
  17637. },
  17638. sideNsfw: {
  17639. height: math.unit(10, "feet"),
  17640. weight: math.unit(800, "kg"),
  17641. name: "Side (NSFW)",
  17642. image: {
  17643. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17644. extra: 1373 / 1003,
  17645. bottom: 0.037
  17646. }
  17647. },
  17648. frontNsfw: {
  17649. height: math.unit(19, "feet"),
  17650. weight: math.unit(800, "kg"),
  17651. name: "Front (NSFW)",
  17652. image: {
  17653. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17654. }
  17655. },
  17656. backNsfw: {
  17657. height: math.unit(19, "feet"),
  17658. weight: math.unit(800, "kg"),
  17659. name: "Back (NSFW)",
  17660. image: {
  17661. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17662. }
  17663. },
  17664. sideArmored: {
  17665. height: math.unit(10, "feet"),
  17666. weight: math.unit(800, "kg"),
  17667. name: "Side (Armored)",
  17668. image: {
  17669. source: "./media/characters/venio-darcony/side-armored.svg",
  17670. extra: 1373 / 1003,
  17671. bottom: 0.037
  17672. }
  17673. },
  17674. frontArmored: {
  17675. height: math.unit(19, "feet"),
  17676. weight: math.unit(900, "kg"),
  17677. name: "Front (Armored)",
  17678. image: {
  17679. source: "./media/characters/venio-darcony/front-armored.svg"
  17680. }
  17681. },
  17682. backArmored: {
  17683. height: math.unit(19, "feet"),
  17684. weight: math.unit(900, "kg"),
  17685. name: "Back (Armored)",
  17686. image: {
  17687. source: "./media/characters/venio-darcony/back-armored.svg"
  17688. }
  17689. },
  17690. sword: {
  17691. height: math.unit(10, "feet"),
  17692. weight: math.unit(50, "lb"),
  17693. name: "Sword",
  17694. image: {
  17695. source: "./media/characters/venio-darcony/sword.svg"
  17696. }
  17697. },
  17698. },
  17699. [
  17700. {
  17701. name: "Normal",
  17702. height: math.unit(10, "feet")
  17703. },
  17704. {
  17705. name: "Macro",
  17706. height: math.unit(130, "feet"),
  17707. default: true
  17708. },
  17709. {
  17710. name: "Macro+",
  17711. height: math.unit(240, "feet")
  17712. },
  17713. ]
  17714. ))
  17715. characterMakers.push(() => makeCharacter(
  17716. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17717. {
  17718. front: {
  17719. height: math.unit(6, "feet"),
  17720. weight: math.unit(150, "lb"),
  17721. name: "Front",
  17722. image: {
  17723. source: "./media/characters/veski/front.svg",
  17724. extra: 1299 / 1225,
  17725. bottom: 0.04
  17726. }
  17727. },
  17728. back: {
  17729. height: math.unit(6, "feet"),
  17730. weight: math.unit(150, "lb"),
  17731. name: "Back",
  17732. image: {
  17733. source: "./media/characters/veski/back.svg",
  17734. extra: 1299 / 1225,
  17735. bottom: 0.008
  17736. }
  17737. },
  17738. maw: {
  17739. height: math.unit(1.5 * 1.21, "feet"),
  17740. name: "Maw",
  17741. image: {
  17742. source: "./media/characters/veski/maw.svg"
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Macro",
  17749. height: math.unit(2, "km"),
  17750. default: true
  17751. },
  17752. ]
  17753. ))
  17754. characterMakers.push(() => makeCharacter(
  17755. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17756. {
  17757. front: {
  17758. height: math.unit(5 + 7 / 12, "feet"),
  17759. name: "Front",
  17760. image: {
  17761. source: "./media/characters/isabelle/front.svg",
  17762. extra: 2130 / 1976,
  17763. bottom: 0.05
  17764. }
  17765. },
  17766. },
  17767. [
  17768. {
  17769. name: "Supermicro",
  17770. height: math.unit(10, "micrometers")
  17771. },
  17772. {
  17773. name: "Micro",
  17774. height: math.unit(1, "inch")
  17775. },
  17776. {
  17777. name: "Tiny",
  17778. height: math.unit(5, "inches")
  17779. },
  17780. {
  17781. name: "Standard",
  17782. height: math.unit(5 + 7 / 12, "inches")
  17783. },
  17784. {
  17785. name: "Macro",
  17786. height: math.unit(80, "meters"),
  17787. default: true
  17788. },
  17789. {
  17790. name: "Megamacro",
  17791. height: math.unit(250, "meters")
  17792. },
  17793. {
  17794. name: "Gigamacro",
  17795. height: math.unit(5, "km")
  17796. },
  17797. {
  17798. name: "Cosmic",
  17799. height: math.unit(2.5e6, "miles")
  17800. },
  17801. ]
  17802. ))
  17803. characterMakers.push(() => makeCharacter(
  17804. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17805. {
  17806. front: {
  17807. height: math.unit(6, "feet"),
  17808. weight: math.unit(150, "lb"),
  17809. name: "Front",
  17810. image: {
  17811. source: "./media/characters/hanzo/front.svg",
  17812. extra: 374 / 344,
  17813. bottom: 0.02
  17814. }
  17815. },
  17816. },
  17817. [
  17818. {
  17819. name: "Normal",
  17820. height: math.unit(8, "feet"),
  17821. default: true
  17822. },
  17823. ]
  17824. ))
  17825. characterMakers.push(() => makeCharacter(
  17826. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17827. {
  17828. front: {
  17829. height: math.unit(7, "feet"),
  17830. weight: math.unit(130, "lb"),
  17831. name: "Front",
  17832. image: {
  17833. source: "./media/characters/anna/front.svg",
  17834. extra: 169 / 145,
  17835. bottom: 0.06
  17836. }
  17837. },
  17838. full: {
  17839. height: math.unit(4.96, "feet"),
  17840. weight: math.unit(220, "lb"),
  17841. name: "Full",
  17842. image: {
  17843. source: "./media/characters/anna/full.svg",
  17844. extra: 138 / 114,
  17845. bottom: 0.15
  17846. }
  17847. },
  17848. tongue: {
  17849. height: math.unit(2.53, "feet"),
  17850. name: "Tongue",
  17851. image: {
  17852. source: "./media/characters/anna/tongue.svg"
  17853. }
  17854. },
  17855. },
  17856. [
  17857. {
  17858. name: "Normal",
  17859. height: math.unit(7, "feet"),
  17860. default: true
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17866. {
  17867. front: {
  17868. height: math.unit(7, "feet"),
  17869. weight: math.unit(150, "lb"),
  17870. name: "Front",
  17871. image: {
  17872. source: "./media/characters/ian-corvid/front.svg",
  17873. extra: 150 / 142,
  17874. bottom: 0.02
  17875. }
  17876. },
  17877. back: {
  17878. height: math.unit(7, "feet"),
  17879. weight: math.unit(150, "lb"),
  17880. name: "Back",
  17881. image: {
  17882. source: "./media/characters/ian-corvid/back.svg",
  17883. extra: 150 / 143,
  17884. bottom: 0.01
  17885. }
  17886. },
  17887. stomping: {
  17888. height: math.unit(7, "feet"),
  17889. weight: math.unit(150, "lb"),
  17890. name: "Stomping",
  17891. image: {
  17892. source: "./media/characters/ian-corvid/stomping.svg",
  17893. extra: 76 / 72
  17894. }
  17895. },
  17896. sitting: {
  17897. height: math.unit(7 / 1.8, "feet"),
  17898. weight: math.unit(150, "lb"),
  17899. name: "Sitting",
  17900. image: {
  17901. source: "./media/characters/ian-corvid/sitting.svg",
  17902. extra: 1400 / 1269,
  17903. bottom: 0.15
  17904. }
  17905. },
  17906. },
  17907. [
  17908. {
  17909. name: "Tiny Microw",
  17910. height: math.unit(1, "inch")
  17911. },
  17912. {
  17913. name: "Microw",
  17914. height: math.unit(6, "inches")
  17915. },
  17916. {
  17917. name: "Crow",
  17918. height: math.unit(7 + 1 / 12, "feet"),
  17919. default: true
  17920. },
  17921. {
  17922. name: "Macrow",
  17923. height: math.unit(176, "feet")
  17924. },
  17925. ]
  17926. ))
  17927. characterMakers.push(() => makeCharacter(
  17928. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17929. {
  17930. front: {
  17931. height: math.unit(5 + 7 / 12, "feet"),
  17932. weight: math.unit(147, "lb"),
  17933. name: "Front",
  17934. image: {
  17935. source: "./media/characters/natalie-kellon/front.svg",
  17936. extra: 1214 / 1141,
  17937. bottom: 0.02
  17938. }
  17939. },
  17940. },
  17941. [
  17942. {
  17943. name: "Micro",
  17944. height: math.unit(1 / 16, "inch")
  17945. },
  17946. {
  17947. name: "Tiny",
  17948. height: math.unit(4, "inches")
  17949. },
  17950. {
  17951. name: "Normal",
  17952. height: math.unit(5 + 7 / 12, "feet"),
  17953. default: true
  17954. },
  17955. {
  17956. name: "Amazon",
  17957. height: math.unit(12, "feet")
  17958. },
  17959. {
  17960. name: "Giantess",
  17961. height: math.unit(160, "meters")
  17962. },
  17963. {
  17964. name: "Titaness",
  17965. height: math.unit(800, "meters")
  17966. },
  17967. ]
  17968. ))
  17969. characterMakers.push(() => makeCharacter(
  17970. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17971. {
  17972. front: {
  17973. height: math.unit(6, "feet"),
  17974. weight: math.unit(150, "lb"),
  17975. name: "Front",
  17976. image: {
  17977. source: "./media/characters/alluria/front.svg",
  17978. extra: 806 / 738,
  17979. bottom: 0.01
  17980. }
  17981. },
  17982. side: {
  17983. height: math.unit(6, "feet"),
  17984. weight: math.unit(150, "lb"),
  17985. name: "Side",
  17986. image: {
  17987. source: "./media/characters/alluria/side.svg",
  17988. extra: 800 / 750,
  17989. }
  17990. },
  17991. back: {
  17992. height: math.unit(6, "feet"),
  17993. weight: math.unit(150, "lb"),
  17994. name: "Back",
  17995. image: {
  17996. source: "./media/characters/alluria/back.svg",
  17997. extra: 806 / 738,
  17998. }
  17999. },
  18000. frontMaid: {
  18001. height: math.unit(6, "feet"),
  18002. weight: math.unit(150, "lb"),
  18003. name: "Front (Maid)",
  18004. image: {
  18005. source: "./media/characters/alluria/front-maid.svg",
  18006. extra: 806 / 738,
  18007. bottom: 0.01
  18008. }
  18009. },
  18010. sideMaid: {
  18011. height: math.unit(6, "feet"),
  18012. weight: math.unit(150, "lb"),
  18013. name: "Side (Maid)",
  18014. image: {
  18015. source: "./media/characters/alluria/side-maid.svg",
  18016. extra: 800 / 750,
  18017. bottom: 0.005
  18018. }
  18019. },
  18020. backMaid: {
  18021. height: math.unit(6, "feet"),
  18022. weight: math.unit(150, "lb"),
  18023. name: "Back (Maid)",
  18024. image: {
  18025. source: "./media/characters/alluria/back-maid.svg",
  18026. extra: 806 / 738,
  18027. }
  18028. },
  18029. },
  18030. [
  18031. {
  18032. name: "Micro",
  18033. height: math.unit(6, "inches"),
  18034. default: true
  18035. },
  18036. ]
  18037. ))
  18038. characterMakers.push(() => makeCharacter(
  18039. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18040. {
  18041. front: {
  18042. height: math.unit(6, "feet"),
  18043. weight: math.unit(150, "lb"),
  18044. name: "Front",
  18045. image: {
  18046. source: "./media/characters/kyle/front.svg",
  18047. extra: 1069 / 962,
  18048. bottom: 77.228 / 1727.45
  18049. }
  18050. },
  18051. },
  18052. [
  18053. {
  18054. name: "Macro",
  18055. height: math.unit(150, "feet"),
  18056. default: true
  18057. },
  18058. ]
  18059. ))
  18060. characterMakers.push(() => makeCharacter(
  18061. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18062. {
  18063. front: {
  18064. height: math.unit(6, "feet"),
  18065. weight: math.unit(300, "lb"),
  18066. name: "Front",
  18067. image: {
  18068. source: "./media/characters/duncan/front.svg",
  18069. extra: 1650 / 1482,
  18070. bottom: 0.05
  18071. }
  18072. },
  18073. },
  18074. [
  18075. {
  18076. name: "Macro",
  18077. height: math.unit(100, "feet"),
  18078. default: true
  18079. },
  18080. ]
  18081. ))
  18082. characterMakers.push(() => makeCharacter(
  18083. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18084. {
  18085. front: {
  18086. height: math.unit(5 + 4 / 12, "feet"),
  18087. weight: math.unit(220, "lb"),
  18088. name: "Front",
  18089. image: {
  18090. source: "./media/characters/memory/front.svg",
  18091. extra: 3641 / 3545,
  18092. bottom: 0.03
  18093. }
  18094. },
  18095. back: {
  18096. height: math.unit(5 + 4 / 12, "feet"),
  18097. weight: math.unit(220, "lb"),
  18098. name: "Back",
  18099. image: {
  18100. source: "./media/characters/memory/back.svg",
  18101. extra: 3641 / 3545,
  18102. bottom: 0.025
  18103. }
  18104. },
  18105. frontSkirt: {
  18106. height: math.unit(5 + 4 / 12, "feet"),
  18107. weight: math.unit(220, "lb"),
  18108. name: "Front (Skirt)",
  18109. image: {
  18110. source: "./media/characters/memory/front-skirt.svg",
  18111. extra: 3641 / 3545,
  18112. bottom: 0.03
  18113. }
  18114. },
  18115. frontDress: {
  18116. height: math.unit(5 + 4 / 12, "feet"),
  18117. weight: math.unit(220, "lb"),
  18118. name: "Front (Dress)",
  18119. image: {
  18120. source: "./media/characters/memory/front-dress.svg",
  18121. extra: 3641 / 3545,
  18122. bottom: 0.03
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Micro",
  18129. height: math.unit(6, "inches"),
  18130. default: true
  18131. },
  18132. {
  18133. name: "Normal",
  18134. height: math.unit(5 + 4 / 12, "feet")
  18135. },
  18136. ]
  18137. ))
  18138. characterMakers.push(() => makeCharacter(
  18139. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18140. {
  18141. front: {
  18142. height: math.unit(4 + 11 / 12, "feet"),
  18143. weight: math.unit(100, "lb"),
  18144. name: "Front",
  18145. image: {
  18146. source: "./media/characters/luno/front.svg",
  18147. extra: 1535 / 1487,
  18148. bottom: 0.03
  18149. }
  18150. },
  18151. },
  18152. [
  18153. {
  18154. name: "Micro",
  18155. height: math.unit(3, "inches")
  18156. },
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(4 + 11 / 12, "feet"),
  18160. default: true
  18161. },
  18162. {
  18163. name: "Macro",
  18164. height: math.unit(300, "feet")
  18165. },
  18166. {
  18167. name: "Megamacro",
  18168. height: math.unit(700, "miles")
  18169. },
  18170. ]
  18171. ))
  18172. characterMakers.push(() => makeCharacter(
  18173. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18174. {
  18175. front: {
  18176. height: math.unit(6 + 2 / 12, "feet"),
  18177. weight: math.unit(170, "lb"),
  18178. name: "Front",
  18179. image: {
  18180. source: "./media/characters/jamesy/front.svg",
  18181. extra: 440 / 382,
  18182. bottom: 0.005
  18183. }
  18184. },
  18185. },
  18186. [
  18187. {
  18188. name: "Micro",
  18189. height: math.unit(3, "inches")
  18190. },
  18191. {
  18192. name: "Normal",
  18193. height: math.unit(6 + 2 / 12, "feet"),
  18194. default: true
  18195. },
  18196. {
  18197. name: "Macro",
  18198. height: math.unit(300, "feet")
  18199. },
  18200. {
  18201. name: "Megamacro",
  18202. height: math.unit(700, "miles")
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18208. {
  18209. front: {
  18210. height: math.unit(6, "feet"),
  18211. weight: math.unit(160, "lb"),
  18212. name: "Front",
  18213. image: {
  18214. source: "./media/characters/mark/front.svg",
  18215. extra: 3300 / 3100,
  18216. bottom: 136.42 / 3440.47
  18217. }
  18218. },
  18219. },
  18220. [
  18221. {
  18222. name: "Macro",
  18223. height: math.unit(120, "meters")
  18224. },
  18225. {
  18226. name: "Bigger Macro",
  18227. height: math.unit(350, "meters")
  18228. },
  18229. {
  18230. name: "Megamacro",
  18231. height: math.unit(8, "km"),
  18232. default: true
  18233. },
  18234. {
  18235. name: "Continental",
  18236. height: math.unit(4550, "km")
  18237. },
  18238. {
  18239. name: "Planetary",
  18240. height: math.unit(65000, "km")
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18246. {
  18247. front: {
  18248. height: math.unit(6, "feet"),
  18249. weight: math.unit(400, "lb"),
  18250. name: "Front",
  18251. image: {
  18252. source: "./media/characters/mac/front.svg",
  18253. extra: 1048 / 987.7,
  18254. bottom: 60 / 1107.6,
  18255. }
  18256. },
  18257. },
  18258. [
  18259. {
  18260. name: "Macro",
  18261. height: math.unit(500, "feet"),
  18262. default: true
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18268. {
  18269. front: {
  18270. height: math.unit(5 + 2 / 12, "feet"),
  18271. weight: math.unit(190, "lb"),
  18272. name: "Front",
  18273. image: {
  18274. source: "./media/characters/bari/front.svg",
  18275. extra: 3156 / 2880,
  18276. bottom: 0.03
  18277. }
  18278. },
  18279. back: {
  18280. height: math.unit(5 + 2 / 12, "feet"),
  18281. weight: math.unit(190, "lb"),
  18282. name: "Back",
  18283. image: {
  18284. source: "./media/characters/bari/back.svg",
  18285. extra: 3260 / 2834,
  18286. bottom: 0.025
  18287. }
  18288. },
  18289. frontPlush: {
  18290. height: math.unit(5 + 2 / 12, "feet"),
  18291. weight: math.unit(190, "lb"),
  18292. name: "Front (Plush)",
  18293. image: {
  18294. source: "./media/characters/bari/front-plush.svg",
  18295. extra: 1112 / 1061,
  18296. bottom: 0.002
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Micro",
  18303. height: math.unit(3, "inches")
  18304. },
  18305. {
  18306. name: "Normal",
  18307. height: math.unit(5 + 2 / 12, "feet"),
  18308. default: true
  18309. },
  18310. {
  18311. name: "Macro",
  18312. height: math.unit(20, "feet")
  18313. },
  18314. ]
  18315. ))
  18316. characterMakers.push(() => makeCharacter(
  18317. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18318. {
  18319. front: {
  18320. height: math.unit(6 + 1 / 12, "feet"),
  18321. weight: math.unit(275, "lb"),
  18322. name: "Front",
  18323. image: {
  18324. source: "./media/characters/hunter-misha-raven/front.svg"
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Mortal",
  18331. height: math.unit(6 + 1 / 12, "feet")
  18332. },
  18333. {
  18334. name: "Divine",
  18335. height: math.unit(1.12134e34, "parsecs"),
  18336. default: true
  18337. },
  18338. ]
  18339. ))
  18340. characterMakers.push(() => makeCharacter(
  18341. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18342. {
  18343. front: {
  18344. height: math.unit(6 + 3 / 12, "feet"),
  18345. weight: math.unit(220, "lb"),
  18346. name: "Front",
  18347. image: {
  18348. source: "./media/characters/max-calore/front.svg",
  18349. extra: 1700 / 1648,
  18350. bottom: 0.01
  18351. }
  18352. },
  18353. back: {
  18354. height: math.unit(6 + 3 / 12, "feet"),
  18355. weight: math.unit(220, "lb"),
  18356. name: "Back",
  18357. image: {
  18358. source: "./media/characters/max-calore/back.svg",
  18359. extra: 1700 / 1648,
  18360. bottom: 0.01
  18361. }
  18362. },
  18363. },
  18364. [
  18365. {
  18366. name: "Normal",
  18367. height: math.unit(6 + 3 / 12, "feet"),
  18368. default: true
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18374. {
  18375. side: {
  18376. height: math.unit(2 + 8 / 12, "feet"),
  18377. weight: math.unit(99, "lb"),
  18378. name: "Side",
  18379. image: {
  18380. source: "./media/characters/aspen/side.svg",
  18381. extra: 152 / 138,
  18382. bottom: 0.032
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Normal",
  18389. height: math.unit(2 + 8 / 12, "feet"),
  18390. default: true
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18396. {
  18397. side: {
  18398. height: math.unit(3 + 2 / 12, "feet"),
  18399. weight: math.unit(224, "lb"),
  18400. name: "Side",
  18401. image: {
  18402. source: "./media/characters/sheila-feral-wolf/side.svg",
  18403. extra: 179 / 166,
  18404. bottom: 0.03
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Normal",
  18411. height: math.unit(3 + 2 / 12, "feet"),
  18412. default: true
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18418. {
  18419. side: {
  18420. height: math.unit(1 + 9 / 12, "feet"),
  18421. weight: math.unit(38, "lb"),
  18422. name: "Side",
  18423. image: {
  18424. source: "./media/characters/michelle/side.svg",
  18425. extra: 147 / 136.7,
  18426. bottom: 0.03
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(1 + 9 / 12, "feet"),
  18434. default: true
  18435. },
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18440. {
  18441. front: {
  18442. height: math.unit(1.54, "feet"),
  18443. weight: math.unit(50, "lb"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/nino/front.svg"
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Normal",
  18453. height: math.unit(1.54, "feet"),
  18454. default: true
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18460. {
  18461. front: {
  18462. height: math.unit(1.49, "feet"),
  18463. weight: math.unit(45, "lb"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/viola/front.svg"
  18467. }
  18468. },
  18469. },
  18470. [
  18471. {
  18472. name: "Normal",
  18473. height: math.unit(1.49, "feet"),
  18474. default: true
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18480. {
  18481. front: {
  18482. height: math.unit(6 + 5 / 12, "feet"),
  18483. weight: math.unit(580, "lb"),
  18484. name: "Front",
  18485. image: {
  18486. source: "./media/characters/atlas/front.svg",
  18487. extra: 298.5 / 290,
  18488. bottom: 0.015
  18489. }
  18490. },
  18491. },
  18492. [
  18493. {
  18494. name: "Normal",
  18495. height: math.unit(6 + 5 / 12, "feet"),
  18496. default: true
  18497. },
  18498. ]
  18499. ))
  18500. characterMakers.push(() => makeCharacter(
  18501. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18502. {
  18503. side: {
  18504. height: math.unit(15.6, "inches"),
  18505. weight: math.unit(10, "lb"),
  18506. name: "Side",
  18507. image: {
  18508. source: "./media/characters/davy/side.svg",
  18509. extra: 200 / 170,
  18510. bottom: 0.01
  18511. }
  18512. },
  18513. },
  18514. [
  18515. {
  18516. name: "Normal",
  18517. height: math.unit(15.6, "inches"),
  18518. default: true
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18524. {
  18525. side: {
  18526. height: math.unit(4 + 8 / 12, "feet"),
  18527. weight: math.unit(166, "lb"),
  18528. name: "Side",
  18529. image: {
  18530. source: "./media/characters/fiona/side.svg",
  18531. extra: 232 / 220,
  18532. bottom: 0.03
  18533. }
  18534. },
  18535. },
  18536. [
  18537. {
  18538. name: "Normal",
  18539. height: math.unit(4 + 8 / 12, "feet"),
  18540. default: true
  18541. },
  18542. ]
  18543. ))
  18544. characterMakers.push(() => makeCharacter(
  18545. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18546. {
  18547. front: {
  18548. height: math.unit(26, "inches"),
  18549. weight: math.unit(35, "lb"),
  18550. name: "Front",
  18551. image: {
  18552. source: "./media/characters/lyla/front.svg",
  18553. bottom: 0.1
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Normal",
  18560. height: math.unit(3, "feet"),
  18561. default: true
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18567. {
  18568. side: {
  18569. height: math.unit(1.8, "feet"),
  18570. weight: math.unit(44, "lb"),
  18571. name: "Side",
  18572. image: {
  18573. source: "./media/characters/perseus/side.svg",
  18574. bottom: 0.21
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(1.8, "feet"),
  18582. default: true
  18583. },
  18584. ]
  18585. ))
  18586. characterMakers.push(() => makeCharacter(
  18587. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18588. {
  18589. side: {
  18590. height: math.unit(4 + 2 / 12, "feet"),
  18591. weight: math.unit(20, "lb"),
  18592. name: "Side",
  18593. image: {
  18594. source: "./media/characters/remus/side.svg"
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Normal",
  18601. height: math.unit(4 + 2 / 12, "feet"),
  18602. default: true
  18603. },
  18604. ]
  18605. ))
  18606. characterMakers.push(() => makeCharacter(
  18607. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18608. {
  18609. front: {
  18610. height: math.unit(4 + 11 / 12, "feet"),
  18611. weight: math.unit(114, "lb"),
  18612. name: "Front",
  18613. image: {
  18614. source: "./media/characters/raf/front.svg",
  18615. extra: 1504/1339,
  18616. bottom: 26/1530
  18617. }
  18618. },
  18619. side: {
  18620. height: math.unit(4 + 11 / 12, "feet"),
  18621. weight: math.unit(114, "lb"),
  18622. name: "Side",
  18623. image: {
  18624. source: "./media/characters/raf/side.svg",
  18625. extra: 1466/1316,
  18626. bottom: 29/1495
  18627. }
  18628. },
  18629. paw: {
  18630. height: math.unit(1.45, "feet"),
  18631. name: "Paw",
  18632. image: {
  18633. source: "./media/characters/raf/paw.svg"
  18634. },
  18635. extraAttributes: {
  18636. "toeSize": {
  18637. name: "Toe Size",
  18638. power: 2,
  18639. type: "area",
  18640. base: math.unit(0.004, "m^2")
  18641. },
  18642. "padSize": {
  18643. name: "Pad Size",
  18644. power: 2,
  18645. type: "area",
  18646. base: math.unit(0.04, "m^2")
  18647. },
  18648. "footSize": {
  18649. name: "Foot Size",
  18650. power: 2,
  18651. type: "area",
  18652. base: math.unit(0.08, "m^2")
  18653. },
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Micro",
  18660. height: math.unit(2, "inches")
  18661. },
  18662. {
  18663. name: "Normal",
  18664. height: math.unit(4 + 11 / 12, "feet"),
  18665. default: true
  18666. },
  18667. {
  18668. name: "Macro",
  18669. height: math.unit(70, "feet")
  18670. },
  18671. ]
  18672. ))
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18675. {
  18676. front: {
  18677. height: math.unit(1.5, "meters"),
  18678. weight: math.unit(68, "kg"),
  18679. name: "Front",
  18680. image: {
  18681. source: "./media/characters/liam-einarr/front.svg",
  18682. extra: 2822 / 2666
  18683. }
  18684. },
  18685. back: {
  18686. height: math.unit(1.5, "meters"),
  18687. weight: math.unit(68, "kg"),
  18688. name: "Back",
  18689. image: {
  18690. source: "./media/characters/liam-einarr/back.svg",
  18691. extra: 2822 / 2666,
  18692. bottom: 0.015
  18693. }
  18694. },
  18695. },
  18696. [
  18697. {
  18698. name: "Normal",
  18699. height: math.unit(1.5, "meters"),
  18700. default: true
  18701. },
  18702. {
  18703. name: "Macro",
  18704. height: math.unit(150, "meters")
  18705. },
  18706. {
  18707. name: "Megamacro",
  18708. height: math.unit(35, "km")
  18709. },
  18710. ]
  18711. ))
  18712. characterMakers.push(() => makeCharacter(
  18713. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18714. {
  18715. front: {
  18716. height: math.unit(6, "feet"),
  18717. weight: math.unit(75, "kg"),
  18718. name: "Front",
  18719. image: {
  18720. source: "./media/characters/linda/front.svg",
  18721. extra: 930 / 874,
  18722. bottom: 0.004
  18723. }
  18724. },
  18725. },
  18726. [
  18727. {
  18728. name: "Normal",
  18729. height: math.unit(6, "feet"),
  18730. default: true
  18731. },
  18732. ]
  18733. ))
  18734. characterMakers.push(() => makeCharacter(
  18735. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18736. {
  18737. front: {
  18738. height: math.unit(6 + 8 / 12, "feet"),
  18739. weight: math.unit(220, "lb"),
  18740. name: "Front",
  18741. image: {
  18742. source: "./media/characters/caylex/front.svg",
  18743. extra: 821 / 772,
  18744. bottom: 0.07
  18745. }
  18746. },
  18747. back: {
  18748. height: math.unit(6 + 8 / 12, "feet"),
  18749. weight: math.unit(220, "lb"),
  18750. name: "Back",
  18751. image: {
  18752. source: "./media/characters/caylex/back.svg",
  18753. extra: 821 / 772,
  18754. bottom: 0.022
  18755. }
  18756. },
  18757. hand: {
  18758. height: math.unit(1.25, "feet"),
  18759. name: "Hand",
  18760. image: {
  18761. source: "./media/characters/caylex/hand.svg"
  18762. }
  18763. },
  18764. foot: {
  18765. height: math.unit(1.6, "feet"),
  18766. name: "Foot",
  18767. image: {
  18768. source: "./media/characters/caylex/foot.svg"
  18769. }
  18770. },
  18771. armored: {
  18772. height: math.unit(6 + 8 / 12, "feet"),
  18773. weight: math.unit(250, "lb"),
  18774. name: "Armored",
  18775. image: {
  18776. source: "./media/characters/caylex/armored.svg",
  18777. extra: 1420 / 1310,
  18778. bottom: 0.045
  18779. }
  18780. },
  18781. },
  18782. [
  18783. {
  18784. name: "Normal",
  18785. height: math.unit(6 + 8 / 12, "feet"),
  18786. default: true
  18787. },
  18788. {
  18789. name: "Normal+",
  18790. height: math.unit(12, "feet")
  18791. },
  18792. ]
  18793. ))
  18794. characterMakers.push(() => makeCharacter(
  18795. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18796. {
  18797. front: {
  18798. height: math.unit(7 + 6 / 12, "feet"),
  18799. weight: math.unit(288, "lb"),
  18800. name: "Front",
  18801. image: {
  18802. source: "./media/characters/alana/front.svg",
  18803. extra: 679 / 653,
  18804. bottom: 22.5 / 701
  18805. }
  18806. },
  18807. },
  18808. [
  18809. {
  18810. name: "Normal",
  18811. height: math.unit(7 + 6 / 12, "feet")
  18812. },
  18813. {
  18814. name: "Large",
  18815. height: math.unit(50, "feet")
  18816. },
  18817. {
  18818. name: "Macro",
  18819. height: math.unit(100, "feet"),
  18820. default: true
  18821. },
  18822. {
  18823. name: "Macro+",
  18824. height: math.unit(200, "feet")
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(6 + 1 / 12, "feet"),
  18833. weight: math.unit(210, "lb"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/hasani/front.svg",
  18837. extra: 244 / 232,
  18838. bottom: 0.01
  18839. }
  18840. },
  18841. back: {
  18842. height: math.unit(6 + 1 / 12, "feet"),
  18843. weight: math.unit(210, "lb"),
  18844. name: "Back",
  18845. image: {
  18846. source: "./media/characters/hasani/back.svg",
  18847. extra: 244 / 232,
  18848. bottom: 0.01
  18849. }
  18850. },
  18851. },
  18852. [
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(6 + 1 / 12, "feet")
  18856. },
  18857. {
  18858. name: "Macro",
  18859. height: math.unit(175, "feet"),
  18860. default: true
  18861. },
  18862. ]
  18863. ))
  18864. characterMakers.push(() => makeCharacter(
  18865. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18866. {
  18867. front: {
  18868. height: math.unit(1.82, "meters"),
  18869. weight: math.unit(140, "lb"),
  18870. name: "Front",
  18871. image: {
  18872. source: "./media/characters/nita/front.svg",
  18873. extra: 2473 / 2363,
  18874. bottom: 0.01
  18875. }
  18876. },
  18877. },
  18878. [
  18879. {
  18880. name: "Normal",
  18881. height: math.unit(1.82, "m")
  18882. },
  18883. {
  18884. name: "Macro",
  18885. height: math.unit(300, "m")
  18886. },
  18887. {
  18888. name: "Mistake Canon",
  18889. height: math.unit(0.5, "miles"),
  18890. default: true
  18891. },
  18892. {
  18893. name: "Big Mistake",
  18894. height: math.unit(13, "miles")
  18895. },
  18896. {
  18897. name: "Playing God",
  18898. height: math.unit(2450, "miles")
  18899. },
  18900. ]
  18901. ))
  18902. characterMakers.push(() => makeCharacter(
  18903. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18904. {
  18905. front: {
  18906. height: math.unit(4, "feet"),
  18907. weight: math.unit(120, "lb"),
  18908. name: "Front",
  18909. image: {
  18910. source: "./media/characters/shiriko/front.svg",
  18911. extra: 970/934,
  18912. bottom: 5/975
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Normal",
  18919. height: math.unit(4, "feet"),
  18920. default: true
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(6, "feet"),
  18929. name: "front",
  18930. image: {
  18931. source: "./media/characters/deja/front.svg",
  18932. extra: 926 / 840,
  18933. bottom: 0.07
  18934. }
  18935. },
  18936. },
  18937. [
  18938. {
  18939. name: "Planck Length",
  18940. height: math.unit(1.6e-35, "meters")
  18941. },
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(30.48, "meters"),
  18945. default: true
  18946. },
  18947. {
  18948. name: "Universal",
  18949. height: math.unit(8.8e26, "meters")
  18950. },
  18951. ]
  18952. ))
  18953. characterMakers.push(() => makeCharacter(
  18954. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18955. {
  18956. side: {
  18957. height: math.unit(8, "feet"),
  18958. weight: math.unit(6300, "lb"),
  18959. name: "Side",
  18960. image: {
  18961. source: "./media/characters/anima/side.svg",
  18962. bottom: 0.035
  18963. }
  18964. },
  18965. },
  18966. [
  18967. {
  18968. name: "Normal",
  18969. height: math.unit(8, "feet"),
  18970. default: true
  18971. },
  18972. ]
  18973. ))
  18974. characterMakers.push(() => makeCharacter(
  18975. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18976. {
  18977. front: {
  18978. height: math.unit(8, "feet"),
  18979. weight: math.unit(350, "lb"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/bianca/front.svg",
  18983. extra: 234 / 225,
  18984. bottom: 0.03
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(8, "feet"),
  18992. default: true
  18993. },
  18994. ]
  18995. ))
  18996. characterMakers.push(() => makeCharacter(
  18997. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18998. {
  18999. front: {
  19000. height: math.unit(11 + 5/12, "feet"),
  19001. weight: math.unit(1200, "lb"),
  19002. name: "Front",
  19003. image: {
  19004. source: "./media/characters/adinia/front.svg",
  19005. extra: 1767/1641,
  19006. bottom: 44/1811
  19007. },
  19008. extraAttributes: {
  19009. "energyIntake": {
  19010. name: "Energy Intake",
  19011. power: 3,
  19012. type: "energy",
  19013. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19014. },
  19015. }
  19016. },
  19017. back: {
  19018. height: math.unit(11 + 5/12, "feet"),
  19019. weight: math.unit(1200, "lb"),
  19020. name: "Back",
  19021. image: {
  19022. source: "./media/characters/adinia/back.svg",
  19023. extra: 1834/1684,
  19024. bottom: 14/1848
  19025. },
  19026. extraAttributes: {
  19027. "energyIntake": {
  19028. name: "Energy Intake",
  19029. power: 3,
  19030. type: "energy",
  19031. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19032. },
  19033. }
  19034. },
  19035. maw: {
  19036. height: math.unit(3.79, "feet"),
  19037. name: "Maw",
  19038. image: {
  19039. source: "./media/characters/adinia/maw.svg"
  19040. }
  19041. },
  19042. rump: {
  19043. height: math.unit(4.6, "feet"),
  19044. name: "Rump",
  19045. image: {
  19046. source: "./media/characters/adinia/rump.svg"
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(11 + 5 / 12, "feet"),
  19054. default: true
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19060. {
  19061. front: {
  19062. height: math.unit(3, "meters"),
  19063. weight: math.unit(200, "kg"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/lykasa/front.svg",
  19067. extra: 1076 / 976,
  19068. bottom: 0.06
  19069. }
  19070. },
  19071. },
  19072. [
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(3, "meters")
  19076. },
  19077. {
  19078. name: "Kaiju",
  19079. height: math.unit(120, "meters"),
  19080. default: true
  19081. },
  19082. {
  19083. name: "Mega Kaiju",
  19084. height: math.unit(240, "km")
  19085. },
  19086. {
  19087. name: "Giga Kaiju",
  19088. height: math.unit(400, "megameters")
  19089. },
  19090. {
  19091. name: "Tera Kaiju",
  19092. height: math.unit(800, "gigameters")
  19093. },
  19094. {
  19095. name: "Kaiju Dragon Goddess",
  19096. height: math.unit(26, "zettaparsecs")
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19102. {
  19103. side: {
  19104. height: math.unit(283 / 124 * 6, "feet"),
  19105. weight: math.unit(35000, "lb"),
  19106. name: "Side",
  19107. image: {
  19108. source: "./media/characters/malfaren/side.svg",
  19109. extra: 1310/529,
  19110. bottom: 24/1334
  19111. }
  19112. },
  19113. front: {
  19114. height: math.unit(22.36, "feet"),
  19115. weight: math.unit(35000, "lb"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/malfaren/front.svg",
  19119. extra: 1237/1115,
  19120. bottom: 32/1269
  19121. }
  19122. },
  19123. maw: {
  19124. height: math.unit(6.9, "feet"),
  19125. name: "Maw",
  19126. image: {
  19127. source: "./media/characters/malfaren/maw.svg"
  19128. }
  19129. },
  19130. dick: {
  19131. height: math.unit(6.19, "feet"),
  19132. name: "Dick",
  19133. image: {
  19134. source: "./media/characters/malfaren/dick.svg"
  19135. }
  19136. },
  19137. eye: {
  19138. height: math.unit(0.69, "feet"),
  19139. name: "Eye",
  19140. image: {
  19141. source: "./media/characters/malfaren/eye.svg"
  19142. }
  19143. },
  19144. },
  19145. [
  19146. {
  19147. name: "Big",
  19148. height: math.unit(283 / 162 * 6, "feet"),
  19149. },
  19150. {
  19151. name: "Bigger",
  19152. height: math.unit(283 / 124 * 6, "feet")
  19153. },
  19154. {
  19155. name: "Massive",
  19156. height: math.unit(283 / 92 * 6, "feet"),
  19157. default: true
  19158. },
  19159. {
  19160. name: "👀💦",
  19161. height: math.unit(283 / 73 * 6, "feet"),
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19167. {
  19168. front: {
  19169. height: math.unit(1.7, "m"),
  19170. weight: math.unit(70, "kg"),
  19171. name: "Front",
  19172. image: {
  19173. source: "./media/characters/kernel/front.svg",
  19174. extra: 222 / 210,
  19175. bottom: 0.007
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Nano",
  19182. height: math.unit(17, "micrometers")
  19183. },
  19184. {
  19185. name: "Micro",
  19186. height: math.unit(1.7, "mm")
  19187. },
  19188. {
  19189. name: "Small",
  19190. height: math.unit(1.7, "cm")
  19191. },
  19192. {
  19193. name: "Normal",
  19194. height: math.unit(1.7, "m"),
  19195. default: true
  19196. },
  19197. ]
  19198. ))
  19199. characterMakers.push(() => makeCharacter(
  19200. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19201. {
  19202. front: {
  19203. height: math.unit(1.75, "meters"),
  19204. weight: math.unit(65, "kg"),
  19205. name: "Front",
  19206. image: {
  19207. source: "./media/characters/jayne-folest/front.svg",
  19208. extra: 2115 / 2007,
  19209. bottom: 0.02
  19210. }
  19211. },
  19212. back: {
  19213. height: math.unit(1.75, "meters"),
  19214. weight: math.unit(65, "kg"),
  19215. name: "Back",
  19216. image: {
  19217. source: "./media/characters/jayne-folest/back.svg",
  19218. extra: 2115 / 2007,
  19219. bottom: 0.005
  19220. }
  19221. },
  19222. frontClothed: {
  19223. height: math.unit(1.75, "meters"),
  19224. weight: math.unit(65, "kg"),
  19225. name: "Front (Clothed)",
  19226. image: {
  19227. source: "./media/characters/jayne-folest/front-clothed.svg",
  19228. extra: 2115 / 2007,
  19229. bottom: 0.035
  19230. }
  19231. },
  19232. hand: {
  19233. height: math.unit(1 / 1.260, "feet"),
  19234. name: "Hand",
  19235. image: {
  19236. source: "./media/characters/jayne-folest/hand.svg"
  19237. }
  19238. },
  19239. foot: {
  19240. height: math.unit(1 / 0.918, "feet"),
  19241. name: "Foot",
  19242. image: {
  19243. source: "./media/characters/jayne-folest/foot.svg"
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Micro",
  19250. height: math.unit(4, "cm")
  19251. },
  19252. {
  19253. name: "Normal",
  19254. height: math.unit(1.75, "meters")
  19255. },
  19256. {
  19257. name: "Macro",
  19258. height: math.unit(47.5, "meters"),
  19259. default: true
  19260. },
  19261. ]
  19262. ))
  19263. characterMakers.push(() => makeCharacter(
  19264. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19265. {
  19266. front: {
  19267. height: math.unit(180, "cm"),
  19268. weight: math.unit(70, "kg"),
  19269. name: "Front",
  19270. image: {
  19271. source: "./media/characters/algier/front.svg",
  19272. extra: 596 / 572,
  19273. bottom: 0.04
  19274. }
  19275. },
  19276. back: {
  19277. height: math.unit(180, "cm"),
  19278. weight: math.unit(70, "kg"),
  19279. name: "Back",
  19280. image: {
  19281. source: "./media/characters/algier/back.svg",
  19282. extra: 596 / 572,
  19283. bottom: 0.025
  19284. }
  19285. },
  19286. frontdressed: {
  19287. height: math.unit(180, "cm"),
  19288. weight: math.unit(150, "kg"),
  19289. name: "Front-dressed",
  19290. image: {
  19291. source: "./media/characters/algier/front-dressed.svg",
  19292. extra: 596 / 572,
  19293. bottom: 0.038
  19294. }
  19295. },
  19296. },
  19297. [
  19298. {
  19299. name: "Micro",
  19300. height: math.unit(5, "cm")
  19301. },
  19302. {
  19303. name: "Normal",
  19304. height: math.unit(180, "cm"),
  19305. default: true
  19306. },
  19307. {
  19308. name: "Macro",
  19309. height: math.unit(64, "m")
  19310. },
  19311. ]
  19312. ))
  19313. characterMakers.push(() => makeCharacter(
  19314. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19315. {
  19316. upright: {
  19317. height: math.unit(7, "feet"),
  19318. weight: math.unit(300, "lb"),
  19319. name: "Upright",
  19320. image: {
  19321. source: "./media/characters/pretzel/upright.svg",
  19322. extra: 534 / 522,
  19323. bottom: 0.065
  19324. }
  19325. },
  19326. sprawling: {
  19327. height: math.unit(3.75, "feet"),
  19328. weight: math.unit(300, "lb"),
  19329. name: "Sprawling",
  19330. image: {
  19331. source: "./media/characters/pretzel/sprawling.svg",
  19332. extra: 314 / 281,
  19333. bottom: 0.1
  19334. }
  19335. },
  19336. tongue: {
  19337. height: math.unit(2, "feet"),
  19338. name: "Tongue",
  19339. image: {
  19340. source: "./media/characters/pretzel/tongue.svg"
  19341. }
  19342. },
  19343. },
  19344. [
  19345. {
  19346. name: "Normal",
  19347. height: math.unit(7, "feet"),
  19348. default: true
  19349. },
  19350. {
  19351. name: "Oversized",
  19352. height: math.unit(15, "feet")
  19353. },
  19354. {
  19355. name: "Huge",
  19356. height: math.unit(30, "feet")
  19357. },
  19358. {
  19359. name: "Macro",
  19360. height: math.unit(250, "feet")
  19361. },
  19362. ]
  19363. ))
  19364. characterMakers.push(() => makeCharacter(
  19365. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19366. {
  19367. sideFront: {
  19368. height: math.unit(5 + 2 / 12, "feet"),
  19369. weight: math.unit(120, "lb"),
  19370. name: "Front Side",
  19371. image: {
  19372. source: "./media/characters/roxi/side-front.svg",
  19373. extra: 2924 / 2717,
  19374. bottom: 0.08
  19375. }
  19376. },
  19377. sideBack: {
  19378. height: math.unit(5 + 2 / 12, "feet"),
  19379. weight: math.unit(120, "lb"),
  19380. name: "Back Side",
  19381. image: {
  19382. source: "./media/characters/roxi/side-back.svg",
  19383. extra: 2904 / 2693,
  19384. bottom: 0.06
  19385. }
  19386. },
  19387. front: {
  19388. height: math.unit(5 + 2 / 12, "feet"),
  19389. weight: math.unit(120, "lb"),
  19390. name: "Front",
  19391. image: {
  19392. source: "./media/characters/roxi/front.svg",
  19393. extra: 2028 / 1907,
  19394. bottom: 0.01
  19395. }
  19396. },
  19397. frontAlt: {
  19398. height: math.unit(5 + 2 / 12, "feet"),
  19399. weight: math.unit(120, "lb"),
  19400. name: "Front (Alt)",
  19401. image: {
  19402. source: "./media/characters/roxi/front-alt.svg",
  19403. extra: 1828 / 1798,
  19404. bottom: 0.01
  19405. }
  19406. },
  19407. sitting: {
  19408. height: math.unit(2.8, "feet"),
  19409. weight: math.unit(120, "lb"),
  19410. name: "Sitting",
  19411. image: {
  19412. source: "./media/characters/roxi/sitting.svg",
  19413. extra: 2660 / 2462,
  19414. bottom: 0.1
  19415. }
  19416. },
  19417. },
  19418. [
  19419. {
  19420. name: "Normal",
  19421. height: math.unit(5 + 2 / 12, "feet"),
  19422. default: true
  19423. },
  19424. ]
  19425. ))
  19426. characterMakers.push(() => makeCharacter(
  19427. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19428. {
  19429. side: {
  19430. height: math.unit(55, "feet"),
  19431. weight: math.unit(153, "tons"),
  19432. name: "Side",
  19433. image: {
  19434. source: "./media/characters/shadow/side.svg",
  19435. extra: 701 / 628,
  19436. bottom: 0.02
  19437. }
  19438. },
  19439. flying: {
  19440. height: math.unit(145, "feet"),
  19441. weight: math.unit(153, "tons"),
  19442. name: "Flying",
  19443. image: {
  19444. source: "./media/characters/shadow/flying.svg"
  19445. }
  19446. },
  19447. },
  19448. [
  19449. {
  19450. name: "Normal",
  19451. height: math.unit(55, "feet"),
  19452. default: true
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(6, "feet"),
  19461. weight: math.unit(200, "lb"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/marcie/front.svg",
  19465. extra: 960 / 876,
  19466. bottom: 58 / 1017.87
  19467. }
  19468. },
  19469. },
  19470. [
  19471. {
  19472. name: "Macro",
  19473. height: math.unit(1, "mile"),
  19474. default: true
  19475. },
  19476. ]
  19477. ))
  19478. characterMakers.push(() => makeCharacter(
  19479. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19480. {
  19481. front: {
  19482. height: math.unit(7, "feet"),
  19483. weight: math.unit(200, "lb"),
  19484. name: "Front",
  19485. image: {
  19486. source: "./media/characters/kachina/front.svg",
  19487. extra: 1290.68 / 1119,
  19488. bottom: 36.5 / 1327.18
  19489. }
  19490. },
  19491. },
  19492. [
  19493. {
  19494. name: "Normal",
  19495. height: math.unit(7, "feet"),
  19496. default: true
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19502. {
  19503. looking: {
  19504. height: math.unit(2, "meters"),
  19505. weight: math.unit(300, "kg"),
  19506. name: "Looking",
  19507. image: {
  19508. source: "./media/characters/kash/looking.svg",
  19509. extra: 474 / 344,
  19510. bottom: 0.03
  19511. }
  19512. },
  19513. side: {
  19514. height: math.unit(2, "meters"),
  19515. weight: math.unit(300, "kg"),
  19516. name: "Side",
  19517. image: {
  19518. source: "./media/characters/kash/side.svg",
  19519. extra: 302 / 251,
  19520. bottom: 0.03
  19521. }
  19522. },
  19523. front: {
  19524. height: math.unit(2, "meters"),
  19525. weight: math.unit(300, "kg"),
  19526. name: "Front",
  19527. image: {
  19528. source: "./media/characters/kash/front.svg",
  19529. extra: 495 / 360,
  19530. bottom: 0.015
  19531. }
  19532. },
  19533. },
  19534. [
  19535. {
  19536. name: "Normal",
  19537. height: math.unit(2, "meters"),
  19538. default: true
  19539. },
  19540. {
  19541. name: "Big",
  19542. height: math.unit(3, "meters")
  19543. },
  19544. {
  19545. name: "Large",
  19546. height: math.unit(5, "meters")
  19547. },
  19548. ]
  19549. ))
  19550. characterMakers.push(() => makeCharacter(
  19551. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19552. {
  19553. feeding: {
  19554. height: math.unit(6.7, "feet"),
  19555. weight: math.unit(350, "lb"),
  19556. name: "Feeding",
  19557. image: {
  19558. source: "./media/characters/lalim/feeding.svg",
  19559. }
  19560. },
  19561. },
  19562. [
  19563. {
  19564. name: "Normal",
  19565. height: math.unit(6.7, "feet"),
  19566. default: true
  19567. },
  19568. ]
  19569. ))
  19570. characterMakers.push(() => makeCharacter(
  19571. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19572. {
  19573. front: {
  19574. height: math.unit(9.5, "feet"),
  19575. weight: math.unit(600, "lb"),
  19576. name: "Front",
  19577. image: {
  19578. source: "./media/characters/de'vout/front.svg",
  19579. extra: 1443 / 1328,
  19580. bottom: 0.025
  19581. }
  19582. },
  19583. back: {
  19584. height: math.unit(9.5, "feet"),
  19585. weight: math.unit(600, "lb"),
  19586. name: "Back",
  19587. image: {
  19588. source: "./media/characters/de'vout/back.svg",
  19589. extra: 1443 / 1328
  19590. }
  19591. },
  19592. frontDressed: {
  19593. height: math.unit(9.5, "feet"),
  19594. weight: math.unit(600, "lb"),
  19595. name: "Front (Dressed",
  19596. image: {
  19597. source: "./media/characters/de'vout/front-dressed.svg",
  19598. extra: 1443 / 1328,
  19599. bottom: 0.025
  19600. }
  19601. },
  19602. backDressed: {
  19603. height: math.unit(9.5, "feet"),
  19604. weight: math.unit(600, "lb"),
  19605. name: "Back (Dressed",
  19606. image: {
  19607. source: "./media/characters/de'vout/back-dressed.svg",
  19608. extra: 1443 / 1328
  19609. }
  19610. },
  19611. },
  19612. [
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(9.5, "feet"),
  19616. default: true
  19617. },
  19618. ]
  19619. ))
  19620. characterMakers.push(() => makeCharacter(
  19621. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19622. {
  19623. front: {
  19624. height: math.unit(8, "feet"),
  19625. weight: math.unit(225, "lb"),
  19626. name: "Front",
  19627. image: {
  19628. source: "./media/characters/talana/front.svg",
  19629. extra: 1410 / 1300,
  19630. bottom: 0.015
  19631. }
  19632. },
  19633. frontDressed: {
  19634. height: math.unit(8, "feet"),
  19635. weight: math.unit(225, "lb"),
  19636. name: "Front (Dressed",
  19637. image: {
  19638. source: "./media/characters/talana/front-dressed.svg",
  19639. extra: 1410 / 1300,
  19640. bottom: 0.015
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(8, "feet"),
  19648. default: true
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19654. {
  19655. side: {
  19656. height: math.unit(7.2, "feet"),
  19657. weight: math.unit(150, "lb"),
  19658. name: "Side",
  19659. image: {
  19660. source: "./media/characters/xeauvok/side.svg",
  19661. extra: 1975 / 1523,
  19662. bottom: 0.07
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(7.2, "feet"),
  19670. default: true
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19676. {
  19677. side: {
  19678. height: math.unit(4, "meters"),
  19679. weight: math.unit(2200, "kg"),
  19680. name: "Side",
  19681. image: {
  19682. source: "./media/characters/zara/side.svg",
  19683. extra: 765/744,
  19684. bottom: 156/921
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(4, "meters"),
  19692. default: true
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19698. {
  19699. side: {
  19700. height: math.unit(6, "feet"),
  19701. weight: math.unit(150, "lb"),
  19702. name: "Side",
  19703. image: {
  19704. source: "./media/characters/richard-dragon/side.svg",
  19705. extra: 845 / 340,
  19706. bottom: 0.017
  19707. }
  19708. },
  19709. maw: {
  19710. height: math.unit(2.97, "feet"),
  19711. name: "Maw",
  19712. image: {
  19713. source: "./media/characters/richard-dragon/maw.svg"
  19714. }
  19715. },
  19716. },
  19717. [
  19718. ]
  19719. ))
  19720. characterMakers.push(() => makeCharacter(
  19721. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19722. {
  19723. front: {
  19724. height: math.unit(4, "feet"),
  19725. weight: math.unit(100, "lb"),
  19726. name: "Front",
  19727. image: {
  19728. source: "./media/characters/richard-smeargle/front.svg",
  19729. extra: 2952 / 2820,
  19730. bottom: 0.028
  19731. }
  19732. },
  19733. },
  19734. [
  19735. {
  19736. name: "Normal",
  19737. height: math.unit(4, "feet"),
  19738. default: true
  19739. },
  19740. {
  19741. name: "Dynamax",
  19742. height: math.unit(20, "meters")
  19743. },
  19744. ]
  19745. ))
  19746. characterMakers.push(() => makeCharacter(
  19747. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19748. {
  19749. front: {
  19750. height: math.unit(6, "feet"),
  19751. weight: math.unit(110, "lb"),
  19752. name: "Front",
  19753. image: {
  19754. source: "./media/characters/klay/front.svg",
  19755. extra: 962 / 883,
  19756. bottom: 0.04
  19757. }
  19758. },
  19759. back: {
  19760. height: math.unit(6, "feet"),
  19761. weight: math.unit(110, "lb"),
  19762. name: "Back",
  19763. image: {
  19764. source: "./media/characters/klay/back.svg",
  19765. extra: 962 / 883
  19766. }
  19767. },
  19768. beans: {
  19769. height: math.unit(1.15, "feet"),
  19770. name: "Beans",
  19771. image: {
  19772. source: "./media/characters/klay/beans.svg"
  19773. }
  19774. },
  19775. },
  19776. [
  19777. {
  19778. name: "Micro",
  19779. height: math.unit(6, "inches")
  19780. },
  19781. {
  19782. name: "Mini",
  19783. height: math.unit(3, "feet")
  19784. },
  19785. {
  19786. name: "Normal",
  19787. height: math.unit(6, "feet"),
  19788. default: true
  19789. },
  19790. {
  19791. name: "Big",
  19792. height: math.unit(25, "feet")
  19793. },
  19794. {
  19795. name: "Macro",
  19796. height: math.unit(100, "feet")
  19797. },
  19798. {
  19799. name: "Megamacro",
  19800. height: math.unit(400, "feet")
  19801. },
  19802. ]
  19803. ))
  19804. characterMakers.push(() => makeCharacter(
  19805. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19806. {
  19807. front: {
  19808. height: math.unit(6, "feet"),
  19809. weight: math.unit(160, "lb"),
  19810. name: "Front",
  19811. image: {
  19812. source: "./media/characters/marcus/front.svg",
  19813. extra: 734 / 676,
  19814. bottom: 0.03
  19815. }
  19816. },
  19817. },
  19818. [
  19819. {
  19820. name: "Little",
  19821. height: math.unit(6, "feet")
  19822. },
  19823. {
  19824. name: "Normal",
  19825. height: math.unit(110, "feet"),
  19826. default: true
  19827. },
  19828. {
  19829. name: "Macro",
  19830. height: math.unit(250, "feet")
  19831. },
  19832. {
  19833. name: "Megamacro",
  19834. height: math.unit(1000, "feet")
  19835. },
  19836. ]
  19837. ))
  19838. characterMakers.push(() => makeCharacter(
  19839. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19840. {
  19841. front: {
  19842. height: math.unit(7, "feet"),
  19843. weight: math.unit(275, "lb"),
  19844. name: "Front",
  19845. image: {
  19846. source: "./media/characters/claude-delroute/front.svg",
  19847. extra: 902/827,
  19848. bottom: 26/928
  19849. }
  19850. },
  19851. side: {
  19852. height: math.unit(7, "feet"),
  19853. weight: math.unit(275, "lb"),
  19854. name: "Side",
  19855. image: {
  19856. source: "./media/characters/claude-delroute/side.svg",
  19857. extra: 908/853,
  19858. bottom: 16/924
  19859. }
  19860. },
  19861. back: {
  19862. height: math.unit(7, "feet"),
  19863. weight: math.unit(275, "lb"),
  19864. name: "Back",
  19865. image: {
  19866. source: "./media/characters/claude-delroute/back.svg",
  19867. extra: 911/829,
  19868. bottom: 18/929
  19869. }
  19870. },
  19871. maw: {
  19872. height: math.unit(0.6407, "meters"),
  19873. name: "Maw",
  19874. image: {
  19875. source: "./media/characters/claude-delroute/maw.svg"
  19876. }
  19877. },
  19878. },
  19879. [
  19880. {
  19881. name: "Normal",
  19882. height: math.unit(7, "feet"),
  19883. default: true
  19884. },
  19885. {
  19886. name: "Lorge",
  19887. height: math.unit(20, "feet")
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19893. {
  19894. front: {
  19895. height: math.unit(8 + 4 / 12, "feet"),
  19896. weight: math.unit(600, "lb"),
  19897. name: "Front",
  19898. image: {
  19899. source: "./media/characters/dragonien/front.svg",
  19900. extra: 100 / 94,
  19901. bottom: 3.3 / 103.3445
  19902. }
  19903. },
  19904. back: {
  19905. height: math.unit(8 + 4 / 12, "feet"),
  19906. weight: math.unit(600, "lb"),
  19907. name: "Back",
  19908. image: {
  19909. source: "./media/characters/dragonien/back.svg",
  19910. extra: 776 / 746,
  19911. bottom: 6.4 / 782.0616
  19912. }
  19913. },
  19914. foot: {
  19915. height: math.unit(1.54, "feet"),
  19916. name: "Foot",
  19917. image: {
  19918. source: "./media/characters/dragonien/foot.svg",
  19919. }
  19920. },
  19921. },
  19922. [
  19923. {
  19924. name: "Normal",
  19925. height: math.unit(8 + 4 / 12, "feet"),
  19926. default: true
  19927. },
  19928. {
  19929. name: "Macro",
  19930. height: math.unit(200, "feet")
  19931. },
  19932. {
  19933. name: "Megamacro",
  19934. height: math.unit(1, "mile")
  19935. },
  19936. {
  19937. name: "Gigamacro",
  19938. height: math.unit(1000, "miles")
  19939. },
  19940. ]
  19941. ))
  19942. characterMakers.push(() => makeCharacter(
  19943. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19944. {
  19945. front: {
  19946. height: math.unit(5 + 2 / 12, "feet"),
  19947. weight: math.unit(110, "lb"),
  19948. name: "Front",
  19949. image: {
  19950. source: "./media/characters/desta/front.svg",
  19951. extra: 767 / 726,
  19952. bottom: 11.7 / 779
  19953. }
  19954. },
  19955. back: {
  19956. height: math.unit(5 + 2 / 12, "feet"),
  19957. weight: math.unit(110, "lb"),
  19958. name: "Back",
  19959. image: {
  19960. source: "./media/characters/desta/back.svg",
  19961. extra: 777 / 728,
  19962. bottom: 6 / 784
  19963. }
  19964. },
  19965. frontAlt: {
  19966. height: math.unit(5 + 2 / 12, "feet"),
  19967. weight: math.unit(110, "lb"),
  19968. name: "Front",
  19969. image: {
  19970. source: "./media/characters/desta/front-alt.svg",
  19971. extra: 1482 / 1417
  19972. }
  19973. },
  19974. side: {
  19975. height: math.unit(5 + 2 / 12, "feet"),
  19976. weight: math.unit(110, "lb"),
  19977. name: "Side",
  19978. image: {
  19979. source: "./media/characters/desta/side.svg",
  19980. extra: 2579 / 2491,
  19981. bottom: 0.053
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Micro",
  19988. height: math.unit(6, "inches")
  19989. },
  19990. {
  19991. name: "Normal",
  19992. height: math.unit(5 + 2 / 12, "feet"),
  19993. default: true
  19994. },
  19995. {
  19996. name: "Macro",
  19997. height: math.unit(62, "feet")
  19998. },
  19999. {
  20000. name: "Megamacro",
  20001. height: math.unit(1800, "feet")
  20002. },
  20003. ]
  20004. ))
  20005. characterMakers.push(() => makeCharacter(
  20006. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20007. {
  20008. front: {
  20009. height: math.unit(10, "feet"),
  20010. weight: math.unit(700, "lb"),
  20011. name: "Front",
  20012. image: {
  20013. source: "./media/characters/storm-alystar/front.svg",
  20014. extra: 2112 / 1898,
  20015. bottom: 0.034
  20016. }
  20017. },
  20018. },
  20019. [
  20020. {
  20021. name: "Micro",
  20022. height: math.unit(3.5, "inches")
  20023. },
  20024. {
  20025. name: "Normal",
  20026. height: math.unit(10, "feet"),
  20027. default: true
  20028. },
  20029. {
  20030. name: "Macro",
  20031. height: math.unit(400, "feet")
  20032. },
  20033. {
  20034. name: "Deific",
  20035. height: math.unit(60, "miles")
  20036. },
  20037. ]
  20038. ))
  20039. characterMakers.push(() => makeCharacter(
  20040. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20041. {
  20042. front: {
  20043. height: math.unit(2.35, "meters"),
  20044. weight: math.unit(119, "kg"),
  20045. name: "Front",
  20046. image: {
  20047. source: "./media/characters/ilia/front.svg",
  20048. extra: 1285 / 1255,
  20049. bottom: 0.06
  20050. }
  20051. },
  20052. },
  20053. [
  20054. {
  20055. name: "Normal",
  20056. height: math.unit(2.35, "meters")
  20057. },
  20058. {
  20059. name: "Macro",
  20060. height: math.unit(140, "meters"),
  20061. default: true
  20062. },
  20063. {
  20064. name: "Megamacro",
  20065. height: math.unit(100, "miles")
  20066. },
  20067. ]
  20068. ))
  20069. characterMakers.push(() => makeCharacter(
  20070. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20071. {
  20072. front: {
  20073. height: math.unit(6 + 5 / 12, "feet"),
  20074. weight: math.unit(190, "lb"),
  20075. name: "Front",
  20076. image: {
  20077. source: "./media/characters/kingdead/front.svg",
  20078. extra: 1228 / 1177
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Micro",
  20085. height: math.unit(7, "inches")
  20086. },
  20087. {
  20088. name: "Normal",
  20089. height: math.unit(6 + 5 / 12, "feet")
  20090. },
  20091. {
  20092. name: "Macro",
  20093. height: math.unit(150, "feet"),
  20094. default: true
  20095. },
  20096. {
  20097. name: "Megamacro",
  20098. height: math.unit(200, "miles")
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20104. {
  20105. front: {
  20106. height: math.unit(8, "feet"),
  20107. weight: math.unit(600, "lb"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/kyrehx/front.svg",
  20111. extra: 1195 / 1095,
  20112. bottom: 0.034
  20113. }
  20114. },
  20115. },
  20116. [
  20117. {
  20118. name: "Micro",
  20119. height: math.unit(2, "inches")
  20120. },
  20121. {
  20122. name: "Normal",
  20123. height: math.unit(8, "feet"),
  20124. default: true
  20125. },
  20126. {
  20127. name: "Macro",
  20128. height: math.unit(255, "feet")
  20129. },
  20130. ]
  20131. ))
  20132. characterMakers.push(() => makeCharacter(
  20133. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20134. {
  20135. front: {
  20136. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20137. weight: math.unit(184, "lb"),
  20138. name: "Front",
  20139. image: {
  20140. source: "./media/characters/xang/front.svg",
  20141. extra: 845 / 755
  20142. }
  20143. },
  20144. },
  20145. [
  20146. {
  20147. name: "Normal",
  20148. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20149. default: true
  20150. },
  20151. {
  20152. name: "Macro",
  20153. height: math.unit(0.935 * 146, "feet")
  20154. },
  20155. {
  20156. name: "Megamacro",
  20157. height: math.unit(0.935 * 3, "miles")
  20158. },
  20159. ]
  20160. ))
  20161. characterMakers.push(() => makeCharacter(
  20162. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20163. {
  20164. frontDressed: {
  20165. height: math.unit(5 + 7 / 12, "feet"),
  20166. weight: math.unit(140, "lb"),
  20167. name: "Front (Dressed)",
  20168. image: {
  20169. source: "./media/characters/doc-weardno/front-dressed.svg",
  20170. extra: 263 / 234
  20171. }
  20172. },
  20173. backDressed: {
  20174. height: math.unit(5 + 7 / 12, "feet"),
  20175. weight: math.unit(140, "lb"),
  20176. name: "Back (Dressed)",
  20177. image: {
  20178. source: "./media/characters/doc-weardno/back-dressed.svg",
  20179. extra: 266 / 238
  20180. }
  20181. },
  20182. front: {
  20183. height: math.unit(5 + 7 / 12, "feet"),
  20184. weight: math.unit(140, "lb"),
  20185. name: "Front",
  20186. image: {
  20187. source: "./media/characters/doc-weardno/front.svg",
  20188. extra: 254 / 233
  20189. }
  20190. },
  20191. },
  20192. [
  20193. {
  20194. name: "Micro",
  20195. height: math.unit(3, "inches")
  20196. },
  20197. {
  20198. name: "Normal",
  20199. height: math.unit(5 + 7 / 12, "feet"),
  20200. default: true
  20201. },
  20202. {
  20203. name: "Macro",
  20204. height: math.unit(25, "feet")
  20205. },
  20206. {
  20207. name: "Megamacro",
  20208. height: math.unit(2, "miles")
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20214. {
  20215. front: {
  20216. height: math.unit(6 + 2 / 12, "feet"),
  20217. weight: math.unit(153, "lb"),
  20218. name: "Front",
  20219. image: {
  20220. source: "./media/characters/seth-whilst/front.svg",
  20221. bottom: 0.07
  20222. }
  20223. },
  20224. },
  20225. [
  20226. {
  20227. name: "Micro",
  20228. height: math.unit(5, "inches")
  20229. },
  20230. {
  20231. name: "Normal",
  20232. height: math.unit(6 + 2 / 12, "feet"),
  20233. default: true
  20234. },
  20235. ]
  20236. ))
  20237. characterMakers.push(() => makeCharacter(
  20238. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20239. {
  20240. front: {
  20241. height: math.unit(3, "inches"),
  20242. weight: math.unit(8, "grams"),
  20243. name: "Front",
  20244. image: {
  20245. source: "./media/characters/pocket-jabari/front.svg",
  20246. extra: 1024 / 974,
  20247. bottom: 0.039
  20248. }
  20249. },
  20250. },
  20251. [
  20252. {
  20253. name: "Minimicro",
  20254. height: math.unit(8, "mm")
  20255. },
  20256. {
  20257. name: "Micro",
  20258. height: math.unit(3, "inches"),
  20259. default: true
  20260. },
  20261. {
  20262. name: "Normal",
  20263. height: math.unit(3, "feet")
  20264. },
  20265. ]
  20266. ))
  20267. characterMakers.push(() => makeCharacter(
  20268. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20269. {
  20270. frontDressed: {
  20271. height: math.unit(15, "feet"),
  20272. weight: math.unit(3280, "lb"),
  20273. name: "Front (Dressed)",
  20274. image: {
  20275. source: "./media/characters/sapphy/front-dressed.svg",
  20276. extra: 1951/1654,
  20277. bottom: 194/2145
  20278. },
  20279. form: "anthro",
  20280. default: true
  20281. },
  20282. backDressed: {
  20283. height: math.unit(15, "feet"),
  20284. weight: math.unit(3280, "lb"),
  20285. name: "Back (Dressed)",
  20286. image: {
  20287. source: "./media/characters/sapphy/back-dressed.svg",
  20288. extra: 2058/1918,
  20289. bottom: 125/2183
  20290. },
  20291. form: "anthro"
  20292. },
  20293. frontNude: {
  20294. height: math.unit(15, "feet"),
  20295. weight: math.unit(3280, "lb"),
  20296. name: "Front (Nude)",
  20297. image: {
  20298. source: "./media/characters/sapphy/front-nude.svg",
  20299. extra: 1951/1654,
  20300. bottom: 194/2145
  20301. },
  20302. form: "anthro"
  20303. },
  20304. backNude: {
  20305. height: math.unit(15, "feet"),
  20306. weight: math.unit(3280, "lb"),
  20307. name: "Back (Nude)",
  20308. image: {
  20309. source: "./media/characters/sapphy/back-nude.svg",
  20310. extra: 2058/1918,
  20311. bottom: 125/2183
  20312. },
  20313. form: "anthro"
  20314. },
  20315. full: {
  20316. height: math.unit(15, "feet"),
  20317. weight: math.unit(3280, "lb"),
  20318. name: "Full",
  20319. image: {
  20320. source: "./media/characters/sapphy/full.svg",
  20321. extra: 1396/1317,
  20322. bottom: 44/1440
  20323. },
  20324. form: "anthro"
  20325. },
  20326. dick: {
  20327. height: math.unit(3.8, "feet"),
  20328. name: "Dick",
  20329. image: {
  20330. source: "./media/characters/sapphy/dick.svg"
  20331. },
  20332. form: "anthro"
  20333. },
  20334. feral: {
  20335. height: math.unit(35, "feet"),
  20336. weight: math.unit(160, "tons"),
  20337. name: "Feral",
  20338. image: {
  20339. source: "./media/characters/sapphy/feral.svg",
  20340. extra: 1050/573,
  20341. bottom: 60/1110
  20342. },
  20343. form: "feral",
  20344. default: true
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(15, "feet"),
  20351. form: "anthro"
  20352. },
  20353. {
  20354. name: "Casual Macro",
  20355. height: math.unit(120, "feet"),
  20356. form: "anthro"
  20357. },
  20358. {
  20359. name: "Macro",
  20360. height: math.unit(2150, "feet"),
  20361. default: true,
  20362. form: "anthro"
  20363. },
  20364. {
  20365. name: "Megamacro",
  20366. height: math.unit(8, "miles"),
  20367. form: "anthro"
  20368. },
  20369. {
  20370. name: "Galaxy Mom",
  20371. height: math.unit(6, "megalightyears"),
  20372. form: "anthro"
  20373. },
  20374. {
  20375. name: "Normal",
  20376. height: math.unit(35, "feet"),
  20377. form: "feral",
  20378. default: true
  20379. },
  20380. {
  20381. name: "Macro",
  20382. height: math.unit(300, "feet"),
  20383. form: "feral"
  20384. },
  20385. {
  20386. name: "Galaxy Mom",
  20387. height: math.unit(10, "megalightyears"),
  20388. form: "feral"
  20389. },
  20390. ],
  20391. {
  20392. "anthro": {
  20393. name: "Anthro",
  20394. default: true
  20395. },
  20396. "feral": {
  20397. name: "Feral"
  20398. }
  20399. }
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20403. {
  20404. hyenaFront: {
  20405. height: math.unit(6, "feet"),
  20406. weight: math.unit(190, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/kiro/hyena-front.svg",
  20410. extra: 927/839,
  20411. bottom: 91/1018
  20412. },
  20413. form: "hyena",
  20414. default: true
  20415. },
  20416. front: {
  20417. height: math.unit(6, "feet"),
  20418. weight: math.unit(170, "lb"),
  20419. name: "Front",
  20420. image: {
  20421. source: "./media/characters/kiro/front.svg",
  20422. extra: 1064 / 1012,
  20423. bottom: 0.052
  20424. },
  20425. form: "folf",
  20426. default: true
  20427. },
  20428. },
  20429. [
  20430. {
  20431. name: "Micro",
  20432. height: math.unit(6, "inches"),
  20433. form: "folf"
  20434. },
  20435. {
  20436. name: "Normal",
  20437. height: math.unit(6, "feet"),
  20438. form: "folf",
  20439. default: true
  20440. },
  20441. {
  20442. name: "Macro",
  20443. height: math.unit(72, "feet"),
  20444. form: "folf"
  20445. },
  20446. {
  20447. name: "Micro",
  20448. height: math.unit(6, "inches"),
  20449. form: "hyena"
  20450. },
  20451. {
  20452. name: "Normal",
  20453. height: math.unit(6, "feet"),
  20454. form: "hyena",
  20455. default: true
  20456. },
  20457. {
  20458. name: "Macro",
  20459. height: math.unit(72, "feet"),
  20460. form: "hyena"
  20461. },
  20462. ],
  20463. {
  20464. "hyena": {
  20465. name: "Hyena",
  20466. default: true
  20467. },
  20468. "folf": {
  20469. name: "Folf",
  20470. },
  20471. }
  20472. ))
  20473. characterMakers.push(() => makeCharacter(
  20474. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20475. {
  20476. front: {
  20477. height: math.unit(5 + 9 / 12, "feet"),
  20478. weight: math.unit(175, "lb"),
  20479. name: "Front",
  20480. image: {
  20481. source: "./media/characters/irishfox/front.svg",
  20482. extra: 1912 / 1680,
  20483. bottom: 0.02
  20484. }
  20485. },
  20486. },
  20487. [
  20488. {
  20489. name: "Nano",
  20490. height: math.unit(1, "mm")
  20491. },
  20492. {
  20493. name: "Micro",
  20494. height: math.unit(2, "inches")
  20495. },
  20496. {
  20497. name: "Normal",
  20498. height: math.unit(5 + 9 / 12, "feet"),
  20499. default: true
  20500. },
  20501. {
  20502. name: "Macro",
  20503. height: math.unit(45, "feet")
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20509. {
  20510. front: {
  20511. height: math.unit(6 + 1 / 12, "feet"),
  20512. weight: math.unit(75, "lb"),
  20513. name: "Front",
  20514. image: {
  20515. source: "./media/characters/aronai-sieyes/front.svg",
  20516. extra: 1532/1450,
  20517. bottom: 42/1574
  20518. }
  20519. },
  20520. side: {
  20521. height: math.unit(6 + 1 / 12, "feet"),
  20522. weight: math.unit(75, "lb"),
  20523. name: "Side",
  20524. image: {
  20525. source: "./media/characters/aronai-sieyes/side.svg",
  20526. extra: 1422/1365,
  20527. bottom: 148/1570
  20528. }
  20529. },
  20530. back: {
  20531. height: math.unit(6 + 1 / 12, "feet"),
  20532. weight: math.unit(75, "lb"),
  20533. name: "Back",
  20534. image: {
  20535. source: "./media/characters/aronai-sieyes/back.svg",
  20536. extra: 1526/1464,
  20537. bottom: 51/1577
  20538. }
  20539. },
  20540. dressed: {
  20541. height: math.unit(6 + 1 / 12, "feet"),
  20542. weight: math.unit(75, "lb"),
  20543. name: "Dressed",
  20544. image: {
  20545. source: "./media/characters/aronai-sieyes/dressed.svg",
  20546. extra: 1559/1483,
  20547. bottom: 39/1598
  20548. }
  20549. },
  20550. slit: {
  20551. height: math.unit(1.3, "feet"),
  20552. name: "Slit",
  20553. image: {
  20554. source: "./media/characters/aronai-sieyes/slit.svg"
  20555. }
  20556. },
  20557. slitSpread: {
  20558. height: math.unit(0.9, "feet"),
  20559. name: "Slit (Spread)",
  20560. image: {
  20561. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20562. }
  20563. },
  20564. rump: {
  20565. height: math.unit(1.3, "feet"),
  20566. name: "Rump",
  20567. image: {
  20568. source: "./media/characters/aronai-sieyes/rump.svg"
  20569. }
  20570. },
  20571. maw: {
  20572. height: math.unit(1.25, "feet"),
  20573. name: "Maw",
  20574. image: {
  20575. source: "./media/characters/aronai-sieyes/maw.svg"
  20576. }
  20577. },
  20578. feral: {
  20579. height: math.unit(18, "feet"),
  20580. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20581. name: "Feral",
  20582. image: {
  20583. source: "./media/characters/aronai-sieyes/feral.svg",
  20584. extra: 1530 / 1240,
  20585. bottom: 0.035
  20586. }
  20587. },
  20588. },
  20589. [
  20590. {
  20591. name: "Micro",
  20592. height: math.unit(2, "inches")
  20593. },
  20594. {
  20595. name: "Normal",
  20596. height: math.unit(6 + 1 / 12, "feet"),
  20597. default: true
  20598. }
  20599. ]
  20600. ))
  20601. characterMakers.push(() => makeCharacter(
  20602. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20603. {
  20604. front: {
  20605. height: math.unit(12, "feet"),
  20606. weight: math.unit(410, "kg"),
  20607. name: "Front",
  20608. image: {
  20609. source: "./media/characters/xuna/front.svg",
  20610. extra: 2184 / 1980
  20611. }
  20612. },
  20613. side: {
  20614. height: math.unit(12, "feet"),
  20615. weight: math.unit(410, "kg"),
  20616. name: "Side",
  20617. image: {
  20618. source: "./media/characters/xuna/side.svg",
  20619. extra: 2184 / 1980
  20620. }
  20621. },
  20622. back: {
  20623. height: math.unit(12, "feet"),
  20624. weight: math.unit(410, "kg"),
  20625. name: "Back",
  20626. image: {
  20627. source: "./media/characters/xuna/back.svg",
  20628. extra: 2184 / 1980
  20629. }
  20630. },
  20631. },
  20632. [
  20633. {
  20634. name: "Nano glow",
  20635. height: math.unit(10, "nm")
  20636. },
  20637. {
  20638. name: "Micro floof",
  20639. height: math.unit(0.3, "m")
  20640. },
  20641. {
  20642. name: "Huggable softy boi",
  20643. height: math.unit(3.6576, "m"),
  20644. default: true
  20645. },
  20646. {
  20647. name: "Admirable floof",
  20648. height: math.unit(80, "meters")
  20649. },
  20650. {
  20651. name: "Gentle macro",
  20652. height: math.unit(300, "meters")
  20653. },
  20654. {
  20655. name: "Very careful floof",
  20656. height: math.unit(3200, "meters")
  20657. },
  20658. {
  20659. name: "The mega floof",
  20660. height: math.unit(36000, "meters")
  20661. },
  20662. {
  20663. name: "Giga-fur-Wicker",
  20664. height: math.unit(4800000, "meters")
  20665. },
  20666. {
  20667. name: "Licky world",
  20668. height: math.unit(20000000, "meters")
  20669. },
  20670. {
  20671. name: "Floofy cyan sun",
  20672. height: math.unit(1500000000, "meters")
  20673. },
  20674. {
  20675. name: "Milky Wicker",
  20676. height: math.unit(1000000000000000000000, "meters")
  20677. },
  20678. {
  20679. name: "The observing Wicker",
  20680. height: math.unit(999999999999999999999999999, "meters")
  20681. },
  20682. ]
  20683. ))
  20684. characterMakers.push(() => makeCharacter(
  20685. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20686. {
  20687. front: {
  20688. height: math.unit(5 + 9 / 12, "feet"),
  20689. weight: math.unit(150, "lb"),
  20690. name: "Front",
  20691. image: {
  20692. source: "./media/characters/arokha-sieyes/front.svg",
  20693. extra: 1425 / 1284,
  20694. bottom: 0.05
  20695. }
  20696. },
  20697. },
  20698. [
  20699. {
  20700. name: "Normal",
  20701. height: math.unit(5 + 9 / 12, "feet")
  20702. },
  20703. {
  20704. name: "Macro",
  20705. height: math.unit(30, "meters"),
  20706. default: true
  20707. },
  20708. ]
  20709. ))
  20710. characterMakers.push(() => makeCharacter(
  20711. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20712. {
  20713. front: {
  20714. height: math.unit(6, "feet"),
  20715. weight: math.unit(180, "lb"),
  20716. name: "Front",
  20717. image: {
  20718. source: "./media/characters/arokh-sieyes/front.svg",
  20719. extra: 1830 / 1769,
  20720. bottom: 0.01
  20721. }
  20722. },
  20723. },
  20724. [
  20725. {
  20726. name: "Normal",
  20727. height: math.unit(6, "feet")
  20728. },
  20729. {
  20730. name: "Macro",
  20731. height: math.unit(30, "meters"),
  20732. default: true
  20733. },
  20734. ]
  20735. ))
  20736. characterMakers.push(() => makeCharacter(
  20737. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20738. {
  20739. side: {
  20740. height: math.unit(13 + 1 / 12, "feet"),
  20741. weight: math.unit(8.5, "tonnes"),
  20742. preyCapacity: math.unit(36, "people"),
  20743. name: "Side",
  20744. image: {
  20745. source: "./media/characters/goldeneye/side.svg",
  20746. extra: 1139/741,
  20747. bottom: 98/1237
  20748. }
  20749. },
  20750. front: {
  20751. height: math.unit(5.1, "feet"),
  20752. weight: math.unit(8.5, "tonnes"),
  20753. preyCapacity: math.unit(36, "people"),
  20754. name: "Front",
  20755. image: {
  20756. source: "./media/characters/goldeneye/front.svg",
  20757. extra: 635/365,
  20758. bottom: 598/1233
  20759. }
  20760. },
  20761. maw: {
  20762. height: math.unit(6.6, "feet"),
  20763. name: "Maw",
  20764. image: {
  20765. source: "./media/characters/goldeneye/maw.svg"
  20766. }
  20767. },
  20768. headFront: {
  20769. height: math.unit(8, "feet"),
  20770. name: "Head (Front)",
  20771. image: {
  20772. source: "./media/characters/goldeneye/head-front.svg"
  20773. }
  20774. },
  20775. headSide: {
  20776. height: math.unit(6, "feet"),
  20777. name: "Head (Side)",
  20778. image: {
  20779. source: "./media/characters/goldeneye/head-side.svg"
  20780. }
  20781. },
  20782. headBack: {
  20783. height: math.unit(8, "feet"),
  20784. name: "Head (Back)",
  20785. image: {
  20786. source: "./media/characters/goldeneye/head-back.svg"
  20787. }
  20788. },
  20789. paw: {
  20790. height: math.unit(3.4, "feet"),
  20791. name: "Paw",
  20792. image: {
  20793. source: "./media/characters/goldeneye/paw.svg"
  20794. }
  20795. },
  20796. toering: {
  20797. height: math.unit(0.45, "feet"),
  20798. name: "Toering",
  20799. image: {
  20800. source: "./media/characters/goldeneye/toering.svg"
  20801. }
  20802. },
  20803. eyes: {
  20804. height: math.unit(0.5, "feet"),
  20805. name: "Eyes",
  20806. image: {
  20807. source: "./media/characters/goldeneye/eyes.svg"
  20808. }
  20809. },
  20810. },
  20811. [
  20812. {
  20813. name: "Normal",
  20814. height: math.unit(13 + 1 / 12, "feet"),
  20815. default: true
  20816. },
  20817. ]
  20818. ))
  20819. characterMakers.push(() => makeCharacter(
  20820. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20821. {
  20822. front: {
  20823. height: math.unit(6 + 1 / 12, "feet"),
  20824. weight: math.unit(210, "lb"),
  20825. name: "Front",
  20826. image: {
  20827. source: "./media/characters/leonardo-lycheborne/front.svg",
  20828. extra: 776/723,
  20829. bottom: 34/810
  20830. }
  20831. },
  20832. side: {
  20833. height: math.unit(6 + 1 / 12, "feet"),
  20834. weight: math.unit(210, "lb"),
  20835. name: "Side",
  20836. image: {
  20837. source: "./media/characters/leonardo-lycheborne/side.svg",
  20838. extra: 780/728,
  20839. bottom: 12/792
  20840. }
  20841. },
  20842. back: {
  20843. height: math.unit(6 + 1 / 12, "feet"),
  20844. weight: math.unit(210, "lb"),
  20845. name: "Back",
  20846. image: {
  20847. source: "./media/characters/leonardo-lycheborne/back.svg",
  20848. extra: 775/721,
  20849. bottom: 17/792
  20850. }
  20851. },
  20852. hand: {
  20853. height: math.unit(1.08, "feet"),
  20854. name: "Hand",
  20855. image: {
  20856. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20857. }
  20858. },
  20859. foot: {
  20860. height: math.unit(1.32, "feet"),
  20861. name: "Foot",
  20862. image: {
  20863. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20864. }
  20865. },
  20866. maw: {
  20867. height: math.unit(1, "feet"),
  20868. name: "Maw",
  20869. image: {
  20870. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20871. }
  20872. },
  20873. were: {
  20874. height: math.unit(20, "feet"),
  20875. weight: math.unit(7800, "lb"),
  20876. name: "Were",
  20877. image: {
  20878. source: "./media/characters/leonardo-lycheborne/were.svg",
  20879. extra: 1224/1165,
  20880. bottom: 72/1296
  20881. }
  20882. },
  20883. feral: {
  20884. height: math.unit(7.5, "feet"),
  20885. weight: math.unit(600, "lb"),
  20886. name: "Feral",
  20887. image: {
  20888. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20889. extra: 797/702,
  20890. bottom: 139/936
  20891. }
  20892. },
  20893. taur: {
  20894. height: math.unit(11, "feet"),
  20895. weight: math.unit(3300, "lb"),
  20896. name: "Taur",
  20897. image: {
  20898. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20899. extra: 1271/1197,
  20900. bottom: 47/1318
  20901. }
  20902. },
  20903. barghest: {
  20904. height: math.unit(11, "feet"),
  20905. weight: math.unit(1300, "lb"),
  20906. name: "Barghest",
  20907. image: {
  20908. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20909. extra: 1291/1204,
  20910. bottom: 37/1328
  20911. }
  20912. },
  20913. dick: {
  20914. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20915. name: "Dick",
  20916. image: {
  20917. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20918. }
  20919. },
  20920. dickWere: {
  20921. height: math.unit((20) / 3.8, "feet"),
  20922. name: "Dick (Were)",
  20923. image: {
  20924. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20925. }
  20926. },
  20927. },
  20928. [
  20929. {
  20930. name: "Normal",
  20931. height: math.unit(6 + 1 / 12, "feet"),
  20932. default: true
  20933. },
  20934. ]
  20935. ))
  20936. characterMakers.push(() => makeCharacter(
  20937. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20938. {
  20939. front: {
  20940. height: math.unit(10, "feet"),
  20941. weight: math.unit(350, "lb"),
  20942. name: "Front",
  20943. image: {
  20944. source: "./media/characters/jet/front.svg",
  20945. extra: 2050 / 1980,
  20946. bottom: 0.013
  20947. }
  20948. },
  20949. back: {
  20950. height: math.unit(10, "feet"),
  20951. weight: math.unit(350, "lb"),
  20952. name: "Back",
  20953. image: {
  20954. source: "./media/characters/jet/back.svg",
  20955. extra: 2050 / 1980,
  20956. bottom: 0.013
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Micro",
  20963. height: math.unit(6, "inches")
  20964. },
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(10, "feet"),
  20968. default: true
  20969. },
  20970. {
  20971. name: "Macro",
  20972. height: math.unit(100, "feet")
  20973. },
  20974. ]
  20975. ))
  20976. characterMakers.push(() => makeCharacter(
  20977. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20978. {
  20979. front: {
  20980. height: math.unit(15, "feet"),
  20981. weight: math.unit(2800, "lb"),
  20982. name: "Front",
  20983. image: {
  20984. source: "./media/characters/tanarath/front.svg",
  20985. extra: 2392 / 2220,
  20986. bottom: 0.03
  20987. }
  20988. },
  20989. back: {
  20990. height: math.unit(15, "feet"),
  20991. weight: math.unit(2800, "lb"),
  20992. name: "Back",
  20993. image: {
  20994. source: "./media/characters/tanarath/back.svg",
  20995. extra: 2392 / 2220,
  20996. bottom: 0.03
  20997. }
  20998. },
  20999. },
  21000. [
  21001. {
  21002. name: "Normal",
  21003. height: math.unit(15, "feet"),
  21004. default: true
  21005. },
  21006. ]
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21010. {
  21011. front: {
  21012. height: math.unit(7 + 1 / 12, "feet"),
  21013. weight: math.unit(175, "lb"),
  21014. name: "Front",
  21015. image: {
  21016. source: "./media/characters/patty-cattybatty/front.svg",
  21017. extra: 908 / 874,
  21018. bottom: 0.025
  21019. }
  21020. },
  21021. },
  21022. [
  21023. {
  21024. name: "Micro",
  21025. height: math.unit(1, "inch")
  21026. },
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(7 + 1 / 12, "feet")
  21030. },
  21031. {
  21032. name: "Mini Macro",
  21033. height: math.unit(155, "feet")
  21034. },
  21035. {
  21036. name: "Macro",
  21037. height: math.unit(1077, "feet")
  21038. },
  21039. {
  21040. name: "Mega Macro",
  21041. height: math.unit(47650, "feet"),
  21042. default: true
  21043. },
  21044. {
  21045. name: "Giga Macro",
  21046. height: math.unit(440, "miles")
  21047. },
  21048. {
  21049. name: "Tera Macro",
  21050. height: math.unit(8700, "miles")
  21051. },
  21052. {
  21053. name: "Planetary Macro",
  21054. height: math.unit(32700, "miles")
  21055. },
  21056. {
  21057. name: "Solar Macro",
  21058. height: math.unit(550000, "miles")
  21059. },
  21060. {
  21061. name: "Celestial Macro",
  21062. height: math.unit(2.5, "AU")
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21068. {
  21069. front: {
  21070. height: math.unit(4 + 5 / 12, "feet"),
  21071. weight: math.unit(90, "lb"),
  21072. name: "Front",
  21073. image: {
  21074. source: "./media/characters/cappu/front.svg",
  21075. extra: 1247 / 1152,
  21076. bottom: 0.012
  21077. }
  21078. },
  21079. },
  21080. [
  21081. {
  21082. name: "Normal",
  21083. height: math.unit(4 + 5 / 12, "feet"),
  21084. default: true
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21090. {
  21091. frontDressed: {
  21092. height: math.unit(70, "cm"),
  21093. weight: math.unit(6, "kg"),
  21094. name: "Front (Dressed)",
  21095. image: {
  21096. source: "./media/characters/sebi/front-dressed.svg",
  21097. extra: 713.5 / 686.5,
  21098. bottom: 0.003
  21099. }
  21100. },
  21101. front: {
  21102. height: math.unit(70, "cm"),
  21103. weight: math.unit(5, "kg"),
  21104. name: "Front",
  21105. image: {
  21106. source: "./media/characters/sebi/front.svg",
  21107. extra: 713.5 / 686.5,
  21108. bottom: 0.003
  21109. }
  21110. }
  21111. },
  21112. [
  21113. {
  21114. name: "Normal",
  21115. height: math.unit(70, "cm"),
  21116. default: true
  21117. },
  21118. {
  21119. name: "Macro",
  21120. height: math.unit(8, "meters")
  21121. },
  21122. ]
  21123. ))
  21124. characterMakers.push(() => makeCharacter(
  21125. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21126. {
  21127. front: {
  21128. height: math.unit(6, "feet"),
  21129. weight: math.unit(150, "lb"),
  21130. name: "Front",
  21131. image: {
  21132. source: "./media/characters/typhek/front.svg",
  21133. extra: 1948 / 1929,
  21134. bottom: 0.025
  21135. }
  21136. },
  21137. side: {
  21138. height: math.unit(6, "feet"),
  21139. weight: math.unit(150, "lb"),
  21140. name: "Side",
  21141. image: {
  21142. source: "./media/characters/typhek/side.svg",
  21143. extra: 2034 / 2010,
  21144. bottom: 0.003
  21145. }
  21146. },
  21147. back: {
  21148. height: math.unit(6, "feet"),
  21149. weight: math.unit(150, "lb"),
  21150. name: "Back",
  21151. image: {
  21152. source: "./media/characters/typhek/back.svg",
  21153. extra: 2005 / 1978,
  21154. bottom: 0.004
  21155. }
  21156. },
  21157. palm: {
  21158. height: math.unit(1.2, "feet"),
  21159. name: "Palm",
  21160. image: {
  21161. source: "./media/characters/typhek/palm.svg"
  21162. }
  21163. },
  21164. fist: {
  21165. height: math.unit(1.1, "feet"),
  21166. name: "Fist",
  21167. image: {
  21168. source: "./media/characters/typhek/fist.svg"
  21169. }
  21170. },
  21171. foot: {
  21172. height: math.unit(1.57, "feet"),
  21173. name: "Foot",
  21174. image: {
  21175. source: "./media/characters/typhek/foot.svg"
  21176. }
  21177. },
  21178. sole: {
  21179. height: math.unit(2.05, "feet"),
  21180. name: "Sole",
  21181. image: {
  21182. source: "./media/characters/typhek/sole.svg"
  21183. }
  21184. },
  21185. },
  21186. [
  21187. {
  21188. name: "Macro",
  21189. height: math.unit(40, "stories"),
  21190. default: true
  21191. },
  21192. {
  21193. name: "Megamacro",
  21194. height: math.unit(1, "mile")
  21195. },
  21196. {
  21197. name: "Gigamacro",
  21198. height: math.unit(4000, "solarradii")
  21199. },
  21200. {
  21201. name: "Universal",
  21202. height: math.unit(1.1, "universes")
  21203. }
  21204. ]
  21205. ))
  21206. characterMakers.push(() => makeCharacter(
  21207. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21208. {
  21209. side: {
  21210. height: math.unit(5 + 7 / 12, "feet"),
  21211. weight: math.unit(150, "lb"),
  21212. name: "Side",
  21213. image: {
  21214. source: "./media/characters/kassy/side.svg",
  21215. extra: 1280 / 1225,
  21216. bottom: 0.002
  21217. }
  21218. },
  21219. front: {
  21220. height: math.unit(5 + 7 / 12, "feet"),
  21221. weight: math.unit(150, "lb"),
  21222. name: "Front",
  21223. image: {
  21224. source: "./media/characters/kassy/front.svg",
  21225. extra: 1280 / 1225,
  21226. bottom: 0.025
  21227. }
  21228. },
  21229. back: {
  21230. height: math.unit(5 + 7 / 12, "feet"),
  21231. weight: math.unit(150, "lb"),
  21232. name: "Back",
  21233. image: {
  21234. source: "./media/characters/kassy/back.svg",
  21235. extra: 1280 / 1225,
  21236. bottom: 0.002
  21237. }
  21238. },
  21239. foot: {
  21240. height: math.unit(1.266, "feet"),
  21241. name: "Foot",
  21242. image: {
  21243. source: "./media/characters/kassy/foot.svg"
  21244. }
  21245. },
  21246. },
  21247. [
  21248. {
  21249. name: "Normal",
  21250. height: math.unit(5 + 7 / 12, "feet")
  21251. },
  21252. {
  21253. name: "Macro",
  21254. height: math.unit(137, "feet"),
  21255. default: true
  21256. },
  21257. {
  21258. name: "Megamacro",
  21259. height: math.unit(1, "mile")
  21260. },
  21261. ]
  21262. ))
  21263. characterMakers.push(() => makeCharacter(
  21264. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21265. {
  21266. front: {
  21267. height: math.unit(6 + 1 / 12, "feet"),
  21268. weight: math.unit(200, "lb"),
  21269. name: "Front",
  21270. image: {
  21271. source: "./media/characters/neil/front.svg",
  21272. extra: 1326 / 1250,
  21273. bottom: 0.023
  21274. }
  21275. },
  21276. },
  21277. [
  21278. {
  21279. name: "Normal",
  21280. height: math.unit(6 + 1 / 12, "feet"),
  21281. default: true
  21282. },
  21283. {
  21284. name: "Macro",
  21285. height: math.unit(200, "feet")
  21286. },
  21287. ]
  21288. ))
  21289. characterMakers.push(() => makeCharacter(
  21290. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21291. {
  21292. front: {
  21293. height: math.unit(5 + 9 / 12, "feet"),
  21294. weight: math.unit(190, "lb"),
  21295. name: "Front",
  21296. image: {
  21297. source: "./media/characters/atticus/front.svg",
  21298. extra: 2934 / 2785,
  21299. bottom: 0.025
  21300. }
  21301. },
  21302. },
  21303. [
  21304. {
  21305. name: "Normal",
  21306. height: math.unit(5 + 9 / 12, "feet"),
  21307. default: true
  21308. },
  21309. {
  21310. name: "Macro",
  21311. height: math.unit(180, "feet")
  21312. },
  21313. ]
  21314. ))
  21315. characterMakers.push(() => makeCharacter(
  21316. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21317. {
  21318. side: {
  21319. height: math.unit(9, "feet"),
  21320. weight: math.unit(650, "lb"),
  21321. name: "Side",
  21322. image: {
  21323. source: "./media/characters/milo/side.svg",
  21324. extra: 2644 / 2310,
  21325. bottom: 0.032
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(9, "feet"),
  21333. default: true
  21334. },
  21335. {
  21336. name: "Macro",
  21337. height: math.unit(300, "feet")
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21343. {
  21344. side: {
  21345. height: math.unit(8, "meters"),
  21346. weight: math.unit(90000, "kg"),
  21347. name: "Side",
  21348. image: {
  21349. source: "./media/characters/ijzer/side.svg",
  21350. extra: 2756 / 1600,
  21351. bottom: 0.01
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Small",
  21358. height: math.unit(3, "meters")
  21359. },
  21360. {
  21361. name: "Normal",
  21362. height: math.unit(8, "meters"),
  21363. default: true
  21364. },
  21365. {
  21366. name: "Normal+",
  21367. height: math.unit(10, "meters")
  21368. },
  21369. {
  21370. name: "Bigger",
  21371. height: math.unit(24, "meters")
  21372. },
  21373. {
  21374. name: "Huge",
  21375. height: math.unit(80, "meters")
  21376. },
  21377. ]
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21381. {
  21382. front: {
  21383. height: math.unit(6 + 2 / 12, "feet"),
  21384. weight: math.unit(153, "lb"),
  21385. name: "Front",
  21386. image: {
  21387. source: "./media/characters/luca-cervicum/front.svg",
  21388. extra: 370 / 327,
  21389. bottom: 0.015
  21390. }
  21391. },
  21392. back: {
  21393. height: math.unit(6 + 2 / 12, "feet"),
  21394. weight: math.unit(153, "lb"),
  21395. name: "Back",
  21396. image: {
  21397. source: "./media/characters/luca-cervicum/back.svg",
  21398. extra: 367 / 333,
  21399. bottom: 0.005
  21400. }
  21401. },
  21402. frontGear: {
  21403. height: math.unit(6 + 2 / 12, "feet"),
  21404. weight: math.unit(173, "lb"),
  21405. name: "Front (Gear)",
  21406. image: {
  21407. source: "./media/characters/luca-cervicum/front-gear.svg",
  21408. extra: 377 / 333,
  21409. bottom: 0.006
  21410. }
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(6 + 2 / 12, "feet"),
  21417. default: true
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21423. {
  21424. front: {
  21425. height: math.unit(6 + 1 / 12, "feet"),
  21426. weight: math.unit(304, "lb"),
  21427. name: "Front",
  21428. image: {
  21429. source: "./media/characters/oliver/front.svg",
  21430. extra: 157 / 143,
  21431. bottom: 0.08
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(6 + 1 / 12, "feet"),
  21439. default: true
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21445. {
  21446. front: {
  21447. height: math.unit(5 + 7 / 12, "feet"),
  21448. weight: math.unit(140, "lb"),
  21449. name: "Front",
  21450. image: {
  21451. source: "./media/characters/shane/front.svg",
  21452. extra: 304 / 289,
  21453. bottom: 0.005
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(5 + 7 / 12, "feet"),
  21461. default: true
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21467. {
  21468. front: {
  21469. height: math.unit(5 + 9 / 12, "feet"),
  21470. weight: math.unit(178, "lb"),
  21471. name: "Front",
  21472. image: {
  21473. source: "./media/characters/shin/front.svg",
  21474. extra: 159 / 151,
  21475. bottom: 0.015
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(5 + 9 / 12, "feet"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21489. {
  21490. front: {
  21491. height: math.unit(5 + 10 / 12, "feet"),
  21492. weight: math.unit(168, "lb"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/xerxes/front.svg",
  21496. extra: 282 / 260,
  21497. bottom: 0.045
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Normal",
  21504. height: math.unit(5 + 10 / 12, "feet"),
  21505. default: true
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(6 + 7 / 12, "feet"),
  21514. weight: math.unit(208, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/chaska/front.svg",
  21518. extra: 332 / 319,
  21519. bottom: 0.015
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(6 + 7 / 12, "feet"),
  21527. default: true
  21528. },
  21529. ]
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21533. {
  21534. front: {
  21535. height: math.unit(5 + 8 / 12, "feet"),
  21536. weight: math.unit(208, "lb"),
  21537. name: "Front",
  21538. image: {
  21539. source: "./media/characters/enuk/front.svg",
  21540. extra: 437 / 406,
  21541. bottom: 0.02
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Normal",
  21548. height: math.unit(5 + 8 / 12, "feet"),
  21549. default: true
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21555. {
  21556. front: {
  21557. height: math.unit(5 + 10 / 12, "feet"),
  21558. weight: math.unit(252, "lb"),
  21559. name: "Front",
  21560. image: {
  21561. source: "./media/characters/bruun/front.svg",
  21562. extra: 197 / 187,
  21563. bottom: 0.012
  21564. }
  21565. },
  21566. },
  21567. [
  21568. {
  21569. name: "Normal",
  21570. height: math.unit(5 + 10 / 12, "feet"),
  21571. default: true
  21572. },
  21573. ]
  21574. ))
  21575. characterMakers.push(() => makeCharacter(
  21576. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21577. {
  21578. front: {
  21579. height: math.unit(6 + 10 / 12, "feet"),
  21580. weight: math.unit(255, "lb"),
  21581. name: "Front",
  21582. image: {
  21583. source: "./media/characters/alexeev/front.svg",
  21584. extra: 213 / 200,
  21585. bottom: 0.05
  21586. }
  21587. },
  21588. },
  21589. [
  21590. {
  21591. name: "Normal",
  21592. height: math.unit(6 + 10 / 12, "feet"),
  21593. default: true
  21594. },
  21595. ]
  21596. ))
  21597. characterMakers.push(() => makeCharacter(
  21598. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21599. {
  21600. front: {
  21601. height: math.unit(2 + 8 / 12, "feet"),
  21602. weight: math.unit(22, "lb"),
  21603. name: "Front",
  21604. image: {
  21605. source: "./media/characters/evelyn/front.svg",
  21606. extra: 208 / 180
  21607. }
  21608. },
  21609. },
  21610. [
  21611. {
  21612. name: "Normal",
  21613. height: math.unit(2 + 8 / 12, "feet"),
  21614. default: true
  21615. },
  21616. ]
  21617. ))
  21618. characterMakers.push(() => makeCharacter(
  21619. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21620. {
  21621. front: {
  21622. height: math.unit(5 + 9 / 12, "feet"),
  21623. weight: math.unit(139, "lb"),
  21624. name: "Front",
  21625. image: {
  21626. source: "./media/characters/inca/front.svg",
  21627. extra: 294 / 291,
  21628. bottom: 0.03
  21629. }
  21630. },
  21631. },
  21632. [
  21633. {
  21634. name: "Normal",
  21635. height: math.unit(5 + 9 / 12, "feet"),
  21636. default: true
  21637. },
  21638. ]
  21639. ))
  21640. characterMakers.push(() => makeCharacter(
  21641. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21642. {
  21643. front: {
  21644. height: math.unit(6 + 3 / 12, "feet"),
  21645. weight: math.unit(185, "lb"),
  21646. name: "Front",
  21647. image: {
  21648. source: "./media/characters/mera/front.svg",
  21649. extra: 291 / 277,
  21650. bottom: 0.03
  21651. }
  21652. },
  21653. },
  21654. [
  21655. {
  21656. name: "Normal",
  21657. height: math.unit(6 + 3 / 12, "feet"),
  21658. default: true
  21659. },
  21660. ]
  21661. ))
  21662. characterMakers.push(() => makeCharacter(
  21663. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21664. {
  21665. front: {
  21666. height: math.unit(6 + 7 / 12, "feet"),
  21667. weight: math.unit(160, "lb"),
  21668. name: "Front",
  21669. image: {
  21670. source: "./media/characters/ceres/front.svg",
  21671. extra: 1023 / 950,
  21672. bottom: 0.027
  21673. }
  21674. },
  21675. back: {
  21676. height: math.unit(6 + 7 / 12, "feet"),
  21677. weight: math.unit(160, "lb"),
  21678. name: "Back",
  21679. image: {
  21680. source: "./media/characters/ceres/back.svg",
  21681. extra: 1023 / 950
  21682. }
  21683. },
  21684. },
  21685. [
  21686. {
  21687. name: "Normal",
  21688. height: math.unit(6 + 7 / 12, "feet"),
  21689. default: true
  21690. },
  21691. ]
  21692. ))
  21693. characterMakers.push(() => makeCharacter(
  21694. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21695. {
  21696. front: {
  21697. height: math.unit(5 + 10 / 12, "feet"),
  21698. weight: math.unit(150, "lb"),
  21699. name: "Front",
  21700. image: {
  21701. source: "./media/characters/kris/front.svg",
  21702. extra: 885 / 803,
  21703. bottom: 0.03
  21704. }
  21705. },
  21706. },
  21707. [
  21708. {
  21709. name: "Normal",
  21710. height: math.unit(5 + 10 / 12, "feet"),
  21711. default: true
  21712. },
  21713. ]
  21714. ))
  21715. characterMakers.push(() => makeCharacter(
  21716. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21717. {
  21718. front: {
  21719. height: math.unit(7, "feet"),
  21720. weight: math.unit(120, "kg"),
  21721. name: "Front",
  21722. image: {
  21723. source: "./media/characters/taluthus/front.svg",
  21724. extra: 903 / 833,
  21725. bottom: 0.015
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Normal",
  21732. height: math.unit(7, "feet"),
  21733. default: true
  21734. },
  21735. {
  21736. name: "Macro",
  21737. height: math.unit(300, "feet")
  21738. },
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21743. {
  21744. front: {
  21745. height: math.unit(5 + 9 / 12, "feet"),
  21746. weight: math.unit(145, "lb"),
  21747. name: "Front",
  21748. image: {
  21749. source: "./media/characters/dawn/front.svg",
  21750. extra: 2094 / 2016,
  21751. bottom: 0.025
  21752. }
  21753. },
  21754. back: {
  21755. height: math.unit(5 + 9 / 12, "feet"),
  21756. weight: math.unit(160, "lb"),
  21757. name: "Back",
  21758. image: {
  21759. source: "./media/characters/dawn/back.svg",
  21760. extra: 2112 / 2080,
  21761. bottom: 0.005
  21762. }
  21763. },
  21764. },
  21765. [
  21766. {
  21767. name: "Normal",
  21768. height: math.unit(6 + 7 / 12, "feet"),
  21769. default: true
  21770. },
  21771. ]
  21772. ))
  21773. characterMakers.push(() => makeCharacter(
  21774. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21775. {
  21776. anthro: {
  21777. height: math.unit(8 + 3 / 12, "feet"),
  21778. weight: math.unit(450, "lb"),
  21779. name: "Anthro",
  21780. image: {
  21781. source: "./media/characters/arador/anthro.svg",
  21782. extra: 1835 / 1718,
  21783. bottom: 0.025
  21784. }
  21785. },
  21786. feral: {
  21787. height: math.unit(4, "feet"),
  21788. weight: math.unit(200, "lb"),
  21789. name: "Feral",
  21790. image: {
  21791. source: "./media/characters/arador/feral.svg",
  21792. extra: 1683 / 1514,
  21793. bottom: 0.07
  21794. }
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Normal",
  21800. height: math.unit(8 + 3 / 12, "feet")
  21801. },
  21802. {
  21803. name: "Macro",
  21804. height: math.unit(82.5, "feet"),
  21805. default: true
  21806. },
  21807. ]
  21808. ))
  21809. characterMakers.push(() => makeCharacter(
  21810. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21811. {
  21812. front: {
  21813. height: math.unit(5 + 10 / 12, "feet"),
  21814. weight: math.unit(125, "lb"),
  21815. name: "Front",
  21816. image: {
  21817. source: "./media/characters/dharsi/front.svg",
  21818. extra: 716 / 630,
  21819. bottom: 0.035
  21820. }
  21821. },
  21822. },
  21823. [
  21824. {
  21825. name: "Nano",
  21826. height: math.unit(100, "nm")
  21827. },
  21828. {
  21829. name: "Micro",
  21830. height: math.unit(2, "inches")
  21831. },
  21832. {
  21833. name: "Normal",
  21834. height: math.unit(5 + 10 / 12, "feet"),
  21835. default: true
  21836. },
  21837. {
  21838. name: "Macro",
  21839. height: math.unit(1000, "feet")
  21840. },
  21841. {
  21842. name: "Megamacro",
  21843. height: math.unit(10, "miles")
  21844. },
  21845. {
  21846. name: "Gigamacro",
  21847. height: math.unit(3000, "miles")
  21848. },
  21849. {
  21850. name: "Teramacro",
  21851. height: math.unit(500000, "miles")
  21852. },
  21853. {
  21854. name: "Teramacro+",
  21855. height: math.unit(30, "galaxies")
  21856. },
  21857. ]
  21858. ))
  21859. characterMakers.push(() => makeCharacter(
  21860. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21861. {
  21862. front: {
  21863. height: math.unit(6, "feet"),
  21864. weight: math.unit(150, "lb"),
  21865. name: "Front",
  21866. image: {
  21867. source: "./media/characters/deathy/front.svg",
  21868. extra: 1552 / 1463,
  21869. bottom: 0.025
  21870. }
  21871. },
  21872. side: {
  21873. height: math.unit(6, "feet"),
  21874. weight: math.unit(150, "lb"),
  21875. name: "Side",
  21876. image: {
  21877. source: "./media/characters/deathy/side.svg",
  21878. extra: 1604 / 1455,
  21879. bottom: 0.025
  21880. }
  21881. },
  21882. back: {
  21883. height: math.unit(6, "feet"),
  21884. weight: math.unit(150, "lb"),
  21885. name: "Back",
  21886. image: {
  21887. source: "./media/characters/deathy/back.svg",
  21888. extra: 1580 / 1463,
  21889. bottom: 0.005
  21890. }
  21891. },
  21892. },
  21893. [
  21894. {
  21895. name: "Micro",
  21896. height: math.unit(5, "millimeters")
  21897. },
  21898. {
  21899. name: "Normal",
  21900. height: math.unit(6 + 5 / 12, "feet"),
  21901. default: true
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21907. {
  21908. front: {
  21909. height: math.unit(16, "feet"),
  21910. weight: math.unit(4000, "lb"),
  21911. name: "Front",
  21912. image: {
  21913. source: "./media/characters/juniper/front.svg",
  21914. bottom: 0.04
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Normal",
  21921. height: math.unit(16, "feet"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21928. {
  21929. front: {
  21930. height: math.unit(6, "feet"),
  21931. weight: math.unit(150, "lb"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/hipster/front.svg",
  21935. extra: 1312 / 1209,
  21936. bottom: 0.025
  21937. }
  21938. },
  21939. back: {
  21940. height: math.unit(6, "feet"),
  21941. weight: math.unit(150, "lb"),
  21942. name: "Back",
  21943. image: {
  21944. source: "./media/characters/hipster/back.svg",
  21945. extra: 1281 / 1196,
  21946. bottom: 0.01
  21947. }
  21948. },
  21949. },
  21950. [
  21951. {
  21952. name: "Micro",
  21953. height: math.unit(1, "mm")
  21954. },
  21955. {
  21956. name: "Normal",
  21957. height: math.unit(4, "inches"),
  21958. default: true
  21959. },
  21960. {
  21961. name: "Macro",
  21962. height: math.unit(500, "feet")
  21963. },
  21964. {
  21965. name: "Megamacro",
  21966. height: math.unit(1000, "miles")
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(6, "feet"),
  21975. weight: math.unit(150, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/tendirmuldr/front.svg",
  21979. extra: 1878 / 1772,
  21980. bottom: 0.015
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Megamacro",
  21987. height: math.unit(1500, "miles"),
  21988. default: true
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21994. {
  21995. front: {
  21996. height: math.unit(14, "feet"),
  21997. weight: math.unit(12000, "lb"),
  21998. name: "Front",
  21999. image: {
  22000. source: "./media/characters/mort/front.svg",
  22001. extra: 365 / 318,
  22002. bottom: 0.01
  22003. }
  22004. },
  22005. side: {
  22006. height: math.unit(14, "feet"),
  22007. weight: math.unit(12000, "lb"),
  22008. name: "Side",
  22009. image: {
  22010. source: "./media/characters/mort/side.svg",
  22011. extra: 365 / 318,
  22012. bottom: 0.052
  22013. },
  22014. default: true
  22015. },
  22016. back: {
  22017. height: math.unit(14, "feet"),
  22018. weight: math.unit(12000, "lb"),
  22019. name: "Back",
  22020. image: {
  22021. source: "./media/characters/mort/back.svg",
  22022. extra: 371 / 332,
  22023. bottom: 0.18
  22024. }
  22025. },
  22026. },
  22027. [
  22028. {
  22029. name: "Normal",
  22030. height: math.unit(14, "feet"),
  22031. default: true
  22032. },
  22033. ]
  22034. ))
  22035. characterMakers.push(() => makeCharacter(
  22036. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22037. {
  22038. front: {
  22039. height: math.unit(8, "feet"),
  22040. weight: math.unit(1, "ton"),
  22041. name: "Front",
  22042. image: {
  22043. source: "./media/characters/lycoa/front.svg",
  22044. extra: 1836/1728,
  22045. bottom: 81/1917
  22046. }
  22047. },
  22048. back: {
  22049. height: math.unit(8, "feet"),
  22050. weight: math.unit(1, "ton"),
  22051. name: "Back",
  22052. image: {
  22053. source: "./media/characters/lycoa/back.svg",
  22054. extra: 1785/1720,
  22055. bottom: 91/1876
  22056. }
  22057. },
  22058. head: {
  22059. height: math.unit(1.6243, "feet"),
  22060. name: "Head",
  22061. image: {
  22062. source: "./media/characters/lycoa/head.svg",
  22063. extra: 1011/782,
  22064. bottom: 0/1011
  22065. }
  22066. },
  22067. tailmaw: {
  22068. height: math.unit(1.9, "feet"),
  22069. name: "Tailmaw",
  22070. image: {
  22071. source: "./media/characters/lycoa/tailmaw.svg"
  22072. }
  22073. },
  22074. tentacles: {
  22075. height: math.unit(2.1, "feet"),
  22076. name: "Tentacles",
  22077. image: {
  22078. source: "./media/characters/lycoa/tentacles.svg"
  22079. }
  22080. },
  22081. dick: {
  22082. height: math.unit(1.73, "feet"),
  22083. name: "Dick",
  22084. image: {
  22085. source: "./media/characters/lycoa/dick.svg"
  22086. }
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Normal",
  22092. height: math.unit(8, "feet"),
  22093. default: true
  22094. },
  22095. {
  22096. name: "Macro",
  22097. height: math.unit(30, "feet")
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22103. {
  22104. front: {
  22105. height: math.unit(4 + 2 / 12, "feet"),
  22106. weight: math.unit(70, "lb"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/naldara/front.svg",
  22110. extra: 1664/1387,
  22111. bottom: 81/1745
  22112. },
  22113. form: "anthro",
  22114. default: true
  22115. },
  22116. naga: {
  22117. height: math.unit(20, "feet"),
  22118. weight: math.unit(15000, "kg"),
  22119. name: "Front",
  22120. image: {
  22121. source: "./media/characters/naldara/naga.svg",
  22122. extra: 1590/1396,
  22123. bottom: 285/1875
  22124. },
  22125. form: "naga",
  22126. default: true
  22127. },
  22128. },
  22129. [
  22130. {
  22131. name: "Normal",
  22132. height: math.unit(4 + 2 / 12, "feet"),
  22133. form: "anthro",
  22134. default: true
  22135. },
  22136. {
  22137. name: "Normal",
  22138. height: math.unit(20, "feet"),
  22139. form: "naga",
  22140. default: true
  22141. },
  22142. ],
  22143. {
  22144. "anthro": {
  22145. name: "Anthro",
  22146. default: true
  22147. },
  22148. "naga": {
  22149. name: "Naga"
  22150. }
  22151. }
  22152. ))
  22153. characterMakers.push(() => makeCharacter(
  22154. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22155. {
  22156. front: {
  22157. height: math.unit(13 + 7 / 12, "feet"),
  22158. weight: math.unit(1500, "lb"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/briar/front.svg",
  22162. extra: 1223/1157,
  22163. bottom: 123/1346
  22164. }
  22165. },
  22166. },
  22167. [
  22168. {
  22169. name: "Normal",
  22170. height: math.unit(13 + 7 / 12, "feet"),
  22171. default: true
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22177. {
  22178. side: {
  22179. height: math.unit(16, "feet"),
  22180. weight: math.unit(500, "lb"),
  22181. name: "Side",
  22182. image: {
  22183. source: "./media/characters/vanguard/side.svg",
  22184. extra: 1022/914,
  22185. bottom: 30/1052
  22186. }
  22187. },
  22188. sideAlt: {
  22189. height: math.unit(10, "feet"),
  22190. weight: math.unit(500, "lb"),
  22191. name: "Side (Alt)",
  22192. image: {
  22193. source: "./media/characters/vanguard/side-alt.svg",
  22194. extra: 502 / 425,
  22195. bottom: 0.087
  22196. }
  22197. },
  22198. },
  22199. [
  22200. {
  22201. name: "Normal",
  22202. height: math.unit(17.71, "feet"),
  22203. default: true
  22204. },
  22205. ]
  22206. ))
  22207. characterMakers.push(() => makeCharacter(
  22208. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22209. {
  22210. front: {
  22211. height: math.unit(7.5, "feet"),
  22212. weight: math.unit(2, "lb"),
  22213. name: "Front",
  22214. image: {
  22215. source: "./media/characters/artemis/work-safe-front.svg",
  22216. extra: 1192 / 1075,
  22217. bottom: 0.07
  22218. },
  22219. form: "work-safe",
  22220. default: true
  22221. },
  22222. frontNsfw: {
  22223. height: math.unit(7.5, "feet"),
  22224. weight: math.unit(2, "lb"),
  22225. name: "Front",
  22226. image: {
  22227. source: "./media/characters/artemis/calibrating-front.svg",
  22228. extra: 1192 / 1075,
  22229. bottom: 0.07
  22230. },
  22231. form: "calibrating",
  22232. default: true
  22233. },
  22234. frontNsfwer: {
  22235. height: math.unit(7.5, "feet"),
  22236. weight: math.unit(2, "lb"),
  22237. name: "Front",
  22238. image: {
  22239. source: "./media/characters/artemis/oversize-load-front.svg",
  22240. extra: 1192 / 1075,
  22241. bottom: 0.07
  22242. },
  22243. form: "oversize-load",
  22244. default: true
  22245. },
  22246. side: {
  22247. height: math.unit(7.5, "feet"),
  22248. weight: math.unit(2, "lb"),
  22249. name: "Side",
  22250. image: {
  22251. source: "./media/characters/artemis/work-safe-side.svg",
  22252. extra: 1192 / 1075,
  22253. bottom: 0.07
  22254. },
  22255. form: "work-safe"
  22256. },
  22257. sideNsfw: {
  22258. height: math.unit(7.5, "feet"),
  22259. weight: math.unit(2, "lb"),
  22260. name: "Side",
  22261. image: {
  22262. source: "./media/characters/artemis/calibrating-side.svg",
  22263. extra: 1192 / 1075,
  22264. bottom: 0.07
  22265. },
  22266. form: "calibrating"
  22267. },
  22268. sideNsfwer: {
  22269. height: math.unit(7.5, "feet"),
  22270. weight: math.unit(2, "lb"),
  22271. name: "Side",
  22272. image: {
  22273. source: "./media/characters/artemis/oversize-load-side.svg",
  22274. extra: 1192 / 1075,
  22275. bottom: 0.07
  22276. },
  22277. form: "oversize-load"
  22278. },
  22279. maw: {
  22280. height: math.unit(1.1, "feet"),
  22281. name: "Maw",
  22282. image: {
  22283. source: "./media/characters/artemis/maw.svg"
  22284. },
  22285. form: "work-safe"
  22286. },
  22287. stomach: {
  22288. height: math.unit(0.95, "feet"),
  22289. name: "Stomach",
  22290. image: {
  22291. source: "./media/characters/artemis/stomach.svg"
  22292. },
  22293. form: "work-safe"
  22294. },
  22295. dickCanine: {
  22296. height: math.unit(1, "feet"),
  22297. name: "Dick (Canine)",
  22298. image: {
  22299. source: "./media/characters/artemis/dick-canine.svg"
  22300. },
  22301. form: "calibrating"
  22302. },
  22303. dickEquine: {
  22304. height: math.unit(0.85, "feet"),
  22305. name: "Dick (Equine)",
  22306. image: {
  22307. source: "./media/characters/artemis/dick-equine.svg"
  22308. },
  22309. form: "calibrating"
  22310. },
  22311. dickExotic: {
  22312. height: math.unit(0.85, "feet"),
  22313. name: "Dick (Exotic)",
  22314. image: {
  22315. source: "./media/characters/artemis/dick-exotic.svg"
  22316. },
  22317. form: "calibrating"
  22318. },
  22319. dickCanineBigger: {
  22320. height: math.unit(1 * 1.33, "feet"),
  22321. name: "Dick (Canine)",
  22322. image: {
  22323. source: "./media/characters/artemis/dick-canine.svg"
  22324. },
  22325. form: "oversize-load"
  22326. },
  22327. dickEquineBigger: {
  22328. height: math.unit(0.85 * 1.33, "feet"),
  22329. name: "Dick (Equine)",
  22330. image: {
  22331. source: "./media/characters/artemis/dick-equine.svg"
  22332. },
  22333. form: "oversize-load"
  22334. },
  22335. dickExoticBigger: {
  22336. height: math.unit(0.85 * 1.33, "feet"),
  22337. name: "Dick (Exotic)",
  22338. image: {
  22339. source: "./media/characters/artemis/dick-exotic.svg"
  22340. },
  22341. form: "oversize-load"
  22342. },
  22343. },
  22344. [
  22345. {
  22346. name: "Normal",
  22347. height: math.unit(7.5, "feet"),
  22348. form: "work-safe",
  22349. default: true
  22350. },
  22351. {
  22352. name: "Normal",
  22353. height: math.unit(7.5, "feet"),
  22354. form: "calibrating",
  22355. default: true
  22356. },
  22357. {
  22358. name: "Normal",
  22359. height: math.unit(7.5, "feet"),
  22360. form: "oversize-load",
  22361. default: true
  22362. },
  22363. {
  22364. name: "Enlarged",
  22365. height: math.unit(12, "feet"),
  22366. form: "work-safe",
  22367. },
  22368. {
  22369. name: "Enlarged",
  22370. height: math.unit(12, "feet"),
  22371. form: "calibrating",
  22372. },
  22373. {
  22374. name: "Enlarged",
  22375. height: math.unit(12, "feet"),
  22376. form: "oversize-load",
  22377. },
  22378. ],
  22379. {
  22380. "work-safe": {
  22381. name: "Work-Safe",
  22382. default: true
  22383. },
  22384. "calibrating": {
  22385. name: "Calibrating"
  22386. },
  22387. "oversize-load": {
  22388. name: "Oversize Load"
  22389. }
  22390. }
  22391. ))
  22392. characterMakers.push(() => makeCharacter(
  22393. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22394. {
  22395. front: {
  22396. height: math.unit(5 + 3 / 12, "feet"),
  22397. weight: math.unit(160, "lb"),
  22398. name: "Front",
  22399. image: {
  22400. source: "./media/characters/kira/front.svg",
  22401. extra: 906 / 786,
  22402. bottom: 0.01
  22403. }
  22404. },
  22405. back: {
  22406. height: math.unit(5 + 3 / 12, "feet"),
  22407. weight: math.unit(160, "lb"),
  22408. name: "Back",
  22409. image: {
  22410. source: "./media/characters/kira/back.svg",
  22411. extra: 882 / 757,
  22412. bottom: 0.005
  22413. }
  22414. },
  22415. frontDressed: {
  22416. height: math.unit(5 + 3 / 12, "feet"),
  22417. weight: math.unit(160, "lb"),
  22418. name: "Front (Dressed)",
  22419. image: {
  22420. source: "./media/characters/kira/front-dressed.svg",
  22421. extra: 906 / 786,
  22422. bottom: 0.01
  22423. }
  22424. },
  22425. beans: {
  22426. height: math.unit(0.92, "feet"),
  22427. name: "Beans",
  22428. image: {
  22429. source: "./media/characters/kira/beans.svg"
  22430. }
  22431. },
  22432. },
  22433. [
  22434. {
  22435. name: "Normal",
  22436. height: math.unit(5 + 3 / 12, "feet"),
  22437. default: true
  22438. },
  22439. ]
  22440. ))
  22441. characterMakers.push(() => makeCharacter(
  22442. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22443. {
  22444. front: {
  22445. height: math.unit(5 + 4 / 12, "feet"),
  22446. weight: math.unit(145, "lb"),
  22447. name: "Front",
  22448. image: {
  22449. source: "./media/characters/scramble/front.svg",
  22450. extra: 763 / 727,
  22451. bottom: 0.05
  22452. }
  22453. },
  22454. back: {
  22455. height: math.unit(5 + 4 / 12, "feet"),
  22456. weight: math.unit(145, "lb"),
  22457. name: "Back",
  22458. image: {
  22459. source: "./media/characters/scramble/back.svg",
  22460. extra: 826 / 737,
  22461. bottom: 0.002
  22462. }
  22463. },
  22464. },
  22465. [
  22466. {
  22467. name: "Normal",
  22468. height: math.unit(5 + 4 / 12, "feet"),
  22469. default: true
  22470. },
  22471. ]
  22472. ))
  22473. characterMakers.push(() => makeCharacter(
  22474. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22475. {
  22476. side: {
  22477. height: math.unit(6 + 2 / 12, "feet"),
  22478. weight: math.unit(190, "lb"),
  22479. name: "Side",
  22480. image: {
  22481. source: "./media/characters/biscuit/side.svg",
  22482. extra: 858 / 791,
  22483. bottom: 0.044
  22484. }
  22485. },
  22486. },
  22487. [
  22488. {
  22489. name: "Normal",
  22490. height: math.unit(6 + 2 / 12, "feet"),
  22491. default: true
  22492. },
  22493. ]
  22494. ))
  22495. characterMakers.push(() => makeCharacter(
  22496. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22497. {
  22498. front: {
  22499. height: math.unit(5 + 2 / 12, "feet"),
  22500. weight: math.unit(120, "lb"),
  22501. name: "Front",
  22502. image: {
  22503. source: "./media/characters/poffin/front.svg",
  22504. extra: 786 / 680,
  22505. bottom: 0.005
  22506. }
  22507. },
  22508. },
  22509. [
  22510. {
  22511. name: "Normal",
  22512. height: math.unit(5 + 2 / 12, "feet"),
  22513. default: true
  22514. },
  22515. ]
  22516. ))
  22517. characterMakers.push(() => makeCharacter(
  22518. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22519. {
  22520. front: {
  22521. height: math.unit(6 + 3 / 12, "feet"),
  22522. weight: math.unit(519, "lb"),
  22523. name: "Front",
  22524. image: {
  22525. source: "./media/characters/dhari/front.svg",
  22526. extra: 1048 / 946,
  22527. bottom: 0.015
  22528. }
  22529. },
  22530. back: {
  22531. height: math.unit(6 + 3 / 12, "feet"),
  22532. weight: math.unit(519, "lb"),
  22533. name: "Back",
  22534. image: {
  22535. source: "./media/characters/dhari/back.svg",
  22536. extra: 1048 / 931,
  22537. bottom: 0.005
  22538. }
  22539. },
  22540. frontDressed: {
  22541. height: math.unit(6 + 3 / 12, "feet"),
  22542. weight: math.unit(519, "lb"),
  22543. name: "Front (Dressed)",
  22544. image: {
  22545. source: "./media/characters/dhari/front-dressed.svg",
  22546. extra: 1713 / 1546,
  22547. bottom: 0.02
  22548. }
  22549. },
  22550. backDressed: {
  22551. height: math.unit(6 + 3 / 12, "feet"),
  22552. weight: math.unit(519, "lb"),
  22553. name: "Back (Dressed)",
  22554. image: {
  22555. source: "./media/characters/dhari/back-dressed.svg",
  22556. extra: 1699 / 1537,
  22557. bottom: 0.01
  22558. }
  22559. },
  22560. maw: {
  22561. height: math.unit(0.95, "feet"),
  22562. name: "Maw",
  22563. image: {
  22564. source: "./media/characters/dhari/maw.svg"
  22565. }
  22566. },
  22567. wereFront: {
  22568. height: math.unit(12 + 8 / 12, "feet"),
  22569. weight: math.unit(4000, "lb"),
  22570. name: "Front (Were)",
  22571. image: {
  22572. source: "./media/characters/dhari/were-front.svg",
  22573. extra: 1065 / 969,
  22574. bottom: 0.015
  22575. }
  22576. },
  22577. wereBack: {
  22578. height: math.unit(12 + 8 / 12, "feet"),
  22579. weight: math.unit(4000, "lb"),
  22580. name: "Back (Were)",
  22581. image: {
  22582. source: "./media/characters/dhari/were-back.svg",
  22583. extra: 1065 / 969,
  22584. bottom: 0.012
  22585. }
  22586. },
  22587. wereMaw: {
  22588. height: math.unit(0.625, "meters"),
  22589. name: "Maw (Were)",
  22590. image: {
  22591. source: "./media/characters/dhari/were-maw.svg"
  22592. }
  22593. },
  22594. },
  22595. [
  22596. {
  22597. name: "Normal",
  22598. height: math.unit(6 + 3 / 12, "feet"),
  22599. default: true
  22600. },
  22601. ]
  22602. ))
  22603. characterMakers.push(() => makeCharacter(
  22604. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22605. {
  22606. anthro: {
  22607. height: math.unit(5 + 7 / 12, "feet"),
  22608. weight: math.unit(175, "lb"),
  22609. name: "Anthro",
  22610. image: {
  22611. source: "./media/characters/rena-dyne/anthro.svg",
  22612. extra: 1849 / 1785,
  22613. bottom: 0.005
  22614. }
  22615. },
  22616. taur: {
  22617. height: math.unit(15 + 6 / 12, "feet"),
  22618. weight: math.unit(8000, "lb"),
  22619. name: "Taur",
  22620. image: {
  22621. source: "./media/characters/rena-dyne/taur.svg",
  22622. extra: 2315 / 2234,
  22623. bottom: 0.033
  22624. }
  22625. },
  22626. },
  22627. [
  22628. {
  22629. name: "Normal",
  22630. height: math.unit(5 + 7 / 12, "feet"),
  22631. default: true
  22632. },
  22633. ]
  22634. ))
  22635. characterMakers.push(() => makeCharacter(
  22636. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22637. {
  22638. front: {
  22639. height: math.unit(8, "feet"),
  22640. weight: math.unit(600, "lb"),
  22641. name: "Front",
  22642. image: {
  22643. source: "./media/characters/weremeep/front.svg",
  22644. extra: 970/849,
  22645. bottom: 7/977
  22646. }
  22647. },
  22648. },
  22649. [
  22650. {
  22651. name: "Normal",
  22652. height: math.unit(8, "feet"),
  22653. default: true
  22654. },
  22655. {
  22656. name: "Lorg",
  22657. height: math.unit(12, "feet")
  22658. },
  22659. {
  22660. name: "Oh Lawd She Comin'",
  22661. height: math.unit(20, "feet")
  22662. },
  22663. ]
  22664. ))
  22665. characterMakers.push(() => makeCharacter(
  22666. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22667. {
  22668. front: {
  22669. height: math.unit(4, "feet"),
  22670. weight: math.unit(90, "lb"),
  22671. name: "Front",
  22672. image: {
  22673. source: "./media/characters/reza/front.svg",
  22674. extra: 1183 / 1111,
  22675. bottom: 0.017
  22676. }
  22677. },
  22678. back: {
  22679. height: math.unit(4, "feet"),
  22680. weight: math.unit(90, "lb"),
  22681. name: "Back",
  22682. image: {
  22683. source: "./media/characters/reza/back.svg",
  22684. extra: 1183 / 1111,
  22685. bottom: 0.01
  22686. }
  22687. },
  22688. drake: {
  22689. height: math.unit(30, "feet"),
  22690. weight: math.unit(246960, "lb"),
  22691. name: "Drake",
  22692. image: {
  22693. source: "./media/characters/reza/drake.svg",
  22694. extra: 2350 / 2024,
  22695. bottom: 60.7 / 2403
  22696. }
  22697. },
  22698. },
  22699. [
  22700. {
  22701. name: "Normal",
  22702. height: math.unit(4, "feet"),
  22703. default: true
  22704. },
  22705. ]
  22706. ))
  22707. characterMakers.push(() => makeCharacter(
  22708. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22709. {
  22710. side: {
  22711. height: math.unit(15, "feet"),
  22712. weight: math.unit(14, "tons"),
  22713. name: "Side",
  22714. image: {
  22715. source: "./media/characters/athea/side.svg",
  22716. extra: 960 / 540,
  22717. bottom: 0.003
  22718. }
  22719. },
  22720. sitting: {
  22721. height: math.unit(6 * 2.85, "feet"),
  22722. weight: math.unit(14, "tons"),
  22723. name: "Sitting",
  22724. image: {
  22725. source: "./media/characters/athea/sitting.svg",
  22726. extra: 621 / 581,
  22727. bottom: 0.075
  22728. }
  22729. },
  22730. maw: {
  22731. height: math.unit(7.59498031496063, "feet"),
  22732. name: "Maw",
  22733. image: {
  22734. source: "./media/characters/athea/maw.svg"
  22735. }
  22736. },
  22737. },
  22738. [
  22739. {
  22740. name: "Lap Cat",
  22741. height: math.unit(2.5, "feet")
  22742. },
  22743. {
  22744. name: "Minimacro",
  22745. height: math.unit(15, "feet"),
  22746. default: true
  22747. },
  22748. {
  22749. name: "Macro",
  22750. height: math.unit(120, "feet")
  22751. },
  22752. {
  22753. name: "Macro+",
  22754. height: math.unit(640, "feet")
  22755. },
  22756. {
  22757. name: "Colossus",
  22758. height: math.unit(2.2, "miles")
  22759. },
  22760. ]
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22764. {
  22765. front: {
  22766. height: math.unit(8 + 8 / 12, "feet"),
  22767. weight: math.unit(130, "kg"),
  22768. name: "Front",
  22769. image: {
  22770. source: "./media/characters/seroko/front.svg",
  22771. extra: 1385 / 1280,
  22772. bottom: 0.025
  22773. }
  22774. },
  22775. back: {
  22776. height: math.unit(8 + 8 / 12, "feet"),
  22777. weight: math.unit(130, "kg"),
  22778. name: "Back",
  22779. image: {
  22780. source: "./media/characters/seroko/back.svg",
  22781. extra: 1369 / 1238,
  22782. bottom: 0.018
  22783. }
  22784. },
  22785. frontDressed: {
  22786. height: math.unit(8 + 8 / 12, "feet"),
  22787. weight: math.unit(130, "kg"),
  22788. name: "Front (Dressed)",
  22789. image: {
  22790. source: "./media/characters/seroko/front-dressed.svg",
  22791. extra: 1366 / 1275,
  22792. bottom: 0.03
  22793. }
  22794. },
  22795. },
  22796. [
  22797. {
  22798. name: "Normal",
  22799. height: math.unit(8 + 8 / 12, "feet"),
  22800. default: true
  22801. },
  22802. ]
  22803. ))
  22804. characterMakers.push(() => makeCharacter(
  22805. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22806. {
  22807. front: {
  22808. height: math.unit(5.5, "feet"),
  22809. weight: math.unit(160, "lb"),
  22810. name: "Front",
  22811. image: {
  22812. source: "./media/characters/quatzi/front.svg",
  22813. extra: 2346 / 2242,
  22814. bottom: 0.015
  22815. }
  22816. },
  22817. },
  22818. [
  22819. {
  22820. name: "Normal",
  22821. height: math.unit(5.5, "feet"),
  22822. default: true
  22823. },
  22824. {
  22825. name: "Big",
  22826. height: math.unit(7.7, "feet")
  22827. },
  22828. ]
  22829. ))
  22830. characterMakers.push(() => makeCharacter(
  22831. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22832. {
  22833. front: {
  22834. height: math.unit(5 + 11 / 12, "feet"),
  22835. weight: math.unit(180, "lb"),
  22836. name: "Front",
  22837. image: {
  22838. source: "./media/characters/sen/front.svg",
  22839. extra: 1321 / 1254,
  22840. bottom: 0.015
  22841. }
  22842. },
  22843. side: {
  22844. height: math.unit(5 + 11 / 12, "feet"),
  22845. weight: math.unit(180, "lb"),
  22846. name: "Side",
  22847. image: {
  22848. source: "./media/characters/sen/side.svg",
  22849. extra: 1321 / 1254,
  22850. bottom: 0.007
  22851. }
  22852. },
  22853. back: {
  22854. height: math.unit(5 + 11 / 12, "feet"),
  22855. weight: math.unit(180, "lb"),
  22856. name: "Back",
  22857. image: {
  22858. source: "./media/characters/sen/back.svg",
  22859. extra: 1321 / 1254
  22860. }
  22861. },
  22862. },
  22863. [
  22864. {
  22865. name: "Normal",
  22866. height: math.unit(5 + 11 / 12, "feet"),
  22867. default: true
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22873. {
  22874. front: {
  22875. height: math.unit(166.6, "cm"),
  22876. weight: math.unit(66.6, "kg"),
  22877. name: "Front",
  22878. image: {
  22879. source: "./media/characters/fruity/front.svg",
  22880. extra: 1510 / 1386,
  22881. bottom: 0.04
  22882. }
  22883. },
  22884. back: {
  22885. height: math.unit(166.6, "cm"),
  22886. weight: math.unit(66.6, "lb"),
  22887. name: "Back",
  22888. image: {
  22889. source: "./media/characters/fruity/back.svg",
  22890. extra: 1563 / 1435,
  22891. bottom: 0.005
  22892. }
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Normal",
  22898. height: math.unit(166.6, "cm"),
  22899. default: true
  22900. },
  22901. {
  22902. name: "Demonic",
  22903. height: math.unit(166.6, "feet")
  22904. },
  22905. ]
  22906. ))
  22907. characterMakers.push(() => makeCharacter(
  22908. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22909. {
  22910. side: {
  22911. height: math.unit(10, "feet"),
  22912. weight: math.unit(500, "lb"),
  22913. name: "Side",
  22914. image: {
  22915. source: "./media/characters/zost/side.svg",
  22916. extra: 2870/2533,
  22917. bottom: 252/3122
  22918. }
  22919. },
  22920. mawFront: {
  22921. height: math.unit(1.08, "meters"),
  22922. name: "Maw (Front)",
  22923. image: {
  22924. source: "./media/characters/zost/maw-front.svg"
  22925. }
  22926. },
  22927. mawSide: {
  22928. height: math.unit(2.66, "feet"),
  22929. name: "Maw (Side)",
  22930. image: {
  22931. source: "./media/characters/zost/maw-side.svg"
  22932. }
  22933. },
  22934. wingspan: {
  22935. height: math.unit(7.4, "feet"),
  22936. name: "Wingspan",
  22937. image: {
  22938. source: "./media/characters/zost/wingspan.svg"
  22939. }
  22940. },
  22941. },
  22942. [
  22943. {
  22944. name: "Normal",
  22945. height: math.unit(10, "feet"),
  22946. default: true
  22947. },
  22948. ]
  22949. ))
  22950. characterMakers.push(() => makeCharacter(
  22951. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22952. {
  22953. front: {
  22954. height: math.unit(5 + 4 / 12, "feet"),
  22955. weight: math.unit(120, "lb"),
  22956. name: "Front",
  22957. image: {
  22958. source: "./media/characters/luci/front.svg",
  22959. extra: 1985 / 1884,
  22960. bottom: 0.04
  22961. }
  22962. },
  22963. back: {
  22964. height: math.unit(5 + 4 / 12, "feet"),
  22965. weight: math.unit(120, "lb"),
  22966. name: "Back",
  22967. image: {
  22968. source: "./media/characters/luci/back.svg",
  22969. extra: 1892 / 1791,
  22970. bottom: 0.002
  22971. }
  22972. },
  22973. },
  22974. [
  22975. {
  22976. name: "Normal",
  22977. height: math.unit(5 + 4 / 12, "feet"),
  22978. default: true
  22979. },
  22980. ]
  22981. ))
  22982. characterMakers.push(() => makeCharacter(
  22983. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22984. {
  22985. front: {
  22986. height: math.unit(1500, "feet"),
  22987. weight: math.unit(3.8e6, "tons"),
  22988. name: "Front",
  22989. image: {
  22990. source: "./media/characters/2th/front.svg",
  22991. extra: 3489 / 3350,
  22992. bottom: 0.1
  22993. }
  22994. },
  22995. foot: {
  22996. height: math.unit(461, "feet"),
  22997. name: "Foot",
  22998. image: {
  22999. source: "./media/characters/2th/foot.svg"
  23000. }
  23001. },
  23002. },
  23003. [
  23004. {
  23005. name: "\"Micro\"",
  23006. height: math.unit(15 + 7 / 12, "feet")
  23007. },
  23008. {
  23009. name: "Normal",
  23010. height: math.unit(1500, "feet"),
  23011. default: true
  23012. },
  23013. {
  23014. name: "Macro",
  23015. height: math.unit(5000, "feet")
  23016. },
  23017. {
  23018. name: "Megamacro",
  23019. height: math.unit(15, "miles")
  23020. },
  23021. {
  23022. name: "Gigamacro",
  23023. height: math.unit(4000, "miles")
  23024. },
  23025. {
  23026. name: "Galactic",
  23027. height: math.unit(50, "AU")
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23033. {
  23034. front: {
  23035. height: math.unit(5 + 6 / 12, "feet"),
  23036. weight: math.unit(220, "lb"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/amethyst/front.svg",
  23040. extra: 2078 / 2040,
  23041. bottom: 0.045
  23042. }
  23043. },
  23044. back: {
  23045. height: math.unit(5 + 6 / 12, "feet"),
  23046. weight: math.unit(220, "lb"),
  23047. name: "Back",
  23048. image: {
  23049. source: "./media/characters/amethyst/back.svg",
  23050. extra: 2021 / 1989,
  23051. bottom: 0.02
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Normal",
  23058. height: math.unit(5 + 6 / 12, "feet"),
  23059. default: true
  23060. },
  23061. ]
  23062. ))
  23063. characterMakers.push(() => makeCharacter(
  23064. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23065. {
  23066. front: {
  23067. height: math.unit(4 + 11 / 12, "feet"),
  23068. weight: math.unit(120, "lb"),
  23069. name: "Front",
  23070. image: {
  23071. source: "./media/characters/yumi-akiyama/front.svg",
  23072. extra: 1327 / 1235,
  23073. bottom: 0.02
  23074. }
  23075. },
  23076. back: {
  23077. height: math.unit(4 + 11 / 12, "feet"),
  23078. weight: math.unit(120, "lb"),
  23079. name: "Back",
  23080. image: {
  23081. source: "./media/characters/yumi-akiyama/back.svg",
  23082. extra: 1287 / 1245,
  23083. bottom: 0.002
  23084. }
  23085. },
  23086. },
  23087. [
  23088. {
  23089. name: "Galactic",
  23090. height: math.unit(50, "galaxies"),
  23091. default: true
  23092. },
  23093. {
  23094. name: "Universal",
  23095. height: math.unit(100, "universes")
  23096. },
  23097. ]
  23098. ))
  23099. characterMakers.push(() => makeCharacter(
  23100. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23101. {
  23102. front: {
  23103. height: math.unit(8, "feet"),
  23104. weight: math.unit(500, "lb"),
  23105. name: "Front",
  23106. image: {
  23107. source: "./media/characters/rifter-yrmori/front.svg",
  23108. extra: 1180 / 1125,
  23109. bottom: 0.02
  23110. }
  23111. },
  23112. back: {
  23113. height: math.unit(8, "feet"),
  23114. weight: math.unit(500, "lb"),
  23115. name: "Back",
  23116. image: {
  23117. source: "./media/characters/rifter-yrmori/back.svg",
  23118. extra: 1190 / 1145,
  23119. bottom: 0.001
  23120. }
  23121. },
  23122. wings: {
  23123. height: math.unit(7.75, "feet"),
  23124. weight: math.unit(500, "lb"),
  23125. name: "Wings",
  23126. image: {
  23127. source: "./media/characters/rifter-yrmori/wings.svg",
  23128. extra: 1357 / 1285
  23129. }
  23130. },
  23131. maw: {
  23132. height: math.unit(0.8, "feet"),
  23133. name: "Maw",
  23134. image: {
  23135. source: "./media/characters/rifter-yrmori/maw.svg"
  23136. }
  23137. },
  23138. mawfront: {
  23139. height: math.unit(1.45, "feet"),
  23140. name: "Maw (Front)",
  23141. image: {
  23142. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23143. }
  23144. },
  23145. },
  23146. [
  23147. {
  23148. name: "Normal",
  23149. height: math.unit(8, "feet"),
  23150. default: true
  23151. },
  23152. {
  23153. name: "Macro",
  23154. height: math.unit(42, "meters")
  23155. },
  23156. ]
  23157. ))
  23158. characterMakers.push(() => makeCharacter(
  23159. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23160. {
  23161. were: {
  23162. height: math.unit(25 + 6 / 12, "feet"),
  23163. weight: math.unit(10000, "lb"),
  23164. name: "Were",
  23165. image: {
  23166. source: "./media/characters/tahajin/were.svg",
  23167. extra: 801 / 770,
  23168. bottom: 0.042
  23169. }
  23170. },
  23171. aquatic: {
  23172. height: math.unit(6 + 4 / 12, "feet"),
  23173. weight: math.unit(160, "lb"),
  23174. name: "Aquatic",
  23175. image: {
  23176. source: "./media/characters/tahajin/aquatic.svg",
  23177. extra: 572 / 542,
  23178. bottom: 0.04
  23179. }
  23180. },
  23181. chow: {
  23182. height: math.unit(8 + 11 / 12, "feet"),
  23183. weight: math.unit(450, "lb"),
  23184. name: "Chow",
  23185. image: {
  23186. source: "./media/characters/tahajin/chow.svg",
  23187. extra: 660 / 640,
  23188. bottom: 0.015
  23189. }
  23190. },
  23191. demiNaga: {
  23192. height: math.unit(6 + 8 / 12, "feet"),
  23193. weight: math.unit(300, "lb"),
  23194. name: "Demi Naga",
  23195. image: {
  23196. source: "./media/characters/tahajin/demi-naga.svg",
  23197. extra: 643 / 615,
  23198. bottom: 0.1
  23199. }
  23200. },
  23201. data: {
  23202. height: math.unit(5, "inches"),
  23203. weight: math.unit(0.1, "lb"),
  23204. name: "Data",
  23205. image: {
  23206. source: "./media/characters/tahajin/data.svg"
  23207. }
  23208. },
  23209. fluu: {
  23210. height: math.unit(5 + 7 / 12, "feet"),
  23211. weight: math.unit(140, "lb"),
  23212. name: "Fluu",
  23213. image: {
  23214. source: "./media/characters/tahajin/fluu.svg",
  23215. extra: 628 / 592,
  23216. bottom: 0.02
  23217. }
  23218. },
  23219. starWarrior: {
  23220. height: math.unit(4 + 5 / 12, "feet"),
  23221. weight: math.unit(50, "lb"),
  23222. name: "Star Warrior",
  23223. image: {
  23224. source: "./media/characters/tahajin/star-warrior.svg"
  23225. }
  23226. },
  23227. },
  23228. [
  23229. {
  23230. name: "Normal",
  23231. height: math.unit(25 + 6 / 12, "feet"),
  23232. default: true
  23233. },
  23234. ]
  23235. ))
  23236. characterMakers.push(() => makeCharacter(
  23237. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23238. {
  23239. front: {
  23240. height: math.unit(8, "feet"),
  23241. weight: math.unit(350, "lb"),
  23242. name: "Front",
  23243. image: {
  23244. source: "./media/characters/gabira/front.svg",
  23245. extra: 1261/1154,
  23246. bottom: 51/1312
  23247. }
  23248. },
  23249. back: {
  23250. height: math.unit(8, "feet"),
  23251. weight: math.unit(350, "lb"),
  23252. name: "Back",
  23253. image: {
  23254. source: "./media/characters/gabira/back.svg",
  23255. extra: 1265/1163,
  23256. bottom: 46/1311
  23257. }
  23258. },
  23259. head: {
  23260. height: math.unit(2.85, "feet"),
  23261. name: "Head",
  23262. image: {
  23263. source: "./media/characters/gabira/head.svg"
  23264. }
  23265. },
  23266. },
  23267. [
  23268. {
  23269. name: "Normal",
  23270. height: math.unit(8, "feet"),
  23271. default: true
  23272. },
  23273. ]
  23274. ))
  23275. characterMakers.push(() => makeCharacter(
  23276. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23277. {
  23278. front: {
  23279. height: math.unit(5 + 3 / 12, "feet"),
  23280. weight: math.unit(137, "lb"),
  23281. name: "Front",
  23282. image: {
  23283. source: "./media/characters/sasha-katraine/front.svg",
  23284. extra: 1745/1694,
  23285. bottom: 37/1782
  23286. }
  23287. },
  23288. back: {
  23289. height: math.unit(5 + 3 / 12, "feet"),
  23290. weight: math.unit(137, "lb"),
  23291. name: "Back",
  23292. image: {
  23293. source: "./media/characters/sasha-katraine/back.svg",
  23294. extra: 1776/1699,
  23295. bottom: 26/1802
  23296. }
  23297. },
  23298. },
  23299. [
  23300. {
  23301. name: "Micro",
  23302. height: math.unit(5, "inches")
  23303. },
  23304. {
  23305. name: "Normal",
  23306. height: math.unit(5 + 3 / 12, "feet"),
  23307. default: true
  23308. },
  23309. ]
  23310. ))
  23311. characterMakers.push(() => makeCharacter(
  23312. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23313. {
  23314. side: {
  23315. height: math.unit(4, "inches"),
  23316. weight: math.unit(200, "grams"),
  23317. name: "Side",
  23318. image: {
  23319. source: "./media/characters/der/side.svg",
  23320. extra: 719 / 400,
  23321. bottom: 30.6 / 749.9187
  23322. }
  23323. },
  23324. },
  23325. [
  23326. {
  23327. name: "Micro",
  23328. height: math.unit(4, "inches"),
  23329. default: true
  23330. },
  23331. ]
  23332. ))
  23333. characterMakers.push(() => makeCharacter(
  23334. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23335. {
  23336. side: {
  23337. height: math.unit(30, "meters"),
  23338. weight: math.unit(700, "tonnes"),
  23339. name: "Side",
  23340. image: {
  23341. source: "./media/characters/fixerdragon/side.svg",
  23342. extra: (1293.0514 - 116.03) / 1106.86,
  23343. bottom: 116.03 / 1293.0514
  23344. }
  23345. },
  23346. },
  23347. [
  23348. {
  23349. name: "Planck",
  23350. height: math.unit(1.6e-35, "meters")
  23351. },
  23352. {
  23353. name: "Micro",
  23354. height: math.unit(0.4, "meters")
  23355. },
  23356. {
  23357. name: "Normal",
  23358. height: math.unit(30, "meters"),
  23359. default: true
  23360. },
  23361. {
  23362. name: "Megamacro",
  23363. height: math.unit(1.2, "megameters")
  23364. },
  23365. {
  23366. name: "Teramacro",
  23367. height: math.unit(130, "terameters")
  23368. },
  23369. {
  23370. name: "Yottamacro",
  23371. height: math.unit(6200, "yottameters")
  23372. },
  23373. ]
  23374. ));
  23375. characterMakers.push(() => makeCharacter(
  23376. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23377. {
  23378. front: {
  23379. height: math.unit(8, "feet"),
  23380. weight: math.unit(250, "lb"),
  23381. name: "Front",
  23382. image: {
  23383. source: "./media/characters/kite/front.svg",
  23384. extra: 2796 / 2659,
  23385. bottom: 0.002
  23386. }
  23387. },
  23388. },
  23389. [
  23390. {
  23391. name: "Normal",
  23392. height: math.unit(8, "feet"),
  23393. default: true
  23394. },
  23395. {
  23396. name: "Macro",
  23397. height: math.unit(360, "feet")
  23398. },
  23399. {
  23400. name: "Megamacro",
  23401. height: math.unit(1500, "feet")
  23402. },
  23403. ]
  23404. ))
  23405. characterMakers.push(() => makeCharacter(
  23406. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23407. {
  23408. front: {
  23409. height: math.unit(5 + 11/12, "feet"),
  23410. weight: math.unit(170, "lb"),
  23411. name: "Front",
  23412. image: {
  23413. source: "./media/characters/poojawa-vynar/front.svg",
  23414. extra: 1735/1585,
  23415. bottom: 96/1831
  23416. }
  23417. },
  23418. back: {
  23419. height: math.unit(5 + 11/12, "feet"),
  23420. weight: math.unit(170, "lb"),
  23421. name: "Back",
  23422. image: {
  23423. source: "./media/characters/poojawa-vynar/back.svg",
  23424. extra: 1749/1607,
  23425. bottom: 28/1777
  23426. }
  23427. },
  23428. male: {
  23429. height: math.unit(5 + 11/12, "feet"),
  23430. weight: math.unit(170, "lb"),
  23431. name: "Male",
  23432. image: {
  23433. source: "./media/characters/poojawa-vynar/male.svg",
  23434. extra: 1855/1713,
  23435. bottom: 63/1918
  23436. }
  23437. },
  23438. taur: {
  23439. height: math.unit(5 + 11/12, "feet"),
  23440. weight: math.unit(170, "lb"),
  23441. name: "Taur",
  23442. image: {
  23443. source: "./media/characters/poojawa-vynar/taur.svg",
  23444. extra: 1151/1059,
  23445. bottom: 356/1507
  23446. }
  23447. },
  23448. frontDressed: {
  23449. height: math.unit(5 + 11/12, "feet"),
  23450. weight: math.unit(170, "lb"),
  23451. name: "Front (Dressed)",
  23452. image: {
  23453. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23454. extra: 1735/1585,
  23455. bottom: 96/1831
  23456. }
  23457. },
  23458. backDressed: {
  23459. height: math.unit(5 + 11/12, "feet"),
  23460. weight: math.unit(170, "lb"),
  23461. name: "Back (Dressed)",
  23462. image: {
  23463. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23464. extra: 1749/1607,
  23465. bottom: 28/1777
  23466. }
  23467. },
  23468. maleDressed: {
  23469. height: math.unit(5 + 11/12, "feet"),
  23470. weight: math.unit(170, "lb"),
  23471. name: "Male (Dressed)",
  23472. image: {
  23473. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23474. extra: 1855/1713,
  23475. bottom: 63/1918
  23476. }
  23477. },
  23478. taurDressed: {
  23479. height: math.unit(5 + 11/12, "feet"),
  23480. weight: math.unit(170, "lb"),
  23481. name: "Taur (Dressed)",
  23482. image: {
  23483. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23484. extra: 1151/1059,
  23485. bottom: 356/1507
  23486. }
  23487. },
  23488. maw: {
  23489. height: math.unit(1.46, "feet"),
  23490. name: "Maw",
  23491. image: {
  23492. source: "./media/characters/poojawa-vynar/maw.svg"
  23493. }
  23494. },
  23495. head: {
  23496. height: math.unit(2.34, "feet"),
  23497. name: "Head",
  23498. image: {
  23499. source: "./media/characters/poojawa-vynar/head.svg"
  23500. }
  23501. },
  23502. paw: {
  23503. height: math.unit(1.61, "feet"),
  23504. name: "Paw",
  23505. image: {
  23506. source: "./media/characters/poojawa-vynar/paw.svg"
  23507. }
  23508. },
  23509. pawToering: {
  23510. height: math.unit(1.72, "feet"),
  23511. name: "Paw (Toering)",
  23512. image: {
  23513. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23514. }
  23515. },
  23516. toering: {
  23517. height: math.unit(2.9, "inches"),
  23518. name: "Toering",
  23519. image: {
  23520. source: "./media/characters/poojawa-vynar/toering.svg"
  23521. }
  23522. },
  23523. shaft: {
  23524. height: math.unit(0.625, "feet"),
  23525. name: "Shaft",
  23526. image: {
  23527. source: "./media/characters/poojawa-vynar/shaft.svg"
  23528. }
  23529. },
  23530. spade: {
  23531. height: math.unit(0.42, "feet"),
  23532. name: "Spade",
  23533. image: {
  23534. source: "./media/characters/poojawa-vynar/spade.svg"
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Shortstack",
  23541. height: math.unit(4, "feet")
  23542. },
  23543. {
  23544. name: "Normal",
  23545. height: math.unit(5 + 11 / 12, "feet"),
  23546. default: true
  23547. },
  23548. {
  23549. name: "Tauric",
  23550. height: math.unit(4, "meters")
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23556. {
  23557. front: {
  23558. height: math.unit(293, "meters"),
  23559. weight: math.unit(70400, "tons"),
  23560. name: "Front",
  23561. image: {
  23562. source: "./media/characters/violette/front.svg",
  23563. extra: 1227 / 1180,
  23564. bottom: 0.005
  23565. }
  23566. },
  23567. back: {
  23568. height: math.unit(293, "meters"),
  23569. weight: math.unit(70400, "tons"),
  23570. name: "Back",
  23571. image: {
  23572. source: "./media/characters/violette/back.svg",
  23573. extra: 1227 / 1180,
  23574. bottom: 0.005
  23575. }
  23576. },
  23577. },
  23578. [
  23579. {
  23580. name: "Macro",
  23581. height: math.unit(293, "meters"),
  23582. default: true
  23583. },
  23584. ]
  23585. ))
  23586. characterMakers.push(() => makeCharacter(
  23587. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23588. {
  23589. front: {
  23590. height: math.unit(1050, "feet"),
  23591. weight: math.unit(200000, "tons"),
  23592. name: "Front",
  23593. image: {
  23594. source: "./media/characters/alessandra/front.svg",
  23595. extra: 960 / 912,
  23596. bottom: 0.06
  23597. }
  23598. },
  23599. },
  23600. [
  23601. {
  23602. name: "Macro",
  23603. height: math.unit(1050, "feet")
  23604. },
  23605. {
  23606. name: "Macro+",
  23607. height: math.unit(900, "meters"),
  23608. default: true
  23609. },
  23610. ]
  23611. ))
  23612. characterMakers.push(() => makeCharacter(
  23613. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23614. {
  23615. front: {
  23616. height: math.unit(5, "feet"),
  23617. weight: math.unit(187, "lb"),
  23618. name: "Front",
  23619. image: {
  23620. source: "./media/characters/person/front.svg",
  23621. extra: 3087 / 2945,
  23622. bottom: 91 / 3181
  23623. }
  23624. },
  23625. },
  23626. [
  23627. {
  23628. name: "Micro",
  23629. height: math.unit(3, "inches")
  23630. },
  23631. {
  23632. name: "Normal",
  23633. height: math.unit(5, "feet"),
  23634. default: true
  23635. },
  23636. {
  23637. name: "Macro",
  23638. height: math.unit(90, "feet")
  23639. },
  23640. {
  23641. name: "Max Size",
  23642. height: math.unit(280, "feet")
  23643. },
  23644. ]
  23645. ))
  23646. characterMakers.push(() => makeCharacter(
  23647. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23648. {
  23649. front: {
  23650. height: math.unit(4.5, "meters"),
  23651. weight: math.unit(3200, "lb"),
  23652. name: "Front",
  23653. image: {
  23654. source: "./media/characters/ty/front.svg",
  23655. extra: 1038 / 960,
  23656. bottom: 31.156 / 1068
  23657. }
  23658. },
  23659. back: {
  23660. height: math.unit(4.5, "meters"),
  23661. weight: math.unit(3200, "lb"),
  23662. name: "Back",
  23663. image: {
  23664. source: "./media/characters/ty/back.svg",
  23665. extra: 1044 / 966,
  23666. bottom: 7.48 / 1049
  23667. }
  23668. },
  23669. },
  23670. [
  23671. {
  23672. name: "Normal",
  23673. height: math.unit(4.5, "meters"),
  23674. default: true
  23675. },
  23676. ]
  23677. ))
  23678. characterMakers.push(() => makeCharacter(
  23679. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23680. {
  23681. front: {
  23682. height: math.unit(5 + 4 / 12, "feet"),
  23683. weight: math.unit(115, "lb"),
  23684. name: "Front",
  23685. image: {
  23686. source: "./media/characters/rocky/front.svg",
  23687. extra: 1012 / 975,
  23688. bottom: 54 / 1066
  23689. }
  23690. },
  23691. },
  23692. [
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(5 + 4 / 12, "feet"),
  23696. default: true
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23702. {
  23703. upright: {
  23704. height: math.unit(6, "meters"),
  23705. weight: math.unit(4000, "kg"),
  23706. name: "Upright",
  23707. image: {
  23708. source: "./media/characters/ruin/upright.svg",
  23709. extra: 668 / 661,
  23710. bottom: 42 / 799.8396
  23711. }
  23712. },
  23713. },
  23714. [
  23715. {
  23716. name: "Normal",
  23717. height: math.unit(6, "meters"),
  23718. default: true
  23719. },
  23720. ]
  23721. ))
  23722. characterMakers.push(() => makeCharacter(
  23723. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23724. {
  23725. front: {
  23726. height: math.unit(5, "feet"),
  23727. weight: math.unit(106, "lb"),
  23728. name: "Front",
  23729. image: {
  23730. source: "./media/characters/robin/front.svg",
  23731. extra: 862 / 799,
  23732. bottom: 42.4 / 914.8856
  23733. }
  23734. },
  23735. },
  23736. [
  23737. {
  23738. name: "Normal",
  23739. height: math.unit(5, "feet"),
  23740. default: true
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23746. {
  23747. side: {
  23748. height: math.unit(3, "feet"),
  23749. weight: math.unit(225, "lb"),
  23750. name: "Side",
  23751. image: {
  23752. source: "./media/characters/saian/side.svg",
  23753. extra: 566 / 356,
  23754. bottom: 79.7 / 643
  23755. }
  23756. },
  23757. maw: {
  23758. height: math.unit(2.85, "feet"),
  23759. name: "Maw",
  23760. image: {
  23761. source: "./media/characters/saian/maw.svg"
  23762. }
  23763. },
  23764. },
  23765. [
  23766. {
  23767. name: "Normal",
  23768. height: math.unit(3, "feet"),
  23769. default: true
  23770. },
  23771. ]
  23772. ))
  23773. characterMakers.push(() => makeCharacter(
  23774. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23775. {
  23776. side: {
  23777. height: math.unit(8, "feet"),
  23778. weight: math.unit(300, "lb"),
  23779. name: "Side",
  23780. image: {
  23781. source: "./media/characters/equus-silvermane/side.svg",
  23782. extra: 2176 / 2050,
  23783. bottom: 65.7 / 2245
  23784. }
  23785. },
  23786. front: {
  23787. height: math.unit(8, "feet"),
  23788. weight: math.unit(300, "lb"),
  23789. name: "Front",
  23790. image: {
  23791. source: "./media/characters/equus-silvermane/front.svg",
  23792. extra: 4633 / 4400,
  23793. bottom: 71.3 / 4706.915
  23794. }
  23795. },
  23796. sideStepping: {
  23797. height: math.unit(8, "feet"),
  23798. weight: math.unit(300, "lb"),
  23799. name: "Side (Stepping)",
  23800. image: {
  23801. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23802. extra: 1968 / 1860,
  23803. bottom: 16.4 / 1989
  23804. }
  23805. },
  23806. },
  23807. [
  23808. {
  23809. name: "Normal",
  23810. height: math.unit(8, "feet")
  23811. },
  23812. {
  23813. name: "Minimacro",
  23814. height: math.unit(75, "feet"),
  23815. default: true
  23816. },
  23817. {
  23818. name: "Macro",
  23819. height: math.unit(150, "feet")
  23820. },
  23821. {
  23822. name: "Macro+",
  23823. height: math.unit(1000, "feet")
  23824. },
  23825. {
  23826. name: "Megamacro",
  23827. height: math.unit(1, "mile")
  23828. },
  23829. ]
  23830. ))
  23831. characterMakers.push(() => makeCharacter(
  23832. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23833. {
  23834. side: {
  23835. height: math.unit(20, "feet"),
  23836. weight: math.unit(30000, "kg"),
  23837. name: "Side",
  23838. image: {
  23839. source: "./media/characters/windar/side.svg",
  23840. extra: 1491 / 1248,
  23841. bottom: 82.56 / 1568
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(20, "feet"),
  23849. default: true
  23850. },
  23851. ]
  23852. ))
  23853. characterMakers.push(() => makeCharacter(
  23854. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23855. {
  23856. side: {
  23857. height: math.unit(15.66, "feet"),
  23858. weight: math.unit(150, "lb"),
  23859. name: "Side",
  23860. image: {
  23861. source: "./media/characters/melody/side.svg",
  23862. extra: 1097 / 944,
  23863. bottom: 11.8 / 1109
  23864. }
  23865. },
  23866. sideOutfit: {
  23867. height: math.unit(15.66, "feet"),
  23868. weight: math.unit(150, "lb"),
  23869. name: "Side (Outfit)",
  23870. image: {
  23871. source: "./media/characters/melody/side-outfit.svg",
  23872. extra: 1097 / 944,
  23873. bottom: 11.8 / 1109
  23874. }
  23875. },
  23876. },
  23877. [
  23878. {
  23879. name: "Normal",
  23880. height: math.unit(15.66, "feet"),
  23881. default: true
  23882. },
  23883. ]
  23884. ))
  23885. characterMakers.push(() => makeCharacter(
  23886. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23887. {
  23888. armoredFront: {
  23889. height: math.unit(8, "feet"),
  23890. weight: math.unit(325, "lb"),
  23891. name: "Front",
  23892. image: {
  23893. source: "./media/characters/windera/armored-front.svg",
  23894. extra: 1830/1598,
  23895. bottom: 151/1981
  23896. },
  23897. form: "armored",
  23898. default: true
  23899. },
  23900. macroFront: {
  23901. height: math.unit(70, "feet"),
  23902. weight: math.unit(315453, "lb"),
  23903. name: "Front",
  23904. image: {
  23905. source: "./media/characters/windera/macro-front.svg",
  23906. extra: 963/883,
  23907. bottom: 23/986
  23908. },
  23909. form: "macro",
  23910. default: true
  23911. },
  23912. },
  23913. [
  23914. {
  23915. name: "Normal",
  23916. height: math.unit(8, "feet"),
  23917. default: true,
  23918. form: "armored"
  23919. },
  23920. {
  23921. name: "Normal",
  23922. height: math.unit(70, "feet"),
  23923. default: true,
  23924. form: "macro"
  23925. },
  23926. ],
  23927. {
  23928. "armored": {
  23929. name: "Armored",
  23930. default: true
  23931. },
  23932. "macro": {
  23933. name: "Macro",
  23934. },
  23935. }
  23936. ))
  23937. characterMakers.push(() => makeCharacter(
  23938. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23939. {
  23940. front: {
  23941. height: math.unit(28.75, "feet"),
  23942. weight: math.unit(2000, "kg"),
  23943. name: "Front",
  23944. image: {
  23945. source: "./media/characters/sonear/front.svg",
  23946. extra: 1041.1 / 964.9,
  23947. bottom: 53.7 / 1096.6
  23948. }
  23949. },
  23950. },
  23951. [
  23952. {
  23953. name: "Normal",
  23954. height: math.unit(28.75, "feet"),
  23955. default: true
  23956. },
  23957. ]
  23958. ))
  23959. characterMakers.push(() => makeCharacter(
  23960. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23961. {
  23962. side: {
  23963. height: math.unit(25.5, "feet"),
  23964. weight: math.unit(23000, "kg"),
  23965. name: "Side",
  23966. image: {
  23967. source: "./media/characters/kanara/side.svg"
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Normal",
  23974. height: math.unit(25.5, "feet"),
  23975. default: true
  23976. },
  23977. ]
  23978. ))
  23979. characterMakers.push(() => makeCharacter(
  23980. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23981. {
  23982. side: {
  23983. height: math.unit(10, "feet"),
  23984. weight: math.unit(1000, "kg"),
  23985. name: "Side",
  23986. image: {
  23987. source: "./media/characters/ereus/side.svg",
  23988. extra: 1157 / 959,
  23989. bottom: 153 / 1312.5
  23990. }
  23991. },
  23992. },
  23993. [
  23994. {
  23995. name: "Normal",
  23996. height: math.unit(10, "feet"),
  23997. default: true
  23998. },
  23999. ]
  24000. ))
  24001. characterMakers.push(() => makeCharacter(
  24002. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24003. {
  24004. side: {
  24005. height: math.unit(4.5, "feet"),
  24006. weight: math.unit(500, "lb"),
  24007. name: "Side",
  24008. image: {
  24009. source: "./media/characters/e-ter/side.svg",
  24010. extra: 1550 / 1248,
  24011. bottom: 146 / 1694
  24012. }
  24013. },
  24014. },
  24015. [
  24016. {
  24017. name: "Normal",
  24018. height: math.unit(4.5, "feet"),
  24019. default: true
  24020. },
  24021. ]
  24022. ))
  24023. characterMakers.push(() => makeCharacter(
  24024. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24025. {
  24026. side: {
  24027. height: math.unit(9.7, "feet"),
  24028. weight: math.unit(4000, "kg"),
  24029. name: "Side",
  24030. image: {
  24031. source: "./media/characters/yamie/side.svg"
  24032. }
  24033. },
  24034. },
  24035. [
  24036. {
  24037. name: "Normal",
  24038. height: math.unit(9.7, "feet"),
  24039. default: true
  24040. },
  24041. ]
  24042. ))
  24043. characterMakers.push(() => makeCharacter(
  24044. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24045. {
  24046. front: {
  24047. height: math.unit(50, "feet"),
  24048. weight: math.unit(50000, "kg"),
  24049. name: "Front",
  24050. image: {
  24051. source: "./media/characters/anders/front.svg",
  24052. extra: 570 / 539,
  24053. bottom: 14.7 / 586.7
  24054. }
  24055. },
  24056. },
  24057. [
  24058. {
  24059. name: "Large",
  24060. height: math.unit(50, "feet")
  24061. },
  24062. {
  24063. name: "Macro",
  24064. height: math.unit(2000, "feet"),
  24065. default: true
  24066. },
  24067. {
  24068. name: "Megamacro",
  24069. height: math.unit(12, "miles")
  24070. },
  24071. ]
  24072. ))
  24073. characterMakers.push(() => makeCharacter(
  24074. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24075. {
  24076. front: {
  24077. height: math.unit(7 + 2 / 12, "feet"),
  24078. weight: math.unit(300, "lb"),
  24079. name: "Front",
  24080. image: {
  24081. source: "./media/characters/reban/front.svg",
  24082. extra: 1287/1212,
  24083. bottom: 148/1435
  24084. }
  24085. },
  24086. head: {
  24087. height: math.unit(1.95, "feet"),
  24088. name: "Head",
  24089. image: {
  24090. source: "./media/characters/reban/head.svg"
  24091. }
  24092. },
  24093. maw: {
  24094. height: math.unit(0.95, "feet"),
  24095. name: "Maw",
  24096. image: {
  24097. source: "./media/characters/reban/maw.svg"
  24098. }
  24099. },
  24100. foot: {
  24101. height: math.unit(1.65, "feet"),
  24102. name: "Foot",
  24103. image: {
  24104. source: "./media/characters/reban/foot.svg"
  24105. }
  24106. },
  24107. dick: {
  24108. height: math.unit(7 / 5, "feet"),
  24109. name: "Dick",
  24110. image: {
  24111. source: "./media/characters/reban/dick.svg"
  24112. }
  24113. },
  24114. },
  24115. [
  24116. {
  24117. name: "Natural Height",
  24118. height: math.unit(7 + 2 / 12, "feet")
  24119. },
  24120. {
  24121. name: "Macro",
  24122. height: math.unit(500, "feet"),
  24123. default: true
  24124. },
  24125. {
  24126. name: "Canon Height",
  24127. height: math.unit(50, "AU")
  24128. },
  24129. ]
  24130. ))
  24131. characterMakers.push(() => makeCharacter(
  24132. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24133. {
  24134. front: {
  24135. height: math.unit(6, "feet"),
  24136. weight: math.unit(150, "lb"),
  24137. name: "Front",
  24138. image: {
  24139. source: "./media/characters/terrance-keayes/front.svg",
  24140. extra: 1.005,
  24141. bottom: 151 / 1615
  24142. }
  24143. },
  24144. side: {
  24145. height: math.unit(6, "feet"),
  24146. weight: math.unit(150, "lb"),
  24147. name: "Side",
  24148. image: {
  24149. source: "./media/characters/terrance-keayes/side.svg",
  24150. extra: 1.005,
  24151. bottom: 129.4 / 1544
  24152. }
  24153. },
  24154. back: {
  24155. height: math.unit(6, "feet"),
  24156. weight: math.unit(150, "lb"),
  24157. name: "Back",
  24158. image: {
  24159. source: "./media/characters/terrance-keayes/back.svg",
  24160. extra: 1.005,
  24161. bottom: 58.4 / 1557.3
  24162. }
  24163. },
  24164. dick: {
  24165. height: math.unit(6 * 0.208, "feet"),
  24166. name: "Dick",
  24167. image: {
  24168. source: "./media/characters/terrance-keayes/dick.svg"
  24169. }
  24170. },
  24171. },
  24172. [
  24173. {
  24174. name: "Canon Height",
  24175. height: math.unit(35, "miles"),
  24176. default: true
  24177. },
  24178. ]
  24179. ))
  24180. characterMakers.push(() => makeCharacter(
  24181. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24182. {
  24183. front: {
  24184. height: math.unit(6, "feet"),
  24185. weight: math.unit(150, "lb"),
  24186. name: "Front",
  24187. image: {
  24188. source: "./media/characters/ofelia/front.svg",
  24189. extra: 1130/1117,
  24190. bottom: 91/1221
  24191. }
  24192. },
  24193. back: {
  24194. height: math.unit(6, "feet"),
  24195. weight: math.unit(150, "lb"),
  24196. name: "Back",
  24197. image: {
  24198. source: "./media/characters/ofelia/back.svg",
  24199. extra: 1172/1159,
  24200. bottom: 28/1200
  24201. }
  24202. },
  24203. maw: {
  24204. height: math.unit(1, "feet"),
  24205. name: "Maw",
  24206. image: {
  24207. source: "./media/characters/ofelia/maw.svg"
  24208. }
  24209. },
  24210. foot: {
  24211. height: math.unit(1.949, "feet"),
  24212. name: "Foot",
  24213. image: {
  24214. source: "./media/characters/ofelia/foot.svg"
  24215. }
  24216. },
  24217. },
  24218. [
  24219. {
  24220. name: "Canon Height",
  24221. height: math.unit(2000, "miles"),
  24222. default: true
  24223. },
  24224. ]
  24225. ))
  24226. characterMakers.push(() => makeCharacter(
  24227. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24228. {
  24229. front: {
  24230. height: math.unit(6, "feet"),
  24231. weight: math.unit(150, "lb"),
  24232. name: "Front",
  24233. image: {
  24234. source: "./media/characters/samuel/front.svg",
  24235. extra: 265 / 258,
  24236. bottom: 2 / 266.1566
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Macro",
  24243. height: math.unit(100, "feet"),
  24244. default: true
  24245. },
  24246. {
  24247. name: "Full Size",
  24248. height: math.unit(1000, "miles")
  24249. },
  24250. ]
  24251. ))
  24252. characterMakers.push(() => makeCharacter(
  24253. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24254. {
  24255. front: {
  24256. height: math.unit(6, "feet"),
  24257. weight: math.unit(300, "lb"),
  24258. name: "Front",
  24259. image: {
  24260. source: "./media/characters/beishir-kiel/front.svg",
  24261. extra: 569 / 547,
  24262. bottom: 41.9 / 609
  24263. }
  24264. },
  24265. maw: {
  24266. height: math.unit(6 * 0.202, "feet"),
  24267. name: "Maw",
  24268. image: {
  24269. source: "./media/characters/beishir-kiel/maw.svg"
  24270. }
  24271. },
  24272. },
  24273. [
  24274. {
  24275. name: "Macro",
  24276. height: math.unit(300, "feet"),
  24277. default: true
  24278. },
  24279. ]
  24280. ))
  24281. characterMakers.push(() => makeCharacter(
  24282. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24283. {
  24284. front: {
  24285. height: math.unit(5 + 7/12, "feet"),
  24286. weight: math.unit(120, "lb"),
  24287. name: "Front",
  24288. image: {
  24289. source: "./media/characters/logan-grey/front.svg",
  24290. extra: 1836/1738,
  24291. bottom: 108/1944
  24292. }
  24293. },
  24294. back: {
  24295. height: math.unit(5 + 7/12, "feet"),
  24296. weight: math.unit(120, "lb"),
  24297. name: "Back",
  24298. image: {
  24299. source: "./media/characters/logan-grey/back.svg",
  24300. extra: 1880/1794,
  24301. bottom: 24/1904
  24302. }
  24303. },
  24304. frontSfw: {
  24305. height: math.unit(5 + 7/12, "feet"),
  24306. weight: math.unit(120, "lb"),
  24307. name: "Front (SFW)",
  24308. image: {
  24309. source: "./media/characters/logan-grey/front-sfw.svg",
  24310. extra: 1836/1738,
  24311. bottom: 108/1944
  24312. }
  24313. },
  24314. backSfw: {
  24315. height: math.unit(5 + 7/12, "feet"),
  24316. weight: math.unit(120, "lb"),
  24317. name: "Back (SFW)",
  24318. image: {
  24319. source: "./media/characters/logan-grey/back-sfw.svg",
  24320. extra: 1880/1794,
  24321. bottom: 24/1904
  24322. }
  24323. },
  24324. hands: {
  24325. height: math.unit(0.84, "feet"),
  24326. name: "Hands",
  24327. image: {
  24328. source: "./media/characters/logan-grey/hands.svg"
  24329. }
  24330. },
  24331. paws: {
  24332. height: math.unit(0.72, "feet"),
  24333. name: "Paws",
  24334. image: {
  24335. source: "./media/characters/logan-grey/paws.svg"
  24336. }
  24337. },
  24338. cock: {
  24339. height: math.unit(1.45, "feet"),
  24340. name: "Cock",
  24341. image: {
  24342. source: "./media/characters/logan-grey/cock.svg"
  24343. }
  24344. },
  24345. cockAlt: {
  24346. height: math.unit(1.437, "feet"),
  24347. name: "Cock (alt)",
  24348. image: {
  24349. source: "./media/characters/logan-grey/cock-alt.svg"
  24350. }
  24351. },
  24352. },
  24353. [
  24354. {
  24355. name: "Normal",
  24356. height: math.unit(5 + 8 / 12, "feet")
  24357. },
  24358. {
  24359. name: "The 500 Foot Femboy",
  24360. height: math.unit(500, "feet"),
  24361. default: true
  24362. },
  24363. {
  24364. name: "Megmacro",
  24365. height: math.unit(20, "miles")
  24366. },
  24367. ]
  24368. ))
  24369. characterMakers.push(() => makeCharacter(
  24370. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24371. {
  24372. front: {
  24373. height: math.unit(8 + 2 / 12, "feet"),
  24374. weight: math.unit(275, "lb"),
  24375. name: "Front",
  24376. image: {
  24377. source: "./media/characters/draganta/front.svg",
  24378. extra: 1177 / 1135,
  24379. bottom: 33.46 / 1212.1
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(8 + 6 / 12, "feet"),
  24387. default: true
  24388. },
  24389. {
  24390. name: "Macro",
  24391. height: math.unit(150, "feet")
  24392. },
  24393. {
  24394. name: "Megamacro",
  24395. height: math.unit(1000, "miles")
  24396. },
  24397. ]
  24398. ))
  24399. characterMakers.push(() => makeCharacter(
  24400. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24401. {
  24402. front: {
  24403. height: math.unit(1.72, "m"),
  24404. weight: math.unit(80, "lb"),
  24405. name: "Front",
  24406. image: {
  24407. source: "./media/characters/voski/front.svg",
  24408. extra: 2076.22 / 2022.4,
  24409. bottom: 102.7 / 2177.3866
  24410. }
  24411. },
  24412. frontFlaccid: {
  24413. height: math.unit(1.72, "m"),
  24414. weight: math.unit(80, "lb"),
  24415. name: "Front (Flaccid)",
  24416. image: {
  24417. source: "./media/characters/voski/front-flaccid.svg",
  24418. extra: 2076.22 / 2022.4,
  24419. bottom: 102.7 / 2177.3866
  24420. }
  24421. },
  24422. frontErect: {
  24423. height: math.unit(1.72, "m"),
  24424. weight: math.unit(80, "lb"),
  24425. name: "Front (Erect)",
  24426. image: {
  24427. source: "./media/characters/voski/front-erect.svg",
  24428. extra: 2076.22 / 2022.4,
  24429. bottom: 102.7 / 2177.3866
  24430. }
  24431. },
  24432. back: {
  24433. height: math.unit(1.72, "m"),
  24434. weight: math.unit(80, "lb"),
  24435. name: "Back",
  24436. image: {
  24437. source: "./media/characters/voski/back.svg",
  24438. extra: 2104 / 2051,
  24439. bottom: 10.45 / 2113.63
  24440. }
  24441. },
  24442. },
  24443. [
  24444. {
  24445. name: "Normal",
  24446. height: math.unit(1.72, "m")
  24447. },
  24448. {
  24449. name: "Macro",
  24450. height: math.unit(55, "m"),
  24451. default: true
  24452. },
  24453. {
  24454. name: "Macro+",
  24455. height: math.unit(300, "m")
  24456. },
  24457. {
  24458. name: "Macro++",
  24459. height: math.unit(700, "m")
  24460. },
  24461. {
  24462. name: "Macro+++",
  24463. height: math.unit(4500, "m")
  24464. },
  24465. {
  24466. name: "Macro++++",
  24467. height: math.unit(45, "km")
  24468. },
  24469. {
  24470. name: "Macro+++++",
  24471. height: math.unit(1220, "km")
  24472. },
  24473. ]
  24474. ))
  24475. characterMakers.push(() => makeCharacter(
  24476. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24477. {
  24478. front: {
  24479. height: math.unit(2.3, "m"),
  24480. weight: math.unit(304, "kg"),
  24481. name: "Front",
  24482. image: {
  24483. source: "./media/characters/icowom-lee/front.svg",
  24484. extra: 985 / 955,
  24485. bottom: 25.4 / 1012
  24486. }
  24487. },
  24488. fronttentacles: {
  24489. height: math.unit(2.3, "m"),
  24490. weight: math.unit(304, "kg"),
  24491. name: "Front-tentacles",
  24492. image: {
  24493. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24494. extra: 985 / 955,
  24495. bottom: 25.4 / 1012
  24496. }
  24497. },
  24498. back: {
  24499. height: math.unit(2.3, "m"),
  24500. weight: math.unit(304, "kg"),
  24501. name: "Back",
  24502. image: {
  24503. source: "./media/characters/icowom-lee/back.svg",
  24504. extra: 975 / 954,
  24505. bottom: 9.5 / 985
  24506. }
  24507. },
  24508. backtentacles: {
  24509. height: math.unit(2.3, "m"),
  24510. weight: math.unit(304, "kg"),
  24511. name: "Back-tentacles",
  24512. image: {
  24513. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24514. extra: 975 / 954,
  24515. bottom: 9.5 / 985
  24516. }
  24517. },
  24518. frontDressed: {
  24519. height: math.unit(2.3, "m"),
  24520. weight: math.unit(304, "kg"),
  24521. name: "Front (Dressed)",
  24522. image: {
  24523. source: "./media/characters/icowom-lee/front-dressed.svg",
  24524. extra: 3076 / 2933,
  24525. bottom: 51.4 / 3125.1889
  24526. }
  24527. },
  24528. rump: {
  24529. height: math.unit(0.776, "meters"),
  24530. name: "Rump",
  24531. image: {
  24532. source: "./media/characters/icowom-lee/rump.svg"
  24533. }
  24534. },
  24535. genitals: {
  24536. height: math.unit(0.78, "meters"),
  24537. name: "Genitals",
  24538. image: {
  24539. source: "./media/characters/icowom-lee/genitals.svg"
  24540. }
  24541. },
  24542. },
  24543. [
  24544. {
  24545. name: "Normal",
  24546. height: math.unit(2.3, "meters"),
  24547. default: true
  24548. },
  24549. {
  24550. name: "Macro",
  24551. height: math.unit(94, "meters"),
  24552. default: true
  24553. },
  24554. ]
  24555. ))
  24556. characterMakers.push(() => makeCharacter(
  24557. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24558. {
  24559. front: {
  24560. height: math.unit(22, "meters"),
  24561. weight: math.unit(21000, "kg"),
  24562. name: "Front",
  24563. image: {
  24564. source: "./media/characters/shock-diamond/front.svg",
  24565. extra: 2204 / 2053,
  24566. bottom: 65 / 2239.47
  24567. }
  24568. },
  24569. frontNude: {
  24570. height: math.unit(22, "meters"),
  24571. weight: math.unit(21000, "kg"),
  24572. name: "Front (Nude)",
  24573. image: {
  24574. source: "./media/characters/shock-diamond/front-nude.svg",
  24575. extra: 2514 / 2285,
  24576. bottom: 13 / 2527.56
  24577. }
  24578. },
  24579. },
  24580. [
  24581. {
  24582. name: "Normal",
  24583. height: math.unit(3, "meters")
  24584. },
  24585. {
  24586. name: "Macro",
  24587. height: math.unit(22, "meters"),
  24588. default: true
  24589. },
  24590. ]
  24591. ))
  24592. characterMakers.push(() => makeCharacter(
  24593. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24594. {
  24595. frontNsfw: {
  24596. height: math.unit(5 + 4/12, "feet"),
  24597. weight: math.unit(195, "lb"),
  24598. name: "Front",
  24599. image: {
  24600. source: "./media/characters/rory/front.svg",
  24601. extra: 1220/1100,
  24602. bottom: 103/1323
  24603. }
  24604. },
  24605. back: {
  24606. height: math.unit(5 + 4/12, "feet"),
  24607. weight: math.unit(195, "lb"),
  24608. name: "Back",
  24609. image: {
  24610. source: "./media/characters/rory/back.svg",
  24611. extra: 1166/1086,
  24612. bottom: 35/1201
  24613. }
  24614. },
  24615. },
  24616. [
  24617. {
  24618. name: "Micro",
  24619. height: math.unit(3, "inches")
  24620. },
  24621. {
  24622. name: "Normal",
  24623. height: math.unit(5 + 4/12, "feet"),
  24624. default: true
  24625. },
  24626. {
  24627. name: "Macro",
  24628. height: math.unit(90, "feet")
  24629. },
  24630. {
  24631. name: "Supercharged",
  24632. height: math.unit(270, "feet")
  24633. },
  24634. ]
  24635. ))
  24636. characterMakers.push(() => makeCharacter(
  24637. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24638. {
  24639. front: {
  24640. height: math.unit(5 + 9 / 12, "feet"),
  24641. weight: math.unit(190, "lb"),
  24642. name: "Front",
  24643. image: {
  24644. source: "./media/characters/sprisk/front.svg",
  24645. extra: 1225 / 1180,
  24646. bottom: 42.7 / 1266.4
  24647. }
  24648. },
  24649. frontNsfw: {
  24650. height: math.unit(5 + 9 / 12, "feet"),
  24651. weight: math.unit(190, "lb"),
  24652. name: "Front (NSFW)",
  24653. image: {
  24654. source: "./media/characters/sprisk/front-nsfw.svg",
  24655. extra: 1225 / 1180,
  24656. bottom: 42.7 / 1266.4
  24657. }
  24658. },
  24659. back: {
  24660. height: math.unit(5 + 9 / 12, "feet"),
  24661. weight: math.unit(190, "lb"),
  24662. name: "Back",
  24663. image: {
  24664. source: "./media/characters/sprisk/back.svg",
  24665. extra: 1247 / 1200,
  24666. bottom: 5.6 / 1253.04
  24667. }
  24668. },
  24669. },
  24670. [
  24671. {
  24672. name: "Tiny",
  24673. height: math.unit(2, "inches")
  24674. },
  24675. {
  24676. name: "Normal",
  24677. height: math.unit(5 + 9 / 12, "feet"),
  24678. default: true
  24679. },
  24680. {
  24681. name: "Mini Macro",
  24682. height: math.unit(18, "feet")
  24683. },
  24684. {
  24685. name: "Macro",
  24686. height: math.unit(100, "feet")
  24687. },
  24688. {
  24689. name: "MACRO",
  24690. height: math.unit(50, "miles")
  24691. },
  24692. {
  24693. name: "M A C R O",
  24694. height: math.unit(300, "miles")
  24695. },
  24696. ]
  24697. ))
  24698. characterMakers.push(() => makeCharacter(
  24699. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24700. {
  24701. side: {
  24702. height: math.unit(15.6, "meters"),
  24703. weight: math.unit(700000, "kg"),
  24704. name: "Side",
  24705. image: {
  24706. source: "./media/characters/bunsen/side.svg",
  24707. extra: 1644 / 358
  24708. }
  24709. },
  24710. foot: {
  24711. height: math.unit(1.611 * 1644 / 358, "meter"),
  24712. name: "Foot",
  24713. image: {
  24714. source: "./media/characters/bunsen/foot.svg"
  24715. }
  24716. },
  24717. },
  24718. [
  24719. {
  24720. name: "Small",
  24721. height: math.unit(10, "feet")
  24722. },
  24723. {
  24724. name: "Normal",
  24725. height: math.unit(15.6, "meters"),
  24726. default: true
  24727. },
  24728. ]
  24729. ))
  24730. characterMakers.push(() => makeCharacter(
  24731. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24732. {
  24733. front: {
  24734. height: math.unit(4 + 11 / 12, "feet"),
  24735. weight: math.unit(140, "lb"),
  24736. name: "Front",
  24737. image: {
  24738. source: "./media/characters/sesh/front.svg",
  24739. extra: 3420 / 3231,
  24740. bottom: 72 / 3949.5
  24741. }
  24742. },
  24743. },
  24744. [
  24745. {
  24746. name: "Normal",
  24747. height: math.unit(4 + 11 / 12, "feet")
  24748. },
  24749. {
  24750. name: "Grown",
  24751. height: math.unit(15, "feet"),
  24752. default: true
  24753. },
  24754. {
  24755. name: "Macro",
  24756. height: math.unit(1500, "feet")
  24757. },
  24758. {
  24759. name: "Megamacro",
  24760. height: math.unit(30, "miles")
  24761. },
  24762. {
  24763. name: "Continental",
  24764. height: math.unit(3000, "miles")
  24765. },
  24766. {
  24767. name: "Gravity Mass",
  24768. height: math.unit(300000, "miles")
  24769. },
  24770. {
  24771. name: "Planet Buster",
  24772. height: math.unit(30000000, "miles")
  24773. },
  24774. {
  24775. name: "Big",
  24776. height: math.unit(3000000000, "miles")
  24777. },
  24778. ]
  24779. ))
  24780. characterMakers.push(() => makeCharacter(
  24781. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24782. {
  24783. front: {
  24784. height: math.unit(9, "feet"),
  24785. weight: math.unit(350, "lb"),
  24786. name: "Front",
  24787. image: {
  24788. source: "./media/characters/pepper/front.svg",
  24789. extra: 1448 / 1312,
  24790. bottom: 9.4 / 1457.88
  24791. }
  24792. },
  24793. back: {
  24794. height: math.unit(9, "feet"),
  24795. weight: math.unit(350, "lb"),
  24796. name: "Back",
  24797. image: {
  24798. source: "./media/characters/pepper/back.svg",
  24799. extra: 1423 / 1300,
  24800. bottom: 4.6 / 1429
  24801. }
  24802. },
  24803. maw: {
  24804. height: math.unit(0.932, "feet"),
  24805. name: "Maw",
  24806. image: {
  24807. source: "./media/characters/pepper/maw.svg"
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(9, "feet"),
  24815. default: true
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24821. {
  24822. front: {
  24823. height: math.unit(6, "feet"),
  24824. weight: math.unit(150, "lb"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/maelstrom/front.svg",
  24828. extra: 2100 / 1883,
  24829. bottom: 94 / 2196.7
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Less Kaiju",
  24836. height: math.unit(200, "feet")
  24837. },
  24838. {
  24839. name: "Kaiju",
  24840. height: math.unit(400, "feet"),
  24841. default: true
  24842. },
  24843. {
  24844. name: "Kaiju-er",
  24845. height: math.unit(600, "feet")
  24846. },
  24847. ]
  24848. ))
  24849. characterMakers.push(() => makeCharacter(
  24850. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24851. {
  24852. front: {
  24853. height: math.unit(6 + 5 / 12, "feet"),
  24854. weight: math.unit(180, "lb"),
  24855. name: "Front",
  24856. image: {
  24857. source: "./media/characters/lexir/front.svg",
  24858. extra: 180 / 172,
  24859. bottom: 12 / 192
  24860. }
  24861. },
  24862. back: {
  24863. height: math.unit(6 + 5 / 12, "feet"),
  24864. weight: math.unit(180, "lb"),
  24865. name: "Back",
  24866. image: {
  24867. source: "./media/characters/lexir/back.svg",
  24868. extra: 1273/1201,
  24869. bottom: 39/1312
  24870. }
  24871. },
  24872. },
  24873. [
  24874. {
  24875. name: "Very Smal",
  24876. height: math.unit(1, "nm")
  24877. },
  24878. {
  24879. name: "Normal",
  24880. height: math.unit(6 + 5 / 12, "feet"),
  24881. default: true
  24882. },
  24883. {
  24884. name: "Macro",
  24885. height: math.unit(1, "mile")
  24886. },
  24887. {
  24888. name: "Megamacro",
  24889. height: math.unit(50, "miles")
  24890. },
  24891. ]
  24892. ))
  24893. characterMakers.push(() => makeCharacter(
  24894. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24895. {
  24896. front: {
  24897. height: math.unit(1.5, "meters"),
  24898. weight: math.unit(100, "lb"),
  24899. name: "Front",
  24900. image: {
  24901. source: "./media/characters/maksio/front.svg",
  24902. extra: 1549 / 1531,
  24903. bottom: 123.7 / 1674.5429
  24904. }
  24905. },
  24906. back: {
  24907. height: math.unit(1.5, "meters"),
  24908. weight: math.unit(100, "lb"),
  24909. name: "Back",
  24910. image: {
  24911. source: "./media/characters/maksio/back.svg",
  24912. extra: 1541 / 1509,
  24913. bottom: 97 / 1639
  24914. }
  24915. },
  24916. hand: {
  24917. height: math.unit(0.621, "feet"),
  24918. name: "Hand",
  24919. image: {
  24920. source: "./media/characters/maksio/hand.svg"
  24921. }
  24922. },
  24923. foot: {
  24924. height: math.unit(1.611, "feet"),
  24925. name: "Foot",
  24926. image: {
  24927. source: "./media/characters/maksio/foot.svg"
  24928. }
  24929. },
  24930. },
  24931. [
  24932. {
  24933. name: "Shrunken",
  24934. height: math.unit(10, "cm")
  24935. },
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(150, "cm"),
  24939. default: true
  24940. },
  24941. ]
  24942. ))
  24943. characterMakers.push(() => makeCharacter(
  24944. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24945. {
  24946. front: {
  24947. height: math.unit(100, "feet"),
  24948. name: "Front",
  24949. image: {
  24950. source: "./media/characters/erza-bear/front.svg",
  24951. extra: 2449 / 2390,
  24952. bottom: 46 / 2494
  24953. }
  24954. },
  24955. back: {
  24956. height: math.unit(100, "feet"),
  24957. name: "Back",
  24958. image: {
  24959. source: "./media/characters/erza-bear/back.svg",
  24960. extra: 2489 / 2430,
  24961. bottom: 85.4 / 2480
  24962. }
  24963. },
  24964. tail: {
  24965. height: math.unit(42, "feet"),
  24966. name: "Tail",
  24967. image: {
  24968. source: "./media/characters/erza-bear/tail.svg"
  24969. }
  24970. },
  24971. tongue: {
  24972. height: math.unit(8, "feet"),
  24973. name: "Tongue",
  24974. image: {
  24975. source: "./media/characters/erza-bear/tongue.svg"
  24976. }
  24977. },
  24978. dick: {
  24979. height: math.unit(10.5, "feet"),
  24980. name: "Dick",
  24981. image: {
  24982. source: "./media/characters/erza-bear/dick.svg"
  24983. }
  24984. },
  24985. dickVertical: {
  24986. height: math.unit(16.9, "feet"),
  24987. name: "Dick (Vertical)",
  24988. image: {
  24989. source: "./media/characters/erza-bear/dick-vertical.svg"
  24990. }
  24991. },
  24992. },
  24993. [
  24994. {
  24995. name: "Macro",
  24996. height: math.unit(100, "feet"),
  24997. default: true
  24998. },
  24999. ]
  25000. ))
  25001. characterMakers.push(() => makeCharacter(
  25002. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25003. {
  25004. front: {
  25005. height: math.unit(172, "cm"),
  25006. weight: math.unit(73, "kg"),
  25007. name: "Front",
  25008. image: {
  25009. source: "./media/characters/violet-flor/front.svg",
  25010. extra: 1530 / 1442,
  25011. bottom: 61.9 / 1588.8
  25012. }
  25013. },
  25014. back: {
  25015. height: math.unit(180, "cm"),
  25016. weight: math.unit(73, "kg"),
  25017. name: "Back",
  25018. image: {
  25019. source: "./media/characters/violet-flor/back.svg",
  25020. extra: 1692 / 1630,
  25021. bottom: 20 / 1712
  25022. }
  25023. },
  25024. },
  25025. [
  25026. {
  25027. name: "Normal",
  25028. height: math.unit(172, "cm"),
  25029. default: true
  25030. },
  25031. ]
  25032. ))
  25033. characterMakers.push(() => makeCharacter(
  25034. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25035. {
  25036. front: {
  25037. height: math.unit(6, "feet"),
  25038. weight: math.unit(220, "lb"),
  25039. name: "Front",
  25040. image: {
  25041. source: "./media/characters/lynn-rhea/front.svg",
  25042. extra: 310 / 273
  25043. }
  25044. },
  25045. back: {
  25046. height: math.unit(6, "feet"),
  25047. weight: math.unit(220, "lb"),
  25048. name: "Back",
  25049. image: {
  25050. source: "./media/characters/lynn-rhea/back.svg",
  25051. extra: 310 / 273
  25052. }
  25053. },
  25054. dicks: {
  25055. height: math.unit(0.9, "feet"),
  25056. name: "Dicks",
  25057. image: {
  25058. source: "./media/characters/lynn-rhea/dicks.svg"
  25059. }
  25060. },
  25061. slit: {
  25062. height: math.unit(0.4, "feet"),
  25063. name: "Slit",
  25064. image: {
  25065. source: "./media/characters/lynn-rhea/slit.svg"
  25066. }
  25067. },
  25068. },
  25069. [
  25070. {
  25071. name: "Micro",
  25072. height: math.unit(1, "inch")
  25073. },
  25074. {
  25075. name: "Macro",
  25076. height: math.unit(60, "feet"),
  25077. default: true
  25078. },
  25079. {
  25080. name: "Megamacro",
  25081. height: math.unit(2, "miles")
  25082. },
  25083. {
  25084. name: "Gigamacro",
  25085. height: math.unit(3, "earths")
  25086. },
  25087. {
  25088. name: "Galactic",
  25089. height: math.unit(0.8, "galaxies")
  25090. },
  25091. ]
  25092. ))
  25093. characterMakers.push(() => makeCharacter(
  25094. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25095. {
  25096. front: {
  25097. height: math.unit(1600, "feet"),
  25098. weight: math.unit(85758785169, "kg"),
  25099. name: "Front",
  25100. image: {
  25101. source: "./media/characters/valathos/front.svg",
  25102. extra: 1451 / 1339
  25103. }
  25104. },
  25105. },
  25106. [
  25107. {
  25108. name: "Macro",
  25109. height: math.unit(1600, "feet"),
  25110. default: true
  25111. },
  25112. ]
  25113. ))
  25114. characterMakers.push(() => makeCharacter(
  25115. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25116. {
  25117. front: {
  25118. height: math.unit(7 + 5 / 12, "feet"),
  25119. weight: math.unit(300, "lb"),
  25120. name: "Front",
  25121. image: {
  25122. source: "./media/characters/azula/front.svg",
  25123. extra: 3208 / 2880,
  25124. bottom: 80.2 / 3277
  25125. }
  25126. },
  25127. back: {
  25128. height: math.unit(7 + 5 / 12, "feet"),
  25129. weight: math.unit(300, "lb"),
  25130. name: "Back",
  25131. image: {
  25132. source: "./media/characters/azula/back.svg",
  25133. extra: 3169 / 2822,
  25134. bottom: 150.6 / 3321
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(7 + 5 / 12, "feet"),
  25142. default: true
  25143. },
  25144. {
  25145. name: "Big",
  25146. height: math.unit(20, "feet")
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25152. {
  25153. front: {
  25154. height: math.unit(5 + 1 / 12, "feet"),
  25155. weight: math.unit(110, "lb"),
  25156. name: "Front",
  25157. image: {
  25158. source: "./media/characters/rupert/front.svg",
  25159. extra: 1549 / 1495,
  25160. bottom: 54.2 / 1604.4
  25161. }
  25162. },
  25163. },
  25164. [
  25165. {
  25166. name: "Normal",
  25167. height: math.unit(5 + 1 / 12, "feet"),
  25168. default: true
  25169. },
  25170. ]
  25171. ))
  25172. characterMakers.push(() => makeCharacter(
  25173. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25174. {
  25175. front: {
  25176. height: math.unit(8 + 4 / 12, "feet"),
  25177. weight: math.unit(350, "lb"),
  25178. name: "Front",
  25179. image: {
  25180. source: "./media/characters/sheera-castellar/front.svg",
  25181. extra: 1957 / 1894,
  25182. bottom: 26.97 / 1975.017
  25183. }
  25184. },
  25185. side: {
  25186. height: math.unit(8 + 4 / 12, "feet"),
  25187. weight: math.unit(350, "lb"),
  25188. name: "Side",
  25189. image: {
  25190. source: "./media/characters/sheera-castellar/side.svg",
  25191. extra: 1957 / 1894
  25192. }
  25193. },
  25194. back: {
  25195. height: math.unit(8 + 4 / 12, "feet"),
  25196. weight: math.unit(350, "lb"),
  25197. name: "Back",
  25198. image: {
  25199. source: "./media/characters/sheera-castellar/back.svg",
  25200. extra: 1957 / 1894
  25201. }
  25202. },
  25203. angled: {
  25204. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25205. weight: math.unit(350, "lb"),
  25206. name: "Angled",
  25207. image: {
  25208. source: "./media/characters/sheera-castellar/angled.svg",
  25209. extra: 1807 / 1707,
  25210. bottom: 68 / 1875
  25211. }
  25212. },
  25213. genitals: {
  25214. height: math.unit(2.2, "feet"),
  25215. name: "Genitals",
  25216. image: {
  25217. source: "./media/characters/sheera-castellar/genitals.svg"
  25218. }
  25219. },
  25220. taur: {
  25221. height: math.unit(10 + 6/12, "feet"),
  25222. name: "Taur",
  25223. image: {
  25224. source: "./media/characters/sheera-castellar/taur.svg",
  25225. extra: 2017/1909,
  25226. bottom: 185/2202
  25227. }
  25228. },
  25229. },
  25230. [
  25231. {
  25232. name: "Normal",
  25233. height: math.unit(8 + 4 / 12, "feet")
  25234. },
  25235. {
  25236. name: "Macro",
  25237. height: math.unit(150, "feet"),
  25238. default: true
  25239. },
  25240. {
  25241. name: "Macro+",
  25242. height: math.unit(800, "feet")
  25243. },
  25244. ]
  25245. ))
  25246. characterMakers.push(() => makeCharacter(
  25247. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25248. {
  25249. front: {
  25250. height: math.unit(6, "feet"),
  25251. weight: math.unit(150, "lb"),
  25252. name: "Front",
  25253. image: {
  25254. source: "./media/characters/jaipur/front.svg",
  25255. extra: 3860 / 3731,
  25256. bottom: 287 / 4140
  25257. }
  25258. },
  25259. back: {
  25260. height: math.unit(6, "feet"),
  25261. weight: math.unit(150, "lb"),
  25262. name: "Back",
  25263. image: {
  25264. source: "./media/characters/jaipur/back.svg",
  25265. extra: 1637/1561,
  25266. bottom: 154/1791
  25267. }
  25268. },
  25269. },
  25270. [
  25271. {
  25272. name: "Normal",
  25273. height: math.unit(1.85, "meters"),
  25274. default: true
  25275. },
  25276. {
  25277. name: "Macro",
  25278. height: math.unit(150, "meters")
  25279. },
  25280. {
  25281. name: "Macro+",
  25282. height: math.unit(0.5, "miles")
  25283. },
  25284. {
  25285. name: "Macro++",
  25286. height: math.unit(2.5, "miles")
  25287. },
  25288. {
  25289. name: "Macro+++",
  25290. height: math.unit(12, "miles")
  25291. },
  25292. {
  25293. name: "Macro++++",
  25294. height: math.unit(120, "miles")
  25295. },
  25296. {
  25297. name: "Macro+++++",
  25298. height: math.unit(1200, "miles")
  25299. },
  25300. ]
  25301. ))
  25302. characterMakers.push(() => makeCharacter(
  25303. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25304. {
  25305. front: {
  25306. height: math.unit(6, "feet"),
  25307. weight: math.unit(150, "lb"),
  25308. name: "Front",
  25309. image: {
  25310. source: "./media/characters/sheila-wolf/front.svg",
  25311. extra: 1931 / 1808,
  25312. bottom: 29.5 / 1960
  25313. }
  25314. },
  25315. dick: {
  25316. height: math.unit(1.464, "feet"),
  25317. name: "Dick",
  25318. image: {
  25319. source: "./media/characters/sheila-wolf/dick.svg"
  25320. }
  25321. },
  25322. muzzle: {
  25323. height: math.unit(0.513, "feet"),
  25324. name: "Muzzle",
  25325. image: {
  25326. source: "./media/characters/sheila-wolf/muzzle.svg"
  25327. }
  25328. },
  25329. },
  25330. [
  25331. {
  25332. name: "Macro",
  25333. height: math.unit(70, "feet"),
  25334. default: true
  25335. },
  25336. ]
  25337. ))
  25338. characterMakers.push(() => makeCharacter(
  25339. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25340. {
  25341. front: {
  25342. height: math.unit(32, "meters"),
  25343. weight: math.unit(300000, "kg"),
  25344. name: "Front",
  25345. image: {
  25346. source: "./media/characters/almor/front.svg",
  25347. extra: 1408 / 1322,
  25348. bottom: 94.6 / 1506.5
  25349. }
  25350. },
  25351. },
  25352. [
  25353. {
  25354. name: "Macro",
  25355. height: math.unit(32, "meters"),
  25356. default: true
  25357. },
  25358. ]
  25359. ))
  25360. characterMakers.push(() => makeCharacter(
  25361. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25362. {
  25363. front: {
  25364. height: math.unit(7, "feet"),
  25365. weight: math.unit(200, "lb"),
  25366. name: "Front",
  25367. image: {
  25368. source: "./media/characters/silver/front.svg",
  25369. extra: 472.1 / 450.5,
  25370. bottom: 26.5 / 499.424
  25371. }
  25372. },
  25373. },
  25374. [
  25375. {
  25376. name: "Normal",
  25377. height: math.unit(7, "feet"),
  25378. default: true
  25379. },
  25380. {
  25381. name: "Macro",
  25382. height: math.unit(800, "feet")
  25383. },
  25384. {
  25385. name: "Megamacro",
  25386. height: math.unit(250, "miles")
  25387. },
  25388. ]
  25389. ))
  25390. characterMakers.push(() => makeCharacter(
  25391. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25392. {
  25393. front: {
  25394. height: math.unit(6, "feet"),
  25395. weight: math.unit(150, "lb"),
  25396. name: "Front",
  25397. image: {
  25398. source: "./media/characters/pliskin/front.svg",
  25399. extra: 1469 / 1359,
  25400. bottom: 70 / 1540
  25401. }
  25402. },
  25403. },
  25404. [
  25405. {
  25406. name: "Micro",
  25407. height: math.unit(3, "inches")
  25408. },
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(5 + 11 / 12, "feet"),
  25412. default: true
  25413. },
  25414. {
  25415. name: "Macro",
  25416. height: math.unit(120, "feet")
  25417. },
  25418. ]
  25419. ))
  25420. characterMakers.push(() => makeCharacter(
  25421. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25422. {
  25423. front: {
  25424. height: math.unit(6, "feet"),
  25425. weight: math.unit(150, "lb"),
  25426. name: "Front",
  25427. image: {
  25428. source: "./media/characters/sammy/front.svg",
  25429. extra: 1193 / 1089,
  25430. bottom: 30.5 / 1226
  25431. }
  25432. },
  25433. },
  25434. [
  25435. {
  25436. name: "Macro",
  25437. height: math.unit(1700, "feet"),
  25438. default: true
  25439. },
  25440. {
  25441. name: "Examacro",
  25442. height: math.unit(2.5e9, "lightyears")
  25443. },
  25444. ]
  25445. ))
  25446. characterMakers.push(() => makeCharacter(
  25447. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25448. {
  25449. front: {
  25450. height: math.unit(21, "meters"),
  25451. weight: math.unit(12, "tonnes"),
  25452. name: "Front",
  25453. image: {
  25454. source: "./media/characters/kuru/front.svg",
  25455. extra: 4301 / 3785,
  25456. bottom: 371.3 / 4691
  25457. }
  25458. },
  25459. },
  25460. [
  25461. {
  25462. name: "Macro",
  25463. height: math.unit(21, "meters"),
  25464. default: true
  25465. },
  25466. ]
  25467. ))
  25468. characterMakers.push(() => makeCharacter(
  25469. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25470. {
  25471. front: {
  25472. height: math.unit(23, "meters"),
  25473. weight: math.unit(12.2, "tonnes"),
  25474. name: "Front",
  25475. image: {
  25476. source: "./media/characters/rakka/front.svg",
  25477. extra: 4670 / 4169,
  25478. bottom: 301 / 4968.7
  25479. }
  25480. },
  25481. },
  25482. [
  25483. {
  25484. name: "Macro",
  25485. height: math.unit(23, "meters"),
  25486. default: true
  25487. },
  25488. ]
  25489. ))
  25490. characterMakers.push(() => makeCharacter(
  25491. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25492. {
  25493. front: {
  25494. height: math.unit(6, "feet"),
  25495. weight: math.unit(150, "lb"),
  25496. name: "Front",
  25497. image: {
  25498. source: "./media/characters/rhys-feline/front.svg",
  25499. extra: 2488 / 2308,
  25500. bottom: 35.67 / 2519.19
  25501. }
  25502. },
  25503. },
  25504. [
  25505. {
  25506. name: "Really Small",
  25507. height: math.unit(1, "nm")
  25508. },
  25509. {
  25510. name: "Micro",
  25511. height: math.unit(4, "inches")
  25512. },
  25513. {
  25514. name: "Normal",
  25515. height: math.unit(4 + 10 / 12, "feet"),
  25516. default: true
  25517. },
  25518. {
  25519. name: "Macro",
  25520. height: math.unit(100, "feet")
  25521. },
  25522. {
  25523. name: "Megamacto",
  25524. height: math.unit(50, "miles")
  25525. },
  25526. ]
  25527. ))
  25528. characterMakers.push(() => makeCharacter(
  25529. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25530. {
  25531. side: {
  25532. height: math.unit(30, "feet"),
  25533. weight: math.unit(35000, "kg"),
  25534. name: "Side",
  25535. image: {
  25536. source: "./media/characters/alydar/side.svg",
  25537. extra: 234 / 222,
  25538. bottom: 6.5 / 241
  25539. }
  25540. },
  25541. front: {
  25542. height: math.unit(30, "feet"),
  25543. weight: math.unit(35000, "kg"),
  25544. name: "Front",
  25545. image: {
  25546. source: "./media/characters/alydar/front.svg",
  25547. extra: 223.37 / 210.2,
  25548. bottom: 22.3 / 246.76
  25549. }
  25550. },
  25551. top: {
  25552. height: math.unit(64.54, "feet"),
  25553. weight: math.unit(35000, "kg"),
  25554. name: "Top",
  25555. image: {
  25556. source: "./media/characters/alydar/top.svg"
  25557. }
  25558. },
  25559. anthro: {
  25560. height: math.unit(30, "feet"),
  25561. weight: math.unit(9000, "kg"),
  25562. name: "Anthro",
  25563. image: {
  25564. source: "./media/characters/alydar/anthro.svg",
  25565. extra: 432 / 421,
  25566. bottom: 7.18 / 440
  25567. }
  25568. },
  25569. maw: {
  25570. height: math.unit(11.693, "feet"),
  25571. name: "Maw",
  25572. image: {
  25573. source: "./media/characters/alydar/maw.svg"
  25574. }
  25575. },
  25576. head: {
  25577. height: math.unit(11.693, "feet"),
  25578. name: "Head",
  25579. image: {
  25580. source: "./media/characters/alydar/head.svg"
  25581. }
  25582. },
  25583. headAlt: {
  25584. height: math.unit(12.861, "feet"),
  25585. name: "Head (Alt)",
  25586. image: {
  25587. source: "./media/characters/alydar/head-alt.svg"
  25588. }
  25589. },
  25590. wing: {
  25591. height: math.unit(20.712, "feet"),
  25592. name: "Wing",
  25593. image: {
  25594. source: "./media/characters/alydar/wing.svg"
  25595. }
  25596. },
  25597. wingFeather: {
  25598. height: math.unit(9.662, "feet"),
  25599. name: "Wing Feather",
  25600. image: {
  25601. source: "./media/characters/alydar/wing-feather.svg"
  25602. }
  25603. },
  25604. countourFeather: {
  25605. height: math.unit(4.154, "feet"),
  25606. name: "Contour Feather",
  25607. image: {
  25608. source: "./media/characters/alydar/contour-feather.svg"
  25609. }
  25610. },
  25611. },
  25612. [
  25613. {
  25614. name: "Diplomatic",
  25615. height: math.unit(13, "feet"),
  25616. default: true
  25617. },
  25618. {
  25619. name: "Small",
  25620. height: math.unit(30, "feet")
  25621. },
  25622. {
  25623. name: "Normal",
  25624. height: math.unit(95, "feet"),
  25625. default: true
  25626. },
  25627. {
  25628. name: "Large",
  25629. height: math.unit(285, "feet")
  25630. },
  25631. {
  25632. name: "Incomprehensible",
  25633. height: math.unit(450, "megameters")
  25634. },
  25635. ]
  25636. ))
  25637. characterMakers.push(() => makeCharacter(
  25638. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25639. {
  25640. side: {
  25641. height: math.unit(11, "feet"),
  25642. weight: math.unit(1750, "kg"),
  25643. name: "Side",
  25644. image: {
  25645. source: "./media/characters/selicia/side.svg",
  25646. extra: 440 / 396,
  25647. bottom: 24.8 / 465.979
  25648. }
  25649. },
  25650. maw: {
  25651. height: math.unit(4.665, "feet"),
  25652. name: "Maw",
  25653. image: {
  25654. source: "./media/characters/selicia/maw.svg"
  25655. }
  25656. },
  25657. },
  25658. [
  25659. {
  25660. name: "Normal",
  25661. height: math.unit(11, "feet"),
  25662. default: true
  25663. },
  25664. ]
  25665. ))
  25666. characterMakers.push(() => makeCharacter(
  25667. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25668. {
  25669. side: {
  25670. height: math.unit(2 + 6 / 12, "feet"),
  25671. weight: math.unit(30, "lb"),
  25672. name: "Side",
  25673. image: {
  25674. source: "./media/characters/layla/side.svg",
  25675. extra: 244 / 188,
  25676. bottom: 18.2 / 262.1
  25677. }
  25678. },
  25679. back: {
  25680. height: math.unit(2 + 6 / 12, "feet"),
  25681. weight: math.unit(30, "lb"),
  25682. name: "Back",
  25683. image: {
  25684. source: "./media/characters/layla/back.svg",
  25685. extra: 308 / 241.5,
  25686. bottom: 8.9 / 316.8
  25687. }
  25688. },
  25689. cumming: {
  25690. height: math.unit(2 + 6 / 12, "feet"),
  25691. weight: math.unit(30, "lb"),
  25692. name: "Cumming",
  25693. image: {
  25694. source: "./media/characters/layla/cumming.svg",
  25695. extra: 342 / 279,
  25696. bottom: 595 / 938
  25697. }
  25698. },
  25699. dickFlaccid: {
  25700. height: math.unit(2.595, "feet"),
  25701. name: "Flaccid Genitals",
  25702. image: {
  25703. source: "./media/characters/layla/dick-flaccid.svg"
  25704. }
  25705. },
  25706. dickErect: {
  25707. height: math.unit(2.359, "feet"),
  25708. name: "Erect Genitals",
  25709. image: {
  25710. source: "./media/characters/layla/dick-erect.svg"
  25711. }
  25712. },
  25713. dragon: {
  25714. height: math.unit(40, "feet"),
  25715. name: "Dragon",
  25716. image: {
  25717. source: "./media/characters/layla/dragon.svg",
  25718. extra: 610/535,
  25719. bottom: 367/977
  25720. }
  25721. },
  25722. taur: {
  25723. height: math.unit(30, "feet"),
  25724. name: "Taur",
  25725. image: {
  25726. source: "./media/characters/layla/taur.svg",
  25727. extra: 1268/1199,
  25728. bottom: 112/1380
  25729. }
  25730. },
  25731. },
  25732. [
  25733. {
  25734. name: "Micro",
  25735. height: math.unit(1, "inch")
  25736. },
  25737. {
  25738. name: "Small",
  25739. height: math.unit(1, "foot")
  25740. },
  25741. {
  25742. name: "Normal",
  25743. height: math.unit(2 + 6 / 12, "feet"),
  25744. default: true
  25745. },
  25746. {
  25747. name: "Macro",
  25748. height: math.unit(200, "feet")
  25749. },
  25750. {
  25751. name: "Megamacro",
  25752. height: math.unit(1000, "miles")
  25753. },
  25754. {
  25755. name: "Planetary",
  25756. height: math.unit(8000, "miles")
  25757. },
  25758. {
  25759. name: "True Layla",
  25760. height: math.unit(200000 * 7, "multiverses")
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25766. {
  25767. back: {
  25768. height: math.unit(10.5, "feet"),
  25769. weight: math.unit(800, "lb"),
  25770. name: "Back",
  25771. image: {
  25772. source: "./media/characters/knox/back.svg",
  25773. extra: 1486 / 1089,
  25774. bottom: 107 / 1601.4
  25775. }
  25776. },
  25777. side: {
  25778. height: math.unit(10.5, "feet"),
  25779. weight: math.unit(800, "lb"),
  25780. name: "Side",
  25781. image: {
  25782. source: "./media/characters/knox/side.svg",
  25783. extra: 244 / 218,
  25784. bottom: 14 / 260
  25785. }
  25786. },
  25787. },
  25788. [
  25789. {
  25790. name: "Compact",
  25791. height: math.unit(10.5, "feet"),
  25792. default: true
  25793. },
  25794. {
  25795. name: "Dynamax",
  25796. height: math.unit(210, "feet")
  25797. },
  25798. {
  25799. name: "Full Macro",
  25800. height: math.unit(850, "feet")
  25801. },
  25802. ]
  25803. ))
  25804. characterMakers.push(() => makeCharacter(
  25805. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25806. {
  25807. front: {
  25808. height: math.unit(28, "feet"),
  25809. weight: math.unit(10500, "lb"),
  25810. name: "Front",
  25811. image: {
  25812. source: "./media/characters/kayda/front.svg",
  25813. extra: 1536 / 1428,
  25814. bottom: 68.7 / 1603
  25815. }
  25816. },
  25817. back: {
  25818. height: math.unit(28, "feet"),
  25819. weight: math.unit(10500, "lb"),
  25820. name: "Back",
  25821. image: {
  25822. source: "./media/characters/kayda/back.svg",
  25823. extra: 1557 / 1464,
  25824. bottom: 39.5 / 1597.49
  25825. }
  25826. },
  25827. dick: {
  25828. height: math.unit(3.858, "feet"),
  25829. name: "Dick",
  25830. image: {
  25831. source: "./media/characters/kayda/dick.svg"
  25832. }
  25833. },
  25834. },
  25835. [
  25836. {
  25837. name: "Macro",
  25838. height: math.unit(28, "feet"),
  25839. default: true
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25845. {
  25846. front: {
  25847. height: math.unit(10 + 11 / 12, "feet"),
  25848. weight: math.unit(1400, "lb"),
  25849. name: "Front",
  25850. image: {
  25851. source: "./media/characters/brian/front.svg",
  25852. extra: 737 / 692,
  25853. bottom: 55.4 / 785
  25854. }
  25855. },
  25856. },
  25857. [
  25858. {
  25859. name: "Normal",
  25860. height: math.unit(10 + 11 / 12, "feet"),
  25861. default: true
  25862. },
  25863. ]
  25864. ))
  25865. characterMakers.push(() => makeCharacter(
  25866. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25867. {
  25868. front: {
  25869. height: math.unit(5 + 8 / 12, "feet"),
  25870. weight: math.unit(140, "lb"),
  25871. name: "Front",
  25872. image: {
  25873. source: "./media/characters/khemri/front.svg",
  25874. extra: 4780 / 4059,
  25875. bottom: 80.1 / 4859.25
  25876. }
  25877. },
  25878. },
  25879. [
  25880. {
  25881. name: "Micro",
  25882. height: math.unit(6, "inches")
  25883. },
  25884. {
  25885. name: "Normal",
  25886. height: math.unit(5 + 8 / 12, "feet"),
  25887. default: true
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25893. {
  25894. front: {
  25895. height: math.unit(13, "feet"),
  25896. weight: math.unit(1700, "lb"),
  25897. name: "Front",
  25898. image: {
  25899. source: "./media/characters/felix-braveheart/front.svg",
  25900. extra: 1222 / 1157,
  25901. bottom: 53.2 / 1280
  25902. }
  25903. },
  25904. back: {
  25905. height: math.unit(13, "feet"),
  25906. weight: math.unit(1700, "lb"),
  25907. name: "Back",
  25908. image: {
  25909. source: "./media/characters/felix-braveheart/back.svg",
  25910. extra: 1277 / 1203,
  25911. bottom: 50.2 / 1327
  25912. }
  25913. },
  25914. feral: {
  25915. height: math.unit(6, "feet"),
  25916. weight: math.unit(400, "lb"),
  25917. name: "Feral",
  25918. image: {
  25919. source: "./media/characters/felix-braveheart/feral.svg",
  25920. extra: 682 / 625,
  25921. bottom: 6.9 / 688
  25922. }
  25923. },
  25924. },
  25925. [
  25926. {
  25927. name: "Normal",
  25928. height: math.unit(13, "feet"),
  25929. default: true
  25930. },
  25931. ]
  25932. ))
  25933. characterMakers.push(() => makeCharacter(
  25934. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25935. {
  25936. side: {
  25937. height: math.unit(5 + 11 / 12, "feet"),
  25938. weight: math.unit(1400, "lb"),
  25939. name: "Side",
  25940. image: {
  25941. source: "./media/characters/shadow-blade/side.svg",
  25942. extra: 1726 / 1267,
  25943. bottom: 58.4 / 1785
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Normal",
  25950. height: math.unit(5 + 11 / 12, "feet"),
  25951. default: true
  25952. },
  25953. ]
  25954. ))
  25955. characterMakers.push(() => makeCharacter(
  25956. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25957. {
  25958. front: {
  25959. height: math.unit(1 + 6 / 12, "feet"),
  25960. weight: math.unit(25, "lb"),
  25961. name: "Front",
  25962. image: {
  25963. source: "./media/characters/karla-halldor/front.svg",
  25964. extra: 1459 / 1383,
  25965. bottom: 12 / 1472
  25966. }
  25967. },
  25968. },
  25969. [
  25970. {
  25971. name: "Normal",
  25972. height: math.unit(1 + 6 / 12, "feet"),
  25973. default: true
  25974. },
  25975. ]
  25976. ))
  25977. characterMakers.push(() => makeCharacter(
  25978. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25979. {
  25980. front: {
  25981. height: math.unit(6 + 2 / 12, "feet"),
  25982. weight: math.unit(160, "lb"),
  25983. name: "Front",
  25984. image: {
  25985. source: "./media/characters/ariam/front.svg",
  25986. extra: 1073/976,
  25987. bottom: 52/1125
  25988. }
  25989. },
  25990. back: {
  25991. height: math.unit(6 + 2/12, "feet"),
  25992. weight: math.unit(160, "lb"),
  25993. name: "Back",
  25994. image: {
  25995. source: "./media/characters/ariam/back.svg",
  25996. extra: 1103/1023,
  25997. bottom: 9/1112
  25998. }
  25999. },
  26000. dressed: {
  26001. height: math.unit(6 + 2/12, "feet"),
  26002. weight: math.unit(160, "lb"),
  26003. name: "Dressed",
  26004. image: {
  26005. source: "./media/characters/ariam/dressed.svg",
  26006. extra: 1099/1009,
  26007. bottom: 25/1124
  26008. }
  26009. },
  26010. squatting: {
  26011. height: math.unit(4.1, "feet"),
  26012. weight: math.unit(160, "lb"),
  26013. name: "Squatting",
  26014. image: {
  26015. source: "./media/characters/ariam/squatting.svg",
  26016. extra: 2617 / 2112,
  26017. bottom: 61.2 / 2681,
  26018. }
  26019. },
  26020. },
  26021. [
  26022. {
  26023. name: "Normal",
  26024. height: math.unit(6 + 2 / 12, "feet"),
  26025. default: true
  26026. },
  26027. {
  26028. name: "Normal+",
  26029. height: math.unit(4, "meters")
  26030. },
  26031. {
  26032. name: "Macro",
  26033. height: math.unit(50, "meters")
  26034. },
  26035. {
  26036. name: "Macro+",
  26037. height: math.unit(100, "meters")
  26038. },
  26039. {
  26040. name: "Megamacro",
  26041. height: math.unit(20, "km")
  26042. },
  26043. {
  26044. name: "Caretaker",
  26045. height: math.unit(444, "megameters")
  26046. },
  26047. ]
  26048. ))
  26049. characterMakers.push(() => makeCharacter(
  26050. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26051. {
  26052. front: {
  26053. height: math.unit(1.67, "meters"),
  26054. weight: math.unit(140, "lb"),
  26055. name: "Front",
  26056. image: {
  26057. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26058. extra: 438 / 410,
  26059. bottom: 0.75 / 439
  26060. }
  26061. },
  26062. },
  26063. [
  26064. {
  26065. name: "Shrunken",
  26066. height: math.unit(7.6, "cm")
  26067. },
  26068. {
  26069. name: "Human Scale",
  26070. height: math.unit(1.67, "meters")
  26071. },
  26072. {
  26073. name: "Wolxi Scale",
  26074. height: math.unit(36.7, "meters"),
  26075. default: true
  26076. },
  26077. ]
  26078. ))
  26079. characterMakers.push(() => makeCharacter(
  26080. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26081. {
  26082. front: {
  26083. height: math.unit(1.73, "meters"),
  26084. weight: math.unit(240, "lb"),
  26085. name: "Front",
  26086. image: {
  26087. source: "./media/characters/izue-two-mothers/front.svg",
  26088. extra: 469 / 437,
  26089. bottom: 1.24 / 470.6
  26090. }
  26091. },
  26092. },
  26093. [
  26094. {
  26095. name: "Shrunken",
  26096. height: math.unit(7.86, "cm")
  26097. },
  26098. {
  26099. name: "Human Scale",
  26100. height: math.unit(1.73, "meters")
  26101. },
  26102. {
  26103. name: "Wolxi Scale",
  26104. height: math.unit(38, "meters"),
  26105. default: true
  26106. },
  26107. ]
  26108. ))
  26109. characterMakers.push(() => makeCharacter(
  26110. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26111. {
  26112. front: {
  26113. height: math.unit(1.55, "meters"),
  26114. weight: math.unit(120, "lb"),
  26115. name: "Front",
  26116. image: {
  26117. source: "./media/characters/teeku-love-shack/front.svg",
  26118. extra: 387 / 362,
  26119. bottom: 1.51 / 388
  26120. }
  26121. },
  26122. },
  26123. [
  26124. {
  26125. name: "Shrunken",
  26126. height: math.unit(7, "cm")
  26127. },
  26128. {
  26129. name: "Human Scale",
  26130. height: math.unit(1.55, "meters")
  26131. },
  26132. {
  26133. name: "Wolxi Scale",
  26134. height: math.unit(34.1, "meters"),
  26135. default: true
  26136. },
  26137. ]
  26138. ))
  26139. characterMakers.push(() => makeCharacter(
  26140. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26141. {
  26142. front: {
  26143. height: math.unit(1.83, "meters"),
  26144. weight: math.unit(135, "lb"),
  26145. name: "Front",
  26146. image: {
  26147. source: "./media/characters/dejma-the-red/front.svg",
  26148. extra: 480 / 458,
  26149. bottom: 1.8 / 482
  26150. }
  26151. },
  26152. },
  26153. [
  26154. {
  26155. name: "Shrunken",
  26156. height: math.unit(8.3, "cm")
  26157. },
  26158. {
  26159. name: "Human Scale",
  26160. height: math.unit(1.83, "meters")
  26161. },
  26162. {
  26163. name: "Wolxi Scale",
  26164. height: math.unit(40, "meters"),
  26165. default: true
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26171. {
  26172. front: {
  26173. height: math.unit(1.78, "meters"),
  26174. weight: math.unit(65, "kg"),
  26175. name: "Front",
  26176. image: {
  26177. source: "./media/characters/aki/front.svg",
  26178. extra: 452 / 415
  26179. }
  26180. },
  26181. frontNsfw: {
  26182. height: math.unit(1.78, "meters"),
  26183. weight: math.unit(65, "kg"),
  26184. name: "Front (NSFW)",
  26185. image: {
  26186. source: "./media/characters/aki/front-nsfw.svg",
  26187. extra: 452 / 415
  26188. }
  26189. },
  26190. back: {
  26191. height: math.unit(1.78, "meters"),
  26192. weight: math.unit(65, "kg"),
  26193. name: "Back",
  26194. image: {
  26195. source: "./media/characters/aki/back.svg",
  26196. extra: 452 / 415
  26197. }
  26198. },
  26199. rump: {
  26200. height: math.unit(2.05, "feet"),
  26201. name: "Rump",
  26202. image: {
  26203. source: "./media/characters/aki/rump.svg"
  26204. }
  26205. },
  26206. dick: {
  26207. height: math.unit(0.95, "feet"),
  26208. name: "Dick",
  26209. image: {
  26210. source: "./media/characters/aki/dick.svg"
  26211. }
  26212. },
  26213. },
  26214. [
  26215. {
  26216. name: "Micro",
  26217. height: math.unit(15, "cm")
  26218. },
  26219. {
  26220. name: "Normal",
  26221. height: math.unit(178, "cm"),
  26222. default: true
  26223. },
  26224. {
  26225. name: "Macro",
  26226. height: math.unit(214, "m")
  26227. },
  26228. {
  26229. name: "Macro+",
  26230. height: math.unit(534, "m")
  26231. },
  26232. ]
  26233. ))
  26234. characterMakers.push(() => makeCharacter(
  26235. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26236. {
  26237. front: {
  26238. height: math.unit(5 + 5 / 12, "feet"),
  26239. weight: math.unit(120, "lb"),
  26240. name: "Front",
  26241. image: {
  26242. source: "./media/characters/ari/front.svg",
  26243. extra: 1550/1471,
  26244. bottom: 39/1589
  26245. }
  26246. },
  26247. },
  26248. [
  26249. {
  26250. name: "Normal",
  26251. height: math.unit(5 + 5 / 12, "feet")
  26252. },
  26253. {
  26254. name: "Macro",
  26255. height: math.unit(100, "feet"),
  26256. default: true
  26257. },
  26258. {
  26259. name: "Megamacro",
  26260. height: math.unit(100, "miles")
  26261. },
  26262. {
  26263. name: "Gigamacro",
  26264. height: math.unit(80000, "miles")
  26265. },
  26266. ]
  26267. ))
  26268. characterMakers.push(() => makeCharacter(
  26269. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26270. {
  26271. side: {
  26272. height: math.unit(9, "feet"),
  26273. weight: math.unit(400, "kg"),
  26274. name: "Side",
  26275. image: {
  26276. source: "./media/characters/bolt/side.svg",
  26277. extra: 1126 / 896,
  26278. bottom: 60 / 1187.3,
  26279. }
  26280. },
  26281. },
  26282. [
  26283. {
  26284. name: "Micro",
  26285. height: math.unit(5, "inches")
  26286. },
  26287. {
  26288. name: "Normal",
  26289. height: math.unit(9, "feet"),
  26290. default: true
  26291. },
  26292. {
  26293. name: "Macro",
  26294. height: math.unit(700, "feet")
  26295. },
  26296. {
  26297. name: "Max Size",
  26298. height: math.unit(1.52e22, "yottameters")
  26299. },
  26300. ]
  26301. ))
  26302. characterMakers.push(() => makeCharacter(
  26303. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26304. {
  26305. front: {
  26306. height: math.unit(4.3, "meters"),
  26307. weight: math.unit(3, "tons"),
  26308. name: "Front",
  26309. image: {
  26310. source: "./media/characters/draekon-sylviar/front.svg",
  26311. extra: 2072/1512,
  26312. bottom: 74/2146
  26313. }
  26314. },
  26315. back: {
  26316. height: math.unit(4.3, "meters"),
  26317. weight: math.unit(3, "tons"),
  26318. name: "Back",
  26319. image: {
  26320. source: "./media/characters/draekon-sylviar/back.svg",
  26321. extra: 1639/1483,
  26322. bottom: 41/1680
  26323. }
  26324. },
  26325. feral: {
  26326. height: math.unit(1.15, "meters"),
  26327. weight: math.unit(3, "tons"),
  26328. name: "Feral",
  26329. image: {
  26330. source: "./media/characters/draekon-sylviar/feral.svg",
  26331. extra: 1033/395,
  26332. bottom: 130/1163
  26333. }
  26334. },
  26335. maw: {
  26336. height: math.unit(1.3, "meters"),
  26337. name: "Maw",
  26338. image: {
  26339. source: "./media/characters/draekon-sylviar/maw.svg"
  26340. }
  26341. },
  26342. mawSeparated: {
  26343. height: math.unit(1.53, "meters"),
  26344. name: "Separated Maw",
  26345. image: {
  26346. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26347. }
  26348. },
  26349. tail: {
  26350. height: math.unit(1.15, "meters"),
  26351. name: "Tail",
  26352. image: {
  26353. source: "./media/characters/draekon-sylviar/tail.svg"
  26354. }
  26355. },
  26356. tailDick: {
  26357. height: math.unit(1.15, "meters"),
  26358. name: "Tail (Dick)",
  26359. image: {
  26360. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26361. }
  26362. },
  26363. tailDickSeparated: {
  26364. height: math.unit(1.19, "meters"),
  26365. name: "Tail (Separated Dick)",
  26366. image: {
  26367. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26368. }
  26369. },
  26370. slit: {
  26371. height: math.unit(1, "meters"),
  26372. name: "Slit",
  26373. image: {
  26374. source: "./media/characters/draekon-sylviar/slit.svg"
  26375. }
  26376. },
  26377. dick: {
  26378. height: math.unit(1.15, "meters"),
  26379. name: "Dick",
  26380. image: {
  26381. source: "./media/characters/draekon-sylviar/dick.svg"
  26382. }
  26383. },
  26384. dickSeparated: {
  26385. height: math.unit(1.1, "meters"),
  26386. name: "Separated Dick",
  26387. image: {
  26388. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26389. }
  26390. },
  26391. sheath: {
  26392. height: math.unit(1.15, "meters"),
  26393. name: "Sheath",
  26394. image: {
  26395. source: "./media/characters/draekon-sylviar/sheath.svg"
  26396. }
  26397. },
  26398. },
  26399. [
  26400. {
  26401. name: "Small",
  26402. height: math.unit(4.53 / 2, "meters"),
  26403. default: true
  26404. },
  26405. {
  26406. name: "Normal",
  26407. height: math.unit(4.53, "meters"),
  26408. default: true
  26409. },
  26410. {
  26411. name: "Large",
  26412. height: math.unit(4.53 * 2, "meters"),
  26413. },
  26414. ]
  26415. ))
  26416. characterMakers.push(() => makeCharacter(
  26417. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26418. {
  26419. front: {
  26420. height: math.unit(6 + 2 / 12, "feet"),
  26421. weight: math.unit(180, "lb"),
  26422. name: "Front",
  26423. image: {
  26424. source: "./media/characters/brawler/front.svg",
  26425. extra: 3301 / 3027,
  26426. bottom: 138 / 3439
  26427. }
  26428. },
  26429. },
  26430. [
  26431. {
  26432. name: "Normal",
  26433. height: math.unit(6 + 2 / 12, "feet"),
  26434. default: true
  26435. },
  26436. ]
  26437. ))
  26438. characterMakers.push(() => makeCharacter(
  26439. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26440. {
  26441. front: {
  26442. height: math.unit(11, "feet"),
  26443. weight: math.unit(1000, "lb"),
  26444. name: "Front",
  26445. image: {
  26446. source: "./media/characters/alex/front.svg",
  26447. bottom: 44.5 / 620
  26448. }
  26449. },
  26450. },
  26451. [
  26452. {
  26453. name: "Micro",
  26454. height: math.unit(5, "inches")
  26455. },
  26456. {
  26457. name: "Normal",
  26458. height: math.unit(11, "feet"),
  26459. default: true
  26460. },
  26461. {
  26462. name: "Macro",
  26463. height: math.unit(9.5e9, "feet")
  26464. },
  26465. {
  26466. name: "Max Size",
  26467. height: math.unit(1.4e283, "yottameters")
  26468. },
  26469. ]
  26470. ))
  26471. characterMakers.push(() => makeCharacter(
  26472. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26473. {
  26474. female: {
  26475. height: math.unit(29.9, "m"),
  26476. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26477. name: "Female",
  26478. image: {
  26479. source: "./media/characters/zenari/female.svg",
  26480. extra: 3281.6 / 3217,
  26481. bottom: 72.2 / 3353
  26482. }
  26483. },
  26484. male: {
  26485. height: math.unit(27.7, "m"),
  26486. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26487. name: "Male",
  26488. image: {
  26489. source: "./media/characters/zenari/male.svg",
  26490. extra: 3008 / 2991,
  26491. bottom: 54.6 / 3069
  26492. }
  26493. },
  26494. },
  26495. [
  26496. {
  26497. name: "Macro",
  26498. height: math.unit(29.7, "meters"),
  26499. default: true
  26500. },
  26501. ]
  26502. ))
  26503. characterMakers.push(() => makeCharacter(
  26504. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26505. {
  26506. female: {
  26507. height: math.unit(23.8, "m"),
  26508. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26509. name: "Female",
  26510. image: {
  26511. source: "./media/characters/mactarian/female.svg",
  26512. extra: 2662 / 2569,
  26513. bottom: 73 / 2736
  26514. }
  26515. },
  26516. male: {
  26517. height: math.unit(23.8, "m"),
  26518. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26519. name: "Male",
  26520. image: {
  26521. source: "./media/characters/mactarian/male.svg",
  26522. extra: 2673 / 2600,
  26523. bottom: 76 / 2750
  26524. }
  26525. },
  26526. },
  26527. [
  26528. {
  26529. name: "Macro",
  26530. height: math.unit(23.8, "meters"),
  26531. default: true
  26532. },
  26533. ]
  26534. ))
  26535. characterMakers.push(() => makeCharacter(
  26536. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26537. {
  26538. female: {
  26539. height: math.unit(19.3, "m"),
  26540. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26541. name: "Female",
  26542. image: {
  26543. source: "./media/characters/umok/female.svg",
  26544. extra: 2186 / 2078,
  26545. bottom: 87 / 2277
  26546. }
  26547. },
  26548. male: {
  26549. height: math.unit(19.5, "m"),
  26550. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26551. name: "Male",
  26552. image: {
  26553. source: "./media/characters/umok/male.svg",
  26554. extra: 2233 / 2140,
  26555. bottom: 24.4 / 2258
  26556. }
  26557. },
  26558. },
  26559. [
  26560. {
  26561. name: "Macro",
  26562. height: math.unit(19.3, "meters"),
  26563. default: true
  26564. },
  26565. ]
  26566. ))
  26567. characterMakers.push(() => makeCharacter(
  26568. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26569. {
  26570. female: {
  26571. height: math.unit(26.15, "m"),
  26572. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26573. name: "Female",
  26574. image: {
  26575. source: "./media/characters/joraxian/female.svg",
  26576. extra: 2912 / 2824,
  26577. bottom: 36 / 2956
  26578. }
  26579. },
  26580. male: {
  26581. height: math.unit(25.4, "m"),
  26582. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26583. name: "Male",
  26584. image: {
  26585. source: "./media/characters/joraxian/male.svg",
  26586. extra: 2877 / 2721,
  26587. bottom: 82 / 2967
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Macro",
  26594. height: math.unit(26.15, "meters"),
  26595. default: true
  26596. },
  26597. ]
  26598. ))
  26599. characterMakers.push(() => makeCharacter(
  26600. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26601. {
  26602. female: {
  26603. height: math.unit(21.6, "m"),
  26604. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26605. name: "Female",
  26606. image: {
  26607. source: "./media/characters/sthara/female.svg",
  26608. extra: 2516 / 2347,
  26609. bottom: 21.5 / 2537
  26610. }
  26611. },
  26612. male: {
  26613. height: math.unit(24, "m"),
  26614. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26615. name: "Male",
  26616. image: {
  26617. source: "./media/characters/sthara/male.svg",
  26618. extra: 2732 / 2607,
  26619. bottom: 23 / 2732
  26620. }
  26621. },
  26622. },
  26623. [
  26624. {
  26625. name: "Macro",
  26626. height: math.unit(21.6, "meters"),
  26627. default: true
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26633. {
  26634. front: {
  26635. height: math.unit(6 + 4 / 12, "feet"),
  26636. weight: math.unit(175, "lb"),
  26637. name: "Front",
  26638. image: {
  26639. source: "./media/characters/luka-bryzant/front.svg",
  26640. extra: 311 / 289,
  26641. bottom: 4 / 315
  26642. }
  26643. },
  26644. back: {
  26645. height: math.unit(6 + 4 / 12, "feet"),
  26646. weight: math.unit(175, "lb"),
  26647. name: "Back",
  26648. image: {
  26649. source: "./media/characters/luka-bryzant/back.svg",
  26650. extra: 311 / 289,
  26651. bottom: 3.8 / 313.7
  26652. }
  26653. },
  26654. },
  26655. [
  26656. {
  26657. name: "Micro",
  26658. height: math.unit(10, "inches")
  26659. },
  26660. {
  26661. name: "Normal",
  26662. height: math.unit(6 + 4 / 12, "feet"),
  26663. default: true
  26664. },
  26665. {
  26666. name: "Large",
  26667. height: math.unit(12, "feet")
  26668. },
  26669. ]
  26670. ))
  26671. characterMakers.push(() => makeCharacter(
  26672. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26673. {
  26674. front: {
  26675. height: math.unit(5 + 7 / 12, "feet"),
  26676. weight: math.unit(185, "lb"),
  26677. name: "Front",
  26678. image: {
  26679. source: "./media/characters/aman-aquila/front.svg",
  26680. extra: 1013 / 976,
  26681. bottom: 45.6 / 1057
  26682. }
  26683. },
  26684. side: {
  26685. height: math.unit(5 + 7 / 12, "feet"),
  26686. weight: math.unit(185, "lb"),
  26687. name: "Side",
  26688. image: {
  26689. source: "./media/characters/aman-aquila/side.svg",
  26690. extra: 1054 / 1011,
  26691. bottom: 15 / 1070
  26692. }
  26693. },
  26694. back: {
  26695. height: math.unit(5 + 7 / 12, "feet"),
  26696. weight: math.unit(185, "lb"),
  26697. name: "Back",
  26698. image: {
  26699. source: "./media/characters/aman-aquila/back.svg",
  26700. extra: 1026 / 970,
  26701. bottom: 12 / 1039
  26702. }
  26703. },
  26704. head: {
  26705. height: math.unit(1.211, "feet"),
  26706. name: "Head",
  26707. image: {
  26708. source: "./media/characters/aman-aquila/head.svg",
  26709. }
  26710. },
  26711. },
  26712. [
  26713. {
  26714. name: "Minimicro",
  26715. height: math.unit(0.057, "inches")
  26716. },
  26717. {
  26718. name: "Micro",
  26719. height: math.unit(7, "inches")
  26720. },
  26721. {
  26722. name: "Mini",
  26723. height: math.unit(3 + 7 / 12, "feet")
  26724. },
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(5 + 7 / 12, "feet"),
  26728. default: true
  26729. },
  26730. {
  26731. name: "Macro",
  26732. height: math.unit(157 + 7 / 12, "feet")
  26733. },
  26734. {
  26735. name: "Megamacro",
  26736. height: math.unit(1557 + 7 / 12, "feet")
  26737. },
  26738. {
  26739. name: "Gigamacro",
  26740. height: math.unit(15557 + 7 / 12, "feet")
  26741. },
  26742. ]
  26743. ))
  26744. characterMakers.push(() => makeCharacter(
  26745. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26746. {
  26747. front: {
  26748. height: math.unit(3 + 2 / 12, "inches"),
  26749. weight: math.unit(0.3, "ounces"),
  26750. name: "Front",
  26751. image: {
  26752. source: "./media/characters/hiphae/front.svg",
  26753. extra: 1931 / 1683,
  26754. bottom: 24 / 1955
  26755. }
  26756. },
  26757. },
  26758. [
  26759. {
  26760. name: "Normal",
  26761. height: math.unit(3 + 1 / 2, "inches"),
  26762. default: true
  26763. },
  26764. ]
  26765. ))
  26766. characterMakers.push(() => makeCharacter(
  26767. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26768. {
  26769. front: {
  26770. height: math.unit(5 + 10 / 12, "feet"),
  26771. weight: math.unit(165, "lb"),
  26772. name: "Front",
  26773. image: {
  26774. source: "./media/characters/nicky/front.svg",
  26775. extra: 3144 / 2886,
  26776. bottom: 45.6 / 3192
  26777. }
  26778. },
  26779. back: {
  26780. height: math.unit(5 + 10 / 12, "feet"),
  26781. weight: math.unit(165, "lb"),
  26782. name: "Back",
  26783. image: {
  26784. source: "./media/characters/nicky/back.svg",
  26785. extra: 3055 / 2804,
  26786. bottom: 28.4 / 3087
  26787. }
  26788. },
  26789. frontclothed: {
  26790. height: math.unit(5 + 10 / 12, "feet"),
  26791. weight: math.unit(165, "lb"),
  26792. name: "Front-clothed",
  26793. image: {
  26794. source: "./media/characters/nicky/front-clothed.svg",
  26795. extra: 3184.9 / 2926.9,
  26796. bottom: 86.5 / 3239.9
  26797. }
  26798. },
  26799. foot: {
  26800. height: math.unit(1.16, "feet"),
  26801. name: "Foot",
  26802. image: {
  26803. source: "./media/characters/nicky/foot.svg"
  26804. }
  26805. },
  26806. feet: {
  26807. height: math.unit(1.34, "feet"),
  26808. name: "Feet",
  26809. image: {
  26810. source: "./media/characters/nicky/feet.svg"
  26811. }
  26812. },
  26813. maw: {
  26814. height: math.unit(0.9, "feet"),
  26815. name: "Maw",
  26816. image: {
  26817. source: "./media/characters/nicky/maw.svg"
  26818. }
  26819. },
  26820. },
  26821. [
  26822. {
  26823. name: "Normal",
  26824. height: math.unit(5 + 10 / 12, "feet"),
  26825. default: true
  26826. },
  26827. {
  26828. name: "Macro",
  26829. height: math.unit(60, "feet")
  26830. },
  26831. {
  26832. name: "Megamacro",
  26833. height: math.unit(1, "mile")
  26834. },
  26835. ]
  26836. ))
  26837. characterMakers.push(() => makeCharacter(
  26838. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26839. {
  26840. side: {
  26841. height: math.unit(10, "feet"),
  26842. weight: math.unit(600, "lb"),
  26843. name: "Side",
  26844. image: {
  26845. source: "./media/characters/blair/side.svg",
  26846. bottom: 16.6 / 475,
  26847. extra: 458 / 431
  26848. }
  26849. },
  26850. },
  26851. [
  26852. {
  26853. name: "Micro",
  26854. height: math.unit(8, "inches")
  26855. },
  26856. {
  26857. name: "Normal",
  26858. height: math.unit(10, "feet"),
  26859. default: true
  26860. },
  26861. {
  26862. name: "Macro",
  26863. height: math.unit(180, "feet")
  26864. },
  26865. ]
  26866. ))
  26867. characterMakers.push(() => makeCharacter(
  26868. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26869. {
  26870. front: {
  26871. height: math.unit(5 + 4 / 12, "feet"),
  26872. weight: math.unit(125, "lb"),
  26873. name: "Front",
  26874. image: {
  26875. source: "./media/characters/fisher/front.svg",
  26876. extra: 444 / 390,
  26877. bottom: 2 / 444.8
  26878. }
  26879. },
  26880. },
  26881. [
  26882. {
  26883. name: "Micro",
  26884. height: math.unit(4, "inches")
  26885. },
  26886. {
  26887. name: "Normal",
  26888. height: math.unit(5 + 4 / 12, "feet"),
  26889. default: true
  26890. },
  26891. {
  26892. name: "Macro",
  26893. height: math.unit(100, "feet")
  26894. },
  26895. ]
  26896. ))
  26897. characterMakers.push(() => makeCharacter(
  26898. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26899. {
  26900. front: {
  26901. height: math.unit(6.71, "feet"),
  26902. weight: math.unit(200, "lb"),
  26903. preyCapacity: math.unit(1000000, "people"),
  26904. name: "Front",
  26905. image: {
  26906. source: "./media/characters/gliss/front.svg",
  26907. extra: 2347 / 2231,
  26908. bottom: 113 / 2462
  26909. }
  26910. },
  26911. hammerspaceSize: {
  26912. height: math.unit(6.71 * 717, "feet"),
  26913. weight: math.unit(200, "lb"),
  26914. preyCapacity: math.unit(1000000, "people"),
  26915. name: "Hammerspace Size",
  26916. image: {
  26917. source: "./media/characters/gliss/front.svg",
  26918. extra: 2347 / 2231,
  26919. bottom: 113 / 2462
  26920. }
  26921. },
  26922. },
  26923. [
  26924. {
  26925. name: "Normal",
  26926. height: math.unit(6.71, "feet"),
  26927. default: true
  26928. },
  26929. ]
  26930. ))
  26931. characterMakers.push(() => makeCharacter(
  26932. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26933. {
  26934. side: {
  26935. height: math.unit(1.44, "m"),
  26936. weight: math.unit(80, "kg"),
  26937. name: "Side",
  26938. image: {
  26939. source: "./media/characters/dune-anderson/side.svg",
  26940. bottom: 49 / 1426
  26941. }
  26942. },
  26943. },
  26944. [
  26945. {
  26946. name: "Wolf-sized",
  26947. height: math.unit(1.44, "meters")
  26948. },
  26949. {
  26950. name: "Normal",
  26951. height: math.unit(5.05, "meters"),
  26952. default: true
  26953. },
  26954. {
  26955. name: "Big",
  26956. height: math.unit(14.4, "meters")
  26957. },
  26958. {
  26959. name: "Huge",
  26960. height: math.unit(144, "meters")
  26961. },
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26966. {
  26967. front: {
  26968. height: math.unit(7, "feet"),
  26969. weight: math.unit(425, "lb"),
  26970. name: "Front",
  26971. image: {
  26972. source: "./media/characters/hind/front.svg",
  26973. extra: 2091 / 1860,
  26974. bottom: 129 / 2220
  26975. }
  26976. },
  26977. back: {
  26978. height: math.unit(7, "feet"),
  26979. weight: math.unit(425, "lb"),
  26980. name: "Back",
  26981. image: {
  26982. source: "./media/characters/hind/back.svg",
  26983. extra: 2091 / 1860,
  26984. bottom: 24.6 / 2309
  26985. }
  26986. },
  26987. tail: {
  26988. height: math.unit(2.8, "feet"),
  26989. name: "Tail",
  26990. image: {
  26991. source: "./media/characters/hind/tail.svg"
  26992. }
  26993. },
  26994. head: {
  26995. height: math.unit(2.55, "feet"),
  26996. name: "Head",
  26997. image: {
  26998. source: "./media/characters/hind/head.svg"
  26999. }
  27000. },
  27001. },
  27002. [
  27003. {
  27004. name: "XS",
  27005. height: math.unit(0.7, "feet")
  27006. },
  27007. {
  27008. name: "Normal",
  27009. height: math.unit(7, "feet"),
  27010. default: true
  27011. },
  27012. {
  27013. name: "XL",
  27014. height: math.unit(70, "feet")
  27015. },
  27016. ]
  27017. ))
  27018. characterMakers.push(() => makeCharacter(
  27019. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27020. {
  27021. front: {
  27022. height: math.unit(2.1, "meters"),
  27023. weight: math.unit(150, "lb"),
  27024. name: "Front",
  27025. image: {
  27026. source: "./media/characters/tharquench-sizestealer/front.svg",
  27027. extra: 1605/1470,
  27028. bottom: 36/1641
  27029. }
  27030. },
  27031. frontAlt: {
  27032. height: math.unit(2.1, "meters"),
  27033. weight: math.unit(150, "lb"),
  27034. name: "Front (Alt)",
  27035. image: {
  27036. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27037. extra: 2318 / 2063,
  27038. bottom: 93.4 / 2410
  27039. }
  27040. },
  27041. },
  27042. [
  27043. {
  27044. name: "Nano",
  27045. height: math.unit(1, "mm")
  27046. },
  27047. {
  27048. name: "Micro",
  27049. height: math.unit(1, "cm")
  27050. },
  27051. {
  27052. name: "Normal",
  27053. height: math.unit(2.1, "meters"),
  27054. default: true
  27055. },
  27056. ]
  27057. ))
  27058. characterMakers.push(() => makeCharacter(
  27059. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27060. {
  27061. front: {
  27062. height: math.unit(7 + 5 / 12, "feet"),
  27063. weight: math.unit(357, "lb"),
  27064. name: "Front",
  27065. image: {
  27066. source: "./media/characters/solex-draconov/front.svg",
  27067. extra: 1993 / 1865,
  27068. bottom: 117 / 2111
  27069. }
  27070. },
  27071. },
  27072. [
  27073. {
  27074. name: "Natural Height",
  27075. height: math.unit(7 + 5 / 12, "feet"),
  27076. default: true
  27077. },
  27078. {
  27079. name: "Macro",
  27080. height: math.unit(350, "feet")
  27081. },
  27082. {
  27083. name: "Macro+",
  27084. height: math.unit(1000, "feet")
  27085. },
  27086. {
  27087. name: "Megamacro",
  27088. height: math.unit(20, "km")
  27089. },
  27090. {
  27091. name: "Megamacro+",
  27092. height: math.unit(1000, "km")
  27093. },
  27094. {
  27095. name: "Gigamacro",
  27096. height: math.unit(2.5, "Gm")
  27097. },
  27098. {
  27099. name: "Teramacro",
  27100. height: math.unit(15, "Tm")
  27101. },
  27102. {
  27103. name: "Galactic",
  27104. height: math.unit(30, "Zm")
  27105. },
  27106. {
  27107. name: "Universal",
  27108. height: math.unit(21000, "Ym")
  27109. },
  27110. {
  27111. name: "Omniversal",
  27112. height: math.unit(9.861e50, "Ym")
  27113. },
  27114. {
  27115. name: "Existential",
  27116. height: math.unit(1e300, "meters")
  27117. },
  27118. ]
  27119. ))
  27120. characterMakers.push(() => makeCharacter(
  27121. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27122. {
  27123. side: {
  27124. height: math.unit(25, "feet"),
  27125. weight: math.unit(90000, "lb"),
  27126. name: "Side",
  27127. image: {
  27128. source: "./media/characters/mandarax/side.svg",
  27129. extra: 614 / 332,
  27130. bottom: 55 / 630
  27131. }
  27132. },
  27133. lounging: {
  27134. height: math.unit(15.4, "feet"),
  27135. weight: math.unit(90000, "lb"),
  27136. name: "Lounging",
  27137. image: {
  27138. source: "./media/characters/mandarax/lounging.svg",
  27139. extra: 817/609,
  27140. bottom: 685/1502
  27141. }
  27142. },
  27143. head: {
  27144. height: math.unit(11.4, "feet"),
  27145. name: "Head",
  27146. image: {
  27147. source: "./media/characters/mandarax/head.svg"
  27148. }
  27149. },
  27150. belly: {
  27151. height: math.unit(33, "feet"),
  27152. name: "Belly",
  27153. preyCapacity: math.unit(500, "people"),
  27154. image: {
  27155. source: "./media/characters/mandarax/belly.svg"
  27156. }
  27157. },
  27158. dick: {
  27159. height: math.unit(8.46, "feet"),
  27160. name: "Dick",
  27161. image: {
  27162. source: "./media/characters/mandarax/dick.svg"
  27163. }
  27164. },
  27165. top: {
  27166. height: math.unit(28, "meters"),
  27167. name: "Top",
  27168. image: {
  27169. source: "./media/characters/mandarax/top.svg"
  27170. }
  27171. },
  27172. },
  27173. [
  27174. {
  27175. name: "Normal",
  27176. height: math.unit(25, "feet"),
  27177. default: true
  27178. },
  27179. ]
  27180. ))
  27181. characterMakers.push(() => makeCharacter(
  27182. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27183. {
  27184. front: {
  27185. height: math.unit(5, "feet"),
  27186. weight: math.unit(90, "lb"),
  27187. name: "Front",
  27188. image: {
  27189. source: "./media/characters/pixil/front.svg",
  27190. extra: 2000 / 1618,
  27191. bottom: 12.3 / 2011
  27192. }
  27193. },
  27194. },
  27195. [
  27196. {
  27197. name: "Normal",
  27198. height: math.unit(5, "feet"),
  27199. default: true
  27200. },
  27201. {
  27202. name: "Megamacro",
  27203. height: math.unit(10, "miles"),
  27204. },
  27205. ]
  27206. ))
  27207. characterMakers.push(() => makeCharacter(
  27208. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27209. {
  27210. front: {
  27211. height: math.unit(7 + 2 / 12, "feet"),
  27212. weight: math.unit(200, "lb"),
  27213. name: "Front",
  27214. image: {
  27215. source: "./media/characters/angel/front.svg",
  27216. extra: 1830 / 1737,
  27217. bottom: 22.6 / 1854,
  27218. }
  27219. },
  27220. },
  27221. [
  27222. {
  27223. name: "Normal",
  27224. height: math.unit(7 + 2 / 12, "feet"),
  27225. default: true
  27226. },
  27227. {
  27228. name: "Macro",
  27229. height: math.unit(1000, "feet")
  27230. },
  27231. {
  27232. name: "Megamacro",
  27233. height: math.unit(2, "miles")
  27234. },
  27235. {
  27236. name: "Gigamacro",
  27237. height: math.unit(20, "earths")
  27238. },
  27239. ]
  27240. ))
  27241. characterMakers.push(() => makeCharacter(
  27242. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27243. {
  27244. front: {
  27245. height: math.unit(5, "feet"),
  27246. weight: math.unit(180, "lb"),
  27247. name: "Front",
  27248. image: {
  27249. source: "./media/characters/mekana/front.svg",
  27250. extra: 1671 / 1605,
  27251. bottom: 3.5 / 1691
  27252. }
  27253. },
  27254. side: {
  27255. height: math.unit(5, "feet"),
  27256. weight: math.unit(180, "lb"),
  27257. name: "Side",
  27258. image: {
  27259. source: "./media/characters/mekana/side.svg",
  27260. extra: 1671 / 1605,
  27261. bottom: 3.5 / 1691
  27262. }
  27263. },
  27264. back: {
  27265. height: math.unit(5, "feet"),
  27266. weight: math.unit(180, "lb"),
  27267. name: "Back",
  27268. image: {
  27269. source: "./media/characters/mekana/back.svg",
  27270. extra: 1671 / 1605,
  27271. bottom: 3.5 / 1691
  27272. }
  27273. },
  27274. },
  27275. [
  27276. {
  27277. name: "Normal",
  27278. height: math.unit(5, "feet"),
  27279. default: true
  27280. },
  27281. ]
  27282. ))
  27283. characterMakers.push(() => makeCharacter(
  27284. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27285. {
  27286. front: {
  27287. height: math.unit(4 + 6 / 12, "feet"),
  27288. weight: math.unit(80, "lb"),
  27289. name: "Front",
  27290. image: {
  27291. source: "./media/characters/pixie/front.svg",
  27292. extra: 1924 / 1825,
  27293. bottom: 22.4 / 1946
  27294. }
  27295. },
  27296. },
  27297. [
  27298. {
  27299. name: "Normal",
  27300. height: math.unit(4 + 6 / 12, "feet"),
  27301. default: true
  27302. },
  27303. {
  27304. name: "Macro",
  27305. height: math.unit(40, "feet")
  27306. },
  27307. ]
  27308. ))
  27309. characterMakers.push(() => makeCharacter(
  27310. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27311. {
  27312. front: {
  27313. height: math.unit(2.1, "meters"),
  27314. weight: math.unit(200, "lb"),
  27315. name: "Front",
  27316. image: {
  27317. source: "./media/characters/the-lascivious/front.svg",
  27318. extra: 1 / 0.893,
  27319. bottom: 3.5 / 573.7
  27320. }
  27321. },
  27322. },
  27323. [
  27324. {
  27325. name: "Human Scale",
  27326. height: math.unit(2.1, "meters")
  27327. },
  27328. {
  27329. name: "Wolxi Scale",
  27330. height: math.unit(46.2, "m"),
  27331. default: true
  27332. },
  27333. {
  27334. name: "Boinker of Buildings",
  27335. height: math.unit(10, "km")
  27336. },
  27337. {
  27338. name: "Shagger of Skyscrapers",
  27339. height: math.unit(40, "km")
  27340. },
  27341. {
  27342. name: "Banger of Boroughs",
  27343. height: math.unit(4000, "km")
  27344. },
  27345. {
  27346. name: "Screwer of States",
  27347. height: math.unit(100000, "km")
  27348. },
  27349. {
  27350. name: "Pounder of Planets",
  27351. height: math.unit(2000000, "km")
  27352. },
  27353. ]
  27354. ))
  27355. characterMakers.push(() => makeCharacter(
  27356. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27357. {
  27358. front: {
  27359. height: math.unit(6, "feet"),
  27360. weight: math.unit(150, "lb"),
  27361. name: "Front",
  27362. image: {
  27363. source: "./media/characters/aj/front.svg",
  27364. extra: 2039 / 1562,
  27365. bottom: 40 / 2079
  27366. }
  27367. },
  27368. },
  27369. [
  27370. {
  27371. name: "Normal",
  27372. height: math.unit(11 + 6 / 12, "feet"),
  27373. default: true
  27374. },
  27375. {
  27376. name: "Megamacro",
  27377. height: math.unit(60, "megameters")
  27378. },
  27379. ]
  27380. ))
  27381. characterMakers.push(() => makeCharacter(
  27382. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27383. {
  27384. side: {
  27385. height: math.unit(31 + 8 / 12, "feet"),
  27386. weight: math.unit(75000, "kg"),
  27387. name: "Side",
  27388. image: {
  27389. source: "./media/characters/koros/side.svg",
  27390. extra: 1442 / 1297,
  27391. bottom: 122.7 / 1562
  27392. }
  27393. },
  27394. dicksKingsCrown: {
  27395. height: math.unit(6, "feet"),
  27396. name: "Dicks (King's Crown)",
  27397. image: {
  27398. source: "./media/characters/koros/dicks-kings-crown.svg"
  27399. }
  27400. },
  27401. dicksTailSet: {
  27402. height: math.unit(3, "feet"),
  27403. name: "Dicks (Tail Set)",
  27404. image: {
  27405. source: "./media/characters/koros/dicks-tail-set.svg"
  27406. }
  27407. },
  27408. dickCumming: {
  27409. height: math.unit(7.98, "feet"),
  27410. name: "Dick (Cumming)",
  27411. image: {
  27412. source: "./media/characters/koros/dick-cumming.svg"
  27413. }
  27414. },
  27415. dicksBack: {
  27416. height: math.unit(5.9, "feet"),
  27417. name: "Dicks (Back)",
  27418. image: {
  27419. source: "./media/characters/koros/dicks-back.svg"
  27420. }
  27421. },
  27422. dicksFront: {
  27423. height: math.unit(3.72, "feet"),
  27424. name: "Dicks (Front)",
  27425. image: {
  27426. source: "./media/characters/koros/dicks-front.svg"
  27427. }
  27428. },
  27429. dicksPeeking: {
  27430. height: math.unit(3.0, "feet"),
  27431. name: "Dicks (Peeking)",
  27432. image: {
  27433. source: "./media/characters/koros/dicks-peeking.svg"
  27434. }
  27435. },
  27436. eye: {
  27437. height: math.unit(1.7, "feet"),
  27438. name: "Eye",
  27439. image: {
  27440. source: "./media/characters/koros/eye.svg"
  27441. }
  27442. },
  27443. headFront: {
  27444. height: math.unit(11.69, "feet"),
  27445. name: "Head (Front)",
  27446. image: {
  27447. source: "./media/characters/koros/head-front.svg"
  27448. }
  27449. },
  27450. headSide: {
  27451. height: math.unit(14, "feet"),
  27452. name: "Head (Side)",
  27453. image: {
  27454. source: "./media/characters/koros/head-side.svg"
  27455. }
  27456. },
  27457. leg: {
  27458. height: math.unit(17, "feet"),
  27459. name: "Leg",
  27460. image: {
  27461. source: "./media/characters/koros/leg.svg"
  27462. }
  27463. },
  27464. mawSide: {
  27465. height: math.unit(12.8, "feet"),
  27466. name: "Maw (Side)",
  27467. image: {
  27468. source: "./media/characters/koros/maw-side.svg"
  27469. }
  27470. },
  27471. mawSpitting: {
  27472. height: math.unit(17, "feet"),
  27473. name: "Maw (Spitting)",
  27474. image: {
  27475. source: "./media/characters/koros/maw-spitting.svg"
  27476. }
  27477. },
  27478. slit: {
  27479. height: math.unit(2.8, "feet"),
  27480. name: "Slit",
  27481. image: {
  27482. source: "./media/characters/koros/slit.svg"
  27483. }
  27484. },
  27485. stomach: {
  27486. height: math.unit(6.8, "feet"),
  27487. preyCapacity: math.unit(20, "people"),
  27488. name: "Stomach",
  27489. image: {
  27490. source: "./media/characters/koros/stomach.svg"
  27491. }
  27492. },
  27493. wingspanBottom: {
  27494. height: math.unit(114, "feet"),
  27495. name: "Wingspan (Bottom)",
  27496. image: {
  27497. source: "./media/characters/koros/wingspan-bottom.svg"
  27498. }
  27499. },
  27500. wingspanTop: {
  27501. height: math.unit(104, "feet"),
  27502. name: "Wingspan (Top)",
  27503. image: {
  27504. source: "./media/characters/koros/wingspan-top.svg"
  27505. }
  27506. },
  27507. },
  27508. [
  27509. {
  27510. name: "Normal",
  27511. height: math.unit(31 + 8 / 12, "feet"),
  27512. default: true
  27513. },
  27514. ]
  27515. ))
  27516. characterMakers.push(() => makeCharacter(
  27517. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27518. {
  27519. front: {
  27520. height: math.unit(18 + 5 / 12, "feet"),
  27521. weight: math.unit(3750, "kg"),
  27522. name: "Front",
  27523. image: {
  27524. source: "./media/characters/vexx/front.svg",
  27525. extra: 426 / 396,
  27526. bottom: 31.5 / 458
  27527. }
  27528. },
  27529. maw: {
  27530. height: math.unit(6, "feet"),
  27531. name: "Maw",
  27532. image: {
  27533. source: "./media/characters/vexx/maw.svg"
  27534. }
  27535. },
  27536. },
  27537. [
  27538. {
  27539. name: "Normal",
  27540. height: math.unit(18 + 5 / 12, "feet"),
  27541. default: true
  27542. },
  27543. ]
  27544. ))
  27545. characterMakers.push(() => makeCharacter(
  27546. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27547. {
  27548. front: {
  27549. height: math.unit(17 + 6 / 12, "feet"),
  27550. weight: math.unit(150, "lb"),
  27551. name: "Front",
  27552. image: {
  27553. source: "./media/characters/baadra/front.svg",
  27554. extra: 1694/1553,
  27555. bottom: 179/1873
  27556. }
  27557. },
  27558. frontAlt: {
  27559. height: math.unit(17 + 6 / 12, "feet"),
  27560. weight: math.unit(150, "lb"),
  27561. name: "Front (Alt)",
  27562. image: {
  27563. source: "./media/characters/baadra/front-alt.svg",
  27564. extra: 3137 / 2890,
  27565. bottom: 168.4 / 3305
  27566. }
  27567. },
  27568. back: {
  27569. height: math.unit(17 + 6 / 12, "feet"),
  27570. weight: math.unit(150, "lb"),
  27571. name: "Back",
  27572. image: {
  27573. source: "./media/characters/baadra/back.svg",
  27574. extra: 3142 / 2890,
  27575. bottom: 220 / 3371
  27576. }
  27577. },
  27578. head: {
  27579. height: math.unit(5.45, "feet"),
  27580. name: "Head",
  27581. image: {
  27582. source: "./media/characters/baadra/head.svg"
  27583. }
  27584. },
  27585. headAngry: {
  27586. height: math.unit(4.95, "feet"),
  27587. name: "Head (Angry)",
  27588. image: {
  27589. source: "./media/characters/baadra/head-angry.svg"
  27590. }
  27591. },
  27592. headOpen: {
  27593. height: math.unit(6, "feet"),
  27594. name: "Head (Open)",
  27595. image: {
  27596. source: "./media/characters/baadra/head-open.svg"
  27597. }
  27598. },
  27599. },
  27600. [
  27601. {
  27602. name: "Normal",
  27603. height: math.unit(17 + 6 / 12, "feet"),
  27604. default: true
  27605. },
  27606. ]
  27607. ))
  27608. characterMakers.push(() => makeCharacter(
  27609. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27610. {
  27611. front: {
  27612. height: math.unit(7 + 3 / 12, "feet"),
  27613. weight: math.unit(180, "lb"),
  27614. name: "Front",
  27615. image: {
  27616. source: "./media/characters/juri/front.svg",
  27617. extra: 1401 / 1237,
  27618. bottom: 18.5 / 1418
  27619. }
  27620. },
  27621. side: {
  27622. height: math.unit(7 + 3 / 12, "feet"),
  27623. weight: math.unit(180, "lb"),
  27624. name: "Side",
  27625. image: {
  27626. source: "./media/characters/juri/side.svg",
  27627. extra: 1424 / 1242,
  27628. bottom: 18.5 / 1447
  27629. }
  27630. },
  27631. sitting: {
  27632. height: math.unit(6, "feet"),
  27633. weight: math.unit(180, "lb"),
  27634. name: "Sitting",
  27635. image: {
  27636. source: "./media/characters/juri/sitting.svg",
  27637. extra: 1270 / 1143,
  27638. bottom: 100 / 1343
  27639. }
  27640. },
  27641. back: {
  27642. height: math.unit(7 + 3 / 12, "feet"),
  27643. weight: math.unit(180, "lb"),
  27644. name: "Back",
  27645. image: {
  27646. source: "./media/characters/juri/back.svg",
  27647. extra: 1377 / 1240,
  27648. bottom: 23.7 / 1405
  27649. }
  27650. },
  27651. maw: {
  27652. height: math.unit(2.8, "feet"),
  27653. name: "Maw",
  27654. image: {
  27655. source: "./media/characters/juri/maw.svg"
  27656. }
  27657. },
  27658. stomach: {
  27659. height: math.unit(0.89, "feet"),
  27660. preyCapacity: math.unit(4, "liters"),
  27661. name: "Stomach",
  27662. image: {
  27663. source: "./media/characters/juri/stomach.svg"
  27664. }
  27665. },
  27666. },
  27667. [
  27668. {
  27669. name: "Normal",
  27670. height: math.unit(7 + 3 / 12, "feet"),
  27671. default: true
  27672. },
  27673. ]
  27674. ))
  27675. characterMakers.push(() => makeCharacter(
  27676. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27677. {
  27678. fox: {
  27679. height: math.unit(5 + 6 / 12, "feet"),
  27680. weight: math.unit(140, "lb"),
  27681. name: "Fox",
  27682. image: {
  27683. source: "./media/characters/maxene-sita/fox.svg",
  27684. extra: 146 / 138,
  27685. bottom: 2.1 / 148.19
  27686. }
  27687. },
  27688. foxLaying: {
  27689. height: math.unit(1.70, "feet"),
  27690. weight: math.unit(140, "lb"),
  27691. name: "Fox (Laying)",
  27692. image: {
  27693. source: "./media/characters/maxene-sita/fox-laying.svg",
  27694. extra: 910 / 572,
  27695. bottom: 71 / 981
  27696. }
  27697. },
  27698. kitsune: {
  27699. height: math.unit(10, "feet"),
  27700. weight: math.unit(800, "lb"),
  27701. name: "Kitsune",
  27702. image: {
  27703. source: "./media/characters/maxene-sita/kitsune.svg",
  27704. extra: 185 / 176,
  27705. bottom: 4.7 / 189.9
  27706. }
  27707. },
  27708. hellhound: {
  27709. height: math.unit(10, "feet"),
  27710. weight: math.unit(700, "lb"),
  27711. name: "Hellhound",
  27712. image: {
  27713. source: "./media/characters/maxene-sita/hellhound.svg",
  27714. extra: 1600 / 1545,
  27715. bottom: 81 / 1681
  27716. }
  27717. },
  27718. },
  27719. [
  27720. {
  27721. name: "Normal",
  27722. height: math.unit(5 + 6 / 12, "feet"),
  27723. default: true
  27724. },
  27725. ]
  27726. ))
  27727. characterMakers.push(() => makeCharacter(
  27728. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27729. {
  27730. front: {
  27731. height: math.unit(3 + 4 / 12, "feet"),
  27732. weight: math.unit(70, "lb"),
  27733. name: "Front",
  27734. image: {
  27735. source: "./media/characters/maia/front.svg",
  27736. extra: 227 / 219.5,
  27737. bottom: 40 / 267
  27738. }
  27739. },
  27740. back: {
  27741. height: math.unit(3 + 4 / 12, "feet"),
  27742. weight: math.unit(70, "lb"),
  27743. name: "Back",
  27744. image: {
  27745. source: "./media/characters/maia/back.svg",
  27746. extra: 237 / 225
  27747. }
  27748. },
  27749. },
  27750. [
  27751. {
  27752. name: "Normal",
  27753. height: math.unit(3 + 4 / 12, "feet"),
  27754. default: true
  27755. },
  27756. ]
  27757. ))
  27758. characterMakers.push(() => makeCharacter(
  27759. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27760. {
  27761. front: {
  27762. height: math.unit(5 + 10 / 12, "feet"),
  27763. weight: math.unit(197, "lb"),
  27764. name: "Front",
  27765. image: {
  27766. source: "./media/characters/jabaro/front.svg",
  27767. extra: 225 / 216,
  27768. bottom: 5.06 / 230
  27769. }
  27770. },
  27771. back: {
  27772. height: math.unit(5 + 10 / 12, "feet"),
  27773. weight: math.unit(197, "lb"),
  27774. name: "Back",
  27775. image: {
  27776. source: "./media/characters/jabaro/back.svg",
  27777. extra: 225 / 219,
  27778. bottom: 1.9 / 227
  27779. }
  27780. },
  27781. },
  27782. [
  27783. {
  27784. name: "Normal",
  27785. height: math.unit(5 + 10 / 12, "feet"),
  27786. default: true
  27787. },
  27788. ]
  27789. ))
  27790. characterMakers.push(() => makeCharacter(
  27791. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27792. {
  27793. front: {
  27794. height: math.unit(5 + 8 / 12, "feet"),
  27795. weight: math.unit(139, "lb"),
  27796. name: "Front",
  27797. image: {
  27798. source: "./media/characters/risa/front.svg",
  27799. extra: 270 / 260,
  27800. bottom: 11.2 / 282
  27801. }
  27802. },
  27803. back: {
  27804. height: math.unit(5 + 8 / 12, "feet"),
  27805. weight: math.unit(139, "lb"),
  27806. name: "Back",
  27807. image: {
  27808. source: "./media/characters/risa/back.svg",
  27809. extra: 264 / 255,
  27810. bottom: 4 / 268
  27811. }
  27812. },
  27813. },
  27814. [
  27815. {
  27816. name: "Normal",
  27817. height: math.unit(5 + 8 / 12, "feet"),
  27818. default: true
  27819. },
  27820. ]
  27821. ))
  27822. characterMakers.push(() => makeCharacter(
  27823. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27824. {
  27825. front: {
  27826. height: math.unit(2 + 11 / 12, "feet"),
  27827. weight: math.unit(30, "lb"),
  27828. name: "Front",
  27829. image: {
  27830. source: "./media/characters/weatley/front.svg",
  27831. bottom: 10.7 / 414,
  27832. extra: 403.5 / 362
  27833. }
  27834. },
  27835. back: {
  27836. height: math.unit(2 + 11 / 12, "feet"),
  27837. weight: math.unit(30, "lb"),
  27838. name: "Back",
  27839. image: {
  27840. source: "./media/characters/weatley/back.svg",
  27841. bottom: 10.7 / 414,
  27842. extra: 403.5 / 362
  27843. }
  27844. },
  27845. },
  27846. [
  27847. {
  27848. name: "Normal",
  27849. height: math.unit(2 + 11 / 12, "feet"),
  27850. default: true
  27851. },
  27852. ]
  27853. ))
  27854. characterMakers.push(() => makeCharacter(
  27855. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27856. {
  27857. front: {
  27858. height: math.unit(5 + 2 / 12, "feet"),
  27859. weight: math.unit(50, "kg"),
  27860. name: "Front",
  27861. image: {
  27862. source: "./media/characters/mercury-crescent/front.svg",
  27863. extra: 1088 / 1033,
  27864. bottom: 18.9 / 1109
  27865. }
  27866. },
  27867. },
  27868. [
  27869. {
  27870. name: "Normal",
  27871. height: math.unit(5 + 2 / 12, "feet"),
  27872. default: true
  27873. },
  27874. ]
  27875. ))
  27876. characterMakers.push(() => makeCharacter(
  27877. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27878. {
  27879. front: {
  27880. height: math.unit(2, "feet"),
  27881. weight: math.unit(15, "kg"),
  27882. name: "Front",
  27883. image: {
  27884. source: "./media/characters/diamond-jones/front.svg",
  27885. extra: 727/723,
  27886. bottom: 46/773
  27887. }
  27888. },
  27889. },
  27890. [
  27891. {
  27892. name: "Normal",
  27893. height: math.unit(2, "feet"),
  27894. default: true
  27895. },
  27896. ]
  27897. ))
  27898. characterMakers.push(() => makeCharacter(
  27899. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27900. {
  27901. front: {
  27902. height: math.unit(3, "feet"),
  27903. weight: math.unit(30, "kg"),
  27904. name: "Front",
  27905. image: {
  27906. source: "./media/characters/sweet-bit/front.svg",
  27907. extra: 675 / 567,
  27908. bottom: 27.7 / 703
  27909. }
  27910. },
  27911. },
  27912. [
  27913. {
  27914. name: "Normal",
  27915. height: math.unit(3, "feet"),
  27916. default: true
  27917. },
  27918. ]
  27919. ))
  27920. characterMakers.push(() => makeCharacter(
  27921. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27922. {
  27923. side: {
  27924. height: math.unit(9.178, "feet"),
  27925. weight: math.unit(500, "lb"),
  27926. name: "Side",
  27927. image: {
  27928. source: "./media/characters/umbrazen/side.svg",
  27929. extra: 1730 / 1473,
  27930. bottom: 34.6 / 1765
  27931. }
  27932. },
  27933. },
  27934. [
  27935. {
  27936. name: "Normal",
  27937. height: math.unit(9.178, "feet"),
  27938. default: true
  27939. },
  27940. ]
  27941. ))
  27942. characterMakers.push(() => makeCharacter(
  27943. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27944. {
  27945. front: {
  27946. height: math.unit(10, "feet"),
  27947. weight: math.unit(750, "lb"),
  27948. name: "Front",
  27949. image: {
  27950. source: "./media/characters/arlist/front.svg",
  27951. extra: 961 / 778,
  27952. bottom: 6.2 / 986
  27953. }
  27954. },
  27955. },
  27956. [
  27957. {
  27958. name: "Normal",
  27959. height: math.unit(10, "feet"),
  27960. default: true
  27961. },
  27962. ]
  27963. ))
  27964. characterMakers.push(() => makeCharacter(
  27965. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27966. {
  27967. front: {
  27968. height: math.unit(5 + 1 / 12, "feet"),
  27969. weight: math.unit(110, "lb"),
  27970. name: "Front",
  27971. image: {
  27972. source: "./media/characters/aradel/front.svg",
  27973. extra: 324 / 303,
  27974. bottom: 3.6 / 329.4
  27975. }
  27976. },
  27977. },
  27978. [
  27979. {
  27980. name: "Normal",
  27981. height: math.unit(5 + 1 / 12, "feet"),
  27982. default: true
  27983. },
  27984. ]
  27985. ))
  27986. characterMakers.push(() => makeCharacter(
  27987. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27988. {
  27989. dressed: {
  27990. height: math.unit(3 + 8 / 12, "feet"),
  27991. weight: math.unit(50, "lb"),
  27992. name: "Dressed",
  27993. image: {
  27994. source: "./media/characters/serryn/dressed.svg",
  27995. extra: 1792 / 1656,
  27996. bottom: 43.5 / 1840
  27997. }
  27998. },
  27999. nude: {
  28000. height: math.unit(3 + 8 / 12, "feet"),
  28001. weight: math.unit(50, "lb"),
  28002. name: "Nude",
  28003. image: {
  28004. source: "./media/characters/serryn/nude.svg",
  28005. extra: 1792 / 1656,
  28006. bottom: 43.5 / 1840
  28007. }
  28008. },
  28009. },
  28010. [
  28011. {
  28012. name: "Normal",
  28013. height: math.unit(3 + 8 / 12, "feet"),
  28014. default: true
  28015. },
  28016. ]
  28017. ))
  28018. characterMakers.push(() => makeCharacter(
  28019. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28020. {
  28021. front: {
  28022. height: math.unit(7 + 10 / 12, "feet"),
  28023. weight: math.unit(255, "lb"),
  28024. name: "Front",
  28025. image: {
  28026. source: "./media/characters/xavier-thyme/front.svg",
  28027. extra: 3733 / 3642,
  28028. bottom: 131 / 3869
  28029. }
  28030. },
  28031. frontRaven: {
  28032. height: math.unit(7 + 10 / 12, "feet"),
  28033. weight: math.unit(255, "lb"),
  28034. name: "Front (Raven)",
  28035. image: {
  28036. source: "./media/characters/xavier-thyme/front-raven.svg",
  28037. extra: 4385 / 3642,
  28038. bottom: 131 / 4517
  28039. }
  28040. },
  28041. },
  28042. [
  28043. {
  28044. name: "Normal",
  28045. height: math.unit(7 + 10 / 12, "feet"),
  28046. default: true
  28047. },
  28048. ]
  28049. ))
  28050. characterMakers.push(() => makeCharacter(
  28051. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28052. {
  28053. front: {
  28054. height: math.unit(1.6, "m"),
  28055. weight: math.unit(50, "kg"),
  28056. name: "Front",
  28057. image: {
  28058. source: "./media/characters/kiki/front.svg",
  28059. extra: 4682 / 3610,
  28060. bottom: 115 / 4777
  28061. }
  28062. },
  28063. },
  28064. [
  28065. {
  28066. name: "Normal",
  28067. height: math.unit(1.6, "meters"),
  28068. default: true
  28069. },
  28070. ]
  28071. ))
  28072. characterMakers.push(() => makeCharacter(
  28073. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28074. {
  28075. front: {
  28076. height: math.unit(50, "m"),
  28077. weight: math.unit(500, "tonnes"),
  28078. name: "Front",
  28079. image: {
  28080. source: "./media/characters/ryoko/front.svg",
  28081. extra: 4632 / 3926,
  28082. bottom: 193 / 4823
  28083. }
  28084. },
  28085. },
  28086. [
  28087. {
  28088. name: "Normal",
  28089. height: math.unit(50, "meters"),
  28090. default: true
  28091. },
  28092. ]
  28093. ))
  28094. characterMakers.push(() => makeCharacter(
  28095. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28096. {
  28097. front: {
  28098. height: math.unit(30, "m"),
  28099. weight: math.unit(22, "tonnes"),
  28100. name: "Front",
  28101. image: {
  28102. source: "./media/characters/elio/front.svg",
  28103. extra: 4582 / 3720,
  28104. bottom: 236 / 4828
  28105. }
  28106. },
  28107. },
  28108. [
  28109. {
  28110. name: "Normal",
  28111. height: math.unit(30, "meters"),
  28112. default: true
  28113. },
  28114. ]
  28115. ))
  28116. characterMakers.push(() => makeCharacter(
  28117. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28118. {
  28119. front: {
  28120. height: math.unit(6 + 3 / 12, "feet"),
  28121. weight: math.unit(120, "lb"),
  28122. name: "Front",
  28123. image: {
  28124. source: "./media/characters/azura/front.svg",
  28125. extra: 1149 / 1135,
  28126. bottom: 45 / 1194
  28127. }
  28128. },
  28129. frontClothed: {
  28130. height: math.unit(6 + 3 / 12, "feet"),
  28131. weight: math.unit(120, "lb"),
  28132. name: "Front (Clothed)",
  28133. image: {
  28134. source: "./media/characters/azura/front-clothed.svg",
  28135. extra: 1149 / 1135,
  28136. bottom: 45 / 1194
  28137. }
  28138. },
  28139. },
  28140. [
  28141. {
  28142. name: "Normal",
  28143. height: math.unit(6 + 3 / 12, "feet"),
  28144. default: true
  28145. },
  28146. {
  28147. name: "Macro",
  28148. height: math.unit(20 + 6 / 12, "feet")
  28149. },
  28150. {
  28151. name: "Megamacro",
  28152. height: math.unit(12, "miles")
  28153. },
  28154. {
  28155. name: "Gigamacro",
  28156. height: math.unit(10000, "miles")
  28157. },
  28158. {
  28159. name: "Teramacro",
  28160. height: math.unit(900000, "miles")
  28161. },
  28162. ]
  28163. ))
  28164. characterMakers.push(() => makeCharacter(
  28165. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28166. {
  28167. front: {
  28168. height: math.unit(12, "feet"),
  28169. weight: math.unit(1, "ton"),
  28170. capacity: math.unit(660000, "gallons"),
  28171. name: "Front",
  28172. image: {
  28173. source: "./media/characters/zeus/front.svg",
  28174. extra: 5005 / 4717,
  28175. bottom: 363 / 5388
  28176. }
  28177. },
  28178. },
  28179. [
  28180. {
  28181. name: "Normal",
  28182. height: math.unit(12, "feet")
  28183. },
  28184. {
  28185. name: "Preferred Size",
  28186. height: math.unit(0.5, "miles"),
  28187. default: true
  28188. },
  28189. {
  28190. name: "Giga Horse",
  28191. height: math.unit(300, "miles")
  28192. },
  28193. {
  28194. name: "Riding Planets",
  28195. height: math.unit(30, "megameters")
  28196. },
  28197. {
  28198. name: "Cosmic Giant",
  28199. height: math.unit(3, "zettameters")
  28200. },
  28201. {
  28202. name: "Breeding God",
  28203. height: math.unit(9.92e22, "yottameters")
  28204. },
  28205. ]
  28206. ))
  28207. characterMakers.push(() => makeCharacter(
  28208. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28209. {
  28210. side: {
  28211. height: math.unit(9, "feet"),
  28212. weight: math.unit(1500, "kg"),
  28213. name: "Side",
  28214. image: {
  28215. source: "./media/characters/fang/side.svg",
  28216. extra: 924 / 866,
  28217. bottom: 47.5 / 972.3
  28218. }
  28219. },
  28220. },
  28221. [
  28222. {
  28223. name: "Normal",
  28224. height: math.unit(9, "feet"),
  28225. default: true
  28226. },
  28227. {
  28228. name: "Macro",
  28229. height: math.unit(75 + 6 / 12, "feet")
  28230. },
  28231. {
  28232. name: "Teramacro",
  28233. height: math.unit(50000, "miles")
  28234. },
  28235. ]
  28236. ))
  28237. characterMakers.push(() => makeCharacter(
  28238. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28239. {
  28240. front: {
  28241. height: math.unit(10, "feet"),
  28242. weight: math.unit(2, "tons"),
  28243. name: "Front",
  28244. image: {
  28245. source: "./media/characters/rekhit/front.svg",
  28246. extra: 2796 / 2590,
  28247. bottom: 225 / 3022
  28248. }
  28249. },
  28250. },
  28251. [
  28252. {
  28253. name: "Normal",
  28254. height: math.unit(10, "feet"),
  28255. default: true
  28256. },
  28257. {
  28258. name: "Macro",
  28259. height: math.unit(500, "feet")
  28260. },
  28261. ]
  28262. ))
  28263. characterMakers.push(() => makeCharacter(
  28264. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28265. {
  28266. front: {
  28267. height: math.unit(7 + 6.451 / 12, "feet"),
  28268. weight: math.unit(310, "lb"),
  28269. name: "Front",
  28270. image: {
  28271. source: "./media/characters/dahlia-verrick/front.svg",
  28272. extra: 1488 / 1365,
  28273. bottom: 6.2 / 1495
  28274. }
  28275. },
  28276. back: {
  28277. height: math.unit(7 + 6.451 / 12, "feet"),
  28278. weight: math.unit(310, "lb"),
  28279. name: "Back",
  28280. image: {
  28281. source: "./media/characters/dahlia-verrick/back.svg",
  28282. extra: 1472 / 1351,
  28283. bottom: 5.28 / 1477
  28284. }
  28285. },
  28286. frontBusiness: {
  28287. height: math.unit(7 + 6.451 / 12, "feet"),
  28288. weight: math.unit(200, "lb"),
  28289. name: "Front (Business)",
  28290. image: {
  28291. source: "./media/characters/dahlia-verrick/front-business.svg",
  28292. extra: 1478 / 1381,
  28293. bottom: 5.5 / 1484
  28294. }
  28295. },
  28296. frontCasual: {
  28297. height: math.unit(7 + 6.451 / 12, "feet"),
  28298. weight: math.unit(200, "lb"),
  28299. name: "Front (Casual)",
  28300. image: {
  28301. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28302. extra: 1478 / 1381,
  28303. bottom: 5.5 / 1484
  28304. }
  28305. },
  28306. },
  28307. [
  28308. {
  28309. name: "Travel-Sized",
  28310. height: math.unit(7.45, "inches")
  28311. },
  28312. {
  28313. name: "Normal",
  28314. height: math.unit(7 + 6.451 / 12, "feet"),
  28315. default: true
  28316. },
  28317. {
  28318. name: "Hitting the Town",
  28319. height: math.unit(37 + 8 / 12, "feet")
  28320. },
  28321. {
  28322. name: "Stomp in the Suburbs",
  28323. height: math.unit(964 + 9.728 / 12, "feet")
  28324. },
  28325. {
  28326. name: "Sit on the City",
  28327. height: math.unit(61747 + 10.592 / 12, "feet")
  28328. },
  28329. {
  28330. name: "Glomp the Globe",
  28331. height: math.unit(252919327 + 4.832 / 12, "feet")
  28332. },
  28333. ]
  28334. ))
  28335. characterMakers.push(() => makeCharacter(
  28336. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28337. {
  28338. front: {
  28339. height: math.unit(6 + 4 / 12, "feet"),
  28340. weight: math.unit(320, "lb"),
  28341. name: "Front",
  28342. image: {
  28343. source: "./media/characters/balina-mahigan/front.svg",
  28344. extra: 447 / 428,
  28345. bottom: 18 / 466
  28346. }
  28347. },
  28348. back: {
  28349. height: math.unit(6 + 4 / 12, "feet"),
  28350. weight: math.unit(320, "lb"),
  28351. name: "Back",
  28352. image: {
  28353. source: "./media/characters/balina-mahigan/back.svg",
  28354. extra: 445 / 428,
  28355. bottom: 4.07 / 448
  28356. }
  28357. },
  28358. arm: {
  28359. height: math.unit(1.88, "feet"),
  28360. name: "Arm",
  28361. image: {
  28362. source: "./media/characters/balina-mahigan/arm.svg"
  28363. }
  28364. },
  28365. backPort: {
  28366. height: math.unit(0.685, "feet"),
  28367. name: "Back Port",
  28368. image: {
  28369. source: "./media/characters/balina-mahigan/back-port.svg"
  28370. }
  28371. },
  28372. hoofpaw: {
  28373. height: math.unit(1.41, "feet"),
  28374. name: "Hoofpaw",
  28375. image: {
  28376. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28377. }
  28378. },
  28379. leftHandBack: {
  28380. height: math.unit(0.938, "feet"),
  28381. name: "Left Hand (Back)",
  28382. image: {
  28383. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28384. }
  28385. },
  28386. leftHandFront: {
  28387. height: math.unit(0.938, "feet"),
  28388. name: "Left Hand (Front)",
  28389. image: {
  28390. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28391. }
  28392. },
  28393. rightHandBack: {
  28394. height: math.unit(0.95, "feet"),
  28395. name: "Right Hand (Back)",
  28396. image: {
  28397. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28398. }
  28399. },
  28400. rightHandFront: {
  28401. height: math.unit(0.95, "feet"),
  28402. name: "Right Hand (Front)",
  28403. image: {
  28404. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28405. }
  28406. },
  28407. },
  28408. [
  28409. {
  28410. name: "Normal",
  28411. height: math.unit(6 + 4 / 12, "feet"),
  28412. default: true
  28413. },
  28414. ]
  28415. ))
  28416. characterMakers.push(() => makeCharacter(
  28417. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28418. {
  28419. front: {
  28420. height: math.unit(6, "feet"),
  28421. weight: math.unit(320, "lb"),
  28422. name: "Front",
  28423. image: {
  28424. source: "./media/characters/balina-mejeri/front.svg",
  28425. extra: 517 / 488,
  28426. bottom: 44.2 / 561
  28427. }
  28428. },
  28429. },
  28430. [
  28431. {
  28432. name: "Normal",
  28433. height: math.unit(6 + 4 / 12, "feet")
  28434. },
  28435. {
  28436. name: "Business",
  28437. height: math.unit(155, "feet"),
  28438. default: true
  28439. },
  28440. ]
  28441. ))
  28442. characterMakers.push(() => makeCharacter(
  28443. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28444. {
  28445. kneeling: {
  28446. height: math.unit(6 + 4 / 12, "feet"),
  28447. weight: math.unit(300 * 20, "lb"),
  28448. name: "Kneeling",
  28449. image: {
  28450. source: "./media/characters/balbarian/kneeling.svg",
  28451. extra: 922 / 862,
  28452. bottom: 42.4 / 965
  28453. }
  28454. },
  28455. },
  28456. [
  28457. {
  28458. name: "Normal",
  28459. height: math.unit(6 + 4 / 12, "feet")
  28460. },
  28461. {
  28462. name: "Treasured",
  28463. height: math.unit(18 + 9 / 12, "feet"),
  28464. default: true
  28465. },
  28466. {
  28467. name: "Macro",
  28468. height: math.unit(900, "feet")
  28469. },
  28470. ]
  28471. ))
  28472. characterMakers.push(() => makeCharacter(
  28473. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28474. {
  28475. front: {
  28476. height: math.unit(6 + 4 / 12, "feet"),
  28477. weight: math.unit(325, "lb"),
  28478. name: "Front",
  28479. image: {
  28480. source: "./media/characters/balina-amarini/front.svg",
  28481. extra: 415 / 403,
  28482. bottom: 19 / 433.4
  28483. }
  28484. },
  28485. back: {
  28486. height: math.unit(6 + 4 / 12, "feet"),
  28487. weight: math.unit(325, "lb"),
  28488. name: "Back",
  28489. image: {
  28490. source: "./media/characters/balina-amarini/back.svg",
  28491. extra: 415 / 403,
  28492. bottom: 13.5 / 432
  28493. }
  28494. },
  28495. overdrive: {
  28496. height: math.unit(6 + 4 / 12, "feet"),
  28497. weight: math.unit(400, "lb"),
  28498. name: "Overdrive",
  28499. image: {
  28500. source: "./media/characters/balina-amarini/overdrive.svg",
  28501. extra: 269 / 259,
  28502. bottom: 12 / 282
  28503. }
  28504. },
  28505. },
  28506. [
  28507. {
  28508. name: "Boom",
  28509. height: math.unit(9 + 10 / 12, "feet"),
  28510. default: true
  28511. },
  28512. {
  28513. name: "Macro",
  28514. height: math.unit(280, "feet")
  28515. },
  28516. ]
  28517. ))
  28518. characterMakers.push(() => makeCharacter(
  28519. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28520. {
  28521. goddess: {
  28522. height: math.unit(600, "feet"),
  28523. weight: math.unit(2000000, "tons"),
  28524. name: "Goddess",
  28525. image: {
  28526. source: "./media/characters/lady-kubwa/goddess.svg",
  28527. extra: 1240.5 / 1223,
  28528. bottom: 22 / 1263
  28529. }
  28530. },
  28531. goddesser: {
  28532. height: math.unit(900, "feet"),
  28533. weight: math.unit(20000000, "lb"),
  28534. name: "Goddess-er",
  28535. image: {
  28536. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28537. extra: 899 / 888,
  28538. bottom: 12.6 / 912
  28539. }
  28540. },
  28541. },
  28542. [
  28543. {
  28544. name: "Macro",
  28545. height: math.unit(600, "feet"),
  28546. default: true
  28547. },
  28548. {
  28549. name: "Megamacro",
  28550. height: math.unit(250, "miles")
  28551. },
  28552. ]
  28553. ))
  28554. characterMakers.push(() => makeCharacter(
  28555. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28556. {
  28557. front: {
  28558. height: math.unit(7 + 7 / 12, "feet"),
  28559. weight: math.unit(250, "lb"),
  28560. name: "Front",
  28561. image: {
  28562. source: "./media/characters/tala-grovehorn/front.svg",
  28563. extra: 2636 / 2525,
  28564. bottom: 147 / 2781
  28565. }
  28566. },
  28567. back: {
  28568. height: math.unit(7 + 7 / 12, "feet"),
  28569. weight: math.unit(250, "lb"),
  28570. name: "Back",
  28571. image: {
  28572. source: "./media/characters/tala-grovehorn/back.svg",
  28573. extra: 2635 / 2539,
  28574. bottom: 100 / 2732.8
  28575. }
  28576. },
  28577. mouth: {
  28578. height: math.unit(1.15, "feet"),
  28579. name: "Mouth",
  28580. image: {
  28581. source: "./media/characters/tala-grovehorn/mouth.svg"
  28582. }
  28583. },
  28584. dick: {
  28585. height: math.unit(2.36, "feet"),
  28586. name: "Dick",
  28587. image: {
  28588. source: "./media/characters/tala-grovehorn/dick.svg"
  28589. }
  28590. },
  28591. slit: {
  28592. height: math.unit(0.61, "feet"),
  28593. name: "Slit",
  28594. image: {
  28595. source: "./media/characters/tala-grovehorn/slit.svg"
  28596. }
  28597. },
  28598. },
  28599. [
  28600. ]
  28601. ))
  28602. characterMakers.push(() => makeCharacter(
  28603. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28604. {
  28605. front: {
  28606. height: math.unit(7 + 7 / 12, "feet"),
  28607. weight: math.unit(225, "lb"),
  28608. name: "Front",
  28609. image: {
  28610. source: "./media/characters/epona/front.svg",
  28611. extra: 2445 / 2290,
  28612. bottom: 251 / 2696
  28613. }
  28614. },
  28615. back: {
  28616. height: math.unit(7 + 7 / 12, "feet"),
  28617. weight: math.unit(225, "lb"),
  28618. name: "Back",
  28619. image: {
  28620. source: "./media/characters/epona/back.svg",
  28621. extra: 2546 / 2408,
  28622. bottom: 44 / 2589
  28623. }
  28624. },
  28625. genitals: {
  28626. height: math.unit(1.5, "feet"),
  28627. name: "Genitals",
  28628. image: {
  28629. source: "./media/characters/epona/genitals.svg"
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Normal",
  28636. height: math.unit(7 + 7 / 12, "feet"),
  28637. default: true
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28643. {
  28644. front: {
  28645. height: math.unit(7, "feet"),
  28646. weight: math.unit(518, "lb"),
  28647. name: "Front",
  28648. image: {
  28649. source: "./media/characters/avia-bloodbourn/front.svg",
  28650. extra: 1466 / 1350,
  28651. bottom: 65 / 1527
  28652. }
  28653. },
  28654. },
  28655. [
  28656. ]
  28657. ))
  28658. characterMakers.push(() => makeCharacter(
  28659. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28660. {
  28661. front: {
  28662. height: math.unit(9.35, "feet"),
  28663. weight: math.unit(600, "lb"),
  28664. name: "Front",
  28665. image: {
  28666. source: "./media/characters/amera/front.svg",
  28667. extra: 891 / 818,
  28668. bottom: 30 / 922.7
  28669. }
  28670. },
  28671. back: {
  28672. height: math.unit(9.35, "feet"),
  28673. weight: math.unit(600, "lb"),
  28674. name: "Back",
  28675. image: {
  28676. source: "./media/characters/amera/back.svg",
  28677. extra: 876 / 824,
  28678. bottom: 6.8 / 884
  28679. }
  28680. },
  28681. dick: {
  28682. height: math.unit(2.14, "feet"),
  28683. name: "Dick",
  28684. image: {
  28685. source: "./media/characters/amera/dick.svg"
  28686. }
  28687. },
  28688. },
  28689. [
  28690. {
  28691. name: "Normal",
  28692. height: math.unit(9.35, "feet"),
  28693. default: true
  28694. },
  28695. ]
  28696. ))
  28697. characterMakers.push(() => makeCharacter(
  28698. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28699. {
  28700. kneeling: {
  28701. height: math.unit(3 + 4 / 12, "feet"),
  28702. weight: math.unit(90, "lb"),
  28703. name: "Kneeling",
  28704. image: {
  28705. source: "./media/characters/rosewen/kneeling.svg",
  28706. extra: 1835 / 1571,
  28707. bottom: 27.7 / 1862
  28708. }
  28709. },
  28710. },
  28711. [
  28712. {
  28713. name: "Normal",
  28714. height: math.unit(3 + 4 / 12, "feet"),
  28715. default: true
  28716. },
  28717. ]
  28718. ))
  28719. characterMakers.push(() => makeCharacter(
  28720. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28721. {
  28722. front: {
  28723. height: math.unit(5 + 10 / 12, "feet"),
  28724. weight: math.unit(200, "lb"),
  28725. name: "Front",
  28726. image: {
  28727. source: "./media/characters/sabah/front.svg",
  28728. extra: 849 / 763,
  28729. bottom: 33.9 / 881
  28730. }
  28731. },
  28732. },
  28733. [
  28734. {
  28735. name: "Normal",
  28736. height: math.unit(5 + 10 / 12, "feet"),
  28737. default: true
  28738. },
  28739. ]
  28740. ))
  28741. characterMakers.push(() => makeCharacter(
  28742. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28743. {
  28744. front: {
  28745. height: math.unit(3 + 5 / 12, "feet"),
  28746. weight: math.unit(40, "kg"),
  28747. name: "Front",
  28748. image: {
  28749. source: "./media/characters/purple-flame/front.svg",
  28750. extra: 1577 / 1412,
  28751. bottom: 97 / 1694
  28752. }
  28753. },
  28754. frontDressed: {
  28755. height: math.unit(3 + 5 / 12, "feet"),
  28756. weight: math.unit(40, "kg"),
  28757. name: "Front (Dressed)",
  28758. image: {
  28759. source: "./media/characters/purple-flame/front-dressed.svg",
  28760. extra: 1577 / 1412,
  28761. bottom: 97 / 1694
  28762. }
  28763. },
  28764. headphones: {
  28765. height: math.unit(0.85, "feet"),
  28766. name: "Headphones",
  28767. image: {
  28768. source: "./media/characters/purple-flame/headphones.svg"
  28769. }
  28770. },
  28771. },
  28772. [
  28773. {
  28774. name: "Really Small",
  28775. height: math.unit(5, "cm")
  28776. },
  28777. {
  28778. name: "Micro",
  28779. height: math.unit(1 + 5 / 12, "feet")
  28780. },
  28781. {
  28782. name: "Normal",
  28783. height: math.unit(3 + 5 / 12, "feet"),
  28784. default: true
  28785. },
  28786. {
  28787. name: "Minimacro",
  28788. height: math.unit(125, "feet")
  28789. },
  28790. {
  28791. name: "Macro",
  28792. height: math.unit(0.5, "miles")
  28793. },
  28794. {
  28795. name: "Megamacro",
  28796. height: math.unit(50, "miles")
  28797. },
  28798. {
  28799. name: "Gigantic",
  28800. height: math.unit(750, "miles")
  28801. },
  28802. {
  28803. name: "Planetary",
  28804. height: math.unit(15000, "miles")
  28805. },
  28806. ]
  28807. ))
  28808. characterMakers.push(() => makeCharacter(
  28809. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28810. {
  28811. front: {
  28812. height: math.unit(14, "feet"),
  28813. weight: math.unit(959, "lb"),
  28814. name: "Front",
  28815. image: {
  28816. source: "./media/characters/arsenal/front.svg",
  28817. extra: 2357 / 2157,
  28818. bottom: 93 / 2458
  28819. }
  28820. },
  28821. },
  28822. [
  28823. {
  28824. name: "Normal",
  28825. height: math.unit(14, "feet"),
  28826. default: true
  28827. },
  28828. ]
  28829. ))
  28830. characterMakers.push(() => makeCharacter(
  28831. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28832. {
  28833. front: {
  28834. height: math.unit(6, "feet"),
  28835. weight: math.unit(150, "lb"),
  28836. name: "Front",
  28837. image: {
  28838. source: "./media/characters/adira/front.svg",
  28839. extra: 1078 / 1029,
  28840. bottom: 87 / 1166
  28841. }
  28842. },
  28843. },
  28844. [
  28845. {
  28846. name: "Micro",
  28847. height: math.unit(4, "inches"),
  28848. default: true
  28849. },
  28850. {
  28851. name: "Macro",
  28852. height: math.unit(50, "feet")
  28853. },
  28854. ]
  28855. ))
  28856. characterMakers.push(() => makeCharacter(
  28857. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28858. {
  28859. front: {
  28860. height: math.unit(16, "feet"),
  28861. weight: math.unit(1000, "lb"),
  28862. name: "Front",
  28863. image: {
  28864. source: "./media/characters/grim/front.svg",
  28865. extra: 622 / 614,
  28866. bottom: 18.1 / 642
  28867. }
  28868. },
  28869. back: {
  28870. height: math.unit(16, "feet"),
  28871. weight: math.unit(1000, "lb"),
  28872. name: "Back",
  28873. image: {
  28874. source: "./media/characters/grim/back.svg",
  28875. extra: 610.6 / 602,
  28876. bottom: 40.8 / 652
  28877. }
  28878. },
  28879. hunched: {
  28880. height: math.unit(9.75, "feet"),
  28881. weight: math.unit(1000, "lb"),
  28882. name: "Hunched",
  28883. image: {
  28884. source: "./media/characters/grim/hunched.svg",
  28885. extra: 304 / 297,
  28886. bottom: 35.4 / 394
  28887. }
  28888. },
  28889. },
  28890. [
  28891. {
  28892. name: "Normal",
  28893. height: math.unit(16, "feet"),
  28894. default: true
  28895. },
  28896. ]
  28897. ))
  28898. characterMakers.push(() => makeCharacter(
  28899. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28900. {
  28901. front: {
  28902. height: math.unit(2.3, "meters"),
  28903. weight: math.unit(300, "lb"),
  28904. name: "Front",
  28905. image: {
  28906. source: "./media/characters/sinja/front-sfw.svg",
  28907. extra: 1393 / 1294,
  28908. bottom: 70 / 1463
  28909. }
  28910. },
  28911. frontNsfw: {
  28912. height: math.unit(2.3, "meters"),
  28913. weight: math.unit(300, "lb"),
  28914. name: "Front (NSFW)",
  28915. image: {
  28916. source: "./media/characters/sinja/front-nsfw.svg",
  28917. extra: 1393 / 1294,
  28918. bottom: 70 / 1463
  28919. }
  28920. },
  28921. back: {
  28922. height: math.unit(2.3, "meters"),
  28923. weight: math.unit(300, "lb"),
  28924. name: "Back",
  28925. image: {
  28926. source: "./media/characters/sinja/back.svg",
  28927. extra: 1393 / 1294,
  28928. bottom: 70 / 1463
  28929. }
  28930. },
  28931. head: {
  28932. height: math.unit(1.771, "feet"),
  28933. name: "Head",
  28934. image: {
  28935. source: "./media/characters/sinja/head.svg"
  28936. }
  28937. },
  28938. slit: {
  28939. height: math.unit(0.8, "feet"),
  28940. name: "Slit",
  28941. image: {
  28942. source: "./media/characters/sinja/slit.svg"
  28943. }
  28944. },
  28945. },
  28946. [
  28947. {
  28948. name: "Normal",
  28949. height: math.unit(2.3, "meters")
  28950. },
  28951. {
  28952. name: "Macro",
  28953. height: math.unit(91, "meters"),
  28954. default: true
  28955. },
  28956. {
  28957. name: "Megamacro",
  28958. height: math.unit(91440, "meters")
  28959. },
  28960. {
  28961. name: "Gigamacro",
  28962. height: math.unit(60960000, "meters")
  28963. },
  28964. {
  28965. name: "Teramacro",
  28966. height: math.unit(9144000000, "meters")
  28967. },
  28968. ]
  28969. ))
  28970. characterMakers.push(() => makeCharacter(
  28971. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28972. {
  28973. front: {
  28974. height: math.unit(1.7, "meters"),
  28975. weight: math.unit(130, "lb"),
  28976. name: "Front",
  28977. image: {
  28978. source: "./media/characters/kyu/front.svg",
  28979. extra: 415 / 395,
  28980. bottom: 5 / 420
  28981. }
  28982. },
  28983. head: {
  28984. height: math.unit(1.75, "feet"),
  28985. name: "Head",
  28986. image: {
  28987. source: "./media/characters/kyu/head.svg"
  28988. }
  28989. },
  28990. foot: {
  28991. height: math.unit(0.81, "feet"),
  28992. name: "Foot",
  28993. image: {
  28994. source: "./media/characters/kyu/foot.svg"
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Normal",
  29001. height: math.unit(1.7, "meters")
  29002. },
  29003. {
  29004. name: "Macro",
  29005. height: math.unit(131, "feet"),
  29006. default: true
  29007. },
  29008. {
  29009. name: "Megamacro",
  29010. height: math.unit(91440, "meters")
  29011. },
  29012. {
  29013. name: "Gigamacro",
  29014. height: math.unit(60960000, "meters")
  29015. },
  29016. {
  29017. name: "Teramacro",
  29018. height: math.unit(9144000000, "meters")
  29019. },
  29020. ]
  29021. ))
  29022. characterMakers.push(() => makeCharacter(
  29023. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29024. {
  29025. front: {
  29026. height: math.unit(7 + 1 / 12, "feet"),
  29027. weight: math.unit(250, "lb"),
  29028. name: "Front",
  29029. image: {
  29030. source: "./media/characters/joey/front.svg",
  29031. extra: 1791 / 1537,
  29032. bottom: 28 / 1816
  29033. }
  29034. },
  29035. },
  29036. [
  29037. {
  29038. name: "Micro",
  29039. height: math.unit(3, "inches")
  29040. },
  29041. {
  29042. name: "Normal",
  29043. height: math.unit(7 + 1 / 12, "feet"),
  29044. default: true
  29045. },
  29046. ]
  29047. ))
  29048. characterMakers.push(() => makeCharacter(
  29049. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29050. {
  29051. front: {
  29052. height: math.unit(165, "cm"),
  29053. weight: math.unit(140, "lb"),
  29054. name: "Front",
  29055. image: {
  29056. source: "./media/characters/sam-evans/front.svg",
  29057. extra: 3417 / 3230,
  29058. bottom: 41.3 / 3417
  29059. }
  29060. },
  29061. frontSixTails: {
  29062. height: math.unit(165, "cm"),
  29063. weight: math.unit(140, "lb"),
  29064. name: "Front-six-tails",
  29065. image: {
  29066. source: "./media/characters/sam-evans/front-six-tails.svg",
  29067. extra: 3417 / 3230,
  29068. bottom: 41.3 / 3417
  29069. }
  29070. },
  29071. back: {
  29072. height: math.unit(165, "cm"),
  29073. weight: math.unit(140, "lb"),
  29074. name: "Back",
  29075. image: {
  29076. source: "./media/characters/sam-evans/back.svg",
  29077. extra: 3227 / 3032,
  29078. bottom: 6.8 / 3234
  29079. }
  29080. },
  29081. face: {
  29082. height: math.unit(0.68, "feet"),
  29083. name: "Face",
  29084. image: {
  29085. source: "./media/characters/sam-evans/face.svg"
  29086. }
  29087. },
  29088. },
  29089. [
  29090. {
  29091. name: "Normal",
  29092. height: math.unit(165, "cm"),
  29093. default: true
  29094. },
  29095. {
  29096. name: "Macro",
  29097. height: math.unit(100, "meters")
  29098. },
  29099. {
  29100. name: "Macro+",
  29101. height: math.unit(800, "meters")
  29102. },
  29103. {
  29104. name: "Macro++",
  29105. height: math.unit(3, "km")
  29106. },
  29107. {
  29108. name: "Macro+++",
  29109. height: math.unit(30, "km")
  29110. },
  29111. ]
  29112. ))
  29113. characterMakers.push(() => makeCharacter(
  29114. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29115. {
  29116. front: {
  29117. height: math.unit(10, "feet"),
  29118. weight: math.unit(750, "lb"),
  29119. name: "Front",
  29120. image: {
  29121. source: "./media/characters/juliet-a/front.svg",
  29122. extra: 1766 / 1720,
  29123. bottom: 43 / 1809
  29124. }
  29125. },
  29126. back: {
  29127. height: math.unit(10, "feet"),
  29128. weight: math.unit(750, "lb"),
  29129. name: "Back",
  29130. image: {
  29131. source: "./media/characters/juliet-a/back.svg",
  29132. extra: 1781 / 1734,
  29133. bottom: 35 / 1810,
  29134. }
  29135. },
  29136. },
  29137. [
  29138. {
  29139. name: "Normal",
  29140. height: math.unit(10, "feet"),
  29141. default: true
  29142. },
  29143. {
  29144. name: "Dragon Form",
  29145. height: math.unit(250, "feet")
  29146. },
  29147. {
  29148. name: "Macro",
  29149. height: math.unit(1000, "feet")
  29150. },
  29151. {
  29152. name: "Megamacro",
  29153. height: math.unit(10000, "feet")
  29154. }
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29159. {
  29160. regular: {
  29161. height: math.unit(7 + 3 / 12, "feet"),
  29162. weight: math.unit(260, "lb"),
  29163. name: "Regular",
  29164. image: {
  29165. source: "./media/characters/wild/regular.svg",
  29166. extra: 97.45 / 92,
  29167. bottom: 6.8 / 104.3
  29168. }
  29169. },
  29170. biggums: {
  29171. height: math.unit(8 + 6 / 12, "feet"),
  29172. weight: math.unit(425, "lb"),
  29173. name: "Biggums",
  29174. image: {
  29175. source: "./media/characters/wild/biggums.svg",
  29176. extra: 97.45 / 92,
  29177. bottom: 7.5 / 132.34
  29178. }
  29179. },
  29180. mawRegular: {
  29181. height: math.unit(1.24, "feet"),
  29182. name: "Maw (Regular)",
  29183. image: {
  29184. source: "./media/characters/wild/maw.svg"
  29185. }
  29186. },
  29187. mawBiggums: {
  29188. height: math.unit(1.47, "feet"),
  29189. name: "Maw (Biggums)",
  29190. image: {
  29191. source: "./media/characters/wild/maw.svg"
  29192. }
  29193. },
  29194. },
  29195. [
  29196. {
  29197. name: "Normal",
  29198. height: math.unit(7 + 3 / 12, "feet"),
  29199. default: true
  29200. },
  29201. ]
  29202. ))
  29203. characterMakers.push(() => makeCharacter(
  29204. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29205. {
  29206. front: {
  29207. height: math.unit(2.5, "meters"),
  29208. weight: math.unit(200, "kg"),
  29209. name: "Front",
  29210. image: {
  29211. source: "./media/characters/vidar/front.svg",
  29212. extra: 2994 / 2795,
  29213. bottom: 56 / 3061
  29214. }
  29215. },
  29216. back: {
  29217. height: math.unit(2.5, "meters"),
  29218. weight: math.unit(200, "kg"),
  29219. name: "Back",
  29220. image: {
  29221. source: "./media/characters/vidar/back.svg",
  29222. extra: 3131 / 2928,
  29223. bottom: 13.5 / 3141.5
  29224. }
  29225. },
  29226. feral: {
  29227. height: math.unit(2.5, "meters"),
  29228. weight: math.unit(2000, "kg"),
  29229. name: "Feral",
  29230. image: {
  29231. source: "./media/characters/vidar/feral.svg",
  29232. extra: 2790 / 1765,
  29233. bottom: 6 / 2796
  29234. }
  29235. },
  29236. },
  29237. [
  29238. {
  29239. name: "Normal",
  29240. height: math.unit(2.5, "meters"),
  29241. default: true
  29242. },
  29243. {
  29244. name: "Macro",
  29245. height: math.unit(100, "meters")
  29246. },
  29247. ]
  29248. ))
  29249. characterMakers.push(() => makeCharacter(
  29250. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29251. {
  29252. front: {
  29253. height: math.unit(5 + 9 / 12, "feet"),
  29254. weight: math.unit(120, "lb"),
  29255. name: "Front",
  29256. image: {
  29257. source: "./media/characters/ash/front.svg",
  29258. extra: 2189 / 1961,
  29259. bottom: 5.2 / 2194
  29260. }
  29261. },
  29262. },
  29263. [
  29264. {
  29265. name: "Normal",
  29266. height: math.unit(5 + 9 / 12, "feet"),
  29267. default: true
  29268. },
  29269. ]
  29270. ))
  29271. characterMakers.push(() => makeCharacter(
  29272. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29273. {
  29274. front: {
  29275. height: math.unit(9, "feet"),
  29276. weight: math.unit(10000, "lb"),
  29277. name: "Front",
  29278. image: {
  29279. source: "./media/characters/gygabite/front.svg",
  29280. bottom: 31.7 / 537.8,
  29281. extra: 505 / 370
  29282. }
  29283. },
  29284. },
  29285. [
  29286. {
  29287. name: "Normal",
  29288. height: math.unit(9, "feet"),
  29289. default: true
  29290. },
  29291. ]
  29292. ))
  29293. characterMakers.push(() => makeCharacter(
  29294. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29295. {
  29296. front: {
  29297. height: math.unit(12, "feet"),
  29298. weight: math.unit(4000, "lb"),
  29299. name: "Front",
  29300. image: {
  29301. source: "./media/characters/p0tat0/front.svg",
  29302. extra: 1065 / 921,
  29303. bottom: 55.7 / 1121.25
  29304. }
  29305. },
  29306. },
  29307. [
  29308. {
  29309. name: "Normal",
  29310. height: math.unit(12, "feet"),
  29311. default: true
  29312. },
  29313. ]
  29314. ))
  29315. characterMakers.push(() => makeCharacter(
  29316. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29317. {
  29318. side: {
  29319. height: math.unit(6.5, "feet"),
  29320. weight: math.unit(800, "lb"),
  29321. name: "Side",
  29322. image: {
  29323. source: "./media/characters/dusk/side.svg",
  29324. extra: 615 / 373,
  29325. bottom: 53 / 664
  29326. }
  29327. },
  29328. sitting: {
  29329. height: math.unit(7, "feet"),
  29330. weight: math.unit(800, "lb"),
  29331. name: "Sitting",
  29332. image: {
  29333. source: "./media/characters/dusk/sitting.svg",
  29334. extra: 753 / 425,
  29335. bottom: 33 / 774
  29336. }
  29337. },
  29338. head: {
  29339. height: math.unit(6.1, "feet"),
  29340. name: "Head",
  29341. image: {
  29342. source: "./media/characters/dusk/head.svg"
  29343. }
  29344. },
  29345. },
  29346. [
  29347. {
  29348. name: "Normal",
  29349. height: math.unit(7, "feet"),
  29350. default: true
  29351. },
  29352. ]
  29353. ))
  29354. characterMakers.push(() => makeCharacter(
  29355. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29356. {
  29357. front: {
  29358. height: math.unit(15, "feet"),
  29359. weight: math.unit(7000, "lb"),
  29360. name: "Front",
  29361. image: {
  29362. source: "./media/characters/jay-direwolf/front.svg",
  29363. extra: 1810 / 1732,
  29364. bottom: 66 / 1892
  29365. }
  29366. },
  29367. },
  29368. [
  29369. {
  29370. name: "Normal",
  29371. height: math.unit(15, "feet"),
  29372. default: true
  29373. },
  29374. ]
  29375. ))
  29376. characterMakers.push(() => makeCharacter(
  29377. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29378. {
  29379. front: {
  29380. height: math.unit(4 + 9 / 12, "feet"),
  29381. weight: math.unit(130, "lb"),
  29382. name: "Front",
  29383. image: {
  29384. source: "./media/characters/anchovie/front.svg",
  29385. extra: 382 / 350,
  29386. bottom: 25 / 409
  29387. }
  29388. },
  29389. back: {
  29390. height: math.unit(4 + 9 / 12, "feet"),
  29391. weight: math.unit(130, "lb"),
  29392. name: "Back",
  29393. image: {
  29394. source: "./media/characters/anchovie/back.svg",
  29395. extra: 385 / 352,
  29396. bottom: 16.6 / 402
  29397. }
  29398. },
  29399. frontDressed: {
  29400. height: math.unit(4 + 9 / 12, "feet"),
  29401. weight: math.unit(130, "lb"),
  29402. name: "Front (Dressed)",
  29403. image: {
  29404. source: "./media/characters/anchovie/front-dressed.svg",
  29405. extra: 382 / 350,
  29406. bottom: 25 / 409
  29407. }
  29408. },
  29409. backDressed: {
  29410. height: math.unit(4 + 9 / 12, "feet"),
  29411. weight: math.unit(130, "lb"),
  29412. name: "Back (Dressed)",
  29413. image: {
  29414. source: "./media/characters/anchovie/back-dressed.svg",
  29415. extra: 385 / 352,
  29416. bottom: 16.6 / 402
  29417. }
  29418. },
  29419. },
  29420. [
  29421. {
  29422. name: "Micro",
  29423. height: math.unit(6.4, "inches")
  29424. },
  29425. {
  29426. name: "Normal",
  29427. height: math.unit(4 + 9 / 12, "feet"),
  29428. default: true
  29429. },
  29430. ]
  29431. ))
  29432. characterMakers.push(() => makeCharacter(
  29433. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29434. {
  29435. front: {
  29436. height: math.unit(2, "meters"),
  29437. weight: math.unit(180, "lb"),
  29438. name: "Front",
  29439. image: {
  29440. source: "./media/characters/acidrenamon/front.svg",
  29441. extra: 987 / 890,
  29442. bottom: 22.8 / 1009
  29443. }
  29444. },
  29445. back: {
  29446. height: math.unit(2, "meters"),
  29447. weight: math.unit(180, "lb"),
  29448. name: "Back",
  29449. image: {
  29450. source: "./media/characters/acidrenamon/back.svg",
  29451. extra: 983 / 891,
  29452. bottom: 8.4 / 992
  29453. }
  29454. },
  29455. head: {
  29456. height: math.unit(1.92, "feet"),
  29457. name: "Head",
  29458. image: {
  29459. source: "./media/characters/acidrenamon/head.svg"
  29460. }
  29461. },
  29462. rump: {
  29463. height: math.unit(1.72, "feet"),
  29464. name: "Rump",
  29465. image: {
  29466. source: "./media/characters/acidrenamon/rump.svg"
  29467. }
  29468. },
  29469. tail: {
  29470. height: math.unit(4.2, "feet"),
  29471. name: "Tail",
  29472. image: {
  29473. source: "./media/characters/acidrenamon/tail.svg"
  29474. }
  29475. },
  29476. },
  29477. [
  29478. {
  29479. name: "Normal",
  29480. height: math.unit(2, "meters"),
  29481. default: true
  29482. },
  29483. {
  29484. name: "Minimacro",
  29485. height: math.unit(7, "meters")
  29486. },
  29487. {
  29488. name: "Macro",
  29489. height: math.unit(200, "meters")
  29490. },
  29491. {
  29492. name: "Gigamacro",
  29493. height: math.unit(0.2, "earths")
  29494. },
  29495. ]
  29496. ))
  29497. characterMakers.push(() => makeCharacter(
  29498. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29499. {
  29500. front: {
  29501. height: math.unit(152, "feet"),
  29502. name: "Front",
  29503. image: {
  29504. source: "./media/characters/kenzie-lee/front.svg",
  29505. extra: 1869/1774,
  29506. bottom: 128/1997
  29507. }
  29508. },
  29509. side: {
  29510. height: math.unit(86, "feet"),
  29511. name: "Side",
  29512. image: {
  29513. source: "./media/characters/kenzie-lee/side.svg",
  29514. extra: 930/815,
  29515. bottom: 177/1107
  29516. }
  29517. },
  29518. paw: {
  29519. height: math.unit(15, "feet"),
  29520. name: "Paw",
  29521. image: {
  29522. source: "./media/characters/kenzie-lee/paw.svg"
  29523. }
  29524. },
  29525. },
  29526. [
  29527. {
  29528. name: "Kenzie Flea",
  29529. height: math.unit(2, "mm"),
  29530. default: true
  29531. },
  29532. {
  29533. name: "Micro",
  29534. height: math.unit(2, "inches")
  29535. },
  29536. {
  29537. name: "Normal",
  29538. height: math.unit(152, "feet")
  29539. },
  29540. {
  29541. name: "Megamacro",
  29542. height: math.unit(7, "miles")
  29543. },
  29544. {
  29545. name: "Gigamacro",
  29546. height: math.unit(8000, "miles")
  29547. },
  29548. ]
  29549. ))
  29550. characterMakers.push(() => makeCharacter(
  29551. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29552. {
  29553. front: {
  29554. height: math.unit(6, "feet"),
  29555. name: "Front",
  29556. image: {
  29557. source: "./media/characters/withers/front.svg",
  29558. extra: 1935/1760,
  29559. bottom: 72/2007
  29560. }
  29561. },
  29562. back: {
  29563. height: math.unit(6, "feet"),
  29564. name: "Back",
  29565. image: {
  29566. source: "./media/characters/withers/back.svg",
  29567. extra: 1944/1792,
  29568. bottom: 12/1956
  29569. }
  29570. },
  29571. dressed: {
  29572. height: math.unit(6, "feet"),
  29573. name: "Dressed",
  29574. image: {
  29575. source: "./media/characters/withers/dressed.svg",
  29576. extra: 1937/1765,
  29577. bottom: 73/2010
  29578. }
  29579. },
  29580. phase1: {
  29581. height: math.unit(1.1, "feet"),
  29582. name: "Phase 1",
  29583. image: {
  29584. source: "./media/characters/withers/phase-1.svg",
  29585. extra: 1885/1232,
  29586. bottom: 0/1885
  29587. }
  29588. },
  29589. phase2: {
  29590. height: math.unit(1.05, "feet"),
  29591. name: "Phase 2",
  29592. image: {
  29593. source: "./media/characters/withers/phase-2.svg",
  29594. extra: 1792/1090,
  29595. bottom: 0/1792
  29596. }
  29597. },
  29598. partyWipe: {
  29599. height: math.unit(1.1, "feet"),
  29600. name: "Party Wipe",
  29601. image: {
  29602. source: "./media/characters/withers/party-wipe.svg",
  29603. extra: 1864/1207,
  29604. bottom: 0/1864
  29605. }
  29606. },
  29607. },
  29608. [
  29609. {
  29610. name: "Macro",
  29611. height: math.unit(167, "feet"),
  29612. default: true
  29613. },
  29614. {
  29615. name: "Megamacro",
  29616. height: math.unit(15, "miles")
  29617. }
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(6 + 7 / 12, "feet"),
  29625. weight: math.unit(250, "lb"),
  29626. name: "Front",
  29627. image: {
  29628. source: "./media/characters/nemoskii/front.svg",
  29629. extra: 2270 / 1734,
  29630. bottom: 86 / 2354
  29631. }
  29632. },
  29633. back: {
  29634. height: math.unit(6 + 7 / 12, "feet"),
  29635. weight: math.unit(250, "lb"),
  29636. name: "Back",
  29637. image: {
  29638. source: "./media/characters/nemoskii/back.svg",
  29639. extra: 1845 / 1788,
  29640. bottom: 10.5 / 1852
  29641. }
  29642. },
  29643. head: {
  29644. height: math.unit(1.31, "feet"),
  29645. name: "Head",
  29646. image: {
  29647. source: "./media/characters/nemoskii/head.svg"
  29648. }
  29649. },
  29650. },
  29651. [
  29652. {
  29653. name: "Micro",
  29654. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29655. },
  29656. {
  29657. name: "Normal",
  29658. height: math.unit(6 + 7 / 12, "feet"),
  29659. default: true
  29660. },
  29661. {
  29662. name: "Macro",
  29663. height: math.unit((6 + 7 / 12) * 150, "feet")
  29664. },
  29665. {
  29666. name: "Macro+",
  29667. height: math.unit((6 + 7 / 12) * 500, "feet")
  29668. },
  29669. {
  29670. name: "Megamacro",
  29671. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29672. },
  29673. ]
  29674. ))
  29675. characterMakers.push(() => makeCharacter(
  29676. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29677. {
  29678. front: {
  29679. height: math.unit(1, "mile"),
  29680. weight: math.unit(265261.9, "lb"),
  29681. name: "Front",
  29682. image: {
  29683. source: "./media/characters/shui/front.svg",
  29684. extra: 1633 / 1564,
  29685. bottom: 91.5 / 1726
  29686. }
  29687. },
  29688. },
  29689. [
  29690. {
  29691. name: "Macro",
  29692. height: math.unit(1, "mile"),
  29693. default: true
  29694. },
  29695. ]
  29696. ))
  29697. characterMakers.push(() => makeCharacter(
  29698. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29699. {
  29700. front: {
  29701. height: math.unit(12 + 6 / 12, "feet"),
  29702. weight: math.unit(1342, "lb"),
  29703. name: "Front",
  29704. image: {
  29705. source: "./media/characters/arokh-takakura/front.svg",
  29706. extra: 1089 / 1043,
  29707. bottom: 77.4 / 1176.7
  29708. }
  29709. },
  29710. back: {
  29711. height: math.unit(12 + 6 / 12, "feet"),
  29712. weight: math.unit(1342, "lb"),
  29713. name: "Back",
  29714. image: {
  29715. source: "./media/characters/arokh-takakura/back.svg",
  29716. extra: 1046 / 1019,
  29717. bottom: 102 / 1150
  29718. }
  29719. },
  29720. },
  29721. [
  29722. {
  29723. name: "Big",
  29724. height: math.unit(12 + 6 / 12, "feet"),
  29725. default: true
  29726. },
  29727. ]
  29728. ))
  29729. characterMakers.push(() => makeCharacter(
  29730. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29731. {
  29732. front: {
  29733. height: math.unit(5 + 6 / 12, "feet"),
  29734. weight: math.unit(150, "lb"),
  29735. name: "Front",
  29736. image: {
  29737. source: "./media/characters/theo/front.svg",
  29738. extra: 1184 / 1131,
  29739. bottom: 7.4 / 1191
  29740. }
  29741. },
  29742. },
  29743. [
  29744. {
  29745. name: "Micro",
  29746. height: math.unit(5, "inches")
  29747. },
  29748. {
  29749. name: "Normal",
  29750. height: math.unit(5 + 6 / 12, "feet"),
  29751. default: true
  29752. },
  29753. ]
  29754. ))
  29755. characterMakers.push(() => makeCharacter(
  29756. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29757. {
  29758. front: {
  29759. height: math.unit(5 + 9 / 12, "feet"),
  29760. weight: math.unit(130, "lb"),
  29761. name: "Front",
  29762. image: {
  29763. source: "./media/characters/cecelia-swift/front.svg",
  29764. extra: 502 / 484,
  29765. bottom: 23 / 523
  29766. }
  29767. },
  29768. back: {
  29769. height: math.unit(5 + 9 / 12, "feet"),
  29770. weight: math.unit(130, "lb"),
  29771. name: "Back",
  29772. image: {
  29773. source: "./media/characters/cecelia-swift/back.svg",
  29774. extra: 499 / 485,
  29775. bottom: 12 / 511
  29776. }
  29777. },
  29778. head: {
  29779. height: math.unit(0.90, "feet"),
  29780. name: "Head",
  29781. image: {
  29782. source: "./media/characters/cecelia-swift/head.svg"
  29783. }
  29784. },
  29785. rump: {
  29786. height: math.unit(1.75, "feet"),
  29787. name: "Rump",
  29788. image: {
  29789. source: "./media/characters/cecelia-swift/rump.svg"
  29790. }
  29791. },
  29792. },
  29793. [
  29794. {
  29795. name: "Normal",
  29796. height: math.unit(5 + 9 / 12, "feet"),
  29797. default: true
  29798. },
  29799. {
  29800. name: "Big",
  29801. height: math.unit(50, "feet")
  29802. },
  29803. {
  29804. name: "Macro",
  29805. height: math.unit(100, "feet")
  29806. },
  29807. {
  29808. name: "Macro+",
  29809. height: math.unit(500, "feet")
  29810. },
  29811. {
  29812. name: "Macro++",
  29813. height: math.unit(1000, "feet")
  29814. },
  29815. ]
  29816. ))
  29817. characterMakers.push(() => makeCharacter(
  29818. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29819. {
  29820. front: {
  29821. height: math.unit(6, "feet"),
  29822. weight: math.unit(150, "lb"),
  29823. name: "Front",
  29824. image: {
  29825. source: "./media/characters/kaunan/front.svg",
  29826. extra: 2890 / 2523,
  29827. bottom: 49 / 2939
  29828. }
  29829. },
  29830. },
  29831. [
  29832. {
  29833. name: "Macro",
  29834. height: math.unit(150, "feet"),
  29835. default: true
  29836. },
  29837. ]
  29838. ))
  29839. characterMakers.push(() => makeCharacter(
  29840. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29841. {
  29842. dressed: {
  29843. height: math.unit(175, "cm"),
  29844. weight: math.unit(60, "kg"),
  29845. name: "Dressed",
  29846. image: {
  29847. source: "./media/characters/fei/dressed.svg",
  29848. extra: 1402/1278,
  29849. bottom: 27/1429
  29850. }
  29851. },
  29852. nude: {
  29853. height: math.unit(175, "cm"),
  29854. weight: math.unit(60, "kg"),
  29855. name: "Nude",
  29856. image: {
  29857. source: "./media/characters/fei/nude.svg",
  29858. extra: 1402/1278,
  29859. bottom: 27/1429
  29860. }
  29861. },
  29862. heels: {
  29863. height: math.unit(0.466, "feet"),
  29864. name: "Heels",
  29865. image: {
  29866. source: "./media/characters/fei/heels.svg",
  29867. extra: 156/152,
  29868. bottom: 28/184
  29869. }
  29870. },
  29871. },
  29872. [
  29873. {
  29874. name: "Mortal",
  29875. height: math.unit(175, "cm")
  29876. },
  29877. {
  29878. name: "Normal",
  29879. height: math.unit(3500, "m")
  29880. },
  29881. {
  29882. name: "Stroll",
  29883. height: math.unit(18.4, "km"),
  29884. default: true
  29885. },
  29886. {
  29887. name: "Showoff",
  29888. height: math.unit(175, "km")
  29889. },
  29890. ]
  29891. ))
  29892. characterMakers.push(() => makeCharacter(
  29893. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29894. {
  29895. front: {
  29896. height: math.unit(7, "feet"),
  29897. weight: math.unit(1000, "kg"),
  29898. name: "Front",
  29899. image: {
  29900. source: "./media/characters/edrax/front.svg",
  29901. extra: 2838 / 2550,
  29902. bottom: 130 / 2968
  29903. }
  29904. },
  29905. },
  29906. [
  29907. {
  29908. name: "Small",
  29909. height: math.unit(7, "feet")
  29910. },
  29911. {
  29912. name: "Normal",
  29913. height: math.unit(1500, "meters")
  29914. },
  29915. {
  29916. name: "Mega",
  29917. height: math.unit(12000000, "km"),
  29918. default: true
  29919. },
  29920. {
  29921. name: "Megamacro",
  29922. height: math.unit(10600000, "lightyears")
  29923. },
  29924. {
  29925. name: "Hypermacro",
  29926. height: math.unit(256, "yottameters")
  29927. },
  29928. ]
  29929. ))
  29930. characterMakers.push(() => makeCharacter(
  29931. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29932. {
  29933. front: {
  29934. height: math.unit(10, "feet"),
  29935. weight: math.unit(750, "lb"),
  29936. name: "Front",
  29937. image: {
  29938. source: "./media/characters/clove/front.svg",
  29939. extra: 1918/1751,
  29940. bottom: 52/1970
  29941. }
  29942. },
  29943. back: {
  29944. height: math.unit(10, "feet"),
  29945. weight: math.unit(750, "lb"),
  29946. name: "Back",
  29947. image: {
  29948. source: "./media/characters/clove/back.svg",
  29949. extra: 1912/1747,
  29950. bottom: 50/1962
  29951. }
  29952. },
  29953. },
  29954. [
  29955. {
  29956. name: "Normal",
  29957. height: math.unit(10, "feet"),
  29958. default: true
  29959. },
  29960. ]
  29961. ))
  29962. characterMakers.push(() => makeCharacter(
  29963. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29964. {
  29965. front: {
  29966. height: math.unit(4, "feet"),
  29967. weight: math.unit(50, "lb"),
  29968. name: "Front",
  29969. image: {
  29970. source: "./media/characters/alex-rabbit/front.svg",
  29971. extra: 507 / 458,
  29972. bottom: 18.5 / 527
  29973. }
  29974. },
  29975. back: {
  29976. height: math.unit(4, "feet"),
  29977. weight: math.unit(50, "lb"),
  29978. name: "Back",
  29979. image: {
  29980. source: "./media/characters/alex-rabbit/back.svg",
  29981. extra: 502 / 460,
  29982. bottom: 18.9 / 521
  29983. }
  29984. },
  29985. },
  29986. [
  29987. {
  29988. name: "Normal",
  29989. height: math.unit(4, "feet"),
  29990. default: true
  29991. },
  29992. ]
  29993. ))
  29994. characterMakers.push(() => makeCharacter(
  29995. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29996. {
  29997. front: {
  29998. height: math.unit(1 + 3 / 12, "feet"),
  29999. weight: math.unit(80, "lb"),
  30000. name: "Front",
  30001. image: {
  30002. source: "./media/characters/zander-rose/front.svg",
  30003. extra: 916 / 797,
  30004. bottom: 17 / 933
  30005. }
  30006. },
  30007. back: {
  30008. height: math.unit(1 + 3 / 12, "feet"),
  30009. weight: math.unit(80, "lb"),
  30010. name: "Back",
  30011. image: {
  30012. source: "./media/characters/zander-rose/back.svg",
  30013. extra: 903 / 779,
  30014. bottom: 31 / 934
  30015. }
  30016. },
  30017. },
  30018. [
  30019. {
  30020. name: "Normal",
  30021. height: math.unit(1 + 3 / 12, "feet"),
  30022. default: true
  30023. },
  30024. ]
  30025. ))
  30026. characterMakers.push(() => makeCharacter(
  30027. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30028. {
  30029. anthro: {
  30030. height: math.unit(6, "feet"),
  30031. weight: math.unit(150, "lb"),
  30032. name: "Anthro",
  30033. image: {
  30034. source: "./media/characters/razz/anthro.svg",
  30035. extra: 1437 / 1343,
  30036. bottom: 48 / 1485
  30037. }
  30038. },
  30039. feral: {
  30040. height: math.unit(6, "feet"),
  30041. weight: math.unit(150, "lb"),
  30042. name: "Feral",
  30043. image: {
  30044. source: "./media/characters/razz/feral.svg",
  30045. extra: 2569 / 1385,
  30046. bottom: 95 / 2664
  30047. }
  30048. },
  30049. },
  30050. [
  30051. {
  30052. name: "Normal",
  30053. height: math.unit(6, "feet"),
  30054. default: true
  30055. },
  30056. ]
  30057. ))
  30058. characterMakers.push(() => makeCharacter(
  30059. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30060. {
  30061. front: {
  30062. height: math.unit(9 + 4 / 12, "feet"),
  30063. weight: math.unit(500, "lb"),
  30064. name: "Front",
  30065. image: {
  30066. source: "./media/characters/morrigan/front.svg",
  30067. extra: 2707 / 2579,
  30068. bottom: 156 / 2863
  30069. }
  30070. },
  30071. },
  30072. [
  30073. {
  30074. name: "Normal",
  30075. height: math.unit(9 + 4 / 12, "feet"),
  30076. default: true
  30077. },
  30078. ]
  30079. ))
  30080. characterMakers.push(() => makeCharacter(
  30081. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30082. {
  30083. front: {
  30084. height: math.unit(5, "stories"),
  30085. weight: math.unit(4000, "lb"),
  30086. name: "Front",
  30087. image: {
  30088. source: "./media/characters/jenene/front.svg",
  30089. extra: 1780 / 1710,
  30090. bottom: 57 / 1837
  30091. }
  30092. },
  30093. },
  30094. [
  30095. {
  30096. name: "Normal",
  30097. height: math.unit(5, "stories"),
  30098. default: true
  30099. },
  30100. ]
  30101. ))
  30102. characterMakers.push(() => makeCharacter(
  30103. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30104. {
  30105. taurSfw: {
  30106. height: math.unit(10, "meters"),
  30107. weight: math.unit(17500, "kg"),
  30108. name: "Taur",
  30109. image: {
  30110. source: "./media/characters/faey/taur-sfw.svg",
  30111. extra: 1200 / 968,
  30112. bottom: 41 / 1241
  30113. }
  30114. },
  30115. chestmaw: {
  30116. height: math.unit(2.01, "meters"),
  30117. name: "Chestmaw",
  30118. image: {
  30119. source: "./media/characters/faey/chestmaw.svg"
  30120. }
  30121. },
  30122. foot: {
  30123. height: math.unit(2.43, "meters"),
  30124. name: "Foot",
  30125. image: {
  30126. source: "./media/characters/faey/foot.svg"
  30127. }
  30128. },
  30129. jaws: {
  30130. height: math.unit(1.66, "meters"),
  30131. name: "Jaws",
  30132. image: {
  30133. source: "./media/characters/faey/jaws.svg"
  30134. }
  30135. },
  30136. tongues: {
  30137. height: math.unit(2.01, "meters"),
  30138. name: "Tongues",
  30139. image: {
  30140. source: "./media/characters/faey/tongues.svg"
  30141. }
  30142. },
  30143. },
  30144. [
  30145. {
  30146. name: "Small",
  30147. height: math.unit(10, "meters"),
  30148. default: true
  30149. },
  30150. {
  30151. name: "Big",
  30152. height: math.unit(500000, "km")
  30153. },
  30154. ]
  30155. ))
  30156. characterMakers.push(() => makeCharacter(
  30157. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30158. {
  30159. front: {
  30160. height: math.unit(7, "feet"),
  30161. weight: math.unit(275, "lb"),
  30162. name: "Front",
  30163. image: {
  30164. source: "./media/characters/roku/front.svg",
  30165. extra: 903 / 878,
  30166. bottom: 37 / 940
  30167. }
  30168. },
  30169. },
  30170. [
  30171. {
  30172. name: "Normal",
  30173. height: math.unit(7, "feet"),
  30174. default: true
  30175. },
  30176. {
  30177. name: "Macro",
  30178. height: math.unit(500, "feet")
  30179. },
  30180. {
  30181. name: "Megamacro",
  30182. height: math.unit(200, "miles")
  30183. },
  30184. ]
  30185. ))
  30186. characterMakers.push(() => makeCharacter(
  30187. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30188. {
  30189. front: {
  30190. height: math.unit(6 + 2 / 12, "feet"),
  30191. weight: math.unit(150, "lb"),
  30192. name: "Front",
  30193. image: {
  30194. source: "./media/characters/lira/front.svg",
  30195. extra: 1727 / 1605,
  30196. bottom: 26 / 1753
  30197. }
  30198. },
  30199. back: {
  30200. height: math.unit(6 + 2 / 12, "feet"),
  30201. weight: math.unit(150, "lb"),
  30202. name: "Back",
  30203. image: {
  30204. source: "./media/characters/lira/back.svg",
  30205. extra: 1713/1621,
  30206. bottom: 20/1733
  30207. }
  30208. },
  30209. hand: {
  30210. height: math.unit(0.75, "feet"),
  30211. name: "Hand",
  30212. image: {
  30213. source: "./media/characters/lira/hand.svg"
  30214. }
  30215. },
  30216. maw: {
  30217. height: math.unit(0.65, "feet"),
  30218. name: "Maw",
  30219. image: {
  30220. source: "./media/characters/lira/maw.svg"
  30221. }
  30222. },
  30223. pawDigi: {
  30224. height: math.unit(1.6, "feet"),
  30225. name: "Paw Digi",
  30226. image: {
  30227. source: "./media/characters/lira/paw-digi.svg"
  30228. }
  30229. },
  30230. pawPlanti: {
  30231. height: math.unit(1.4, "feet"),
  30232. name: "Paw Planti",
  30233. image: {
  30234. source: "./media/characters/lira/paw-planti.svg"
  30235. }
  30236. },
  30237. },
  30238. [
  30239. {
  30240. name: "Normal",
  30241. height: math.unit(6 + 2 / 12, "feet"),
  30242. default: true
  30243. },
  30244. {
  30245. name: "Macro",
  30246. height: math.unit(100, "feet")
  30247. },
  30248. {
  30249. name: "Macro²",
  30250. height: math.unit(1600, "feet")
  30251. },
  30252. {
  30253. name: "Planetary",
  30254. height: math.unit(20, "earths")
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(6, "feet"),
  30263. weight: math.unit(150, "lb"),
  30264. name: "Front",
  30265. image: {
  30266. source: "./media/characters/hadjet/front.svg",
  30267. extra: 1480 / 1346,
  30268. bottom: 26 / 1506
  30269. }
  30270. },
  30271. frontNsfw: {
  30272. height: math.unit(6, "feet"),
  30273. weight: math.unit(150, "lb"),
  30274. name: "Front (NSFW)",
  30275. image: {
  30276. source: "./media/characters/hadjet/front-nsfw.svg",
  30277. extra: 1440 / 1358,
  30278. bottom: 52 / 1492
  30279. }
  30280. },
  30281. },
  30282. [
  30283. {
  30284. name: "Macro",
  30285. height: math.unit(10, "stories"),
  30286. default: true
  30287. },
  30288. {
  30289. name: "Megamacro",
  30290. height: math.unit(1.5, "miles")
  30291. },
  30292. {
  30293. name: "Megamacro+",
  30294. height: math.unit(5, "miles")
  30295. },
  30296. ]
  30297. ))
  30298. characterMakers.push(() => makeCharacter(
  30299. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30300. {
  30301. side: {
  30302. height: math.unit(106, "feet"),
  30303. weight: math.unit(500, "tonnes"),
  30304. name: "Side",
  30305. image: {
  30306. source: "./media/characters/kodran/side.svg",
  30307. extra: 553 / 480,
  30308. bottom: 33 / 586
  30309. }
  30310. },
  30311. front: {
  30312. height: math.unit(132, "feet"),
  30313. weight: math.unit(500, "tonnes"),
  30314. name: "Front",
  30315. image: {
  30316. source: "./media/characters/kodran/front.svg",
  30317. extra: 667 / 643,
  30318. bottom: 42 / 709
  30319. }
  30320. },
  30321. flying: {
  30322. height: math.unit(350, "feet"),
  30323. weight: math.unit(500, "tonnes"),
  30324. name: "Flying",
  30325. image: {
  30326. source: "./media/characters/kodran/flying.svg"
  30327. }
  30328. },
  30329. foot: {
  30330. height: math.unit(33, "feet"),
  30331. name: "Foot",
  30332. image: {
  30333. source: "./media/characters/kodran/foot.svg"
  30334. }
  30335. },
  30336. footFront: {
  30337. height: math.unit(19, "feet"),
  30338. name: "Foot (Front)",
  30339. image: {
  30340. source: "./media/characters/kodran/foot-front.svg",
  30341. extra: 261 / 261,
  30342. bottom: 91 / 352
  30343. }
  30344. },
  30345. headFront: {
  30346. height: math.unit(53, "feet"),
  30347. name: "Head (Front)",
  30348. image: {
  30349. source: "./media/characters/kodran/head-front.svg"
  30350. }
  30351. },
  30352. headSide: {
  30353. height: math.unit(65, "feet"),
  30354. name: "Head (Side)",
  30355. image: {
  30356. source: "./media/characters/kodran/head-side.svg"
  30357. }
  30358. },
  30359. throat: {
  30360. height: math.unit(79, "feet"),
  30361. name: "Throat",
  30362. image: {
  30363. source: "./media/characters/kodran/throat.svg"
  30364. }
  30365. },
  30366. },
  30367. [
  30368. {
  30369. name: "Large",
  30370. height: math.unit(106, "feet"),
  30371. default: true
  30372. },
  30373. ]
  30374. ))
  30375. characterMakers.push(() => makeCharacter(
  30376. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30377. {
  30378. side: {
  30379. height: math.unit(11, "feet"),
  30380. weight: math.unit(150, "lb"),
  30381. name: "Side",
  30382. image: {
  30383. source: "./media/characters/pyxaron/side.svg",
  30384. extra: 305 / 195,
  30385. bottom: 17 / 322
  30386. }
  30387. },
  30388. },
  30389. [
  30390. {
  30391. name: "Normal",
  30392. height: math.unit(11, "feet"),
  30393. default: true
  30394. },
  30395. ]
  30396. ))
  30397. characterMakers.push(() => makeCharacter(
  30398. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30399. {
  30400. front: {
  30401. height: math.unit(6, "feet"),
  30402. weight: math.unit(150, "lb"),
  30403. name: "Front",
  30404. image: {
  30405. source: "./media/characters/meep/front.svg",
  30406. extra: 88 / 80,
  30407. bottom: 6 / 94
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Fun Sized",
  30414. height: math.unit(2, "inches"),
  30415. default: true
  30416. },
  30417. {
  30418. name: "Friend Sized",
  30419. height: math.unit(8, "inches")
  30420. },
  30421. ]
  30422. ))
  30423. characterMakers.push(() => makeCharacter(
  30424. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30425. {
  30426. front: {
  30427. height: math.unit(15, "feet"),
  30428. weight: math.unit(2500, "lb"),
  30429. name: "Front",
  30430. image: {
  30431. source: "./media/characters/holly-rabbit/front.svg",
  30432. extra: 1433 / 1233,
  30433. bottom: 125 / 1558
  30434. }
  30435. },
  30436. dick: {
  30437. height: math.unit(4.6, "feet"),
  30438. name: "Dick",
  30439. image: {
  30440. source: "./media/characters/holly-rabbit/dick.svg"
  30441. }
  30442. },
  30443. },
  30444. [
  30445. {
  30446. name: "Normal",
  30447. height: math.unit(15, "feet"),
  30448. default: true
  30449. },
  30450. {
  30451. name: "Macro",
  30452. height: math.unit(250, "feet")
  30453. },
  30454. {
  30455. name: "Macro+",
  30456. height: math.unit(2500, "feet")
  30457. },
  30458. ]
  30459. ))
  30460. characterMakers.push(() => makeCharacter(
  30461. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30462. {
  30463. front: {
  30464. height: math.unit(3.02, "meters"),
  30465. weight: math.unit(500, "kg"),
  30466. name: "Front",
  30467. image: {
  30468. source: "./media/characters/drena/front.svg",
  30469. extra: 282 / 243,
  30470. bottom: 8 / 290
  30471. }
  30472. },
  30473. side: {
  30474. height: math.unit(3.02, "meters"),
  30475. weight: math.unit(500, "kg"),
  30476. name: "Side",
  30477. image: {
  30478. source: "./media/characters/drena/side.svg",
  30479. extra: 280 / 245,
  30480. bottom: 10 / 290
  30481. }
  30482. },
  30483. back: {
  30484. height: math.unit(3.02, "meters"),
  30485. weight: math.unit(500, "kg"),
  30486. name: "Back",
  30487. image: {
  30488. source: "./media/characters/drena/back.svg",
  30489. extra: 278 / 243,
  30490. bottom: 2 / 280
  30491. }
  30492. },
  30493. foot: {
  30494. height: math.unit(0.75, "meters"),
  30495. name: "Foot",
  30496. image: {
  30497. source: "./media/characters/drena/foot.svg"
  30498. }
  30499. },
  30500. maw: {
  30501. height: math.unit(0.82, "meters"),
  30502. name: "Maw",
  30503. image: {
  30504. source: "./media/characters/drena/maw.svg"
  30505. }
  30506. },
  30507. eating: {
  30508. height: math.unit(0.75, "meters"),
  30509. name: "Eating",
  30510. image: {
  30511. source: "./media/characters/drena/eating.svg"
  30512. }
  30513. },
  30514. rump: {
  30515. height: math.unit(0.93, "meters"),
  30516. name: "Rump",
  30517. image: {
  30518. source: "./media/characters/drena/rump.svg"
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Normal",
  30525. height: math.unit(3.02, "meters"),
  30526. default: true
  30527. },
  30528. ]
  30529. ))
  30530. characterMakers.push(() => makeCharacter(
  30531. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30532. {
  30533. front: {
  30534. height: math.unit(6 + 4 / 12, "feet"),
  30535. weight: math.unit(250, "lb"),
  30536. name: "Front",
  30537. image: {
  30538. source: "./media/characters/remmyzilla/front.svg",
  30539. extra: 4033 / 3588,
  30540. bottom: 123 / 4156
  30541. }
  30542. },
  30543. back: {
  30544. height: math.unit(6 + 4 / 12, "feet"),
  30545. weight: math.unit(250, "lb"),
  30546. name: "Back",
  30547. image: {
  30548. source: "./media/characters/remmyzilla/back.svg",
  30549. extra: 2687 / 2555,
  30550. bottom: 48 / 2735
  30551. }
  30552. },
  30553. paw: {
  30554. height: math.unit(1.73, "feet"),
  30555. name: "Paw",
  30556. image: {
  30557. source: "./media/characters/remmyzilla/paw.svg"
  30558. },
  30559. extraAttributes: {
  30560. "toeSize": {
  30561. name: "Toe Size",
  30562. power: 2,
  30563. type: "area",
  30564. base: math.unit(0.0035, "m^2")
  30565. },
  30566. "padSize": {
  30567. name: "Pad Size",
  30568. power: 2,
  30569. type: "area",
  30570. base: math.unit(0.015, "m^2")
  30571. },
  30572. "pawsize": {
  30573. name: "Paw Size",
  30574. power: 2,
  30575. type: "area",
  30576. base: math.unit(0.072, "m^2")
  30577. },
  30578. }
  30579. },
  30580. maw: {
  30581. height: math.unit(1.73, "feet"),
  30582. name: "Maw",
  30583. image: {
  30584. source: "./media/characters/remmyzilla/maw.svg"
  30585. }
  30586. },
  30587. },
  30588. [
  30589. {
  30590. name: "Normal",
  30591. height: math.unit(6 + 4 / 12, "feet")
  30592. },
  30593. {
  30594. name: "Minimacro",
  30595. height: math.unit(12 + 8 / 12, "feet")
  30596. },
  30597. {
  30598. name: "Normal",
  30599. height: math.unit(640, "feet"),
  30600. default: true
  30601. },
  30602. {
  30603. name: "Megamacro",
  30604. height: math.unit(6400, "feet")
  30605. },
  30606. {
  30607. name: "Gigamacro",
  30608. height: math.unit(64000, "miles")
  30609. },
  30610. ]
  30611. ))
  30612. characterMakers.push(() => makeCharacter(
  30613. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30614. {
  30615. front: {
  30616. height: math.unit(2.5, "meters"),
  30617. weight: math.unit(300, "lb"),
  30618. name: "Front",
  30619. image: {
  30620. source: "./media/characters/lawrence/front.svg",
  30621. extra: 357 / 335,
  30622. bottom: 30 / 387
  30623. }
  30624. },
  30625. back: {
  30626. height: math.unit(2.5, "meters"),
  30627. weight: math.unit(300, "lb"),
  30628. name: "Back",
  30629. image: {
  30630. source: "./media/characters/lawrence/back.svg",
  30631. extra: 357 / 338,
  30632. bottom: 16 / 373
  30633. }
  30634. },
  30635. head: {
  30636. height: math.unit(0.9, "meter"),
  30637. name: "Head",
  30638. image: {
  30639. source: "./media/characters/lawrence/head.svg"
  30640. }
  30641. },
  30642. maw: {
  30643. height: math.unit(0.7, "meter"),
  30644. name: "Maw",
  30645. image: {
  30646. source: "./media/characters/lawrence/maw.svg"
  30647. }
  30648. },
  30649. footBottom: {
  30650. height: math.unit(0.5, "meter"),
  30651. name: "Foot (Bottom)",
  30652. image: {
  30653. source: "./media/characters/lawrence/foot-bottom.svg"
  30654. }
  30655. },
  30656. footTop: {
  30657. height: math.unit(0.5, "meter"),
  30658. name: "Foot (Top)",
  30659. image: {
  30660. source: "./media/characters/lawrence/foot-top.svg"
  30661. }
  30662. },
  30663. },
  30664. [
  30665. {
  30666. name: "Normal",
  30667. height: math.unit(2.5, "meters"),
  30668. default: true
  30669. },
  30670. {
  30671. name: "Macro",
  30672. height: math.unit(95, "meters")
  30673. },
  30674. {
  30675. name: "Megamacro",
  30676. height: math.unit(150, "km")
  30677. },
  30678. ]
  30679. ))
  30680. characterMakers.push(() => makeCharacter(
  30681. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30682. {
  30683. front: {
  30684. height: math.unit(4.2, "meters"),
  30685. name: "Front",
  30686. image: {
  30687. source: "./media/characters/sydney/front.svg",
  30688. extra: 1323 / 1277,
  30689. bottom: 111 / 1434
  30690. }
  30691. },
  30692. },
  30693. [
  30694. {
  30695. name: "Normal",
  30696. height: math.unit(4.2, "meters"),
  30697. default: true
  30698. },
  30699. ]
  30700. ))
  30701. characterMakers.push(() => makeCharacter(
  30702. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30703. {
  30704. back: {
  30705. height: math.unit(201, "feet"),
  30706. name: "Back",
  30707. image: {
  30708. source: "./media/characters/jessica/back.svg",
  30709. extra: 273 / 259,
  30710. bottom: 7 / 280
  30711. }
  30712. },
  30713. },
  30714. [
  30715. {
  30716. name: "Normal",
  30717. height: math.unit(201, "feet"),
  30718. default: true
  30719. },
  30720. {
  30721. name: "Megamacro",
  30722. height: math.unit(8, "miles")
  30723. },
  30724. ]
  30725. ))
  30726. characterMakers.push(() => makeCharacter(
  30727. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30728. {
  30729. side: {
  30730. height: math.unit(5.6, "m"),
  30731. weight: math.unit(8000, "kg"),
  30732. name: "Side",
  30733. image: {
  30734. source: "./media/characters/victoria/side.svg",
  30735. extra: 1542/1229,
  30736. bottom: 124/1666
  30737. }
  30738. },
  30739. maw: {
  30740. height: math.unit(7.14, "feet"),
  30741. name: "Maw",
  30742. image: {
  30743. source: "./media/characters/victoria/maw.svg"
  30744. }
  30745. },
  30746. },
  30747. [
  30748. {
  30749. name: "Normal",
  30750. height: math.unit(5.6, "m"),
  30751. default: true
  30752. },
  30753. ]
  30754. ))
  30755. characterMakers.push(() => makeCharacter(
  30756. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30757. {
  30758. front: {
  30759. height: math.unit(5 + 6 / 12, "feet"),
  30760. name: "Front",
  30761. image: {
  30762. source: "./media/characters/cat/front.svg",
  30763. extra: 1449/1295,
  30764. bottom: 34/1483
  30765. },
  30766. form: "cat",
  30767. default: true
  30768. },
  30769. back: {
  30770. height: math.unit(5 + 6 / 12, "feet"),
  30771. name: "Back",
  30772. image: {
  30773. source: "./media/characters/cat/back.svg",
  30774. extra: 1466/1301,
  30775. bottom: 19/1485
  30776. },
  30777. form: "cat"
  30778. },
  30779. taur: {
  30780. height: math.unit(7, "feet"),
  30781. name: "Taur",
  30782. image: {
  30783. source: "./media/characters/cat/taur.svg",
  30784. extra: 1389/1233,
  30785. bottom: 83/1472
  30786. },
  30787. form: "taur",
  30788. default: true
  30789. },
  30790. lucarioFront: {
  30791. height: math.unit(4, "feet"),
  30792. name: "Lucario (Front)",
  30793. image: {
  30794. source: "./media/characters/cat/lucario-front.svg",
  30795. extra: 1149/1019,
  30796. bottom: 84/1233
  30797. },
  30798. form: "lucario",
  30799. default: true
  30800. },
  30801. lucarioBack: {
  30802. height: math.unit(4, "feet"),
  30803. name: "Lucario (Back)",
  30804. image: {
  30805. source: "./media/characters/cat/lucario-back.svg",
  30806. extra: 1190/1059,
  30807. bottom: 33/1223
  30808. },
  30809. form: "lucario"
  30810. },
  30811. megaLucario: {
  30812. height: math.unit(4, "feet"),
  30813. name: "Mega Lucario",
  30814. image: {
  30815. source: "./media/characters/cat/mega-lucario.svg",
  30816. extra: 1515 / 1319,
  30817. bottom: 63 / 1578
  30818. },
  30819. form: "lucario"
  30820. },
  30821. nickit: {
  30822. height: math.unit(2, "feet"),
  30823. name: "Nickit",
  30824. image: {
  30825. source: "./media/characters/cat/nickit.svg",
  30826. extra: 1980 / 1585,
  30827. bottom: 102 / 2082
  30828. },
  30829. form: "nickit",
  30830. default: true
  30831. },
  30832. lopunnyFront: {
  30833. height: math.unit(5, "feet"),
  30834. name: "Lopunny (Front)",
  30835. image: {
  30836. source: "./media/characters/cat/lopunny-front.svg",
  30837. extra: 1782 / 1469,
  30838. bottom: 38 / 1820
  30839. },
  30840. form: "lopunny",
  30841. default: true
  30842. },
  30843. lopunnyBack: {
  30844. height: math.unit(5, "feet"),
  30845. name: "Lopunny (Back)",
  30846. image: {
  30847. source: "./media/characters/cat/lopunny-back.svg",
  30848. extra: 1660 / 1490,
  30849. bottom: 25 / 1685
  30850. },
  30851. form: "lopunny"
  30852. },
  30853. },
  30854. [
  30855. {
  30856. name: "Really small",
  30857. height: math.unit(1, "nm")
  30858. },
  30859. {
  30860. name: "Micro",
  30861. height: math.unit(5, "inches")
  30862. },
  30863. {
  30864. name: "Normal",
  30865. height: math.unit(5 + 6 / 12, "feet"),
  30866. default: true
  30867. },
  30868. {
  30869. name: "Macro",
  30870. height: math.unit(50, "feet")
  30871. },
  30872. {
  30873. name: "Macro+",
  30874. height: math.unit(150, "feet")
  30875. },
  30876. {
  30877. name: "Megamacro",
  30878. height: math.unit(100, "miles")
  30879. },
  30880. ]
  30881. ))
  30882. characterMakers.push(() => makeCharacter(
  30883. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30884. {
  30885. front: {
  30886. height: math.unit(63.4, "meters"),
  30887. weight: math.unit(3.28349e+6, "kilograms"),
  30888. name: "Front",
  30889. image: {
  30890. source: "./media/characters/kirina-violet/front.svg",
  30891. extra: 2812 / 2725,
  30892. bottom: 0 / 2812
  30893. }
  30894. },
  30895. back: {
  30896. height: math.unit(63.4, "meters"),
  30897. weight: math.unit(3.28349e+6, "kilograms"),
  30898. name: "Back",
  30899. image: {
  30900. source: "./media/characters/kirina-violet/back.svg",
  30901. extra: 2812 / 2725,
  30902. bottom: 0 / 2812
  30903. }
  30904. },
  30905. mouth: {
  30906. height: math.unit(4.35, "meters"),
  30907. name: "Mouth",
  30908. image: {
  30909. source: "./media/characters/kirina-violet/mouth.svg"
  30910. }
  30911. },
  30912. paw: {
  30913. height: math.unit(5.6, "meters"),
  30914. name: "Paw",
  30915. image: {
  30916. source: "./media/characters/kirina-violet/paw.svg"
  30917. }
  30918. },
  30919. tail: {
  30920. height: math.unit(18, "meters"),
  30921. name: "Tail",
  30922. image: {
  30923. source: "./media/characters/kirina-violet/tail.svg"
  30924. }
  30925. },
  30926. },
  30927. [
  30928. {
  30929. name: "Macro",
  30930. height: math.unit(63.4, "meters"),
  30931. default: true
  30932. },
  30933. ]
  30934. ))
  30935. characterMakers.push(() => makeCharacter(
  30936. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30937. {
  30938. front: {
  30939. height: math.unit(75, "feet"),
  30940. name: "Front",
  30941. image: {
  30942. source: "./media/characters/cat-gigachu/front.svg",
  30943. extra: 1239/1027,
  30944. bottom: 32/1271
  30945. }
  30946. },
  30947. back: {
  30948. height: math.unit(75, "feet"),
  30949. name: "Back",
  30950. image: {
  30951. source: "./media/characters/cat-gigachu/back.svg",
  30952. extra: 1229/1030,
  30953. bottom: 9/1238
  30954. }
  30955. },
  30956. },
  30957. [
  30958. {
  30959. name: "Dynamax",
  30960. height: math.unit(75, "feet"),
  30961. default: true
  30962. },
  30963. ]
  30964. ))
  30965. characterMakers.push(() => makeCharacter(
  30966. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30967. {
  30968. front: {
  30969. height: math.unit(6, "feet"),
  30970. weight: math.unit(150, "lb"),
  30971. name: "Front",
  30972. image: {
  30973. source: "./media/characters/sfaiyan/front.svg",
  30974. extra: 999 / 978,
  30975. bottom: 5 / 1004
  30976. }
  30977. },
  30978. },
  30979. [
  30980. {
  30981. name: "Normal",
  30982. height: math.unit(1.82, "meters")
  30983. },
  30984. {
  30985. name: "Giant",
  30986. height: math.unit(2.27, "km"),
  30987. default: true
  30988. },
  30989. ]
  30990. ))
  30991. characterMakers.push(() => makeCharacter(
  30992. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30993. {
  30994. front: {
  30995. height: math.unit(179, "cm"),
  30996. weight: math.unit(100, "kg"),
  30997. name: "Front",
  30998. image: {
  30999. source: "./media/characters/raunehkeli/front.svg",
  31000. extra: 1934 / 1926,
  31001. bottom: 0 / 1934
  31002. }
  31003. },
  31004. },
  31005. [
  31006. {
  31007. name: "Normal",
  31008. height: math.unit(179, "cm")
  31009. },
  31010. {
  31011. name: "Maximum",
  31012. height: math.unit(575, "meters"),
  31013. default: true
  31014. },
  31015. ]
  31016. ))
  31017. characterMakers.push(() => makeCharacter(
  31018. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31019. {
  31020. front: {
  31021. height: math.unit(6, "feet"),
  31022. weight: math.unit(150, "lb"),
  31023. name: "Front",
  31024. image: {
  31025. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31026. extra: 2625 / 2518,
  31027. bottom: 60 / 2685
  31028. }
  31029. },
  31030. },
  31031. [
  31032. {
  31033. name: "Normal",
  31034. height: math.unit(6 + 2 / 12, "feet")
  31035. },
  31036. {
  31037. name: "Macro",
  31038. height: math.unit(1180, "feet"),
  31039. default: true
  31040. },
  31041. ]
  31042. ))
  31043. characterMakers.push(() => makeCharacter(
  31044. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31045. {
  31046. front: {
  31047. height: math.unit(5 + 6 / 12, "feet"),
  31048. weight: math.unit(108, "lb"),
  31049. name: "Front",
  31050. image: {
  31051. source: "./media/characters/lilith-zott/front.svg",
  31052. extra: 2510 / 2238,
  31053. bottom: 100 / 2610
  31054. }
  31055. },
  31056. frontDressed: {
  31057. height: math.unit(5 + 6 / 12, "feet"),
  31058. weight: math.unit(108, "lb"),
  31059. name: "Front (Dressed)",
  31060. image: {
  31061. source: "./media/characters/lilith-zott/front-dressed.svg",
  31062. extra: 2510 / 2238,
  31063. bottom: 100 / 2610
  31064. }
  31065. },
  31066. },
  31067. [
  31068. {
  31069. name: "Normal",
  31070. height: math.unit(5 + 6 / 12, "feet")
  31071. },
  31072. {
  31073. name: "Macro",
  31074. height: math.unit(1030, "feet"),
  31075. default: true
  31076. },
  31077. ]
  31078. ))
  31079. characterMakers.push(() => makeCharacter(
  31080. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31081. {
  31082. front: {
  31083. height: math.unit(6, "feet"),
  31084. weight: math.unit(150, "lb"),
  31085. name: "Front",
  31086. image: {
  31087. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31088. extra: 2567 / 2435,
  31089. bottom: 39 / 2606
  31090. }
  31091. },
  31092. frontSuper: {
  31093. height: math.unit(6, "feet"),
  31094. name: "Front (Super)",
  31095. image: {
  31096. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31097. extra: 2567 / 2435,
  31098. bottom: 39 / 2606
  31099. }
  31100. },
  31101. },
  31102. [
  31103. {
  31104. name: "Normal",
  31105. height: math.unit(5 + 10 / 12, "feet")
  31106. },
  31107. {
  31108. name: "Macro",
  31109. height: math.unit(1100, "feet"),
  31110. default: true
  31111. },
  31112. ]
  31113. ))
  31114. characterMakers.push(() => makeCharacter(
  31115. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31116. {
  31117. front: {
  31118. height: math.unit(100, "miles"),
  31119. name: "Front",
  31120. image: {
  31121. source: "./media/characters/sona/front.svg",
  31122. extra: 2433 / 2201,
  31123. bottom: 53 / 2486
  31124. }
  31125. },
  31126. foot: {
  31127. height: math.unit(16.1, "miles"),
  31128. name: "Foot",
  31129. image: {
  31130. source: "./media/characters/sona/foot.svg"
  31131. }
  31132. },
  31133. },
  31134. [
  31135. {
  31136. name: "Macro",
  31137. height: math.unit(100, "miles"),
  31138. default: true
  31139. },
  31140. ]
  31141. ))
  31142. characterMakers.push(() => makeCharacter(
  31143. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31144. {
  31145. front: {
  31146. height: math.unit(6, "feet"),
  31147. weight: math.unit(150, "lb"),
  31148. name: "Front",
  31149. image: {
  31150. source: "./media/characters/bailey/front.svg",
  31151. extra: 1778 / 1724,
  31152. bottom: 30 / 1808
  31153. }
  31154. },
  31155. },
  31156. [
  31157. {
  31158. name: "Micro",
  31159. height: math.unit(4, "inches")
  31160. },
  31161. {
  31162. name: "Normal",
  31163. height: math.unit(5 + 5 / 12, "feet"),
  31164. default: true
  31165. },
  31166. {
  31167. name: "Macro",
  31168. height: math.unit(250, "feet")
  31169. },
  31170. {
  31171. name: "Megamacro",
  31172. height: math.unit(100, "miles")
  31173. },
  31174. ]
  31175. ))
  31176. characterMakers.push(() => makeCharacter(
  31177. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31178. {
  31179. front: {
  31180. height: math.unit(5 + 2 / 12, "feet"),
  31181. weight: math.unit(120, "lb"),
  31182. name: "Front",
  31183. image: {
  31184. source: "./media/characters/snaps/front.svg",
  31185. extra: 2370 / 2177,
  31186. bottom: 48 / 2418
  31187. }
  31188. },
  31189. back: {
  31190. height: math.unit(5 + 2 / 12, "feet"),
  31191. weight: math.unit(120, "lb"),
  31192. name: "Back",
  31193. image: {
  31194. source: "./media/characters/snaps/back.svg",
  31195. extra: 2408 / 2258,
  31196. bottom: 15 / 2423
  31197. }
  31198. },
  31199. },
  31200. [
  31201. {
  31202. name: "Micro",
  31203. height: math.unit(9, "inches")
  31204. },
  31205. {
  31206. name: "Normal",
  31207. height: math.unit(5 + 2 / 12, "feet"),
  31208. default: true
  31209. },
  31210. {
  31211. name: "Mini Macro",
  31212. height: math.unit(10, "feet")
  31213. },
  31214. ]
  31215. ))
  31216. characterMakers.push(() => makeCharacter(
  31217. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31218. {
  31219. front: {
  31220. height: math.unit(1.8, "meters"),
  31221. weight: math.unit(85, "kg"),
  31222. name: "Front",
  31223. image: {
  31224. source: "./media/characters/azteck/front.svg",
  31225. extra: 2815 / 2625,
  31226. bottom: 89 / 2904
  31227. }
  31228. },
  31229. back: {
  31230. height: math.unit(1.8, "meters"),
  31231. weight: math.unit(85, "kg"),
  31232. name: "Back",
  31233. image: {
  31234. source: "./media/characters/azteck/back.svg",
  31235. extra: 2856 / 2648,
  31236. bottom: 85 / 2941
  31237. }
  31238. },
  31239. frontDressed: {
  31240. height: math.unit(1.8, "meters"),
  31241. weight: math.unit(85, "kg"),
  31242. name: "Front (Dressed)",
  31243. image: {
  31244. source: "./media/characters/azteck/front-dressed.svg",
  31245. extra: 2147 / 2003,
  31246. bottom: 68 / 2215
  31247. }
  31248. },
  31249. head: {
  31250. height: math.unit(0.47, "meters"),
  31251. weight: math.unit(85, "kg"),
  31252. name: "Head",
  31253. image: {
  31254. source: "./media/characters/azteck/head.svg"
  31255. }
  31256. },
  31257. },
  31258. [
  31259. {
  31260. name: "Bite sized",
  31261. height: math.unit(16, "cm")
  31262. },
  31263. {
  31264. name: "Normal",
  31265. height: math.unit(1.8, "meters"),
  31266. default: true
  31267. },
  31268. ]
  31269. ))
  31270. characterMakers.push(() => makeCharacter(
  31271. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31272. {
  31273. front: {
  31274. height: math.unit(6, "feet"),
  31275. weight: math.unit(150, "lb"),
  31276. name: "Front",
  31277. image: {
  31278. source: "./media/characters/pidge/front.svg",
  31279. extra: 1936/1820,
  31280. bottom: 0/1936
  31281. }
  31282. },
  31283. back: {
  31284. height: math.unit(6, "feet"),
  31285. weight: math.unit(150, "lb"),
  31286. name: "Back",
  31287. image: {
  31288. source: "./media/characters/pidge/back.svg",
  31289. extra: 1938/1843,
  31290. bottom: 0/1938
  31291. }
  31292. },
  31293. casual: {
  31294. height: math.unit(6, "feet"),
  31295. weight: math.unit(150, "lb"),
  31296. name: "Casual",
  31297. image: {
  31298. source: "./media/characters/pidge/casual.svg",
  31299. extra: 1936/1820,
  31300. bottom: 0/1936
  31301. }
  31302. },
  31303. tech: {
  31304. height: math.unit(6, "feet"),
  31305. weight: math.unit(150, "lb"),
  31306. name: "Tech",
  31307. image: {
  31308. source: "./media/characters/pidge/tech.svg",
  31309. extra: 1802/1682,
  31310. bottom: 0/1802
  31311. }
  31312. },
  31313. head: {
  31314. height: math.unit(1.61, "feet"),
  31315. name: "Head",
  31316. image: {
  31317. source: "./media/characters/pidge/head.svg"
  31318. }
  31319. },
  31320. collar: {
  31321. height: math.unit(0.82, "feet"),
  31322. name: "Collar",
  31323. image: {
  31324. source: "./media/characters/pidge/collar.svg"
  31325. }
  31326. },
  31327. },
  31328. [
  31329. {
  31330. name: "Macro",
  31331. height: math.unit(2, "mile"),
  31332. default: true
  31333. },
  31334. {
  31335. name: "PUPPY",
  31336. height: math.unit(20, "miles")
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31342. {
  31343. front: {
  31344. height: math.unit(6, "feet"),
  31345. weight: math.unit(150, "lb"),
  31346. name: "Front",
  31347. image: {
  31348. source: "./media/characters/en/front.svg",
  31349. extra: 1697 / 1563,
  31350. bottom: 103 / 1800
  31351. }
  31352. },
  31353. back: {
  31354. height: math.unit(6, "feet"),
  31355. weight: math.unit(150, "lb"),
  31356. name: "Back",
  31357. image: {
  31358. source: "./media/characters/en/back.svg",
  31359. extra: 1700 / 1570,
  31360. bottom: 51 / 1751
  31361. }
  31362. },
  31363. frontDressed: {
  31364. height: math.unit(6, "feet"),
  31365. weight: math.unit(150, "lb"),
  31366. name: "Front (Dressed)",
  31367. image: {
  31368. source: "./media/characters/en/front-dressed.svg",
  31369. extra: 1697 / 1563,
  31370. bottom: 103 / 1800
  31371. }
  31372. },
  31373. backDressed: {
  31374. height: math.unit(6, "feet"),
  31375. weight: math.unit(150, "lb"),
  31376. name: "Back (Dressed)",
  31377. image: {
  31378. source: "./media/characters/en/back-dressed.svg",
  31379. extra: 1700 / 1570,
  31380. bottom: 51 / 1751
  31381. }
  31382. },
  31383. },
  31384. [
  31385. {
  31386. name: "Macro",
  31387. height: math.unit(210, "feet"),
  31388. default: true
  31389. },
  31390. ]
  31391. ))
  31392. characterMakers.push(() => makeCharacter(
  31393. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31394. {
  31395. front: {
  31396. height: math.unit(6, "feet"),
  31397. weight: math.unit(150, "lb"),
  31398. name: "Front",
  31399. image: {
  31400. source: "./media/characters/haze-orris/front.svg",
  31401. extra: 3975 / 3525,
  31402. bottom: 137 / 4112
  31403. }
  31404. },
  31405. },
  31406. [
  31407. {
  31408. name: "Micro",
  31409. height: math.unit(150, "mm"),
  31410. default: true
  31411. },
  31412. ]
  31413. ))
  31414. characterMakers.push(() => makeCharacter(
  31415. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31416. {
  31417. front: {
  31418. height: math.unit(6, "feet"),
  31419. weight: math.unit(150, "lb"),
  31420. name: "Front",
  31421. image: {
  31422. source: "./media/characters/casselene-yaro/front.svg",
  31423. extra: 4721 / 4541,
  31424. bottom: 82 / 4803
  31425. }
  31426. },
  31427. back: {
  31428. height: math.unit(6, "feet"),
  31429. weight: math.unit(150, "lb"),
  31430. name: "Back",
  31431. image: {
  31432. source: "./media/characters/casselene-yaro/back.svg",
  31433. extra: 4569 / 4377,
  31434. bottom: 69 / 4638
  31435. }
  31436. },
  31437. dressed: {
  31438. height: math.unit(6, "feet"),
  31439. weight: math.unit(150, "lb"),
  31440. name: "Dressed",
  31441. image: {
  31442. source: "./media/characters/casselene-yaro/dressed.svg",
  31443. extra: 4721 / 4541,
  31444. bottom: 82 / 4803
  31445. }
  31446. },
  31447. maw: {
  31448. height: math.unit(1, "feet"),
  31449. name: "Maw",
  31450. image: {
  31451. source: "./media/characters/casselene-yaro/maw.svg"
  31452. }
  31453. },
  31454. },
  31455. [
  31456. {
  31457. name: "Macro",
  31458. height: math.unit(190, "feet"),
  31459. default: true
  31460. },
  31461. ]
  31462. ))
  31463. characterMakers.push(() => makeCharacter(
  31464. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31465. {
  31466. front: {
  31467. height: math.unit(10, "feet"),
  31468. weight: math.unit(15015, "lb"),
  31469. name: "Front",
  31470. image: {
  31471. source: "./media/characters/platine/front.svg",
  31472. extra: 1741/1650,
  31473. bottom: 84/1825
  31474. }
  31475. },
  31476. side: {
  31477. height: math.unit(10, "feet"),
  31478. weight: math.unit(15015, "lb"),
  31479. name: "Side",
  31480. image: {
  31481. source: "./media/characters/platine/side.svg",
  31482. extra: 1790/1705,
  31483. bottom: 29/1819
  31484. }
  31485. },
  31486. },
  31487. [
  31488. {
  31489. name: "Normal",
  31490. height: math.unit(10, "feet"),
  31491. default: true
  31492. },
  31493. {
  31494. name: "Macro",
  31495. height: math.unit(100, "feet")
  31496. },
  31497. {
  31498. name: "Megamacro",
  31499. height: math.unit(1000, "feet")
  31500. },
  31501. ]
  31502. ))
  31503. characterMakers.push(() => makeCharacter(
  31504. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31505. {
  31506. front: {
  31507. height: math.unit(15 + 5 / 12, "feet"),
  31508. weight: math.unit(4600, "lb"),
  31509. name: "Front",
  31510. image: {
  31511. source: "./media/characters/neapolitan-ananassa/front.svg",
  31512. extra: 2903 / 2736,
  31513. bottom: 0 / 2903
  31514. }
  31515. },
  31516. side: {
  31517. height: math.unit(15 + 5 / 12, "feet"),
  31518. weight: math.unit(4600, "lb"),
  31519. name: "Side",
  31520. image: {
  31521. source: "./media/characters/neapolitan-ananassa/side.svg",
  31522. extra: 2925 / 2719,
  31523. bottom: 0 / 2925
  31524. }
  31525. },
  31526. back: {
  31527. height: math.unit(15 + 5 / 12, "feet"),
  31528. weight: math.unit(4600, "lb"),
  31529. name: "Back",
  31530. image: {
  31531. source: "./media/characters/neapolitan-ananassa/back.svg",
  31532. extra: 2903 / 2736,
  31533. bottom: 0 / 2903
  31534. }
  31535. },
  31536. },
  31537. [
  31538. {
  31539. name: "Normal",
  31540. height: math.unit(15 + 5 / 12, "feet"),
  31541. default: true
  31542. },
  31543. {
  31544. name: "Post-Millenium",
  31545. height: math.unit(35 + 5 / 12, "feet")
  31546. },
  31547. {
  31548. name: "Post-Era",
  31549. height: math.unit(450 + 5 / 12, "feet")
  31550. },
  31551. ]
  31552. ))
  31553. characterMakers.push(() => makeCharacter(
  31554. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31555. {
  31556. front: {
  31557. height: math.unit(300, "meters"),
  31558. weight: math.unit(125000, "tonnes"),
  31559. name: "Front",
  31560. image: {
  31561. source: "./media/characters/pazuzu/front.svg",
  31562. extra: 877 / 794,
  31563. bottom: 47 / 924
  31564. }
  31565. },
  31566. },
  31567. [
  31568. {
  31569. name: "Macro",
  31570. height: math.unit(300, "meters"),
  31571. default: true
  31572. },
  31573. ]
  31574. ))
  31575. characterMakers.push(() => makeCharacter(
  31576. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31577. {
  31578. side: {
  31579. height: math.unit(10 + 7 / 12, "feet"),
  31580. weight: math.unit(2.5, "tons"),
  31581. name: "Side",
  31582. image: {
  31583. source: "./media/characters/aasha/side.svg",
  31584. extra: 1345 / 1245,
  31585. bottom: 111 / 1456
  31586. }
  31587. },
  31588. back: {
  31589. height: math.unit(10 + 7 / 12, "feet"),
  31590. weight: math.unit(2.5, "tons"),
  31591. name: "Back",
  31592. image: {
  31593. source: "./media/characters/aasha/back.svg",
  31594. extra: 1133 / 1057,
  31595. bottom: 257 / 1390
  31596. }
  31597. },
  31598. },
  31599. [
  31600. {
  31601. name: "Normal",
  31602. height: math.unit(10 + 7 / 12, "feet"),
  31603. default: true
  31604. },
  31605. ]
  31606. ))
  31607. characterMakers.push(() => makeCharacter(
  31608. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31609. {
  31610. front: {
  31611. height: math.unit(6 + 3 / 12, "feet"),
  31612. name: "Front",
  31613. image: {
  31614. source: "./media/characters/nevan/front.svg",
  31615. extra: 704 / 704,
  31616. bottom: 28 / 732
  31617. }
  31618. },
  31619. back: {
  31620. height: math.unit(6 + 3 / 12, "feet"),
  31621. name: "Back",
  31622. image: {
  31623. source: "./media/characters/nevan/back.svg",
  31624. extra: 714 / 714,
  31625. bottom: 21 / 735
  31626. }
  31627. },
  31628. frontFlaccid: {
  31629. height: math.unit(6 + 3 / 12, "feet"),
  31630. name: "Front (Flaccid)",
  31631. image: {
  31632. source: "./media/characters/nevan/front-flaccid.svg",
  31633. extra: 704 / 704,
  31634. bottom: 28 / 732
  31635. }
  31636. },
  31637. frontErect: {
  31638. height: math.unit(6 + 3 / 12, "feet"),
  31639. name: "Front (Erect)",
  31640. image: {
  31641. source: "./media/characters/nevan/front-erect.svg",
  31642. extra: 704 / 704,
  31643. bottom: 28 / 732
  31644. }
  31645. },
  31646. backFlaccid: {
  31647. height: math.unit(6 + 3 / 12, "feet"),
  31648. name: "Back (Flaccid)",
  31649. image: {
  31650. source: "./media/characters/nevan/back-flaccid.svg",
  31651. extra: 714 / 714,
  31652. bottom: 21 / 735
  31653. }
  31654. },
  31655. },
  31656. [
  31657. {
  31658. name: "Normal",
  31659. height: math.unit(6 + 3 / 12, "feet"),
  31660. default: true
  31661. },
  31662. ]
  31663. ))
  31664. characterMakers.push(() => makeCharacter(
  31665. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31666. {
  31667. front: {
  31668. height: math.unit(4, "feet"),
  31669. name: "Front",
  31670. image: {
  31671. source: "./media/characters/arhan/front.svg",
  31672. extra: 3368 / 3133,
  31673. bottom: 0 / 3368
  31674. }
  31675. },
  31676. side: {
  31677. height: math.unit(4, "feet"),
  31678. name: "Side",
  31679. image: {
  31680. source: "./media/characters/arhan/side.svg",
  31681. extra: 3347 / 3105,
  31682. bottom: 0 / 3347
  31683. }
  31684. },
  31685. tongue: {
  31686. height: math.unit(1.42, "feet"),
  31687. name: "Tongue",
  31688. image: {
  31689. source: "./media/characters/arhan/tongue.svg"
  31690. }
  31691. },
  31692. head: {
  31693. height: math.unit(0.85, "feet"),
  31694. name: "Head",
  31695. image: {
  31696. source: "./media/characters/arhan/head.svg"
  31697. }
  31698. },
  31699. },
  31700. [
  31701. {
  31702. name: "Normal",
  31703. height: math.unit(4, "feet"),
  31704. default: true
  31705. },
  31706. ]
  31707. ))
  31708. characterMakers.push(() => makeCharacter(
  31709. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31710. {
  31711. front: {
  31712. height: math.unit(5 + 7.5 / 12, "feet"),
  31713. weight: math.unit(120, "lb"),
  31714. name: "Front",
  31715. image: {
  31716. source: "./media/characters/digi-duncan/front.svg",
  31717. extra: 330 / 326,
  31718. bottom: 16 / 346
  31719. }
  31720. },
  31721. side: {
  31722. height: math.unit(5 + 7.5 / 12, "feet"),
  31723. weight: math.unit(120, "lb"),
  31724. name: "Side",
  31725. image: {
  31726. source: "./media/characters/digi-duncan/side.svg",
  31727. extra: 341 / 337,
  31728. bottom: 1 / 342
  31729. }
  31730. },
  31731. back: {
  31732. height: math.unit(5 + 7.5 / 12, "feet"),
  31733. weight: math.unit(120, "lb"),
  31734. name: "Back",
  31735. image: {
  31736. source: "./media/characters/digi-duncan/back.svg",
  31737. extra: 330 / 326,
  31738. bottom: 12 / 342
  31739. }
  31740. },
  31741. },
  31742. [
  31743. {
  31744. name: "Speck",
  31745. height: math.unit(0.25, "mm")
  31746. },
  31747. {
  31748. name: "Micro",
  31749. height: math.unit(5, "mm")
  31750. },
  31751. {
  31752. name: "Tiny",
  31753. height: math.unit(0.5, "inches"),
  31754. default: true
  31755. },
  31756. {
  31757. name: "Human",
  31758. height: math.unit(5 + 7.5 / 12, "feet")
  31759. },
  31760. {
  31761. name: "Minigiant",
  31762. height: math.unit(8 + 5.25, "feet")
  31763. },
  31764. {
  31765. name: "Giant",
  31766. height: math.unit(2000, "feet")
  31767. },
  31768. {
  31769. name: "Mega",
  31770. height: math.unit(371.1, "miles")
  31771. },
  31772. ]
  31773. ))
  31774. characterMakers.push(() => makeCharacter(
  31775. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31776. {
  31777. front: {
  31778. height: math.unit(2, "meters"),
  31779. weight: math.unit(350, "kg"),
  31780. name: "Front",
  31781. image: {
  31782. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31783. extra: 898 / 838,
  31784. bottom: 9 / 907
  31785. }
  31786. },
  31787. },
  31788. [
  31789. {
  31790. name: "Micro",
  31791. height: math.unit(8, "meters")
  31792. },
  31793. {
  31794. name: "Normal",
  31795. height: math.unit(50, "meters"),
  31796. default: true
  31797. },
  31798. {
  31799. name: "Macro",
  31800. height: math.unit(500, "meters")
  31801. },
  31802. ]
  31803. ))
  31804. characterMakers.push(() => makeCharacter(
  31805. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31806. {
  31807. front: {
  31808. height: math.unit(6 + 6 / 12, "feet"),
  31809. name: "Front",
  31810. image: {
  31811. source: "./media/characters/khardesh/front.svg",
  31812. extra: 1788/1596,
  31813. bottom: 66/1854
  31814. }
  31815. },
  31816. back: {
  31817. height: math.unit(6 + 6 / 12, "feet"),
  31818. name: "Back",
  31819. image: {
  31820. source: "./media/characters/khardesh/back.svg",
  31821. extra: 1781/1584,
  31822. bottom: 68/1849
  31823. }
  31824. },
  31825. },
  31826. [
  31827. {
  31828. name: "Normal",
  31829. height: math.unit(6 + 6 / 12, "feet"),
  31830. default: true
  31831. },
  31832. {
  31833. name: "Normal+",
  31834. height: math.unit(4, "meters")
  31835. },
  31836. {
  31837. name: "Macro",
  31838. height: math.unit(50, "meters")
  31839. },
  31840. {
  31841. name: "Macro+",
  31842. height: math.unit(100, "meters")
  31843. },
  31844. {
  31845. name: "Megamacro",
  31846. height: math.unit(20, "km")
  31847. },
  31848. ]
  31849. ))
  31850. characterMakers.push(() => makeCharacter(
  31851. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31852. {
  31853. front: {
  31854. height: math.unit(6, "feet"),
  31855. weight: math.unit(150, "lb"),
  31856. name: "Front",
  31857. image: {
  31858. source: "./media/characters/kosho/front.svg",
  31859. extra: 1847 / 1847,
  31860. bottom: 86 / 1933
  31861. }
  31862. },
  31863. },
  31864. [
  31865. {
  31866. name: "Second-stage micro",
  31867. height: math.unit(0.5, "inches")
  31868. },
  31869. {
  31870. name: "First-stage micro",
  31871. height: math.unit(6, "inches")
  31872. },
  31873. {
  31874. name: "Normal",
  31875. height: math.unit(6, "feet"),
  31876. default: true
  31877. },
  31878. {
  31879. name: "First-stage macro",
  31880. height: math.unit(72, "feet")
  31881. },
  31882. {
  31883. name: "Second-stage macro",
  31884. height: math.unit(864, "feet")
  31885. },
  31886. ]
  31887. ))
  31888. characterMakers.push(() => makeCharacter(
  31889. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31890. {
  31891. normal: {
  31892. height: math.unit(4 + 6 / 12, "feet"),
  31893. name: "Normal",
  31894. image: {
  31895. source: "./media/characters/hydra/normal.svg",
  31896. extra: 2833 / 2634,
  31897. bottom: 68 / 2901
  31898. }
  31899. },
  31900. smol: {
  31901. height: math.unit(0.705, "inches"),
  31902. name: "Smol",
  31903. image: {
  31904. source: "./media/characters/hydra/smol.svg",
  31905. extra: 2715 / 2540,
  31906. bottom: 0 / 2715
  31907. }
  31908. },
  31909. },
  31910. [
  31911. {
  31912. name: "Normal",
  31913. height: math.unit(4 + 6 / 12, "feet"),
  31914. default: true
  31915. }
  31916. ]
  31917. ))
  31918. characterMakers.push(() => makeCharacter(
  31919. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31920. {
  31921. front: {
  31922. height: math.unit(0.6, "cm"),
  31923. name: "Front",
  31924. image: {
  31925. source: "./media/characters/daz/front.svg",
  31926. extra: 1682 / 1164,
  31927. bottom: 42 / 1724
  31928. }
  31929. },
  31930. },
  31931. [
  31932. {
  31933. name: "Normal",
  31934. height: math.unit(0.6, "cm"),
  31935. default: true
  31936. },
  31937. ]
  31938. ))
  31939. characterMakers.push(() => makeCharacter(
  31940. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31941. {
  31942. front: {
  31943. height: math.unit(6, "feet"),
  31944. weight: math.unit(235, "lb"),
  31945. name: "Front",
  31946. image: {
  31947. source: "./media/characters/theo-pangolin/front.svg",
  31948. extra: 1996 / 1969,
  31949. bottom: 115 / 2111
  31950. }
  31951. },
  31952. back: {
  31953. height: math.unit(6, "feet"),
  31954. weight: math.unit(235, "lb"),
  31955. name: "Back",
  31956. image: {
  31957. source: "./media/characters/theo-pangolin/back.svg",
  31958. extra: 1979 / 1979,
  31959. bottom: 40 / 2019
  31960. }
  31961. },
  31962. feral: {
  31963. height: math.unit(2, "feet"),
  31964. weight: math.unit(30, "lb"),
  31965. name: "Feral",
  31966. image: {
  31967. source: "./media/characters/theo-pangolin/feral.svg",
  31968. extra: 803 / 791,
  31969. bottom: 181 / 984
  31970. }
  31971. },
  31972. footFive: {
  31973. height: math.unit(1.43, "feet"),
  31974. name: "Foot (Five Toes)",
  31975. image: {
  31976. source: "./media/characters/theo-pangolin/foot-five.svg"
  31977. }
  31978. },
  31979. footFour: {
  31980. height: math.unit(1.43, "feet"),
  31981. name: "Foot (Four Toes)",
  31982. image: {
  31983. source: "./media/characters/theo-pangolin/foot-four.svg"
  31984. }
  31985. },
  31986. handFour: {
  31987. height: math.unit(0.81, "feet"),
  31988. name: "Hand (Four Fingers)",
  31989. image: {
  31990. source: "./media/characters/theo-pangolin/hand-four.svg"
  31991. }
  31992. },
  31993. handThree: {
  31994. height: math.unit(0.81, "feet"),
  31995. name: "Hand (Three Fingers)",
  31996. image: {
  31997. source: "./media/characters/theo-pangolin/hand-three.svg"
  31998. }
  31999. },
  32000. headFront: {
  32001. height: math.unit(1.37, "feet"),
  32002. name: "Head (Front)",
  32003. image: {
  32004. source: "./media/characters/theo-pangolin/head-front.svg"
  32005. }
  32006. },
  32007. headSide: {
  32008. height: math.unit(1.43, "feet"),
  32009. name: "Head (Side)",
  32010. image: {
  32011. source: "./media/characters/theo-pangolin/head-side.svg"
  32012. }
  32013. },
  32014. tongue: {
  32015. height: math.unit(2.29, "feet"),
  32016. name: "Tongue",
  32017. image: {
  32018. source: "./media/characters/theo-pangolin/tongue.svg"
  32019. }
  32020. },
  32021. },
  32022. [
  32023. {
  32024. name: "Normal",
  32025. height: math.unit(6, "feet")
  32026. },
  32027. {
  32028. name: "Macro",
  32029. height: math.unit(400, "feet"),
  32030. default: true
  32031. },
  32032. ]
  32033. ))
  32034. characterMakers.push(() => makeCharacter(
  32035. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32036. {
  32037. front: {
  32038. height: math.unit(6, "inches"),
  32039. weight: math.unit(0.036, "kg"),
  32040. name: "Front",
  32041. image: {
  32042. source: "./media/characters/renée/front.svg",
  32043. extra: 900 / 886,
  32044. bottom: 8 / 908
  32045. }
  32046. },
  32047. },
  32048. [
  32049. {
  32050. name: "Nano",
  32051. height: math.unit(1, "nm")
  32052. },
  32053. {
  32054. name: "Micro",
  32055. height: math.unit(1, "mm")
  32056. },
  32057. {
  32058. name: "Normal",
  32059. height: math.unit(6, "inches")
  32060. },
  32061. {
  32062. name: "Macro",
  32063. height: math.unit(2000, "feet"),
  32064. default: true
  32065. },
  32066. {
  32067. name: "Megamacro",
  32068. height: math.unit(2, "km")
  32069. },
  32070. {
  32071. name: "Gigamacro",
  32072. height: math.unit(2000, "km")
  32073. },
  32074. {
  32075. name: "Teramacro",
  32076. height: math.unit(250000, "km")
  32077. },
  32078. ]
  32079. ))
  32080. characterMakers.push(() => makeCharacter(
  32081. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32082. {
  32083. front: {
  32084. height: math.unit(4, "meters"),
  32085. weight: math.unit(150, "kg"),
  32086. name: "Front",
  32087. image: {
  32088. source: "./media/characters/caledvwlch/front.svg",
  32089. extra: 1757/1537,
  32090. bottom: 31/1788
  32091. }
  32092. },
  32093. side: {
  32094. height: math.unit(4, "meters"),
  32095. weight: math.unit(150, "kg"),
  32096. name: "Side",
  32097. image: {
  32098. source: "./media/characters/caledvwlch/side.svg",
  32099. extra: 1605 / 1536,
  32100. bottom: 31 / 1636
  32101. }
  32102. },
  32103. back: {
  32104. height: math.unit(4, "meters"),
  32105. weight: math.unit(150, "kg"),
  32106. name: "Back",
  32107. image: {
  32108. source: "./media/characters/caledvwlch/back.svg",
  32109. extra: 1635 / 1565,
  32110. bottom: 27 / 1662
  32111. }
  32112. },
  32113. },
  32114. [
  32115. {
  32116. name: "\"Incognito\"",
  32117. height: math.unit(4, "meters")
  32118. },
  32119. {
  32120. name: "Small rampage",
  32121. height: math.unit(600, "meters")
  32122. },
  32123. {
  32124. name: "Mega",
  32125. height: math.unit(30, "km")
  32126. },
  32127. {
  32128. name: "Home-size",
  32129. height: math.unit(50, "km"),
  32130. default: true
  32131. },
  32132. {
  32133. name: "Giga",
  32134. height: math.unit(300, "km")
  32135. },
  32136. {
  32137. name: "Lounging",
  32138. height: math.unit(11000, "km")
  32139. },
  32140. {
  32141. name: "Planet snacking",
  32142. height: math.unit(2000000, "km")
  32143. },
  32144. ]
  32145. ))
  32146. characterMakers.push(() => makeCharacter(
  32147. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32148. {
  32149. front: {
  32150. height: math.unit(6, "feet"),
  32151. weight: math.unit(215, "lb"),
  32152. name: "Front",
  32153. image: {
  32154. source: "./media/characters/sapphire-svell/front.svg",
  32155. extra: 495 / 455,
  32156. bottom: 20 / 515
  32157. }
  32158. },
  32159. back: {
  32160. height: math.unit(6, "feet"),
  32161. weight: math.unit(216, "lb"),
  32162. name: "Back",
  32163. image: {
  32164. source: "./media/characters/sapphire-svell/back.svg",
  32165. extra: 497 / 477,
  32166. bottom: 7 / 504
  32167. }
  32168. },
  32169. maw: {
  32170. height: math.unit(1.57, "feet"),
  32171. name: "Maw",
  32172. image: {
  32173. source: "./media/characters/sapphire-svell/maw.svg"
  32174. }
  32175. },
  32176. foot: {
  32177. height: math.unit(1.07, "feet"),
  32178. name: "Foot",
  32179. image: {
  32180. source: "./media/characters/sapphire-svell/foot.svg"
  32181. }
  32182. },
  32183. toering: {
  32184. height: math.unit(1.7, "inch"),
  32185. name: "Toering",
  32186. image: {
  32187. source: "./media/characters/sapphire-svell/toering.svg"
  32188. }
  32189. },
  32190. },
  32191. [
  32192. {
  32193. name: "Normal",
  32194. height: math.unit(300, "feet"),
  32195. default: true
  32196. },
  32197. {
  32198. name: "Augmented",
  32199. height: math.unit(1250, "feet")
  32200. },
  32201. {
  32202. name: "Unleashed",
  32203. height: math.unit(3000, "feet")
  32204. },
  32205. ]
  32206. ))
  32207. characterMakers.push(() => makeCharacter(
  32208. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32209. {
  32210. side: {
  32211. height: math.unit(2 + 3 / 12, "feet"),
  32212. weight: math.unit(110, "lb"),
  32213. name: "Side",
  32214. image: {
  32215. source: "./media/characters/glitch-flux/side.svg",
  32216. extra: 997 / 805,
  32217. bottom: 20 / 1017
  32218. }
  32219. },
  32220. },
  32221. [
  32222. {
  32223. name: "Normal",
  32224. height: math.unit(2 + 3 / 12, "feet"),
  32225. default: true
  32226. },
  32227. ]
  32228. ))
  32229. characterMakers.push(() => makeCharacter(
  32230. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32231. {
  32232. front: {
  32233. height: math.unit(4, "meters"),
  32234. name: "Front",
  32235. image: {
  32236. source: "./media/characters/mid/front.svg",
  32237. extra: 507 / 476,
  32238. bottom: 17 / 524
  32239. }
  32240. },
  32241. back: {
  32242. height: math.unit(4, "meters"),
  32243. name: "Back",
  32244. image: {
  32245. source: "./media/characters/mid/back.svg",
  32246. extra: 519 / 487,
  32247. bottom: 7 / 526
  32248. }
  32249. },
  32250. stuck: {
  32251. height: math.unit(2.2, "meters"),
  32252. name: "Stuck",
  32253. image: {
  32254. source: "./media/characters/mid/stuck.svg",
  32255. extra: 1951 / 1869,
  32256. bottom: 88 / 2039
  32257. }
  32258. }
  32259. },
  32260. [
  32261. {
  32262. name: "Normal",
  32263. height: math.unit(4, "meters"),
  32264. default: true
  32265. },
  32266. {
  32267. name: "Big",
  32268. height: math.unit(10, "meters")
  32269. },
  32270. {
  32271. name: "Macro",
  32272. height: math.unit(800, "meters")
  32273. },
  32274. {
  32275. name: "Megamacro",
  32276. height: math.unit(100, "km")
  32277. },
  32278. {
  32279. name: "Overgrown",
  32280. height: math.unit(1, "parsec")
  32281. },
  32282. ]
  32283. ))
  32284. characterMakers.push(() => makeCharacter(
  32285. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32286. {
  32287. front: {
  32288. height: math.unit(2.5, "meters"),
  32289. weight: math.unit(225, "kg"),
  32290. name: "Front",
  32291. image: {
  32292. source: "./media/characters/iris/front.svg",
  32293. extra: 3348 / 3251,
  32294. bottom: 205 / 3553
  32295. }
  32296. },
  32297. maw: {
  32298. height: math.unit(0.56, "meter"),
  32299. name: "Maw",
  32300. image: {
  32301. source: "./media/characters/iris/maw.svg"
  32302. }
  32303. },
  32304. },
  32305. [
  32306. {
  32307. name: "Mewter cat",
  32308. height: math.unit(1.2, "meters")
  32309. },
  32310. {
  32311. name: "Normal",
  32312. height: math.unit(2.5, "meters"),
  32313. default: true
  32314. },
  32315. {
  32316. name: "Minimacro",
  32317. height: math.unit(18, "feet")
  32318. },
  32319. {
  32320. name: "Macro",
  32321. height: math.unit(140, "feet")
  32322. },
  32323. {
  32324. name: "Macro+",
  32325. height: math.unit(180, "meters")
  32326. },
  32327. {
  32328. name: "Megamacro",
  32329. height: math.unit(2746, "meters")
  32330. },
  32331. ]
  32332. ))
  32333. characterMakers.push(() => makeCharacter(
  32334. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32335. {
  32336. front: {
  32337. height: math.unit(6, "feet"),
  32338. weight: math.unit(135, "lb"),
  32339. name: "Front",
  32340. image: {
  32341. source: "./media/characters/axel/front.svg",
  32342. extra: 908 / 908,
  32343. bottom: 58 / 966
  32344. }
  32345. },
  32346. side: {
  32347. height: math.unit(6, "feet"),
  32348. weight: math.unit(135, "lb"),
  32349. name: "Side",
  32350. image: {
  32351. source: "./media/characters/axel/side.svg",
  32352. extra: 958 / 958,
  32353. bottom: 11 / 969
  32354. }
  32355. },
  32356. back: {
  32357. height: math.unit(6, "feet"),
  32358. weight: math.unit(135, "lb"),
  32359. name: "Back",
  32360. image: {
  32361. source: "./media/characters/axel/back.svg",
  32362. extra: 887 / 887,
  32363. bottom: 34 / 921
  32364. }
  32365. },
  32366. head: {
  32367. height: math.unit(1.07, "feet"),
  32368. name: "Head",
  32369. image: {
  32370. source: "./media/characters/axel/head.svg"
  32371. }
  32372. },
  32373. beak: {
  32374. height: math.unit(1.4, "feet"),
  32375. name: "Beak",
  32376. image: {
  32377. source: "./media/characters/axel/beak.svg"
  32378. }
  32379. },
  32380. beakSide: {
  32381. height: math.unit(1.4, "feet"),
  32382. name: "Beak Side",
  32383. image: {
  32384. source: "./media/characters/axel/beak-side.svg"
  32385. }
  32386. },
  32387. sheath: {
  32388. height: math.unit(0.5, "feet"),
  32389. name: "Sheath",
  32390. image: {
  32391. source: "./media/characters/axel/sheath.svg"
  32392. }
  32393. },
  32394. dick: {
  32395. height: math.unit(0.98, "feet"),
  32396. name: "Dick",
  32397. image: {
  32398. source: "./media/characters/axel/dick.svg"
  32399. }
  32400. },
  32401. },
  32402. [
  32403. {
  32404. name: "Macro",
  32405. height: math.unit(68, "meters"),
  32406. default: true
  32407. },
  32408. ]
  32409. ))
  32410. characterMakers.push(() => makeCharacter(
  32411. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32412. {
  32413. front: {
  32414. height: math.unit(3.5, "meters"),
  32415. weight: math.unit(1200, "kg"),
  32416. name: "Front",
  32417. image: {
  32418. source: "./media/characters/joanna/front.svg",
  32419. extra: 1596 / 1488,
  32420. bottom: 29 / 1625
  32421. }
  32422. },
  32423. back: {
  32424. height: math.unit(3.5, "meters"),
  32425. weight: math.unit(1200, "kg"),
  32426. name: "Back",
  32427. image: {
  32428. source: "./media/characters/joanna/back.svg",
  32429. extra: 1594 / 1495,
  32430. bottom: 26 / 1620
  32431. }
  32432. },
  32433. frontShorts: {
  32434. height: math.unit(3.5, "meters"),
  32435. weight: math.unit(1200, "kg"),
  32436. name: "Front (Shorts)",
  32437. image: {
  32438. source: "./media/characters/joanna/front-shorts.svg",
  32439. extra: 1596 / 1488,
  32440. bottom: 29 / 1625
  32441. }
  32442. },
  32443. frontBiker: {
  32444. height: math.unit(3.5, "meters"),
  32445. weight: math.unit(1200, "kg"),
  32446. name: "Front (Biker)",
  32447. image: {
  32448. source: "./media/characters/joanna/front-biker.svg",
  32449. extra: 1596 / 1488,
  32450. bottom: 29 / 1625
  32451. }
  32452. },
  32453. backBiker: {
  32454. height: math.unit(3.5, "meters"),
  32455. weight: math.unit(1200, "kg"),
  32456. name: "Back (Biker)",
  32457. image: {
  32458. source: "./media/characters/joanna/back-biker.svg",
  32459. extra: 1594 / 1495,
  32460. bottom: 88 / 1682
  32461. }
  32462. },
  32463. bikeLeft: {
  32464. height: math.unit(2.4, "meters"),
  32465. weight: math.unit(1600, "kg"),
  32466. name: "Bike (Left)",
  32467. image: {
  32468. source: "./media/characters/joanna/bike-left.svg",
  32469. extra: 720 / 720,
  32470. bottom: 8 / 728
  32471. }
  32472. },
  32473. bikeRight: {
  32474. height: math.unit(2.4, "meters"),
  32475. weight: math.unit(1600, "kg"),
  32476. name: "Bike (Right)",
  32477. image: {
  32478. source: "./media/characters/joanna/bike-right.svg",
  32479. extra: 720 / 720,
  32480. bottom: 8 / 728
  32481. }
  32482. },
  32483. },
  32484. [
  32485. {
  32486. name: "Incognito",
  32487. height: math.unit(3.5, "meters")
  32488. },
  32489. {
  32490. name: "Casual Big",
  32491. height: math.unit(200, "meters")
  32492. },
  32493. {
  32494. name: "Macro",
  32495. height: math.unit(600, "meters")
  32496. },
  32497. {
  32498. name: "Original",
  32499. height: math.unit(20, "km"),
  32500. default: true
  32501. },
  32502. {
  32503. name: "Giga",
  32504. height: math.unit(400, "km")
  32505. },
  32506. {
  32507. name: "Lounging",
  32508. height: math.unit(1500, "km")
  32509. },
  32510. {
  32511. name: "Planetary",
  32512. height: math.unit(200000, "km")
  32513. },
  32514. ]
  32515. ))
  32516. characterMakers.push(() => makeCharacter(
  32517. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32518. {
  32519. front: {
  32520. height: math.unit(6, "feet"),
  32521. weight: math.unit(150, "lb"),
  32522. name: "Front",
  32523. image: {
  32524. source: "./media/characters/hugo-sigil/front.svg",
  32525. extra: 522 / 500,
  32526. bottom: 2 / 524
  32527. }
  32528. },
  32529. back: {
  32530. height: math.unit(6, "feet"),
  32531. weight: math.unit(150, "lb"),
  32532. name: "Back",
  32533. image: {
  32534. source: "./media/characters/hugo-sigil/back.svg",
  32535. extra: 519 / 495,
  32536. bottom: 5 / 524
  32537. }
  32538. },
  32539. maw: {
  32540. height: math.unit(1.4, "feet"),
  32541. weight: math.unit(150, "lb"),
  32542. name: "Maw",
  32543. image: {
  32544. source: "./media/characters/hugo-sigil/maw.svg"
  32545. }
  32546. },
  32547. feet: {
  32548. height: math.unit(1.56, "feet"),
  32549. weight: math.unit(150, "lb"),
  32550. name: "Feet",
  32551. image: {
  32552. source: "./media/characters/hugo-sigil/feet.svg",
  32553. extra: 177 / 177,
  32554. bottom: 12 / 189
  32555. }
  32556. },
  32557. },
  32558. [
  32559. {
  32560. name: "Normal",
  32561. height: math.unit(6, "feet")
  32562. },
  32563. {
  32564. name: "Macro",
  32565. height: math.unit(200, "feet"),
  32566. default: true
  32567. },
  32568. ]
  32569. ))
  32570. characterMakers.push(() => makeCharacter(
  32571. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32572. {
  32573. front: {
  32574. height: math.unit(6, "feet"),
  32575. weight: math.unit(150, "lb"),
  32576. name: "Front",
  32577. image: {
  32578. source: "./media/characters/peri/front.svg",
  32579. extra: 2354 / 2233,
  32580. bottom: 49 / 2403
  32581. }
  32582. },
  32583. },
  32584. [
  32585. {
  32586. name: "Really Small",
  32587. height: math.unit(1, "nm")
  32588. },
  32589. {
  32590. name: "Micro",
  32591. height: math.unit(4, "inches")
  32592. },
  32593. {
  32594. name: "Normal",
  32595. height: math.unit(7, "inches"),
  32596. default: true
  32597. },
  32598. {
  32599. name: "Macro",
  32600. height: math.unit(400, "feet")
  32601. },
  32602. {
  32603. name: "Megamacro",
  32604. height: math.unit(100, "miles")
  32605. },
  32606. ]
  32607. ))
  32608. characterMakers.push(() => makeCharacter(
  32609. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32610. {
  32611. frontSlim: {
  32612. height: math.unit(7, "feet"),
  32613. name: "Front (Slim)",
  32614. image: {
  32615. source: "./media/characters/issilora/front-slim.svg",
  32616. extra: 529 / 449,
  32617. bottom: 53 / 582
  32618. }
  32619. },
  32620. sideSlim: {
  32621. height: math.unit(7, "feet"),
  32622. name: "Side (Slim)",
  32623. image: {
  32624. source: "./media/characters/issilora/side-slim.svg",
  32625. extra: 570 / 480,
  32626. bottom: 30 / 600
  32627. }
  32628. },
  32629. backSlim: {
  32630. height: math.unit(7, "feet"),
  32631. name: "Back (Slim)",
  32632. image: {
  32633. source: "./media/characters/issilora/back-slim.svg",
  32634. extra: 537 / 455,
  32635. bottom: 46 / 583
  32636. }
  32637. },
  32638. frontBuff: {
  32639. height: math.unit(7, "feet"),
  32640. name: "Front (Buff)",
  32641. image: {
  32642. source: "./media/characters/issilora/front-buff.svg",
  32643. extra: 2310 / 2035,
  32644. bottom: 335 / 2645
  32645. }
  32646. },
  32647. head: {
  32648. height: math.unit(1.94, "feet"),
  32649. name: "Head",
  32650. image: {
  32651. source: "./media/characters/issilora/head.svg"
  32652. }
  32653. },
  32654. },
  32655. [
  32656. {
  32657. name: "Minimum",
  32658. height: math.unit(7, "feet")
  32659. },
  32660. {
  32661. name: "Comfortable",
  32662. height: math.unit(17, "feet")
  32663. },
  32664. {
  32665. name: "Fun Size",
  32666. height: math.unit(47, "feet")
  32667. },
  32668. {
  32669. name: "Natural Macro",
  32670. height: math.unit(137, "feet"),
  32671. default: true
  32672. },
  32673. {
  32674. name: "Maximum Kaiju",
  32675. height: math.unit(397, "feet")
  32676. },
  32677. ]
  32678. ))
  32679. characterMakers.push(() => makeCharacter(
  32680. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32681. {
  32682. front: {
  32683. height: math.unit(50 + 9/12, "feet"),
  32684. weight: math.unit(32.8, "tons"),
  32685. name: "Front",
  32686. image: {
  32687. source: "./media/characters/irb'iiritaahn/front.svg",
  32688. extra: 1878/1826,
  32689. bottom: 326/2204
  32690. }
  32691. },
  32692. back: {
  32693. height: math.unit(50 + 9/12, "feet"),
  32694. weight: math.unit(32.8, "tons"),
  32695. name: "Back",
  32696. image: {
  32697. source: "./media/characters/irb'iiritaahn/back.svg",
  32698. extra: 2052/2018,
  32699. bottom: 152/2204
  32700. }
  32701. },
  32702. head: {
  32703. height: math.unit(12.86, "feet"),
  32704. name: "Head",
  32705. image: {
  32706. source: "./media/characters/irb'iiritaahn/head.svg"
  32707. }
  32708. },
  32709. maw: {
  32710. height: math.unit(9.66, "feet"),
  32711. name: "Maw",
  32712. image: {
  32713. source: "./media/characters/irb'iiritaahn/maw.svg"
  32714. }
  32715. },
  32716. frontDick: {
  32717. height: math.unit(8.78461, "feet"),
  32718. name: "Front Dick",
  32719. image: {
  32720. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32721. }
  32722. },
  32723. rearDick: {
  32724. height: math.unit(8.78461, "feet"),
  32725. name: "Rear Dick",
  32726. image: {
  32727. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32728. }
  32729. },
  32730. rearDickUnfolded: {
  32731. height: math.unit(8.78, "feet"),
  32732. name: "Rear Dick (Unfolded)",
  32733. image: {
  32734. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32735. }
  32736. },
  32737. wings: {
  32738. height: math.unit(43, "feet"),
  32739. name: "Wings",
  32740. image: {
  32741. source: "./media/characters/irb'iiritaahn/wings.svg"
  32742. }
  32743. },
  32744. },
  32745. [
  32746. {
  32747. name: "Macro",
  32748. height: math.unit(50 + 9/12, "feet"),
  32749. default: true
  32750. },
  32751. ]
  32752. ))
  32753. characterMakers.push(() => makeCharacter(
  32754. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32755. {
  32756. front: {
  32757. height: math.unit(205, "cm"),
  32758. weight: math.unit(102, "kg"),
  32759. name: "Front",
  32760. image: {
  32761. source: "./media/characters/irbisgreif/front.svg",
  32762. extra: 785/706,
  32763. bottom: 13/798
  32764. }
  32765. },
  32766. back: {
  32767. height: math.unit(205, "cm"),
  32768. weight: math.unit(102, "kg"),
  32769. name: "Back",
  32770. image: {
  32771. source: "./media/characters/irbisgreif/back.svg",
  32772. extra: 713/701,
  32773. bottom: 26/739
  32774. }
  32775. },
  32776. frontDressed: {
  32777. height: math.unit(216, "cm"),
  32778. weight: math.unit(102, "kg"),
  32779. name: "Front-dressed",
  32780. image: {
  32781. source: "./media/characters/irbisgreif/front-dressed.svg",
  32782. extra: 902/776,
  32783. bottom: 14/916
  32784. }
  32785. },
  32786. sideDressed: {
  32787. height: math.unit(195, "cm"),
  32788. weight: math.unit(102, "kg"),
  32789. name: "Side-dressed",
  32790. image: {
  32791. source: "./media/characters/irbisgreif/side-dressed.svg",
  32792. extra: 788/688,
  32793. bottom: 21/809
  32794. }
  32795. },
  32796. backDressed: {
  32797. height: math.unit(216, "cm"),
  32798. weight: math.unit(102, "kg"),
  32799. name: "Back-dressed",
  32800. image: {
  32801. source: "./media/characters/irbisgreif/back-dressed.svg",
  32802. extra: 901/783,
  32803. bottom: 10/911
  32804. }
  32805. },
  32806. dick: {
  32807. height: math.unit(0.49, "feet"),
  32808. name: "Dick",
  32809. image: {
  32810. source: "./media/characters/irbisgreif/dick.svg"
  32811. }
  32812. },
  32813. wingTop: {
  32814. height: math.unit(1.93 , "feet"),
  32815. name: "Wing-top",
  32816. image: {
  32817. source: "./media/characters/irbisgreif/wing-top.svg"
  32818. }
  32819. },
  32820. wingBottom: {
  32821. height: math.unit(1.93 , "feet"),
  32822. name: "Wing-bottom",
  32823. image: {
  32824. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32825. }
  32826. },
  32827. },
  32828. [
  32829. {
  32830. name: "Normal",
  32831. height: math.unit(216, "cm"),
  32832. default: true
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32838. {
  32839. front: {
  32840. height: math.unit(6, "feet"),
  32841. weight: math.unit(150, "lb"),
  32842. name: "Front",
  32843. image: {
  32844. source: "./media/characters/pride/front.svg",
  32845. extra: 1299/1230,
  32846. bottom: 18/1317
  32847. }
  32848. },
  32849. },
  32850. [
  32851. {
  32852. name: "Normal",
  32853. height: math.unit(7, "feet")
  32854. },
  32855. {
  32856. name: "Mini-macro",
  32857. height: math.unit(11, "feet")
  32858. },
  32859. {
  32860. name: "Macro",
  32861. height: math.unit(15, "meters"),
  32862. default: true
  32863. },
  32864. {
  32865. name: "Macro+",
  32866. height: math.unit(40, "meters")
  32867. },
  32868. ]
  32869. ))
  32870. characterMakers.push(() => makeCharacter(
  32871. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32872. {
  32873. front: {
  32874. height: math.unit(4 + 2 / 12, "feet"),
  32875. weight: math.unit(95, "lb"),
  32876. name: "Front",
  32877. image: {
  32878. source: "./media/characters/vaelophis-nyx/front.svg",
  32879. extra: 2532/2330,
  32880. bottom: 0/2532
  32881. }
  32882. },
  32883. back: {
  32884. height: math.unit(4 + 2 / 12, "feet"),
  32885. weight: math.unit(95, "lb"),
  32886. name: "Back",
  32887. image: {
  32888. source: "./media/characters/vaelophis-nyx/back.svg",
  32889. extra: 2484/2361,
  32890. bottom: 0/2484
  32891. }
  32892. },
  32893. feralSide: {
  32894. height: math.unit(2 + 1/12, "feet"),
  32895. weight: math.unit(20, "lb"),
  32896. name: "Feral (Side)",
  32897. image: {
  32898. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32899. extra: 1721/1581,
  32900. bottom: 70/1791
  32901. }
  32902. },
  32903. feralLazing: {
  32904. height: math.unit(1.08, "feet"),
  32905. weight: math.unit(20, "lb"),
  32906. name: "Feral (Lazing)",
  32907. image: {
  32908. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32909. extra: 822/822,
  32910. bottom: 248/1070
  32911. }
  32912. },
  32913. ear: {
  32914. height: math.unit(0.416, "feet"),
  32915. name: "Ear",
  32916. image: {
  32917. source: "./media/characters/vaelophis-nyx/ear.svg"
  32918. }
  32919. },
  32920. eye: {
  32921. height: math.unit(0.0748, "feet"),
  32922. name: "Eye",
  32923. image: {
  32924. source: "./media/characters/vaelophis-nyx/eye.svg"
  32925. }
  32926. },
  32927. mouth: {
  32928. height: math.unit(0.378, "feet"),
  32929. name: "Mouth",
  32930. image: {
  32931. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32932. }
  32933. },
  32934. spade: {
  32935. height: math.unit(0.55, "feet"),
  32936. name: "Spade",
  32937. image: {
  32938. source: "./media/characters/vaelophis-nyx/spade.svg"
  32939. }
  32940. },
  32941. },
  32942. [
  32943. {
  32944. name: "Normal",
  32945. height: math.unit(4 + 2/12, "feet"),
  32946. default: true
  32947. },
  32948. ]
  32949. ))
  32950. characterMakers.push(() => makeCharacter(
  32951. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32952. {
  32953. front: {
  32954. height: math.unit(7, "feet"),
  32955. weight: math.unit(231, "lb"),
  32956. name: "Front",
  32957. image: {
  32958. source: "./media/characters/flux/front.svg",
  32959. extra: 919/871,
  32960. bottom: 0/919
  32961. }
  32962. },
  32963. back: {
  32964. height: math.unit(7, "feet"),
  32965. weight: math.unit(231, "lb"),
  32966. name: "Back",
  32967. image: {
  32968. source: "./media/characters/flux/back.svg",
  32969. extra: 1040/992,
  32970. bottom: 0/1040
  32971. }
  32972. },
  32973. frontDressed: {
  32974. height: math.unit(7, "feet"),
  32975. weight: math.unit(231, "lb"),
  32976. name: "Front (Dressed)",
  32977. image: {
  32978. source: "./media/characters/flux/front-dressed.svg",
  32979. extra: 919/871,
  32980. bottom: 0/919
  32981. }
  32982. },
  32983. feralSide: {
  32984. height: math.unit(5, "feet"),
  32985. weight: math.unit(150, "lb"),
  32986. name: "Feral (Side)",
  32987. image: {
  32988. source: "./media/characters/flux/feral-side.svg",
  32989. extra: 598/528,
  32990. bottom: 28/626
  32991. }
  32992. },
  32993. head: {
  32994. height: math.unit(1.585, "feet"),
  32995. name: "Head",
  32996. image: {
  32997. source: "./media/characters/flux/head.svg"
  32998. }
  32999. },
  33000. headSide: {
  33001. height: math.unit(1.74, "feet"),
  33002. name: "Head (Side)",
  33003. image: {
  33004. source: "./media/characters/flux/head-side.svg"
  33005. }
  33006. },
  33007. headSideFire: {
  33008. height: math.unit(1.76, "feet"),
  33009. name: "Head (Side, Fire)",
  33010. image: {
  33011. source: "./media/characters/flux/head-side-fire.svg"
  33012. }
  33013. },
  33014. },
  33015. [
  33016. {
  33017. name: "Normal",
  33018. height: math.unit(7, "feet"),
  33019. default: true
  33020. },
  33021. ]
  33022. ))
  33023. characterMakers.push(() => makeCharacter(
  33024. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33025. {
  33026. front: {
  33027. height: math.unit(9, "feet"),
  33028. weight: math.unit(1012, "lb"),
  33029. name: "Front",
  33030. image: {
  33031. source: "./media/characters/ulfra-lupae/front.svg",
  33032. extra: 1083/1011,
  33033. bottom: 67/1150
  33034. }
  33035. },
  33036. },
  33037. [
  33038. {
  33039. name: "Micro",
  33040. height: math.unit(6, "inches")
  33041. },
  33042. {
  33043. name: "Socializing",
  33044. height: math.unit(6 + 5/12, "feet")
  33045. },
  33046. {
  33047. name: "Normal",
  33048. height: math.unit(9, "feet"),
  33049. default: true
  33050. },
  33051. {
  33052. name: "Macro",
  33053. height: math.unit(150, "feet")
  33054. },
  33055. ]
  33056. ))
  33057. characterMakers.push(() => makeCharacter(
  33058. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33059. {
  33060. front: {
  33061. height: math.unit(5 + 2/12, "feet"),
  33062. weight: math.unit(120, "lb"),
  33063. name: "Front",
  33064. image: {
  33065. source: "./media/characters/timber/front.svg",
  33066. extra: 2814/2705,
  33067. bottom: 181/2995
  33068. }
  33069. },
  33070. },
  33071. [
  33072. {
  33073. name: "Normal",
  33074. height: math.unit(5 + 2/12, "feet"),
  33075. default: true
  33076. },
  33077. ]
  33078. ))
  33079. characterMakers.push(() => makeCharacter(
  33080. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33081. {
  33082. front: {
  33083. height: math.unit(9, "feet"),
  33084. name: "Front",
  33085. image: {
  33086. source: "./media/characters/nicki/front.svg",
  33087. extra: 1240/990,
  33088. bottom: 45/1285
  33089. },
  33090. form: "anthro",
  33091. default: true
  33092. },
  33093. side: {
  33094. height: math.unit(9, "feet"),
  33095. name: "Side",
  33096. image: {
  33097. source: "./media/characters/nicki/side.svg",
  33098. extra: 1047/973,
  33099. bottom: 61/1108
  33100. },
  33101. form: "anthro"
  33102. },
  33103. back: {
  33104. height: math.unit(9, "feet"),
  33105. name: "Back",
  33106. image: {
  33107. source: "./media/characters/nicki/back.svg",
  33108. extra: 1006/965,
  33109. bottom: 39/1045
  33110. },
  33111. form: "anthro"
  33112. },
  33113. taur: {
  33114. height: math.unit(15, "feet"),
  33115. name: "Taur",
  33116. image: {
  33117. source: "./media/characters/nicki/taur.svg",
  33118. extra: 1592/1347,
  33119. bottom: 0/1592
  33120. },
  33121. form: "taur",
  33122. default: true
  33123. },
  33124. },
  33125. [
  33126. {
  33127. name: "Normal",
  33128. height: math.unit(9, "feet"),
  33129. form: "anthro",
  33130. default: true
  33131. },
  33132. {
  33133. name: "Normal",
  33134. height: math.unit(15, "feet"),
  33135. form: "taur",
  33136. default: true
  33137. }
  33138. ],
  33139. {
  33140. "anthro": {
  33141. name: "Anthro",
  33142. default: true
  33143. },
  33144. "taur": {
  33145. name: "Taur"
  33146. }
  33147. }
  33148. ))
  33149. characterMakers.push(() => makeCharacter(
  33150. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33151. {
  33152. front: {
  33153. height: math.unit(7 + 10/12, "feet"),
  33154. weight: math.unit(3.5, "tons"),
  33155. name: "Front",
  33156. image: {
  33157. source: "./media/characters/lee/front.svg",
  33158. extra: 1773/1615,
  33159. bottom: 86/1859
  33160. }
  33161. },
  33162. hand: {
  33163. height: math.unit(1.78, "feet"),
  33164. name: "Hand",
  33165. image: {
  33166. source: "./media/characters/lee/hand.svg"
  33167. }
  33168. },
  33169. maw: {
  33170. height: math.unit(1.18, "feet"),
  33171. name: "Maw",
  33172. image: {
  33173. source: "./media/characters/lee/maw.svg"
  33174. }
  33175. },
  33176. },
  33177. [
  33178. {
  33179. name: "Normal",
  33180. height: math.unit(7 + 10/12, "feet"),
  33181. default: true
  33182. },
  33183. ]
  33184. ))
  33185. characterMakers.push(() => makeCharacter(
  33186. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33187. {
  33188. front: {
  33189. height: math.unit(9, "feet"),
  33190. name: "Front",
  33191. image: {
  33192. source: "./media/characters/guti/front.svg",
  33193. extra: 4551/4355,
  33194. bottom: 123/4674
  33195. }
  33196. },
  33197. tongue: {
  33198. height: math.unit(1, "feet"),
  33199. name: "Tongue",
  33200. image: {
  33201. source: "./media/characters/guti/tongue.svg"
  33202. }
  33203. },
  33204. paw: {
  33205. height: math.unit(1.18, "feet"),
  33206. name: "Paw",
  33207. image: {
  33208. source: "./media/characters/guti/paw.svg"
  33209. }
  33210. },
  33211. },
  33212. [
  33213. {
  33214. name: "Normal",
  33215. height: math.unit(9, "feet"),
  33216. default: true
  33217. },
  33218. ]
  33219. ))
  33220. characterMakers.push(() => makeCharacter(
  33221. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33222. {
  33223. side: {
  33224. height: math.unit(5, "meters"),
  33225. name: "Side",
  33226. image: {
  33227. source: "./media/characters/vesper/side.svg",
  33228. extra: 1605/1518,
  33229. bottom: 0/1605
  33230. }
  33231. },
  33232. },
  33233. [
  33234. {
  33235. name: "Small",
  33236. height: math.unit(5, "meters")
  33237. },
  33238. {
  33239. name: "Sage",
  33240. height: math.unit(100, "meters"),
  33241. default: true
  33242. },
  33243. {
  33244. name: "Fun Size",
  33245. height: math.unit(600, "meters")
  33246. },
  33247. {
  33248. name: "Goddess",
  33249. height: math.unit(20000, "km")
  33250. },
  33251. {
  33252. name: "Maximum",
  33253. height: math.unit(5, "galaxies")
  33254. },
  33255. ]
  33256. ))
  33257. characterMakers.push(() => makeCharacter(
  33258. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33259. {
  33260. front: {
  33261. height: math.unit(6 + 3/12, "feet"),
  33262. weight: math.unit(190, "lb"),
  33263. name: "Front",
  33264. image: {
  33265. source: "./media/characters/gawain/front.svg",
  33266. extra: 2222/2139,
  33267. bottom: 90/2312
  33268. }
  33269. },
  33270. back: {
  33271. height: math.unit(6 + 3/12, "feet"),
  33272. weight: math.unit(190, "lb"),
  33273. name: "Back",
  33274. image: {
  33275. source: "./media/characters/gawain/back.svg",
  33276. extra: 2199/2111,
  33277. bottom: 73/2272
  33278. }
  33279. },
  33280. },
  33281. [
  33282. {
  33283. name: "Normal",
  33284. height: math.unit(6 + 3/12, "feet"),
  33285. default: true
  33286. },
  33287. ]
  33288. ))
  33289. characterMakers.push(() => makeCharacter(
  33290. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33291. {
  33292. side: {
  33293. height: math.unit(3.5, "meters"),
  33294. weight: math.unit(16000, "lb"),
  33295. name: "Side",
  33296. image: {
  33297. source: "./media/characters/dascalti/side.svg",
  33298. extra: 392/273,
  33299. bottom: 47/439
  33300. }
  33301. },
  33302. breath: {
  33303. height: math.unit(7.4, "feet"),
  33304. name: "Breath",
  33305. image: {
  33306. source: "./media/characters/dascalti/breath.svg"
  33307. }
  33308. },
  33309. fed: {
  33310. height: math.unit(3.6, "meters"),
  33311. weight: math.unit(16000, "lb"),
  33312. name: "Fed",
  33313. image: {
  33314. source: "./media/characters/dascalti/fed.svg",
  33315. extra: 1419/820,
  33316. bottom: 95/1514
  33317. }
  33318. },
  33319. },
  33320. [
  33321. {
  33322. name: "Normal",
  33323. height: math.unit(3.5, "meters"),
  33324. default: true
  33325. },
  33326. ]
  33327. ))
  33328. characterMakers.push(() => makeCharacter(
  33329. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33330. {
  33331. front: {
  33332. height: math.unit(3 + 5/12, "feet"),
  33333. name: "Front",
  33334. image: {
  33335. source: "./media/characters/mauve/front.svg",
  33336. extra: 1126/1033,
  33337. bottom: 65/1191
  33338. }
  33339. },
  33340. side: {
  33341. height: math.unit(3 + 5/12, "feet"),
  33342. name: "Side",
  33343. image: {
  33344. source: "./media/characters/mauve/side.svg",
  33345. extra: 1089/1001,
  33346. bottom: 29/1118
  33347. }
  33348. },
  33349. back: {
  33350. height: math.unit(3 + 5/12, "feet"),
  33351. name: "Back",
  33352. image: {
  33353. source: "./media/characters/mauve/back.svg",
  33354. extra: 1173/1053,
  33355. bottom: 109/1282
  33356. }
  33357. },
  33358. },
  33359. [
  33360. {
  33361. name: "Normal",
  33362. height: math.unit(3 + 5/12, "feet"),
  33363. default: true
  33364. },
  33365. ]
  33366. ))
  33367. characterMakers.push(() => makeCharacter(
  33368. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33369. {
  33370. front: {
  33371. height: math.unit(6 + 3/12, "feet"),
  33372. weight: math.unit(430, "lb"),
  33373. name: "Front",
  33374. image: {
  33375. source: "./media/characters/carlos/front.svg",
  33376. extra: 1964/1913,
  33377. bottom: 70/2034
  33378. }
  33379. },
  33380. },
  33381. [
  33382. {
  33383. name: "Normal",
  33384. height: math.unit(6 + 3/12, "feet"),
  33385. default: true
  33386. },
  33387. ]
  33388. ))
  33389. characterMakers.push(() => makeCharacter(
  33390. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33391. {
  33392. back: {
  33393. height: math.unit(5 + 10/12, "feet"),
  33394. weight: math.unit(200, "lb"),
  33395. name: "Back",
  33396. image: {
  33397. source: "./media/characters/jax/back.svg",
  33398. extra: 764/739,
  33399. bottom: 25/789
  33400. }
  33401. },
  33402. },
  33403. [
  33404. {
  33405. name: "Normal",
  33406. height: math.unit(5 + 10/12, "feet"),
  33407. default: true
  33408. },
  33409. ]
  33410. ))
  33411. characterMakers.push(() => makeCharacter(
  33412. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33413. {
  33414. front: {
  33415. height: math.unit(8, "feet"),
  33416. weight: math.unit(250, "lb"),
  33417. name: "Front",
  33418. image: {
  33419. source: "./media/characters/eikthynir/front.svg",
  33420. extra: 1332/1166,
  33421. bottom: 82/1414
  33422. }
  33423. },
  33424. back: {
  33425. height: math.unit(8, "feet"),
  33426. weight: math.unit(250, "lb"),
  33427. name: "Back",
  33428. image: {
  33429. source: "./media/characters/eikthynir/back.svg",
  33430. extra: 1342/1190,
  33431. bottom: 19/1361
  33432. }
  33433. },
  33434. dick: {
  33435. height: math.unit(2.35, "feet"),
  33436. name: "Dick",
  33437. image: {
  33438. source: "./media/characters/eikthynir/dick.svg"
  33439. }
  33440. },
  33441. },
  33442. [
  33443. {
  33444. name: "Normal",
  33445. height: math.unit(8, "feet"),
  33446. default: true
  33447. },
  33448. ]
  33449. ))
  33450. characterMakers.push(() => makeCharacter(
  33451. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33452. {
  33453. front: {
  33454. height: math.unit(99, "meters"),
  33455. weight: math.unit(13000, "tons"),
  33456. name: "Front",
  33457. image: {
  33458. source: "./media/characters/zlmos/front.svg",
  33459. extra: 2202/1992,
  33460. bottom: 315/2517
  33461. }
  33462. },
  33463. },
  33464. [
  33465. {
  33466. name: "Macro",
  33467. height: math.unit(99, "meters"),
  33468. default: true
  33469. },
  33470. ]
  33471. ))
  33472. characterMakers.push(() => makeCharacter(
  33473. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33474. {
  33475. front: {
  33476. height: math.unit(6 + 5/12, "feet"),
  33477. name: "Front",
  33478. image: {
  33479. source: "./media/characters/purri/front.svg",
  33480. extra: 1698/1610,
  33481. bottom: 32/1730
  33482. }
  33483. },
  33484. frontAlt: {
  33485. height: math.unit(6 + 5/12, "feet"),
  33486. name: "Front (Alt)",
  33487. image: {
  33488. source: "./media/characters/purri/front-alt.svg",
  33489. extra: 450/420,
  33490. bottom: 26/476
  33491. }
  33492. },
  33493. boots: {
  33494. height: math.unit(5.5, "feet"),
  33495. name: "Boots",
  33496. image: {
  33497. source: "./media/characters/purri/boots.svg",
  33498. extra: 905/853,
  33499. bottom: 18/923
  33500. }
  33501. },
  33502. lying: {
  33503. height: math.unit(2, "feet"),
  33504. name: "Lying",
  33505. image: {
  33506. source: "./media/characters/purri/lying.svg",
  33507. extra: 940/843,
  33508. bottom: 146/1086
  33509. }
  33510. },
  33511. devious: {
  33512. height: math.unit(1.77, "feet"),
  33513. name: "Devious",
  33514. image: {
  33515. source: "./media/characters/purri/devious.svg",
  33516. extra: 1440/1155,
  33517. bottom: 147/1587
  33518. }
  33519. },
  33520. bean: {
  33521. height: math.unit(1.94, "feet"),
  33522. name: "Bean",
  33523. image: {
  33524. source: "./media/characters/purri/bean.svg"
  33525. }
  33526. },
  33527. },
  33528. [
  33529. {
  33530. name: "Micro",
  33531. height: math.unit(1, "mm")
  33532. },
  33533. {
  33534. name: "Normal",
  33535. height: math.unit(6 + 5/12, "feet"),
  33536. default: true
  33537. },
  33538. {
  33539. name: "Macro :3c",
  33540. height: math.unit(2, "miles")
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33546. {
  33547. front: {
  33548. height: math.unit(6 + 2/12, "feet"),
  33549. weight: math.unit(250, "lb"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/moonlight/front.svg",
  33553. extra: 1044/908,
  33554. bottom: 56/1100
  33555. }
  33556. },
  33557. feral: {
  33558. height: math.unit(3 + 1/12, "feet"),
  33559. weight: math.unit(50, "kg"),
  33560. name: "Feral",
  33561. image: {
  33562. source: "./media/characters/moonlight/feral.svg",
  33563. extra: 3705/2791,
  33564. bottom: 145/3850
  33565. }
  33566. },
  33567. paw: {
  33568. height: math.unit(1, "feet"),
  33569. name: "Paw",
  33570. image: {
  33571. source: "./media/characters/moonlight/paw.svg"
  33572. }
  33573. },
  33574. paws: {
  33575. height: math.unit(0.98, "feet"),
  33576. name: "Paws",
  33577. image: {
  33578. source: "./media/characters/moonlight/paws.svg",
  33579. extra: 939/939,
  33580. bottom: 50/989
  33581. }
  33582. },
  33583. mouth: {
  33584. height: math.unit(0.48, "feet"),
  33585. name: "Mouth",
  33586. image: {
  33587. source: "./media/characters/moonlight/mouth.svg"
  33588. }
  33589. },
  33590. dick: {
  33591. height: math.unit(1.46, "feet"),
  33592. name: "Dick",
  33593. image: {
  33594. source: "./media/characters/moonlight/dick.svg"
  33595. }
  33596. },
  33597. },
  33598. [
  33599. {
  33600. name: "Normal",
  33601. height: math.unit(6 + 2/12, "feet"),
  33602. default: true
  33603. },
  33604. {
  33605. name: "Macro",
  33606. height: math.unit(300, "feet")
  33607. },
  33608. {
  33609. name: "Macro+",
  33610. height: math.unit(1, "mile")
  33611. },
  33612. {
  33613. name: "Mt. Moon",
  33614. height: math.unit(5, "miles")
  33615. },
  33616. {
  33617. name: "Megamacro",
  33618. height: math.unit(15, "miles")
  33619. },
  33620. ]
  33621. ))
  33622. characterMakers.push(() => makeCharacter(
  33623. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33624. {
  33625. back: {
  33626. height: math.unit(6, "feet"),
  33627. weight: math.unit(150, "lb"),
  33628. name: "Back",
  33629. image: {
  33630. source: "./media/characters/sylen/back.svg",
  33631. extra: 1335/1273,
  33632. bottom: 107/1442
  33633. }
  33634. },
  33635. },
  33636. [
  33637. {
  33638. name: "Normal",
  33639. height: math.unit(5 + 5/12, "feet")
  33640. },
  33641. {
  33642. name: "Megamacro",
  33643. height: math.unit(3, "miles"),
  33644. default: true
  33645. },
  33646. ]
  33647. ))
  33648. characterMakers.push(() => makeCharacter(
  33649. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33650. {
  33651. front: {
  33652. height: math.unit(6, "feet"),
  33653. weight: math.unit(190, "lb"),
  33654. name: "Front",
  33655. image: {
  33656. source: "./media/characters/huttser/front.svg",
  33657. extra: 1152/1058,
  33658. bottom: 23/1175
  33659. }
  33660. },
  33661. side: {
  33662. height: math.unit(6, "feet"),
  33663. weight: math.unit(190, "lb"),
  33664. name: "Side",
  33665. image: {
  33666. source: "./media/characters/huttser/side.svg",
  33667. extra: 1174/1065,
  33668. bottom: 18/1192
  33669. }
  33670. },
  33671. back: {
  33672. height: math.unit(6, "feet"),
  33673. weight: math.unit(190, "lb"),
  33674. name: "Back",
  33675. image: {
  33676. source: "./media/characters/huttser/back.svg",
  33677. extra: 1158/1056,
  33678. bottom: 12/1170
  33679. }
  33680. },
  33681. },
  33682. [
  33683. ]
  33684. ))
  33685. characterMakers.push(() => makeCharacter(
  33686. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33687. {
  33688. side: {
  33689. height: math.unit(12 + 9/12, "feet"),
  33690. weight: math.unit(15000, "lb"),
  33691. name: "Side",
  33692. image: {
  33693. source: "./media/characters/faan/side.svg",
  33694. extra: 2747/2697,
  33695. bottom: 0/2747
  33696. }
  33697. },
  33698. front: {
  33699. height: math.unit(12 + 9/12, "feet"),
  33700. weight: math.unit(15000, "lb"),
  33701. name: "Front",
  33702. image: {
  33703. source: "./media/characters/faan/front.svg",
  33704. extra: 607/571,
  33705. bottom: 24/631
  33706. }
  33707. },
  33708. head: {
  33709. height: math.unit(2.85, "feet"),
  33710. name: "Head",
  33711. image: {
  33712. source: "./media/characters/faan/head.svg"
  33713. }
  33714. },
  33715. headAlt: {
  33716. height: math.unit(3.13, "feet"),
  33717. name: "Head-alt",
  33718. image: {
  33719. source: "./media/characters/faan/head-alt.svg"
  33720. }
  33721. },
  33722. },
  33723. [
  33724. {
  33725. name: "Normal",
  33726. height: math.unit(12 + 9/12, "feet"),
  33727. default: true
  33728. },
  33729. ]
  33730. ))
  33731. characterMakers.push(() => makeCharacter(
  33732. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33733. {
  33734. front: {
  33735. height: math.unit(6, "feet"),
  33736. weight: math.unit(300, "lb"),
  33737. name: "Front",
  33738. image: {
  33739. source: "./media/characters/tanio/front.svg",
  33740. extra: 711/673,
  33741. bottom: 25/736
  33742. }
  33743. },
  33744. },
  33745. [
  33746. {
  33747. name: "Normal",
  33748. height: math.unit(6, "feet"),
  33749. default: true
  33750. },
  33751. ]
  33752. ))
  33753. characterMakers.push(() => makeCharacter(
  33754. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33755. {
  33756. front: {
  33757. height: math.unit(3, "inches"),
  33758. name: "Front",
  33759. image: {
  33760. source: "./media/characters/noboru/front.svg",
  33761. extra: 1039/932,
  33762. bottom: 18/1057
  33763. }
  33764. },
  33765. },
  33766. [
  33767. {
  33768. name: "Micro",
  33769. height: math.unit(3, "inches"),
  33770. default: true
  33771. },
  33772. ]
  33773. ))
  33774. characterMakers.push(() => makeCharacter(
  33775. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33776. {
  33777. front: {
  33778. height: math.unit(1.85, "meters"),
  33779. weight: math.unit(80, "kg"),
  33780. name: "Front",
  33781. image: {
  33782. source: "./media/characters/daniel-barrett/front.svg",
  33783. extra: 355/337,
  33784. bottom: 9/364
  33785. }
  33786. },
  33787. },
  33788. [
  33789. {
  33790. name: "Pico",
  33791. height: math.unit(0.0433, "mm")
  33792. },
  33793. {
  33794. name: "Nano",
  33795. height: math.unit(1.5, "mm")
  33796. },
  33797. {
  33798. name: "Micro",
  33799. height: math.unit(5.3, "cm"),
  33800. default: true
  33801. },
  33802. {
  33803. name: "Normal",
  33804. height: math.unit(1.85, "meters")
  33805. },
  33806. {
  33807. name: "Macro",
  33808. height: math.unit(64.7, "meters")
  33809. },
  33810. {
  33811. name: "Megamacro",
  33812. height: math.unit(2.26, "km")
  33813. },
  33814. {
  33815. name: "Gigamacro",
  33816. height: math.unit(79, "km")
  33817. },
  33818. {
  33819. name: "Teramacro",
  33820. height: math.unit(2765, "km")
  33821. },
  33822. {
  33823. name: "Petamacro",
  33824. height: math.unit(96678, "km")
  33825. },
  33826. ]
  33827. ))
  33828. characterMakers.push(() => makeCharacter(
  33829. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33830. {
  33831. front: {
  33832. height: math.unit(30, "meters"),
  33833. weight: math.unit(400, "tons"),
  33834. name: "Front",
  33835. image: {
  33836. source: "./media/characters/zeel/front.svg",
  33837. extra: 2599/2599,
  33838. bottom: 226/2825
  33839. }
  33840. },
  33841. },
  33842. [
  33843. {
  33844. name: "Macro",
  33845. height: math.unit(30, "meters"),
  33846. default: true
  33847. },
  33848. ]
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33852. {
  33853. front: {
  33854. height: math.unit(6 + 7/12, "feet"),
  33855. weight: math.unit(210, "lb"),
  33856. name: "Front",
  33857. image: {
  33858. source: "./media/characters/tarn/front.svg",
  33859. extra: 3517/3220,
  33860. bottom: 91/3608
  33861. }
  33862. },
  33863. back: {
  33864. height: math.unit(6 + 7/12, "feet"),
  33865. weight: math.unit(210, "lb"),
  33866. name: "Back",
  33867. image: {
  33868. source: "./media/characters/tarn/back.svg",
  33869. extra: 3566/3241,
  33870. bottom: 34/3600
  33871. }
  33872. },
  33873. dick: {
  33874. height: math.unit(1.65, "feet"),
  33875. name: "Dick",
  33876. image: {
  33877. source: "./media/characters/tarn/dick.svg"
  33878. }
  33879. },
  33880. paw: {
  33881. height: math.unit(1.80, "feet"),
  33882. name: "Paw",
  33883. image: {
  33884. source: "./media/characters/tarn/paw.svg"
  33885. }
  33886. },
  33887. tongue: {
  33888. height: math.unit(0.97, "feet"),
  33889. name: "Tongue",
  33890. image: {
  33891. source: "./media/characters/tarn/tongue.svg"
  33892. }
  33893. },
  33894. },
  33895. [
  33896. {
  33897. name: "Micro",
  33898. height: math.unit(4, "inches")
  33899. },
  33900. {
  33901. name: "Normal",
  33902. height: math.unit(6 + 7/12, "feet"),
  33903. default: true
  33904. },
  33905. {
  33906. name: "Macro",
  33907. height: math.unit(300, "feet")
  33908. },
  33909. ]
  33910. ))
  33911. characterMakers.push(() => makeCharacter(
  33912. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33913. {
  33914. front: {
  33915. height: math.unit(5 + 7/12, "feet"),
  33916. weight: math.unit(80, "kg"),
  33917. name: "Front",
  33918. image: {
  33919. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33920. extra: 3023/2865,
  33921. bottom: 33/3056
  33922. }
  33923. },
  33924. back: {
  33925. height: math.unit(5 + 7/12, "feet"),
  33926. weight: math.unit(80, "kg"),
  33927. name: "Back",
  33928. image: {
  33929. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33930. extra: 3020/2886,
  33931. bottom: 30/3050
  33932. }
  33933. },
  33934. dick: {
  33935. height: math.unit(0.98, "feet"),
  33936. name: "Dick",
  33937. image: {
  33938. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33939. }
  33940. },
  33941. anatomy: {
  33942. height: math.unit(2.86, "feet"),
  33943. name: "Anatomy",
  33944. image: {
  33945. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33946. }
  33947. },
  33948. },
  33949. [
  33950. {
  33951. name: "Really Small",
  33952. height: math.unit(2, "inches")
  33953. },
  33954. {
  33955. name: "Micro",
  33956. height: math.unit(5.583, "inches")
  33957. },
  33958. {
  33959. name: "Normal",
  33960. height: math.unit(5 + 7/12, "feet"),
  33961. default: true
  33962. },
  33963. {
  33964. name: "Macro",
  33965. height: math.unit(67, "feet")
  33966. },
  33967. {
  33968. name: "Megamacro",
  33969. height: math.unit(134, "feet")
  33970. },
  33971. ]
  33972. ))
  33973. characterMakers.push(() => makeCharacter(
  33974. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33975. {
  33976. front: {
  33977. height: math.unit(9, "feet"),
  33978. weight: math.unit(120, "lb"),
  33979. name: "Front",
  33980. image: {
  33981. source: "./media/characters/sally/front.svg",
  33982. extra: 1506/1349,
  33983. bottom: 66/1572
  33984. }
  33985. },
  33986. },
  33987. [
  33988. {
  33989. name: "Normal",
  33990. height: math.unit(9, "feet"),
  33991. default: true
  33992. },
  33993. ]
  33994. ))
  33995. characterMakers.push(() => makeCharacter(
  33996. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33997. {
  33998. front: {
  33999. height: math.unit(8, "feet"),
  34000. weight: math.unit(900, "lb"),
  34001. name: "Front",
  34002. image: {
  34003. source: "./media/characters/owen/front.svg",
  34004. extra: 1761/1657,
  34005. bottom: 74/1835
  34006. }
  34007. },
  34008. side: {
  34009. height: math.unit(8, "feet"),
  34010. weight: math.unit(900, "lb"),
  34011. name: "Side",
  34012. image: {
  34013. source: "./media/characters/owen/side.svg",
  34014. extra: 1797/1734,
  34015. bottom: 30/1827
  34016. }
  34017. },
  34018. back: {
  34019. height: math.unit(8, "feet"),
  34020. weight: math.unit(900, "lb"),
  34021. name: "Back",
  34022. image: {
  34023. source: "./media/characters/owen/back.svg",
  34024. extra: 1796/1706,
  34025. bottom: 59/1855
  34026. }
  34027. },
  34028. maw: {
  34029. height: math.unit(1.76, "feet"),
  34030. name: "Maw",
  34031. image: {
  34032. source: "./media/characters/owen/maw.svg"
  34033. }
  34034. },
  34035. },
  34036. [
  34037. {
  34038. name: "Normal",
  34039. height: math.unit(8, "feet"),
  34040. default: true
  34041. },
  34042. ]
  34043. ))
  34044. characterMakers.push(() => makeCharacter(
  34045. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34046. {
  34047. front: {
  34048. height: math.unit(4, "feet"),
  34049. weight: math.unit(400, "lb"),
  34050. name: "Front",
  34051. image: {
  34052. source: "./media/characters/ryth/front.svg",
  34053. extra: 1920/1748,
  34054. bottom: 42/1962
  34055. }
  34056. },
  34057. back: {
  34058. height: math.unit(4, "feet"),
  34059. weight: math.unit(400, "lb"),
  34060. name: "Back",
  34061. image: {
  34062. source: "./media/characters/ryth/back.svg",
  34063. extra: 1897/1690,
  34064. bottom: 89/1986
  34065. }
  34066. },
  34067. mouth: {
  34068. height: math.unit(1.39, "feet"),
  34069. name: "Mouth",
  34070. image: {
  34071. source: "./media/characters/ryth/mouth.svg"
  34072. }
  34073. },
  34074. tailmaw: {
  34075. height: math.unit(1.23, "feet"),
  34076. name: "Tailmaw",
  34077. image: {
  34078. source: "./media/characters/ryth/tailmaw.svg"
  34079. }
  34080. },
  34081. goia: {
  34082. height: math.unit(4, "meters"),
  34083. weight: math.unit(10800, "lb"),
  34084. name: "Goia",
  34085. image: {
  34086. source: "./media/characters/ryth/goia.svg",
  34087. extra: 745/640,
  34088. bottom: 107/852
  34089. }
  34090. },
  34091. goiaFront: {
  34092. height: math.unit(4, "meters"),
  34093. weight: math.unit(10800, "lb"),
  34094. name: "Goia (Front)",
  34095. image: {
  34096. source: "./media/characters/ryth/goia-front.svg",
  34097. extra: 750/586,
  34098. bottom: 114/864
  34099. }
  34100. },
  34101. goiaMaw: {
  34102. height: math.unit(5.55, "feet"),
  34103. name: "Goia Maw",
  34104. image: {
  34105. source: "./media/characters/ryth/goia-maw.svg"
  34106. }
  34107. },
  34108. goiaForepaw: {
  34109. height: math.unit(3.5, "feet"),
  34110. name: "Goia Forepaw",
  34111. image: {
  34112. source: "./media/characters/ryth/goia-forepaw.svg"
  34113. }
  34114. },
  34115. goiaHindpaw: {
  34116. height: math.unit(5.55, "feet"),
  34117. name: "Goia Hindpaw",
  34118. image: {
  34119. source: "./media/characters/ryth/goia-hindpaw.svg"
  34120. }
  34121. },
  34122. },
  34123. [
  34124. {
  34125. name: "Normal",
  34126. height: math.unit(4, "feet"),
  34127. default: true
  34128. },
  34129. ]
  34130. ))
  34131. characterMakers.push(() => makeCharacter(
  34132. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34133. {
  34134. front: {
  34135. height: math.unit(7, "feet"),
  34136. weight: math.unit(180, "lb"),
  34137. name: "Front",
  34138. image: {
  34139. source: "./media/characters/necrolance/front.svg",
  34140. extra: 1062/947,
  34141. bottom: 41/1103
  34142. }
  34143. },
  34144. back: {
  34145. height: math.unit(7, "feet"),
  34146. weight: math.unit(180, "lb"),
  34147. name: "Back",
  34148. image: {
  34149. source: "./media/characters/necrolance/back.svg",
  34150. extra: 1045/984,
  34151. bottom: 14/1059
  34152. }
  34153. },
  34154. wing: {
  34155. height: math.unit(2.67, "feet"),
  34156. name: "Wing",
  34157. image: {
  34158. source: "./media/characters/necrolance/wing.svg"
  34159. }
  34160. },
  34161. },
  34162. [
  34163. {
  34164. name: "Normal",
  34165. height: math.unit(7, "feet"),
  34166. default: true
  34167. },
  34168. ]
  34169. ))
  34170. characterMakers.push(() => makeCharacter(
  34171. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34172. {
  34173. front: {
  34174. height: math.unit(76, "meters"),
  34175. weight: math.unit(30000, "tons"),
  34176. name: "Front",
  34177. image: {
  34178. source: "./media/characters/tyler/front.svg",
  34179. extra: 1640/1640,
  34180. bottom: 114/1754
  34181. }
  34182. },
  34183. },
  34184. [
  34185. {
  34186. name: "Macro",
  34187. height: math.unit(76, "meters"),
  34188. default: true
  34189. },
  34190. ]
  34191. ))
  34192. characterMakers.push(() => makeCharacter(
  34193. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34194. {
  34195. front: {
  34196. height: math.unit(4 + 11/12, "feet"),
  34197. weight: math.unit(132, "lb"),
  34198. name: "Front",
  34199. image: {
  34200. source: "./media/characters/icey/front.svg",
  34201. extra: 2750/2550,
  34202. bottom: 33/2783
  34203. }
  34204. },
  34205. back: {
  34206. height: math.unit(4 + 11/12, "feet"),
  34207. weight: math.unit(132, "lb"),
  34208. name: "Back",
  34209. image: {
  34210. source: "./media/characters/icey/back.svg",
  34211. extra: 2624/2481,
  34212. bottom: 35/2659
  34213. }
  34214. },
  34215. },
  34216. [
  34217. {
  34218. name: "Normal",
  34219. height: math.unit(4 + 11/12, "feet"),
  34220. default: true
  34221. },
  34222. ]
  34223. ))
  34224. characterMakers.push(() => makeCharacter(
  34225. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34226. {
  34227. front: {
  34228. height: math.unit(100, "feet"),
  34229. weight: math.unit(0, "lb"),
  34230. name: "Front",
  34231. image: {
  34232. source: "./media/characters/smile/front.svg",
  34233. extra: 2983/2912,
  34234. bottom: 162/3145
  34235. }
  34236. },
  34237. back: {
  34238. height: math.unit(100, "feet"),
  34239. weight: math.unit(0, "lb"),
  34240. name: "Back",
  34241. image: {
  34242. source: "./media/characters/smile/back.svg",
  34243. extra: 3143/3031,
  34244. bottom: 91/3234
  34245. }
  34246. },
  34247. head: {
  34248. height: math.unit(26.3, "feet"),
  34249. weight: math.unit(0, "lb"),
  34250. name: "Head",
  34251. image: {
  34252. source: "./media/characters/smile/head.svg"
  34253. }
  34254. },
  34255. collar: {
  34256. height: math.unit(5.3, "feet"),
  34257. weight: math.unit(0, "lb"),
  34258. name: "Collar",
  34259. image: {
  34260. source: "./media/characters/smile/collar.svg"
  34261. }
  34262. },
  34263. },
  34264. [
  34265. {
  34266. name: "Macro",
  34267. height: math.unit(100, "feet"),
  34268. default: true
  34269. },
  34270. ]
  34271. ))
  34272. characterMakers.push(() => makeCharacter(
  34273. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34274. {
  34275. dragon: {
  34276. height: math.unit(26, "feet"),
  34277. weight: math.unit(36, "tons"),
  34278. name: "Dragon",
  34279. image: {
  34280. source: "./media/characters/arimphae/dragon.svg",
  34281. extra: 1574/983,
  34282. bottom: 357/1931
  34283. }
  34284. },
  34285. drake: {
  34286. height: math.unit(9, "feet"),
  34287. weight: math.unit(1.5, "tons"),
  34288. name: "Drake",
  34289. image: {
  34290. source: "./media/characters/arimphae/drake.svg",
  34291. extra: 1120/925,
  34292. bottom: 435/1555
  34293. }
  34294. },
  34295. },
  34296. [
  34297. {
  34298. name: "Small",
  34299. height: math.unit(26*5/9, "feet")
  34300. },
  34301. {
  34302. name: "Normal",
  34303. height: math.unit(26, "feet"),
  34304. default: true
  34305. },
  34306. ]
  34307. ))
  34308. characterMakers.push(() => makeCharacter(
  34309. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34310. {
  34311. front: {
  34312. height: math.unit(8 + 9/12, "feet"),
  34313. name: "Front",
  34314. image: {
  34315. source: "./media/characters/xander/front.svg",
  34316. extra: 1237/974,
  34317. bottom: 94/1331
  34318. }
  34319. },
  34320. },
  34321. [
  34322. {
  34323. name: "Normal",
  34324. height: math.unit(8 + 9/12, "feet"),
  34325. default: true
  34326. },
  34327. {
  34328. name: "Gaze Grabber",
  34329. height: math.unit(13 + 8/12, "feet")
  34330. },
  34331. {
  34332. name: "Jaw Dropper",
  34333. height: math.unit(27, "feet")
  34334. },
  34335. {
  34336. name: "Show Stopper",
  34337. height: math.unit(136, "feet")
  34338. },
  34339. {
  34340. name: "Superstar",
  34341. height: math.unit(1.9e6, "miles")
  34342. },
  34343. ]
  34344. ))
  34345. characterMakers.push(() => makeCharacter(
  34346. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34347. {
  34348. side: {
  34349. height: math.unit(2100, "feet"),
  34350. name: "Side",
  34351. image: {
  34352. source: "./media/characters/osiris/side.svg",
  34353. extra: 1105/939,
  34354. bottom: 167/1272
  34355. }
  34356. },
  34357. },
  34358. [
  34359. {
  34360. name: "Macro",
  34361. height: math.unit(2100, "feet"),
  34362. default: true
  34363. },
  34364. ]
  34365. ))
  34366. characterMakers.push(() => makeCharacter(
  34367. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34368. {
  34369. front: {
  34370. height: math.unit(6 + 8/12, "feet"),
  34371. weight: math.unit(225, "lb"),
  34372. name: "Front",
  34373. image: {
  34374. source: "./media/characters/rhys-londe/front.svg",
  34375. extra: 2258/2141,
  34376. bottom: 188/2446
  34377. }
  34378. },
  34379. back: {
  34380. height: math.unit(6 + 8/12, "feet"),
  34381. weight: math.unit(225, "lb"),
  34382. name: "Back",
  34383. image: {
  34384. source: "./media/characters/rhys-londe/back.svg",
  34385. extra: 2237/2137,
  34386. bottom: 63/2300
  34387. }
  34388. },
  34389. frontNsfw: {
  34390. height: math.unit(6 + 8/12, "feet"),
  34391. weight: math.unit(225, "lb"),
  34392. name: "Front (NSFW)",
  34393. image: {
  34394. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34395. extra: 2258/2141,
  34396. bottom: 188/2446
  34397. }
  34398. },
  34399. backNsfw: {
  34400. height: math.unit(6 + 8/12, "feet"),
  34401. weight: math.unit(225, "lb"),
  34402. name: "Back (NSFW)",
  34403. image: {
  34404. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34405. extra: 2237/2137,
  34406. bottom: 63/2300
  34407. }
  34408. },
  34409. dick: {
  34410. height: math.unit(30, "inches"),
  34411. name: "Dick",
  34412. image: {
  34413. source: "./media/characters/rhys-londe/dick.svg"
  34414. }
  34415. },
  34416. maw: {
  34417. height: math.unit(1.6, "feet"),
  34418. name: "Maw",
  34419. image: {
  34420. source: "./media/characters/rhys-londe/maw.svg"
  34421. }
  34422. },
  34423. },
  34424. [
  34425. {
  34426. name: "Normal",
  34427. height: math.unit(6 + 8/12, "feet"),
  34428. default: true
  34429. },
  34430. ]
  34431. ))
  34432. characterMakers.push(() => makeCharacter(
  34433. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34434. {
  34435. front: {
  34436. height: math.unit(3 + 10/12, "feet"),
  34437. weight: math.unit(90, "lb"),
  34438. name: "Front",
  34439. image: {
  34440. source: "./media/characters/taivas-ensim/front.svg",
  34441. extra: 1327/1216,
  34442. bottom: 96/1423
  34443. }
  34444. },
  34445. back: {
  34446. height: math.unit(3 + 10/12, "feet"),
  34447. weight: math.unit(90, "lb"),
  34448. name: "Back",
  34449. image: {
  34450. source: "./media/characters/taivas-ensim/back.svg",
  34451. extra: 1355/1247,
  34452. bottom: 11/1366
  34453. }
  34454. },
  34455. frontNsfw: {
  34456. height: math.unit(3 + 10/12, "feet"),
  34457. weight: math.unit(90, "lb"),
  34458. name: "Front (NSFW)",
  34459. image: {
  34460. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34461. extra: 1327/1216,
  34462. bottom: 96/1423
  34463. }
  34464. },
  34465. backNsfw: {
  34466. height: math.unit(3 + 10/12, "feet"),
  34467. weight: math.unit(90, "lb"),
  34468. name: "Back (NSFW)",
  34469. image: {
  34470. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34471. extra: 1355/1247,
  34472. bottom: 11/1366
  34473. }
  34474. },
  34475. },
  34476. [
  34477. {
  34478. name: "Normal",
  34479. height: math.unit(3 + 10/12, "feet"),
  34480. default: true
  34481. },
  34482. ]
  34483. ))
  34484. characterMakers.push(() => makeCharacter(
  34485. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34486. {
  34487. front: {
  34488. height: math.unit(9 + 6/12, "feet"),
  34489. weight: math.unit(940, "lb"),
  34490. name: "Front",
  34491. image: {
  34492. source: "./media/characters/byliss/front.svg",
  34493. extra: 1327/1290,
  34494. bottom: 82/1409
  34495. }
  34496. },
  34497. back: {
  34498. height: math.unit(9 + 6/12, "feet"),
  34499. weight: math.unit(940, "lb"),
  34500. name: "Back",
  34501. image: {
  34502. source: "./media/characters/byliss/back.svg",
  34503. extra: 1376/1349,
  34504. bottom: 9/1385
  34505. }
  34506. },
  34507. frontNsfw: {
  34508. height: math.unit(9 + 6/12, "feet"),
  34509. weight: math.unit(940, "lb"),
  34510. name: "Front (NSFW)",
  34511. image: {
  34512. source: "./media/characters/byliss/front-nsfw.svg",
  34513. extra: 1327/1290,
  34514. bottom: 82/1409
  34515. }
  34516. },
  34517. backNsfw: {
  34518. height: math.unit(9 + 6/12, "feet"),
  34519. weight: math.unit(940, "lb"),
  34520. name: "Back (NSFW)",
  34521. image: {
  34522. source: "./media/characters/byliss/back-nsfw.svg",
  34523. extra: 1376/1349,
  34524. bottom: 9/1385
  34525. }
  34526. },
  34527. },
  34528. [
  34529. {
  34530. name: "Normal",
  34531. height: math.unit(9 + 6/12, "feet"),
  34532. default: true
  34533. },
  34534. ]
  34535. ))
  34536. characterMakers.push(() => makeCharacter(
  34537. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34538. {
  34539. front: {
  34540. height: math.unit(5 + 2/12, "feet"),
  34541. weight: math.unit(200, "lb"),
  34542. name: "Front",
  34543. image: {
  34544. source: "./media/characters/noraly/front.svg",
  34545. extra: 4985/4773,
  34546. bottom: 150/5135
  34547. }
  34548. },
  34549. full: {
  34550. height: math.unit(5 + 2/12, "feet"),
  34551. weight: math.unit(164, "lb"),
  34552. name: "Full",
  34553. image: {
  34554. source: "./media/characters/noraly/full.svg",
  34555. extra: 1114/1059,
  34556. bottom: 35/1149
  34557. }
  34558. },
  34559. fuller: {
  34560. height: math.unit(5 + 2/12, "feet"),
  34561. weight: math.unit(230, "lb"),
  34562. name: "Fuller",
  34563. image: {
  34564. source: "./media/characters/noraly/fuller.svg",
  34565. extra: 1114/1059,
  34566. bottom: 35/1149
  34567. }
  34568. },
  34569. fullest: {
  34570. height: math.unit(5 + 2/12, "feet"),
  34571. weight: math.unit(300, "lb"),
  34572. name: "Fullest",
  34573. image: {
  34574. source: "./media/characters/noraly/fullest.svg",
  34575. extra: 1114/1059,
  34576. bottom: 35/1149
  34577. }
  34578. },
  34579. },
  34580. [
  34581. {
  34582. name: "Normal",
  34583. height: math.unit(5 + 2/12, "feet"),
  34584. default: true
  34585. },
  34586. ]
  34587. ))
  34588. characterMakers.push(() => makeCharacter(
  34589. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34590. {
  34591. front: {
  34592. height: math.unit(5 + 2/12, "feet"),
  34593. weight: math.unit(210, "lb"),
  34594. name: "Front",
  34595. image: {
  34596. source: "./media/characters/pera/front.svg",
  34597. extra: 1560/1531,
  34598. bottom: 165/1725
  34599. }
  34600. },
  34601. back: {
  34602. height: math.unit(5 + 2/12, "feet"),
  34603. weight: math.unit(210, "lb"),
  34604. name: "Back",
  34605. image: {
  34606. source: "./media/characters/pera/back.svg",
  34607. extra: 1523/1493,
  34608. bottom: 152/1675
  34609. }
  34610. },
  34611. dick: {
  34612. height: math.unit(2.4, "feet"),
  34613. name: "Dick",
  34614. image: {
  34615. source: "./media/characters/pera/dick.svg"
  34616. }
  34617. },
  34618. },
  34619. [
  34620. {
  34621. name: "Normal",
  34622. height: math.unit(5 + 2/12, "feet"),
  34623. default: true
  34624. },
  34625. ]
  34626. ))
  34627. characterMakers.push(() => makeCharacter(
  34628. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34629. {
  34630. front: {
  34631. height: math.unit(12, "feet"),
  34632. weight: math.unit(3200, "lb"),
  34633. name: "Front",
  34634. image: {
  34635. source: "./media/characters/julian/front.svg",
  34636. extra: 2962/2701,
  34637. bottom: 184/3146
  34638. }
  34639. },
  34640. maw: {
  34641. height: math.unit(5.35, "feet"),
  34642. name: "Maw",
  34643. image: {
  34644. source: "./media/characters/julian/maw.svg"
  34645. }
  34646. },
  34647. paw: {
  34648. height: math.unit(3.07, "feet"),
  34649. name: "Paw",
  34650. image: {
  34651. source: "./media/characters/julian/paw.svg"
  34652. }
  34653. },
  34654. },
  34655. [
  34656. {
  34657. name: "Default",
  34658. height: math.unit(12, "feet"),
  34659. default: true
  34660. },
  34661. {
  34662. name: "Big",
  34663. height: math.unit(50, "feet")
  34664. },
  34665. {
  34666. name: "Really Big",
  34667. height: math.unit(1, "mile")
  34668. },
  34669. {
  34670. name: "Extremely Big",
  34671. height: math.unit(100, "miles")
  34672. },
  34673. {
  34674. name: "Planet Hugger",
  34675. height: math.unit(200, "megameters")
  34676. },
  34677. {
  34678. name: "Unreasonably Big",
  34679. height: math.unit(1e300, "meters")
  34680. },
  34681. ]
  34682. ))
  34683. characterMakers.push(() => makeCharacter(
  34684. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34685. {
  34686. solgooleo: {
  34687. height: math.unit(4, "meters"),
  34688. weight: math.unit(6000*1.5, "kg"),
  34689. volume: math.unit(6000, "liters"),
  34690. name: "Solgooleo",
  34691. image: {
  34692. source: "./media/characters/pi/solgooleo.svg",
  34693. extra: 388/331,
  34694. bottom: 29/417
  34695. }
  34696. },
  34697. },
  34698. [
  34699. {
  34700. name: "Normal",
  34701. height: math.unit(4, "meters"),
  34702. default: true
  34703. },
  34704. ]
  34705. ))
  34706. characterMakers.push(() => makeCharacter(
  34707. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34708. {
  34709. front: {
  34710. height: math.unit(8, "feet"),
  34711. weight: math.unit(4, "tons"),
  34712. name: "Front",
  34713. image: {
  34714. source: "./media/characters/shaun/front.svg",
  34715. extra: 503/495,
  34716. bottom: 20/523
  34717. }
  34718. },
  34719. back: {
  34720. height: math.unit(8, "feet"),
  34721. weight: math.unit(4, "tons"),
  34722. name: "Back",
  34723. image: {
  34724. source: "./media/characters/shaun/back.svg",
  34725. extra: 487/480,
  34726. bottom: 20/507
  34727. }
  34728. },
  34729. },
  34730. [
  34731. {
  34732. name: "Lorg",
  34733. height: math.unit(8, "feet"),
  34734. default: true
  34735. },
  34736. ]
  34737. ))
  34738. characterMakers.push(() => makeCharacter(
  34739. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34740. {
  34741. frontAnthro: {
  34742. height: math.unit(7, "feet"),
  34743. name: "Front",
  34744. image: {
  34745. source: "./media/characters/sini/front-anthro.svg",
  34746. extra: 726/678,
  34747. bottom: 35/761
  34748. },
  34749. form: "anthro",
  34750. default: true
  34751. },
  34752. backAnthro: {
  34753. height: math.unit(7, "feet"),
  34754. name: "Back",
  34755. image: {
  34756. source: "./media/characters/sini/back-anthro.svg",
  34757. extra: 743/701,
  34758. bottom: 12/755
  34759. },
  34760. form: "anthro",
  34761. },
  34762. frontAnthroNsfw: {
  34763. height: math.unit(7, "feet"),
  34764. name: "Front (NSFW)",
  34765. image: {
  34766. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34767. extra: 726/678,
  34768. bottom: 35/761
  34769. },
  34770. form: "anthro"
  34771. },
  34772. backAnthroNsfw: {
  34773. height: math.unit(7, "feet"),
  34774. name: "Back (NSFW)",
  34775. image: {
  34776. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34777. extra: 743/701,
  34778. bottom: 12/755
  34779. },
  34780. form: "anthro",
  34781. },
  34782. mawAnthro: {
  34783. height: math.unit(2.14, "feet"),
  34784. name: "Maw",
  34785. image: {
  34786. source: "./media/characters/sini/maw-anthro.svg"
  34787. },
  34788. form: "anthro"
  34789. },
  34790. dick: {
  34791. height: math.unit(1.45, "feet"),
  34792. name: "Dick",
  34793. image: {
  34794. source: "./media/characters/sini/dick-anthro.svg"
  34795. },
  34796. form: "anthro"
  34797. },
  34798. feral: {
  34799. height: math.unit(16, "feet"),
  34800. name: "Feral",
  34801. image: {
  34802. source: "./media/characters/sini/feral.svg",
  34803. extra: 814/605,
  34804. bottom: 11/825
  34805. },
  34806. form: "feral",
  34807. default: true
  34808. },
  34809. feralNsfw: {
  34810. height: math.unit(16, "feet"),
  34811. name: "Feral (NSFW)",
  34812. image: {
  34813. source: "./media/characters/sini/feral-nsfw.svg",
  34814. extra: 814/605,
  34815. bottom: 11/825
  34816. },
  34817. form: "feral"
  34818. },
  34819. mawFeral: {
  34820. height: math.unit(5.66, "feet"),
  34821. name: "Maw",
  34822. image: {
  34823. source: "./media/characters/sini/maw-feral.svg"
  34824. },
  34825. form: "feral",
  34826. },
  34827. pawFeral: {
  34828. height: math.unit(5.17, "feet"),
  34829. name: "Paw",
  34830. image: {
  34831. source: "./media/characters/sini/paw-feral.svg"
  34832. },
  34833. form: "feral",
  34834. },
  34835. rumpFeral: {
  34836. height: math.unit(13.11, "feet"),
  34837. name: "Rump",
  34838. image: {
  34839. source: "./media/characters/sini/rump-feral.svg"
  34840. },
  34841. form: "feral",
  34842. },
  34843. dickFeral: {
  34844. height: math.unit(1, "feet"),
  34845. name: "Dick",
  34846. image: {
  34847. source: "./media/characters/sini/dick-feral.svg"
  34848. },
  34849. form: "feral",
  34850. },
  34851. eyeFeral: {
  34852. height: math.unit(1.23, "feet"),
  34853. name: "Eye",
  34854. image: {
  34855. source: "./media/characters/sini/eye-feral.svg"
  34856. },
  34857. form: "feral",
  34858. },
  34859. },
  34860. [
  34861. {
  34862. name: "Normal",
  34863. height: math.unit(7, "feet"),
  34864. default: true,
  34865. form: "anthro"
  34866. },
  34867. {
  34868. name: "Normal",
  34869. height: math.unit(16, "feet"),
  34870. default: true,
  34871. form: "feral"
  34872. },
  34873. ],
  34874. {
  34875. "anthro": {
  34876. name: "Anthro",
  34877. default: true
  34878. },
  34879. "feral": {
  34880. name: "Feral",
  34881. }
  34882. }
  34883. ))
  34884. characterMakers.push(() => makeCharacter(
  34885. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34886. {
  34887. side: {
  34888. height: math.unit(47.2, "meters"),
  34889. weight: math.unit(10000, "tons"),
  34890. name: "Side",
  34891. image: {
  34892. source: "./media/characters/raylldo/side.svg",
  34893. extra: 2363/642,
  34894. bottom: 221/2584
  34895. }
  34896. },
  34897. top: {
  34898. height: math.unit(240, "meters"),
  34899. weight: math.unit(10000, "tons"),
  34900. name: "Top",
  34901. image: {
  34902. source: "./media/characters/raylldo/top.svg"
  34903. }
  34904. },
  34905. bottom: {
  34906. height: math.unit(240, "meters"),
  34907. weight: math.unit(10000, "tons"),
  34908. name: "Bottom",
  34909. image: {
  34910. source: "./media/characters/raylldo/bottom.svg"
  34911. }
  34912. },
  34913. head: {
  34914. height: math.unit(38.6, "meters"),
  34915. name: "Head",
  34916. image: {
  34917. source: "./media/characters/raylldo/head.svg",
  34918. extra: 1335/1112,
  34919. bottom: 0/1335
  34920. }
  34921. },
  34922. maw: {
  34923. height: math.unit(16.37, "meters"),
  34924. name: "Maw",
  34925. image: {
  34926. source: "./media/characters/raylldo/maw.svg",
  34927. extra: 883/660,
  34928. bottom: 0/883
  34929. },
  34930. extraAttributes: {
  34931. preyCapacity: {
  34932. name: "Capacity",
  34933. power: 3,
  34934. type: "volume",
  34935. base: math.unit(1000, "people")
  34936. },
  34937. tongueSize: {
  34938. name: "Tongue Size",
  34939. power: 2,
  34940. type: "area",
  34941. base: math.unit(21, "m^2")
  34942. }
  34943. }
  34944. },
  34945. forepaw: {
  34946. height: math.unit(18, "meters"),
  34947. name: "Forepaw",
  34948. image: {
  34949. source: "./media/characters/raylldo/forepaw.svg"
  34950. }
  34951. },
  34952. hindpaw: {
  34953. height: math.unit(23, "meters"),
  34954. name: "Hindpaw",
  34955. image: {
  34956. source: "./media/characters/raylldo/hindpaw.svg"
  34957. }
  34958. },
  34959. genitals: {
  34960. height: math.unit(42, "meters"),
  34961. name: "Genitals",
  34962. image: {
  34963. source: "./media/characters/raylldo/genitals.svg"
  34964. }
  34965. },
  34966. },
  34967. [
  34968. {
  34969. name: "Normal",
  34970. height: math.unit(47.2, "meters"),
  34971. default: true
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34977. {
  34978. anthroFront: {
  34979. height: math.unit(9, "feet"),
  34980. weight: math.unit(600, "lb"),
  34981. name: "Anthro (Front)",
  34982. image: {
  34983. source: "./media/characters/glint/anthro-front.svg",
  34984. extra: 1097/1018,
  34985. bottom: 28/1125
  34986. }
  34987. },
  34988. anthroBack: {
  34989. height: math.unit(9, "feet"),
  34990. weight: math.unit(600, "lb"),
  34991. name: "Anthro (Back)",
  34992. image: {
  34993. source: "./media/characters/glint/anthro-back.svg",
  34994. extra: 1154/997,
  34995. bottom: 36/1190
  34996. }
  34997. },
  34998. feral: {
  34999. height: math.unit(11, "feet"),
  35000. weight: math.unit(50000, "lb"),
  35001. name: "Feral",
  35002. image: {
  35003. source: "./media/characters/glint/feral.svg",
  35004. extra: 3035/1585,
  35005. bottom: 1169/4204
  35006. }
  35007. },
  35008. dickAnthro: {
  35009. height: math.unit(0.7, "meters"),
  35010. name: "Dick (Anthro)",
  35011. image: {
  35012. source: "./media/characters/glint/dick-anthro.svg"
  35013. }
  35014. },
  35015. dickFeral: {
  35016. height: math.unit(2.65, "meters"),
  35017. name: "Dick (Feral)",
  35018. image: {
  35019. source: "./media/characters/glint/dick-feral.svg"
  35020. }
  35021. },
  35022. slitHidden: {
  35023. height: math.unit(5.85, "meters"),
  35024. name: "Slit (Hidden)",
  35025. image: {
  35026. source: "./media/characters/glint/slit-hidden.svg"
  35027. }
  35028. },
  35029. slitErect: {
  35030. height: math.unit(5.85, "meters"),
  35031. name: "Slit (Erect)",
  35032. image: {
  35033. source: "./media/characters/glint/slit-erect.svg"
  35034. }
  35035. },
  35036. mawAnthro: {
  35037. height: math.unit(0.63, "meters"),
  35038. name: "Maw (Anthro)",
  35039. image: {
  35040. source: "./media/characters/glint/maw.svg"
  35041. }
  35042. },
  35043. mawFeral: {
  35044. height: math.unit(2.89, "meters"),
  35045. name: "Maw (Feral)",
  35046. image: {
  35047. source: "./media/characters/glint/maw.svg"
  35048. }
  35049. },
  35050. },
  35051. [
  35052. {
  35053. name: "Normal",
  35054. height: math.unit(9, "feet"),
  35055. default: true
  35056. },
  35057. ]
  35058. ))
  35059. characterMakers.push(() => makeCharacter(
  35060. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35061. {
  35062. side: {
  35063. height: math.unit(15, "feet"),
  35064. weight: math.unit(5000, "kg"),
  35065. name: "Side",
  35066. image: {
  35067. source: "./media/characters/kairne/side.svg",
  35068. extra: 979/811,
  35069. bottom: 13/992
  35070. }
  35071. },
  35072. front: {
  35073. height: math.unit(15, "feet"),
  35074. weight: math.unit(5000, "kg"),
  35075. name: "Front",
  35076. image: {
  35077. source: "./media/characters/kairne/front.svg",
  35078. extra: 908/814,
  35079. bottom: 26/934
  35080. }
  35081. },
  35082. sideNsfw: {
  35083. height: math.unit(15, "feet"),
  35084. weight: math.unit(5000, "kg"),
  35085. name: "Side (NSFW)",
  35086. image: {
  35087. source: "./media/characters/kairne/side-nsfw.svg",
  35088. extra: 979/811,
  35089. bottom: 13/992
  35090. }
  35091. },
  35092. frontNsfw: {
  35093. height: math.unit(15, "feet"),
  35094. weight: math.unit(5000, "kg"),
  35095. name: "Front (NSFW)",
  35096. image: {
  35097. source: "./media/characters/kairne/front-nsfw.svg",
  35098. extra: 908/814,
  35099. bottom: 26/934
  35100. }
  35101. },
  35102. dickCaged: {
  35103. height: math.unit(0.65, "meters"),
  35104. name: "Dick-caged",
  35105. image: {
  35106. source: "./media/characters/kairne/dick-caged.svg"
  35107. }
  35108. },
  35109. dick: {
  35110. height: math.unit(0.79, "meters"),
  35111. name: "Dick",
  35112. image: {
  35113. source: "./media/characters/kairne/dick.svg"
  35114. }
  35115. },
  35116. genitals: {
  35117. height: math.unit(1.29, "meters"),
  35118. name: "Genitals",
  35119. image: {
  35120. source: "./media/characters/kairne/genitals.svg"
  35121. }
  35122. },
  35123. maw: {
  35124. height: math.unit(1.73, "meters"),
  35125. name: "Maw",
  35126. image: {
  35127. source: "./media/characters/kairne/maw.svg"
  35128. }
  35129. },
  35130. },
  35131. [
  35132. {
  35133. name: "Normal",
  35134. height: math.unit(15, "feet"),
  35135. default: true
  35136. },
  35137. ]
  35138. ))
  35139. characterMakers.push(() => makeCharacter(
  35140. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35141. {
  35142. front: {
  35143. height: math.unit(5 + 8/12, "feet"),
  35144. weight: math.unit(139, "lb"),
  35145. name: "Front",
  35146. image: {
  35147. source: "./media/characters/biscuit-jackal/front.svg",
  35148. extra: 2106/1961,
  35149. bottom: 58/2164
  35150. }
  35151. },
  35152. back: {
  35153. height: math.unit(5 + 8/12, "feet"),
  35154. weight: math.unit(139, "lb"),
  35155. name: "Back",
  35156. image: {
  35157. source: "./media/characters/biscuit-jackal/back.svg",
  35158. extra: 2132/1976,
  35159. bottom: 57/2189
  35160. }
  35161. },
  35162. werejackal: {
  35163. height: math.unit(6 + 3/12, "feet"),
  35164. weight: math.unit(188, "lb"),
  35165. name: "Werejackal",
  35166. image: {
  35167. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35168. extra: 2373/2178,
  35169. bottom: 53/2426
  35170. }
  35171. },
  35172. },
  35173. [
  35174. {
  35175. name: "Normal",
  35176. height: math.unit(5 + 8/12, "feet"),
  35177. default: true
  35178. },
  35179. ]
  35180. ))
  35181. characterMakers.push(() => makeCharacter(
  35182. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35183. {
  35184. front: {
  35185. height: math.unit(140, "cm"),
  35186. weight: math.unit(45, "kg"),
  35187. name: "Front",
  35188. image: {
  35189. source: "./media/characters/tayra-white/front.svg",
  35190. extra: 2229/2192,
  35191. bottom: 75/2304
  35192. }
  35193. },
  35194. },
  35195. [
  35196. {
  35197. name: "Normal",
  35198. height: math.unit(140, "cm"),
  35199. default: true
  35200. },
  35201. ]
  35202. ))
  35203. characterMakers.push(() => makeCharacter(
  35204. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35205. {
  35206. front: {
  35207. height: math.unit(4 + 5/12, "feet"),
  35208. name: "Front",
  35209. image: {
  35210. source: "./media/characters/scoop/front.svg",
  35211. extra: 1257/1136,
  35212. bottom: 69/1326
  35213. }
  35214. },
  35215. back: {
  35216. height: math.unit(4 + 5/12, "feet"),
  35217. name: "Back",
  35218. image: {
  35219. source: "./media/characters/scoop/back.svg",
  35220. extra: 1321/1152,
  35221. bottom: 32/1353
  35222. }
  35223. },
  35224. maw: {
  35225. height: math.unit(0.68, "feet"),
  35226. name: "Maw",
  35227. image: {
  35228. source: "./media/characters/scoop/maw.svg"
  35229. }
  35230. },
  35231. },
  35232. [
  35233. {
  35234. name: "Really Small",
  35235. height: math.unit(1, "mm")
  35236. },
  35237. {
  35238. name: "Micro",
  35239. height: math.unit(1, "inch")
  35240. },
  35241. {
  35242. name: "Normal",
  35243. height: math.unit(4 + 5/12, "feet"),
  35244. default: true
  35245. },
  35246. {
  35247. name: "Macro",
  35248. height: math.unit(200, "feet")
  35249. },
  35250. {
  35251. name: "Megamacro",
  35252. height: math.unit(3240, "feet")
  35253. },
  35254. {
  35255. name: "Teramacro",
  35256. height: math.unit(2500, "miles")
  35257. },
  35258. ]
  35259. ))
  35260. characterMakers.push(() => makeCharacter(
  35261. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35262. {
  35263. front: {
  35264. height: math.unit(15 + 7/12, "feet"),
  35265. weight: math.unit(1150, "tons"),
  35266. name: "Front",
  35267. image: {
  35268. source: "./media/characters/saphinara/front.svg",
  35269. extra: 1837/1643,
  35270. bottom: 84/1921
  35271. },
  35272. form: "normal",
  35273. default: true
  35274. },
  35275. side: {
  35276. height: math.unit(15 + 7/12, "feet"),
  35277. weight: math.unit(1150, "tons"),
  35278. name: "Side",
  35279. image: {
  35280. source: "./media/characters/saphinara/side.svg",
  35281. extra: 605/547,
  35282. bottom: 6/611
  35283. },
  35284. form: "normal"
  35285. },
  35286. back: {
  35287. height: math.unit(15 + 7/12, "feet"),
  35288. weight: math.unit(1150, "tons"),
  35289. name: "Back",
  35290. image: {
  35291. source: "./media/characters/saphinara/back.svg",
  35292. extra: 591/531,
  35293. bottom: 13/604
  35294. },
  35295. form: "normal"
  35296. },
  35297. frontTail: {
  35298. height: math.unit(15 + 7/12, "feet"),
  35299. weight: math.unit(1150, "tons"),
  35300. name: "Front (Full Tail)",
  35301. image: {
  35302. source: "./media/characters/saphinara/front-tail.svg",
  35303. extra: 2256/1630,
  35304. bottom: 261/2517
  35305. },
  35306. form: "normal"
  35307. },
  35308. insides: {
  35309. height: math.unit(11.92, "feet"),
  35310. name: "Insides",
  35311. image: {
  35312. source: "./media/characters/saphinara/insides.svg"
  35313. },
  35314. form: "normal"
  35315. },
  35316. head: {
  35317. height: math.unit(4.17, "feet"),
  35318. name: "Head",
  35319. image: {
  35320. source: "./media/characters/saphinara/head.svg"
  35321. },
  35322. form: "normal"
  35323. },
  35324. tongue: {
  35325. height: math.unit(4.60, "feet"),
  35326. name: "Tongue",
  35327. image: {
  35328. source: "./media/characters/saphinara/tongue.svg"
  35329. },
  35330. form: "normal"
  35331. },
  35332. headEnraged: {
  35333. height: math.unit(5.55, "feet"),
  35334. name: "Head (Enraged)",
  35335. image: {
  35336. source: "./media/characters/saphinara/head-enraged.svg"
  35337. },
  35338. form: "normal"
  35339. },
  35340. wings: {
  35341. height: math.unit(11.95, "feet"),
  35342. name: "Wings",
  35343. image: {
  35344. source: "./media/characters/saphinara/wings.svg"
  35345. },
  35346. form: "normal"
  35347. },
  35348. feathers: {
  35349. height: math.unit(8.92, "feet"),
  35350. name: "Feathers",
  35351. image: {
  35352. source: "./media/characters/saphinara/feathers.svg"
  35353. },
  35354. form: "normal"
  35355. },
  35356. shackles: {
  35357. height: math.unit(2, "feet"),
  35358. name: "Shackles",
  35359. image: {
  35360. source: "./media/characters/saphinara/shackles.svg"
  35361. },
  35362. form: "normal"
  35363. },
  35364. eyes: {
  35365. height: math.unit(1.331, "feet"),
  35366. name: "Eyes",
  35367. image: {
  35368. source: "./media/characters/saphinara/eyes.svg"
  35369. },
  35370. form: "normal"
  35371. },
  35372. eyesEnraged: {
  35373. height: math.unit(1.331, "feet"),
  35374. name: "Eyes (Enraged)",
  35375. image: {
  35376. source: "./media/characters/saphinara/eyes-enraged.svg"
  35377. },
  35378. form: "normal"
  35379. },
  35380. trueFormSide: {
  35381. height: math.unit(200, "feet"),
  35382. weight: math.unit(1e7, "tons"),
  35383. name: "Side",
  35384. image: {
  35385. source: "./media/characters/saphinara/true-form-side.svg",
  35386. extra: 1399/770,
  35387. bottom: 97/1496
  35388. },
  35389. form: "true-form",
  35390. default: true
  35391. },
  35392. trueFormMaw: {
  35393. height: math.unit(71.5, "feet"),
  35394. name: "Maw",
  35395. image: {
  35396. source: "./media/characters/saphinara/true-form-maw.svg",
  35397. extra: 2302/1453,
  35398. bottom: 0/2302
  35399. },
  35400. form: "true-form"
  35401. },
  35402. meowberusSide: {
  35403. height: math.unit(75, "feet"),
  35404. weight: math.unit(180000, "kg"),
  35405. preyCapacity: math.unit(50000, "people"),
  35406. name: "Side",
  35407. image: {
  35408. source: "./media/characters/saphinara/meowberus-side.svg",
  35409. extra: 1400/711,
  35410. bottom: 126/1526
  35411. },
  35412. form: "meowberus",
  35413. extraAttributes: {
  35414. "pawArea": {
  35415. name: "Paw Size",
  35416. power: 2,
  35417. type: "area",
  35418. base: math.unit(35, "m^2")
  35419. }
  35420. }
  35421. },
  35422. },
  35423. [
  35424. {
  35425. name: "Normal",
  35426. height: math.unit(15 + 7/12, "feet"),
  35427. default: true,
  35428. form: "normal"
  35429. },
  35430. {
  35431. name: "Angry",
  35432. height: math.unit(30 + 6/12, "feet"),
  35433. form: "normal"
  35434. },
  35435. {
  35436. name: "Enraged",
  35437. height: math.unit(102 + 1/12, "feet"),
  35438. form: "normal"
  35439. },
  35440. {
  35441. name: "True",
  35442. height: math.unit(200, "feet"),
  35443. default: true,
  35444. form: "true-form"
  35445. },
  35446. {
  35447. name: "Normal",
  35448. height: math.unit(75, "feet"),
  35449. default: true,
  35450. form: "meowberus"
  35451. },
  35452. ],
  35453. {
  35454. "normal": {
  35455. name: "Normal",
  35456. default: true
  35457. },
  35458. "true-form": {
  35459. name: "True Form"
  35460. },
  35461. "meowberus": {
  35462. name: "Meowberus",
  35463. },
  35464. }
  35465. ))
  35466. characterMakers.push(() => makeCharacter(
  35467. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35468. {
  35469. front: {
  35470. height: math.unit(6 + 8/12, "feet"),
  35471. weight: math.unit(300, "lb"),
  35472. name: "Front",
  35473. image: {
  35474. source: "./media/characters/jrain/front.svg",
  35475. extra: 3039/2865,
  35476. bottom: 399/3438
  35477. }
  35478. },
  35479. back: {
  35480. height: math.unit(6 + 8/12, "feet"),
  35481. weight: math.unit(300, "lb"),
  35482. name: "Back",
  35483. image: {
  35484. source: "./media/characters/jrain/back.svg",
  35485. extra: 3089/2938,
  35486. bottom: 172/3261
  35487. }
  35488. },
  35489. head: {
  35490. height: math.unit(2.14, "feet"),
  35491. name: "Head",
  35492. image: {
  35493. source: "./media/characters/jrain/head.svg"
  35494. }
  35495. },
  35496. maw: {
  35497. height: math.unit(1.77, "feet"),
  35498. name: "Maw",
  35499. image: {
  35500. source: "./media/characters/jrain/maw.svg"
  35501. }
  35502. },
  35503. leftHand: {
  35504. height: math.unit(1.1, "feet"),
  35505. name: "Left Hand",
  35506. image: {
  35507. source: "./media/characters/jrain/left-hand.svg"
  35508. }
  35509. },
  35510. rightHand: {
  35511. height: math.unit(1.1, "feet"),
  35512. name: "Right Hand",
  35513. image: {
  35514. source: "./media/characters/jrain/right-hand.svg"
  35515. }
  35516. },
  35517. eye: {
  35518. height: math.unit(0.35, "feet"),
  35519. name: "Eye",
  35520. image: {
  35521. source: "./media/characters/jrain/eye.svg"
  35522. }
  35523. },
  35524. },
  35525. [
  35526. {
  35527. name: "Normal",
  35528. height: math.unit(6 + 8/12, "feet"),
  35529. default: true
  35530. },
  35531. {
  35532. name: "Casually Large",
  35533. height: math.unit(25, "feet")
  35534. },
  35535. {
  35536. name: "Giant",
  35537. height: math.unit(100, "feet")
  35538. },
  35539. {
  35540. name: "Kaiju",
  35541. height: math.unit(300, "feet")
  35542. },
  35543. ]
  35544. ))
  35545. characterMakers.push(() => makeCharacter(
  35546. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35547. {
  35548. dragon: {
  35549. height: math.unit(5, "meters"),
  35550. name: "Dragon",
  35551. image: {
  35552. source: "./media/characters/sabrina/dragon.svg",
  35553. extra: 3670 / 2365,
  35554. bottom: 333 / 4003
  35555. }
  35556. },
  35557. gryphon: {
  35558. height: math.unit(3, "meters"),
  35559. name: "Gryphon",
  35560. image: {
  35561. source: "./media/characters/sabrina/gryphon.svg",
  35562. extra: 1576 / 945,
  35563. bottom: 71 / 1647
  35564. }
  35565. },
  35566. snake: {
  35567. height: math.unit(12, "meters"),
  35568. name: "Snake",
  35569. image: {
  35570. source: "./media/characters/sabrina/snake.svg",
  35571. extra: 1758 / 1320,
  35572. bottom: 186 / 1944
  35573. }
  35574. },
  35575. collar: {
  35576. height: math.unit(1.86, "meters"),
  35577. name: "Collar",
  35578. image: {
  35579. source: "./media/characters/sabrina/collar.svg"
  35580. }
  35581. },
  35582. eye: {
  35583. height: math.unit(0.53, "meters"),
  35584. name: "Eye",
  35585. image: {
  35586. source: "./media/characters/sabrina/eye.svg"
  35587. }
  35588. },
  35589. foot: {
  35590. height: math.unit(1.86, "meters"),
  35591. name: "Foot",
  35592. image: {
  35593. source: "./media/characters/sabrina/foot.svg"
  35594. }
  35595. },
  35596. hand: {
  35597. height: math.unit(1.32, "meters"),
  35598. name: "Hand",
  35599. image: {
  35600. source: "./media/characters/sabrina/hand.svg"
  35601. }
  35602. },
  35603. head: {
  35604. height: math.unit(2.44, "meters"),
  35605. name: "Head",
  35606. image: {
  35607. source: "./media/characters/sabrina/head.svg"
  35608. }
  35609. },
  35610. headAngry: {
  35611. height: math.unit(2.44, "meters"),
  35612. name: "Head (Angry))",
  35613. image: {
  35614. source: "./media/characters/sabrina/head-angry.svg"
  35615. }
  35616. },
  35617. maw: {
  35618. height: math.unit(1.65, "meters"),
  35619. name: "Maw",
  35620. image: {
  35621. source: "./media/characters/sabrina/maw.svg"
  35622. }
  35623. },
  35624. spikes: {
  35625. height: math.unit(1.69, "meters"),
  35626. name: "Spikes",
  35627. image: {
  35628. source: "./media/characters/sabrina/spikes.svg"
  35629. }
  35630. },
  35631. stomach: {
  35632. height: math.unit(1.15, "meters"),
  35633. name: "Stomach",
  35634. image: {
  35635. source: "./media/characters/sabrina/stomach.svg"
  35636. }
  35637. },
  35638. tongue: {
  35639. height: math.unit(1.27, "meters"),
  35640. name: "Tongue",
  35641. image: {
  35642. source: "./media/characters/sabrina/tongue.svg"
  35643. }
  35644. },
  35645. wingDorsal: {
  35646. height: math.unit(4.85, "meters"),
  35647. name: "Wing (Dorsal)",
  35648. image: {
  35649. source: "./media/characters/sabrina/wing-dorsal.svg"
  35650. }
  35651. },
  35652. wingVentral: {
  35653. height: math.unit(4.85, "meters"),
  35654. name: "Wing (Ventral)",
  35655. image: {
  35656. source: "./media/characters/sabrina/wing-ventral.svg"
  35657. }
  35658. },
  35659. },
  35660. [
  35661. {
  35662. name: "Normal",
  35663. height: math.unit(5, "meters"),
  35664. default: true
  35665. },
  35666. ]
  35667. ))
  35668. characterMakers.push(() => makeCharacter(
  35669. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35670. {
  35671. frontMaid: {
  35672. height: math.unit(5 + 5/12, "feet"),
  35673. weight: math.unit(130, "lb"),
  35674. name: "Front (Maid)",
  35675. image: {
  35676. source: "./media/characters/midnight-tales/front-maid.svg",
  35677. extra: 489/454,
  35678. bottom: 61/550
  35679. }
  35680. },
  35681. frontFormal: {
  35682. height: math.unit(5 + 5/12, "feet"),
  35683. weight: math.unit(130, "lb"),
  35684. name: "Front (Formal)",
  35685. image: {
  35686. source: "./media/characters/midnight-tales/front-formal.svg",
  35687. extra: 489/454,
  35688. bottom: 61/550
  35689. }
  35690. },
  35691. back: {
  35692. height: math.unit(5 + 5/12, "feet"),
  35693. weight: math.unit(130, "lb"),
  35694. name: "Back",
  35695. image: {
  35696. source: "./media/characters/midnight-tales/back.svg",
  35697. extra: 498/456,
  35698. bottom: 33/531
  35699. }
  35700. },
  35701. frontBeast: {
  35702. height: math.unit(40, "feet"),
  35703. weight: math.unit(64000, "lb"),
  35704. name: "Front (Beast)",
  35705. image: {
  35706. source: "./media/characters/midnight-tales/front-beast.svg",
  35707. extra: 927/860,
  35708. bottom: 53/980
  35709. }
  35710. },
  35711. backBeast: {
  35712. height: math.unit(40, "feet"),
  35713. weight: math.unit(64000, "lb"),
  35714. name: "Back (Beast)",
  35715. image: {
  35716. source: "./media/characters/midnight-tales/back-beast.svg",
  35717. extra: 929/855,
  35718. bottom: 16/945
  35719. }
  35720. },
  35721. footBeast: {
  35722. height: math.unit(6.7, "feet"),
  35723. name: "Foot (Beast)",
  35724. image: {
  35725. source: "./media/characters/midnight-tales/foot-beast.svg"
  35726. }
  35727. },
  35728. headBeast: {
  35729. height: math.unit(8, "feet"),
  35730. name: "Head (Beast)",
  35731. image: {
  35732. source: "./media/characters/midnight-tales/head-beast.svg"
  35733. }
  35734. },
  35735. },
  35736. [
  35737. {
  35738. name: "Normal",
  35739. height: math.unit(5 + 5 / 12, "feet"),
  35740. default: true
  35741. },
  35742. {
  35743. name: "Macro",
  35744. height: math.unit(25, "feet")
  35745. },
  35746. ]
  35747. ))
  35748. characterMakers.push(() => makeCharacter(
  35749. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35750. {
  35751. front: {
  35752. height: math.unit(5 + 10/12, "feet"),
  35753. name: "Front",
  35754. image: {
  35755. source: "./media/characters/argon/front.svg",
  35756. extra: 2009/1935,
  35757. bottom: 118/2127
  35758. }
  35759. },
  35760. back: {
  35761. height: math.unit(5 + 10/12, "feet"),
  35762. name: "Back",
  35763. image: {
  35764. source: "./media/characters/argon/back.svg",
  35765. extra: 2047/1992,
  35766. bottom: 20/2067
  35767. }
  35768. },
  35769. frontDressed: {
  35770. height: math.unit(5 + 10/12, "feet"),
  35771. name: "Front (Dressed)",
  35772. image: {
  35773. source: "./media/characters/argon/front-dressed.svg",
  35774. extra: 2009/1935,
  35775. bottom: 118/2127
  35776. }
  35777. },
  35778. },
  35779. [
  35780. {
  35781. name: "Normal",
  35782. height: math.unit(5 + 10/12, "feet"),
  35783. default: true
  35784. },
  35785. ]
  35786. ))
  35787. characterMakers.push(() => makeCharacter(
  35788. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35789. {
  35790. front: {
  35791. height: math.unit(8 + 6/12, "feet"),
  35792. weight: math.unit(1150, "lb"),
  35793. name: "Front",
  35794. image: {
  35795. source: "./media/characters/kichi/front.svg",
  35796. extra: 1267/1164,
  35797. bottom: 61/1328
  35798. }
  35799. },
  35800. back: {
  35801. height: math.unit(8 + 6/12, "feet"),
  35802. weight: math.unit(1150, "lb"),
  35803. name: "Back",
  35804. image: {
  35805. source: "./media/characters/kichi/back.svg",
  35806. extra: 1273/1166,
  35807. bottom: 33/1306
  35808. }
  35809. },
  35810. },
  35811. [
  35812. {
  35813. name: "Normal",
  35814. height: math.unit(8 + 6/12, "feet"),
  35815. default: true
  35816. },
  35817. ]
  35818. ))
  35819. characterMakers.push(() => makeCharacter(
  35820. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35821. {
  35822. front: {
  35823. height: math.unit(6, "feet"),
  35824. weight: math.unit(210, "lb"),
  35825. name: "Front",
  35826. image: {
  35827. source: "./media/characters/manetel-greyscale/front.svg",
  35828. extra: 350/312,
  35829. bottom: 8/358
  35830. }
  35831. },
  35832. },
  35833. [
  35834. {
  35835. name: "Micro",
  35836. height: math.unit(2, "inches")
  35837. },
  35838. {
  35839. name: "Normal",
  35840. height: math.unit(6, "feet"),
  35841. default: true
  35842. },
  35843. {
  35844. name: "Minimacro",
  35845. height: math.unit(17, "feet")
  35846. },
  35847. {
  35848. name: "Macro",
  35849. height: math.unit(117, "feet")
  35850. },
  35851. ]
  35852. ))
  35853. characterMakers.push(() => makeCharacter(
  35854. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35855. {
  35856. side: {
  35857. height: math.unit(5 + 1/12, "feet"),
  35858. weight: math.unit(418, "lb"),
  35859. name: "Side",
  35860. image: {
  35861. source: "./media/characters/softpurr/side.svg",
  35862. extra: 1993/1945,
  35863. bottom: 134/2127
  35864. }
  35865. },
  35866. front: {
  35867. height: math.unit(5 + 1/12, "feet"),
  35868. weight: math.unit(418, "lb"),
  35869. name: "Front",
  35870. image: {
  35871. source: "./media/characters/softpurr/front.svg",
  35872. extra: 1950/1856,
  35873. bottom: 174/2124
  35874. }
  35875. },
  35876. paw: {
  35877. height: math.unit(1, "feet"),
  35878. name: "Paw",
  35879. image: {
  35880. source: "./media/characters/softpurr/paw.svg"
  35881. }
  35882. },
  35883. },
  35884. [
  35885. {
  35886. name: "Normal",
  35887. height: math.unit(5 + 1/12, "feet"),
  35888. default: true
  35889. },
  35890. ]
  35891. ))
  35892. characterMakers.push(() => makeCharacter(
  35893. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35894. {
  35895. front: {
  35896. height: math.unit(260, "meters"),
  35897. name: "Front",
  35898. image: {
  35899. source: "./media/characters/anahita/front.svg",
  35900. extra: 665/635,
  35901. bottom: 89/754
  35902. }
  35903. },
  35904. },
  35905. [
  35906. {
  35907. name: "Macro",
  35908. height: math.unit(260, "meters"),
  35909. default: true
  35910. },
  35911. ]
  35912. ))
  35913. characterMakers.push(() => makeCharacter(
  35914. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35915. {
  35916. front: {
  35917. height: math.unit(4 + 10/12, "feet"),
  35918. weight: math.unit(160, "lb"),
  35919. name: "Front",
  35920. image: {
  35921. source: "./media/characters/chip-mouse/front.svg",
  35922. extra: 3528/3408,
  35923. bottom: 0/3528
  35924. }
  35925. },
  35926. frontNsfw: {
  35927. height: math.unit(4 + 10/12, "feet"),
  35928. weight: math.unit(160, "lb"),
  35929. name: "Front (NSFW)",
  35930. image: {
  35931. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35932. extra: 3528/3408,
  35933. bottom: 0/3528
  35934. }
  35935. },
  35936. },
  35937. [
  35938. {
  35939. name: "Normal",
  35940. height: math.unit(4 + 10/12, "feet"),
  35941. default: true
  35942. },
  35943. ]
  35944. ))
  35945. characterMakers.push(() => makeCharacter(
  35946. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35947. {
  35948. side: {
  35949. height: math.unit(10, "feet"),
  35950. weight: math.unit(14000, "lb"),
  35951. name: "Side",
  35952. image: {
  35953. source: "./media/characters/kremm/side.svg",
  35954. extra: 1390/1053,
  35955. bottom: 90/1480
  35956. }
  35957. },
  35958. gut: {
  35959. height: math.unit(5.8, "feet"),
  35960. name: "Gut",
  35961. image: {
  35962. source: "./media/characters/kremm/gut.svg"
  35963. }
  35964. },
  35965. ass: {
  35966. height: math.unit(6.1, "feet"),
  35967. name: "Ass",
  35968. image: {
  35969. source: "./media/characters/kremm/ass.svg"
  35970. }
  35971. },
  35972. jaws: {
  35973. height: math.unit(2.2, "feet"),
  35974. name: "Jaws",
  35975. image: {
  35976. source: "./media/characters/kremm/jaws.svg"
  35977. }
  35978. },
  35979. dick: {
  35980. height: math.unit(4.26, "feet"),
  35981. name: "Dick",
  35982. image: {
  35983. source: "./media/characters/kremm/dick.svg"
  35984. }
  35985. },
  35986. },
  35987. [
  35988. {
  35989. name: "Normal",
  35990. height: math.unit(10, "feet"),
  35991. default: true
  35992. },
  35993. ]
  35994. ))
  35995. characterMakers.push(() => makeCharacter(
  35996. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35997. {
  35998. front: {
  35999. height: math.unit(30, "stories"),
  36000. name: "Front",
  36001. image: {
  36002. source: "./media/characters/kai/front.svg",
  36003. extra: 1892/1718,
  36004. bottom: 162/2054
  36005. }
  36006. },
  36007. },
  36008. [
  36009. {
  36010. name: "Macro",
  36011. height: math.unit(30, "stories"),
  36012. default: true
  36013. },
  36014. ]
  36015. ))
  36016. characterMakers.push(() => makeCharacter(
  36017. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36018. {
  36019. front: {
  36020. height: math.unit(6 + 4/12, "feet"),
  36021. weight: math.unit(145, "lb"),
  36022. name: "Front",
  36023. image: {
  36024. source: "./media/characters/sykes/front.svg",
  36025. extra: 1321 / 1187,
  36026. bottom: 66 / 1387
  36027. }
  36028. },
  36029. back: {
  36030. height: math.unit(6 + 4/12, "feet"),
  36031. weight: math.unit(145, "lb"),
  36032. name: "Back",
  36033. image: {
  36034. source: "./media/characters/sykes/back.svg",
  36035. extra: 1326/1181,
  36036. bottom: 31/1357
  36037. }
  36038. },
  36039. traditionalOutfit: {
  36040. height: math.unit(6 + 4/12, "feet"),
  36041. weight: math.unit(145, "lb"),
  36042. name: "Traditional Outfit",
  36043. image: {
  36044. source: "./media/characters/sykes/traditional-outfit.svg",
  36045. extra: 1321 / 1187,
  36046. bottom: 66 / 1387
  36047. }
  36048. },
  36049. adventureOutfit: {
  36050. height: math.unit(6 + 4/12, "feet"),
  36051. weight: math.unit(145, "lb"),
  36052. name: "Adventure Outfit",
  36053. image: {
  36054. source: "./media/characters/sykes/adventure-outfit.svg",
  36055. extra: 1321 / 1187,
  36056. bottom: 66 / 1387
  36057. }
  36058. },
  36059. handLeft: {
  36060. height: math.unit(0.9, "feet"),
  36061. name: "Hand (Left)",
  36062. image: {
  36063. source: "./media/characters/sykes/hand-left.svg"
  36064. }
  36065. },
  36066. handRight: {
  36067. height: math.unit(0.839, "feet"),
  36068. name: "Hand (Right)",
  36069. image: {
  36070. source: "./media/characters/sykes/hand-right.svg"
  36071. }
  36072. },
  36073. leftFoot: {
  36074. height: math.unit(1.2, "feet"),
  36075. name: "Foot (Left)",
  36076. image: {
  36077. source: "./media/characters/sykes/foot-left.svg"
  36078. }
  36079. },
  36080. rightFoot: {
  36081. height: math.unit(1.2, "feet"),
  36082. name: "Foot (Right)",
  36083. image: {
  36084. source: "./media/characters/sykes/foot-right.svg"
  36085. }
  36086. },
  36087. maw: {
  36088. height: math.unit(1.93, "feet"),
  36089. name: "Maw",
  36090. image: {
  36091. source: "./media/characters/sykes/maw.svg"
  36092. }
  36093. },
  36094. teeth: {
  36095. height: math.unit(0.51, "feet"),
  36096. name: "Teeth",
  36097. image: {
  36098. source: "./media/characters/sykes/teeth.svg"
  36099. }
  36100. },
  36101. tongue: {
  36102. height: math.unit(2.13, "feet"),
  36103. name: "Tongue",
  36104. image: {
  36105. source: "./media/characters/sykes/tongue.svg"
  36106. }
  36107. },
  36108. uvula: {
  36109. height: math.unit(0.16, "feet"),
  36110. name: "Uvula",
  36111. image: {
  36112. source: "./media/characters/sykes/uvula.svg"
  36113. }
  36114. },
  36115. collar: {
  36116. height: math.unit(0.287, "feet"),
  36117. name: "Collar",
  36118. image: {
  36119. source: "./media/characters/sykes/collar.svg"
  36120. }
  36121. },
  36122. tail: {
  36123. height: math.unit(3.8, "feet"),
  36124. name: "Tail",
  36125. image: {
  36126. source: "./media/characters/sykes/tail.svg"
  36127. }
  36128. },
  36129. },
  36130. [
  36131. {
  36132. name: "Shrunken",
  36133. height: math.unit(5, "inches")
  36134. },
  36135. {
  36136. name: "Normal",
  36137. height: math.unit(6 + 4 / 12, "feet"),
  36138. default: true
  36139. },
  36140. {
  36141. name: "Big",
  36142. height: math.unit(15, "feet")
  36143. },
  36144. ]
  36145. ))
  36146. characterMakers.push(() => makeCharacter(
  36147. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36148. {
  36149. front: {
  36150. height: math.unit(5 + 8/12, "feet"),
  36151. weight: math.unit(190, "lb"),
  36152. name: "Front",
  36153. image: {
  36154. source: "./media/characters/oven-otter/front.svg",
  36155. extra: 1809/1740,
  36156. bottom: 181/1990
  36157. }
  36158. },
  36159. back: {
  36160. height: math.unit(5 + 8/12, "feet"),
  36161. weight: math.unit(190, "lb"),
  36162. name: "Back",
  36163. image: {
  36164. source: "./media/characters/oven-otter/back.svg",
  36165. extra: 1709/1635,
  36166. bottom: 118/1827
  36167. }
  36168. },
  36169. hand: {
  36170. height: math.unit(1.07, "feet"),
  36171. name: "Hand",
  36172. image: {
  36173. source: "./media/characters/oven-otter/hand.svg"
  36174. }
  36175. },
  36176. beans: {
  36177. height: math.unit(1.74, "feet"),
  36178. name: "Beans",
  36179. image: {
  36180. source: "./media/characters/oven-otter/beans.svg"
  36181. }
  36182. },
  36183. },
  36184. [
  36185. {
  36186. name: "Micro",
  36187. height: math.unit(0.5, "inches")
  36188. },
  36189. {
  36190. name: "Normal",
  36191. height: math.unit(5 + 8/12, "feet"),
  36192. default: true
  36193. },
  36194. {
  36195. name: "Macro",
  36196. height: math.unit(250, "feet")
  36197. },
  36198. {
  36199. name: "Really High",
  36200. height: math.unit(420, "feet")
  36201. },
  36202. ]
  36203. ))
  36204. characterMakers.push(() => makeCharacter(
  36205. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36206. {
  36207. front: {
  36208. height: math.unit(5, "meters"),
  36209. weight: math.unit(292000000000000, "kg"),
  36210. name: "Front",
  36211. image: {
  36212. source: "./media/characters/devourer/front.svg",
  36213. extra: 1800/1733,
  36214. bottom: 211/2011
  36215. }
  36216. },
  36217. maw: {
  36218. height: math.unit(1.1, "meter"),
  36219. name: "Maw",
  36220. image: {
  36221. source: "./media/characters/devourer/maw.svg"
  36222. }
  36223. },
  36224. },
  36225. [
  36226. {
  36227. name: "Small",
  36228. height: math.unit(3, "meters")
  36229. },
  36230. {
  36231. name: "Large",
  36232. height: math.unit(5, "meters"),
  36233. default: true
  36234. },
  36235. ]
  36236. ))
  36237. characterMakers.push(() => makeCharacter(
  36238. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36239. {
  36240. front: {
  36241. height: math.unit(6, "feet"),
  36242. weight: math.unit(400, "lb"),
  36243. name: "Front",
  36244. image: {
  36245. source: "./media/characters/ellarby/front.svg",
  36246. extra: 1909/1763,
  36247. bottom: 80/1989
  36248. }
  36249. },
  36250. back: {
  36251. height: math.unit(6, "feet"),
  36252. weight: math.unit(400, "lb"),
  36253. name: "Back",
  36254. image: {
  36255. source: "./media/characters/ellarby/back.svg",
  36256. extra: 1914/1784,
  36257. bottom: 172/2086
  36258. }
  36259. },
  36260. },
  36261. [
  36262. {
  36263. name: "Mischief",
  36264. height: math.unit(18, "inches")
  36265. },
  36266. {
  36267. name: "Trouble",
  36268. height: math.unit(12, "feet")
  36269. },
  36270. {
  36271. name: "Havoc",
  36272. height: math.unit(200, "feet"),
  36273. default: true
  36274. },
  36275. {
  36276. name: "Pandemonium",
  36277. height: math.unit(1, "mile")
  36278. },
  36279. {
  36280. name: "Catastrophe",
  36281. height: math.unit(100, "miles")
  36282. },
  36283. ]
  36284. ))
  36285. characterMakers.push(() => makeCharacter(
  36286. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36287. {
  36288. front: {
  36289. height: math.unit(4.7, "meters"),
  36290. weight: math.unit(6500, "kg"),
  36291. name: "Front",
  36292. image: {
  36293. source: "./media/characters/vex/front.svg",
  36294. extra: 1288/1140,
  36295. bottom: 100/1388
  36296. }
  36297. },
  36298. },
  36299. [
  36300. {
  36301. name: "Normal",
  36302. height: math.unit(4.7, "meters"),
  36303. default: true
  36304. },
  36305. ]
  36306. ))
  36307. characterMakers.push(() => makeCharacter(
  36308. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36309. {
  36310. normal: {
  36311. height: math.unit(6, "feet"),
  36312. weight: math.unit(350, "lb"),
  36313. name: "Normal",
  36314. image: {
  36315. source: "./media/characters/teshy/normal.svg",
  36316. extra: 1795/1735,
  36317. bottom: 16/1811
  36318. }
  36319. },
  36320. monsterFront: {
  36321. height: math.unit(12, "feet"),
  36322. weight: math.unit(4700, "lb"),
  36323. name: "Monster (Front)",
  36324. image: {
  36325. source: "./media/characters/teshy/monster-front.svg",
  36326. extra: 2042/2034,
  36327. bottom: 128/2170
  36328. }
  36329. },
  36330. monsterSide: {
  36331. height: math.unit(12, "feet"),
  36332. weight: math.unit(4700, "lb"),
  36333. name: "Monster (Side)",
  36334. image: {
  36335. source: "./media/characters/teshy/monster-side.svg",
  36336. extra: 2067/2056,
  36337. bottom: 70/2137
  36338. }
  36339. },
  36340. monsterBack: {
  36341. height: math.unit(12, "feet"),
  36342. weight: math.unit(4700, "lb"),
  36343. name: "Monster (Back)",
  36344. image: {
  36345. source: "./media/characters/teshy/monster-back.svg",
  36346. extra: 1921/1914,
  36347. bottom: 171/2092
  36348. }
  36349. },
  36350. },
  36351. [
  36352. {
  36353. name: "Normal",
  36354. height: math.unit(6, "feet"),
  36355. default: true
  36356. },
  36357. ]
  36358. ))
  36359. characterMakers.push(() => makeCharacter(
  36360. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36361. {
  36362. front: {
  36363. height: math.unit(6, "feet"),
  36364. name: "Front",
  36365. image: {
  36366. source: "./media/characters/ramey/front.svg",
  36367. extra: 790/787,
  36368. bottom: 27/817
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(6, "feet"),
  36376. default: true
  36377. },
  36378. ]
  36379. ))
  36380. characterMakers.push(() => makeCharacter(
  36381. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36382. {
  36383. front: {
  36384. height: math.unit(5 + 5/12, "feet"),
  36385. weight: math.unit(120, "lb"),
  36386. name: "Front",
  36387. image: {
  36388. source: "./media/characters/phirae/front.svg",
  36389. extra: 2491/2436,
  36390. bottom: 38/2529
  36391. }
  36392. },
  36393. },
  36394. [
  36395. {
  36396. name: "Normal",
  36397. height: math.unit(5 + 5/12, "feet"),
  36398. default: true
  36399. },
  36400. ]
  36401. ))
  36402. characterMakers.push(() => makeCharacter(
  36403. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36404. {
  36405. front: {
  36406. height: math.unit(5 + 3/12, "feet"),
  36407. name: "Front",
  36408. image: {
  36409. source: "./media/characters/stagglas/front.svg",
  36410. extra: 962/882,
  36411. bottom: 53/1015
  36412. }
  36413. },
  36414. feral: {
  36415. height: math.unit(335, "cm"),
  36416. name: "Feral",
  36417. image: {
  36418. source: "./media/characters/stagglas/feral.svg",
  36419. extra: 1732/1090,
  36420. bottom: 48/1780
  36421. }
  36422. },
  36423. },
  36424. [
  36425. {
  36426. name: "Normal",
  36427. height: math.unit(5 + 3/12, "feet"),
  36428. default: true
  36429. },
  36430. ]
  36431. ))
  36432. characterMakers.push(() => makeCharacter(
  36433. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36434. {
  36435. front: {
  36436. height: math.unit(5 + 4/12, "feet"),
  36437. weight: math.unit(145, "lb"),
  36438. name: "Front",
  36439. image: {
  36440. source: "./media/characters/starra/front.svg",
  36441. extra: 1790/1691,
  36442. bottom: 91/1881
  36443. }
  36444. },
  36445. },
  36446. [
  36447. {
  36448. name: "Normal",
  36449. height: math.unit(5 + 4/12, "feet"),
  36450. default: true
  36451. },
  36452. ]
  36453. ))
  36454. characterMakers.push(() => makeCharacter(
  36455. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36456. {
  36457. front: {
  36458. height: math.unit(2.2, "meters"),
  36459. name: "Front",
  36460. image: {
  36461. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36462. extra: 1248/972,
  36463. bottom: 38/1286
  36464. }
  36465. },
  36466. },
  36467. [
  36468. {
  36469. name: "Normal",
  36470. height: math.unit(2.2, "meters"),
  36471. default: true
  36472. },
  36473. ]
  36474. ))
  36475. characterMakers.push(() => makeCharacter(
  36476. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36477. {
  36478. side: {
  36479. height: math.unit(8 + 2/12, "feet"),
  36480. weight: math.unit(1240, "lb"),
  36481. name: "Side",
  36482. image: {
  36483. source: "./media/characters/mika-valentine/side.svg",
  36484. extra: 2670/2501,
  36485. bottom: 250/2920
  36486. }
  36487. },
  36488. },
  36489. [
  36490. {
  36491. name: "Normal",
  36492. height: math.unit(8 + 2/12, "feet"),
  36493. default: true
  36494. },
  36495. ]
  36496. ))
  36497. characterMakers.push(() => makeCharacter(
  36498. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36499. {
  36500. front: {
  36501. height: math.unit(7 + 2/12, "feet"),
  36502. name: "Front",
  36503. image: {
  36504. source: "./media/characters/xoltol/front.svg",
  36505. extra: 2212/2124,
  36506. bottom: 84/2296
  36507. }
  36508. },
  36509. side: {
  36510. height: math.unit(7 + 2/12, "feet"),
  36511. name: "Side",
  36512. image: {
  36513. source: "./media/characters/xoltol/side.svg",
  36514. extra: 2273/2197,
  36515. bottom: 26/2299
  36516. }
  36517. },
  36518. hand: {
  36519. height: math.unit(2.5, "feet"),
  36520. name: "Hand",
  36521. image: {
  36522. source: "./media/characters/xoltol/hand.svg"
  36523. }
  36524. },
  36525. },
  36526. [
  36527. {
  36528. name: "Small-ish",
  36529. height: math.unit(5 + 11/12, "feet")
  36530. },
  36531. {
  36532. name: "Normal",
  36533. height: math.unit(7 + 2/12, "feet")
  36534. },
  36535. {
  36536. name: "\"Macro\"",
  36537. height: math.unit(14 + 9/12, "feet"),
  36538. default: true
  36539. },
  36540. {
  36541. name: "Alternate Height",
  36542. height: math.unit(20, "feet")
  36543. },
  36544. {
  36545. name: "Actually Macro",
  36546. height: math.unit(100, "feet")
  36547. },
  36548. ]
  36549. ))
  36550. characterMakers.push(() => makeCharacter(
  36551. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36552. {
  36553. front: {
  36554. height: math.unit(5 + 2/12, "feet"),
  36555. name: "Front",
  36556. image: {
  36557. source: "./media/characters/kotetsu-redwood/front.svg",
  36558. extra: 1053/942,
  36559. bottom: 60/1113
  36560. }
  36561. },
  36562. },
  36563. [
  36564. {
  36565. name: "Normal",
  36566. height: math.unit(5 + 2/12, "feet"),
  36567. default: true
  36568. },
  36569. ]
  36570. ))
  36571. characterMakers.push(() => makeCharacter(
  36572. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36573. {
  36574. front: {
  36575. height: math.unit(2.4, "meters"),
  36576. weight: math.unit(125, "kg"),
  36577. name: "Front",
  36578. image: {
  36579. source: "./media/characters/lilith/front.svg",
  36580. extra: 1590/1513,
  36581. bottom: 203/1793
  36582. }
  36583. },
  36584. },
  36585. [
  36586. {
  36587. name: "Humanoid",
  36588. height: math.unit(2.4, "meters")
  36589. },
  36590. {
  36591. name: "Normal",
  36592. height: math.unit(6, "meters"),
  36593. default: true
  36594. },
  36595. {
  36596. name: "Largest",
  36597. height: math.unit(55, "meters")
  36598. },
  36599. ]
  36600. ))
  36601. characterMakers.push(() => makeCharacter(
  36602. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36603. {
  36604. front: {
  36605. height: math.unit(8 + 4/12, "feet"),
  36606. weight: math.unit(535, "lb"),
  36607. name: "Front",
  36608. image: {
  36609. source: "./media/characters/beh'kah-bolger/front.svg",
  36610. extra: 1660/1603,
  36611. bottom: 37/1697
  36612. }
  36613. },
  36614. },
  36615. [
  36616. {
  36617. name: "Normal",
  36618. height: math.unit(8 + 4/12, "feet"),
  36619. default: true
  36620. },
  36621. {
  36622. name: "Kaiju",
  36623. height: math.unit(250, "feet")
  36624. },
  36625. {
  36626. name: "Still Growing",
  36627. height: math.unit(10, "miles")
  36628. },
  36629. {
  36630. name: "Continental",
  36631. height: math.unit(5000, "miles")
  36632. },
  36633. {
  36634. name: "Final Form",
  36635. height: math.unit(2500000, "miles")
  36636. },
  36637. ]
  36638. ))
  36639. characterMakers.push(() => makeCharacter(
  36640. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36641. {
  36642. front: {
  36643. height: math.unit(7 + 2/12, "feet"),
  36644. weight: math.unit(230, "kg"),
  36645. name: "Front",
  36646. image: {
  36647. source: "./media/characters/tatyana-milewska/front.svg",
  36648. extra: 1199/1150,
  36649. bottom: 86/1285
  36650. }
  36651. },
  36652. },
  36653. [
  36654. {
  36655. name: "Normal",
  36656. height: math.unit(7 + 2/12, "feet"),
  36657. default: true
  36658. },
  36659. {
  36660. name: "Big",
  36661. height: math.unit(12, "feet")
  36662. },
  36663. {
  36664. name: "Minimacro",
  36665. height: math.unit(20, "feet")
  36666. },
  36667. {
  36668. name: "Macro",
  36669. height: math.unit(120, "feet")
  36670. },
  36671. ]
  36672. ))
  36673. characterMakers.push(() => makeCharacter(
  36674. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36675. {
  36676. front: {
  36677. height: math.unit(7 + 8/12, "feet"),
  36678. weight: math.unit(152, "kg"),
  36679. name: "Front",
  36680. image: {
  36681. source: "./media/characters/helen-arri/front.svg",
  36682. extra: 440/423,
  36683. bottom: 14/454
  36684. }
  36685. },
  36686. back: {
  36687. height: math.unit(7 + 8/12, "feet"),
  36688. weight: math.unit(152, "kg"),
  36689. name: "Back",
  36690. image: {
  36691. source: "./media/characters/helen-arri/back.svg",
  36692. extra: 443/426,
  36693. bottom: 8/451
  36694. }
  36695. },
  36696. },
  36697. [
  36698. {
  36699. name: "Normal",
  36700. height: math.unit(7 + 8/12, "feet"),
  36701. default: true
  36702. },
  36703. {
  36704. name: "Big",
  36705. height: math.unit(14, "feet")
  36706. },
  36707. {
  36708. name: "Minimacro",
  36709. height: math.unit(24, "feet")
  36710. },
  36711. {
  36712. name: "Macro",
  36713. height: math.unit(140, "feet")
  36714. },
  36715. ]
  36716. ))
  36717. characterMakers.push(() => makeCharacter(
  36718. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36719. {
  36720. front: {
  36721. height: math.unit(6, "meters"),
  36722. name: "Front",
  36723. image: {
  36724. source: "./media/characters/ehanu-rehu/front.svg",
  36725. extra: 1800/1800,
  36726. bottom: 59/1859
  36727. }
  36728. },
  36729. },
  36730. [
  36731. {
  36732. name: "Normal",
  36733. height: math.unit(6, "meters"),
  36734. default: true
  36735. },
  36736. ]
  36737. ))
  36738. characterMakers.push(() => makeCharacter(
  36739. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36740. {
  36741. front: {
  36742. height: math.unit(7 + 3/12, "feet"),
  36743. name: "Front",
  36744. image: {
  36745. source: "./media/characters/renholder/front.svg",
  36746. extra: 3096/2960,
  36747. bottom: 250/3346
  36748. }
  36749. },
  36750. },
  36751. [
  36752. {
  36753. name: "Normal Bat",
  36754. height: math.unit(7 + 3/12, "feet"),
  36755. default: true
  36756. },
  36757. {
  36758. name: "Slightly Tall Bat",
  36759. height: math.unit(100, "feet")
  36760. },
  36761. {
  36762. name: "Big Bat",
  36763. height: math.unit(1000, "feet")
  36764. },
  36765. {
  36766. name: "City-Sized Bat",
  36767. height: math.unit(200000, "feet")
  36768. },
  36769. {
  36770. name: "Bigger Bat",
  36771. height: math.unit(10000, "miles")
  36772. },
  36773. {
  36774. name: "Solar Sized Bat",
  36775. height: math.unit(100, "AU")
  36776. },
  36777. {
  36778. name: "Galactic Bat",
  36779. height: math.unit(200000, "lightyears")
  36780. },
  36781. {
  36782. name: "Universally Known Bat",
  36783. height: math.unit(1, "universe")
  36784. },
  36785. ]
  36786. ))
  36787. characterMakers.push(() => makeCharacter(
  36788. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36789. {
  36790. front: {
  36791. height: math.unit(6 + 11/12, "feet"),
  36792. weight: math.unit(250, "lb"),
  36793. name: "Front",
  36794. image: {
  36795. source: "./media/characters/cookiecat/front.svg",
  36796. extra: 893/827,
  36797. bottom: 14/907
  36798. }
  36799. },
  36800. },
  36801. [
  36802. {
  36803. name: "Micro",
  36804. height: math.unit(3, "inches")
  36805. },
  36806. {
  36807. name: "Normal",
  36808. height: math.unit(6 + 11/12, "feet"),
  36809. default: true
  36810. },
  36811. {
  36812. name: "Macro",
  36813. height: math.unit(100, "feet")
  36814. },
  36815. {
  36816. name: "Macro+",
  36817. height: math.unit(404, "feet")
  36818. },
  36819. {
  36820. name: "Megamacro",
  36821. height: math.unit(165, "miles")
  36822. },
  36823. {
  36824. name: "Planetary",
  36825. height: math.unit(4600, "miles")
  36826. },
  36827. ]
  36828. ))
  36829. characterMakers.push(() => makeCharacter(
  36830. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36831. {
  36832. front: {
  36833. height: math.unit(10 + 3/12, "feet"),
  36834. weight: math.unit(1500, "lb"),
  36835. name: "Front",
  36836. image: {
  36837. source: "./media/characters/tux-kusanagi/front.svg",
  36838. extra: 944/840,
  36839. bottom: 39/983
  36840. }
  36841. },
  36842. back: {
  36843. height: math.unit(10 + 3/12, "feet"),
  36844. weight: math.unit(1500, "lb"),
  36845. name: "Back",
  36846. image: {
  36847. source: "./media/characters/tux-kusanagi/back.svg",
  36848. extra: 941/842,
  36849. bottom: 28/969
  36850. }
  36851. },
  36852. rump: {
  36853. height: math.unit(5.25, "feet"),
  36854. name: "Rump",
  36855. image: {
  36856. source: "./media/characters/tux-kusanagi/rump.svg"
  36857. }
  36858. },
  36859. beak: {
  36860. height: math.unit(1.54, "feet"),
  36861. name: "Beak",
  36862. image: {
  36863. source: "./media/characters/tux-kusanagi/beak.svg"
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Normal",
  36870. height: math.unit(10 + 3/12, "feet"),
  36871. default: true
  36872. },
  36873. ]
  36874. ))
  36875. characterMakers.push(() => makeCharacter(
  36876. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36877. {
  36878. front: {
  36879. height: math.unit(58, "feet"),
  36880. weight: math.unit(200, "tons"),
  36881. name: "Front",
  36882. image: {
  36883. source: "./media/characters/uzarmazari/front.svg",
  36884. extra: 1575/1455,
  36885. bottom: 152/1727
  36886. }
  36887. },
  36888. back: {
  36889. height: math.unit(58, "feet"),
  36890. weight: math.unit(200, "tons"),
  36891. name: "Back",
  36892. image: {
  36893. source: "./media/characters/uzarmazari/back.svg",
  36894. extra: 1585/1510,
  36895. bottom: 157/1742
  36896. }
  36897. },
  36898. head: {
  36899. height: math.unit(26, "feet"),
  36900. name: "Head",
  36901. image: {
  36902. source: "./media/characters/uzarmazari/head.svg"
  36903. }
  36904. },
  36905. },
  36906. [
  36907. {
  36908. name: "Normal",
  36909. height: math.unit(58, "feet"),
  36910. default: true
  36911. },
  36912. ]
  36913. ))
  36914. characterMakers.push(() => makeCharacter(
  36915. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36916. {
  36917. side: {
  36918. height: math.unit(15, "feet"),
  36919. name: "Side",
  36920. image: {
  36921. source: "./media/characters/akitu/side.svg",
  36922. extra: 1421/1321,
  36923. bottom: 157/1578
  36924. }
  36925. },
  36926. front: {
  36927. height: math.unit(15, "feet"),
  36928. name: "Front",
  36929. image: {
  36930. source: "./media/characters/akitu/front.svg",
  36931. extra: 1435/1326,
  36932. bottom: 232/1667
  36933. }
  36934. },
  36935. },
  36936. [
  36937. {
  36938. name: "Normal",
  36939. height: math.unit(15, "feet"),
  36940. default: true
  36941. },
  36942. ]
  36943. ))
  36944. characterMakers.push(() => makeCharacter(
  36945. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36946. {
  36947. front: {
  36948. height: math.unit(10 + 8/12, "feet"),
  36949. name: "Front",
  36950. image: {
  36951. source: "./media/characters/azalie-croixland/front.svg",
  36952. extra: 1972/1856,
  36953. bottom: 31/2003
  36954. }
  36955. },
  36956. },
  36957. [
  36958. {
  36959. name: "Original Height",
  36960. height: math.unit(5 + 4/12, "feet")
  36961. },
  36962. {
  36963. name: "Normal Height",
  36964. height: math.unit(10 + 8/12, "feet"),
  36965. default: true
  36966. },
  36967. ]
  36968. ))
  36969. characterMakers.push(() => makeCharacter(
  36970. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36971. {
  36972. side: {
  36973. height: math.unit(7 + 1/12, "feet"),
  36974. weight: math.unit(245, "lb"),
  36975. name: "Side",
  36976. image: {
  36977. source: "./media/characters/kavus-kazian/side.svg",
  36978. extra: 349/342,
  36979. bottom: 15/364
  36980. }
  36981. },
  36982. },
  36983. [
  36984. {
  36985. name: "Normal",
  36986. height: math.unit(7 + 1/12, "feet"),
  36987. default: true
  36988. },
  36989. ]
  36990. ))
  36991. characterMakers.push(() => makeCharacter(
  36992. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36993. {
  36994. normalFront: {
  36995. height: math.unit(5 + 11/12, "feet"),
  36996. name: "Front",
  36997. image: {
  36998. source: "./media/characters/moonlight-rose/normal-front.svg",
  36999. extra: 1980/1825,
  37000. bottom: 18/1998
  37001. },
  37002. form: "normal",
  37003. default: true
  37004. },
  37005. normalBack: {
  37006. height: math.unit(5 + 11/12, "feet"),
  37007. name: "Back",
  37008. image: {
  37009. source: "./media/characters/moonlight-rose/normal-back.svg",
  37010. extra: 2010/1839,
  37011. bottom: 10/2020
  37012. },
  37013. form: "normal"
  37014. },
  37015. demonFront: {
  37016. height: math.unit(1.5, "earths"),
  37017. name: "Front",
  37018. image: {
  37019. source: "./media/characters/moonlight-rose/demon.svg",
  37020. extra: 1400/1294,
  37021. bottom: 45/1445
  37022. },
  37023. form: "demon",
  37024. default: true
  37025. },
  37026. terraFront: {
  37027. height: math.unit(1.5, "earths"),
  37028. name: "Front",
  37029. image: {
  37030. source: "./media/characters/moonlight-rose/terra.svg"
  37031. },
  37032. form: "terra",
  37033. default: true
  37034. },
  37035. jupiterFront: {
  37036. height: math.unit(69911*2, "km"),
  37037. name: "Front",
  37038. image: {
  37039. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37040. extra: 1367/1286,
  37041. bottom: 55/1422
  37042. },
  37043. form: "jupiter",
  37044. default: true
  37045. },
  37046. neptuneFront: {
  37047. height: math.unit(24622*2, "feet"),
  37048. name: "Front",
  37049. image: {
  37050. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37051. extra: 1851/1712,
  37052. bottom: 0/1851
  37053. },
  37054. form: "neptune",
  37055. default: true
  37056. },
  37057. },
  37058. [
  37059. {
  37060. name: "\"Natural\" Height",
  37061. height: math.unit(5 + 11/12, "feet"),
  37062. form: "normal"
  37063. },
  37064. {
  37065. name: "Smallest comfortable size",
  37066. height: math.unit(40, "meters"),
  37067. form: "normal"
  37068. },
  37069. {
  37070. name: "Common size",
  37071. height: math.unit(50, "km"),
  37072. form: "normal",
  37073. default: true
  37074. },
  37075. {
  37076. name: "Normal",
  37077. height: math.unit(1.5, "earths"),
  37078. form: "demon",
  37079. default: true
  37080. },
  37081. {
  37082. name: "Universal",
  37083. height: math.unit(15, "universes"),
  37084. form: "demon"
  37085. },
  37086. {
  37087. name: "Earth",
  37088. height: math.unit(1.5, "earths"),
  37089. form: "terra",
  37090. default: true
  37091. },
  37092. {
  37093. name: "Super Earth",
  37094. height: math.unit(67.5, "earths"),
  37095. form: "terra"
  37096. },
  37097. {
  37098. name: "Doesn't fit in a solar system...",
  37099. height: math.unit(1, "galaxy"),
  37100. form: "terra"
  37101. },
  37102. {
  37103. name: "Saturn",
  37104. height: math.unit(58232*2, "km"),
  37105. form: "jupiter"
  37106. },
  37107. {
  37108. name: "Jupiter",
  37109. height: math.unit(69911*2, "km"),
  37110. form: "jupiter",
  37111. default: true
  37112. },
  37113. {
  37114. name: "HD 100546 b",
  37115. height: math.unit(482938, "km"),
  37116. form: "jupiter"
  37117. },
  37118. {
  37119. name: "Enceladus",
  37120. height: math.unit(513*2, "km"),
  37121. form: "neptune"
  37122. },
  37123. {
  37124. name: "Europe",
  37125. height: math.unit(1560*2, "km"),
  37126. form: "neptune"
  37127. },
  37128. {
  37129. name: "Neptune",
  37130. height: math.unit(24622*2, "km"),
  37131. form: "neptune",
  37132. default: true
  37133. },
  37134. {
  37135. name: "CoRoT-9b",
  37136. height: math.unit(75067*2, "km"),
  37137. form: "neptune"
  37138. },
  37139. ],
  37140. {
  37141. "normal": {
  37142. name: "Normal",
  37143. default: true
  37144. },
  37145. "demon": {
  37146. name: "Demon"
  37147. },
  37148. "terra": {
  37149. name: "Terra"
  37150. },
  37151. "jupiter": {
  37152. name: "Jupiter"
  37153. },
  37154. "neptune": {
  37155. name: "Neptune"
  37156. }
  37157. }
  37158. ))
  37159. characterMakers.push(() => makeCharacter(
  37160. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37161. {
  37162. front: {
  37163. height: math.unit(16, "feet"),
  37164. weight: math.unit(610, "kg"),
  37165. name: "Front",
  37166. image: {
  37167. source: "./media/characters/huckle/front.svg",
  37168. extra: 1731/1625,
  37169. bottom: 33/1764
  37170. }
  37171. },
  37172. back: {
  37173. height: math.unit(16, "feet"),
  37174. weight: math.unit(610, "kg"),
  37175. name: "Back",
  37176. image: {
  37177. source: "./media/characters/huckle/back.svg",
  37178. extra: 1738/1651,
  37179. bottom: 37/1775
  37180. }
  37181. },
  37182. laughing: {
  37183. height: math.unit(3.75, "feet"),
  37184. name: "Laughing",
  37185. image: {
  37186. source: "./media/characters/huckle/laughing.svg"
  37187. }
  37188. },
  37189. angry: {
  37190. height: math.unit(4.15, "feet"),
  37191. name: "Angry",
  37192. image: {
  37193. source: "./media/characters/huckle/angry.svg"
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(16, "feet"),
  37201. default: true
  37202. },
  37203. {
  37204. name: "Mini Macro",
  37205. height: math.unit(463, "feet")
  37206. },
  37207. {
  37208. name: "Macro",
  37209. height: math.unit(1680, "meters")
  37210. },
  37211. {
  37212. name: "Mega Macro",
  37213. height: math.unit(175, "km")
  37214. },
  37215. {
  37216. name: "Terra Macro",
  37217. height: math.unit(32, "gigameters")
  37218. },
  37219. {
  37220. name: "Multiverse+",
  37221. height: math.unit(2.56e23, "yottameters")
  37222. },
  37223. ]
  37224. ))
  37225. characterMakers.push(() => makeCharacter(
  37226. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37227. {
  37228. front: {
  37229. height: math.unit(6 + 9/12, "feet"),
  37230. weight: math.unit(280, "lb"),
  37231. name: "Front",
  37232. image: {
  37233. source: "./media/characters/candy/front.svg",
  37234. extra: 234/217,
  37235. bottom: 11/245
  37236. }
  37237. },
  37238. },
  37239. [
  37240. {
  37241. name: "Really Small",
  37242. height: math.unit(0.1, "nm")
  37243. },
  37244. {
  37245. name: "Micro",
  37246. height: math.unit(2, "inches")
  37247. },
  37248. {
  37249. name: "Normal",
  37250. height: math.unit(6 + 9/12, "feet"),
  37251. default: true
  37252. },
  37253. {
  37254. name: "Small Macro",
  37255. height: math.unit(69, "feet")
  37256. },
  37257. {
  37258. name: "Macro",
  37259. height: math.unit(160, "feet")
  37260. },
  37261. {
  37262. name: "Megamacro",
  37263. height: math.unit(22000, "miles")
  37264. },
  37265. {
  37266. name: "Gigamacro",
  37267. height: math.unit(50000, "miles")
  37268. },
  37269. ]
  37270. ))
  37271. characterMakers.push(() => makeCharacter(
  37272. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37273. {
  37274. front: {
  37275. height: math.unit(4, "feet"),
  37276. weight: math.unit(90, "lb"),
  37277. name: "Front",
  37278. image: {
  37279. source: "./media/characters/joey-mcdonald/front.svg",
  37280. extra: 1059/852,
  37281. bottom: 33/1092
  37282. }
  37283. },
  37284. back: {
  37285. height: math.unit(4, "feet"),
  37286. weight: math.unit(90, "lb"),
  37287. name: "Back",
  37288. image: {
  37289. source: "./media/characters/joey-mcdonald/back.svg",
  37290. extra: 1077/879,
  37291. bottom: 5/1082
  37292. }
  37293. },
  37294. frontKobold: {
  37295. height: math.unit(4, "feet"),
  37296. weight: math.unit(100, "lb"),
  37297. name: "Front-kobold",
  37298. image: {
  37299. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37300. extra: 1480/1367,
  37301. bottom: 0/1480
  37302. }
  37303. },
  37304. backKobold: {
  37305. height: math.unit(4, "feet"),
  37306. weight: math.unit(100, "lb"),
  37307. name: "Back-kobold",
  37308. image: {
  37309. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37310. extra: 1449/1361,
  37311. bottom: 0/1449
  37312. }
  37313. },
  37314. },
  37315. [
  37316. {
  37317. name: "Normal",
  37318. height: math.unit(4, "feet"),
  37319. default: true
  37320. },
  37321. ]
  37322. ))
  37323. characterMakers.push(() => makeCharacter(
  37324. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37325. {
  37326. front: {
  37327. height: math.unit(12 + 6/12, "feet"),
  37328. name: "Front",
  37329. image: {
  37330. source: "./media/characters/kass-lockheed/front.svg",
  37331. extra: 354/343,
  37332. bottom: 9/363
  37333. }
  37334. },
  37335. back: {
  37336. height: math.unit(12 + 6/12, "feet"),
  37337. name: "Back",
  37338. image: {
  37339. source: "./media/characters/kass-lockheed/back.svg",
  37340. extra: 364/352,
  37341. bottom: 3/367
  37342. }
  37343. },
  37344. dick: {
  37345. height: math.unit(3.12, "feet"),
  37346. name: "Dick",
  37347. image: {
  37348. source: "./media/characters/kass-lockheed/dick.svg"
  37349. }
  37350. },
  37351. head: {
  37352. height: math.unit(2.6, "feet"),
  37353. name: "Head",
  37354. image: {
  37355. source: "./media/characters/kass-lockheed/head.svg"
  37356. }
  37357. },
  37358. bleh: {
  37359. height: math.unit(2.85, "feet"),
  37360. name: "Bleh",
  37361. image: {
  37362. source: "./media/characters/kass-lockheed/bleh.svg"
  37363. }
  37364. },
  37365. smug: {
  37366. height: math.unit(2.85, "feet"),
  37367. name: "Smug",
  37368. image: {
  37369. source: "./media/characters/kass-lockheed/smug.svg"
  37370. }
  37371. },
  37372. },
  37373. [
  37374. {
  37375. name: "Normal",
  37376. height: math.unit(12 + 6/12, "feet"),
  37377. default: true
  37378. },
  37379. ]
  37380. ))
  37381. characterMakers.push(() => makeCharacter(
  37382. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37383. {
  37384. front: {
  37385. height: math.unit(6 + 2/12, "feet"),
  37386. name: "Front",
  37387. image: {
  37388. source: "./media/characters/taylor/front.svg",
  37389. extra: 639/495,
  37390. bottom: 12/651
  37391. }
  37392. },
  37393. },
  37394. [
  37395. {
  37396. name: "Normal",
  37397. height: math.unit(6 + 2/12, "feet"),
  37398. default: true
  37399. },
  37400. {
  37401. name: "Big",
  37402. height: math.unit(15, "feet")
  37403. },
  37404. {
  37405. name: "Lorg",
  37406. height: math.unit(80, "feet")
  37407. },
  37408. {
  37409. name: "Too Lorg",
  37410. height: math.unit(120, "feet")
  37411. },
  37412. ]
  37413. ))
  37414. characterMakers.push(() => makeCharacter(
  37415. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37416. {
  37417. front: {
  37418. height: math.unit(15, "feet"),
  37419. name: "Front",
  37420. image: {
  37421. source: "./media/characters/kaizer/front.svg",
  37422. extra: 1612/1436,
  37423. bottom: 43/1655
  37424. }
  37425. },
  37426. },
  37427. [
  37428. {
  37429. name: "Normal",
  37430. height: math.unit(15, "feet"),
  37431. default: true
  37432. },
  37433. ]
  37434. ))
  37435. characterMakers.push(() => makeCharacter(
  37436. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37437. {
  37438. front: {
  37439. height: math.unit(2, "feet"),
  37440. weight: math.unit(30, "lb"),
  37441. name: "Front",
  37442. image: {
  37443. source: "./media/characters/sandy/front.svg",
  37444. extra: 1439/1307,
  37445. bottom: 194/1633
  37446. }
  37447. },
  37448. },
  37449. [
  37450. {
  37451. name: "Normal",
  37452. height: math.unit(2, "feet"),
  37453. default: true
  37454. },
  37455. ]
  37456. ))
  37457. characterMakers.push(() => makeCharacter(
  37458. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37459. {
  37460. front: {
  37461. height: math.unit(3, "feet"),
  37462. name: "Front",
  37463. image: {
  37464. source: "./media/characters/mellvi/front.svg",
  37465. extra: 1831/1630,
  37466. bottom: 58/1889
  37467. }
  37468. },
  37469. },
  37470. [
  37471. {
  37472. name: "Normal",
  37473. height: math.unit(3, "feet"),
  37474. default: true
  37475. },
  37476. ]
  37477. ))
  37478. characterMakers.push(() => makeCharacter(
  37479. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37480. {
  37481. front: {
  37482. height: math.unit(5 + 11/12, "feet"),
  37483. weight: math.unit(200, "lb"),
  37484. name: "Front",
  37485. image: {
  37486. source: "./media/characters/shirou/front.svg",
  37487. extra: 2491/2383,
  37488. bottom: 189/2680
  37489. }
  37490. },
  37491. back: {
  37492. height: math.unit(5 + 11/12, "feet"),
  37493. weight: math.unit(200, "lb"),
  37494. name: "Back",
  37495. image: {
  37496. source: "./media/characters/shirou/back.svg",
  37497. extra: 2554/2450,
  37498. bottom: 76/2630
  37499. }
  37500. },
  37501. },
  37502. [
  37503. {
  37504. name: "Normal",
  37505. height: math.unit(5 + 11/12, "feet"),
  37506. default: true
  37507. },
  37508. ]
  37509. ))
  37510. characterMakers.push(() => makeCharacter(
  37511. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37512. {
  37513. front: {
  37514. height: math.unit(6 + 3/12, "feet"),
  37515. weight: math.unit(177, "lb"),
  37516. name: "Front",
  37517. image: {
  37518. source: "./media/characters/noryu/front.svg",
  37519. extra: 973/885,
  37520. bottom: 10/983
  37521. }
  37522. },
  37523. },
  37524. [
  37525. {
  37526. name: "Normal",
  37527. height: math.unit(6 + 3/12, "feet"),
  37528. default: true
  37529. },
  37530. ]
  37531. ))
  37532. characterMakers.push(() => makeCharacter(
  37533. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37534. {
  37535. front: {
  37536. height: math.unit(5 + 6/12, "feet"),
  37537. weight: math.unit(170, "lb"),
  37538. name: "Front",
  37539. image: {
  37540. source: "./media/characters/mevolas-rubenido/front.svg",
  37541. extra: 2109/1901,
  37542. bottom: 96/2205
  37543. }
  37544. },
  37545. },
  37546. [
  37547. {
  37548. name: "Normal",
  37549. height: math.unit(5 + 6/12, "feet"),
  37550. default: true
  37551. },
  37552. ]
  37553. ))
  37554. characterMakers.push(() => makeCharacter(
  37555. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37556. {
  37557. front: {
  37558. height: math.unit(100, "feet"),
  37559. name: "Front",
  37560. image: {
  37561. source: "./media/characters/dee/front.svg",
  37562. extra: 2153/2036,
  37563. bottom: 59/2212
  37564. }
  37565. },
  37566. back: {
  37567. height: math.unit(100, "feet"),
  37568. name: "Back",
  37569. image: {
  37570. source: "./media/characters/dee/back.svg",
  37571. extra: 2183/2058,
  37572. bottom: 75/2258
  37573. }
  37574. },
  37575. foot: {
  37576. height: math.unit(19.43, "feet"),
  37577. name: "Foot",
  37578. image: {
  37579. source: "./media/characters/dee/foot.svg"
  37580. }
  37581. },
  37582. hoof: {
  37583. height: math.unit(20.6, "feet"),
  37584. name: "Hoof",
  37585. image: {
  37586. source: "./media/characters/dee/hoof.svg"
  37587. }
  37588. },
  37589. },
  37590. [
  37591. {
  37592. name: "Macro",
  37593. height: math.unit(100, "feet"),
  37594. default: true
  37595. },
  37596. ]
  37597. ))
  37598. characterMakers.push(() => makeCharacter(
  37599. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37600. {
  37601. front: {
  37602. height: math.unit(5 + 6/12, "feet"),
  37603. name: "Front",
  37604. image: {
  37605. source: "./media/characters/teh/front.svg",
  37606. extra: 1002/847,
  37607. bottom: 62/1064
  37608. }
  37609. },
  37610. },
  37611. [
  37612. {
  37613. name: "Normal",
  37614. height: math.unit(5 + 6/12, "feet"),
  37615. default: true
  37616. },
  37617. ]
  37618. ))
  37619. characterMakers.push(() => makeCharacter(
  37620. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37621. {
  37622. side: {
  37623. height: math.unit(6 + 1/12, "feet"),
  37624. weight: math.unit(204, "lb"),
  37625. name: "Side",
  37626. image: {
  37627. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37628. extra: 974/775,
  37629. bottom: 169/1143
  37630. }
  37631. },
  37632. sitting: {
  37633. height: math.unit(6 + 2/12, "feet"),
  37634. weight: math.unit(204, "lb"),
  37635. name: "Sitting",
  37636. image: {
  37637. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37638. extra: 1175/964,
  37639. bottom: 378/1553
  37640. }
  37641. },
  37642. },
  37643. [
  37644. {
  37645. name: "Normal",
  37646. height: math.unit(6 + 1/12, "feet"),
  37647. default: true
  37648. },
  37649. ]
  37650. ))
  37651. characterMakers.push(() => makeCharacter(
  37652. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37653. {
  37654. front: {
  37655. height: math.unit(6, "inches"),
  37656. name: "Front",
  37657. image: {
  37658. source: "./media/characters/tululi/front.svg",
  37659. extra: 1997/1876,
  37660. bottom: 20/2017
  37661. }
  37662. },
  37663. },
  37664. [
  37665. {
  37666. name: "Normal",
  37667. height: math.unit(6, "inches"),
  37668. default: true
  37669. },
  37670. ]
  37671. ))
  37672. characterMakers.push(() => makeCharacter(
  37673. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37674. {
  37675. front: {
  37676. height: math.unit(4 + 1/12, "feet"),
  37677. name: "Front",
  37678. image: {
  37679. source: "./media/characters/star/front.svg",
  37680. extra: 1493/1189,
  37681. bottom: 48/1541
  37682. }
  37683. },
  37684. },
  37685. [
  37686. {
  37687. name: "Normal",
  37688. height: math.unit(4 + 1/12, "feet"),
  37689. default: true
  37690. },
  37691. ]
  37692. ))
  37693. characterMakers.push(() => makeCharacter(
  37694. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37695. {
  37696. front: {
  37697. height: math.unit(6 + 3/12, "feet"),
  37698. name: "Front",
  37699. image: {
  37700. source: "./media/characters/comet/front.svg",
  37701. extra: 1681/1462,
  37702. bottom: 26/1707
  37703. }
  37704. },
  37705. },
  37706. [
  37707. {
  37708. name: "Normal",
  37709. height: math.unit(6 + 3/12, "feet"),
  37710. default: true
  37711. },
  37712. ]
  37713. ))
  37714. characterMakers.push(() => makeCharacter(
  37715. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37716. {
  37717. front: {
  37718. height: math.unit(950, "feet"),
  37719. name: "Front",
  37720. image: {
  37721. source: "./media/characters/vortex/front.svg",
  37722. extra: 1497/1434,
  37723. bottom: 56/1553
  37724. }
  37725. },
  37726. maw: {
  37727. height: math.unit(285, "feet"),
  37728. name: "Maw",
  37729. image: {
  37730. source: "./media/characters/vortex/maw.svg"
  37731. }
  37732. },
  37733. },
  37734. [
  37735. {
  37736. name: "Macro",
  37737. height: math.unit(950, "feet"),
  37738. default: true
  37739. },
  37740. ]
  37741. ))
  37742. characterMakers.push(() => makeCharacter(
  37743. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37744. {
  37745. front: {
  37746. height: math.unit(600, "feet"),
  37747. weight: math.unit(0.02, "grams"),
  37748. name: "Front",
  37749. image: {
  37750. source: "./media/characters/doodle/front.svg",
  37751. extra: 1578/1413,
  37752. bottom: 37/1615
  37753. }
  37754. },
  37755. },
  37756. [
  37757. {
  37758. name: "Macro",
  37759. height: math.unit(600, "feet"),
  37760. default: true
  37761. },
  37762. ]
  37763. ))
  37764. characterMakers.push(() => makeCharacter(
  37765. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37766. {
  37767. front: {
  37768. height: math.unit(6 + 6/12, "feet"),
  37769. name: "Front",
  37770. image: {
  37771. source: "./media/characters/jai/front.svg",
  37772. extra: 1645/1534,
  37773. bottom: 115/1760
  37774. }
  37775. },
  37776. },
  37777. [
  37778. {
  37779. name: "Normal",
  37780. height: math.unit(6 + 6/12, "feet"),
  37781. default: true
  37782. },
  37783. ]
  37784. ))
  37785. characterMakers.push(() => makeCharacter(
  37786. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37787. {
  37788. front: {
  37789. height: math.unit(6 + 8/12, "feet"),
  37790. name: "Front",
  37791. image: {
  37792. source: "./media/characters/pixel/front.svg",
  37793. extra: 1900/1735,
  37794. bottom: 63/1963
  37795. }
  37796. },
  37797. },
  37798. [
  37799. {
  37800. name: "Normal",
  37801. height: math.unit(6 + 8/12, "feet"),
  37802. default: true
  37803. },
  37804. ]
  37805. ))
  37806. characterMakers.push(() => makeCharacter(
  37807. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37808. {
  37809. back: {
  37810. height: math.unit(4 + 1/12, "feet"),
  37811. weight: math.unit(75, "lb"),
  37812. name: "Back",
  37813. image: {
  37814. source: "./media/characters/rhett/back.svg",
  37815. extra: 930/878,
  37816. bottom: 25/955
  37817. }
  37818. },
  37819. front: {
  37820. height: math.unit(4 + 1/12, "feet"),
  37821. weight: math.unit(75, "lb"),
  37822. name: "Front",
  37823. image: {
  37824. source: "./media/characters/rhett/front.svg",
  37825. extra: 1682/1586,
  37826. bottom: 92/1774
  37827. }
  37828. },
  37829. },
  37830. [
  37831. {
  37832. name: "Micro",
  37833. height: math.unit(8, "inches")
  37834. },
  37835. {
  37836. name: "Tiny",
  37837. height: math.unit(2, "feet")
  37838. },
  37839. {
  37840. name: "Normal",
  37841. height: math.unit(4 + 1/12, "feet"),
  37842. default: true
  37843. },
  37844. ]
  37845. ))
  37846. characterMakers.push(() => makeCharacter(
  37847. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37848. {
  37849. front: {
  37850. height: math.unit(3 + 3/12, "feet"),
  37851. name: "Front",
  37852. image: {
  37853. source: "./media/characters/penny/front.svg",
  37854. extra: 1406/1311,
  37855. bottom: 26/1432
  37856. }
  37857. },
  37858. },
  37859. [
  37860. {
  37861. name: "Normal",
  37862. height: math.unit(3 + 3/12, "feet"),
  37863. default: true
  37864. },
  37865. ]
  37866. ))
  37867. characterMakers.push(() => makeCharacter(
  37868. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37869. {
  37870. front: {
  37871. height: math.unit(4 + 11/12, "feet"),
  37872. name: "Front",
  37873. image: {
  37874. source: "./media/characters/monty/front.svg",
  37875. extra: 1479/1209,
  37876. bottom: 0/1479
  37877. }
  37878. },
  37879. },
  37880. [
  37881. {
  37882. name: "Normal",
  37883. height: math.unit(4 + 11/12, "feet"),
  37884. default: true
  37885. },
  37886. ]
  37887. ))
  37888. characterMakers.push(() => makeCharacter(
  37889. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37890. {
  37891. front: {
  37892. height: math.unit(8 + 4/12, "feet"),
  37893. name: "Front",
  37894. image: {
  37895. source: "./media/characters/sterling/front.svg",
  37896. extra: 1420/1236,
  37897. bottom: 27/1447
  37898. }
  37899. },
  37900. },
  37901. [
  37902. {
  37903. name: "Normal",
  37904. height: math.unit(8 + 4/12, "feet"),
  37905. default: true
  37906. },
  37907. ]
  37908. ))
  37909. characterMakers.push(() => makeCharacter(
  37910. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37911. {
  37912. front: {
  37913. height: math.unit(15, "feet"),
  37914. name: "Front",
  37915. image: {
  37916. source: "./media/characters/marble/front.svg",
  37917. extra: 973/937,
  37918. bottom: 32/1005
  37919. }
  37920. },
  37921. },
  37922. [
  37923. {
  37924. name: "Normal",
  37925. height: math.unit(15, "feet"),
  37926. default: true
  37927. },
  37928. ]
  37929. ))
  37930. characterMakers.push(() => makeCharacter(
  37931. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37932. {
  37933. front: {
  37934. height: math.unit(3, "inches"),
  37935. name: "Front",
  37936. image: {
  37937. source: "./media/characters/powder/front.svg",
  37938. extra: 1504/1334,
  37939. bottom: 518/2022
  37940. }
  37941. },
  37942. },
  37943. [
  37944. {
  37945. name: "Normal",
  37946. height: math.unit(3, "inches"),
  37947. default: true
  37948. },
  37949. ]
  37950. ))
  37951. characterMakers.push(() => makeCharacter(
  37952. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37953. {
  37954. front: {
  37955. height: math.unit(4 + 5/12, "feet"),
  37956. name: "Front",
  37957. image: {
  37958. source: "./media/characters/joey-raccoon/front.svg",
  37959. extra: 1273/1197,
  37960. bottom: 0/1273
  37961. }
  37962. },
  37963. },
  37964. [
  37965. {
  37966. name: "Normal",
  37967. height: math.unit(4 + 5/12, "feet"),
  37968. default: true
  37969. },
  37970. ]
  37971. ))
  37972. characterMakers.push(() => makeCharacter(
  37973. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37974. {
  37975. front: {
  37976. height: math.unit(8 + 4/12, "feet"),
  37977. name: "Front",
  37978. image: {
  37979. source: "./media/characters/vick/front.svg",
  37980. extra: 2187/2118,
  37981. bottom: 47/2234
  37982. }
  37983. },
  37984. },
  37985. [
  37986. {
  37987. name: "Normal",
  37988. height: math.unit(8 + 4/12, "feet"),
  37989. default: true
  37990. },
  37991. ]
  37992. ))
  37993. characterMakers.push(() => makeCharacter(
  37994. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37995. {
  37996. front: {
  37997. height: math.unit(5 + 5/12, "feet"),
  37998. name: "Front",
  37999. image: {
  38000. source: "./media/characters/mitsy/front.svg",
  38001. extra: 1842/1695,
  38002. bottom: 0/1842
  38003. }
  38004. },
  38005. },
  38006. [
  38007. {
  38008. name: "Normal",
  38009. height: math.unit(5 + 5/12, "feet"),
  38010. default: true
  38011. },
  38012. ]
  38013. ))
  38014. characterMakers.push(() => makeCharacter(
  38015. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38016. {
  38017. front: {
  38018. height: math.unit(6 + 3/12, "feet"),
  38019. name: "Front",
  38020. image: {
  38021. source: "./media/characters/silvy/front.svg",
  38022. extra: 1995/1836,
  38023. bottom: 225/2220
  38024. }
  38025. },
  38026. },
  38027. [
  38028. {
  38029. name: "Normal",
  38030. height: math.unit(6 + 3/12, "feet"),
  38031. default: true
  38032. },
  38033. ]
  38034. ))
  38035. characterMakers.push(() => makeCharacter(
  38036. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38037. {
  38038. front: {
  38039. height: math.unit(3 + 8/12, "feet"),
  38040. name: "Front",
  38041. image: {
  38042. source: "./media/characters/rodney/front.svg",
  38043. extra: 1956/1747,
  38044. bottom: 31/1987
  38045. }
  38046. },
  38047. frontDressed: {
  38048. height: math.unit(2.9, "feet"),
  38049. name: "Front (Dressed)",
  38050. image: {
  38051. source: "./media/characters/rodney/front-dressed.svg",
  38052. extra: 1382/1241,
  38053. bottom: 385/1767
  38054. }
  38055. },
  38056. },
  38057. [
  38058. {
  38059. name: "Normal",
  38060. height: math.unit(3 + 8/12, "feet"),
  38061. default: true
  38062. },
  38063. ]
  38064. ))
  38065. characterMakers.push(() => makeCharacter(
  38066. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38067. {
  38068. front: {
  38069. height: math.unit(5 + 9/12, "feet"),
  38070. weight: math.unit(194, "lbs"),
  38071. name: "Front",
  38072. image: {
  38073. source: "./media/characters/zakail-sudekai/front.svg",
  38074. extra: 2696/2533,
  38075. bottom: 248/2944
  38076. }
  38077. },
  38078. maw: {
  38079. height: math.unit(1.35, "feet"),
  38080. name: "Maw",
  38081. image: {
  38082. source: "./media/characters/zakail-sudekai/maw.svg"
  38083. }
  38084. },
  38085. },
  38086. [
  38087. {
  38088. name: "Normal",
  38089. height: math.unit(5 + 9/12, "feet"),
  38090. default: true
  38091. },
  38092. ]
  38093. ))
  38094. characterMakers.push(() => makeCharacter(
  38095. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38096. {
  38097. front: {
  38098. height: math.unit(8 + 4/12, "feet"),
  38099. weight: math.unit(1200, "lb"),
  38100. name: "Front",
  38101. image: {
  38102. source: "./media/characters/eleanor/front.svg",
  38103. extra: 1226/1192,
  38104. bottom: 52/1278
  38105. }
  38106. },
  38107. back: {
  38108. height: math.unit(8 + 4/12, "feet"),
  38109. weight: math.unit(1200, "lb"),
  38110. name: "Back",
  38111. image: {
  38112. source: "./media/characters/eleanor/back.svg",
  38113. extra: 1242/1184,
  38114. bottom: 60/1302
  38115. }
  38116. },
  38117. head: {
  38118. height: math.unit(2.62, "feet"),
  38119. name: "Head",
  38120. image: {
  38121. source: "./media/characters/eleanor/head.svg"
  38122. }
  38123. },
  38124. },
  38125. [
  38126. {
  38127. name: "Normal",
  38128. height: math.unit(8 + 4/12, "feet"),
  38129. default: true
  38130. },
  38131. ]
  38132. ))
  38133. characterMakers.push(() => makeCharacter(
  38134. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38135. {
  38136. front: {
  38137. height: math.unit(8 + 4/12, "feet"),
  38138. weight: math.unit(750, "lb"),
  38139. name: "Front",
  38140. image: {
  38141. source: "./media/characters/tanya/front.svg",
  38142. extra: 1749/1615,
  38143. bottom: 33/1782
  38144. }
  38145. },
  38146. },
  38147. [
  38148. {
  38149. name: "Normal",
  38150. height: math.unit(8 + 4/12, "feet"),
  38151. default: true
  38152. },
  38153. ]
  38154. ))
  38155. characterMakers.push(() => makeCharacter(
  38156. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38157. {
  38158. front: {
  38159. height: math.unit(5, "feet"),
  38160. weight: math.unit(225, "lb"),
  38161. name: "Front",
  38162. image: {
  38163. source: "./media/characters/cindy/front.svg",
  38164. extra: 1320/1250,
  38165. bottom: 42/1362
  38166. }
  38167. },
  38168. frontDressed: {
  38169. height: math.unit(5, "feet"),
  38170. weight: math.unit(225, "lb"),
  38171. name: "Front (Dressed)",
  38172. image: {
  38173. source: "./media/characters/cindy/front-dressed.svg",
  38174. extra: 1320/1250,
  38175. bottom: 42/1362
  38176. }
  38177. },
  38178. back: {
  38179. height: math.unit(5, "feet"),
  38180. weight: math.unit(225, "lb"),
  38181. name: "Back",
  38182. image: {
  38183. source: "./media/characters/cindy/back.svg",
  38184. extra: 1384/1346,
  38185. bottom: 14/1398
  38186. }
  38187. },
  38188. },
  38189. [
  38190. {
  38191. name: "Normal",
  38192. height: math.unit(5, "feet"),
  38193. default: true
  38194. },
  38195. ]
  38196. ))
  38197. characterMakers.push(() => makeCharacter(
  38198. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38199. {
  38200. front: {
  38201. height: math.unit(6 + 9/12, "feet"),
  38202. weight: math.unit(440, "lb"),
  38203. name: "Front",
  38204. image: {
  38205. source: "./media/characters/wilbur-owen/front.svg",
  38206. extra: 1575/1448,
  38207. bottom: 72/1647
  38208. }
  38209. },
  38210. back: {
  38211. height: math.unit(6 + 9/12, "feet"),
  38212. weight: math.unit(440, "lb"),
  38213. name: "Back",
  38214. image: {
  38215. source: "./media/characters/wilbur-owen/back.svg",
  38216. extra: 1578/1445,
  38217. bottom: 36/1614
  38218. }
  38219. },
  38220. },
  38221. [
  38222. {
  38223. name: "Normal",
  38224. height: math.unit(6 + 9/12, "feet"),
  38225. default: true
  38226. },
  38227. ]
  38228. ))
  38229. characterMakers.push(() => makeCharacter(
  38230. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38231. {
  38232. front: {
  38233. height: math.unit(6 + 5/12, "feet"),
  38234. weight: math.unit(650, "lb"),
  38235. name: "Front",
  38236. image: {
  38237. source: "./media/characters/keegan/front.svg",
  38238. extra: 2387/2198,
  38239. bottom: 33/2420
  38240. }
  38241. },
  38242. side: {
  38243. height: math.unit(6 + 5/12, "feet"),
  38244. weight: math.unit(650, "lb"),
  38245. name: "Side",
  38246. image: {
  38247. source: "./media/characters/keegan/side.svg",
  38248. extra: 2390/2202,
  38249. bottom: 47/2437
  38250. }
  38251. },
  38252. back: {
  38253. height: math.unit(6 + 5/12, "feet"),
  38254. weight: math.unit(650, "lb"),
  38255. name: "Back",
  38256. image: {
  38257. source: "./media/characters/keegan/back.svg",
  38258. extra: 2418/2268,
  38259. bottom: 15/2433
  38260. }
  38261. },
  38262. frontSfw: {
  38263. height: math.unit(6 + 5/12, "feet"),
  38264. weight: math.unit(650, "lb"),
  38265. name: "Front (SFW)",
  38266. image: {
  38267. source: "./media/characters/keegan/front-sfw.svg",
  38268. extra: 2387/2198,
  38269. bottom: 33/2420
  38270. }
  38271. },
  38272. beans: {
  38273. height: math.unit(1.85, "feet"),
  38274. name: "Beans",
  38275. image: {
  38276. source: "./media/characters/keegan/beans.svg"
  38277. }
  38278. },
  38279. },
  38280. [
  38281. {
  38282. name: "Normal",
  38283. height: math.unit(6 + 5/12, "feet"),
  38284. default: true
  38285. },
  38286. ]
  38287. ))
  38288. characterMakers.push(() => makeCharacter(
  38289. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38290. {
  38291. front: {
  38292. height: math.unit(9, "feet"),
  38293. name: "Front",
  38294. image: {
  38295. source: "./media/characters/colton/front.svg",
  38296. extra: 1589/1326,
  38297. bottom: 139/1728
  38298. }
  38299. },
  38300. },
  38301. [
  38302. {
  38303. name: "Normal",
  38304. height: math.unit(9, "feet"),
  38305. default: true
  38306. },
  38307. ]
  38308. ))
  38309. characterMakers.push(() => makeCharacter(
  38310. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38311. {
  38312. front: {
  38313. height: math.unit(2 + 9/12, "feet"),
  38314. name: "Front",
  38315. image: {
  38316. source: "./media/characters/bora/front.svg",
  38317. extra: 1265/1250,
  38318. bottom: 24/1289
  38319. }
  38320. },
  38321. },
  38322. [
  38323. {
  38324. name: "Normal",
  38325. height: math.unit(2 + 9/12, "feet"),
  38326. default: true
  38327. },
  38328. ]
  38329. ))
  38330. characterMakers.push(() => makeCharacter(
  38331. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38332. {
  38333. front: {
  38334. height: math.unit(8, "feet"),
  38335. name: "Front",
  38336. image: {
  38337. source: "./media/characters/myu-myu/front.svg",
  38338. extra: 1949/1857,
  38339. bottom: 90/2039
  38340. }
  38341. },
  38342. },
  38343. [
  38344. {
  38345. name: "Normal",
  38346. height: math.unit(8, "feet"),
  38347. default: true
  38348. },
  38349. {
  38350. name: "Big",
  38351. height: math.unit(15, "feet")
  38352. },
  38353. {
  38354. name: "BIG",
  38355. height: math.unit(25, "feet")
  38356. },
  38357. ]
  38358. ))
  38359. characterMakers.push(() => makeCharacter(
  38360. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38361. {
  38362. side: {
  38363. height: math.unit(7 + 5/12, "feet"),
  38364. weight: math.unit(2800, "lb"),
  38365. name: "Side",
  38366. image: {
  38367. source: "./media/characters/haloren/side.svg",
  38368. extra: 1793/409,
  38369. bottom: 59/1852
  38370. }
  38371. },
  38372. frontPaw: {
  38373. height: math.unit(2.36, "feet"),
  38374. name: "Front paw",
  38375. image: {
  38376. source: "./media/characters/haloren/front-paw.svg"
  38377. }
  38378. },
  38379. hindPaw: {
  38380. height: math.unit(3.18, "feet"),
  38381. name: "Hind paw",
  38382. image: {
  38383. source: "./media/characters/haloren/hind-paw.svg"
  38384. }
  38385. },
  38386. maw: {
  38387. height: math.unit(5.05, "feet"),
  38388. name: "Maw",
  38389. image: {
  38390. source: "./media/characters/haloren/maw.svg"
  38391. }
  38392. },
  38393. dick: {
  38394. height: math.unit(2.90, "feet"),
  38395. name: "Dick",
  38396. image: {
  38397. source: "./media/characters/haloren/dick.svg"
  38398. }
  38399. },
  38400. },
  38401. [
  38402. {
  38403. name: "Normal",
  38404. height: math.unit(7 + 5/12, "feet"),
  38405. default: true
  38406. },
  38407. {
  38408. name: "Enhanced",
  38409. height: math.unit(14 + 3/12, "feet")
  38410. },
  38411. ]
  38412. ))
  38413. characterMakers.push(() => makeCharacter(
  38414. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38415. {
  38416. front: {
  38417. height: math.unit(171, "cm"),
  38418. name: "Front",
  38419. image: {
  38420. source: "./media/characters/kimmy/front.svg",
  38421. extra: 1491/1435,
  38422. bottom: 53/1544
  38423. }
  38424. },
  38425. },
  38426. [
  38427. {
  38428. name: "Small",
  38429. height: math.unit(9, "cm")
  38430. },
  38431. {
  38432. name: "Normal",
  38433. height: math.unit(171, "cm"),
  38434. default: true
  38435. },
  38436. ]
  38437. ))
  38438. characterMakers.push(() => makeCharacter(
  38439. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38440. {
  38441. front: {
  38442. height: math.unit(8, "feet"),
  38443. weight: math.unit(300, "lb"),
  38444. name: "Front",
  38445. image: {
  38446. source: "./media/characters/galeboomer/front.svg",
  38447. extra: 4651/4415,
  38448. bottom: 162/4813
  38449. }
  38450. },
  38451. back: {
  38452. height: math.unit(8, "feet"),
  38453. weight: math.unit(300, "lb"),
  38454. name: "Back",
  38455. image: {
  38456. source: "./media/characters/galeboomer/back.svg",
  38457. extra: 4544/4314,
  38458. bottom: 16/4560
  38459. }
  38460. },
  38461. frontAlt: {
  38462. height: math.unit(8, "feet"),
  38463. weight: math.unit(300, "lb"),
  38464. name: "Front (Alt)",
  38465. image: {
  38466. source: "./media/characters/galeboomer/front-alt.svg",
  38467. extra: 4458/4228,
  38468. bottom: 68/4526
  38469. }
  38470. },
  38471. maw: {
  38472. height: math.unit(1.2, "feet"),
  38473. name: "Maw",
  38474. image: {
  38475. source: "./media/characters/galeboomer/maw.svg"
  38476. }
  38477. },
  38478. },
  38479. [
  38480. {
  38481. name: "Normal",
  38482. height: math.unit(8, "feet"),
  38483. default: true
  38484. },
  38485. ]
  38486. ))
  38487. characterMakers.push(() => makeCharacter(
  38488. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38489. {
  38490. front: {
  38491. height: math.unit(5 + 9/12, "feet"),
  38492. weight: math.unit(120, "lb"),
  38493. name: "Front",
  38494. image: {
  38495. source: "./media/characters/chyr/front.svg",
  38496. extra: 1323/1254,
  38497. bottom: 63/1386
  38498. }
  38499. },
  38500. back: {
  38501. height: math.unit(5 + 9/12, "feet"),
  38502. weight: math.unit(120, "lb"),
  38503. name: "Back",
  38504. image: {
  38505. source: "./media/characters/chyr/back.svg",
  38506. extra: 1323/1252,
  38507. bottom: 48/1371
  38508. }
  38509. },
  38510. },
  38511. [
  38512. {
  38513. name: "Normal",
  38514. height: math.unit(5 + 9/12, "feet"),
  38515. default: true
  38516. },
  38517. ]
  38518. ))
  38519. characterMakers.push(() => makeCharacter(
  38520. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38521. {
  38522. front: {
  38523. height: math.unit(7, "feet"),
  38524. weight: math.unit(310, "lb"),
  38525. name: "Front",
  38526. image: {
  38527. source: "./media/characters/solarus/front.svg",
  38528. extra: 2415/2021,
  38529. bottom: 103/2518
  38530. }
  38531. },
  38532. back: {
  38533. height: math.unit(7, "feet"),
  38534. weight: math.unit(310, "lb"),
  38535. name: "Back",
  38536. image: {
  38537. source: "./media/characters/solarus/back.svg",
  38538. extra: 2463/2089,
  38539. bottom: 79/2542
  38540. }
  38541. },
  38542. },
  38543. [
  38544. {
  38545. name: "Normal",
  38546. height: math.unit(7, "feet"),
  38547. default: true
  38548. },
  38549. ]
  38550. ))
  38551. characterMakers.push(() => makeCharacter(
  38552. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38553. {
  38554. front: {
  38555. height: math.unit(16, "feet"),
  38556. name: "Front",
  38557. image: {
  38558. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38559. extra: 1844/1780,
  38560. bottom: 58/1902
  38561. }
  38562. },
  38563. winterCoat: {
  38564. height: math.unit(16, "feet"),
  38565. name: "Winter Coat",
  38566. image: {
  38567. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38568. extra: 1807/1775,
  38569. bottom: 69/1876
  38570. }
  38571. },
  38572. },
  38573. [
  38574. {
  38575. name: "Normal",
  38576. height: math.unit(16, "feet"),
  38577. default: true
  38578. },
  38579. {
  38580. name: "Chicago Size",
  38581. height: math.unit(560, "feet")
  38582. },
  38583. ]
  38584. ))
  38585. characterMakers.push(() => makeCharacter(
  38586. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38587. {
  38588. front: {
  38589. height: math.unit(11 + 6/12, "feet"),
  38590. weight: math.unit(1366, "lb"),
  38591. name: "Front",
  38592. image: {
  38593. source: "./media/characters/lexor/front.svg",
  38594. extra: 1560/1481,
  38595. bottom: 211/1771
  38596. }
  38597. },
  38598. back: {
  38599. height: math.unit(11 + 6/12, "feet"),
  38600. weight: math.unit(1366, "lb"),
  38601. name: "Back",
  38602. image: {
  38603. source: "./media/characters/lexor/back.svg",
  38604. extra: 1614/1533,
  38605. bottom: 76/1690
  38606. }
  38607. },
  38608. maw: {
  38609. height: math.unit(3, "feet"),
  38610. name: "Maw",
  38611. image: {
  38612. source: "./media/characters/lexor/maw.svg"
  38613. }
  38614. },
  38615. dick: {
  38616. height: math.unit(2.59, "feet"),
  38617. name: "Dick",
  38618. image: {
  38619. source: "./media/characters/lexor/dick.svg"
  38620. }
  38621. },
  38622. },
  38623. [
  38624. {
  38625. name: "Normal",
  38626. height: math.unit(11 + 6/12, "feet"),
  38627. default: true
  38628. },
  38629. ]
  38630. ))
  38631. characterMakers.push(() => makeCharacter(
  38632. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38633. {
  38634. front: {
  38635. height: math.unit(5 + 8/12, "feet"),
  38636. name: "Front",
  38637. image: {
  38638. source: "./media/characters/magnum/front.svg",
  38639. extra: 942/855,
  38640. bottom: 26/968
  38641. }
  38642. },
  38643. },
  38644. [
  38645. {
  38646. name: "Normal",
  38647. height: math.unit(5 + 8/12, "feet"),
  38648. default: true
  38649. },
  38650. ]
  38651. ))
  38652. characterMakers.push(() => makeCharacter(
  38653. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38654. {
  38655. front: {
  38656. height: math.unit(18 + 4/12, "feet"),
  38657. weight: math.unit(1500, "kg"),
  38658. name: "Front",
  38659. image: {
  38660. source: "./media/characters/solas-sharpsman/front.svg",
  38661. extra: 1698/1589,
  38662. bottom: 0/1698
  38663. }
  38664. },
  38665. },
  38666. [
  38667. {
  38668. name: "Normal",
  38669. height: math.unit(18 + 4/12, "feet"),
  38670. default: true
  38671. },
  38672. ]
  38673. ))
  38674. characterMakers.push(() => makeCharacter(
  38675. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38676. {
  38677. front: {
  38678. height: math.unit(5 + 5/12, "feet"),
  38679. weight: math.unit(180, "lb"),
  38680. name: "Front",
  38681. image: {
  38682. source: "./media/characters/october/front.svg",
  38683. extra: 1800/1650,
  38684. bottom: 0/1800
  38685. }
  38686. },
  38687. frontNsfw: {
  38688. height: math.unit(5 + 5/12, "feet"),
  38689. weight: math.unit(180, "lb"),
  38690. name: "Front (NSFW)",
  38691. image: {
  38692. source: "./media/characters/october/front-nsfw.svg",
  38693. extra: 1392/1307,
  38694. bottom: 42/1434
  38695. }
  38696. },
  38697. },
  38698. [
  38699. {
  38700. name: "Normal",
  38701. height: math.unit(5 + 5/12, "feet"),
  38702. default: true
  38703. },
  38704. ]
  38705. ))
  38706. characterMakers.push(() => makeCharacter(
  38707. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38708. {
  38709. front: {
  38710. height: math.unit(8 + 6/12, "feet"),
  38711. name: "Front",
  38712. image: {
  38713. source: "./media/characters/essynkardi/front.svg",
  38714. extra: 1914/1846,
  38715. bottom: 22/1936
  38716. }
  38717. },
  38718. },
  38719. [
  38720. {
  38721. name: "Normal",
  38722. height: math.unit(8 + 6/12, "feet"),
  38723. default: true
  38724. },
  38725. ]
  38726. ))
  38727. characterMakers.push(() => makeCharacter(
  38728. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38729. {
  38730. front: {
  38731. height: math.unit(6 + 6/12, "feet"),
  38732. weight: math.unit(7, "lb"),
  38733. name: "Front",
  38734. image: {
  38735. source: "./media/characters/icky/front.svg",
  38736. extra: 813/782,
  38737. bottom: 66/879
  38738. }
  38739. },
  38740. back: {
  38741. height: math.unit(6 + 6/12, "feet"),
  38742. weight: math.unit(7, "lb"),
  38743. name: "Back",
  38744. image: {
  38745. source: "./media/characters/icky/back.svg",
  38746. extra: 754/735,
  38747. bottom: 56/810
  38748. }
  38749. },
  38750. },
  38751. [
  38752. {
  38753. name: "Normal",
  38754. height: math.unit(6 + 6/12, "feet"),
  38755. default: true
  38756. },
  38757. ]
  38758. ))
  38759. characterMakers.push(() => makeCharacter(
  38760. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38761. {
  38762. front: {
  38763. height: math.unit(15, "feet"),
  38764. name: "Front",
  38765. image: {
  38766. source: "./media/characters/rojas/front.svg",
  38767. extra: 1462/1408,
  38768. bottom: 95/1557
  38769. }
  38770. },
  38771. back: {
  38772. height: math.unit(15, "feet"),
  38773. name: "Back",
  38774. image: {
  38775. source: "./media/characters/rojas/back.svg",
  38776. extra: 1023/954,
  38777. bottom: 28/1051
  38778. }
  38779. },
  38780. },
  38781. [
  38782. {
  38783. name: "Normal",
  38784. height: math.unit(15, "feet"),
  38785. default: true
  38786. },
  38787. ]
  38788. ))
  38789. characterMakers.push(() => makeCharacter(
  38790. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38791. {
  38792. frontHuman: {
  38793. height: math.unit(5 + 7/12, "feet"),
  38794. name: "Front (Human)",
  38795. image: {
  38796. source: "./media/characters/alek-dryagan/front-human.svg",
  38797. extra: 1687/1667,
  38798. bottom: 69/1756
  38799. }
  38800. },
  38801. backHuman: {
  38802. height: math.unit(5 + 7/12, "feet"),
  38803. name: "Back (Human)",
  38804. image: {
  38805. source: "./media/characters/alek-dryagan/back-human.svg",
  38806. extra: 1670/1649,
  38807. bottom: 65/1735
  38808. }
  38809. },
  38810. frontDemi: {
  38811. height: math.unit(65, "feet"),
  38812. name: "Front (Demi)",
  38813. image: {
  38814. source: "./media/characters/alek-dryagan/front-demi.svg",
  38815. extra: 1669/1642,
  38816. bottom: 49/1718
  38817. }
  38818. },
  38819. backDemi: {
  38820. height: math.unit(65, "feet"),
  38821. name: "Back (Demi)",
  38822. image: {
  38823. source: "./media/characters/alek-dryagan/back-demi.svg",
  38824. extra: 1658/1637,
  38825. bottom: 40/1698
  38826. }
  38827. },
  38828. mawHuman: {
  38829. height: math.unit(0.3, "feet"),
  38830. name: "Maw (Human)",
  38831. image: {
  38832. source: "./media/characters/alek-dryagan/maw-human.svg"
  38833. }
  38834. },
  38835. mawDemi: {
  38836. height: math.unit(3.8, "feet"),
  38837. name: "Maw (Demi)",
  38838. image: {
  38839. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38840. }
  38841. },
  38842. },
  38843. [
  38844. {
  38845. name: "Normal",
  38846. height: math.unit(5 + 7/12, "feet"),
  38847. default: true
  38848. },
  38849. ]
  38850. ))
  38851. characterMakers.push(() => makeCharacter(
  38852. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38853. {
  38854. frontHuman: {
  38855. height: math.unit(5 + 2/12, "feet"),
  38856. name: "Front (Human)",
  38857. image: {
  38858. source: "./media/characters/gen/front-human.svg",
  38859. extra: 1627/1538,
  38860. bottom: 71/1698
  38861. }
  38862. },
  38863. backHuman: {
  38864. height: math.unit(5 + 2/12, "feet"),
  38865. name: "Back (Human)",
  38866. image: {
  38867. source: "./media/characters/gen/back-human.svg",
  38868. extra: 1638/1548,
  38869. bottom: 69/1707
  38870. }
  38871. },
  38872. frontDemi: {
  38873. height: math.unit(5 + 2/12, "feet"),
  38874. name: "Front (Demi)",
  38875. image: {
  38876. source: "./media/characters/gen/front-demi.svg",
  38877. extra: 1627/1538,
  38878. bottom: 71/1698
  38879. }
  38880. },
  38881. backDemi: {
  38882. height: math.unit(5 + 2/12, "feet"),
  38883. name: "Back (Demi)",
  38884. image: {
  38885. source: "./media/characters/gen/back-demi.svg",
  38886. extra: 1638/1548,
  38887. bottom: 69/1707
  38888. }
  38889. },
  38890. },
  38891. [
  38892. {
  38893. name: "Normal",
  38894. height: math.unit(5 + 2/12, "feet"),
  38895. default: true
  38896. },
  38897. ]
  38898. ))
  38899. characterMakers.push(() => makeCharacter(
  38900. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38901. {
  38902. frontImp: {
  38903. height: math.unit(1 + 11/12, "feet"),
  38904. name: "Front (Imp)",
  38905. image: {
  38906. source: "./media/characters/max-kobold/front-imp.svg",
  38907. extra: 1238/1134,
  38908. bottom: 81/1319
  38909. }
  38910. },
  38911. backImp: {
  38912. height: math.unit(1 + 11/12, "feet"),
  38913. name: "Back (Imp)",
  38914. image: {
  38915. source: "./media/characters/max-kobold/back-imp.svg",
  38916. extra: 1334/1175,
  38917. bottom: 34/1368
  38918. }
  38919. },
  38920. frontDemi: {
  38921. height: math.unit(5 + 9/12, "feet"),
  38922. name: "Front (Demi)",
  38923. image: {
  38924. source: "./media/characters/max-kobold/front-demi.svg",
  38925. extra: 1715/1685,
  38926. bottom: 54/1769
  38927. }
  38928. },
  38929. backDemi: {
  38930. height: math.unit(5 + 9/12, "feet"),
  38931. name: "Back (Demi)",
  38932. image: {
  38933. source: "./media/characters/max-kobold/back-demi.svg",
  38934. extra: 1752/1729,
  38935. bottom: 41/1793
  38936. }
  38937. },
  38938. handImp: {
  38939. height: math.unit(0.45, "feet"),
  38940. name: "Hand (Imp)",
  38941. image: {
  38942. source: "./media/characters/max-kobold/hand.svg"
  38943. }
  38944. },
  38945. pawImp: {
  38946. height: math.unit(0.46, "feet"),
  38947. name: "Paw (Imp)",
  38948. image: {
  38949. source: "./media/characters/max-kobold/paw.svg"
  38950. }
  38951. },
  38952. handDemi: {
  38953. height: math.unit(0.80, "feet"),
  38954. name: "Hand (Demi)",
  38955. image: {
  38956. source: "./media/characters/max-kobold/hand.svg"
  38957. }
  38958. },
  38959. pawDemi: {
  38960. height: math.unit(1.1, "feet"),
  38961. name: "Paw (Demi)",
  38962. image: {
  38963. source: "./media/characters/max-kobold/paw.svg"
  38964. }
  38965. },
  38966. headImp: {
  38967. height: math.unit(1.33, "feet"),
  38968. name: "Head (Imp)",
  38969. image: {
  38970. source: "./media/characters/max-kobold/head-imp.svg"
  38971. }
  38972. },
  38973. mawImp: {
  38974. height: math.unit(0.75, "feet"),
  38975. name: "Maw (Imp)",
  38976. image: {
  38977. source: "./media/characters/max-kobold/maw-imp.svg"
  38978. }
  38979. },
  38980. mawDemi: {
  38981. height: math.unit(0.42, "feet"),
  38982. name: "Maw (Demi)",
  38983. image: {
  38984. source: "./media/characters/max-kobold/maw-demi.svg"
  38985. }
  38986. },
  38987. },
  38988. [
  38989. {
  38990. name: "Normal",
  38991. height: math.unit(1 + 11/12, "feet"),
  38992. default: true
  38993. },
  38994. ]
  38995. ))
  38996. characterMakers.push(() => makeCharacter(
  38997. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38998. {
  38999. front: {
  39000. height: math.unit(7 + 5/12, "feet"),
  39001. name: "Front",
  39002. image: {
  39003. source: "./media/characters/carbon/front.svg",
  39004. extra: 1754/1689,
  39005. bottom: 65/1819
  39006. }
  39007. },
  39008. back: {
  39009. height: math.unit(7 + 5/12, "feet"),
  39010. name: "Back",
  39011. image: {
  39012. source: "./media/characters/carbon/back.svg",
  39013. extra: 1762/1695,
  39014. bottom: 24/1786
  39015. }
  39016. },
  39017. frontGigantamax: {
  39018. height: math.unit(150, "feet"),
  39019. name: "Front (Gigantamax)",
  39020. image: {
  39021. source: "./media/characters/carbon/front-gigantamax.svg",
  39022. extra: 1826/1669,
  39023. bottom: 59/1885
  39024. }
  39025. },
  39026. backGigantamax: {
  39027. height: math.unit(150, "feet"),
  39028. name: "Back (Gigantamax)",
  39029. image: {
  39030. source: "./media/characters/carbon/back-gigantamax.svg",
  39031. extra: 1796/1653,
  39032. bottom: 53/1849
  39033. }
  39034. },
  39035. maw: {
  39036. height: math.unit(0.48, "feet"),
  39037. name: "Maw",
  39038. image: {
  39039. source: "./media/characters/carbon/maw.svg"
  39040. }
  39041. },
  39042. mawGigantamax: {
  39043. height: math.unit(7.5, "feet"),
  39044. name: "Maw (Gigantamax)",
  39045. image: {
  39046. source: "./media/characters/carbon/maw-gigantamax.svg"
  39047. }
  39048. },
  39049. },
  39050. [
  39051. {
  39052. name: "Normal",
  39053. height: math.unit(7 + 5/12, "feet"),
  39054. default: true
  39055. },
  39056. ]
  39057. ))
  39058. characterMakers.push(() => makeCharacter(
  39059. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39060. {
  39061. front: {
  39062. height: math.unit(6, "feet"),
  39063. name: "Front",
  39064. image: {
  39065. source: "./media/characters/maverick/front.svg",
  39066. extra: 1672/1661,
  39067. bottom: 85/1757
  39068. }
  39069. },
  39070. back: {
  39071. height: math.unit(6, "feet"),
  39072. name: "Back",
  39073. image: {
  39074. source: "./media/characters/maverick/back.svg",
  39075. extra: 1642/1631,
  39076. bottom: 38/1680
  39077. }
  39078. },
  39079. },
  39080. [
  39081. {
  39082. name: "Normal",
  39083. height: math.unit(6, "feet"),
  39084. default: true
  39085. },
  39086. ]
  39087. ))
  39088. characterMakers.push(() => makeCharacter(
  39089. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39090. {
  39091. front: {
  39092. height: math.unit(15, "feet"),
  39093. weight: math.unit(615, "lb"),
  39094. name: "Front",
  39095. image: {
  39096. source: "./media/characters/grockle/front.svg",
  39097. extra: 1535/1427,
  39098. bottom: 56/1591
  39099. }
  39100. },
  39101. },
  39102. [
  39103. {
  39104. name: "Normal",
  39105. height: math.unit(15, "feet"),
  39106. default: true
  39107. },
  39108. {
  39109. name: "Large",
  39110. height: math.unit(150, "feet")
  39111. },
  39112. {
  39113. name: "Macro",
  39114. height: math.unit(1876, "feet")
  39115. },
  39116. {
  39117. name: "Mega Macro",
  39118. height: math.unit(121940, "feet")
  39119. },
  39120. {
  39121. name: "Giga Macro",
  39122. height: math.unit(750, "km")
  39123. },
  39124. {
  39125. name: "Tera Macro",
  39126. height: math.unit(750000, "km")
  39127. },
  39128. {
  39129. name: "Galactic",
  39130. height: math.unit(1.4e5, "km")
  39131. },
  39132. {
  39133. name: "Godlike",
  39134. height: math.unit(9.8e280, "galaxies")
  39135. },
  39136. ]
  39137. ))
  39138. characterMakers.push(() => makeCharacter(
  39139. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39140. {
  39141. front: {
  39142. height: math.unit(11, "meters"),
  39143. weight: math.unit(20, "tonnes"),
  39144. name: "Front",
  39145. image: {
  39146. source: "./media/characters/alistair/front.svg",
  39147. extra: 1265/1009,
  39148. bottom: 93/1358
  39149. }
  39150. },
  39151. },
  39152. [
  39153. {
  39154. name: "Normal",
  39155. height: math.unit(11, "meters"),
  39156. default: true
  39157. },
  39158. ]
  39159. ))
  39160. characterMakers.push(() => makeCharacter(
  39161. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39162. {
  39163. front: {
  39164. height: math.unit(5 + 8/12, "feet"),
  39165. name: "Front",
  39166. image: {
  39167. source: "./media/characters/haruka/front.svg",
  39168. extra: 2012/1952,
  39169. bottom: 0/2012
  39170. }
  39171. },
  39172. },
  39173. [
  39174. {
  39175. name: "Normal",
  39176. height: math.unit(5 + 8/12, "feet"),
  39177. default: true
  39178. },
  39179. ]
  39180. ))
  39181. characterMakers.push(() => makeCharacter(
  39182. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39183. {
  39184. back: {
  39185. height: math.unit(9, "feet"),
  39186. name: "Back",
  39187. image: {
  39188. source: "./media/characters/vivian-sylveon/back.svg",
  39189. extra: 1853/1714,
  39190. bottom: 0/1853
  39191. }
  39192. },
  39193. },
  39194. [
  39195. {
  39196. name: "Normal",
  39197. height: math.unit(9, "feet"),
  39198. default: true
  39199. },
  39200. {
  39201. name: "Macro",
  39202. height: math.unit(500, "feet")
  39203. },
  39204. {
  39205. name: "Megamacro",
  39206. height: math.unit(600, "miles")
  39207. },
  39208. {
  39209. name: "Gigamacro",
  39210. height: math.unit(30000, "miles")
  39211. },
  39212. ]
  39213. ))
  39214. characterMakers.push(() => makeCharacter(
  39215. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39216. {
  39217. anthro: {
  39218. height: math.unit(5 + 10/12, "feet"),
  39219. weight: math.unit(100, "lb"),
  39220. name: "Anthro",
  39221. image: {
  39222. source: "./media/characters/daiki/anthro.svg",
  39223. extra: 1115/1027,
  39224. bottom: 69/1184
  39225. }
  39226. },
  39227. feral: {
  39228. height: math.unit(200, "feet"),
  39229. name: "Feral",
  39230. image: {
  39231. source: "./media/characters/daiki/feral.svg",
  39232. extra: 1256/313,
  39233. bottom: 39/1295
  39234. }
  39235. },
  39236. feralHead: {
  39237. height: math.unit(171, "feet"),
  39238. name: "Feral Head",
  39239. image: {
  39240. source: "./media/characters/daiki/feral-head.svg"
  39241. }
  39242. },
  39243. manaDragon: {
  39244. height: math.unit(170, "meters"),
  39245. name: "Mana-dragon",
  39246. image: {
  39247. source: "./media/characters/daiki/mana-dragon.svg",
  39248. extra: 763/420,
  39249. bottom: 97/860
  39250. }
  39251. },
  39252. },
  39253. [
  39254. {
  39255. name: "Normal",
  39256. height: math.unit(5 + 10/12, "feet"),
  39257. default: true
  39258. },
  39259. ]
  39260. ))
  39261. characterMakers.push(() => makeCharacter(
  39262. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39263. {
  39264. fullyEquippedFront: {
  39265. height: math.unit(3 + 1/12, "feet"),
  39266. weight: math.unit(24, "lb"),
  39267. name: "Fully Equipped (Front)",
  39268. image: {
  39269. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39270. extra: 687/605,
  39271. bottom: 18/705
  39272. }
  39273. },
  39274. fullyEquippedBack: {
  39275. height: math.unit(3 + 1/12, "feet"),
  39276. weight: math.unit(24, "lb"),
  39277. name: "Fully Equipped (Back)",
  39278. image: {
  39279. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39280. extra: 689/590,
  39281. bottom: 18/707
  39282. }
  39283. },
  39284. dailyWear: {
  39285. height: math.unit(3 + 1/12, "feet"),
  39286. weight: math.unit(24, "lb"),
  39287. name: "Daily Wear",
  39288. image: {
  39289. source: "./media/characters/tea-spot/daily-wear.svg",
  39290. extra: 701/620,
  39291. bottom: 21/722
  39292. }
  39293. },
  39294. maidWork: {
  39295. height: math.unit(3 + 1/12, "feet"),
  39296. weight: math.unit(24, "lb"),
  39297. name: "Maid Work",
  39298. image: {
  39299. source: "./media/characters/tea-spot/maid-work.svg",
  39300. extra: 693/609,
  39301. bottom: 15/708
  39302. }
  39303. },
  39304. },
  39305. [
  39306. {
  39307. name: "Normal",
  39308. height: math.unit(3 + 1/12, "feet"),
  39309. default: true
  39310. },
  39311. ]
  39312. ))
  39313. characterMakers.push(() => makeCharacter(
  39314. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39315. {
  39316. front: {
  39317. height: math.unit(175, "cm"),
  39318. weight: math.unit(75, "kg"),
  39319. name: "Front",
  39320. image: {
  39321. source: "./media/characters/chee/front.svg",
  39322. extra: 1796/1740,
  39323. bottom: 40/1836
  39324. }
  39325. },
  39326. },
  39327. [
  39328. {
  39329. name: "Micro-Micro",
  39330. height: math.unit(1, "nm")
  39331. },
  39332. {
  39333. name: "Micro-erst",
  39334. height: math.unit(1, "micrometer")
  39335. },
  39336. {
  39337. name: "Micro-er",
  39338. height: math.unit(1, "cm")
  39339. },
  39340. {
  39341. name: "Normal",
  39342. height: math.unit(175, "cm"),
  39343. default: true
  39344. },
  39345. {
  39346. name: "Macro",
  39347. height: math.unit(100, "m")
  39348. },
  39349. {
  39350. name: "Macro-er",
  39351. height: math.unit(1, "km")
  39352. },
  39353. {
  39354. name: "Macro-erst",
  39355. height: math.unit(10, "km")
  39356. },
  39357. {
  39358. name: "Macro-Macro",
  39359. height: math.unit(100, "km")
  39360. },
  39361. ]
  39362. ))
  39363. characterMakers.push(() => makeCharacter(
  39364. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39365. {
  39366. front: {
  39367. height: math.unit(11 + 9/12, "feet"),
  39368. weight: math.unit(935, "lb"),
  39369. name: "Front",
  39370. image: {
  39371. source: "./media/characters/kingsley/front.svg",
  39372. extra: 1803/1674,
  39373. bottom: 127/1930
  39374. }
  39375. },
  39376. frontNude: {
  39377. height: math.unit(11 + 9/12, "feet"),
  39378. weight: math.unit(935, "lb"),
  39379. name: "Front (Nude)",
  39380. image: {
  39381. source: "./media/characters/kingsley/front-nude.svg",
  39382. extra: 1803/1674,
  39383. bottom: 127/1930
  39384. }
  39385. },
  39386. },
  39387. [
  39388. {
  39389. name: "Normal",
  39390. height: math.unit(11 + 9/12, "feet"),
  39391. default: true
  39392. },
  39393. ]
  39394. ))
  39395. characterMakers.push(() => makeCharacter(
  39396. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39397. {
  39398. side: {
  39399. height: math.unit(9, "feet"),
  39400. name: "Side",
  39401. image: {
  39402. source: "./media/characters/rymel/side.svg",
  39403. extra: 792/469,
  39404. bottom: 121/913
  39405. }
  39406. },
  39407. maw: {
  39408. height: math.unit(2.4, "meters"),
  39409. name: "Maw",
  39410. image: {
  39411. source: "./media/characters/rymel/maw.svg"
  39412. }
  39413. },
  39414. },
  39415. [
  39416. {
  39417. name: "House Drake",
  39418. height: math.unit(2, "feet")
  39419. },
  39420. {
  39421. name: "Reduced",
  39422. height: math.unit(4.5, "feet")
  39423. },
  39424. {
  39425. name: "Normal",
  39426. height: math.unit(9, "feet"),
  39427. default: true
  39428. },
  39429. ]
  39430. ))
  39431. characterMakers.push(() => makeCharacter(
  39432. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39433. {
  39434. front: {
  39435. height: math.unit(1.74, "meters"),
  39436. weight: math.unit(55, "kg"),
  39437. name: "Front",
  39438. image: {
  39439. source: "./media/characters/rubus/front.svg",
  39440. extra: 1894/1742,
  39441. bottom: 44/1938
  39442. }
  39443. },
  39444. },
  39445. [
  39446. {
  39447. name: "Normal",
  39448. height: math.unit(1.74, "meters"),
  39449. default: true
  39450. },
  39451. ]
  39452. ))
  39453. characterMakers.push(() => makeCharacter(
  39454. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39455. {
  39456. front: {
  39457. height: math.unit(5 + 2/12, "feet"),
  39458. weight: math.unit(112, "lb"),
  39459. name: "Front",
  39460. image: {
  39461. source: "./media/characters/cassie-kingston/front.svg",
  39462. extra: 1438/1390,
  39463. bottom: 47/1485
  39464. }
  39465. },
  39466. },
  39467. [
  39468. {
  39469. name: "Normal",
  39470. height: math.unit(5 + 2/12, "feet"),
  39471. default: true
  39472. },
  39473. {
  39474. name: "Macro",
  39475. height: math.unit(128, "feet")
  39476. },
  39477. {
  39478. name: "Megamacro",
  39479. height: math.unit(2.56, "miles")
  39480. },
  39481. ]
  39482. ))
  39483. characterMakers.push(() => makeCharacter(
  39484. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39485. {
  39486. front: {
  39487. height: math.unit(7, "feet"),
  39488. name: "Front",
  39489. image: {
  39490. source: "./media/characters/fox/front.svg",
  39491. extra: 1798/1703,
  39492. bottom: 55/1853
  39493. }
  39494. },
  39495. back: {
  39496. height: math.unit(7, "feet"),
  39497. name: "Back",
  39498. image: {
  39499. source: "./media/characters/fox/back.svg",
  39500. extra: 1748/1649,
  39501. bottom: 32/1780
  39502. }
  39503. },
  39504. head: {
  39505. height: math.unit(1.95, "feet"),
  39506. name: "Head",
  39507. image: {
  39508. source: "./media/characters/fox/head.svg"
  39509. }
  39510. },
  39511. dick: {
  39512. height: math.unit(1.33, "feet"),
  39513. name: "Dick",
  39514. image: {
  39515. source: "./media/characters/fox/dick.svg"
  39516. }
  39517. },
  39518. foot: {
  39519. height: math.unit(1, "feet"),
  39520. name: "Foot",
  39521. image: {
  39522. source: "./media/characters/fox/foot.svg"
  39523. }
  39524. },
  39525. paw: {
  39526. height: math.unit(0.92, "feet"),
  39527. name: "Paw",
  39528. image: {
  39529. source: "./media/characters/fox/paw.svg"
  39530. }
  39531. },
  39532. },
  39533. [
  39534. {
  39535. name: "Small",
  39536. height: math.unit(3, "inches")
  39537. },
  39538. {
  39539. name: "\"Realistic\"",
  39540. height: math.unit(7, "feet")
  39541. },
  39542. {
  39543. name: "Normal",
  39544. height: math.unit(150, "feet"),
  39545. default: true
  39546. },
  39547. {
  39548. name: "BIG",
  39549. height: math.unit(1200, "feet")
  39550. },
  39551. {
  39552. name: "👀",
  39553. height: math.unit(5, "miles")
  39554. },
  39555. {
  39556. name: "👀👀👀",
  39557. height: math.unit(64, "miles")
  39558. },
  39559. ]
  39560. ))
  39561. characterMakers.push(() => makeCharacter(
  39562. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39563. {
  39564. front: {
  39565. height: math.unit(625, "feet"),
  39566. name: "Front",
  39567. image: {
  39568. source: "./media/characters/asonja-rossa/front.svg",
  39569. extra: 1833/1686,
  39570. bottom: 24/1857
  39571. }
  39572. },
  39573. back: {
  39574. height: math.unit(625, "feet"),
  39575. name: "Back",
  39576. image: {
  39577. source: "./media/characters/asonja-rossa/back.svg",
  39578. extra: 1852/1753,
  39579. bottom: 26/1878
  39580. }
  39581. },
  39582. },
  39583. [
  39584. {
  39585. name: "Macro",
  39586. height: math.unit(625, "feet"),
  39587. default: true
  39588. },
  39589. ]
  39590. ))
  39591. characterMakers.push(() => makeCharacter(
  39592. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39593. {
  39594. side: {
  39595. height: math.unit(8, "feet"),
  39596. name: "Side",
  39597. image: {
  39598. source: "./media/characters/rezukii/side.svg",
  39599. extra: 979/542,
  39600. bottom: 87/1066
  39601. }
  39602. },
  39603. sitting: {
  39604. height: math.unit(14.6, "feet"),
  39605. name: "Sitting",
  39606. image: {
  39607. source: "./media/characters/rezukii/sitting.svg",
  39608. extra: 1023/813,
  39609. bottom: 45/1068
  39610. }
  39611. },
  39612. },
  39613. [
  39614. {
  39615. name: "Tiny",
  39616. height: math.unit(2, "feet")
  39617. },
  39618. {
  39619. name: "Smol",
  39620. height: math.unit(4, "feet")
  39621. },
  39622. {
  39623. name: "Normal",
  39624. height: math.unit(8, "feet"),
  39625. default: true
  39626. },
  39627. {
  39628. name: "Big",
  39629. height: math.unit(12, "feet")
  39630. },
  39631. {
  39632. name: "Macro",
  39633. height: math.unit(30, "feet")
  39634. },
  39635. ]
  39636. ))
  39637. characterMakers.push(() => makeCharacter(
  39638. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39639. {
  39640. front: {
  39641. height: math.unit(14, "feet"),
  39642. weight: math.unit(9.5, "tonnes"),
  39643. name: "Front",
  39644. image: {
  39645. source: "./media/characters/dawnheart/front.svg",
  39646. extra: 2792/2675,
  39647. bottom: 64/2856
  39648. }
  39649. },
  39650. },
  39651. [
  39652. {
  39653. name: "Normal",
  39654. height: math.unit(14, "feet"),
  39655. default: true
  39656. },
  39657. ]
  39658. ))
  39659. characterMakers.push(() => makeCharacter(
  39660. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39661. {
  39662. front: {
  39663. height: math.unit(1.7, "m"),
  39664. name: "Front",
  39665. image: {
  39666. source: "./media/characters/gladi/front.svg",
  39667. extra: 1460/1362,
  39668. bottom: 19/1479
  39669. }
  39670. },
  39671. back: {
  39672. height: math.unit(1.7, "m"),
  39673. name: "Back",
  39674. image: {
  39675. source: "./media/characters/gladi/back.svg",
  39676. extra: 1459/1357,
  39677. bottom: 12/1471
  39678. }
  39679. },
  39680. feral: {
  39681. height: math.unit(2.05, "m"),
  39682. name: "Feral",
  39683. image: {
  39684. source: "./media/characters/gladi/feral.svg",
  39685. extra: 821/557,
  39686. bottom: 91/912
  39687. }
  39688. },
  39689. },
  39690. [
  39691. {
  39692. name: "Shortest",
  39693. height: math.unit(70, "cm")
  39694. },
  39695. {
  39696. name: "Normal",
  39697. height: math.unit(1.7, "m")
  39698. },
  39699. {
  39700. name: "Macro",
  39701. height: math.unit(10, "m"),
  39702. default: true
  39703. },
  39704. {
  39705. name: "Tallest",
  39706. height: math.unit(200, "m")
  39707. },
  39708. ]
  39709. ))
  39710. characterMakers.push(() => makeCharacter(
  39711. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39712. {
  39713. front: {
  39714. height: math.unit(5 + 7/12, "feet"),
  39715. weight: math.unit(2, "tons"),
  39716. name: "Front",
  39717. image: {
  39718. source: "./media/characters/erdno/front.svg",
  39719. extra: 1234/1129,
  39720. bottom: 35/1269
  39721. }
  39722. },
  39723. angled: {
  39724. height: math.unit(5 + 7/12, "feet"),
  39725. weight: math.unit(2, "tons"),
  39726. name: "Angled",
  39727. image: {
  39728. source: "./media/characters/erdno/angled.svg",
  39729. extra: 1185/1139,
  39730. bottom: 36/1221
  39731. }
  39732. },
  39733. side: {
  39734. height: math.unit(5 + 7/12, "feet"),
  39735. weight: math.unit(2, "tons"),
  39736. name: "Side",
  39737. image: {
  39738. source: "./media/characters/erdno/side.svg",
  39739. extra: 1191/1144,
  39740. bottom: 40/1231
  39741. }
  39742. },
  39743. back: {
  39744. height: math.unit(5 + 7/12, "feet"),
  39745. weight: math.unit(2, "tons"),
  39746. name: "Back",
  39747. image: {
  39748. source: "./media/characters/erdno/back.svg",
  39749. extra: 1202/1146,
  39750. bottom: 17/1219
  39751. }
  39752. },
  39753. frontNsfw: {
  39754. height: math.unit(5 + 7/12, "feet"),
  39755. weight: math.unit(2, "tons"),
  39756. name: "Front (NSFW)",
  39757. image: {
  39758. source: "./media/characters/erdno/front-nsfw.svg",
  39759. extra: 1234/1129,
  39760. bottom: 35/1269
  39761. }
  39762. },
  39763. angledNsfw: {
  39764. height: math.unit(5 + 7/12, "feet"),
  39765. weight: math.unit(2, "tons"),
  39766. name: "Angled (NSFW)",
  39767. image: {
  39768. source: "./media/characters/erdno/angled-nsfw.svg",
  39769. extra: 1185/1139,
  39770. bottom: 36/1221
  39771. }
  39772. },
  39773. sideNsfw: {
  39774. height: math.unit(5 + 7/12, "feet"),
  39775. weight: math.unit(2, "tons"),
  39776. name: "Side (NSFW)",
  39777. image: {
  39778. source: "./media/characters/erdno/side-nsfw.svg",
  39779. extra: 1191/1144,
  39780. bottom: 40/1231
  39781. }
  39782. },
  39783. backNsfw: {
  39784. height: math.unit(5 + 7/12, "feet"),
  39785. weight: math.unit(2, "tons"),
  39786. name: "Back (NSFW)",
  39787. image: {
  39788. source: "./media/characters/erdno/back-nsfw.svg",
  39789. extra: 1202/1146,
  39790. bottom: 17/1219
  39791. }
  39792. },
  39793. frontHyper: {
  39794. height: math.unit(5 + 7/12, "feet"),
  39795. weight: math.unit(2, "tons"),
  39796. name: "Front (Hyper)",
  39797. image: {
  39798. source: "./media/characters/erdno/front-hyper.svg",
  39799. extra: 1298/1136,
  39800. bottom: 35/1333
  39801. }
  39802. },
  39803. },
  39804. [
  39805. {
  39806. name: "Normal",
  39807. height: math.unit(5 + 7/12, "feet"),
  39808. default: true
  39809. },
  39810. {
  39811. name: "Big",
  39812. height: math.unit(5.7, "meters")
  39813. },
  39814. {
  39815. name: "Macro",
  39816. height: math.unit(5.7, "kilometers")
  39817. },
  39818. {
  39819. name: "Megamacro",
  39820. height: math.unit(5.7, "earths")
  39821. },
  39822. ]
  39823. ))
  39824. characterMakers.push(() => makeCharacter(
  39825. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39826. {
  39827. front: {
  39828. height: math.unit(5 + 10/12, "feet"),
  39829. weight: math.unit(150, "lb"),
  39830. name: "Front",
  39831. image: {
  39832. source: "./media/characters/jamie/front.svg",
  39833. extra: 1908/1768,
  39834. bottom: 19/1927
  39835. }
  39836. },
  39837. },
  39838. [
  39839. {
  39840. name: "Minimum",
  39841. height: math.unit(2, "cm")
  39842. },
  39843. {
  39844. name: "Micro",
  39845. height: math.unit(3, "inches")
  39846. },
  39847. {
  39848. name: "Normal",
  39849. height: math.unit(5 + 10/12, "feet"),
  39850. default: true
  39851. },
  39852. {
  39853. name: "Macro",
  39854. height: math.unit(150, "feet")
  39855. },
  39856. {
  39857. name: "Megamacro",
  39858. height: math.unit(10000, "m")
  39859. },
  39860. ]
  39861. ))
  39862. characterMakers.push(() => makeCharacter(
  39863. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39864. {
  39865. front: {
  39866. height: math.unit(2, "meters"),
  39867. weight: math.unit(100, "kg"),
  39868. name: "Front",
  39869. image: {
  39870. source: "./media/characters/shiron/front.svg",
  39871. extra: 2103/1985,
  39872. bottom: 98/2201
  39873. }
  39874. },
  39875. back: {
  39876. height: math.unit(2, "meters"),
  39877. weight: math.unit(100, "kg"),
  39878. name: "Back",
  39879. image: {
  39880. source: "./media/characters/shiron/back.svg",
  39881. extra: 2110/2015,
  39882. bottom: 89/2199
  39883. }
  39884. },
  39885. hand: {
  39886. height: math.unit(0.96, "feet"),
  39887. name: "Hand",
  39888. image: {
  39889. source: "./media/characters/shiron/hand.svg"
  39890. }
  39891. },
  39892. foot: {
  39893. height: math.unit(1.464, "feet"),
  39894. name: "Foot",
  39895. image: {
  39896. source: "./media/characters/shiron/foot.svg"
  39897. }
  39898. },
  39899. },
  39900. [
  39901. {
  39902. name: "Normal",
  39903. height: math.unit(2, "meters")
  39904. },
  39905. {
  39906. name: "Macro",
  39907. height: math.unit(500, "meters"),
  39908. default: true
  39909. },
  39910. {
  39911. name: "Megamacro",
  39912. height: math.unit(20, "km")
  39913. },
  39914. ]
  39915. ))
  39916. characterMakers.push(() => makeCharacter(
  39917. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39918. {
  39919. front: {
  39920. height: math.unit(6, "feet"),
  39921. name: "Front",
  39922. image: {
  39923. source: "./media/characters/sam/front.svg",
  39924. extra: 849/826,
  39925. bottom: 19/868
  39926. }
  39927. },
  39928. },
  39929. [
  39930. {
  39931. name: "Normal",
  39932. height: math.unit(6, "feet"),
  39933. default: true
  39934. },
  39935. ]
  39936. ))
  39937. characterMakers.push(() => makeCharacter(
  39938. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39939. {
  39940. front: {
  39941. height: math.unit(8 + 4/12, "feet"),
  39942. weight: math.unit(122, "kg"),
  39943. name: "Front",
  39944. image: {
  39945. source: "./media/characters/namori-kurogawa/front.svg",
  39946. extra: 1894/1576,
  39947. bottom: 34/1928
  39948. }
  39949. },
  39950. },
  39951. [
  39952. {
  39953. name: "Normal",
  39954. height: math.unit(8 + 4/12, "feet"),
  39955. default: true
  39956. },
  39957. ]
  39958. ))
  39959. characterMakers.push(() => makeCharacter(
  39960. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39961. {
  39962. front: {
  39963. height: math.unit(9, "feet"),
  39964. weight: math.unit(621, "lb"),
  39965. name: "Front",
  39966. image: {
  39967. source: "./media/characters/unmru/front.svg",
  39968. extra: 1853/1747,
  39969. bottom: 73/1926
  39970. }
  39971. },
  39972. side: {
  39973. height: math.unit(9, "feet"),
  39974. weight: math.unit(621, "lb"),
  39975. name: "Side",
  39976. image: {
  39977. source: "./media/characters/unmru/side.svg",
  39978. extra: 1781/1671,
  39979. bottom: 127/1908
  39980. }
  39981. },
  39982. back: {
  39983. height: math.unit(9, "feet"),
  39984. weight: math.unit(621, "lb"),
  39985. name: "Back",
  39986. image: {
  39987. source: "./media/characters/unmru/back.svg",
  39988. extra: 1894/1765,
  39989. bottom: 75/1969
  39990. }
  39991. },
  39992. dick: {
  39993. height: math.unit(3, "feet"),
  39994. weight: math.unit(35, "lb"),
  39995. name: "Dick",
  39996. image: {
  39997. source: "./media/characters/unmru/dick.svg"
  39998. }
  39999. },
  40000. },
  40001. [
  40002. {
  40003. name: "Normal",
  40004. height: math.unit(9, "feet")
  40005. },
  40006. {
  40007. name: "Natural",
  40008. height: math.unit(27, "feet"),
  40009. default: true
  40010. },
  40011. {
  40012. name: "Giant",
  40013. height: math.unit(90, "feet")
  40014. },
  40015. {
  40016. name: "Kaiju",
  40017. height: math.unit(270, "feet")
  40018. },
  40019. {
  40020. name: "Macro",
  40021. height: math.unit(900, "feet")
  40022. },
  40023. {
  40024. name: "Macro+",
  40025. height: math.unit(2700, "feet")
  40026. },
  40027. {
  40028. name: "Megamacro",
  40029. height: math.unit(9000, "feet")
  40030. },
  40031. {
  40032. name: "City-Crushing",
  40033. height: math.unit(27000, "feet")
  40034. },
  40035. {
  40036. name: "Mountain-Mashing",
  40037. height: math.unit(90000, "feet")
  40038. },
  40039. {
  40040. name: "Earth-Eclipsing",
  40041. height: math.unit(2.7e8, "feet")
  40042. },
  40043. {
  40044. name: "Sol-Swallowing",
  40045. height: math.unit(9e10, "feet")
  40046. },
  40047. {
  40048. name: "Majoris-Munching",
  40049. height: math.unit(2.7e13, "feet")
  40050. },
  40051. ]
  40052. ))
  40053. characterMakers.push(() => makeCharacter(
  40054. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40055. {
  40056. front: {
  40057. height: math.unit(1, "inch"),
  40058. name: "Front",
  40059. image: {
  40060. source: "./media/characters/squeaks-mouse/front.svg",
  40061. extra: 352/308,
  40062. bottom: 25/377
  40063. }
  40064. },
  40065. },
  40066. [
  40067. {
  40068. name: "Micro",
  40069. height: math.unit(1, "inch"),
  40070. default: true
  40071. },
  40072. ]
  40073. ))
  40074. characterMakers.push(() => makeCharacter(
  40075. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40076. {
  40077. side: {
  40078. height: math.unit(35, "feet"),
  40079. name: "Side",
  40080. image: {
  40081. source: "./media/characters/sayko/side.svg",
  40082. extra: 1697/1021,
  40083. bottom: 82/1779
  40084. }
  40085. },
  40086. head: {
  40087. height: math.unit(16, "feet"),
  40088. name: "Head",
  40089. image: {
  40090. source: "./media/characters/sayko/head.svg"
  40091. }
  40092. },
  40093. forepaw: {
  40094. height: math.unit(7.85, "feet"),
  40095. name: "Forepaw",
  40096. image: {
  40097. source: "./media/characters/sayko/forepaw.svg"
  40098. }
  40099. },
  40100. hindpaw: {
  40101. height: math.unit(8.8, "feet"),
  40102. name: "Hindpaw",
  40103. image: {
  40104. source: "./media/characters/sayko/hindpaw.svg"
  40105. }
  40106. },
  40107. },
  40108. [
  40109. {
  40110. name: "Normal",
  40111. height: math.unit(35, "feet"),
  40112. default: true
  40113. },
  40114. {
  40115. name: "Colossus",
  40116. height: math.unit(100, "meters")
  40117. },
  40118. {
  40119. name: "\"Small\" Deity",
  40120. height: math.unit(1, "km")
  40121. },
  40122. {
  40123. name: "\"Large\" Deity",
  40124. height: math.unit(15, "km")
  40125. },
  40126. ]
  40127. ))
  40128. characterMakers.push(() => makeCharacter(
  40129. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40130. {
  40131. front: {
  40132. height: math.unit(6, "feet"),
  40133. weight: math.unit(250, "lb"),
  40134. name: "Front",
  40135. image: {
  40136. source: "./media/characters/mukiro/front.svg",
  40137. extra: 1368/1310,
  40138. bottom: 34/1402
  40139. }
  40140. },
  40141. },
  40142. [
  40143. {
  40144. name: "Normal",
  40145. height: math.unit(6, "feet"),
  40146. default: true
  40147. },
  40148. ]
  40149. ))
  40150. characterMakers.push(() => makeCharacter(
  40151. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40152. {
  40153. front: {
  40154. height: math.unit(12 + 4/12, "feet"),
  40155. name: "Front",
  40156. image: {
  40157. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40158. extra: 1346/1311,
  40159. bottom: 65/1411
  40160. }
  40161. },
  40162. },
  40163. [
  40164. {
  40165. name: "Base",
  40166. height: math.unit(12 + 4/12, "feet"),
  40167. default: true
  40168. },
  40169. {
  40170. name: "Macro",
  40171. height: math.unit(150, "feet")
  40172. },
  40173. {
  40174. name: "Mega",
  40175. height: math.unit(2, "miles")
  40176. },
  40177. {
  40178. name: "Demi God",
  40179. height: math.unit(4, "AU")
  40180. },
  40181. {
  40182. name: "God Size",
  40183. height: math.unit(1, "universe")
  40184. },
  40185. ]
  40186. ))
  40187. characterMakers.push(() => makeCharacter(
  40188. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40189. {
  40190. front: {
  40191. height: math.unit(3 + 3/12, "feet"),
  40192. weight: math.unit(88, "lb"),
  40193. name: "Front",
  40194. image: {
  40195. source: "./media/characters/trey/front.svg",
  40196. extra: 1815/1509,
  40197. bottom: 60/1875
  40198. }
  40199. },
  40200. },
  40201. [
  40202. {
  40203. name: "Normal",
  40204. height: math.unit(3 + 3/12, "feet"),
  40205. default: true
  40206. },
  40207. ]
  40208. ))
  40209. characterMakers.push(() => makeCharacter(
  40210. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40211. {
  40212. front: {
  40213. height: math.unit(4, "meters"),
  40214. name: "Front",
  40215. image: {
  40216. source: "./media/characters/adelonda/front.svg",
  40217. extra: 1077/982,
  40218. bottom: 39/1116
  40219. }
  40220. },
  40221. back: {
  40222. height: math.unit(4, "meters"),
  40223. name: "Back",
  40224. image: {
  40225. source: "./media/characters/adelonda/back.svg",
  40226. extra: 1105/1003,
  40227. bottom: 25/1130
  40228. }
  40229. },
  40230. feral: {
  40231. height: math.unit(40/1.5, "meters"),
  40232. name: "Feral",
  40233. image: {
  40234. source: "./media/characters/adelonda/feral.svg",
  40235. extra: 597/271,
  40236. bottom: 387/984
  40237. }
  40238. },
  40239. },
  40240. [
  40241. {
  40242. name: "Normal",
  40243. height: math.unit(4, "meters"),
  40244. default: true
  40245. },
  40246. ]
  40247. ))
  40248. characterMakers.push(() => makeCharacter(
  40249. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40250. {
  40251. front: {
  40252. height: math.unit(8 + 4/12, "feet"),
  40253. weight: math.unit(670, "lb"),
  40254. name: "Front",
  40255. image: {
  40256. source: "./media/characters/acadiel/front.svg",
  40257. extra: 1901/1595,
  40258. bottom: 142/2043
  40259. }
  40260. },
  40261. },
  40262. [
  40263. {
  40264. name: "Normal",
  40265. height: math.unit(8 + 4/12, "feet"),
  40266. default: true
  40267. },
  40268. {
  40269. name: "Macro",
  40270. height: math.unit(200, "feet")
  40271. },
  40272. ]
  40273. ))
  40274. characterMakers.push(() => makeCharacter(
  40275. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40276. {
  40277. front: {
  40278. height: math.unit(6 + 2/12, "feet"),
  40279. weight: math.unit(185, "lb"),
  40280. name: "Front",
  40281. image: {
  40282. source: "./media/characters/kayne-ein/front.svg",
  40283. extra: 1780/1560,
  40284. bottom: 81/1861
  40285. }
  40286. },
  40287. },
  40288. [
  40289. {
  40290. name: "Normal",
  40291. height: math.unit(6 + 2/12, "feet"),
  40292. default: true
  40293. },
  40294. {
  40295. name: "Transformation Stage",
  40296. height: math.unit(15, "feet")
  40297. },
  40298. {
  40299. name: "Macro",
  40300. height: math.unit(150, "feet")
  40301. },
  40302. {
  40303. name: "Earth's Shadow",
  40304. height: math.unit(6200, "miles")
  40305. },
  40306. {
  40307. name: "Universal Demon",
  40308. height: math.unit(28e9, "parsecs")
  40309. },
  40310. {
  40311. name: "Multiverse God",
  40312. height: math.unit(3, "multiverses")
  40313. },
  40314. ]
  40315. ))
  40316. characterMakers.push(() => makeCharacter(
  40317. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40318. {
  40319. front: {
  40320. height: math.unit(5 + 5/12, "feet"),
  40321. name: "Front",
  40322. image: {
  40323. source: "./media/characters/fawn/front.svg",
  40324. extra: 1873/1731,
  40325. bottom: 95/1968
  40326. }
  40327. },
  40328. back: {
  40329. height: math.unit(5 + 5/12, "feet"),
  40330. name: "Back",
  40331. image: {
  40332. source: "./media/characters/fawn/back.svg",
  40333. extra: 1813/1700,
  40334. bottom: 14/1827
  40335. }
  40336. },
  40337. hoof: {
  40338. height: math.unit(1.45, "feet"),
  40339. name: "Hoof",
  40340. image: {
  40341. source: "./media/characters/fawn/hoof.svg"
  40342. }
  40343. },
  40344. },
  40345. [
  40346. {
  40347. name: "Normal",
  40348. height: math.unit(5 + 5/12, "feet"),
  40349. default: true
  40350. },
  40351. ]
  40352. ))
  40353. characterMakers.push(() => makeCharacter(
  40354. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40355. {
  40356. front: {
  40357. height: math.unit(2 + 5/12, "feet"),
  40358. name: "Front",
  40359. image: {
  40360. source: "./media/characters/orion/front.svg",
  40361. extra: 1366/1304,
  40362. bottom: 43/1409
  40363. }
  40364. },
  40365. paw: {
  40366. height: math.unit(0.52, "feet"),
  40367. name: "Paw",
  40368. image: {
  40369. source: "./media/characters/orion/paw.svg"
  40370. }
  40371. },
  40372. },
  40373. [
  40374. {
  40375. name: "Normal",
  40376. height: math.unit(2 + 5/12, "feet"),
  40377. default: true
  40378. },
  40379. ]
  40380. ))
  40381. characterMakers.push(() => makeCharacter(
  40382. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40383. {
  40384. front: {
  40385. height: math.unit(5 + 10/12, "feet"),
  40386. name: "Front",
  40387. image: {
  40388. source: "./media/characters/vera/front.svg",
  40389. extra: 1680/1575,
  40390. bottom: 49/1729
  40391. }
  40392. },
  40393. back: {
  40394. height: math.unit(5 + 10/12, "feet"),
  40395. name: "Back",
  40396. image: {
  40397. source: "./media/characters/vera/back.svg",
  40398. extra: 1700/1588,
  40399. bottom: 18/1718
  40400. }
  40401. },
  40402. arcanine: {
  40403. height: math.unit(6 + 8/12, "feet"),
  40404. name: "Arcanine",
  40405. image: {
  40406. source: "./media/characters/vera/arcanine.svg",
  40407. extra: 1590/1511,
  40408. bottom: 71/1661
  40409. }
  40410. },
  40411. maw: {
  40412. height: math.unit(0.82, "feet"),
  40413. name: "Maw",
  40414. image: {
  40415. source: "./media/characters/vera/maw.svg"
  40416. }
  40417. },
  40418. mawArcanine: {
  40419. height: math.unit(0.97, "feet"),
  40420. name: "Maw (Arcanine)",
  40421. image: {
  40422. source: "./media/characters/vera/maw-arcanine.svg"
  40423. }
  40424. },
  40425. paw: {
  40426. height: math.unit(0.75, "feet"),
  40427. name: "Paw",
  40428. image: {
  40429. source: "./media/characters/vera/paw.svg"
  40430. }
  40431. },
  40432. pawprint: {
  40433. height: math.unit(0.52, "feet"),
  40434. name: "Pawprint",
  40435. image: {
  40436. source: "./media/characters/vera/pawprint.svg"
  40437. }
  40438. },
  40439. },
  40440. [
  40441. {
  40442. name: "Normal",
  40443. height: math.unit(5 + 10/12, "feet"),
  40444. default: true
  40445. },
  40446. {
  40447. name: "Macro",
  40448. height: math.unit(75, "feet")
  40449. },
  40450. ]
  40451. ))
  40452. characterMakers.push(() => makeCharacter(
  40453. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40454. {
  40455. front: {
  40456. height: math.unit(4, "feet"),
  40457. weight: math.unit(40, "lb"),
  40458. name: "Front",
  40459. image: {
  40460. source: "./media/characters/orvan-rabbit/front.svg",
  40461. extra: 1896/1642,
  40462. bottom: 29/1925
  40463. }
  40464. },
  40465. },
  40466. [
  40467. {
  40468. name: "Normal",
  40469. height: math.unit(4, "feet"),
  40470. default: true
  40471. },
  40472. ]
  40473. ))
  40474. characterMakers.push(() => makeCharacter(
  40475. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40476. {
  40477. front: {
  40478. height: math.unit(6, "feet"),
  40479. weight: math.unit(168, "lb"),
  40480. name: "Front",
  40481. image: {
  40482. source: "./media/characters/lisa/front.svg",
  40483. extra: 2065/1867,
  40484. bottom: 46/2111
  40485. }
  40486. },
  40487. back: {
  40488. height: math.unit(6, "feet"),
  40489. weight: math.unit(168, "lb"),
  40490. name: "Back",
  40491. image: {
  40492. source: "./media/characters/lisa/back.svg",
  40493. extra: 1982/1838,
  40494. bottom: 29/2011
  40495. }
  40496. },
  40497. maw: {
  40498. height: math.unit(0.81, "feet"),
  40499. name: "Maw",
  40500. image: {
  40501. source: "./media/characters/lisa/maw.svg"
  40502. }
  40503. },
  40504. paw: {
  40505. height: math.unit(0.9, "feet"),
  40506. name: "Paw",
  40507. image: {
  40508. source: "./media/characters/lisa/paw.svg"
  40509. }
  40510. },
  40511. caribousune: {
  40512. height: math.unit(7 + 2/12, "feet"),
  40513. weight: math.unit(268, "lb"),
  40514. name: "Caribousune",
  40515. image: {
  40516. source: "./media/characters/lisa/caribousune.svg",
  40517. extra: 1843/1633,
  40518. bottom: 29/1872
  40519. }
  40520. },
  40521. frontCaribousune: {
  40522. height: math.unit(7 + 2/12, "feet"),
  40523. weight: math.unit(268, "lb"),
  40524. name: "Front (Caribousune)",
  40525. image: {
  40526. source: "./media/characters/lisa/front-caribousune.svg",
  40527. extra: 1818/1638,
  40528. bottom: 52/1870
  40529. }
  40530. },
  40531. sideCaribousune: {
  40532. height: math.unit(7 + 2/12, "feet"),
  40533. weight: math.unit(268, "lb"),
  40534. name: "Side (Caribousune)",
  40535. image: {
  40536. source: "./media/characters/lisa/side-caribousune.svg",
  40537. extra: 1851/1635,
  40538. bottom: 16/1867
  40539. }
  40540. },
  40541. backCaribousune: {
  40542. height: math.unit(7 + 2/12, "feet"),
  40543. weight: math.unit(268, "lb"),
  40544. name: "Back (Caribousune)",
  40545. image: {
  40546. source: "./media/characters/lisa/back-caribousune.svg",
  40547. extra: 1801/1604,
  40548. bottom: 44/1845
  40549. }
  40550. },
  40551. caribou: {
  40552. height: math.unit(7 + 2/12, "feet"),
  40553. weight: math.unit(268, "lb"),
  40554. name: "Caribou",
  40555. image: {
  40556. source: "./media/characters/lisa/caribou.svg",
  40557. extra: 1843/1633,
  40558. bottom: 29/1872
  40559. }
  40560. },
  40561. frontCaribou: {
  40562. height: math.unit(7 + 2/12, "feet"),
  40563. weight: math.unit(268, "lb"),
  40564. name: "Front (Caribou)",
  40565. image: {
  40566. source: "./media/characters/lisa/front-caribou.svg",
  40567. extra: 1818/1638,
  40568. bottom: 52/1870
  40569. }
  40570. },
  40571. sideCaribou: {
  40572. height: math.unit(7 + 2/12, "feet"),
  40573. weight: math.unit(268, "lb"),
  40574. name: "Side (Caribou)",
  40575. image: {
  40576. source: "./media/characters/lisa/side-caribou.svg",
  40577. extra: 1851/1635,
  40578. bottom: 16/1867
  40579. }
  40580. },
  40581. backCaribou: {
  40582. height: math.unit(7 + 2/12, "feet"),
  40583. weight: math.unit(268, "lb"),
  40584. name: "Back (Caribou)",
  40585. image: {
  40586. source: "./media/characters/lisa/back-caribou.svg",
  40587. extra: 1801/1604,
  40588. bottom: 44/1845
  40589. }
  40590. },
  40591. mawCaribou: {
  40592. height: math.unit(1.45, "feet"),
  40593. name: "Maw (Caribou)",
  40594. image: {
  40595. source: "./media/characters/lisa/maw-caribou.svg"
  40596. }
  40597. },
  40598. mawCaribousune: {
  40599. height: math.unit(1.45, "feet"),
  40600. name: "Maw (Caribousune)",
  40601. image: {
  40602. source: "./media/characters/lisa/maw-caribousune.svg"
  40603. }
  40604. },
  40605. pawCaribousune: {
  40606. height: math.unit(1.61, "feet"),
  40607. name: "Paw (Caribou)",
  40608. image: {
  40609. source: "./media/characters/lisa/paw-caribousune.svg"
  40610. }
  40611. },
  40612. },
  40613. [
  40614. {
  40615. name: "Normal",
  40616. height: math.unit(6, "feet")
  40617. },
  40618. {
  40619. name: "God Size",
  40620. height: math.unit(72, "feet"),
  40621. default: true
  40622. },
  40623. {
  40624. name: "Towering",
  40625. height: math.unit(288, "feet")
  40626. },
  40627. {
  40628. name: "City Size",
  40629. height: math.unit(48384, "feet")
  40630. },
  40631. {
  40632. name: "Continental",
  40633. height: math.unit(4200, "miles")
  40634. },
  40635. {
  40636. name: "Planet Eater",
  40637. height: math.unit(42, "earths")
  40638. },
  40639. {
  40640. name: "Star Swallower",
  40641. height: math.unit(42, "solarradii")
  40642. },
  40643. {
  40644. name: "System Swallower",
  40645. height: math.unit(84000, "AU")
  40646. },
  40647. {
  40648. name: "Galaxy Gobbler",
  40649. height: math.unit(42, "galaxies")
  40650. },
  40651. {
  40652. name: "Universe Devourer",
  40653. height: math.unit(42, "universes")
  40654. },
  40655. {
  40656. name: "Multiverse Muncher",
  40657. height: math.unit(42, "multiverses")
  40658. },
  40659. ]
  40660. ))
  40661. characterMakers.push(() => makeCharacter(
  40662. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40663. {
  40664. front: {
  40665. height: math.unit(36, "feet"),
  40666. name: "Front",
  40667. image: {
  40668. source: "./media/characters/shadow-rat/front.svg",
  40669. extra: 1845/1758,
  40670. bottom: 83/1928
  40671. }
  40672. },
  40673. },
  40674. [
  40675. {
  40676. name: "Macro",
  40677. height: math.unit(36, "feet"),
  40678. default: true
  40679. },
  40680. ]
  40681. ))
  40682. characterMakers.push(() => makeCharacter(
  40683. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40684. {
  40685. side: {
  40686. height: math.unit(8, "feet"),
  40687. weight: math.unit(2630, "lb"),
  40688. name: "Side",
  40689. image: {
  40690. source: "./media/characters/torallia/side.svg",
  40691. extra: 2164/2021,
  40692. bottom: 371/2535
  40693. }
  40694. },
  40695. },
  40696. [
  40697. {
  40698. name: "Mortal Interaction",
  40699. height: math.unit(8, "feet")
  40700. },
  40701. {
  40702. name: "Natural",
  40703. height: math.unit(24, "feet"),
  40704. default: true
  40705. },
  40706. {
  40707. name: "Giant",
  40708. height: math.unit(80, "feet")
  40709. },
  40710. {
  40711. name: "Kaiju",
  40712. height: math.unit(240, "feet")
  40713. },
  40714. {
  40715. name: "Macro",
  40716. height: math.unit(800, "feet")
  40717. },
  40718. {
  40719. name: "Macro+",
  40720. height: math.unit(2400, "feet")
  40721. },
  40722. {
  40723. name: "Macro++",
  40724. height: math.unit(8000, "feet")
  40725. },
  40726. {
  40727. name: "City-Crushing",
  40728. height: math.unit(24000, "feet")
  40729. },
  40730. {
  40731. name: "Mountain-Mashing",
  40732. height: math.unit(80000, "feet")
  40733. },
  40734. {
  40735. name: "District Demolisher",
  40736. height: math.unit(240000, "feet")
  40737. },
  40738. {
  40739. name: "Tri-County Terror",
  40740. height: math.unit(800000, "feet")
  40741. },
  40742. {
  40743. name: "State Smasher",
  40744. height: math.unit(2.4e6, "feet")
  40745. },
  40746. {
  40747. name: "Nation Nemesis",
  40748. height: math.unit(8e6, "feet")
  40749. },
  40750. {
  40751. name: "Continent Cracker",
  40752. height: math.unit(2.4e7, "feet")
  40753. },
  40754. {
  40755. name: "Planet-Pillaging",
  40756. height: math.unit(8e7, "feet")
  40757. },
  40758. {
  40759. name: "Earth-Eclipsing",
  40760. height: math.unit(2.4e8, "feet")
  40761. },
  40762. {
  40763. name: "Jovian-Jostling",
  40764. height: math.unit(8e8, "feet")
  40765. },
  40766. {
  40767. name: "Gas Giant Gulper",
  40768. height: math.unit(2.4e9, "feet")
  40769. },
  40770. {
  40771. name: "Astral Annihilator",
  40772. height: math.unit(8e9, "feet")
  40773. },
  40774. {
  40775. name: "Celestial Conqueror",
  40776. height: math.unit(2.4e10, "feet")
  40777. },
  40778. {
  40779. name: "Sol-Swallowing",
  40780. height: math.unit(8e10, "feet")
  40781. },
  40782. {
  40783. name: "Hunter of the Heavens",
  40784. height: math.unit(2.4e13, "feet")
  40785. },
  40786. ]
  40787. ))
  40788. characterMakers.push(() => makeCharacter(
  40789. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40790. {
  40791. front: {
  40792. height: math.unit(6 + 8/12, "feet"),
  40793. weight: math.unit(250, "kilograms"),
  40794. volume: math.unit(28, "liters"),
  40795. name: "Front",
  40796. image: {
  40797. source: "./media/characters/rebecca-pawlson/front.svg",
  40798. extra: 1737/1596,
  40799. bottom: 107/1844
  40800. }
  40801. },
  40802. back: {
  40803. height: math.unit(6 + 8/12, "feet"),
  40804. weight: math.unit(250, "kilograms"),
  40805. volume: math.unit(28, "liters"),
  40806. name: "Back",
  40807. image: {
  40808. source: "./media/characters/rebecca-pawlson/back.svg",
  40809. extra: 1702/1523,
  40810. bottom: 86/1788
  40811. }
  40812. },
  40813. },
  40814. [
  40815. {
  40816. name: "Normal",
  40817. height: math.unit(6 + 8/12, "feet")
  40818. },
  40819. {
  40820. name: "Mini Macro",
  40821. height: math.unit(10, "feet"),
  40822. default: true
  40823. },
  40824. {
  40825. name: "Macro",
  40826. height: math.unit(100, "feet")
  40827. },
  40828. {
  40829. name: "Mega Macro",
  40830. height: math.unit(2500, "feet")
  40831. },
  40832. {
  40833. name: "Giga Macro",
  40834. height: math.unit(50, "miles")
  40835. },
  40836. ]
  40837. ))
  40838. characterMakers.push(() => makeCharacter(
  40839. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40840. {
  40841. front: {
  40842. height: math.unit(7 + 6/12, "feet"),
  40843. weight: math.unit(600, "lb"),
  40844. name: "Front",
  40845. image: {
  40846. source: "./media/characters/moxie-nova/front.svg",
  40847. extra: 1734/1652,
  40848. bottom: 41/1775
  40849. }
  40850. },
  40851. },
  40852. [
  40853. {
  40854. name: "Normal",
  40855. height: math.unit(7 + 6/12, "feet"),
  40856. default: true
  40857. },
  40858. ]
  40859. ))
  40860. characterMakers.push(() => makeCharacter(
  40861. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40862. {
  40863. goat: {
  40864. height: math.unit(4, "feet"),
  40865. weight: math.unit(180, "lb"),
  40866. name: "Goat",
  40867. image: {
  40868. source: "./media/characters/tiffany/goat.svg",
  40869. extra: 1845/1595,
  40870. bottom: 106/1951
  40871. }
  40872. },
  40873. front: {
  40874. height: math.unit(5, "feet"),
  40875. weight: math.unit(150, "lb"),
  40876. name: "Foxcoon",
  40877. image: {
  40878. source: "./media/characters/tiffany/foxcoon.svg",
  40879. extra: 1941/1845,
  40880. bottom: 58/1999
  40881. }
  40882. },
  40883. },
  40884. [
  40885. {
  40886. name: "Normal",
  40887. height: math.unit(5, "feet"),
  40888. default: true
  40889. },
  40890. ]
  40891. ))
  40892. characterMakers.push(() => makeCharacter(
  40893. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40894. {
  40895. front: {
  40896. height: math.unit(8, "feet"),
  40897. weight: math.unit(300, "lb"),
  40898. name: "Front",
  40899. image: {
  40900. source: "./media/characters/raxinath/front.svg",
  40901. extra: 1407/1309,
  40902. bottom: 39/1446
  40903. }
  40904. },
  40905. back: {
  40906. height: math.unit(8, "feet"),
  40907. weight: math.unit(300, "lb"),
  40908. name: "Back",
  40909. image: {
  40910. source: "./media/characters/raxinath/back.svg",
  40911. extra: 1405/1315,
  40912. bottom: 9/1414
  40913. }
  40914. },
  40915. },
  40916. [
  40917. {
  40918. name: "Speck",
  40919. height: math.unit(0.5, "nm")
  40920. },
  40921. {
  40922. name: "Micro",
  40923. height: math.unit(3, "inches")
  40924. },
  40925. {
  40926. name: "Kobold",
  40927. height: math.unit(3, "feet")
  40928. },
  40929. {
  40930. name: "Normal",
  40931. height: math.unit(8, "feet"),
  40932. default: true
  40933. },
  40934. {
  40935. name: "Giant",
  40936. height: math.unit(50, "feet")
  40937. },
  40938. {
  40939. name: "Macro",
  40940. height: math.unit(1000, "feet")
  40941. },
  40942. {
  40943. name: "Megamacro",
  40944. height: math.unit(1, "mile")
  40945. },
  40946. ]
  40947. ))
  40948. characterMakers.push(() => makeCharacter(
  40949. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40950. {
  40951. front: {
  40952. height: math.unit(10, "feet"),
  40953. weight: math.unit(1442, "lb"),
  40954. name: "Front",
  40955. image: {
  40956. source: "./media/characters/mal-dragon/front.svg",
  40957. extra: 1515/1444,
  40958. bottom: 113/1628
  40959. }
  40960. },
  40961. back: {
  40962. height: math.unit(10, "feet"),
  40963. weight: math.unit(1442, "lb"),
  40964. name: "Back",
  40965. image: {
  40966. source: "./media/characters/mal-dragon/back.svg",
  40967. extra: 1527/1434,
  40968. bottom: 25/1552
  40969. }
  40970. },
  40971. },
  40972. [
  40973. {
  40974. name: "Mortal Interaction",
  40975. height: math.unit(10, "feet"),
  40976. default: true
  40977. },
  40978. {
  40979. name: "Large",
  40980. height: math.unit(30, "feet")
  40981. },
  40982. {
  40983. name: "Kaiju",
  40984. height: math.unit(300, "feet")
  40985. },
  40986. {
  40987. name: "Megamacro",
  40988. height: math.unit(10000, "feet")
  40989. },
  40990. {
  40991. name: "Continent Cracker",
  40992. height: math.unit(30000000, "feet")
  40993. },
  40994. {
  40995. name: "Sol-Swallowing",
  40996. height: math.unit(1e11, "feet")
  40997. },
  40998. {
  40999. name: "Light Universal",
  41000. height: math.unit(5, "universes")
  41001. },
  41002. {
  41003. name: "Universe Atoms",
  41004. height: math.unit(1.829e9, "universes")
  41005. },
  41006. {
  41007. name: "Light Multiversal",
  41008. height: math.unit(5, "multiverses")
  41009. },
  41010. {
  41011. name: "Multiverse Atoms",
  41012. height: math.unit(1.829e9, "multiverses")
  41013. },
  41014. {
  41015. name: "Fabric of Time",
  41016. height: math.unit(1e262, "multiverses")
  41017. },
  41018. ]
  41019. ))
  41020. characterMakers.push(() => makeCharacter(
  41021. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41022. {
  41023. front: {
  41024. height: math.unit(9, "feet"),
  41025. weight: math.unit(1050, "lb"),
  41026. name: "Front",
  41027. image: {
  41028. source: "./media/characters/tabitha/front.svg",
  41029. extra: 2083/1994,
  41030. bottom: 68/2151
  41031. }
  41032. },
  41033. },
  41034. [
  41035. {
  41036. name: "Baseline",
  41037. height: math.unit(9, "feet"),
  41038. default: true
  41039. },
  41040. {
  41041. name: "Giant",
  41042. height: math.unit(90, "feet")
  41043. },
  41044. {
  41045. name: "Macro",
  41046. height: math.unit(900, "feet")
  41047. },
  41048. {
  41049. name: "Megamacro",
  41050. height: math.unit(9000, "feet")
  41051. },
  41052. {
  41053. name: "City-Crushing",
  41054. height: math.unit(27000, "feet")
  41055. },
  41056. {
  41057. name: "Mountain-Mashing",
  41058. height: math.unit(90000, "feet")
  41059. },
  41060. {
  41061. name: "Nation Nemesis",
  41062. height: math.unit(9e6, "feet")
  41063. },
  41064. {
  41065. name: "Continent Cracker",
  41066. height: math.unit(27e6, "feet")
  41067. },
  41068. {
  41069. name: "Earth-Eclipsing",
  41070. height: math.unit(2.7e8, "feet")
  41071. },
  41072. {
  41073. name: "Gas Giant Gulper",
  41074. height: math.unit(2.7e9, "feet")
  41075. },
  41076. {
  41077. name: "Sol-Swallowing",
  41078. height: math.unit(9e10, "feet")
  41079. },
  41080. {
  41081. name: "Galaxy Gulper",
  41082. height: math.unit(9, "galaxies")
  41083. },
  41084. {
  41085. name: "Cosmos Churner",
  41086. height: math.unit(9, "universes")
  41087. },
  41088. ]
  41089. ))
  41090. characterMakers.push(() => makeCharacter(
  41091. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41092. {
  41093. front: {
  41094. height: math.unit(160, "cm"),
  41095. weight: math.unit(55, "kg"),
  41096. name: "Front",
  41097. image: {
  41098. source: "./media/characters/tow/front.svg",
  41099. extra: 1751/1722,
  41100. bottom: 74/1825
  41101. }
  41102. },
  41103. },
  41104. [
  41105. {
  41106. name: "Norm",
  41107. height: math.unit(160, "cm")
  41108. },
  41109. {
  41110. name: "Casual",
  41111. height: math.unit(3200, "m"),
  41112. default: true
  41113. },
  41114. {
  41115. name: "Show-Off",
  41116. height: math.unit(160, "km")
  41117. },
  41118. ]
  41119. ))
  41120. characterMakers.push(() => makeCharacter(
  41121. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41122. {
  41123. front: {
  41124. height: math.unit(7 + 11/12, "feet"),
  41125. weight: math.unit(342.8, "lb"),
  41126. name: "Front",
  41127. image: {
  41128. source: "./media/characters/vivian-orca-dragon/front.svg",
  41129. extra: 1890/1865,
  41130. bottom: 28/1918
  41131. }
  41132. },
  41133. },
  41134. [
  41135. {
  41136. name: "Micro",
  41137. height: math.unit(5, "inches")
  41138. },
  41139. {
  41140. name: "Normal",
  41141. height: math.unit(7 + 11/12, "feet"),
  41142. default: true
  41143. },
  41144. {
  41145. name: "Macro",
  41146. height: math.unit(395 + 7/12, "feet")
  41147. },
  41148. ]
  41149. ))
  41150. characterMakers.push(() => makeCharacter(
  41151. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41152. {
  41153. side: {
  41154. height: math.unit(10, "feet"),
  41155. weight: math.unit(1442, "lb"),
  41156. name: "Side",
  41157. image: {
  41158. source: "./media/characters/lotherakon/side.svg",
  41159. extra: 1604/1497,
  41160. bottom: 89/1693
  41161. }
  41162. },
  41163. },
  41164. [
  41165. {
  41166. name: "Mortal Interaction",
  41167. height: math.unit(10, "feet")
  41168. },
  41169. {
  41170. name: "Large",
  41171. height: math.unit(30, "feet"),
  41172. default: true
  41173. },
  41174. {
  41175. name: "Giant",
  41176. height: math.unit(100, "feet")
  41177. },
  41178. {
  41179. name: "Kaiju",
  41180. height: math.unit(300, "feet")
  41181. },
  41182. {
  41183. name: "Macro",
  41184. height: math.unit(1000, "feet")
  41185. },
  41186. {
  41187. name: "Macro+",
  41188. height: math.unit(3000, "feet")
  41189. },
  41190. {
  41191. name: "Megamacro",
  41192. height: math.unit(10000, "feet")
  41193. },
  41194. {
  41195. name: "City-Crushing",
  41196. height: math.unit(30000, "feet")
  41197. },
  41198. {
  41199. name: "Continent Cracker",
  41200. height: math.unit(30e6, "feet")
  41201. },
  41202. {
  41203. name: "Earth Eclipsing",
  41204. height: math.unit(3e8, "feet")
  41205. },
  41206. {
  41207. name: "Gas Giant Gulper",
  41208. height: math.unit(3e9, "feet")
  41209. },
  41210. {
  41211. name: "Sol-Swallowing",
  41212. height: math.unit(1e11, "feet")
  41213. },
  41214. {
  41215. name: "System Swallower",
  41216. height: math.unit(3e14, "feet")
  41217. },
  41218. {
  41219. name: "Galaxy Gulper",
  41220. height: math.unit(10, "galaxies")
  41221. },
  41222. {
  41223. name: "Light Universal",
  41224. height: math.unit(5, "universes")
  41225. },
  41226. {
  41227. name: "Universe Palm",
  41228. height: math.unit(20, "universes")
  41229. },
  41230. {
  41231. name: "Light Multiversal",
  41232. height: math.unit(5, "multiverses")
  41233. },
  41234. {
  41235. name: "Multiverse Palm",
  41236. height: math.unit(20, "multiverses")
  41237. },
  41238. {
  41239. name: "Inferno Incarnate",
  41240. height: math.unit(1e7, "multiverses")
  41241. },
  41242. ]
  41243. ))
  41244. characterMakers.push(() => makeCharacter(
  41245. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41246. {
  41247. front: {
  41248. height: math.unit(8, "feet"),
  41249. weight: math.unit(1200, "lb"),
  41250. name: "Front",
  41251. image: {
  41252. source: "./media/characters/malithee/front.svg",
  41253. extra: 1675/1640,
  41254. bottom: 162/1837
  41255. }
  41256. },
  41257. },
  41258. [
  41259. {
  41260. name: "Mortal Interaction",
  41261. height: math.unit(8, "feet"),
  41262. default: true
  41263. },
  41264. {
  41265. name: "Large",
  41266. height: math.unit(24, "feet")
  41267. },
  41268. {
  41269. name: "Kaiju",
  41270. height: math.unit(240, "feet")
  41271. },
  41272. {
  41273. name: "Megamacro",
  41274. height: math.unit(8000, "feet")
  41275. },
  41276. {
  41277. name: "Continent Cracker",
  41278. height: math.unit(24e6, "feet")
  41279. },
  41280. {
  41281. name: "Earth-Eclipsing",
  41282. height: math.unit(2.4e8, "feet")
  41283. },
  41284. {
  41285. name: "Sol-Swallowing",
  41286. height: math.unit(8e10, "feet")
  41287. },
  41288. {
  41289. name: "Galaxy Gulper",
  41290. height: math.unit(8, "galaxies")
  41291. },
  41292. {
  41293. name: "Light Universal",
  41294. height: math.unit(4, "universes")
  41295. },
  41296. {
  41297. name: "Universe Atoms",
  41298. height: math.unit(1.829e9, "universes")
  41299. },
  41300. {
  41301. name: "Light Multiversal",
  41302. height: math.unit(4, "multiverses")
  41303. },
  41304. {
  41305. name: "Multiverse Atoms",
  41306. height: math.unit(1.829e9, "multiverses")
  41307. },
  41308. {
  41309. name: "Nigh-Omnipresence",
  41310. height: math.unit(8e261, "multiverses")
  41311. },
  41312. ]
  41313. ))
  41314. characterMakers.push(() => makeCharacter(
  41315. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41316. {
  41317. front: {
  41318. height: math.unit(10, "feet"),
  41319. weight: math.unit(1500, "lb"),
  41320. name: "Front",
  41321. image: {
  41322. source: "./media/characters/miles-thestia/front.svg",
  41323. extra: 1812/1727,
  41324. bottom: 86/1898
  41325. }
  41326. },
  41327. back: {
  41328. height: math.unit(10, "feet"),
  41329. weight: math.unit(1500, "lb"),
  41330. name: "Back",
  41331. image: {
  41332. source: "./media/characters/miles-thestia/back.svg",
  41333. extra: 1799/1690,
  41334. bottom: 47/1846
  41335. }
  41336. },
  41337. frontNsfw: {
  41338. height: math.unit(10, "feet"),
  41339. weight: math.unit(1500, "lb"),
  41340. name: "Front (NSFW)",
  41341. image: {
  41342. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41343. extra: 1812/1727,
  41344. bottom: 86/1898
  41345. }
  41346. },
  41347. },
  41348. [
  41349. {
  41350. name: "Mini-Macro",
  41351. height: math.unit(10, "feet"),
  41352. default: true
  41353. },
  41354. ]
  41355. ))
  41356. characterMakers.push(() => makeCharacter(
  41357. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41358. {
  41359. front: {
  41360. height: math.unit(25, "feet"),
  41361. name: "Front",
  41362. image: {
  41363. source: "./media/characters/titan-s-wulf/front.svg",
  41364. extra: 1560/1484,
  41365. bottom: 76/1636
  41366. }
  41367. },
  41368. },
  41369. [
  41370. {
  41371. name: "Smallest",
  41372. height: math.unit(25, "feet"),
  41373. default: true
  41374. },
  41375. {
  41376. name: "Normal",
  41377. height: math.unit(200, "feet")
  41378. },
  41379. {
  41380. name: "Macro",
  41381. height: math.unit(200000, "feet")
  41382. },
  41383. {
  41384. name: "Multiversal Original",
  41385. height: math.unit(10000, "multiverses")
  41386. },
  41387. ]
  41388. ))
  41389. characterMakers.push(() => makeCharacter(
  41390. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41391. {
  41392. front: {
  41393. height: math.unit(8, "feet"),
  41394. weight: math.unit(553, "lb"),
  41395. name: "Front",
  41396. image: {
  41397. source: "./media/characters/tawendeh/front.svg",
  41398. extra: 2365/2268,
  41399. bottom: 83/2448
  41400. }
  41401. },
  41402. frontClothed: {
  41403. height: math.unit(8, "feet"),
  41404. weight: math.unit(553, "lb"),
  41405. name: "Front (Clothed)",
  41406. image: {
  41407. source: "./media/characters/tawendeh/front-clothed.svg",
  41408. extra: 2365/2268,
  41409. bottom: 83/2448
  41410. }
  41411. },
  41412. back: {
  41413. height: math.unit(8, "feet"),
  41414. weight: math.unit(553, "lb"),
  41415. name: "Back",
  41416. image: {
  41417. source: "./media/characters/tawendeh/back.svg",
  41418. extra: 2397/2294,
  41419. bottom: 42/2439
  41420. }
  41421. },
  41422. },
  41423. [
  41424. {
  41425. name: "Mortal Interaction",
  41426. height: math.unit(8, "feet"),
  41427. default: true
  41428. },
  41429. {
  41430. name: "Giant",
  41431. height: math.unit(80, "feet")
  41432. },
  41433. {
  41434. name: "Macro",
  41435. height: math.unit(800, "feet")
  41436. },
  41437. {
  41438. name: "Megamacro",
  41439. height: math.unit(8000, "feet")
  41440. },
  41441. {
  41442. name: "City-Crushing",
  41443. height: math.unit(24000, "feet")
  41444. },
  41445. {
  41446. name: "Mountain-Mashing",
  41447. height: math.unit(80000, "feet")
  41448. },
  41449. {
  41450. name: "Nation Nemesis",
  41451. height: math.unit(8e6, "feet")
  41452. },
  41453. {
  41454. name: "Continent Cracker",
  41455. height: math.unit(24e6, "feet")
  41456. },
  41457. {
  41458. name: "Earth-Eclipsing",
  41459. height: math.unit(2.4e8, "feet")
  41460. },
  41461. {
  41462. name: "Gas Giant Gulper",
  41463. height: math.unit(2.4e9, "feet")
  41464. },
  41465. {
  41466. name: "Sol-Swallowing",
  41467. height: math.unit(8e10, "feet")
  41468. },
  41469. {
  41470. name: "Galaxy Gulper",
  41471. height: math.unit(8, "galaxies")
  41472. },
  41473. {
  41474. name: "Cosmos Churner",
  41475. height: math.unit(8, "universes")
  41476. },
  41477. {
  41478. name: "Omnipotent Otter",
  41479. height: math.unit(80, "universes")
  41480. },
  41481. ]
  41482. ))
  41483. characterMakers.push(() => makeCharacter(
  41484. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41485. {
  41486. front: {
  41487. height: math.unit(2.6, "meters"),
  41488. weight: math.unit(900, "kg"),
  41489. name: "Front",
  41490. image: {
  41491. source: "./media/characters/neesha/front.svg",
  41492. extra: 1803/1653,
  41493. bottom: 128/1931
  41494. }
  41495. },
  41496. },
  41497. [
  41498. {
  41499. name: "Normal",
  41500. height: math.unit(2.6, "meters"),
  41501. default: true
  41502. },
  41503. {
  41504. name: "Macro",
  41505. height: math.unit(50, "meters")
  41506. },
  41507. ]
  41508. ))
  41509. characterMakers.push(() => makeCharacter(
  41510. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41511. {
  41512. front: {
  41513. height: math.unit(5, "feet"),
  41514. weight: math.unit(185, "lb"),
  41515. name: "Front",
  41516. image: {
  41517. source: "./media/characters/kyera/front.svg",
  41518. extra: 1875/1790,
  41519. bottom: 96/1971
  41520. }
  41521. },
  41522. },
  41523. [
  41524. {
  41525. name: "Normal",
  41526. height: math.unit(5, "feet"),
  41527. default: true
  41528. },
  41529. ]
  41530. ))
  41531. characterMakers.push(() => makeCharacter(
  41532. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41533. {
  41534. front: {
  41535. height: math.unit(7 + 6/12, "feet"),
  41536. weight: math.unit(540, "lb"),
  41537. name: "Front",
  41538. image: {
  41539. source: "./media/characters/yuko/front.svg",
  41540. extra: 1282/1222,
  41541. bottom: 101/1383
  41542. }
  41543. },
  41544. frontClothed: {
  41545. height: math.unit(7 + 6/12, "feet"),
  41546. weight: math.unit(540, "lb"),
  41547. name: "Front (Clothed)",
  41548. image: {
  41549. source: "./media/characters/yuko/front-clothed.svg",
  41550. extra: 1282/1222,
  41551. bottom: 101/1383
  41552. }
  41553. },
  41554. },
  41555. [
  41556. {
  41557. name: "Normal",
  41558. height: math.unit(7 + 6/12, "feet"),
  41559. default: true
  41560. },
  41561. {
  41562. name: "Macro",
  41563. height: math.unit(26 + 9/12, "feet")
  41564. },
  41565. {
  41566. name: "Megamacro",
  41567. height: math.unit(300, "feet")
  41568. },
  41569. {
  41570. name: "Gigamacro",
  41571. height: math.unit(5000, "feet")
  41572. },
  41573. {
  41574. name: "Planetary",
  41575. height: math.unit(10000, "miles")
  41576. },
  41577. ]
  41578. ))
  41579. characterMakers.push(() => makeCharacter(
  41580. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41581. {
  41582. front: {
  41583. height: math.unit(8 + 2/12, "feet"),
  41584. weight: math.unit(600, "lb"),
  41585. name: "Front",
  41586. image: {
  41587. source: "./media/characters/deam-nitrel/front.svg",
  41588. extra: 1308/1234,
  41589. bottom: 125/1433
  41590. }
  41591. },
  41592. },
  41593. [
  41594. {
  41595. name: "Normal",
  41596. height: math.unit(8 + 2/12, "feet"),
  41597. default: true
  41598. },
  41599. ]
  41600. ))
  41601. characterMakers.push(() => makeCharacter(
  41602. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41603. {
  41604. front: {
  41605. height: math.unit(6.1, "feet"),
  41606. weight: math.unit(180, "lb"),
  41607. name: "Front",
  41608. image: {
  41609. source: "./media/characters/skyress/front.svg",
  41610. extra: 1045/915,
  41611. bottom: 28/1073
  41612. }
  41613. },
  41614. maw: {
  41615. height: math.unit(1, "feet"),
  41616. name: "Maw",
  41617. image: {
  41618. source: "./media/characters/skyress/maw.svg"
  41619. }
  41620. },
  41621. },
  41622. [
  41623. {
  41624. name: "Normal",
  41625. height: math.unit(6.1, "feet"),
  41626. default: true
  41627. },
  41628. {
  41629. name: "Macro",
  41630. height: math.unit(200, "feet")
  41631. },
  41632. ]
  41633. ))
  41634. characterMakers.push(() => makeCharacter(
  41635. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41636. {
  41637. front: {
  41638. height: math.unit(4 + 2/12, "feet"),
  41639. weight: math.unit(40, "kg"),
  41640. name: "Front",
  41641. image: {
  41642. source: "./media/characters/amethyst-jones/front.svg",
  41643. extra: 1220/1150,
  41644. bottom: 101/1321
  41645. }
  41646. },
  41647. },
  41648. [
  41649. {
  41650. name: "Normal",
  41651. height: math.unit(4 + 2/12, "feet"),
  41652. default: true
  41653. },
  41654. ]
  41655. ))
  41656. characterMakers.push(() => makeCharacter(
  41657. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41658. {
  41659. front: {
  41660. height: math.unit(1.7, "m"),
  41661. weight: math.unit(135, "lb"),
  41662. name: "Front",
  41663. image: {
  41664. source: "./media/characters/jade/front.svg",
  41665. extra: 1818/1767,
  41666. bottom: 32/1850
  41667. }
  41668. },
  41669. back: {
  41670. height: math.unit(1.7, "m"),
  41671. weight: math.unit(135, "lb"),
  41672. name: "Back",
  41673. image: {
  41674. source: "./media/characters/jade/back.svg",
  41675. extra: 1869/1809,
  41676. bottom: 35/1904
  41677. }
  41678. },
  41679. hand: {
  41680. height: math.unit(0.24, "m"),
  41681. name: "Hand",
  41682. image: {
  41683. source: "./media/characters/jade/hand.svg"
  41684. }
  41685. },
  41686. foot: {
  41687. height: math.unit(0.263, "m"),
  41688. name: "Foot",
  41689. image: {
  41690. source: "./media/characters/jade/foot.svg"
  41691. }
  41692. },
  41693. dick: {
  41694. height: math.unit(0.47, "m"),
  41695. name: "Dick",
  41696. image: {
  41697. source: "./media/characters/jade/dick.svg"
  41698. }
  41699. },
  41700. },
  41701. [
  41702. {
  41703. name: "Micro",
  41704. height: math.unit(22, "cm")
  41705. },
  41706. {
  41707. name: "Normal",
  41708. height: math.unit(1.7, "m"),
  41709. default: true
  41710. },
  41711. {
  41712. name: "Macro",
  41713. height: math.unit(152, "m")
  41714. },
  41715. ]
  41716. ))
  41717. characterMakers.push(() => makeCharacter(
  41718. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41719. {
  41720. front: {
  41721. height: math.unit(100, "miles"),
  41722. weight: math.unit(20000, "tons"),
  41723. name: "Front",
  41724. image: {
  41725. source: "./media/characters/cookie/front.svg",
  41726. extra: 1125/1070,
  41727. bottom: 30/1155
  41728. }
  41729. },
  41730. },
  41731. [
  41732. {
  41733. name: "Big",
  41734. height: math.unit(50, "feet")
  41735. },
  41736. {
  41737. name: "Macro",
  41738. height: math.unit(100, "miles"),
  41739. default: true
  41740. },
  41741. {
  41742. name: "Megamacro",
  41743. height: math.unit(90000, "miles")
  41744. },
  41745. ]
  41746. ))
  41747. characterMakers.push(() => makeCharacter(
  41748. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41749. {
  41750. front: {
  41751. height: math.unit(6, "feet"),
  41752. weight: math.unit(145, "lb"),
  41753. name: "Front",
  41754. image: {
  41755. source: "./media/characters/farzian/front.svg",
  41756. extra: 1902/1693,
  41757. bottom: 108/2010
  41758. }
  41759. },
  41760. },
  41761. [
  41762. {
  41763. name: "Macro",
  41764. height: math.unit(500, "feet"),
  41765. default: true
  41766. },
  41767. ]
  41768. ))
  41769. characterMakers.push(() => makeCharacter(
  41770. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41771. {
  41772. front: {
  41773. height: math.unit(3 + 6/12, "feet"),
  41774. weight: math.unit(50, "lb"),
  41775. name: "Front",
  41776. image: {
  41777. source: "./media/characters/kimberly-tilson/front.svg",
  41778. extra: 1400/1322,
  41779. bottom: 36/1436
  41780. }
  41781. },
  41782. back: {
  41783. height: math.unit(3 + 6/12, "feet"),
  41784. weight: math.unit(50, "lb"),
  41785. name: "Back",
  41786. image: {
  41787. source: "./media/characters/kimberly-tilson/back.svg",
  41788. extra: 1370/1307,
  41789. bottom: 20/1390
  41790. }
  41791. },
  41792. },
  41793. [
  41794. {
  41795. name: "Normal",
  41796. height: math.unit(3 + 6/12, "feet"),
  41797. default: true
  41798. },
  41799. ]
  41800. ))
  41801. characterMakers.push(() => makeCharacter(
  41802. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41803. {
  41804. front: {
  41805. height: math.unit(1148, "feet"),
  41806. weight: math.unit(34057, "lb"),
  41807. name: "Front",
  41808. image: {
  41809. source: "./media/characters/harthos/front.svg",
  41810. extra: 1391/1339,
  41811. bottom: 13/1404
  41812. }
  41813. },
  41814. },
  41815. [
  41816. {
  41817. name: "Macro",
  41818. height: math.unit(1148, "feet"),
  41819. default: true
  41820. },
  41821. ]
  41822. ))
  41823. characterMakers.push(() => makeCharacter(
  41824. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41825. {
  41826. front: {
  41827. height: math.unit(15, "feet"),
  41828. name: "Front",
  41829. image: {
  41830. source: "./media/characters/hypatia/front.svg",
  41831. extra: 1653/1591,
  41832. bottom: 79/1732
  41833. }
  41834. },
  41835. },
  41836. [
  41837. {
  41838. name: "Normal",
  41839. height: math.unit(15, "feet")
  41840. },
  41841. {
  41842. name: "Small",
  41843. height: math.unit(300, "feet")
  41844. },
  41845. {
  41846. name: "Macro",
  41847. height: math.unit(2500, "feet"),
  41848. default: true
  41849. },
  41850. {
  41851. name: "Mega Macro",
  41852. height: math.unit(1500, "miles")
  41853. },
  41854. {
  41855. name: "Giga Macro",
  41856. height: math.unit(1.5e6, "miles")
  41857. },
  41858. ]
  41859. ))
  41860. characterMakers.push(() => makeCharacter(
  41861. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41862. {
  41863. front: {
  41864. height: math.unit(6, "feet"),
  41865. weight: math.unit(200, "lb"),
  41866. name: "Front",
  41867. image: {
  41868. source: "./media/characters/wulver/front.svg",
  41869. extra: 1724/1632,
  41870. bottom: 130/1854
  41871. }
  41872. },
  41873. frontNsfw: {
  41874. height: math.unit(6, "feet"),
  41875. weight: math.unit(200, "lb"),
  41876. name: "Front (NSFW)",
  41877. image: {
  41878. source: "./media/characters/wulver/front-nsfw.svg",
  41879. extra: 1724/1632,
  41880. bottom: 130/1854
  41881. }
  41882. },
  41883. },
  41884. [
  41885. {
  41886. name: "Human-Sized",
  41887. height: math.unit(6, "feet")
  41888. },
  41889. {
  41890. name: "Normal",
  41891. height: math.unit(4, "meters"),
  41892. default: true
  41893. },
  41894. {
  41895. name: "Large",
  41896. height: math.unit(6, "m")
  41897. },
  41898. ]
  41899. ))
  41900. characterMakers.push(() => makeCharacter(
  41901. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41902. {
  41903. front: {
  41904. height: math.unit(7, "feet"),
  41905. name: "Front",
  41906. image: {
  41907. source: "./media/characters/maru/front.svg",
  41908. extra: 1595/1570,
  41909. bottom: 0/1595
  41910. }
  41911. },
  41912. },
  41913. [
  41914. {
  41915. name: "Normal",
  41916. height: math.unit(7, "feet"),
  41917. default: true
  41918. },
  41919. {
  41920. name: "Macro",
  41921. height: math.unit(700, "feet")
  41922. },
  41923. {
  41924. name: "Mega Macro",
  41925. height: math.unit(25, "miles")
  41926. },
  41927. ]
  41928. ))
  41929. characterMakers.push(() => makeCharacter(
  41930. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41931. {
  41932. front: {
  41933. height: math.unit(6, "feet"),
  41934. weight: math.unit(170, "lb"),
  41935. name: "Front",
  41936. image: {
  41937. source: "./media/characters/xenon/front.svg",
  41938. extra: 1376/1305,
  41939. bottom: 56/1432
  41940. }
  41941. },
  41942. back: {
  41943. height: math.unit(6, "feet"),
  41944. weight: math.unit(170, "lb"),
  41945. name: "Back",
  41946. image: {
  41947. source: "./media/characters/xenon/back.svg",
  41948. extra: 1328/1259,
  41949. bottom: 95/1423
  41950. }
  41951. },
  41952. maw: {
  41953. height: math.unit(0.52, "feet"),
  41954. name: "Maw",
  41955. image: {
  41956. source: "./media/characters/xenon/maw.svg"
  41957. }
  41958. },
  41959. handLeft: {
  41960. height: math.unit(0.82 * 169 / 153, "feet"),
  41961. name: "Hand (Left)",
  41962. image: {
  41963. source: "./media/characters/xenon/hand-left.svg"
  41964. }
  41965. },
  41966. handRight: {
  41967. height: math.unit(0.82, "feet"),
  41968. name: "Hand (Right)",
  41969. image: {
  41970. source: "./media/characters/xenon/hand-right.svg"
  41971. }
  41972. },
  41973. footLeft: {
  41974. height: math.unit(1.13, "feet"),
  41975. name: "Foot (Left)",
  41976. image: {
  41977. source: "./media/characters/xenon/foot-left.svg"
  41978. }
  41979. },
  41980. footRight: {
  41981. height: math.unit(1.13 * 194 / 196, "feet"),
  41982. name: "Foot (Right)",
  41983. image: {
  41984. source: "./media/characters/xenon/foot-right.svg"
  41985. }
  41986. },
  41987. },
  41988. [
  41989. {
  41990. name: "Micro",
  41991. height: math.unit(0.8, "inches")
  41992. },
  41993. {
  41994. name: "Normal",
  41995. height: math.unit(6, "feet")
  41996. },
  41997. {
  41998. name: "Macro",
  41999. height: math.unit(50, "feet"),
  42000. default: true
  42001. },
  42002. {
  42003. name: "Macro+",
  42004. height: math.unit(250, "feet")
  42005. },
  42006. {
  42007. name: "Megamacro",
  42008. height: math.unit(1500, "feet")
  42009. },
  42010. ]
  42011. ))
  42012. characterMakers.push(() => makeCharacter(
  42013. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42014. {
  42015. front: {
  42016. height: math.unit(7 + 5/12, "feet"),
  42017. name: "Front",
  42018. image: {
  42019. source: "./media/characters/zane/front.svg",
  42020. extra: 1260/1203,
  42021. bottom: 94/1354
  42022. }
  42023. },
  42024. back: {
  42025. height: math.unit(5.05, "feet"),
  42026. name: "Back",
  42027. image: {
  42028. source: "./media/characters/zane/back.svg",
  42029. extra: 893/829,
  42030. bottom: 30/923
  42031. }
  42032. },
  42033. werewolf: {
  42034. height: math.unit(11, "feet"),
  42035. name: "Werewolf",
  42036. image: {
  42037. source: "./media/characters/zane/werewolf.svg",
  42038. extra: 1383/1323,
  42039. bottom: 89/1472
  42040. }
  42041. },
  42042. foot: {
  42043. height: math.unit(1.46, "feet"),
  42044. name: "Foot",
  42045. image: {
  42046. source: "./media/characters/zane/foot.svg"
  42047. }
  42048. },
  42049. footFront: {
  42050. height: math.unit(0.784, "feet"),
  42051. name: "Foot (Front)",
  42052. image: {
  42053. source: "./media/characters/zane/foot-front.svg"
  42054. }
  42055. },
  42056. dick: {
  42057. height: math.unit(1.95, "feet"),
  42058. name: "Dick",
  42059. image: {
  42060. source: "./media/characters/zane/dick.svg"
  42061. }
  42062. },
  42063. dickWerewolf: {
  42064. height: math.unit(3.77, "feet"),
  42065. name: "Dick (Werewolf)",
  42066. image: {
  42067. source: "./media/characters/zane/dick.svg"
  42068. }
  42069. },
  42070. },
  42071. [
  42072. {
  42073. name: "Normal",
  42074. height: math.unit(7 + 5/12, "feet"),
  42075. default: true
  42076. },
  42077. ]
  42078. ))
  42079. characterMakers.push(() => makeCharacter(
  42080. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42081. {
  42082. front: {
  42083. height: math.unit(6 + 2/12, "feet"),
  42084. weight: math.unit(284, "lb"),
  42085. name: "Front",
  42086. image: {
  42087. source: "./media/characters/benni-desparque/front.svg",
  42088. extra: 1353/1126,
  42089. bottom: 69/1422
  42090. }
  42091. },
  42092. },
  42093. [
  42094. {
  42095. name: "Civilian",
  42096. height: math.unit(6 + 2/12, "feet")
  42097. },
  42098. {
  42099. name: "Normal",
  42100. height: math.unit(98, "feet"),
  42101. default: true
  42102. },
  42103. {
  42104. name: "Kaiju Fighter",
  42105. height: math.unit(268, "feet")
  42106. },
  42107. ]
  42108. ))
  42109. characterMakers.push(() => makeCharacter(
  42110. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42111. {
  42112. front: {
  42113. height: math.unit(5, "feet"),
  42114. weight: math.unit(105, "lb"),
  42115. name: "Front",
  42116. image: {
  42117. source: "./media/characters/maxine/front.svg",
  42118. extra: 1386/1250,
  42119. bottom: 71/1457
  42120. }
  42121. },
  42122. },
  42123. [
  42124. {
  42125. name: "Normal",
  42126. height: math.unit(5, "feet"),
  42127. default: true
  42128. },
  42129. ]
  42130. ))
  42131. characterMakers.push(() => makeCharacter(
  42132. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42133. {
  42134. front: {
  42135. height: math.unit(11 + 7/12, "feet"),
  42136. weight: math.unit(9576, "lb"),
  42137. name: "Front",
  42138. image: {
  42139. source: "./media/characters/scaly/front.svg",
  42140. extra: 888/867,
  42141. bottom: 36/924
  42142. }
  42143. },
  42144. },
  42145. [
  42146. {
  42147. name: "Normal",
  42148. height: math.unit(11 + 7/12, "feet"),
  42149. default: true
  42150. },
  42151. ]
  42152. ))
  42153. characterMakers.push(() => makeCharacter(
  42154. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42155. {
  42156. front: {
  42157. height: math.unit(6 + 3/12, "feet"),
  42158. name: "Front",
  42159. image: {
  42160. source: "./media/characters/saelria/front.svg",
  42161. extra: 1243/1138,
  42162. bottom: 46/1289
  42163. }
  42164. },
  42165. },
  42166. [
  42167. {
  42168. name: "Micro",
  42169. height: math.unit(6, "inches"),
  42170. },
  42171. {
  42172. name: "Normal",
  42173. height: math.unit(6 + 3/12, "feet"),
  42174. default: true
  42175. },
  42176. {
  42177. name: "Macro",
  42178. height: math.unit(25, "feet")
  42179. },
  42180. ]
  42181. ))
  42182. characterMakers.push(() => makeCharacter(
  42183. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42184. {
  42185. front: {
  42186. height: math.unit(80, "meters"),
  42187. weight: math.unit(7000, "tonnes"),
  42188. name: "Front",
  42189. image: {
  42190. source: "./media/characters/tef/front.svg",
  42191. extra: 2036/1991,
  42192. bottom: 54/2090
  42193. }
  42194. },
  42195. back: {
  42196. height: math.unit(80, "meters"),
  42197. weight: math.unit(7000, "tonnes"),
  42198. name: "Back",
  42199. image: {
  42200. source: "./media/characters/tef/back.svg",
  42201. extra: 2036/1991,
  42202. bottom: 54/2090
  42203. }
  42204. },
  42205. },
  42206. [
  42207. {
  42208. name: "Macro",
  42209. height: math.unit(80, "meters"),
  42210. default: true
  42211. },
  42212. ]
  42213. ))
  42214. characterMakers.push(() => makeCharacter(
  42215. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42216. {
  42217. front: {
  42218. height: math.unit(13, "feet"),
  42219. weight: math.unit(6, "tons"),
  42220. name: "Front",
  42221. image: {
  42222. source: "./media/characters/rover/front.svg",
  42223. extra: 1233/1156,
  42224. bottom: 50/1283
  42225. }
  42226. },
  42227. back: {
  42228. height: math.unit(13, "feet"),
  42229. weight: math.unit(6, "tons"),
  42230. name: "Back",
  42231. image: {
  42232. source: "./media/characters/rover/back.svg",
  42233. extra: 1327/1258,
  42234. bottom: 39/1366
  42235. }
  42236. },
  42237. },
  42238. [
  42239. {
  42240. name: "Normal",
  42241. height: math.unit(13, "feet"),
  42242. default: true
  42243. },
  42244. {
  42245. name: "Macro",
  42246. height: math.unit(1300, "feet")
  42247. },
  42248. {
  42249. name: "Megamacro",
  42250. height: math.unit(1300, "miles")
  42251. },
  42252. {
  42253. name: "Gigamacro",
  42254. height: math.unit(1300000, "miles")
  42255. },
  42256. ]
  42257. ))
  42258. characterMakers.push(() => makeCharacter(
  42259. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42260. {
  42261. front: {
  42262. height: math.unit(6, "feet"),
  42263. weight: math.unit(150, "lb"),
  42264. name: "Front",
  42265. image: {
  42266. source: "./media/characters/ariz/front.svg",
  42267. extra: 1401/1346,
  42268. bottom: 5/1406
  42269. }
  42270. },
  42271. },
  42272. [
  42273. {
  42274. name: "Normal",
  42275. height: math.unit(10, "feet"),
  42276. default: true
  42277. },
  42278. ]
  42279. ))
  42280. characterMakers.push(() => makeCharacter(
  42281. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42282. {
  42283. front: {
  42284. height: math.unit(6, "feet"),
  42285. weight: math.unit(140, "lb"),
  42286. name: "Front",
  42287. image: {
  42288. source: "./media/characters/sigrun/front.svg",
  42289. extra: 1418/1359,
  42290. bottom: 27/1445
  42291. }
  42292. },
  42293. },
  42294. [
  42295. {
  42296. name: "Macro",
  42297. height: math.unit(35, "feet"),
  42298. default: true
  42299. },
  42300. ]
  42301. ))
  42302. characterMakers.push(() => makeCharacter(
  42303. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42304. {
  42305. front: {
  42306. height: math.unit(6, "feet"),
  42307. weight: math.unit(150, "lb"),
  42308. name: "Front",
  42309. image: {
  42310. source: "./media/characters/numin/front.svg",
  42311. extra: 1433/1388,
  42312. bottom: 12/1445
  42313. }
  42314. },
  42315. },
  42316. [
  42317. {
  42318. name: "Macro",
  42319. height: math.unit(21.5, "km"),
  42320. default: true
  42321. },
  42322. ]
  42323. ))
  42324. characterMakers.push(() => makeCharacter(
  42325. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42326. {
  42327. front: {
  42328. height: math.unit(6, "feet"),
  42329. weight: math.unit(463, "lb"),
  42330. name: "Front",
  42331. image: {
  42332. source: "./media/characters/melwa/front.svg",
  42333. extra: 1307/1248,
  42334. bottom: 93/1400
  42335. }
  42336. },
  42337. },
  42338. [
  42339. {
  42340. name: "Macro",
  42341. height: math.unit(50, "meters"),
  42342. default: true
  42343. },
  42344. ]
  42345. ))
  42346. characterMakers.push(() => makeCharacter(
  42347. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42348. {
  42349. front: {
  42350. height: math.unit(325, "feet"),
  42351. name: "Front",
  42352. image: {
  42353. source: "./media/characters/zorkaiju/front.svg",
  42354. extra: 1955/1814,
  42355. bottom: 40/1995
  42356. }
  42357. },
  42358. frontExtended: {
  42359. height: math.unit(325, "feet"),
  42360. name: "Front (Extended)",
  42361. image: {
  42362. source: "./media/characters/zorkaiju/front-extended.svg",
  42363. extra: 1955/1814,
  42364. bottom: 40/1995
  42365. }
  42366. },
  42367. side: {
  42368. height: math.unit(325, "feet"),
  42369. name: "Side",
  42370. image: {
  42371. source: "./media/characters/zorkaiju/side.svg",
  42372. extra: 1495/1396,
  42373. bottom: 17/1512
  42374. }
  42375. },
  42376. sideExtended: {
  42377. height: math.unit(325, "feet"),
  42378. name: "Side (Extended)",
  42379. image: {
  42380. source: "./media/characters/zorkaiju/side-extended.svg",
  42381. extra: 1495/1396,
  42382. bottom: 17/1512
  42383. }
  42384. },
  42385. back: {
  42386. height: math.unit(325, "feet"),
  42387. name: "Back",
  42388. image: {
  42389. source: "./media/characters/zorkaiju/back.svg",
  42390. extra: 1959/1821,
  42391. bottom: 31/1990
  42392. }
  42393. },
  42394. backExtended: {
  42395. height: math.unit(325, "feet"),
  42396. name: "Back (Extended)",
  42397. image: {
  42398. source: "./media/characters/zorkaiju/back-extended.svg",
  42399. extra: 1959/1821,
  42400. bottom: 31/1990
  42401. }
  42402. },
  42403. hand: {
  42404. height: math.unit(58.4, "feet"),
  42405. name: "Hand",
  42406. image: {
  42407. source: "./media/characters/zorkaiju/hand.svg"
  42408. }
  42409. },
  42410. handExtended: {
  42411. height: math.unit(61.4, "feet"),
  42412. name: "Hand (Extended)",
  42413. image: {
  42414. source: "./media/characters/zorkaiju/hand-extended.svg"
  42415. }
  42416. },
  42417. foot: {
  42418. height: math.unit(95, "feet"),
  42419. name: "Foot",
  42420. image: {
  42421. source: "./media/characters/zorkaiju/foot.svg"
  42422. }
  42423. },
  42424. leftArm: {
  42425. height: math.unit(59, "feet"),
  42426. name: "Left Arm",
  42427. image: {
  42428. source: "./media/characters/zorkaiju/left-arm.svg"
  42429. }
  42430. },
  42431. rightArm: {
  42432. height: math.unit(59, "feet"),
  42433. name: "Right Arm",
  42434. image: {
  42435. source: "./media/characters/zorkaiju/right-arm.svg"
  42436. }
  42437. },
  42438. leftArmExtended: {
  42439. height: math.unit(59 * 1.033546, "feet"),
  42440. name: "Left Arm (Extended)",
  42441. image: {
  42442. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42443. }
  42444. },
  42445. rightArmExtended: {
  42446. height: math.unit(59 * 1.0496, "feet"),
  42447. name: "Right Arm (Extended)",
  42448. image: {
  42449. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42450. }
  42451. },
  42452. tail: {
  42453. height: math.unit(104, "feet"),
  42454. name: "Tail",
  42455. image: {
  42456. source: "./media/characters/zorkaiju/tail.svg"
  42457. }
  42458. },
  42459. tailExtended: {
  42460. height: math.unit(104, "feet"),
  42461. name: "Tail (Extended)",
  42462. image: {
  42463. source: "./media/characters/zorkaiju/tail-extended.svg"
  42464. }
  42465. },
  42466. tailBottom: {
  42467. height: math.unit(104, "feet"),
  42468. name: "Tail Bottom",
  42469. image: {
  42470. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42471. }
  42472. },
  42473. crystal: {
  42474. height: math.unit(27.54, "feet"),
  42475. name: "Crystal",
  42476. image: {
  42477. source: "./media/characters/zorkaiju/crystal.svg"
  42478. }
  42479. },
  42480. },
  42481. [
  42482. {
  42483. name: "Kaiju",
  42484. height: math.unit(325, "feet"),
  42485. default: true
  42486. },
  42487. ]
  42488. ))
  42489. characterMakers.push(() => makeCharacter(
  42490. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42491. {
  42492. front: {
  42493. height: math.unit(6 + 1/12, "feet"),
  42494. weight: math.unit(115, "lb"),
  42495. name: "Front",
  42496. image: {
  42497. source: "./media/characters/bailey-belfry/front.svg",
  42498. extra: 1240/1121,
  42499. bottom: 101/1341
  42500. }
  42501. },
  42502. },
  42503. [
  42504. {
  42505. name: "Normal",
  42506. height: math.unit(6 + 1/12, "feet"),
  42507. default: true
  42508. },
  42509. ]
  42510. ))
  42511. characterMakers.push(() => makeCharacter(
  42512. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42513. {
  42514. side: {
  42515. height: math.unit(4, "meters"),
  42516. weight: math.unit(250, "kg"),
  42517. name: "Side",
  42518. image: {
  42519. source: "./media/characters/blacky/side.svg",
  42520. extra: 1027/919,
  42521. bottom: 43/1070
  42522. }
  42523. },
  42524. maw: {
  42525. height: math.unit(1, "meters"),
  42526. name: "Maw",
  42527. image: {
  42528. source: "./media/characters/blacky/maw.svg"
  42529. }
  42530. },
  42531. paw: {
  42532. height: math.unit(1, "meters"),
  42533. name: "Paw",
  42534. image: {
  42535. source: "./media/characters/blacky/paw.svg"
  42536. }
  42537. },
  42538. },
  42539. [
  42540. {
  42541. name: "Normal",
  42542. height: math.unit(4, "meters"),
  42543. default: true
  42544. },
  42545. ]
  42546. ))
  42547. characterMakers.push(() => makeCharacter(
  42548. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42549. {
  42550. front: {
  42551. height: math.unit(170, "cm"),
  42552. weight: math.unit(66, "kg"),
  42553. name: "Front",
  42554. image: {
  42555. source: "./media/characters/thux-ei/front.svg",
  42556. extra: 1109/1011,
  42557. bottom: 8/1117
  42558. }
  42559. },
  42560. },
  42561. [
  42562. {
  42563. name: "Normal",
  42564. height: math.unit(170, "cm"),
  42565. default: true
  42566. },
  42567. ]
  42568. ))
  42569. characterMakers.push(() => makeCharacter(
  42570. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42571. {
  42572. front: {
  42573. height: math.unit(5, "feet"),
  42574. weight: math.unit(120, "lb"),
  42575. name: "Front",
  42576. image: {
  42577. source: "./media/characters/roxanne-voltaire/front.svg",
  42578. extra: 1901/1779,
  42579. bottom: 53/1954
  42580. }
  42581. },
  42582. },
  42583. [
  42584. {
  42585. name: "Normal",
  42586. height: math.unit(5, "feet"),
  42587. default: true
  42588. },
  42589. {
  42590. name: "Giant",
  42591. height: math.unit(50, "feet")
  42592. },
  42593. {
  42594. name: "Titan",
  42595. height: math.unit(500, "feet")
  42596. },
  42597. {
  42598. name: "Macro",
  42599. height: math.unit(5000, "feet")
  42600. },
  42601. {
  42602. name: "Megamacro",
  42603. height: math.unit(50000, "feet")
  42604. },
  42605. {
  42606. name: "Gigamacro",
  42607. height: math.unit(500000, "feet")
  42608. },
  42609. {
  42610. name: "Teramacro",
  42611. height: math.unit(5e6, "feet")
  42612. },
  42613. ]
  42614. ))
  42615. characterMakers.push(() => makeCharacter(
  42616. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42617. {
  42618. front: {
  42619. height: math.unit(6 + 2/12, "feet"),
  42620. name: "Front",
  42621. image: {
  42622. source: "./media/characters/squeaks/front.svg",
  42623. extra: 1823/1768,
  42624. bottom: 138/1961
  42625. }
  42626. },
  42627. },
  42628. [
  42629. {
  42630. name: "Micro",
  42631. height: math.unit(0.5, "inches")
  42632. },
  42633. {
  42634. name: "Normal",
  42635. height: math.unit(6 + 2/12, "feet"),
  42636. default: true
  42637. },
  42638. {
  42639. name: "Macro",
  42640. height: math.unit(600, "feet")
  42641. },
  42642. ]
  42643. ))
  42644. characterMakers.push(() => makeCharacter(
  42645. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42646. {
  42647. front: {
  42648. height: math.unit(1.72, "meters"),
  42649. name: "Front",
  42650. image: {
  42651. source: "./media/characters/archinger/front.svg",
  42652. extra: 1861/1675,
  42653. bottom: 125/1986
  42654. }
  42655. },
  42656. back: {
  42657. height: math.unit(1.72, "meters"),
  42658. name: "Back",
  42659. image: {
  42660. source: "./media/characters/archinger/back.svg",
  42661. extra: 1844/1701,
  42662. bottom: 104/1948
  42663. }
  42664. },
  42665. cock: {
  42666. height: math.unit(0.59, "feet"),
  42667. name: "Cock",
  42668. image: {
  42669. source: "./media/characters/archinger/cock.svg"
  42670. }
  42671. },
  42672. },
  42673. [
  42674. {
  42675. name: "Normal",
  42676. height: math.unit(1.72, "meters"),
  42677. default: true
  42678. },
  42679. {
  42680. name: "Macro",
  42681. height: math.unit(84, "meters")
  42682. },
  42683. {
  42684. name: "Macro+",
  42685. height: math.unit(112, "meters")
  42686. },
  42687. {
  42688. name: "Macro++",
  42689. height: math.unit(960, "meters")
  42690. },
  42691. {
  42692. name: "Macro+++",
  42693. height: math.unit(4, "km")
  42694. },
  42695. {
  42696. name: "Macro++++",
  42697. height: math.unit(48, "km")
  42698. },
  42699. {
  42700. name: "Macro+++++",
  42701. height: math.unit(4500, "km")
  42702. },
  42703. ]
  42704. ))
  42705. characterMakers.push(() => makeCharacter(
  42706. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42707. {
  42708. front: {
  42709. height: math.unit(5 + 5/12, "feet"),
  42710. name: "Front",
  42711. image: {
  42712. source: "./media/characters/alsnapz/front.svg",
  42713. extra: 1157/1065,
  42714. bottom: 42/1199
  42715. }
  42716. },
  42717. },
  42718. [
  42719. {
  42720. name: "Normal",
  42721. height: math.unit(5 + 5/12, "feet"),
  42722. default: true
  42723. },
  42724. ]
  42725. ))
  42726. characterMakers.push(() => makeCharacter(
  42727. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42728. {
  42729. side: {
  42730. height: math.unit(3.2, "earths"),
  42731. name: "Side",
  42732. image: {
  42733. source: "./media/characters/mag/side.svg",
  42734. extra: 1331/1008,
  42735. bottom: 52/1383
  42736. }
  42737. },
  42738. wing: {
  42739. height: math.unit(1.94, "earths"),
  42740. name: "Wing",
  42741. image: {
  42742. source: "./media/characters/mag/wing.svg"
  42743. }
  42744. },
  42745. dick: {
  42746. height: math.unit(1.8, "earths"),
  42747. name: "Dick",
  42748. image: {
  42749. source: "./media/characters/mag/dick.svg"
  42750. }
  42751. },
  42752. ass: {
  42753. height: math.unit(1.33, "earths"),
  42754. name: "Ass",
  42755. image: {
  42756. source: "./media/characters/mag/ass.svg"
  42757. }
  42758. },
  42759. head: {
  42760. height: math.unit(1.1, "earths"),
  42761. name: "Head",
  42762. image: {
  42763. source: "./media/characters/mag/head.svg"
  42764. }
  42765. },
  42766. maw: {
  42767. height: math.unit(1.62, "earths"),
  42768. name: "Maw",
  42769. image: {
  42770. source: "./media/characters/mag/maw.svg"
  42771. }
  42772. },
  42773. },
  42774. [
  42775. {
  42776. name: "Small",
  42777. height: math.unit(162, "feet")
  42778. },
  42779. {
  42780. name: "Normal",
  42781. height: math.unit(3.2, "earths"),
  42782. default: true
  42783. },
  42784. ]
  42785. ))
  42786. characterMakers.push(() => makeCharacter(
  42787. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42788. {
  42789. front: {
  42790. height: math.unit(512, "feet"),
  42791. weight: math.unit(63509, "tonnes"),
  42792. name: "Front",
  42793. image: {
  42794. source: "./media/characters/vorrel-harroc/front.svg",
  42795. extra: 1075/1063,
  42796. bottom: 62/1137
  42797. }
  42798. },
  42799. },
  42800. [
  42801. {
  42802. name: "Normal",
  42803. height: math.unit(10, "feet")
  42804. },
  42805. {
  42806. name: "Macro",
  42807. height: math.unit(512, "feet"),
  42808. default: true
  42809. },
  42810. {
  42811. name: "Megamacro",
  42812. height: math.unit(256, "miles")
  42813. },
  42814. {
  42815. name: "Gigamacro",
  42816. height: math.unit(4096, "miles")
  42817. },
  42818. ]
  42819. ))
  42820. characterMakers.push(() => makeCharacter(
  42821. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42822. {
  42823. side: {
  42824. height: math.unit(50, "feet"),
  42825. name: "Side",
  42826. image: {
  42827. source: "./media/characters/froimar/side.svg",
  42828. extra: 855/638,
  42829. bottom: 99/954
  42830. }
  42831. },
  42832. },
  42833. [
  42834. {
  42835. name: "Macro",
  42836. height: math.unit(50, "feet"),
  42837. default: true
  42838. },
  42839. ]
  42840. ))
  42841. characterMakers.push(() => makeCharacter(
  42842. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42843. {
  42844. front: {
  42845. height: math.unit(210, "miles"),
  42846. name: "Front",
  42847. image: {
  42848. source: "./media/characters/timothy/front.svg",
  42849. extra: 1007/943,
  42850. bottom: 62/1069
  42851. }
  42852. },
  42853. frontSkirt: {
  42854. height: math.unit(210, "miles"),
  42855. name: "Front (Skirt)",
  42856. image: {
  42857. source: "./media/characters/timothy/front-skirt.svg",
  42858. extra: 1007/943,
  42859. bottom: 62/1069
  42860. }
  42861. },
  42862. frontCoat: {
  42863. height: math.unit(210, "miles"),
  42864. name: "Front (Coat)",
  42865. image: {
  42866. source: "./media/characters/timothy/front-coat.svg",
  42867. extra: 1007/943,
  42868. bottom: 62/1069
  42869. }
  42870. },
  42871. },
  42872. [
  42873. {
  42874. name: "Macro",
  42875. height: math.unit(210, "miles"),
  42876. default: true
  42877. },
  42878. {
  42879. name: "Megamacro",
  42880. height: math.unit(210000, "miles")
  42881. },
  42882. ]
  42883. ))
  42884. characterMakers.push(() => makeCharacter(
  42885. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42886. {
  42887. front: {
  42888. height: math.unit(188, "feet"),
  42889. name: "Front",
  42890. image: {
  42891. source: "./media/characters/pyotr/front.svg",
  42892. extra: 1912/1826,
  42893. bottom: 18/1930
  42894. }
  42895. },
  42896. },
  42897. [
  42898. {
  42899. name: "Macro",
  42900. height: math.unit(188, "feet"),
  42901. default: true
  42902. },
  42903. {
  42904. name: "Megamacro",
  42905. height: math.unit(8, "miles")
  42906. },
  42907. ]
  42908. ))
  42909. characterMakers.push(() => makeCharacter(
  42910. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42911. {
  42912. side: {
  42913. height: math.unit(10, "feet"),
  42914. weight: math.unit(4500, "lb"),
  42915. name: "Side",
  42916. image: {
  42917. source: "./media/characters/ackart/side.svg",
  42918. extra: 1776/1668,
  42919. bottom: 116/1892
  42920. }
  42921. },
  42922. },
  42923. [
  42924. {
  42925. name: "Normal",
  42926. height: math.unit(10, "feet"),
  42927. default: true
  42928. },
  42929. ]
  42930. ))
  42931. characterMakers.push(() => makeCharacter(
  42932. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42933. {
  42934. side: {
  42935. height: math.unit(21, "feet"),
  42936. name: "Side",
  42937. image: {
  42938. source: "./media/characters/nolow/side.svg",
  42939. extra: 1484/1434,
  42940. bottom: 85/1569
  42941. }
  42942. },
  42943. sideErect: {
  42944. height: math.unit(21, "feet"),
  42945. name: "Side-erect",
  42946. image: {
  42947. source: "./media/characters/nolow/side-erect.svg",
  42948. extra: 1484/1434,
  42949. bottom: 85/1569
  42950. }
  42951. },
  42952. },
  42953. [
  42954. {
  42955. name: "Regular",
  42956. height: math.unit(12, "feet")
  42957. },
  42958. {
  42959. name: "Big Chee",
  42960. height: math.unit(21, "feet"),
  42961. default: true
  42962. },
  42963. ]
  42964. ))
  42965. characterMakers.push(() => makeCharacter(
  42966. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42967. {
  42968. front: {
  42969. height: math.unit(7, "feet"),
  42970. weight: math.unit(250, "lb"),
  42971. name: "Front",
  42972. image: {
  42973. source: "./media/characters/nines/front.svg",
  42974. extra: 1741/1607,
  42975. bottom: 41/1782
  42976. }
  42977. },
  42978. side: {
  42979. height: math.unit(7, "feet"),
  42980. weight: math.unit(250, "lb"),
  42981. name: "Side",
  42982. image: {
  42983. source: "./media/characters/nines/side.svg",
  42984. extra: 1854/1735,
  42985. bottom: 93/1947
  42986. }
  42987. },
  42988. back: {
  42989. height: math.unit(7, "feet"),
  42990. weight: math.unit(250, "lb"),
  42991. name: "Back",
  42992. image: {
  42993. source: "./media/characters/nines/back.svg",
  42994. extra: 1748/1615,
  42995. bottom: 20/1768
  42996. }
  42997. },
  42998. },
  42999. [
  43000. {
  43001. name: "Megamacro",
  43002. height: math.unit(99, "km"),
  43003. default: true
  43004. },
  43005. ]
  43006. ))
  43007. characterMakers.push(() => makeCharacter(
  43008. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43009. {
  43010. front: {
  43011. height: math.unit(5 + 10/12, "feet"),
  43012. weight: math.unit(210, "lb"),
  43013. name: "Front",
  43014. image: {
  43015. source: "./media/characters/zenith/front.svg",
  43016. extra: 1531/1452,
  43017. bottom: 198/1729
  43018. }
  43019. },
  43020. back: {
  43021. height: math.unit(5 + 10/12, "feet"),
  43022. weight: math.unit(210, "lb"),
  43023. name: "Back",
  43024. image: {
  43025. source: "./media/characters/zenith/back.svg",
  43026. extra: 1571/1487,
  43027. bottom: 75/1646
  43028. }
  43029. },
  43030. },
  43031. [
  43032. {
  43033. name: "Normal",
  43034. height: math.unit(5 + 10/12, "feet"),
  43035. default: true
  43036. }
  43037. ]
  43038. ))
  43039. characterMakers.push(() => makeCharacter(
  43040. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43041. {
  43042. front: {
  43043. height: math.unit(4, "feet"),
  43044. weight: math.unit(60, "lb"),
  43045. name: "Front",
  43046. image: {
  43047. source: "./media/characters/jasper/front.svg",
  43048. extra: 1450/1379,
  43049. bottom: 19/1469
  43050. }
  43051. },
  43052. },
  43053. [
  43054. {
  43055. name: "Normal",
  43056. height: math.unit(4, "feet"),
  43057. default: true
  43058. },
  43059. ]
  43060. ))
  43061. characterMakers.push(() => makeCharacter(
  43062. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43063. {
  43064. front: {
  43065. height: math.unit(6 + 5/12, "feet"),
  43066. weight: math.unit(290, "lb"),
  43067. name: "Front",
  43068. image: {
  43069. source: "./media/characters/tiberius-thyben/front.svg",
  43070. extra: 757/739,
  43071. bottom: 39/796
  43072. }
  43073. },
  43074. },
  43075. [
  43076. {
  43077. name: "Micro",
  43078. height: math.unit(1.5, "inches")
  43079. },
  43080. {
  43081. name: "Normal",
  43082. height: math.unit(6 + 5/12, "feet"),
  43083. default: true
  43084. },
  43085. {
  43086. name: "Macro",
  43087. height: math.unit(300, "feet")
  43088. },
  43089. ]
  43090. ))
  43091. characterMakers.push(() => makeCharacter(
  43092. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43093. {
  43094. front: {
  43095. height: math.unit(5 + 6/12, "feet"),
  43096. weight: math.unit(60, "kg"),
  43097. name: "Front",
  43098. image: {
  43099. source: "./media/characters/sabre/front.svg",
  43100. extra: 738/671,
  43101. bottom: 27/765
  43102. }
  43103. },
  43104. },
  43105. [
  43106. {
  43107. name: "Teeny",
  43108. height: math.unit(2, "inches")
  43109. },
  43110. {
  43111. name: "Smol",
  43112. height: math.unit(8, "inches")
  43113. },
  43114. {
  43115. name: "Normal",
  43116. height: math.unit(5 + 6/12, "feet"),
  43117. default: true
  43118. },
  43119. {
  43120. name: "Mini-Macro",
  43121. height: math.unit(15, "feet")
  43122. },
  43123. {
  43124. name: "Macro",
  43125. height: math.unit(50, "feet")
  43126. },
  43127. ]
  43128. ))
  43129. characterMakers.push(() => makeCharacter(
  43130. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43131. {
  43132. front: {
  43133. height: math.unit(6 + 4/12, "feet"),
  43134. weight: math.unit(170, "lb"),
  43135. name: "Front",
  43136. image: {
  43137. source: "./media/characters/charlie/front.svg",
  43138. extra: 1348/1228,
  43139. bottom: 15/1363
  43140. }
  43141. },
  43142. },
  43143. [
  43144. {
  43145. name: "Macro",
  43146. height: math.unit(1700, "meters"),
  43147. default: true
  43148. },
  43149. {
  43150. name: "MegaMacro",
  43151. height: math.unit(20400, "meters")
  43152. },
  43153. ]
  43154. ))
  43155. characterMakers.push(() => makeCharacter(
  43156. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43157. {
  43158. front: {
  43159. height: math.unit(6 + 3/12, "feet"),
  43160. weight: math.unit(185, "lb"),
  43161. name: "Front",
  43162. image: {
  43163. source: "./media/characters/susan-grant/front.svg",
  43164. extra: 1351/1327,
  43165. bottom: 26/1377
  43166. }
  43167. },
  43168. },
  43169. [
  43170. {
  43171. name: "Normal",
  43172. height: math.unit(6 + 3/12, "feet"),
  43173. default: true
  43174. },
  43175. {
  43176. name: "Macro",
  43177. height: math.unit(225, "feet")
  43178. },
  43179. {
  43180. name: "Macro+",
  43181. height: math.unit(900, "feet")
  43182. },
  43183. {
  43184. name: "MegaMacro",
  43185. height: math.unit(14400, "feet")
  43186. },
  43187. ]
  43188. ))
  43189. characterMakers.push(() => makeCharacter(
  43190. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43191. {
  43192. front: {
  43193. height: math.unit(5 + 4/12, "feet"),
  43194. weight: math.unit(110, "lb"),
  43195. name: "Front",
  43196. image: {
  43197. source: "./media/characters/axel-isanov/front.svg",
  43198. extra: 1096/1065,
  43199. bottom: 13/1109
  43200. }
  43201. },
  43202. },
  43203. [
  43204. {
  43205. name: "Normal",
  43206. height: math.unit(5 + 4/12, "feet"),
  43207. default: true
  43208. },
  43209. ]
  43210. ))
  43211. characterMakers.push(() => makeCharacter(
  43212. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43213. {
  43214. front: {
  43215. height: math.unit(9, "feet"),
  43216. weight: math.unit(467, "lb"),
  43217. name: "Front",
  43218. image: {
  43219. source: "./media/characters/necahual/front.svg",
  43220. extra: 920/873,
  43221. bottom: 26/946
  43222. }
  43223. },
  43224. back: {
  43225. height: math.unit(9, "feet"),
  43226. weight: math.unit(467, "lb"),
  43227. name: "Back",
  43228. image: {
  43229. source: "./media/characters/necahual/back.svg",
  43230. extra: 930/884,
  43231. bottom: 16/946
  43232. }
  43233. },
  43234. frontUnderwear: {
  43235. height: math.unit(9, "feet"),
  43236. weight: math.unit(467, "lb"),
  43237. name: "Front (Underwear)",
  43238. image: {
  43239. source: "./media/characters/necahual/front-underwear.svg",
  43240. extra: 920/873,
  43241. bottom: 26/946
  43242. }
  43243. },
  43244. frontDressed: {
  43245. height: math.unit(9, "feet"),
  43246. weight: math.unit(467, "lb"),
  43247. name: "Front (Dressed)",
  43248. image: {
  43249. source: "./media/characters/necahual/front-dressed.svg",
  43250. extra: 920/873,
  43251. bottom: 26/946
  43252. }
  43253. },
  43254. },
  43255. [
  43256. {
  43257. name: "Comprsesed",
  43258. height: math.unit(9, "feet")
  43259. },
  43260. {
  43261. name: "Natural",
  43262. height: math.unit(15, "feet"),
  43263. default: true
  43264. },
  43265. {
  43266. name: "Boosted",
  43267. height: math.unit(50, "feet")
  43268. },
  43269. {
  43270. name: "Boosted+",
  43271. height: math.unit(150, "feet")
  43272. },
  43273. {
  43274. name: "Max",
  43275. height: math.unit(500, "feet")
  43276. },
  43277. ]
  43278. ))
  43279. characterMakers.push(() => makeCharacter(
  43280. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43281. {
  43282. front: {
  43283. height: math.unit(22 + 1/12, "feet"),
  43284. weight: math.unit(3200, "lb"),
  43285. name: "Front",
  43286. image: {
  43287. source: "./media/characters/theo-acacia/front.svg",
  43288. extra: 1796/1741,
  43289. bottom: 83/1879
  43290. }
  43291. },
  43292. frontUnderwear: {
  43293. height: math.unit(22 + 1/12, "feet"),
  43294. weight: math.unit(3200, "lb"),
  43295. name: "Front (Underwear)",
  43296. image: {
  43297. source: "./media/characters/theo-acacia/front-underwear.svg",
  43298. extra: 1796/1741,
  43299. bottom: 83/1879
  43300. }
  43301. },
  43302. frontNude: {
  43303. height: math.unit(22 + 1/12, "feet"),
  43304. weight: math.unit(3200, "lb"),
  43305. name: "Front (Nude)",
  43306. image: {
  43307. source: "./media/characters/theo-acacia/front-nude.svg",
  43308. extra: 1796/1741,
  43309. bottom: 83/1879
  43310. }
  43311. },
  43312. },
  43313. [
  43314. {
  43315. name: "Normal",
  43316. height: math.unit(22 + 1/12, "feet"),
  43317. default: true
  43318. },
  43319. ]
  43320. ))
  43321. characterMakers.push(() => makeCharacter(
  43322. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43323. {
  43324. front: {
  43325. height: math.unit(20, "feet"),
  43326. name: "Front",
  43327. image: {
  43328. source: "./media/characters/astra/front.svg",
  43329. extra: 1850/1714,
  43330. bottom: 106/1956
  43331. }
  43332. },
  43333. frontUndressed: {
  43334. height: math.unit(20, "feet"),
  43335. name: "Front (Undressed)",
  43336. image: {
  43337. source: "./media/characters/astra/front-undressed.svg",
  43338. extra: 1926/1749,
  43339. bottom: 0/1926
  43340. }
  43341. },
  43342. hand: {
  43343. height: math.unit(1.53, "feet"),
  43344. name: "Hand",
  43345. image: {
  43346. source: "./media/characters/astra/hand.svg"
  43347. }
  43348. },
  43349. paw: {
  43350. height: math.unit(1.53, "feet"),
  43351. name: "Paw",
  43352. image: {
  43353. source: "./media/characters/astra/paw.svg"
  43354. }
  43355. },
  43356. },
  43357. [
  43358. {
  43359. name: "Smallest",
  43360. height: math.unit(20, "feet")
  43361. },
  43362. {
  43363. name: "Normal",
  43364. height: math.unit(1e9, "miles"),
  43365. default: true
  43366. },
  43367. {
  43368. name: "Larger",
  43369. height: math.unit(5, "multiverses")
  43370. },
  43371. {
  43372. name: "Largest",
  43373. height: math.unit(1e9, "multiverses")
  43374. },
  43375. ]
  43376. ))
  43377. characterMakers.push(() => makeCharacter(
  43378. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43379. {
  43380. front: {
  43381. height: math.unit(8, "feet"),
  43382. name: "Front",
  43383. image: {
  43384. source: "./media/characters/breanna/front.svg",
  43385. extra: 1912/1632,
  43386. bottom: 33/1945
  43387. }
  43388. },
  43389. },
  43390. [
  43391. {
  43392. name: "Smallest",
  43393. height: math.unit(8, "feet")
  43394. },
  43395. {
  43396. name: "Normal",
  43397. height: math.unit(1, "mile"),
  43398. default: true
  43399. },
  43400. {
  43401. name: "Maximum",
  43402. height: math.unit(1500000000000, "lightyears")
  43403. },
  43404. ]
  43405. ))
  43406. characterMakers.push(() => makeCharacter(
  43407. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43408. {
  43409. front: {
  43410. height: math.unit(5 + 11/12, "feet"),
  43411. weight: math.unit(155, "lb"),
  43412. name: "Front",
  43413. image: {
  43414. source: "./media/characters/cai/front.svg",
  43415. extra: 1823/1702,
  43416. bottom: 32/1855
  43417. }
  43418. },
  43419. back: {
  43420. height: math.unit(5 + 11/12, "feet"),
  43421. weight: math.unit(155, "lb"),
  43422. name: "Back",
  43423. image: {
  43424. source: "./media/characters/cai/back.svg",
  43425. extra: 1809/1708,
  43426. bottom: 31/1840
  43427. }
  43428. },
  43429. },
  43430. [
  43431. {
  43432. name: "Normal",
  43433. height: math.unit(5 + 11/12, "feet"),
  43434. default: true
  43435. },
  43436. {
  43437. name: "Big",
  43438. height: math.unit(15, "feet")
  43439. },
  43440. {
  43441. name: "Macro",
  43442. height: math.unit(200, "feet")
  43443. },
  43444. ]
  43445. ))
  43446. characterMakers.push(() => makeCharacter(
  43447. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43448. {
  43449. front: {
  43450. height: math.unit(5 + 6/12, "feet"),
  43451. weight: math.unit(160, "lb"),
  43452. name: "Front",
  43453. image: {
  43454. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43455. extra: 1227/1174,
  43456. bottom: 37/1264
  43457. }
  43458. },
  43459. },
  43460. [
  43461. {
  43462. name: "Macro",
  43463. height: math.unit(444, "meters"),
  43464. default: true
  43465. },
  43466. ]
  43467. ))
  43468. characterMakers.push(() => makeCharacter(
  43469. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43470. {
  43471. front: {
  43472. height: math.unit(18 + 7/12, "feet"),
  43473. name: "Front",
  43474. image: {
  43475. source: "./media/characters/rex/front.svg",
  43476. extra: 1941/1807,
  43477. bottom: 66/2007
  43478. }
  43479. },
  43480. back: {
  43481. height: math.unit(18 + 7/12, "feet"),
  43482. name: "Back",
  43483. image: {
  43484. source: "./media/characters/rex/back.svg",
  43485. extra: 1937/1822,
  43486. bottom: 42/1979
  43487. }
  43488. },
  43489. boot: {
  43490. height: math.unit(3.45, "feet"),
  43491. name: "Boot",
  43492. image: {
  43493. source: "./media/characters/rex/boot.svg"
  43494. }
  43495. },
  43496. paw: {
  43497. height: math.unit(4.17, "feet"),
  43498. name: "Paw",
  43499. image: {
  43500. source: "./media/characters/rex/paw.svg"
  43501. }
  43502. },
  43503. head: {
  43504. height: math.unit(6.728, "feet"),
  43505. name: "Head",
  43506. image: {
  43507. source: "./media/characters/rex/head.svg"
  43508. }
  43509. },
  43510. },
  43511. [
  43512. {
  43513. name: "Nano",
  43514. height: math.unit(18 + 7/12, "feet")
  43515. },
  43516. {
  43517. name: "Micro",
  43518. height: math.unit(1.5, "megameters")
  43519. },
  43520. {
  43521. name: "Normal",
  43522. height: math.unit(440, "megameters"),
  43523. default: true
  43524. },
  43525. {
  43526. name: "Macro",
  43527. height: math.unit(2.5, "gigameters")
  43528. },
  43529. {
  43530. name: "Gigamacro",
  43531. height: math.unit(2, "galaxies")
  43532. },
  43533. ]
  43534. ))
  43535. characterMakers.push(() => makeCharacter(
  43536. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43537. {
  43538. side: {
  43539. height: math.unit(32, "feet"),
  43540. weight: math.unit(250000, "lb"),
  43541. name: "Side",
  43542. image: {
  43543. source: "./media/characters/silverwing/side.svg",
  43544. extra: 1100/1019,
  43545. bottom: 204/1304
  43546. }
  43547. },
  43548. },
  43549. [
  43550. {
  43551. name: "Normal",
  43552. height: math.unit(32, "feet"),
  43553. default: true
  43554. },
  43555. ]
  43556. ))
  43557. characterMakers.push(() => makeCharacter(
  43558. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43559. {
  43560. front: {
  43561. height: math.unit(6 + 6/12, "feet"),
  43562. weight: math.unit(350, "lb"),
  43563. name: "Front",
  43564. image: {
  43565. source: "./media/characters/tristan-hawthorne/front.svg",
  43566. extra: 1159/1124,
  43567. bottom: 37/1196
  43568. },
  43569. form: "labrador",
  43570. default: true
  43571. },
  43572. skunkFront: {
  43573. height: math.unit(4 + 6/12, "feet"),
  43574. weight: math.unit(120, "lb"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43578. extra: 1609/1551,
  43579. bottom: 169/1778
  43580. },
  43581. form: "skunk",
  43582. default: true
  43583. },
  43584. },
  43585. [
  43586. {
  43587. name: "Normal",
  43588. height: math.unit(6 + 6/12, "feet"),
  43589. form: "labrador",
  43590. default: true
  43591. },
  43592. {
  43593. name: "Normal",
  43594. height: math.unit(4 + 6/12, "feet"),
  43595. form: "skunk",
  43596. default: true
  43597. },
  43598. ],
  43599. {
  43600. "labrador": {
  43601. name: "Labrador",
  43602. default: true
  43603. },
  43604. "skunk": {
  43605. name: "Skunk"
  43606. }
  43607. }
  43608. ))
  43609. characterMakers.push(() => makeCharacter(
  43610. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43611. {
  43612. front: {
  43613. height: math.unit(5 + 11/12, "feet"),
  43614. weight: math.unit(190, "lb"),
  43615. name: "Front",
  43616. image: {
  43617. source: "./media/characters/mizu/front.svg",
  43618. extra: 1988/1788,
  43619. bottom: 14/2002
  43620. }
  43621. },
  43622. },
  43623. [
  43624. {
  43625. name: "Normal",
  43626. height: math.unit(5 + 11/12, "feet"),
  43627. default: true
  43628. },
  43629. ]
  43630. ))
  43631. characterMakers.push(() => makeCharacter(
  43632. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43633. {
  43634. front: {
  43635. height: math.unit(1.7, "feet"),
  43636. weight: math.unit(50, "lb"),
  43637. name: "Front",
  43638. image: {
  43639. source: "./media/characters/dechroma/front.svg",
  43640. extra: 1095/859,
  43641. bottom: 64/1159
  43642. }
  43643. },
  43644. },
  43645. [
  43646. {
  43647. name: "Normal",
  43648. height: math.unit(1.7, "feet"),
  43649. default: true
  43650. },
  43651. ]
  43652. ))
  43653. characterMakers.push(() => makeCharacter(
  43654. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43655. {
  43656. side: {
  43657. height: math.unit(30, "feet"),
  43658. name: "Side",
  43659. image: {
  43660. source: "./media/characters/veluren-thanazel/side.svg",
  43661. extra: 1611/633,
  43662. bottom: 118/1729
  43663. }
  43664. },
  43665. front: {
  43666. height: math.unit(30, "feet"),
  43667. name: "Front",
  43668. image: {
  43669. source: "./media/characters/veluren-thanazel/front.svg",
  43670. extra: 1486/636,
  43671. bottom: 238/1724
  43672. }
  43673. },
  43674. head: {
  43675. height: math.unit(21.4, "feet"),
  43676. name: "Head",
  43677. image: {
  43678. source: "./media/characters/veluren-thanazel/head.svg"
  43679. }
  43680. },
  43681. genitals: {
  43682. height: math.unit(19.4, "feet"),
  43683. name: "Genitals",
  43684. image: {
  43685. source: "./media/characters/veluren-thanazel/genitals.svg"
  43686. }
  43687. },
  43688. },
  43689. [
  43690. {
  43691. name: "Social",
  43692. height: math.unit(6, "feet")
  43693. },
  43694. {
  43695. name: "Play",
  43696. height: math.unit(12, "feet")
  43697. },
  43698. {
  43699. name: "True",
  43700. height: math.unit(30, "feet"),
  43701. default: true
  43702. },
  43703. ]
  43704. ))
  43705. characterMakers.push(() => makeCharacter(
  43706. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43707. {
  43708. front: {
  43709. height: math.unit(7 + 6/12, "feet"),
  43710. weight: math.unit(500, "kg"),
  43711. name: "Front",
  43712. image: {
  43713. source: "./media/characters/arcturas/front.svg",
  43714. extra: 1700/1500,
  43715. bottom: 145/1845
  43716. }
  43717. },
  43718. },
  43719. [
  43720. {
  43721. name: "Normal",
  43722. height: math.unit(7 + 6/12, "feet"),
  43723. default: true
  43724. },
  43725. ]
  43726. ))
  43727. characterMakers.push(() => makeCharacter(
  43728. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43729. {
  43730. side: {
  43731. height: math.unit(6, "feet"),
  43732. weight: math.unit(2, "tons"),
  43733. name: "Side",
  43734. image: {
  43735. source: "./media/characters/vitaen/side.svg",
  43736. extra: 1157/617,
  43737. bottom: 122/1279
  43738. }
  43739. },
  43740. },
  43741. [
  43742. {
  43743. name: "Normal",
  43744. height: math.unit(6, "feet"),
  43745. default: true
  43746. },
  43747. ]
  43748. ))
  43749. characterMakers.push(() => makeCharacter(
  43750. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43751. {
  43752. front: {
  43753. height: math.unit(19, "feet"),
  43754. name: "Front",
  43755. image: {
  43756. source: "./media/characters/fia-dreamweaver/front.svg",
  43757. extra: 1630/1504,
  43758. bottom: 25/1655
  43759. }
  43760. },
  43761. },
  43762. [
  43763. {
  43764. name: "Normal",
  43765. height: math.unit(19, "feet"),
  43766. default: true
  43767. },
  43768. ]
  43769. ))
  43770. characterMakers.push(() => makeCharacter(
  43771. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43772. {
  43773. front: {
  43774. height: math.unit(5 + 4/12, "feet"),
  43775. name: "Front",
  43776. image: {
  43777. source: "./media/characters/artan/front.svg",
  43778. extra: 1618/1535,
  43779. bottom: 46/1664
  43780. }
  43781. },
  43782. back: {
  43783. height: math.unit(5 + 4/12, "feet"),
  43784. name: "Back",
  43785. image: {
  43786. source: "./media/characters/artan/back.svg",
  43787. extra: 1618/1543,
  43788. bottom: 31/1649
  43789. }
  43790. },
  43791. },
  43792. [
  43793. {
  43794. name: "Normal",
  43795. height: math.unit(5 + 4/12, "feet"),
  43796. default: true
  43797. },
  43798. ]
  43799. ))
  43800. characterMakers.push(() => makeCharacter(
  43801. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43802. {
  43803. side: {
  43804. height: math.unit(182, "cm"),
  43805. weight: math.unit(1000, "lb"),
  43806. name: "Side",
  43807. image: {
  43808. source: "./media/characters/silver-dragon/side.svg",
  43809. extra: 710/287,
  43810. bottom: 88/798
  43811. }
  43812. },
  43813. },
  43814. [
  43815. {
  43816. name: "Normal",
  43817. height: math.unit(182, "cm"),
  43818. default: true
  43819. },
  43820. ]
  43821. ))
  43822. characterMakers.push(() => makeCharacter(
  43823. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43824. {
  43825. side: {
  43826. height: math.unit(6 + 6/12, "feet"),
  43827. weight: math.unit(1.5, "tons"),
  43828. name: "Side",
  43829. image: {
  43830. source: "./media/characters/zephyr/side.svg",
  43831. extra: 1433/586,
  43832. bottom: 109/1542
  43833. }
  43834. },
  43835. },
  43836. [
  43837. {
  43838. name: "Normal",
  43839. height: math.unit(6 + 6/12, "feet"),
  43840. default: true
  43841. },
  43842. ]
  43843. ))
  43844. characterMakers.push(() => makeCharacter(
  43845. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43846. {
  43847. side: {
  43848. height: math.unit(1, "feet"),
  43849. name: "Side",
  43850. image: {
  43851. source: "./media/characters/vixye/side.svg",
  43852. extra: 632/541,
  43853. bottom: 0/632
  43854. }
  43855. },
  43856. },
  43857. [
  43858. {
  43859. name: "Normal",
  43860. height: math.unit(1, "feet"),
  43861. default: true
  43862. },
  43863. {
  43864. name: "True",
  43865. height: math.unit(1e15, "multiverses")
  43866. },
  43867. ]
  43868. ))
  43869. characterMakers.push(() => makeCharacter(
  43870. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43871. {
  43872. front: {
  43873. height: math.unit(8 + 2/12, "feet"),
  43874. weight: math.unit(650, "lb"),
  43875. name: "Front",
  43876. image: {
  43877. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43878. extra: 1174/1137,
  43879. bottom: 82/1256
  43880. }
  43881. },
  43882. back: {
  43883. height: math.unit(8 + 2/12, "feet"),
  43884. weight: math.unit(650, "lb"),
  43885. name: "Back",
  43886. image: {
  43887. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43888. extra: 1204/1157,
  43889. bottom: 46/1250
  43890. }
  43891. },
  43892. },
  43893. [
  43894. {
  43895. name: "Wildform",
  43896. height: math.unit(8 + 2/12, "feet"),
  43897. default: true
  43898. },
  43899. ]
  43900. ))
  43901. characterMakers.push(() => makeCharacter(
  43902. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43903. {
  43904. front: {
  43905. height: math.unit(18, "feet"),
  43906. name: "Front",
  43907. image: {
  43908. source: "./media/characters/cyphin/front.svg",
  43909. extra: 970/886,
  43910. bottom: 42/1012
  43911. }
  43912. },
  43913. back: {
  43914. height: math.unit(18, "feet"),
  43915. name: "Back",
  43916. image: {
  43917. source: "./media/characters/cyphin/back.svg",
  43918. extra: 1009/894,
  43919. bottom: 24/1033
  43920. }
  43921. },
  43922. head: {
  43923. height: math.unit(5.05, "feet"),
  43924. name: "Head",
  43925. image: {
  43926. source: "./media/characters/cyphin/head.svg"
  43927. }
  43928. },
  43929. tailbud: {
  43930. height: math.unit(5, "feet"),
  43931. name: "Tailbud",
  43932. image: {
  43933. source: "./media/characters/cyphin/tailbud.svg"
  43934. }
  43935. },
  43936. },
  43937. [
  43938. ]
  43939. ))
  43940. characterMakers.push(() => makeCharacter(
  43941. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43942. {
  43943. side: {
  43944. height: math.unit(10, "feet"),
  43945. weight: math.unit(6, "tons"),
  43946. name: "Side",
  43947. image: {
  43948. source: "./media/characters/raijin/side.svg",
  43949. extra: 1529/613,
  43950. bottom: 337/1866
  43951. }
  43952. },
  43953. },
  43954. [
  43955. {
  43956. name: "Normal",
  43957. height: math.unit(10, "feet"),
  43958. default: true
  43959. },
  43960. ]
  43961. ))
  43962. characterMakers.push(() => makeCharacter(
  43963. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43964. {
  43965. side: {
  43966. height: math.unit(9, "feet"),
  43967. name: "Side",
  43968. image: {
  43969. source: "./media/characters/nilghais/side.svg",
  43970. extra: 1047/744,
  43971. bottom: 91/1138
  43972. }
  43973. },
  43974. head: {
  43975. height: math.unit(3.14, "feet"),
  43976. name: "Head",
  43977. image: {
  43978. source: "./media/characters/nilghais/head.svg"
  43979. }
  43980. },
  43981. mouth: {
  43982. height: math.unit(4.6, "feet"),
  43983. name: "Mouth",
  43984. image: {
  43985. source: "./media/characters/nilghais/mouth.svg"
  43986. }
  43987. },
  43988. wings: {
  43989. height: math.unit(24, "feet"),
  43990. name: "Wings",
  43991. image: {
  43992. source: "./media/characters/nilghais/wings.svg"
  43993. }
  43994. },
  43995. ass: {
  43996. height: math.unit(6.12, "feet"),
  43997. name: "Ass",
  43998. image: {
  43999. source: "./media/characters/nilghais/ass.svg"
  44000. }
  44001. },
  44002. },
  44003. [
  44004. {
  44005. name: "Normal",
  44006. height: math.unit(9, "feet"),
  44007. default: true
  44008. },
  44009. ]
  44010. ))
  44011. characterMakers.push(() => makeCharacter(
  44012. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44013. {
  44014. regular: {
  44015. height: math.unit(16 + 2/12, "feet"),
  44016. weight: math.unit(2300, "lb"),
  44017. name: "Regular",
  44018. image: {
  44019. source: "./media/characters/zolgar/regular.svg",
  44020. extra: 1246/1004,
  44021. bottom: 124/1370
  44022. }
  44023. },
  44024. boxers: {
  44025. height: math.unit(16 + 2/12, "feet"),
  44026. weight: math.unit(2300, "lb"),
  44027. name: "Boxers",
  44028. image: {
  44029. source: "./media/characters/zolgar/boxers.svg",
  44030. extra: 1246/1004,
  44031. bottom: 124/1370
  44032. }
  44033. },
  44034. armored: {
  44035. height: math.unit(16 + 2/12, "feet"),
  44036. weight: math.unit(2300, "lb"),
  44037. name: "Armored",
  44038. image: {
  44039. source: "./media/characters/zolgar/armored.svg",
  44040. extra: 1246/1004,
  44041. bottom: 124/1370
  44042. }
  44043. },
  44044. goth: {
  44045. height: math.unit(16 + 2/12, "feet"),
  44046. weight: math.unit(2300, "lb"),
  44047. name: "Goth",
  44048. image: {
  44049. source: "./media/characters/zolgar/goth.svg",
  44050. extra: 1246/1004,
  44051. bottom: 124/1370
  44052. }
  44053. },
  44054. },
  44055. [
  44056. {
  44057. name: "Shrunken Down",
  44058. height: math.unit(9 + 2/12, "feet")
  44059. },
  44060. {
  44061. name: "Normal",
  44062. height: math.unit(16 + 2/12, "feet"),
  44063. default: true
  44064. },
  44065. ]
  44066. ))
  44067. characterMakers.push(() => makeCharacter(
  44068. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44069. {
  44070. front: {
  44071. height: math.unit(6, "feet"),
  44072. weight: math.unit(168, "lb"),
  44073. name: "Front",
  44074. image: {
  44075. source: "./media/characters/luca/front.svg",
  44076. extra: 841/667,
  44077. bottom: 102/943
  44078. }
  44079. },
  44080. },
  44081. [
  44082. {
  44083. name: "Normal",
  44084. height: math.unit(6, "feet"),
  44085. default: true
  44086. },
  44087. ]
  44088. ))
  44089. characterMakers.push(() => makeCharacter(
  44090. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44091. {
  44092. side: {
  44093. height: math.unit(7 + 3/12, "feet"),
  44094. weight: math.unit(312, "lb"),
  44095. name: "Side",
  44096. image: {
  44097. source: "./media/characters/zezo/side.svg",
  44098. extra: 1192/1067,
  44099. bottom: 63/1255
  44100. }
  44101. },
  44102. },
  44103. [
  44104. {
  44105. name: "Normal",
  44106. height: math.unit(7 + 3/12, "feet"),
  44107. default: true
  44108. },
  44109. ]
  44110. ))
  44111. characterMakers.push(() => makeCharacter(
  44112. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44113. {
  44114. front: {
  44115. height: math.unit(5 + 5/12, "feet"),
  44116. weight: math.unit(170, "lb"),
  44117. name: "Front",
  44118. image: {
  44119. source: "./media/characters/mayso/front.svg",
  44120. extra: 1215/1108,
  44121. bottom: 16/1231
  44122. }
  44123. },
  44124. },
  44125. [
  44126. {
  44127. name: "Normal",
  44128. height: math.unit(5 + 5/12, "feet"),
  44129. default: true
  44130. },
  44131. ]
  44132. ))
  44133. characterMakers.push(() => makeCharacter(
  44134. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44135. {
  44136. front: {
  44137. height: math.unit(4 + 3/12, "feet"),
  44138. weight: math.unit(80, "lb"),
  44139. name: "Front",
  44140. image: {
  44141. source: "./media/characters/hess/front.svg",
  44142. extra: 1200/1123,
  44143. bottom: 16/1216
  44144. }
  44145. },
  44146. },
  44147. [
  44148. {
  44149. name: "Normal",
  44150. height: math.unit(4 + 3/12, "feet"),
  44151. default: true
  44152. },
  44153. ]
  44154. ))
  44155. characterMakers.push(() => makeCharacter(
  44156. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44157. {
  44158. front: {
  44159. height: math.unit(1.9, "meters"),
  44160. name: "Front",
  44161. image: {
  44162. source: "./media/characters/ashgar/front.svg",
  44163. extra: 1177/1146,
  44164. bottom: 99/1276
  44165. }
  44166. },
  44167. back: {
  44168. height: math.unit(1.9, "meters"),
  44169. name: "Back",
  44170. image: {
  44171. source: "./media/characters/ashgar/back.svg",
  44172. extra: 1201/1183,
  44173. bottom: 53/1254
  44174. }
  44175. },
  44176. feral: {
  44177. height: math.unit(1.4, "meters"),
  44178. name: "Feral",
  44179. image: {
  44180. source: "./media/characters/ashgar/feral.svg",
  44181. extra: 370/345,
  44182. bottom: 45/415
  44183. }
  44184. },
  44185. },
  44186. [
  44187. {
  44188. name: "Normal",
  44189. height: math.unit(1.9, "meters"),
  44190. default: true
  44191. },
  44192. ]
  44193. ))
  44194. characterMakers.push(() => makeCharacter(
  44195. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44196. {
  44197. regular: {
  44198. height: math.unit(6, "feet"),
  44199. weight: math.unit(220, "lb"),
  44200. name: "Regular",
  44201. image: {
  44202. source: "./media/characters/phillip/regular.svg",
  44203. extra: 1373/1277,
  44204. bottom: 75/1448
  44205. }
  44206. },
  44207. dressed: {
  44208. height: math.unit(6, "feet"),
  44209. weight: math.unit(220, "lb"),
  44210. name: "Dressed",
  44211. image: {
  44212. source: "./media/characters/phillip/dressed.svg",
  44213. extra: 1373/1277,
  44214. bottom: 75/1448
  44215. }
  44216. },
  44217. paw: {
  44218. height: math.unit(1.44, "feet"),
  44219. name: "Paw",
  44220. image: {
  44221. source: "./media/characters/phillip/paw.svg"
  44222. }
  44223. },
  44224. },
  44225. [
  44226. {
  44227. name: "Normal",
  44228. height: math.unit(6, "feet"),
  44229. default: true
  44230. },
  44231. ]
  44232. ))
  44233. characterMakers.push(() => makeCharacter(
  44234. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44235. {
  44236. side: {
  44237. height: math.unit(42, "feet"),
  44238. name: "Side",
  44239. image: {
  44240. source: "./media/characters/uvula/side.svg",
  44241. extra: 683/586,
  44242. bottom: 60/743
  44243. }
  44244. },
  44245. front: {
  44246. height: math.unit(42, "feet"),
  44247. name: "Front",
  44248. image: {
  44249. source: "./media/characters/uvula/front.svg",
  44250. extra: 705/613,
  44251. bottom: 54/759
  44252. }
  44253. },
  44254. maw: {
  44255. height: math.unit(23.5, "feet"),
  44256. name: "Maw",
  44257. image: {
  44258. source: "./media/characters/uvula/maw.svg"
  44259. }
  44260. },
  44261. },
  44262. [
  44263. {
  44264. name: "Original Size",
  44265. height: math.unit(14, "inches")
  44266. },
  44267. {
  44268. name: "Human Size",
  44269. height: math.unit(6, "feet")
  44270. },
  44271. {
  44272. name: "Big",
  44273. height: math.unit(42, "feet"),
  44274. default: true
  44275. },
  44276. {
  44277. name: "Bigger",
  44278. height: math.unit(100, "feet")
  44279. },
  44280. ]
  44281. ))
  44282. characterMakers.push(() => makeCharacter(
  44283. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44284. {
  44285. front: {
  44286. height: math.unit(5 + 11/12, "feet"),
  44287. name: "Front",
  44288. image: {
  44289. source: "./media/characters/lannah/front.svg",
  44290. extra: 1208/1113,
  44291. bottom: 97/1305
  44292. }
  44293. },
  44294. },
  44295. [
  44296. {
  44297. name: "Normal",
  44298. height: math.unit(5 + 11/12, "feet"),
  44299. default: true
  44300. },
  44301. ]
  44302. ))
  44303. characterMakers.push(() => makeCharacter(
  44304. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44305. {
  44306. front: {
  44307. height: math.unit(6 + 3/12, "feet"),
  44308. weight: math.unit(3.5, "tons"),
  44309. name: "Front",
  44310. image: {
  44311. source: "./media/characters/emberflame/front.svg",
  44312. extra: 1198/672,
  44313. bottom: 82/1280
  44314. }
  44315. },
  44316. side: {
  44317. height: math.unit(6 + 3/12, "feet"),
  44318. weight: math.unit(3.5, "tons"),
  44319. name: "Side",
  44320. image: {
  44321. source: "./media/characters/emberflame/side.svg",
  44322. extra: 938/527,
  44323. bottom: 56/994
  44324. }
  44325. },
  44326. },
  44327. [
  44328. {
  44329. name: "Normal",
  44330. height: math.unit(6 + 3/12, "feet"),
  44331. default: true
  44332. },
  44333. ]
  44334. ))
  44335. characterMakers.push(() => makeCharacter(
  44336. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44337. {
  44338. side: {
  44339. height: math.unit(17.5, "feet"),
  44340. weight: math.unit(35, "tons"),
  44341. name: "Side",
  44342. image: {
  44343. source: "./media/characters/sophie-ambrose/side.svg",
  44344. extra: 1573/1242,
  44345. bottom: 71/1644
  44346. }
  44347. },
  44348. maw: {
  44349. height: math.unit(7.4, "feet"),
  44350. name: "Maw",
  44351. image: {
  44352. source: "./media/characters/sophie-ambrose/maw.svg"
  44353. }
  44354. },
  44355. },
  44356. [
  44357. {
  44358. name: "Normal",
  44359. height: math.unit(17.5, "feet"),
  44360. default: true
  44361. },
  44362. ]
  44363. ))
  44364. characterMakers.push(() => makeCharacter(
  44365. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44366. {
  44367. front: {
  44368. height: math.unit(280, "feet"),
  44369. weight: math.unit(550, "tons"),
  44370. name: "Front",
  44371. image: {
  44372. source: "./media/characters/king-mugi/front.svg",
  44373. extra: 1102/947,
  44374. bottom: 104/1206
  44375. }
  44376. },
  44377. },
  44378. [
  44379. {
  44380. name: "King Mugi",
  44381. height: math.unit(280, "feet"),
  44382. default: true
  44383. },
  44384. ]
  44385. ))
  44386. characterMakers.push(() => makeCharacter(
  44387. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44388. {
  44389. front: {
  44390. height: math.unit(64, "meters"),
  44391. name: "Front",
  44392. image: {
  44393. source: "./media/characters/nova-fox/front.svg",
  44394. extra: 1310/1246,
  44395. bottom: 65/1375
  44396. }
  44397. },
  44398. },
  44399. [
  44400. {
  44401. name: "Macro",
  44402. height: math.unit(64, "meters"),
  44403. default: true
  44404. },
  44405. ]
  44406. ))
  44407. characterMakers.push(() => makeCharacter(
  44408. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44409. {
  44410. front: {
  44411. height: math.unit(6 + 3/12, "feet"),
  44412. weight: math.unit(170, "lb"),
  44413. name: "Front",
  44414. image: {
  44415. source: "./media/characters/sam-bat/front.svg",
  44416. extra: 1601/1411,
  44417. bottom: 125/1726
  44418. }
  44419. },
  44420. back: {
  44421. height: math.unit(6 + 3/12, "feet"),
  44422. weight: math.unit(170, "lb"),
  44423. name: "Back",
  44424. image: {
  44425. source: "./media/characters/sam-bat/back.svg",
  44426. extra: 1577/1405,
  44427. bottom: 58/1635
  44428. }
  44429. },
  44430. },
  44431. [
  44432. {
  44433. name: "Normal",
  44434. height: math.unit(6 + 3/12, "feet"),
  44435. default: true
  44436. },
  44437. ]
  44438. ))
  44439. characterMakers.push(() => makeCharacter(
  44440. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44441. {
  44442. front: {
  44443. height: math.unit(59, "feet"),
  44444. weight: math.unit(40000, "lb"),
  44445. name: "Front",
  44446. image: {
  44447. source: "./media/characters/inari/front.svg",
  44448. extra: 1884/1350,
  44449. bottom: 95/1979
  44450. }
  44451. },
  44452. },
  44453. [
  44454. {
  44455. name: "Gigantamax",
  44456. height: math.unit(59, "feet"),
  44457. default: true
  44458. },
  44459. ]
  44460. ))
  44461. characterMakers.push(() => makeCharacter(
  44462. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44463. {
  44464. front: {
  44465. height: math.unit(5 + 8/12, "feet"),
  44466. name: "Front",
  44467. image: {
  44468. source: "./media/characters/elizabeth/front.svg",
  44469. extra: 1395/1298,
  44470. bottom: 54/1449
  44471. }
  44472. },
  44473. mouth: {
  44474. height: math.unit(1.97, "feet"),
  44475. name: "Mouth",
  44476. image: {
  44477. source: "./media/characters/elizabeth/mouth.svg"
  44478. }
  44479. },
  44480. foot: {
  44481. height: math.unit(1.17, "feet"),
  44482. name: "Foot",
  44483. image: {
  44484. source: "./media/characters/elizabeth/foot.svg"
  44485. }
  44486. },
  44487. },
  44488. [
  44489. {
  44490. name: "Normal",
  44491. height: math.unit(5 + 8/12, "feet"),
  44492. default: true
  44493. },
  44494. {
  44495. name: "Minimacro",
  44496. height: math.unit(18, "feet")
  44497. },
  44498. {
  44499. name: "Macro",
  44500. height: math.unit(180, "feet")
  44501. },
  44502. ]
  44503. ))
  44504. characterMakers.push(() => makeCharacter(
  44505. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44506. {
  44507. front: {
  44508. height: math.unit(5 + 2/12, "feet"),
  44509. name: "Front",
  44510. image: {
  44511. source: "./media/characters/october-gossamer/front.svg",
  44512. extra: 505/454,
  44513. bottom: 7/512
  44514. }
  44515. },
  44516. back: {
  44517. height: math.unit(5 + 2/12, "feet"),
  44518. name: "Back",
  44519. image: {
  44520. source: "./media/characters/october-gossamer/back.svg",
  44521. extra: 501/454,
  44522. bottom: 11/512
  44523. }
  44524. },
  44525. },
  44526. [
  44527. {
  44528. name: "Normal",
  44529. height: math.unit(5 + 2/12, "feet"),
  44530. default: true
  44531. },
  44532. ]
  44533. ))
  44534. characterMakers.push(() => makeCharacter(
  44535. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44536. {
  44537. front: {
  44538. height: math.unit(5, "feet"),
  44539. name: "Front",
  44540. image: {
  44541. source: "./media/characters/epiglottis/front.svg",
  44542. extra: 923/849,
  44543. bottom: 17/940
  44544. }
  44545. },
  44546. },
  44547. [
  44548. {
  44549. name: "Original Size",
  44550. height: math.unit(10, "inches")
  44551. },
  44552. {
  44553. name: "Human Size",
  44554. height: math.unit(5, "feet"),
  44555. default: true
  44556. },
  44557. {
  44558. name: "Big",
  44559. height: math.unit(25, "feet")
  44560. },
  44561. {
  44562. name: "Bigger",
  44563. height: math.unit(50, "feet")
  44564. },
  44565. {
  44566. name: "oh lawd",
  44567. height: math.unit(75, "feet")
  44568. },
  44569. ]
  44570. ))
  44571. characterMakers.push(() => makeCharacter(
  44572. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44573. {
  44574. front: {
  44575. height: math.unit(2 + 4/12, "feet"),
  44576. weight: math.unit(60, "lb"),
  44577. name: "Front",
  44578. image: {
  44579. source: "./media/characters/lerm/front.svg",
  44580. extra: 796/790,
  44581. bottom: 79/875
  44582. }
  44583. },
  44584. },
  44585. [
  44586. {
  44587. name: "Normal",
  44588. height: math.unit(2 + 4/12, "feet"),
  44589. default: true
  44590. },
  44591. ]
  44592. ))
  44593. characterMakers.push(() => makeCharacter(
  44594. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44595. {
  44596. front: {
  44597. height: math.unit(5.5, "feet"),
  44598. weight: math.unit(130, "lb"),
  44599. name: "Front",
  44600. image: {
  44601. source: "./media/characters/xena-nebadon/front.svg",
  44602. extra: 1828/1730,
  44603. bottom: 79/1907
  44604. }
  44605. },
  44606. },
  44607. [
  44608. {
  44609. name: "Tiny Puppy",
  44610. height: math.unit(3, "inches")
  44611. },
  44612. {
  44613. name: "Normal",
  44614. height: math.unit(5.5, "feet"),
  44615. default: true
  44616. },
  44617. {
  44618. name: "Lotta Lady",
  44619. height: math.unit(12, "feet")
  44620. },
  44621. {
  44622. name: "Pretty Big",
  44623. height: math.unit(100, "feet")
  44624. },
  44625. {
  44626. name: "Big",
  44627. height: math.unit(500, "feet")
  44628. },
  44629. {
  44630. name: "Skyscraper Toys",
  44631. height: math.unit(2500, "feet")
  44632. },
  44633. {
  44634. name: "Plane Catcher",
  44635. height: math.unit(8, "miles")
  44636. },
  44637. {
  44638. name: "Planet Toys",
  44639. height: math.unit(15, "earths")
  44640. },
  44641. {
  44642. name: "Stardust",
  44643. height: math.unit(0.25, "galaxies")
  44644. },
  44645. {
  44646. name: "Snacks",
  44647. height: math.unit(70, "universes")
  44648. },
  44649. ]
  44650. ))
  44651. characterMakers.push(() => makeCharacter(
  44652. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44653. {
  44654. front: {
  44655. height: math.unit(1.6, "meters"),
  44656. weight: math.unit(60, "kg"),
  44657. name: "Front",
  44658. image: {
  44659. source: "./media/characters/bounty/front.svg",
  44660. extra: 1426/1308,
  44661. bottom: 15/1441
  44662. }
  44663. },
  44664. back: {
  44665. height: math.unit(1.6, "meters"),
  44666. weight: math.unit(60, "kg"),
  44667. name: "Back",
  44668. image: {
  44669. source: "./media/characters/bounty/back.svg",
  44670. extra: 1417/1307,
  44671. bottom: 8/1425
  44672. }
  44673. },
  44674. },
  44675. [
  44676. {
  44677. name: "Normal",
  44678. height: math.unit(1.6, "meters"),
  44679. default: true
  44680. },
  44681. {
  44682. name: "Macro",
  44683. height: math.unit(300, "meters")
  44684. },
  44685. ]
  44686. ))
  44687. characterMakers.push(() => makeCharacter(
  44688. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44689. {
  44690. front: {
  44691. height: math.unit(2 + 8/12, "feet"),
  44692. weight: math.unit(15, "lb"),
  44693. name: "Front",
  44694. image: {
  44695. source: "./media/characters/mochi/front.svg",
  44696. extra: 1022/852,
  44697. bottom: 435/1457
  44698. }
  44699. },
  44700. back: {
  44701. height: math.unit(2 + 8/12, "feet"),
  44702. weight: math.unit(15, "lb"),
  44703. name: "Back",
  44704. image: {
  44705. source: "./media/characters/mochi/back.svg",
  44706. extra: 1335/1119,
  44707. bottom: 39/1374
  44708. }
  44709. },
  44710. bird: {
  44711. height: math.unit(2 + 8/12, "feet"),
  44712. weight: math.unit(15, "lb"),
  44713. name: "Bird",
  44714. image: {
  44715. source: "./media/characters/mochi/bird.svg",
  44716. extra: 1251/1113,
  44717. bottom: 178/1429
  44718. }
  44719. },
  44720. kaiju: {
  44721. height: math.unit(154, "feet"),
  44722. weight: math.unit(1e7, "lb"),
  44723. name: "Kaiju",
  44724. image: {
  44725. source: "./media/characters/mochi/kaiju.svg",
  44726. extra: 460/324,
  44727. bottom: 40/500
  44728. }
  44729. },
  44730. head: {
  44731. height: math.unit(1.21, "feet"),
  44732. name: "Head",
  44733. image: {
  44734. source: "./media/characters/mochi/head.svg"
  44735. }
  44736. },
  44737. alternateTail: {
  44738. height: math.unit(2 + 8/12, "feet"),
  44739. weight: math.unit(45, "lb"),
  44740. name: "Alternate Tail",
  44741. image: {
  44742. source: "./media/characters/mochi/alternate-tail.svg",
  44743. extra: 139/76,
  44744. bottom: 45/184
  44745. }
  44746. },
  44747. },
  44748. [
  44749. {
  44750. name: "Micro",
  44751. height: math.unit(2, "inches")
  44752. },
  44753. {
  44754. name: "Normal",
  44755. height: math.unit(2 + 8/12, "feet"),
  44756. default: true
  44757. },
  44758. {
  44759. name: "Macro",
  44760. height: math.unit(106, "feet")
  44761. },
  44762. ]
  44763. ))
  44764. characterMakers.push(() => makeCharacter(
  44765. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44766. {
  44767. front: {
  44768. height: math.unit(5.67, "feet"),
  44769. weight: math.unit(135, "lb"),
  44770. name: "Front",
  44771. image: {
  44772. source: "./media/characters/sarel/front.svg",
  44773. extra: 865/788,
  44774. bottom: 97/962
  44775. }
  44776. },
  44777. back: {
  44778. height: math.unit(5.67, "feet"),
  44779. weight: math.unit(135, "lb"),
  44780. name: "Back",
  44781. image: {
  44782. source: "./media/characters/sarel/back.svg",
  44783. extra: 857/777,
  44784. bottom: 32/889
  44785. }
  44786. },
  44787. chozoan: {
  44788. height: math.unit(5.67, "feet"),
  44789. weight: math.unit(135, "lb"),
  44790. name: "Chozoan",
  44791. image: {
  44792. source: "./media/characters/sarel/chozoan.svg",
  44793. extra: 865/788,
  44794. bottom: 97/962
  44795. }
  44796. },
  44797. current: {
  44798. height: math.unit(5.67, "feet"),
  44799. weight: math.unit(135, "lb"),
  44800. name: "Current",
  44801. image: {
  44802. source: "./media/characters/sarel/current.svg",
  44803. extra: 865/788,
  44804. bottom: 97/962
  44805. }
  44806. },
  44807. head: {
  44808. height: math.unit(1.77, "feet"),
  44809. name: "Head",
  44810. image: {
  44811. source: "./media/characters/sarel/head.svg"
  44812. }
  44813. },
  44814. claws: {
  44815. height: math.unit(1.8, "feet"),
  44816. name: "Claws",
  44817. image: {
  44818. source: "./media/characters/sarel/claws.svg"
  44819. }
  44820. },
  44821. clawsAlt: {
  44822. height: math.unit(1.8, "feet"),
  44823. name: "Claws-alt",
  44824. image: {
  44825. source: "./media/characters/sarel/claws-alt.svg"
  44826. }
  44827. },
  44828. },
  44829. [
  44830. {
  44831. name: "Normal",
  44832. height: math.unit(5.67, "feet"),
  44833. default: true
  44834. },
  44835. ]
  44836. ))
  44837. characterMakers.push(() => makeCharacter(
  44838. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44839. {
  44840. front: {
  44841. height: math.unit(5500, "feet"),
  44842. name: "Front",
  44843. image: {
  44844. source: "./media/characters/alyonia/front.svg",
  44845. extra: 1200/1135,
  44846. bottom: 29/1229
  44847. }
  44848. },
  44849. back: {
  44850. height: math.unit(5500, "feet"),
  44851. name: "Back",
  44852. image: {
  44853. source: "./media/characters/alyonia/back.svg",
  44854. extra: 1205/1138,
  44855. bottom: 10/1215
  44856. }
  44857. },
  44858. },
  44859. [
  44860. {
  44861. name: "Small",
  44862. height: math.unit(10, "feet")
  44863. },
  44864. {
  44865. name: "Macro",
  44866. height: math.unit(500, "feet")
  44867. },
  44868. {
  44869. name: "Mega Macro",
  44870. height: math.unit(5500, "feet"),
  44871. default: true
  44872. },
  44873. {
  44874. name: "Mega Macro+",
  44875. height: math.unit(500000, "feet")
  44876. },
  44877. {
  44878. name: "Giga Macro",
  44879. height: math.unit(3000, "miles")
  44880. },
  44881. {
  44882. name: "Tera Macro",
  44883. height: math.unit(2.8e6, "miles")
  44884. },
  44885. {
  44886. name: "Galactic",
  44887. height: math.unit(120000, "lightyears")
  44888. },
  44889. ]
  44890. ))
  44891. characterMakers.push(() => makeCharacter(
  44892. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44893. {
  44894. werewolf: {
  44895. height: math.unit(8, "feet"),
  44896. weight: math.unit(425, "lb"),
  44897. name: "Werewolf",
  44898. image: {
  44899. source: "./media/characters/autumn/werewolf.svg",
  44900. extra: 2154/2031,
  44901. bottom: 160/2314
  44902. }
  44903. },
  44904. human: {
  44905. height: math.unit(5 + 8/12, "feet"),
  44906. weight: math.unit(150, "lb"),
  44907. name: "Human",
  44908. image: {
  44909. source: "./media/characters/autumn/human.svg",
  44910. extra: 1200/1149,
  44911. bottom: 30/1230
  44912. }
  44913. },
  44914. },
  44915. [
  44916. {
  44917. name: "Normal",
  44918. height: math.unit(8, "feet"),
  44919. default: true
  44920. },
  44921. ]
  44922. ))
  44923. characterMakers.push(() => makeCharacter(
  44924. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44925. {
  44926. front: {
  44927. height: math.unit(8 + 5/12, "feet"),
  44928. weight: math.unit(825, "lb"),
  44929. name: "Front",
  44930. image: {
  44931. source: "./media/characters/cobalt-charizard/front.svg",
  44932. extra: 1268/1155,
  44933. bottom: 122/1390
  44934. }
  44935. },
  44936. side: {
  44937. height: math.unit(8 + 5/12, "feet"),
  44938. weight: math.unit(825, "lb"),
  44939. name: "Side",
  44940. image: {
  44941. source: "./media/characters/cobalt-charizard/side.svg",
  44942. extra: 1348/1257,
  44943. bottom: 58/1406
  44944. }
  44945. },
  44946. gMax: {
  44947. height: math.unit(134 + 11/12, "feet"),
  44948. name: "G-Max",
  44949. image: {
  44950. source: "./media/characters/cobalt-charizard/g-max.svg",
  44951. extra: 1835/1541,
  44952. bottom: 151/1986
  44953. }
  44954. },
  44955. },
  44956. [
  44957. {
  44958. name: "Normal",
  44959. height: math.unit(8 + 5/12, "feet"),
  44960. default: true
  44961. },
  44962. ]
  44963. ))
  44964. characterMakers.push(() => makeCharacter(
  44965. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44966. {
  44967. front: {
  44968. height: math.unit(6 + 3/12, "feet"),
  44969. weight: math.unit(210, "lb"),
  44970. name: "Front",
  44971. image: {
  44972. source: "./media/characters/stella/front.svg",
  44973. extra: 3549/3335,
  44974. bottom: 51/3600
  44975. }
  44976. },
  44977. },
  44978. [
  44979. {
  44980. name: "Normal",
  44981. height: math.unit(6 + 3/12, "feet"),
  44982. default: true
  44983. },
  44984. ]
  44985. ))
  44986. characterMakers.push(() => makeCharacter(
  44987. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44988. {
  44989. front: {
  44990. height: math.unit(5, "feet"),
  44991. weight: math.unit(90, "lb"),
  44992. name: "Front",
  44993. image: {
  44994. source: "./media/characters/riley-bishop/front.svg",
  44995. extra: 1450/1428,
  44996. bottom: 152/1602
  44997. }
  44998. },
  44999. },
  45000. [
  45001. {
  45002. name: "Normal",
  45003. height: math.unit(5, "feet"),
  45004. default: true
  45005. },
  45006. ]
  45007. ))
  45008. characterMakers.push(() => makeCharacter(
  45009. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45010. {
  45011. side: {
  45012. height: math.unit(8 + 2/12, "feet"),
  45013. weight: math.unit(500, "kg"),
  45014. name: "Side",
  45015. image: {
  45016. source: "./media/characters/theo-arcanine/side.svg",
  45017. extra: 1342/1074,
  45018. bottom: 111/1453
  45019. }
  45020. },
  45021. },
  45022. [
  45023. {
  45024. name: "Normal",
  45025. height: math.unit(8 + 2/12, "feet"),
  45026. default: true
  45027. },
  45028. ]
  45029. ))
  45030. characterMakers.push(() => makeCharacter(
  45031. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45032. {
  45033. front: {
  45034. height: math.unit(4, "feet"),
  45035. name: "Front",
  45036. image: {
  45037. source: "./media/characters/kali/front.svg",
  45038. extra: 1921/1357,
  45039. bottom: 70/1991
  45040. }
  45041. },
  45042. },
  45043. [
  45044. {
  45045. name: "Normal",
  45046. height: math.unit(4, "feet"),
  45047. default: true
  45048. },
  45049. {
  45050. name: "Macro",
  45051. height: math.unit(32, "meters")
  45052. },
  45053. {
  45054. name: "Macro+",
  45055. height: math.unit(150, "meters")
  45056. },
  45057. {
  45058. name: "Megamacro",
  45059. height: math.unit(7500, "meters")
  45060. },
  45061. {
  45062. name: "Megamacro+",
  45063. height: math.unit(80, "kilometers")
  45064. },
  45065. ]
  45066. ))
  45067. characterMakers.push(() => makeCharacter(
  45068. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45069. {
  45070. side: {
  45071. height: math.unit(5 + 11/12, "feet"),
  45072. weight: math.unit(236, "lb"),
  45073. name: "Side",
  45074. image: {
  45075. source: "./media/characters/gapp/side.svg",
  45076. extra: 775/340,
  45077. bottom: 58/833
  45078. }
  45079. },
  45080. mouth: {
  45081. height: math.unit(2.98, "feet"),
  45082. name: "Mouth",
  45083. image: {
  45084. source: "./media/characters/gapp/mouth.svg"
  45085. }
  45086. },
  45087. },
  45088. [
  45089. {
  45090. name: "Normal",
  45091. height: math.unit(5 + 1/12, "feet"),
  45092. default: true
  45093. },
  45094. ]
  45095. ))
  45096. characterMakers.push(() => makeCharacter(
  45097. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45098. {
  45099. front: {
  45100. height: math.unit(6, "feet"),
  45101. name: "Front",
  45102. image: {
  45103. source: "./media/characters/persephone/front.svg",
  45104. extra: 1895/1717,
  45105. bottom: 96/1991
  45106. }
  45107. },
  45108. back: {
  45109. height: math.unit(6, "feet"),
  45110. name: "Back",
  45111. image: {
  45112. source: "./media/characters/persephone/back.svg",
  45113. extra: 1868/1679,
  45114. bottom: 26/1894
  45115. }
  45116. },
  45117. casual: {
  45118. height: math.unit(6, "feet"),
  45119. name: "Casual",
  45120. image: {
  45121. source: "./media/characters/persephone/casual.svg",
  45122. extra: 1713/1541,
  45123. bottom: 76/1789
  45124. }
  45125. },
  45126. },
  45127. [
  45128. {
  45129. name: "Human Size",
  45130. height: math.unit(6, "feet")
  45131. },
  45132. {
  45133. name: "Big Steppy",
  45134. height: math.unit(600, "meters"),
  45135. default: true
  45136. },
  45137. {
  45138. name: "Galaxy Brain",
  45139. height: math.unit(1, "zettameter")
  45140. },
  45141. ]
  45142. ))
  45143. characterMakers.push(() => makeCharacter(
  45144. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45145. {
  45146. front: {
  45147. height: math.unit(1.85, "meters"),
  45148. name: "Front",
  45149. image: {
  45150. source: "./media/characters/riley-foxthing/front.svg",
  45151. extra: 1495/1354,
  45152. bottom: 122/1617
  45153. }
  45154. },
  45155. frontAlt: {
  45156. height: math.unit(1.85, "meters"),
  45157. name: "Front (Alt)",
  45158. image: {
  45159. source: "./media/characters/riley-foxthing/front-alt.svg",
  45160. extra: 1572/1389,
  45161. bottom: 116/1688
  45162. }
  45163. },
  45164. },
  45165. [
  45166. {
  45167. name: "Normal Sized",
  45168. height: math.unit(1.85, "meters"),
  45169. default: true
  45170. },
  45171. {
  45172. name: "Quite Sizable",
  45173. height: math.unit(5, "meters")
  45174. },
  45175. {
  45176. name: "Rather Large",
  45177. height: math.unit(20, "meters")
  45178. },
  45179. {
  45180. name: "Macro",
  45181. height: math.unit(450, "meters")
  45182. },
  45183. {
  45184. name: "Giga",
  45185. height: math.unit(5, "km")
  45186. },
  45187. ]
  45188. ))
  45189. characterMakers.push(() => makeCharacter(
  45190. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45191. {
  45192. front: {
  45193. height: math.unit(6, "feet"),
  45194. weight: math.unit(200, "lb"),
  45195. name: "Front",
  45196. image: {
  45197. source: "./media/characters/blizzard/front.svg",
  45198. extra: 1136/990,
  45199. bottom: 136/1272
  45200. }
  45201. },
  45202. back: {
  45203. height: math.unit(6, "feet"),
  45204. weight: math.unit(200, "lb"),
  45205. name: "Back",
  45206. image: {
  45207. source: "./media/characters/blizzard/back.svg",
  45208. extra: 1175/1034,
  45209. bottom: 97/1272
  45210. }
  45211. },
  45212. sitting: {
  45213. height: math.unit(3.725, "feet"),
  45214. weight: math.unit(200, "lb"),
  45215. name: "Sitting",
  45216. image: {
  45217. source: "./media/characters/blizzard/sitting.svg",
  45218. extra: 581/485,
  45219. bottom: 90/671
  45220. }
  45221. },
  45222. frontWizard: {
  45223. height: math.unit(7.9, "feet"),
  45224. weight: math.unit(200, "lb"),
  45225. name: "Front (Wizard)",
  45226. image: {
  45227. source: "./media/characters/blizzard/front-wizard.svg"
  45228. }
  45229. },
  45230. backWizard: {
  45231. height: math.unit(7.9, "feet"),
  45232. weight: math.unit(200, "lb"),
  45233. name: "Back (Wizard)",
  45234. image: {
  45235. source: "./media/characters/blizzard/back-wizard.svg"
  45236. }
  45237. },
  45238. frontNsfw: {
  45239. height: math.unit(6, "feet"),
  45240. weight: math.unit(200, "lb"),
  45241. name: "Front (NSFW)",
  45242. image: {
  45243. source: "./media/characters/blizzard/front-nsfw.svg",
  45244. extra: 1136/990,
  45245. bottom: 136/1272
  45246. }
  45247. },
  45248. backNsfw: {
  45249. height: math.unit(6, "feet"),
  45250. weight: math.unit(200, "lb"),
  45251. name: "Back (NSFW)",
  45252. image: {
  45253. source: "./media/characters/blizzard/back-nsfw.svg",
  45254. extra: 1175/1034,
  45255. bottom: 97/1272
  45256. }
  45257. },
  45258. sittingNsfw: {
  45259. height: math.unit(3.725, "feet"),
  45260. weight: math.unit(200, "lb"),
  45261. name: "Sitting (NSFW)",
  45262. image: {
  45263. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45264. extra: 581/485,
  45265. bottom: 90/671
  45266. }
  45267. },
  45268. wizardFrontNsfw: {
  45269. height: math.unit(7.9, "feet"),
  45270. weight: math.unit(200, "lb"),
  45271. name: "Wizard (Front, NSFW)",
  45272. image: {
  45273. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45274. }
  45275. },
  45276. },
  45277. [
  45278. {
  45279. name: "Normal",
  45280. height: math.unit(6, "feet"),
  45281. default: true
  45282. },
  45283. ]
  45284. ))
  45285. characterMakers.push(() => makeCharacter(
  45286. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45287. {
  45288. front: {
  45289. height: math.unit(5 + 2/12, "feet"),
  45290. name: "Front",
  45291. image: {
  45292. source: "./media/characters/lumi/front.svg",
  45293. extra: 1328/1268,
  45294. bottom: 103/1431
  45295. }
  45296. },
  45297. back: {
  45298. height: math.unit(5 + 2/12, "feet"),
  45299. name: "Back",
  45300. image: {
  45301. source: "./media/characters/lumi/back.svg",
  45302. extra: 1381/1327,
  45303. bottom: 43/1424
  45304. }
  45305. },
  45306. },
  45307. [
  45308. {
  45309. name: "Normal",
  45310. height: math.unit(5 + 2/12, "feet"),
  45311. default: true
  45312. },
  45313. ]
  45314. ))
  45315. characterMakers.push(() => makeCharacter(
  45316. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45317. {
  45318. front: {
  45319. height: math.unit(5 + 9/12, "feet"),
  45320. name: "Front",
  45321. image: {
  45322. source: "./media/characters/aliya-cotton/front.svg",
  45323. extra: 577/564,
  45324. bottom: 29/606
  45325. }
  45326. },
  45327. },
  45328. [
  45329. {
  45330. name: "Normal",
  45331. height: math.unit(5 + 9/12, "feet"),
  45332. default: true
  45333. },
  45334. ]
  45335. ))
  45336. characterMakers.push(() => makeCharacter(
  45337. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45338. {
  45339. front: {
  45340. height: math.unit(2.7, "meters"),
  45341. weight: math.unit(25000, "lb"),
  45342. name: "Front",
  45343. image: {
  45344. source: "./media/characters/noah-luxray/front.svg",
  45345. extra: 1644/825,
  45346. bottom: 339/1983
  45347. }
  45348. },
  45349. side: {
  45350. height: math.unit(2.97, "meters"),
  45351. weight: math.unit(25000, "lb"),
  45352. name: "Side",
  45353. image: {
  45354. source: "./media/characters/noah-luxray/side.svg",
  45355. extra: 1319/650,
  45356. bottom: 163/1482
  45357. }
  45358. },
  45359. dick: {
  45360. height: math.unit(7.4, "feet"),
  45361. weight: math.unit(2500, "lb"),
  45362. name: "Dick",
  45363. image: {
  45364. source: "./media/characters/noah-luxray/dick.svg"
  45365. }
  45366. },
  45367. dickAlt: {
  45368. height: math.unit(10.83, "feet"),
  45369. weight: math.unit(2500, "lb"),
  45370. name: "Dick-alt",
  45371. image: {
  45372. source: "./media/characters/noah-luxray/dick-alt.svg"
  45373. }
  45374. },
  45375. },
  45376. [
  45377. {
  45378. name: "BIG",
  45379. height: math.unit(2.7, "meters"),
  45380. default: true
  45381. },
  45382. ]
  45383. ))
  45384. characterMakers.push(() => makeCharacter(
  45385. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45386. {
  45387. standing: {
  45388. height: math.unit(183, "cm"),
  45389. weight: math.unit(68, "kg"),
  45390. name: "Standing",
  45391. image: {
  45392. source: "./media/characters/arion/standing.svg",
  45393. extra: 1869/1807,
  45394. bottom: 93/1962
  45395. }
  45396. },
  45397. reclining: {
  45398. height: math.unit(70.5, "cm"),
  45399. weight: math.unit(68, "lb"),
  45400. name: "Reclining",
  45401. image: {
  45402. source: "./media/characters/arion/reclining.svg",
  45403. extra: 937/870,
  45404. bottom: 63/1000
  45405. }
  45406. },
  45407. },
  45408. [
  45409. {
  45410. name: "Colossus Size, Low",
  45411. height: math.unit(33, "meters"),
  45412. default: true
  45413. },
  45414. {
  45415. name: "Colossus Size, Mid",
  45416. height: math.unit(52, "meters")
  45417. },
  45418. {
  45419. name: "Colossus Size, High",
  45420. height: math.unit(60, "meters")
  45421. },
  45422. {
  45423. name: "Titan Size, Low",
  45424. height: math.unit(91, "meters"),
  45425. },
  45426. {
  45427. name: "Titan Size, Mid",
  45428. height: math.unit(122, "meters")
  45429. },
  45430. {
  45431. name: "Titan Size, High",
  45432. height: math.unit(162, "meters")
  45433. },
  45434. ]
  45435. ))
  45436. characterMakers.push(() => makeCharacter(
  45437. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45438. {
  45439. front: {
  45440. height: math.unit(53, "meters"),
  45441. name: "Front",
  45442. image: {
  45443. source: "./media/characters/stellar-marbey/front.svg",
  45444. extra: 1913/1805,
  45445. bottom: 92/2005
  45446. }
  45447. },
  45448. back: {
  45449. height: math.unit(53, "meters"),
  45450. name: "Back",
  45451. image: {
  45452. source: "./media/characters/stellar-marbey/back.svg",
  45453. extra: 1960/1851,
  45454. bottom: 28/1988
  45455. }
  45456. },
  45457. mouth: {
  45458. height: math.unit(3.5, "meters"),
  45459. name: "Mouth",
  45460. image: {
  45461. source: "./media/characters/stellar-marbey/mouth.svg"
  45462. }
  45463. },
  45464. },
  45465. [
  45466. {
  45467. name: "Macro",
  45468. height: math.unit(53, "meters"),
  45469. default: true
  45470. },
  45471. ]
  45472. ))
  45473. characterMakers.push(() => makeCharacter(
  45474. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45475. {
  45476. front: {
  45477. height: math.unit(8 + 1/12, "feet"),
  45478. weight: math.unit(233, "lb"),
  45479. name: "Front",
  45480. image: {
  45481. source: "./media/characters/matsu/front.svg",
  45482. extra: 832/772,
  45483. bottom: 40/872
  45484. }
  45485. },
  45486. back: {
  45487. height: math.unit(8 + 1/12, "feet"),
  45488. weight: math.unit(233, "lb"),
  45489. name: "Back",
  45490. image: {
  45491. source: "./media/characters/matsu/back.svg",
  45492. extra: 839/780,
  45493. bottom: 47/886
  45494. }
  45495. },
  45496. },
  45497. [
  45498. {
  45499. name: "Normal",
  45500. height: math.unit(8 + 1/12, "feet"),
  45501. default: true
  45502. },
  45503. ]
  45504. ))
  45505. characterMakers.push(() => makeCharacter(
  45506. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45507. {
  45508. front: {
  45509. height: math.unit(4, "feet"),
  45510. weight: math.unit(148, "lb"),
  45511. name: "Front",
  45512. image: {
  45513. source: "./media/characters/thiz/front.svg",
  45514. extra: 1913/1748,
  45515. bottom: 62/1975
  45516. }
  45517. },
  45518. },
  45519. [
  45520. {
  45521. name: "Normal",
  45522. height: math.unit(4, "feet"),
  45523. default: true
  45524. },
  45525. ]
  45526. ))
  45527. characterMakers.push(() => makeCharacter(
  45528. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45529. {
  45530. front: {
  45531. height: math.unit(7 + 6/12, "feet"),
  45532. weight: math.unit(267, "lb"),
  45533. name: "Front",
  45534. image: {
  45535. source: "./media/characters/marcel/front.svg",
  45536. extra: 1221/1096,
  45537. bottom: 76/1297
  45538. }
  45539. },
  45540. },
  45541. [
  45542. {
  45543. name: "Normal",
  45544. height: math.unit(7 + 6/12, "feet"),
  45545. default: true
  45546. },
  45547. ]
  45548. ))
  45549. characterMakers.push(() => makeCharacter(
  45550. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45551. {
  45552. side: {
  45553. height: math.unit(42, "meters"),
  45554. name: "Side",
  45555. image: {
  45556. source: "./media/characters/flake/side.svg",
  45557. extra: 1525/1306,
  45558. bottom: 209/1734
  45559. }
  45560. },
  45561. },
  45562. [
  45563. {
  45564. name: "Normal",
  45565. height: math.unit(42, "meters"),
  45566. default: true
  45567. },
  45568. ]
  45569. ))
  45570. characterMakers.push(() => makeCharacter(
  45571. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45572. {
  45573. dressed: {
  45574. height: math.unit(6 + 4/12, "feet"),
  45575. weight: math.unit(520, "lb"),
  45576. name: "Dressed",
  45577. image: {
  45578. source: "./media/characters/someonne/dressed.svg",
  45579. extra: 1020/1010,
  45580. bottom: 178/1198
  45581. }
  45582. },
  45583. undressed: {
  45584. height: math.unit(6 + 4/12, "feet"),
  45585. weight: math.unit(520, "lb"),
  45586. name: "Undressed",
  45587. image: {
  45588. source: "./media/characters/someonne/undressed.svg",
  45589. extra: 1019/1014,
  45590. bottom: 169/1188
  45591. }
  45592. },
  45593. },
  45594. [
  45595. {
  45596. name: "Normal",
  45597. height: math.unit(6 + 4/12, "feet"),
  45598. default: true
  45599. },
  45600. ]
  45601. ))
  45602. characterMakers.push(() => makeCharacter(
  45603. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45604. {
  45605. front: {
  45606. height: math.unit(3, "feet"),
  45607. weight: math.unit(30, "lb"),
  45608. name: "Front",
  45609. image: {
  45610. source: "./media/characters/till/front.svg",
  45611. extra: 892/823,
  45612. bottom: 55/947
  45613. }
  45614. },
  45615. },
  45616. [
  45617. {
  45618. name: "Normal",
  45619. height: math.unit(3, "feet"),
  45620. default: true
  45621. },
  45622. ]
  45623. ))
  45624. characterMakers.push(() => makeCharacter(
  45625. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45626. {
  45627. front: {
  45628. height: math.unit(9 + 8/12, "feet"),
  45629. weight: math.unit(800, "lb"),
  45630. name: "Front",
  45631. image: {
  45632. source: "./media/characters/sydney-heki/front.svg",
  45633. extra: 1360/1300,
  45634. bottom: 22/1382
  45635. }
  45636. },
  45637. back: {
  45638. height: math.unit(9 + 8/12, "feet"),
  45639. weight: math.unit(800, "lb"),
  45640. name: "Back",
  45641. image: {
  45642. source: "./media/characters/sydney-heki/back.svg",
  45643. extra: 1356/1293,
  45644. bottom: 12/1368
  45645. }
  45646. },
  45647. frontDressed: {
  45648. height: math.unit(9 + 8/12, "feet"),
  45649. weight: math.unit(800, "lb"),
  45650. name: "Front-dressed",
  45651. image: {
  45652. source: "./media/characters/sydney-heki/front-dressed.svg",
  45653. extra: 1360/1300,
  45654. bottom: 22/1382
  45655. }
  45656. },
  45657. },
  45658. [
  45659. {
  45660. name: "Normal",
  45661. height: math.unit(9 + 8/12, "feet"),
  45662. default: true
  45663. },
  45664. {
  45665. name: "Macro",
  45666. height: math.unit(500, "feet")
  45667. },
  45668. {
  45669. name: "Megamacro",
  45670. height: math.unit(3.6, "miles")
  45671. },
  45672. ]
  45673. ))
  45674. characterMakers.push(() => makeCharacter(
  45675. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45676. {
  45677. front: {
  45678. height: math.unit(200, "cm"),
  45679. weight: math.unit(250, "lb"),
  45680. name: "Front",
  45681. image: {
  45682. source: "./media/characters/fowler-karlsson/front.svg",
  45683. extra: 897/845,
  45684. bottom: 123/1020
  45685. }
  45686. },
  45687. back: {
  45688. height: math.unit(200, "cm"),
  45689. weight: math.unit(250, "lb"),
  45690. name: "Back",
  45691. image: {
  45692. source: "./media/characters/fowler-karlsson/back.svg",
  45693. extra: 999/944,
  45694. bottom: 26/1025
  45695. }
  45696. },
  45697. dick: {
  45698. height: math.unit(1.92, "feet"),
  45699. weight: math.unit(150, "lb"),
  45700. name: "Dick",
  45701. image: {
  45702. source: "./media/characters/fowler-karlsson/dick.svg"
  45703. }
  45704. },
  45705. },
  45706. [
  45707. {
  45708. name: "Normal",
  45709. height: math.unit(200, "cm"),
  45710. default: true
  45711. },
  45712. {
  45713. name: "Smaller Macro",
  45714. height: math.unit(90, "m")
  45715. },
  45716. {
  45717. name: "Macro",
  45718. height: math.unit(150, "m")
  45719. },
  45720. {
  45721. name: "Bigger Macro",
  45722. height: math.unit(300, "m")
  45723. },
  45724. ]
  45725. ))
  45726. characterMakers.push(() => makeCharacter(
  45727. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45728. {
  45729. side: {
  45730. height: math.unit(8 + 2/12, "feet"),
  45731. weight: math.unit(1, "tonne"),
  45732. name: "Side",
  45733. image: {
  45734. source: "./media/characters/rylide/side.svg",
  45735. extra: 1318/1034,
  45736. bottom: 106/1424
  45737. }
  45738. },
  45739. sitting: {
  45740. height: math.unit(303, "cm"),
  45741. weight: math.unit(1, "tonne"),
  45742. name: "Sitting",
  45743. image: {
  45744. source: "./media/characters/rylide/sitting.svg",
  45745. extra: 1303/1103,
  45746. bottom: 36/1339
  45747. }
  45748. },
  45749. },
  45750. [
  45751. {
  45752. name: "Normal",
  45753. height: math.unit(8 + 2/12, "feet"),
  45754. default: true
  45755. },
  45756. ]
  45757. ))
  45758. characterMakers.push(() => makeCharacter(
  45759. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45760. {
  45761. front: {
  45762. height: math.unit(5 + 10/12, "feet"),
  45763. weight: math.unit(160, "lb"),
  45764. name: "Front",
  45765. image: {
  45766. source: "./media/characters/pudask/front.svg",
  45767. extra: 1616/1590,
  45768. bottom: 161/1777
  45769. }
  45770. },
  45771. },
  45772. [
  45773. {
  45774. name: "Ferret Height",
  45775. height: math.unit(2 + 5/12, "feet")
  45776. },
  45777. {
  45778. name: "Canon Height",
  45779. height: math.unit(5 + 10/12, "feet"),
  45780. default: true
  45781. },
  45782. ]
  45783. ))
  45784. characterMakers.push(() => makeCharacter(
  45785. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45786. {
  45787. front: {
  45788. height: math.unit(3 + 6/12, "feet"),
  45789. weight: math.unit(60, "lb"),
  45790. name: "Front",
  45791. image: {
  45792. source: "./media/characters/ramita/front.svg",
  45793. extra: 1402/1232,
  45794. bottom: 62/1464
  45795. }
  45796. },
  45797. dressed: {
  45798. height: math.unit(3 + 6/12, "feet"),
  45799. weight: math.unit(60, "lb"),
  45800. name: "Dressed",
  45801. image: {
  45802. source: "./media/characters/ramita/dressed.svg",
  45803. extra: 1534/1249,
  45804. bottom: 50/1584
  45805. }
  45806. },
  45807. },
  45808. [
  45809. {
  45810. name: "Normal",
  45811. height: math.unit(3 + 6/12, "feet"),
  45812. default: true
  45813. },
  45814. ]
  45815. ))
  45816. characterMakers.push(() => makeCharacter(
  45817. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45818. {
  45819. front: {
  45820. height: math.unit(8, "feet"),
  45821. name: "Front",
  45822. image: {
  45823. source: "./media/characters/ark/front.svg",
  45824. extra: 772/693,
  45825. bottom: 45/817
  45826. }
  45827. },
  45828. },
  45829. [
  45830. {
  45831. name: "Normal",
  45832. height: math.unit(8, "feet"),
  45833. default: true
  45834. },
  45835. ]
  45836. ))
  45837. characterMakers.push(() => makeCharacter(
  45838. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45839. {
  45840. front: {
  45841. height: math.unit(6, "feet"),
  45842. weight: math.unit(250, "lb"),
  45843. volume: math.unit(5/8, "gallons"),
  45844. name: "Front",
  45845. image: {
  45846. source: "./media/characters/ludwig-horn/front.svg",
  45847. extra: 1782/1635,
  45848. bottom: 96/1878
  45849. }
  45850. },
  45851. back: {
  45852. height: math.unit(6, "feet"),
  45853. weight: math.unit(250, "lb"),
  45854. volume: math.unit(5/8, "gallons"),
  45855. name: "Back",
  45856. image: {
  45857. source: "./media/characters/ludwig-horn/back.svg",
  45858. extra: 1874/1729,
  45859. bottom: 27/1901
  45860. }
  45861. },
  45862. dick: {
  45863. height: math.unit(1.05, "feet"),
  45864. weight: math.unit(15, "lb"),
  45865. volume: math.unit(5/8, "gallons"),
  45866. name: "Dick",
  45867. image: {
  45868. source: "./media/characters/ludwig-horn/dick.svg"
  45869. }
  45870. },
  45871. },
  45872. [
  45873. {
  45874. name: "Small",
  45875. height: math.unit(6, "feet")
  45876. },
  45877. {
  45878. name: "Typical",
  45879. height: math.unit(12, "feet"),
  45880. default: true
  45881. },
  45882. {
  45883. name: "Building",
  45884. height: math.unit(80, "feet")
  45885. },
  45886. {
  45887. name: "Town",
  45888. height: math.unit(800, "feet")
  45889. },
  45890. {
  45891. name: "Kingdom",
  45892. height: math.unit(80000, "feet")
  45893. },
  45894. {
  45895. name: "Planet",
  45896. height: math.unit(8000000, "feet")
  45897. },
  45898. {
  45899. name: "Universe",
  45900. height: math.unit(8000000000, "feet")
  45901. },
  45902. {
  45903. name: "Transcended",
  45904. height: math.unit(8e27, "feet")
  45905. },
  45906. ]
  45907. ))
  45908. characterMakers.push(() => makeCharacter(
  45909. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45910. {
  45911. front: {
  45912. height: math.unit(5, "feet"),
  45913. weight: math.unit(50, "kg"),
  45914. name: "Front",
  45915. image: {
  45916. source: "./media/characters/biot-avery/front.svg",
  45917. extra: 1295/1232,
  45918. bottom: 86/1381
  45919. }
  45920. },
  45921. },
  45922. [
  45923. {
  45924. name: "Normal",
  45925. height: math.unit(5, "feet"),
  45926. default: true
  45927. },
  45928. ]
  45929. ))
  45930. characterMakers.push(() => makeCharacter(
  45931. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45932. {
  45933. front: {
  45934. height: math.unit(6, "feet"),
  45935. name: "Front",
  45936. image: {
  45937. source: "./media/characters/kitsune-kiro/front.svg",
  45938. extra: 1270/1158,
  45939. bottom: 42/1312
  45940. }
  45941. },
  45942. frontAlt: {
  45943. height: math.unit(6, "feet"),
  45944. name: "Front-alt",
  45945. image: {
  45946. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45947. extra: 1130/1081,
  45948. bottom: 36/1166
  45949. }
  45950. },
  45951. },
  45952. [
  45953. {
  45954. name: "Smol",
  45955. height: math.unit(3, "feet")
  45956. },
  45957. {
  45958. name: "Normal",
  45959. height: math.unit(6, "feet"),
  45960. default: true
  45961. },
  45962. ]
  45963. ))
  45964. characterMakers.push(() => makeCharacter(
  45965. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45966. {
  45967. front: {
  45968. height: math.unit(6, "feet"),
  45969. weight: math.unit(125, "lb"),
  45970. name: "Front",
  45971. image: {
  45972. source: "./media/characters/jack-thatcher/front.svg",
  45973. extra: 1474/1370,
  45974. bottom: 26/1500
  45975. }
  45976. },
  45977. back: {
  45978. height: math.unit(6, "feet"),
  45979. weight: math.unit(125, "lb"),
  45980. name: "Back",
  45981. image: {
  45982. source: "./media/characters/jack-thatcher/back.svg",
  45983. extra: 1489/1384,
  45984. bottom: 18/1507
  45985. }
  45986. },
  45987. },
  45988. [
  45989. {
  45990. name: "Normal",
  45991. height: math.unit(6, "feet"),
  45992. default: true
  45993. },
  45994. {
  45995. name: "Macro",
  45996. height: math.unit(75, "feet")
  45997. },
  45998. {
  45999. name: "Macro-er",
  46000. height: math.unit(250, "feet")
  46001. },
  46002. ]
  46003. ))
  46004. characterMakers.push(() => makeCharacter(
  46005. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46006. {
  46007. front: {
  46008. height: math.unit(7, "feet"),
  46009. weight: math.unit(110, "kg"),
  46010. name: "Front",
  46011. image: {
  46012. source: "./media/characters/max-hyper/front.svg",
  46013. extra: 1969/1881,
  46014. bottom: 49/2018
  46015. }
  46016. },
  46017. },
  46018. [
  46019. {
  46020. name: "Normal",
  46021. height: math.unit(7, "feet"),
  46022. default: true
  46023. },
  46024. ]
  46025. ))
  46026. characterMakers.push(() => makeCharacter(
  46027. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46028. {
  46029. front: {
  46030. height: math.unit(5 + 5/12, "feet"),
  46031. weight: math.unit(160, "lb"),
  46032. name: "Front",
  46033. image: {
  46034. source: "./media/characters/spook/front.svg",
  46035. extra: 794/791,
  46036. bottom: 54/848
  46037. }
  46038. },
  46039. back: {
  46040. height: math.unit(5 + 5/12, "feet"),
  46041. weight: math.unit(160, "lb"),
  46042. name: "Back",
  46043. image: {
  46044. source: "./media/characters/spook/back.svg",
  46045. extra: 812/798,
  46046. bottom: 32/844
  46047. }
  46048. },
  46049. },
  46050. [
  46051. {
  46052. name: "Normal",
  46053. height: math.unit(5 + 5/12, "feet"),
  46054. default: true
  46055. },
  46056. ]
  46057. ))
  46058. characterMakers.push(() => makeCharacter(
  46059. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46060. {
  46061. front: {
  46062. height: math.unit(18, "feet"),
  46063. name: "Front",
  46064. image: {
  46065. source: "./media/characters/xeaduulix/front.svg",
  46066. extra: 1380/1166,
  46067. bottom: 110/1490
  46068. }
  46069. },
  46070. back: {
  46071. height: math.unit(18, "feet"),
  46072. name: "Back",
  46073. image: {
  46074. source: "./media/characters/xeaduulix/back.svg",
  46075. extra: 1592/1170,
  46076. bottom: 128/1720
  46077. }
  46078. },
  46079. frontNsfw: {
  46080. height: math.unit(18, "feet"),
  46081. name: "Front (NSFW)",
  46082. image: {
  46083. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46084. extra: 1380/1166,
  46085. bottom: 110/1490
  46086. }
  46087. },
  46088. backNsfw: {
  46089. height: math.unit(18, "feet"),
  46090. name: "Back (NSFW)",
  46091. image: {
  46092. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46093. extra: 1592/1170,
  46094. bottom: 128/1720
  46095. }
  46096. },
  46097. },
  46098. [
  46099. {
  46100. name: "Normal",
  46101. height: math.unit(18, "feet"),
  46102. default: true
  46103. },
  46104. ]
  46105. ))
  46106. characterMakers.push(() => makeCharacter(
  46107. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46108. {
  46109. spreadWings: {
  46110. height: math.unit(20, "feet"),
  46111. name: "Spread Wings",
  46112. image: {
  46113. source: "./media/characters/fledge/spread-wings.svg",
  46114. extra: 693/635,
  46115. bottom: 26/719
  46116. }
  46117. },
  46118. front: {
  46119. height: math.unit(20, "feet"),
  46120. name: "Front",
  46121. image: {
  46122. source: "./media/characters/fledge/front.svg",
  46123. extra: 684/637,
  46124. bottom: 18/702
  46125. }
  46126. },
  46127. frontAlt: {
  46128. height: math.unit(20, "feet"),
  46129. name: "Front (Alt)",
  46130. image: {
  46131. source: "./media/characters/fledge/front-alt.svg",
  46132. extra: 708/664,
  46133. bottom: 13/721
  46134. }
  46135. },
  46136. back: {
  46137. height: math.unit(20, "feet"),
  46138. name: "Back",
  46139. image: {
  46140. source: "./media/characters/fledge/back.svg",
  46141. extra: 718/634,
  46142. bottom: 22/740
  46143. }
  46144. },
  46145. head: {
  46146. height: math.unit(5.55, "feet"),
  46147. name: "Head",
  46148. image: {
  46149. source: "./media/characters/fledge/head.svg"
  46150. }
  46151. },
  46152. headAlt: {
  46153. height: math.unit(5.1, "feet"),
  46154. name: "Head (Alt)",
  46155. image: {
  46156. source: "./media/characters/fledge/head-alt.svg"
  46157. }
  46158. },
  46159. },
  46160. [
  46161. {
  46162. name: "Small",
  46163. height: math.unit(6 + 2/12, "feet")
  46164. },
  46165. {
  46166. name: "Big",
  46167. height: math.unit(20, "feet"),
  46168. default: true
  46169. },
  46170. {
  46171. name: "Giant",
  46172. height: math.unit(100, "feet")
  46173. },
  46174. {
  46175. name: "Macro",
  46176. height: math.unit(200, "feet")
  46177. },
  46178. ]
  46179. ))
  46180. characterMakers.push(() => makeCharacter(
  46181. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46182. {
  46183. front: {
  46184. height: math.unit(1, "meter"),
  46185. name: "Front",
  46186. image: {
  46187. source: "./media/characters/atlas-morenai/front.svg",
  46188. extra: 1275/1043,
  46189. bottom: 19/1294
  46190. }
  46191. },
  46192. back: {
  46193. height: math.unit(1, "meter"),
  46194. name: "Back",
  46195. image: {
  46196. source: "./media/characters/atlas-morenai/back.svg",
  46197. extra: 1141/1001,
  46198. bottom: 25/1166
  46199. }
  46200. },
  46201. },
  46202. [
  46203. {
  46204. name: "Normal",
  46205. height: math.unit(1, "meter"),
  46206. default: true
  46207. },
  46208. {
  46209. name: "Magic-Infused",
  46210. height: math.unit(5, "meters")
  46211. },
  46212. ]
  46213. ))
  46214. characterMakers.push(() => makeCharacter(
  46215. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46216. {
  46217. front: {
  46218. height: math.unit(5, "meters"),
  46219. name: "Front",
  46220. image: {
  46221. source: "./media/characters/cintia/front.svg",
  46222. extra: 1312/1228,
  46223. bottom: 38/1350
  46224. }
  46225. },
  46226. back: {
  46227. height: math.unit(5, "meters"),
  46228. name: "Back",
  46229. image: {
  46230. source: "./media/characters/cintia/back.svg",
  46231. extra: 1260/1166,
  46232. bottom: 98/1358
  46233. }
  46234. },
  46235. frontDick: {
  46236. height: math.unit(5, "meters"),
  46237. name: "Front (Dick)",
  46238. image: {
  46239. source: "./media/characters/cintia/front-dick.svg",
  46240. extra: 1312/1228,
  46241. bottom: 38/1350
  46242. }
  46243. },
  46244. backDick: {
  46245. height: math.unit(5, "meters"),
  46246. name: "Back (Dick)",
  46247. image: {
  46248. source: "./media/characters/cintia/back-dick.svg",
  46249. extra: 1260/1166,
  46250. bottom: 98/1358
  46251. }
  46252. },
  46253. bust: {
  46254. height: math.unit(1.97, "meters"),
  46255. name: "Bust",
  46256. image: {
  46257. source: "./media/characters/cintia/bust.svg",
  46258. extra: 617/565,
  46259. bottom: 0/617
  46260. }
  46261. },
  46262. },
  46263. [
  46264. {
  46265. name: "Normal",
  46266. height: math.unit(5, "meters"),
  46267. default: true
  46268. },
  46269. ]
  46270. ))
  46271. characterMakers.push(() => makeCharacter(
  46272. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46273. {
  46274. side: {
  46275. height: math.unit(100, "feet"),
  46276. name: "Side",
  46277. image: {
  46278. source: "./media/characters/denora/side.svg",
  46279. extra: 875/803,
  46280. bottom: 9/884
  46281. }
  46282. },
  46283. },
  46284. [
  46285. {
  46286. name: "Standard",
  46287. height: math.unit(100, "feet"),
  46288. default: true
  46289. },
  46290. {
  46291. name: "Grand",
  46292. height: math.unit(1000, "feet")
  46293. },
  46294. {
  46295. name: "Conquering",
  46296. height: math.unit(10000, "feet")
  46297. },
  46298. ]
  46299. ))
  46300. characterMakers.push(() => makeCharacter(
  46301. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46302. {
  46303. dressed: {
  46304. height: math.unit(8 + 5/12, "feet"),
  46305. weight: math.unit(700, "lb"),
  46306. name: "Dressed",
  46307. image: {
  46308. source: "./media/characters/kiva/dressed.svg",
  46309. extra: 1102/1055,
  46310. bottom: 60/1162
  46311. }
  46312. },
  46313. nude: {
  46314. height: math.unit(8 + 5/12, "feet"),
  46315. weight: math.unit(700, "lb"),
  46316. name: "Nude",
  46317. image: {
  46318. source: "./media/characters/kiva/nude.svg",
  46319. extra: 1102/1055,
  46320. bottom: 60/1162
  46321. }
  46322. },
  46323. },
  46324. [
  46325. {
  46326. name: "Base Height",
  46327. height: math.unit(8 + 5/12, "feet"),
  46328. default: true
  46329. },
  46330. {
  46331. name: "Macro",
  46332. height: math.unit(100, "feet")
  46333. },
  46334. {
  46335. name: "Max",
  46336. height: math.unit(3280, "feet")
  46337. },
  46338. ]
  46339. ))
  46340. characterMakers.push(() => makeCharacter(
  46341. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46342. {
  46343. front: {
  46344. height: math.unit(6 + 8/12, "feet"),
  46345. weight: math.unit(250, "lb"),
  46346. name: "Front",
  46347. image: {
  46348. source: "./media/characters/ztragon/front.svg",
  46349. extra: 1825/1684,
  46350. bottom: 98/1923
  46351. }
  46352. },
  46353. },
  46354. [
  46355. {
  46356. name: "Normal",
  46357. height: math.unit(6 + 8/12, "feet"),
  46358. default: true
  46359. },
  46360. {
  46361. name: "Macro",
  46362. height: math.unit(80, "feet")
  46363. },
  46364. ]
  46365. ))
  46366. characterMakers.push(() => makeCharacter(
  46367. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46368. {
  46369. front: {
  46370. height: math.unit(10.4, "feet"),
  46371. weight: math.unit(2, "tons"),
  46372. name: "Front",
  46373. image: {
  46374. source: "./media/characters/yesenia/front.svg",
  46375. extra: 1479/1474,
  46376. bottom: 233/1712
  46377. }
  46378. },
  46379. },
  46380. [
  46381. {
  46382. name: "Normal",
  46383. height: math.unit(10.4, "feet"),
  46384. default: true
  46385. },
  46386. ]
  46387. ))
  46388. characterMakers.push(() => makeCharacter(
  46389. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46390. {
  46391. normal: {
  46392. height: math.unit(6 + 1/12, "feet"),
  46393. weight: math.unit(180, "lb"),
  46394. name: "Normal",
  46395. image: {
  46396. source: "./media/characters/leanne-lycheborne/normal.svg",
  46397. extra: 1748/1660,
  46398. bottom: 98/1846
  46399. }
  46400. },
  46401. were: {
  46402. height: math.unit(12, "feet"),
  46403. weight: math.unit(1600, "lb"),
  46404. name: "Were",
  46405. image: {
  46406. source: "./media/characters/leanne-lycheborne/were.svg",
  46407. extra: 1485/1432,
  46408. bottom: 66/1551
  46409. }
  46410. },
  46411. },
  46412. [
  46413. {
  46414. name: "Normal",
  46415. height: math.unit(6 + 1/12, "feet"),
  46416. default: true
  46417. },
  46418. ]
  46419. ))
  46420. characterMakers.push(() => makeCharacter(
  46421. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46422. {
  46423. side: {
  46424. height: math.unit(13, "feet"),
  46425. name: "Side",
  46426. image: {
  46427. source: "./media/characters/kira-tyler/side.svg",
  46428. extra: 693/393,
  46429. bottom: 58/751
  46430. }
  46431. },
  46432. },
  46433. [
  46434. {
  46435. name: "Normal",
  46436. height: math.unit(13, "feet"),
  46437. default: true
  46438. },
  46439. ]
  46440. ))
  46441. characterMakers.push(() => makeCharacter(
  46442. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46443. {
  46444. front: {
  46445. height: math.unit(10.3, "feet"),
  46446. weight: math.unit(150, "lb"),
  46447. name: "Front",
  46448. image: {
  46449. source: "./media/characters/blaze/front.svg",
  46450. extra: 1378/1286,
  46451. bottom: 172/1550
  46452. }
  46453. },
  46454. },
  46455. [
  46456. {
  46457. name: "Normal",
  46458. height: math.unit(10.3, "feet"),
  46459. default: true
  46460. },
  46461. ]
  46462. ))
  46463. characterMakers.push(() => makeCharacter(
  46464. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46465. {
  46466. side: {
  46467. height: math.unit(2, "meters"),
  46468. weight: math.unit(400, "kg"),
  46469. name: "Side",
  46470. image: {
  46471. source: "./media/characters/anu/side.svg",
  46472. extra: 506/394,
  46473. bottom: 18/524
  46474. }
  46475. },
  46476. },
  46477. [
  46478. {
  46479. name: "Humanoid",
  46480. height: math.unit(2, "meters")
  46481. },
  46482. {
  46483. name: "Normal",
  46484. height: math.unit(5, "meters"),
  46485. default: true
  46486. },
  46487. ]
  46488. ))
  46489. characterMakers.push(() => makeCharacter(
  46490. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46491. {
  46492. front: {
  46493. height: math.unit(5 + 5/12, "feet"),
  46494. weight: math.unit(170, "lb"),
  46495. name: "Front",
  46496. image: {
  46497. source: "./media/characters/synx-the-lynx/front.svg",
  46498. extra: 1893/1745,
  46499. bottom: 17/1910
  46500. }
  46501. },
  46502. side: {
  46503. height: math.unit(5 + 5/12, "feet"),
  46504. weight: math.unit(170, "lb"),
  46505. name: "Side",
  46506. image: {
  46507. source: "./media/characters/synx-the-lynx/side.svg",
  46508. extra: 1884/1740,
  46509. bottom: 39/1923
  46510. }
  46511. },
  46512. back: {
  46513. height: math.unit(5 + 5/12, "feet"),
  46514. weight: math.unit(170, "lb"),
  46515. name: "Back",
  46516. image: {
  46517. source: "./media/characters/synx-the-lynx/back.svg",
  46518. extra: 1903/1755,
  46519. bottom: 14/1917
  46520. }
  46521. },
  46522. },
  46523. [
  46524. {
  46525. name: "Normal",
  46526. height: math.unit(5 + 5/12, "feet"),
  46527. default: true
  46528. },
  46529. ]
  46530. ))
  46531. characterMakers.push(() => makeCharacter(
  46532. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46533. {
  46534. back: {
  46535. height: math.unit(15, "feet"),
  46536. name: "Back",
  46537. image: {
  46538. source: "./media/characters/nadezda-fex/back.svg",
  46539. extra: 1695/1481,
  46540. bottom: 25/1720
  46541. }
  46542. },
  46543. },
  46544. [
  46545. {
  46546. name: "Normal",
  46547. height: math.unit(15, "feet"),
  46548. default: true
  46549. },
  46550. {
  46551. name: "Macro",
  46552. height: math.unit(2.5, "miles")
  46553. },
  46554. {
  46555. name: "Goddess",
  46556. height: math.unit(2, "multiverses")
  46557. },
  46558. ]
  46559. ))
  46560. characterMakers.push(() => makeCharacter(
  46561. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46562. {
  46563. front: {
  46564. height: math.unit(216, "cm"),
  46565. name: "Front",
  46566. image: {
  46567. source: "./media/characters/lev/front.svg",
  46568. extra: 1728/1670,
  46569. bottom: 82/1810
  46570. }
  46571. },
  46572. back: {
  46573. height: math.unit(216, "cm"),
  46574. name: "Back",
  46575. image: {
  46576. source: "./media/characters/lev/back.svg",
  46577. extra: 1738/1675,
  46578. bottom: 24/1762
  46579. }
  46580. },
  46581. dressed: {
  46582. height: math.unit(216, "cm"),
  46583. name: "Dressed",
  46584. image: {
  46585. source: "./media/characters/lev/dressed.svg",
  46586. extra: 1397/1351,
  46587. bottom: 73/1470
  46588. }
  46589. },
  46590. head: {
  46591. height: math.unit(0.51, "meter"),
  46592. name: "Head",
  46593. image: {
  46594. source: "./media/characters/lev/head.svg"
  46595. }
  46596. },
  46597. },
  46598. [
  46599. {
  46600. name: "Normal",
  46601. height: math.unit(216, "cm"),
  46602. default: true
  46603. },
  46604. {
  46605. name: "Relatively Macro",
  46606. height: math.unit(80, "meters")
  46607. },
  46608. {
  46609. name: "Megamacro",
  46610. height: math.unit(21600, "meters")
  46611. },
  46612. {
  46613. name: "Megamacro+",
  46614. height: math.unit(64800, "meters")
  46615. },
  46616. ]
  46617. ))
  46618. characterMakers.push(() => makeCharacter(
  46619. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46620. {
  46621. front: {
  46622. height: math.unit(2, "meters"),
  46623. weight: math.unit(80, "kg"),
  46624. name: "Front",
  46625. image: {
  46626. source: "./media/characters/moka/front.svg",
  46627. extra: 1337/1255,
  46628. bottom: 58/1395
  46629. }
  46630. },
  46631. },
  46632. [
  46633. {
  46634. name: "Micro",
  46635. height: math.unit(15, "cm")
  46636. },
  46637. {
  46638. name: "Normal",
  46639. height: math.unit(2, "meters"),
  46640. default: true
  46641. },
  46642. {
  46643. name: "Macro",
  46644. height: math.unit(20, "meters"),
  46645. },
  46646. ]
  46647. ))
  46648. characterMakers.push(() => makeCharacter(
  46649. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46650. {
  46651. front: {
  46652. height: math.unit(9, "feet"),
  46653. weight: math.unit(240, "lb"),
  46654. name: "Front",
  46655. image: {
  46656. source: "./media/characters/kuzco/front.svg",
  46657. extra: 1593/1487,
  46658. bottom: 32/1625
  46659. }
  46660. },
  46661. side: {
  46662. height: math.unit(9, "feet"),
  46663. weight: math.unit(240, "lb"),
  46664. name: "Side",
  46665. image: {
  46666. source: "./media/characters/kuzco/side.svg",
  46667. extra: 1575/1485,
  46668. bottom: 30/1605
  46669. }
  46670. },
  46671. back: {
  46672. height: math.unit(9, "feet"),
  46673. weight: math.unit(240, "lb"),
  46674. name: "Back",
  46675. image: {
  46676. source: "./media/characters/kuzco/back.svg",
  46677. extra: 1603/1514,
  46678. bottom: 14/1617
  46679. }
  46680. },
  46681. },
  46682. [
  46683. {
  46684. name: "Normal",
  46685. height: math.unit(9, "feet"),
  46686. default: true
  46687. },
  46688. ]
  46689. ))
  46690. characterMakers.push(() => makeCharacter(
  46691. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46692. {
  46693. side: {
  46694. height: math.unit(2, "meters"),
  46695. weight: math.unit(300, "kg"),
  46696. name: "Side",
  46697. image: {
  46698. source: "./media/characters/ceruleus/side.svg",
  46699. extra: 1068/974,
  46700. bottom: 126/1194
  46701. }
  46702. },
  46703. },
  46704. [
  46705. {
  46706. name: "Normal",
  46707. height: math.unit(16, "meters"),
  46708. default: true
  46709. },
  46710. ]
  46711. ))
  46712. characterMakers.push(() => makeCharacter(
  46713. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46714. {
  46715. front: {
  46716. height: math.unit(9, "feet"),
  46717. weight: math.unit(500, "kg"),
  46718. name: "Front",
  46719. image: {
  46720. source: "./media/characters/acouya/front.svg",
  46721. extra: 1660/1473,
  46722. bottom: 28/1688
  46723. }
  46724. },
  46725. },
  46726. [
  46727. {
  46728. name: "Normal",
  46729. height: math.unit(9, "feet"),
  46730. default: true
  46731. },
  46732. ]
  46733. ))
  46734. characterMakers.push(() => makeCharacter(
  46735. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46736. {
  46737. front: {
  46738. height: math.unit(5 + 6/12, "feet"),
  46739. weight: math.unit(195, "lb"),
  46740. name: "Front",
  46741. image: {
  46742. source: "./media/characters/vant/front.svg",
  46743. extra: 1396/1320,
  46744. bottom: 20/1416
  46745. }
  46746. },
  46747. back: {
  46748. height: math.unit(5 + 6/12, "feet"),
  46749. weight: math.unit(195, "lb"),
  46750. name: "Back",
  46751. image: {
  46752. source: "./media/characters/vant/back.svg",
  46753. extra: 1396/1320,
  46754. bottom: 20/1416
  46755. }
  46756. },
  46757. maw: {
  46758. height: math.unit(0.75, "feet"),
  46759. name: "Maw",
  46760. image: {
  46761. source: "./media/characters/vant/maw.svg"
  46762. }
  46763. },
  46764. paw: {
  46765. height: math.unit(1.07, "feet"),
  46766. name: "Paw",
  46767. image: {
  46768. source: "./media/characters/vant/paw.svg"
  46769. }
  46770. },
  46771. },
  46772. [
  46773. {
  46774. name: "Micro",
  46775. height: math.unit(0.25, "inches")
  46776. },
  46777. {
  46778. name: "Normal",
  46779. height: math.unit(5 + 6/12, "feet"),
  46780. default: true
  46781. },
  46782. {
  46783. name: "Macro",
  46784. height: math.unit(75, "feet")
  46785. },
  46786. ]
  46787. ))
  46788. characterMakers.push(() => makeCharacter(
  46789. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46790. {
  46791. front: {
  46792. height: math.unit(30, "meters"),
  46793. weight: math.unit(363, "tons"),
  46794. name: "Front",
  46795. image: {
  46796. source: "./media/characters/ahra/front.svg",
  46797. extra: 1914/1814,
  46798. bottom: 46/1960
  46799. }
  46800. },
  46801. },
  46802. [
  46803. {
  46804. name: "Macro",
  46805. height: math.unit(30, "meters"),
  46806. default: true
  46807. },
  46808. ]
  46809. ))
  46810. characterMakers.push(() => makeCharacter(
  46811. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46812. {
  46813. undressed: {
  46814. height: math.unit(2, "m"),
  46815. weight: math.unit(250, "kg"),
  46816. name: "Undressed",
  46817. image: {
  46818. source: "./media/characters/coriander/undressed.svg",
  46819. extra: 1757/1606,
  46820. bottom: 107/1864
  46821. }
  46822. },
  46823. dressed: {
  46824. height: math.unit(2, "m"),
  46825. weight: math.unit(250, "kg"),
  46826. name: "Dressed",
  46827. image: {
  46828. source: "./media/characters/coriander/dressed.svg",
  46829. extra: 1757/1606,
  46830. bottom: 107/1864
  46831. }
  46832. },
  46833. },
  46834. [
  46835. {
  46836. name: "Normal",
  46837. height: math.unit(4, "meters"),
  46838. default: true
  46839. },
  46840. {
  46841. name: "XL",
  46842. height: math.unit(6, "meters")
  46843. },
  46844. {
  46845. name: "XXL",
  46846. height: math.unit(8, "meters")
  46847. },
  46848. ]
  46849. ))
  46850. characterMakers.push(() => makeCharacter(
  46851. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46852. {
  46853. front: {
  46854. height: math.unit(6, "feet"),
  46855. name: "Front",
  46856. image: {
  46857. source: "./media/characters/syrinx/front.svg",
  46858. extra: 1557/1259,
  46859. bottom: 171/1728
  46860. }
  46861. },
  46862. },
  46863. [
  46864. {
  46865. name: "Normal",
  46866. height: math.unit(6 + 3/12, "feet"),
  46867. default: true
  46868. },
  46869. ]
  46870. ))
  46871. characterMakers.push(() => makeCharacter(
  46872. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46873. {
  46874. front: {
  46875. height: math.unit(11 + 6/12, "feet"),
  46876. weight: math.unit(1.5, "tons"),
  46877. name: "Front",
  46878. image: {
  46879. source: "./media/characters/bor/front.svg",
  46880. extra: 1189/1109,
  46881. bottom: 170/1359
  46882. }
  46883. },
  46884. },
  46885. [
  46886. {
  46887. name: "Normal",
  46888. height: math.unit(11 + 6/12, "feet"),
  46889. default: true
  46890. },
  46891. {
  46892. name: "Macro",
  46893. height: math.unit(32 + 9/12, "feet")
  46894. },
  46895. ]
  46896. ))
  46897. characterMakers.push(() => makeCharacter(
  46898. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46899. {
  46900. anthro: {
  46901. height: math.unit(9, "feet"),
  46902. weight: math.unit(2076, "lb"),
  46903. name: "Anthro",
  46904. image: {
  46905. source: "./media/characters/abacus/anthro.svg",
  46906. extra: 1540/1494,
  46907. bottom: 233/1773
  46908. }
  46909. },
  46910. pigeon: {
  46911. height: math.unit(1, "feet"),
  46912. name: "Pigeon",
  46913. image: {
  46914. source: "./media/characters/abacus/pigeon.svg",
  46915. extra: 528/525,
  46916. bottom: 46/574
  46917. }
  46918. },
  46919. },
  46920. [
  46921. {
  46922. name: "Normal",
  46923. height: math.unit(9, "feet"),
  46924. default: true
  46925. },
  46926. ]
  46927. ))
  46928. characterMakers.push(() => makeCharacter(
  46929. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46930. {
  46931. side: {
  46932. height: math.unit(6, "feet"),
  46933. name: "Side",
  46934. image: {
  46935. source: "./media/characters/delkhan/side.svg",
  46936. extra: 1884/1786,
  46937. bottom: 308/2192
  46938. }
  46939. },
  46940. head: {
  46941. height: math.unit(3.38, "feet"),
  46942. name: "Head",
  46943. image: {
  46944. source: "./media/characters/delkhan/head.svg"
  46945. }
  46946. },
  46947. },
  46948. [
  46949. {
  46950. name: "Normal",
  46951. height: math.unit(72, "feet"),
  46952. default: true
  46953. },
  46954. {
  46955. name: "Giant",
  46956. height: math.unit(172, "feet")
  46957. },
  46958. ]
  46959. ))
  46960. characterMakers.push(() => makeCharacter(
  46961. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46962. {
  46963. standing: {
  46964. height: math.unit(6, "feet"),
  46965. name: "Standing",
  46966. image: {
  46967. source: "./media/characters/euchidat/standing.svg",
  46968. extra: 1612/1553,
  46969. bottom: 116/1728
  46970. }
  46971. },
  46972. leaning: {
  46973. height: math.unit(6, "feet"),
  46974. name: "Leaning",
  46975. image: {
  46976. source: "./media/characters/euchidat/leaning.svg",
  46977. extra: 1719/1674,
  46978. bottom: 27/1746
  46979. }
  46980. },
  46981. },
  46982. [
  46983. {
  46984. name: "Normal",
  46985. height: math.unit(175, "feet"),
  46986. default: true
  46987. },
  46988. {
  46989. name: "Megamacro",
  46990. height: math.unit(190, "miles")
  46991. },
  46992. {
  46993. name: "Gigamacro",
  46994. height: math.unit(190000, "miles")
  46995. },
  46996. ]
  46997. ))
  46998. characterMakers.push(() => makeCharacter(
  46999. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47000. {
  47001. front: {
  47002. height: math.unit(6, "feet"),
  47003. weight: math.unit(150, "lb"),
  47004. name: "Front",
  47005. image: {
  47006. source: "./media/characters/rebecca-stack/front.svg",
  47007. extra: 1256/1201,
  47008. bottom: 18/1274
  47009. }
  47010. },
  47011. },
  47012. [
  47013. {
  47014. name: "Normal",
  47015. height: math.unit(5 + 8/12, "feet"),
  47016. default: true
  47017. },
  47018. {
  47019. name: "Demolitionist",
  47020. height: math.unit(200, "feet")
  47021. },
  47022. {
  47023. name: "Out of Control",
  47024. height: math.unit(2, "miles")
  47025. },
  47026. {
  47027. name: "Giga",
  47028. height: math.unit(7200, "miles")
  47029. },
  47030. ]
  47031. ))
  47032. characterMakers.push(() => makeCharacter(
  47033. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47034. {
  47035. front: {
  47036. height: math.unit(6, "feet"),
  47037. weight: math.unit(150, "lb"),
  47038. name: "Front",
  47039. image: {
  47040. source: "./media/characters/jenny-cartwright/front.svg",
  47041. extra: 1384/1376,
  47042. bottom: 58/1442
  47043. }
  47044. },
  47045. },
  47046. [
  47047. {
  47048. name: "Normal",
  47049. height: math.unit(6 + 7/12, "feet"),
  47050. default: true
  47051. },
  47052. {
  47053. name: "Librarian",
  47054. height: math.unit(55, "feet")
  47055. },
  47056. {
  47057. name: "Sightseer",
  47058. height: math.unit(50, "miles")
  47059. },
  47060. {
  47061. name: "Giga",
  47062. height: math.unit(30000, "miles")
  47063. },
  47064. ]
  47065. ))
  47066. characterMakers.push(() => makeCharacter(
  47067. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47068. {
  47069. nude: {
  47070. height: math.unit(8, "feet"),
  47071. weight: math.unit(225, "lb"),
  47072. name: "Nude",
  47073. image: {
  47074. source: "./media/characters/marvy/nude.svg",
  47075. extra: 1900/1683,
  47076. bottom: 89/1989
  47077. }
  47078. },
  47079. dressed: {
  47080. height: math.unit(8, "feet"),
  47081. weight: math.unit(225, "lb"),
  47082. name: "Dressed",
  47083. image: {
  47084. source: "./media/characters/marvy/dressed.svg",
  47085. extra: 1900/1683,
  47086. bottom: 89/1989
  47087. }
  47088. },
  47089. head: {
  47090. height: math.unit(2.85, "feet"),
  47091. name: "Head",
  47092. image: {
  47093. source: "./media/characters/marvy/head.svg"
  47094. }
  47095. },
  47096. },
  47097. [
  47098. {
  47099. name: "Normal",
  47100. height: math.unit(8, "feet"),
  47101. default: true
  47102. },
  47103. ]
  47104. ))
  47105. characterMakers.push(() => makeCharacter(
  47106. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47107. {
  47108. front: {
  47109. height: math.unit(8, "feet"),
  47110. weight: math.unit(250, "lb"),
  47111. name: "Front",
  47112. image: {
  47113. source: "./media/characters/leah/front.svg",
  47114. extra: 1257/1149,
  47115. bottom: 109/1366
  47116. }
  47117. },
  47118. },
  47119. [
  47120. {
  47121. name: "Normal",
  47122. height: math.unit(8, "feet"),
  47123. default: true
  47124. },
  47125. {
  47126. name: "Minimacro",
  47127. height: math.unit(40, "feet")
  47128. },
  47129. {
  47130. name: "Macro",
  47131. height: math.unit(124, "feet")
  47132. },
  47133. {
  47134. name: "Megamacro",
  47135. height: math.unit(850, "feet")
  47136. },
  47137. ]
  47138. ))
  47139. characterMakers.push(() => makeCharacter(
  47140. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47141. {
  47142. side: {
  47143. height: math.unit(13 + 6/12, "feet"),
  47144. weight: math.unit(3200, "lb"),
  47145. name: "Side",
  47146. image: {
  47147. source: "./media/characters/alvir/side.svg",
  47148. extra: 896/589,
  47149. bottom: 26/922
  47150. }
  47151. },
  47152. },
  47153. [
  47154. {
  47155. name: "Normal",
  47156. height: math.unit(13 + 6/12, "feet"),
  47157. default: true
  47158. },
  47159. ]
  47160. ))
  47161. characterMakers.push(() => makeCharacter(
  47162. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47163. {
  47164. front: {
  47165. height: math.unit(5 + 4/12, "feet"),
  47166. weight: math.unit(236, "lb"),
  47167. name: "Front",
  47168. image: {
  47169. source: "./media/characters/zaina-khalil/front.svg",
  47170. extra: 1533/1485,
  47171. bottom: 94/1627
  47172. }
  47173. },
  47174. side: {
  47175. height: math.unit(5 + 4/12, "feet"),
  47176. weight: math.unit(236, "lb"),
  47177. name: "Side",
  47178. image: {
  47179. source: "./media/characters/zaina-khalil/side.svg",
  47180. extra: 1537/1498,
  47181. bottom: 66/1603
  47182. }
  47183. },
  47184. back: {
  47185. height: math.unit(5 + 4/12, "feet"),
  47186. weight: math.unit(236, "lb"),
  47187. name: "Back",
  47188. image: {
  47189. source: "./media/characters/zaina-khalil/back.svg",
  47190. extra: 1546/1494,
  47191. bottom: 89/1635
  47192. }
  47193. },
  47194. },
  47195. [
  47196. {
  47197. name: "Normal",
  47198. height: math.unit(5 + 4/12, "feet"),
  47199. default: true
  47200. },
  47201. ]
  47202. ))
  47203. characterMakers.push(() => makeCharacter(
  47204. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47205. {
  47206. side: {
  47207. height: math.unit(12, "feet"),
  47208. weight: math.unit(4000, "lb"),
  47209. name: "Side",
  47210. image: {
  47211. source: "./media/characters/terry/side.svg",
  47212. extra: 1518/1439,
  47213. bottom: 149/1667
  47214. }
  47215. },
  47216. },
  47217. [
  47218. {
  47219. name: "Normal",
  47220. height: math.unit(12, "feet"),
  47221. default: true
  47222. },
  47223. ]
  47224. ))
  47225. characterMakers.push(() => makeCharacter(
  47226. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47227. {
  47228. front: {
  47229. height: math.unit(12, "feet"),
  47230. weight: math.unit(1500, "lb"),
  47231. name: "Front",
  47232. image: {
  47233. source: "./media/characters/kahea/front.svg",
  47234. extra: 1722/1617,
  47235. bottom: 179/1901
  47236. }
  47237. },
  47238. },
  47239. [
  47240. {
  47241. name: "Normal",
  47242. height: math.unit(12, "feet"),
  47243. default: true
  47244. },
  47245. ]
  47246. ))
  47247. characterMakers.push(() => makeCharacter(
  47248. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47249. {
  47250. demonFront: {
  47251. height: math.unit(36, "feet"),
  47252. name: "Front",
  47253. image: {
  47254. source: "./media/characters/alex-xuria/demon-front.svg",
  47255. extra: 1705/1673,
  47256. bottom: 198/1903
  47257. },
  47258. form: "demon",
  47259. default: true
  47260. },
  47261. demonBack: {
  47262. height: math.unit(36, "feet"),
  47263. name: "Back",
  47264. image: {
  47265. source: "./media/characters/alex-xuria/demon-back.svg",
  47266. extra: 1725/1693,
  47267. bottom: 70/1795
  47268. },
  47269. form: "demon"
  47270. },
  47271. demonHead: {
  47272. height: math.unit(2.14, "meters"),
  47273. name: "Head",
  47274. image: {
  47275. source: "./media/characters/alex-xuria/demon-head.svg"
  47276. },
  47277. form: "demon"
  47278. },
  47279. demonHand: {
  47280. height: math.unit(1.61, "meters"),
  47281. name: "Hand",
  47282. image: {
  47283. source: "./media/characters/alex-xuria/demon-hand.svg"
  47284. },
  47285. form: "demon"
  47286. },
  47287. demonPaw: {
  47288. height: math.unit(1.35, "meters"),
  47289. name: "Paw",
  47290. image: {
  47291. source: "./media/characters/alex-xuria/demon-paw.svg"
  47292. },
  47293. form: "demon"
  47294. },
  47295. demonFoot: {
  47296. height: math.unit(2.2, "meters"),
  47297. name: "Foot",
  47298. image: {
  47299. source: "./media/characters/alex-xuria/demon-foot.svg"
  47300. },
  47301. form: "demon"
  47302. },
  47303. demonCock: {
  47304. height: math.unit(1.74, "meters"),
  47305. name: "Cock",
  47306. image: {
  47307. source: "./media/characters/alex-xuria/demon-cock.svg"
  47308. },
  47309. form: "demon"
  47310. },
  47311. demonTailClosed: {
  47312. height: math.unit(1.47, "meters"),
  47313. name: "Tail (Closed)",
  47314. image: {
  47315. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47316. },
  47317. form: "demon"
  47318. },
  47319. demonTailOpen: {
  47320. height: math.unit(2.85, "meters"),
  47321. name: "Tail (Open)",
  47322. image: {
  47323. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47324. },
  47325. form: "demon"
  47326. },
  47327. incubusFront: {
  47328. height: math.unit(12, "feet"),
  47329. name: "Front",
  47330. image: {
  47331. source: "./media/characters/alex-xuria/incubus-front.svg",
  47332. extra: 1754/1677,
  47333. bottom: 125/1879
  47334. },
  47335. form: "incubus",
  47336. default: true
  47337. },
  47338. incubusBack: {
  47339. height: math.unit(12, "feet"),
  47340. name: "Back",
  47341. image: {
  47342. source: "./media/characters/alex-xuria/incubus-back.svg",
  47343. extra: 1702/1647,
  47344. bottom: 30/1732
  47345. },
  47346. form: "incubus"
  47347. },
  47348. incubusHead: {
  47349. height: math.unit(3.45, "feet"),
  47350. name: "Head",
  47351. image: {
  47352. source: "./media/characters/alex-xuria/incubus-head.svg"
  47353. },
  47354. form: "incubus"
  47355. },
  47356. rabbitFront: {
  47357. height: math.unit(6, "feet"),
  47358. name: "Front",
  47359. image: {
  47360. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47361. extra: 1369/1349,
  47362. bottom: 45/1414
  47363. },
  47364. form: "rabbit",
  47365. default: true
  47366. },
  47367. rabbitSide: {
  47368. height: math.unit(6, "feet"),
  47369. name: "Side",
  47370. image: {
  47371. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47372. extra: 1370/1356,
  47373. bottom: 37/1407
  47374. },
  47375. form: "rabbit"
  47376. },
  47377. rabbitBack: {
  47378. height: math.unit(6, "feet"),
  47379. name: "Back",
  47380. image: {
  47381. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47382. extra: 1375/1358,
  47383. bottom: 43/1418
  47384. },
  47385. form: "rabbit"
  47386. },
  47387. },
  47388. [
  47389. {
  47390. name: "Normal",
  47391. height: math.unit(6, "feet"),
  47392. default: true,
  47393. form: "rabbit"
  47394. },
  47395. {
  47396. name: "Incubus",
  47397. height: math.unit(12, "feet"),
  47398. default: true,
  47399. form: "incubus"
  47400. },
  47401. {
  47402. name: "Demon",
  47403. height: math.unit(36, "feet"),
  47404. default: true,
  47405. form: "demon"
  47406. }
  47407. ],
  47408. {
  47409. "demon": {
  47410. name: "Demon",
  47411. default: true
  47412. },
  47413. "incubus": {
  47414. name: "Incubus",
  47415. },
  47416. "rabbit": {
  47417. name: "Rabbit"
  47418. }
  47419. }
  47420. ))
  47421. characterMakers.push(() => makeCharacter(
  47422. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47423. {
  47424. front: {
  47425. height: math.unit(7 + 5/12, "feet"),
  47426. weight: math.unit(510, "lb"),
  47427. name: "Front",
  47428. image: {
  47429. source: "./media/characters/syrup/front.svg",
  47430. extra: 932/916,
  47431. bottom: 26/958
  47432. }
  47433. },
  47434. },
  47435. [
  47436. {
  47437. name: "Normal",
  47438. height: math.unit(7 + 5/12, "feet"),
  47439. default: true
  47440. },
  47441. {
  47442. name: "Big",
  47443. height: math.unit(50, "feet")
  47444. },
  47445. {
  47446. name: "Macro",
  47447. height: math.unit(300, "feet")
  47448. },
  47449. {
  47450. name: "Megamacro",
  47451. height: math.unit(1, "mile")
  47452. },
  47453. ]
  47454. ))
  47455. characterMakers.push(() => makeCharacter(
  47456. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47457. {
  47458. front: {
  47459. height: math.unit(6 + 9/12, "feet"),
  47460. name: "Front",
  47461. image: {
  47462. source: "./media/characters/zeimne/front.svg",
  47463. extra: 1969/1806,
  47464. bottom: 53/2022
  47465. }
  47466. },
  47467. },
  47468. [
  47469. {
  47470. name: "Normal",
  47471. height: math.unit(6 + 9/12, "feet"),
  47472. default: true
  47473. },
  47474. {
  47475. name: "Giant",
  47476. height: math.unit(550, "feet")
  47477. },
  47478. {
  47479. name: "Mega",
  47480. height: math.unit(3, "miles")
  47481. },
  47482. {
  47483. name: "Giga",
  47484. height: math.unit(250, "miles")
  47485. },
  47486. {
  47487. name: "Tera",
  47488. height: math.unit(1, "AU")
  47489. },
  47490. ]
  47491. ))
  47492. characterMakers.push(() => makeCharacter(
  47493. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47494. {
  47495. front: {
  47496. height: math.unit(5 + 2/12, "feet"),
  47497. name: "Front",
  47498. image: {
  47499. source: "./media/characters/grar/front.svg",
  47500. extra: 1331/1119,
  47501. bottom: 60/1391
  47502. }
  47503. },
  47504. back: {
  47505. height: math.unit(5 + 2/12, "feet"),
  47506. name: "Back",
  47507. image: {
  47508. source: "./media/characters/grar/back.svg",
  47509. extra: 1385/1169,
  47510. bottom: 23/1408
  47511. }
  47512. },
  47513. },
  47514. [
  47515. {
  47516. name: "Normal",
  47517. height: math.unit(5 + 2/12, "feet"),
  47518. default: true
  47519. },
  47520. ]
  47521. ))
  47522. characterMakers.push(() => makeCharacter(
  47523. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47524. {
  47525. front: {
  47526. height: math.unit(13 + 7/12, "feet"),
  47527. weight: math.unit(2200, "lb"),
  47528. name: "Front",
  47529. image: {
  47530. source: "./media/characters/endraya/front.svg",
  47531. extra: 1289/1215,
  47532. bottom: 50/1339
  47533. }
  47534. },
  47535. nude: {
  47536. height: math.unit(13 + 7/12, "feet"),
  47537. weight: math.unit(2200, "lb"),
  47538. name: "Nude",
  47539. image: {
  47540. source: "./media/characters/endraya/nude.svg",
  47541. extra: 1247/1171,
  47542. bottom: 40/1287
  47543. }
  47544. },
  47545. head: {
  47546. height: math.unit(2.6, "feet"),
  47547. name: "Head",
  47548. image: {
  47549. source: "./media/characters/endraya/head.svg"
  47550. }
  47551. },
  47552. slit: {
  47553. height: math.unit(3.4, "feet"),
  47554. name: "Slit",
  47555. image: {
  47556. source: "./media/characters/endraya/slit.svg"
  47557. }
  47558. },
  47559. },
  47560. [
  47561. {
  47562. name: "Normal",
  47563. height: math.unit(13 + 7/12, "feet"),
  47564. default: true
  47565. },
  47566. {
  47567. name: "Macro",
  47568. height: math.unit(200, "feet")
  47569. },
  47570. ]
  47571. ))
  47572. characterMakers.push(() => makeCharacter(
  47573. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47574. {
  47575. front: {
  47576. height: math.unit(1.81, "meters"),
  47577. weight: math.unit(69, "kg"),
  47578. name: "Front",
  47579. image: {
  47580. source: "./media/characters/rodryana/front.svg",
  47581. extra: 2002/1921,
  47582. bottom: 53/2055
  47583. }
  47584. },
  47585. back: {
  47586. height: math.unit(1.81, "meters"),
  47587. weight: math.unit(69, "kg"),
  47588. name: "Back",
  47589. image: {
  47590. source: "./media/characters/rodryana/back.svg",
  47591. extra: 1993/1926,
  47592. bottom: 48/2041
  47593. }
  47594. },
  47595. maw: {
  47596. height: math.unit(0.19769417475, "meters"),
  47597. name: "Maw",
  47598. image: {
  47599. source: "./media/characters/rodryana/maw.svg"
  47600. }
  47601. },
  47602. slit: {
  47603. height: math.unit(0.31631067961, "meters"),
  47604. name: "Slit",
  47605. image: {
  47606. source: "./media/characters/rodryana/slit.svg"
  47607. }
  47608. },
  47609. },
  47610. [
  47611. {
  47612. name: "Normal",
  47613. height: math.unit(1.81, "meters")
  47614. },
  47615. {
  47616. name: "Mini Macro",
  47617. height: math.unit(181, "meters")
  47618. },
  47619. {
  47620. name: "Macro",
  47621. height: math.unit(452, "meters"),
  47622. default: true
  47623. },
  47624. {
  47625. name: "Mega Macro",
  47626. height: math.unit(1.375, "km")
  47627. },
  47628. {
  47629. name: "Giga Macro",
  47630. height: math.unit(13.575, "km")
  47631. },
  47632. ]
  47633. ))
  47634. characterMakers.push(() => makeCharacter(
  47635. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47636. {
  47637. front: {
  47638. height: math.unit(6, "feet"),
  47639. weight: math.unit(1000, "lb"),
  47640. name: "Front",
  47641. image: {
  47642. source: "./media/characters/asaya/front.svg",
  47643. extra: 1460/1200,
  47644. bottom: 71/1531
  47645. }
  47646. },
  47647. },
  47648. [
  47649. {
  47650. name: "Normal",
  47651. height: math.unit(8, "km"),
  47652. default: true
  47653. },
  47654. ]
  47655. ))
  47656. characterMakers.push(() => makeCharacter(
  47657. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47658. {
  47659. front: {
  47660. height: math.unit(3.5, "meters"),
  47661. name: "Front",
  47662. image: {
  47663. source: "./media/characters/sarzu-and-israz/front.svg",
  47664. extra: 1570/1558,
  47665. bottom: 150/1720
  47666. },
  47667. },
  47668. back: {
  47669. height: math.unit(3.5, "meters"),
  47670. name: "Back",
  47671. image: {
  47672. source: "./media/characters/sarzu-and-israz/back.svg",
  47673. extra: 1523/1509,
  47674. bottom: 132/1655
  47675. },
  47676. },
  47677. frontFemale: {
  47678. height: math.unit(3.5, "meters"),
  47679. name: "Front (Female)",
  47680. image: {
  47681. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47682. extra: 1570/1558,
  47683. bottom: 150/1720
  47684. },
  47685. },
  47686. frontHerm: {
  47687. height: math.unit(3.5, "meters"),
  47688. name: "Front (Herm)",
  47689. image: {
  47690. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47691. extra: 1570/1558,
  47692. bottom: 150/1720
  47693. },
  47694. },
  47695. },
  47696. [
  47697. {
  47698. name: "Normal",
  47699. height: math.unit(3.5, "meters"),
  47700. default: true,
  47701. },
  47702. {
  47703. name: "Macro",
  47704. height: math.unit(65.5, "meters"),
  47705. },
  47706. ],
  47707. ))
  47708. characterMakers.push(() => makeCharacter(
  47709. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47710. {
  47711. front: {
  47712. height: math.unit(6, "feet"),
  47713. weight: math.unit(250, "lb"),
  47714. name: "Front",
  47715. image: {
  47716. source: "./media/characters/zenimma/front.svg",
  47717. extra: 1346/1320,
  47718. bottom: 58/1404
  47719. }
  47720. },
  47721. back: {
  47722. height: math.unit(6, "feet"),
  47723. weight: math.unit(250, "lb"),
  47724. name: "Back",
  47725. image: {
  47726. source: "./media/characters/zenimma/back.svg",
  47727. extra: 1324/1308,
  47728. bottom: 44/1368
  47729. }
  47730. },
  47731. dick: {
  47732. height: math.unit(1.44, "feet"),
  47733. name: "Dick",
  47734. image: {
  47735. source: "./media/characters/zenimma/dick.svg"
  47736. }
  47737. },
  47738. },
  47739. [
  47740. {
  47741. name: "Canon Height",
  47742. height: math.unit(66, "miles"),
  47743. default: true
  47744. },
  47745. ]
  47746. ))
  47747. characterMakers.push(() => makeCharacter(
  47748. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47749. {
  47750. nude: {
  47751. height: math.unit(6, "feet"),
  47752. weight: math.unit(150, "lb"),
  47753. name: "Nude",
  47754. image: {
  47755. source: "./media/characters/shavon/nude.svg",
  47756. extra: 1242/1096,
  47757. bottom: 98/1340
  47758. }
  47759. },
  47760. dressed: {
  47761. height: math.unit(6, "feet"),
  47762. weight: math.unit(150, "lb"),
  47763. name: "Dressed",
  47764. image: {
  47765. source: "./media/characters/shavon/dressed.svg",
  47766. extra: 1242/1096,
  47767. bottom: 98/1340
  47768. }
  47769. },
  47770. },
  47771. [
  47772. {
  47773. name: "Macro",
  47774. height: math.unit(255, "feet"),
  47775. default: true
  47776. },
  47777. ]
  47778. ))
  47779. characterMakers.push(() => makeCharacter(
  47780. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47781. {
  47782. front: {
  47783. height: math.unit(6, "feet"),
  47784. name: "Front",
  47785. image: {
  47786. source: "./media/characters/steph/front.svg",
  47787. extra: 1430/1330,
  47788. bottom: 54/1484
  47789. }
  47790. },
  47791. },
  47792. [
  47793. {
  47794. name: "Normal",
  47795. height: math.unit(6, "feet"),
  47796. default: true
  47797. },
  47798. ]
  47799. ))
  47800. characterMakers.push(() => makeCharacter(
  47801. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47802. {
  47803. front: {
  47804. height: math.unit(9, "feet"),
  47805. weight: math.unit(400, "lb"),
  47806. name: "Front",
  47807. image: {
  47808. source: "./media/characters/kil'aman/front.svg",
  47809. extra: 1210/1159,
  47810. bottom: 109/1319
  47811. }
  47812. },
  47813. head: {
  47814. height: math.unit(2.14, "feet"),
  47815. name: "Head",
  47816. image: {
  47817. source: "./media/characters/kil'aman/head.svg"
  47818. }
  47819. },
  47820. maw: {
  47821. height: math.unit(1.21, "feet"),
  47822. name: "Maw",
  47823. image: {
  47824. source: "./media/characters/kil'aman/maw.svg"
  47825. }
  47826. },
  47827. foot: {
  47828. height: math.unit(1.7, "feet"),
  47829. name: "Foot",
  47830. image: {
  47831. source: "./media/characters/kil'aman/foot.svg"
  47832. }
  47833. },
  47834. dick: {
  47835. height: math.unit(2.1, "feet"),
  47836. name: "Dick",
  47837. image: {
  47838. source: "./media/characters/kil'aman/dick.svg"
  47839. }
  47840. },
  47841. },
  47842. [
  47843. {
  47844. name: "Normal",
  47845. height: math.unit(9, "feet")
  47846. },
  47847. {
  47848. name: "Canon Height",
  47849. height: math.unit(10, "miles"),
  47850. default: true
  47851. },
  47852. {
  47853. name: "Maximum",
  47854. height: math.unit(6e9, "miles")
  47855. },
  47856. ]
  47857. ))
  47858. characterMakers.push(() => makeCharacter(
  47859. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47860. {
  47861. front: {
  47862. height: math.unit(90, "feet"),
  47863. weight: math.unit(675000, "lb"),
  47864. name: "Front",
  47865. image: {
  47866. source: "./media/characters/qadan/front.svg",
  47867. extra: 1012/1004,
  47868. bottom: 78/1090
  47869. }
  47870. },
  47871. back: {
  47872. height: math.unit(90, "feet"),
  47873. weight: math.unit(675000, "lb"),
  47874. name: "Back",
  47875. image: {
  47876. source: "./media/characters/qadan/back.svg",
  47877. extra: 1042/1031,
  47878. bottom: 55/1097
  47879. }
  47880. },
  47881. armored: {
  47882. height: math.unit(90, "feet"),
  47883. weight: math.unit(675000, "lb"),
  47884. name: "Armored",
  47885. image: {
  47886. source: "./media/characters/qadan/armored.svg",
  47887. extra: 1047/1037,
  47888. bottom: 48/1095
  47889. }
  47890. },
  47891. },
  47892. [
  47893. {
  47894. name: "Normal",
  47895. height: math.unit(90, "feet"),
  47896. default: true
  47897. },
  47898. ]
  47899. ))
  47900. characterMakers.push(() => makeCharacter(
  47901. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47902. {
  47903. front: {
  47904. height: math.unit(6, "feet"),
  47905. weight: math.unit(225, "lb"),
  47906. name: "Front",
  47907. image: {
  47908. source: "./media/characters/brooke/front.svg",
  47909. extra: 1050/1010,
  47910. bottom: 66/1116
  47911. }
  47912. },
  47913. back: {
  47914. height: math.unit(6, "feet"),
  47915. weight: math.unit(225, "lb"),
  47916. name: "Back",
  47917. image: {
  47918. source: "./media/characters/brooke/back.svg",
  47919. extra: 1053/1013,
  47920. bottom: 41/1094
  47921. }
  47922. },
  47923. dressed: {
  47924. height: math.unit(6, "feet"),
  47925. weight: math.unit(225, "lb"),
  47926. name: "Dressed",
  47927. image: {
  47928. source: "./media/characters/brooke/dressed.svg",
  47929. extra: 1050/1010,
  47930. bottom: 66/1116
  47931. }
  47932. },
  47933. },
  47934. [
  47935. {
  47936. name: "Canon Height",
  47937. height: math.unit(500, "miles"),
  47938. default: true
  47939. },
  47940. ]
  47941. ))
  47942. characterMakers.push(() => makeCharacter(
  47943. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47944. {
  47945. front: {
  47946. height: math.unit(6 + 2/12, "feet"),
  47947. weight: math.unit(210, "lb"),
  47948. name: "Front",
  47949. image: {
  47950. source: "./media/characters/wubs/front.svg",
  47951. extra: 1345/1325,
  47952. bottom: 70/1415
  47953. }
  47954. },
  47955. back: {
  47956. height: math.unit(6 + 2/12, "feet"),
  47957. weight: math.unit(210, "lb"),
  47958. name: "Back",
  47959. image: {
  47960. source: "./media/characters/wubs/back.svg",
  47961. extra: 1296/1275,
  47962. bottom: 58/1354
  47963. }
  47964. },
  47965. },
  47966. [
  47967. {
  47968. name: "Normal",
  47969. height: math.unit(6 + 2/12, "feet"),
  47970. default: true
  47971. },
  47972. {
  47973. name: "Macro",
  47974. height: math.unit(1000, "feet")
  47975. },
  47976. {
  47977. name: "Megamacro",
  47978. height: math.unit(1, "mile")
  47979. },
  47980. ]
  47981. ))
  47982. characterMakers.push(() => makeCharacter(
  47983. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47984. {
  47985. front: {
  47986. height: math.unit(4, "feet"),
  47987. weight: math.unit(120, "lb"),
  47988. name: "Front",
  47989. image: {
  47990. source: "./media/characters/blue/front.svg",
  47991. extra: 1636/1525,
  47992. bottom: 43/1679
  47993. }
  47994. },
  47995. back: {
  47996. height: math.unit(4, "feet"),
  47997. weight: math.unit(120, "lb"),
  47998. name: "Back",
  47999. image: {
  48000. source: "./media/characters/blue/back.svg",
  48001. extra: 1660/1560,
  48002. bottom: 57/1717
  48003. }
  48004. },
  48005. paws: {
  48006. height: math.unit(0.826, "feet"),
  48007. name: "Paws",
  48008. image: {
  48009. source: "./media/characters/blue/paws.svg"
  48010. }
  48011. },
  48012. },
  48013. [
  48014. {
  48015. name: "Micro",
  48016. height: math.unit(3, "inches")
  48017. },
  48018. {
  48019. name: "Normal",
  48020. height: math.unit(4, "feet"),
  48021. default: true
  48022. },
  48023. {
  48024. name: "Femenine Form",
  48025. height: math.unit(14, "feet")
  48026. },
  48027. {
  48028. name: "Werebat Form",
  48029. height: math.unit(18, "feet")
  48030. },
  48031. ]
  48032. ))
  48033. characterMakers.push(() => makeCharacter(
  48034. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48035. {
  48036. female: {
  48037. height: math.unit(7 + 4/12, "feet"),
  48038. weight: math.unit(243, "lb"),
  48039. name: "Female",
  48040. image: {
  48041. source: "./media/characters/kaya/female.svg",
  48042. extra: 975/898,
  48043. bottom: 34/1009
  48044. }
  48045. },
  48046. herm: {
  48047. height: math.unit(7 + 4/12, "feet"),
  48048. weight: math.unit(243, "lb"),
  48049. name: "Herm",
  48050. image: {
  48051. source: "./media/characters/kaya/herm.svg",
  48052. extra: 975/898,
  48053. bottom: 34/1009
  48054. }
  48055. },
  48056. },
  48057. [
  48058. {
  48059. name: "Normal",
  48060. height: math.unit(7 + 4/12, "feet"),
  48061. default: true
  48062. },
  48063. ]
  48064. ))
  48065. characterMakers.push(() => makeCharacter(
  48066. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48067. {
  48068. female: {
  48069. height: math.unit(9 + 4/12, "feet"),
  48070. weight: math.unit(398, "lb"),
  48071. name: "Female",
  48072. image: {
  48073. source: "./media/characters/kassandra/female.svg",
  48074. extra: 908/839,
  48075. bottom: 61/969
  48076. }
  48077. },
  48078. intersex: {
  48079. height: math.unit(9 + 4/12, "feet"),
  48080. weight: math.unit(398, "lb"),
  48081. name: "Intersex",
  48082. image: {
  48083. source: "./media/characters/kassandra/intersex.svg",
  48084. extra: 908/839,
  48085. bottom: 61/969
  48086. }
  48087. },
  48088. },
  48089. [
  48090. {
  48091. name: "Normal",
  48092. height: math.unit(9 + 4/12, "feet"),
  48093. default: true
  48094. },
  48095. ]
  48096. ))
  48097. characterMakers.push(() => makeCharacter(
  48098. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48099. {
  48100. front: {
  48101. height: math.unit(3, "meters"),
  48102. name: "Front",
  48103. image: {
  48104. source: "./media/characters/amy/front.svg",
  48105. extra: 1380/1343,
  48106. bottom: 70/1450
  48107. }
  48108. },
  48109. back: {
  48110. height: math.unit(3, "meters"),
  48111. name: "Back",
  48112. image: {
  48113. source: "./media/characters/amy/back.svg",
  48114. extra: 1380/1347,
  48115. bottom: 66/1446
  48116. }
  48117. },
  48118. },
  48119. [
  48120. {
  48121. name: "Normal",
  48122. height: math.unit(3, "meters"),
  48123. default: true
  48124. },
  48125. ]
  48126. ))
  48127. characterMakers.push(() => makeCharacter(
  48128. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48129. {
  48130. side: {
  48131. height: math.unit(47, "cm"),
  48132. weight: math.unit(10.8, "kg"),
  48133. name: "Side",
  48134. image: {
  48135. source: "./media/characters/alphaschakal/side.svg",
  48136. extra: 1058/568,
  48137. bottom: 62/1120
  48138. }
  48139. },
  48140. back: {
  48141. height: math.unit(78, "cm"),
  48142. weight: math.unit(10.8, "kg"),
  48143. name: "Back",
  48144. image: {
  48145. source: "./media/characters/alphaschakal/back.svg",
  48146. extra: 1102/942,
  48147. bottom: 185/1287
  48148. }
  48149. },
  48150. head: {
  48151. height: math.unit(28, "cm"),
  48152. name: "Head",
  48153. image: {
  48154. source: "./media/characters/alphaschakal/head.svg",
  48155. extra: 696/508,
  48156. bottom: 0/696
  48157. }
  48158. },
  48159. paw: {
  48160. height: math.unit(16, "cm"),
  48161. name: "Paw",
  48162. image: {
  48163. source: "./media/characters/alphaschakal/paw.svg"
  48164. }
  48165. },
  48166. },
  48167. [
  48168. {
  48169. name: "Normal",
  48170. height: math.unit(47, "cm"),
  48171. default: true
  48172. },
  48173. {
  48174. name: "Macro",
  48175. height: math.unit(340, "cm")
  48176. },
  48177. ]
  48178. ))
  48179. characterMakers.push(() => makeCharacter(
  48180. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48181. {
  48182. front: {
  48183. height: math.unit(36, "earths"),
  48184. name: "Front",
  48185. image: {
  48186. source: "./media/characters/ecobyss/front.svg",
  48187. extra: 1282/1215,
  48188. bottom: 11/1293
  48189. }
  48190. },
  48191. back: {
  48192. height: math.unit(36, "earths"),
  48193. name: "Back",
  48194. image: {
  48195. source: "./media/characters/ecobyss/back.svg",
  48196. extra: 1291/1222,
  48197. bottom: 8/1299
  48198. }
  48199. },
  48200. },
  48201. [
  48202. {
  48203. name: "Normal",
  48204. height: math.unit(36, "earths"),
  48205. default: true
  48206. },
  48207. ]
  48208. ))
  48209. characterMakers.push(() => makeCharacter(
  48210. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48211. {
  48212. front: {
  48213. height: math.unit(12, "feet"),
  48214. name: "Front",
  48215. image: {
  48216. source: "./media/characters/vasuk/front.svg",
  48217. extra: 1326/1207,
  48218. bottom: 64/1390
  48219. }
  48220. },
  48221. },
  48222. [
  48223. {
  48224. name: "Normal",
  48225. height: math.unit(12, "feet"),
  48226. default: true
  48227. },
  48228. ]
  48229. ))
  48230. characterMakers.push(() => makeCharacter(
  48231. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48232. {
  48233. side: {
  48234. height: math.unit(100, "feet"),
  48235. name: "Side",
  48236. image: {
  48237. source: "./media/characters/linneaus/side.svg",
  48238. extra: 987/807,
  48239. bottom: 47/1034
  48240. }
  48241. },
  48242. },
  48243. [
  48244. {
  48245. name: "Macro",
  48246. height: math.unit(100, "feet"),
  48247. default: true
  48248. },
  48249. ]
  48250. ))
  48251. characterMakers.push(() => makeCharacter(
  48252. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48253. {
  48254. front: {
  48255. height: math.unit(8, "feet"),
  48256. weight: math.unit(1200, "lb"),
  48257. name: "Front",
  48258. image: {
  48259. source: "./media/characters/nyterious-daligdig/front.svg",
  48260. extra: 1284/1094,
  48261. bottom: 84/1368
  48262. }
  48263. },
  48264. back: {
  48265. height: math.unit(8, "feet"),
  48266. weight: math.unit(1200, "lb"),
  48267. name: "Back",
  48268. image: {
  48269. source: "./media/characters/nyterious-daligdig/back.svg",
  48270. extra: 1301/1121,
  48271. bottom: 129/1430
  48272. }
  48273. },
  48274. mouth: {
  48275. height: math.unit(1.464, "feet"),
  48276. name: "Mouth",
  48277. image: {
  48278. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48279. }
  48280. },
  48281. },
  48282. [
  48283. {
  48284. name: "Small",
  48285. height: math.unit(8, "feet"),
  48286. default: true
  48287. },
  48288. {
  48289. name: "Normal",
  48290. height: math.unit(15, "feet")
  48291. },
  48292. {
  48293. name: "Macro",
  48294. height: math.unit(90, "feet")
  48295. },
  48296. ]
  48297. ))
  48298. characterMakers.push(() => makeCharacter(
  48299. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48300. {
  48301. front: {
  48302. height: math.unit(7 + 4/12, "feet"),
  48303. weight: math.unit(252, "lb"),
  48304. name: "Front",
  48305. image: {
  48306. source: "./media/characters/bandel/front.svg",
  48307. extra: 1946/1775,
  48308. bottom: 26/1972
  48309. }
  48310. },
  48311. back: {
  48312. height: math.unit(7 + 4/12, "feet"),
  48313. weight: math.unit(252, "lb"),
  48314. name: "Back",
  48315. image: {
  48316. source: "./media/characters/bandel/back.svg",
  48317. extra: 1940/1770,
  48318. bottom: 25/1965
  48319. }
  48320. },
  48321. maw: {
  48322. height: math.unit(2.15, "feet"),
  48323. name: "Maw",
  48324. image: {
  48325. source: "./media/characters/bandel/maw.svg"
  48326. }
  48327. },
  48328. stomach: {
  48329. height: math.unit(1.95, "feet"),
  48330. name: "Stomach",
  48331. image: {
  48332. source: "./media/characters/bandel/stomach.svg"
  48333. }
  48334. },
  48335. },
  48336. [
  48337. {
  48338. name: "Normal",
  48339. height: math.unit(7 + 4/12, "feet"),
  48340. default: true
  48341. },
  48342. ]
  48343. ))
  48344. characterMakers.push(() => makeCharacter(
  48345. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48346. {
  48347. front: {
  48348. height: math.unit(10 + 5/12, "feet"),
  48349. weight: math.unit(773.5, "kg"),
  48350. name: "Front",
  48351. image: {
  48352. source: "./media/characters/zed/front.svg",
  48353. extra: 987/941,
  48354. bottom: 52/1039
  48355. }
  48356. },
  48357. },
  48358. [
  48359. {
  48360. name: "Short",
  48361. height: math.unit(5 + 4/12, "feet")
  48362. },
  48363. {
  48364. name: "Average",
  48365. height: math.unit(10 + 5/12, "feet"),
  48366. default: true
  48367. },
  48368. {
  48369. name: "Mini-Macro",
  48370. height: math.unit(24 + 9/12, "feet")
  48371. },
  48372. {
  48373. name: "Macro",
  48374. height: math.unit(249, "feet")
  48375. },
  48376. {
  48377. name: "Mega-Macro",
  48378. height: math.unit(12490, "feet")
  48379. },
  48380. {
  48381. name: "Giga-Macro",
  48382. height: math.unit(24.9, "miles")
  48383. },
  48384. {
  48385. name: "Tera-Macro",
  48386. height: math.unit(24900, "miles")
  48387. },
  48388. {
  48389. name: "Cosmic Scale",
  48390. height: math.unit(38.9, "lightyears")
  48391. },
  48392. {
  48393. name: "Universal Scale",
  48394. height: math.unit(138e12, "lightyears")
  48395. },
  48396. ]
  48397. ))
  48398. characterMakers.push(() => makeCharacter(
  48399. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48400. {
  48401. front: {
  48402. height: math.unit(1561, "inches"),
  48403. name: "Front",
  48404. image: {
  48405. source: "./media/characters/ivan/front.svg",
  48406. extra: 1126/1071,
  48407. bottom: 26/1152
  48408. }
  48409. },
  48410. back: {
  48411. height: math.unit(1561, "inches"),
  48412. name: "Back",
  48413. image: {
  48414. source: "./media/characters/ivan/back.svg",
  48415. extra: 1134/1079,
  48416. bottom: 30/1164
  48417. }
  48418. },
  48419. },
  48420. [
  48421. {
  48422. name: "Normal",
  48423. height: math.unit(1561, "inches"),
  48424. default: true
  48425. },
  48426. ]
  48427. ))
  48428. characterMakers.push(() => makeCharacter(
  48429. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48430. {
  48431. front: {
  48432. height: math.unit(5 + 7/12, "feet"),
  48433. weight: math.unit(150, "lb"),
  48434. name: "Front",
  48435. image: {
  48436. source: "./media/characters/robin-arctic-hare/front.svg",
  48437. extra: 1148/974,
  48438. bottom: 20/1168
  48439. }
  48440. },
  48441. },
  48442. [
  48443. {
  48444. name: "Normal",
  48445. height: math.unit(5 + 7/12, "feet"),
  48446. default: true
  48447. },
  48448. ]
  48449. ))
  48450. characterMakers.push(() => makeCharacter(
  48451. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48452. {
  48453. side: {
  48454. height: math.unit(5, "feet"),
  48455. name: "Side",
  48456. image: {
  48457. source: "./media/characters/birch/side.svg",
  48458. extra: 985/796,
  48459. bottom: 111/1096
  48460. }
  48461. },
  48462. },
  48463. [
  48464. {
  48465. name: "Normal",
  48466. height: math.unit(5, "feet"),
  48467. default: true
  48468. },
  48469. ]
  48470. ))
  48471. characterMakers.push(() => makeCharacter(
  48472. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48473. {
  48474. front: {
  48475. height: math.unit(4, "feet"),
  48476. name: "Front",
  48477. image: {
  48478. source: "./media/characters/rasp/front.svg",
  48479. extra: 561/478,
  48480. bottom: 74/635
  48481. }
  48482. },
  48483. },
  48484. [
  48485. {
  48486. name: "Normal",
  48487. height: math.unit(4, "feet"),
  48488. default: true
  48489. },
  48490. ]
  48491. ))
  48492. characterMakers.push(() => makeCharacter(
  48493. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48494. {
  48495. front: {
  48496. height: math.unit(4 + 6/12, "feet"),
  48497. name: "Front",
  48498. image: {
  48499. source: "./media/characters/agatha/front.svg",
  48500. extra: 947/933,
  48501. bottom: 42/989
  48502. }
  48503. },
  48504. back: {
  48505. height: math.unit(4 + 6/12, "feet"),
  48506. name: "Back",
  48507. image: {
  48508. source: "./media/characters/agatha/back.svg",
  48509. extra: 935/922,
  48510. bottom: 48/983
  48511. }
  48512. },
  48513. },
  48514. [
  48515. {
  48516. name: "Normal",
  48517. height: math.unit(4 + 6 /12, "feet"),
  48518. default: true
  48519. },
  48520. {
  48521. name: "Max Size",
  48522. height: math.unit(500, "feet")
  48523. },
  48524. ]
  48525. ))
  48526. characterMakers.push(() => makeCharacter(
  48527. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48528. {
  48529. side: {
  48530. height: math.unit(30, "feet"),
  48531. name: "Side",
  48532. image: {
  48533. source: "./media/characters/roggy/side.svg",
  48534. extra: 909/643,
  48535. bottom: 63/972
  48536. }
  48537. },
  48538. lounging: {
  48539. height: math.unit(20, "feet"),
  48540. name: "Lounging",
  48541. image: {
  48542. source: "./media/characters/roggy/lounging.svg",
  48543. extra: 643/479,
  48544. bottom: 145/788
  48545. }
  48546. },
  48547. handpaw: {
  48548. height: math.unit(13.1, "feet"),
  48549. name: "Handpaw",
  48550. image: {
  48551. source: "./media/characters/roggy/handpaw.svg"
  48552. }
  48553. },
  48554. footpaw: {
  48555. height: math.unit(15.8, "feet"),
  48556. name: "Footpaw",
  48557. image: {
  48558. source: "./media/characters/roggy/footpaw.svg"
  48559. }
  48560. },
  48561. },
  48562. [
  48563. {
  48564. name: "Menacing",
  48565. height: math.unit(30, "feet"),
  48566. default: true
  48567. },
  48568. ]
  48569. ))
  48570. characterMakers.push(() => makeCharacter(
  48571. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48572. {
  48573. front: {
  48574. height: math.unit(5 + 7/12, "feet"),
  48575. weight: math.unit(135, "lb"),
  48576. name: "Front",
  48577. image: {
  48578. source: "./media/characters/naomi/front.svg",
  48579. extra: 1209/1154,
  48580. bottom: 129/1338
  48581. }
  48582. },
  48583. back: {
  48584. height: math.unit(5 + 7/12, "feet"),
  48585. weight: math.unit(135, "lb"),
  48586. name: "Back",
  48587. image: {
  48588. source: "./media/characters/naomi/back.svg",
  48589. extra: 1252/1190,
  48590. bottom: 23/1275
  48591. }
  48592. },
  48593. },
  48594. [
  48595. {
  48596. name: "Normal",
  48597. height: math.unit(5 + 7 /12, "feet"),
  48598. default: true
  48599. },
  48600. ]
  48601. ))
  48602. characterMakers.push(() => makeCharacter(
  48603. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48604. {
  48605. side: {
  48606. height: math.unit(35, "meters"),
  48607. name: "Side",
  48608. image: {
  48609. source: "./media/characters/kimpi/side.svg",
  48610. extra: 419/382,
  48611. bottom: 63/482
  48612. }
  48613. },
  48614. hand: {
  48615. height: math.unit(8.96, "meters"),
  48616. name: "Hand",
  48617. image: {
  48618. source: "./media/characters/kimpi/hand.svg"
  48619. }
  48620. },
  48621. },
  48622. [
  48623. {
  48624. name: "Normal",
  48625. height: math.unit(35, "meters"),
  48626. default: true
  48627. },
  48628. ]
  48629. ))
  48630. characterMakers.push(() => makeCharacter(
  48631. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48632. {
  48633. front: {
  48634. height: math.unit(4 + 4/12, "feet"),
  48635. name: "Front",
  48636. image: {
  48637. source: "./media/characters/pepper-purrloin/front.svg",
  48638. extra: 1141/1024,
  48639. bottom: 21/1162
  48640. }
  48641. },
  48642. },
  48643. [
  48644. {
  48645. name: "Normal",
  48646. height: math.unit(4 + 4/12, "feet"),
  48647. default: true
  48648. },
  48649. ]
  48650. ))
  48651. characterMakers.push(() => makeCharacter(
  48652. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48653. {
  48654. front: {
  48655. height: math.unit(6 + 2/12, "feet"),
  48656. name: "Front",
  48657. image: {
  48658. source: "./media/characters/raphael/front.svg",
  48659. extra: 1101/962,
  48660. bottom: 59/1160
  48661. }
  48662. },
  48663. },
  48664. [
  48665. {
  48666. name: "Normal",
  48667. height: math.unit(6 + 2/12, "feet"),
  48668. default: true
  48669. },
  48670. ]
  48671. ))
  48672. characterMakers.push(() => makeCharacter(
  48673. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48674. {
  48675. front: {
  48676. height: math.unit(6, "feet"),
  48677. weight: math.unit(150, "lb"),
  48678. name: "Front",
  48679. image: {
  48680. source: "./media/characters/victor-williams/front.svg",
  48681. extra: 1894/1825,
  48682. bottom: 67/1961
  48683. }
  48684. },
  48685. },
  48686. [
  48687. {
  48688. name: "Normal",
  48689. height: math.unit(6, "feet"),
  48690. default: true
  48691. },
  48692. ]
  48693. ))
  48694. characterMakers.push(() => makeCharacter(
  48695. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48696. {
  48697. front: {
  48698. height: math.unit(5 + 8/12, "feet"),
  48699. weight: math.unit(150, "lb"),
  48700. name: "Front",
  48701. image: {
  48702. source: "./media/characters/rachel/front.svg",
  48703. extra: 1902/1787,
  48704. bottom: 46/1948
  48705. }
  48706. },
  48707. },
  48708. [
  48709. {
  48710. name: "Base Height",
  48711. height: math.unit(5 + 8/12, "feet"),
  48712. default: true
  48713. },
  48714. {
  48715. name: "Macro",
  48716. height: math.unit(200, "feet")
  48717. },
  48718. {
  48719. name: "Mega Macro",
  48720. height: math.unit(1, "mile")
  48721. },
  48722. {
  48723. name: "Giga Macro",
  48724. height: math.unit(1500, "miles")
  48725. },
  48726. {
  48727. name: "Tera Macro",
  48728. height: math.unit(8000, "miles")
  48729. },
  48730. {
  48731. name: "Tera Macro+",
  48732. height: math.unit(2e5, "miles")
  48733. },
  48734. ]
  48735. ))
  48736. characterMakers.push(() => makeCharacter(
  48737. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48738. {
  48739. front: {
  48740. height: math.unit(6.5, "feet"),
  48741. name: "Front",
  48742. image: {
  48743. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48744. extra: 860/819,
  48745. bottom: 307/1167
  48746. }
  48747. },
  48748. back: {
  48749. height: math.unit(6.5, "feet"),
  48750. name: "Back",
  48751. image: {
  48752. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48753. extra: 880/837,
  48754. bottom: 395/1275
  48755. }
  48756. },
  48757. sleeping: {
  48758. height: math.unit(2.79, "feet"),
  48759. name: "Sleeping",
  48760. image: {
  48761. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48762. extra: 465/383,
  48763. bottom: 263/728
  48764. }
  48765. },
  48766. maw: {
  48767. height: math.unit(2.52, "feet"),
  48768. name: "Maw",
  48769. image: {
  48770. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48771. }
  48772. },
  48773. },
  48774. [
  48775. {
  48776. name: "Normal",
  48777. height: math.unit(6.5, "feet"),
  48778. default: true
  48779. },
  48780. ]
  48781. ))
  48782. characterMakers.push(() => makeCharacter(
  48783. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48784. {
  48785. front: {
  48786. height: math.unit(5, "feet"),
  48787. name: "Front",
  48788. image: {
  48789. source: "./media/characters/nova-nerium/front.svg",
  48790. extra: 1548/1392,
  48791. bottom: 374/1922
  48792. }
  48793. },
  48794. back: {
  48795. height: math.unit(5, "feet"),
  48796. name: "Back",
  48797. image: {
  48798. source: "./media/characters/nova-nerium/back.svg",
  48799. extra: 1658/1468,
  48800. bottom: 257/1915
  48801. }
  48802. },
  48803. },
  48804. [
  48805. {
  48806. name: "Normal",
  48807. height: math.unit(5, "feet"),
  48808. default: true
  48809. },
  48810. ]
  48811. ))
  48812. characterMakers.push(() => makeCharacter(
  48813. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48814. {
  48815. front: {
  48816. height: math.unit(5 + 4/12, "feet"),
  48817. name: "Front",
  48818. image: {
  48819. source: "./media/characters/ashe-pyriph/front.svg",
  48820. extra: 1935/1747,
  48821. bottom: 60/1995
  48822. }
  48823. },
  48824. },
  48825. [
  48826. {
  48827. name: "Normal",
  48828. height: math.unit(5 + 4/12, "feet"),
  48829. default: true
  48830. },
  48831. ]
  48832. ))
  48833. characterMakers.push(() => makeCharacter(
  48834. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48835. {
  48836. front: {
  48837. height: math.unit(8.7, "feet"),
  48838. name: "Front",
  48839. image: {
  48840. source: "./media/characters/flicker-wisp/front.svg",
  48841. extra: 1835/1613,
  48842. bottom: 449/2284
  48843. }
  48844. },
  48845. side: {
  48846. height: math.unit(8.7, "feet"),
  48847. name: "Side",
  48848. image: {
  48849. source: "./media/characters/flicker-wisp/side.svg",
  48850. extra: 1841/1642,
  48851. bottom: 336/2177
  48852. },
  48853. default: true
  48854. },
  48855. maw: {
  48856. height: math.unit(3.35, "feet"),
  48857. name: "Maw",
  48858. image: {
  48859. source: "./media/characters/flicker-wisp/maw.svg",
  48860. extra: 2338/1506,
  48861. bottom: 0/2338
  48862. }
  48863. },
  48864. ovipositor: {
  48865. height: math.unit(4.95, "feet"),
  48866. name: "Ovipositor",
  48867. image: {
  48868. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48869. }
  48870. },
  48871. egg: {
  48872. height: math.unit(0.385, "feet"),
  48873. weight: math.unit(2, "lb"),
  48874. name: "Egg",
  48875. image: {
  48876. source: "./media/characters/flicker-wisp/egg.svg"
  48877. }
  48878. },
  48879. },
  48880. [
  48881. {
  48882. name: "Normal",
  48883. height: math.unit(8.7, "feet"),
  48884. default: true
  48885. },
  48886. ]
  48887. ))
  48888. characterMakers.push(() => makeCharacter(
  48889. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48890. {
  48891. side: {
  48892. height: math.unit(11, "feet"),
  48893. name: "Side",
  48894. image: {
  48895. source: "./media/characters/faefnul/side.svg",
  48896. extra: 1100/1007,
  48897. bottom: 0/1100
  48898. }
  48899. },
  48900. },
  48901. [
  48902. {
  48903. name: "Normal",
  48904. height: math.unit(11, "feet"),
  48905. default: true
  48906. },
  48907. ]
  48908. ))
  48909. characterMakers.push(() => makeCharacter(
  48910. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48911. {
  48912. front: {
  48913. height: math.unit(6 + 2/12, "feet"),
  48914. name: "Front",
  48915. image: {
  48916. source: "./media/characters/shady/front.svg",
  48917. extra: 502/461,
  48918. bottom: 9/511
  48919. }
  48920. },
  48921. kneeling: {
  48922. height: math.unit(4.6, "feet"),
  48923. name: "Kneeling",
  48924. image: {
  48925. source: "./media/characters/shady/kneeling.svg",
  48926. extra: 1328/1219,
  48927. bottom: 117/1445
  48928. }
  48929. },
  48930. maw: {
  48931. height: math.unit(2, "feet"),
  48932. name: "Maw",
  48933. image: {
  48934. source: "./media/characters/shady/maw.svg"
  48935. }
  48936. },
  48937. },
  48938. [
  48939. {
  48940. name: "Nano",
  48941. height: math.unit(1, "mm")
  48942. },
  48943. {
  48944. name: "Micro",
  48945. height: math.unit(12, "mm")
  48946. },
  48947. {
  48948. name: "Tiny",
  48949. height: math.unit(3, "inches")
  48950. },
  48951. {
  48952. name: "Normal",
  48953. height: math.unit(6 + 2/12, "feet"),
  48954. default: true
  48955. },
  48956. {
  48957. name: "Big",
  48958. height: math.unit(15, "feet")
  48959. },
  48960. {
  48961. name: "Macro",
  48962. height: math.unit(150, "feet")
  48963. },
  48964. {
  48965. name: "Titanic",
  48966. height: math.unit(500, "feet")
  48967. },
  48968. ]
  48969. ))
  48970. characterMakers.push(() => makeCharacter(
  48971. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48972. {
  48973. front: {
  48974. height: math.unit(12, "feet"),
  48975. name: "Front",
  48976. image: {
  48977. source: "./media/characters/fenrir/front.svg",
  48978. extra: 968/875,
  48979. bottom: 22/990
  48980. }
  48981. },
  48982. },
  48983. [
  48984. {
  48985. name: "Big",
  48986. height: math.unit(12, "feet"),
  48987. default: true
  48988. },
  48989. ]
  48990. ))
  48991. characterMakers.push(() => makeCharacter(
  48992. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48993. {
  48994. front: {
  48995. height: math.unit(5 + 4/12, "feet"),
  48996. name: "Front",
  48997. image: {
  48998. source: "./media/characters/makar/front.svg",
  48999. extra: 1181/1112,
  49000. bottom: 78/1259
  49001. }
  49002. },
  49003. },
  49004. [
  49005. {
  49006. name: "Normal",
  49007. height: math.unit(5 + 4/12, "feet"),
  49008. default: true
  49009. },
  49010. ]
  49011. ))
  49012. characterMakers.push(() => makeCharacter(
  49013. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49014. {
  49015. front: {
  49016. height: math.unit(5 + 7/12, "feet"),
  49017. name: "Front",
  49018. image: {
  49019. source: "./media/characters/callow/front.svg",
  49020. extra: 1482/1304,
  49021. bottom: 23/1505
  49022. }
  49023. },
  49024. back: {
  49025. height: math.unit(5 + 7/12, "feet"),
  49026. name: "Back",
  49027. image: {
  49028. source: "./media/characters/callow/back.svg",
  49029. extra: 1484/1296,
  49030. bottom: 25/1509
  49031. }
  49032. },
  49033. },
  49034. [
  49035. {
  49036. name: "Micro",
  49037. height: math.unit(3, "inches"),
  49038. default: true
  49039. },
  49040. {
  49041. name: "Normal",
  49042. height: math.unit(5 + 7/12, "feet")
  49043. },
  49044. ]
  49045. ))
  49046. characterMakers.push(() => makeCharacter(
  49047. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49048. {
  49049. front: {
  49050. height: math.unit(6 + 2/12, "feet"),
  49051. name: "Front",
  49052. image: {
  49053. source: "./media/characters/natel/front.svg",
  49054. extra: 1833/1692,
  49055. bottom: 166/1999
  49056. }
  49057. },
  49058. },
  49059. [
  49060. {
  49061. name: "Normal",
  49062. height: math.unit(6 + 2/12, "feet"),
  49063. default: true
  49064. },
  49065. ]
  49066. ))
  49067. characterMakers.push(() => makeCharacter(
  49068. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49069. {
  49070. front: {
  49071. height: math.unit(1.75, "meters"),
  49072. name: "Front",
  49073. image: {
  49074. source: "./media/characters/misu/front.svg",
  49075. extra: 1690/1558,
  49076. bottom: 234/1924
  49077. }
  49078. },
  49079. back: {
  49080. height: math.unit(1.75, "meters"),
  49081. name: "Back",
  49082. image: {
  49083. source: "./media/characters/misu/back.svg",
  49084. extra: 1762/1618,
  49085. bottom: 146/1908
  49086. }
  49087. },
  49088. frontNude: {
  49089. height: math.unit(1.75, "meters"),
  49090. name: "Front (Nude)",
  49091. image: {
  49092. source: "./media/characters/misu/front-nude.svg",
  49093. extra: 1690/1558,
  49094. bottom: 234/1924
  49095. }
  49096. },
  49097. backNude: {
  49098. height: math.unit(1.75, "meters"),
  49099. name: "Back (Nude)",
  49100. image: {
  49101. source: "./media/characters/misu/back-nude.svg",
  49102. extra: 1762/1618,
  49103. bottom: 146/1908
  49104. }
  49105. },
  49106. frontErect: {
  49107. height: math.unit(1.75, "meters"),
  49108. name: "Front (Erect)",
  49109. image: {
  49110. source: "./media/characters/misu/front-erect.svg",
  49111. extra: 1690/1558,
  49112. bottom: 234/1924
  49113. }
  49114. },
  49115. maw: {
  49116. height: math.unit(0.47, "meters"),
  49117. name: "Maw",
  49118. image: {
  49119. source: "./media/characters/misu/maw.svg"
  49120. }
  49121. },
  49122. head: {
  49123. height: math.unit(0.35, "meters"),
  49124. name: "Head",
  49125. image: {
  49126. source: "./media/characters/misu/head.svg"
  49127. }
  49128. },
  49129. rear: {
  49130. height: math.unit(0.47, "meters"),
  49131. name: "Rear",
  49132. image: {
  49133. source: "./media/characters/misu/rear.svg"
  49134. }
  49135. },
  49136. },
  49137. [
  49138. {
  49139. name: "Normal",
  49140. height: math.unit(1.75, "meters")
  49141. },
  49142. {
  49143. name: "Not good for the people",
  49144. height: math.unit(42, "meters")
  49145. },
  49146. {
  49147. name: "Not good for the neighborhood",
  49148. height: math.unit(135, "meters")
  49149. },
  49150. {
  49151. name: "Bit bigger problem",
  49152. height: math.unit(380, "meters"),
  49153. default: true
  49154. },
  49155. {
  49156. name: "Not good for the city",
  49157. height: math.unit(1.5, "km")
  49158. },
  49159. {
  49160. name: "Not good for the county",
  49161. height: math.unit(5.5, "km")
  49162. },
  49163. {
  49164. name: "Not good for the state",
  49165. height: math.unit(25, "km")
  49166. },
  49167. {
  49168. name: "Not good for the country",
  49169. height: math.unit(125, "km")
  49170. },
  49171. {
  49172. name: "Not good for the continent",
  49173. height: math.unit(2100, "km")
  49174. },
  49175. {
  49176. name: "Not good for the planet",
  49177. height: math.unit(35000, "km")
  49178. },
  49179. {
  49180. name: "Just no",
  49181. height: math.unit(8.5e18, "km")
  49182. },
  49183. ]
  49184. ))
  49185. characterMakers.push(() => makeCharacter(
  49186. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49187. {
  49188. front: {
  49189. height: math.unit(6.5, "feet"),
  49190. name: "Front",
  49191. image: {
  49192. source: "./media/characters/poppy/front.svg",
  49193. extra: 1878/1812,
  49194. bottom: 43/1921
  49195. }
  49196. },
  49197. feet: {
  49198. height: math.unit(1.06, "feet"),
  49199. name: "Feet",
  49200. image: {
  49201. source: "./media/characters/poppy/feet.svg",
  49202. extra: 1083/1083,
  49203. bottom: 87/1170
  49204. }
  49205. },
  49206. },
  49207. [
  49208. {
  49209. name: "Human",
  49210. height: math.unit(6.5, "feet")
  49211. },
  49212. {
  49213. name: "Default",
  49214. height: math.unit(300, "feet"),
  49215. default: true
  49216. },
  49217. {
  49218. name: "Huge",
  49219. height: math.unit(850, "feet")
  49220. },
  49221. {
  49222. name: "Mega",
  49223. height: math.unit(8000, "feet")
  49224. },
  49225. {
  49226. name: "Giga",
  49227. height: math.unit(300, "miles")
  49228. },
  49229. ]
  49230. ))
  49231. characterMakers.push(() => makeCharacter(
  49232. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49233. {
  49234. bipedal: {
  49235. height: math.unit(7, "feet"),
  49236. name: "Bipedal",
  49237. image: {
  49238. source: "./media/characters/zener/bipedal.svg",
  49239. extra: 874/805,
  49240. bottom: 109/983
  49241. }
  49242. },
  49243. quadrupedal: {
  49244. height: math.unit(4.64, "feet"),
  49245. name: "Quadrupedal",
  49246. image: {
  49247. source: "./media/characters/zener/quadrupedal.svg",
  49248. extra: 638/507,
  49249. bottom: 190/828
  49250. }
  49251. },
  49252. cock: {
  49253. height: math.unit(18, "inches"),
  49254. name: "Cock",
  49255. image: {
  49256. source: "./media/characters/zener/cock.svg"
  49257. }
  49258. },
  49259. },
  49260. [
  49261. {
  49262. name: "Normal",
  49263. height: math.unit(7, "feet"),
  49264. default: true
  49265. },
  49266. ]
  49267. ))
  49268. characterMakers.push(() => makeCharacter(
  49269. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49270. {
  49271. nude: {
  49272. height: math.unit(5 + 6/12, "feet"),
  49273. name: "Nude",
  49274. image: {
  49275. source: "./media/characters/charlie-dog/nude.svg",
  49276. extra: 768/734,
  49277. bottom: 26/794
  49278. }
  49279. },
  49280. dressed: {
  49281. height: math.unit(5 + 6/12, "feet"),
  49282. name: "Dressed",
  49283. image: {
  49284. source: "./media/characters/charlie-dog/dressed.svg",
  49285. extra: 768/734,
  49286. bottom: 26/794
  49287. }
  49288. },
  49289. },
  49290. [
  49291. {
  49292. name: "Normal",
  49293. height: math.unit(5 + 6/12, "feet"),
  49294. default: true
  49295. },
  49296. ]
  49297. ))
  49298. characterMakers.push(() => makeCharacter(
  49299. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49300. {
  49301. front: {
  49302. height: math.unit(6 + 4/12, "feet"),
  49303. name: "Front",
  49304. image: {
  49305. source: "./media/characters/ir'istrasz/front.svg",
  49306. extra: 1014/977,
  49307. bottom: 65/1079
  49308. }
  49309. },
  49310. back: {
  49311. height: math.unit(6 + 4/12, "feet"),
  49312. name: "Back",
  49313. image: {
  49314. source: "./media/characters/ir'istrasz/back.svg",
  49315. extra: 1024/992,
  49316. bottom: 34/1058
  49317. }
  49318. },
  49319. },
  49320. [
  49321. {
  49322. name: "Normal",
  49323. height: math.unit(6 + 4/12, "feet"),
  49324. default: true
  49325. },
  49326. ]
  49327. ))
  49328. characterMakers.push(() => makeCharacter(
  49329. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49330. {
  49331. front: {
  49332. height: math.unit(5 + 8/12, "feet"),
  49333. name: "Front",
  49334. image: {
  49335. source: "./media/characters/dee-ditto/front.svg",
  49336. extra: 1874/1785,
  49337. bottom: 68/1942
  49338. }
  49339. },
  49340. back: {
  49341. height: math.unit(5 + 8/12, "feet"),
  49342. name: "Back",
  49343. image: {
  49344. source: "./media/characters/dee-ditto/back.svg",
  49345. extra: 1870/1783,
  49346. bottom: 77/1947
  49347. }
  49348. },
  49349. },
  49350. [
  49351. {
  49352. name: "Normal",
  49353. height: math.unit(5 + 8/12, "feet"),
  49354. default: true
  49355. },
  49356. ]
  49357. ))
  49358. characterMakers.push(() => makeCharacter(
  49359. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49360. {
  49361. front: {
  49362. height: math.unit(7 + 6/12, "feet"),
  49363. name: "Front",
  49364. image: {
  49365. source: "./media/characters/fey/front.svg",
  49366. extra: 995/979,
  49367. bottom: 30/1025
  49368. }
  49369. },
  49370. back: {
  49371. height: math.unit(7 + 6/12, "feet"),
  49372. name: "Back",
  49373. image: {
  49374. source: "./media/characters/fey/back.svg",
  49375. extra: 1079/1008,
  49376. bottom: 5/1084
  49377. }
  49378. },
  49379. dressed: {
  49380. height: math.unit(7 + 6/12, "feet"),
  49381. name: "Dressed",
  49382. image: {
  49383. source: "./media/characters/fey/dressed.svg",
  49384. extra: 995/979,
  49385. bottom: 30/1025
  49386. }
  49387. },
  49388. },
  49389. [
  49390. {
  49391. name: "Normal",
  49392. height: math.unit(7 + 6/12, "feet"),
  49393. default: true
  49394. },
  49395. ]
  49396. ))
  49397. characterMakers.push(() => makeCharacter(
  49398. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49399. {
  49400. standing: {
  49401. height: math.unit(17, "feet"),
  49402. name: "Standing",
  49403. image: {
  49404. source: "./media/characters/aster/standing.svg",
  49405. extra: 1798/1598,
  49406. bottom: 117/1915
  49407. }
  49408. },
  49409. },
  49410. [
  49411. {
  49412. name: "Normal",
  49413. height: math.unit(17, "feet"),
  49414. default: true
  49415. },
  49416. {
  49417. name: "Homewrecker",
  49418. height: math.unit(95, "feet")
  49419. },
  49420. {
  49421. name: "Planet Devourer",
  49422. height: math.unit(1008000, "miles")
  49423. },
  49424. ]
  49425. ))
  49426. characterMakers.push(() => makeCharacter(
  49427. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49428. {
  49429. front: {
  49430. height: math.unit(6 + 5/12, "feet"),
  49431. weight: math.unit(265, "lb"),
  49432. name: "Front",
  49433. image: {
  49434. source: "./media/characters/devon-childs/front.svg",
  49435. extra: 1795/1721,
  49436. bottom: 41/1836
  49437. }
  49438. },
  49439. side: {
  49440. height: math.unit(6 + 5/12, "feet"),
  49441. weight: math.unit(265, "lb"),
  49442. name: "Side",
  49443. image: {
  49444. source: "./media/characters/devon-childs/side.svg",
  49445. extra: 1812/1738,
  49446. bottom: 30/1842
  49447. }
  49448. },
  49449. back: {
  49450. height: math.unit(6 + 5/12, "feet"),
  49451. weight: math.unit(265, "lb"),
  49452. name: "Back",
  49453. image: {
  49454. source: "./media/characters/devon-childs/back.svg",
  49455. extra: 1808/1735,
  49456. bottom: 23/1831
  49457. }
  49458. },
  49459. hand: {
  49460. height: math.unit(1.464, "feet"),
  49461. name: "Hand",
  49462. image: {
  49463. source: "./media/characters/devon-childs/hand.svg"
  49464. }
  49465. },
  49466. foot: {
  49467. height: math.unit(1.6, "feet"),
  49468. name: "Foot",
  49469. image: {
  49470. source: "./media/characters/devon-childs/foot.svg"
  49471. }
  49472. },
  49473. },
  49474. [
  49475. {
  49476. name: "Micro",
  49477. height: math.unit(7, "cm")
  49478. },
  49479. {
  49480. name: "Normal",
  49481. height: math.unit(6 + 5/12, "feet"),
  49482. default: true
  49483. },
  49484. {
  49485. name: "Macro",
  49486. height: math.unit(154, "feet")
  49487. },
  49488. ]
  49489. ))
  49490. characterMakers.push(() => makeCharacter(
  49491. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49492. {
  49493. front: {
  49494. height: math.unit(6, "feet"),
  49495. weight: math.unit(180, "lb"),
  49496. name: "Front",
  49497. image: {
  49498. source: "./media/characters/lydemox-vir/front.svg",
  49499. extra: 1632/1435,
  49500. bottom: 58/1690
  49501. }
  49502. },
  49503. frontSFW: {
  49504. height: math.unit(6, "feet"),
  49505. weight: math.unit(180, "lb"),
  49506. name: "Front (SFW)",
  49507. image: {
  49508. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49509. extra: 1632/1435,
  49510. bottom: 58/1690
  49511. }
  49512. },
  49513. back: {
  49514. height: math.unit(6, "feet"),
  49515. weight: math.unit(180, "lb"),
  49516. name: "Back",
  49517. image: {
  49518. source: "./media/characters/lydemox-vir/back.svg",
  49519. extra: 1593/1408,
  49520. bottom: 31/1624
  49521. }
  49522. },
  49523. paw: {
  49524. height: math.unit(1.85, "feet"),
  49525. name: "Paw",
  49526. image: {
  49527. source: "./media/characters/lydemox-vir/paw.svg"
  49528. }
  49529. },
  49530. dick: {
  49531. height: math.unit(1.8, "feet"),
  49532. name: "Dick",
  49533. image: {
  49534. source: "./media/characters/lydemox-vir/dick.svg"
  49535. }
  49536. },
  49537. },
  49538. [
  49539. {
  49540. name: "Macro",
  49541. height: math.unit(100, "feet"),
  49542. default: true
  49543. },
  49544. {
  49545. name: "Teramacro",
  49546. height: math.unit(1, "earth")
  49547. },
  49548. {
  49549. name: "Planetary",
  49550. height: math.unit(20, "earths")
  49551. },
  49552. ]
  49553. ))
  49554. characterMakers.push(() => makeCharacter(
  49555. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49556. {
  49557. front: {
  49558. height: math.unit(15 + 8/12, "feet"),
  49559. weight: math.unit(1237, "kg"),
  49560. name: "Front",
  49561. image: {
  49562. source: "./media/characters/mia/front.svg",
  49563. extra: 1573/1446,
  49564. bottom: 58/1631
  49565. }
  49566. },
  49567. },
  49568. [
  49569. {
  49570. name: "Small",
  49571. height: math.unit(9 + 5/12, "feet")
  49572. },
  49573. {
  49574. name: "Normal",
  49575. height: math.unit(15 + 8/12, "feet"),
  49576. default: true
  49577. },
  49578. ]
  49579. ))
  49580. characterMakers.push(() => makeCharacter(
  49581. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49582. {
  49583. front: {
  49584. height: math.unit(10 + 6/12, "feet"),
  49585. weight: math.unit(1.3, "tons"),
  49586. name: "Front",
  49587. image: {
  49588. source: "./media/characters/mr-graves/front.svg",
  49589. extra: 1779/1695,
  49590. bottom: 198/1977
  49591. }
  49592. },
  49593. },
  49594. [
  49595. {
  49596. name: "Normal",
  49597. height: math.unit(10 + 6 /12, "feet"),
  49598. default: true
  49599. },
  49600. ]
  49601. ))
  49602. characterMakers.push(() => makeCharacter(
  49603. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49604. {
  49605. dressedFront: {
  49606. height: math.unit(5 + 8/12, "feet"),
  49607. weight: math.unit(125, "lb"),
  49608. name: "Dressed (Front)",
  49609. image: {
  49610. source: "./media/characters/jess/dressed-front.svg",
  49611. extra: 1176/1152,
  49612. bottom: 42/1218
  49613. }
  49614. },
  49615. dressedSide: {
  49616. height: math.unit(5 + 8/12, "feet"),
  49617. weight: math.unit(125, "lb"),
  49618. name: "Dressed (Side)",
  49619. image: {
  49620. source: "./media/characters/jess/dressed-side.svg",
  49621. extra: 1204/1190,
  49622. bottom: 6/1210
  49623. }
  49624. },
  49625. nudeFront: {
  49626. height: math.unit(5 + 8/12, "feet"),
  49627. weight: math.unit(125, "lb"),
  49628. name: "Nude (Front)",
  49629. image: {
  49630. source: "./media/characters/jess/nude-front.svg",
  49631. extra: 1176/1152,
  49632. bottom: 42/1218
  49633. }
  49634. },
  49635. nudeSide: {
  49636. height: math.unit(5 + 8/12, "feet"),
  49637. weight: math.unit(125, "lb"),
  49638. name: "Nude (Side)",
  49639. image: {
  49640. source: "./media/characters/jess/nude-side.svg",
  49641. extra: 1204/1190,
  49642. bottom: 6/1210
  49643. }
  49644. },
  49645. organsFront: {
  49646. height: math.unit(2.83799342105, "feet"),
  49647. name: "Organs (Front)",
  49648. image: {
  49649. source: "./media/characters/jess/organs-front.svg"
  49650. }
  49651. },
  49652. organsSide: {
  49653. height: math.unit(2.64225290474, "feet"),
  49654. name: "Organs (Side)",
  49655. image: {
  49656. source: "./media/characters/jess/organs-side.svg"
  49657. }
  49658. },
  49659. digestiveTractFront: {
  49660. height: math.unit(2.8106580871, "feet"),
  49661. name: "Digestive Tract (Front)",
  49662. image: {
  49663. source: "./media/characters/jess/digestive-tract-front.svg"
  49664. }
  49665. },
  49666. digestiveTractSide: {
  49667. height: math.unit(2.54365045014, "feet"),
  49668. name: "Digestive Tract (Side)",
  49669. image: {
  49670. source: "./media/characters/jess/digestive-tract-side.svg"
  49671. }
  49672. },
  49673. respiratorySystemFront: {
  49674. height: math.unit(1.11196233456, "feet"),
  49675. name: "Respiratory System (Front)",
  49676. image: {
  49677. source: "./media/characters/jess/respiratory-system-front.svg"
  49678. }
  49679. },
  49680. respiratorySystemSide: {
  49681. height: math.unit(0.89327966297, "feet"),
  49682. name: "Respiratory System (Side)",
  49683. image: {
  49684. source: "./media/characters/jess/respiratory-system-side.svg"
  49685. }
  49686. },
  49687. urinaryTractFront: {
  49688. height: math.unit(1.16126356186, "feet"),
  49689. name: "Urinary Tract (Front)",
  49690. image: {
  49691. source: "./media/characters/jess/urinary-tract-front.svg"
  49692. }
  49693. },
  49694. urinaryTractSide: {
  49695. height: math.unit(1.20910039627, "feet"),
  49696. name: "Urinary Tract (Side)",
  49697. image: {
  49698. source: "./media/characters/jess/urinary-tract-side.svg"
  49699. }
  49700. },
  49701. reproductiveOrgansFront: {
  49702. height: math.unit(0.48422591566, "feet"),
  49703. name: "Reproductive Organs (Front)",
  49704. image: {
  49705. source: "./media/characters/jess/reproductive-organs-front.svg"
  49706. }
  49707. },
  49708. reproductiveOrgansSide: {
  49709. height: math.unit(0.61553314481, "feet"),
  49710. name: "Reproductive Organs (Side)",
  49711. image: {
  49712. source: "./media/characters/jess/reproductive-organs-side.svg"
  49713. }
  49714. },
  49715. breastsFront: {
  49716. height: math.unit(0.47690395121, "feet"),
  49717. name: "Breasts (Front)",
  49718. image: {
  49719. source: "./media/characters/jess/breasts-front.svg"
  49720. }
  49721. },
  49722. breastsSide: {
  49723. height: math.unit(0.30556998307, "feet"),
  49724. name: "Breasts (Side)",
  49725. image: {
  49726. source: "./media/characters/jess/breasts-side.svg"
  49727. }
  49728. },
  49729. heartFront: {
  49730. height: math.unit(0.53011022622, "feet"),
  49731. name: "Heart (Front)",
  49732. image: {
  49733. source: "./media/characters/jess/heart-front.svg"
  49734. }
  49735. },
  49736. heartSide: {
  49737. height: math.unit(0.51790695213, "feet"),
  49738. name: "Heart (Side)",
  49739. image: {
  49740. source: "./media/characters/jess/heart-side.svg"
  49741. }
  49742. },
  49743. earsAndNoseFront: {
  49744. height: math.unit(0.29385483995, "feet"),
  49745. name: "Ears and Nose (Front)",
  49746. image: {
  49747. source: "./media/characters/jess/ears-and-nose-front.svg"
  49748. }
  49749. },
  49750. earsAndNoseSide: {
  49751. height: math.unit(0.18109658741, "feet"),
  49752. name: "Ears and Nose (Side)",
  49753. image: {
  49754. source: "./media/characters/jess/ears-and-nose-side.svg"
  49755. }
  49756. },
  49757. },
  49758. [
  49759. {
  49760. name: "Normal",
  49761. height: math.unit(5 + 8/12, "feet"),
  49762. default: true
  49763. },
  49764. ]
  49765. ))
  49766. characterMakers.push(() => makeCharacter(
  49767. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49768. {
  49769. front: {
  49770. height: math.unit(6, "feet"),
  49771. weight: math.unit(6.64467e-7, "grams"),
  49772. name: "Front",
  49773. image: {
  49774. source: "./media/characters/wimpering/front.svg",
  49775. extra: 597/587,
  49776. bottom: 34/631
  49777. }
  49778. },
  49779. },
  49780. [
  49781. {
  49782. name: "Micro",
  49783. height: math.unit(0.4, "mm"),
  49784. default: true
  49785. },
  49786. ]
  49787. ))
  49788. characterMakers.push(() => makeCharacter(
  49789. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49790. {
  49791. front: {
  49792. height: math.unit(5 + 2/12, "feet"),
  49793. weight: math.unit(110, "lb"),
  49794. name: "Front",
  49795. image: {
  49796. source: "./media/characters/keltre/front.svg",
  49797. extra: 1099/1057,
  49798. bottom: 22/1121
  49799. }
  49800. },
  49801. back: {
  49802. height: math.unit(5 + 2/12, "feet"),
  49803. weight: math.unit(110, "lb"),
  49804. name: "Back",
  49805. image: {
  49806. source: "./media/characters/keltre/back.svg",
  49807. extra: 1095/1053,
  49808. bottom: 17/1112
  49809. }
  49810. },
  49811. dressed: {
  49812. height: math.unit(5 + 2/12, "feet"),
  49813. weight: math.unit(110, "lb"),
  49814. name: "Dressed",
  49815. image: {
  49816. source: "./media/characters/keltre/dressed.svg",
  49817. extra: 1099/1057,
  49818. bottom: 22/1121
  49819. }
  49820. },
  49821. winter: {
  49822. height: math.unit(5 + 2/12, "feet"),
  49823. weight: math.unit(110, "lb"),
  49824. name: "Winter",
  49825. image: {
  49826. source: "./media/characters/keltre/winter.svg",
  49827. extra: 1099/1057,
  49828. bottom: 22/1121
  49829. }
  49830. },
  49831. head: {
  49832. height: math.unit(1.61 * 0.86, "feet"),
  49833. name: "Head",
  49834. image: {
  49835. source: "./media/characters/keltre/head.svg",
  49836. extra: 534/421,
  49837. bottom: 0/534
  49838. }
  49839. },
  49840. hand: {
  49841. height: math.unit(1.3 * 0.86, "feet"),
  49842. name: "Hand",
  49843. image: {
  49844. source: "./media/characters/keltre/hand.svg"
  49845. }
  49846. },
  49847. foot: {
  49848. height: math.unit(1.8 * 0.86, "feet"),
  49849. name: "Foot",
  49850. image: {
  49851. source: "./media/characters/keltre/foot.svg"
  49852. }
  49853. },
  49854. },
  49855. [
  49856. {
  49857. name: "Fine",
  49858. height: math.unit(1, "inch")
  49859. },
  49860. {
  49861. name: "Dimnutive",
  49862. height: math.unit(4, "inches")
  49863. },
  49864. {
  49865. name: "Tiny",
  49866. height: math.unit(1, "foot")
  49867. },
  49868. {
  49869. name: "Small",
  49870. height: math.unit(3, "feet")
  49871. },
  49872. {
  49873. name: "Normal",
  49874. height: math.unit(5 + 2/12, "feet"),
  49875. default: true
  49876. },
  49877. ]
  49878. ))
  49879. characterMakers.push(() => makeCharacter(
  49880. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49881. {
  49882. front: {
  49883. height: math.unit(6 + 2/12, "feet"),
  49884. name: "Front",
  49885. image: {
  49886. source: "./media/characters/nox/front.svg",
  49887. extra: 1917/1830,
  49888. bottom: 74/1991
  49889. }
  49890. },
  49891. back: {
  49892. height: math.unit(6 + 2/12, "feet"),
  49893. name: "Back",
  49894. image: {
  49895. source: "./media/characters/nox/back.svg",
  49896. extra: 1896/1815,
  49897. bottom: 21/1917
  49898. }
  49899. },
  49900. head: {
  49901. height: math.unit(1.1, "feet"),
  49902. name: "Head",
  49903. image: {
  49904. source: "./media/characters/nox/head.svg",
  49905. extra: 874/704,
  49906. bottom: 0/874
  49907. }
  49908. },
  49909. tattoo: {
  49910. height: math.unit(0.729, "feet"),
  49911. name: "Tattoo",
  49912. image: {
  49913. source: "./media/characters/nox/tattoo.svg"
  49914. }
  49915. },
  49916. },
  49917. [
  49918. {
  49919. name: "Normal",
  49920. height: math.unit(6 + 2/12, "feet")
  49921. },
  49922. {
  49923. name: "Gigamacro",
  49924. height: math.unit(2, "earths"),
  49925. default: true
  49926. },
  49927. {
  49928. name: "Cosmic",
  49929. height: math.unit(867, "yottameters")
  49930. },
  49931. ]
  49932. ))
  49933. characterMakers.push(() => makeCharacter(
  49934. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49935. {
  49936. front: {
  49937. height: math.unit(6, "feet"),
  49938. weight: math.unit(150, "lb"),
  49939. name: "Front",
  49940. image: {
  49941. source: "./media/characters/caspian/front.svg",
  49942. extra: 1443/1359,
  49943. bottom: 0/1443
  49944. }
  49945. },
  49946. back: {
  49947. height: math.unit(6, "feet"),
  49948. weight: math.unit(150, "lb"),
  49949. name: "Back",
  49950. image: {
  49951. source: "./media/characters/caspian/back.svg",
  49952. extra: 1379/1309,
  49953. bottom: 0/1379
  49954. }
  49955. },
  49956. head: {
  49957. height: math.unit(0.9, "feet"),
  49958. name: "Head",
  49959. image: {
  49960. source: "./media/characters/caspian/head.svg",
  49961. extra: 692/492,
  49962. bottom: 0/692
  49963. }
  49964. },
  49965. headAlt: {
  49966. height: math.unit(0.95, "feet"),
  49967. name: "Head (Alt)",
  49968. image: {
  49969. source: "./media/characters/caspian/head-alt.svg",
  49970. extra: 668/508,
  49971. bottom: 0/668
  49972. }
  49973. },
  49974. hand: {
  49975. height: math.unit(0.8, "feet"),
  49976. name: "Hand",
  49977. image: {
  49978. source: "./media/characters/caspian/hand.svg"
  49979. }
  49980. },
  49981. paw: {
  49982. height: math.unit(0.95, "feet"),
  49983. name: "Paw",
  49984. image: {
  49985. source: "./media/characters/caspian/paw.svg"
  49986. }
  49987. },
  49988. },
  49989. [
  49990. {
  49991. name: "Normal",
  49992. height: math.unit(162, "feet"),
  49993. default: true
  49994. },
  49995. ]
  49996. ))
  49997. characterMakers.push(() => makeCharacter(
  49998. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49999. {
  50000. front: {
  50001. height: math.unit(6, "feet"),
  50002. name: "Front",
  50003. image: {
  50004. source: "./media/characters/myra-aisling/front.svg",
  50005. extra: 1268/1166,
  50006. bottom: 73/1341
  50007. }
  50008. },
  50009. back: {
  50010. height: math.unit(6, "feet"),
  50011. name: "Back",
  50012. image: {
  50013. source: "./media/characters/myra-aisling/back.svg",
  50014. extra: 1249/1149,
  50015. bottom: 79/1328
  50016. }
  50017. },
  50018. dressed: {
  50019. height: math.unit(6, "feet"),
  50020. name: "Dressed",
  50021. image: {
  50022. source: "./media/characters/myra-aisling/dressed.svg",
  50023. extra: 1290/1189,
  50024. bottom: 47/1337
  50025. }
  50026. },
  50027. hand: {
  50028. height: math.unit(1.1, "feet"),
  50029. name: "Hand",
  50030. image: {
  50031. source: "./media/characters/myra-aisling/hand.svg"
  50032. }
  50033. },
  50034. paw: {
  50035. height: math.unit(1.23, "feet"),
  50036. name: "Paw",
  50037. image: {
  50038. source: "./media/characters/myra-aisling/paw.svg"
  50039. }
  50040. },
  50041. },
  50042. [
  50043. {
  50044. name: "Normal",
  50045. height: math.unit(160, "feet"),
  50046. default: true
  50047. },
  50048. ]
  50049. ))
  50050. characterMakers.push(() => makeCharacter(
  50051. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50052. {
  50053. front: {
  50054. height: math.unit(6, "feet"),
  50055. name: "Front",
  50056. image: {
  50057. source: "./media/characters/tenley-sidero/front.svg",
  50058. extra: 1365/1276,
  50059. bottom: 47/1412
  50060. }
  50061. },
  50062. back: {
  50063. height: math.unit(6, "feet"),
  50064. name: "Back",
  50065. image: {
  50066. source: "./media/characters/tenley-sidero/back.svg",
  50067. extra: 1383/1283,
  50068. bottom: 35/1418
  50069. }
  50070. },
  50071. dressed: {
  50072. height: math.unit(6, "feet"),
  50073. name: "Dressed",
  50074. image: {
  50075. source: "./media/characters/tenley-sidero/dressed.svg",
  50076. extra: 1364/1275,
  50077. bottom: 42/1406
  50078. }
  50079. },
  50080. head: {
  50081. height: math.unit(1.47, "feet"),
  50082. name: "Head",
  50083. image: {
  50084. source: "./media/characters/tenley-sidero/head.svg",
  50085. extra: 610/490,
  50086. bottom: 0/610
  50087. }
  50088. },
  50089. },
  50090. [
  50091. {
  50092. name: "Normal",
  50093. height: math.unit(154, "feet"),
  50094. default: true
  50095. },
  50096. ]
  50097. ))
  50098. characterMakers.push(() => makeCharacter(
  50099. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50100. {
  50101. front: {
  50102. height: math.unit(5, "inches"),
  50103. name: "Front",
  50104. image: {
  50105. source: "./media/characters/mallory/front.svg",
  50106. extra: 1919/1678,
  50107. bottom: 29/1948
  50108. }
  50109. },
  50110. hand: {
  50111. height: math.unit(0.73, "inches"),
  50112. name: "Hand",
  50113. image: {
  50114. source: "./media/characters/mallory/hand.svg"
  50115. }
  50116. },
  50117. paw: {
  50118. height: math.unit(0.68, "inches"),
  50119. name: "Paw",
  50120. image: {
  50121. source: "./media/characters/mallory/paw.svg"
  50122. }
  50123. },
  50124. },
  50125. [
  50126. {
  50127. name: "Small",
  50128. height: math.unit(5, "inches"),
  50129. default: true
  50130. },
  50131. ]
  50132. ))
  50133. characterMakers.push(() => makeCharacter(
  50134. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50135. {
  50136. naked: {
  50137. height: math.unit(6, "feet"),
  50138. name: "Naked",
  50139. image: {
  50140. source: "./media/characters/mab/naked.svg",
  50141. extra: 1855/1757,
  50142. bottom: 208/2063
  50143. }
  50144. },
  50145. outside: {
  50146. height: math.unit(6, "feet"),
  50147. name: "Outside",
  50148. image: {
  50149. source: "./media/characters/mab/outside.svg",
  50150. extra: 1855/1757,
  50151. bottom: 208/2063
  50152. }
  50153. },
  50154. party: {
  50155. height: math.unit(6, "feet"),
  50156. name: "Party",
  50157. image: {
  50158. source: "./media/characters/mab/party.svg",
  50159. extra: 1855/1757,
  50160. bottom: 208/2063
  50161. }
  50162. },
  50163. },
  50164. [
  50165. {
  50166. name: "Normal",
  50167. height: math.unit(165, "feet"),
  50168. default: true
  50169. },
  50170. ]
  50171. ))
  50172. characterMakers.push(() => makeCharacter(
  50173. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50174. {
  50175. feral: {
  50176. height: math.unit(12, "feet"),
  50177. weight: math.unit(20000, "lb"),
  50178. name: "Side",
  50179. image: {
  50180. source: "./media/characters/winter/feral.svg",
  50181. extra: 1286/943,
  50182. bottom: 112/1398
  50183. },
  50184. form: "feral",
  50185. default: true
  50186. },
  50187. feralNsfw: {
  50188. height: math.unit(12, "feet"),
  50189. weight: math.unit(20000, "lb"),
  50190. name: "Side (NSFW)",
  50191. image: {
  50192. source: "./media/characters/winter/feral-nsfw.svg",
  50193. extra: 1286/943,
  50194. bottom: 112/1398
  50195. },
  50196. form: "feral"
  50197. },
  50198. dick: {
  50199. height: math.unit(3.79, "feet"),
  50200. name: "Dick",
  50201. image: {
  50202. source: "./media/characters/winter/dick.svg"
  50203. },
  50204. form: "feral"
  50205. },
  50206. anthro: {
  50207. height: math.unit(12, "feet"),
  50208. weight: math.unit(10, "tons"),
  50209. name: "Anthro",
  50210. image: {
  50211. source: "./media/characters/winter/anthro.svg",
  50212. extra: 1701/1553,
  50213. bottom: 64/1765
  50214. },
  50215. form: "anthro",
  50216. default: true
  50217. },
  50218. },
  50219. [
  50220. {
  50221. name: "Big",
  50222. height: math.unit(12, "feet"),
  50223. default: true,
  50224. form: "feral"
  50225. },
  50226. {
  50227. name: "Big",
  50228. height: math.unit(12, "feet"),
  50229. default: true,
  50230. form: "anthro"
  50231. },
  50232. ],
  50233. {
  50234. "feral": {
  50235. name: "Feral",
  50236. default: true
  50237. },
  50238. "anthro": {
  50239. name: "Anthro"
  50240. }
  50241. }
  50242. ))
  50243. characterMakers.push(() => makeCharacter(
  50244. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50245. {
  50246. front: {
  50247. height: math.unit(4.1, "inches"),
  50248. name: "Front",
  50249. image: {
  50250. source: "./media/characters/alto/front.svg",
  50251. extra: 736/627,
  50252. bottom: 90/826
  50253. }
  50254. },
  50255. },
  50256. [
  50257. {
  50258. name: "Normal",
  50259. height: math.unit(4.1, "inches"),
  50260. default: true
  50261. },
  50262. ]
  50263. ))
  50264. characterMakers.push(() => makeCharacter(
  50265. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50266. {
  50267. sitting: {
  50268. height: math.unit(3, "feet"),
  50269. name: "Sitting",
  50270. image: {
  50271. source: "./media/characters/ratstrid-v/sitting.svg",
  50272. extra: 355/310,
  50273. bottom: 136/491
  50274. }
  50275. },
  50276. },
  50277. [
  50278. {
  50279. name: "Normal",
  50280. height: math.unit(3, "feet"),
  50281. default: true
  50282. },
  50283. ]
  50284. ))
  50285. characterMakers.push(() => makeCharacter(
  50286. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50287. {
  50288. back: {
  50289. height: math.unit(6, "feet"),
  50290. weight: math.unit(450, "lb"),
  50291. name: "Back",
  50292. image: {
  50293. source: "./media/characters/siz/back.svg",
  50294. extra: 1449/1274,
  50295. bottom: 13/1462
  50296. }
  50297. },
  50298. },
  50299. [
  50300. {
  50301. name: "Smallest",
  50302. height: math.unit(18 + 3/12, "feet")
  50303. },
  50304. {
  50305. name: "Modest",
  50306. height: math.unit(56 + 8/12, "feet"),
  50307. default: true
  50308. },
  50309. {
  50310. name: "Largest",
  50311. height: math.unit(3590, "feet")
  50312. },
  50313. ]
  50314. ))
  50315. characterMakers.push(() => makeCharacter(
  50316. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50317. {
  50318. front: {
  50319. height: math.unit(5 + 9/12, "feet"),
  50320. weight: math.unit(150, "lb"),
  50321. name: "Front",
  50322. image: {
  50323. source: "./media/characters/ven/front.svg",
  50324. extra: 1372/1320,
  50325. bottom: 73/1445
  50326. }
  50327. },
  50328. side: {
  50329. height: math.unit(5 + 9/12, "feet"),
  50330. weight: math.unit(1150, "lb"),
  50331. name: "Side",
  50332. image: {
  50333. source: "./media/characters/ven/side.svg",
  50334. extra: 1119/1070,
  50335. bottom: 42/1161
  50336. },
  50337. default: true
  50338. },
  50339. },
  50340. [
  50341. {
  50342. name: "Normal",
  50343. height: math.unit(5 + 9/12, "feet"),
  50344. default: true
  50345. },
  50346. ]
  50347. ))
  50348. characterMakers.push(() => makeCharacter(
  50349. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50350. {
  50351. front: {
  50352. height: math.unit(12, "feet"),
  50353. weight: math.unit(1000, "kg"),
  50354. name: "Front",
  50355. image: {
  50356. source: "./media/characters/maple/front.svg",
  50357. extra: 1193/1081,
  50358. bottom: 22/1215
  50359. }
  50360. },
  50361. },
  50362. [
  50363. {
  50364. name: "Compressed",
  50365. height: math.unit(7, "feet")
  50366. },
  50367. {
  50368. name: "Normal",
  50369. height: math.unit(12, "feet"),
  50370. default: true
  50371. },
  50372. ]
  50373. ))
  50374. characterMakers.push(() => makeCharacter(
  50375. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50376. {
  50377. front: {
  50378. height: math.unit(9, "feet"),
  50379. weight: math.unit(1500, "lb"),
  50380. name: "Front",
  50381. image: {
  50382. source: "./media/characters/nora/front.svg",
  50383. extra: 1348/1286,
  50384. bottom: 218/1566
  50385. }
  50386. },
  50387. erect: {
  50388. height: math.unit(9, "feet"),
  50389. weight: math.unit(11500, "lb"),
  50390. name: "Erect",
  50391. image: {
  50392. source: "./media/characters/nora/erect.svg",
  50393. extra: 1488/1433,
  50394. bottom: 133/1621
  50395. }
  50396. },
  50397. },
  50398. [
  50399. {
  50400. name: "Normal",
  50401. height: math.unit(9, "feet"),
  50402. default: true
  50403. },
  50404. ]
  50405. ))
  50406. characterMakers.push(() => makeCharacter(
  50407. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50408. {
  50409. front: {
  50410. height: math.unit(25, "feet"),
  50411. weight: math.unit(27500, "lb"),
  50412. name: "Front",
  50413. image: {
  50414. source: "./media/characters/north-caudin/front.svg",
  50415. extra: 1184/1082,
  50416. bottom: 23/1207
  50417. }
  50418. },
  50419. },
  50420. [
  50421. {
  50422. name: "Compressed",
  50423. height: math.unit(10, "feet")
  50424. },
  50425. {
  50426. name: "Normal",
  50427. height: math.unit(25, "feet"),
  50428. default: true
  50429. },
  50430. ]
  50431. ))
  50432. characterMakers.push(() => makeCharacter(
  50433. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50434. {
  50435. front: {
  50436. height: math.unit(9, "feet"),
  50437. weight: math.unit(1250, "lb"),
  50438. name: "Front",
  50439. image: {
  50440. source: "./media/characters/merrian/front.svg",
  50441. extra: 2393/2304,
  50442. bottom: 40/2433
  50443. }
  50444. },
  50445. },
  50446. [
  50447. {
  50448. name: "Normal",
  50449. height: math.unit(9, "feet"),
  50450. default: true
  50451. },
  50452. ]
  50453. ))
  50454. characterMakers.push(() => makeCharacter(
  50455. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50456. {
  50457. front: {
  50458. height: math.unit(9, "feet"),
  50459. weight: math.unit(1000, "lb"),
  50460. name: "Front",
  50461. image: {
  50462. source: "./media/characters/hazel/front.svg",
  50463. extra: 2351/2298,
  50464. bottom: 38/2389
  50465. }
  50466. },
  50467. },
  50468. [
  50469. {
  50470. name: "Normal",
  50471. height: math.unit(9, "feet"),
  50472. default: true
  50473. },
  50474. ]
  50475. ))
  50476. characterMakers.push(() => makeCharacter(
  50477. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50478. {
  50479. front: {
  50480. height: math.unit(13, "feet"),
  50481. weight: math.unit(3200, "lb"),
  50482. name: "Front",
  50483. image: {
  50484. source: "./media/characters/emma/front.svg",
  50485. extra: 2263/2029,
  50486. bottom: 68/2331
  50487. }
  50488. },
  50489. },
  50490. [
  50491. {
  50492. name: "Normal",
  50493. height: math.unit(13, "feet"),
  50494. default: true
  50495. },
  50496. ]
  50497. ))
  50498. characterMakers.push(() => makeCharacter(
  50499. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50500. {
  50501. front: {
  50502. height: math.unit(11 + 9/12, "feet"),
  50503. weight: math.unit(2500, "lb"),
  50504. name: "Front",
  50505. image: {
  50506. source: "./media/characters/ilumina/front.svg",
  50507. extra: 2248/2209,
  50508. bottom: 164/2412
  50509. }
  50510. },
  50511. },
  50512. [
  50513. {
  50514. name: "Normal",
  50515. height: math.unit(11 + 9/12, "feet"),
  50516. default: true
  50517. },
  50518. ]
  50519. ))
  50520. characterMakers.push(() => makeCharacter(
  50521. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50522. {
  50523. front: {
  50524. height: math.unit(8 + 10/12, "feet"),
  50525. weight: math.unit(1350, "lb"),
  50526. name: "Front",
  50527. image: {
  50528. source: "./media/characters/moonshine/front.svg",
  50529. extra: 2395/2288,
  50530. bottom: 40/2435
  50531. }
  50532. },
  50533. },
  50534. [
  50535. {
  50536. name: "Normal",
  50537. height: math.unit(8 + 10/12, "feet"),
  50538. default: true
  50539. },
  50540. ]
  50541. ))
  50542. characterMakers.push(() => makeCharacter(
  50543. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50544. {
  50545. front: {
  50546. height: math.unit(14, "feet"),
  50547. weight: math.unit(3400, "lb"),
  50548. name: "Front",
  50549. image: {
  50550. source: "./media/characters/aletia/front.svg",
  50551. extra: 1185/1052,
  50552. bottom: 21/1206
  50553. }
  50554. },
  50555. },
  50556. [
  50557. {
  50558. name: "Compressed",
  50559. height: math.unit(8, "feet")
  50560. },
  50561. {
  50562. name: "Normal",
  50563. height: math.unit(14, "feet"),
  50564. default: true
  50565. },
  50566. ]
  50567. ))
  50568. characterMakers.push(() => makeCharacter(
  50569. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50570. {
  50571. front: {
  50572. height: math.unit(17, "feet"),
  50573. weight: math.unit(6500, "lb"),
  50574. name: "Front",
  50575. image: {
  50576. source: "./media/characters/deidra/front.svg",
  50577. extra: 1201/1081,
  50578. bottom: 16/1217
  50579. }
  50580. },
  50581. },
  50582. [
  50583. {
  50584. name: "Compressed",
  50585. height: math.unit(9 + 6/12, "feet")
  50586. },
  50587. {
  50588. name: "Normal",
  50589. height: math.unit(17, "feet"),
  50590. default: true
  50591. },
  50592. ]
  50593. ))
  50594. characterMakers.push(() => makeCharacter(
  50595. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50596. {
  50597. front: {
  50598. height: math.unit(7 + 4/12, "feet"),
  50599. weight: math.unit(280, "lb"),
  50600. name: "Front",
  50601. image: {
  50602. source: "./media/characters/freki-yrmori/front.svg",
  50603. extra: 1286/1182,
  50604. bottom: 29/1315
  50605. }
  50606. },
  50607. maw: {
  50608. height: math.unit(0.9, "feet"),
  50609. name: "Maw",
  50610. image: {
  50611. source: "./media/characters/freki-yrmori/maw.svg"
  50612. }
  50613. },
  50614. },
  50615. [
  50616. {
  50617. name: "Normal",
  50618. height: math.unit(7 + 4/12, "feet"),
  50619. default: true
  50620. },
  50621. {
  50622. name: "Macro",
  50623. height: math.unit(38.5, "meters")
  50624. },
  50625. ]
  50626. ))
  50627. characterMakers.push(() => makeCharacter(
  50628. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50629. {
  50630. side: {
  50631. height: math.unit(47.2, "meters"),
  50632. weight: math.unit(10000, "tons"),
  50633. name: "Side",
  50634. image: {
  50635. source: "./media/characters/aetherios/side.svg",
  50636. extra: 2363/642,
  50637. bottom: 221/2584
  50638. }
  50639. },
  50640. top: {
  50641. height: math.unit(240, "meters"),
  50642. weight: math.unit(10000, "tons"),
  50643. name: "Top",
  50644. image: {
  50645. source: "./media/characters/aetherios/top.svg"
  50646. }
  50647. },
  50648. bottom: {
  50649. height: math.unit(240, "meters"),
  50650. weight: math.unit(10000, "tons"),
  50651. name: "Bottom",
  50652. image: {
  50653. source: "./media/characters/aetherios/bottom.svg"
  50654. }
  50655. },
  50656. head: {
  50657. height: math.unit(38.6, "meters"),
  50658. name: "Head",
  50659. image: {
  50660. source: "./media/characters/aetherios/head.svg",
  50661. extra: 1335/1112,
  50662. bottom: 0/1335
  50663. }
  50664. },
  50665. front: {
  50666. height: math.unit(29, "meters"),
  50667. name: "Front",
  50668. image: {
  50669. source: "./media/characters/aetherios/front.svg",
  50670. extra: 1266/953,
  50671. bottom: 158/1424
  50672. }
  50673. },
  50674. maw: {
  50675. height: math.unit(16.37, "meters"),
  50676. name: "Maw",
  50677. image: {
  50678. source: "./media/characters/aetherios/maw.svg",
  50679. extra: 748/637,
  50680. bottom: 0/748
  50681. },
  50682. extraAttributes: {
  50683. preyCapacity: {
  50684. name: "Capacity",
  50685. power: 3,
  50686. type: "volume",
  50687. base: math.unit(1000, "people")
  50688. },
  50689. tongueSize: {
  50690. name: "Tongue Size",
  50691. power: 2,
  50692. type: "area",
  50693. base: math.unit(21, "m^2")
  50694. }
  50695. }
  50696. },
  50697. forepaw: {
  50698. height: math.unit(18, "meters"),
  50699. name: "Forepaw",
  50700. image: {
  50701. source: "./media/characters/aetherios/forepaw.svg"
  50702. }
  50703. },
  50704. hindpaw: {
  50705. height: math.unit(23, "meters"),
  50706. name: "Hindpaw",
  50707. image: {
  50708. source: "./media/characters/aetherios/hindpaw.svg"
  50709. }
  50710. },
  50711. genitals: {
  50712. height: math.unit(42, "meters"),
  50713. name: "Genitals",
  50714. image: {
  50715. source: "./media/characters/aetherios/genitals.svg"
  50716. }
  50717. },
  50718. },
  50719. [
  50720. {
  50721. name: "Normal",
  50722. height: math.unit(47.2, "meters"),
  50723. default: true
  50724. },
  50725. {
  50726. name: "Macro",
  50727. height: math.unit(160, "meters")
  50728. },
  50729. {
  50730. name: "Mega",
  50731. height: math.unit(1.87, "km")
  50732. },
  50733. {
  50734. name: "Giga",
  50735. height: math.unit(40000, "km")
  50736. },
  50737. {
  50738. name: "Stellar",
  50739. height: math.unit(158000000, "km")
  50740. },
  50741. {
  50742. name: "Cosmic",
  50743. height: math.unit(9.46e12, "km")
  50744. },
  50745. ]
  50746. ))
  50747. characterMakers.push(() => makeCharacter(
  50748. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50749. {
  50750. front: {
  50751. height: math.unit(5 + 4/12, "feet"),
  50752. weight: math.unit(80, "lb"),
  50753. name: "Front",
  50754. image: {
  50755. source: "./media/characters/mizu-gieeg/front.svg",
  50756. extra: 850/709,
  50757. bottom: 52/902
  50758. }
  50759. },
  50760. back: {
  50761. height: math.unit(5 + 4/12, "feet"),
  50762. weight: math.unit(80, "lb"),
  50763. name: "Back",
  50764. image: {
  50765. source: "./media/characters/mizu-gieeg/back.svg",
  50766. extra: 882/745,
  50767. bottom: 25/907
  50768. }
  50769. },
  50770. },
  50771. [
  50772. {
  50773. name: "Normal",
  50774. height: math.unit(5 + 4/12, "feet"),
  50775. default: true
  50776. },
  50777. ]
  50778. ))
  50779. characterMakers.push(() => makeCharacter(
  50780. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50781. {
  50782. front: {
  50783. height: math.unit(6, "feet"),
  50784. name: "Front",
  50785. image: {
  50786. source: "./media/characters/roselle-st-papier/front.svg",
  50787. extra: 1430/1280,
  50788. bottom: 37/1467
  50789. }
  50790. },
  50791. back: {
  50792. height: math.unit(6, "feet"),
  50793. name: "Back",
  50794. image: {
  50795. source: "./media/characters/roselle-st-papier/back.svg",
  50796. extra: 1491/1296,
  50797. bottom: 23/1514
  50798. }
  50799. },
  50800. ear: {
  50801. height: math.unit(1.26, "feet"),
  50802. name: "Ear",
  50803. image: {
  50804. source: "./media/characters/roselle-st-papier/ear.svg"
  50805. }
  50806. },
  50807. },
  50808. [
  50809. {
  50810. name: "Normal",
  50811. height: math.unit(150, "feet"),
  50812. default: true
  50813. },
  50814. ]
  50815. ))
  50816. characterMakers.push(() => makeCharacter(
  50817. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50818. {
  50819. front: {
  50820. height: math.unit(1, "inches"),
  50821. name: "Front",
  50822. image: {
  50823. source: "./media/characters/valargent/front.svg",
  50824. extra: 1825/1694,
  50825. bottom: 62/1887
  50826. }
  50827. },
  50828. back: {
  50829. height: math.unit(1, "inches"),
  50830. name: "Back",
  50831. image: {
  50832. source: "./media/characters/valargent/back.svg",
  50833. extra: 1775/1682,
  50834. bottom: 88/1863
  50835. }
  50836. },
  50837. },
  50838. [
  50839. {
  50840. name: "Micro",
  50841. height: math.unit(1, "inch"),
  50842. default: true
  50843. },
  50844. ]
  50845. ))
  50846. characterMakers.push(() => makeCharacter(
  50847. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50848. {
  50849. front: {
  50850. height: math.unit(3.4, "meters"),
  50851. name: "Front",
  50852. image: {
  50853. source: "./media/characters/zarina/front.svg",
  50854. extra: 1733/1425,
  50855. bottom: 93/1826
  50856. }
  50857. },
  50858. squatting: {
  50859. height: math.unit(2.14, "meters"),
  50860. name: "Squatting",
  50861. image: {
  50862. source: "./media/characters/zarina/squatting.svg",
  50863. extra: 1073/788,
  50864. bottom: 63/1136
  50865. }
  50866. },
  50867. back: {
  50868. height: math.unit(2.14, "meters"),
  50869. name: "Back",
  50870. image: {
  50871. source: "./media/characters/zarina/back.svg",
  50872. extra: 1128/885,
  50873. bottom: 0/1128
  50874. }
  50875. },
  50876. },
  50877. [
  50878. {
  50879. name: "Normal",
  50880. height: math.unit(3.4, "meters"),
  50881. default: true
  50882. },
  50883. {
  50884. name: "Big",
  50885. height: math.unit(5, "meters")
  50886. },
  50887. {
  50888. name: "Macro",
  50889. height: math.unit(110, "meters")
  50890. },
  50891. ]
  50892. ))
  50893. characterMakers.push(() => makeCharacter(
  50894. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50895. {
  50896. front: {
  50897. height: math.unit(7, "feet"),
  50898. name: "Front",
  50899. image: {
  50900. source: "./media/characters/ventus-astro-fox/front.svg",
  50901. extra: 1792/1623,
  50902. bottom: 28/1820
  50903. }
  50904. },
  50905. back: {
  50906. height: math.unit(7, "feet"),
  50907. name: "Back",
  50908. image: {
  50909. source: "./media/characters/ventus-astro-fox/back.svg",
  50910. extra: 1789/1620,
  50911. bottom: 31/1820
  50912. }
  50913. },
  50914. outfit: {
  50915. height: math.unit(7, "feet"),
  50916. name: "Outfit",
  50917. image: {
  50918. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50919. extra: 1054/925,
  50920. bottom: 15/1069
  50921. }
  50922. },
  50923. head: {
  50924. height: math.unit(1.12, "feet"),
  50925. name: "Head",
  50926. image: {
  50927. source: "./media/characters/ventus-astro-fox/head.svg",
  50928. extra: 866/504,
  50929. bottom: 0/866
  50930. }
  50931. },
  50932. hand: {
  50933. height: math.unit(1, "feet"),
  50934. name: "Hand",
  50935. image: {
  50936. source: "./media/characters/ventus-astro-fox/hand.svg"
  50937. }
  50938. },
  50939. paw: {
  50940. height: math.unit(1.5, "feet"),
  50941. name: "Paw",
  50942. image: {
  50943. source: "./media/characters/ventus-astro-fox/paw.svg"
  50944. }
  50945. },
  50946. },
  50947. [
  50948. {
  50949. name: "Normal",
  50950. height: math.unit(7, "feet"),
  50951. default: true
  50952. },
  50953. {
  50954. name: "Macro",
  50955. height: math.unit(200, "feet")
  50956. },
  50957. {
  50958. name: "Cosmic",
  50959. height: math.unit(3, "universes")
  50960. },
  50961. ]
  50962. ))
  50963. characterMakers.push(() => makeCharacter(
  50964. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50965. {
  50966. front: {
  50967. height: math.unit(3, "meters"),
  50968. weight: math.unit(7000, "lb"),
  50969. name: "Front",
  50970. image: {
  50971. source: "./media/characters/core-t/front.svg",
  50972. extra: 5729/4941,
  50973. bottom: 1129/6858
  50974. }
  50975. },
  50976. },
  50977. [
  50978. {
  50979. name: "Big",
  50980. height: math.unit(3, "meters"),
  50981. default: true
  50982. },
  50983. ]
  50984. ))
  50985. characterMakers.push(() => makeCharacter(
  50986. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50987. {
  50988. normal: {
  50989. height: math.unit(6 + 6/12, "feet"),
  50990. weight: math.unit(275, "lb"),
  50991. name: "Front",
  50992. image: {
  50993. source: "./media/characters/cadbunny/normal.svg",
  50994. extra: 1129/947,
  50995. bottom: 93/1222
  50996. },
  50997. default: true,
  50998. form: "normal"
  50999. },
  51000. gigantamax: {
  51001. height: math.unit(26, "feet"),
  51002. weight: math.unit(16000, "lb"),
  51003. name: "Front",
  51004. image: {
  51005. source: "./media/characters/cadbunny/gigantamax.svg",
  51006. extra: 1133/944,
  51007. bottom: 90/1223
  51008. },
  51009. default: true,
  51010. form: "gigantamax"
  51011. },
  51012. },
  51013. [
  51014. {
  51015. name: "Normal",
  51016. height: math.unit(6 + 6/12, "feet"),
  51017. default: true,
  51018. form: "normal"
  51019. },
  51020. {
  51021. name: "Small",
  51022. height: math.unit(26, "feet"),
  51023. default: true,
  51024. form: "gigantamax"
  51025. },
  51026. {
  51027. name: "Large",
  51028. height: math.unit(78, "feet"),
  51029. form: "gigantamax"
  51030. },
  51031. ],
  51032. {
  51033. "normal": {
  51034. name: "Normal",
  51035. default: true
  51036. },
  51037. "gigantamax": {
  51038. name: "Gigantamax"
  51039. }
  51040. }
  51041. ))
  51042. characterMakers.push(() => makeCharacter(
  51043. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51044. {
  51045. anthroFront: {
  51046. height: math.unit(8, "feet"),
  51047. weight: math.unit(300, "lb"),
  51048. name: "Front",
  51049. image: {
  51050. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51051. extra: 1272/1176,
  51052. bottom: 53/1325
  51053. },
  51054. form: "anthro",
  51055. default: true
  51056. },
  51057. feralSide: {
  51058. height: math.unit(4, "feet"),
  51059. weight: math.unit(250, "lb"),
  51060. name: "Side",
  51061. image: {
  51062. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51063. extra: 731/621,
  51064. bottom: 0/731
  51065. },
  51066. form: "feral",
  51067. default: true
  51068. },
  51069. },
  51070. [
  51071. {
  51072. name: "Regular",
  51073. height: math.unit(8, "feet"),
  51074. form: "anthro"
  51075. },
  51076. {
  51077. name: "Macro",
  51078. height: math.unit(250, "feet"),
  51079. form: "anthro",
  51080. default: true
  51081. },
  51082. {
  51083. name: "Regular",
  51084. height: math.unit(4, "feet"),
  51085. form: "feral"
  51086. },
  51087. {
  51088. name: "Macro",
  51089. height: math.unit(125, "feet"),
  51090. form: "feral",
  51091. default: true
  51092. },
  51093. ],
  51094. {
  51095. "anthro": {
  51096. name: "Anthro",
  51097. default: true
  51098. },
  51099. "feral": {
  51100. name: "Feral",
  51101. },
  51102. }
  51103. ))
  51104. characterMakers.push(() => makeCharacter(
  51105. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51106. {
  51107. front: {
  51108. height: math.unit(11 + 10/12, "feet"),
  51109. weight: math.unit(1587, "kg"),
  51110. name: "Front",
  51111. image: {
  51112. source: "./media/characters/maple-javira-dragon/front.svg",
  51113. extra: 1136/744,
  51114. bottom: 73/1209
  51115. }
  51116. },
  51117. side: {
  51118. height: math.unit(11 + 10/12, "feet"),
  51119. weight: math.unit(1587, "kg"),
  51120. name: "Side",
  51121. image: {
  51122. source: "./media/characters/maple-javira-dragon/side.svg",
  51123. extra: 712/505,
  51124. bottom: 17/729
  51125. }
  51126. },
  51127. head: {
  51128. height: math.unit(8.05, "feet"),
  51129. name: "Head",
  51130. image: {
  51131. source: "./media/characters/maple-javira-dragon/head.svg",
  51132. extra: 1420/1344,
  51133. bottom: 0/1420
  51134. }
  51135. },
  51136. },
  51137. [
  51138. {
  51139. name: "Normal",
  51140. height: math.unit(11 + 10/12, "feet"),
  51141. default: true
  51142. },
  51143. ]
  51144. ))
  51145. characterMakers.push(() => makeCharacter(
  51146. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51147. {
  51148. front: {
  51149. height: math.unit(117, "cm"),
  51150. weight: math.unit(50, "kg"),
  51151. name: "Front",
  51152. image: {
  51153. source: "./media/characters/sonia-wyverntail/front.svg",
  51154. extra: 708/592,
  51155. bottom: 25/733
  51156. }
  51157. },
  51158. },
  51159. [
  51160. {
  51161. name: "Normal",
  51162. height: math.unit(117, "cm"),
  51163. default: true
  51164. },
  51165. ]
  51166. ))
  51167. characterMakers.push(() => makeCharacter(
  51168. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51169. {
  51170. front: {
  51171. height: math.unit(6 + 5/12, "feet"),
  51172. name: "Front",
  51173. image: {
  51174. source: "./media/characters/micah/front.svg",
  51175. extra: 1758/1546,
  51176. bottom: 214/1972
  51177. }
  51178. },
  51179. },
  51180. [
  51181. {
  51182. name: "Normal",
  51183. height: math.unit(6 + 5/12, "feet"),
  51184. default: true
  51185. },
  51186. ]
  51187. ))
  51188. characterMakers.push(() => makeCharacter(
  51189. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51190. {
  51191. front: {
  51192. height: math.unit(5 + 10/12, "feet"),
  51193. weight: math.unit(220, "lb"),
  51194. name: "Front",
  51195. image: {
  51196. source: "./media/characters/zarya/front.svg",
  51197. extra: 593/572,
  51198. bottom: 50/643
  51199. }
  51200. },
  51201. back: {
  51202. height: math.unit(5 + 10/12, "feet"),
  51203. weight: math.unit(220, "lb"),
  51204. name: "Back",
  51205. image: {
  51206. source: "./media/characters/zarya/back.svg",
  51207. extra: 603/582,
  51208. bottom: 38/641
  51209. }
  51210. },
  51211. },
  51212. [
  51213. {
  51214. name: "Normal",
  51215. height: math.unit(5 + 10/12, "feet"),
  51216. default: true
  51217. },
  51218. ]
  51219. ))
  51220. characterMakers.push(() => makeCharacter(
  51221. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51222. {
  51223. front: {
  51224. height: math.unit(7.5, "feet"),
  51225. name: "Front",
  51226. image: {
  51227. source: "./media/characters/sven-hatisson/front.svg",
  51228. extra: 917/857,
  51229. bottom: 42/959
  51230. }
  51231. },
  51232. back: {
  51233. height: math.unit(7.5, "feet"),
  51234. name: "Back",
  51235. image: {
  51236. source: "./media/characters/sven-hatisson/back.svg",
  51237. extra: 903/856,
  51238. bottom: 15/918
  51239. }
  51240. },
  51241. },
  51242. [
  51243. {
  51244. name: "Base Height",
  51245. height: math.unit(7.5, "feet")
  51246. },
  51247. {
  51248. name: "Usual Height",
  51249. height: math.unit(13.5, "feet"),
  51250. default: true
  51251. },
  51252. {
  51253. name: "Smaller Macro",
  51254. height: math.unit(85, "feet")
  51255. },
  51256. {
  51257. name: "Moderate Macro",
  51258. height: math.unit(320, "feet")
  51259. },
  51260. {
  51261. name: "Large Macro",
  51262. height: math.unit(1000, "feet")
  51263. },
  51264. {
  51265. name: "Largest Size",
  51266. height: math.unit(2, "miles")
  51267. },
  51268. ]
  51269. ))
  51270. characterMakers.push(() => makeCharacter(
  51271. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51272. {
  51273. side: {
  51274. height: math.unit(1.8, "meters"),
  51275. weight: math.unit(275, "kg"),
  51276. name: "Side",
  51277. image: {
  51278. source: "./media/characters/terra/side.svg",
  51279. extra: 1273/1147,
  51280. bottom: 0/1273
  51281. }
  51282. },
  51283. },
  51284. [
  51285. {
  51286. name: "Normal",
  51287. height: math.unit(16.2, "meters"),
  51288. default: true
  51289. },
  51290. ]
  51291. ))
  51292. characterMakers.push(() => makeCharacter(
  51293. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51294. {
  51295. borzoiFront: {
  51296. height: math.unit(6 + 9/12, "feet"),
  51297. name: "Front",
  51298. image: {
  51299. source: "./media/characters/rae/borzoi-front.svg",
  51300. extra: 1161/1098,
  51301. bottom: 31/1192
  51302. },
  51303. form: "borzoi",
  51304. default: true
  51305. },
  51306. werewolfFront: {
  51307. height: math.unit(8 + 7/12, "feet"),
  51308. name: "Front",
  51309. image: {
  51310. source: "./media/characters/rae/werewolf-front.svg",
  51311. extra: 1411/1334,
  51312. bottom: 127/1538
  51313. },
  51314. form: "werewolf",
  51315. default: true
  51316. },
  51317. },
  51318. [
  51319. {
  51320. name: "Normal",
  51321. height: math.unit(6 + 9/12, "feet"),
  51322. default: true,
  51323. form: "borzoi"
  51324. },
  51325. {
  51326. name: "Normal",
  51327. height: math.unit(8 + 7/12, "feet"),
  51328. default: true,
  51329. form: "werewolf"
  51330. },
  51331. ],
  51332. {
  51333. "borzoi": {
  51334. name: "Borzoi",
  51335. default: true
  51336. },
  51337. "werewolf": {
  51338. name: "Werewolf",
  51339. },
  51340. }
  51341. ))
  51342. characterMakers.push(() => makeCharacter(
  51343. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51344. {
  51345. front: {
  51346. height: math.unit(8 + 7/12, "feet"),
  51347. weight: math.unit(482, "lb"),
  51348. name: "Front",
  51349. image: {
  51350. source: "./media/characters/kit/front.svg",
  51351. extra: 1247/1103,
  51352. bottom: 41/1288
  51353. }
  51354. },
  51355. back: {
  51356. height: math.unit(8 + 7/12, "feet"),
  51357. weight: math.unit(482, "lb"),
  51358. name: "Back",
  51359. image: {
  51360. source: "./media/characters/kit/back.svg",
  51361. extra: 1252/1123,
  51362. bottom: 21/1273
  51363. }
  51364. },
  51365. paw: {
  51366. height: math.unit(1.46, "feet"),
  51367. name: "Paw",
  51368. image: {
  51369. source: "./media/characters/kit/paw.svg"
  51370. }
  51371. },
  51372. },
  51373. [
  51374. {
  51375. name: "Normal",
  51376. height: math.unit(2.61, "meters"),
  51377. default: true
  51378. },
  51379. {
  51380. name: "\"Tall\"",
  51381. height: math.unit(8.21, "meters")
  51382. },
  51383. {
  51384. name: "Tall",
  51385. height: math.unit(19.6, "meters")
  51386. },
  51387. {
  51388. name: "Very Tall",
  51389. height: math.unit(57.91, "meters")
  51390. },
  51391. {
  51392. name: "Semi-Macro",
  51393. height: math.unit(138.64, "meters")
  51394. },
  51395. {
  51396. name: "Macro",
  51397. height: math.unit(831.99, "meters")
  51398. },
  51399. {
  51400. name: "EX-Macro",
  51401. height: math.unit(96451121, "meters")
  51402. },
  51403. {
  51404. name: "S1-Omnipotent",
  51405. height: math.unit(4.42074e+9, "meters")
  51406. },
  51407. {
  51408. name: "S2-Omnipotent",
  51409. height: math.unit(9.42074e+17, "meters")
  51410. },
  51411. {
  51412. name: "Omnipotent",
  51413. height: math.unit(4.23112e+24, "meters")
  51414. },
  51415. {
  51416. name: "Hypergod",
  51417. height: math.unit(5.05176e+27, "meters")
  51418. },
  51419. {
  51420. name: "Hypergod-EX",
  51421. height: math.unit(9.45532e+49, "meters")
  51422. },
  51423. {
  51424. name: "Hypergod-SP",
  51425. height: math.unit(9.45532e+195, "meters")
  51426. },
  51427. ]
  51428. ))
  51429. characterMakers.push(() => makeCharacter(
  51430. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51431. {
  51432. side: {
  51433. height: math.unit(0.6, "meters"),
  51434. weight: math.unit(24, "kg"),
  51435. name: "Side",
  51436. image: {
  51437. source: "./media/characters/celeste/side.svg",
  51438. extra: 810/517,
  51439. bottom: 53/863
  51440. }
  51441. },
  51442. },
  51443. [
  51444. {
  51445. name: "Velociraptor",
  51446. height: math.unit(0.6, "meters"),
  51447. default: true
  51448. },
  51449. {
  51450. name: "Utahraptor",
  51451. height: math.unit(1.8, "meters")
  51452. },
  51453. {
  51454. name: "Gallimimus",
  51455. height: math.unit(4.0, "meters")
  51456. },
  51457. {
  51458. name: "Large",
  51459. height: math.unit(20, "meters")
  51460. },
  51461. {
  51462. name: "Planetary",
  51463. height: math.unit(50, "megameters")
  51464. },
  51465. {
  51466. name: "Stellar",
  51467. height: math.unit(1.5, "gigameters")
  51468. },
  51469. {
  51470. name: "Galactic",
  51471. height: math.unit(100, "exameters")
  51472. },
  51473. ]
  51474. ))
  51475. characterMakers.push(() => makeCharacter(
  51476. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51477. {
  51478. front: {
  51479. height: math.unit(6, "feet"),
  51480. weight: math.unit(210, "lb"),
  51481. name: "Front",
  51482. image: {
  51483. source: "./media/characters/glacia/front.svg",
  51484. extra: 958/901,
  51485. bottom: 45/1003
  51486. }
  51487. },
  51488. },
  51489. [
  51490. {
  51491. name: "Macro",
  51492. height: math.unit(1000, "meters"),
  51493. default: true
  51494. },
  51495. ]
  51496. ))
  51497. characterMakers.push(() => makeCharacter(
  51498. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51499. {
  51500. front: {
  51501. height: math.unit(4, "meters"),
  51502. name: "Front",
  51503. image: {
  51504. source: "./media/characters/giri/front.svg",
  51505. extra: 966/894,
  51506. bottom: 21/987
  51507. }
  51508. },
  51509. },
  51510. [
  51511. {
  51512. name: "Normal",
  51513. height: math.unit(4, "meters"),
  51514. default: true
  51515. },
  51516. ]
  51517. ))
  51518. characterMakers.push(() => makeCharacter(
  51519. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51520. {
  51521. back: {
  51522. height: math.unit(4, "feet"),
  51523. weight: math.unit(37, "lb"),
  51524. name: "Back",
  51525. image: {
  51526. source: "./media/characters/tin/back.svg",
  51527. extra: 845/780,
  51528. bottom: 28/873
  51529. }
  51530. },
  51531. },
  51532. [
  51533. {
  51534. name: "Normal",
  51535. height: math.unit(4, "feet"),
  51536. default: true
  51537. },
  51538. ]
  51539. ))
  51540. characterMakers.push(() => makeCharacter(
  51541. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51542. {
  51543. front: {
  51544. height: math.unit(25, "feet"),
  51545. name: "Front",
  51546. image: {
  51547. source: "./media/characters/cadenza-vivace/front.svg",
  51548. extra: 1842/1578,
  51549. bottom: 30/1872
  51550. }
  51551. },
  51552. },
  51553. [
  51554. {
  51555. name: "Macro",
  51556. height: math.unit(25, "feet"),
  51557. default: true
  51558. },
  51559. ]
  51560. ))
  51561. characterMakers.push(() => makeCharacter(
  51562. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51563. {
  51564. front: {
  51565. height: math.unit(10, "feet"),
  51566. weight: math.unit(625, "kg"),
  51567. name: "Front",
  51568. image: {
  51569. source: "./media/characters/zain/front.svg",
  51570. extra: 1682/1498,
  51571. bottom: 223/1905
  51572. }
  51573. },
  51574. back: {
  51575. height: math.unit(10, "feet"),
  51576. weight: math.unit(625, "kg"),
  51577. name: "Back",
  51578. image: {
  51579. source: "./media/characters/zain/back.svg",
  51580. extra: 1814/1657,
  51581. bottom: 152/1966
  51582. }
  51583. },
  51584. head: {
  51585. height: math.unit(10, "feet"),
  51586. weight: math.unit(625, "kg"),
  51587. name: "Head",
  51588. image: {
  51589. source: "./media/characters/zain/head.svg",
  51590. extra: 1059/762,
  51591. bottom: 0/1059
  51592. }
  51593. },
  51594. },
  51595. [
  51596. {
  51597. name: "Normal",
  51598. height: math.unit(10, "feet"),
  51599. default: true
  51600. },
  51601. ]
  51602. ))
  51603. characterMakers.push(() => makeCharacter(
  51604. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51605. {
  51606. front: {
  51607. height: math.unit(6 + 5/12, "feet"),
  51608. weight: math.unit(750, "lb"),
  51609. name: "Front",
  51610. image: {
  51611. source: "./media/characters/ruchex/front.svg",
  51612. extra: 877/820,
  51613. bottom: 17/894
  51614. },
  51615. extraAttributes: {
  51616. "width": {
  51617. name: "Width",
  51618. power: 1,
  51619. type: "length",
  51620. base: math.unit(4.757, "feet")
  51621. },
  51622. }
  51623. },
  51624. },
  51625. [
  51626. {
  51627. name: "Normal",
  51628. height: math.unit(6 + 5/12, "feet"),
  51629. default: true
  51630. },
  51631. ]
  51632. ))
  51633. characterMakers.push(() => makeCharacter(
  51634. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51635. {
  51636. dressedFront: {
  51637. height: math.unit(191, "cm"),
  51638. weight: math.unit(80, "kg"),
  51639. name: "Front",
  51640. image: {
  51641. source: "./media/characters/buster/dressed-front.svg",
  51642. extra: 1022/973,
  51643. bottom: 69/1091
  51644. }
  51645. },
  51646. dressedBack: {
  51647. height: math.unit(191, "cm"),
  51648. weight: math.unit(80, "kg"),
  51649. name: "Back",
  51650. image: {
  51651. source: "./media/characters/buster/dressed-back.svg",
  51652. extra: 1018/970,
  51653. bottom: 55/1073
  51654. }
  51655. },
  51656. nudeFront: {
  51657. height: math.unit(191, "cm"),
  51658. weight: math.unit(80, "kg"),
  51659. name: "Front (Nude)",
  51660. image: {
  51661. source: "./media/characters/buster/nude-front.svg",
  51662. extra: 1022/973,
  51663. bottom: 69/1091
  51664. }
  51665. },
  51666. nudeBack: {
  51667. height: math.unit(191, "cm"),
  51668. weight: math.unit(80, "kg"),
  51669. name: "Back (Nude)",
  51670. image: {
  51671. source: "./media/characters/buster/nude-back.svg",
  51672. extra: 1018/970,
  51673. bottom: 55/1073
  51674. }
  51675. },
  51676. dick: {
  51677. height: math.unit(2.59, "feet"),
  51678. name: "Dick",
  51679. image: {
  51680. source: "./media/characters/buster/dick.svg"
  51681. }
  51682. },
  51683. ass: {
  51684. height: math.unit(1.2, "feet"),
  51685. name: "Ass",
  51686. image: {
  51687. source: "./media/characters/buster/ass.svg"
  51688. }
  51689. },
  51690. },
  51691. [
  51692. {
  51693. name: "Normal",
  51694. height: math.unit(191, "cm"),
  51695. default: true
  51696. },
  51697. ]
  51698. ))
  51699. characterMakers.push(() => makeCharacter(
  51700. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51701. {
  51702. side: {
  51703. height: math.unit(8.1, "feet"),
  51704. weight: math.unit(3500, "lb"),
  51705. name: "Side",
  51706. image: {
  51707. source: "./media/characters/sonya/side.svg",
  51708. extra: 1730/1317,
  51709. bottom: 86/1816
  51710. }
  51711. },
  51712. },
  51713. [
  51714. {
  51715. name: "Normal",
  51716. height: math.unit(8.1, "feet"),
  51717. default: true
  51718. },
  51719. ]
  51720. ))
  51721. characterMakers.push(() => makeCharacter(
  51722. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51723. {
  51724. front: {
  51725. height: math.unit(6, "feet"),
  51726. weight: math.unit(150, "lb"),
  51727. name: "Front",
  51728. image: {
  51729. source: "./media/characters/cadence-andrysiak/front.svg",
  51730. extra: 1164/1121,
  51731. bottom: 60/1224
  51732. }
  51733. },
  51734. back: {
  51735. height: math.unit(6, "feet"),
  51736. weight: math.unit(150, "lb"),
  51737. name: "Back",
  51738. image: {
  51739. source: "./media/characters/cadence-andrysiak/back.svg",
  51740. extra: 1200/1165,
  51741. bottom: 9/1209
  51742. }
  51743. },
  51744. dressed: {
  51745. height: math.unit(6, "feet"),
  51746. weight: math.unit(150, "lb"),
  51747. name: "Dressed",
  51748. image: {
  51749. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51750. extra: 1164/1121,
  51751. bottom: 60/1224
  51752. }
  51753. },
  51754. },
  51755. [
  51756. {
  51757. name: "Micro",
  51758. height: math.unit(1, "mm")
  51759. },
  51760. {
  51761. name: "Normal",
  51762. height: math.unit(6, "feet"),
  51763. default: true
  51764. },
  51765. ]
  51766. ))
  51767. characterMakers.push(() => makeCharacter(
  51768. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51769. {
  51770. front: {
  51771. height: math.unit(60, "inches"),
  51772. weight: math.unit(16, "lb"),
  51773. preyCapacity: math.unit(80, "liters"),
  51774. name: "Front",
  51775. image: {
  51776. source: "./media/characters/penny-lynx/front.svg",
  51777. extra: 1959/1769,
  51778. bottom: 49/2008
  51779. }
  51780. },
  51781. },
  51782. [
  51783. {
  51784. name: "Nokia",
  51785. height: math.unit(2, "inches")
  51786. },
  51787. {
  51788. name: "Desktop",
  51789. height: math.unit(24, "inches")
  51790. },
  51791. {
  51792. name: "TV",
  51793. height: math.unit(60, "inches")
  51794. },
  51795. {
  51796. name: "Jumbotron",
  51797. height: math.unit(12, "feet")
  51798. },
  51799. {
  51800. name: "Billboard",
  51801. height: math.unit(48, "feet"),
  51802. default: true
  51803. },
  51804. {
  51805. name: "IMAX",
  51806. height: math.unit(96, "feet")
  51807. },
  51808. {
  51809. name: "SINGULARITY",
  51810. height: math.unit(864938, "miles")
  51811. },
  51812. ]
  51813. ))
  51814. characterMakers.push(() => makeCharacter(
  51815. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51816. {
  51817. front: {
  51818. height: math.unit(5 + 4/12, "feet"),
  51819. weight: math.unit(230, "lb"),
  51820. name: "Front",
  51821. image: {
  51822. source: "./media/characters/sukebe/front.svg",
  51823. extra: 2130/2038,
  51824. bottom: 90/2220
  51825. }
  51826. },
  51827. back: {
  51828. height: math.unit(3.48, "feet"),
  51829. weight: math.unit(230, "lb"),
  51830. name: "Back",
  51831. image: {
  51832. source: "./media/characters/sukebe/back.svg",
  51833. extra: 1670/1604,
  51834. bottom: 0/1670
  51835. }
  51836. },
  51837. },
  51838. [
  51839. {
  51840. name: "Normal",
  51841. height: math.unit(5 + 4/12, "feet"),
  51842. default: true
  51843. },
  51844. ]
  51845. ))
  51846. characterMakers.push(() => makeCharacter(
  51847. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51848. {
  51849. front: {
  51850. height: math.unit(6, "feet"),
  51851. name: "Front",
  51852. image: {
  51853. source: "./media/characters/nylla/front.svg",
  51854. extra: 1868/1699,
  51855. bottom: 97/1965
  51856. }
  51857. },
  51858. back: {
  51859. height: math.unit(6, "feet"),
  51860. name: "Back",
  51861. image: {
  51862. source: "./media/characters/nylla/back.svg",
  51863. extra: 1889/1712,
  51864. bottom: 93/1982
  51865. }
  51866. },
  51867. frontNsfw: {
  51868. height: math.unit(6, "feet"),
  51869. name: "Front (NSFW)",
  51870. image: {
  51871. source: "./media/characters/nylla/front-nsfw.svg",
  51872. extra: 1868/1699,
  51873. bottom: 97/1965
  51874. },
  51875. extraAttributes: {
  51876. "dickLength": {
  51877. name: "Dick Length",
  51878. power: 1,
  51879. type: "length",
  51880. base: math.unit(1.4, "feet")
  51881. },
  51882. "cumVolume": {
  51883. name: "Cum Volume",
  51884. power: 3,
  51885. type: "volume",
  51886. base: math.unit(100, "mL")
  51887. },
  51888. }
  51889. },
  51890. backNsfw: {
  51891. height: math.unit(6, "feet"),
  51892. name: "Back (NSFW)",
  51893. image: {
  51894. source: "./media/characters/nylla/back-nsfw.svg",
  51895. extra: 1889/1712,
  51896. bottom: 93/1982
  51897. }
  51898. },
  51899. maw: {
  51900. height: math.unit(2.10, "feet"),
  51901. name: "Maw",
  51902. image: {
  51903. source: "./media/characters/nylla/maw.svg"
  51904. }
  51905. },
  51906. paws: {
  51907. height: math.unit(2.06, "feet"),
  51908. name: "Paws",
  51909. image: {
  51910. source: "./media/characters/nylla/paws.svg"
  51911. }
  51912. },
  51913. muzzle: {
  51914. height: math.unit(0.61, "feet"),
  51915. name: "Muzzle",
  51916. image: {
  51917. source: "./media/characters/nylla/muzzle.svg"
  51918. }
  51919. },
  51920. sheath: {
  51921. height: math.unit(1.305, "feet"),
  51922. name: "Sheath",
  51923. image: {
  51924. source: "./media/characters/nylla/sheath.svg"
  51925. }
  51926. },
  51927. },
  51928. [
  51929. {
  51930. name: "Micro",
  51931. height: math.unit(7.5, "inches")
  51932. },
  51933. {
  51934. name: "Normal",
  51935. height: math.unit(7, "feet"),
  51936. default: true
  51937. },
  51938. {
  51939. name: "Macro",
  51940. height: math.unit(60, "feet")
  51941. },
  51942. {
  51943. name: "Mega",
  51944. height: math.unit(200, "feet")
  51945. },
  51946. ]
  51947. ))
  51948. characterMakers.push(() => makeCharacter(
  51949. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51950. {
  51951. front: {
  51952. height: math.unit(10, "feet"),
  51953. weight: math.unit(2300, "lb"),
  51954. name: "Front",
  51955. image: {
  51956. source: "./media/characters/hunt3r/front.svg",
  51957. extra: 1909/1742,
  51958. bottom: 46/1955
  51959. }
  51960. },
  51961. },
  51962. [
  51963. {
  51964. name: "Normal",
  51965. height: math.unit(10, "feet"),
  51966. default: true
  51967. },
  51968. ]
  51969. ))
  51970. characterMakers.push(() => makeCharacter(
  51971. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51972. {
  51973. dressed: {
  51974. height: math.unit(11, "feet"),
  51975. weight: math.unit(18500, "lb"),
  51976. preyCapacity: math.unit(9, "people"),
  51977. name: "Dressed",
  51978. image: {
  51979. source: "./media/characters/cylphis/dressed.svg",
  51980. extra: 1028/1003,
  51981. bottom: 75/1103
  51982. },
  51983. },
  51984. undressed: {
  51985. height: math.unit(11, "feet"),
  51986. weight: math.unit(18500, "lb"),
  51987. preyCapacity: math.unit(9, "people"),
  51988. name: "Undressed",
  51989. image: {
  51990. source: "./media/characters/cylphis/undressed.svg",
  51991. extra: 1028/1003,
  51992. bottom: 75/1103
  51993. }
  51994. },
  51995. full: {
  51996. height: math.unit(11, "feet"),
  51997. weight: math.unit(18500 + 150*9, "lb"),
  51998. preyCapacity: math.unit(9, "people"),
  51999. name: "Full",
  52000. image: {
  52001. source: "./media/characters/cylphis/full.svg",
  52002. extra: 1028/1003,
  52003. bottom: 75/1103
  52004. }
  52005. },
  52006. },
  52007. [
  52008. {
  52009. name: "Small",
  52010. height: math.unit(8, "feet")
  52011. },
  52012. {
  52013. name: "Normal",
  52014. height: math.unit(11, "feet"),
  52015. default: true
  52016. },
  52017. ]
  52018. ))
  52019. characterMakers.push(() => makeCharacter(
  52020. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52021. {
  52022. front: {
  52023. height: math.unit(2 + 7/12, "feet"),
  52024. name: "Front",
  52025. image: {
  52026. source: "./media/characters/orishan/front.svg",
  52027. extra: 1058/1023,
  52028. bottom: 23/1081
  52029. }
  52030. },
  52031. back: {
  52032. height: math.unit(2 + 7/12, "feet"),
  52033. name: "Back",
  52034. image: {
  52035. source: "./media/characters/orishan/back.svg",
  52036. extra: 1058/1023,
  52037. bottom: 23/1081
  52038. }
  52039. },
  52040. },
  52041. [
  52042. {
  52043. name: "Micro",
  52044. height: math.unit(2, "cm")
  52045. },
  52046. {
  52047. name: "Normal",
  52048. height: math.unit(2 + 7/12, "feet"),
  52049. default: true
  52050. },
  52051. ]
  52052. ))
  52053. characterMakers.push(() => makeCharacter(
  52054. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52055. {
  52056. front: {
  52057. height: math.unit(3, "meters"),
  52058. weight: math.unit(508, "kg"),
  52059. name: "Front",
  52060. image: {
  52061. source: "./media/characters/seranis/front.svg",
  52062. extra: 1478/1454,
  52063. bottom: 41/1519
  52064. }
  52065. },
  52066. },
  52067. [
  52068. {
  52069. name: "Normal",
  52070. height: math.unit(3, "meters"),
  52071. default: true
  52072. },
  52073. {
  52074. name: "Macro",
  52075. height: math.unit(108, "meters")
  52076. },
  52077. {
  52078. name: "Megamacro",
  52079. height: math.unit(1250, "meters")
  52080. },
  52081. ]
  52082. ))
  52083. characterMakers.push(() => makeCharacter(
  52084. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52085. {
  52086. undressed: {
  52087. height: math.unit(5 + 3/12, "feet"),
  52088. name: "Undressed",
  52089. image: {
  52090. source: "./media/characters/ankou/undressed.svg",
  52091. extra: 1301/1213,
  52092. bottom: 87/1388
  52093. }
  52094. },
  52095. dressed: {
  52096. height: math.unit(5 + 3/12, "feet"),
  52097. name: "Dressed",
  52098. image: {
  52099. source: "./media/characters/ankou/dressed.svg",
  52100. extra: 1301/1213,
  52101. bottom: 87/1388
  52102. }
  52103. },
  52104. head: {
  52105. height: math.unit(1.61, "feet"),
  52106. name: "Head",
  52107. image: {
  52108. source: "./media/characters/ankou/head.svg"
  52109. }
  52110. },
  52111. },
  52112. [
  52113. {
  52114. name: "Normal",
  52115. height: math.unit(5 + 3/12, "feet"),
  52116. default: true
  52117. },
  52118. ]
  52119. ))
  52120. characterMakers.push(() => makeCharacter(
  52121. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52122. {
  52123. side: {
  52124. height: math.unit(6 + 3/12, "feet"),
  52125. weight: math.unit(200, "kg"),
  52126. name: "Side",
  52127. image: {
  52128. source: "./media/characters/juniper-skunktaur/side.svg",
  52129. extra: 1574/1229,
  52130. bottom: 38/1612
  52131. }
  52132. },
  52133. front: {
  52134. height: math.unit(6 + 3/12, "feet"),
  52135. weight: math.unit(200, "kg"),
  52136. name: "Front",
  52137. image: {
  52138. source: "./media/characters/juniper-skunktaur/front.svg",
  52139. extra: 1337/1278,
  52140. bottom: 22/1359
  52141. }
  52142. },
  52143. back: {
  52144. height: math.unit(6 + 3/12, "feet"),
  52145. weight: math.unit(200, "kg"),
  52146. name: "Back",
  52147. image: {
  52148. source: "./media/characters/juniper-skunktaur/back.svg",
  52149. extra: 1618/1273,
  52150. bottom: 13/1631
  52151. }
  52152. },
  52153. top: {
  52154. height: math.unit(2.62, "feet"),
  52155. weight: math.unit(200, "kg"),
  52156. name: "Top",
  52157. image: {
  52158. source: "./media/characters/juniper-skunktaur/top.svg"
  52159. }
  52160. },
  52161. },
  52162. [
  52163. {
  52164. name: "Normal",
  52165. height: math.unit(6 + 3/12, "feet"),
  52166. default: true
  52167. },
  52168. ]
  52169. ))
  52170. characterMakers.push(() => makeCharacter(
  52171. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52172. {
  52173. front: {
  52174. height: math.unit(20.5, "feet"),
  52175. name: "Front",
  52176. image: {
  52177. source: "./media/characters/rei/front.svg",
  52178. extra: 1349/1195,
  52179. bottom: 31/1380
  52180. }
  52181. },
  52182. back: {
  52183. height: math.unit(20.5, "feet"),
  52184. name: "Back",
  52185. image: {
  52186. source: "./media/characters/rei/back.svg",
  52187. extra: 1358/1204,
  52188. bottom: 22/1380
  52189. }
  52190. },
  52191. pawsDigi: {
  52192. height: math.unit(3.45, "feet"),
  52193. name: "Paws (Digi)",
  52194. image: {
  52195. source: "./media/characters/rei/paws-digi.svg"
  52196. }
  52197. },
  52198. pawsPlanti: {
  52199. height: math.unit(3.45, "feet"),
  52200. name: "Paws (Planti)",
  52201. image: {
  52202. source: "./media/characters/rei/paws-planti.svg"
  52203. }
  52204. },
  52205. },
  52206. [
  52207. {
  52208. name: "Normal",
  52209. height: math.unit(20.5, "feet"),
  52210. default: true
  52211. },
  52212. ]
  52213. ))
  52214. characterMakers.push(() => makeCharacter(
  52215. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52216. {
  52217. front: {
  52218. height: math.unit(5 + 11/12, "feet"),
  52219. name: "Front",
  52220. image: {
  52221. source: "./media/characters/carina/front.svg",
  52222. extra: 1720/1449,
  52223. bottom: 14/1734
  52224. }
  52225. },
  52226. back: {
  52227. height: math.unit(5 + 11/12, "feet"),
  52228. name: "Back",
  52229. image: {
  52230. source: "./media/characters/carina/back.svg",
  52231. extra: 1493/1445,
  52232. bottom: 17/1510
  52233. }
  52234. },
  52235. paw: {
  52236. height: math.unit(0.92, "feet"),
  52237. name: "Paw",
  52238. image: {
  52239. source: "./media/characters/carina/paw.svg"
  52240. }
  52241. },
  52242. },
  52243. [
  52244. {
  52245. name: "Normal",
  52246. height: math.unit(5 + 11/12, "feet"),
  52247. default: true
  52248. },
  52249. ]
  52250. ))
  52251. characterMakers.push(() => makeCharacter(
  52252. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52253. {
  52254. front: {
  52255. height: math.unit(4.88, "meters"),
  52256. name: "Front",
  52257. image: {
  52258. source: "./media/characters/maya/front.svg",
  52259. extra: 1222/1145,
  52260. bottom: 57/1279
  52261. }
  52262. },
  52263. },
  52264. [
  52265. {
  52266. name: "Normal",
  52267. height: math.unit(4.88, "meters"),
  52268. default: true
  52269. },
  52270. {
  52271. name: "Macro",
  52272. height: math.unit(38.1, "meters")
  52273. },
  52274. {
  52275. name: "Macro+",
  52276. height: math.unit(152.4, "meters")
  52277. },
  52278. {
  52279. name: "Macro++",
  52280. height: math.unit(16.09, "km")
  52281. },
  52282. {
  52283. name: "Mega-macro",
  52284. height: math.unit(700, "megameters")
  52285. },
  52286. ]
  52287. ))
  52288. characterMakers.push(() => makeCharacter(
  52289. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52290. {
  52291. front: {
  52292. height: math.unit(6 + 2/12, "feet"),
  52293. weight: math.unit(500, "lb"),
  52294. preyCapacity: math.unit(4, "people"),
  52295. name: "Front",
  52296. image: {
  52297. source: "./media/characters/yepir/front.svg"
  52298. }
  52299. },
  52300. side: {
  52301. height: math.unit(6 + 2/12, "feet"),
  52302. weight: math.unit(500, "lb"),
  52303. preyCapacity: math.unit(4, "people"),
  52304. name: "Side",
  52305. image: {
  52306. source: "./media/characters/yepir/side.svg"
  52307. }
  52308. },
  52309. paw: {
  52310. height: math.unit(1.05, "feet"),
  52311. name: "Paw",
  52312. image: {
  52313. source: "./media/characters/yepir/paw.svg"
  52314. }
  52315. },
  52316. },
  52317. [
  52318. {
  52319. name: "Normal",
  52320. height: math.unit(6 + 2/12, "feet"),
  52321. default: true
  52322. },
  52323. ]
  52324. ))
  52325. characterMakers.push(() => makeCharacter(
  52326. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52327. {
  52328. front: {
  52329. height: math.unit(5 + 4/12, "feet"),
  52330. name: "Front",
  52331. image: {
  52332. source: "./media/characters/russec/front.svg",
  52333. extra: 1926/1626,
  52334. bottom: 72/1998
  52335. }
  52336. },
  52337. back: {
  52338. height: math.unit(5 + 4/12, "feet"),
  52339. name: "Back",
  52340. image: {
  52341. source: "./media/characters/russec/back.svg",
  52342. extra: 1910/1591,
  52343. bottom: 48/1958
  52344. }
  52345. },
  52346. },
  52347. [
  52348. {
  52349. name: "Small",
  52350. height: math.unit(5 + 4/12, "feet")
  52351. },
  52352. {
  52353. name: "Normal",
  52354. height: math.unit(72, "feet"),
  52355. default: true
  52356. },
  52357. ]
  52358. ))
  52359. characterMakers.push(() => makeCharacter(
  52360. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52361. {
  52362. side: {
  52363. height: math.unit(12, "feet"),
  52364. name: "Side",
  52365. image: {
  52366. source: "./media/characters/cianus/side.svg",
  52367. extra: 808/526,
  52368. bottom: 61/869
  52369. }
  52370. },
  52371. },
  52372. [
  52373. {
  52374. name: "Normal",
  52375. height: math.unit(12, "feet"),
  52376. default: true
  52377. },
  52378. ]
  52379. ))
  52380. characterMakers.push(() => makeCharacter(
  52381. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52382. {
  52383. front: {
  52384. height: math.unit(9 + 6/12, "feet"),
  52385. weight: math.unit(300, "lb"),
  52386. name: "Front",
  52387. image: {
  52388. source: "./media/characters/ahab/front.svg",
  52389. extra: 1897/1868,
  52390. bottom: 121/2018
  52391. }
  52392. },
  52393. frontNsfw: {
  52394. height: math.unit(9 + 6/12, "feet"),
  52395. weight: math.unit(300, "lb"),
  52396. name: "Front-nsfw",
  52397. image: {
  52398. source: "./media/characters/ahab/front-nsfw.svg",
  52399. extra: 1897/1868,
  52400. bottom: 121/2018
  52401. }
  52402. },
  52403. },
  52404. [
  52405. {
  52406. name: "Normal",
  52407. height: math.unit(9 + 6/12, "feet")
  52408. },
  52409. {
  52410. name: "Macro",
  52411. height: math.unit(657, "feet"),
  52412. default: true
  52413. },
  52414. ]
  52415. ))
  52416. characterMakers.push(() => makeCharacter(
  52417. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52418. {
  52419. front: {
  52420. height: math.unit(2.69, "meters"),
  52421. weight: math.unit(132, "kg"),
  52422. name: "Front",
  52423. image: {
  52424. source: "./media/characters/aarkus/front.svg",
  52425. extra: 1400/1231,
  52426. bottom: 34/1434
  52427. }
  52428. },
  52429. back: {
  52430. height: math.unit(2.69, "meters"),
  52431. weight: math.unit(132, "kg"),
  52432. name: "Back",
  52433. image: {
  52434. source: "./media/characters/aarkus/back.svg",
  52435. extra: 1381/1218,
  52436. bottom: 30/1411
  52437. }
  52438. },
  52439. frontNsfw: {
  52440. height: math.unit(2.69, "meters"),
  52441. weight: math.unit(132, "kg"),
  52442. name: "Front (NSFW)",
  52443. image: {
  52444. source: "./media/characters/aarkus/front-nsfw.svg",
  52445. extra: 1400/1231,
  52446. bottom: 34/1434
  52447. }
  52448. },
  52449. foot: {
  52450. height: math.unit(1.45, "feet"),
  52451. name: "Foot",
  52452. image: {
  52453. source: "./media/characters/aarkus/foot.svg"
  52454. }
  52455. },
  52456. head: {
  52457. height: math.unit(2.85, "feet"),
  52458. name: "Head",
  52459. image: {
  52460. source: "./media/characters/aarkus/head.svg"
  52461. }
  52462. },
  52463. headAlt: {
  52464. height: math.unit(3.07, "feet"),
  52465. name: "Head (Alt)",
  52466. image: {
  52467. source: "./media/characters/aarkus/head-alt.svg"
  52468. }
  52469. },
  52470. mouth: {
  52471. height: math.unit(1.25, "feet"),
  52472. name: "Mouth",
  52473. image: {
  52474. source: "./media/characters/aarkus/mouth.svg"
  52475. }
  52476. },
  52477. dick: {
  52478. height: math.unit(1.77, "feet"),
  52479. name: "Dick",
  52480. image: {
  52481. source: "./media/characters/aarkus/dick.svg"
  52482. }
  52483. },
  52484. },
  52485. [
  52486. {
  52487. name: "Normal",
  52488. height: math.unit(2.69, "meters"),
  52489. default: true
  52490. },
  52491. {
  52492. name: "Macro",
  52493. height: math.unit(269, "meters")
  52494. },
  52495. {
  52496. name: "Macro+",
  52497. height: math.unit(672.5, "meters")
  52498. },
  52499. {
  52500. name: "Megamacro",
  52501. height: math.unit(2.017, "km")
  52502. },
  52503. ]
  52504. ))
  52505. characterMakers.push(() => makeCharacter(
  52506. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52507. {
  52508. front: {
  52509. height: math.unit(23.47, "cm"),
  52510. weight: math.unit(600, "grams"),
  52511. name: "Front",
  52512. image: {
  52513. source: "./media/characters/diode/front.svg",
  52514. extra: 1778/1396,
  52515. bottom: 95/1873
  52516. }
  52517. },
  52518. side: {
  52519. height: math.unit(23.47, "cm"),
  52520. weight: math.unit(600, "grams"),
  52521. name: "Side",
  52522. image: {
  52523. source: "./media/characters/diode/side.svg",
  52524. extra: 1831/1404,
  52525. bottom: 86/1917
  52526. }
  52527. },
  52528. wings: {
  52529. height: math.unit(0.683, "feet"),
  52530. name: "Wings",
  52531. image: {
  52532. source: "./media/characters/diode/wings.svg"
  52533. }
  52534. },
  52535. },
  52536. [
  52537. {
  52538. name: "Normal",
  52539. height: math.unit(23.47, "cm"),
  52540. default: true
  52541. },
  52542. ]
  52543. ))
  52544. characterMakers.push(() => makeCharacter(
  52545. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52546. {
  52547. front: {
  52548. height: math.unit(6 + 3/12, "feet"),
  52549. weight: math.unit(250, "lb"),
  52550. name: "Front",
  52551. image: {
  52552. source: "./media/characters/reika/front.svg",
  52553. extra: 1120/1078,
  52554. bottom: 86/1206
  52555. }
  52556. },
  52557. },
  52558. [
  52559. {
  52560. name: "Normal",
  52561. height: math.unit(6 + 3/12, "feet"),
  52562. default: true
  52563. },
  52564. ]
  52565. ))
  52566. characterMakers.push(() => makeCharacter(
  52567. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52568. {
  52569. front: {
  52570. height: math.unit(16 + 8/12, "feet"),
  52571. weight: math.unit(9000, "lb"),
  52572. name: "Front",
  52573. image: {
  52574. source: "./media/characters/lokuto-takama/front.svg",
  52575. extra: 1774/1632,
  52576. bottom: 147/1921
  52577. },
  52578. extraAttributes: {
  52579. "bustWidth": {
  52580. name: "Bust Width",
  52581. power: 1,
  52582. type: "length",
  52583. base: math.unit(2.4, "meters")
  52584. },
  52585. "breastWeight": {
  52586. name: "Breast Weight",
  52587. power: 3,
  52588. type: "mass",
  52589. base: math.unit(1000, "kg")
  52590. },
  52591. }
  52592. },
  52593. },
  52594. [
  52595. {
  52596. name: "Normal",
  52597. height: math.unit(16 + 8/12, "feet"),
  52598. default: true
  52599. },
  52600. ]
  52601. ))
  52602. characterMakers.push(() => makeCharacter(
  52603. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52604. {
  52605. front: {
  52606. height: math.unit(10, "cm"),
  52607. weight: math.unit(850, "grams"),
  52608. name: "Front",
  52609. image: {
  52610. source: "./media/characters/owak-bone/front.svg",
  52611. extra: 1965/1801,
  52612. bottom: 31/1996
  52613. }
  52614. },
  52615. },
  52616. [
  52617. {
  52618. name: "Normal",
  52619. height: math.unit(10, "cm"),
  52620. default: true
  52621. },
  52622. ]
  52623. ))
  52624. characterMakers.push(() => makeCharacter(
  52625. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52626. {
  52627. front: {
  52628. height: math.unit(2 + 6/12, "feet"),
  52629. weight: math.unit(9, "lb"),
  52630. name: "Front",
  52631. image: {
  52632. source: "./media/characters/muffin/front.svg",
  52633. extra: 1220/1195,
  52634. bottom: 84/1304
  52635. }
  52636. },
  52637. },
  52638. [
  52639. {
  52640. name: "Normal",
  52641. height: math.unit(2 + 6/12, "feet"),
  52642. default: true
  52643. },
  52644. ]
  52645. ))
  52646. characterMakers.push(() => makeCharacter(
  52647. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52648. {
  52649. front: {
  52650. height: math.unit(7, "feet"),
  52651. name: "Front",
  52652. image: {
  52653. source: "./media/characters/chimera/front.svg",
  52654. extra: 1752/1614,
  52655. bottom: 68/1820
  52656. }
  52657. },
  52658. },
  52659. [
  52660. {
  52661. name: "Normal",
  52662. height: math.unit(7, "feet")
  52663. },
  52664. {
  52665. name: "Gigamacro",
  52666. height: math.unit(2.9, "gigameters"),
  52667. default: true
  52668. },
  52669. {
  52670. name: "Universal",
  52671. height: math.unit(1.56e26, "yottameters")
  52672. },
  52673. ]
  52674. ))
  52675. characterMakers.push(() => makeCharacter(
  52676. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52677. {
  52678. front: {
  52679. height: math.unit(3, "feet"),
  52680. weight: math.unit(20, "lb"),
  52681. name: "Front",
  52682. image: {
  52683. source: "./media/characters/kit-fennec-fox/front.svg",
  52684. extra: 1027/932,
  52685. bottom: 16/1043
  52686. }
  52687. },
  52688. back: {
  52689. height: math.unit(3, "feet"),
  52690. weight: math.unit(20, "lb"),
  52691. name: "Back",
  52692. image: {
  52693. source: "./media/characters/kit-fennec-fox/back.svg",
  52694. extra: 1027/932,
  52695. bottom: 16/1043
  52696. }
  52697. },
  52698. },
  52699. [
  52700. {
  52701. name: "Normal",
  52702. height: math.unit(3, "feet"),
  52703. default: true
  52704. },
  52705. ]
  52706. ))
  52707. characterMakers.push(() => makeCharacter(
  52708. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52709. {
  52710. front: {
  52711. height: math.unit(167, "cm"),
  52712. name: "Front",
  52713. image: {
  52714. source: "./media/characters/blue-otter/front.svg",
  52715. extra: 1951/1920,
  52716. bottom: 31/1982
  52717. }
  52718. },
  52719. },
  52720. [
  52721. {
  52722. name: "Otter-Sized",
  52723. height: math.unit(100, "cm")
  52724. },
  52725. {
  52726. name: "Normal",
  52727. height: math.unit(167, "cm"),
  52728. default: true
  52729. },
  52730. ]
  52731. ))
  52732. characterMakers.push(() => makeCharacter(
  52733. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52734. {
  52735. front: {
  52736. height: math.unit(4 + 4/12, "feet"),
  52737. name: "Front",
  52738. image: {
  52739. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52740. extra: 1072/1067,
  52741. bottom: 117/1189
  52742. }
  52743. },
  52744. back: {
  52745. height: math.unit(4 + 4/12, "feet"),
  52746. name: "Back",
  52747. image: {
  52748. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52749. extra: 1135/1129,
  52750. bottom: 57/1192
  52751. }
  52752. },
  52753. head: {
  52754. height: math.unit(1.77, "feet"),
  52755. name: "Head",
  52756. image: {
  52757. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52758. }
  52759. },
  52760. },
  52761. [
  52762. {
  52763. name: "Normal",
  52764. height: math.unit(4 + 4/12, "feet"),
  52765. default: true
  52766. },
  52767. ]
  52768. ))
  52769. characterMakers.push(() => makeCharacter(
  52770. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52771. {
  52772. front: {
  52773. height: math.unit(2, "inches"),
  52774. name: "Front",
  52775. image: {
  52776. source: "./media/characters/carley-hartford/front.svg",
  52777. extra: 1035/988,
  52778. bottom: 23/1058
  52779. }
  52780. },
  52781. back: {
  52782. height: math.unit(2, "inches"),
  52783. name: "Back",
  52784. image: {
  52785. source: "./media/characters/carley-hartford/back.svg",
  52786. extra: 1035/988,
  52787. bottom: 23/1058
  52788. }
  52789. },
  52790. dressed: {
  52791. height: math.unit(2, "inches"),
  52792. name: "Dressed",
  52793. image: {
  52794. source: "./media/characters/carley-hartford/dressed.svg",
  52795. extra: 651/620,
  52796. bottom: 0/651
  52797. }
  52798. },
  52799. },
  52800. [
  52801. {
  52802. name: "Micro",
  52803. height: math.unit(2, "inches"),
  52804. default: true
  52805. },
  52806. {
  52807. name: "Macro",
  52808. height: math.unit(6 + 3/12, "feet")
  52809. },
  52810. ]
  52811. ))
  52812. characterMakers.push(() => makeCharacter(
  52813. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52814. {
  52815. front: {
  52816. height: math.unit(2 + 3/12, "feet"),
  52817. weight: math.unit(15 + 7/16, "lb"),
  52818. name: "Front",
  52819. image: {
  52820. source: "./media/characters/duke/front.svg",
  52821. extra: 910/815,
  52822. bottom: 30/940
  52823. }
  52824. },
  52825. },
  52826. [
  52827. {
  52828. name: "Normal",
  52829. height: math.unit(2 + 3/12, "feet"),
  52830. default: true
  52831. },
  52832. ]
  52833. ))
  52834. characterMakers.push(() => makeCharacter(
  52835. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52836. {
  52837. front: {
  52838. height: math.unit(5 + 4/12, "feet"),
  52839. weight: math.unit(156, "lb"),
  52840. name: "Front",
  52841. image: {
  52842. source: "./media/characters/dein/front.svg",
  52843. extra: 855/815,
  52844. bottom: 48/903
  52845. }
  52846. },
  52847. side: {
  52848. height: math.unit(5 + 4/12, "feet"),
  52849. weight: math.unit(156, "lb"),
  52850. name: "side",
  52851. image: {
  52852. source: "./media/characters/dein/side.svg",
  52853. extra: 846/803,
  52854. bottom: 25/871
  52855. }
  52856. },
  52857. maw: {
  52858. height: math.unit(1.45, "feet"),
  52859. name: "Maw",
  52860. image: {
  52861. source: "./media/characters/dein/maw.svg"
  52862. }
  52863. },
  52864. },
  52865. [
  52866. {
  52867. name: "Ferret Sized",
  52868. height: math.unit(2 + 5/12, "feet")
  52869. },
  52870. {
  52871. name: "Normal",
  52872. height: math.unit(5 + 4/12, "feet"),
  52873. default: true
  52874. },
  52875. ]
  52876. ))
  52877. characterMakers.push(() => makeCharacter(
  52878. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52879. {
  52880. front: {
  52881. height: math.unit(84 + 8/12, "feet"),
  52882. weight: math.unit(942180, "lb"),
  52883. name: "Front",
  52884. image: {
  52885. source: "./media/characters/daurine-arima/front.svg",
  52886. extra: 1989/1782,
  52887. bottom: 37/2026
  52888. }
  52889. },
  52890. side: {
  52891. height: math.unit(84 + 8/12, "feet"),
  52892. weight: math.unit(942180, "lb"),
  52893. name: "Side",
  52894. image: {
  52895. source: "./media/characters/daurine-arima/side.svg",
  52896. extra: 1997/1790,
  52897. bottom: 21/2018
  52898. }
  52899. },
  52900. back: {
  52901. height: math.unit(84 + 8/12, "feet"),
  52902. weight: math.unit(942180, "lb"),
  52903. name: "Back",
  52904. image: {
  52905. source: "./media/characters/daurine-arima/back.svg",
  52906. extra: 1992/1800,
  52907. bottom: 12/2004
  52908. }
  52909. },
  52910. head: {
  52911. height: math.unit(15.5, "feet"),
  52912. name: "Head",
  52913. image: {
  52914. source: "./media/characters/daurine-arima/head.svg"
  52915. }
  52916. },
  52917. headAlt: {
  52918. height: math.unit(19.19, "feet"),
  52919. name: "Head (Alt)",
  52920. image: {
  52921. source: "./media/characters/daurine-arima/head-alt.svg"
  52922. }
  52923. },
  52924. },
  52925. [
  52926. {
  52927. name: "Minimum height",
  52928. height: math.unit(8 + 10/12, "feet")
  52929. },
  52930. {
  52931. name: "Comfort height",
  52932. height: math.unit(19 + 6 /12, "feet")
  52933. },
  52934. {
  52935. name: "\"Normal\" height",
  52936. height: math.unit(28 + 10/12, "feet")
  52937. },
  52938. {
  52939. name: "Base height",
  52940. height: math.unit(84 + 8/12, "feet"),
  52941. default: true
  52942. },
  52943. {
  52944. name: "Mini-macro",
  52945. height: math.unit(2360, "feet")
  52946. },
  52947. {
  52948. name: "Macro",
  52949. height: math.unit(10, "miles")
  52950. },
  52951. {
  52952. name: "Goddess",
  52953. height: math.unit(9.99e40, "yottameters")
  52954. },
  52955. ]
  52956. ))
  52957. characterMakers.push(() => makeCharacter(
  52958. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52959. {
  52960. front: {
  52961. height: math.unit(2.3, "meters"),
  52962. name: "Front",
  52963. image: {
  52964. source: "./media/characters/cilenomon/front.svg",
  52965. extra: 1963/1778,
  52966. bottom: 54/2017
  52967. }
  52968. },
  52969. },
  52970. [
  52971. {
  52972. name: "Normal",
  52973. height: math.unit(2.3, "meters"),
  52974. default: true
  52975. },
  52976. {
  52977. name: "Big",
  52978. height: math.unit(5, "meters")
  52979. },
  52980. {
  52981. name: "Macro",
  52982. height: math.unit(30, "meters")
  52983. },
  52984. {
  52985. name: "True",
  52986. height: math.unit(1, "universe")
  52987. },
  52988. ]
  52989. ))
  52990. characterMakers.push(() => makeCharacter(
  52991. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52992. {
  52993. front: {
  52994. height: math.unit(5, "feet"),
  52995. name: "Front",
  52996. image: {
  52997. source: "./media/characters/sen-mink/front.svg",
  52998. extra: 1727/1675,
  52999. bottom: 35/1762
  53000. }
  53001. },
  53002. },
  53003. [
  53004. {
  53005. name: "Normal",
  53006. height: math.unit(5, "feet"),
  53007. default: true
  53008. },
  53009. ]
  53010. ))
  53011. characterMakers.push(() => makeCharacter(
  53012. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53013. {
  53014. front: {
  53015. height: math.unit(5.42999, "feet"),
  53016. weight: math.unit(100, "lb"),
  53017. name: "Front",
  53018. image: {
  53019. source: "./media/characters/ophois/front.svg",
  53020. extra: 1429/1286,
  53021. bottom: 60/1489
  53022. }
  53023. },
  53024. },
  53025. [
  53026. {
  53027. name: "Normal",
  53028. height: math.unit(5.42999, "feet"),
  53029. default: true
  53030. },
  53031. ]
  53032. ))
  53033. characterMakers.push(() => makeCharacter(
  53034. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53035. {
  53036. front: {
  53037. height: math.unit(2, "meters"),
  53038. name: "Front",
  53039. image: {
  53040. source: "./media/characters/riley/front.svg",
  53041. extra: 1779/1754,
  53042. bottom: 139/1918
  53043. }
  53044. },
  53045. },
  53046. [
  53047. {
  53048. name: "Normal",
  53049. height: math.unit(2, "meters"),
  53050. default: true
  53051. },
  53052. ]
  53053. ))
  53054. characterMakers.push(() => makeCharacter(
  53055. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53056. {
  53057. front: {
  53058. height: math.unit(6 + 2/12, "feet"),
  53059. weight: math.unit(195, "lb"),
  53060. preyCapacity: math.unit(6, "people"),
  53061. name: "Front",
  53062. image: {
  53063. source: "./media/characters/shuken-flash/front.svg",
  53064. extra: 1905/1739,
  53065. bottom: 65/1970
  53066. }
  53067. },
  53068. back: {
  53069. height: math.unit(6 + 2/12, "feet"),
  53070. weight: math.unit(195, "lb"),
  53071. preyCapacity: math.unit(6, "people"),
  53072. name: "Back",
  53073. image: {
  53074. source: "./media/characters/shuken-flash/back.svg",
  53075. extra: 1912/1751,
  53076. bottom: 13/1925
  53077. }
  53078. },
  53079. },
  53080. [
  53081. {
  53082. name: "Normal",
  53083. height: math.unit(6 + 2/12, "feet"),
  53084. default: true
  53085. },
  53086. ]
  53087. ))
  53088. characterMakers.push(() => makeCharacter(
  53089. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53090. {
  53091. front: {
  53092. height: math.unit(5 + 9/12, "feet"),
  53093. weight: math.unit(150, "lb"),
  53094. name: "Front",
  53095. image: {
  53096. source: "./media/characters/plat/front.svg",
  53097. extra: 1816/1703,
  53098. bottom: 43/1859
  53099. }
  53100. },
  53101. side: {
  53102. height: math.unit(5 + 9/12, "feet"),
  53103. weight: math.unit(300, "lb"),
  53104. name: "Side",
  53105. image: {
  53106. source: "./media/characters/plat/side.svg",
  53107. extra: 1824/1699,
  53108. bottom: 18/1842
  53109. }
  53110. },
  53111. },
  53112. [
  53113. {
  53114. name: "Normal",
  53115. height: math.unit(5 + 9/12, "feet"),
  53116. default: true
  53117. },
  53118. ]
  53119. ))
  53120. characterMakers.push(() => makeCharacter(
  53121. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53122. {
  53123. front: {
  53124. height: math.unit(9, "feet"),
  53125. weight: math.unit(1800, "lb"),
  53126. name: "Front",
  53127. image: {
  53128. source: "./media/characters/elaine/front.svg",
  53129. extra: 1833/1354,
  53130. bottom: 25/1858
  53131. }
  53132. },
  53133. back: {
  53134. height: math.unit(8.8, "feet"),
  53135. weight: math.unit(1800, "lb"),
  53136. name: "Back",
  53137. image: {
  53138. source: "./media/characters/elaine/back.svg",
  53139. extra: 1641/1233,
  53140. bottom: 53/1694
  53141. }
  53142. },
  53143. },
  53144. [
  53145. {
  53146. name: "Normal",
  53147. height: math.unit(9, "feet"),
  53148. default: true
  53149. },
  53150. ]
  53151. ))
  53152. characterMakers.push(() => makeCharacter(
  53153. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53154. {
  53155. front: {
  53156. height: math.unit(17 + 9/12, "feet"),
  53157. weight: math.unit(8000, "lb"),
  53158. name: "Front",
  53159. image: {
  53160. source: "./media/characters/vera-raven/front.svg",
  53161. extra: 1457/1412,
  53162. bottom: 121/1578
  53163. }
  53164. },
  53165. side: {
  53166. height: math.unit(17 + 9/12, "feet"),
  53167. weight: math.unit(8000, "lb"),
  53168. name: "Side",
  53169. image: {
  53170. source: "./media/characters/vera-raven/side.svg",
  53171. extra: 1510/1464,
  53172. bottom: 54/1564
  53173. }
  53174. },
  53175. },
  53176. [
  53177. {
  53178. name: "Normal",
  53179. height: math.unit(17 + 9/12, "feet"),
  53180. default: true
  53181. },
  53182. ]
  53183. ))
  53184. characterMakers.push(() => makeCharacter(
  53185. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53186. {
  53187. dressed: {
  53188. height: math.unit(6 + 9/12, "feet"),
  53189. name: "Dressed",
  53190. image: {
  53191. source: "./media/characters/nakisha/dressed.svg",
  53192. extra: 1909/1757,
  53193. bottom: 48/1957
  53194. }
  53195. },
  53196. nude: {
  53197. height: math.unit(6 + 9/12, "feet"),
  53198. name: "Nude",
  53199. image: {
  53200. source: "./media/characters/nakisha/nude.svg",
  53201. extra: 1917/1765,
  53202. bottom: 34/1951
  53203. }
  53204. },
  53205. },
  53206. [
  53207. {
  53208. name: "Normal",
  53209. height: math.unit(6 + 9/12, "feet"),
  53210. default: true
  53211. },
  53212. ]
  53213. ))
  53214. characterMakers.push(() => makeCharacter(
  53215. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53216. {
  53217. front: {
  53218. height: math.unit(87, "meters"),
  53219. name: "Front",
  53220. image: {
  53221. source: "./media/characters/serafin/front.svg",
  53222. extra: 1919/1776,
  53223. bottom: 65/1984
  53224. }
  53225. },
  53226. },
  53227. [
  53228. {
  53229. name: "Normal",
  53230. height: math.unit(87, "meters"),
  53231. default: true
  53232. },
  53233. ]
  53234. ))
  53235. characterMakers.push(() => makeCharacter(
  53236. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53237. {
  53238. front: {
  53239. height: math.unit(6, "feet"),
  53240. weight: math.unit(200, "lb"),
  53241. name: "Front",
  53242. image: {
  53243. source: "./media/characters/poptart/front.svg",
  53244. extra: 615/583,
  53245. bottom: 23/638
  53246. }
  53247. },
  53248. back: {
  53249. height: math.unit(6, "feet"),
  53250. weight: math.unit(200, "lb"),
  53251. name: "Back",
  53252. image: {
  53253. source: "./media/characters/poptart/back.svg",
  53254. extra: 617/584,
  53255. bottom: 22/639
  53256. }
  53257. },
  53258. frontNsfw: {
  53259. height: math.unit(6, "feet"),
  53260. weight: math.unit(200, "lb"),
  53261. name: "Front (NSFW)",
  53262. image: {
  53263. source: "./media/characters/poptart/front-nsfw.svg",
  53264. extra: 615/583,
  53265. bottom: 23/638
  53266. }
  53267. },
  53268. backNsfw: {
  53269. height: math.unit(6, "feet"),
  53270. weight: math.unit(200, "lb"),
  53271. name: "Back (NSFW)",
  53272. image: {
  53273. source: "./media/characters/poptart/back-nsfw.svg",
  53274. extra: 617/584,
  53275. bottom: 22/639
  53276. }
  53277. },
  53278. hand: {
  53279. height: math.unit(1.14, "feet"),
  53280. name: "Hand",
  53281. image: {
  53282. source: "./media/characters/poptart/hand.svg"
  53283. }
  53284. },
  53285. foot: {
  53286. height: math.unit(1.5, "feet"),
  53287. name: "Foot",
  53288. image: {
  53289. source: "./media/characters/poptart/foot.svg"
  53290. }
  53291. },
  53292. },
  53293. [
  53294. {
  53295. name: "Normal",
  53296. height: math.unit(6, "feet"),
  53297. default: true
  53298. },
  53299. {
  53300. name: "Grande",
  53301. height: math.unit(350, "feet")
  53302. },
  53303. {
  53304. name: "Massif",
  53305. height: math.unit(967, "feet")
  53306. },
  53307. ]
  53308. ))
  53309. characterMakers.push(() => makeCharacter(
  53310. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53311. {
  53312. hyenaSide: {
  53313. height: math.unit(120, "cm"),
  53314. weight: math.unit(120, "lb"),
  53315. name: "Side",
  53316. image: {
  53317. source: "./media/characters/trance/hyena-side.svg",
  53318. extra: 998/904,
  53319. bottom: 76/1074
  53320. }
  53321. },
  53322. },
  53323. [
  53324. {
  53325. name: "Normal",
  53326. height: math.unit(120, "cm"),
  53327. default: true
  53328. },
  53329. {
  53330. name: "Dire",
  53331. height: math.unit(230, "cm")
  53332. },
  53333. {
  53334. name: "Macro",
  53335. height: math.unit(37, "feet")
  53336. },
  53337. ]
  53338. ))
  53339. characterMakers.push(() => makeCharacter(
  53340. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53341. {
  53342. front: {
  53343. height: math.unit(6 + 3/12, "feet"),
  53344. name: "Front",
  53345. image: {
  53346. source: "./media/characters/michael-berretta/front.svg",
  53347. extra: 515/494,
  53348. bottom: 20/535
  53349. }
  53350. },
  53351. back: {
  53352. height: math.unit(6 + 3/12, "feet"),
  53353. name: "Back",
  53354. image: {
  53355. source: "./media/characters/michael-berretta/back.svg",
  53356. extra: 520/497,
  53357. bottom: 21/541
  53358. }
  53359. },
  53360. frontNsfw: {
  53361. height: math.unit(6 + 3/12, "feet"),
  53362. name: "Front (NSFW)",
  53363. image: {
  53364. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53365. extra: 515/494,
  53366. bottom: 20/535
  53367. }
  53368. },
  53369. dick: {
  53370. height: math.unit(1, "feet"),
  53371. name: "Dick",
  53372. image: {
  53373. source: "./media/characters/michael-berretta/dick.svg"
  53374. }
  53375. },
  53376. },
  53377. [
  53378. {
  53379. name: "Normal",
  53380. height: math.unit(6 + 3/12, "feet"),
  53381. default: true
  53382. },
  53383. {
  53384. name: "Big",
  53385. height: math.unit(12, "feet")
  53386. },
  53387. {
  53388. name: "Macro",
  53389. height: math.unit(187.5, "feet")
  53390. },
  53391. ]
  53392. ))
  53393. characterMakers.push(() => makeCharacter(
  53394. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53395. {
  53396. front: {
  53397. height: math.unit(9 + 9/12, "feet"),
  53398. weight: math.unit(1244, "lb"),
  53399. name: "Front",
  53400. image: {
  53401. source: "./media/characters/stella-edgecomb/front.svg",
  53402. extra: 1835/1706,
  53403. bottom: 49/1884
  53404. }
  53405. },
  53406. pen: {
  53407. height: math.unit(0.95, "feet"),
  53408. name: "Pen",
  53409. image: {
  53410. source: "./media/characters/stella-edgecomb/pen.svg"
  53411. }
  53412. },
  53413. },
  53414. [
  53415. {
  53416. name: "Cozy Bear",
  53417. height: math.unit(0.5, "inches")
  53418. },
  53419. {
  53420. name: "Normal",
  53421. height: math.unit(9 + 9/12, "feet"),
  53422. default: true
  53423. },
  53424. {
  53425. name: "Giga Bear",
  53426. height: math.unit(1, "mile")
  53427. },
  53428. {
  53429. name: "Great Bear",
  53430. height: math.unit(53, "miles")
  53431. },
  53432. {
  53433. name: "Goddess Bear",
  53434. height: math.unit(40000, "miles")
  53435. },
  53436. {
  53437. name: "Sun Bear",
  53438. height: math.unit(900000, "miles")
  53439. },
  53440. ]
  53441. ))
  53442. characterMakers.push(() => makeCharacter(
  53443. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53444. {
  53445. anthroFront: {
  53446. height: math.unit(556, "cm"),
  53447. weight: math.unit(2650, "kg"),
  53448. preyCapacity: math.unit(3, "people"),
  53449. name: "Front",
  53450. image: {
  53451. source: "./media/characters/ash´iika/front.svg",
  53452. extra: 710/673,
  53453. bottom: 15/725
  53454. },
  53455. form: "anthro",
  53456. default: true
  53457. },
  53458. anthroSide: {
  53459. height: math.unit(556, "cm"),
  53460. weight: math.unit(2650, "kg"),
  53461. preyCapacity: math.unit(3, "people"),
  53462. name: "Side",
  53463. image: {
  53464. source: "./media/characters/ash´iika/side.svg",
  53465. extra: 696/676,
  53466. bottom: 13/709
  53467. },
  53468. form: "anthro"
  53469. },
  53470. anthroDressed: {
  53471. height: math.unit(556, "cm"),
  53472. weight: math.unit(2650, "kg"),
  53473. preyCapacity: math.unit(3, "people"),
  53474. name: "Dressed",
  53475. image: {
  53476. source: "./media/characters/ash´iika/dressed.svg",
  53477. extra: 710/673,
  53478. bottom: 15/725
  53479. },
  53480. form: "anthro"
  53481. },
  53482. anthroHead: {
  53483. height: math.unit(3.5, "feet"),
  53484. name: "Head",
  53485. image: {
  53486. source: "./media/characters/ash´iika/head.svg",
  53487. extra: 348/291,
  53488. bottom: 45/393
  53489. },
  53490. form: "anthro"
  53491. },
  53492. feralSide: {
  53493. height: math.unit(870, "cm"),
  53494. weight: math.unit(17500, "kg"),
  53495. preyCapacity: math.unit(15, "people"),
  53496. name: "Side",
  53497. image: {
  53498. source: "./media/characters/ash´iika/feral.svg",
  53499. extra: 595/199,
  53500. bottom: 7/602
  53501. },
  53502. form: "feral",
  53503. default: true,
  53504. },
  53505. },
  53506. [
  53507. {
  53508. name: "Normal",
  53509. height: math.unit(556, "cm"),
  53510. default: true,
  53511. form: "anthro"
  53512. },
  53513. {
  53514. name: "Macro",
  53515. height: math.unit(88, "meters"),
  53516. form: "anthro"
  53517. },
  53518. {
  53519. name: "Normal",
  53520. height: math.unit(870, "cm"),
  53521. default: true,
  53522. form: "feral"
  53523. },
  53524. {
  53525. name: "Large",
  53526. height: math.unit(25, "meters"),
  53527. form: "feral"
  53528. },
  53529. ],
  53530. {
  53531. "anthro": {
  53532. name: "Anthro",
  53533. default: true
  53534. },
  53535. "feral": {
  53536. name: "Feral",
  53537. },
  53538. }
  53539. ))
  53540. characterMakers.push(() => makeCharacter(
  53541. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53542. {
  53543. front: {
  53544. height: math.unit(10, "feet"),
  53545. weight: math.unit(800, "lb"),
  53546. name: "Front",
  53547. image: {
  53548. source: "./media/characters/yen/front.svg",
  53549. extra: 443/411,
  53550. bottom: 6/449
  53551. }
  53552. },
  53553. sleeping: {
  53554. height: math.unit(10, "feet"),
  53555. weight: math.unit(800, "lb"),
  53556. name: "Sleeping",
  53557. image: {
  53558. source: "./media/characters/yen/sleeping.svg",
  53559. extra: 470/422,
  53560. bottom: 0/470
  53561. }
  53562. },
  53563. head: {
  53564. height: math.unit(2.2, "feet"),
  53565. name: "Head",
  53566. image: {
  53567. source: "./media/characters/yen/head.svg"
  53568. }
  53569. },
  53570. headAlt: {
  53571. height: math.unit(2.1, "feet"),
  53572. name: "Head (Alt)",
  53573. image: {
  53574. source: "./media/characters/yen/head-alt.svg"
  53575. }
  53576. },
  53577. },
  53578. [
  53579. {
  53580. name: "Normal",
  53581. height: math.unit(10, "feet"),
  53582. default: true
  53583. },
  53584. ]
  53585. ))
  53586. characterMakers.push(() => makeCharacter(
  53587. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53588. {
  53589. front: {
  53590. height: math.unit(12, "feet"),
  53591. name: "Front",
  53592. image: {
  53593. source: "./media/characters/citra/front.svg",
  53594. extra: 1950/1710,
  53595. bottom: 47/1997
  53596. }
  53597. },
  53598. },
  53599. [
  53600. {
  53601. name: "Normal",
  53602. height: math.unit(12, "feet"),
  53603. default: true
  53604. },
  53605. ]
  53606. ))
  53607. characterMakers.push(() => makeCharacter(
  53608. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53609. {
  53610. side: {
  53611. height: math.unit(7 + 10/12, "feet"),
  53612. name: "Side",
  53613. image: {
  53614. source: "./media/characters/sholstim/side.svg",
  53615. extra: 786/682,
  53616. bottom: 40/826
  53617. }
  53618. },
  53619. },
  53620. [
  53621. {
  53622. name: "Normal",
  53623. height: math.unit(7 + 10/12, "feet"),
  53624. default: true
  53625. },
  53626. ]
  53627. ))
  53628. characterMakers.push(() => makeCharacter(
  53629. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53630. {
  53631. front: {
  53632. height: math.unit(3.10, "meters"),
  53633. name: "Front",
  53634. image: {
  53635. source: "./media/characters/aggyn/front.svg",
  53636. extra: 1188/963,
  53637. bottom: 24/1212
  53638. }
  53639. },
  53640. },
  53641. [
  53642. {
  53643. name: "Normal",
  53644. height: math.unit(3.10, "meters"),
  53645. default: true
  53646. },
  53647. ]
  53648. ))
  53649. characterMakers.push(() => makeCharacter(
  53650. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53651. {
  53652. front: {
  53653. height: math.unit(7 + 5/12, "feet"),
  53654. weight: math.unit(687, "lb"),
  53655. name: "Front",
  53656. image: {
  53657. source: "./media/characters/alsandair-hergenroether/front.svg",
  53658. extra: 1251/1186,
  53659. bottom: 75/1326
  53660. }
  53661. },
  53662. back: {
  53663. height: math.unit(7 + 5/12, "feet"),
  53664. weight: math.unit(687, "lb"),
  53665. name: "Back",
  53666. image: {
  53667. source: "./media/characters/alsandair-hergenroether/back.svg",
  53668. extra: 1290/1229,
  53669. bottom: 17/1307
  53670. }
  53671. },
  53672. },
  53673. [
  53674. {
  53675. name: "Max Compression",
  53676. height: math.unit(7 + 5/12, "feet"),
  53677. default: true
  53678. },
  53679. {
  53680. name: "\"Normal\"",
  53681. height: math.unit(2, "universes")
  53682. },
  53683. ]
  53684. ))
  53685. characterMakers.push(() => makeCharacter(
  53686. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53687. {
  53688. front: {
  53689. height: math.unit(4 + 1/12, "feet"),
  53690. weight: math.unit(92, "lb"),
  53691. name: "Front",
  53692. image: {
  53693. source: "./media/characters/ie/front.svg",
  53694. extra: 1585/1352,
  53695. bottom: 91/1676
  53696. }
  53697. },
  53698. },
  53699. [
  53700. {
  53701. name: "Normal",
  53702. height: math.unit(4 + 1/12, "feet"),
  53703. default: true
  53704. },
  53705. ]
  53706. ))
  53707. characterMakers.push(() => makeCharacter(
  53708. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53709. {
  53710. anthro: {
  53711. height: math.unit(6, "feet"),
  53712. weight: math.unit(150, "lb"),
  53713. name: "Front",
  53714. image: {
  53715. source: "./media/characters/willow/anthro.svg",
  53716. extra: 1073/986,
  53717. bottom: 34/1107
  53718. },
  53719. form: "anthro",
  53720. default: true
  53721. },
  53722. taur: {
  53723. height: math.unit(6, "feet"),
  53724. weight: math.unit(150, "lb"),
  53725. name: "Side",
  53726. image: {
  53727. source: "./media/characters/willow/taur.svg",
  53728. extra: 647/512,
  53729. bottom: 136/783
  53730. },
  53731. form: "taur",
  53732. default: true
  53733. },
  53734. },
  53735. [
  53736. {
  53737. name: "Humanoid",
  53738. height: math.unit(2.7, "meters"),
  53739. form: "anthro"
  53740. },
  53741. {
  53742. name: "Normal",
  53743. height: math.unit(9, "meters"),
  53744. form: "anthro",
  53745. default: true
  53746. },
  53747. {
  53748. name: "Humanoid",
  53749. height: math.unit(2.1, "meters"),
  53750. form: "taur"
  53751. },
  53752. {
  53753. name: "Normal",
  53754. height: math.unit(7, "meters"),
  53755. form: "taur",
  53756. default: true
  53757. },
  53758. ],
  53759. {
  53760. "anthro": {
  53761. name: "Anthro",
  53762. default: true
  53763. },
  53764. "taur": {
  53765. name: "Taur",
  53766. },
  53767. }
  53768. ))
  53769. characterMakers.push(() => makeCharacter(
  53770. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53771. {
  53772. front: {
  53773. height: math.unit(2 + 5/12, "feet"),
  53774. name: "Front",
  53775. image: {
  53776. source: "./media/characters/kyan/front.svg",
  53777. extra: 460/334,
  53778. bottom: 23/483
  53779. },
  53780. extraAttributes: {
  53781. "toeLength": {
  53782. name: "Toe Length",
  53783. power: 1,
  53784. type: "length",
  53785. base: math.unit(7, "cm")
  53786. },
  53787. "toeclawLength": {
  53788. name: "Toeclaw Length",
  53789. power: 1,
  53790. type: "length",
  53791. base: math.unit(4.7, "cm")
  53792. },
  53793. "earHeight": {
  53794. name: "Ear Height",
  53795. power: 1,
  53796. type: "length",
  53797. base: math.unit(14.1, "cm")
  53798. },
  53799. }
  53800. },
  53801. paws: {
  53802. height: math.unit(0.45, "feet"),
  53803. name: "Paws",
  53804. image: {
  53805. source: "./media/characters/kyan/paws.svg",
  53806. extra: 581/581,
  53807. bottom: 114/695
  53808. }
  53809. },
  53810. },
  53811. [
  53812. {
  53813. name: "Normal",
  53814. height: math.unit(2 + 5/12, "feet"),
  53815. default: true
  53816. },
  53817. ]
  53818. ))
  53819. characterMakers.push(() => makeCharacter(
  53820. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53821. {
  53822. front: {
  53823. height: math.unit(2 + 2/3, "feet"),
  53824. name: "Front",
  53825. image: {
  53826. source: "./media/characters/xazzon/front.svg",
  53827. extra: 1109/984,
  53828. bottom: 42/1151
  53829. }
  53830. },
  53831. back: {
  53832. height: math.unit(2 + 2/3, "feet"),
  53833. name: "Back",
  53834. image: {
  53835. source: "./media/characters/xazzon/back.svg",
  53836. extra: 1095/971,
  53837. bottom: 23/1118
  53838. }
  53839. },
  53840. },
  53841. [
  53842. {
  53843. name: "Normal",
  53844. height: math.unit(2 + 2/3, "feet"),
  53845. default: true
  53846. },
  53847. ]
  53848. ))
  53849. characterMakers.push(() => makeCharacter(
  53850. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53851. {
  53852. dressed: {
  53853. height: math.unit(5 + 7/12, "feet"),
  53854. weight: math.unit(173, "lb"),
  53855. name: "Dressed",
  53856. image: {
  53857. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53858. extra: 3262/2862,
  53859. bottom: 188/3450
  53860. }
  53861. },
  53862. undressed: {
  53863. height: math.unit(5 + 7/12, "feet"),
  53864. weight: math.unit(173, "lb"),
  53865. name: "Undressed",
  53866. image: {
  53867. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53868. extra: 3262/2862,
  53869. bottom: 188/3450
  53870. }
  53871. },
  53872. },
  53873. [
  53874. {
  53875. name: "The void",
  53876. height: math.unit(7.29193e-34, "angstroms")
  53877. },
  53878. {
  53879. name: "Uh-Oh.",
  53880. height: math.unit(5.734e-7, "angstroms")
  53881. },
  53882. {
  53883. name: "Pico",
  53884. height: math.unit(0.876, "angstroms")
  53885. },
  53886. {
  53887. name: "Nano",
  53888. height: math.unit(0.000134200, "mm")
  53889. },
  53890. {
  53891. name: "Micro",
  53892. height: math.unit(0.0673020, "mm")
  53893. },
  53894. {
  53895. name: "Tiny",
  53896. height: math.unit(2.4, "mm")
  53897. },
  53898. {
  53899. name: "Actual Normal",
  53900. height: math.unit(3, "inches"),
  53901. default: true
  53902. },
  53903. {
  53904. name: "Normal",
  53905. height: math.unit(5 + 8/12, "feet")
  53906. },
  53907. {
  53908. name: "Giant",
  53909. height: math.unit(12, "feet")
  53910. },
  53911. {
  53912. name: "City Ruler",
  53913. height: math.unit(270, "meters")
  53914. },
  53915. {
  53916. name: "Giga",
  53917. height: math.unit(1117.6, "km")
  53918. },
  53919. {
  53920. name: "All-Powerful Queen",
  53921. height: math.unit(70.8, "gigameters")
  53922. },
  53923. {
  53924. name: "'Goddess'",
  53925. height: math.unit(600, "yottameters")
  53926. },
  53927. {
  53928. name: "Biggest!",
  53929. height: math.unit(4.23e5, "yottameters")
  53930. },
  53931. ]
  53932. ))
  53933. characterMakers.push(() => makeCharacter(
  53934. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53935. {
  53936. front: {
  53937. height: math.unit(8, "feet"),
  53938. weight: math.unit(300, "lb"),
  53939. name: "Front",
  53940. image: {
  53941. source: "./media/characters/khyla-shadowsong/front.svg",
  53942. extra: 861/798,
  53943. bottom: 32/893
  53944. }
  53945. },
  53946. side: {
  53947. height: math.unit(8, "feet"),
  53948. weight: math.unit(300, "lb"),
  53949. name: "Side",
  53950. image: {
  53951. source: "./media/characters/khyla-shadowsong/side.svg",
  53952. extra: 790/750,
  53953. bottom: 87/877
  53954. }
  53955. },
  53956. back: {
  53957. height: math.unit(8, "feet"),
  53958. weight: math.unit(300, "lb"),
  53959. name: "Back",
  53960. image: {
  53961. source: "./media/characters/khyla-shadowsong/back.svg",
  53962. extra: 855/808,
  53963. bottom: 14/869
  53964. }
  53965. },
  53966. head: {
  53967. height: math.unit(2.7, "feet"),
  53968. name: "Head",
  53969. image: {
  53970. source: "./media/characters/khyla-shadowsong/head.svg"
  53971. }
  53972. },
  53973. },
  53974. [
  53975. {
  53976. name: "Micro",
  53977. height: math.unit(6, "inches")
  53978. },
  53979. {
  53980. name: "Normal",
  53981. height: math.unit(8, "feet"),
  53982. default: true
  53983. },
  53984. ]
  53985. ))
  53986. characterMakers.push(() => makeCharacter(
  53987. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53988. {
  53989. hyperFront: {
  53990. height: math.unit(9 + 4/12, "feet"),
  53991. weight: math.unit(2000, "lb"),
  53992. name: "Front",
  53993. image: {
  53994. source: "./media/characters/tiden/hyper-front.svg",
  53995. extra: 400/382,
  53996. bottom: 6/406
  53997. },
  53998. form: "hyper",
  53999. },
  54000. regularFront: {
  54001. height: math.unit(7 + 10/12, "feet"),
  54002. weight: math.unit(470, "lb"),
  54003. name: "Front",
  54004. image: {
  54005. source: "./media/characters/tiden/regular-front.svg",
  54006. extra: 468/442,
  54007. bottom: 6/474
  54008. },
  54009. form: "regular",
  54010. },
  54011. },
  54012. [
  54013. {
  54014. name: "Normal",
  54015. height: math.unit(9 + 4/12, "feet"),
  54016. default: true,
  54017. form: "hyper"
  54018. },
  54019. {
  54020. name: "Normal",
  54021. height: math.unit(7 + 10/12, "feet"),
  54022. default: true,
  54023. form: "regular"
  54024. },
  54025. ],
  54026. {
  54027. "hyper": {
  54028. name: "Hyper",
  54029. default: true
  54030. },
  54031. "regular": {
  54032. name: "Regular",
  54033. },
  54034. }
  54035. ))
  54036. characterMakers.push(() => makeCharacter(
  54037. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54038. {
  54039. side: {
  54040. height: math.unit(6, "feet"),
  54041. weight: math.unit(150, "lb"),
  54042. name: "Side",
  54043. image: {
  54044. source: "./media/characters/jason-crowe/side.svg",
  54045. extra: 1771/766,
  54046. bottom: 219/1990
  54047. }
  54048. },
  54049. },
  54050. [
  54051. {
  54052. name: "Pocket Gryphon",
  54053. height: math.unit(6, "cm")
  54054. },
  54055. {
  54056. name: "Raven",
  54057. height: math.unit(60, "cm")
  54058. },
  54059. {
  54060. name: "Normal",
  54061. height: math.unit(1, "meter"),
  54062. default: true
  54063. },
  54064. ]
  54065. ))
  54066. characterMakers.push(() => makeCharacter(
  54067. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54068. {
  54069. front: {
  54070. height: math.unit(9 + 6/12, "feet"),
  54071. weight: math.unit(1100, "lb"),
  54072. name: "Front",
  54073. image: {
  54074. source: "./media/characters/django/front.svg",
  54075. extra: 1231/1136,
  54076. bottom: 34/1265
  54077. }
  54078. },
  54079. side: {
  54080. height: math.unit(9 + 6/12, "feet"),
  54081. weight: math.unit(1100, "lb"),
  54082. name: "Side",
  54083. image: {
  54084. source: "./media/characters/django/side.svg",
  54085. extra: 1267/1174,
  54086. bottom: 9/1276
  54087. }
  54088. },
  54089. },
  54090. [
  54091. {
  54092. name: "Normal",
  54093. height: math.unit(9 + 6/12, "feet"),
  54094. default: true
  54095. },
  54096. {
  54097. name: "Macro 1",
  54098. height: math.unit(50, "feet")
  54099. },
  54100. {
  54101. name: "Macro 2",
  54102. height: math.unit(500, "feet")
  54103. },
  54104. {
  54105. name: "Mega Macro",
  54106. height: math.unit(5300, "feet")
  54107. },
  54108. ]
  54109. ))
  54110. characterMakers.push(() => makeCharacter(
  54111. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54112. {
  54113. frontSfw: {
  54114. height: math.unit(120, "cm"),
  54115. weight: math.unit(15, "kg"),
  54116. name: "Front (SFW)",
  54117. image: {
  54118. source: "./media/characters/eri/front-sfw.svg",
  54119. extra: 1014/939,
  54120. bottom: 37/1051
  54121. },
  54122. form: "moth",
  54123. },
  54124. frontNsfw: {
  54125. height: math.unit(120, "cm"),
  54126. weight: math.unit(15, "kg"),
  54127. name: "Front (NSFW)",
  54128. image: {
  54129. source: "./media/characters/eri/front-nsfw.svg",
  54130. extra: 1014/939,
  54131. bottom: 37/1051
  54132. },
  54133. form: "moth",
  54134. default: true
  54135. },
  54136. egg: {
  54137. height: math.unit(10, "cm"),
  54138. name: "Egg",
  54139. image: {
  54140. source: "./media/characters/eri/egg.svg"
  54141. },
  54142. form: "egg",
  54143. default: true
  54144. },
  54145. },
  54146. [
  54147. {
  54148. name: "Normal",
  54149. height: math.unit(120, "cm"),
  54150. default: true,
  54151. form: "moth"
  54152. },
  54153. {
  54154. name: "Normal",
  54155. height: math.unit(10, "cm"),
  54156. default: true,
  54157. form: "egg"
  54158. },
  54159. ],
  54160. {
  54161. "moth": {
  54162. name: "Moth",
  54163. default: true
  54164. },
  54165. "egg": {
  54166. name: "Egg",
  54167. },
  54168. }
  54169. ))
  54170. characterMakers.push(() => makeCharacter(
  54171. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54172. {
  54173. front: {
  54174. height: math.unit(200, "feet"),
  54175. name: "Front",
  54176. image: {
  54177. source: "./media/characters/bishop-dowser/front.svg",
  54178. extra: 933/868,
  54179. bottom: 106/1039
  54180. }
  54181. },
  54182. },
  54183. [
  54184. {
  54185. name: "Giant",
  54186. height: math.unit(200, "feet"),
  54187. default: true
  54188. },
  54189. ]
  54190. ))
  54191. characterMakers.push(() => makeCharacter(
  54192. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54193. {
  54194. front: {
  54195. height: math.unit(2, "meters"),
  54196. preyCapacity: math.unit(3, "people"),
  54197. name: "Front",
  54198. image: {
  54199. source: "./media/characters/fryra/front.svg",
  54200. extra: 1025/948,
  54201. bottom: 30/1055
  54202. },
  54203. extraAttributes: {
  54204. "breastVolume": {
  54205. name: "Breast Volume",
  54206. power: 3,
  54207. type: "volume",
  54208. base: math.unit(8, "liters")
  54209. },
  54210. }
  54211. },
  54212. back: {
  54213. height: math.unit(2, "meters"),
  54214. preyCapacity: math.unit(3, "people"),
  54215. name: "Back",
  54216. image: {
  54217. source: "./media/characters/fryra/back.svg",
  54218. extra: 993/938,
  54219. bottom: 38/1031
  54220. },
  54221. extraAttributes: {
  54222. "breastVolume": {
  54223. name: "Breast Volume",
  54224. power: 3,
  54225. type: "volume",
  54226. base: math.unit(8, "liters")
  54227. },
  54228. }
  54229. },
  54230. head: {
  54231. height: math.unit(1.33, "feet"),
  54232. name: "Head",
  54233. image: {
  54234. source: "./media/characters/fryra/head.svg"
  54235. }
  54236. },
  54237. maw: {
  54238. height: math.unit(0.56, "feet"),
  54239. name: "Maw",
  54240. image: {
  54241. source: "./media/characters/fryra/maw.svg"
  54242. }
  54243. },
  54244. },
  54245. [
  54246. {
  54247. name: "Micro",
  54248. height: math.unit(5, "cm")
  54249. },
  54250. {
  54251. name: "Normal",
  54252. height: math.unit(2, "meters"),
  54253. default: true
  54254. },
  54255. {
  54256. name: "Small Macro",
  54257. height: math.unit(8, "meters")
  54258. },
  54259. {
  54260. name: "Macro",
  54261. height: math.unit(50, "meters")
  54262. },
  54263. {
  54264. name: "Megamacro",
  54265. height: math.unit(1, "km")
  54266. },
  54267. {
  54268. name: "Planetary",
  54269. height: math.unit(300000, "km")
  54270. },
  54271. {
  54272. name: "Universal",
  54273. height: math.unit(250, "lightyears")
  54274. },
  54275. {
  54276. name: "Fabric of Reality",
  54277. height: math.unit(1000, "multiverses")
  54278. },
  54279. ]
  54280. ))
  54281. characterMakers.push(() => makeCharacter(
  54282. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54283. {
  54284. frontDressed: {
  54285. height: math.unit(6 + 2/12, "feet"),
  54286. name: "Front (Dressed)",
  54287. image: {
  54288. source: "./media/characters/fiera/front-dressed.svg",
  54289. extra: 1883/1793,
  54290. bottom: 70/1953
  54291. }
  54292. },
  54293. backDressed: {
  54294. height: math.unit(6 + 2/12, "feet"),
  54295. name: "Back (Dressed)",
  54296. image: {
  54297. source: "./media/characters/fiera/back-dressed.svg",
  54298. extra: 1847/1780,
  54299. bottom: 70/1917
  54300. }
  54301. },
  54302. frontNude: {
  54303. height: math.unit(6 + 2/12, "feet"),
  54304. name: "Front (Nude)",
  54305. image: {
  54306. source: "./media/characters/fiera/front-nude.svg",
  54307. extra: 1875/1785,
  54308. bottom: 66/1941
  54309. }
  54310. },
  54311. backNude: {
  54312. height: math.unit(6 + 2/12, "feet"),
  54313. name: "Back (Nude)",
  54314. image: {
  54315. source: "./media/characters/fiera/back-nude.svg",
  54316. extra: 1855/1788,
  54317. bottom: 44/1899
  54318. }
  54319. },
  54320. maw: {
  54321. height: math.unit(1.3, "feet"),
  54322. name: "Maw",
  54323. image: {
  54324. source: "./media/characters/fiera/maw.svg"
  54325. }
  54326. },
  54327. paw: {
  54328. height: math.unit(1, "feet"),
  54329. name: "Paw",
  54330. image: {
  54331. source: "./media/characters/fiera/paw.svg"
  54332. }
  54333. },
  54334. shoe: {
  54335. height: math.unit(1.05, "feet"),
  54336. name: "Shoe",
  54337. image: {
  54338. source: "./media/characters/fiera/shoe.svg"
  54339. }
  54340. },
  54341. },
  54342. [
  54343. {
  54344. name: "Normal",
  54345. height: math.unit(6 + 2/12, "feet"),
  54346. default: true
  54347. },
  54348. {
  54349. name: "Size Difference",
  54350. height: math.unit(13, "feet")
  54351. },
  54352. {
  54353. name: "Macro",
  54354. height: math.unit(60, "feet")
  54355. },
  54356. {
  54357. name: "Mega Macro",
  54358. height: math.unit(200, "feet")
  54359. },
  54360. ]
  54361. ))
  54362. characterMakers.push(() => makeCharacter(
  54363. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54364. {
  54365. back: {
  54366. height: math.unit(6, "feet"),
  54367. name: "Back",
  54368. image: {
  54369. source: "./media/characters/flare/back.svg",
  54370. extra: 1883/1765,
  54371. bottom: 32/1915
  54372. }
  54373. },
  54374. },
  54375. [
  54376. {
  54377. name: "Normal",
  54378. height: math.unit(6 + 2/12, "feet"),
  54379. default: true
  54380. },
  54381. {
  54382. name: "Size Difference",
  54383. height: math.unit(13, "feet")
  54384. },
  54385. {
  54386. name: "Macro",
  54387. height: math.unit(60, "feet")
  54388. },
  54389. {
  54390. name: "Macro 2",
  54391. height: math.unit(100, "feet")
  54392. },
  54393. {
  54394. name: "Mega Macro",
  54395. height: math.unit(200, "feet")
  54396. },
  54397. ]
  54398. ))
  54399. characterMakers.push(() => makeCharacter(
  54400. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54401. {
  54402. front: {
  54403. height: math.unit(2.2, "m"),
  54404. weight: math.unit(300, "kg"),
  54405. name: "Front",
  54406. image: {
  54407. source: "./media/characters/hanna/front.svg",
  54408. extra: 1696/1502,
  54409. bottom: 206/1902
  54410. }
  54411. },
  54412. },
  54413. [
  54414. {
  54415. name: "Humanoid",
  54416. height: math.unit(2.2, "meters")
  54417. },
  54418. {
  54419. name: "Normal",
  54420. height: math.unit(4.8, "meters"),
  54421. default: true
  54422. },
  54423. ]
  54424. ))
  54425. characterMakers.push(() => makeCharacter(
  54426. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54427. {
  54428. front: {
  54429. height: math.unit(2.8, "meters"),
  54430. name: "Front",
  54431. image: {
  54432. source: "./media/characters/argo/front.svg",
  54433. extra: 731/518,
  54434. bottom: 84/815
  54435. }
  54436. },
  54437. },
  54438. [
  54439. {
  54440. name: "Normal",
  54441. height: math.unit(3, "meters"),
  54442. default: true
  54443. },
  54444. ]
  54445. ))
  54446. characterMakers.push(() => makeCharacter(
  54447. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54448. {
  54449. side: {
  54450. height: math.unit(3.8, "meters"),
  54451. name: "Side",
  54452. image: {
  54453. source: "./media/characters/sybil/side.svg",
  54454. extra: 382/361,
  54455. bottom: 25/407
  54456. }
  54457. },
  54458. },
  54459. [
  54460. {
  54461. name: "Normal",
  54462. height: math.unit(3.8, "meters"),
  54463. default: true
  54464. },
  54465. ]
  54466. ))
  54467. characterMakers.push(() => makeCharacter(
  54468. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54469. {
  54470. side: {
  54471. height: math.unit(6, "meters"),
  54472. name: "Side",
  54473. image: {
  54474. source: "./media/characters/plum/side.svg",
  54475. extra: 858/755,
  54476. bottom: 45/903
  54477. },
  54478. form: "taur",
  54479. default: true
  54480. },
  54481. back: {
  54482. height: math.unit(6.3, "meters"),
  54483. name: "Back",
  54484. image: {
  54485. source: "./media/characters/plum/back.svg",
  54486. extra: 887/813,
  54487. bottom: 32/919
  54488. },
  54489. form: "taur",
  54490. },
  54491. feral: {
  54492. height: math.unit(5.5, "meter"),
  54493. name: "Front",
  54494. image: {
  54495. source: "./media/characters/plum/feral.svg",
  54496. extra: 568/403,
  54497. bottom: 51/619
  54498. },
  54499. form: "feral",
  54500. default: true
  54501. },
  54502. head: {
  54503. height: math.unit(1.46, "meter"),
  54504. name: "Head",
  54505. image: {
  54506. source: "./media/characters/plum/head.svg"
  54507. },
  54508. form: "taur"
  54509. },
  54510. tailTop: {
  54511. height: math.unit(5.6, "meter"),
  54512. name: "Tail (Top)",
  54513. image: {
  54514. source: "./media/characters/plum/tail-top.svg"
  54515. },
  54516. form: "taur",
  54517. },
  54518. tailBottom: {
  54519. height: math.unit(5.6, "meter"),
  54520. name: "Tail (Bottom)",
  54521. image: {
  54522. source: "./media/characters/plum/tail-bottom.svg"
  54523. },
  54524. form: "taur",
  54525. },
  54526. feralHead: {
  54527. height: math.unit(2.56549521, "meter"),
  54528. name: "Head",
  54529. image: {
  54530. source: "./media/characters/plum/head.svg"
  54531. },
  54532. form: "feral"
  54533. },
  54534. feralTailTop: {
  54535. height: math.unit(5.44728435, "meter"),
  54536. name: "Tail (Top)",
  54537. image: {
  54538. source: "./media/characters/plum/tail-top.svg"
  54539. },
  54540. form: "feral",
  54541. },
  54542. feralTailBottom: {
  54543. height: math.unit(5.44728435, "meter"),
  54544. name: "Tail (Bottom)",
  54545. image: {
  54546. source: "./media/characters/plum/tail-bottom.svg"
  54547. },
  54548. form: "feral",
  54549. },
  54550. },
  54551. [
  54552. {
  54553. name: "Normal",
  54554. height: math.unit(6, "meters"),
  54555. default: true,
  54556. form: "taur"
  54557. },
  54558. {
  54559. name: "Normal",
  54560. height: math.unit(5.5, "meters"),
  54561. default: true,
  54562. form: "feral"
  54563. },
  54564. ],
  54565. {
  54566. "taur": {
  54567. name: "Taur",
  54568. default: true
  54569. },
  54570. "feral": {
  54571. name: "Feral",
  54572. },
  54573. }
  54574. ))
  54575. characterMakers.push(() => makeCharacter(
  54576. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54577. {
  54578. front: {
  54579. height: math.unit(6, "feet"),
  54580. weight: math.unit(115, "lb"),
  54581. name: "Front",
  54582. image: {
  54583. source: "./media/characters/celeste-kitsune/front.svg",
  54584. extra: 393/366,
  54585. bottom: 7/400
  54586. }
  54587. },
  54588. side: {
  54589. height: math.unit(6, "feet"),
  54590. weight: math.unit(115, "lb"),
  54591. name: "Side",
  54592. image: {
  54593. source: "./media/characters/celeste-kitsune/side.svg",
  54594. extra: 818/765,
  54595. bottom: 40/858
  54596. }
  54597. },
  54598. },
  54599. [
  54600. {
  54601. name: "Megamacro",
  54602. height: math.unit(1500, "miles"),
  54603. default: true
  54604. },
  54605. ]
  54606. ))
  54607. characterMakers.push(() => makeCharacter(
  54608. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54609. {
  54610. front: {
  54611. height: math.unit(8, "meters"),
  54612. name: "Front",
  54613. image: {
  54614. source: "./media/characters/io/front.svg",
  54615. extra: 865/722,
  54616. bottom: 58/923
  54617. }
  54618. },
  54619. back: {
  54620. height: math.unit(8, "meters"),
  54621. name: "Back",
  54622. image: {
  54623. source: "./media/characters/io/back.svg",
  54624. extra: 920/776,
  54625. bottom: 42/962
  54626. }
  54627. },
  54628. head: {
  54629. height: math.unit(5.09, "meters"),
  54630. name: "Head",
  54631. image: {
  54632. source: "./media/characters/io/head.svg"
  54633. }
  54634. },
  54635. hand: {
  54636. height: math.unit(1.6, "meters"),
  54637. name: "Hand",
  54638. image: {
  54639. source: "./media/characters/io/hand.svg"
  54640. }
  54641. },
  54642. foot: {
  54643. height: math.unit(2.4, "meters"),
  54644. name: "Foot",
  54645. image: {
  54646. source: "./media/characters/io/foot.svg"
  54647. }
  54648. },
  54649. },
  54650. [
  54651. {
  54652. name: "Normal",
  54653. height: math.unit(8, "meters"),
  54654. default: true
  54655. },
  54656. ]
  54657. ))
  54658. characterMakers.push(() => makeCharacter(
  54659. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54660. {
  54661. side: {
  54662. height: math.unit(6 + 3/12, "feet"),
  54663. weight: math.unit(225, "lb"),
  54664. name: "Side",
  54665. image: {
  54666. source: "./media/characters/silas/side.svg",
  54667. extra: 703/653,
  54668. bottom: 23/726
  54669. },
  54670. extraAttributes: {
  54671. "pawLength": {
  54672. name: "Paw Length",
  54673. power: 1,
  54674. type: "length",
  54675. base: math.unit(12, "inches")
  54676. },
  54677. "pawWidth": {
  54678. name: "Paw Width",
  54679. power: 1,
  54680. type: "length",
  54681. base: math.unit(4.5, "inches")
  54682. },
  54683. "pawArea": {
  54684. name: "Paw Area",
  54685. power: 2,
  54686. type: "area",
  54687. base: math.unit(12 * 4.5, "inches^2")
  54688. },
  54689. }
  54690. },
  54691. },
  54692. [
  54693. {
  54694. name: "Normal",
  54695. height: math.unit(6 + 3/12, "feet"),
  54696. default: true
  54697. },
  54698. ]
  54699. ))
  54700. characterMakers.push(() => makeCharacter(
  54701. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54702. {
  54703. back: {
  54704. height: math.unit(1.6, "meters"),
  54705. weight: math.unit(150, "lb"),
  54706. name: "Back",
  54707. image: {
  54708. source: "./media/characters/zari/back.svg",
  54709. extra: 424/411,
  54710. bottom: 32/456
  54711. },
  54712. extraAttributes: {
  54713. "bladderCapacity": {
  54714. name: "Bladder Size",
  54715. power: 3,
  54716. type: "volume",
  54717. base: math.unit(500, "mL")
  54718. },
  54719. "bladderFlow": {
  54720. name: "Flow Rate",
  54721. power: 3,
  54722. type: "volume",
  54723. base: math.unit(25, "mL")
  54724. },
  54725. }
  54726. },
  54727. },
  54728. [
  54729. {
  54730. name: "Normal",
  54731. height: math.unit(1.6, "meters"),
  54732. default: true
  54733. },
  54734. ]
  54735. ))
  54736. characterMakers.push(() => makeCharacter(
  54737. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54738. {
  54739. front: {
  54740. height: math.unit(25, "feet"),
  54741. weight: math.unit(5, "tons"),
  54742. name: "Front",
  54743. image: {
  54744. source: "./media/characters/charlie-human/front.svg",
  54745. extra: 1870/1740,
  54746. bottom: 102/1972
  54747. },
  54748. extraAttributes: {
  54749. "dickLength": {
  54750. name: "Dick Length",
  54751. power: 1,
  54752. type: "length",
  54753. base: math.unit(9, "feet")
  54754. },
  54755. }
  54756. },
  54757. back: {
  54758. height: math.unit(25, "feet"),
  54759. weight: math.unit(5, "tons"),
  54760. name: "Back",
  54761. image: {
  54762. source: "./media/characters/charlie-human/back.svg",
  54763. extra: 1858/1733,
  54764. bottom: 105/1963
  54765. },
  54766. extraAttributes: {
  54767. "dickLength": {
  54768. name: "Dick Length",
  54769. power: 1,
  54770. type: "length",
  54771. base: math.unit(9, "feet")
  54772. },
  54773. }
  54774. },
  54775. },
  54776. [
  54777. {
  54778. name: "\"Normal\"",
  54779. height: math.unit(6 + 4/12, "feet")
  54780. },
  54781. {
  54782. name: "Big",
  54783. height: math.unit(25, "feet"),
  54784. default: true
  54785. },
  54786. ]
  54787. ))
  54788. characterMakers.push(() => makeCharacter(
  54789. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54790. {
  54791. front: {
  54792. height: math.unit(6 + 4/12, "feet"),
  54793. weight: math.unit(320, "lb"),
  54794. name: "Front",
  54795. image: {
  54796. source: "./media/characters/ookitsu/front.svg",
  54797. extra: 1160/976,
  54798. bottom: 38/1198
  54799. }
  54800. },
  54801. frontNsfw: {
  54802. height: math.unit(6 + 4/12, "feet"),
  54803. weight: math.unit(320, "lb"),
  54804. name: "Front (NSFW)",
  54805. image: {
  54806. source: "./media/characters/ookitsu/front-nsfw.svg",
  54807. extra: 1160/976,
  54808. bottom: 38/1198
  54809. }
  54810. },
  54811. back: {
  54812. height: math.unit(6 + 4/12, "feet"),
  54813. weight: math.unit(320, "lb"),
  54814. name: "Back",
  54815. image: {
  54816. source: "./media/characters/ookitsu/back.svg",
  54817. extra: 1030/975,
  54818. bottom: 70/1100
  54819. }
  54820. },
  54821. head: {
  54822. height: math.unit(1.79, "feet"),
  54823. name: "Head",
  54824. image: {
  54825. source: "./media/characters/ookitsu/head.svg"
  54826. }
  54827. },
  54828. hand: {
  54829. height: math.unit(0.92, "feet"),
  54830. name: "Hand",
  54831. image: {
  54832. source: "./media/characters/ookitsu/hand.svg"
  54833. }
  54834. },
  54835. tails: {
  54836. height: math.unit(3.3, "feet"),
  54837. name: "Tails",
  54838. image: {
  54839. source: "./media/characters/ookitsu/tails.svg"
  54840. }
  54841. },
  54842. dick: {
  54843. height: math.unit(1.10833, "feet"),
  54844. name: "Dick",
  54845. image: {
  54846. source: "./media/characters/ookitsu/dick.svg"
  54847. }
  54848. },
  54849. },
  54850. [
  54851. {
  54852. name: "Normal",
  54853. height: math.unit(6 + 4/12, "feet"),
  54854. default: true
  54855. },
  54856. {
  54857. name: "Macro",
  54858. height: math.unit(30, "feet")
  54859. },
  54860. ]
  54861. ))
  54862. characterMakers.push(() => makeCharacter(
  54863. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54864. {
  54865. anthroFront: {
  54866. height: math.unit(6, "feet"),
  54867. weight: math.unit(250, "lb"),
  54868. name: "Front",
  54869. image: {
  54870. source: "./media/characters/jhusky/anthro-front.svg",
  54871. extra: 474/439,
  54872. bottom: 7/481
  54873. },
  54874. form: "anthro",
  54875. default: true
  54876. },
  54877. taurSideSfw: {
  54878. height: math.unit(6 + 4/12, "feet"),
  54879. weight: math.unit(500, "lb"),
  54880. name: "Side (SFW)",
  54881. image: {
  54882. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54883. extra: 1741/1629,
  54884. bottom: 196/1937
  54885. },
  54886. form: "taur",
  54887. default: true
  54888. },
  54889. taurSideNsfw: {
  54890. height: math.unit(6 + 4/12, "feet"),
  54891. weight: math.unit(500, "lb"),
  54892. name: "Taur (NSFW)",
  54893. image: {
  54894. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54895. extra: 1741/1629,
  54896. bottom: 196/1937
  54897. },
  54898. form: "taur",
  54899. },
  54900. },
  54901. [
  54902. {
  54903. name: "Huge",
  54904. height: math.unit(500, "feet"),
  54905. form: "anthro"
  54906. },
  54907. {
  54908. name: "Macro",
  54909. height: math.unit(1000, "feet"),
  54910. default: true,
  54911. form: "anthro"
  54912. },
  54913. {
  54914. name: "Megamacro",
  54915. height: math.unit(10000, "feet"),
  54916. form: "anthro"
  54917. },
  54918. {
  54919. name: "Huge",
  54920. height: math.unit(528, "feet"),
  54921. form: "taur"
  54922. },
  54923. {
  54924. name: "Macro",
  54925. height: math.unit(1056, "feet"),
  54926. default: true,
  54927. form: "taur"
  54928. },
  54929. {
  54930. name: "Megamacro",
  54931. height: math.unit(10556, "feet"),
  54932. form: "taur"
  54933. },
  54934. ],
  54935. {
  54936. "anthro": {
  54937. name: "Anthro",
  54938. default: true
  54939. },
  54940. "taur": {
  54941. name: "Taur",
  54942. },
  54943. }
  54944. ))
  54945. characterMakers.push(() => makeCharacter(
  54946. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54947. {
  54948. front: {
  54949. height: math.unit(8, "feet"),
  54950. weight: math.unit(500, "lb"),
  54951. name: "Front",
  54952. image: {
  54953. source: "./media/characters/armail/front.svg",
  54954. extra: 1753/1669,
  54955. bottom: 155/1908
  54956. }
  54957. },
  54958. back: {
  54959. height: math.unit(8, "feet"),
  54960. weight: math.unit(500, "lb"),
  54961. name: "Back",
  54962. image: {
  54963. source: "./media/characters/armail/back.svg",
  54964. extra: 1872/1803,
  54965. bottom: 63/1935
  54966. }
  54967. },
  54968. },
  54969. [
  54970. {
  54971. name: "Micro",
  54972. height: math.unit(0.25, "feet")
  54973. },
  54974. {
  54975. name: "Normal",
  54976. height: math.unit(8, "feet"),
  54977. default: true
  54978. },
  54979. {
  54980. name: "Mini-macro",
  54981. height: math.unit(30, "feet")
  54982. },
  54983. {
  54984. name: "Macro",
  54985. height: math.unit(400, "feet")
  54986. },
  54987. {
  54988. name: "Mega-macro",
  54989. height: math.unit(6000, "feet")
  54990. },
  54991. ]
  54992. ))
  54993. characterMakers.push(() => makeCharacter(
  54994. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54995. {
  54996. front: {
  54997. height: math.unit(6 + 7/12, "feet"),
  54998. weight: math.unit(210, "lb"),
  54999. name: "Front",
  55000. image: {
  55001. source: "./media/characters/wilfred-t-buxton/front.svg",
  55002. extra: 1068/882,
  55003. bottom: 28/1096
  55004. }
  55005. },
  55006. },
  55007. [
  55008. {
  55009. name: "Normal",
  55010. height: math.unit(6 + 7/12, "feet"),
  55011. default: true
  55012. },
  55013. ]
  55014. ))
  55015. characterMakers.push(() => makeCharacter(
  55016. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55017. {
  55018. front: {
  55019. height: math.unit(5 + 2/12, "feet"),
  55020. weight: math.unit(120, "lb"),
  55021. name: "Front",
  55022. image: {
  55023. source: "./media/characters/leighton-marrow/front.svg",
  55024. extra: 441/409,
  55025. bottom: 37/478
  55026. }
  55027. },
  55028. },
  55029. [
  55030. {
  55031. name: "Normal",
  55032. height: math.unit(5 + 2/12, "feet"),
  55033. default: true
  55034. },
  55035. ]
  55036. ))
  55037. characterMakers.push(() => makeCharacter(
  55038. { name: "Licos", species: ["werewolf"], tags: ["anthro"] },
  55039. {
  55040. front: {
  55041. height: math.unit(4, "meters"),
  55042. weight: math.unit(1200, "kg"),
  55043. name: "Front",
  55044. image: {
  55045. source: "./media/characters/licos/front.svg",
  55046. extra: 1727/1604,
  55047. bottom: 101/1828
  55048. }
  55049. },
  55050. },
  55051. [
  55052. {
  55053. name: "Normal",
  55054. height: math.unit(4, "meters"),
  55055. default: true
  55056. },
  55057. ]
  55058. ))
  55059. characterMakers.push(() => makeCharacter(
  55060. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55061. {
  55062. front: {
  55063. height: math.unit(10 + 3/12, "feet"),
  55064. name: "Front",
  55065. image: {
  55066. source: "./media/characters/theo-monkey/front.svg",
  55067. extra: 1735/1658,
  55068. bottom: 73/1808
  55069. }
  55070. },
  55071. back: {
  55072. height: math.unit(10 + 3/12, "feet"),
  55073. name: "Back",
  55074. image: {
  55075. source: "./media/characters/theo-monkey/back.svg",
  55076. extra: 1742/1664,
  55077. bottom: 33/1775
  55078. }
  55079. },
  55080. head: {
  55081. height: math.unit(2.29, "feet"),
  55082. name: "Head",
  55083. image: {
  55084. source: "./media/characters/theo-monkey/head.svg"
  55085. }
  55086. },
  55087. handPalm: {
  55088. height: math.unit(1.73, "feet"),
  55089. name: "Hand (Palm)",
  55090. image: {
  55091. source: "./media/characters/theo-monkey/hand-palm.svg"
  55092. }
  55093. },
  55094. handBack: {
  55095. height: math.unit(1.63, "feet"),
  55096. name: "Hand (Back)",
  55097. image: {
  55098. source: "./media/characters/theo-monkey/hand-back.svg"
  55099. }
  55100. },
  55101. footSole: {
  55102. height: math.unit(2.15, "feet"),
  55103. name: "Foot (Sole)",
  55104. image: {
  55105. source: "./media/characters/theo-monkey/foot-sole.svg"
  55106. }
  55107. },
  55108. footSide: {
  55109. height: math.unit(1.6, "feet"),
  55110. name: "Foot (Side)",
  55111. image: {
  55112. source: "./media/characters/theo-monkey/foot-side.svg"
  55113. }
  55114. },
  55115. },
  55116. [
  55117. {
  55118. name: "Normal",
  55119. height: math.unit(10 + 3/12, "feet"),
  55120. default: true
  55121. },
  55122. ]
  55123. ))
  55124. characterMakers.push(() => makeCharacter(
  55125. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55126. {
  55127. front: {
  55128. height: math.unit(11, "feet"),
  55129. weight: math.unit(3000, "lb"),
  55130. preyCapacity: math.unit(10, "people"),
  55131. name: "Front",
  55132. image: {
  55133. source: "./media/characters/brook/front.svg",
  55134. extra: 909/835,
  55135. bottom: 108/1017
  55136. }
  55137. },
  55138. back: {
  55139. height: math.unit(11, "feet"),
  55140. weight: math.unit(3000, "lb"),
  55141. preyCapacity: math.unit(10, "people"),
  55142. name: "Back",
  55143. image: {
  55144. source: "./media/characters/brook/back.svg",
  55145. extra: 976/916,
  55146. bottom: 34/1010
  55147. }
  55148. },
  55149. backAlt: {
  55150. height: math.unit(11, "feet"),
  55151. weight: math.unit(3000, "lb"),
  55152. preyCapacity: math.unit(10, "people"),
  55153. name: "Back (Alt)",
  55154. image: {
  55155. source: "./media/characters/brook/back-alt.svg",
  55156. extra: 1283/1213,
  55157. bottom: 35/1318
  55158. }
  55159. },
  55160. bust: {
  55161. height: math.unit(9.0859030837, "feet"),
  55162. weight: math.unit(3000, "lb"),
  55163. preyCapacity: math.unit(10, "people"),
  55164. name: "Bust",
  55165. image: {
  55166. source: "./media/characters/brook/bust.svg",
  55167. extra: 2043/1923,
  55168. bottom: 0/2043
  55169. }
  55170. },
  55171. },
  55172. [
  55173. {
  55174. name: "Small",
  55175. height: math.unit(11, "feet"),
  55176. default: true
  55177. },
  55178. {
  55179. name: "Towering",
  55180. height: math.unit(5, "km")
  55181. },
  55182. {
  55183. name: "Enormous",
  55184. height: math.unit(25, "earths")
  55185. },
  55186. ]
  55187. ))
  55188. characterMakers.push(() => makeCharacter(
  55189. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55190. {
  55191. front: {
  55192. height: math.unit(4, "feet"),
  55193. weight: math.unit(150, "lb"),
  55194. name: "Front",
  55195. image: {
  55196. source: "./media/characters/squishi/front.svg",
  55197. extra: 1428/1271,
  55198. bottom: 30/1458
  55199. },
  55200. extraAttributes: {
  55201. "pawSize": {
  55202. name: "Paw Size",
  55203. power: 1,
  55204. type: "length",
  55205. base: math.unit(14, "ShoeSizeMensUS"),
  55206. defaultUnit: "ShoeSizeMensUS"
  55207. },
  55208. }
  55209. },
  55210. side: {
  55211. height: math.unit(4, "feet"),
  55212. weight: math.unit(150, "lb"),
  55213. name: "Side",
  55214. image: {
  55215. source: "./media/characters/squishi/side.svg",
  55216. extra: 1428/1271,
  55217. bottom: 30/1458
  55218. },
  55219. extraAttributes: {
  55220. "pawSize": {
  55221. name: "Paw Size",
  55222. power: 1,
  55223. type: "length",
  55224. base: math.unit(14, "ShoeSizeMensUS"),
  55225. defaultUnit: "ShoeSizeMensUS"
  55226. },
  55227. }
  55228. },
  55229. back: {
  55230. height: math.unit(4, "feet"),
  55231. weight: math.unit(150, "lb"),
  55232. name: "Back",
  55233. image: {
  55234. source: "./media/characters/squishi/back.svg",
  55235. extra: 1428/1271,
  55236. bottom: 30/1458
  55237. },
  55238. extraAttributes: {
  55239. "pawSize": {
  55240. name: "Paw Size",
  55241. power: 1,
  55242. type: "length",
  55243. base: math.unit(14, "ShoeSizeMensUS"),
  55244. defaultUnit: "ShoeSizeMensUS"
  55245. },
  55246. }
  55247. },
  55248. },
  55249. [
  55250. {
  55251. name: "Normal",
  55252. height: math.unit(4, "feet"),
  55253. default: true
  55254. },
  55255. ]
  55256. ))
  55257. characterMakers.push(() => makeCharacter(
  55258. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55259. {
  55260. front: {
  55261. height: math.unit(7 + 8/12, "feet"),
  55262. weight: math.unit(333, "lb"),
  55263. name: "Front",
  55264. image: {
  55265. source: "./media/characters/vincent-vasroc/front.svg",
  55266. extra: 1962/1860,
  55267. bottom: 41/2003
  55268. }
  55269. },
  55270. back: {
  55271. height: math.unit(7 + 8/12, "feet"),
  55272. weight: math.unit(333, "lb"),
  55273. name: "Back",
  55274. image: {
  55275. source: "./media/characters/vincent-vasroc/back.svg",
  55276. extra: 1952/1815,
  55277. bottom: 33/1985
  55278. }
  55279. },
  55280. paw: {
  55281. height: math.unit(1.24, "feet"),
  55282. name: "Paw",
  55283. image: {
  55284. source: "./media/characters/vincent-vasroc/paw.svg"
  55285. }
  55286. },
  55287. ear: {
  55288. height: math.unit(0.75, "feet"),
  55289. name: "Ear",
  55290. image: {
  55291. source: "./media/characters/vincent-vasroc/ear.svg"
  55292. }
  55293. },
  55294. },
  55295. [
  55296. {
  55297. name: "Nano",
  55298. height: math.unit(92, "micrometers")
  55299. },
  55300. {
  55301. name: "Normal",
  55302. height: math.unit(7 + 8/12, "feet"),
  55303. default: true
  55304. },
  55305. ]
  55306. ))
  55307. characterMakers.push(() => makeCharacter(
  55308. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55309. {
  55310. frontNsfw: {
  55311. height: math.unit(40, "feet"),
  55312. weight: math.unit(58, "tons"),
  55313. name: "Front (NSFW)",
  55314. image: {
  55315. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55316. extra: 1265/965,
  55317. bottom: 155/1420
  55318. }
  55319. },
  55320. frontSfw: {
  55321. height: math.unit(40, "feet"),
  55322. weight: math.unit(58, "tons"),
  55323. name: "Front (SFW)",
  55324. image: {
  55325. source: "./media/characters/ru-kahn/front-sfw.svg",
  55326. extra: 1265/965,
  55327. bottom: 80/1345
  55328. }
  55329. },
  55330. },
  55331. [
  55332. {
  55333. name: "Small",
  55334. height: math.unit(4, "feet")
  55335. },
  55336. {
  55337. name: "Normal",
  55338. height: math.unit(40, "feet"),
  55339. default: true
  55340. },
  55341. {
  55342. name: "Macro",
  55343. height: math.unit(400, "feet")
  55344. },
  55345. ]
  55346. ))
  55347. characterMakers.push(() => makeCharacter(
  55348. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55349. {
  55350. frontNude: {
  55351. height: math.unit(6 + 5/12, "feet"),
  55352. name: "Front (Nude)",
  55353. image: {
  55354. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55355. extra: 1369/1366,
  55356. bottom: 68/1437
  55357. }
  55358. },
  55359. frontDressed: {
  55360. height: math.unit(6 + 5/12, "feet"),
  55361. name: "Front (Dressed)",
  55362. image: {
  55363. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55364. extra: 1369/1366,
  55365. bottom: 68/1437
  55366. }
  55367. },
  55368. },
  55369. [
  55370. {
  55371. name: "Normal",
  55372. height: math.unit(6 + 5/12, "feet"),
  55373. default: true
  55374. },
  55375. {
  55376. name: "Maximum",
  55377. height: math.unit(1930, "feet")
  55378. },
  55379. ]
  55380. ))
  55381. characterMakers.push(() => makeCharacter(
  55382. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55383. {
  55384. front: {
  55385. height: math.unit(5 + 6/12, "feet"),
  55386. name: "Front",
  55387. image: {
  55388. source: "./media/characters/kaja/front.svg",
  55389. extra: 1874/1514,
  55390. bottom: 117/1991
  55391. }
  55392. },
  55393. },
  55394. [
  55395. {
  55396. name: "Normal",
  55397. height: math.unit(5 + 6/12, "feet"),
  55398. default: true
  55399. },
  55400. ]
  55401. ))
  55402. characterMakers.push(() => makeCharacter(
  55403. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55404. {
  55405. front: {
  55406. height: math.unit(5 + 9/12, "feet"),
  55407. weight: math.unit(200, "lb"),
  55408. name: "Front",
  55409. image: {
  55410. source: "./media/characters/mark-smith/front.svg",
  55411. extra: 1004/943,
  55412. bottom: 58/1062
  55413. }
  55414. },
  55415. back: {
  55416. height: math.unit(5 + 9/12, "feet"),
  55417. weight: math.unit(200, "lb"),
  55418. name: "Back",
  55419. image: {
  55420. source: "./media/characters/mark-smith/back.svg",
  55421. extra: 1023/953,
  55422. bottom: 24/1047
  55423. }
  55424. },
  55425. head: {
  55426. height: math.unit(1.82, "feet"),
  55427. name: "Head",
  55428. image: {
  55429. source: "./media/characters/mark-smith/head.svg"
  55430. }
  55431. },
  55432. hand: {
  55433. height: math.unit(1.4, "feet"),
  55434. name: "Hand",
  55435. image: {
  55436. source: "./media/characters/mark-smith/hand.svg"
  55437. }
  55438. },
  55439. paw: {
  55440. height: math.unit(1.69, "feet"),
  55441. name: "Paw",
  55442. image: {
  55443. source: "./media/characters/mark-smith/paw.svg"
  55444. }
  55445. },
  55446. },
  55447. [
  55448. {
  55449. name: "Micro",
  55450. height: math.unit(0.25, "inches")
  55451. },
  55452. {
  55453. name: "Normal",
  55454. height: math.unit(5 + 9/12, "feet"),
  55455. default: true
  55456. },
  55457. {
  55458. name: "Macro",
  55459. height: math.unit(500, "feet")
  55460. },
  55461. ]
  55462. ))
  55463. characterMakers.push(() => makeCharacter(
  55464. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55465. {
  55466. frontNude: {
  55467. height: math.unit(6, "feet"),
  55468. name: "Front (Nude)",
  55469. image: {
  55470. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55471. extra: 1384/1321,
  55472. bottom: 57/1441
  55473. }
  55474. },
  55475. frontDressed: {
  55476. height: math.unit(6, "feet"),
  55477. name: "Front (Dressed)",
  55478. image: {
  55479. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55480. extra: 1384/1321,
  55481. bottom: 57/1441
  55482. }
  55483. },
  55484. },
  55485. [
  55486. {
  55487. name: "Normal",
  55488. height: math.unit(6, "feet"),
  55489. default: true
  55490. },
  55491. {
  55492. name: "Maximum",
  55493. height: math.unit(1776, "feet")
  55494. },
  55495. ]
  55496. ))
  55497. characterMakers.push(() => makeCharacter(
  55498. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55499. {
  55500. front: {
  55501. height: math.unit(2 + 4/12, "feet"),
  55502. weight: math.unit(350, "lb"),
  55503. name: "Front",
  55504. image: {
  55505. source: "./media/characters/devos/front.svg",
  55506. extra: 958/852,
  55507. bottom: 143/1101
  55508. }
  55509. },
  55510. },
  55511. [
  55512. {
  55513. name: "Base",
  55514. height: math.unit(2 + 4/12, "feet"),
  55515. default: true
  55516. },
  55517. ]
  55518. ))
  55519. characterMakers.push(() => makeCharacter(
  55520. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55521. {
  55522. front: {
  55523. height: math.unit(9 + 2/12, "feet"),
  55524. name: "Front",
  55525. image: {
  55526. source: "./media/characters/hiveheart/front.svg",
  55527. extra: 394/364,
  55528. bottom: 65/459
  55529. }
  55530. },
  55531. back: {
  55532. height: math.unit(9 + 2/12, "feet"),
  55533. name: "Back",
  55534. image: {
  55535. source: "./media/characters/hiveheart/back.svg",
  55536. extra: 374/357,
  55537. bottom: 63/437
  55538. }
  55539. },
  55540. },
  55541. [
  55542. {
  55543. name: "Base",
  55544. height: math.unit(9 + 2/12, "feet"),
  55545. default: true
  55546. },
  55547. ]
  55548. ))
  55549. characterMakers.push(() => makeCharacter(
  55550. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55551. {
  55552. front: {
  55553. height: math.unit(2.5, "inches"),
  55554. weight: math.unit(0.6, "oz"),
  55555. name: "Front",
  55556. image: {
  55557. source: "./media/characters/bryn/front.svg",
  55558. extra: 1480/1205,
  55559. bottom: 27/1507
  55560. }
  55561. },
  55562. back: {
  55563. height: math.unit(2.5, "inches"),
  55564. weight: math.unit(0.6, "oz"),
  55565. name: "Back",
  55566. image: {
  55567. source: "./media/characters/bryn/back.svg",
  55568. extra: 1475/1201,
  55569. bottom: 39/1514
  55570. }
  55571. },
  55572. foot: {
  55573. height: math.unit(0.4, "inches"),
  55574. name: "Foot",
  55575. image: {
  55576. source: "./media/characters/bryn/foot.svg"
  55577. }
  55578. },
  55579. },
  55580. [
  55581. {
  55582. name: "Normal",
  55583. height: math.unit(2.5, "inches"),
  55584. default: true
  55585. },
  55586. ]
  55587. ))
  55588. characterMakers.push(() => makeCharacter(
  55589. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55590. {
  55591. side: {
  55592. height: math.unit(7, "feet"),
  55593. weight: math.unit(657, "kg"),
  55594. name: "Side",
  55595. image: {
  55596. source: "./media/characters/delta/side.svg",
  55597. extra: 781/212,
  55598. bottom: 7/788
  55599. },
  55600. extraAttributes: {
  55601. "wingspan": {
  55602. name: "Wingspan",
  55603. power: 1,
  55604. type: "length",
  55605. base: math.unit(48, "feet")
  55606. },
  55607. "length": {
  55608. name: "Length",
  55609. power: 1,
  55610. type: "length",
  55611. base: math.unit(21, "feet")
  55612. },
  55613. "pawSize": {
  55614. name: "Paw Size",
  55615. power: 2,
  55616. type: "area",
  55617. base: math.unit(1.5*1.4, "feet^2")
  55618. },
  55619. }
  55620. },
  55621. },
  55622. [
  55623. {
  55624. name: "Normal",
  55625. height: math.unit(6, "feet"),
  55626. default: true
  55627. },
  55628. ]
  55629. ))
  55630. characterMakers.push(() => makeCharacter(
  55631. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55632. {
  55633. front: {
  55634. height: math.unit(6, "feet"),
  55635. name: "Front",
  55636. image: {
  55637. source: "./media/characters/pyrow/front.svg",
  55638. extra: 513/486,
  55639. bottom: 14/527
  55640. }
  55641. },
  55642. frontWing: {
  55643. height: math.unit(6, "feet"),
  55644. name: "Front (Wing)",
  55645. image: {
  55646. source: "./media/characters/pyrow/front-wing.svg",
  55647. extra: 539/383,
  55648. bottom: 20/559
  55649. }
  55650. },
  55651. back: {
  55652. height: math.unit(6, "feet"),
  55653. name: "Back",
  55654. image: {
  55655. source: "./media/characters/pyrow/back.svg",
  55656. extra: 500/473,
  55657. bottom: 9/509
  55658. }
  55659. },
  55660. },
  55661. [
  55662. {
  55663. name: "Normal",
  55664. height: math.unit(6, "feet"),
  55665. default: true
  55666. },
  55667. ]
  55668. ))
  55669. characterMakers.push(() => makeCharacter(
  55670. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55671. {
  55672. front: {
  55673. height: math.unit(5, "meters"),
  55674. weight: math.unit(3, "tonnes"),
  55675. name: "Front",
  55676. image: {
  55677. source: "./media/characters/velikan/front.svg",
  55678. extra: 867/744,
  55679. bottom: 71/938
  55680. },
  55681. extraAttributes: {
  55682. "shoeSize": {
  55683. name: "Shoe Size",
  55684. power: 1,
  55685. type: "length",
  55686. base: math.unit(135, "ShoeSizeUK"),
  55687. defaultUnit: "ShoeSizeUK"
  55688. },
  55689. }
  55690. },
  55691. },
  55692. [
  55693. {
  55694. name: "Normal",
  55695. height: math.unit(5, "meters"),
  55696. default: true
  55697. },
  55698. {
  55699. name: "Macro",
  55700. height: math.unit(1, "km")
  55701. },
  55702. {
  55703. name: "Mega Macro",
  55704. height: math.unit(100, "km")
  55705. },
  55706. {
  55707. name: "Giga Macro",
  55708. height: math.unit(2, "megameters")
  55709. },
  55710. {
  55711. name: "Planetary",
  55712. height: math.unit(22, "megameters")
  55713. },
  55714. {
  55715. name: "Solar",
  55716. height: math.unit(8, "gigameters")
  55717. },
  55718. {
  55719. name: "Cosmic",
  55720. height: math.unit(10, "zettameters")
  55721. },
  55722. {
  55723. name: "Omni",
  55724. height: math.unit(9e260, "multiverses")
  55725. },
  55726. ]
  55727. ))
  55728. characterMakers.push(() => makeCharacter(
  55729. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55730. {
  55731. front: {
  55732. height: math.unit(4 + 3/12, "feet"),
  55733. weight: math.unit(90, "lb"),
  55734. name: "Front",
  55735. image: {
  55736. source: "./media/characters/sabiki/front.svg",
  55737. extra: 1662/1423,
  55738. bottom: 65/1727
  55739. }
  55740. },
  55741. },
  55742. [
  55743. {
  55744. name: "Normal",
  55745. height: math.unit(4 + 3/12, "feet"),
  55746. default: true
  55747. },
  55748. ]
  55749. ))
  55750. characterMakers.push(() => makeCharacter(
  55751. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55752. {
  55753. frontSfw: {
  55754. height: math.unit(2, "mm"),
  55755. name: "Front (SFW)",
  55756. image: {
  55757. source: "./media/characters/carmel/front-sfw.svg",
  55758. extra: 1131/1006,
  55759. bottom: 66/1197
  55760. }
  55761. },
  55762. frontNsfw: {
  55763. height: math.unit(2, "mm"),
  55764. name: "Front (NSFW)",
  55765. image: {
  55766. source: "./media/characters/carmel/front-nsfw.svg",
  55767. extra: 1131/1006,
  55768. bottom: 66/1197
  55769. }
  55770. },
  55771. foot: {
  55772. height: math.unit(0.3, "mm"),
  55773. name: "Foot",
  55774. image: {
  55775. source: "./media/characters/carmel/foot.svg"
  55776. }
  55777. },
  55778. tongue: {
  55779. height: math.unit(0.71, "mm"),
  55780. name: "Tongue",
  55781. image: {
  55782. source: "./media/characters/carmel/tongue.svg"
  55783. }
  55784. },
  55785. dick: {
  55786. height: math.unit(0.085, "mm"),
  55787. name: "Dick",
  55788. image: {
  55789. source: "./media/characters/carmel/dick.svg"
  55790. }
  55791. },
  55792. },
  55793. [
  55794. {
  55795. name: "Micro",
  55796. height: math.unit(2, "mm"),
  55797. default: true
  55798. },
  55799. {
  55800. name: "Normal",
  55801. height: math.unit(4 + 8/12, "feet")
  55802. },
  55803. {
  55804. name: "Mega Macro",
  55805. height: math.unit(250, "feet")
  55806. },
  55807. {
  55808. name: "BIGGER",
  55809. height: math.unit(1000, "feet")
  55810. },
  55811. {
  55812. name: "BIGGEST",
  55813. height: math.unit(2, "miles")
  55814. },
  55815. ]
  55816. ))
  55817. characterMakers.push(() => makeCharacter(
  55818. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55819. {
  55820. front: {
  55821. height: math.unit(6.5, "feet"),
  55822. weight: math.unit(198, "lb"),
  55823. name: "Front",
  55824. image: {
  55825. source: "./media/characters/tamani/anthro.svg",
  55826. extra: 930/890,
  55827. bottom: 34/964
  55828. },
  55829. form: "anthro",
  55830. default: true
  55831. },
  55832. side: {
  55833. height: math.unit(6, "feet"),
  55834. weight: math.unit(198*2, "lb"),
  55835. name: "Side",
  55836. image: {
  55837. source: "./media/characters/tamani/feral.svg",
  55838. extra: 559/519,
  55839. bottom: 43/602
  55840. },
  55841. form: "feral"
  55842. },
  55843. },
  55844. [
  55845. {
  55846. name: "Normal",
  55847. height: math.unit(6.5, "feet"),
  55848. default: true,
  55849. form: "anthro"
  55850. },
  55851. {
  55852. name: "Normal",
  55853. height: math.unit(6, "feet"),
  55854. default: true,
  55855. form: "feral"
  55856. },
  55857. ],
  55858. {
  55859. "anthro": {
  55860. name: "Anthro",
  55861. default: true
  55862. },
  55863. "feral": {
  55864. name: "Feral",
  55865. },
  55866. }
  55867. ))
  55868. characterMakers.push(() => makeCharacter(
  55869. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  55870. {
  55871. front: {
  55872. height: math.unit(4 + 1/12, "feet"),
  55873. weight: math.unit(114, "lb"),
  55874. name: "Front",
  55875. image: {
  55876. source: "./media/characters/dex/front.svg",
  55877. extra: 787/680,
  55878. bottom: 18/805
  55879. }
  55880. },
  55881. side: {
  55882. height: math.unit(4 + 1/12, "feet"),
  55883. weight: math.unit(114, "lb"),
  55884. name: "Side",
  55885. image: {
  55886. source: "./media/characters/dex/side.svg",
  55887. extra: 785/680,
  55888. bottom: 12/797
  55889. }
  55890. },
  55891. back: {
  55892. height: math.unit(4 + 1/12, "feet"),
  55893. weight: math.unit(114, "lb"),
  55894. name: "Back",
  55895. image: {
  55896. source: "./media/characters/dex/back.svg",
  55897. extra: 785/681,
  55898. bottom: 17/802
  55899. }
  55900. },
  55901. loungewear: {
  55902. height: math.unit(4 + 1/12, "feet"),
  55903. weight: math.unit(114, "lb"),
  55904. name: "Loungewear",
  55905. image: {
  55906. source: "./media/characters/dex/loungewear.svg",
  55907. extra: 787/680,
  55908. bottom: 18/805
  55909. }
  55910. },
  55911. workout: {
  55912. height: math.unit(4 + 1/12, "feet"),
  55913. weight: math.unit(114, "lb"),
  55914. name: "Workout",
  55915. image: {
  55916. source: "./media/characters/dex/workout.svg",
  55917. extra: 787/680,
  55918. bottom: 18/805
  55919. }
  55920. },
  55921. schoolUniform: {
  55922. height: math.unit(4 + 1/12, "feet"),
  55923. weight: math.unit(114, "lb"),
  55924. name: "School-uniform",
  55925. image: {
  55926. source: "./media/characters/dex/school-uniform.svg",
  55927. extra: 787/680,
  55928. bottom: 18/805
  55929. }
  55930. },
  55931. maw: {
  55932. height: math.unit(0.55, "feet"),
  55933. name: "Maw",
  55934. image: {
  55935. source: "./media/characters/dex/maw.svg"
  55936. }
  55937. },
  55938. paw: {
  55939. height: math.unit(0.87, "feet"),
  55940. name: "Paw",
  55941. image: {
  55942. source: "./media/characters/dex/paw.svg"
  55943. }
  55944. },
  55945. bust: {
  55946. height: math.unit(1.67, "feet"),
  55947. name: "Bust",
  55948. image: {
  55949. source: "./media/characters/dex/bust.svg"
  55950. }
  55951. },
  55952. },
  55953. [
  55954. {
  55955. name: "Normal",
  55956. height: math.unit(4 + 1/12, "feet"),
  55957. default: true
  55958. },
  55959. ]
  55960. ))
  55961. characterMakers.push(() => makeCharacter(
  55962. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  55963. {
  55964. front: {
  55965. height: math.unit(4 + 3/12, "feet"),
  55966. weight: math.unit(60, "lb"),
  55967. name: "Front",
  55968. image: {
  55969. source: "./media/characters/silke/front.svg",
  55970. extra: 1334/1122,
  55971. bottom: 21/1355
  55972. }
  55973. },
  55974. back: {
  55975. height: math.unit(4 + 3/12, "feet"),
  55976. weight: math.unit(60, "lb"),
  55977. name: "Back",
  55978. image: {
  55979. source: "./media/characters/silke/back.svg",
  55980. extra: 1328/1092,
  55981. bottom: 16/1344
  55982. }
  55983. },
  55984. dressed: {
  55985. height: math.unit(4 + 3/12, "feet"),
  55986. weight: math.unit(60, "lb"),
  55987. name: "Dressed",
  55988. image: {
  55989. source: "./media/characters/silke/dressed.svg",
  55990. extra: 1334/1122,
  55991. bottom: 43/1377
  55992. }
  55993. },
  55994. },
  55995. [
  55996. {
  55997. name: "Normal",
  55998. height: math.unit(4 + 3/12, "feet"),
  55999. default: true
  56000. },
  56001. ]
  56002. ))
  56003. characterMakers.push(() => makeCharacter(
  56004. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56005. {
  56006. front: {
  56007. height: math.unit(1.58, "meters"),
  56008. weight: math.unit(47, "kg"),
  56009. name: "Front",
  56010. image: {
  56011. source: "./media/characters/wireshark/front.svg",
  56012. extra: 883/838,
  56013. bottom: 66/949
  56014. }
  56015. },
  56016. },
  56017. [
  56018. {
  56019. name: "Normal",
  56020. height: math.unit(1.58, "meters"),
  56021. default: true
  56022. },
  56023. ]
  56024. ))
  56025. characterMakers.push(() => makeCharacter(
  56026. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56027. {
  56028. front: {
  56029. height: math.unit(6, "meters"),
  56030. weight: math.unit(15000, "kg"),
  56031. name: "Front",
  56032. image: {
  56033. source: "./media/characters/gallagher/front.svg",
  56034. extra: 532/493,
  56035. bottom: 0/532
  56036. }
  56037. },
  56038. },
  56039. [
  56040. {
  56041. name: "Normal",
  56042. height: math.unit(6, "meters"),
  56043. default: true
  56044. },
  56045. ]
  56046. ))
  56047. characterMakers.push(() => makeCharacter(
  56048. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56049. {
  56050. front: {
  56051. height: math.unit(2.4, "meters"),
  56052. weight: math.unit(270, "kg"),
  56053. name: "Front",
  56054. image: {
  56055. source: "./media/characters/alice/front.svg",
  56056. extra: 950/900,
  56057. bottom: 36/986
  56058. }
  56059. },
  56060. side: {
  56061. height: math.unit(2.4, "meters"),
  56062. weight: math.unit(270, "kg"),
  56063. name: "Side",
  56064. image: {
  56065. source: "./media/characters/alice/side.svg",
  56066. extra: 921/876,
  56067. bottom: 19/940
  56068. }
  56069. },
  56070. dressed: {
  56071. height: math.unit(2.4, "meters"),
  56072. weight: math.unit(270, "kg"),
  56073. name: "Dressed",
  56074. image: {
  56075. source: "./media/characters/alice/dressed.svg",
  56076. extra: 905/850,
  56077. bottom: 81/986
  56078. }
  56079. },
  56080. fishnet: {
  56081. height: math.unit(2.4, "meters"),
  56082. weight: math.unit(270, "kg"),
  56083. name: "Fishnet",
  56084. image: {
  56085. source: "./media/characters/alice/fishnet.svg",
  56086. extra: 905/850,
  56087. bottom: 81/986
  56088. }
  56089. },
  56090. },
  56091. [
  56092. {
  56093. name: "Normal",
  56094. height: math.unit(2.4, "meters"),
  56095. default: true
  56096. },
  56097. ]
  56098. ))
  56099. characterMakers.push(() => makeCharacter(
  56100. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56101. {
  56102. front: {
  56103. height: math.unit(175.25, "feet"),
  56104. name: "Front",
  56105. image: {
  56106. source: "./media/characters/fio/front.svg",
  56107. extra: 1883/1591,
  56108. bottom: 34/1917
  56109. }
  56110. },
  56111. },
  56112. [
  56113. {
  56114. name: "Normal",
  56115. height: math.unit(175.25, "cm"),
  56116. default: true
  56117. },
  56118. ]
  56119. ))
  56120. characterMakers.push(() => makeCharacter(
  56121. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56122. {
  56123. side: {
  56124. height: math.unit(6, "meters"),
  56125. weight: math.unit(3400, "kg"),
  56126. preyCapacity: math.unit(1700, "liters"),
  56127. name: "Side",
  56128. image: {
  56129. source: "./media/characters/hass/side.svg",
  56130. extra: 1058/997,
  56131. bottom: 177/1235
  56132. }
  56133. },
  56134. feeding: {
  56135. height: math.unit(6*0.63, "meters"),
  56136. weight: math.unit(3400, "kg"),
  56137. preyCapacity: math.unit(1700, "liters"),
  56138. name: "Feeding",
  56139. image: {
  56140. source: "./media/characters/hass/feeding.svg",
  56141. extra: 689/579,
  56142. bottom: 146/835
  56143. }
  56144. },
  56145. guts: {
  56146. height: math.unit(6, "meters"),
  56147. weight: math.unit(3400, "kg"),
  56148. name: "Guts",
  56149. image: {
  56150. source: "./media/characters/hass/guts.svg",
  56151. extra: 1223/1198,
  56152. bottom: 182/1405
  56153. }
  56154. },
  56155. dickFront: {
  56156. height: math.unit(1.4, "meters"),
  56157. name: "Dick (Front)",
  56158. image: {
  56159. source: "./media/characters/hass/dick-front.svg"
  56160. }
  56161. },
  56162. dickSide: {
  56163. height: math.unit(1.3, "meters"),
  56164. name: "Dick (Side)",
  56165. image: {
  56166. source: "./media/characters/hass/dick-side.svg"
  56167. }
  56168. },
  56169. dickBack: {
  56170. height: math.unit(1.4, "meters"),
  56171. name: "Dick (Back)",
  56172. image: {
  56173. source: "./media/characters/hass/dick-back.svg"
  56174. }
  56175. },
  56176. },
  56177. [
  56178. {
  56179. name: "Normal",
  56180. height: math.unit(6, "meters"),
  56181. default: true
  56182. },
  56183. ]
  56184. ))
  56185. characterMakers.push(() => makeCharacter(
  56186. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56187. {
  56188. front: {
  56189. height: math.unit(4, "feet"),
  56190. weight: math.unit(60, "lb"),
  56191. name: "Front",
  56192. image: {
  56193. source: "./media/characters/hickory-finnegan/front.svg",
  56194. extra: 444/411,
  56195. bottom: 10/454
  56196. }
  56197. },
  56198. side: {
  56199. height: math.unit(4, "feet"),
  56200. weight: math.unit(60, "lb"),
  56201. name: "Side",
  56202. image: {
  56203. source: "./media/characters/hickory-finnegan/side.svg",
  56204. extra: 444/411,
  56205. bottom: 10/454
  56206. }
  56207. },
  56208. back: {
  56209. height: math.unit(4, "feet"),
  56210. weight: math.unit(60, "lb"),
  56211. name: "Back",
  56212. image: {
  56213. source: "./media/characters/hickory-finnegan/back.svg",
  56214. extra: 444/411,
  56215. bottom: 10/454
  56216. }
  56217. },
  56218. },
  56219. [
  56220. {
  56221. name: "Normal",
  56222. height: math.unit(4, "feet"),
  56223. default: true
  56224. },
  56225. ]
  56226. ))
  56227. characterMakers.push(() => makeCharacter(
  56228. { name: "Robin Phox", species: ["snivy", "yoshi"], tags: ["anthro"] },
  56229. {
  56230. snivy_front: {
  56231. height: math.unit(2, "feet"),
  56232. weight: math.unit(17.9, "lb"),
  56233. name: "Front",
  56234. image: {
  56235. source: "./media/characters/robin-phox/snivy-front.svg",
  56236. extra: 569/504,
  56237. bottom: 33/602
  56238. },
  56239. form: "snivy",
  56240. default: true
  56241. },
  56242. snivy_frontNsfw: {
  56243. height: math.unit(2, "feet"),
  56244. weight: math.unit(17.9, "lb"),
  56245. name: "Front (NSFW)",
  56246. image: {
  56247. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56248. extra: 569/504,
  56249. bottom: 33/602
  56250. },
  56251. form: "snivy",
  56252. },
  56253. snivy_back: {
  56254. height: math.unit(2, "feet"),
  56255. weight: math.unit(17.9, "lb"),
  56256. name: "Back",
  56257. image: {
  56258. source: "./media/characters/robin-phox/snivy-back.svg",
  56259. extra: 577/508,
  56260. bottom: 21/598
  56261. },
  56262. form: "snivy",
  56263. },
  56264. snivy_foot: {
  56265. height: math.unit(0.68, "feet"),
  56266. name: "Foot",
  56267. image: {
  56268. source: "./media/characters/robin-phox/snivy-foot.svg"
  56269. },
  56270. form: "snivy",
  56271. },
  56272. snivy_sole: {
  56273. height: math.unit(0.68, "feet"),
  56274. name: "Sole",
  56275. image: {
  56276. source: "./media/characters/robin-phox/snivy-sole.svg"
  56277. },
  56278. form: "snivy",
  56279. },
  56280. yoshi_front: {
  56281. height: math.unit(6, "feet"),
  56282. weight: math.unit(150, "lb"),
  56283. name: "Front",
  56284. image: {
  56285. source: "./media/characters/robin-phox/yoshi-front.svg",
  56286. extra: 890/792,
  56287. bottom: 29/919
  56288. },
  56289. form: "yoshi",
  56290. default: true
  56291. },
  56292. yoshi_frontNsfw: {
  56293. height: math.unit(6, "feet"),
  56294. weight: math.unit(150, "lb"),
  56295. name: "Front (NSFW)",
  56296. image: {
  56297. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56298. extra: 890/792,
  56299. bottom: 29/919
  56300. },
  56301. form: "yoshi",
  56302. },
  56303. yoshi_back: {
  56304. height: math.unit(6, "feet"),
  56305. weight: math.unit(150, "lb"),
  56306. name: "Back",
  56307. image: {
  56308. source: "./media/characters/robin-phox/yoshi-back.svg",
  56309. extra: 890/792,
  56310. bottom: 29/919
  56311. },
  56312. form: "yoshi",
  56313. },
  56314. yoshi_foot: {
  56315. height: math.unit(1.5, "feet"),
  56316. name: "Foot",
  56317. image: {
  56318. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56319. },
  56320. form: "yoshi",
  56321. },
  56322. },
  56323. [
  56324. {
  56325. name: "Normal",
  56326. height: math.unit(2, "feet"),
  56327. default: true,
  56328. form: "snivy"
  56329. },
  56330. {
  56331. name: "Normal",
  56332. height: math.unit(6, "feet"),
  56333. default: true,
  56334. form: "yoshi"
  56335. },
  56336. {
  56337. name: "Macro",
  56338. height: math.unit(500, "feet"),
  56339. allForms: true
  56340. },
  56341. {
  56342. name: "Mega Macro",
  56343. height: math.unit(10, "earths"),
  56344. allForms: true
  56345. },
  56346. {
  56347. name: "Giga Macro",
  56348. height: math.unit(1, "galaxy"),
  56349. allForms: true
  56350. },
  56351. {
  56352. name: "Godly Macro",
  56353. height: math.unit(1e10, "multiverses"),
  56354. allForms: true
  56355. },
  56356. ],
  56357. {
  56358. "snivy": {
  56359. name: "Snivy",
  56360. default: true
  56361. },
  56362. "yoshi": {
  56363. name: "Yoshi",
  56364. },
  56365. }
  56366. ))
  56367. //characters
  56368. function makeCharacters() {
  56369. const results = [];
  56370. characterMakers.forEach(character => {
  56371. results.push(character());
  56372. });
  56373. return results;
  56374. }