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

58650 行
1.5 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. "nedynvor": {
  2186. name: "Nedynvor",
  2187. parents: ["avian"]
  2188. },
  2189. }
  2190. //species
  2191. function getSpeciesInfo(speciesList) {
  2192. let result = new Set();
  2193. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2194. result.add(entry)
  2195. });
  2196. return Array.from(result);
  2197. };
  2198. function getSpeciesInfoHelper(species) {
  2199. if (!speciesData[species]) {
  2200. console.warn(species + " doesn't exist");
  2201. return [];
  2202. }
  2203. if (speciesData[species].parents) {
  2204. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2205. } else {
  2206. return [species];
  2207. }
  2208. }
  2209. characterMakers.push(() => makeCharacter(
  2210. {
  2211. name: "Fen",
  2212. species: ["crux"],
  2213. description: {
  2214. title: "Bio",
  2215. text: "Very furry. Sheds on everything."
  2216. },
  2217. tags: [
  2218. "anthro",
  2219. "goo"
  2220. ]
  2221. },
  2222. {
  2223. front: {
  2224. height: math.unit(12, "feet"),
  2225. weight: math.unit(2400, "lb"),
  2226. preyCapacity: math.unit(1, "people"),
  2227. name: "Front",
  2228. image: {
  2229. source: "./media/characters/fen/front.svg",
  2230. extra: 1804/1562,
  2231. bottom: 205/2009
  2232. },
  2233. extraAttributes: {
  2234. pawSize: {
  2235. name: "Paw Size",
  2236. power: 2,
  2237. type: "area",
  2238. base: math.unit(0.35, "m^2")
  2239. }
  2240. }
  2241. },
  2242. diving: {
  2243. height: math.unit(4.9, "meters"),
  2244. weight: math.unit(2400, "lb"),
  2245. name: "Diving",
  2246. image: {
  2247. source: "./media/characters/fen/diving.svg"
  2248. }
  2249. },
  2250. sleeby: {
  2251. height: math.unit(3.45, "meters"),
  2252. weight: math.unit(2400, "lb"),
  2253. name: "Sleeby",
  2254. image: {
  2255. source: "./media/characters/fen/sleeby.svg"
  2256. }
  2257. },
  2258. goo: {
  2259. height: math.unit(12, "feet"),
  2260. weight: math.unit(3600, "lb"),
  2261. volume: math.unit(1000, "liters"),
  2262. preyCapacity: math.unit(6, "people"),
  2263. name: "Goo",
  2264. image: {
  2265. source: "./media/characters/fen/goo.svg",
  2266. extra: 1307/1071,
  2267. bottom: 134/1441
  2268. }
  2269. },
  2270. horror: {
  2271. height: math.unit(13.6, "feet"),
  2272. weight: math.unit(2400, "lb"),
  2273. preyCapacity: math.unit(1, "people"),
  2274. name: "Horror",
  2275. image: {
  2276. source: "./media/characters/fen/horror.svg",
  2277. extra: 893/797,
  2278. bottom: 0/893
  2279. }
  2280. },
  2281. gooNsfw: {
  2282. height: math.unit(12, "feet"),
  2283. weight: math.unit(3750, "lb"),
  2284. volume: math.unit(1000, "liters"),
  2285. preyCapacity: math.unit(6, "people"),
  2286. name: "Goo (NSFW)",
  2287. image: {
  2288. source: "./media/characters/fen/goo-nsfw.svg",
  2289. extra: 1875/1734,
  2290. bottom: 122/1997
  2291. }
  2292. },
  2293. maw: {
  2294. height: math.unit(5.03, "feet"),
  2295. name: "Maw",
  2296. image: {
  2297. source: "./media/characters/fen/maw.svg"
  2298. }
  2299. },
  2300. gooCeiling: {
  2301. height: math.unit(6.6, "feet"),
  2302. weight: math.unit(3000, "lb"),
  2303. volume: math.unit(1000, "liters"),
  2304. preyCapacity: math.unit(6, "people"),
  2305. name: "Maw (Goo)",
  2306. image: {
  2307. source: "./media/characters/fen/goo-maw.svg"
  2308. }
  2309. },
  2310. paw: {
  2311. height: math.unit(3.77, "feet"),
  2312. name: "Paw",
  2313. image: {
  2314. source: "./media/characters/fen/paw.svg"
  2315. },
  2316. extraAttributes: {
  2317. "toeSize": {
  2318. name: "Toe Size",
  2319. power: 2,
  2320. type: "area",
  2321. base: math.unit(0.02875, "m^2")
  2322. },
  2323. "pawSize": {
  2324. name: "Paw Size",
  2325. power: 2,
  2326. type: "area",
  2327. base: math.unit(0.378, "m^2")
  2328. },
  2329. }
  2330. },
  2331. tail: {
  2332. height: math.unit(12.1, "feet"),
  2333. name: "Tail",
  2334. image: {
  2335. source: "./media/characters/fen/tail.svg"
  2336. }
  2337. },
  2338. tailFull: {
  2339. height: math.unit(12.1, "feet"),
  2340. name: "Full Tail",
  2341. image: {
  2342. source: "./media/characters/fen/tail-full.svg"
  2343. }
  2344. },
  2345. back: {
  2346. height: math.unit(12, "feet"),
  2347. weight: math.unit(2400, "lb"),
  2348. name: "Back",
  2349. image: {
  2350. source: "./media/characters/fen/back.svg",
  2351. },
  2352. info: {
  2353. description: {
  2354. mode: "append",
  2355. text: "\n\nHe is not currently looking at you."
  2356. }
  2357. }
  2358. },
  2359. full: {
  2360. height: math.unit(1.85, "meter"),
  2361. weight: math.unit(3200, "lb"),
  2362. name: "Full",
  2363. image: {
  2364. source: "./media/characters/fen/full.svg",
  2365. extra: 1133/859,
  2366. bottom: 145/1278
  2367. },
  2368. info: {
  2369. description: {
  2370. mode: "append",
  2371. text: "\n\nMunch."
  2372. }
  2373. }
  2374. },
  2375. gooLounging: {
  2376. height: math.unit(4.53, "feet"),
  2377. weight: math.unit(3000, "lb"),
  2378. preyCapacity: math.unit(6, "people"),
  2379. name: "Goo (Lounging)",
  2380. image: {
  2381. source: "./media/characters/fen/goo-lounging.svg",
  2382. bottom: 116 / 613
  2383. }
  2384. },
  2385. lounging: {
  2386. height: math.unit(10.52, "feet"),
  2387. weight: math.unit(2400, "lb"),
  2388. name: "Lounging",
  2389. image: {
  2390. source: "./media/characters/fen/lounging.svg"
  2391. }
  2392. },
  2393. },
  2394. [
  2395. {
  2396. name: "Small",
  2397. height: math.unit(2.2428, "meter")
  2398. },
  2399. {
  2400. name: "Normal",
  2401. height: math.unit(12, "feet"),
  2402. default: true,
  2403. },
  2404. {
  2405. name: "Big",
  2406. height: math.unit(20, "feet")
  2407. },
  2408. {
  2409. name: "Minimacro",
  2410. height: math.unit(40, "feet"),
  2411. info: {
  2412. description: {
  2413. mode: "append",
  2414. text: "\n\nTOO DAMN BIG"
  2415. }
  2416. }
  2417. },
  2418. {
  2419. name: "Macro",
  2420. height: math.unit(100, "feet"),
  2421. info: {
  2422. description: {
  2423. mode: "append",
  2424. text: "\n\nTOO DAMN BIG"
  2425. }
  2426. }
  2427. },
  2428. {
  2429. name: "Megamacro",
  2430. height: math.unit(2, "miles")
  2431. },
  2432. {
  2433. name: "Gigamacro",
  2434. height: math.unit(10, "earths")
  2435. },
  2436. ]
  2437. ))
  2438. characterMakers.push(() => makeCharacter(
  2439. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2440. {
  2441. front: {
  2442. height: math.unit(183, "cm"),
  2443. weight: math.unit(80, "kg"),
  2444. name: "Front",
  2445. image: {
  2446. source: "./media/characters/sofia-fluttertail/front.svg",
  2447. bottom: 0.01,
  2448. extra: 2154 / 2081
  2449. }
  2450. },
  2451. frontAlt: {
  2452. height: math.unit(183, "cm"),
  2453. weight: math.unit(80, "kg"),
  2454. name: "Front (alt)",
  2455. image: {
  2456. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2457. }
  2458. },
  2459. back: {
  2460. height: math.unit(183, "cm"),
  2461. weight: math.unit(80, "kg"),
  2462. name: "Back",
  2463. image: {
  2464. source: "./media/characters/sofia-fluttertail/back.svg"
  2465. }
  2466. },
  2467. kneeling: {
  2468. height: math.unit(125, "cm"),
  2469. weight: math.unit(80, "kg"),
  2470. name: "Kneeling",
  2471. image: {
  2472. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2473. extra: 1033 / 977,
  2474. bottom: 23.7 / 1057
  2475. }
  2476. },
  2477. maw: {
  2478. height: math.unit(183 / 5, "cm"),
  2479. name: "Maw",
  2480. image: {
  2481. source: "./media/characters/sofia-fluttertail/maw.svg"
  2482. }
  2483. },
  2484. mawcloseup: {
  2485. height: math.unit(183 / 5 * 0.41, "cm"),
  2486. name: "Maw (Closeup)",
  2487. image: {
  2488. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2489. }
  2490. },
  2491. paws: {
  2492. height: math.unit(1.17, "feet"),
  2493. name: "Paws",
  2494. image: {
  2495. source: "./media/characters/sofia-fluttertail/paws.svg",
  2496. extra: 851 / 851,
  2497. bottom: 17 / 868
  2498. }
  2499. },
  2500. },
  2501. [
  2502. {
  2503. name: "Normal",
  2504. height: math.unit(1.83, "meter")
  2505. },
  2506. {
  2507. name: "Size Thief",
  2508. height: math.unit(18, "feet")
  2509. },
  2510. {
  2511. name: "50 Foot Collie",
  2512. height: math.unit(50, "feet")
  2513. },
  2514. {
  2515. name: "Macro",
  2516. height: math.unit(96, "feet"),
  2517. default: true
  2518. },
  2519. {
  2520. name: "Megamerger",
  2521. height: math.unit(650, "feet")
  2522. },
  2523. ]
  2524. ))
  2525. characterMakers.push(() => makeCharacter(
  2526. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2527. {
  2528. front: {
  2529. height: math.unit(7, "feet"),
  2530. weight: math.unit(100, "kg"),
  2531. name: "Front",
  2532. image: {
  2533. source: "./media/characters/march/front.svg",
  2534. extra: 1992/1851,
  2535. bottom: 39/2031
  2536. }
  2537. },
  2538. foot: {
  2539. height: math.unit(0.9, "feet"),
  2540. name: "Foot",
  2541. image: {
  2542. source: "./media/characters/march/foot.svg"
  2543. }
  2544. },
  2545. },
  2546. [
  2547. {
  2548. name: "Normal",
  2549. height: math.unit(7.9, "feet")
  2550. },
  2551. {
  2552. name: "Macro",
  2553. height: math.unit(220, "meters")
  2554. },
  2555. {
  2556. name: "Megamacro",
  2557. height: math.unit(2.98, "km"),
  2558. default: true
  2559. },
  2560. {
  2561. name: "Gigamacro",
  2562. height: math.unit(15963, "km")
  2563. },
  2564. {
  2565. name: "Teramacro",
  2566. height: math.unit(2980000000, "km")
  2567. },
  2568. {
  2569. name: "Examacro",
  2570. height: math.unit(250, "parsecs")
  2571. },
  2572. ]
  2573. ))
  2574. characterMakers.push(() => makeCharacter(
  2575. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2576. {
  2577. front: {
  2578. height: math.unit(6, "feet"),
  2579. weight: math.unit(60, "kg"),
  2580. name: "Front",
  2581. image: {
  2582. source: "./media/characters/noir/front.svg",
  2583. extra: 1,
  2584. bottom: 0.032
  2585. }
  2586. },
  2587. },
  2588. [
  2589. {
  2590. name: "Normal",
  2591. height: math.unit(6.6, "feet")
  2592. },
  2593. {
  2594. name: "Macro",
  2595. height: math.unit(500, "feet")
  2596. },
  2597. {
  2598. name: "Megamacro",
  2599. height: math.unit(2.5, "km"),
  2600. default: true
  2601. },
  2602. {
  2603. name: "Gigamacro",
  2604. height: math.unit(22500, "km")
  2605. },
  2606. {
  2607. name: "Teramacro",
  2608. height: math.unit(2500000000, "km")
  2609. },
  2610. {
  2611. name: "Examacro",
  2612. height: math.unit(200, "parsecs")
  2613. },
  2614. ]
  2615. ))
  2616. characterMakers.push(() => makeCharacter(
  2617. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2618. {
  2619. front: {
  2620. height: math.unit(7, "feet"),
  2621. weight: math.unit(100, "kg"),
  2622. name: "Front",
  2623. image: {
  2624. source: "./media/characters/okuri/front.svg",
  2625. extra: 739/665,
  2626. bottom: 39/778
  2627. }
  2628. },
  2629. back: {
  2630. height: math.unit(7, "feet"),
  2631. weight: math.unit(100, "kg"),
  2632. name: "Back",
  2633. image: {
  2634. source: "./media/characters/okuri/back.svg",
  2635. extra: 734/653,
  2636. bottom: 13/747
  2637. }
  2638. },
  2639. sitting: {
  2640. height: math.unit(2.95, "feet"),
  2641. weight: math.unit(100, "kg"),
  2642. name: "Sitting",
  2643. image: {
  2644. source: "./media/characters/okuri/sitting.svg",
  2645. extra: 370/318,
  2646. bottom: 99/469
  2647. }
  2648. },
  2649. },
  2650. [
  2651. {
  2652. name: "Smallest",
  2653. height: math.unit(5 + 2/12, "feet")
  2654. },
  2655. {
  2656. name: "Smaller",
  2657. height: math.unit(300, "feet")
  2658. },
  2659. {
  2660. name: "Small",
  2661. height: math.unit(1000, "feet")
  2662. },
  2663. {
  2664. name: "Macro",
  2665. height: math.unit(1, "mile")
  2666. },
  2667. {
  2668. name: "Mega Macro (Small)",
  2669. height: math.unit(20, "km")
  2670. },
  2671. {
  2672. name: "Mega Macro (Large)",
  2673. height: math.unit(600, "km")
  2674. },
  2675. {
  2676. name: "Giga Macro",
  2677. height: math.unit(10000, "km")
  2678. },
  2679. {
  2680. name: "Normal",
  2681. height: math.unit(577560, "km"),
  2682. default: true
  2683. },
  2684. {
  2685. name: "Large",
  2686. height: math.unit(4, "galaxies")
  2687. },
  2688. {
  2689. name: "Largest",
  2690. height: math.unit(15, "multiverses")
  2691. },
  2692. ]
  2693. ))
  2694. characterMakers.push(() => makeCharacter(
  2695. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2696. {
  2697. front: {
  2698. height: math.unit(7, "feet"),
  2699. weight: math.unit(100, "kg"),
  2700. name: "Front",
  2701. image: {
  2702. source: "./media/characters/manny/front.svg",
  2703. extra: 1,
  2704. bottom: 0.06
  2705. }
  2706. },
  2707. back: {
  2708. height: math.unit(7, "feet"),
  2709. weight: math.unit(100, "kg"),
  2710. name: "Back",
  2711. image: {
  2712. source: "./media/characters/manny/back.svg",
  2713. extra: 1,
  2714. bottom: 0.014
  2715. }
  2716. },
  2717. },
  2718. [
  2719. {
  2720. name: "Normal",
  2721. height: math.unit(7, "feet"),
  2722. },
  2723. {
  2724. name: "Macro",
  2725. height: math.unit(78, "feet"),
  2726. default: true
  2727. },
  2728. {
  2729. name: "Macro+",
  2730. height: math.unit(300, "meters")
  2731. },
  2732. {
  2733. name: "Macro++",
  2734. height: math.unit(2400, "meters")
  2735. },
  2736. {
  2737. name: "Megamacro",
  2738. height: math.unit(5167, "meters")
  2739. },
  2740. {
  2741. name: "Gigamacro",
  2742. height: math.unit(41769, "miles")
  2743. },
  2744. ]
  2745. ))
  2746. characterMakers.push(() => makeCharacter(
  2747. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2748. {
  2749. front: {
  2750. height: math.unit(7, "feet"),
  2751. weight: math.unit(100, "kg"),
  2752. name: "Front",
  2753. image: {
  2754. source: "./media/characters/adake/front-1.svg"
  2755. }
  2756. },
  2757. frontAlt: {
  2758. height: math.unit(7, "feet"),
  2759. weight: math.unit(100, "kg"),
  2760. name: "Front (Alt)",
  2761. image: {
  2762. source: "./media/characters/adake/front-2.svg",
  2763. extra: 1,
  2764. bottom: 0.01
  2765. }
  2766. },
  2767. back: {
  2768. height: math.unit(7, "feet"),
  2769. weight: math.unit(100, "kg"),
  2770. name: "Back",
  2771. image: {
  2772. source: "./media/characters/adake/back.svg",
  2773. }
  2774. },
  2775. kneel: {
  2776. height: math.unit(5.385, "feet"),
  2777. weight: math.unit(100, "kg"),
  2778. name: "Kneeling",
  2779. image: {
  2780. source: "./media/characters/adake/kneel.svg",
  2781. bottom: 0.052
  2782. }
  2783. },
  2784. },
  2785. [
  2786. {
  2787. name: "Normal",
  2788. height: math.unit(7, "feet"),
  2789. },
  2790. {
  2791. name: "Macro",
  2792. height: math.unit(78, "feet"),
  2793. default: true
  2794. },
  2795. {
  2796. name: "Macro+",
  2797. height: math.unit(300, "meters")
  2798. },
  2799. {
  2800. name: "Macro++",
  2801. height: math.unit(2400, "meters")
  2802. },
  2803. {
  2804. name: "Megamacro",
  2805. height: math.unit(5167, "meters")
  2806. },
  2807. {
  2808. name: "Gigamacro",
  2809. height: math.unit(41769, "miles")
  2810. },
  2811. ]
  2812. ))
  2813. characterMakers.push(() => makeCharacter(
  2814. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2815. {
  2816. front: {
  2817. height: math.unit(1.65, "meters"),
  2818. weight: math.unit(50, "kg"),
  2819. name: "Front",
  2820. image: {
  2821. source: "./media/characters/elijah/front.svg",
  2822. extra: 858 / 830,
  2823. bottom: 95.5 / 953.8559
  2824. }
  2825. },
  2826. back: {
  2827. height: math.unit(1.65, "meters"),
  2828. weight: math.unit(50, "kg"),
  2829. name: "Back",
  2830. image: {
  2831. source: "./media/characters/elijah/back.svg",
  2832. extra: 895 / 850,
  2833. bottom: 5.3 / 897.956
  2834. }
  2835. },
  2836. frontNsfw: {
  2837. height: math.unit(1.65, "meters"),
  2838. weight: math.unit(50, "kg"),
  2839. name: "Front (NSFW)",
  2840. image: {
  2841. source: "./media/characters/elijah/front-nsfw.svg",
  2842. extra: 858 / 830,
  2843. bottom: 95.5 / 953.8559
  2844. }
  2845. },
  2846. backNsfw: {
  2847. height: math.unit(1.65, "meters"),
  2848. weight: math.unit(50, "kg"),
  2849. name: "Back (NSFW)",
  2850. image: {
  2851. source: "./media/characters/elijah/back-nsfw.svg",
  2852. extra: 895 / 850,
  2853. bottom: 5.3 / 897.956
  2854. }
  2855. },
  2856. dick: {
  2857. height: math.unit(1, "feet"),
  2858. name: "Dick",
  2859. image: {
  2860. source: "./media/characters/elijah/dick.svg"
  2861. }
  2862. },
  2863. beakOpen: {
  2864. height: math.unit(1.25, "feet"),
  2865. name: "Beak (Open)",
  2866. image: {
  2867. source: "./media/characters/elijah/beak-open.svg"
  2868. }
  2869. },
  2870. beakShut: {
  2871. height: math.unit(1.25, "feet"),
  2872. name: "Beak (Shut)",
  2873. image: {
  2874. source: "./media/characters/elijah/beak-shut.svg"
  2875. }
  2876. },
  2877. footFlexing: {
  2878. height: math.unit(1.61, "feet"),
  2879. name: "Foot (Flexing)",
  2880. image: {
  2881. source: "./media/characters/elijah/foot-flexing.svg"
  2882. }
  2883. },
  2884. footStepping: {
  2885. height: math.unit(1.44, "feet"),
  2886. name: "Foot (Stepping)",
  2887. image: {
  2888. source: "./media/characters/elijah/foot-stepping.svg"
  2889. }
  2890. },
  2891. plantigradeLeg: {
  2892. height: math.unit(2.34, "feet"),
  2893. name: "Plantigrade Leg",
  2894. image: {
  2895. source: "./media/characters/elijah/plantigrade-leg.svg"
  2896. }
  2897. },
  2898. plantigradeFootLeft: {
  2899. height: math.unit(0.9, "feet"),
  2900. name: "Plantigrade Foot (Left)",
  2901. image: {
  2902. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2903. }
  2904. },
  2905. plantigradeFootRight: {
  2906. height: math.unit(0.9, "feet"),
  2907. name: "Plantigrade Foot (Right)",
  2908. image: {
  2909. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2910. }
  2911. },
  2912. },
  2913. [
  2914. {
  2915. name: "Normal",
  2916. height: math.unit(1.65, "meters")
  2917. },
  2918. {
  2919. name: "Macro",
  2920. height: math.unit(55, "meters"),
  2921. default: true
  2922. },
  2923. {
  2924. name: "Macro+",
  2925. height: math.unit(105, "meters")
  2926. },
  2927. ]
  2928. ))
  2929. characterMakers.push(() => makeCharacter(
  2930. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2931. {
  2932. front: {
  2933. height: math.unit(7 + 2/12, "feet"),
  2934. weight: math.unit(320, "kg"),
  2935. preyCapacity: math.unit(0.276549935, "people"),
  2936. name: "Front",
  2937. image: {
  2938. source: "./media/characters/rai/front.svg",
  2939. extra: 1802/1696,
  2940. bottom: 68/1870
  2941. },
  2942. form: "anthro",
  2943. default: true
  2944. },
  2945. frontDressed: {
  2946. height: math.unit(7 + 2/12, "feet"),
  2947. weight: math.unit(320, "kg"),
  2948. preyCapacity: math.unit(0.276549935, "people"),
  2949. name: "Front (Dressed)",
  2950. image: {
  2951. source: "./media/characters/rai/front-dressed.svg",
  2952. extra: 1802/1696,
  2953. bottom: 68/1870
  2954. },
  2955. form: "anthro"
  2956. },
  2957. side: {
  2958. height: math.unit(7 + 2/12, "feet"),
  2959. weight: math.unit(320, "kg"),
  2960. preyCapacity: math.unit(0.276549935, "people"),
  2961. name: "Side",
  2962. image: {
  2963. source: "./media/characters/rai/side.svg",
  2964. extra: 1789/1710,
  2965. bottom: 115/1904
  2966. },
  2967. form: "anthro"
  2968. },
  2969. back: {
  2970. height: math.unit(7 + 2/12, "feet"),
  2971. weight: math.unit(320, "kg"),
  2972. preyCapacity: math.unit(0.276549935, "people"),
  2973. name: "Back",
  2974. image: {
  2975. source: "./media/characters/rai/back.svg",
  2976. extra: 1770/1707,
  2977. bottom: 28/1798
  2978. },
  2979. form: "anthro"
  2980. },
  2981. feral: {
  2982. height: math.unit(9.5, "feet"),
  2983. weight: math.unit(640, "kg"),
  2984. preyCapacity: math.unit(4, "people"),
  2985. name: "Feral",
  2986. image: {
  2987. source: "./media/characters/rai/feral.svg",
  2988. extra: 945/553,
  2989. bottom: 176/1121
  2990. },
  2991. form: "feral",
  2992. default: true
  2993. },
  2994. dragon: {
  2995. height: math.unit(23, "feet"),
  2996. weight: math.unit(50000, "lb"),
  2997. name: "Dragon",
  2998. image: {
  2999. source: "./media/characters/rai/dragon.svg",
  3000. extra: 2498 / 2030,
  3001. bottom: 85.2 / 2584
  3002. },
  3003. form: "dragon",
  3004. default: true
  3005. },
  3006. maw: {
  3007. height: math.unit(1.69, "feet"),
  3008. name: "Maw",
  3009. image: {
  3010. source: "./media/characters/rai/maw.svg"
  3011. },
  3012. form: "anthro"
  3013. },
  3014. },
  3015. [
  3016. {
  3017. name: "Normal",
  3018. height: math.unit(7 + 2/12, "feet"),
  3019. form: "anthro"
  3020. },
  3021. {
  3022. name: "Big",
  3023. height: math.unit(11, "feet"),
  3024. form: "anthro"
  3025. },
  3026. {
  3027. name: "Minimacro",
  3028. height: math.unit(77, "feet"),
  3029. form: "anthro"
  3030. },
  3031. {
  3032. name: "Macro",
  3033. height: math.unit(302, "feet"),
  3034. default: true,
  3035. form: "anthro"
  3036. },
  3037. {
  3038. name: "Normal",
  3039. height: math.unit(9.5, "feet"),
  3040. form: "feral",
  3041. default: true
  3042. },
  3043. {
  3044. name: "Normal",
  3045. height: math.unit(23, "feet"),
  3046. form: "dragon",
  3047. default: true
  3048. }
  3049. ],
  3050. {
  3051. "anthro": {
  3052. name: "Anthro",
  3053. default: true
  3054. },
  3055. "feral": {
  3056. name: "Feral",
  3057. },
  3058. "dragon": {
  3059. name: "Dragon",
  3060. },
  3061. }
  3062. ))
  3063. characterMakers.push(() => makeCharacter(
  3064. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3065. {
  3066. frontDressed: {
  3067. height: math.unit(216, "feet"),
  3068. weight: math.unit(7000000, "lb"),
  3069. preyCapacity: math.unit(1321, "people"),
  3070. name: "Front (Dressed)",
  3071. image: {
  3072. source: "./media/characters/jazzy/front-dressed.svg",
  3073. extra: 2738 / 2651,
  3074. bottom: 41.8 / 2786
  3075. }
  3076. },
  3077. backDressed: {
  3078. height: math.unit(216, "feet"),
  3079. weight: math.unit(7000000, "lb"),
  3080. preyCapacity: math.unit(1321, "people"),
  3081. name: "Back (Dressed)",
  3082. image: {
  3083. source: "./media/characters/jazzy/back-dressed.svg",
  3084. extra: 2775 / 2673,
  3085. bottom: 36.8 / 2817
  3086. }
  3087. },
  3088. front: {
  3089. height: math.unit(216, "feet"),
  3090. weight: math.unit(7000000, "lb"),
  3091. preyCapacity: math.unit(1321, "people"),
  3092. name: "Front",
  3093. image: {
  3094. source: "./media/characters/jazzy/front.svg",
  3095. extra: 2738 / 2651,
  3096. bottom: 41.8 / 2786
  3097. }
  3098. },
  3099. back: {
  3100. height: math.unit(216, "feet"),
  3101. weight: math.unit(7000000, "lb"),
  3102. preyCapacity: math.unit(1321, "people"),
  3103. name: "Back",
  3104. image: {
  3105. source: "./media/characters/jazzy/back.svg",
  3106. extra: 2775 / 2673,
  3107. bottom: 36.8 / 2817
  3108. }
  3109. },
  3110. maw: {
  3111. height: math.unit(20, "feet"),
  3112. name: "Maw",
  3113. image: {
  3114. source: "./media/characters/jazzy/maw.svg"
  3115. }
  3116. },
  3117. paws: {
  3118. height: math.unit(27.5, "feet"),
  3119. name: "Paws",
  3120. image: {
  3121. source: "./media/characters/jazzy/paws.svg"
  3122. }
  3123. },
  3124. eye: {
  3125. height: math.unit(4.4, "feet"),
  3126. name: "Eye",
  3127. image: {
  3128. source: "./media/characters/jazzy/eye.svg"
  3129. }
  3130. },
  3131. droneOffense: {
  3132. height: math.unit(9.5, "inches"),
  3133. name: "Drone (Offense)",
  3134. image: {
  3135. source: "./media/characters/jazzy/drone-offense.svg"
  3136. }
  3137. },
  3138. droneRecon: {
  3139. height: math.unit(9.5, "inches"),
  3140. name: "Drone (Recon)",
  3141. image: {
  3142. source: "./media/characters/jazzy/drone-recon.svg"
  3143. }
  3144. },
  3145. droneDefense: {
  3146. height: math.unit(9.5, "inches"),
  3147. name: "Drone (Defense)",
  3148. image: {
  3149. source: "./media/characters/jazzy/drone-defense.svg"
  3150. }
  3151. },
  3152. },
  3153. [
  3154. {
  3155. name: "Macro",
  3156. height: math.unit(216, "feet"),
  3157. default: true
  3158. },
  3159. ]
  3160. ))
  3161. characterMakers.push(() => makeCharacter(
  3162. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3163. {
  3164. front: {
  3165. height: math.unit(9 + 6/12, "feet"),
  3166. weight: math.unit(700, "lb"),
  3167. name: "Front",
  3168. image: {
  3169. source: "./media/characters/flamm/front.svg",
  3170. extra: 1736/1596,
  3171. bottom: 93/1829
  3172. }
  3173. },
  3174. buff: {
  3175. height: math.unit(9 + 6/12, "feet"),
  3176. weight: math.unit(950, "lb"),
  3177. name: "Buff",
  3178. image: {
  3179. source: "./media/characters/flamm/buff.svg",
  3180. extra: 3018/2874,
  3181. bottom: 221/3239
  3182. }
  3183. },
  3184. },
  3185. [
  3186. {
  3187. name: "Normal",
  3188. height: math.unit(9.5, "feet")
  3189. },
  3190. {
  3191. name: "Macro",
  3192. height: math.unit(200, "feet"),
  3193. default: true
  3194. },
  3195. ]
  3196. ))
  3197. characterMakers.push(() => makeCharacter(
  3198. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3199. {
  3200. front: {
  3201. height: math.unit(5 + 3/12, "feet"),
  3202. weight: math.unit(60, "kg"),
  3203. name: "Front",
  3204. image: {
  3205. source: "./media/characters/zephiro/front.svg",
  3206. extra: 1873/1761,
  3207. bottom: 147/2020
  3208. }
  3209. },
  3210. side: {
  3211. height: math.unit(5 + 3/12, "feet"),
  3212. weight: math.unit(60, "kg"),
  3213. name: "Side",
  3214. image: {
  3215. source: "./media/characters/zephiro/side.svg",
  3216. extra: 1929/1827,
  3217. bottom: 65/1994
  3218. }
  3219. },
  3220. back: {
  3221. height: math.unit(5 + 3/12, "feet"),
  3222. weight: math.unit(60, "kg"),
  3223. name: "Back",
  3224. image: {
  3225. source: "./media/characters/zephiro/back.svg",
  3226. extra: 1926/1816,
  3227. bottom: 41/1967
  3228. }
  3229. },
  3230. hand: {
  3231. height: math.unit(0.68, "feet"),
  3232. name: "Hand",
  3233. image: {
  3234. source: "./media/characters/zephiro/hand.svg"
  3235. }
  3236. },
  3237. paw: {
  3238. height: math.unit(1, "feet"),
  3239. name: "Paw",
  3240. image: {
  3241. source: "./media/characters/zephiro/paw.svg"
  3242. }
  3243. },
  3244. beans: {
  3245. height: math.unit(0.93, "feet"),
  3246. name: "Beans",
  3247. image: {
  3248. source: "./media/characters/zephiro/beans.svg"
  3249. }
  3250. },
  3251. },
  3252. [
  3253. {
  3254. name: "Micro",
  3255. height: math.unit(3, "inches")
  3256. },
  3257. {
  3258. name: "Normal",
  3259. height: math.unit(5 + 3 / 12, "feet"),
  3260. default: true
  3261. },
  3262. {
  3263. name: "Macro",
  3264. height: math.unit(118, "feet")
  3265. },
  3266. ]
  3267. ))
  3268. characterMakers.push(() => makeCharacter(
  3269. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3270. {
  3271. front: {
  3272. height: math.unit(5, "feet"),
  3273. weight: math.unit(90, "kg"),
  3274. preyCapacity: math.unit(14, "people"),
  3275. name: "Front",
  3276. image: {
  3277. source: "./media/characters/fory/front.svg",
  3278. extra: 2862 / 2674,
  3279. bottom: 180 / 3043.8
  3280. },
  3281. form: "weaselbun",
  3282. default: true,
  3283. extraAttributes: {
  3284. "pawSize": {
  3285. name: "Paw Size",
  3286. power: 2,
  3287. type: "area",
  3288. base: math.unit(0.1596, "m^2")
  3289. },
  3290. "pawLength": {
  3291. name: "Paw Length",
  3292. power: 1,
  3293. type: "length",
  3294. base: math.unit(0.7, "m")
  3295. }
  3296. }
  3297. },
  3298. back: {
  3299. height: math.unit(5, "feet"),
  3300. weight: math.unit(90, "kg"),
  3301. preyCapacity: math.unit(14, "people"),
  3302. name: "Back",
  3303. image: {
  3304. source: "./media/characters/fory/back.svg",
  3305. extra: 1790/1672,
  3306. bottom: 84/1874
  3307. },
  3308. form: "weaselbun",
  3309. extraAttributes: {
  3310. "pawSize": {
  3311. name: "Paw Size",
  3312. power: 2,
  3313. type: "area",
  3314. base: math.unit(0.1596, "m^2")
  3315. },
  3316. "pawLength": {
  3317. name: "Paw Length",
  3318. power: 1,
  3319. type: "length",
  3320. base: math.unit(0.7, "m")
  3321. }
  3322. }
  3323. },
  3324. paw: {
  3325. height: math.unit(2.14, "feet"),
  3326. name: "Paw",
  3327. image: {
  3328. source: "./media/characters/fory/paw.svg"
  3329. },
  3330. form: "weaselbun",
  3331. extraAttributes: {
  3332. "pawSize": {
  3333. name: "Paw Size",
  3334. power: 2,
  3335. type: "area",
  3336. base: math.unit(0.1596, "m^2")
  3337. },
  3338. "pawLength": {
  3339. name: "Paw Length",
  3340. power: 1,
  3341. type: "length",
  3342. base: math.unit(0.48, "m")
  3343. }
  3344. }
  3345. },
  3346. bunBack: {
  3347. height: math.unit(3, "feet"),
  3348. weight: math.unit(20, "kg"),
  3349. preyCapacity: math.unit(3, "people"),
  3350. name: "Back",
  3351. image: {
  3352. source: "./media/characters/fory/bun-back.svg",
  3353. extra: 1749/1564,
  3354. bottom: 246/1995
  3355. },
  3356. form: "bun",
  3357. default: true,
  3358. extraAttributes: {
  3359. "pawSize": {
  3360. name: "Paw Size",
  3361. power: 2,
  3362. type: "area",
  3363. base: math.unit(0.072, "m^2")
  3364. },
  3365. "pawLength": {
  3366. name: "Paw Length",
  3367. power: 1,
  3368. type: "length",
  3369. base: math.unit(0.45, "m")
  3370. }
  3371. }
  3372. },
  3373. },
  3374. [
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(5, "feet"),
  3378. form: "weaselbun"
  3379. },
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(50, "feet"),
  3383. default: true,
  3384. form: "weaselbun"
  3385. },
  3386. {
  3387. name: "Megamacro",
  3388. height: math.unit(10, "miles"),
  3389. form: "weaselbun"
  3390. },
  3391. {
  3392. name: "Gigamacro",
  3393. height: math.unit(5, "earths"),
  3394. form: "weaselbun"
  3395. },
  3396. {
  3397. name: "Normal",
  3398. height: math.unit(3, "feet"),
  3399. default: true,
  3400. form: "bun"
  3401. },
  3402. {
  3403. name: "Fun-Size",
  3404. height: math.unit(12, "feet"),
  3405. form: "bun"
  3406. },
  3407. {
  3408. name: "Macro",
  3409. height: math.unit(100, "feet"),
  3410. form: "bun"
  3411. },
  3412. {
  3413. name: "Planetary",
  3414. height: math.unit(3, "earths"),
  3415. form: "bun"
  3416. },
  3417. ],
  3418. {
  3419. "weaselbun": {
  3420. name: "Weaselbun",
  3421. default: true
  3422. },
  3423. "bun": {
  3424. name: "Bun",
  3425. },
  3426. }
  3427. ))
  3428. characterMakers.push(() => makeCharacter(
  3429. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3430. {
  3431. front: {
  3432. height: math.unit(7, "feet"),
  3433. weight: math.unit(90, "kg"),
  3434. name: "Front",
  3435. image: {
  3436. source: "./media/characters/kurrikage/front.svg",
  3437. extra: 1845/1733,
  3438. bottom: 119/1964
  3439. }
  3440. },
  3441. back: {
  3442. height: math.unit(7, "feet"),
  3443. weight: math.unit(90, "kg"),
  3444. name: "Back",
  3445. image: {
  3446. source: "./media/characters/kurrikage/back.svg",
  3447. extra: 1790/1677,
  3448. bottom: 61/1851
  3449. }
  3450. },
  3451. dressed: {
  3452. height: math.unit(7, "feet"),
  3453. weight: math.unit(90, "kg"),
  3454. name: "Dressed",
  3455. image: {
  3456. source: "./media/characters/kurrikage/dressed.svg",
  3457. extra: 1845/1733,
  3458. bottom: 119/1964
  3459. }
  3460. },
  3461. foot: {
  3462. height: math.unit(1.5, "feet"),
  3463. name: "Foot",
  3464. image: {
  3465. source: "./media/characters/kurrikage/foot.svg"
  3466. }
  3467. },
  3468. staff: {
  3469. height: math.unit(6.7, "feet"),
  3470. name: "Staff",
  3471. image: {
  3472. source: "./media/characters/kurrikage/staff.svg"
  3473. }
  3474. },
  3475. peek: {
  3476. height: math.unit(1.05, "feet"),
  3477. name: "Peeking",
  3478. image: {
  3479. source: "./media/characters/kurrikage/peek.svg",
  3480. bottom: 0.08
  3481. }
  3482. },
  3483. },
  3484. [
  3485. {
  3486. name: "Normal",
  3487. height: math.unit(12, "feet"),
  3488. default: true
  3489. },
  3490. {
  3491. name: "Big",
  3492. height: math.unit(20, "feet")
  3493. },
  3494. {
  3495. name: "Macro",
  3496. height: math.unit(500, "feet")
  3497. },
  3498. {
  3499. name: "Megamacro",
  3500. height: math.unit(20, "miles")
  3501. },
  3502. ]
  3503. ))
  3504. characterMakers.push(() => makeCharacter(
  3505. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3506. {
  3507. front: {
  3508. height: math.unit(6, "feet"),
  3509. weight: math.unit(75, "kg"),
  3510. name: "Front",
  3511. image: {
  3512. source: "./media/characters/shingo/front.svg",
  3513. extra: 1900/1825,
  3514. bottom: 82/1982
  3515. }
  3516. },
  3517. side: {
  3518. height: math.unit(6, "feet"),
  3519. weight: math.unit(75, "kg"),
  3520. name: "Side",
  3521. image: {
  3522. source: "./media/characters/shingo/side.svg",
  3523. extra: 1930/1865,
  3524. bottom: 16/1946
  3525. }
  3526. },
  3527. back: {
  3528. height: math.unit(6, "feet"),
  3529. weight: math.unit(75, "kg"),
  3530. name: "Back",
  3531. image: {
  3532. source: "./media/characters/shingo/back.svg",
  3533. extra: 1922/1852,
  3534. bottom: 16/1938
  3535. }
  3536. },
  3537. frontDressed: {
  3538. height: math.unit(6, "feet"),
  3539. weight: math.unit(150, "lb"),
  3540. name: "Front-dressed",
  3541. image: {
  3542. source: "./media/characters/shingo/front-dressed.svg",
  3543. extra: 1900/1825,
  3544. bottom: 82/1982
  3545. }
  3546. },
  3547. paw: {
  3548. height: math.unit(1.29, "feet"),
  3549. name: "Paw",
  3550. image: {
  3551. source: "./media/characters/shingo/paw.svg"
  3552. }
  3553. },
  3554. hand: {
  3555. height: math.unit(1.07, "feet"),
  3556. name: "Hand",
  3557. image: {
  3558. source: "./media/characters/shingo/hand.svg"
  3559. }
  3560. },
  3561. frontAlt: {
  3562. height: math.unit(6, "feet"),
  3563. weight: math.unit(75, "kg"),
  3564. name: "Front (Alt)",
  3565. image: {
  3566. source: "./media/characters/shingo/front-alt.svg",
  3567. extra: 3511 / 3338,
  3568. bottom: 0.005
  3569. }
  3570. },
  3571. frontAlt2: {
  3572. height: math.unit(6, "feet"),
  3573. weight: math.unit(75, "kg"),
  3574. name: "Front (Alt 2)",
  3575. image: {
  3576. source: "./media/characters/shingo/front-alt-2.svg",
  3577. extra: 706/681,
  3578. bottom: 11/717
  3579. }
  3580. },
  3581. pawAlt: {
  3582. height: math.unit(1, "feet"),
  3583. name: "Paw (Alt)",
  3584. image: {
  3585. source: "./media/characters/shingo/paw-alt.svg"
  3586. }
  3587. },
  3588. },
  3589. [
  3590. {
  3591. name: "Micro",
  3592. height: math.unit(4, "inches")
  3593. },
  3594. {
  3595. name: "Normal",
  3596. height: math.unit(6, "feet"),
  3597. default: true
  3598. },
  3599. {
  3600. name: "Macro",
  3601. height: math.unit(108, "feet")
  3602. },
  3603. {
  3604. name: "Macro+",
  3605. height: math.unit(1500, "feet")
  3606. },
  3607. ]
  3608. ))
  3609. characterMakers.push(() => makeCharacter(
  3610. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3611. {
  3612. side: {
  3613. height: math.unit(6, "feet"),
  3614. weight: math.unit(75, "kg"),
  3615. name: "Side",
  3616. image: {
  3617. source: "./media/characters/aigey/side.svg"
  3618. }
  3619. },
  3620. },
  3621. [
  3622. {
  3623. name: "Macro",
  3624. height: math.unit(200, "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Megamacro",
  3629. height: math.unit(100, "miles")
  3630. },
  3631. ]
  3632. )
  3633. )
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3636. {
  3637. front: {
  3638. height: math.unit(5 + 5 / 12, "feet"),
  3639. weight: math.unit(75, "kg"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/natasha/front.svg",
  3643. extra: 859 / 824,
  3644. bottom: 23 / 879.6
  3645. }
  3646. },
  3647. frontNsfw: {
  3648. height: math.unit(5 + 5 / 12, "feet"),
  3649. weight: math.unit(75, "kg"),
  3650. name: "Front (NSFW)",
  3651. image: {
  3652. source: "./media/characters/natasha/front-nsfw.svg",
  3653. extra: 859 / 824,
  3654. bottom: 23 / 879.6
  3655. }
  3656. },
  3657. frontErect: {
  3658. height: math.unit(5 + 5 / 12, "feet"),
  3659. weight: math.unit(75, "kg"),
  3660. name: "Front (Erect)",
  3661. image: {
  3662. source: "./media/characters/natasha/front-erect.svg",
  3663. extra: 859 / 824,
  3664. bottom: 23 / 879.6
  3665. }
  3666. },
  3667. back: {
  3668. height: math.unit(5 + 5 / 12, "feet"),
  3669. weight: math.unit(75, "kg"),
  3670. name: "Back",
  3671. image: {
  3672. source: "./media/characters/natasha/back.svg",
  3673. extra: 887.9 / 852.6,
  3674. bottom: 9.7 / 896.4
  3675. }
  3676. },
  3677. backAlt: {
  3678. height: math.unit(5 + 5 / 12, "feet"),
  3679. weight: math.unit(75, "kg"),
  3680. name: "Back (Alt)",
  3681. image: {
  3682. source: "./media/characters/natasha/back-alt.svg",
  3683. extra: 1236.7 / 1192,
  3684. bottom: 22.3 / 1258.2
  3685. }
  3686. },
  3687. dick: {
  3688. height: math.unit(1.772, "feet"),
  3689. name: "Dick",
  3690. image: {
  3691. source: "./media/characters/natasha/dick.svg"
  3692. }
  3693. },
  3694. paw: {
  3695. height: math.unit(0.250, "meters"),
  3696. name: "Paw",
  3697. image: {
  3698. source: "./media/characters/natasha/paw.svg"
  3699. },
  3700. extraAttributes: {
  3701. "toeSize": {
  3702. name: "Toe Size",
  3703. power: 2,
  3704. type: "area",
  3705. base: math.unit(0.0024, "m^2")
  3706. },
  3707. "padSize": {
  3708. name: "Pad Size",
  3709. power: 2,
  3710. type: "area",
  3711. base: math.unit(0.00889, "m^2")
  3712. },
  3713. "pawSize": {
  3714. name: "Paw Size",
  3715. power: 2,
  3716. type: "area",
  3717. base: math.unit(0.023667, "m^2")
  3718. },
  3719. }
  3720. },
  3721. },
  3722. [
  3723. {
  3724. name: "Shortstack",
  3725. height: math.unit(3, "feet"),
  3726. default: true
  3727. },
  3728. {
  3729. name: "Normal",
  3730. height: math.unit(5 + 5 / 12, "feet")
  3731. },
  3732. {
  3733. name: "Large",
  3734. height: math.unit(12, "feet")
  3735. },
  3736. {
  3737. name: "Macro",
  3738. height: math.unit(100, "feet")
  3739. },
  3740. {
  3741. name: "Macro+",
  3742. height: math.unit(260, "feet")
  3743. },
  3744. {
  3745. name: "Macro++",
  3746. height: math.unit(1, "mile")
  3747. },
  3748. ]
  3749. ))
  3750. characterMakers.push(() => makeCharacter(
  3751. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3752. {
  3753. front: {
  3754. height: math.unit(6, "feet"),
  3755. weight: math.unit(75, "kg"),
  3756. name: "Front",
  3757. image: {
  3758. source: "./media/characters/malik/front.svg",
  3759. extra: 1750/1561,
  3760. bottom: 80/1830
  3761. },
  3762. extraAttributes: {
  3763. "toeSize": {
  3764. name: "Toe Size",
  3765. power: 2,
  3766. type: "area",
  3767. base: math.unit(0.0159, "m^2")
  3768. },
  3769. "pawSize": {
  3770. name: "Paw Size",
  3771. power: 2,
  3772. type: "area",
  3773. base: math.unit(0.09834, "m^2")
  3774. },
  3775. }
  3776. },
  3777. side: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Side",
  3781. image: {
  3782. source: "./media/characters/malik/side.svg",
  3783. extra: 1802/1685,
  3784. bottom: 42/1844
  3785. },
  3786. extraAttributes: {
  3787. "toeSize": {
  3788. name: "Toe Size",
  3789. power: 2,
  3790. type: "area",
  3791. base: math.unit(0.0159, "m^2")
  3792. },
  3793. "pawSize": {
  3794. name: "Paw Size",
  3795. power: 2,
  3796. type: "area",
  3797. base: math.unit(0.09834, "m^2")
  3798. },
  3799. }
  3800. },
  3801. back: {
  3802. height: math.unit(6, "feet"),
  3803. weight: math.unit(75, "kg"),
  3804. name: "Back",
  3805. image: {
  3806. source: "./media/characters/malik/back.svg",
  3807. extra: 1803/1607,
  3808. bottom: 33/1836
  3809. },
  3810. extraAttributes: {
  3811. "toeSize": {
  3812. name: "Toe Size",
  3813. power: 2,
  3814. type: "area",
  3815. base: math.unit(0.0159, "m^2")
  3816. },
  3817. "pawSize": {
  3818. name: "Paw Size",
  3819. power: 2,
  3820. type: "area",
  3821. base: math.unit(0.09834, "m^2")
  3822. },
  3823. }
  3824. },
  3825. },
  3826. [
  3827. {
  3828. name: "Macro",
  3829. height: math.unit(156, "feet"),
  3830. default: true
  3831. },
  3832. {
  3833. name: "Macro+",
  3834. height: math.unit(1188, "feet")
  3835. },
  3836. ]
  3837. ))
  3838. characterMakers.push(() => makeCharacter(
  3839. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3840. {
  3841. front: {
  3842. height: math.unit(6, "feet"),
  3843. weight: math.unit(75, "kg"),
  3844. name: "Front",
  3845. image: {
  3846. source: "./media/characters/sefer/front.svg",
  3847. extra: 848 / 659,
  3848. bottom: 28.3 / 876.442
  3849. }
  3850. },
  3851. back: {
  3852. height: math.unit(6, "feet"),
  3853. weight: math.unit(75, "kg"),
  3854. name: "Back",
  3855. image: {
  3856. source: "./media/characters/sefer/back.svg",
  3857. extra: 864 / 695,
  3858. bottom: 10 / 871
  3859. }
  3860. },
  3861. frontDressed: {
  3862. height: math.unit(6, "feet"),
  3863. weight: math.unit(75, "kg"),
  3864. name: "Dressed",
  3865. image: {
  3866. source: "./media/characters/sefer/dressed.svg",
  3867. extra: 839 / 653,
  3868. bottom: 37.6 / 878
  3869. }
  3870. },
  3871. },
  3872. [
  3873. {
  3874. name: "Normal",
  3875. height: math.unit(6, "feet"),
  3876. default: true
  3877. },
  3878. {
  3879. name: "Big",
  3880. height: math.unit(8, "meters")
  3881. },
  3882. ]
  3883. ))
  3884. characterMakers.push(() => makeCharacter(
  3885. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3886. {
  3887. body: {
  3888. height: math.unit(2.2428, "meter"),
  3889. weight: math.unit(124.738, "kg"),
  3890. name: "Body",
  3891. image: {
  3892. extra: 1225 / 1050,
  3893. source: "./media/characters/north/front.svg"
  3894. }
  3895. }
  3896. },
  3897. [
  3898. {
  3899. name: "Micro",
  3900. height: math.unit(4, "inches")
  3901. },
  3902. {
  3903. name: "Macro",
  3904. height: math.unit(63, "meters")
  3905. },
  3906. {
  3907. name: "Megamacro",
  3908. height: math.unit(101, "miles"),
  3909. default: true
  3910. }
  3911. ]
  3912. ))
  3913. characterMakers.push(() => makeCharacter(
  3914. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3915. {
  3916. angled: {
  3917. height: math.unit(4, "meter"),
  3918. weight: math.unit(150, "kg"),
  3919. name: "Angled",
  3920. image: {
  3921. source: "./media/characters/talan/angled-sfw.svg",
  3922. bottom: 29 / 3734
  3923. }
  3924. },
  3925. angledNsfw: {
  3926. height: math.unit(4, "meter"),
  3927. weight: math.unit(150, "kg"),
  3928. name: "Angled (NSFW)",
  3929. image: {
  3930. source: "./media/characters/talan/angled-nsfw.svg",
  3931. bottom: 29 / 3734
  3932. }
  3933. },
  3934. frontNsfw: {
  3935. height: math.unit(4, "meter"),
  3936. weight: math.unit(150, "kg"),
  3937. name: "Front (NSFW)",
  3938. image: {
  3939. source: "./media/characters/talan/front-nsfw.svg",
  3940. bottom: 29 / 3734
  3941. }
  3942. },
  3943. sideNsfw: {
  3944. height: math.unit(4, "meter"),
  3945. weight: math.unit(150, "kg"),
  3946. name: "Side (NSFW)",
  3947. image: {
  3948. source: "./media/characters/talan/side-nsfw.svg",
  3949. bottom: 29 / 3734
  3950. }
  3951. },
  3952. back: {
  3953. height: math.unit(4, "meter"),
  3954. weight: math.unit(150, "kg"),
  3955. name: "Back",
  3956. image: {
  3957. source: "./media/characters/talan/back.svg"
  3958. }
  3959. },
  3960. dickBottom: {
  3961. height: math.unit(0.621, "meter"),
  3962. name: "Dick (Bottom)",
  3963. image: {
  3964. source: "./media/characters/talan/dick-bottom.svg"
  3965. }
  3966. },
  3967. dickTop: {
  3968. height: math.unit(0.621, "meter"),
  3969. name: "Dick (Top)",
  3970. image: {
  3971. source: "./media/characters/talan/dick-top.svg"
  3972. }
  3973. },
  3974. dickSide: {
  3975. height: math.unit(0.305, "meter"),
  3976. name: "Dick (Side)",
  3977. image: {
  3978. source: "./media/characters/talan/dick-side.svg"
  3979. }
  3980. },
  3981. dickFront: {
  3982. height: math.unit(0.305, "meter"),
  3983. name: "Dick (Front)",
  3984. image: {
  3985. source: "./media/characters/talan/dick-front.svg"
  3986. }
  3987. },
  3988. },
  3989. [
  3990. {
  3991. name: "Normal",
  3992. height: math.unit(4, "meters")
  3993. },
  3994. {
  3995. name: "Macro",
  3996. height: math.unit(100, "meters")
  3997. },
  3998. {
  3999. name: "Megamacro",
  4000. height: math.unit(2, "miles"),
  4001. default: true
  4002. },
  4003. {
  4004. name: "Gigamacro",
  4005. height: math.unit(5000, "miles")
  4006. },
  4007. {
  4008. name: "Teramacro",
  4009. height: math.unit(100, "parsecs")
  4010. }
  4011. ]
  4012. ))
  4013. characterMakers.push(() => makeCharacter(
  4014. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4015. {
  4016. front: {
  4017. height: math.unit(2, "meter"),
  4018. weight: math.unit(90, "kg"),
  4019. name: "Front",
  4020. image: {
  4021. source: "./media/characters/gael'rathus/front.svg"
  4022. }
  4023. },
  4024. frontAlt: {
  4025. height: math.unit(2, "meter"),
  4026. weight: math.unit(90, "kg"),
  4027. name: "Front (alt)",
  4028. image: {
  4029. source: "./media/characters/gael'rathus/front-alt.svg"
  4030. }
  4031. },
  4032. frontAlt2: {
  4033. height: math.unit(2, "meter"),
  4034. weight: math.unit(90, "kg"),
  4035. name: "Front (alt 2)",
  4036. image: {
  4037. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4038. }
  4039. }
  4040. },
  4041. [
  4042. {
  4043. name: "Normal",
  4044. height: math.unit(9, "feet"),
  4045. default: true
  4046. },
  4047. {
  4048. name: "Large",
  4049. height: math.unit(25, "feet")
  4050. },
  4051. {
  4052. name: "Macro",
  4053. height: math.unit(0.25, "miles")
  4054. },
  4055. {
  4056. name: "Megamacro",
  4057. height: math.unit(10, "miles")
  4058. }
  4059. ]
  4060. ))
  4061. characterMakers.push(() => makeCharacter(
  4062. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4063. {
  4064. side: {
  4065. height: math.unit(2, "meter"),
  4066. weight: math.unit(140, "kg"),
  4067. name: "Side",
  4068. image: {
  4069. source: "./media/characters/sosha/side.svg",
  4070. extra: 1170/1006,
  4071. bottom: 94/1264
  4072. }
  4073. },
  4074. maw: {
  4075. height: math.unit(2.87, "feet"),
  4076. name: "Maw",
  4077. image: {
  4078. source: "./media/characters/sosha/maw.svg",
  4079. extra: 966/865,
  4080. bottom: 0/966
  4081. }
  4082. },
  4083. cooch: {
  4084. height: math.unit(5.6, "feet"),
  4085. name: "Cooch",
  4086. image: {
  4087. source: "./media/characters/sosha/cooch.svg"
  4088. }
  4089. },
  4090. },
  4091. [
  4092. {
  4093. name: "Normal",
  4094. height: math.unit(12, "feet"),
  4095. default: true
  4096. }
  4097. ]
  4098. ))
  4099. characterMakers.push(() => makeCharacter(
  4100. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4101. {
  4102. side: {
  4103. height: math.unit(5 + 5 / 12, "feet"),
  4104. weight: math.unit(170, "kg"),
  4105. name: "Side",
  4106. image: {
  4107. source: "./media/characters/runnola/side.svg",
  4108. extra: 741 / 448,
  4109. bottom: 0.05
  4110. }
  4111. },
  4112. },
  4113. [
  4114. {
  4115. name: "Small",
  4116. height: math.unit(3, "feet")
  4117. },
  4118. {
  4119. name: "Normal",
  4120. height: math.unit(5 + 5 / 12, "feet"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Big",
  4125. height: math.unit(10, "feet")
  4126. },
  4127. ]
  4128. ))
  4129. characterMakers.push(() => makeCharacter(
  4130. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4131. {
  4132. front: {
  4133. height: math.unit(2, "meter"),
  4134. weight: math.unit(50, "kg"),
  4135. name: "Front",
  4136. image: {
  4137. source: "./media/characters/kurribird/front.svg",
  4138. bottom: 0.015
  4139. }
  4140. },
  4141. frontAlt: {
  4142. height: math.unit(1.5, "meter"),
  4143. weight: math.unit(50, "kg"),
  4144. name: "Front (Alt)",
  4145. image: {
  4146. source: "./media/characters/kurribird/front-alt.svg",
  4147. extra: 1.45
  4148. }
  4149. },
  4150. },
  4151. [
  4152. {
  4153. name: "Normal",
  4154. height: math.unit(7, "feet")
  4155. },
  4156. {
  4157. name: "Big",
  4158. height: math.unit(12, "feet"),
  4159. default: true
  4160. },
  4161. {
  4162. name: "Macro",
  4163. height: math.unit(1500, "feet")
  4164. },
  4165. {
  4166. name: "Megamacro",
  4167. height: math.unit(2, "miles")
  4168. }
  4169. ]
  4170. ))
  4171. characterMakers.push(() => makeCharacter(
  4172. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4173. {
  4174. front: {
  4175. height: math.unit(2, "meter"),
  4176. weight: math.unit(80, "kg"),
  4177. name: "Front",
  4178. image: {
  4179. source: "./media/characters/elbial/front.svg",
  4180. extra: 1643 / 1556,
  4181. bottom: 60.2 / 1696
  4182. }
  4183. },
  4184. side: {
  4185. height: math.unit(2, "meter"),
  4186. weight: math.unit(80, "kg"),
  4187. name: "Side",
  4188. image: {
  4189. source: "./media/characters/elbial/side.svg",
  4190. extra: 1601/1528,
  4191. bottom: 97/1698
  4192. }
  4193. },
  4194. back: {
  4195. height: math.unit(2, "meter"),
  4196. weight: math.unit(80, "kg"),
  4197. name: "Back",
  4198. image: {
  4199. source: "./media/characters/elbial/back.svg",
  4200. extra: 1653/1569,
  4201. bottom: 20/1673
  4202. }
  4203. },
  4204. frontDressed: {
  4205. height: math.unit(2, "meter"),
  4206. weight: math.unit(80, "kg"),
  4207. name: "Front (Dressed)",
  4208. image: {
  4209. source: "./media/characters/elbial/front-dressed.svg",
  4210. extra: 1638/1569,
  4211. bottom: 70/1708
  4212. }
  4213. },
  4214. genitals: {
  4215. height: math.unit(2 / 3.367, "meter"),
  4216. name: "Genitals",
  4217. image: {
  4218. source: "./media/characters/elbial/genitals.svg"
  4219. }
  4220. },
  4221. },
  4222. [
  4223. {
  4224. name: "Large",
  4225. height: math.unit(100, "feet")
  4226. },
  4227. {
  4228. name: "Macro",
  4229. height: math.unit(500, "feet"),
  4230. default: true
  4231. },
  4232. {
  4233. name: "Megamacro",
  4234. height: math.unit(10, "miles")
  4235. },
  4236. {
  4237. name: "Gigamacro",
  4238. height: math.unit(25000, "miles")
  4239. },
  4240. {
  4241. name: "Full-Size",
  4242. height: math.unit(8000000, "gigaparsecs")
  4243. }
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4248. {
  4249. front: {
  4250. height: math.unit(2, "meter"),
  4251. weight: math.unit(60, "kg"),
  4252. name: "Front",
  4253. image: {
  4254. source: "./media/characters/noah/front.svg"
  4255. }
  4256. },
  4257. talons: {
  4258. height: math.unit(0.315, "meter"),
  4259. name: "Talons",
  4260. image: {
  4261. source: "./media/characters/noah/talons.svg"
  4262. }
  4263. }
  4264. },
  4265. [
  4266. {
  4267. name: "Large",
  4268. height: math.unit(50, "feet")
  4269. },
  4270. {
  4271. name: "Macro",
  4272. height: math.unit(750, "feet"),
  4273. default: true
  4274. },
  4275. {
  4276. name: "Megamacro",
  4277. height: math.unit(50, "miles")
  4278. },
  4279. {
  4280. name: "Gigamacro",
  4281. height: math.unit(100000, "miles")
  4282. },
  4283. {
  4284. name: "Full-Size",
  4285. height: math.unit(3000000000, "miles")
  4286. }
  4287. ]
  4288. ))
  4289. characterMakers.push(() => makeCharacter(
  4290. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4291. {
  4292. front: {
  4293. height: math.unit(2, "meter"),
  4294. weight: math.unit(80, "kg"),
  4295. name: "Front",
  4296. image: {
  4297. source: "./media/characters/natalya/front.svg"
  4298. }
  4299. },
  4300. back: {
  4301. height: math.unit(2, "meter"),
  4302. weight: math.unit(80, "kg"),
  4303. name: "Back",
  4304. image: {
  4305. source: "./media/characters/natalya/back.svg"
  4306. }
  4307. }
  4308. },
  4309. [
  4310. {
  4311. name: "Normal",
  4312. height: math.unit(150, "feet"),
  4313. default: true
  4314. },
  4315. {
  4316. name: "Megamacro",
  4317. height: math.unit(5, "miles")
  4318. },
  4319. {
  4320. name: "Full-Size",
  4321. height: math.unit(600, "kiloparsecs")
  4322. }
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4327. {
  4328. front: {
  4329. height: math.unit(2, "meter"),
  4330. weight: math.unit(50, "kg"),
  4331. name: "Front",
  4332. image: {
  4333. source: "./media/characters/erestrebah/front.svg",
  4334. extra: 1262/1162,
  4335. bottom: 96/1358
  4336. }
  4337. },
  4338. back: {
  4339. height: math.unit(2, "meter"),
  4340. weight: math.unit(50, "kg"),
  4341. name: "Back",
  4342. image: {
  4343. source: "./media/characters/erestrebah/back.svg",
  4344. extra: 1257/1139,
  4345. bottom: 13/1270
  4346. }
  4347. },
  4348. wing: {
  4349. height: math.unit(2, "meter"),
  4350. weight: math.unit(50, "kg"),
  4351. name: "Wing",
  4352. image: {
  4353. source: "./media/characters/erestrebah/wing.svg",
  4354. extra: 1262/1162,
  4355. bottom: 96/1358
  4356. }
  4357. },
  4358. mouth: {
  4359. height: math.unit(0.39, "feet"),
  4360. name: "Mouth",
  4361. image: {
  4362. source: "./media/characters/erestrebah/mouth.svg"
  4363. }
  4364. }
  4365. },
  4366. [
  4367. {
  4368. name: "Normal",
  4369. height: math.unit(10, "feet")
  4370. },
  4371. {
  4372. name: "Large",
  4373. height: math.unit(50, "feet"),
  4374. default: true
  4375. },
  4376. {
  4377. name: "Macro",
  4378. height: math.unit(300, "feet")
  4379. },
  4380. {
  4381. name: "Macro+",
  4382. height: math.unit(750, "feet")
  4383. },
  4384. {
  4385. name: "Megamacro",
  4386. height: math.unit(3, "miles")
  4387. }
  4388. ]
  4389. ))
  4390. characterMakers.push(() => makeCharacter(
  4391. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4392. {
  4393. front: {
  4394. height: math.unit(2, "meter"),
  4395. weight: math.unit(80, "kg"),
  4396. name: "Front",
  4397. image: {
  4398. source: "./media/characters/jennifer/front.svg",
  4399. bottom: 0.11,
  4400. extra: 1.16
  4401. }
  4402. },
  4403. frontAlt: {
  4404. height: math.unit(2, "meter"),
  4405. weight: math.unit(80, "kg"),
  4406. name: "Front (Alt)",
  4407. image: {
  4408. source: "./media/characters/jennifer/front-alt.svg"
  4409. }
  4410. }
  4411. },
  4412. [
  4413. {
  4414. name: "Canon Height",
  4415. height: math.unit(120, "feet"),
  4416. default: true
  4417. },
  4418. {
  4419. name: "Macro+",
  4420. height: math.unit(300, "feet")
  4421. },
  4422. {
  4423. name: "Megamacro",
  4424. height: math.unit(20000, "feet")
  4425. }
  4426. ]
  4427. ))
  4428. characterMakers.push(() => makeCharacter(
  4429. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4430. {
  4431. front: {
  4432. height: math.unit(2, "meter"),
  4433. weight: math.unit(50, "kg"),
  4434. name: "Front",
  4435. image: {
  4436. source: "./media/characters/kalista/front.svg",
  4437. extra: 1314/1145,
  4438. bottom: 101/1415
  4439. }
  4440. },
  4441. back: {
  4442. height: math.unit(2, "meter"),
  4443. weight: math.unit(50, "kg"),
  4444. name: "Back",
  4445. image: {
  4446. source: "./media/characters/kalista/back.svg",
  4447. extra: 1366 / 1156,
  4448. bottom: 33.9 / 1362.78
  4449. }
  4450. }
  4451. },
  4452. [
  4453. {
  4454. name: "Uncomfortably Small",
  4455. height: math.unit(10, "feet")
  4456. },
  4457. {
  4458. name: "Small",
  4459. height: math.unit(30, "feet")
  4460. },
  4461. {
  4462. name: "Macro",
  4463. height: math.unit(100, "feet"),
  4464. default: true
  4465. },
  4466. {
  4467. name: "Macro+",
  4468. height: math.unit(2000, "feet")
  4469. },
  4470. {
  4471. name: "True Form",
  4472. height: math.unit(8924, "miles")
  4473. }
  4474. ]
  4475. ))
  4476. characterMakers.push(() => makeCharacter(
  4477. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4478. {
  4479. front: {
  4480. height: math.unit(2, "meter"),
  4481. weight: math.unit(120, "kg"),
  4482. name: "Front",
  4483. image: {
  4484. source: "./media/characters/ggv/front.svg"
  4485. }
  4486. },
  4487. side: {
  4488. height: math.unit(2, "meter"),
  4489. weight: math.unit(120, "kg"),
  4490. name: "Side",
  4491. image: {
  4492. source: "./media/characters/ggv/side.svg"
  4493. }
  4494. }
  4495. },
  4496. [
  4497. {
  4498. name: "Extremely Puny",
  4499. height: math.unit(9 + 5 / 12, "feet")
  4500. },
  4501. {
  4502. name: "Horribly Small",
  4503. height: math.unit(47.7, "miles"),
  4504. default: true
  4505. },
  4506. {
  4507. name: "Reasonably Sized",
  4508. height: math.unit(25000, "parsecs")
  4509. },
  4510. {
  4511. name: "Slightly Uncompressed",
  4512. height: math.unit(7.77e31, "parsecs")
  4513. },
  4514. {
  4515. name: "Omniversal",
  4516. height: math.unit(1e300, "meters")
  4517. },
  4518. ]
  4519. ))
  4520. characterMakers.push(() => makeCharacter(
  4521. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4522. {
  4523. front: {
  4524. height: math.unit(2, "meter"),
  4525. weight: math.unit(75, "lb"),
  4526. name: "Front",
  4527. image: {
  4528. source: "./media/characters/napalm/front.svg"
  4529. }
  4530. },
  4531. back: {
  4532. height: math.unit(2, "meter"),
  4533. weight: math.unit(75, "lb"),
  4534. name: "Back",
  4535. image: {
  4536. source: "./media/characters/napalm/back.svg"
  4537. }
  4538. }
  4539. },
  4540. [
  4541. {
  4542. name: "Standard",
  4543. height: math.unit(55, "feet"),
  4544. default: true
  4545. }
  4546. ]
  4547. ))
  4548. characterMakers.push(() => makeCharacter(
  4549. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4550. {
  4551. front: {
  4552. height: math.unit(7 + 5 / 6, "feet"),
  4553. weight: math.unit(325, "lb"),
  4554. name: "Front",
  4555. image: {
  4556. source: "./media/characters/asana/front.svg",
  4557. extra: 1133 / 1060,
  4558. bottom: 15.2 / 1148.6
  4559. }
  4560. },
  4561. back: {
  4562. height: math.unit(7 + 5 / 6, "feet"),
  4563. weight: math.unit(325, "lb"),
  4564. name: "Back",
  4565. image: {
  4566. source: "./media/characters/asana/back.svg",
  4567. extra: 1114 / 1043,
  4568. bottom: 5 / 1120
  4569. }
  4570. },
  4571. dressedDark: {
  4572. height: math.unit(7 + 5 / 6, "feet"),
  4573. weight: math.unit(325, "lb"),
  4574. name: "Dressed (Dark)",
  4575. image: {
  4576. source: "./media/characters/asana/dressed-dark.svg",
  4577. extra: 1133 / 1060,
  4578. bottom: 15.2 / 1148.6
  4579. }
  4580. },
  4581. dressedLight: {
  4582. height: math.unit(7 + 5 / 6, "feet"),
  4583. weight: math.unit(325, "lb"),
  4584. name: "Dressed (Light)",
  4585. image: {
  4586. source: "./media/characters/asana/dressed-light.svg",
  4587. extra: 1133 / 1060,
  4588. bottom: 15.2 / 1148.6
  4589. }
  4590. },
  4591. },
  4592. [
  4593. {
  4594. name: "Standard",
  4595. height: math.unit(7 + 5 / 6, "feet"),
  4596. default: true
  4597. },
  4598. {
  4599. name: "Large",
  4600. height: math.unit(10, "meters")
  4601. },
  4602. {
  4603. name: "Macro",
  4604. height: math.unit(2500, "meters")
  4605. },
  4606. {
  4607. name: "Megamacro",
  4608. height: math.unit(5e6, "meters")
  4609. },
  4610. {
  4611. name: "Examacro",
  4612. height: math.unit(5e12, "lightyears")
  4613. },
  4614. {
  4615. name: "Max Size",
  4616. height: math.unit(1e31, "lightyears")
  4617. }
  4618. ]
  4619. ))
  4620. characterMakers.push(() => makeCharacter(
  4621. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4622. {
  4623. front: {
  4624. height: math.unit(2, "meter"),
  4625. weight: math.unit(60, "kg"),
  4626. name: "Front",
  4627. image: {
  4628. source: "./media/characters/ebony/front.svg",
  4629. bottom: 0.03,
  4630. extra: 1045 / 810 + 0.03
  4631. }
  4632. },
  4633. side: {
  4634. height: math.unit(2, "meter"),
  4635. weight: math.unit(60, "kg"),
  4636. name: "Side",
  4637. image: {
  4638. source: "./media/characters/ebony/side.svg",
  4639. bottom: 0.03,
  4640. extra: 1045 / 810 + 0.03
  4641. }
  4642. },
  4643. back: {
  4644. height: math.unit(2, "meter"),
  4645. weight: math.unit(60, "kg"),
  4646. name: "Back",
  4647. image: {
  4648. source: "./media/characters/ebony/back.svg",
  4649. bottom: 0.01,
  4650. extra: 1045 / 810 + 0.01
  4651. }
  4652. },
  4653. },
  4654. [
  4655. // TODO check why I did this lol
  4656. {
  4657. name: "Standard",
  4658. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4659. default: true
  4660. },
  4661. {
  4662. name: "Macro",
  4663. height: math.unit(200, "feet")
  4664. },
  4665. {
  4666. name: "Gigamacro",
  4667. height: math.unit(13000, "km")
  4668. }
  4669. ]
  4670. ))
  4671. characterMakers.push(() => makeCharacter(
  4672. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4673. {
  4674. front: {
  4675. height: math.unit(6, "feet"),
  4676. weight: math.unit(175, "lb"),
  4677. name: "Front",
  4678. image: {
  4679. source: "./media/characters/mountain/front.svg",
  4680. extra: 972 / 955,
  4681. bottom: 64 / 1036.6
  4682. }
  4683. },
  4684. back: {
  4685. height: math.unit(6, "feet"),
  4686. weight: math.unit(175, "lb"),
  4687. name: "Back",
  4688. image: {
  4689. source: "./media/characters/mountain/back.svg",
  4690. extra: 970 / 950,
  4691. bottom: 28.25 / 999
  4692. }
  4693. },
  4694. },
  4695. [
  4696. {
  4697. name: "Large",
  4698. height: math.unit(20, "meters")
  4699. },
  4700. {
  4701. name: "Macro",
  4702. height: math.unit(300, "meters")
  4703. },
  4704. {
  4705. name: "Gigamacro",
  4706. height: math.unit(10000, "km"),
  4707. default: true
  4708. },
  4709. {
  4710. name: "Examacro",
  4711. height: math.unit(10e9, "lightyears")
  4712. }
  4713. ]
  4714. ))
  4715. characterMakers.push(() => makeCharacter(
  4716. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4717. {
  4718. front: {
  4719. height: math.unit(8, "feet"),
  4720. weight: math.unit(500, "lb"),
  4721. name: "Front",
  4722. image: {
  4723. source: "./media/characters/rick/front.svg"
  4724. }
  4725. }
  4726. },
  4727. [
  4728. {
  4729. name: "Normal",
  4730. height: math.unit(8, "feet"),
  4731. default: true
  4732. },
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(5, "km")
  4736. }
  4737. ]
  4738. ))
  4739. characterMakers.push(() => makeCharacter(
  4740. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4741. {
  4742. front: {
  4743. height: math.unit(8, "feet"),
  4744. weight: math.unit(120, "lb"),
  4745. name: "Front",
  4746. image: {
  4747. source: "./media/characters/ona/front.svg"
  4748. }
  4749. },
  4750. frontAlt: {
  4751. height: math.unit(8, "feet"),
  4752. weight: math.unit(120, "lb"),
  4753. name: "Front (Alt)",
  4754. image: {
  4755. source: "./media/characters/ona/front-alt.svg"
  4756. }
  4757. },
  4758. back: {
  4759. height: math.unit(8, "feet"),
  4760. weight: math.unit(120, "lb"),
  4761. name: "Back",
  4762. image: {
  4763. source: "./media/characters/ona/back.svg"
  4764. }
  4765. },
  4766. foot: {
  4767. height: math.unit(1.1, "feet"),
  4768. name: "Foot",
  4769. image: {
  4770. source: "./media/characters/ona/foot.svg"
  4771. }
  4772. }
  4773. },
  4774. [
  4775. {
  4776. name: "Megamacro",
  4777. height: math.unit(70, "km"),
  4778. default: true
  4779. },
  4780. {
  4781. name: "Gigamacro",
  4782. height: math.unit(681818, "miles")
  4783. },
  4784. {
  4785. name: "Examacro",
  4786. height: math.unit(3800000, "lightyears")
  4787. },
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4792. {
  4793. front: {
  4794. height: math.unit(12, "feet"),
  4795. weight: math.unit(3000, "lb"),
  4796. name: "Front",
  4797. image: {
  4798. source: "./media/characters/mech/front.svg",
  4799. extra: 2900 / 2770,
  4800. bottom: 110 / 3010
  4801. }
  4802. },
  4803. back: {
  4804. height: math.unit(12, "feet"),
  4805. weight: math.unit(3000, "lb"),
  4806. name: "Back",
  4807. image: {
  4808. source: "./media/characters/mech/back.svg",
  4809. extra: 3011 / 2890,
  4810. bottom: 94 / 3105
  4811. }
  4812. },
  4813. maw: {
  4814. height: math.unit(3.07, "feet"),
  4815. name: "Maw",
  4816. image: {
  4817. source: "./media/characters/mech/maw.svg"
  4818. }
  4819. },
  4820. head: {
  4821. height: math.unit(3.07, "feet"),
  4822. name: "Head",
  4823. image: {
  4824. source: "./media/characters/mech/head.svg"
  4825. }
  4826. },
  4827. dick: {
  4828. height: math.unit(1.43, "feet"),
  4829. name: "Dick",
  4830. image: {
  4831. source: "./media/characters/mech/dick.svg"
  4832. }
  4833. },
  4834. },
  4835. [
  4836. {
  4837. name: "Normal",
  4838. height: math.unit(12, "feet")
  4839. },
  4840. {
  4841. name: "Macro",
  4842. height: math.unit(300, "feet"),
  4843. default: true
  4844. },
  4845. {
  4846. name: "Macro+",
  4847. height: math.unit(1500, "feet")
  4848. },
  4849. ]
  4850. ))
  4851. characterMakers.push(() => makeCharacter(
  4852. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4853. {
  4854. front: {
  4855. height: math.unit(1.3, "meter"),
  4856. weight: math.unit(30, "kg"),
  4857. name: "Front",
  4858. image: {
  4859. source: "./media/characters/gregory/front.svg",
  4860. }
  4861. }
  4862. },
  4863. [
  4864. {
  4865. name: "Normal",
  4866. height: math.unit(1.3, "meter"),
  4867. default: true
  4868. },
  4869. {
  4870. name: "Macro",
  4871. height: math.unit(20, "meter")
  4872. }
  4873. ]
  4874. ))
  4875. characterMakers.push(() => makeCharacter(
  4876. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4877. {
  4878. front: {
  4879. height: math.unit(2.8, "meter"),
  4880. weight: math.unit(200, "kg"),
  4881. name: "Front",
  4882. image: {
  4883. source: "./media/characters/elory/front.svg",
  4884. }
  4885. }
  4886. },
  4887. [
  4888. {
  4889. name: "Normal",
  4890. height: math.unit(2.8, "meter"),
  4891. default: true
  4892. },
  4893. {
  4894. name: "Macro",
  4895. height: math.unit(38, "meter")
  4896. }
  4897. ]
  4898. ))
  4899. characterMakers.push(() => makeCharacter(
  4900. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4901. {
  4902. front: {
  4903. height: math.unit(470, "feet"),
  4904. weight: math.unit(924, "tons"),
  4905. name: "Front",
  4906. image: {
  4907. source: "./media/characters/angelpatamon/front.svg",
  4908. }
  4909. }
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(470, "feet"),
  4915. default: true
  4916. },
  4917. {
  4918. name: "Deity Size I",
  4919. height: math.unit(28651.2, "km")
  4920. },
  4921. {
  4922. name: "Deity Size II",
  4923. height: math.unit(171907.2, "km")
  4924. }
  4925. ]
  4926. ))
  4927. characterMakers.push(() => makeCharacter(
  4928. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4929. {
  4930. side: {
  4931. height: math.unit(7.2, "meter"),
  4932. weight: math.unit(8.2, "tons"),
  4933. name: "Side",
  4934. image: {
  4935. source: "./media/characters/cryae/side.svg",
  4936. extra: 3500 / 1500
  4937. }
  4938. }
  4939. },
  4940. [
  4941. {
  4942. name: "Normal",
  4943. height: math.unit(7.2, "meter"),
  4944. default: true
  4945. }
  4946. ]
  4947. ))
  4948. characterMakers.push(() => makeCharacter(
  4949. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4950. {
  4951. front: {
  4952. height: math.unit(6, "feet"),
  4953. weight: math.unit(175, "lb"),
  4954. name: "Front",
  4955. image: {
  4956. source: "./media/characters/xera/front.svg",
  4957. extra: 2377 / 1972,
  4958. bottom: 75.5 / 2452
  4959. }
  4960. },
  4961. side: {
  4962. height: math.unit(6, "feet"),
  4963. weight: math.unit(175, "lb"),
  4964. name: "Side",
  4965. image: {
  4966. source: "./media/characters/xera/side.svg",
  4967. extra: 2345 / 2019,
  4968. bottom: 39.7 / 2384
  4969. }
  4970. },
  4971. back: {
  4972. height: math.unit(6, "feet"),
  4973. weight: math.unit(175, "lb"),
  4974. name: "Back",
  4975. image: {
  4976. source: "./media/characters/xera/back.svg",
  4977. extra: 2095 / 1984,
  4978. bottom: 67 / 2166
  4979. }
  4980. },
  4981. },
  4982. [
  4983. {
  4984. name: "Small",
  4985. height: math.unit(10, "feet")
  4986. },
  4987. {
  4988. name: "Macro",
  4989. height: math.unit(500, "meters"),
  4990. default: true
  4991. },
  4992. {
  4993. name: "Macro+",
  4994. height: math.unit(10, "km")
  4995. },
  4996. {
  4997. name: "Gigamacro",
  4998. height: math.unit(25000, "km")
  4999. },
  5000. {
  5001. name: "Teramacro",
  5002. height: math.unit(3e6, "km")
  5003. }
  5004. ]
  5005. ))
  5006. characterMakers.push(() => makeCharacter(
  5007. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5008. {
  5009. front: {
  5010. height: math.unit(6, "feet"),
  5011. weight: math.unit(175, "lb"),
  5012. name: "Front",
  5013. image: {
  5014. source: "./media/characters/nebula/front.svg",
  5015. extra: 2566 / 2362,
  5016. bottom: 81 / 2644
  5017. }
  5018. }
  5019. },
  5020. [
  5021. {
  5022. name: "Small",
  5023. height: math.unit(4.5, "meters")
  5024. },
  5025. {
  5026. name: "Macro",
  5027. height: math.unit(1500, "meters"),
  5028. default: true
  5029. },
  5030. {
  5031. name: "Megamacro",
  5032. height: math.unit(150, "km")
  5033. },
  5034. {
  5035. name: "Gigamacro",
  5036. height: math.unit(27000, "km")
  5037. }
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5042. {
  5043. front: {
  5044. height: math.unit(6, "feet"),
  5045. weight: math.unit(225, "lb"),
  5046. name: "Front",
  5047. image: {
  5048. source: "./media/characters/abysgar/front.svg",
  5049. extra: 1739/1614,
  5050. bottom: 71/1810
  5051. }
  5052. },
  5053. frontNsfw: {
  5054. height: math.unit(6, "feet"),
  5055. weight: math.unit(225, "lb"),
  5056. name: "Front (NSFW)",
  5057. image: {
  5058. source: "./media/characters/abysgar/front-nsfw.svg",
  5059. extra: 1739/1614,
  5060. bottom: 71/1810
  5061. }
  5062. },
  5063. back: {
  5064. height: math.unit(4.6, "feet"),
  5065. weight: math.unit(225, "lb"),
  5066. name: "Back",
  5067. image: {
  5068. source: "./media/characters/abysgar/back.svg",
  5069. extra: 1384/1327,
  5070. bottom: 0/1384
  5071. }
  5072. },
  5073. head: {
  5074. height: math.unit(1.25, "feet"),
  5075. name: "Head",
  5076. image: {
  5077. source: "./media/characters/abysgar/head.svg",
  5078. extra: 669/569,
  5079. bottom: 0/669
  5080. }
  5081. },
  5082. },
  5083. [
  5084. {
  5085. name: "Small",
  5086. height: math.unit(4.5, "meters")
  5087. },
  5088. {
  5089. name: "Macro",
  5090. height: math.unit(1250, "meters"),
  5091. default: true
  5092. },
  5093. {
  5094. name: "Megamacro",
  5095. height: math.unit(125, "km")
  5096. },
  5097. {
  5098. name: "Gigamacro",
  5099. height: math.unit(26000, "km")
  5100. }
  5101. ]
  5102. ))
  5103. characterMakers.push(() => makeCharacter(
  5104. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5105. {
  5106. front: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(180, "lb"),
  5109. name: "Front",
  5110. image: {
  5111. source: "./media/characters/yakuz/front.svg"
  5112. }
  5113. }
  5114. },
  5115. [
  5116. {
  5117. name: "Small",
  5118. height: math.unit(5, "meters")
  5119. },
  5120. {
  5121. name: "Macro",
  5122. height: math.unit(1500, "meters"),
  5123. default: true
  5124. },
  5125. {
  5126. name: "Megamacro",
  5127. height: math.unit(200, "km")
  5128. },
  5129. {
  5130. name: "Gigamacro",
  5131. height: math.unit(100000, "km")
  5132. }
  5133. ]
  5134. ))
  5135. characterMakers.push(() => makeCharacter(
  5136. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5137. {
  5138. front: {
  5139. height: math.unit(6, "feet"),
  5140. weight: math.unit(175, "lb"),
  5141. name: "Front",
  5142. image: {
  5143. source: "./media/characters/mirova/front.svg",
  5144. extra: 3334 / 3071,
  5145. bottom: 42 / 3375.6
  5146. }
  5147. }
  5148. },
  5149. [
  5150. {
  5151. name: "Small",
  5152. height: math.unit(5, "meters")
  5153. },
  5154. {
  5155. name: "Macro",
  5156. height: math.unit(900, "meters"),
  5157. default: true
  5158. },
  5159. {
  5160. name: "Megamacro",
  5161. height: math.unit(135, "km")
  5162. },
  5163. {
  5164. name: "Gigamacro",
  5165. height: math.unit(20000, "km")
  5166. }
  5167. ]
  5168. ))
  5169. characterMakers.push(() => makeCharacter(
  5170. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5171. {
  5172. side: {
  5173. height: math.unit(28.35, "feet"),
  5174. weight: math.unit(99.75, "tons"),
  5175. name: "Side",
  5176. image: {
  5177. source: "./media/characters/asana-mech/side.svg",
  5178. extra: 923 / 699,
  5179. bottom: 50 / 975
  5180. }
  5181. },
  5182. chaingun: {
  5183. height: math.unit(7, "feet"),
  5184. weight: math.unit(2400, "lb"),
  5185. name: "Chaingun",
  5186. image: {
  5187. source: "./media/characters/asana-mech/chaingun.svg"
  5188. }
  5189. },
  5190. laser: {
  5191. height: math.unit(7.12, "feet"),
  5192. weight: math.unit(2000, "lb"),
  5193. name: "Laser",
  5194. image: {
  5195. source: "./media/characters/asana-mech/laser.svg"
  5196. }
  5197. },
  5198. },
  5199. [
  5200. {
  5201. name: "Normal",
  5202. height: math.unit(28.35, "feet"),
  5203. default: true
  5204. },
  5205. {
  5206. name: "Macro",
  5207. height: math.unit(2500, "feet")
  5208. },
  5209. {
  5210. name: "Megamacro",
  5211. height: math.unit(25, "miles")
  5212. },
  5213. {
  5214. name: "Examacro",
  5215. height: math.unit(6e8, "lightyears")
  5216. },
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5221. {
  5222. front: {
  5223. height: math.unit(5, "meters"),
  5224. weight: math.unit(1000, "kg"),
  5225. name: "Front",
  5226. image: {
  5227. source: "./media/characters/asche/front.svg",
  5228. extra: 1258 / 1190,
  5229. bottom: 47 / 1305
  5230. }
  5231. },
  5232. frontUnderwear: {
  5233. height: math.unit(5, "meters"),
  5234. weight: math.unit(1000, "kg"),
  5235. name: "Front (Underwear)",
  5236. image: {
  5237. source: "./media/characters/asche/front-underwear.svg",
  5238. extra: 1258 / 1190,
  5239. bottom: 47 / 1305
  5240. }
  5241. },
  5242. frontDressed: {
  5243. height: math.unit(5, "meters"),
  5244. weight: math.unit(1000, "kg"),
  5245. name: "Front (Dressed)",
  5246. image: {
  5247. source: "./media/characters/asche/front-dressed.svg",
  5248. extra: 1258 / 1190,
  5249. bottom: 47 / 1305
  5250. }
  5251. },
  5252. frontArmor: {
  5253. height: math.unit(5, "meters"),
  5254. weight: math.unit(1000, "kg"),
  5255. name: "Front (Armored)",
  5256. image: {
  5257. source: "./media/characters/asche/front-armored.svg",
  5258. extra: 1374 / 1308,
  5259. bottom: 23 / 1397
  5260. }
  5261. },
  5262. mp724: {
  5263. height: math.unit(0.96, "meters"),
  5264. weight: math.unit(38, "kg"),
  5265. name: "H&K MP724",
  5266. image: {
  5267. source: "./media/characters/asche/h&k-mp724.svg"
  5268. }
  5269. },
  5270. side: {
  5271. height: math.unit(5, "meters"),
  5272. weight: math.unit(1000, "kg"),
  5273. name: "Side",
  5274. image: {
  5275. source: "./media/characters/asche/side.svg",
  5276. extra: 1717 / 1609,
  5277. bottom: 0.005
  5278. }
  5279. },
  5280. back: {
  5281. height: math.unit(5, "meters"),
  5282. weight: math.unit(1000, "kg"),
  5283. name: "Back",
  5284. image: {
  5285. source: "./media/characters/asche/back.svg",
  5286. extra: 1570 / 1501
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "DEFCON 5",
  5293. height: math.unit(5, "meters")
  5294. },
  5295. {
  5296. name: "DEFCON 4",
  5297. height: math.unit(500, "meters"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "DEFCON 3",
  5302. height: math.unit(5, "km")
  5303. },
  5304. {
  5305. name: "DEFCON 2",
  5306. height: math.unit(500, "km")
  5307. },
  5308. {
  5309. name: "DEFCON 1",
  5310. height: math.unit(500000, "km")
  5311. },
  5312. {
  5313. name: "DEFCON 0",
  5314. height: math.unit(3, "gigaparsecs")
  5315. },
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5320. {
  5321. front: {
  5322. height: math.unit(7, "feet"),
  5323. weight: math.unit(92.7, "kg"),
  5324. name: "Front",
  5325. image: {
  5326. source: "./media/characters/gale/front.svg",
  5327. extra: 977/919,
  5328. bottom: 105/1082
  5329. }
  5330. },
  5331. side: {
  5332. height: math.unit(6.7, "feet"),
  5333. weight: math.unit(92.7, "kg"),
  5334. name: "Side",
  5335. image: {
  5336. source: "./media/characters/gale/side.svg",
  5337. extra: 978/922,
  5338. bottom: 140/1118
  5339. }
  5340. },
  5341. back: {
  5342. height: math.unit(7, "feet"),
  5343. weight: math.unit(92.7, "kg"),
  5344. name: "Back",
  5345. image: {
  5346. source: "./media/characters/gale/back.svg",
  5347. extra: 966/920,
  5348. bottom: 61/1027
  5349. }
  5350. },
  5351. maw: {
  5352. height: math.unit(2.23, "feet"),
  5353. name: "Maw",
  5354. image: {
  5355. source: "./media/characters/gale/maw.svg"
  5356. }
  5357. },
  5358. foot: {
  5359. height: math.unit(2.1, "feet"),
  5360. name: "Foot",
  5361. image: {
  5362. source: "./media/characters/gale/foot.svg"
  5363. }
  5364. },
  5365. },
  5366. [
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(7, "feet")
  5370. },
  5371. {
  5372. name: "Macro",
  5373. height: math.unit(150, "feet"),
  5374. default: true
  5375. },
  5376. {
  5377. name: "Macro+",
  5378. height: math.unit(300, "feet")
  5379. },
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5384. {
  5385. front: {
  5386. height: math.unit(5 + 10/12, "feet"),
  5387. weight: math.unit(67, "kg"),
  5388. name: "Front",
  5389. image: {
  5390. source: "./media/characters/draylen/front.svg",
  5391. extra: 832/777,
  5392. bottom: 85/917
  5393. }
  5394. }
  5395. },
  5396. [
  5397. {
  5398. name: "Normal",
  5399. height: math.unit(5 + 10/12, "feet")
  5400. },
  5401. {
  5402. name: "Macro",
  5403. height: math.unit(150, "feet"),
  5404. default: true
  5405. }
  5406. ]
  5407. ))
  5408. characterMakers.push(() => makeCharacter(
  5409. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5410. {
  5411. front: {
  5412. height: math.unit(7 + 9 / 12, "feet"),
  5413. weight: math.unit(379, "lbs"),
  5414. name: "Front",
  5415. image: {
  5416. source: "./media/characters/chez/front.svg"
  5417. }
  5418. },
  5419. side: {
  5420. height: math.unit(7 + 9 / 12, "feet"),
  5421. weight: math.unit(379, "lbs"),
  5422. name: "Side",
  5423. image: {
  5424. source: "./media/characters/chez/side.svg"
  5425. }
  5426. }
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(7 + 9 / 12, "feet"),
  5432. default: true
  5433. },
  5434. {
  5435. name: "God King",
  5436. height: math.unit(9750000, "meters")
  5437. }
  5438. ]
  5439. ))
  5440. characterMakers.push(() => makeCharacter(
  5441. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5442. {
  5443. front: {
  5444. height: math.unit(6, "feet"),
  5445. weight: math.unit(275, "lbs"),
  5446. name: "Front",
  5447. image: {
  5448. source: "./media/characters/kaylum/front.svg",
  5449. bottom: 0.01,
  5450. extra: 1166 / 1031
  5451. }
  5452. },
  5453. frontWingless: {
  5454. height: math.unit(6, "feet"),
  5455. weight: math.unit(275, "lbs"),
  5456. name: "Front (Wingless)",
  5457. image: {
  5458. source: "./media/characters/kaylum/front-wingless.svg",
  5459. bottom: 0.01,
  5460. extra: 1117 / 1031
  5461. }
  5462. }
  5463. },
  5464. [
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(3.05, "meters")
  5468. },
  5469. {
  5470. name: "Master",
  5471. height: math.unit(5.5, "meters")
  5472. },
  5473. {
  5474. name: "Rampage",
  5475. height: math.unit(19, "meters")
  5476. },
  5477. {
  5478. name: "Macro Lite",
  5479. height: math.unit(37, "meters")
  5480. },
  5481. {
  5482. name: "Hyper Predator",
  5483. height: math.unit(61, "meters")
  5484. },
  5485. {
  5486. name: "Macro",
  5487. height: math.unit(138, "meters"),
  5488. default: true
  5489. }
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5494. {
  5495. front: {
  5496. height: math.unit(5 + 5 / 12, "feet"),
  5497. weight: math.unit(120, "lbs"),
  5498. name: "Front",
  5499. image: {
  5500. source: "./media/characters/geta/front.svg",
  5501. extra: 1003/933,
  5502. bottom: 21/1024
  5503. }
  5504. },
  5505. paw: {
  5506. height: math.unit(0.35, "feet"),
  5507. name: "Paw",
  5508. image: {
  5509. source: "./media/characters/geta/paw.svg"
  5510. }
  5511. },
  5512. },
  5513. [
  5514. {
  5515. name: "Micro",
  5516. height: math.unit(3, "inches"),
  5517. default: true
  5518. },
  5519. {
  5520. name: "Normal",
  5521. height: math.unit(5 + 5 / 12, "feet")
  5522. }
  5523. ]
  5524. ))
  5525. characterMakers.push(() => makeCharacter(
  5526. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5527. {
  5528. front: {
  5529. height: math.unit(6, "feet"),
  5530. weight: math.unit(300, "lbs"),
  5531. name: "Front",
  5532. image: {
  5533. source: "./media/characters/tyrnn/front.svg"
  5534. }
  5535. }
  5536. },
  5537. [
  5538. {
  5539. name: "Main Height",
  5540. height: math.unit(355, "feet"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Fave. Height",
  5545. height: math.unit(2400, "feet")
  5546. }
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5551. {
  5552. front: {
  5553. height: math.unit(6, "feet"),
  5554. weight: math.unit(300, "lbs"),
  5555. name: "Front",
  5556. image: {
  5557. source: "./media/characters/appledectomy/front.svg"
  5558. }
  5559. }
  5560. },
  5561. [
  5562. {
  5563. name: "Macro",
  5564. height: math.unit(2500, "feet")
  5565. },
  5566. {
  5567. name: "Megamacro",
  5568. height: math.unit(50, "miles"),
  5569. default: true
  5570. },
  5571. {
  5572. name: "Gigamacro",
  5573. height: math.unit(5000, "miles")
  5574. },
  5575. {
  5576. name: "Teramacro",
  5577. height: math.unit(250000, "miles")
  5578. },
  5579. ]
  5580. ))
  5581. characterMakers.push(() => makeCharacter(
  5582. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5583. {
  5584. front: {
  5585. height: math.unit(6, "feet"),
  5586. weight: math.unit(200, "lbs"),
  5587. name: "Front",
  5588. image: {
  5589. source: "./media/characters/vulpes/front.svg",
  5590. extra: 573 / 543,
  5591. bottom: 0.033
  5592. }
  5593. },
  5594. side: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(200, "lbs"),
  5597. name: "Side",
  5598. image: {
  5599. source: "./media/characters/vulpes/side.svg",
  5600. extra: 577 / 549,
  5601. bottom: 11 / 588
  5602. }
  5603. },
  5604. back: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(200, "lbs"),
  5607. name: "Back",
  5608. image: {
  5609. source: "./media/characters/vulpes/back.svg",
  5610. extra: 573 / 549,
  5611. bottom: 20 / 593
  5612. }
  5613. },
  5614. feet: {
  5615. height: math.unit(1.276, "feet"),
  5616. name: "Feet",
  5617. image: {
  5618. source: "./media/characters/vulpes/feet.svg"
  5619. }
  5620. },
  5621. maw: {
  5622. height: math.unit(1.18, "feet"),
  5623. name: "Maw",
  5624. image: {
  5625. source: "./media/characters/vulpes/maw.svg"
  5626. }
  5627. },
  5628. },
  5629. [
  5630. {
  5631. name: "Micro",
  5632. height: math.unit(2, "inches")
  5633. },
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(6.3, "feet")
  5637. },
  5638. {
  5639. name: "Macro",
  5640. height: math.unit(850, "feet")
  5641. },
  5642. {
  5643. name: "Megamacro",
  5644. height: math.unit(7500, "feet"),
  5645. default: true
  5646. },
  5647. {
  5648. name: "Gigamacro",
  5649. height: math.unit(570000, "miles")
  5650. }
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5655. {
  5656. front: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(210, "lbs"),
  5659. name: "Front",
  5660. image: {
  5661. source: "./media/characters/rain-fallen/front.svg"
  5662. }
  5663. },
  5664. side: {
  5665. height: math.unit(6, "feet"),
  5666. weight: math.unit(210, "lbs"),
  5667. name: "Side",
  5668. image: {
  5669. source: "./media/characters/rain-fallen/side.svg"
  5670. }
  5671. },
  5672. back: {
  5673. height: math.unit(6, "feet"),
  5674. weight: math.unit(210, "lbs"),
  5675. name: "Back",
  5676. image: {
  5677. source: "./media/characters/rain-fallen/back.svg"
  5678. }
  5679. },
  5680. feral: {
  5681. height: math.unit(9, "feet"),
  5682. weight: math.unit(700, "lbs"),
  5683. name: "Feral",
  5684. image: {
  5685. source: "./media/characters/rain-fallen/feral.svg"
  5686. }
  5687. },
  5688. },
  5689. [
  5690. {
  5691. name: "Meddling with Mortals",
  5692. height: math.unit(8 + 8/12, "feet")
  5693. },
  5694. {
  5695. name: "Normal",
  5696. height: math.unit(5, "meter")
  5697. },
  5698. {
  5699. name: "Macro",
  5700. height: math.unit(150, "meter"),
  5701. default: true
  5702. },
  5703. {
  5704. name: "Megamacro",
  5705. height: math.unit(278e6, "meter")
  5706. },
  5707. {
  5708. name: "Gigamacro",
  5709. height: math.unit(2e9, "meter")
  5710. },
  5711. {
  5712. name: "Teramacro",
  5713. height: math.unit(8e12, "meter")
  5714. },
  5715. {
  5716. name: "Devourer",
  5717. height: math.unit(14, "zettameters")
  5718. },
  5719. {
  5720. name: "Scarlet King",
  5721. height: math.unit(18, "yottameters")
  5722. },
  5723. {
  5724. name: "Void",
  5725. height: math.unit(1e88, "yottameters")
  5726. }
  5727. ]
  5728. ))
  5729. characterMakers.push(() => makeCharacter(
  5730. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5731. {
  5732. standing: {
  5733. height: math.unit(6, "feet"),
  5734. weight: math.unit(180, "lbs"),
  5735. name: "Standing",
  5736. image: {
  5737. source: "./media/characters/zaakira/standing.svg",
  5738. extra: 1599/1504,
  5739. bottom: 39/1638
  5740. }
  5741. },
  5742. laying: {
  5743. height: math.unit(3.3, "feet"),
  5744. weight: math.unit(180, "lbs"),
  5745. name: "Laying",
  5746. image: {
  5747. source: "./media/characters/zaakira/laying.svg"
  5748. }
  5749. },
  5750. },
  5751. [
  5752. {
  5753. name: "Normal",
  5754. height: math.unit(12, "feet")
  5755. },
  5756. {
  5757. name: "Macro",
  5758. height: math.unit(279, "feet"),
  5759. default: true
  5760. }
  5761. ]
  5762. ))
  5763. characterMakers.push(() => makeCharacter(
  5764. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5765. {
  5766. femSfw: {
  5767. height: math.unit(8, "feet"),
  5768. weight: math.unit(350, "lb"),
  5769. name: "Fem",
  5770. image: {
  5771. source: "./media/characters/sigvald/fem-sfw.svg",
  5772. extra: 182 / 164,
  5773. bottom: 8.7 / 190.5
  5774. }
  5775. },
  5776. femNsfw: {
  5777. height: math.unit(8, "feet"),
  5778. weight: math.unit(350, "lb"),
  5779. name: "Fem (NSFW)",
  5780. image: {
  5781. source: "./media/characters/sigvald/fem-nsfw.svg",
  5782. extra: 182 / 164,
  5783. bottom: 8.7 / 190.5
  5784. }
  5785. },
  5786. maleNsfw: {
  5787. height: math.unit(8, "feet"),
  5788. weight: math.unit(350, "lb"),
  5789. name: "Male (NSFW)",
  5790. image: {
  5791. source: "./media/characters/sigvald/male-nsfw.svg",
  5792. extra: 182 / 164,
  5793. bottom: 8.7 / 190.5
  5794. }
  5795. },
  5796. hermNsfw: {
  5797. height: math.unit(8, "feet"),
  5798. weight: math.unit(350, "lb"),
  5799. name: "Herm (NSFW)",
  5800. image: {
  5801. source: "./media/characters/sigvald/herm-nsfw.svg",
  5802. extra: 182 / 164,
  5803. bottom: 8.7 / 190.5
  5804. }
  5805. },
  5806. dick: {
  5807. height: math.unit(2.36, "feet"),
  5808. name: "Dick",
  5809. image: {
  5810. source: "./media/characters/sigvald/dick.svg"
  5811. }
  5812. },
  5813. eye: {
  5814. height: math.unit(0.31, "feet"),
  5815. name: "Eye",
  5816. image: {
  5817. source: "./media/characters/sigvald/eye.svg"
  5818. }
  5819. },
  5820. mouth: {
  5821. height: math.unit(0.92, "feet"),
  5822. name: "Mouth",
  5823. image: {
  5824. source: "./media/characters/sigvald/mouth.svg"
  5825. }
  5826. },
  5827. paws: {
  5828. height: math.unit(2.2, "feet"),
  5829. name: "Paws",
  5830. image: {
  5831. source: "./media/characters/sigvald/paws.svg"
  5832. }
  5833. }
  5834. },
  5835. [
  5836. {
  5837. name: "Normal",
  5838. height: math.unit(8, "feet")
  5839. },
  5840. {
  5841. name: "Large",
  5842. height: math.unit(12, "feet")
  5843. },
  5844. {
  5845. name: "Larger",
  5846. height: math.unit(20, "feet")
  5847. },
  5848. {
  5849. name: "Macro",
  5850. height: math.unit(150, "feet")
  5851. },
  5852. {
  5853. name: "Macro+",
  5854. height: math.unit(200, "feet"),
  5855. default: true
  5856. },
  5857. ]
  5858. ))
  5859. characterMakers.push(() => makeCharacter(
  5860. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5861. {
  5862. side: {
  5863. height: math.unit(12, "feet"),
  5864. weight: math.unit(2000, "kg"),
  5865. name: "Side",
  5866. image: {
  5867. source: "./media/characters/scott/side.svg",
  5868. extra: 754 / 724,
  5869. bottom: 0.069
  5870. }
  5871. },
  5872. upright: {
  5873. height: math.unit(12, "feet"),
  5874. weight: math.unit(2000, "kg"),
  5875. name: "Upright",
  5876. image: {
  5877. source: "./media/characters/scott/upright.svg",
  5878. extra: 3881 / 3722,
  5879. bottom: 0.05
  5880. }
  5881. },
  5882. },
  5883. [
  5884. {
  5885. name: "Normal",
  5886. height: math.unit(12, "feet"),
  5887. default: true
  5888. },
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5893. {
  5894. side: {
  5895. height: math.unit(8, "meters"),
  5896. weight: math.unit(84755, "lbs"),
  5897. name: "Side",
  5898. image: {
  5899. source: "./media/characters/tobias/side.svg",
  5900. extra: 1474 / 1096,
  5901. bottom: 38.9 / 1513.1235
  5902. }
  5903. },
  5904. },
  5905. [
  5906. {
  5907. name: "Normal",
  5908. height: math.unit(8, "meters"),
  5909. default: true
  5910. },
  5911. ]
  5912. ))
  5913. characterMakers.push(() => makeCharacter(
  5914. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5915. {
  5916. front: {
  5917. height: math.unit(5.5, "feet"),
  5918. weight: math.unit(400, "lbs"),
  5919. name: "Front",
  5920. image: {
  5921. source: "./media/characters/kieran/front.svg",
  5922. extra: 2694 / 2364,
  5923. bottom: 217 / 2908
  5924. }
  5925. },
  5926. side: {
  5927. height: math.unit(5.5, "feet"),
  5928. weight: math.unit(400, "lbs"),
  5929. name: "Side",
  5930. image: {
  5931. source: "./media/characters/kieran/side.svg",
  5932. extra: 875 / 777,
  5933. bottom: 84.6 / 959
  5934. }
  5935. },
  5936. },
  5937. [
  5938. {
  5939. name: "Normal",
  5940. height: math.unit(5.5, "feet"),
  5941. default: true
  5942. },
  5943. ]
  5944. ))
  5945. characterMakers.push(() => makeCharacter(
  5946. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5947. {
  5948. side: {
  5949. height: math.unit(2, "meters"),
  5950. weight: math.unit(70, "kg"),
  5951. name: "Side",
  5952. image: {
  5953. source: "./media/characters/sanya/side.svg",
  5954. bottom: 0.02,
  5955. extra: 1.02
  5956. }
  5957. },
  5958. },
  5959. [
  5960. {
  5961. name: "Small",
  5962. height: math.unit(2, "meters")
  5963. },
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(3, "meters")
  5967. },
  5968. {
  5969. name: "Macro",
  5970. height: math.unit(16, "meters"),
  5971. default: true
  5972. },
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5977. {
  5978. front: {
  5979. height: math.unit(2, "meters"),
  5980. weight: math.unit(120, "kg"),
  5981. name: "Front",
  5982. image: {
  5983. source: "./media/characters/miranda/front.svg",
  5984. extra: 195 / 185,
  5985. bottom: 10.9 / 206.5
  5986. }
  5987. },
  5988. back: {
  5989. height: math.unit(2, "meters"),
  5990. weight: math.unit(120, "kg"),
  5991. name: "Back",
  5992. image: {
  5993. source: "./media/characters/miranda/back.svg",
  5994. extra: 201 / 193,
  5995. bottom: 2.3 / 203.7
  5996. }
  5997. },
  5998. },
  5999. [
  6000. {
  6001. name: "Normal",
  6002. height: math.unit(10, "feet"),
  6003. default: true
  6004. }
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "James", species: ["deer"], tags: ["anthro"] },
  6009. {
  6010. side: {
  6011. height: math.unit(2, "meters"),
  6012. weight: math.unit(100, "kg"),
  6013. name: "Front",
  6014. image: {
  6015. source: "./media/characters/james/front.svg",
  6016. extra: 10 / 8.5
  6017. }
  6018. },
  6019. },
  6020. [
  6021. {
  6022. name: "Normal",
  6023. height: math.unit(8.5, "feet"),
  6024. default: true
  6025. }
  6026. ]
  6027. ))
  6028. characterMakers.push(() => makeCharacter(
  6029. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6030. {
  6031. side: {
  6032. height: math.unit(9.5, "feet"),
  6033. weight: math.unit(2500, "lbs"),
  6034. name: "Side",
  6035. image: {
  6036. source: "./media/characters/heather/side.svg"
  6037. }
  6038. },
  6039. },
  6040. [
  6041. {
  6042. name: "Normal",
  6043. height: math.unit(9.5, "feet"),
  6044. default: true
  6045. }
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6050. {
  6051. side: {
  6052. height: math.unit(6.5, "feet"),
  6053. weight: math.unit(400, "lbs"),
  6054. name: "Side",
  6055. image: {
  6056. source: "./media/characters/lukas/side.svg",
  6057. extra: 7.25 / 6.5
  6058. }
  6059. },
  6060. },
  6061. [
  6062. {
  6063. name: "Normal",
  6064. height: math.unit(6.5, "feet"),
  6065. default: true
  6066. }
  6067. ]
  6068. ))
  6069. characterMakers.push(() => makeCharacter(
  6070. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6071. {
  6072. side: {
  6073. height: math.unit(5, "feet"),
  6074. weight: math.unit(3000, "lbs"),
  6075. name: "Side",
  6076. image: {
  6077. source: "./media/characters/louise/side.svg"
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Normal",
  6084. height: math.unit(5, "feet"),
  6085. default: true
  6086. }
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6091. {
  6092. side: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(150, "lbs"),
  6095. name: "Side",
  6096. image: {
  6097. source: "./media/characters/ramona/side.svg",
  6098. extra: 871/854,
  6099. bottom: 41/912
  6100. }
  6101. },
  6102. },
  6103. [
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(6 + 4/12, "feet")
  6107. },
  6108. {
  6109. name: "Minimacro",
  6110. height: math.unit(5.3, "meters"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Macro",
  6115. height: math.unit(20, "stories")
  6116. },
  6117. {
  6118. name: "Macro+",
  6119. height: math.unit(50, "stories")
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6125. {
  6126. standing: {
  6127. height: math.unit(5.75, "feet"),
  6128. weight: math.unit(160, "lbs"),
  6129. name: "Standing",
  6130. image: {
  6131. source: "./media/characters/deerpuff/standing.svg",
  6132. extra: 682 / 624
  6133. }
  6134. },
  6135. sitting: {
  6136. height: math.unit(5.75 / 1.79, "feet"),
  6137. weight: math.unit(160, "lbs"),
  6138. name: "Sitting",
  6139. image: {
  6140. source: "./media/characters/deerpuff/sitting.svg",
  6141. bottom: 44 / 400,
  6142. extra: 1
  6143. }
  6144. },
  6145. taurLaying: {
  6146. height: math.unit(6, "feet"),
  6147. weight: math.unit(400, "lbs"),
  6148. name: "Taur (Laying)",
  6149. image: {
  6150. source: "./media/characters/deerpuff/taur-laying.svg"
  6151. }
  6152. },
  6153. },
  6154. [
  6155. {
  6156. name: "Puffball",
  6157. height: math.unit(6, "inches")
  6158. },
  6159. {
  6160. name: "Normalpuff",
  6161. height: math.unit(5.75, "feet")
  6162. },
  6163. {
  6164. name: "Macropuff",
  6165. height: math.unit(1500, "feet"),
  6166. default: true
  6167. },
  6168. {
  6169. name: "Megapuff",
  6170. height: math.unit(500, "miles")
  6171. },
  6172. {
  6173. name: "Gigapuff",
  6174. height: math.unit(250000, "miles")
  6175. },
  6176. {
  6177. name: "Omegapuff",
  6178. height: math.unit(1000, "lightyears")
  6179. },
  6180. ]
  6181. ))
  6182. characterMakers.push(() => makeCharacter(
  6183. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6184. {
  6185. stomping: {
  6186. height: math.unit(6, "feet"),
  6187. weight: math.unit(170, "lbs"),
  6188. name: "Stomping",
  6189. image: {
  6190. source: "./media/characters/vivian/stomping.svg"
  6191. }
  6192. },
  6193. sitting: {
  6194. height: math.unit(6 / 1.75, "feet"),
  6195. weight: math.unit(170, "lbs"),
  6196. name: "Sitting",
  6197. image: {
  6198. source: "./media/characters/vivian/sitting.svg",
  6199. bottom: 1 / 6.4,
  6200. extra: 1,
  6201. }
  6202. },
  6203. },
  6204. [
  6205. {
  6206. name: "Normal",
  6207. height: math.unit(7, "feet"),
  6208. default: true
  6209. },
  6210. {
  6211. name: "Macro",
  6212. height: math.unit(10, "stories")
  6213. },
  6214. {
  6215. name: "Macro+",
  6216. height: math.unit(30, "stories")
  6217. },
  6218. {
  6219. name: "Megamacro",
  6220. height: math.unit(10, "miles")
  6221. },
  6222. {
  6223. name: "Megamacro+",
  6224. height: math.unit(2750000, "meters")
  6225. },
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(160, "lbs"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/prince/front.svg",
  6237. extra: 1938/1682,
  6238. bottom: 45/1983
  6239. }
  6240. },
  6241. back: {
  6242. height: math.unit(6, "feet"),
  6243. weight: math.unit(160, "lbs"),
  6244. name: "Back",
  6245. image: {
  6246. source: "./media/characters/prince/back.svg",
  6247. extra: 1955/1726,
  6248. bottom: 6/1961
  6249. }
  6250. },
  6251. },
  6252. [
  6253. {
  6254. name: "Normal",
  6255. height: math.unit(7.75, "feet"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Not cute",
  6260. height: math.unit(17, "feet")
  6261. },
  6262. {
  6263. name: "I said NOT",
  6264. height: math.unit(91, "feet")
  6265. },
  6266. {
  6267. name: "Please stop",
  6268. height: math.unit(560, "feet")
  6269. },
  6270. {
  6271. name: "What have you done",
  6272. height: math.unit(2200, "feet")
  6273. },
  6274. {
  6275. name: "Deer God",
  6276. height: math.unit(3.6, "miles")
  6277. },
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6282. {
  6283. standing: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(300, "lbs"),
  6286. name: "Standing",
  6287. image: {
  6288. source: "./media/characters/psymon/standing.svg",
  6289. extra: 1888 / 1810,
  6290. bottom: 0.05
  6291. }
  6292. },
  6293. slithering: {
  6294. height: math.unit(6, "feet"),
  6295. weight: math.unit(300, "lbs"),
  6296. name: "Slithering",
  6297. image: {
  6298. source: "./media/characters/psymon/slithering.svg",
  6299. extra: 1330 / 1224
  6300. }
  6301. },
  6302. slitheringAlt: {
  6303. height: math.unit(6, "feet"),
  6304. weight: math.unit(300, "lbs"),
  6305. name: "Slithering (Alt)",
  6306. image: {
  6307. source: "./media/characters/psymon/slithering-alt.svg",
  6308. extra: 1330 / 1224
  6309. }
  6310. },
  6311. },
  6312. [
  6313. {
  6314. name: "Normal",
  6315. height: math.unit(11.25, "feet"),
  6316. default: true
  6317. },
  6318. {
  6319. name: "Large",
  6320. height: math.unit(27, "feet")
  6321. },
  6322. {
  6323. name: "Giant",
  6324. height: math.unit(87, "feet")
  6325. },
  6326. {
  6327. name: "Macro",
  6328. height: math.unit(365, "feet")
  6329. },
  6330. {
  6331. name: "Megamacro",
  6332. height: math.unit(3, "miles")
  6333. },
  6334. {
  6335. name: "World Serpent",
  6336. height: math.unit(8000, "miles")
  6337. },
  6338. ]
  6339. ))
  6340. characterMakers.push(() => makeCharacter(
  6341. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6342. {
  6343. front: {
  6344. height: math.unit(6, "feet"),
  6345. weight: math.unit(180, "lbs"),
  6346. name: "Front",
  6347. image: {
  6348. source: "./media/characters/daimos/front.svg",
  6349. extra: 4160 / 3897,
  6350. bottom: 0.021
  6351. }
  6352. }
  6353. },
  6354. [
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(8, "feet"),
  6358. default: true
  6359. },
  6360. {
  6361. name: "Big Dog",
  6362. height: math.unit(22, "feet")
  6363. },
  6364. {
  6365. name: "Macro",
  6366. height: math.unit(127, "feet")
  6367. },
  6368. {
  6369. name: "Megamacro",
  6370. height: math.unit(3600, "feet")
  6371. },
  6372. ]
  6373. ))
  6374. characterMakers.push(() => makeCharacter(
  6375. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6376. {
  6377. side: {
  6378. height: math.unit(6, "feet"),
  6379. weight: math.unit(180, "lbs"),
  6380. name: "Side",
  6381. image: {
  6382. source: "./media/characters/blake/side.svg",
  6383. extra: 1212 / 1120,
  6384. bottom: 0.05
  6385. }
  6386. },
  6387. crouched: {
  6388. height: math.unit(6 * 0.57, "feet"),
  6389. weight: math.unit(180, "lbs"),
  6390. name: "Crouched",
  6391. image: {
  6392. source: "./media/characters/blake/crouched.svg",
  6393. extra: 840 / 587,
  6394. bottom: 0.04
  6395. }
  6396. },
  6397. bent: {
  6398. height: math.unit(6 * 0.75, "feet"),
  6399. weight: math.unit(180, "lbs"),
  6400. name: "Bent",
  6401. image: {
  6402. source: "./media/characters/blake/bent.svg",
  6403. extra: 592 / 544,
  6404. bottom: 0.035
  6405. }
  6406. },
  6407. },
  6408. [
  6409. {
  6410. name: "Normal",
  6411. height: math.unit(8 + 1 / 6, "feet"),
  6412. default: true
  6413. },
  6414. {
  6415. name: "Big Backside",
  6416. height: math.unit(37, "feet")
  6417. },
  6418. {
  6419. name: "Subway Shredder",
  6420. height: math.unit(72, "feet")
  6421. },
  6422. {
  6423. name: "City Carver",
  6424. height: math.unit(1675, "feet")
  6425. },
  6426. {
  6427. name: "Tectonic Tweaker",
  6428. height: math.unit(2300, "miles")
  6429. },
  6430. ]
  6431. ))
  6432. characterMakers.push(() => makeCharacter(
  6433. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6434. {
  6435. front: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(180, "lbs"),
  6438. name: "Front",
  6439. image: {
  6440. source: "./media/characters/guisetto/front.svg",
  6441. extra: 856 / 817,
  6442. bottom: 0.06
  6443. }
  6444. },
  6445. airborne: {
  6446. height: math.unit(6, "feet"),
  6447. weight: math.unit(180, "lbs"),
  6448. name: "Airborne",
  6449. image: {
  6450. source: "./media/characters/guisetto/airborne.svg",
  6451. extra: 584 / 525
  6452. }
  6453. },
  6454. },
  6455. [
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(10 + 11 / 12, "feet"),
  6459. default: true
  6460. },
  6461. {
  6462. name: "Large",
  6463. height: math.unit(35, "feet")
  6464. },
  6465. {
  6466. name: "Macro",
  6467. height: math.unit(475, "feet")
  6468. },
  6469. ]
  6470. ))
  6471. characterMakers.push(() => makeCharacter(
  6472. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6473. {
  6474. front: {
  6475. height: math.unit(6, "feet"),
  6476. weight: math.unit(180, "lbs"),
  6477. name: "Front",
  6478. image: {
  6479. source: "./media/characters/luxor/front.svg",
  6480. extra: 2940 / 2152
  6481. }
  6482. },
  6483. back: {
  6484. height: math.unit(6, "feet"),
  6485. weight: math.unit(180, "lbs"),
  6486. name: "Back",
  6487. image: {
  6488. source: "./media/characters/luxor/back.svg",
  6489. extra: 1083 / 960
  6490. }
  6491. },
  6492. },
  6493. [
  6494. {
  6495. name: "Normal",
  6496. height: math.unit(5 + 5 / 6, "feet"),
  6497. default: true
  6498. },
  6499. {
  6500. name: "Lamp",
  6501. height: math.unit(50, "feet")
  6502. },
  6503. {
  6504. name: "Lämp",
  6505. height: math.unit(300, "feet")
  6506. },
  6507. {
  6508. name: "The sun is a lamp",
  6509. height: math.unit(250000, "miles")
  6510. },
  6511. ]
  6512. ))
  6513. characterMakers.push(() => makeCharacter(
  6514. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6515. {
  6516. front: {
  6517. height: math.unit(6, "feet"),
  6518. weight: math.unit(50, "lbs"),
  6519. name: "Front",
  6520. image: {
  6521. source: "./media/characters/huoyan/front.svg"
  6522. }
  6523. },
  6524. side: {
  6525. height: math.unit(6, "feet"),
  6526. weight: math.unit(180, "lbs"),
  6527. name: "Side",
  6528. image: {
  6529. source: "./media/characters/huoyan/side.svg"
  6530. }
  6531. },
  6532. },
  6533. [
  6534. {
  6535. name: "Chef",
  6536. height: math.unit(9, "feet")
  6537. },
  6538. {
  6539. name: "Normal",
  6540. height: math.unit(65, "feet"),
  6541. default: true
  6542. },
  6543. {
  6544. name: "Macro",
  6545. height: math.unit(780, "feet")
  6546. },
  6547. {
  6548. name: "Flaming Mountain",
  6549. height: math.unit(4.8, "miles")
  6550. },
  6551. {
  6552. name: "Celestial",
  6553. height: math.unit(765000, "miles")
  6554. },
  6555. ]
  6556. ))
  6557. characterMakers.push(() => makeCharacter(
  6558. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6559. {
  6560. front: {
  6561. height: math.unit(5 + 3 / 4, "feet"),
  6562. weight: math.unit(120, "lbs"),
  6563. name: "Front",
  6564. image: {
  6565. source: "./media/characters/tails/front.svg"
  6566. }
  6567. }
  6568. },
  6569. [
  6570. {
  6571. name: "Normal",
  6572. height: math.unit(5 + 3 / 4, "feet"),
  6573. default: true
  6574. }
  6575. ]
  6576. ))
  6577. characterMakers.push(() => makeCharacter(
  6578. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6579. {
  6580. front: {
  6581. height: math.unit(4, "feet"),
  6582. weight: math.unit(50, "lbs"),
  6583. name: "Front",
  6584. image: {
  6585. source: "./media/characters/rainy/front.svg"
  6586. }
  6587. }
  6588. },
  6589. [
  6590. {
  6591. name: "Macro",
  6592. height: math.unit(800, "feet"),
  6593. default: true
  6594. }
  6595. ]
  6596. ))
  6597. characterMakers.push(() => makeCharacter(
  6598. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6599. {
  6600. front: {
  6601. height: math.unit(6, "feet"),
  6602. weight: math.unit(150, "lbs"),
  6603. name: "Front",
  6604. image: {
  6605. source: "./media/characters/rainier/front.svg"
  6606. }
  6607. }
  6608. },
  6609. [
  6610. {
  6611. name: "Micro",
  6612. height: math.unit(2, "mm"),
  6613. default: true
  6614. }
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6619. {
  6620. front: {
  6621. height: math.unit(8 + 4/12, "feet"),
  6622. weight: math.unit(450, "kilograms"),
  6623. volume: math.unit(5, "cups"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/andy-renard/front.svg",
  6627. extra: 1839/1726,
  6628. bottom: 134/1973
  6629. }
  6630. },
  6631. back: {
  6632. height: math.unit(8 + 4/12, "feet"),
  6633. weight: math.unit(450, "kilograms"),
  6634. volume: math.unit(5, "cups"),
  6635. name: "Back",
  6636. image: {
  6637. source: "./media/characters/andy-renard/back.svg",
  6638. extra: 1838/1710,
  6639. bottom: 105/1943
  6640. }
  6641. },
  6642. },
  6643. [
  6644. {
  6645. name: "Tall",
  6646. height: math.unit(8 + 4/12, "feet")
  6647. },
  6648. {
  6649. name: "Mini Macro",
  6650. height: math.unit(15, "feet"),
  6651. default: true
  6652. },
  6653. {
  6654. name: "Macro",
  6655. height: math.unit(100, "feet")
  6656. },
  6657. {
  6658. name: "Mega Macro",
  6659. height: math.unit(1000, "feet")
  6660. },
  6661. {
  6662. name: "Giga Macro",
  6663. height: math.unit(10, "miles")
  6664. },
  6665. {
  6666. name: "God Macro",
  6667. height: math.unit(1, "multiverse")
  6668. },
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(6, "feet"),
  6676. weight: math.unit(210, "lbs"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/cimmaron/front-sfw.svg",
  6680. extra: 701 / 676,
  6681. bottom: 0.046
  6682. }
  6683. },
  6684. back: {
  6685. height: math.unit(6, "feet"),
  6686. weight: math.unit(210, "lbs"),
  6687. name: "Back",
  6688. image: {
  6689. source: "./media/characters/cimmaron/back-sfw.svg",
  6690. extra: 701 / 676,
  6691. bottom: 0.046
  6692. }
  6693. },
  6694. frontNsfw: {
  6695. height: math.unit(6, "feet"),
  6696. weight: math.unit(210, "lbs"),
  6697. name: "Front (NSFW)",
  6698. image: {
  6699. source: "./media/characters/cimmaron/front-nsfw.svg",
  6700. extra: 701 / 676,
  6701. bottom: 0.046
  6702. }
  6703. },
  6704. backNsfw: {
  6705. height: math.unit(6, "feet"),
  6706. weight: math.unit(210, "lbs"),
  6707. name: "Back (NSFW)",
  6708. image: {
  6709. source: "./media/characters/cimmaron/back-nsfw.svg",
  6710. extra: 701 / 676,
  6711. bottom: 0.046
  6712. }
  6713. },
  6714. dick: {
  6715. height: math.unit(1.714, "feet"),
  6716. name: "Dick",
  6717. image: {
  6718. source: "./media/characters/cimmaron/dick.svg"
  6719. }
  6720. },
  6721. },
  6722. [
  6723. {
  6724. name: "Normal",
  6725. height: math.unit(6, "feet"),
  6726. default: true
  6727. },
  6728. {
  6729. name: "Macro Mayor",
  6730. height: math.unit(350, "meters")
  6731. },
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6736. {
  6737. front: {
  6738. height: math.unit(6, "feet"),
  6739. weight: math.unit(200, "lbs"),
  6740. name: "Front",
  6741. image: {
  6742. source: "./media/characters/akari/front.svg",
  6743. extra: 962 / 901,
  6744. bottom: 0.04
  6745. }
  6746. }
  6747. },
  6748. [
  6749. {
  6750. name: "Micro",
  6751. height: math.unit(5, "inches"),
  6752. default: true
  6753. },
  6754. {
  6755. name: "Normal",
  6756. height: math.unit(7, "feet")
  6757. },
  6758. ]
  6759. ))
  6760. characterMakers.push(() => makeCharacter(
  6761. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6762. {
  6763. front: {
  6764. height: math.unit(6, "feet"),
  6765. weight: math.unit(140, "lbs"),
  6766. name: "Front",
  6767. image: {
  6768. source: "./media/characters/cynosura/front.svg",
  6769. extra: 437/410,
  6770. bottom: 9/446
  6771. }
  6772. },
  6773. back: {
  6774. height: math.unit(6, "feet"),
  6775. weight: math.unit(140, "lbs"),
  6776. name: "Back",
  6777. image: {
  6778. source: "./media/characters/cynosura/back.svg",
  6779. extra: 1304/1160,
  6780. bottom: 71/1375
  6781. }
  6782. },
  6783. },
  6784. [
  6785. {
  6786. name: "Micro",
  6787. height: math.unit(4, "inches")
  6788. },
  6789. {
  6790. name: "Normal",
  6791. height: math.unit(5.75, "feet"),
  6792. default: true
  6793. },
  6794. {
  6795. name: "Tall",
  6796. height: math.unit(10, "feet")
  6797. },
  6798. {
  6799. name: "Big",
  6800. height: math.unit(20, "feet")
  6801. },
  6802. {
  6803. name: "Macro",
  6804. height: math.unit(50, "feet")
  6805. },
  6806. ]
  6807. ))
  6808. characterMakers.push(() => makeCharacter(
  6809. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6810. {
  6811. front: {
  6812. height: math.unit(13 + 2/12, "feet"),
  6813. weight: math.unit(800, "kg"),
  6814. name: "Front",
  6815. image: {
  6816. source: "./media/characters/gin/front.svg",
  6817. extra: 1312/1191,
  6818. bottom: 45/1357
  6819. }
  6820. },
  6821. mouth: {
  6822. height: math.unit(2.39 * 1.8, "feet"),
  6823. name: "Mouth",
  6824. image: {
  6825. source: "./media/characters/gin/mouth.svg"
  6826. }
  6827. },
  6828. hand: {
  6829. height: math.unit(1.57 * 2.19, "feet"),
  6830. name: "Hand",
  6831. image: {
  6832. source: "./media/characters/gin/hand.svg"
  6833. }
  6834. },
  6835. foot: {
  6836. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6837. name: "Foot",
  6838. image: {
  6839. source: "./media/characters/gin/foot.svg"
  6840. }
  6841. },
  6842. sole: {
  6843. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6844. name: "Sole",
  6845. image: {
  6846. source: "./media/characters/gin/sole.svg"
  6847. }
  6848. },
  6849. },
  6850. [
  6851. {
  6852. name: "Very Small",
  6853. height: math.unit(13 + 2 / 12, "feet")
  6854. },
  6855. {
  6856. name: "Micro",
  6857. height: math.unit(600, "miles")
  6858. },
  6859. {
  6860. name: "Regular",
  6861. height: math.unit(20, "earths"),
  6862. default: true
  6863. },
  6864. {
  6865. name: "Macro",
  6866. height: math.unit(2.2, "solarradii")
  6867. },
  6868. {
  6869. name: "Teramacro",
  6870. height: math.unit(1.2, "galaxies")
  6871. },
  6872. {
  6873. name: "Omegamacro",
  6874. height: math.unit(200, "universes")
  6875. },
  6876. ]
  6877. ))
  6878. characterMakers.push(() => makeCharacter(
  6879. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6880. {
  6881. front: {
  6882. height: math.unit(6 + 1 / 6, "feet"),
  6883. weight: math.unit(178, "lbs"),
  6884. name: "Front",
  6885. image: {
  6886. source: "./media/characters/guy/front.svg"
  6887. }
  6888. }
  6889. },
  6890. [
  6891. {
  6892. name: "Normal",
  6893. height: math.unit(6 + 1 / 6, "feet"),
  6894. default: true
  6895. },
  6896. {
  6897. name: "Large",
  6898. height: math.unit(25 + 7 / 12, "feet")
  6899. },
  6900. {
  6901. name: "Macro",
  6902. height: math.unit(60 + 9 / 12, "feet")
  6903. },
  6904. {
  6905. name: "Macro+",
  6906. height: math.unit(246, "feet")
  6907. },
  6908. {
  6909. name: "Macro++",
  6910. height: math.unit(878, "feet")
  6911. }
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6916. {
  6917. front: {
  6918. height: math.unit(9, "feet"),
  6919. weight: math.unit(800, "lbs"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/tiberius/front.svg",
  6923. extra: 2295 / 2071
  6924. }
  6925. },
  6926. back: {
  6927. height: math.unit(9, "feet"),
  6928. weight: math.unit(800, "lbs"),
  6929. name: "Back",
  6930. image: {
  6931. source: "./media/characters/tiberius/back.svg",
  6932. extra: 2373 / 2160
  6933. }
  6934. },
  6935. },
  6936. [
  6937. {
  6938. name: "Normal",
  6939. height: math.unit(9, "feet"),
  6940. default: true
  6941. }
  6942. ]
  6943. ))
  6944. characterMakers.push(() => makeCharacter(
  6945. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6946. {
  6947. front: {
  6948. height: math.unit(6, "feet"),
  6949. weight: math.unit(600, "lbs"),
  6950. name: "Front",
  6951. image: {
  6952. source: "./media/characters/surgo/front.svg",
  6953. extra: 3591 / 2227
  6954. }
  6955. },
  6956. back: {
  6957. height: math.unit(6, "feet"),
  6958. weight: math.unit(600, "lbs"),
  6959. name: "Back",
  6960. image: {
  6961. source: "./media/characters/surgo/back.svg",
  6962. extra: 3557 / 2228
  6963. }
  6964. },
  6965. laying: {
  6966. height: math.unit(6 * 0.85, "feet"),
  6967. weight: math.unit(600, "lbs"),
  6968. name: "Laying",
  6969. image: {
  6970. source: "./media/characters/surgo/laying.svg"
  6971. }
  6972. },
  6973. },
  6974. [
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(6, "feet"),
  6978. default: true
  6979. }
  6980. ]
  6981. ))
  6982. characterMakers.push(() => makeCharacter(
  6983. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6984. {
  6985. side: {
  6986. height: math.unit(6, "feet"),
  6987. weight: math.unit(150, "lbs"),
  6988. name: "Side",
  6989. image: {
  6990. source: "./media/characters/cibus/side.svg",
  6991. extra: 800 / 400
  6992. }
  6993. },
  6994. },
  6995. [
  6996. {
  6997. name: "Normal",
  6998. height: math.unit(6, "feet"),
  6999. default: true
  7000. }
  7001. ]
  7002. ))
  7003. characterMakers.push(() => makeCharacter(
  7004. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7005. {
  7006. front: {
  7007. height: math.unit(6, "feet"),
  7008. weight: math.unit(240, "lbs"),
  7009. name: "Front",
  7010. image: {
  7011. source: "./media/characters/nibbles/front.svg"
  7012. }
  7013. },
  7014. side: {
  7015. height: math.unit(6, "feet"),
  7016. weight: math.unit(240, "lbs"),
  7017. name: "Side",
  7018. image: {
  7019. source: "./media/characters/nibbles/side.svg"
  7020. }
  7021. },
  7022. },
  7023. [
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(9, "feet"),
  7027. default: true
  7028. }
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7033. {
  7034. side: {
  7035. height: math.unit(5 + 1 / 6, "feet"),
  7036. weight: math.unit(130, "lbs"),
  7037. name: "Side",
  7038. image: {
  7039. source: "./media/characters/rikky/side.svg",
  7040. extra: 851 / 801
  7041. }
  7042. },
  7043. },
  7044. [
  7045. {
  7046. name: "Normal",
  7047. height: math.unit(5 + 1 / 6, "feet")
  7048. },
  7049. {
  7050. name: "Macro",
  7051. height: math.unit(152, "feet"),
  7052. default: true
  7053. },
  7054. {
  7055. name: "Megamacro",
  7056. height: math.unit(7, "miles")
  7057. }
  7058. ]
  7059. ))
  7060. characterMakers.push(() => makeCharacter(
  7061. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7062. {
  7063. side: {
  7064. height: math.unit(370, "cm"),
  7065. weight: math.unit(350, "lbs"),
  7066. name: "Side",
  7067. image: {
  7068. source: "./media/characters/malfressa/side.svg"
  7069. }
  7070. },
  7071. walking: {
  7072. height: math.unit(370, "cm"),
  7073. weight: math.unit(350, "lbs"),
  7074. name: "Walking",
  7075. image: {
  7076. source: "./media/characters/malfressa/walking.svg"
  7077. }
  7078. },
  7079. feral: {
  7080. height: math.unit(2500, "cm"),
  7081. weight: math.unit(100000, "lbs"),
  7082. name: "Feral",
  7083. image: {
  7084. source: "./media/characters/malfressa/feral.svg",
  7085. extra: 2108 / 837,
  7086. bottom: 0.02
  7087. }
  7088. },
  7089. },
  7090. [
  7091. {
  7092. name: "Normal",
  7093. height: math.unit(370, "cm")
  7094. },
  7095. {
  7096. name: "Macro",
  7097. height: math.unit(300, "meters"),
  7098. default: true
  7099. }
  7100. ]
  7101. ))
  7102. characterMakers.push(() => makeCharacter(
  7103. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7104. {
  7105. front: {
  7106. height: math.unit(6, "feet"),
  7107. weight: math.unit(60, "kg"),
  7108. name: "Front",
  7109. image: {
  7110. source: "./media/characters/jaro/front.svg",
  7111. extra: 845/817,
  7112. bottom: 45/890
  7113. }
  7114. },
  7115. back: {
  7116. height: math.unit(6, "feet"),
  7117. weight: math.unit(60, "kg"),
  7118. name: "Back",
  7119. image: {
  7120. source: "./media/characters/jaro/back.svg",
  7121. extra: 847/817,
  7122. bottom: 34/881
  7123. }
  7124. },
  7125. },
  7126. [
  7127. {
  7128. name: "Micro",
  7129. height: math.unit(7, "inches")
  7130. },
  7131. {
  7132. name: "Normal",
  7133. height: math.unit(5.5, "feet"),
  7134. default: true
  7135. },
  7136. {
  7137. name: "Minimacro",
  7138. height: math.unit(20, "feet")
  7139. },
  7140. {
  7141. name: "Macro",
  7142. height: math.unit(200, "meters")
  7143. }
  7144. ]
  7145. ))
  7146. characterMakers.push(() => makeCharacter(
  7147. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7148. {
  7149. front: {
  7150. height: math.unit(6, "feet"),
  7151. weight: math.unit(195, "lb"),
  7152. name: "Front",
  7153. image: {
  7154. source: "./media/characters/rogue/front.svg"
  7155. }
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "Macro",
  7161. height: math.unit(90, "feet"),
  7162. default: true
  7163. },
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7168. {
  7169. standing: {
  7170. height: math.unit(5 + 8 / 12, "feet"),
  7171. weight: math.unit(140, "lb"),
  7172. name: "Standing",
  7173. image: {
  7174. source: "./media/characters/piper/standing.svg",
  7175. extra: 1440/1284,
  7176. bottom: 66/1506
  7177. }
  7178. },
  7179. running: {
  7180. height: math.unit(5 + 8 / 12, "feet"),
  7181. weight: math.unit(140, "lb"),
  7182. name: "Running",
  7183. image: {
  7184. source: "./media/characters/piper/running.svg",
  7185. extra: 3948/3655,
  7186. bottom: 0/3948
  7187. }
  7188. },
  7189. sole: {
  7190. height: math.unit(0.81, "feet"),
  7191. weight: math.unit(2, "kg"),
  7192. name: "Sole",
  7193. image: {
  7194. source: "./media/characters/piper/sole.svg"
  7195. }
  7196. },
  7197. nipple: {
  7198. height: math.unit(0.25, "feet"),
  7199. weight: math.unit(1.5, "lb"),
  7200. name: "Nipple",
  7201. image: {
  7202. source: "./media/characters/piper/nipple.svg"
  7203. }
  7204. },
  7205. head: {
  7206. height: math.unit(1.1, "feet"),
  7207. name: "Head",
  7208. image: {
  7209. source: "./media/characters/piper/head.svg"
  7210. }
  7211. },
  7212. },
  7213. [
  7214. {
  7215. name: "Micro",
  7216. height: math.unit(2, "inches")
  7217. },
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(5 + 8 / 12, "feet")
  7221. },
  7222. {
  7223. name: "Macro",
  7224. height: math.unit(250, "feet"),
  7225. default: true
  7226. },
  7227. {
  7228. name: "Megamacro",
  7229. height: math.unit(7, "miles")
  7230. },
  7231. ]
  7232. ))
  7233. characterMakers.push(() => makeCharacter(
  7234. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7235. {
  7236. front: {
  7237. height: math.unit(6, "feet"),
  7238. weight: math.unit(220, "lb"),
  7239. name: "Front",
  7240. image: {
  7241. source: "./media/characters/gemini/front.svg"
  7242. }
  7243. },
  7244. back: {
  7245. height: math.unit(6, "feet"),
  7246. weight: math.unit(220, "lb"),
  7247. name: "Back",
  7248. image: {
  7249. source: "./media/characters/gemini/back.svg"
  7250. }
  7251. },
  7252. kneeling: {
  7253. height: math.unit(6 / 1.5, "feet"),
  7254. weight: math.unit(220, "lb"),
  7255. name: "Kneeling",
  7256. image: {
  7257. source: "./media/characters/gemini/kneeling.svg",
  7258. bottom: 0.02
  7259. }
  7260. },
  7261. },
  7262. [
  7263. {
  7264. name: "Macro",
  7265. height: math.unit(300, "meters"),
  7266. default: true
  7267. },
  7268. {
  7269. name: "Megamacro",
  7270. height: math.unit(6900, "meters")
  7271. },
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7276. {
  7277. anthro: {
  7278. height: math.unit(2.35, "meters"),
  7279. weight: math.unit(73, "kg"),
  7280. name: "Anthro",
  7281. image: {
  7282. source: "./media/characters/alicia/anthro.svg",
  7283. extra: 2571 / 2385,
  7284. bottom: 75 / 2648
  7285. }
  7286. },
  7287. paw: {
  7288. height: math.unit(1.32, "feet"),
  7289. name: "Paw",
  7290. image: {
  7291. source: "./media/characters/alicia/paw.svg"
  7292. }
  7293. },
  7294. feral: {
  7295. height: math.unit(1.69, "meters"),
  7296. weight: math.unit(73, "kg"),
  7297. name: "Feral",
  7298. image: {
  7299. source: "./media/characters/alicia/feral.svg",
  7300. extra: 2123 / 1715,
  7301. bottom: 222 / 2349
  7302. }
  7303. },
  7304. },
  7305. [
  7306. {
  7307. name: "Normal",
  7308. height: math.unit(2.35, "meters")
  7309. },
  7310. {
  7311. name: "Macro",
  7312. height: math.unit(60, "meters"),
  7313. default: true
  7314. },
  7315. {
  7316. name: "Megamacro",
  7317. height: math.unit(10000, "kilometers")
  7318. },
  7319. ]
  7320. ))
  7321. characterMakers.push(() => makeCharacter(
  7322. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7323. {
  7324. front: {
  7325. height: math.unit(7, "feet"),
  7326. weight: math.unit(250, "lbs"),
  7327. name: "Front",
  7328. image: {
  7329. source: "./media/characters/archy/front.svg"
  7330. }
  7331. }
  7332. },
  7333. [
  7334. {
  7335. name: "Micro",
  7336. height: math.unit(1, "inch")
  7337. },
  7338. {
  7339. name: "Shorty",
  7340. height: math.unit(5, "feet")
  7341. },
  7342. {
  7343. name: "Normal",
  7344. height: math.unit(7, "feet")
  7345. },
  7346. {
  7347. name: "Macro",
  7348. height: math.unit(600, "meters"),
  7349. default: true
  7350. },
  7351. {
  7352. name: "Megamacro",
  7353. height: math.unit(1, "mile")
  7354. },
  7355. ]
  7356. ))
  7357. characterMakers.push(() => makeCharacter(
  7358. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7359. {
  7360. front: {
  7361. height: math.unit(1.65, "meters"),
  7362. weight: math.unit(74, "kg"),
  7363. name: "Front",
  7364. image: {
  7365. source: "./media/characters/berri/front.svg",
  7366. extra: 857 / 837,
  7367. bottom: 18 / 877
  7368. }
  7369. },
  7370. bum: {
  7371. height: math.unit(1.46, "feet"),
  7372. name: "Bum",
  7373. image: {
  7374. source: "./media/characters/berri/bum.svg"
  7375. }
  7376. },
  7377. mouth: {
  7378. height: math.unit(0.44, "feet"),
  7379. name: "Mouth",
  7380. image: {
  7381. source: "./media/characters/berri/mouth.svg"
  7382. }
  7383. },
  7384. paw: {
  7385. height: math.unit(0.826, "feet"),
  7386. name: "Paw",
  7387. image: {
  7388. source: "./media/characters/berri/paw.svg"
  7389. }
  7390. },
  7391. },
  7392. [
  7393. {
  7394. name: "Normal",
  7395. height: math.unit(1.65, "meters")
  7396. },
  7397. {
  7398. name: "Macro",
  7399. height: math.unit(60, "m"),
  7400. default: true
  7401. },
  7402. {
  7403. name: "Megamacro",
  7404. height: math.unit(9.213, "km")
  7405. },
  7406. {
  7407. name: "Planet Eater",
  7408. height: math.unit(489, "megameters")
  7409. },
  7410. {
  7411. name: "Teramacro",
  7412. height: math.unit(2471635000000, "meters")
  7413. },
  7414. {
  7415. name: "Examacro",
  7416. height: math.unit(8.0624e+26, "meters")
  7417. }
  7418. ]
  7419. ))
  7420. characterMakers.push(() => makeCharacter(
  7421. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7422. {
  7423. front: {
  7424. height: math.unit(1.72, "meters"),
  7425. weight: math.unit(68, "kg"),
  7426. name: "Front",
  7427. image: {
  7428. source: "./media/characters/lexi/front.svg"
  7429. }
  7430. }
  7431. },
  7432. [
  7433. {
  7434. name: "Very Smol",
  7435. height: math.unit(10, "mm")
  7436. },
  7437. {
  7438. name: "Micro",
  7439. height: math.unit(6.8, "cm"),
  7440. default: true
  7441. },
  7442. {
  7443. name: "Normal",
  7444. height: math.unit(1.72, "m")
  7445. }
  7446. ]
  7447. ))
  7448. characterMakers.push(() => makeCharacter(
  7449. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7450. {
  7451. front: {
  7452. height: math.unit(1.69, "meters"),
  7453. weight: math.unit(68, "kg"),
  7454. name: "Front",
  7455. image: {
  7456. source: "./media/characters/martin/front.svg",
  7457. extra: 596 / 581
  7458. }
  7459. }
  7460. },
  7461. [
  7462. {
  7463. name: "Micro",
  7464. height: math.unit(6.85, "cm"),
  7465. default: true
  7466. },
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(1.69, "m")
  7470. }
  7471. ]
  7472. ))
  7473. characterMakers.push(() => makeCharacter(
  7474. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7475. {
  7476. front: {
  7477. height: math.unit(1.69, "meters"),
  7478. weight: math.unit(68, "kg"),
  7479. name: "Front",
  7480. image: {
  7481. source: "./media/characters/juno/front.svg"
  7482. }
  7483. }
  7484. },
  7485. [
  7486. {
  7487. name: "Micro",
  7488. height: math.unit(7, "cm")
  7489. },
  7490. {
  7491. name: "Normal",
  7492. height: math.unit(1.89, "m")
  7493. },
  7494. {
  7495. name: "Macro",
  7496. height: math.unit(353, "meters"),
  7497. default: true
  7498. }
  7499. ]
  7500. ))
  7501. characterMakers.push(() => makeCharacter(
  7502. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7503. {
  7504. front: {
  7505. height: math.unit(1.93, "meters"),
  7506. weight: math.unit(83, "kg"),
  7507. name: "Front",
  7508. image: {
  7509. source: "./media/characters/samantha/front.svg"
  7510. }
  7511. },
  7512. frontClothed: {
  7513. height: math.unit(1.93, "meters"),
  7514. weight: math.unit(83, "kg"),
  7515. name: "Front (Clothed)",
  7516. image: {
  7517. source: "./media/characters/samantha/front-clothed.svg"
  7518. }
  7519. },
  7520. back: {
  7521. height: math.unit(1.93, "meters"),
  7522. weight: math.unit(83, "kg"),
  7523. name: "Back",
  7524. image: {
  7525. source: "./media/characters/samantha/back.svg"
  7526. }
  7527. },
  7528. },
  7529. [
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(1.93, "m")
  7533. },
  7534. {
  7535. name: "Macro",
  7536. height: math.unit(74, "meters"),
  7537. default: true
  7538. },
  7539. {
  7540. name: "Macro+",
  7541. height: math.unit(223, "meters"),
  7542. },
  7543. {
  7544. name: "Megamacro",
  7545. height: math.unit(8381, "meters"),
  7546. },
  7547. {
  7548. name: "Megamacro+",
  7549. height: math.unit(12000, "kilometers")
  7550. },
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(1.92, "meters"),
  7558. weight: math.unit(80, "kg"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/dr-clay/front.svg"
  7562. }
  7563. },
  7564. frontClothed: {
  7565. height: math.unit(1.92, "meters"),
  7566. weight: math.unit(80, "kg"),
  7567. name: "Front (Clothed)",
  7568. image: {
  7569. source: "./media/characters/dr-clay/front-clothed.svg"
  7570. }
  7571. }
  7572. },
  7573. [
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(1.92, "m")
  7577. },
  7578. {
  7579. name: "Macro",
  7580. height: math.unit(214, "meters"),
  7581. default: true
  7582. },
  7583. {
  7584. name: "Macro+",
  7585. height: math.unit(12.237, "meters"),
  7586. },
  7587. {
  7588. name: "Megamacro",
  7589. height: math.unit(557, "megameters"),
  7590. },
  7591. {
  7592. name: "Unimaginable",
  7593. height: math.unit(120e9, "lightyears")
  7594. },
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7599. {
  7600. front: {
  7601. height: math.unit(2, "meters"),
  7602. weight: math.unit(80, "kg"),
  7603. name: "Front",
  7604. image: {
  7605. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7606. }
  7607. }
  7608. },
  7609. [
  7610. {
  7611. name: "Teramacro",
  7612. height: math.unit(500000, "lightyears"),
  7613. default: true
  7614. },
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7619. {
  7620. crux: {
  7621. height: math.unit(2, "meters"),
  7622. weight: math.unit(150, "kg"),
  7623. name: "Crux",
  7624. image: {
  7625. source: "./media/characters/vemus/crux.svg",
  7626. extra: 1074/936,
  7627. bottom: 23/1097
  7628. }
  7629. },
  7630. skunkTanuki: {
  7631. height: math.unit(2, "meters"),
  7632. weight: math.unit(150, "kg"),
  7633. name: "Skunk-Tanuki",
  7634. image: {
  7635. source: "./media/characters/vemus/skunk-tanuki.svg",
  7636. extra: 926/893,
  7637. bottom: 20/946
  7638. }
  7639. },
  7640. },
  7641. [
  7642. {
  7643. name: "Normal",
  7644. height: math.unit(4, "meters"),
  7645. default: true
  7646. },
  7647. {
  7648. name: "Big",
  7649. height: math.unit(8, "meters")
  7650. },
  7651. {
  7652. name: "Macro",
  7653. height: math.unit(100, "meters")
  7654. },
  7655. {
  7656. name: "Macro+",
  7657. height: math.unit(1500, "meters")
  7658. },
  7659. {
  7660. name: "Stellar",
  7661. height: math.unit(14e8, "meters")
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(2, "meters"),
  7670. weight: math.unit(70, "kg"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/beherit/front.svg",
  7674. extra: 1234/1109,
  7675. bottom: 55/1289
  7676. }
  7677. }
  7678. },
  7679. [
  7680. {
  7681. name: "Normal",
  7682. height: math.unit(6, "feet")
  7683. },
  7684. {
  7685. name: "Lorg",
  7686. height: math.unit(25, "feet"),
  7687. default: true
  7688. },
  7689. {
  7690. name: "Lorger",
  7691. height: math.unit(75, "feet")
  7692. },
  7693. {
  7694. name: "Macro",
  7695. height: math.unit(200, "meters")
  7696. },
  7697. ]
  7698. ))
  7699. characterMakers.push(() => makeCharacter(
  7700. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7701. {
  7702. front: {
  7703. height: math.unit(2, "meters"),
  7704. weight: math.unit(150, "kg"),
  7705. name: "Front",
  7706. image: {
  7707. source: "./media/characters/everett/front.svg",
  7708. extra: 1017/866,
  7709. bottom: 86/1103
  7710. }
  7711. },
  7712. paw: {
  7713. height: math.unit(2 / 3.6, "meters"),
  7714. name: "Paw",
  7715. image: {
  7716. source: "./media/characters/everett/paw.svg"
  7717. }
  7718. },
  7719. },
  7720. [
  7721. {
  7722. name: "Normal",
  7723. height: math.unit(15, "feet"),
  7724. default: true
  7725. },
  7726. {
  7727. name: "Lorg",
  7728. height: math.unit(70, "feet"),
  7729. default: true
  7730. },
  7731. {
  7732. name: "Lorger",
  7733. height: math.unit(250, "feet")
  7734. },
  7735. {
  7736. name: "Macro",
  7737. height: math.unit(500, "meters")
  7738. },
  7739. ]
  7740. ))
  7741. characterMakers.push(() => makeCharacter(
  7742. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7743. {
  7744. front: {
  7745. height: math.unit(2, "meters"),
  7746. weight: math.unit(86, "kg"),
  7747. name: "Front",
  7748. image: {
  7749. source: "./media/characters/rose/front.svg",
  7750. extra: 1785/1636,
  7751. bottom: 30/1815
  7752. },
  7753. form: "liom",
  7754. default: true
  7755. },
  7756. frontSporty: {
  7757. height: math.unit(2, "meters"),
  7758. weight: math.unit(86, "kg"),
  7759. name: "Front (Sporty)",
  7760. image: {
  7761. source: "./media/characters/rose/front-sporty.svg",
  7762. extra: 350/335,
  7763. bottom: 10/360
  7764. },
  7765. form: "liom"
  7766. },
  7767. frontAlt: {
  7768. height: math.unit(1.6, "meters"),
  7769. weight: math.unit(86, "kg"),
  7770. name: "Front (Alt)",
  7771. image: {
  7772. source: "./media/characters/rose/front-alt.svg",
  7773. extra: 299/283,
  7774. bottom: 3/302
  7775. },
  7776. form: "liom"
  7777. },
  7778. plush: {
  7779. height: math.unit(2, "meters"),
  7780. weight: math.unit(86/3, "kg"),
  7781. name: "Plush",
  7782. image: {
  7783. source: "./media/characters/rose/plush.svg",
  7784. extra: 361/337,
  7785. bottom: 11/372
  7786. },
  7787. form: "plush",
  7788. default: true
  7789. },
  7790. faeStanding: {
  7791. height: math.unit(10, "cm"),
  7792. weight: math.unit(10, "grams"),
  7793. name: "Standing",
  7794. image: {
  7795. source: "./media/characters/rose/fae-standing.svg",
  7796. extra: 1189/1060,
  7797. bottom: 27/1216
  7798. },
  7799. form: "fae",
  7800. default: true
  7801. },
  7802. faeSitting: {
  7803. height: math.unit(5, "cm"),
  7804. weight: math.unit(10, "grams"),
  7805. name: "Sitting",
  7806. image: {
  7807. source: "./media/characters/rose/fae-sitting.svg",
  7808. extra: 737/577,
  7809. bottom: 356/1093
  7810. },
  7811. form: "fae"
  7812. },
  7813. faePaw: {
  7814. height: math.unit(1.35, "cm"),
  7815. name: "Paw",
  7816. image: {
  7817. source: "./media/characters/rose/fae-paw.svg"
  7818. },
  7819. form: "fae"
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "True Micro",
  7825. height: math.unit(9, "cm"),
  7826. form: "liom"
  7827. },
  7828. {
  7829. name: "Micro",
  7830. height: math.unit(16, "cm"),
  7831. form: "liom"
  7832. },
  7833. {
  7834. name: "Normal",
  7835. height: math.unit(1.85, "meters"),
  7836. default: true,
  7837. form: "liom"
  7838. },
  7839. {
  7840. name: "Mini-Macro",
  7841. height: math.unit(5, "meters"),
  7842. form: "liom"
  7843. },
  7844. {
  7845. name: "Macro",
  7846. height: math.unit(15, "meters"),
  7847. form: "liom"
  7848. },
  7849. {
  7850. name: "True Macro",
  7851. height: math.unit(40, "meters"),
  7852. form: "liom"
  7853. },
  7854. {
  7855. name: "City Scale",
  7856. height: math.unit(1, "km"),
  7857. form: "liom"
  7858. },
  7859. {
  7860. name: "Plushie",
  7861. height: math.unit(9, "cm"),
  7862. form: "plush",
  7863. default: true
  7864. },
  7865. {
  7866. name: "Fae",
  7867. height: math.unit(10, "cm"),
  7868. form: "fae",
  7869. default: true
  7870. },
  7871. ],
  7872. {
  7873. "liom": {
  7874. name: "Liom"
  7875. },
  7876. "plush": {
  7877. name: "Plush"
  7878. },
  7879. "fae": {
  7880. name: "Fae Fox",
  7881. default: true
  7882. }
  7883. }
  7884. ))
  7885. characterMakers.push(() => makeCharacter(
  7886. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7887. {
  7888. front: {
  7889. height: math.unit(2, "meters"),
  7890. weight: math.unit(350, "lbs"),
  7891. name: "Front",
  7892. image: {
  7893. source: "./media/characters/regal/front.svg"
  7894. }
  7895. },
  7896. back: {
  7897. height: math.unit(2, "meters"),
  7898. weight: math.unit(350, "lbs"),
  7899. name: "Back",
  7900. image: {
  7901. source: "./media/characters/regal/back.svg"
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Macro",
  7908. height: math.unit(350, "feet"),
  7909. default: true
  7910. }
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7915. {
  7916. front: {
  7917. height: math.unit(4 + 11 / 12, "feet"),
  7918. weight: math.unit(100, "lbs"),
  7919. name: "Front",
  7920. image: {
  7921. source: "./media/characters/opal/front.svg"
  7922. }
  7923. },
  7924. frontAlt: {
  7925. height: math.unit(4 + 11 / 12, "feet"),
  7926. weight: math.unit(100, "lbs"),
  7927. name: "Front (Alt)",
  7928. image: {
  7929. source: "./media/characters/opal/front-alt.svg"
  7930. }
  7931. },
  7932. },
  7933. [
  7934. {
  7935. name: "Small",
  7936. height: math.unit(4 + 11 / 12, "feet")
  7937. },
  7938. {
  7939. name: "Normal",
  7940. height: math.unit(20, "feet"),
  7941. default: true
  7942. },
  7943. {
  7944. name: "Macro",
  7945. height: math.unit(120, "feet")
  7946. },
  7947. {
  7948. name: "Megamacro",
  7949. height: math.unit(80, "miles")
  7950. },
  7951. {
  7952. name: "True Size",
  7953. height: math.unit(100000, "lightyears")
  7954. },
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7959. {
  7960. front: {
  7961. height: math.unit(6, "feet"),
  7962. weight: math.unit(200, "lbs"),
  7963. name: "Front",
  7964. image: {
  7965. source: "./media/characters/vector-wuff/front.svg"
  7966. }
  7967. }
  7968. },
  7969. [
  7970. {
  7971. name: "Normal",
  7972. height: math.unit(2.8, "meters")
  7973. },
  7974. {
  7975. name: "Macro",
  7976. height: math.unit(450, "meters"),
  7977. default: true
  7978. },
  7979. {
  7980. name: "Megamacro",
  7981. height: math.unit(15, "kilometers")
  7982. }
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7987. {
  7988. front: {
  7989. height: math.unit(6, "feet"),
  7990. weight: math.unit(256, "lbs"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/dannik/front.svg"
  7994. }
  7995. }
  7996. },
  7997. [
  7998. {
  7999. name: "Macro",
  8000. height: math.unit(69.57, "meters"),
  8001. default: true
  8002. },
  8003. ]
  8004. ))
  8005. characterMakers.push(() => makeCharacter(
  8006. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8007. {
  8008. front: {
  8009. height: math.unit(6, "feet"),
  8010. weight: math.unit(120, "lbs"),
  8011. name: "Front",
  8012. image: {
  8013. source: "./media/characters/azura-saharah/front.svg"
  8014. }
  8015. },
  8016. back: {
  8017. height: math.unit(6, "feet"),
  8018. weight: math.unit(120, "lbs"),
  8019. name: "Back",
  8020. image: {
  8021. source: "./media/characters/azura-saharah/back.svg"
  8022. }
  8023. },
  8024. },
  8025. [
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(100, "feet"),
  8029. default: true
  8030. },
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8035. {
  8036. side: {
  8037. height: math.unit(5 + 4 / 12, "feet"),
  8038. weight: math.unit(163, "lbs"),
  8039. name: "Side",
  8040. image: {
  8041. source: "./media/characters/kennedy/side.svg"
  8042. }
  8043. }
  8044. },
  8045. [
  8046. {
  8047. name: "Standard Doggo",
  8048. height: math.unit(5 + 4 / 12, "feet")
  8049. },
  8050. {
  8051. name: "Big Doggo",
  8052. height: math.unit(25 + 3 / 12, "feet"),
  8053. default: true
  8054. },
  8055. ]
  8056. ))
  8057. characterMakers.push(() => makeCharacter(
  8058. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8059. {
  8060. front: {
  8061. height: math.unit(5 + 5/12, "feet"),
  8062. weight: math.unit(100, "lbs"),
  8063. name: "Front",
  8064. image: {
  8065. source: "./media/characters/odios-de-lunar/front.svg",
  8066. extra: 1468/1323,
  8067. bottom: 22/1490
  8068. }
  8069. }
  8070. },
  8071. [
  8072. {
  8073. name: "Micro",
  8074. height: math.unit(3, "inches")
  8075. },
  8076. {
  8077. name: "Normal",
  8078. height: math.unit(5.5, "feet"),
  8079. default: true
  8080. },
  8081. {
  8082. name: "Macro",
  8083. height: math.unit(100, "feet")
  8084. },
  8085. ]
  8086. ))
  8087. characterMakers.push(() => makeCharacter(
  8088. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8089. {
  8090. back: {
  8091. height: math.unit(6, "feet"),
  8092. weight: math.unit(220, "lbs"),
  8093. name: "Back",
  8094. image: {
  8095. source: "./media/characters/mandake/back.svg"
  8096. }
  8097. }
  8098. },
  8099. [
  8100. {
  8101. name: "Normal",
  8102. height: math.unit(7, "feet"),
  8103. default: true
  8104. },
  8105. {
  8106. name: "Macro",
  8107. height: math.unit(78, "feet")
  8108. },
  8109. {
  8110. name: "Macro+",
  8111. height: math.unit(300, "meters")
  8112. },
  8113. {
  8114. name: "Macro++",
  8115. height: math.unit(2400, "feet")
  8116. },
  8117. {
  8118. name: "Megamacro",
  8119. height: math.unit(5167, "meters")
  8120. },
  8121. {
  8122. name: "Gigamacro",
  8123. height: math.unit(41769, "miles")
  8124. },
  8125. ]
  8126. ))
  8127. characterMakers.push(() => makeCharacter(
  8128. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8129. {
  8130. front: {
  8131. height: math.unit(6, "feet"),
  8132. weight: math.unit(120, "lbs"),
  8133. name: "Front",
  8134. image: {
  8135. source: "./media/characters/yozey/front.svg"
  8136. }
  8137. },
  8138. frontAlt: {
  8139. height: math.unit(6, "feet"),
  8140. weight: math.unit(120, "lbs"),
  8141. name: "Front (Alt)",
  8142. image: {
  8143. source: "./media/characters/yozey/front-alt.svg"
  8144. }
  8145. },
  8146. side: {
  8147. height: math.unit(6, "feet"),
  8148. weight: math.unit(120, "lbs"),
  8149. name: "Side",
  8150. image: {
  8151. source: "./media/characters/yozey/side.svg"
  8152. }
  8153. },
  8154. },
  8155. [
  8156. {
  8157. name: "Micro",
  8158. height: math.unit(3, "inches"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "Normal",
  8163. height: math.unit(6, "feet")
  8164. }
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8169. {
  8170. front: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(103, "lbs"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/valeska-voss/front.svg"
  8176. }
  8177. }
  8178. },
  8179. [
  8180. {
  8181. name: "Mini-Sized Sub",
  8182. height: math.unit(3.1, "inches")
  8183. },
  8184. {
  8185. name: "Mid-Sized Sub",
  8186. height: math.unit(6.2, "inches")
  8187. },
  8188. {
  8189. name: "Full-Sized Sub",
  8190. height: math.unit(9.3, "inches")
  8191. },
  8192. {
  8193. name: "Normal",
  8194. height: math.unit(5 + 2 / 12, "foot"),
  8195. default: true
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(6, "feet"),
  8204. weight: math.unit(160, "lbs"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/gene-zeta/front.svg",
  8208. extra: 3006 / 2826,
  8209. bottom: 182 / 3188
  8210. }
  8211. }
  8212. },
  8213. [
  8214. {
  8215. name: "Micro",
  8216. height: math.unit(6, "inches")
  8217. },
  8218. {
  8219. name: "Normal",
  8220. height: math.unit(5 + 11 / 12, "foot"),
  8221. default: true
  8222. },
  8223. {
  8224. name: "Macro",
  8225. height: math.unit(140, "feet")
  8226. },
  8227. {
  8228. name: "Supercharged",
  8229. height: math.unit(2500, "feet")
  8230. },
  8231. ]
  8232. ))
  8233. characterMakers.push(() => makeCharacter(
  8234. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8235. {
  8236. front: {
  8237. height: math.unit(6, "feet"),
  8238. weight: math.unit(350, "lbs"),
  8239. name: "Front",
  8240. image: {
  8241. source: "./media/characters/razinox/front.svg",
  8242. extra: 1686 / 1548,
  8243. bottom: 28.2 / 1868
  8244. }
  8245. },
  8246. back: {
  8247. height: math.unit(6, "feet"),
  8248. weight: math.unit(350, "lbs"),
  8249. name: "Back",
  8250. image: {
  8251. source: "./media/characters/razinox/back.svg",
  8252. extra: 1660 / 1590,
  8253. bottom: 15 / 1665
  8254. }
  8255. },
  8256. },
  8257. [
  8258. {
  8259. name: "Normal",
  8260. height: math.unit(10 + 8 / 12, "foot")
  8261. },
  8262. {
  8263. name: "Minimacro",
  8264. height: math.unit(15, "foot")
  8265. },
  8266. {
  8267. name: "Macro",
  8268. height: math.unit(60, "foot"),
  8269. default: true
  8270. },
  8271. {
  8272. name: "Megamacro",
  8273. height: math.unit(5, "miles")
  8274. },
  8275. {
  8276. name: "Gigamacro",
  8277. height: math.unit(6000, "miles")
  8278. },
  8279. ]
  8280. ))
  8281. characterMakers.push(() => makeCharacter(
  8282. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8283. {
  8284. front: {
  8285. height: math.unit(6, "feet"),
  8286. weight: math.unit(150, "lbs"),
  8287. name: "Front",
  8288. image: {
  8289. source: "./media/characters/cobalt/front.svg"
  8290. }
  8291. }
  8292. },
  8293. [
  8294. {
  8295. name: "Normal",
  8296. height: math.unit(8 + 1 / 12, "foot")
  8297. },
  8298. {
  8299. name: "Macro",
  8300. height: math.unit(111, "foot"),
  8301. default: true
  8302. },
  8303. {
  8304. name: "Supracosmic",
  8305. height: math.unit(1e42, "feet")
  8306. },
  8307. ]
  8308. ))
  8309. characterMakers.push(() => makeCharacter(
  8310. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8311. {
  8312. front: {
  8313. height: math.unit(5, "inches"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/amanda/front.svg",
  8317. extra: 926/791,
  8318. bottom: 38/964
  8319. }
  8320. },
  8321. back: {
  8322. height: math.unit(5, "inches"),
  8323. name: "Back",
  8324. image: {
  8325. source: "./media/characters/amanda/back.svg",
  8326. extra: 909/805,
  8327. bottom: 43/952
  8328. }
  8329. },
  8330. },
  8331. [
  8332. {
  8333. name: "Micro",
  8334. height: math.unit(5, "inches"),
  8335. default: true
  8336. },
  8337. ]
  8338. ))
  8339. characterMakers.push(() => makeCharacter(
  8340. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8341. {
  8342. front: {
  8343. height: math.unit(2.75, "meters"),
  8344. weight: math.unit(1200, "lb"),
  8345. name: "Front",
  8346. image: {
  8347. source: "./media/characters/teal/front.svg",
  8348. extra: 2463 / 2320,
  8349. bottom: 166 / 2629
  8350. }
  8351. },
  8352. back: {
  8353. height: math.unit(2.75, "meters"),
  8354. weight: math.unit(1200, "lb"),
  8355. name: "Back",
  8356. image: {
  8357. source: "./media/characters/teal/back.svg",
  8358. extra: 2580 / 2489,
  8359. bottom: 151 / 2731
  8360. }
  8361. },
  8362. sitting: {
  8363. height: math.unit(1.9, "meters"),
  8364. weight: math.unit(1200, "lb"),
  8365. name: "Sitting",
  8366. image: {
  8367. source: "./media/characters/teal/sitting.svg",
  8368. extra: 623 / 590,
  8369. bottom: 121 / 744
  8370. }
  8371. },
  8372. standing: {
  8373. height: math.unit(2.75, "meters"),
  8374. weight: math.unit(1200, "lb"),
  8375. name: "Standing",
  8376. image: {
  8377. source: "./media/characters/teal/standing.svg",
  8378. extra: 923 / 893,
  8379. bottom: 60 / 983
  8380. }
  8381. },
  8382. stretching: {
  8383. height: math.unit(3.65, "meters"),
  8384. weight: math.unit(1200, "lb"),
  8385. name: "Stretching",
  8386. image: {
  8387. source: "./media/characters/teal/stretching.svg",
  8388. extra: 1276 / 1244,
  8389. bottom: 0 / 1276
  8390. }
  8391. },
  8392. legged: {
  8393. height: math.unit(1.3, "meters"),
  8394. weight: math.unit(100, "lb"),
  8395. name: "Legged",
  8396. image: {
  8397. source: "./media/characters/teal/legged.svg",
  8398. extra: 462 / 437,
  8399. bottom: 24 / 486
  8400. }
  8401. },
  8402. naga: {
  8403. height: math.unit(5.4, "meters"),
  8404. weight: math.unit(4000, "lb"),
  8405. name: "Naga",
  8406. image: {
  8407. source: "./media/characters/teal/naga.svg",
  8408. extra: 1902 / 1858,
  8409. bottom: 0 / 1902
  8410. }
  8411. },
  8412. hand: {
  8413. height: math.unit(0.52, "meters"),
  8414. name: "Hand",
  8415. image: {
  8416. source: "./media/characters/teal/hand.svg"
  8417. }
  8418. },
  8419. maw: {
  8420. height: math.unit(0.43, "meters"),
  8421. name: "Maw",
  8422. image: {
  8423. source: "./media/characters/teal/maw.svg"
  8424. }
  8425. },
  8426. slit: {
  8427. height: math.unit(0.25, "meters"),
  8428. name: "Slit",
  8429. image: {
  8430. source: "./media/characters/teal/slit.svg"
  8431. }
  8432. },
  8433. },
  8434. [
  8435. {
  8436. name: "Normal",
  8437. height: math.unit(2.75, "meters"),
  8438. default: true
  8439. },
  8440. {
  8441. name: "Macro",
  8442. height: math.unit(300, "feet")
  8443. },
  8444. {
  8445. name: "Macro+",
  8446. height: math.unit(2000, "feet")
  8447. },
  8448. ]
  8449. ))
  8450. characterMakers.push(() => makeCharacter(
  8451. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8452. {
  8453. frontCat: {
  8454. height: math.unit(6, "feet"),
  8455. weight: math.unit(180, "lbs"),
  8456. name: "Front (Cat)",
  8457. image: {
  8458. source: "./media/characters/ravin-amulet/front-cat.svg"
  8459. }
  8460. },
  8461. frontCatAlt: {
  8462. height: math.unit(6, "feet"),
  8463. weight: math.unit(180, "lbs"),
  8464. name: "Front (Alt, Cat)",
  8465. image: {
  8466. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8467. }
  8468. },
  8469. frontWerewolf: {
  8470. height: math.unit(6 * 1.2, "feet"),
  8471. weight: math.unit(225, "lbs"),
  8472. name: "Front (Werewolf)",
  8473. image: {
  8474. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8475. }
  8476. },
  8477. backWerewolf: {
  8478. height: math.unit(6 * 1.2, "feet"),
  8479. weight: math.unit(225, "lbs"),
  8480. name: "Back (Werewolf)",
  8481. image: {
  8482. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8483. }
  8484. },
  8485. },
  8486. [
  8487. {
  8488. name: "Nano",
  8489. height: math.unit(1, "micrometer")
  8490. },
  8491. {
  8492. name: "Micro",
  8493. height: math.unit(1, "inch")
  8494. },
  8495. {
  8496. name: "Normal",
  8497. height: math.unit(6, "feet"),
  8498. default: true
  8499. },
  8500. {
  8501. name: "Macro",
  8502. height: math.unit(60, "feet")
  8503. }
  8504. ]
  8505. ))
  8506. characterMakers.push(() => makeCharacter(
  8507. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8508. {
  8509. front: {
  8510. height: math.unit(6, "feet"),
  8511. weight: math.unit(165, "lbs"),
  8512. name: "Front",
  8513. image: {
  8514. source: "./media/characters/fluoresce/front.svg"
  8515. }
  8516. }
  8517. },
  8518. [
  8519. {
  8520. name: "Micro",
  8521. height: math.unit(6, "cm")
  8522. },
  8523. {
  8524. name: "Normal",
  8525. height: math.unit(5 + 7 / 12, "feet"),
  8526. default: true
  8527. },
  8528. {
  8529. name: "Macro",
  8530. height: math.unit(56, "feet")
  8531. },
  8532. {
  8533. name: "Megamacro",
  8534. height: math.unit(1.9, "miles")
  8535. },
  8536. ]
  8537. ))
  8538. characterMakers.push(() => makeCharacter(
  8539. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8540. {
  8541. front: {
  8542. height: math.unit(9 + 6 / 12, "feet"),
  8543. weight: math.unit(523, "lbs"),
  8544. name: "Side",
  8545. image: {
  8546. source: "./media/characters/aurora/side.svg",
  8547. extra: 474/393,
  8548. bottom: 5/479
  8549. }
  8550. }
  8551. },
  8552. [
  8553. {
  8554. name: "Normal",
  8555. height: math.unit(9 + 6 / 12, "feet")
  8556. },
  8557. {
  8558. name: "Macro",
  8559. height: math.unit(96, "feet"),
  8560. default: true
  8561. },
  8562. {
  8563. name: "Macro+",
  8564. height: math.unit(243, "feet")
  8565. },
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8570. {
  8571. front: {
  8572. height: math.unit(194, "cm"),
  8573. weight: math.unit(90, "kg"),
  8574. name: "Front",
  8575. image: {
  8576. source: "./media/characters/ranek/front.svg",
  8577. extra: 1862/1791,
  8578. bottom: 80/1942
  8579. }
  8580. },
  8581. back: {
  8582. height: math.unit(194, "cm"),
  8583. weight: math.unit(90, "kg"),
  8584. name: "Back",
  8585. image: {
  8586. source: "./media/characters/ranek/back.svg",
  8587. extra: 1853/1787,
  8588. bottom: 74/1927
  8589. }
  8590. },
  8591. feral: {
  8592. height: math.unit(30, "cm"),
  8593. weight: math.unit(1.6, "lbs"),
  8594. name: "Feral",
  8595. image: {
  8596. source: "./media/characters/ranek/feral.svg",
  8597. extra: 990/631,
  8598. bottom: 29/1019
  8599. }
  8600. },
  8601. },
  8602. [
  8603. {
  8604. name: "Normal",
  8605. height: math.unit(194, "cm"),
  8606. default: true
  8607. },
  8608. {
  8609. name: "Macro",
  8610. height: math.unit(100, "meters")
  8611. },
  8612. ]
  8613. ))
  8614. characterMakers.push(() => makeCharacter(
  8615. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8616. {
  8617. front: {
  8618. height: math.unit(5 + 6 / 12, "feet"),
  8619. weight: math.unit(153, "lbs"),
  8620. name: "Front",
  8621. image: {
  8622. source: "./media/characters/andrew-cooper/front.svg"
  8623. }
  8624. },
  8625. },
  8626. [
  8627. {
  8628. name: "Nano",
  8629. height: math.unit(1, "mm")
  8630. },
  8631. {
  8632. name: "Micro",
  8633. height: math.unit(2, "inches")
  8634. },
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(5 + 6 / 12, "feet"),
  8638. default: true
  8639. }
  8640. ]
  8641. ))
  8642. characterMakers.push(() => makeCharacter(
  8643. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8644. {
  8645. front: {
  8646. height: math.unit(6, "feet"),
  8647. weight: math.unit(180, "lbs"),
  8648. name: "Front",
  8649. image: {
  8650. source: "./media/characters/akane-sato/front.svg",
  8651. extra: 1219 / 1140
  8652. }
  8653. },
  8654. back: {
  8655. height: math.unit(6, "feet"),
  8656. weight: math.unit(180, "lbs"),
  8657. name: "Back",
  8658. image: {
  8659. source: "./media/characters/akane-sato/back.svg",
  8660. extra: 1219 / 1170
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Normal",
  8667. height: math.unit(2.5, "meters")
  8668. },
  8669. {
  8670. name: "Macro",
  8671. height: math.unit(250, "meters"),
  8672. default: true
  8673. },
  8674. {
  8675. name: "Megamacro",
  8676. height: math.unit(25, "km")
  8677. },
  8678. ]
  8679. ))
  8680. characterMakers.push(() => makeCharacter(
  8681. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8682. {
  8683. front: {
  8684. height: math.unit(6, "feet"),
  8685. weight: math.unit(65, "kg"),
  8686. name: "Front",
  8687. image: {
  8688. source: "./media/characters/rook/front.svg",
  8689. extra: 960 / 950
  8690. }
  8691. }
  8692. },
  8693. [
  8694. {
  8695. name: "Normal",
  8696. height: math.unit(8.8, "feet")
  8697. },
  8698. {
  8699. name: "Macro",
  8700. height: math.unit(88, "feet"),
  8701. default: true
  8702. },
  8703. {
  8704. name: "Megamacro",
  8705. height: math.unit(8, "miles")
  8706. },
  8707. ]
  8708. ))
  8709. characterMakers.push(() => makeCharacter(
  8710. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8711. {
  8712. front: {
  8713. height: math.unit(12 + 2 / 12, "feet"),
  8714. weight: math.unit(808, "lbs"),
  8715. name: "Front",
  8716. image: {
  8717. source: "./media/characters/prodigy/front.svg"
  8718. }
  8719. }
  8720. },
  8721. [
  8722. {
  8723. name: "Normal",
  8724. height: math.unit(12 + 2 / 12, "feet"),
  8725. default: true
  8726. },
  8727. {
  8728. name: "Macro",
  8729. height: math.unit(143, "feet")
  8730. },
  8731. {
  8732. name: "Macro+",
  8733. height: math.unit(400, "feet")
  8734. },
  8735. ]
  8736. ))
  8737. characterMakers.push(() => makeCharacter(
  8738. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8739. {
  8740. front: {
  8741. height: math.unit(6, "feet"),
  8742. weight: math.unit(225, "lbs"),
  8743. name: "Front",
  8744. image: {
  8745. source: "./media/characters/daniel/front.svg"
  8746. }
  8747. },
  8748. leaning: {
  8749. height: math.unit(6, "feet"),
  8750. weight: math.unit(225, "lbs"),
  8751. name: "Leaning",
  8752. image: {
  8753. source: "./media/characters/daniel/leaning.svg"
  8754. }
  8755. },
  8756. },
  8757. [
  8758. {
  8759. name: "Macro",
  8760. height: math.unit(1000, "feet"),
  8761. default: true
  8762. },
  8763. ]
  8764. ))
  8765. characterMakers.push(() => makeCharacter(
  8766. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8767. {
  8768. front: {
  8769. height: math.unit(6, "feet"),
  8770. weight: math.unit(88, "lbs"),
  8771. name: "Front",
  8772. image: {
  8773. source: "./media/characters/chiros/front.svg",
  8774. extra: 306 / 226
  8775. }
  8776. },
  8777. side: {
  8778. height: math.unit(6, "feet"),
  8779. weight: math.unit(88, "lbs"),
  8780. name: "Side",
  8781. image: {
  8782. source: "./media/characters/chiros/side.svg",
  8783. extra: 306 / 226
  8784. }
  8785. },
  8786. },
  8787. [
  8788. {
  8789. name: "Normal",
  8790. height: math.unit(6, "cm"),
  8791. default: true
  8792. },
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8797. {
  8798. front: {
  8799. height: math.unit(6, "feet"),
  8800. weight: math.unit(100, "lbs"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/selka/front.svg",
  8804. extra: 947 / 887
  8805. }
  8806. }
  8807. },
  8808. [
  8809. {
  8810. name: "Normal",
  8811. height: math.unit(5, "cm"),
  8812. default: true
  8813. },
  8814. ]
  8815. ))
  8816. characterMakers.push(() => makeCharacter(
  8817. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8818. {
  8819. front: {
  8820. height: math.unit(8 + 3 / 12, "feet"),
  8821. weight: math.unit(424, "lbs"),
  8822. name: "Front",
  8823. image: {
  8824. source: "./media/characters/verin/front.svg",
  8825. extra: 1845 / 1550
  8826. }
  8827. },
  8828. frontArmored: {
  8829. height: math.unit(8 + 3 / 12, "feet"),
  8830. weight: math.unit(424, "lbs"),
  8831. name: "Front (Armored)",
  8832. image: {
  8833. source: "./media/characters/verin/front-armor.svg",
  8834. extra: 1845 / 1550,
  8835. bottom: 0.01
  8836. }
  8837. },
  8838. back: {
  8839. height: math.unit(8 + 3 / 12, "feet"),
  8840. weight: math.unit(424, "lbs"),
  8841. name: "Back",
  8842. image: {
  8843. source: "./media/characters/verin/back.svg",
  8844. bottom: 0.1,
  8845. extra: 1
  8846. }
  8847. },
  8848. foot: {
  8849. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8850. name: "Foot",
  8851. image: {
  8852. source: "./media/characters/verin/foot.svg"
  8853. }
  8854. },
  8855. },
  8856. [
  8857. {
  8858. name: "Normal",
  8859. height: math.unit(8 + 3 / 12, "feet")
  8860. },
  8861. {
  8862. name: "Minimacro",
  8863. height: math.unit(21, "feet"),
  8864. default: true
  8865. },
  8866. {
  8867. name: "Macro",
  8868. height: math.unit(626, "feet")
  8869. },
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(2.718, "meters"),
  8877. weight: math.unit(150, "lbs"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/sovrim-terraquian/front.svg",
  8881. extra: 1752/1689,
  8882. bottom: 36/1788
  8883. }
  8884. },
  8885. back: {
  8886. height: math.unit(2.718, "meters"),
  8887. weight: math.unit(150, "lbs"),
  8888. name: "Back",
  8889. image: {
  8890. source: "./media/characters/sovrim-terraquian/back.svg",
  8891. extra: 1698/1657,
  8892. bottom: 58/1756
  8893. }
  8894. },
  8895. tongue: {
  8896. height: math.unit(2.865, "feet"),
  8897. name: "Tongue",
  8898. image: {
  8899. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8900. }
  8901. },
  8902. hand: {
  8903. height: math.unit(1.61, "feet"),
  8904. name: "Hand",
  8905. image: {
  8906. source: "./media/characters/sovrim-terraquian/hand.svg"
  8907. }
  8908. },
  8909. foot: {
  8910. height: math.unit(1.05, "feet"),
  8911. name: "Foot",
  8912. image: {
  8913. source: "./media/characters/sovrim-terraquian/foot.svg"
  8914. }
  8915. },
  8916. footAlt: {
  8917. height: math.unit(0.88, "feet"),
  8918. name: "Foot (Alt)",
  8919. image: {
  8920. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8921. }
  8922. },
  8923. },
  8924. [
  8925. {
  8926. name: "Micro",
  8927. height: math.unit(2, "inches")
  8928. },
  8929. {
  8930. name: "Small",
  8931. height: math.unit(1, "meter")
  8932. },
  8933. {
  8934. name: "Normal",
  8935. height: math.unit(Math.E, "meters"),
  8936. default: true
  8937. },
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(20, "meters")
  8941. },
  8942. {
  8943. name: "Macro+",
  8944. height: math.unit(400, "meters")
  8945. },
  8946. ]
  8947. ))
  8948. characterMakers.push(() => makeCharacter(
  8949. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8950. {
  8951. front: {
  8952. height: math.unit(7, "feet"),
  8953. weight: math.unit(489, "lbs"),
  8954. name: "Front",
  8955. image: {
  8956. source: "./media/characters/reece-silvermane/front.svg",
  8957. bottom: 0.02,
  8958. extra: 1
  8959. }
  8960. },
  8961. },
  8962. [
  8963. {
  8964. name: "Macro",
  8965. height: math.unit(1.5, "miles"),
  8966. default: true
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(6, "feet"),
  8975. weight: math.unit(78, "kg"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/kane/front.svg",
  8979. extra: 978 / 899
  8980. }
  8981. },
  8982. },
  8983. [
  8984. {
  8985. name: "Normal",
  8986. height: math.unit(2.1, "m"),
  8987. },
  8988. {
  8989. name: "Macro",
  8990. height: math.unit(1, "km"),
  8991. default: true
  8992. },
  8993. ]
  8994. ))
  8995. characterMakers.push(() => makeCharacter(
  8996. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8997. {
  8998. front: {
  8999. height: math.unit(6, "feet"),
  9000. weight: math.unit(200, "kg"),
  9001. name: "Front",
  9002. image: {
  9003. source: "./media/characters/tegon/front.svg",
  9004. bottom: 0.01,
  9005. extra: 1
  9006. }
  9007. },
  9008. },
  9009. [
  9010. {
  9011. name: "Micro",
  9012. height: math.unit(1, "inch")
  9013. },
  9014. {
  9015. name: "Normal",
  9016. height: math.unit(6 + 3 / 12, "feet"),
  9017. default: true
  9018. },
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(300, "feet")
  9022. },
  9023. {
  9024. name: "Megamacro",
  9025. height: math.unit(69, "miles")
  9026. },
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9031. {
  9032. side: {
  9033. height: math.unit(6, "feet"),
  9034. weight: math.unit(2304, "lbs"),
  9035. name: "Side",
  9036. image: {
  9037. source: "./media/characters/arcturax/side.svg",
  9038. extra: 790 / 376,
  9039. bottom: 0.01
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Micro",
  9046. height: math.unit(2, "inch")
  9047. },
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(6, "feet")
  9051. },
  9052. {
  9053. name: "Macro",
  9054. height: math.unit(39, "feet"),
  9055. default: true
  9056. },
  9057. {
  9058. name: "Megamacro",
  9059. height: math.unit(7, "miles")
  9060. },
  9061. ]
  9062. ))
  9063. characterMakers.push(() => makeCharacter(
  9064. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9065. {
  9066. front: {
  9067. height: math.unit(6, "feet"),
  9068. weight: math.unit(50, "lbs"),
  9069. name: "Front",
  9070. image: {
  9071. source: "./media/characters/sentri/front.svg",
  9072. extra: 1750 / 1570,
  9073. bottom: 0.025
  9074. }
  9075. },
  9076. frontAlt: {
  9077. height: math.unit(6, "feet"),
  9078. weight: math.unit(50, "lbs"),
  9079. name: "Front (Alt)",
  9080. image: {
  9081. source: "./media/characters/sentri/front-alt.svg",
  9082. extra: 1750 / 1570,
  9083. bottom: 0.025
  9084. }
  9085. },
  9086. },
  9087. [
  9088. {
  9089. name: "Normal",
  9090. height: math.unit(15, "feet"),
  9091. default: true
  9092. },
  9093. {
  9094. name: "Macro",
  9095. height: math.unit(2500, "feet")
  9096. }
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9101. {
  9102. front: {
  9103. height: math.unit(5 + 8 / 12, "feet"),
  9104. weight: math.unit(130, "lbs"),
  9105. name: "Front",
  9106. image: {
  9107. source: "./media/characters/corvin/front.svg",
  9108. extra: 1803 / 1629
  9109. }
  9110. },
  9111. frontShirt: {
  9112. height: math.unit(5 + 8 / 12, "feet"),
  9113. weight: math.unit(130, "lbs"),
  9114. name: "Front (Shirt)",
  9115. image: {
  9116. source: "./media/characters/corvin/front-shirt.svg",
  9117. extra: 1803 / 1629
  9118. }
  9119. },
  9120. frontPoncho: {
  9121. height: math.unit(5 + 8 / 12, "feet"),
  9122. weight: math.unit(130, "lbs"),
  9123. name: "Front (Poncho)",
  9124. image: {
  9125. source: "./media/characters/corvin/front-poncho.svg",
  9126. extra: 1803 / 1629
  9127. }
  9128. },
  9129. side: {
  9130. height: math.unit(5 + 8 / 12, "feet"),
  9131. weight: math.unit(130, "lbs"),
  9132. name: "Side",
  9133. image: {
  9134. source: "./media/characters/corvin/side.svg",
  9135. extra: 1012 / 945
  9136. }
  9137. },
  9138. back: {
  9139. height: math.unit(5 + 8 / 12, "feet"),
  9140. weight: math.unit(130, "lbs"),
  9141. name: "Back",
  9142. image: {
  9143. source: "./media/characters/corvin/back.svg",
  9144. extra: 1803 / 1629
  9145. }
  9146. },
  9147. },
  9148. [
  9149. {
  9150. name: "Micro",
  9151. height: math.unit(3, "inches")
  9152. },
  9153. {
  9154. name: "Normal",
  9155. height: math.unit(5 + 8 / 12, "feet")
  9156. },
  9157. {
  9158. name: "Macro",
  9159. height: math.unit(300, "feet"),
  9160. default: true
  9161. },
  9162. {
  9163. name: "Megamacro",
  9164. height: math.unit(500, "miles")
  9165. }
  9166. ]
  9167. ))
  9168. characterMakers.push(() => makeCharacter(
  9169. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9170. {
  9171. front: {
  9172. height: math.unit(6, "feet"),
  9173. weight: math.unit(135, "lbs"),
  9174. name: "Front",
  9175. image: {
  9176. source: "./media/characters/q/front.svg",
  9177. extra: 854 / 752,
  9178. bottom: 0.005
  9179. }
  9180. },
  9181. back: {
  9182. height: math.unit(6, "feet"),
  9183. weight: math.unit(130, "lbs"),
  9184. name: "Back",
  9185. image: {
  9186. source: "./media/characters/q/back.svg",
  9187. extra: 854 / 752
  9188. }
  9189. },
  9190. },
  9191. [
  9192. {
  9193. name: "Macro",
  9194. height: math.unit(90, "feet"),
  9195. default: true
  9196. },
  9197. {
  9198. name: "Extra Macro",
  9199. height: math.unit(300, "feet"),
  9200. },
  9201. {
  9202. name: "BIG WALF",
  9203. height: math.unit(750, "feet"),
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9209. {
  9210. front: {
  9211. height: math.unit(3, "feet"),
  9212. weight: math.unit(28, "lbs"),
  9213. name: "Front",
  9214. image: {
  9215. source: "./media/characters/citrine/front.svg"
  9216. }
  9217. }
  9218. },
  9219. [
  9220. {
  9221. name: "Normal",
  9222. height: math.unit(3, "feet"),
  9223. default: true
  9224. }
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9229. {
  9230. front: {
  9231. height: math.unit(14, "feet"),
  9232. weight: math.unit(1450, "kg"),
  9233. preyCapacity: math.unit(15, "people"),
  9234. name: "Front",
  9235. image: {
  9236. source: "./media/characters/aura-starwind/front.svg",
  9237. extra: 1440/1327,
  9238. bottom: 11/1451
  9239. }
  9240. },
  9241. side: {
  9242. height: math.unit(14, "feet"),
  9243. weight: math.unit(1450, "kg"),
  9244. preyCapacity: math.unit(15, "people"),
  9245. name: "Side",
  9246. image: {
  9247. source: "./media/characters/aura-starwind/side.svg",
  9248. extra: 1654 / 1497
  9249. }
  9250. },
  9251. taur: {
  9252. height: math.unit(18, "feet"),
  9253. weight: math.unit(5500, "kg"),
  9254. preyCapacity: math.unit(50, "people"),
  9255. name: "Taur",
  9256. image: {
  9257. source: "./media/characters/aura-starwind/taur.svg",
  9258. extra: 1760 / 1650
  9259. }
  9260. },
  9261. feral: {
  9262. height: math.unit(46, "feet"),
  9263. weight: math.unit(25000, "kg"),
  9264. preyCapacity: math.unit(120, "people"),
  9265. name: "Feral",
  9266. image: {
  9267. source: "./media/characters/aura-starwind/feral.svg"
  9268. }
  9269. },
  9270. },
  9271. [
  9272. {
  9273. name: "Normal",
  9274. height: math.unit(14, "feet"),
  9275. default: true
  9276. },
  9277. {
  9278. name: "Macro",
  9279. height: math.unit(50, "meters")
  9280. },
  9281. {
  9282. name: "Megamacro",
  9283. height: math.unit(5000, "meters")
  9284. },
  9285. {
  9286. name: "Gigamacro",
  9287. height: math.unit(100000, "kilometers")
  9288. },
  9289. ]
  9290. ))
  9291. characterMakers.push(() => makeCharacter(
  9292. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9293. {
  9294. front: {
  9295. height: math.unit(2 + 7 / 12, "feet"),
  9296. weight: math.unit(32, "lbs"),
  9297. name: "Front",
  9298. image: {
  9299. source: "./media/characters/rivet/front.svg",
  9300. extra: 1716 / 1658,
  9301. bottom: 0.03
  9302. }
  9303. },
  9304. foot: {
  9305. height: math.unit(0.551, "feet"),
  9306. name: "Rivet's Foot",
  9307. image: {
  9308. source: "./media/characters/rivet/foot.svg"
  9309. },
  9310. rename: true
  9311. }
  9312. },
  9313. [
  9314. {
  9315. name: "Micro",
  9316. height: math.unit(1.5, "inches"),
  9317. },
  9318. {
  9319. name: "Normal",
  9320. height: math.unit(2 + 7 / 12, "feet"),
  9321. default: true
  9322. },
  9323. {
  9324. name: "Macro",
  9325. height: math.unit(85, "feet")
  9326. },
  9327. {
  9328. name: "Megamacro",
  9329. height: math.unit(2.2, "km")
  9330. }
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9335. {
  9336. front: {
  9337. height: math.unit(5 + 9 / 12, "feet"),
  9338. weight: math.unit(150, "lbs"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/coffee/front.svg",
  9342. extra: 946/880,
  9343. bottom: 66/1012
  9344. }
  9345. },
  9346. foot: {
  9347. height: math.unit(1.29, "feet"),
  9348. name: "Foot",
  9349. image: {
  9350. source: "./media/characters/coffee/foot.svg"
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Micro",
  9357. height: math.unit(2, "inches"),
  9358. },
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(5 + 9 / 12, "feet"),
  9362. default: true
  9363. },
  9364. {
  9365. name: "Macro",
  9366. height: math.unit(800, "feet")
  9367. },
  9368. {
  9369. name: "Megamacro",
  9370. height: math.unit(25, "miles")
  9371. }
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9376. {
  9377. front: {
  9378. height: math.unit(6, "feet"),
  9379. weight: math.unit(200, "lbs"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/chari-gal/front.svg",
  9383. extra: 1568 / 1385,
  9384. bottom: 0.047
  9385. }
  9386. },
  9387. gigantamax: {
  9388. height: math.unit(6 * 16, "feet"),
  9389. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9390. name: "Gigantamax",
  9391. image: {
  9392. source: "./media/characters/chari-gal/gigantamax.svg",
  9393. extra: 1124 / 888,
  9394. bottom: 0.03
  9395. }
  9396. },
  9397. },
  9398. [
  9399. {
  9400. name: "Normal",
  9401. height: math.unit(5 + 7 / 12, "feet")
  9402. },
  9403. {
  9404. name: "Macro",
  9405. height: math.unit(200, "feet"),
  9406. default: true
  9407. }
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9412. {
  9413. front: {
  9414. height: math.unit(6, "feet"),
  9415. weight: math.unit(150, "lbs"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/nova/front.svg",
  9419. extra: 5000 / 4722,
  9420. bottom: 0.02
  9421. }
  9422. }
  9423. },
  9424. [
  9425. {
  9426. name: "Micro-",
  9427. height: math.unit(0.8, "inches")
  9428. },
  9429. {
  9430. name: "Micro",
  9431. height: math.unit(2, "inches"),
  9432. default: true
  9433. },
  9434. ]
  9435. ))
  9436. characterMakers.push(() => makeCharacter(
  9437. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9438. {
  9439. koboldFront: {
  9440. height: math.unit(3 + 1 / 12, "feet"),
  9441. weight: math.unit(21.7, "lbs"),
  9442. name: "Front",
  9443. image: {
  9444. source: "./media/characters/argent/kobold-front.svg",
  9445. extra: 1471 / 1331,
  9446. bottom: 100.8 / 1575.5
  9447. },
  9448. form: "kobold",
  9449. default: true
  9450. },
  9451. dragonFront: {
  9452. height: math.unit(75, "inches"),
  9453. name: "Front",
  9454. image: {
  9455. source: "./media/characters/argent/dragon-front.svg",
  9456. extra: 1389/1248,
  9457. bottom: 54/1443
  9458. },
  9459. form: "dragon",
  9460. },
  9461. dragonBack: {
  9462. height: math.unit(75, "inches"),
  9463. name: "Back",
  9464. image: {
  9465. source: "./media/characters/argent/dragon-back.svg",
  9466. extra: 1399/1271,
  9467. bottom: 23/1422
  9468. },
  9469. form: "dragon",
  9470. },
  9471. dragonDressed: {
  9472. height: math.unit(75, "inches"),
  9473. name: "Dressed",
  9474. image: {
  9475. source: "./media/characters/argent/dragon-dressed.svg",
  9476. extra: 1350/1215,
  9477. bottom: 26/1376
  9478. },
  9479. form: "dragon"
  9480. },
  9481. dragonHead: {
  9482. height: math.unit(23.5, "inches"),
  9483. name: "Head",
  9484. image: {
  9485. source: "./media/characters/argent/dragon-head.svg"
  9486. },
  9487. form: "dragon",
  9488. },
  9489. },
  9490. [
  9491. {
  9492. name: "Micro",
  9493. height: math.unit(2, "inches"),
  9494. form: "kobold",
  9495. },
  9496. {
  9497. name: "Normal",
  9498. height: math.unit(3 + 1 / 12, "feet"),
  9499. form: "kobold",
  9500. default: true
  9501. },
  9502. {
  9503. name: "Macro",
  9504. height: math.unit(120, "feet"),
  9505. form: "kobold",
  9506. },
  9507. {
  9508. name: "Speck",
  9509. height: math.unit(1, "mm"),
  9510. form: "dragon",
  9511. },
  9512. {
  9513. name: "Tiny",
  9514. height: math.unit(1, "cm"),
  9515. form: "dragon",
  9516. },
  9517. {
  9518. name: "Micro",
  9519. height: math.unit(5, "cm"),
  9520. form: "dragon",
  9521. },
  9522. {
  9523. name: "Normal",
  9524. height: math.unit(75, "inches"),
  9525. form: "dragon",
  9526. default: true
  9527. },
  9528. {
  9529. name: "Extra Tall",
  9530. height: math.unit(9, "feet"),
  9531. form: "dragon",
  9532. },
  9533. {
  9534. name: "Inconvenient",
  9535. height: math.unit(5, "meters"),
  9536. form: "dragon",
  9537. },
  9538. {
  9539. name: "Macro",
  9540. height: math.unit(70, "meters"),
  9541. form: "dragon",
  9542. },
  9543. {
  9544. name: "Macro+",
  9545. height: math.unit(250, "meters"),
  9546. form: "dragon",
  9547. },
  9548. {
  9549. name: "Megamacro",
  9550. height: math.unit(20, "km"),
  9551. form: "dragon",
  9552. },
  9553. {
  9554. name: "Mountainous",
  9555. height: math.unit(100, "km"),
  9556. form: "dragon",
  9557. },
  9558. {
  9559. name: "Continental",
  9560. height: math.unit(2, "megameters"),
  9561. form: "dragon",
  9562. },
  9563. {
  9564. name: "Too Big",
  9565. height: math.unit(900, "megameters"),
  9566. form: "dragon",
  9567. },
  9568. ],
  9569. {
  9570. "kobold": {
  9571. name: "Kobold",
  9572. default: true
  9573. },
  9574. "dragon": {
  9575. name: "Dragon",
  9576. },
  9577. }
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9581. {
  9582. lamp: {
  9583. height: math.unit(7 * 1559 / 989, "feet"),
  9584. name: "Magic Lamp",
  9585. image: {
  9586. source: "./media/characters/mira-al-cul/lamp.svg",
  9587. extra: 1617 / 1559
  9588. }
  9589. },
  9590. front: {
  9591. height: math.unit(7, "feet"),
  9592. name: "Front",
  9593. image: {
  9594. source: "./media/characters/mira-al-cul/front.svg",
  9595. extra: 1044 / 990
  9596. }
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Heavily Restricted",
  9602. height: math.unit(7 * 1559 / 989, "feet")
  9603. },
  9604. {
  9605. name: "Freshly Freed",
  9606. height: math.unit(50 * 1559 / 989, "feet")
  9607. },
  9608. {
  9609. name: "World Encompassing",
  9610. height: math.unit(10000 * 1559 / 989, "miles")
  9611. },
  9612. {
  9613. name: "Galactic",
  9614. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9615. },
  9616. {
  9617. name: "Palmed Universe",
  9618. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9619. default: true
  9620. },
  9621. {
  9622. name: "Multiversal Matriarch",
  9623. height: math.unit(8.87e10, "yottameters")
  9624. },
  9625. {
  9626. name: "Void Mother",
  9627. height: math.unit(3.14e110, "yottaparsecs")
  9628. },
  9629. {
  9630. name: "Toying with Transcendence",
  9631. height: math.unit(1e307, "meters")
  9632. },
  9633. ]
  9634. ))
  9635. characterMakers.push(() => makeCharacter(
  9636. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9637. {
  9638. front: {
  9639. height: math.unit(17 + 1 / 12, "feet"),
  9640. weight: math.unit(476.2 * 5, "lbs"),
  9641. name: "Front",
  9642. image: {
  9643. source: "./media/characters/kuro-shi-uchū/front.svg",
  9644. extra: 2329 / 1835,
  9645. bottom: 0.02
  9646. }
  9647. },
  9648. },
  9649. [
  9650. {
  9651. name: "Micro",
  9652. height: math.unit(2, "inches")
  9653. },
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(12, "meters")
  9657. },
  9658. {
  9659. name: "Planetary",
  9660. height: math.unit(0.00929, "AU"),
  9661. default: true
  9662. },
  9663. {
  9664. name: "Universal",
  9665. height: math.unit(20, "gigaparsecs")
  9666. },
  9667. ]
  9668. ))
  9669. characterMakers.push(() => makeCharacter(
  9670. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9671. {
  9672. front: {
  9673. height: math.unit(5 + 2 / 12, "feet"),
  9674. weight: math.unit(120, "lbs"),
  9675. name: "Front",
  9676. image: {
  9677. source: "./media/characters/katherine/front.svg",
  9678. extra: 2075 / 1969
  9679. }
  9680. },
  9681. dress: {
  9682. height: math.unit(5 + 2 / 12, "feet"),
  9683. weight: math.unit(120, "lbs"),
  9684. name: "Dress",
  9685. image: {
  9686. source: "./media/characters/katherine/dress.svg",
  9687. extra: 2258 / 2064
  9688. }
  9689. },
  9690. },
  9691. [
  9692. {
  9693. name: "Micro",
  9694. height: math.unit(1, "inches"),
  9695. default: true
  9696. },
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(5 + 2 / 12, "feet")
  9700. },
  9701. {
  9702. name: "Macro",
  9703. height: math.unit(100, "meters")
  9704. },
  9705. {
  9706. name: "Megamacro",
  9707. height: math.unit(80, "miles")
  9708. },
  9709. ]
  9710. ))
  9711. characterMakers.push(() => makeCharacter(
  9712. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9713. {
  9714. front: {
  9715. height: math.unit(7 + 8 / 12, "feet"),
  9716. weight: math.unit(250, "lbs"),
  9717. name: "Front",
  9718. image: {
  9719. source: "./media/characters/yevis/front.svg",
  9720. extra: 1938 / 1755
  9721. }
  9722. }
  9723. },
  9724. [
  9725. {
  9726. name: "Mortal",
  9727. height: math.unit(7 + 8 / 12, "feet")
  9728. },
  9729. {
  9730. name: "Battle",
  9731. height: math.unit(25 + 11 / 12, "feet")
  9732. },
  9733. {
  9734. name: "Wrath",
  9735. height: math.unit(1654 + 11 / 12, "feet")
  9736. },
  9737. {
  9738. name: "Planet Destroyer",
  9739. height: math.unit(12000, "miles")
  9740. },
  9741. {
  9742. name: "Galaxy Conqueror",
  9743. height: math.unit(1.45, "zettameters"),
  9744. default: true
  9745. },
  9746. {
  9747. name: "Universal War",
  9748. height: math.unit(184, "gigaparsecs")
  9749. },
  9750. {
  9751. name: "Eternity War",
  9752. height: math.unit(1.98e55, "yottaparsecs")
  9753. },
  9754. ]
  9755. ))
  9756. characterMakers.push(() => makeCharacter(
  9757. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9758. {
  9759. front: {
  9760. height: math.unit(5 + 8 / 12, "feet"),
  9761. weight: math.unit(63, "kg"),
  9762. name: "Front",
  9763. image: {
  9764. source: "./media/characters/xavier/front.svg",
  9765. extra: 944 / 883
  9766. }
  9767. },
  9768. frontStretch: {
  9769. height: math.unit(5 + 8 / 12, "feet"),
  9770. weight: math.unit(63, "kg"),
  9771. name: "Stretching",
  9772. image: {
  9773. source: "./media/characters/xavier/front-stretch.svg",
  9774. extra: 962 / 820
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(5 + 8 / 12, "feet")
  9782. },
  9783. {
  9784. name: "Macro",
  9785. height: math.unit(100, "meters"),
  9786. default: true
  9787. },
  9788. {
  9789. name: "McLargeHuge",
  9790. height: math.unit(10, "miles")
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(5 + 5 / 12, "feet"),
  9799. weight: math.unit(150, "lb"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/joshii/front.svg",
  9803. extra: 765 / 653,
  9804. bottom: 51 / 816
  9805. }
  9806. },
  9807. foot: {
  9808. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9809. name: "Foot",
  9810. image: {
  9811. source: "./media/characters/joshii/foot.svg"
  9812. }
  9813. },
  9814. },
  9815. [
  9816. {
  9817. name: "Micro",
  9818. height: math.unit(2, "inches")
  9819. },
  9820. {
  9821. name: "Normal",
  9822. height: math.unit(5 + 5 / 12, "feet")
  9823. },
  9824. {
  9825. name: "Macro",
  9826. height: math.unit(785, "feet"),
  9827. default: true
  9828. },
  9829. {
  9830. name: "Megamacro",
  9831. height: math.unit(24.5, "miles")
  9832. },
  9833. ]
  9834. ))
  9835. characterMakers.push(() => makeCharacter(
  9836. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9837. {
  9838. front: {
  9839. height: math.unit(6, "feet"),
  9840. weight: math.unit(150, "lb"),
  9841. name: "Front",
  9842. image: {
  9843. source: "./media/characters/goddess-elizabeth/front.svg",
  9844. extra: 1800 / 1525,
  9845. bottom: 0.005
  9846. }
  9847. },
  9848. foot: {
  9849. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9850. name: "Foot",
  9851. image: {
  9852. source: "./media/characters/goddess-elizabeth/foot.svg"
  9853. }
  9854. },
  9855. mouth: {
  9856. height: math.unit(6, "feet"),
  9857. name: "Mouth",
  9858. image: {
  9859. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9860. }
  9861. },
  9862. },
  9863. [
  9864. {
  9865. name: "Micro",
  9866. height: math.unit(12, "feet")
  9867. },
  9868. {
  9869. name: "Normal",
  9870. height: math.unit(80, "miles"),
  9871. default: true
  9872. },
  9873. {
  9874. name: "Macro",
  9875. height: math.unit(15000, "parsecs")
  9876. },
  9877. ]
  9878. ))
  9879. characterMakers.push(() => makeCharacter(
  9880. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9881. {
  9882. front: {
  9883. height: math.unit(5 + 9 / 12, "feet"),
  9884. weight: math.unit(144, "lb"),
  9885. name: "Front",
  9886. image: {
  9887. source: "./media/characters/kara/front.svg"
  9888. }
  9889. },
  9890. feet: {
  9891. height: math.unit(6 / 6.765, "feet"),
  9892. name: "Kara's Feet",
  9893. rename: true,
  9894. image: {
  9895. source: "./media/characters/kara/feet.svg"
  9896. }
  9897. },
  9898. },
  9899. [
  9900. {
  9901. name: "Normal",
  9902. height: math.unit(5 + 9 / 12, "feet")
  9903. },
  9904. {
  9905. name: "Macro",
  9906. height: math.unit(174, "feet"),
  9907. default: true
  9908. },
  9909. ]
  9910. ))
  9911. characterMakers.push(() => makeCharacter(
  9912. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9913. {
  9914. front: {
  9915. height: math.unit(18, "feet"),
  9916. weight: math.unit(4050, "lb"),
  9917. name: "Front",
  9918. image: {
  9919. source: "./media/characters/tyrone/front.svg",
  9920. extra: 2405 / 2270,
  9921. bottom: 182 / 2587
  9922. }
  9923. },
  9924. },
  9925. [
  9926. {
  9927. name: "Normal",
  9928. height: math.unit(18, "feet"),
  9929. default: true
  9930. },
  9931. {
  9932. name: "Macro",
  9933. height: math.unit(300, "feet")
  9934. },
  9935. {
  9936. name: "Megamacro",
  9937. height: math.unit(15, "km")
  9938. },
  9939. {
  9940. name: "Gigamacro",
  9941. height: math.unit(500, "km")
  9942. },
  9943. {
  9944. name: "Teramacro",
  9945. height: math.unit(0.5, "gigameters")
  9946. },
  9947. {
  9948. name: "Omnimacro",
  9949. height: math.unit(1e252, "yottauniverse")
  9950. },
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(7 + 8 / 12, "feet"),
  9958. weight: math.unit(120, "lb"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/danny/front.svg",
  9962. extra: 1490 / 1350
  9963. }
  9964. },
  9965. back: {
  9966. height: math.unit(7 + 8 / 12, "feet"),
  9967. weight: math.unit(120, "lb"),
  9968. name: "Back",
  9969. image: {
  9970. source: "./media/characters/danny/back.svg",
  9971. extra: 1490 / 1350
  9972. }
  9973. },
  9974. },
  9975. [
  9976. {
  9977. name: "Normal",
  9978. height: math.unit(7 + 8 / 12, "feet"),
  9979. default: true
  9980. },
  9981. ]
  9982. ))
  9983. characterMakers.push(() => makeCharacter(
  9984. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9985. {
  9986. front: {
  9987. height: math.unit(3.5, "inches"),
  9988. weight: math.unit(19, "grams"),
  9989. name: "Front",
  9990. image: {
  9991. source: "./media/characters/mallow/front.svg",
  9992. extra: 471 / 431
  9993. }
  9994. },
  9995. back: {
  9996. height: math.unit(3.5, "inches"),
  9997. weight: math.unit(19, "grams"),
  9998. name: "Back",
  9999. image: {
  10000. source: "./media/characters/mallow/back.svg",
  10001. extra: 471 / 431
  10002. }
  10003. },
  10004. },
  10005. [
  10006. {
  10007. name: "Normal",
  10008. height: math.unit(3.5, "inches"),
  10009. default: true
  10010. },
  10011. ]
  10012. ))
  10013. characterMakers.push(() => makeCharacter(
  10014. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10015. {
  10016. front: {
  10017. height: math.unit(9, "feet"),
  10018. weight: math.unit(230, "kg"),
  10019. name: "Front",
  10020. image: {
  10021. source: "./media/characters/starry-aqua/front.svg"
  10022. }
  10023. },
  10024. back: {
  10025. height: math.unit(9, "feet"),
  10026. weight: math.unit(230, "kg"),
  10027. name: "Back",
  10028. image: {
  10029. source: "./media/characters/starry-aqua/back.svg"
  10030. }
  10031. },
  10032. hand: {
  10033. height: math.unit(9 * 0.1168, "feet"),
  10034. name: "Hand",
  10035. image: {
  10036. source: "./media/characters/starry-aqua/hand.svg"
  10037. }
  10038. },
  10039. foot: {
  10040. height: math.unit(9 * 0.18, "feet"),
  10041. name: "Foot",
  10042. image: {
  10043. source: "./media/characters/starry-aqua/foot.svg"
  10044. }
  10045. }
  10046. },
  10047. [
  10048. {
  10049. name: "Micro",
  10050. height: math.unit(3, "inches")
  10051. },
  10052. {
  10053. name: "Normal",
  10054. height: math.unit(9, "feet")
  10055. },
  10056. {
  10057. name: "Macro",
  10058. height: math.unit(300, "feet"),
  10059. default: true
  10060. },
  10061. {
  10062. name: "Megamacro",
  10063. height: math.unit(3200, "feet")
  10064. }
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10069. {
  10070. front: {
  10071. height: math.unit(15, "feet"),
  10072. weight: math.unit(5026, "lb"),
  10073. name: "Front",
  10074. image: {
  10075. source: "./media/characters/luka-towers/front.svg",
  10076. extra: 1269/1133,
  10077. bottom: 51/1320
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Normal",
  10084. height: math.unit(15, "feet"),
  10085. default: true
  10086. },
  10087. {
  10088. name: "Minimacro",
  10089. height: math.unit(25, "feet")
  10090. },
  10091. {
  10092. name: "Macro",
  10093. height: math.unit(320, "feet")
  10094. },
  10095. {
  10096. name: "Megamacro",
  10097. height: math.unit(35000, "feet")
  10098. },
  10099. {
  10100. name: "Gigamacro",
  10101. height: math.unit(4000, "miles")
  10102. },
  10103. {
  10104. name: "Teramacro",
  10105. height: math.unit(15000, "miles")
  10106. },
  10107. ]
  10108. ))
  10109. characterMakers.push(() => makeCharacter(
  10110. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10111. {
  10112. front: {
  10113. height: math.unit(6, "feet"),
  10114. weight: math.unit(150, "lb"),
  10115. name: "Front",
  10116. image: {
  10117. source: "./media/characters/natalie-nightring/front.svg",
  10118. extra: 1,
  10119. bottom: 0.06
  10120. }
  10121. },
  10122. },
  10123. [
  10124. {
  10125. name: "Uh Oh",
  10126. height: math.unit(0.1, "mm")
  10127. },
  10128. {
  10129. name: "Small",
  10130. height: math.unit(3, "inches")
  10131. },
  10132. {
  10133. name: "Human Scale",
  10134. height: math.unit(6, "feet")
  10135. },
  10136. {
  10137. name: "Librarian",
  10138. height: math.unit(50, "feet"),
  10139. default: true
  10140. },
  10141. {
  10142. name: "Immense",
  10143. height: math.unit(200, "miles")
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10149. {
  10150. front: {
  10151. height: math.unit(6, "feet"),
  10152. weight: math.unit(180, "lbs"),
  10153. name: "Front",
  10154. image: {
  10155. source: "./media/characters/danni-rosie/front.svg",
  10156. extra: 1260 / 1128,
  10157. bottom: 0.022
  10158. }
  10159. },
  10160. },
  10161. [
  10162. {
  10163. name: "Micro",
  10164. height: math.unit(2, "inches"),
  10165. default: true
  10166. },
  10167. ]
  10168. ))
  10169. characterMakers.push(() => makeCharacter(
  10170. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10171. {
  10172. front: {
  10173. height: math.unit(5 + 9 / 12, "feet"),
  10174. weight: math.unit(220, "lb"),
  10175. name: "Front",
  10176. image: {
  10177. source: "./media/characters/samantha-kruse/front.svg",
  10178. extra: (985 / 935),
  10179. bottom: 0.03
  10180. }
  10181. },
  10182. frontUndressed: {
  10183. height: math.unit(5 + 9 / 12, "feet"),
  10184. weight: math.unit(220, "lb"),
  10185. name: "Front (Undressed)",
  10186. image: {
  10187. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10188. extra: (973 / 923),
  10189. bottom: 0.025
  10190. }
  10191. },
  10192. fat: {
  10193. height: math.unit(5 + 9 / 12, "feet"),
  10194. weight: math.unit(900, "lb"),
  10195. name: "Front (Fat)",
  10196. image: {
  10197. source: "./media/characters/samantha-kruse/fat.svg",
  10198. extra: 2688 / 2561
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Normal",
  10205. height: math.unit(5 + 9 / 12, "feet"),
  10206. default: true
  10207. }
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10212. {
  10213. back: {
  10214. height: math.unit(5 + 4 / 12, "feet"),
  10215. weight: math.unit(4963, "lb"),
  10216. name: "Back",
  10217. image: {
  10218. source: "./media/characters/amelia-rosie/back.svg",
  10219. extra: 1113 / 963,
  10220. bottom: 0.01
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Level 0",
  10227. height: math.unit(5 + 4 / 12, "feet")
  10228. },
  10229. {
  10230. name: "Level 1",
  10231. height: math.unit(164597, "feet"),
  10232. default: true
  10233. },
  10234. {
  10235. name: "Level 2",
  10236. height: math.unit(956243, "miles")
  10237. },
  10238. {
  10239. name: "Level 3",
  10240. height: math.unit(29421709423, "miles")
  10241. },
  10242. {
  10243. name: "Level 4",
  10244. height: math.unit(154, "lightyears")
  10245. },
  10246. {
  10247. name: "Level 5",
  10248. height: math.unit(4738272, "lightyears")
  10249. },
  10250. {
  10251. name: "Level 6",
  10252. height: math.unit(145787152896, "lightyears")
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(5 + 11 / 12, "feet"),
  10261. weight: math.unit(65, "kg"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/rook-kitara/front.svg",
  10265. extra: 1347 / 1274,
  10266. bottom: 0.005
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Totally Unfair",
  10273. height: math.unit(1.8, "mm")
  10274. },
  10275. {
  10276. name: "Lap Rookie",
  10277. height: math.unit(1.4, "feet")
  10278. },
  10279. {
  10280. name: "Normal",
  10281. height: math.unit(5 + 11 / 12, "feet"),
  10282. default: true
  10283. },
  10284. {
  10285. name: "How Did This Happen",
  10286. height: math.unit(80, "miles")
  10287. }
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(7, "feet"),
  10295. weight: math.unit(300, "lb"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/pisces/front.svg",
  10299. extra: 2255 / 2115,
  10300. bottom: 0.03
  10301. }
  10302. },
  10303. back: {
  10304. height: math.unit(7, "feet"),
  10305. weight: math.unit(300, "lb"),
  10306. name: "Back",
  10307. image: {
  10308. source: "./media/characters/pisces/back.svg",
  10309. extra: 2146 / 2055,
  10310. bottom: 0.04
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Normal",
  10317. height: math.unit(7, "feet"),
  10318. default: true
  10319. },
  10320. {
  10321. name: "Swimming Pool",
  10322. height: math.unit(12.2, "meters")
  10323. },
  10324. {
  10325. name: "Olympic Swimming Pool",
  10326. height: math.unit(56.3, "meters")
  10327. },
  10328. {
  10329. name: "Lake Superior",
  10330. height: math.unit(93900, "meters")
  10331. },
  10332. {
  10333. name: "Mediterranean Sea",
  10334. height: math.unit(644457, "meters")
  10335. },
  10336. {
  10337. name: "World's Oceans",
  10338. height: math.unit(4567491, "meters")
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10344. {
  10345. front: {
  10346. height: math.unit(2.3, "meters"),
  10347. weight: math.unit(120, "kg"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/zelas/front.svg"
  10351. }
  10352. },
  10353. side: {
  10354. height: math.unit(2.3, "meters"),
  10355. weight: math.unit(120, "kg"),
  10356. name: "Side",
  10357. image: {
  10358. source: "./media/characters/zelas/side.svg"
  10359. }
  10360. },
  10361. back: {
  10362. height: math.unit(2.3, "meters"),
  10363. weight: math.unit(120, "kg"),
  10364. name: "Back",
  10365. image: {
  10366. source: "./media/characters/zelas/back.svg"
  10367. }
  10368. },
  10369. foot: {
  10370. height: math.unit(1.116, "feet"),
  10371. name: "Foot",
  10372. image: {
  10373. source: "./media/characters/zelas/foot.svg"
  10374. }
  10375. },
  10376. },
  10377. [
  10378. {
  10379. name: "Normal",
  10380. height: math.unit(2.3, "meters")
  10381. },
  10382. {
  10383. name: "Macro",
  10384. height: math.unit(30, "meters"),
  10385. default: true
  10386. },
  10387. ]
  10388. ))
  10389. characterMakers.push(() => makeCharacter(
  10390. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10391. {
  10392. front: {
  10393. height: math.unit(1, "inch"),
  10394. weight: math.unit(0.21, "grams"),
  10395. name: "Front",
  10396. image: {
  10397. source: "./media/characters/talbot/front.svg",
  10398. extra: 594 / 544
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Micro",
  10405. height: math.unit(1, "inch"),
  10406. default: true
  10407. },
  10408. ]
  10409. ))
  10410. characterMakers.push(() => makeCharacter(
  10411. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10412. {
  10413. front: {
  10414. height: math.unit(3 + 3 / 12, "feet"),
  10415. weight: math.unit(51.8, "lb"),
  10416. name: "Front",
  10417. image: {
  10418. source: "./media/characters/fliss/front.svg",
  10419. extra: 840 / 640
  10420. }
  10421. },
  10422. },
  10423. [
  10424. {
  10425. name: "Teeny Tiny",
  10426. height: math.unit(1, "mm")
  10427. },
  10428. {
  10429. name: "Small",
  10430. height: math.unit(1, "inch"),
  10431. default: true
  10432. },
  10433. {
  10434. name: "Standard Sylveon",
  10435. height: math.unit(3 + 3 / 12, "feet")
  10436. },
  10437. {
  10438. name: "Large Nuisance",
  10439. height: math.unit(33, "feet")
  10440. },
  10441. {
  10442. name: "City Filler",
  10443. height: math.unit(3000, "feet")
  10444. },
  10445. {
  10446. name: "New Horizon",
  10447. height: math.unit(6000, "miles")
  10448. },
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10453. {
  10454. front: {
  10455. height: math.unit(5, "cm"),
  10456. weight: math.unit(1.94, "g"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/fleta/front.svg",
  10460. extra: 835 / 803
  10461. }
  10462. },
  10463. back: {
  10464. height: math.unit(5, "cm"),
  10465. weight: math.unit(1.94, "g"),
  10466. name: "Back",
  10467. image: {
  10468. source: "./media/characters/fleta/back.svg",
  10469. extra: 835 / 803
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Micro",
  10476. height: math.unit(5, "cm"),
  10477. default: true
  10478. },
  10479. ]
  10480. ))
  10481. characterMakers.push(() => makeCharacter(
  10482. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10483. {
  10484. front: {
  10485. height: math.unit(6, "feet"),
  10486. weight: math.unit(225, "lb"),
  10487. name: "Front",
  10488. image: {
  10489. source: "./media/characters/dominic/front.svg",
  10490. extra: 1770 / 1620,
  10491. bottom: 0.025
  10492. }
  10493. },
  10494. back: {
  10495. height: math.unit(6, "feet"),
  10496. weight: math.unit(225, "lb"),
  10497. name: "Back",
  10498. image: {
  10499. source: "./media/characters/dominic/back.svg",
  10500. extra: 1745 / 1620,
  10501. bottom: 0.065
  10502. }
  10503. },
  10504. },
  10505. [
  10506. {
  10507. name: "Nano",
  10508. height: math.unit(0.1, "mm")
  10509. },
  10510. {
  10511. name: "Micro-",
  10512. height: math.unit(1, "mm")
  10513. },
  10514. {
  10515. name: "Micro",
  10516. height: math.unit(4, "inches")
  10517. },
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(6 + 4 / 12, "feet"),
  10521. default: true
  10522. },
  10523. {
  10524. name: "Macro",
  10525. height: math.unit(115, "feet")
  10526. },
  10527. {
  10528. name: "Macro+",
  10529. height: math.unit(955, "feet")
  10530. },
  10531. {
  10532. name: "Megamacro",
  10533. height: math.unit(8990, "feet")
  10534. },
  10535. {
  10536. name: "Gigmacro",
  10537. height: math.unit(9310, "miles")
  10538. },
  10539. {
  10540. name: "Teramacro",
  10541. height: math.unit(1567005010, "miles")
  10542. },
  10543. {
  10544. name: "Examacro",
  10545. height: math.unit(1425, "parsecs")
  10546. },
  10547. ]
  10548. ))
  10549. characterMakers.push(() => makeCharacter(
  10550. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10551. {
  10552. front: {
  10553. height: math.unit(400, "feet"),
  10554. weight: math.unit(44444444, "lb"),
  10555. name: "Front",
  10556. image: {
  10557. source: "./media/characters/major-colonel/front.svg"
  10558. }
  10559. },
  10560. back: {
  10561. height: math.unit(400, "feet"),
  10562. weight: math.unit(44444444, "lb"),
  10563. name: "Back",
  10564. image: {
  10565. source: "./media/characters/major-colonel/back.svg"
  10566. }
  10567. },
  10568. },
  10569. [
  10570. {
  10571. name: "Macro",
  10572. height: math.unit(400, "feet"),
  10573. default: true
  10574. },
  10575. ]
  10576. ))
  10577. characterMakers.push(() => makeCharacter(
  10578. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10579. {
  10580. catFront: {
  10581. height: math.unit(6, "feet"),
  10582. weight: math.unit(120, "lb"),
  10583. name: "Front (Cat Side)",
  10584. image: {
  10585. source: "./media/characters/axel-lycan/cat-front.svg",
  10586. extra: 430 / 402,
  10587. bottom: 43 / 472.35
  10588. }
  10589. },
  10590. catBack: {
  10591. height: math.unit(6, "feet"),
  10592. weight: math.unit(120, "lb"),
  10593. name: "Back (Cat Side)",
  10594. image: {
  10595. source: "./media/characters/axel-lycan/cat-back.svg",
  10596. extra: 447 / 419,
  10597. bottom: 23.3 / 469
  10598. }
  10599. },
  10600. wolfFront: {
  10601. height: math.unit(6, "feet"),
  10602. weight: math.unit(120, "lb"),
  10603. name: "Front (Wolf Side)",
  10604. image: {
  10605. source: "./media/characters/axel-lycan/wolf-front.svg",
  10606. extra: 485 / 456,
  10607. bottom: 19 / 504
  10608. }
  10609. },
  10610. wolfBack: {
  10611. height: math.unit(6, "feet"),
  10612. weight: math.unit(120, "lb"),
  10613. name: "Back (Wolf Side)",
  10614. image: {
  10615. source: "./media/characters/axel-lycan/wolf-back.svg",
  10616. extra: 475 / 438,
  10617. bottom: 39.2 / 514
  10618. }
  10619. },
  10620. },
  10621. [
  10622. {
  10623. name: "Macro",
  10624. height: math.unit(1, "km"),
  10625. default: true
  10626. },
  10627. ]
  10628. ))
  10629. characterMakers.push(() => makeCharacter(
  10630. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10631. {
  10632. front: {
  10633. height: math.unit(5 + 9 / 12, "feet"),
  10634. weight: math.unit(175, "lb"),
  10635. name: "Front",
  10636. image: {
  10637. source: "./media/characters/vanrel-hyena/front.svg",
  10638. extra: 1086 / 1010,
  10639. bottom: 0.04
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Normal",
  10646. height: math.unit(5 + 9 / 12, "feet"),
  10647. default: true
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10653. {
  10654. front: {
  10655. height: math.unit(6, "feet"),
  10656. weight: math.unit(103, "lb"),
  10657. name: "Front",
  10658. image: {
  10659. source: "./media/characters/abbott-absol/front.svg",
  10660. extra: 2010 / 1842
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Megamicro",
  10667. height: math.unit(0.1, "mm")
  10668. },
  10669. {
  10670. name: "Micro",
  10671. height: math.unit(1, "inch")
  10672. },
  10673. {
  10674. name: "Normal",
  10675. height: math.unit(6, "feet"),
  10676. default: true
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10682. {
  10683. front: {
  10684. height: math.unit(6, "feet"),
  10685. weight: math.unit(264, "lb"),
  10686. name: "Front",
  10687. image: {
  10688. source: "./media/characters/hector/front.svg",
  10689. extra: 2280 / 2130,
  10690. bottom: 0.07
  10691. }
  10692. },
  10693. },
  10694. [
  10695. {
  10696. name: "Normal",
  10697. height: math.unit(12.25, "foot"),
  10698. default: true
  10699. },
  10700. {
  10701. name: "Macro",
  10702. height: math.unit(160, "feet")
  10703. },
  10704. ]
  10705. ))
  10706. characterMakers.push(() => makeCharacter(
  10707. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10708. {
  10709. front: {
  10710. height: math.unit(6, "feet"),
  10711. weight: math.unit(150, "lb"),
  10712. name: "Front",
  10713. image: {
  10714. source: "./media/characters/sal/front.svg",
  10715. extra: 1846 / 1699,
  10716. bottom: 0.04
  10717. }
  10718. },
  10719. },
  10720. [
  10721. {
  10722. name: "Megamacro",
  10723. height: math.unit(10, "miles"),
  10724. default: true
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10730. {
  10731. front: {
  10732. height: math.unit(3, "meters"),
  10733. weight: math.unit(450, "kg"),
  10734. name: "front",
  10735. image: {
  10736. source: "./media/characters/ranger/front.svg",
  10737. extra: 2401 / 2243,
  10738. bottom: 0.05
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Normal",
  10745. height: math.unit(3, "meters"),
  10746. default: true
  10747. },
  10748. ]
  10749. ))
  10750. characterMakers.push(() => makeCharacter(
  10751. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10752. {
  10753. front: {
  10754. height: math.unit(14, "feet"),
  10755. weight: math.unit(800, "kg"),
  10756. name: "Front",
  10757. image: {
  10758. source: "./media/characters/theresa/front.svg",
  10759. extra: 3575 / 3346,
  10760. bottom: 0.03
  10761. }
  10762. },
  10763. },
  10764. [
  10765. {
  10766. name: "Normal",
  10767. height: math.unit(14, "feet"),
  10768. default: true
  10769. },
  10770. ]
  10771. ))
  10772. characterMakers.push(() => makeCharacter(
  10773. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10774. {
  10775. front: {
  10776. height: math.unit(6, "feet"),
  10777. weight: math.unit(3, "kg"),
  10778. name: "Front",
  10779. image: {
  10780. source: "./media/characters/ine/front.svg",
  10781. extra: 678 / 539,
  10782. bottom: 0.023
  10783. }
  10784. },
  10785. },
  10786. [
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(2.265, "feet"),
  10790. default: true
  10791. },
  10792. ]
  10793. ))
  10794. characterMakers.push(() => makeCharacter(
  10795. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10796. {
  10797. front: {
  10798. height: math.unit(5, "feet"),
  10799. weight: math.unit(30, "kg"),
  10800. name: "Front",
  10801. image: {
  10802. source: "./media/characters/vial/front.svg",
  10803. extra: 1365 / 1277,
  10804. bottom: 0.04
  10805. }
  10806. },
  10807. },
  10808. [
  10809. {
  10810. name: "Normal",
  10811. height: math.unit(5, "feet"),
  10812. default: true
  10813. },
  10814. ]
  10815. ))
  10816. characterMakers.push(() => makeCharacter(
  10817. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10818. {
  10819. side: {
  10820. height: math.unit(3.4, "meters"),
  10821. weight: math.unit(1000, "lb"),
  10822. name: "Side",
  10823. image: {
  10824. source: "./media/characters/rovoska/side.svg",
  10825. extra: 4403 / 1515
  10826. }
  10827. },
  10828. },
  10829. [
  10830. {
  10831. name: "Normal",
  10832. height: math.unit(3.4, "meters"),
  10833. default: true
  10834. },
  10835. ]
  10836. ))
  10837. characterMakers.push(() => makeCharacter(
  10838. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10839. {
  10840. front: {
  10841. height: math.unit(8, "feet"),
  10842. weight: math.unit(315, "lb"),
  10843. name: "Front",
  10844. image: {
  10845. source: "./media/characters/gunner-rotthbauer/front.svg"
  10846. }
  10847. },
  10848. back: {
  10849. height: math.unit(8, "feet"),
  10850. weight: math.unit(315, "lb"),
  10851. name: "Back",
  10852. image: {
  10853. source: "./media/characters/gunner-rotthbauer/back.svg"
  10854. }
  10855. },
  10856. },
  10857. [
  10858. {
  10859. name: "Micro",
  10860. height: math.unit(3.5, "inches")
  10861. },
  10862. {
  10863. name: "Normal",
  10864. height: math.unit(8, "feet"),
  10865. default: true
  10866. },
  10867. {
  10868. name: "Macro",
  10869. height: math.unit(250, "feet")
  10870. },
  10871. {
  10872. name: "Megamacro",
  10873. height: math.unit(1, "AU")
  10874. },
  10875. ]
  10876. ))
  10877. characterMakers.push(() => makeCharacter(
  10878. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10879. {
  10880. front: {
  10881. height: math.unit(5 + 5 / 12, "feet"),
  10882. weight: math.unit(140, "lb"),
  10883. name: "Front",
  10884. image: {
  10885. source: "./media/characters/allatia/front.svg",
  10886. extra: 1227 / 1180,
  10887. bottom: 0.027
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(5 + 5 / 12, "feet")
  10895. },
  10896. {
  10897. name: "Macro",
  10898. height: math.unit(250, "feet"),
  10899. default: true
  10900. },
  10901. {
  10902. name: "Megamacro",
  10903. height: math.unit(8, "miles")
  10904. }
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10909. {
  10910. front: {
  10911. height: math.unit(6, "feet"),
  10912. weight: math.unit(120, "lb"),
  10913. name: "Front",
  10914. image: {
  10915. source: "./media/characters/tene/front.svg",
  10916. extra: 814/750,
  10917. bottom: 36/850
  10918. }
  10919. },
  10920. stomping: {
  10921. height: math.unit(2.025, "meters"),
  10922. weight: math.unit(120, "lb"),
  10923. name: "Stomping",
  10924. image: {
  10925. source: "./media/characters/tene/stomping.svg",
  10926. extra: 885/821,
  10927. bottom: 15/900
  10928. }
  10929. },
  10930. sitting: {
  10931. height: math.unit(1, "meter"),
  10932. weight: math.unit(120, "lb"),
  10933. name: "Sitting",
  10934. image: {
  10935. source: "./media/characters/tene/sitting.svg",
  10936. extra: 396/366,
  10937. bottom: 79/475
  10938. }
  10939. },
  10940. smiling: {
  10941. height: math.unit(1.2, "feet"),
  10942. name: "Smiling",
  10943. image: {
  10944. source: "./media/characters/tene/smiling.svg",
  10945. extra: 1364/1071,
  10946. bottom: 0/1364
  10947. }
  10948. },
  10949. smug: {
  10950. height: math.unit(1.3, "feet"),
  10951. name: "Smug",
  10952. image: {
  10953. source: "./media/characters/tene/smug.svg",
  10954. extra: 1323/1082,
  10955. bottom: 0/1323
  10956. }
  10957. },
  10958. feral: {
  10959. height: math.unit(3.9, "feet"),
  10960. weight: math.unit(250, "lb"),
  10961. name: "Feral",
  10962. image: {
  10963. source: "./media/characters/tene/feral.svg",
  10964. extra: 717 / 458,
  10965. bottom: 0.179
  10966. }
  10967. },
  10968. },
  10969. [
  10970. {
  10971. name: "Normal",
  10972. height: math.unit(6, "feet")
  10973. },
  10974. {
  10975. name: "Macro",
  10976. height: math.unit(300, "feet"),
  10977. default: true
  10978. },
  10979. {
  10980. name: "Megamacro",
  10981. height: math.unit(5, "miles")
  10982. },
  10983. ]
  10984. ))
  10985. characterMakers.push(() => makeCharacter(
  10986. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10987. {
  10988. side: {
  10989. height: math.unit(6, "feet"),
  10990. name: "Side",
  10991. image: {
  10992. source: "./media/characters/evander/side.svg",
  10993. extra: 877 / 477
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(0.83, "meters"),
  11001. default: true
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11007. {
  11008. front: {
  11009. height: math.unit(12, "feet"),
  11010. weight: math.unit(1000, "lb"),
  11011. name: "Front",
  11012. image: {
  11013. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11014. extra: 1762 / 1611
  11015. }
  11016. },
  11017. back: {
  11018. height: math.unit(12, "feet"),
  11019. weight: math.unit(1000, "lb"),
  11020. name: "Back",
  11021. image: {
  11022. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11023. extra: 1762 / 1611
  11024. }
  11025. },
  11026. },
  11027. [
  11028. {
  11029. name: "Normal",
  11030. height: math.unit(12, "feet"),
  11031. default: true
  11032. },
  11033. {
  11034. name: "Kaiju",
  11035. height: math.unit(150, "feet")
  11036. },
  11037. ]
  11038. ))
  11039. characterMakers.push(() => makeCharacter(
  11040. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11041. {
  11042. front: {
  11043. height: math.unit(6, "feet"),
  11044. weight: math.unit(150, "lb"),
  11045. name: "Front",
  11046. image: {
  11047. source: "./media/characters/zero-alurus/front.svg"
  11048. }
  11049. },
  11050. back: {
  11051. height: math.unit(6, "feet"),
  11052. weight: math.unit(150, "lb"),
  11053. name: "Back",
  11054. image: {
  11055. source: "./media/characters/zero-alurus/back.svg"
  11056. }
  11057. },
  11058. },
  11059. [
  11060. {
  11061. name: "Normal",
  11062. height: math.unit(5 + 10 / 12, "feet")
  11063. },
  11064. {
  11065. name: "Macro",
  11066. height: math.unit(60, "feet"),
  11067. default: true
  11068. },
  11069. {
  11070. name: "Macro+",
  11071. height: math.unit(450, "feet")
  11072. },
  11073. ]
  11074. ))
  11075. characterMakers.push(() => makeCharacter(
  11076. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11077. {
  11078. front: {
  11079. height: math.unit(6, "feet"),
  11080. weight: math.unit(200, "lb"),
  11081. name: "Front",
  11082. image: {
  11083. source: "./media/characters/mega-shi/front.svg",
  11084. extra: 1279 / 1250,
  11085. bottom: 0.02
  11086. }
  11087. },
  11088. back: {
  11089. height: math.unit(6, "feet"),
  11090. weight: math.unit(200, "lb"),
  11091. name: "Back",
  11092. image: {
  11093. source: "./media/characters/mega-shi/back.svg",
  11094. extra: 1279 / 1250,
  11095. bottom: 0.02
  11096. }
  11097. },
  11098. },
  11099. [
  11100. {
  11101. name: "Micro",
  11102. height: math.unit(16 + 6 / 12, "feet")
  11103. },
  11104. {
  11105. name: "Third Dimension",
  11106. height: math.unit(40, "meters")
  11107. },
  11108. {
  11109. name: "Normal",
  11110. height: math.unit(660, "feet"),
  11111. default: true
  11112. },
  11113. {
  11114. name: "Megamacro",
  11115. height: math.unit(10, "miles")
  11116. },
  11117. {
  11118. name: "Planetary Launch",
  11119. height: math.unit(500, "miles")
  11120. },
  11121. {
  11122. name: "Interstellar",
  11123. height: math.unit(1e9, "miles")
  11124. },
  11125. {
  11126. name: "Leaving the Universe",
  11127. height: math.unit(1, "gigaparsec")
  11128. },
  11129. {
  11130. name: "Travelling Universes",
  11131. height: math.unit(30e15, "parsecs")
  11132. },
  11133. ]
  11134. ))
  11135. characterMakers.push(() => makeCharacter(
  11136. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11137. {
  11138. front: {
  11139. height: math.unit(5 + 4/12, "feet"),
  11140. weight: math.unit(120, "lb"),
  11141. name: "Front",
  11142. image: {
  11143. source: "./media/characters/odyssey/front.svg",
  11144. extra: 1747/1571,
  11145. bottom: 47/1794
  11146. }
  11147. },
  11148. side: {
  11149. height: math.unit(5.1, "feet"),
  11150. weight: math.unit(120, "lb"),
  11151. name: "Side",
  11152. image: {
  11153. source: "./media/characters/odyssey/side.svg",
  11154. extra: 1847/1619,
  11155. bottom: 47/1894
  11156. }
  11157. },
  11158. lounging: {
  11159. height: math.unit(1.464, "feet"),
  11160. weight: math.unit(120, "lb"),
  11161. name: "Lounging",
  11162. image: {
  11163. source: "./media/characters/odyssey/lounging.svg",
  11164. extra: 1235/837,
  11165. bottom: 551/1786
  11166. }
  11167. },
  11168. },
  11169. [
  11170. {
  11171. name: "Normal",
  11172. height: math.unit(5 + 4 / 12, "feet")
  11173. },
  11174. {
  11175. name: "Macro",
  11176. height: math.unit(1, "km")
  11177. },
  11178. {
  11179. name: "Megamacro",
  11180. height: math.unit(3000, "km")
  11181. },
  11182. {
  11183. name: "Gigamacro",
  11184. height: math.unit(1, "AU"),
  11185. default: true
  11186. },
  11187. {
  11188. name: "Omniversal",
  11189. height: math.unit(100e14, "lightyears")
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11195. {
  11196. front: {
  11197. height: math.unit(5 + 10/12, "feet"),
  11198. name: "Front",
  11199. image: {
  11200. source: "./media/characters/mekuto/front.svg",
  11201. extra: 875/835,
  11202. bottom: 46/921
  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 + 10 / 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. preyCapacity: math.unit(50, "m^3"),
  30686. weight: math.unit(30, "tonnes"),
  30687. name: "Front",
  30688. image: {
  30689. source: "./media/characters/sydney/front.svg",
  30690. extra: 1177/1129,
  30691. bottom: 197/1374
  30692. },
  30693. extraAttributes: {
  30694. "length": {
  30695. name: "Length",
  30696. power: 1,
  30697. type: "length",
  30698. base: math.unit(21, "meters")
  30699. },
  30700. }
  30701. },
  30702. },
  30703. [
  30704. {
  30705. name: "Normal",
  30706. height: math.unit(4.2, "meters"),
  30707. default: true
  30708. },
  30709. ]
  30710. ))
  30711. characterMakers.push(() => makeCharacter(
  30712. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30713. {
  30714. back: {
  30715. height: math.unit(201, "feet"),
  30716. name: "Back",
  30717. image: {
  30718. source: "./media/characters/jessica/back.svg",
  30719. extra: 273 / 259,
  30720. bottom: 7 / 280
  30721. }
  30722. },
  30723. },
  30724. [
  30725. {
  30726. name: "Normal",
  30727. height: math.unit(201, "feet"),
  30728. default: true
  30729. },
  30730. {
  30731. name: "Megamacro",
  30732. height: math.unit(8, "miles")
  30733. },
  30734. ]
  30735. ))
  30736. characterMakers.push(() => makeCharacter(
  30737. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30738. {
  30739. side: {
  30740. height: math.unit(5.6, "m"),
  30741. weight: math.unit(8000, "kg"),
  30742. name: "Side",
  30743. image: {
  30744. source: "./media/characters/victoria/side.svg",
  30745. extra: 1542/1229,
  30746. bottom: 124/1666
  30747. }
  30748. },
  30749. maw: {
  30750. height: math.unit(7.14, "feet"),
  30751. name: "Maw",
  30752. image: {
  30753. source: "./media/characters/victoria/maw.svg"
  30754. }
  30755. },
  30756. },
  30757. [
  30758. {
  30759. name: "Normal",
  30760. height: math.unit(5.6, "m"),
  30761. default: true
  30762. },
  30763. ]
  30764. ))
  30765. characterMakers.push(() => makeCharacter(
  30766. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30767. {
  30768. front: {
  30769. height: math.unit(5 + 6 / 12, "feet"),
  30770. name: "Front",
  30771. image: {
  30772. source: "./media/characters/cat/front.svg",
  30773. extra: 1449/1295,
  30774. bottom: 34/1483
  30775. },
  30776. form: "cat",
  30777. default: true
  30778. },
  30779. back: {
  30780. height: math.unit(5 + 6 / 12, "feet"),
  30781. name: "Back",
  30782. image: {
  30783. source: "./media/characters/cat/back.svg",
  30784. extra: 1466/1301,
  30785. bottom: 19/1485
  30786. },
  30787. form: "cat"
  30788. },
  30789. taur: {
  30790. height: math.unit(7, "feet"),
  30791. name: "Taur",
  30792. image: {
  30793. source: "./media/characters/cat/taur.svg",
  30794. extra: 1389/1233,
  30795. bottom: 83/1472
  30796. },
  30797. form: "taur",
  30798. default: true
  30799. },
  30800. lucarioFront: {
  30801. height: math.unit(4, "feet"),
  30802. name: "Lucario (Front)",
  30803. image: {
  30804. source: "./media/characters/cat/lucario-front.svg",
  30805. extra: 1149/1019,
  30806. bottom: 84/1233
  30807. },
  30808. form: "lucario",
  30809. default: true
  30810. },
  30811. lucarioBack: {
  30812. height: math.unit(4, "feet"),
  30813. name: "Lucario (Back)",
  30814. image: {
  30815. source: "./media/characters/cat/lucario-back.svg",
  30816. extra: 1190/1059,
  30817. bottom: 33/1223
  30818. },
  30819. form: "lucario"
  30820. },
  30821. megaLucario: {
  30822. height: math.unit(4, "feet"),
  30823. name: "Mega Lucario",
  30824. image: {
  30825. source: "./media/characters/cat/mega-lucario.svg",
  30826. extra: 1515 / 1319,
  30827. bottom: 63 / 1578
  30828. },
  30829. form: "lucario"
  30830. },
  30831. nickit: {
  30832. height: math.unit(2, "feet"),
  30833. name: "Nickit",
  30834. image: {
  30835. source: "./media/characters/cat/nickit.svg",
  30836. extra: 1980 / 1585,
  30837. bottom: 102 / 2082
  30838. },
  30839. form: "nickit",
  30840. default: true
  30841. },
  30842. lopunnyFront: {
  30843. height: math.unit(5, "feet"),
  30844. name: "Lopunny (Front)",
  30845. image: {
  30846. source: "./media/characters/cat/lopunny-front.svg",
  30847. extra: 1782 / 1469,
  30848. bottom: 38 / 1820
  30849. },
  30850. form: "lopunny",
  30851. default: true
  30852. },
  30853. lopunnyBack: {
  30854. height: math.unit(5, "feet"),
  30855. name: "Lopunny (Back)",
  30856. image: {
  30857. source: "./media/characters/cat/lopunny-back.svg",
  30858. extra: 1660 / 1490,
  30859. bottom: 25 / 1685
  30860. },
  30861. form: "lopunny"
  30862. },
  30863. },
  30864. [
  30865. {
  30866. name: "Really small",
  30867. height: math.unit(1, "nm")
  30868. },
  30869. {
  30870. name: "Micro",
  30871. height: math.unit(5, "inches")
  30872. },
  30873. {
  30874. name: "Normal",
  30875. height: math.unit(5 + 6 / 12, "feet"),
  30876. default: true
  30877. },
  30878. {
  30879. name: "Macro",
  30880. height: math.unit(50, "feet")
  30881. },
  30882. {
  30883. name: "Macro+",
  30884. height: math.unit(150, "feet")
  30885. },
  30886. {
  30887. name: "Megamacro",
  30888. height: math.unit(100, "miles")
  30889. },
  30890. ]
  30891. ))
  30892. characterMakers.push(() => makeCharacter(
  30893. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30894. {
  30895. front: {
  30896. height: math.unit(63.4, "meters"),
  30897. weight: math.unit(3.28349e+6, "kilograms"),
  30898. name: "Front",
  30899. image: {
  30900. source: "./media/characters/kirina-violet/front.svg",
  30901. extra: 2812 / 2725,
  30902. bottom: 0 / 2812
  30903. }
  30904. },
  30905. back: {
  30906. height: math.unit(63.4, "meters"),
  30907. weight: math.unit(3.28349e+6, "kilograms"),
  30908. name: "Back",
  30909. image: {
  30910. source: "./media/characters/kirina-violet/back.svg",
  30911. extra: 2812 / 2725,
  30912. bottom: 0 / 2812
  30913. }
  30914. },
  30915. mouth: {
  30916. height: math.unit(4.35, "meters"),
  30917. name: "Mouth",
  30918. image: {
  30919. source: "./media/characters/kirina-violet/mouth.svg"
  30920. }
  30921. },
  30922. paw: {
  30923. height: math.unit(5.6, "meters"),
  30924. name: "Paw",
  30925. image: {
  30926. source: "./media/characters/kirina-violet/paw.svg"
  30927. }
  30928. },
  30929. tail: {
  30930. height: math.unit(18, "meters"),
  30931. name: "Tail",
  30932. image: {
  30933. source: "./media/characters/kirina-violet/tail.svg"
  30934. }
  30935. },
  30936. },
  30937. [
  30938. {
  30939. name: "Macro",
  30940. height: math.unit(63.4, "meters"),
  30941. default: true
  30942. },
  30943. ]
  30944. ))
  30945. characterMakers.push(() => makeCharacter(
  30946. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30947. {
  30948. front: {
  30949. height: math.unit(75, "feet"),
  30950. name: "Front",
  30951. image: {
  30952. source: "./media/characters/cat-gigachu/front.svg",
  30953. extra: 1239/1027,
  30954. bottom: 32/1271
  30955. }
  30956. },
  30957. back: {
  30958. height: math.unit(75, "feet"),
  30959. name: "Back",
  30960. image: {
  30961. source: "./media/characters/cat-gigachu/back.svg",
  30962. extra: 1229/1030,
  30963. bottom: 9/1238
  30964. }
  30965. },
  30966. },
  30967. [
  30968. {
  30969. name: "Dynamax",
  30970. height: math.unit(75, "feet"),
  30971. default: true
  30972. },
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30977. {
  30978. front: {
  30979. height: math.unit(6, "feet"),
  30980. weight: math.unit(150, "lb"),
  30981. name: "Front",
  30982. image: {
  30983. source: "./media/characters/sfaiyan/front.svg",
  30984. extra: 999 / 978,
  30985. bottom: 5 / 1004
  30986. }
  30987. },
  30988. },
  30989. [
  30990. {
  30991. name: "Normal",
  30992. height: math.unit(1.82, "meters")
  30993. },
  30994. {
  30995. name: "Giant",
  30996. height: math.unit(2.27, "km"),
  30997. default: true
  30998. },
  30999. ]
  31000. ))
  31001. characterMakers.push(() => makeCharacter(
  31002. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31003. {
  31004. front: {
  31005. height: math.unit(179, "cm"),
  31006. weight: math.unit(100, "kg"),
  31007. name: "Front",
  31008. image: {
  31009. source: "./media/characters/raunehkeli/front.svg",
  31010. extra: 1934 / 1926,
  31011. bottom: 0 / 1934
  31012. }
  31013. },
  31014. },
  31015. [
  31016. {
  31017. name: "Normal",
  31018. height: math.unit(179, "cm")
  31019. },
  31020. {
  31021. name: "Maximum",
  31022. height: math.unit(575, "meters"),
  31023. default: true
  31024. },
  31025. ]
  31026. ))
  31027. characterMakers.push(() => makeCharacter(
  31028. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31029. {
  31030. front: {
  31031. height: math.unit(6, "feet"),
  31032. weight: math.unit(150, "lb"),
  31033. name: "Front",
  31034. image: {
  31035. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31036. extra: 2625 / 2518,
  31037. bottom: 60 / 2685
  31038. }
  31039. },
  31040. },
  31041. [
  31042. {
  31043. name: "Normal",
  31044. height: math.unit(6 + 2 / 12, "feet")
  31045. },
  31046. {
  31047. name: "Macro",
  31048. height: math.unit(1180, "feet"),
  31049. default: true
  31050. },
  31051. ]
  31052. ))
  31053. characterMakers.push(() => makeCharacter(
  31054. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31055. {
  31056. front: {
  31057. height: math.unit(5 + 6 / 12, "feet"),
  31058. weight: math.unit(108, "lb"),
  31059. name: "Front",
  31060. image: {
  31061. source: "./media/characters/lilith-zott/front.svg",
  31062. extra: 2510 / 2238,
  31063. bottom: 100 / 2610
  31064. }
  31065. },
  31066. frontDressed: {
  31067. height: math.unit(5 + 6 / 12, "feet"),
  31068. weight: math.unit(108, "lb"),
  31069. name: "Front (Dressed)",
  31070. image: {
  31071. source: "./media/characters/lilith-zott/front-dressed.svg",
  31072. extra: 2510 / 2238,
  31073. bottom: 100 / 2610
  31074. }
  31075. },
  31076. },
  31077. [
  31078. {
  31079. name: "Normal",
  31080. height: math.unit(5 + 6 / 12, "feet")
  31081. },
  31082. {
  31083. name: "Macro",
  31084. height: math.unit(1030, "feet"),
  31085. default: true
  31086. },
  31087. ]
  31088. ))
  31089. characterMakers.push(() => makeCharacter(
  31090. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31091. {
  31092. front: {
  31093. height: math.unit(6, "feet"),
  31094. weight: math.unit(150, "lb"),
  31095. name: "Front",
  31096. image: {
  31097. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31098. extra: 2567 / 2435,
  31099. bottom: 39 / 2606
  31100. }
  31101. },
  31102. frontSuper: {
  31103. height: math.unit(6, "feet"),
  31104. name: "Front (Super)",
  31105. image: {
  31106. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31107. extra: 2567 / 2435,
  31108. bottom: 39 / 2606
  31109. }
  31110. },
  31111. },
  31112. [
  31113. {
  31114. name: "Normal",
  31115. height: math.unit(5 + 10 / 12, "feet")
  31116. },
  31117. {
  31118. name: "Macro",
  31119. height: math.unit(1100, "feet"),
  31120. default: true
  31121. },
  31122. ]
  31123. ))
  31124. characterMakers.push(() => makeCharacter(
  31125. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31126. {
  31127. front: {
  31128. height: math.unit(100, "miles"),
  31129. name: "Front",
  31130. image: {
  31131. source: "./media/characters/sona/front.svg",
  31132. extra: 2433 / 2201,
  31133. bottom: 53 / 2486
  31134. }
  31135. },
  31136. foot: {
  31137. height: math.unit(16.1, "miles"),
  31138. name: "Foot",
  31139. image: {
  31140. source: "./media/characters/sona/foot.svg"
  31141. }
  31142. },
  31143. },
  31144. [
  31145. {
  31146. name: "Macro",
  31147. height: math.unit(100, "miles"),
  31148. default: true
  31149. },
  31150. ]
  31151. ))
  31152. characterMakers.push(() => makeCharacter(
  31153. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31154. {
  31155. front: {
  31156. height: math.unit(6, "feet"),
  31157. weight: math.unit(150, "lb"),
  31158. name: "Front",
  31159. image: {
  31160. source: "./media/characters/bailey/front.svg",
  31161. extra: 1778 / 1724,
  31162. bottom: 30 / 1808
  31163. }
  31164. },
  31165. },
  31166. [
  31167. {
  31168. name: "Micro",
  31169. height: math.unit(4, "inches")
  31170. },
  31171. {
  31172. name: "Normal",
  31173. height: math.unit(5 + 5 / 12, "feet"),
  31174. default: true
  31175. },
  31176. {
  31177. name: "Macro",
  31178. height: math.unit(250, "feet")
  31179. },
  31180. {
  31181. name: "Megamacro",
  31182. height: math.unit(100, "miles")
  31183. },
  31184. ]
  31185. ))
  31186. characterMakers.push(() => makeCharacter(
  31187. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31188. {
  31189. front: {
  31190. height: math.unit(5 + 2 / 12, "feet"),
  31191. weight: math.unit(120, "lb"),
  31192. name: "Front",
  31193. image: {
  31194. source: "./media/characters/snaps/front.svg",
  31195. extra: 2370 / 2177,
  31196. bottom: 48 / 2418
  31197. }
  31198. },
  31199. back: {
  31200. height: math.unit(5 + 2 / 12, "feet"),
  31201. weight: math.unit(120, "lb"),
  31202. name: "Back",
  31203. image: {
  31204. source: "./media/characters/snaps/back.svg",
  31205. extra: 2408 / 2258,
  31206. bottom: 15 / 2423
  31207. }
  31208. },
  31209. },
  31210. [
  31211. {
  31212. name: "Micro",
  31213. height: math.unit(9, "inches")
  31214. },
  31215. {
  31216. name: "Normal",
  31217. height: math.unit(5 + 2 / 12, "feet"),
  31218. default: true
  31219. },
  31220. {
  31221. name: "Mini Macro",
  31222. height: math.unit(10, "feet")
  31223. },
  31224. ]
  31225. ))
  31226. characterMakers.push(() => makeCharacter(
  31227. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31228. {
  31229. front: {
  31230. height: math.unit(1.8, "meters"),
  31231. weight: math.unit(85, "kg"),
  31232. name: "Front",
  31233. image: {
  31234. source: "./media/characters/azteck/front.svg",
  31235. extra: 2815 / 2625,
  31236. bottom: 89 / 2904
  31237. }
  31238. },
  31239. back: {
  31240. height: math.unit(1.8, "meters"),
  31241. weight: math.unit(85, "kg"),
  31242. name: "Back",
  31243. image: {
  31244. source: "./media/characters/azteck/back.svg",
  31245. extra: 2856 / 2648,
  31246. bottom: 85 / 2941
  31247. }
  31248. },
  31249. frontDressed: {
  31250. height: math.unit(1.8, "meters"),
  31251. weight: math.unit(85, "kg"),
  31252. name: "Front (Dressed)",
  31253. image: {
  31254. source: "./media/characters/azteck/front-dressed.svg",
  31255. extra: 2147 / 2003,
  31256. bottom: 68 / 2215
  31257. }
  31258. },
  31259. head: {
  31260. height: math.unit(0.47, "meters"),
  31261. weight: math.unit(85, "kg"),
  31262. name: "Head",
  31263. image: {
  31264. source: "./media/characters/azteck/head.svg"
  31265. }
  31266. },
  31267. },
  31268. [
  31269. {
  31270. name: "Bite sized",
  31271. height: math.unit(16, "cm")
  31272. },
  31273. {
  31274. name: "Normal",
  31275. height: math.unit(1.8, "meters"),
  31276. default: true
  31277. },
  31278. ]
  31279. ))
  31280. characterMakers.push(() => makeCharacter(
  31281. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31282. {
  31283. front: {
  31284. height: math.unit(6, "feet"),
  31285. weight: math.unit(150, "lb"),
  31286. name: "Front",
  31287. image: {
  31288. source: "./media/characters/pidge/front.svg",
  31289. extra: 1936/1820,
  31290. bottom: 0/1936
  31291. }
  31292. },
  31293. back: {
  31294. height: math.unit(6, "feet"),
  31295. weight: math.unit(150, "lb"),
  31296. name: "Back",
  31297. image: {
  31298. source: "./media/characters/pidge/back.svg",
  31299. extra: 1938/1843,
  31300. bottom: 0/1938
  31301. }
  31302. },
  31303. casual: {
  31304. height: math.unit(6, "feet"),
  31305. weight: math.unit(150, "lb"),
  31306. name: "Casual",
  31307. image: {
  31308. source: "./media/characters/pidge/casual.svg",
  31309. extra: 1936/1820,
  31310. bottom: 0/1936
  31311. }
  31312. },
  31313. tech: {
  31314. height: math.unit(6, "feet"),
  31315. weight: math.unit(150, "lb"),
  31316. name: "Tech",
  31317. image: {
  31318. source: "./media/characters/pidge/tech.svg",
  31319. extra: 1802/1682,
  31320. bottom: 0/1802
  31321. }
  31322. },
  31323. head: {
  31324. height: math.unit(1.61, "feet"),
  31325. name: "Head",
  31326. image: {
  31327. source: "./media/characters/pidge/head.svg"
  31328. }
  31329. },
  31330. collar: {
  31331. height: math.unit(0.82, "feet"),
  31332. name: "Collar",
  31333. image: {
  31334. source: "./media/characters/pidge/collar.svg"
  31335. }
  31336. },
  31337. },
  31338. [
  31339. {
  31340. name: "Macro",
  31341. height: math.unit(2, "mile"),
  31342. default: true
  31343. },
  31344. {
  31345. name: "PUPPY",
  31346. height: math.unit(20, "miles")
  31347. },
  31348. ]
  31349. ))
  31350. characterMakers.push(() => makeCharacter(
  31351. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31352. {
  31353. front: {
  31354. height: math.unit(6, "feet"),
  31355. weight: math.unit(150, "lb"),
  31356. name: "Front",
  31357. image: {
  31358. source: "./media/characters/en/front.svg",
  31359. extra: 1697 / 1563,
  31360. bottom: 103 / 1800
  31361. }
  31362. },
  31363. back: {
  31364. height: math.unit(6, "feet"),
  31365. weight: math.unit(150, "lb"),
  31366. name: "Back",
  31367. image: {
  31368. source: "./media/characters/en/back.svg",
  31369. extra: 1700 / 1570,
  31370. bottom: 51 / 1751
  31371. }
  31372. },
  31373. frontDressed: {
  31374. height: math.unit(6, "feet"),
  31375. weight: math.unit(150, "lb"),
  31376. name: "Front (Dressed)",
  31377. image: {
  31378. source: "./media/characters/en/front-dressed.svg",
  31379. extra: 1697 / 1563,
  31380. bottom: 103 / 1800
  31381. }
  31382. },
  31383. backDressed: {
  31384. height: math.unit(6, "feet"),
  31385. weight: math.unit(150, "lb"),
  31386. name: "Back (Dressed)",
  31387. image: {
  31388. source: "./media/characters/en/back-dressed.svg",
  31389. extra: 1700 / 1570,
  31390. bottom: 51 / 1751
  31391. }
  31392. },
  31393. },
  31394. [
  31395. {
  31396. name: "Macro",
  31397. height: math.unit(210, "feet"),
  31398. default: true
  31399. },
  31400. ]
  31401. ))
  31402. characterMakers.push(() => makeCharacter(
  31403. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31404. {
  31405. front: {
  31406. height: math.unit(6, "feet"),
  31407. weight: math.unit(150, "lb"),
  31408. name: "Front",
  31409. image: {
  31410. source: "./media/characters/haze-orris/front.svg",
  31411. extra: 3975 / 3525,
  31412. bottom: 137 / 4112
  31413. }
  31414. },
  31415. },
  31416. [
  31417. {
  31418. name: "Micro",
  31419. height: math.unit(150, "mm"),
  31420. default: true
  31421. },
  31422. ]
  31423. ))
  31424. characterMakers.push(() => makeCharacter(
  31425. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31426. {
  31427. front: {
  31428. height: math.unit(6, "feet"),
  31429. weight: math.unit(150, "lb"),
  31430. name: "Front",
  31431. image: {
  31432. source: "./media/characters/casselene-yaro/front.svg",
  31433. extra: 4721 / 4541,
  31434. bottom: 82 / 4803
  31435. }
  31436. },
  31437. back: {
  31438. height: math.unit(6, "feet"),
  31439. weight: math.unit(150, "lb"),
  31440. name: "Back",
  31441. image: {
  31442. source: "./media/characters/casselene-yaro/back.svg",
  31443. extra: 4569 / 4377,
  31444. bottom: 69 / 4638
  31445. }
  31446. },
  31447. dressed: {
  31448. height: math.unit(6, "feet"),
  31449. weight: math.unit(150, "lb"),
  31450. name: "Dressed",
  31451. image: {
  31452. source: "./media/characters/casselene-yaro/dressed.svg",
  31453. extra: 4721 / 4541,
  31454. bottom: 82 / 4803
  31455. }
  31456. },
  31457. maw: {
  31458. height: math.unit(1, "feet"),
  31459. name: "Maw",
  31460. image: {
  31461. source: "./media/characters/casselene-yaro/maw.svg"
  31462. }
  31463. },
  31464. },
  31465. [
  31466. {
  31467. name: "Macro",
  31468. height: math.unit(190, "feet"),
  31469. default: true
  31470. },
  31471. ]
  31472. ))
  31473. characterMakers.push(() => makeCharacter(
  31474. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31475. {
  31476. front: {
  31477. height: math.unit(10, "feet"),
  31478. weight: math.unit(15015, "lb"),
  31479. name: "Front",
  31480. image: {
  31481. source: "./media/characters/platine/front.svg",
  31482. extra: 1741/1650,
  31483. bottom: 84/1825
  31484. }
  31485. },
  31486. side: {
  31487. height: math.unit(10, "feet"),
  31488. weight: math.unit(15015, "lb"),
  31489. name: "Side",
  31490. image: {
  31491. source: "./media/characters/platine/side.svg",
  31492. extra: 1790/1705,
  31493. bottom: 29/1819
  31494. }
  31495. },
  31496. },
  31497. [
  31498. {
  31499. name: "Normal",
  31500. height: math.unit(10, "feet"),
  31501. default: true
  31502. },
  31503. {
  31504. name: "Macro",
  31505. height: math.unit(100, "feet")
  31506. },
  31507. {
  31508. name: "Megamacro",
  31509. height: math.unit(1000, "feet")
  31510. },
  31511. ]
  31512. ))
  31513. characterMakers.push(() => makeCharacter(
  31514. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31515. {
  31516. front: {
  31517. height: math.unit(15 + 5 / 12, "feet"),
  31518. weight: math.unit(4600, "lb"),
  31519. name: "Front",
  31520. image: {
  31521. source: "./media/characters/neapolitan-ananassa/front.svg",
  31522. extra: 2903 / 2736,
  31523. bottom: 0 / 2903
  31524. }
  31525. },
  31526. side: {
  31527. height: math.unit(15 + 5 / 12, "feet"),
  31528. weight: math.unit(4600, "lb"),
  31529. name: "Side",
  31530. image: {
  31531. source: "./media/characters/neapolitan-ananassa/side.svg",
  31532. extra: 2925 / 2719,
  31533. bottom: 0 / 2925
  31534. }
  31535. },
  31536. back: {
  31537. height: math.unit(15 + 5 / 12, "feet"),
  31538. weight: math.unit(4600, "lb"),
  31539. name: "Back",
  31540. image: {
  31541. source: "./media/characters/neapolitan-ananassa/back.svg",
  31542. extra: 2903 / 2736,
  31543. bottom: 0 / 2903
  31544. }
  31545. },
  31546. },
  31547. [
  31548. {
  31549. name: "Normal",
  31550. height: math.unit(15 + 5 / 12, "feet"),
  31551. default: true
  31552. },
  31553. {
  31554. name: "Post-Millenium",
  31555. height: math.unit(35 + 5 / 12, "feet")
  31556. },
  31557. {
  31558. name: "Post-Era",
  31559. height: math.unit(450 + 5 / 12, "feet")
  31560. },
  31561. ]
  31562. ))
  31563. characterMakers.push(() => makeCharacter(
  31564. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31565. {
  31566. front: {
  31567. height: math.unit(300, "meters"),
  31568. weight: math.unit(125000, "tonnes"),
  31569. name: "Front",
  31570. image: {
  31571. source: "./media/characters/pazuzu/front.svg",
  31572. extra: 877 / 794,
  31573. bottom: 47 / 924
  31574. }
  31575. },
  31576. },
  31577. [
  31578. {
  31579. name: "Macro",
  31580. height: math.unit(300, "meters"),
  31581. default: true
  31582. },
  31583. ]
  31584. ))
  31585. characterMakers.push(() => makeCharacter(
  31586. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31587. {
  31588. side: {
  31589. height: math.unit(10 + 7 / 12, "feet"),
  31590. weight: math.unit(2.5, "tons"),
  31591. name: "Side",
  31592. image: {
  31593. source: "./media/characters/aasha/side.svg",
  31594. extra: 1345 / 1245,
  31595. bottom: 111 / 1456
  31596. }
  31597. },
  31598. back: {
  31599. height: math.unit(10 + 7 / 12, "feet"),
  31600. weight: math.unit(2.5, "tons"),
  31601. name: "Back",
  31602. image: {
  31603. source: "./media/characters/aasha/back.svg",
  31604. extra: 1133 / 1057,
  31605. bottom: 257 / 1390
  31606. }
  31607. },
  31608. },
  31609. [
  31610. {
  31611. name: "Normal",
  31612. height: math.unit(10 + 7 / 12, "feet"),
  31613. default: true
  31614. },
  31615. ]
  31616. ))
  31617. characterMakers.push(() => makeCharacter(
  31618. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31619. {
  31620. front: {
  31621. height: math.unit(6 + 3 / 12, "feet"),
  31622. name: "Front",
  31623. image: {
  31624. source: "./media/characters/nevan/front.svg",
  31625. extra: 704 / 704,
  31626. bottom: 28 / 732
  31627. }
  31628. },
  31629. back: {
  31630. height: math.unit(6 + 3 / 12, "feet"),
  31631. name: "Back",
  31632. image: {
  31633. source: "./media/characters/nevan/back.svg",
  31634. extra: 714 / 714,
  31635. bottom: 21 / 735
  31636. }
  31637. },
  31638. frontFlaccid: {
  31639. height: math.unit(6 + 3 / 12, "feet"),
  31640. name: "Front (Flaccid)",
  31641. image: {
  31642. source: "./media/characters/nevan/front-flaccid.svg",
  31643. extra: 704 / 704,
  31644. bottom: 28 / 732
  31645. }
  31646. },
  31647. frontErect: {
  31648. height: math.unit(6 + 3 / 12, "feet"),
  31649. name: "Front (Erect)",
  31650. image: {
  31651. source: "./media/characters/nevan/front-erect.svg",
  31652. extra: 704 / 704,
  31653. bottom: 28 / 732
  31654. }
  31655. },
  31656. backFlaccid: {
  31657. height: math.unit(6 + 3 / 12, "feet"),
  31658. name: "Back (Flaccid)",
  31659. image: {
  31660. source: "./media/characters/nevan/back-flaccid.svg",
  31661. extra: 714 / 714,
  31662. bottom: 21 / 735
  31663. }
  31664. },
  31665. },
  31666. [
  31667. {
  31668. name: "Normal",
  31669. height: math.unit(6 + 3 / 12, "feet"),
  31670. default: true
  31671. },
  31672. ]
  31673. ))
  31674. characterMakers.push(() => makeCharacter(
  31675. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31676. {
  31677. front: {
  31678. height: math.unit(4, "feet"),
  31679. name: "Front",
  31680. image: {
  31681. source: "./media/characters/arhan/front.svg",
  31682. extra: 3368 / 3133,
  31683. bottom: 0 / 3368
  31684. }
  31685. },
  31686. side: {
  31687. height: math.unit(4, "feet"),
  31688. name: "Side",
  31689. image: {
  31690. source: "./media/characters/arhan/side.svg",
  31691. extra: 3347 / 3105,
  31692. bottom: 0 / 3347
  31693. }
  31694. },
  31695. tongue: {
  31696. height: math.unit(1.42, "feet"),
  31697. name: "Tongue",
  31698. image: {
  31699. source: "./media/characters/arhan/tongue.svg"
  31700. }
  31701. },
  31702. head: {
  31703. height: math.unit(0.85, "feet"),
  31704. name: "Head",
  31705. image: {
  31706. source: "./media/characters/arhan/head.svg"
  31707. }
  31708. },
  31709. },
  31710. [
  31711. {
  31712. name: "Normal",
  31713. height: math.unit(4, "feet"),
  31714. default: true
  31715. },
  31716. ]
  31717. ))
  31718. characterMakers.push(() => makeCharacter(
  31719. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31720. {
  31721. front: {
  31722. height: math.unit(5 + 7.5 / 12, "feet"),
  31723. weight: math.unit(120, "lb"),
  31724. name: "Front",
  31725. image: {
  31726. source: "./media/characters/digi-duncan/front.svg",
  31727. extra: 330 / 326,
  31728. bottom: 16 / 346
  31729. }
  31730. },
  31731. side: {
  31732. height: math.unit(5 + 7.5 / 12, "feet"),
  31733. weight: math.unit(120, "lb"),
  31734. name: "Side",
  31735. image: {
  31736. source: "./media/characters/digi-duncan/side.svg",
  31737. extra: 341 / 337,
  31738. bottom: 1 / 342
  31739. }
  31740. },
  31741. back: {
  31742. height: math.unit(5 + 7.5 / 12, "feet"),
  31743. weight: math.unit(120, "lb"),
  31744. name: "Back",
  31745. image: {
  31746. source: "./media/characters/digi-duncan/back.svg",
  31747. extra: 330 / 326,
  31748. bottom: 12 / 342
  31749. }
  31750. },
  31751. },
  31752. [
  31753. {
  31754. name: "Speck",
  31755. height: math.unit(0.25, "mm")
  31756. },
  31757. {
  31758. name: "Micro",
  31759. height: math.unit(5, "mm")
  31760. },
  31761. {
  31762. name: "Tiny",
  31763. height: math.unit(0.5, "inches"),
  31764. default: true
  31765. },
  31766. {
  31767. name: "Human",
  31768. height: math.unit(5 + 7.5 / 12, "feet")
  31769. },
  31770. {
  31771. name: "Minigiant",
  31772. height: math.unit(8 + 5.25, "feet")
  31773. },
  31774. {
  31775. name: "Giant",
  31776. height: math.unit(2000, "feet")
  31777. },
  31778. {
  31779. name: "Mega",
  31780. height: math.unit(371.1, "miles")
  31781. },
  31782. ]
  31783. ))
  31784. characterMakers.push(() => makeCharacter(
  31785. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31786. {
  31787. front: {
  31788. height: math.unit(2, "meters"),
  31789. weight: math.unit(350, "kg"),
  31790. name: "Front",
  31791. image: {
  31792. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31793. extra: 898 / 838,
  31794. bottom: 9 / 907
  31795. }
  31796. },
  31797. },
  31798. [
  31799. {
  31800. name: "Micro",
  31801. height: math.unit(8, "meters")
  31802. },
  31803. {
  31804. name: "Normal",
  31805. height: math.unit(50, "meters"),
  31806. default: true
  31807. },
  31808. {
  31809. name: "Macro",
  31810. height: math.unit(500, "meters")
  31811. },
  31812. ]
  31813. ))
  31814. characterMakers.push(() => makeCharacter(
  31815. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31816. {
  31817. front: {
  31818. height: math.unit(6 + 6 / 12, "feet"),
  31819. name: "Front",
  31820. image: {
  31821. source: "./media/characters/khardesh/front.svg",
  31822. extra: 1788/1596,
  31823. bottom: 66/1854
  31824. }
  31825. },
  31826. back: {
  31827. height: math.unit(6 + 6 / 12, "feet"),
  31828. name: "Back",
  31829. image: {
  31830. source: "./media/characters/khardesh/back.svg",
  31831. extra: 1781/1584,
  31832. bottom: 68/1849
  31833. }
  31834. },
  31835. },
  31836. [
  31837. {
  31838. name: "Normal",
  31839. height: math.unit(6 + 6 / 12, "feet"),
  31840. default: true
  31841. },
  31842. {
  31843. name: "Normal+",
  31844. height: math.unit(4, "meters")
  31845. },
  31846. {
  31847. name: "Macro",
  31848. height: math.unit(50, "meters")
  31849. },
  31850. {
  31851. name: "Macro+",
  31852. height: math.unit(100, "meters")
  31853. },
  31854. {
  31855. name: "Megamacro",
  31856. height: math.unit(20, "km")
  31857. },
  31858. ]
  31859. ))
  31860. characterMakers.push(() => makeCharacter(
  31861. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31862. {
  31863. front: {
  31864. height: math.unit(6, "feet"),
  31865. weight: math.unit(150, "lb"),
  31866. name: "Front",
  31867. image: {
  31868. source: "./media/characters/kosho/front.svg",
  31869. extra: 1847 / 1847,
  31870. bottom: 86 / 1933
  31871. }
  31872. },
  31873. },
  31874. [
  31875. {
  31876. name: "Second-stage micro",
  31877. height: math.unit(0.5, "inches")
  31878. },
  31879. {
  31880. name: "First-stage micro",
  31881. height: math.unit(6, "inches")
  31882. },
  31883. {
  31884. name: "Normal",
  31885. height: math.unit(6, "feet"),
  31886. default: true
  31887. },
  31888. {
  31889. name: "First-stage macro",
  31890. height: math.unit(72, "feet")
  31891. },
  31892. {
  31893. name: "Second-stage macro",
  31894. height: math.unit(864, "feet")
  31895. },
  31896. ]
  31897. ))
  31898. characterMakers.push(() => makeCharacter(
  31899. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31900. {
  31901. normal: {
  31902. height: math.unit(4 + 6 / 12, "feet"),
  31903. name: "Normal",
  31904. image: {
  31905. source: "./media/characters/hydra/normal.svg",
  31906. extra: 2833 / 2634,
  31907. bottom: 68 / 2901
  31908. }
  31909. },
  31910. smol: {
  31911. height: math.unit(0.705, "inches"),
  31912. name: "Smol",
  31913. image: {
  31914. source: "./media/characters/hydra/smol.svg",
  31915. extra: 2715 / 2540,
  31916. bottom: 0 / 2715
  31917. }
  31918. },
  31919. },
  31920. [
  31921. {
  31922. name: "Normal",
  31923. height: math.unit(4 + 6 / 12, "feet"),
  31924. default: true
  31925. }
  31926. ]
  31927. ))
  31928. characterMakers.push(() => makeCharacter(
  31929. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31930. {
  31931. front: {
  31932. height: math.unit(0.6, "cm"),
  31933. name: "Front",
  31934. image: {
  31935. source: "./media/characters/daz/front.svg",
  31936. extra: 1682 / 1164,
  31937. bottom: 42 / 1724
  31938. }
  31939. },
  31940. },
  31941. [
  31942. {
  31943. name: "Normal",
  31944. height: math.unit(0.6, "cm"),
  31945. default: true
  31946. },
  31947. ]
  31948. ))
  31949. characterMakers.push(() => makeCharacter(
  31950. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31951. {
  31952. front: {
  31953. height: math.unit(6, "feet"),
  31954. weight: math.unit(235, "lb"),
  31955. name: "Front",
  31956. image: {
  31957. source: "./media/characters/theo-pangolin/front.svg",
  31958. extra: 1996 / 1969,
  31959. bottom: 115 / 2111
  31960. }
  31961. },
  31962. back: {
  31963. height: math.unit(6, "feet"),
  31964. weight: math.unit(235, "lb"),
  31965. name: "Back",
  31966. image: {
  31967. source: "./media/characters/theo-pangolin/back.svg",
  31968. extra: 1979 / 1979,
  31969. bottom: 40 / 2019
  31970. }
  31971. },
  31972. feral: {
  31973. height: math.unit(2, "feet"),
  31974. weight: math.unit(30, "lb"),
  31975. name: "Feral",
  31976. image: {
  31977. source: "./media/characters/theo-pangolin/feral.svg",
  31978. extra: 803 / 791,
  31979. bottom: 181 / 984
  31980. }
  31981. },
  31982. footFive: {
  31983. height: math.unit(1.43, "feet"),
  31984. name: "Foot (Five Toes)",
  31985. image: {
  31986. source: "./media/characters/theo-pangolin/foot-five.svg"
  31987. }
  31988. },
  31989. footFour: {
  31990. height: math.unit(1.43, "feet"),
  31991. name: "Foot (Four Toes)",
  31992. image: {
  31993. source: "./media/characters/theo-pangolin/foot-four.svg"
  31994. }
  31995. },
  31996. handFour: {
  31997. height: math.unit(0.81, "feet"),
  31998. name: "Hand (Four Fingers)",
  31999. image: {
  32000. source: "./media/characters/theo-pangolin/hand-four.svg"
  32001. }
  32002. },
  32003. handThree: {
  32004. height: math.unit(0.81, "feet"),
  32005. name: "Hand (Three Fingers)",
  32006. image: {
  32007. source: "./media/characters/theo-pangolin/hand-three.svg"
  32008. }
  32009. },
  32010. headFront: {
  32011. height: math.unit(1.37, "feet"),
  32012. name: "Head (Front)",
  32013. image: {
  32014. source: "./media/characters/theo-pangolin/head-front.svg"
  32015. }
  32016. },
  32017. headSide: {
  32018. height: math.unit(1.43, "feet"),
  32019. name: "Head (Side)",
  32020. image: {
  32021. source: "./media/characters/theo-pangolin/head-side.svg"
  32022. }
  32023. },
  32024. tongue: {
  32025. height: math.unit(2.29, "feet"),
  32026. name: "Tongue",
  32027. image: {
  32028. source: "./media/characters/theo-pangolin/tongue.svg"
  32029. }
  32030. },
  32031. },
  32032. [
  32033. {
  32034. name: "Normal",
  32035. height: math.unit(6, "feet")
  32036. },
  32037. {
  32038. name: "Macro",
  32039. height: math.unit(400, "feet"),
  32040. default: true
  32041. },
  32042. ]
  32043. ))
  32044. characterMakers.push(() => makeCharacter(
  32045. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32046. {
  32047. front: {
  32048. height: math.unit(6, "inches"),
  32049. weight: math.unit(0.036, "kg"),
  32050. name: "Front",
  32051. image: {
  32052. source: "./media/characters/renée/front.svg",
  32053. extra: 900 / 886,
  32054. bottom: 8 / 908
  32055. }
  32056. },
  32057. },
  32058. [
  32059. {
  32060. name: "Nano",
  32061. height: math.unit(1, "nm")
  32062. },
  32063. {
  32064. name: "Micro",
  32065. height: math.unit(1, "mm")
  32066. },
  32067. {
  32068. name: "Normal",
  32069. height: math.unit(6, "inches")
  32070. },
  32071. {
  32072. name: "Macro",
  32073. height: math.unit(2000, "feet"),
  32074. default: true
  32075. },
  32076. {
  32077. name: "Megamacro",
  32078. height: math.unit(2, "km")
  32079. },
  32080. {
  32081. name: "Gigamacro",
  32082. height: math.unit(2000, "km")
  32083. },
  32084. {
  32085. name: "Teramacro",
  32086. height: math.unit(250000, "km")
  32087. },
  32088. ]
  32089. ))
  32090. characterMakers.push(() => makeCharacter(
  32091. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32092. {
  32093. front: {
  32094. height: math.unit(4, "meters"),
  32095. weight: math.unit(150, "kg"),
  32096. name: "Front",
  32097. image: {
  32098. source: "./media/characters/caledvwlch/front.svg",
  32099. extra: 1757/1537,
  32100. bottom: 31/1788
  32101. }
  32102. },
  32103. side: {
  32104. height: math.unit(4, "meters"),
  32105. weight: math.unit(150, "kg"),
  32106. name: "Side",
  32107. image: {
  32108. source: "./media/characters/caledvwlch/side.svg",
  32109. extra: 1605 / 1536,
  32110. bottom: 31 / 1636
  32111. }
  32112. },
  32113. back: {
  32114. height: math.unit(4, "meters"),
  32115. weight: math.unit(150, "kg"),
  32116. name: "Back",
  32117. image: {
  32118. source: "./media/characters/caledvwlch/back.svg",
  32119. extra: 1635 / 1565,
  32120. bottom: 27 / 1662
  32121. }
  32122. },
  32123. },
  32124. [
  32125. {
  32126. name: "\"Incognito\"",
  32127. height: math.unit(4, "meters")
  32128. },
  32129. {
  32130. name: "Small rampage",
  32131. height: math.unit(600, "meters")
  32132. },
  32133. {
  32134. name: "Mega",
  32135. height: math.unit(30, "km")
  32136. },
  32137. {
  32138. name: "Home-size",
  32139. height: math.unit(50, "km"),
  32140. default: true
  32141. },
  32142. {
  32143. name: "Giga",
  32144. height: math.unit(300, "km")
  32145. },
  32146. {
  32147. name: "Lounging",
  32148. height: math.unit(11000, "km")
  32149. },
  32150. {
  32151. name: "Planet snacking",
  32152. height: math.unit(2000000, "km")
  32153. },
  32154. ]
  32155. ))
  32156. characterMakers.push(() => makeCharacter(
  32157. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32158. {
  32159. front: {
  32160. height: math.unit(6, "feet"),
  32161. weight: math.unit(215, "lb"),
  32162. name: "Front",
  32163. image: {
  32164. source: "./media/characters/sapphire-svell/front.svg",
  32165. extra: 495 / 455,
  32166. bottom: 20 / 515
  32167. }
  32168. },
  32169. back: {
  32170. height: math.unit(6, "feet"),
  32171. weight: math.unit(216, "lb"),
  32172. name: "Back",
  32173. image: {
  32174. source: "./media/characters/sapphire-svell/back.svg",
  32175. extra: 497 / 477,
  32176. bottom: 7 / 504
  32177. }
  32178. },
  32179. maw: {
  32180. height: math.unit(1.57, "feet"),
  32181. name: "Maw",
  32182. image: {
  32183. source: "./media/characters/sapphire-svell/maw.svg"
  32184. }
  32185. },
  32186. foot: {
  32187. height: math.unit(1.07, "feet"),
  32188. name: "Foot",
  32189. image: {
  32190. source: "./media/characters/sapphire-svell/foot.svg"
  32191. }
  32192. },
  32193. toering: {
  32194. height: math.unit(1.7, "inch"),
  32195. name: "Toering",
  32196. image: {
  32197. source: "./media/characters/sapphire-svell/toering.svg"
  32198. }
  32199. },
  32200. },
  32201. [
  32202. {
  32203. name: "Normal",
  32204. height: math.unit(300, "feet"),
  32205. default: true
  32206. },
  32207. {
  32208. name: "Augmented",
  32209. height: math.unit(1250, "feet")
  32210. },
  32211. {
  32212. name: "Unleashed",
  32213. height: math.unit(3000, "feet")
  32214. },
  32215. ]
  32216. ))
  32217. characterMakers.push(() => makeCharacter(
  32218. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32219. {
  32220. side: {
  32221. height: math.unit(2 + 3 / 12, "feet"),
  32222. weight: math.unit(110, "lb"),
  32223. name: "Side",
  32224. image: {
  32225. source: "./media/characters/glitch-flux/side.svg",
  32226. extra: 997 / 805,
  32227. bottom: 20 / 1017
  32228. }
  32229. },
  32230. },
  32231. [
  32232. {
  32233. name: "Normal",
  32234. height: math.unit(2 + 3 / 12, "feet"),
  32235. default: true
  32236. },
  32237. ]
  32238. ))
  32239. characterMakers.push(() => makeCharacter(
  32240. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32241. {
  32242. front: {
  32243. height: math.unit(4, "meters"),
  32244. name: "Front",
  32245. image: {
  32246. source: "./media/characters/mid/front.svg",
  32247. extra: 507 / 476,
  32248. bottom: 17 / 524
  32249. }
  32250. },
  32251. back: {
  32252. height: math.unit(4, "meters"),
  32253. name: "Back",
  32254. image: {
  32255. source: "./media/characters/mid/back.svg",
  32256. extra: 519 / 487,
  32257. bottom: 7 / 526
  32258. }
  32259. },
  32260. stuck: {
  32261. height: math.unit(2.2, "meters"),
  32262. name: "Stuck",
  32263. image: {
  32264. source: "./media/characters/mid/stuck.svg",
  32265. extra: 1951 / 1869,
  32266. bottom: 88 / 2039
  32267. }
  32268. }
  32269. },
  32270. [
  32271. {
  32272. name: "Normal",
  32273. height: math.unit(4, "meters"),
  32274. default: true
  32275. },
  32276. {
  32277. name: "Big",
  32278. height: math.unit(10, "meters")
  32279. },
  32280. {
  32281. name: "Macro",
  32282. height: math.unit(800, "meters")
  32283. },
  32284. {
  32285. name: "Megamacro",
  32286. height: math.unit(100, "km")
  32287. },
  32288. {
  32289. name: "Overgrown",
  32290. height: math.unit(1, "parsec")
  32291. },
  32292. ]
  32293. ))
  32294. characterMakers.push(() => makeCharacter(
  32295. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32296. {
  32297. front: {
  32298. height: math.unit(2.5, "meters"),
  32299. weight: math.unit(225, "kg"),
  32300. name: "Front",
  32301. image: {
  32302. source: "./media/characters/iris/front.svg",
  32303. extra: 3348 / 3251,
  32304. bottom: 205 / 3553
  32305. }
  32306. },
  32307. maw: {
  32308. height: math.unit(0.56, "meter"),
  32309. name: "Maw",
  32310. image: {
  32311. source: "./media/characters/iris/maw.svg"
  32312. }
  32313. },
  32314. },
  32315. [
  32316. {
  32317. name: "Mewter cat",
  32318. height: math.unit(1.2, "meters")
  32319. },
  32320. {
  32321. name: "Normal",
  32322. height: math.unit(2.5, "meters"),
  32323. default: true
  32324. },
  32325. {
  32326. name: "Minimacro",
  32327. height: math.unit(18, "feet")
  32328. },
  32329. {
  32330. name: "Macro",
  32331. height: math.unit(140, "feet")
  32332. },
  32333. {
  32334. name: "Macro+",
  32335. height: math.unit(180, "meters")
  32336. },
  32337. {
  32338. name: "Megamacro",
  32339. height: math.unit(2746, "meters")
  32340. },
  32341. ]
  32342. ))
  32343. characterMakers.push(() => makeCharacter(
  32344. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32345. {
  32346. front: {
  32347. height: math.unit(6, "feet"),
  32348. weight: math.unit(135, "lb"),
  32349. name: "Front",
  32350. image: {
  32351. source: "./media/characters/axel/front.svg",
  32352. extra: 908 / 908,
  32353. bottom: 58 / 966
  32354. }
  32355. },
  32356. side: {
  32357. height: math.unit(6, "feet"),
  32358. weight: math.unit(135, "lb"),
  32359. name: "Side",
  32360. image: {
  32361. source: "./media/characters/axel/side.svg",
  32362. extra: 958 / 958,
  32363. bottom: 11 / 969
  32364. }
  32365. },
  32366. back: {
  32367. height: math.unit(6, "feet"),
  32368. weight: math.unit(135, "lb"),
  32369. name: "Back",
  32370. image: {
  32371. source: "./media/characters/axel/back.svg",
  32372. extra: 887 / 887,
  32373. bottom: 34 / 921
  32374. }
  32375. },
  32376. head: {
  32377. height: math.unit(1.07, "feet"),
  32378. name: "Head",
  32379. image: {
  32380. source: "./media/characters/axel/head.svg"
  32381. }
  32382. },
  32383. beak: {
  32384. height: math.unit(1.4, "feet"),
  32385. name: "Beak",
  32386. image: {
  32387. source: "./media/characters/axel/beak.svg"
  32388. }
  32389. },
  32390. beakSide: {
  32391. height: math.unit(1.4, "feet"),
  32392. name: "Beak Side",
  32393. image: {
  32394. source: "./media/characters/axel/beak-side.svg"
  32395. }
  32396. },
  32397. sheath: {
  32398. height: math.unit(0.5, "feet"),
  32399. name: "Sheath",
  32400. image: {
  32401. source: "./media/characters/axel/sheath.svg"
  32402. }
  32403. },
  32404. dick: {
  32405. height: math.unit(0.98, "feet"),
  32406. name: "Dick",
  32407. image: {
  32408. source: "./media/characters/axel/dick.svg"
  32409. }
  32410. },
  32411. },
  32412. [
  32413. {
  32414. name: "Macro",
  32415. height: math.unit(68, "meters"),
  32416. default: true
  32417. },
  32418. ]
  32419. ))
  32420. characterMakers.push(() => makeCharacter(
  32421. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32422. {
  32423. front: {
  32424. height: math.unit(3.5, "meters"),
  32425. weight: math.unit(1200, "kg"),
  32426. name: "Front",
  32427. image: {
  32428. source: "./media/characters/joanna/front.svg",
  32429. extra: 1596 / 1488,
  32430. bottom: 29 / 1625
  32431. }
  32432. },
  32433. back: {
  32434. height: math.unit(3.5, "meters"),
  32435. weight: math.unit(1200, "kg"),
  32436. name: "Back",
  32437. image: {
  32438. source: "./media/characters/joanna/back.svg",
  32439. extra: 1594 / 1495,
  32440. bottom: 26 / 1620
  32441. }
  32442. },
  32443. frontShorts: {
  32444. height: math.unit(3.5, "meters"),
  32445. weight: math.unit(1200, "kg"),
  32446. name: "Front (Shorts)",
  32447. image: {
  32448. source: "./media/characters/joanna/front-shorts.svg",
  32449. extra: 1596 / 1488,
  32450. bottom: 29 / 1625
  32451. }
  32452. },
  32453. frontBiker: {
  32454. height: math.unit(3.5, "meters"),
  32455. weight: math.unit(1200, "kg"),
  32456. name: "Front (Biker)",
  32457. image: {
  32458. source: "./media/characters/joanna/front-biker.svg",
  32459. extra: 1596 / 1488,
  32460. bottom: 29 / 1625
  32461. }
  32462. },
  32463. backBiker: {
  32464. height: math.unit(3.5, "meters"),
  32465. weight: math.unit(1200, "kg"),
  32466. name: "Back (Biker)",
  32467. image: {
  32468. source: "./media/characters/joanna/back-biker.svg",
  32469. extra: 1594 / 1495,
  32470. bottom: 88 / 1682
  32471. }
  32472. },
  32473. bikeLeft: {
  32474. height: math.unit(2.4, "meters"),
  32475. weight: math.unit(1600, "kg"),
  32476. name: "Bike (Left)",
  32477. image: {
  32478. source: "./media/characters/joanna/bike-left.svg",
  32479. extra: 720 / 720,
  32480. bottom: 8 / 728
  32481. }
  32482. },
  32483. bikeRight: {
  32484. height: math.unit(2.4, "meters"),
  32485. weight: math.unit(1600, "kg"),
  32486. name: "Bike (Right)",
  32487. image: {
  32488. source: "./media/characters/joanna/bike-right.svg",
  32489. extra: 720 / 720,
  32490. bottom: 8 / 728
  32491. }
  32492. },
  32493. },
  32494. [
  32495. {
  32496. name: "Incognito",
  32497. height: math.unit(3.5, "meters")
  32498. },
  32499. {
  32500. name: "Casual Big",
  32501. height: math.unit(200, "meters")
  32502. },
  32503. {
  32504. name: "Macro",
  32505. height: math.unit(600, "meters")
  32506. },
  32507. {
  32508. name: "Original",
  32509. height: math.unit(20, "km"),
  32510. default: true
  32511. },
  32512. {
  32513. name: "Giga",
  32514. height: math.unit(400, "km")
  32515. },
  32516. {
  32517. name: "Lounging",
  32518. height: math.unit(1500, "km")
  32519. },
  32520. {
  32521. name: "Planetary",
  32522. height: math.unit(200000, "km")
  32523. },
  32524. ]
  32525. ))
  32526. characterMakers.push(() => makeCharacter(
  32527. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32528. {
  32529. front: {
  32530. height: math.unit(6, "feet"),
  32531. weight: math.unit(150, "lb"),
  32532. name: "Front",
  32533. image: {
  32534. source: "./media/characters/hugo-sigil/front.svg",
  32535. extra: 522 / 500,
  32536. bottom: 2 / 524
  32537. }
  32538. },
  32539. back: {
  32540. height: math.unit(6, "feet"),
  32541. weight: math.unit(150, "lb"),
  32542. name: "Back",
  32543. image: {
  32544. source: "./media/characters/hugo-sigil/back.svg",
  32545. extra: 519 / 495,
  32546. bottom: 5 / 524
  32547. }
  32548. },
  32549. maw: {
  32550. height: math.unit(1.4, "feet"),
  32551. weight: math.unit(150, "lb"),
  32552. name: "Maw",
  32553. image: {
  32554. source: "./media/characters/hugo-sigil/maw.svg"
  32555. }
  32556. },
  32557. feet: {
  32558. height: math.unit(1.56, "feet"),
  32559. weight: math.unit(150, "lb"),
  32560. name: "Feet",
  32561. image: {
  32562. source: "./media/characters/hugo-sigil/feet.svg",
  32563. extra: 177 / 177,
  32564. bottom: 12 / 189
  32565. }
  32566. },
  32567. },
  32568. [
  32569. {
  32570. name: "Normal",
  32571. height: math.unit(6, "feet")
  32572. },
  32573. {
  32574. name: "Macro",
  32575. height: math.unit(200, "feet"),
  32576. default: true
  32577. },
  32578. ]
  32579. ))
  32580. characterMakers.push(() => makeCharacter(
  32581. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32582. {
  32583. front: {
  32584. height: math.unit(6, "feet"),
  32585. weight: math.unit(150, "lb"),
  32586. name: "Front",
  32587. image: {
  32588. source: "./media/characters/peri/front.svg",
  32589. extra: 2354 / 2233,
  32590. bottom: 49 / 2403
  32591. }
  32592. },
  32593. },
  32594. [
  32595. {
  32596. name: "Really Small",
  32597. height: math.unit(1, "nm")
  32598. },
  32599. {
  32600. name: "Micro",
  32601. height: math.unit(4, "inches")
  32602. },
  32603. {
  32604. name: "Normal",
  32605. height: math.unit(7, "inches"),
  32606. default: true
  32607. },
  32608. {
  32609. name: "Macro",
  32610. height: math.unit(400, "feet")
  32611. },
  32612. {
  32613. name: "Megamacro",
  32614. height: math.unit(100, "miles")
  32615. },
  32616. ]
  32617. ))
  32618. characterMakers.push(() => makeCharacter(
  32619. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32620. {
  32621. frontSlim: {
  32622. height: math.unit(7, "feet"),
  32623. name: "Front (Slim)",
  32624. image: {
  32625. source: "./media/characters/issilora/front-slim.svg",
  32626. extra: 529 / 449,
  32627. bottom: 53 / 582
  32628. }
  32629. },
  32630. sideSlim: {
  32631. height: math.unit(7, "feet"),
  32632. name: "Side (Slim)",
  32633. image: {
  32634. source: "./media/characters/issilora/side-slim.svg",
  32635. extra: 570 / 480,
  32636. bottom: 30 / 600
  32637. }
  32638. },
  32639. backSlim: {
  32640. height: math.unit(7, "feet"),
  32641. name: "Back (Slim)",
  32642. image: {
  32643. source: "./media/characters/issilora/back-slim.svg",
  32644. extra: 537 / 455,
  32645. bottom: 46 / 583
  32646. }
  32647. },
  32648. frontBuff: {
  32649. height: math.unit(7, "feet"),
  32650. name: "Front (Buff)",
  32651. image: {
  32652. source: "./media/characters/issilora/front-buff.svg",
  32653. extra: 2310 / 2035,
  32654. bottom: 335 / 2645
  32655. }
  32656. },
  32657. head: {
  32658. height: math.unit(1.94, "feet"),
  32659. name: "Head",
  32660. image: {
  32661. source: "./media/characters/issilora/head.svg"
  32662. }
  32663. },
  32664. },
  32665. [
  32666. {
  32667. name: "Minimum",
  32668. height: math.unit(7, "feet")
  32669. },
  32670. {
  32671. name: "Comfortable",
  32672. height: math.unit(17, "feet")
  32673. },
  32674. {
  32675. name: "Fun Size",
  32676. height: math.unit(47, "feet")
  32677. },
  32678. {
  32679. name: "Natural Macro",
  32680. height: math.unit(137, "feet"),
  32681. default: true
  32682. },
  32683. {
  32684. name: "Maximum Kaiju",
  32685. height: math.unit(397, "feet")
  32686. },
  32687. ]
  32688. ))
  32689. characterMakers.push(() => makeCharacter(
  32690. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32691. {
  32692. front: {
  32693. height: math.unit(50 + 9/12, "feet"),
  32694. weight: math.unit(32.8, "tons"),
  32695. name: "Front",
  32696. image: {
  32697. source: "./media/characters/irb'iiritaahn/front.svg",
  32698. extra: 1878/1826,
  32699. bottom: 326/2204
  32700. }
  32701. },
  32702. back: {
  32703. height: math.unit(50 + 9/12, "feet"),
  32704. weight: math.unit(32.8, "tons"),
  32705. name: "Back",
  32706. image: {
  32707. source: "./media/characters/irb'iiritaahn/back.svg",
  32708. extra: 2052/2018,
  32709. bottom: 152/2204
  32710. }
  32711. },
  32712. head: {
  32713. height: math.unit(12.86, "feet"),
  32714. name: "Head",
  32715. image: {
  32716. source: "./media/characters/irb'iiritaahn/head.svg"
  32717. }
  32718. },
  32719. maw: {
  32720. height: math.unit(9.66, "feet"),
  32721. name: "Maw",
  32722. image: {
  32723. source: "./media/characters/irb'iiritaahn/maw.svg"
  32724. }
  32725. },
  32726. frontDick: {
  32727. height: math.unit(8.78461, "feet"),
  32728. name: "Front Dick",
  32729. image: {
  32730. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32731. }
  32732. },
  32733. rearDick: {
  32734. height: math.unit(8.78461, "feet"),
  32735. name: "Rear Dick",
  32736. image: {
  32737. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32738. }
  32739. },
  32740. rearDickUnfolded: {
  32741. height: math.unit(8.78, "feet"),
  32742. name: "Rear Dick (Unfolded)",
  32743. image: {
  32744. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32745. }
  32746. },
  32747. wings: {
  32748. height: math.unit(43, "feet"),
  32749. name: "Wings",
  32750. image: {
  32751. source: "./media/characters/irb'iiritaahn/wings.svg"
  32752. }
  32753. },
  32754. },
  32755. [
  32756. {
  32757. name: "Macro",
  32758. height: math.unit(50 + 9/12, "feet"),
  32759. default: true
  32760. },
  32761. ]
  32762. ))
  32763. characterMakers.push(() => makeCharacter(
  32764. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32765. {
  32766. front: {
  32767. height: math.unit(205, "cm"),
  32768. weight: math.unit(102, "kg"),
  32769. name: "Front",
  32770. image: {
  32771. source: "./media/characters/irbisgreif/front.svg",
  32772. extra: 785/706,
  32773. bottom: 13/798
  32774. }
  32775. },
  32776. back: {
  32777. height: math.unit(205, "cm"),
  32778. weight: math.unit(102, "kg"),
  32779. name: "Back",
  32780. image: {
  32781. source: "./media/characters/irbisgreif/back.svg",
  32782. extra: 713/701,
  32783. bottom: 26/739
  32784. }
  32785. },
  32786. frontDressed: {
  32787. height: math.unit(216, "cm"),
  32788. weight: math.unit(102, "kg"),
  32789. name: "Front-dressed",
  32790. image: {
  32791. source: "./media/characters/irbisgreif/front-dressed.svg",
  32792. extra: 902/776,
  32793. bottom: 14/916
  32794. }
  32795. },
  32796. sideDressed: {
  32797. height: math.unit(195, "cm"),
  32798. weight: math.unit(102, "kg"),
  32799. name: "Side-dressed",
  32800. image: {
  32801. source: "./media/characters/irbisgreif/side-dressed.svg",
  32802. extra: 788/688,
  32803. bottom: 21/809
  32804. }
  32805. },
  32806. backDressed: {
  32807. height: math.unit(216, "cm"),
  32808. weight: math.unit(102, "kg"),
  32809. name: "Back-dressed",
  32810. image: {
  32811. source: "./media/characters/irbisgreif/back-dressed.svg",
  32812. extra: 901/783,
  32813. bottom: 10/911
  32814. }
  32815. },
  32816. dick: {
  32817. height: math.unit(0.49, "feet"),
  32818. name: "Dick",
  32819. image: {
  32820. source: "./media/characters/irbisgreif/dick.svg"
  32821. }
  32822. },
  32823. wingTop: {
  32824. height: math.unit(1.93 , "feet"),
  32825. name: "Wing-top",
  32826. image: {
  32827. source: "./media/characters/irbisgreif/wing-top.svg"
  32828. }
  32829. },
  32830. wingBottom: {
  32831. height: math.unit(1.93 , "feet"),
  32832. name: "Wing-bottom",
  32833. image: {
  32834. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32835. }
  32836. },
  32837. },
  32838. [
  32839. {
  32840. name: "Normal",
  32841. height: math.unit(216, "cm"),
  32842. default: true
  32843. },
  32844. ]
  32845. ))
  32846. characterMakers.push(() => makeCharacter(
  32847. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32848. {
  32849. front: {
  32850. height: math.unit(6, "feet"),
  32851. weight: math.unit(150, "lb"),
  32852. name: "Front",
  32853. image: {
  32854. source: "./media/characters/pride/front.svg",
  32855. extra: 1299/1230,
  32856. bottom: 18/1317
  32857. }
  32858. },
  32859. },
  32860. [
  32861. {
  32862. name: "Normal",
  32863. height: math.unit(7, "feet")
  32864. },
  32865. {
  32866. name: "Mini-macro",
  32867. height: math.unit(11, "feet")
  32868. },
  32869. {
  32870. name: "Macro",
  32871. height: math.unit(15, "meters"),
  32872. default: true
  32873. },
  32874. {
  32875. name: "Macro+",
  32876. height: math.unit(40, "meters")
  32877. },
  32878. ]
  32879. ))
  32880. characterMakers.push(() => makeCharacter(
  32881. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32882. {
  32883. front: {
  32884. height: math.unit(4 + 2 / 12, "feet"),
  32885. weight: math.unit(95, "lb"),
  32886. name: "Front",
  32887. image: {
  32888. source: "./media/characters/vaelophis-nyx/front.svg",
  32889. extra: 2532/2330,
  32890. bottom: 0/2532
  32891. }
  32892. },
  32893. back: {
  32894. height: math.unit(4 + 2 / 12, "feet"),
  32895. weight: math.unit(95, "lb"),
  32896. name: "Back",
  32897. image: {
  32898. source: "./media/characters/vaelophis-nyx/back.svg",
  32899. extra: 2484/2361,
  32900. bottom: 0/2484
  32901. }
  32902. },
  32903. feralSide: {
  32904. height: math.unit(2 + 1/12, "feet"),
  32905. weight: math.unit(20, "lb"),
  32906. name: "Feral (Side)",
  32907. image: {
  32908. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32909. extra: 1721/1581,
  32910. bottom: 70/1791
  32911. }
  32912. },
  32913. feralLazing: {
  32914. height: math.unit(1.08, "feet"),
  32915. weight: math.unit(20, "lb"),
  32916. name: "Feral (Lazing)",
  32917. image: {
  32918. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32919. extra: 822/822,
  32920. bottom: 248/1070
  32921. }
  32922. },
  32923. ear: {
  32924. height: math.unit(0.416, "feet"),
  32925. name: "Ear",
  32926. image: {
  32927. source: "./media/characters/vaelophis-nyx/ear.svg"
  32928. }
  32929. },
  32930. eye: {
  32931. height: math.unit(0.0748, "feet"),
  32932. name: "Eye",
  32933. image: {
  32934. source: "./media/characters/vaelophis-nyx/eye.svg"
  32935. }
  32936. },
  32937. mouth: {
  32938. height: math.unit(0.378, "feet"),
  32939. name: "Mouth",
  32940. image: {
  32941. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32942. }
  32943. },
  32944. spade: {
  32945. height: math.unit(0.55, "feet"),
  32946. name: "Spade",
  32947. image: {
  32948. source: "./media/characters/vaelophis-nyx/spade.svg"
  32949. }
  32950. },
  32951. },
  32952. [
  32953. {
  32954. name: "Normal",
  32955. height: math.unit(4 + 2/12, "feet"),
  32956. default: true
  32957. },
  32958. ]
  32959. ))
  32960. characterMakers.push(() => makeCharacter(
  32961. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32962. {
  32963. front: {
  32964. height: math.unit(7, "feet"),
  32965. weight: math.unit(231, "lb"),
  32966. name: "Front",
  32967. image: {
  32968. source: "./media/characters/flux/front.svg",
  32969. extra: 919/871,
  32970. bottom: 0/919
  32971. }
  32972. },
  32973. back: {
  32974. height: math.unit(7, "feet"),
  32975. weight: math.unit(231, "lb"),
  32976. name: "Back",
  32977. image: {
  32978. source: "./media/characters/flux/back.svg",
  32979. extra: 1040/992,
  32980. bottom: 0/1040
  32981. }
  32982. },
  32983. frontDressed: {
  32984. height: math.unit(7, "feet"),
  32985. weight: math.unit(231, "lb"),
  32986. name: "Front (Dressed)",
  32987. image: {
  32988. source: "./media/characters/flux/front-dressed.svg",
  32989. extra: 919/871,
  32990. bottom: 0/919
  32991. }
  32992. },
  32993. feralSide: {
  32994. height: math.unit(5, "feet"),
  32995. weight: math.unit(150, "lb"),
  32996. name: "Feral (Side)",
  32997. image: {
  32998. source: "./media/characters/flux/feral-side.svg",
  32999. extra: 598/528,
  33000. bottom: 28/626
  33001. }
  33002. },
  33003. head: {
  33004. height: math.unit(1.585, "feet"),
  33005. name: "Head",
  33006. image: {
  33007. source: "./media/characters/flux/head.svg"
  33008. }
  33009. },
  33010. headSide: {
  33011. height: math.unit(1.74, "feet"),
  33012. name: "Head (Side)",
  33013. image: {
  33014. source: "./media/characters/flux/head-side.svg"
  33015. }
  33016. },
  33017. headSideFire: {
  33018. height: math.unit(1.76, "feet"),
  33019. name: "Head (Side, Fire)",
  33020. image: {
  33021. source: "./media/characters/flux/head-side-fire.svg"
  33022. }
  33023. },
  33024. },
  33025. [
  33026. {
  33027. name: "Normal",
  33028. height: math.unit(7, "feet"),
  33029. default: true
  33030. },
  33031. ]
  33032. ))
  33033. characterMakers.push(() => makeCharacter(
  33034. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33035. {
  33036. front: {
  33037. height: math.unit(9, "feet"),
  33038. weight: math.unit(1012, "lb"),
  33039. name: "Front",
  33040. image: {
  33041. source: "./media/characters/ulfra-lupae/front.svg",
  33042. extra: 1083/1011,
  33043. bottom: 67/1150
  33044. }
  33045. },
  33046. },
  33047. [
  33048. {
  33049. name: "Micro",
  33050. height: math.unit(6, "inches")
  33051. },
  33052. {
  33053. name: "Socializing",
  33054. height: math.unit(6 + 5/12, "feet")
  33055. },
  33056. {
  33057. name: "Normal",
  33058. height: math.unit(9, "feet"),
  33059. default: true
  33060. },
  33061. {
  33062. name: "Macro",
  33063. height: math.unit(150, "feet")
  33064. },
  33065. ]
  33066. ))
  33067. characterMakers.push(() => makeCharacter(
  33068. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33069. {
  33070. front: {
  33071. height: math.unit(5 + 2/12, "feet"),
  33072. weight: math.unit(120, "lb"),
  33073. name: "Front",
  33074. image: {
  33075. source: "./media/characters/timber/front.svg",
  33076. extra: 2814/2705,
  33077. bottom: 181/2995
  33078. }
  33079. },
  33080. },
  33081. [
  33082. {
  33083. name: "Normal",
  33084. height: math.unit(5 + 2/12, "feet"),
  33085. default: true
  33086. },
  33087. ]
  33088. ))
  33089. characterMakers.push(() => makeCharacter(
  33090. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33091. {
  33092. front: {
  33093. height: math.unit(9, "feet"),
  33094. name: "Front",
  33095. image: {
  33096. source: "./media/characters/nicki/front.svg",
  33097. extra: 1240/990,
  33098. bottom: 45/1285
  33099. },
  33100. form: "anthro",
  33101. default: true
  33102. },
  33103. side: {
  33104. height: math.unit(9, "feet"),
  33105. name: "Side",
  33106. image: {
  33107. source: "./media/characters/nicki/side.svg",
  33108. extra: 1047/973,
  33109. bottom: 61/1108
  33110. },
  33111. form: "anthro"
  33112. },
  33113. back: {
  33114. height: math.unit(9, "feet"),
  33115. name: "Back",
  33116. image: {
  33117. source: "./media/characters/nicki/back.svg",
  33118. extra: 1006/965,
  33119. bottom: 39/1045
  33120. },
  33121. form: "anthro"
  33122. },
  33123. taur: {
  33124. height: math.unit(15, "feet"),
  33125. name: "Taur",
  33126. image: {
  33127. source: "./media/characters/nicki/taur.svg",
  33128. extra: 1592/1347,
  33129. bottom: 0/1592
  33130. },
  33131. form: "taur",
  33132. default: true
  33133. },
  33134. },
  33135. [
  33136. {
  33137. name: "Normal",
  33138. height: math.unit(9, "feet"),
  33139. form: "anthro",
  33140. default: true
  33141. },
  33142. {
  33143. name: "Normal",
  33144. height: math.unit(15, "feet"),
  33145. form: "taur",
  33146. default: true
  33147. }
  33148. ],
  33149. {
  33150. "anthro": {
  33151. name: "Anthro",
  33152. default: true
  33153. },
  33154. "taur": {
  33155. name: "Taur"
  33156. }
  33157. }
  33158. ))
  33159. characterMakers.push(() => makeCharacter(
  33160. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33161. {
  33162. front: {
  33163. height: math.unit(7 + 10/12, "feet"),
  33164. weight: math.unit(3.5, "tons"),
  33165. name: "Front",
  33166. image: {
  33167. source: "./media/characters/lee/front.svg",
  33168. extra: 1773/1615,
  33169. bottom: 86/1859
  33170. }
  33171. },
  33172. hand: {
  33173. height: math.unit(1.78, "feet"),
  33174. name: "Hand",
  33175. image: {
  33176. source: "./media/characters/lee/hand.svg"
  33177. }
  33178. },
  33179. maw: {
  33180. height: math.unit(1.18, "feet"),
  33181. name: "Maw",
  33182. image: {
  33183. source: "./media/characters/lee/maw.svg"
  33184. }
  33185. },
  33186. },
  33187. [
  33188. {
  33189. name: "Normal",
  33190. height: math.unit(7 + 10/12, "feet"),
  33191. default: true
  33192. },
  33193. ]
  33194. ))
  33195. characterMakers.push(() => makeCharacter(
  33196. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33197. {
  33198. front: {
  33199. height: math.unit(9, "feet"),
  33200. name: "Front",
  33201. image: {
  33202. source: "./media/characters/guti/front.svg",
  33203. extra: 4551/4355,
  33204. bottom: 123/4674
  33205. }
  33206. },
  33207. tongue: {
  33208. height: math.unit(1, "feet"),
  33209. name: "Tongue",
  33210. image: {
  33211. source: "./media/characters/guti/tongue.svg"
  33212. }
  33213. },
  33214. paw: {
  33215. height: math.unit(1.18, "feet"),
  33216. name: "Paw",
  33217. image: {
  33218. source: "./media/characters/guti/paw.svg"
  33219. }
  33220. },
  33221. },
  33222. [
  33223. {
  33224. name: "Normal",
  33225. height: math.unit(9, "feet"),
  33226. default: true
  33227. },
  33228. ]
  33229. ))
  33230. characterMakers.push(() => makeCharacter(
  33231. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33232. {
  33233. side: {
  33234. height: math.unit(5, "meters"),
  33235. name: "Side",
  33236. image: {
  33237. source: "./media/characters/vesper/side.svg",
  33238. extra: 1605/1518,
  33239. bottom: 0/1605
  33240. }
  33241. },
  33242. },
  33243. [
  33244. {
  33245. name: "Small",
  33246. height: math.unit(5, "meters")
  33247. },
  33248. {
  33249. name: "Sage",
  33250. height: math.unit(100, "meters"),
  33251. default: true
  33252. },
  33253. {
  33254. name: "Fun Size",
  33255. height: math.unit(600, "meters")
  33256. },
  33257. {
  33258. name: "Goddess",
  33259. height: math.unit(20000, "km")
  33260. },
  33261. {
  33262. name: "Maximum",
  33263. height: math.unit(5, "galaxies")
  33264. },
  33265. ]
  33266. ))
  33267. characterMakers.push(() => makeCharacter(
  33268. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33269. {
  33270. front: {
  33271. height: math.unit(6 + 3/12, "feet"),
  33272. weight: math.unit(190, "lb"),
  33273. name: "Front",
  33274. image: {
  33275. source: "./media/characters/gawain/front.svg",
  33276. extra: 2222/2139,
  33277. bottom: 90/2312
  33278. }
  33279. },
  33280. back: {
  33281. height: math.unit(6 + 3/12, "feet"),
  33282. weight: math.unit(190, "lb"),
  33283. name: "Back",
  33284. image: {
  33285. source: "./media/characters/gawain/back.svg",
  33286. extra: 2199/2111,
  33287. bottom: 73/2272
  33288. }
  33289. },
  33290. },
  33291. [
  33292. {
  33293. name: "Normal",
  33294. height: math.unit(6 + 3/12, "feet"),
  33295. default: true
  33296. },
  33297. ]
  33298. ))
  33299. characterMakers.push(() => makeCharacter(
  33300. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33301. {
  33302. side: {
  33303. height: math.unit(3.5, "meters"),
  33304. weight: math.unit(16000, "lb"),
  33305. name: "Side",
  33306. image: {
  33307. source: "./media/characters/dascalti/side.svg",
  33308. extra: 392/273,
  33309. bottom: 47/439
  33310. }
  33311. },
  33312. breath: {
  33313. height: math.unit(7.4, "feet"),
  33314. name: "Breath",
  33315. image: {
  33316. source: "./media/characters/dascalti/breath.svg"
  33317. }
  33318. },
  33319. fed: {
  33320. height: math.unit(3.6, "meters"),
  33321. weight: math.unit(16000, "lb"),
  33322. name: "Fed",
  33323. image: {
  33324. source: "./media/characters/dascalti/fed.svg",
  33325. extra: 1419/820,
  33326. bottom: 95/1514
  33327. }
  33328. },
  33329. },
  33330. [
  33331. {
  33332. name: "Normal",
  33333. height: math.unit(3.5, "meters"),
  33334. default: true
  33335. },
  33336. ]
  33337. ))
  33338. characterMakers.push(() => makeCharacter(
  33339. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33340. {
  33341. front: {
  33342. height: math.unit(3 + 5/12, "feet"),
  33343. name: "Front",
  33344. image: {
  33345. source: "./media/characters/mauve/front.svg",
  33346. extra: 1126/1033,
  33347. bottom: 65/1191
  33348. }
  33349. },
  33350. side: {
  33351. height: math.unit(3 + 5/12, "feet"),
  33352. name: "Side",
  33353. image: {
  33354. source: "./media/characters/mauve/side.svg",
  33355. extra: 1089/1001,
  33356. bottom: 29/1118
  33357. }
  33358. },
  33359. back: {
  33360. height: math.unit(3 + 5/12, "feet"),
  33361. name: "Back",
  33362. image: {
  33363. source: "./media/characters/mauve/back.svg",
  33364. extra: 1173/1053,
  33365. bottom: 109/1282
  33366. }
  33367. },
  33368. },
  33369. [
  33370. {
  33371. name: "Normal",
  33372. height: math.unit(3 + 5/12, "feet"),
  33373. default: true
  33374. },
  33375. ]
  33376. ))
  33377. characterMakers.push(() => makeCharacter(
  33378. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33379. {
  33380. front: {
  33381. height: math.unit(6 + 3/12, "feet"),
  33382. weight: math.unit(430, "lb"),
  33383. name: "Front",
  33384. image: {
  33385. source: "./media/characters/carlos/front.svg",
  33386. extra: 1964/1913,
  33387. bottom: 70/2034
  33388. }
  33389. },
  33390. },
  33391. [
  33392. {
  33393. name: "Normal",
  33394. height: math.unit(6 + 3/12, "feet"),
  33395. default: true
  33396. },
  33397. ]
  33398. ))
  33399. characterMakers.push(() => makeCharacter(
  33400. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33401. {
  33402. back: {
  33403. height: math.unit(5 + 10/12, "feet"),
  33404. weight: math.unit(200, "lb"),
  33405. name: "Back",
  33406. image: {
  33407. source: "./media/characters/jax/back.svg",
  33408. extra: 764/739,
  33409. bottom: 25/789
  33410. }
  33411. },
  33412. },
  33413. [
  33414. {
  33415. name: "Normal",
  33416. height: math.unit(5 + 10/12, "feet"),
  33417. default: true
  33418. },
  33419. ]
  33420. ))
  33421. characterMakers.push(() => makeCharacter(
  33422. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33423. {
  33424. front: {
  33425. height: math.unit(8, "feet"),
  33426. weight: math.unit(250, "lb"),
  33427. name: "Front",
  33428. image: {
  33429. source: "./media/characters/eikthynir/front.svg",
  33430. extra: 1332/1166,
  33431. bottom: 82/1414
  33432. }
  33433. },
  33434. back: {
  33435. height: math.unit(8, "feet"),
  33436. weight: math.unit(250, "lb"),
  33437. name: "Back",
  33438. image: {
  33439. source: "./media/characters/eikthynir/back.svg",
  33440. extra: 1342/1190,
  33441. bottom: 19/1361
  33442. }
  33443. },
  33444. dick: {
  33445. height: math.unit(2.35, "feet"),
  33446. name: "Dick",
  33447. image: {
  33448. source: "./media/characters/eikthynir/dick.svg"
  33449. }
  33450. },
  33451. },
  33452. [
  33453. {
  33454. name: "Normal",
  33455. height: math.unit(8, "feet"),
  33456. default: true
  33457. },
  33458. ]
  33459. ))
  33460. characterMakers.push(() => makeCharacter(
  33461. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33462. {
  33463. front: {
  33464. height: math.unit(99, "meters"),
  33465. weight: math.unit(13000, "tons"),
  33466. name: "Front",
  33467. image: {
  33468. source: "./media/characters/zlmos/front.svg",
  33469. extra: 2202/1992,
  33470. bottom: 315/2517
  33471. }
  33472. },
  33473. },
  33474. [
  33475. {
  33476. name: "Macro",
  33477. height: math.unit(99, "meters"),
  33478. default: true
  33479. },
  33480. ]
  33481. ))
  33482. characterMakers.push(() => makeCharacter(
  33483. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33484. {
  33485. front: {
  33486. height: math.unit(6 + 5/12, "feet"),
  33487. name: "Front",
  33488. image: {
  33489. source: "./media/characters/purri/front.svg",
  33490. extra: 1698/1610,
  33491. bottom: 32/1730
  33492. }
  33493. },
  33494. frontAlt: {
  33495. height: math.unit(6 + 5/12, "feet"),
  33496. name: "Front (Alt)",
  33497. image: {
  33498. source: "./media/characters/purri/front-alt.svg",
  33499. extra: 450/420,
  33500. bottom: 26/476
  33501. }
  33502. },
  33503. boots: {
  33504. height: math.unit(5.5, "feet"),
  33505. name: "Boots",
  33506. image: {
  33507. source: "./media/characters/purri/boots.svg",
  33508. extra: 905/853,
  33509. bottom: 18/923
  33510. }
  33511. },
  33512. lying: {
  33513. height: math.unit(2, "feet"),
  33514. name: "Lying",
  33515. image: {
  33516. source: "./media/characters/purri/lying.svg",
  33517. extra: 940/843,
  33518. bottom: 146/1086
  33519. }
  33520. },
  33521. devious: {
  33522. height: math.unit(1.77, "feet"),
  33523. name: "Devious",
  33524. image: {
  33525. source: "./media/characters/purri/devious.svg",
  33526. extra: 1440/1155,
  33527. bottom: 147/1587
  33528. }
  33529. },
  33530. bean: {
  33531. height: math.unit(1.94, "feet"),
  33532. name: "Bean",
  33533. image: {
  33534. source: "./media/characters/purri/bean.svg"
  33535. }
  33536. },
  33537. },
  33538. [
  33539. {
  33540. name: "Micro",
  33541. height: math.unit(1, "mm")
  33542. },
  33543. {
  33544. name: "Normal",
  33545. height: math.unit(6 + 5/12, "feet"),
  33546. default: true
  33547. },
  33548. {
  33549. name: "Macro :3c",
  33550. height: math.unit(2, "miles")
  33551. },
  33552. ]
  33553. ))
  33554. characterMakers.push(() => makeCharacter(
  33555. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33556. {
  33557. front: {
  33558. height: math.unit(6 + 2/12, "feet"),
  33559. weight: math.unit(250, "lb"),
  33560. name: "Front",
  33561. image: {
  33562. source: "./media/characters/moonlight/front.svg",
  33563. extra: 1044/908,
  33564. bottom: 56/1100
  33565. }
  33566. },
  33567. feral: {
  33568. height: math.unit(3 + 1/12, "feet"),
  33569. weight: math.unit(50, "kg"),
  33570. name: "Feral",
  33571. image: {
  33572. source: "./media/characters/moonlight/feral.svg",
  33573. extra: 3705/2791,
  33574. bottom: 145/3850
  33575. }
  33576. },
  33577. paw: {
  33578. height: math.unit(1, "feet"),
  33579. name: "Paw",
  33580. image: {
  33581. source: "./media/characters/moonlight/paw.svg"
  33582. }
  33583. },
  33584. paws: {
  33585. height: math.unit(0.98, "feet"),
  33586. name: "Paws",
  33587. image: {
  33588. source: "./media/characters/moonlight/paws.svg",
  33589. extra: 939/939,
  33590. bottom: 50/989
  33591. }
  33592. },
  33593. mouth: {
  33594. height: math.unit(0.48, "feet"),
  33595. name: "Mouth",
  33596. image: {
  33597. source: "./media/characters/moonlight/mouth.svg"
  33598. }
  33599. },
  33600. dick: {
  33601. height: math.unit(1.46, "feet"),
  33602. name: "Dick",
  33603. image: {
  33604. source: "./media/characters/moonlight/dick.svg"
  33605. }
  33606. },
  33607. },
  33608. [
  33609. {
  33610. name: "Normal",
  33611. height: math.unit(6 + 2/12, "feet"),
  33612. default: true
  33613. },
  33614. {
  33615. name: "Macro",
  33616. height: math.unit(300, "feet")
  33617. },
  33618. {
  33619. name: "Macro+",
  33620. height: math.unit(1, "mile")
  33621. },
  33622. {
  33623. name: "Mt. Moon",
  33624. height: math.unit(5, "miles")
  33625. },
  33626. {
  33627. name: "Megamacro",
  33628. height: math.unit(15, "miles")
  33629. },
  33630. ]
  33631. ))
  33632. characterMakers.push(() => makeCharacter(
  33633. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33634. {
  33635. back: {
  33636. height: math.unit(6, "feet"),
  33637. weight: math.unit(150, "lb"),
  33638. name: "Back",
  33639. image: {
  33640. source: "./media/characters/sylen/back.svg",
  33641. extra: 1335/1273,
  33642. bottom: 107/1442
  33643. }
  33644. },
  33645. },
  33646. [
  33647. {
  33648. name: "Normal",
  33649. height: math.unit(5 + 5/12, "feet")
  33650. },
  33651. {
  33652. name: "Megamacro",
  33653. height: math.unit(3, "miles"),
  33654. default: true
  33655. },
  33656. ]
  33657. ))
  33658. characterMakers.push(() => makeCharacter(
  33659. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33660. {
  33661. front: {
  33662. height: math.unit(6, "feet"),
  33663. weight: math.unit(190, "lb"),
  33664. name: "Front",
  33665. image: {
  33666. source: "./media/characters/huttser/front.svg",
  33667. extra: 1152/1058,
  33668. bottom: 23/1175
  33669. }
  33670. },
  33671. side: {
  33672. height: math.unit(6, "feet"),
  33673. weight: math.unit(190, "lb"),
  33674. name: "Side",
  33675. image: {
  33676. source: "./media/characters/huttser/side.svg",
  33677. extra: 1174/1065,
  33678. bottom: 18/1192
  33679. }
  33680. },
  33681. back: {
  33682. height: math.unit(6, "feet"),
  33683. weight: math.unit(190, "lb"),
  33684. name: "Back",
  33685. image: {
  33686. source: "./media/characters/huttser/back.svg",
  33687. extra: 1158/1056,
  33688. bottom: 12/1170
  33689. }
  33690. },
  33691. },
  33692. [
  33693. ]
  33694. ))
  33695. characterMakers.push(() => makeCharacter(
  33696. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33697. {
  33698. side: {
  33699. height: math.unit(12 + 9/12, "feet"),
  33700. weight: math.unit(15000, "lb"),
  33701. name: "Side",
  33702. image: {
  33703. source: "./media/characters/faan/side.svg",
  33704. extra: 2747/2697,
  33705. bottom: 0/2747
  33706. }
  33707. },
  33708. front: {
  33709. height: math.unit(12 + 9/12, "feet"),
  33710. weight: math.unit(15000, "lb"),
  33711. name: "Front",
  33712. image: {
  33713. source: "./media/characters/faan/front.svg",
  33714. extra: 607/571,
  33715. bottom: 24/631
  33716. }
  33717. },
  33718. head: {
  33719. height: math.unit(2.85, "feet"),
  33720. name: "Head",
  33721. image: {
  33722. source: "./media/characters/faan/head.svg"
  33723. }
  33724. },
  33725. headAlt: {
  33726. height: math.unit(3.13, "feet"),
  33727. name: "Head-alt",
  33728. image: {
  33729. source: "./media/characters/faan/head-alt.svg"
  33730. }
  33731. },
  33732. },
  33733. [
  33734. {
  33735. name: "Normal",
  33736. height: math.unit(12 + 9/12, "feet"),
  33737. default: true
  33738. },
  33739. ]
  33740. ))
  33741. characterMakers.push(() => makeCharacter(
  33742. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33743. {
  33744. front: {
  33745. height: math.unit(6, "feet"),
  33746. weight: math.unit(300, "lb"),
  33747. name: "Front",
  33748. image: {
  33749. source: "./media/characters/tanio/front.svg",
  33750. extra: 711/673,
  33751. bottom: 25/736
  33752. }
  33753. },
  33754. },
  33755. [
  33756. {
  33757. name: "Normal",
  33758. height: math.unit(6, "feet"),
  33759. default: true
  33760. },
  33761. ]
  33762. ))
  33763. characterMakers.push(() => makeCharacter(
  33764. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33765. {
  33766. front: {
  33767. height: math.unit(3, "inches"),
  33768. name: "Front",
  33769. image: {
  33770. source: "./media/characters/noboru/front.svg",
  33771. extra: 1039/932,
  33772. bottom: 18/1057
  33773. }
  33774. },
  33775. },
  33776. [
  33777. {
  33778. name: "Micro",
  33779. height: math.unit(3, "inches"),
  33780. default: true
  33781. },
  33782. ]
  33783. ))
  33784. characterMakers.push(() => makeCharacter(
  33785. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33786. {
  33787. front: {
  33788. height: math.unit(1.85, "meters"),
  33789. weight: math.unit(80, "kg"),
  33790. name: "Front",
  33791. image: {
  33792. source: "./media/characters/daniel-barrett/front.svg",
  33793. extra: 355/337,
  33794. bottom: 9/364
  33795. }
  33796. },
  33797. },
  33798. [
  33799. {
  33800. name: "Pico",
  33801. height: math.unit(0.0433, "mm")
  33802. },
  33803. {
  33804. name: "Nano",
  33805. height: math.unit(1.5, "mm")
  33806. },
  33807. {
  33808. name: "Micro",
  33809. height: math.unit(5.3, "cm"),
  33810. default: true
  33811. },
  33812. {
  33813. name: "Normal",
  33814. height: math.unit(1.85, "meters")
  33815. },
  33816. {
  33817. name: "Macro",
  33818. height: math.unit(64.7, "meters")
  33819. },
  33820. {
  33821. name: "Megamacro",
  33822. height: math.unit(2.26, "km")
  33823. },
  33824. {
  33825. name: "Gigamacro",
  33826. height: math.unit(79, "km")
  33827. },
  33828. {
  33829. name: "Teramacro",
  33830. height: math.unit(2765, "km")
  33831. },
  33832. {
  33833. name: "Petamacro",
  33834. height: math.unit(96678, "km")
  33835. },
  33836. ]
  33837. ))
  33838. characterMakers.push(() => makeCharacter(
  33839. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33840. {
  33841. front: {
  33842. height: math.unit(30, "meters"),
  33843. weight: math.unit(400, "tons"),
  33844. name: "Front",
  33845. image: {
  33846. source: "./media/characters/zeel/front.svg",
  33847. extra: 2599/2599,
  33848. bottom: 226/2825
  33849. }
  33850. },
  33851. },
  33852. [
  33853. {
  33854. name: "Macro",
  33855. height: math.unit(30, "meters"),
  33856. default: true
  33857. },
  33858. ]
  33859. ))
  33860. characterMakers.push(() => makeCharacter(
  33861. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33862. {
  33863. front: {
  33864. height: math.unit(6 + 7/12, "feet"),
  33865. weight: math.unit(210, "lb"),
  33866. name: "Front",
  33867. image: {
  33868. source: "./media/characters/tarn/front.svg",
  33869. extra: 3517/3220,
  33870. bottom: 91/3608
  33871. }
  33872. },
  33873. back: {
  33874. height: math.unit(6 + 7/12, "feet"),
  33875. weight: math.unit(210, "lb"),
  33876. name: "Back",
  33877. image: {
  33878. source: "./media/characters/tarn/back.svg",
  33879. extra: 3566/3241,
  33880. bottom: 34/3600
  33881. }
  33882. },
  33883. dick: {
  33884. height: math.unit(1.65, "feet"),
  33885. name: "Dick",
  33886. image: {
  33887. source: "./media/characters/tarn/dick.svg"
  33888. }
  33889. },
  33890. paw: {
  33891. height: math.unit(1.80, "feet"),
  33892. name: "Paw",
  33893. image: {
  33894. source: "./media/characters/tarn/paw.svg"
  33895. }
  33896. },
  33897. tongue: {
  33898. height: math.unit(0.97, "feet"),
  33899. name: "Tongue",
  33900. image: {
  33901. source: "./media/characters/tarn/tongue.svg"
  33902. }
  33903. },
  33904. },
  33905. [
  33906. {
  33907. name: "Micro",
  33908. height: math.unit(4, "inches")
  33909. },
  33910. {
  33911. name: "Normal",
  33912. height: math.unit(6 + 7/12, "feet"),
  33913. default: true
  33914. },
  33915. {
  33916. name: "Macro",
  33917. height: math.unit(300, "feet")
  33918. },
  33919. ]
  33920. ))
  33921. characterMakers.push(() => makeCharacter(
  33922. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33923. {
  33924. front: {
  33925. height: math.unit(5 + 7/12, "feet"),
  33926. weight: math.unit(80, "kg"),
  33927. name: "Front",
  33928. image: {
  33929. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33930. extra: 3023/2865,
  33931. bottom: 33/3056
  33932. }
  33933. },
  33934. back: {
  33935. height: math.unit(5 + 7/12, "feet"),
  33936. weight: math.unit(80, "kg"),
  33937. name: "Back",
  33938. image: {
  33939. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33940. extra: 3020/2886,
  33941. bottom: 30/3050
  33942. }
  33943. },
  33944. dick: {
  33945. height: math.unit(0.98, "feet"),
  33946. name: "Dick",
  33947. image: {
  33948. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33949. }
  33950. },
  33951. anatomy: {
  33952. height: math.unit(2.86, "feet"),
  33953. name: "Anatomy",
  33954. image: {
  33955. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33956. }
  33957. },
  33958. },
  33959. [
  33960. {
  33961. name: "Really Small",
  33962. height: math.unit(2, "inches")
  33963. },
  33964. {
  33965. name: "Micro",
  33966. height: math.unit(5.583, "inches")
  33967. },
  33968. {
  33969. name: "Normal",
  33970. height: math.unit(5 + 7/12, "feet"),
  33971. default: true
  33972. },
  33973. {
  33974. name: "Macro",
  33975. height: math.unit(67, "feet")
  33976. },
  33977. {
  33978. name: "Megamacro",
  33979. height: math.unit(134, "feet")
  33980. },
  33981. ]
  33982. ))
  33983. characterMakers.push(() => makeCharacter(
  33984. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33985. {
  33986. front: {
  33987. height: math.unit(9, "feet"),
  33988. weight: math.unit(120, "lb"),
  33989. name: "Front",
  33990. image: {
  33991. source: "./media/characters/sally/front.svg",
  33992. extra: 1506/1349,
  33993. bottom: 66/1572
  33994. }
  33995. },
  33996. },
  33997. [
  33998. {
  33999. name: "Normal",
  34000. height: math.unit(9, "feet"),
  34001. default: true
  34002. },
  34003. ]
  34004. ))
  34005. characterMakers.push(() => makeCharacter(
  34006. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34007. {
  34008. front: {
  34009. height: math.unit(8, "feet"),
  34010. weight: math.unit(900, "lb"),
  34011. name: "Front",
  34012. image: {
  34013. source: "./media/characters/owen/front.svg",
  34014. extra: 1761/1657,
  34015. bottom: 74/1835
  34016. }
  34017. },
  34018. side: {
  34019. height: math.unit(8, "feet"),
  34020. weight: math.unit(900, "lb"),
  34021. name: "Side",
  34022. image: {
  34023. source: "./media/characters/owen/side.svg",
  34024. extra: 1797/1734,
  34025. bottom: 30/1827
  34026. }
  34027. },
  34028. back: {
  34029. height: math.unit(8, "feet"),
  34030. weight: math.unit(900, "lb"),
  34031. name: "Back",
  34032. image: {
  34033. source: "./media/characters/owen/back.svg",
  34034. extra: 1796/1706,
  34035. bottom: 59/1855
  34036. }
  34037. },
  34038. maw: {
  34039. height: math.unit(1.76, "feet"),
  34040. name: "Maw",
  34041. image: {
  34042. source: "./media/characters/owen/maw.svg"
  34043. }
  34044. },
  34045. },
  34046. [
  34047. {
  34048. name: "Normal",
  34049. height: math.unit(8, "feet"),
  34050. default: true
  34051. },
  34052. ]
  34053. ))
  34054. characterMakers.push(() => makeCharacter(
  34055. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34056. {
  34057. front: {
  34058. height: math.unit(4, "feet"),
  34059. weight: math.unit(400, "lb"),
  34060. name: "Front",
  34061. image: {
  34062. source: "./media/characters/ryth/front.svg",
  34063. extra: 1920/1748,
  34064. bottom: 42/1962
  34065. }
  34066. },
  34067. back: {
  34068. height: math.unit(4, "feet"),
  34069. weight: math.unit(400, "lb"),
  34070. name: "Back",
  34071. image: {
  34072. source: "./media/characters/ryth/back.svg",
  34073. extra: 1897/1690,
  34074. bottom: 89/1986
  34075. }
  34076. },
  34077. mouth: {
  34078. height: math.unit(1.39, "feet"),
  34079. name: "Mouth",
  34080. image: {
  34081. source: "./media/characters/ryth/mouth.svg"
  34082. }
  34083. },
  34084. tailmaw: {
  34085. height: math.unit(1.23, "feet"),
  34086. name: "Tailmaw",
  34087. image: {
  34088. source: "./media/characters/ryth/tailmaw.svg"
  34089. }
  34090. },
  34091. goia: {
  34092. height: math.unit(4, "meters"),
  34093. weight: math.unit(10800, "lb"),
  34094. name: "Goia",
  34095. image: {
  34096. source: "./media/characters/ryth/goia.svg",
  34097. extra: 745/640,
  34098. bottom: 107/852
  34099. }
  34100. },
  34101. goiaFront: {
  34102. height: math.unit(4, "meters"),
  34103. weight: math.unit(10800, "lb"),
  34104. name: "Goia (Front)",
  34105. image: {
  34106. source: "./media/characters/ryth/goia-front.svg",
  34107. extra: 750/586,
  34108. bottom: 114/864
  34109. }
  34110. },
  34111. goiaMaw: {
  34112. height: math.unit(5.55, "feet"),
  34113. name: "Goia Maw",
  34114. image: {
  34115. source: "./media/characters/ryth/goia-maw.svg"
  34116. }
  34117. },
  34118. goiaForepaw: {
  34119. height: math.unit(3.5, "feet"),
  34120. name: "Goia Forepaw",
  34121. image: {
  34122. source: "./media/characters/ryth/goia-forepaw.svg"
  34123. }
  34124. },
  34125. goiaHindpaw: {
  34126. height: math.unit(5.55, "feet"),
  34127. name: "Goia Hindpaw",
  34128. image: {
  34129. source: "./media/characters/ryth/goia-hindpaw.svg"
  34130. }
  34131. },
  34132. },
  34133. [
  34134. {
  34135. name: "Normal",
  34136. height: math.unit(4, "feet"),
  34137. default: true
  34138. },
  34139. ]
  34140. ))
  34141. characterMakers.push(() => makeCharacter(
  34142. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34143. {
  34144. front: {
  34145. height: math.unit(7, "feet"),
  34146. weight: math.unit(180, "lb"),
  34147. name: "Front",
  34148. image: {
  34149. source: "./media/characters/necrolance/front.svg",
  34150. extra: 1062/947,
  34151. bottom: 41/1103
  34152. }
  34153. },
  34154. back: {
  34155. height: math.unit(7, "feet"),
  34156. weight: math.unit(180, "lb"),
  34157. name: "Back",
  34158. image: {
  34159. source: "./media/characters/necrolance/back.svg",
  34160. extra: 1045/984,
  34161. bottom: 14/1059
  34162. }
  34163. },
  34164. wing: {
  34165. height: math.unit(2.67, "feet"),
  34166. name: "Wing",
  34167. image: {
  34168. source: "./media/characters/necrolance/wing.svg"
  34169. }
  34170. },
  34171. },
  34172. [
  34173. {
  34174. name: "Normal",
  34175. height: math.unit(7, "feet"),
  34176. default: true
  34177. },
  34178. ]
  34179. ))
  34180. characterMakers.push(() => makeCharacter(
  34181. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34182. {
  34183. front: {
  34184. height: math.unit(76, "meters"),
  34185. weight: math.unit(30000, "tons"),
  34186. name: "Front",
  34187. image: {
  34188. source: "./media/characters/tyler/front.svg",
  34189. extra: 1640/1640,
  34190. bottom: 114/1754
  34191. }
  34192. },
  34193. },
  34194. [
  34195. {
  34196. name: "Macro",
  34197. height: math.unit(76, "meters"),
  34198. default: true
  34199. },
  34200. ]
  34201. ))
  34202. characterMakers.push(() => makeCharacter(
  34203. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34204. {
  34205. front: {
  34206. height: math.unit(4 + 11/12, "feet"),
  34207. weight: math.unit(132, "lb"),
  34208. name: "Front",
  34209. image: {
  34210. source: "./media/characters/icey/front.svg",
  34211. extra: 2750/2550,
  34212. bottom: 33/2783
  34213. }
  34214. },
  34215. back: {
  34216. height: math.unit(4 + 11/12, "feet"),
  34217. weight: math.unit(132, "lb"),
  34218. name: "Back",
  34219. image: {
  34220. source: "./media/characters/icey/back.svg",
  34221. extra: 2624/2481,
  34222. bottom: 35/2659
  34223. }
  34224. },
  34225. },
  34226. [
  34227. {
  34228. name: "Normal",
  34229. height: math.unit(4 + 11/12, "feet"),
  34230. default: true
  34231. },
  34232. ]
  34233. ))
  34234. characterMakers.push(() => makeCharacter(
  34235. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34236. {
  34237. front: {
  34238. height: math.unit(100, "feet"),
  34239. weight: math.unit(0, "lb"),
  34240. name: "Front",
  34241. image: {
  34242. source: "./media/characters/smile/front.svg",
  34243. extra: 2983/2912,
  34244. bottom: 162/3145
  34245. }
  34246. },
  34247. back: {
  34248. height: math.unit(100, "feet"),
  34249. weight: math.unit(0, "lb"),
  34250. name: "Back",
  34251. image: {
  34252. source: "./media/characters/smile/back.svg",
  34253. extra: 3143/3031,
  34254. bottom: 91/3234
  34255. }
  34256. },
  34257. head: {
  34258. height: math.unit(26.3, "feet"),
  34259. weight: math.unit(0, "lb"),
  34260. name: "Head",
  34261. image: {
  34262. source: "./media/characters/smile/head.svg"
  34263. }
  34264. },
  34265. collar: {
  34266. height: math.unit(5.3, "feet"),
  34267. weight: math.unit(0, "lb"),
  34268. name: "Collar",
  34269. image: {
  34270. source: "./media/characters/smile/collar.svg"
  34271. }
  34272. },
  34273. },
  34274. [
  34275. {
  34276. name: "Macro",
  34277. height: math.unit(100, "feet"),
  34278. default: true
  34279. },
  34280. ]
  34281. ))
  34282. characterMakers.push(() => makeCharacter(
  34283. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34284. {
  34285. dragon: {
  34286. height: math.unit(26, "feet"),
  34287. weight: math.unit(36, "tons"),
  34288. name: "Dragon",
  34289. image: {
  34290. source: "./media/characters/arimphae/dragon.svg",
  34291. extra: 1574/983,
  34292. bottom: 357/1931
  34293. }
  34294. },
  34295. drake: {
  34296. height: math.unit(9, "feet"),
  34297. weight: math.unit(1.5, "tons"),
  34298. name: "Drake",
  34299. image: {
  34300. source: "./media/characters/arimphae/drake.svg",
  34301. extra: 1120/925,
  34302. bottom: 435/1555
  34303. }
  34304. },
  34305. },
  34306. [
  34307. {
  34308. name: "Small",
  34309. height: math.unit(26*5/9, "feet")
  34310. },
  34311. {
  34312. name: "Normal",
  34313. height: math.unit(26, "feet"),
  34314. default: true
  34315. },
  34316. ]
  34317. ))
  34318. characterMakers.push(() => makeCharacter(
  34319. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34320. {
  34321. front: {
  34322. height: math.unit(8 + 9/12, "feet"),
  34323. name: "Front",
  34324. image: {
  34325. source: "./media/characters/xander/front.svg",
  34326. extra: 1237/974,
  34327. bottom: 94/1331
  34328. }
  34329. },
  34330. },
  34331. [
  34332. {
  34333. name: "Normal",
  34334. height: math.unit(8 + 9/12, "feet"),
  34335. default: true
  34336. },
  34337. {
  34338. name: "Gaze Grabber",
  34339. height: math.unit(13 + 8/12, "feet")
  34340. },
  34341. {
  34342. name: "Jaw Dropper",
  34343. height: math.unit(27, "feet")
  34344. },
  34345. {
  34346. name: "Show Stopper",
  34347. height: math.unit(136, "feet")
  34348. },
  34349. {
  34350. name: "Superstar",
  34351. height: math.unit(1.9e6, "miles")
  34352. },
  34353. ]
  34354. ))
  34355. characterMakers.push(() => makeCharacter(
  34356. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34357. {
  34358. side: {
  34359. height: math.unit(2100, "feet"),
  34360. name: "Side",
  34361. image: {
  34362. source: "./media/characters/osiris/side.svg",
  34363. extra: 1105/939,
  34364. bottom: 167/1272
  34365. }
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Macro",
  34371. height: math.unit(2100, "feet"),
  34372. default: true
  34373. },
  34374. ]
  34375. ))
  34376. characterMakers.push(() => makeCharacter(
  34377. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34378. {
  34379. front: {
  34380. height: math.unit(6 + 8/12, "feet"),
  34381. weight: math.unit(225, "lb"),
  34382. name: "Front",
  34383. image: {
  34384. source: "./media/characters/rhys-londe/front.svg",
  34385. extra: 2258/2141,
  34386. bottom: 188/2446
  34387. }
  34388. },
  34389. back: {
  34390. height: math.unit(6 + 8/12, "feet"),
  34391. weight: math.unit(225, "lb"),
  34392. name: "Back",
  34393. image: {
  34394. source: "./media/characters/rhys-londe/back.svg",
  34395. extra: 2237/2137,
  34396. bottom: 63/2300
  34397. }
  34398. },
  34399. frontNsfw: {
  34400. height: math.unit(6 + 8/12, "feet"),
  34401. weight: math.unit(225, "lb"),
  34402. name: "Front (NSFW)",
  34403. image: {
  34404. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34405. extra: 2258/2141,
  34406. bottom: 188/2446
  34407. }
  34408. },
  34409. backNsfw: {
  34410. height: math.unit(6 + 8/12, "feet"),
  34411. weight: math.unit(225, "lb"),
  34412. name: "Back (NSFW)",
  34413. image: {
  34414. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34415. extra: 2237/2137,
  34416. bottom: 63/2300
  34417. }
  34418. },
  34419. dick: {
  34420. height: math.unit(30, "inches"),
  34421. name: "Dick",
  34422. image: {
  34423. source: "./media/characters/rhys-londe/dick.svg"
  34424. }
  34425. },
  34426. maw: {
  34427. height: math.unit(1.6, "feet"),
  34428. name: "Maw",
  34429. image: {
  34430. source: "./media/characters/rhys-londe/maw.svg"
  34431. }
  34432. },
  34433. },
  34434. [
  34435. {
  34436. name: "Normal",
  34437. height: math.unit(6 + 8/12, "feet"),
  34438. default: true
  34439. },
  34440. ]
  34441. ))
  34442. characterMakers.push(() => makeCharacter(
  34443. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34444. {
  34445. front: {
  34446. height: math.unit(3 + 10/12, "feet"),
  34447. weight: math.unit(90, "lb"),
  34448. name: "Front",
  34449. image: {
  34450. source: "./media/characters/taivas-ensim/front.svg",
  34451. extra: 1327/1216,
  34452. bottom: 96/1423
  34453. }
  34454. },
  34455. back: {
  34456. height: math.unit(3 + 10/12, "feet"),
  34457. weight: math.unit(90, "lb"),
  34458. name: "Back",
  34459. image: {
  34460. source: "./media/characters/taivas-ensim/back.svg",
  34461. extra: 1355/1247,
  34462. bottom: 11/1366
  34463. }
  34464. },
  34465. frontNsfw: {
  34466. height: math.unit(3 + 10/12, "feet"),
  34467. weight: math.unit(90, "lb"),
  34468. name: "Front (NSFW)",
  34469. image: {
  34470. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34471. extra: 1327/1216,
  34472. bottom: 96/1423
  34473. }
  34474. },
  34475. backNsfw: {
  34476. height: math.unit(3 + 10/12, "feet"),
  34477. weight: math.unit(90, "lb"),
  34478. name: "Back (NSFW)",
  34479. image: {
  34480. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34481. extra: 1355/1247,
  34482. bottom: 11/1366
  34483. }
  34484. },
  34485. },
  34486. [
  34487. {
  34488. name: "Normal",
  34489. height: math.unit(3 + 10/12, "feet"),
  34490. default: true
  34491. },
  34492. ]
  34493. ))
  34494. characterMakers.push(() => makeCharacter(
  34495. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34496. {
  34497. front: {
  34498. height: math.unit(9 + 6/12, "feet"),
  34499. weight: math.unit(940, "lb"),
  34500. name: "Front",
  34501. image: {
  34502. source: "./media/characters/byliss/front.svg",
  34503. extra: 1327/1290,
  34504. bottom: 82/1409
  34505. }
  34506. },
  34507. back: {
  34508. height: math.unit(9 + 6/12, "feet"),
  34509. weight: math.unit(940, "lb"),
  34510. name: "Back",
  34511. image: {
  34512. source: "./media/characters/byliss/back.svg",
  34513. extra: 1376/1349,
  34514. bottom: 9/1385
  34515. }
  34516. },
  34517. frontNsfw: {
  34518. height: math.unit(9 + 6/12, "feet"),
  34519. weight: math.unit(940, "lb"),
  34520. name: "Front (NSFW)",
  34521. image: {
  34522. source: "./media/characters/byliss/front-nsfw.svg",
  34523. extra: 1327/1290,
  34524. bottom: 82/1409
  34525. }
  34526. },
  34527. backNsfw: {
  34528. height: math.unit(9 + 6/12, "feet"),
  34529. weight: math.unit(940, "lb"),
  34530. name: "Back (NSFW)",
  34531. image: {
  34532. source: "./media/characters/byliss/back-nsfw.svg",
  34533. extra: 1376/1349,
  34534. bottom: 9/1385
  34535. }
  34536. },
  34537. },
  34538. [
  34539. {
  34540. name: "Normal",
  34541. height: math.unit(9 + 6/12, "feet"),
  34542. default: true
  34543. },
  34544. ]
  34545. ))
  34546. characterMakers.push(() => makeCharacter(
  34547. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34548. {
  34549. front: {
  34550. height: math.unit(5 + 2/12, "feet"),
  34551. weight: math.unit(200, "lb"),
  34552. name: "Front",
  34553. image: {
  34554. source: "./media/characters/noraly/front.svg",
  34555. extra: 4985/4773,
  34556. bottom: 150/5135
  34557. }
  34558. },
  34559. full: {
  34560. height: math.unit(5 + 2/12, "feet"),
  34561. weight: math.unit(164, "lb"),
  34562. name: "Full",
  34563. image: {
  34564. source: "./media/characters/noraly/full.svg",
  34565. extra: 1114/1059,
  34566. bottom: 35/1149
  34567. }
  34568. },
  34569. fuller: {
  34570. height: math.unit(5 + 2/12, "feet"),
  34571. weight: math.unit(230, "lb"),
  34572. name: "Fuller",
  34573. image: {
  34574. source: "./media/characters/noraly/fuller.svg",
  34575. extra: 1114/1059,
  34576. bottom: 35/1149
  34577. }
  34578. },
  34579. fullest: {
  34580. height: math.unit(5 + 2/12, "feet"),
  34581. weight: math.unit(300, "lb"),
  34582. name: "Fullest",
  34583. image: {
  34584. source: "./media/characters/noraly/fullest.svg",
  34585. extra: 1114/1059,
  34586. bottom: 35/1149
  34587. }
  34588. },
  34589. },
  34590. [
  34591. {
  34592. name: "Normal",
  34593. height: math.unit(5 + 2/12, "feet"),
  34594. default: true
  34595. },
  34596. ]
  34597. ))
  34598. characterMakers.push(() => makeCharacter(
  34599. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34600. {
  34601. front: {
  34602. height: math.unit(5 + 2/12, "feet"),
  34603. weight: math.unit(210, "lb"),
  34604. name: "Front",
  34605. image: {
  34606. source: "./media/characters/pera/front.svg",
  34607. extra: 1560/1531,
  34608. bottom: 165/1725
  34609. }
  34610. },
  34611. back: {
  34612. height: math.unit(5 + 2/12, "feet"),
  34613. weight: math.unit(210, "lb"),
  34614. name: "Back",
  34615. image: {
  34616. source: "./media/characters/pera/back.svg",
  34617. extra: 1523/1493,
  34618. bottom: 152/1675
  34619. }
  34620. },
  34621. dick: {
  34622. height: math.unit(2.4, "feet"),
  34623. name: "Dick",
  34624. image: {
  34625. source: "./media/characters/pera/dick.svg"
  34626. }
  34627. },
  34628. },
  34629. [
  34630. {
  34631. name: "Normal",
  34632. height: math.unit(5 + 2/12, "feet"),
  34633. default: true
  34634. },
  34635. ]
  34636. ))
  34637. characterMakers.push(() => makeCharacter(
  34638. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34639. {
  34640. front: {
  34641. height: math.unit(12, "feet"),
  34642. weight: math.unit(3200, "lb"),
  34643. name: "Front",
  34644. image: {
  34645. source: "./media/characters/julian/front.svg",
  34646. extra: 2962/2701,
  34647. bottom: 184/3146
  34648. }
  34649. },
  34650. maw: {
  34651. height: math.unit(5.35, "feet"),
  34652. name: "Maw",
  34653. image: {
  34654. source: "./media/characters/julian/maw.svg"
  34655. }
  34656. },
  34657. paw: {
  34658. height: math.unit(3.07, "feet"),
  34659. name: "Paw",
  34660. image: {
  34661. source: "./media/characters/julian/paw.svg"
  34662. }
  34663. },
  34664. },
  34665. [
  34666. {
  34667. name: "Default",
  34668. height: math.unit(12, "feet"),
  34669. default: true
  34670. },
  34671. {
  34672. name: "Big",
  34673. height: math.unit(50, "feet")
  34674. },
  34675. {
  34676. name: "Really Big",
  34677. height: math.unit(1, "mile")
  34678. },
  34679. {
  34680. name: "Extremely Big",
  34681. height: math.unit(100, "miles")
  34682. },
  34683. {
  34684. name: "Planet Hugger",
  34685. height: math.unit(200, "megameters")
  34686. },
  34687. {
  34688. name: "Unreasonably Big",
  34689. height: math.unit(1e300, "meters")
  34690. },
  34691. ]
  34692. ))
  34693. characterMakers.push(() => makeCharacter(
  34694. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34695. {
  34696. solgooleo: {
  34697. height: math.unit(4, "meters"),
  34698. weight: math.unit(6000*1.5, "kg"),
  34699. volume: math.unit(6000, "liters"),
  34700. name: "Solgooleo",
  34701. image: {
  34702. source: "./media/characters/pi/solgooleo.svg",
  34703. extra: 388/331,
  34704. bottom: 29/417
  34705. }
  34706. },
  34707. },
  34708. [
  34709. {
  34710. name: "Normal",
  34711. height: math.unit(4, "meters"),
  34712. default: true
  34713. },
  34714. ]
  34715. ))
  34716. characterMakers.push(() => makeCharacter(
  34717. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34718. {
  34719. front: {
  34720. height: math.unit(8, "feet"),
  34721. weight: math.unit(4, "tons"),
  34722. name: "Front",
  34723. image: {
  34724. source: "./media/characters/shaun/front.svg",
  34725. extra: 503/495,
  34726. bottom: 20/523
  34727. }
  34728. },
  34729. back: {
  34730. height: math.unit(8, "feet"),
  34731. weight: math.unit(4, "tons"),
  34732. name: "Back",
  34733. image: {
  34734. source: "./media/characters/shaun/back.svg",
  34735. extra: 487/480,
  34736. bottom: 20/507
  34737. }
  34738. },
  34739. },
  34740. [
  34741. {
  34742. name: "Lorg",
  34743. height: math.unit(8, "feet"),
  34744. default: true
  34745. },
  34746. ]
  34747. ))
  34748. characterMakers.push(() => makeCharacter(
  34749. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34750. {
  34751. frontAnthro: {
  34752. height: math.unit(7, "feet"),
  34753. name: "Front",
  34754. image: {
  34755. source: "./media/characters/sini/front-anthro.svg",
  34756. extra: 726/678,
  34757. bottom: 35/761
  34758. },
  34759. form: "anthro",
  34760. default: true
  34761. },
  34762. backAnthro: {
  34763. height: math.unit(7, "feet"),
  34764. name: "Back",
  34765. image: {
  34766. source: "./media/characters/sini/back-anthro.svg",
  34767. extra: 743/701,
  34768. bottom: 12/755
  34769. },
  34770. form: "anthro",
  34771. },
  34772. frontAnthroNsfw: {
  34773. height: math.unit(7, "feet"),
  34774. name: "Front (NSFW)",
  34775. image: {
  34776. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34777. extra: 726/678,
  34778. bottom: 35/761
  34779. },
  34780. form: "anthro"
  34781. },
  34782. backAnthroNsfw: {
  34783. height: math.unit(7, "feet"),
  34784. name: "Back (NSFW)",
  34785. image: {
  34786. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34787. extra: 743/701,
  34788. bottom: 12/755
  34789. },
  34790. form: "anthro",
  34791. },
  34792. mawAnthro: {
  34793. height: math.unit(2.14, "feet"),
  34794. name: "Maw",
  34795. image: {
  34796. source: "./media/characters/sini/maw-anthro.svg"
  34797. },
  34798. form: "anthro"
  34799. },
  34800. dick: {
  34801. height: math.unit(1.45, "feet"),
  34802. name: "Dick",
  34803. image: {
  34804. source: "./media/characters/sini/dick-anthro.svg"
  34805. },
  34806. form: "anthro"
  34807. },
  34808. feral: {
  34809. height: math.unit(16, "feet"),
  34810. name: "Feral",
  34811. image: {
  34812. source: "./media/characters/sini/feral.svg",
  34813. extra: 814/605,
  34814. bottom: 11/825
  34815. },
  34816. form: "feral",
  34817. default: true
  34818. },
  34819. feralNsfw: {
  34820. height: math.unit(16, "feet"),
  34821. name: "Feral (NSFW)",
  34822. image: {
  34823. source: "./media/characters/sini/feral-nsfw.svg",
  34824. extra: 814/605,
  34825. bottom: 11/825
  34826. },
  34827. form: "feral"
  34828. },
  34829. mawFeral: {
  34830. height: math.unit(5.66, "feet"),
  34831. name: "Maw",
  34832. image: {
  34833. source: "./media/characters/sini/maw-feral.svg"
  34834. },
  34835. form: "feral",
  34836. },
  34837. pawFeral: {
  34838. height: math.unit(5.17, "feet"),
  34839. name: "Paw",
  34840. image: {
  34841. source: "./media/characters/sini/paw-feral.svg"
  34842. },
  34843. form: "feral",
  34844. },
  34845. rumpFeral: {
  34846. height: math.unit(13.11, "feet"),
  34847. name: "Rump",
  34848. image: {
  34849. source: "./media/characters/sini/rump-feral.svg"
  34850. },
  34851. form: "feral",
  34852. },
  34853. dickFeral: {
  34854. height: math.unit(1, "feet"),
  34855. name: "Dick",
  34856. image: {
  34857. source: "./media/characters/sini/dick-feral.svg"
  34858. },
  34859. form: "feral",
  34860. },
  34861. eyeFeral: {
  34862. height: math.unit(1.23, "feet"),
  34863. name: "Eye",
  34864. image: {
  34865. source: "./media/characters/sini/eye-feral.svg"
  34866. },
  34867. form: "feral",
  34868. },
  34869. },
  34870. [
  34871. {
  34872. name: "Normal",
  34873. height: math.unit(7, "feet"),
  34874. default: true,
  34875. form: "anthro"
  34876. },
  34877. {
  34878. name: "Normal",
  34879. height: math.unit(16, "feet"),
  34880. default: true,
  34881. form: "feral"
  34882. },
  34883. ],
  34884. {
  34885. "anthro": {
  34886. name: "Anthro",
  34887. default: true
  34888. },
  34889. "feral": {
  34890. name: "Feral",
  34891. }
  34892. }
  34893. ))
  34894. characterMakers.push(() => makeCharacter(
  34895. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34896. {
  34897. side: {
  34898. height: math.unit(47.2, "meters"),
  34899. weight: math.unit(10000, "tons"),
  34900. name: "Side",
  34901. image: {
  34902. source: "./media/characters/raylldo/side.svg",
  34903. extra: 2363/642,
  34904. bottom: 221/2584
  34905. }
  34906. },
  34907. top: {
  34908. height: math.unit(240, "meters"),
  34909. weight: math.unit(10000, "tons"),
  34910. name: "Top",
  34911. image: {
  34912. source: "./media/characters/raylldo/top.svg"
  34913. }
  34914. },
  34915. bottom: {
  34916. height: math.unit(240, "meters"),
  34917. weight: math.unit(10000, "tons"),
  34918. name: "Bottom",
  34919. image: {
  34920. source: "./media/characters/raylldo/bottom.svg"
  34921. }
  34922. },
  34923. head: {
  34924. height: math.unit(38.6, "meters"),
  34925. name: "Head",
  34926. image: {
  34927. source: "./media/characters/raylldo/head.svg",
  34928. extra: 1335/1112,
  34929. bottom: 0/1335
  34930. }
  34931. },
  34932. maw: {
  34933. height: math.unit(16.37, "meters"),
  34934. name: "Maw",
  34935. image: {
  34936. source: "./media/characters/raylldo/maw.svg",
  34937. extra: 883/660,
  34938. bottom: 0/883
  34939. },
  34940. extraAttributes: {
  34941. preyCapacity: {
  34942. name: "Capacity",
  34943. power: 3,
  34944. type: "volume",
  34945. base: math.unit(1000, "people")
  34946. },
  34947. tongueSize: {
  34948. name: "Tongue Size",
  34949. power: 2,
  34950. type: "area",
  34951. base: math.unit(21, "m^2")
  34952. }
  34953. }
  34954. },
  34955. forepaw: {
  34956. height: math.unit(18, "meters"),
  34957. name: "Forepaw",
  34958. image: {
  34959. source: "./media/characters/raylldo/forepaw.svg"
  34960. }
  34961. },
  34962. hindpaw: {
  34963. height: math.unit(23, "meters"),
  34964. name: "Hindpaw",
  34965. image: {
  34966. source: "./media/characters/raylldo/hindpaw.svg"
  34967. }
  34968. },
  34969. genitals: {
  34970. height: math.unit(42, "meters"),
  34971. name: "Genitals",
  34972. image: {
  34973. source: "./media/characters/raylldo/genitals.svg"
  34974. }
  34975. },
  34976. },
  34977. [
  34978. {
  34979. name: "Normal",
  34980. height: math.unit(47.2, "meters"),
  34981. default: true
  34982. },
  34983. ]
  34984. ))
  34985. characterMakers.push(() => makeCharacter(
  34986. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34987. {
  34988. anthroFront: {
  34989. height: math.unit(9, "feet"),
  34990. weight: math.unit(600, "lb"),
  34991. name: "Anthro (Front)",
  34992. image: {
  34993. source: "./media/characters/glint/anthro-front.svg",
  34994. extra: 1097/1018,
  34995. bottom: 28/1125
  34996. }
  34997. },
  34998. anthroBack: {
  34999. height: math.unit(9, "feet"),
  35000. weight: math.unit(600, "lb"),
  35001. name: "Anthro (Back)",
  35002. image: {
  35003. source: "./media/characters/glint/anthro-back.svg",
  35004. extra: 1154/997,
  35005. bottom: 36/1190
  35006. }
  35007. },
  35008. feral: {
  35009. height: math.unit(11, "feet"),
  35010. weight: math.unit(50000, "lb"),
  35011. name: "Feral",
  35012. image: {
  35013. source: "./media/characters/glint/feral.svg",
  35014. extra: 3035/1585,
  35015. bottom: 1169/4204
  35016. }
  35017. },
  35018. dickAnthro: {
  35019. height: math.unit(0.7, "meters"),
  35020. name: "Dick (Anthro)",
  35021. image: {
  35022. source: "./media/characters/glint/dick-anthro.svg"
  35023. }
  35024. },
  35025. dickFeral: {
  35026. height: math.unit(2.65, "meters"),
  35027. name: "Dick (Feral)",
  35028. image: {
  35029. source: "./media/characters/glint/dick-feral.svg"
  35030. }
  35031. },
  35032. slitHidden: {
  35033. height: math.unit(5.85, "meters"),
  35034. name: "Slit (Hidden)",
  35035. image: {
  35036. source: "./media/characters/glint/slit-hidden.svg"
  35037. }
  35038. },
  35039. slitErect: {
  35040. height: math.unit(5.85, "meters"),
  35041. name: "Slit (Erect)",
  35042. image: {
  35043. source: "./media/characters/glint/slit-erect.svg"
  35044. }
  35045. },
  35046. mawAnthro: {
  35047. height: math.unit(0.63, "meters"),
  35048. name: "Maw (Anthro)",
  35049. image: {
  35050. source: "./media/characters/glint/maw.svg"
  35051. }
  35052. },
  35053. mawFeral: {
  35054. height: math.unit(2.89, "meters"),
  35055. name: "Maw (Feral)",
  35056. image: {
  35057. source: "./media/characters/glint/maw.svg"
  35058. }
  35059. },
  35060. },
  35061. [
  35062. {
  35063. name: "Normal",
  35064. height: math.unit(9, "feet"),
  35065. default: true
  35066. },
  35067. ]
  35068. ))
  35069. characterMakers.push(() => makeCharacter(
  35070. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35071. {
  35072. side: {
  35073. height: math.unit(15, "feet"),
  35074. weight: math.unit(5000, "kg"),
  35075. name: "Side",
  35076. image: {
  35077. source: "./media/characters/kairne/side.svg",
  35078. extra: 979/811,
  35079. bottom: 13/992
  35080. }
  35081. },
  35082. front: {
  35083. height: math.unit(15, "feet"),
  35084. weight: math.unit(5000, "kg"),
  35085. name: "Front",
  35086. image: {
  35087. source: "./media/characters/kairne/front.svg",
  35088. extra: 908/814,
  35089. bottom: 26/934
  35090. }
  35091. },
  35092. sideNsfw: {
  35093. height: math.unit(15, "feet"),
  35094. weight: math.unit(5000, "kg"),
  35095. name: "Side (NSFW)",
  35096. image: {
  35097. source: "./media/characters/kairne/side-nsfw.svg",
  35098. extra: 979/811,
  35099. bottom: 13/992
  35100. }
  35101. },
  35102. frontNsfw: {
  35103. height: math.unit(15, "feet"),
  35104. weight: math.unit(5000, "kg"),
  35105. name: "Front (NSFW)",
  35106. image: {
  35107. source: "./media/characters/kairne/front-nsfw.svg",
  35108. extra: 908/814,
  35109. bottom: 26/934
  35110. }
  35111. },
  35112. dickCaged: {
  35113. height: math.unit(0.65, "meters"),
  35114. name: "Dick-caged",
  35115. image: {
  35116. source: "./media/characters/kairne/dick-caged.svg"
  35117. }
  35118. },
  35119. dick: {
  35120. height: math.unit(0.79, "meters"),
  35121. name: "Dick",
  35122. image: {
  35123. source: "./media/characters/kairne/dick.svg"
  35124. }
  35125. },
  35126. genitals: {
  35127. height: math.unit(1.29, "meters"),
  35128. name: "Genitals",
  35129. image: {
  35130. source: "./media/characters/kairne/genitals.svg"
  35131. }
  35132. },
  35133. maw: {
  35134. height: math.unit(1.73, "meters"),
  35135. name: "Maw",
  35136. image: {
  35137. source: "./media/characters/kairne/maw.svg"
  35138. }
  35139. },
  35140. },
  35141. [
  35142. {
  35143. name: "Normal",
  35144. height: math.unit(15, "feet"),
  35145. default: true
  35146. },
  35147. ]
  35148. ))
  35149. characterMakers.push(() => makeCharacter(
  35150. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35151. {
  35152. front: {
  35153. height: math.unit(5 + 8/12, "feet"),
  35154. weight: math.unit(139, "lb"),
  35155. name: "Front",
  35156. image: {
  35157. source: "./media/characters/biscuit-jackal/front.svg",
  35158. extra: 2106/1961,
  35159. bottom: 58/2164
  35160. }
  35161. },
  35162. back: {
  35163. height: math.unit(5 + 8/12, "feet"),
  35164. weight: math.unit(139, "lb"),
  35165. name: "Back",
  35166. image: {
  35167. source: "./media/characters/biscuit-jackal/back.svg",
  35168. extra: 2132/1976,
  35169. bottom: 57/2189
  35170. }
  35171. },
  35172. werejackal: {
  35173. height: math.unit(6 + 3/12, "feet"),
  35174. weight: math.unit(188, "lb"),
  35175. name: "Werejackal",
  35176. image: {
  35177. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35178. extra: 2373/2178,
  35179. bottom: 53/2426
  35180. }
  35181. },
  35182. },
  35183. [
  35184. {
  35185. name: "Normal",
  35186. height: math.unit(5 + 8/12, "feet"),
  35187. default: true
  35188. },
  35189. ]
  35190. ))
  35191. characterMakers.push(() => makeCharacter(
  35192. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35193. {
  35194. front: {
  35195. height: math.unit(140, "cm"),
  35196. weight: math.unit(45, "kg"),
  35197. name: "Front",
  35198. image: {
  35199. source: "./media/characters/tayra-white/front.svg",
  35200. extra: 2229/2192,
  35201. bottom: 75/2304
  35202. }
  35203. },
  35204. },
  35205. [
  35206. {
  35207. name: "Normal",
  35208. height: math.unit(140, "cm"),
  35209. default: true
  35210. },
  35211. ]
  35212. ))
  35213. characterMakers.push(() => makeCharacter(
  35214. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35215. {
  35216. front: {
  35217. height: math.unit(4 + 5/12, "feet"),
  35218. name: "Front",
  35219. image: {
  35220. source: "./media/characters/scoop/front.svg",
  35221. extra: 1257/1136,
  35222. bottom: 69/1326
  35223. }
  35224. },
  35225. back: {
  35226. height: math.unit(4 + 5/12, "feet"),
  35227. name: "Back",
  35228. image: {
  35229. source: "./media/characters/scoop/back.svg",
  35230. extra: 1321/1152,
  35231. bottom: 32/1353
  35232. }
  35233. },
  35234. maw: {
  35235. height: math.unit(0.68, "feet"),
  35236. name: "Maw",
  35237. image: {
  35238. source: "./media/characters/scoop/maw.svg"
  35239. }
  35240. },
  35241. },
  35242. [
  35243. {
  35244. name: "Really Small",
  35245. height: math.unit(1, "mm")
  35246. },
  35247. {
  35248. name: "Micro",
  35249. height: math.unit(1, "inch")
  35250. },
  35251. {
  35252. name: "Normal",
  35253. height: math.unit(4 + 5/12, "feet"),
  35254. default: true
  35255. },
  35256. {
  35257. name: "Macro",
  35258. height: math.unit(200, "feet")
  35259. },
  35260. {
  35261. name: "Megamacro",
  35262. height: math.unit(3240, "feet")
  35263. },
  35264. {
  35265. name: "Teramacro",
  35266. height: math.unit(2500, "miles")
  35267. },
  35268. ]
  35269. ))
  35270. characterMakers.push(() => makeCharacter(
  35271. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35272. {
  35273. front: {
  35274. height: math.unit(15 + 7/12, "feet"),
  35275. weight: math.unit(1150, "tons"),
  35276. name: "Front",
  35277. image: {
  35278. source: "./media/characters/saphinara/front.svg",
  35279. extra: 1837/1643,
  35280. bottom: 84/1921
  35281. },
  35282. form: "normal",
  35283. default: true
  35284. },
  35285. side: {
  35286. height: math.unit(15 + 7/12, "feet"),
  35287. weight: math.unit(1150, "tons"),
  35288. name: "Side",
  35289. image: {
  35290. source: "./media/characters/saphinara/side.svg",
  35291. extra: 605/547,
  35292. bottom: 6/611
  35293. },
  35294. form: "normal"
  35295. },
  35296. back: {
  35297. height: math.unit(15 + 7/12, "feet"),
  35298. weight: math.unit(1150, "tons"),
  35299. name: "Back",
  35300. image: {
  35301. source: "./media/characters/saphinara/back.svg",
  35302. extra: 591/531,
  35303. bottom: 13/604
  35304. },
  35305. form: "normal"
  35306. },
  35307. frontTail: {
  35308. height: math.unit(15 + 7/12, "feet"),
  35309. weight: math.unit(1150, "tons"),
  35310. name: "Front (Full Tail)",
  35311. image: {
  35312. source: "./media/characters/saphinara/front-tail.svg",
  35313. extra: 2256/1630,
  35314. bottom: 261/2517
  35315. },
  35316. form: "normal"
  35317. },
  35318. insides: {
  35319. height: math.unit(11.92, "feet"),
  35320. name: "Insides",
  35321. image: {
  35322. source: "./media/characters/saphinara/insides.svg"
  35323. },
  35324. form: "normal"
  35325. },
  35326. head: {
  35327. height: math.unit(4.17, "feet"),
  35328. name: "Head",
  35329. image: {
  35330. source: "./media/characters/saphinara/head.svg"
  35331. },
  35332. form: "normal"
  35333. },
  35334. tongue: {
  35335. height: math.unit(4.60, "feet"),
  35336. name: "Tongue",
  35337. image: {
  35338. source: "./media/characters/saphinara/tongue.svg"
  35339. },
  35340. form: "normal"
  35341. },
  35342. headEnraged: {
  35343. height: math.unit(5.55, "feet"),
  35344. name: "Head (Enraged)",
  35345. image: {
  35346. source: "./media/characters/saphinara/head-enraged.svg"
  35347. },
  35348. form: "normal"
  35349. },
  35350. wings: {
  35351. height: math.unit(11.95, "feet"),
  35352. name: "Wings",
  35353. image: {
  35354. source: "./media/characters/saphinara/wings.svg"
  35355. },
  35356. form: "normal"
  35357. },
  35358. feathers: {
  35359. height: math.unit(8.92, "feet"),
  35360. name: "Feathers",
  35361. image: {
  35362. source: "./media/characters/saphinara/feathers.svg"
  35363. },
  35364. form: "normal"
  35365. },
  35366. shackles: {
  35367. height: math.unit(2, "feet"),
  35368. name: "Shackles",
  35369. image: {
  35370. source: "./media/characters/saphinara/shackles.svg"
  35371. },
  35372. form: "normal"
  35373. },
  35374. eyes: {
  35375. height: math.unit(1.331, "feet"),
  35376. name: "Eyes",
  35377. image: {
  35378. source: "./media/characters/saphinara/eyes.svg"
  35379. },
  35380. form: "normal"
  35381. },
  35382. eyesEnraged: {
  35383. height: math.unit(1.331, "feet"),
  35384. name: "Eyes (Enraged)",
  35385. image: {
  35386. source: "./media/characters/saphinara/eyes-enraged.svg"
  35387. },
  35388. form: "normal"
  35389. },
  35390. trueFormSide: {
  35391. height: math.unit(200, "feet"),
  35392. weight: math.unit(1e7, "tons"),
  35393. name: "Side",
  35394. image: {
  35395. source: "./media/characters/saphinara/true-form-side.svg",
  35396. extra: 1399/770,
  35397. bottom: 97/1496
  35398. },
  35399. form: "true-form",
  35400. default: true
  35401. },
  35402. trueFormMaw: {
  35403. height: math.unit(71.5, "feet"),
  35404. name: "Maw",
  35405. image: {
  35406. source: "./media/characters/saphinara/true-form-maw.svg",
  35407. extra: 2302/1453,
  35408. bottom: 0/2302
  35409. },
  35410. form: "true-form"
  35411. },
  35412. meowberusSide: {
  35413. height: math.unit(75, "feet"),
  35414. weight: math.unit(180000, "kg"),
  35415. preyCapacity: math.unit(50000, "people"),
  35416. name: "Side",
  35417. image: {
  35418. source: "./media/characters/saphinara/meowberus-side.svg",
  35419. extra: 1400/711,
  35420. bottom: 126/1526
  35421. },
  35422. form: "meowberus",
  35423. extraAttributes: {
  35424. "pawArea": {
  35425. name: "Paw Size",
  35426. power: 2,
  35427. type: "area",
  35428. base: math.unit(35, "m^2")
  35429. }
  35430. }
  35431. },
  35432. },
  35433. [
  35434. {
  35435. name: "Normal",
  35436. height: math.unit(15 + 7/12, "feet"),
  35437. default: true,
  35438. form: "normal"
  35439. },
  35440. {
  35441. name: "Angry",
  35442. height: math.unit(30 + 6/12, "feet"),
  35443. form: "normal"
  35444. },
  35445. {
  35446. name: "Enraged",
  35447. height: math.unit(102 + 1/12, "feet"),
  35448. form: "normal"
  35449. },
  35450. {
  35451. name: "True",
  35452. height: math.unit(200, "feet"),
  35453. default: true,
  35454. form: "true-form"
  35455. },
  35456. {
  35457. name: "Normal",
  35458. height: math.unit(75, "feet"),
  35459. default: true,
  35460. form: "meowberus"
  35461. },
  35462. ],
  35463. {
  35464. "normal": {
  35465. name: "Normal",
  35466. default: true
  35467. },
  35468. "true-form": {
  35469. name: "True Form"
  35470. },
  35471. "meowberus": {
  35472. name: "Meowberus",
  35473. },
  35474. }
  35475. ))
  35476. characterMakers.push(() => makeCharacter(
  35477. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35478. {
  35479. front: {
  35480. height: math.unit(6 + 8/12, "feet"),
  35481. weight: math.unit(300, "lb"),
  35482. name: "Front",
  35483. image: {
  35484. source: "./media/characters/jrain/front.svg",
  35485. extra: 3039/2865,
  35486. bottom: 399/3438
  35487. }
  35488. },
  35489. back: {
  35490. height: math.unit(6 + 8/12, "feet"),
  35491. weight: math.unit(300, "lb"),
  35492. name: "Back",
  35493. image: {
  35494. source: "./media/characters/jrain/back.svg",
  35495. extra: 3089/2938,
  35496. bottom: 172/3261
  35497. }
  35498. },
  35499. head: {
  35500. height: math.unit(2.14, "feet"),
  35501. name: "Head",
  35502. image: {
  35503. source: "./media/characters/jrain/head.svg"
  35504. }
  35505. },
  35506. maw: {
  35507. height: math.unit(1.77, "feet"),
  35508. name: "Maw",
  35509. image: {
  35510. source: "./media/characters/jrain/maw.svg"
  35511. }
  35512. },
  35513. leftHand: {
  35514. height: math.unit(1.1, "feet"),
  35515. name: "Left Hand",
  35516. image: {
  35517. source: "./media/characters/jrain/left-hand.svg"
  35518. }
  35519. },
  35520. rightHand: {
  35521. height: math.unit(1.1, "feet"),
  35522. name: "Right Hand",
  35523. image: {
  35524. source: "./media/characters/jrain/right-hand.svg"
  35525. }
  35526. },
  35527. eye: {
  35528. height: math.unit(0.35, "feet"),
  35529. name: "Eye",
  35530. image: {
  35531. source: "./media/characters/jrain/eye.svg"
  35532. }
  35533. },
  35534. },
  35535. [
  35536. {
  35537. name: "Normal",
  35538. height: math.unit(6 + 8/12, "feet"),
  35539. default: true
  35540. },
  35541. {
  35542. name: "Casually Large",
  35543. height: math.unit(25, "feet")
  35544. },
  35545. {
  35546. name: "Giant",
  35547. height: math.unit(100, "feet")
  35548. },
  35549. {
  35550. name: "Kaiju",
  35551. height: math.unit(300, "feet")
  35552. },
  35553. ]
  35554. ))
  35555. characterMakers.push(() => makeCharacter(
  35556. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35557. {
  35558. dragon: {
  35559. height: math.unit(5, "meters"),
  35560. name: "Dragon",
  35561. image: {
  35562. source: "./media/characters/sabrina/dragon.svg",
  35563. extra: 3670 / 2365,
  35564. bottom: 333 / 4003
  35565. }
  35566. },
  35567. gryphon: {
  35568. height: math.unit(3, "meters"),
  35569. name: "Gryphon",
  35570. image: {
  35571. source: "./media/characters/sabrina/gryphon.svg",
  35572. extra: 1576 / 945,
  35573. bottom: 71 / 1647
  35574. }
  35575. },
  35576. snake: {
  35577. height: math.unit(12, "meters"),
  35578. name: "Snake",
  35579. image: {
  35580. source: "./media/characters/sabrina/snake.svg",
  35581. extra: 1758 / 1320,
  35582. bottom: 186 / 1944
  35583. }
  35584. },
  35585. collar: {
  35586. height: math.unit(1.86, "meters"),
  35587. name: "Collar",
  35588. image: {
  35589. source: "./media/characters/sabrina/collar.svg"
  35590. }
  35591. },
  35592. eye: {
  35593. height: math.unit(0.53, "meters"),
  35594. name: "Eye",
  35595. image: {
  35596. source: "./media/characters/sabrina/eye.svg"
  35597. }
  35598. },
  35599. foot: {
  35600. height: math.unit(1.86, "meters"),
  35601. name: "Foot",
  35602. image: {
  35603. source: "./media/characters/sabrina/foot.svg"
  35604. }
  35605. },
  35606. hand: {
  35607. height: math.unit(1.32, "meters"),
  35608. name: "Hand",
  35609. image: {
  35610. source: "./media/characters/sabrina/hand.svg"
  35611. }
  35612. },
  35613. head: {
  35614. height: math.unit(2.44, "meters"),
  35615. name: "Head",
  35616. image: {
  35617. source: "./media/characters/sabrina/head.svg"
  35618. }
  35619. },
  35620. headAngry: {
  35621. height: math.unit(2.44, "meters"),
  35622. name: "Head (Angry))",
  35623. image: {
  35624. source: "./media/characters/sabrina/head-angry.svg"
  35625. }
  35626. },
  35627. maw: {
  35628. height: math.unit(1.65, "meters"),
  35629. name: "Maw",
  35630. image: {
  35631. source: "./media/characters/sabrina/maw.svg"
  35632. }
  35633. },
  35634. spikes: {
  35635. height: math.unit(1.69, "meters"),
  35636. name: "Spikes",
  35637. image: {
  35638. source: "./media/characters/sabrina/spikes.svg"
  35639. }
  35640. },
  35641. stomach: {
  35642. height: math.unit(1.15, "meters"),
  35643. name: "Stomach",
  35644. image: {
  35645. source: "./media/characters/sabrina/stomach.svg"
  35646. }
  35647. },
  35648. tongue: {
  35649. height: math.unit(1.27, "meters"),
  35650. name: "Tongue",
  35651. image: {
  35652. source: "./media/characters/sabrina/tongue.svg"
  35653. }
  35654. },
  35655. wingDorsal: {
  35656. height: math.unit(4.85, "meters"),
  35657. name: "Wing (Dorsal)",
  35658. image: {
  35659. source: "./media/characters/sabrina/wing-dorsal.svg"
  35660. }
  35661. },
  35662. wingVentral: {
  35663. height: math.unit(4.85, "meters"),
  35664. name: "Wing (Ventral)",
  35665. image: {
  35666. source: "./media/characters/sabrina/wing-ventral.svg"
  35667. }
  35668. },
  35669. },
  35670. [
  35671. {
  35672. name: "Normal",
  35673. height: math.unit(5, "meters"),
  35674. default: true
  35675. },
  35676. ]
  35677. ))
  35678. characterMakers.push(() => makeCharacter(
  35679. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35680. {
  35681. frontMaid: {
  35682. height: math.unit(5 + 5/12, "feet"),
  35683. weight: math.unit(130, "lb"),
  35684. name: "Front (Maid)",
  35685. image: {
  35686. source: "./media/characters/midnight-tales/front-maid.svg",
  35687. extra: 489/454,
  35688. bottom: 61/550
  35689. }
  35690. },
  35691. frontFormal: {
  35692. height: math.unit(5 + 5/12, "feet"),
  35693. weight: math.unit(130, "lb"),
  35694. name: "Front (Formal)",
  35695. image: {
  35696. source: "./media/characters/midnight-tales/front-formal.svg",
  35697. extra: 489/454,
  35698. bottom: 61/550
  35699. }
  35700. },
  35701. back: {
  35702. height: math.unit(5 + 5/12, "feet"),
  35703. weight: math.unit(130, "lb"),
  35704. name: "Back",
  35705. image: {
  35706. source: "./media/characters/midnight-tales/back.svg",
  35707. extra: 498/456,
  35708. bottom: 33/531
  35709. }
  35710. },
  35711. frontBeast: {
  35712. height: math.unit(40, "feet"),
  35713. weight: math.unit(64000, "lb"),
  35714. name: "Front (Beast)",
  35715. image: {
  35716. source: "./media/characters/midnight-tales/front-beast.svg",
  35717. extra: 927/860,
  35718. bottom: 53/980
  35719. }
  35720. },
  35721. backBeast: {
  35722. height: math.unit(40, "feet"),
  35723. weight: math.unit(64000, "lb"),
  35724. name: "Back (Beast)",
  35725. image: {
  35726. source: "./media/characters/midnight-tales/back-beast.svg",
  35727. extra: 929/855,
  35728. bottom: 16/945
  35729. }
  35730. },
  35731. footBeast: {
  35732. height: math.unit(6.7, "feet"),
  35733. name: "Foot (Beast)",
  35734. image: {
  35735. source: "./media/characters/midnight-tales/foot-beast.svg"
  35736. }
  35737. },
  35738. headBeast: {
  35739. height: math.unit(8, "feet"),
  35740. name: "Head (Beast)",
  35741. image: {
  35742. source: "./media/characters/midnight-tales/head-beast.svg"
  35743. }
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "Normal",
  35749. height: math.unit(5 + 5 / 12, "feet"),
  35750. default: true
  35751. },
  35752. {
  35753. name: "Macro",
  35754. height: math.unit(25, "feet")
  35755. },
  35756. ]
  35757. ))
  35758. characterMakers.push(() => makeCharacter(
  35759. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35760. {
  35761. front: {
  35762. height: math.unit(5 + 10/12, "feet"),
  35763. name: "Front",
  35764. image: {
  35765. source: "./media/characters/argon/front.svg",
  35766. extra: 2009/1935,
  35767. bottom: 118/2127
  35768. }
  35769. },
  35770. back: {
  35771. height: math.unit(5 + 10/12, "feet"),
  35772. name: "Back",
  35773. image: {
  35774. source: "./media/characters/argon/back.svg",
  35775. extra: 2047/1992,
  35776. bottom: 20/2067
  35777. }
  35778. },
  35779. frontDressed: {
  35780. height: math.unit(5 + 10/12, "feet"),
  35781. name: "Front (Dressed)",
  35782. image: {
  35783. source: "./media/characters/argon/front-dressed.svg",
  35784. extra: 2009/1935,
  35785. bottom: 118/2127
  35786. }
  35787. },
  35788. },
  35789. [
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(5 + 10/12, "feet"),
  35793. default: true
  35794. },
  35795. ]
  35796. ))
  35797. characterMakers.push(() => makeCharacter(
  35798. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35799. {
  35800. front: {
  35801. height: math.unit(8 + 6/12, "feet"),
  35802. weight: math.unit(1150, "lb"),
  35803. name: "Front",
  35804. image: {
  35805. source: "./media/characters/kichi/front.svg",
  35806. extra: 1267/1164,
  35807. bottom: 61/1328
  35808. }
  35809. },
  35810. back: {
  35811. height: math.unit(8 + 6/12, "feet"),
  35812. weight: math.unit(1150, "lb"),
  35813. name: "Back",
  35814. image: {
  35815. source: "./media/characters/kichi/back.svg",
  35816. extra: 1273/1166,
  35817. bottom: 33/1306
  35818. }
  35819. },
  35820. },
  35821. [
  35822. {
  35823. name: "Normal",
  35824. height: math.unit(8 + 6/12, "feet"),
  35825. default: true
  35826. },
  35827. ]
  35828. ))
  35829. characterMakers.push(() => makeCharacter(
  35830. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35831. {
  35832. front: {
  35833. height: math.unit(6, "feet"),
  35834. weight: math.unit(210, "lb"),
  35835. name: "Front",
  35836. image: {
  35837. source: "./media/characters/manetel-greyscale/front.svg",
  35838. extra: 350/312,
  35839. bottom: 8/358
  35840. }
  35841. },
  35842. },
  35843. [
  35844. {
  35845. name: "Micro",
  35846. height: math.unit(2, "inches")
  35847. },
  35848. {
  35849. name: "Normal",
  35850. height: math.unit(6, "feet"),
  35851. default: true
  35852. },
  35853. {
  35854. name: "Minimacro",
  35855. height: math.unit(17, "feet")
  35856. },
  35857. {
  35858. name: "Macro",
  35859. height: math.unit(117, "feet")
  35860. },
  35861. ]
  35862. ))
  35863. characterMakers.push(() => makeCharacter(
  35864. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35865. {
  35866. side: {
  35867. height: math.unit(5 + 1/12, "feet"),
  35868. weight: math.unit(418, "lb"),
  35869. name: "Side",
  35870. image: {
  35871. source: "./media/characters/softpurr/side.svg",
  35872. extra: 1993/1945,
  35873. bottom: 134/2127
  35874. }
  35875. },
  35876. front: {
  35877. height: math.unit(5 + 1/12, "feet"),
  35878. weight: math.unit(418, "lb"),
  35879. name: "Front",
  35880. image: {
  35881. source: "./media/characters/softpurr/front.svg",
  35882. extra: 1950/1856,
  35883. bottom: 174/2124
  35884. }
  35885. },
  35886. paw: {
  35887. height: math.unit(1, "feet"),
  35888. name: "Paw",
  35889. image: {
  35890. source: "./media/characters/softpurr/paw.svg"
  35891. }
  35892. },
  35893. },
  35894. [
  35895. {
  35896. name: "Normal",
  35897. height: math.unit(5 + 1/12, "feet"),
  35898. default: true
  35899. },
  35900. ]
  35901. ))
  35902. characterMakers.push(() => makeCharacter(
  35903. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35904. {
  35905. front: {
  35906. height: math.unit(260, "meters"),
  35907. name: "Front",
  35908. image: {
  35909. source: "./media/characters/anahita/front.svg",
  35910. extra: 665/635,
  35911. bottom: 89/754
  35912. }
  35913. },
  35914. },
  35915. [
  35916. {
  35917. name: "Macro",
  35918. height: math.unit(260, "meters"),
  35919. default: true
  35920. },
  35921. ]
  35922. ))
  35923. characterMakers.push(() => makeCharacter(
  35924. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35925. {
  35926. front: {
  35927. height: math.unit(4 + 10/12, "feet"),
  35928. weight: math.unit(160, "lb"),
  35929. name: "Front",
  35930. image: {
  35931. source: "./media/characters/chip-mouse/front.svg",
  35932. extra: 3528/3408,
  35933. bottom: 0/3528
  35934. }
  35935. },
  35936. frontNsfw: {
  35937. height: math.unit(4 + 10/12, "feet"),
  35938. weight: math.unit(160, "lb"),
  35939. name: "Front (NSFW)",
  35940. image: {
  35941. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35942. extra: 3528/3408,
  35943. bottom: 0/3528
  35944. }
  35945. },
  35946. },
  35947. [
  35948. {
  35949. name: "Normal",
  35950. height: math.unit(4 + 10/12, "feet"),
  35951. default: true
  35952. },
  35953. ]
  35954. ))
  35955. characterMakers.push(() => makeCharacter(
  35956. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35957. {
  35958. side: {
  35959. height: math.unit(10, "feet"),
  35960. weight: math.unit(14000, "lb"),
  35961. name: "Side",
  35962. image: {
  35963. source: "./media/characters/kremm/side.svg",
  35964. extra: 1390/1053,
  35965. bottom: 90/1480
  35966. }
  35967. },
  35968. gut: {
  35969. height: math.unit(5.8, "feet"),
  35970. name: "Gut",
  35971. image: {
  35972. source: "./media/characters/kremm/gut.svg"
  35973. }
  35974. },
  35975. ass: {
  35976. height: math.unit(6.1, "feet"),
  35977. name: "Ass",
  35978. image: {
  35979. source: "./media/characters/kremm/ass.svg"
  35980. }
  35981. },
  35982. jaws: {
  35983. height: math.unit(2.2, "feet"),
  35984. name: "Jaws",
  35985. image: {
  35986. source: "./media/characters/kremm/jaws.svg"
  35987. }
  35988. },
  35989. dick: {
  35990. height: math.unit(4.26, "feet"),
  35991. name: "Dick",
  35992. image: {
  35993. source: "./media/characters/kremm/dick.svg"
  35994. }
  35995. },
  35996. },
  35997. [
  35998. {
  35999. name: "Normal",
  36000. height: math.unit(10, "feet"),
  36001. default: true
  36002. },
  36003. ]
  36004. ))
  36005. characterMakers.push(() => makeCharacter(
  36006. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36007. {
  36008. front: {
  36009. height: math.unit(30, "stories"),
  36010. name: "Front",
  36011. image: {
  36012. source: "./media/characters/kai/front.svg",
  36013. extra: 1892/1718,
  36014. bottom: 162/2054
  36015. }
  36016. },
  36017. },
  36018. [
  36019. {
  36020. name: "Macro",
  36021. height: math.unit(30, "stories"),
  36022. default: true
  36023. },
  36024. ]
  36025. ))
  36026. characterMakers.push(() => makeCharacter(
  36027. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36028. {
  36029. front: {
  36030. height: math.unit(6 + 4/12, "feet"),
  36031. weight: math.unit(145, "lb"),
  36032. name: "Front",
  36033. image: {
  36034. source: "./media/characters/sykes/front.svg",
  36035. extra: 1321 / 1187,
  36036. bottom: 66 / 1387
  36037. }
  36038. },
  36039. back: {
  36040. height: math.unit(6 + 4/12, "feet"),
  36041. weight: math.unit(145, "lb"),
  36042. name: "Back",
  36043. image: {
  36044. source: "./media/characters/sykes/back.svg",
  36045. extra: 1326/1181,
  36046. bottom: 31/1357
  36047. }
  36048. },
  36049. traditionalOutfit: {
  36050. height: math.unit(6 + 4/12, "feet"),
  36051. weight: math.unit(145, "lb"),
  36052. name: "Traditional Outfit",
  36053. image: {
  36054. source: "./media/characters/sykes/traditional-outfit.svg",
  36055. extra: 1321 / 1187,
  36056. bottom: 66 / 1387
  36057. }
  36058. },
  36059. adventureOutfit: {
  36060. height: math.unit(6 + 4/12, "feet"),
  36061. weight: math.unit(145, "lb"),
  36062. name: "Adventure Outfit",
  36063. image: {
  36064. source: "./media/characters/sykes/adventure-outfit.svg",
  36065. extra: 1321 / 1187,
  36066. bottom: 66 / 1387
  36067. }
  36068. },
  36069. handLeft: {
  36070. height: math.unit(0.9, "feet"),
  36071. name: "Hand (Left)",
  36072. image: {
  36073. source: "./media/characters/sykes/hand-left.svg"
  36074. }
  36075. },
  36076. handRight: {
  36077. height: math.unit(0.839, "feet"),
  36078. name: "Hand (Right)",
  36079. image: {
  36080. source: "./media/characters/sykes/hand-right.svg"
  36081. }
  36082. },
  36083. leftFoot: {
  36084. height: math.unit(1.2, "feet"),
  36085. name: "Foot (Left)",
  36086. image: {
  36087. source: "./media/characters/sykes/foot-left.svg"
  36088. }
  36089. },
  36090. rightFoot: {
  36091. height: math.unit(1.2, "feet"),
  36092. name: "Foot (Right)",
  36093. image: {
  36094. source: "./media/characters/sykes/foot-right.svg"
  36095. }
  36096. },
  36097. maw: {
  36098. height: math.unit(1.93, "feet"),
  36099. name: "Maw",
  36100. image: {
  36101. source: "./media/characters/sykes/maw.svg"
  36102. }
  36103. },
  36104. teeth: {
  36105. height: math.unit(0.51, "feet"),
  36106. name: "Teeth",
  36107. image: {
  36108. source: "./media/characters/sykes/teeth.svg"
  36109. }
  36110. },
  36111. tongue: {
  36112. height: math.unit(2.13, "feet"),
  36113. name: "Tongue",
  36114. image: {
  36115. source: "./media/characters/sykes/tongue.svg"
  36116. }
  36117. },
  36118. uvula: {
  36119. height: math.unit(0.16, "feet"),
  36120. name: "Uvula",
  36121. image: {
  36122. source: "./media/characters/sykes/uvula.svg"
  36123. }
  36124. },
  36125. collar: {
  36126. height: math.unit(0.287, "feet"),
  36127. name: "Collar",
  36128. image: {
  36129. source: "./media/characters/sykes/collar.svg"
  36130. }
  36131. },
  36132. tail: {
  36133. height: math.unit(3.8, "feet"),
  36134. name: "Tail",
  36135. image: {
  36136. source: "./media/characters/sykes/tail.svg"
  36137. }
  36138. },
  36139. },
  36140. [
  36141. {
  36142. name: "Shrunken",
  36143. height: math.unit(5, "inches")
  36144. },
  36145. {
  36146. name: "Normal",
  36147. height: math.unit(6 + 4 / 12, "feet"),
  36148. default: true
  36149. },
  36150. {
  36151. name: "Big",
  36152. height: math.unit(15, "feet")
  36153. },
  36154. ]
  36155. ))
  36156. characterMakers.push(() => makeCharacter(
  36157. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36158. {
  36159. front: {
  36160. height: math.unit(5 + 8/12, "feet"),
  36161. weight: math.unit(190, "lb"),
  36162. name: "Front",
  36163. image: {
  36164. source: "./media/characters/oven-otter/front.svg",
  36165. extra: 1809/1740,
  36166. bottom: 181/1990
  36167. }
  36168. },
  36169. back: {
  36170. height: math.unit(5 + 8/12, "feet"),
  36171. weight: math.unit(190, "lb"),
  36172. name: "Back",
  36173. image: {
  36174. source: "./media/characters/oven-otter/back.svg",
  36175. extra: 1709/1635,
  36176. bottom: 118/1827
  36177. }
  36178. },
  36179. hand: {
  36180. height: math.unit(1.07, "feet"),
  36181. name: "Hand",
  36182. image: {
  36183. source: "./media/characters/oven-otter/hand.svg"
  36184. }
  36185. },
  36186. beans: {
  36187. height: math.unit(1.74, "feet"),
  36188. name: "Beans",
  36189. image: {
  36190. source: "./media/characters/oven-otter/beans.svg"
  36191. }
  36192. },
  36193. },
  36194. [
  36195. {
  36196. name: "Micro",
  36197. height: math.unit(0.5, "inches")
  36198. },
  36199. {
  36200. name: "Normal",
  36201. height: math.unit(5 + 8/12, "feet"),
  36202. default: true
  36203. },
  36204. {
  36205. name: "Macro",
  36206. height: math.unit(250, "feet")
  36207. },
  36208. {
  36209. name: "Really High",
  36210. height: math.unit(420, "feet")
  36211. },
  36212. ]
  36213. ))
  36214. characterMakers.push(() => makeCharacter(
  36215. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36216. {
  36217. front: {
  36218. height: math.unit(5, "meters"),
  36219. weight: math.unit(292000000000000, "kg"),
  36220. name: "Front",
  36221. image: {
  36222. source: "./media/characters/devourer/front.svg",
  36223. extra: 1800/1733,
  36224. bottom: 211/2011
  36225. }
  36226. },
  36227. maw: {
  36228. height: math.unit(1.1, "meter"),
  36229. name: "Maw",
  36230. image: {
  36231. source: "./media/characters/devourer/maw.svg"
  36232. }
  36233. },
  36234. },
  36235. [
  36236. {
  36237. name: "Small",
  36238. height: math.unit(3, "meters")
  36239. },
  36240. {
  36241. name: "Large",
  36242. height: math.unit(5, "meters"),
  36243. default: true
  36244. },
  36245. ]
  36246. ))
  36247. characterMakers.push(() => makeCharacter(
  36248. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36249. {
  36250. front: {
  36251. height: math.unit(6, "feet"),
  36252. weight: math.unit(400, "lb"),
  36253. name: "Front",
  36254. image: {
  36255. source: "./media/characters/ellarby/front.svg",
  36256. extra: 1909/1763,
  36257. bottom: 80/1989
  36258. }
  36259. },
  36260. back: {
  36261. height: math.unit(6, "feet"),
  36262. weight: math.unit(400, "lb"),
  36263. name: "Back",
  36264. image: {
  36265. source: "./media/characters/ellarby/back.svg",
  36266. extra: 1914/1784,
  36267. bottom: 172/2086
  36268. }
  36269. },
  36270. },
  36271. [
  36272. {
  36273. name: "Mischief",
  36274. height: math.unit(18, "inches")
  36275. },
  36276. {
  36277. name: "Trouble",
  36278. height: math.unit(12, "feet")
  36279. },
  36280. {
  36281. name: "Havoc",
  36282. height: math.unit(200, "feet"),
  36283. default: true
  36284. },
  36285. {
  36286. name: "Pandemonium",
  36287. height: math.unit(1, "mile")
  36288. },
  36289. {
  36290. name: "Catastrophe",
  36291. height: math.unit(100, "miles")
  36292. },
  36293. ]
  36294. ))
  36295. characterMakers.push(() => makeCharacter(
  36296. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36297. {
  36298. front: {
  36299. height: math.unit(4.7, "meters"),
  36300. weight: math.unit(6500, "kg"),
  36301. name: "Front",
  36302. image: {
  36303. source: "./media/characters/vex/front.svg",
  36304. extra: 1288/1140,
  36305. bottom: 100/1388
  36306. }
  36307. },
  36308. },
  36309. [
  36310. {
  36311. name: "Normal",
  36312. height: math.unit(4.7, "meters"),
  36313. default: true
  36314. },
  36315. ]
  36316. ))
  36317. characterMakers.push(() => makeCharacter(
  36318. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36319. {
  36320. normal: {
  36321. height: math.unit(6, "feet"),
  36322. weight: math.unit(350, "lb"),
  36323. name: "Normal",
  36324. image: {
  36325. source: "./media/characters/teshy/normal.svg",
  36326. extra: 1795/1735,
  36327. bottom: 16/1811
  36328. }
  36329. },
  36330. monsterFront: {
  36331. height: math.unit(12, "feet"),
  36332. weight: math.unit(4700, "lb"),
  36333. name: "Monster (Front)",
  36334. image: {
  36335. source: "./media/characters/teshy/monster-front.svg",
  36336. extra: 2042/2034,
  36337. bottom: 128/2170
  36338. }
  36339. },
  36340. monsterSide: {
  36341. height: math.unit(12, "feet"),
  36342. weight: math.unit(4700, "lb"),
  36343. name: "Monster (Side)",
  36344. image: {
  36345. source: "./media/characters/teshy/monster-side.svg",
  36346. extra: 2067/2056,
  36347. bottom: 70/2137
  36348. }
  36349. },
  36350. monsterBack: {
  36351. height: math.unit(12, "feet"),
  36352. weight: math.unit(4700, "lb"),
  36353. name: "Monster (Back)",
  36354. image: {
  36355. source: "./media/characters/teshy/monster-back.svg",
  36356. extra: 1921/1914,
  36357. bottom: 171/2092
  36358. }
  36359. },
  36360. },
  36361. [
  36362. {
  36363. name: "Normal",
  36364. height: math.unit(6, "feet"),
  36365. default: true
  36366. },
  36367. ]
  36368. ))
  36369. characterMakers.push(() => makeCharacter(
  36370. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36371. {
  36372. front: {
  36373. height: math.unit(6, "feet"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/ramey/front.svg",
  36377. extra: 790/787,
  36378. bottom: 27/817
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Normal",
  36385. height: math.unit(6, "feet"),
  36386. default: true
  36387. },
  36388. ]
  36389. ))
  36390. characterMakers.push(() => makeCharacter(
  36391. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36392. {
  36393. front: {
  36394. height: math.unit(5 + 5/12, "feet"),
  36395. weight: math.unit(120, "lb"),
  36396. name: "Front",
  36397. image: {
  36398. source: "./media/characters/phirae/front.svg",
  36399. extra: 2491/2436,
  36400. bottom: 38/2529
  36401. }
  36402. },
  36403. },
  36404. [
  36405. {
  36406. name: "Normal",
  36407. height: math.unit(5 + 5/12, "feet"),
  36408. default: true
  36409. },
  36410. ]
  36411. ))
  36412. characterMakers.push(() => makeCharacter(
  36413. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36414. {
  36415. front: {
  36416. height: math.unit(5 + 3/12, "feet"),
  36417. name: "Front",
  36418. image: {
  36419. source: "./media/characters/stagglas/front.svg",
  36420. extra: 962/882,
  36421. bottom: 53/1015
  36422. }
  36423. },
  36424. feral: {
  36425. height: math.unit(335, "cm"),
  36426. name: "Feral",
  36427. image: {
  36428. source: "./media/characters/stagglas/feral.svg",
  36429. extra: 1732/1090,
  36430. bottom: 48/1780
  36431. }
  36432. },
  36433. },
  36434. [
  36435. {
  36436. name: "Normal",
  36437. height: math.unit(5 + 3/12, "feet"),
  36438. default: true
  36439. },
  36440. ]
  36441. ))
  36442. characterMakers.push(() => makeCharacter(
  36443. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36444. {
  36445. front: {
  36446. height: math.unit(5 + 4/12, "feet"),
  36447. weight: math.unit(145, "lb"),
  36448. name: "Front",
  36449. image: {
  36450. source: "./media/characters/starra/front.svg",
  36451. extra: 1790/1691,
  36452. bottom: 91/1881
  36453. }
  36454. },
  36455. },
  36456. [
  36457. {
  36458. name: "Normal",
  36459. height: math.unit(5 + 4/12, "feet"),
  36460. default: true
  36461. },
  36462. ]
  36463. ))
  36464. characterMakers.push(() => makeCharacter(
  36465. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36466. {
  36467. front: {
  36468. height: math.unit(2.2, "meters"),
  36469. name: "Front",
  36470. image: {
  36471. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36472. extra: 1248/972,
  36473. bottom: 38/1286
  36474. }
  36475. },
  36476. },
  36477. [
  36478. {
  36479. name: "Normal",
  36480. height: math.unit(2.2, "meters"),
  36481. default: true
  36482. },
  36483. ]
  36484. ))
  36485. characterMakers.push(() => makeCharacter(
  36486. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36487. {
  36488. side: {
  36489. height: math.unit(8 + 2/12, "feet"),
  36490. weight: math.unit(1240, "lb"),
  36491. name: "Side",
  36492. image: {
  36493. source: "./media/characters/mika-valentine/side.svg",
  36494. extra: 2670/2501,
  36495. bottom: 250/2920
  36496. }
  36497. },
  36498. },
  36499. [
  36500. {
  36501. name: "Normal",
  36502. height: math.unit(8 + 2/12, "feet"),
  36503. default: true
  36504. },
  36505. ]
  36506. ))
  36507. characterMakers.push(() => makeCharacter(
  36508. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36509. {
  36510. front: {
  36511. height: math.unit(7 + 2/12, "feet"),
  36512. name: "Front",
  36513. image: {
  36514. source: "./media/characters/xoltol/front.svg",
  36515. extra: 2212/2124,
  36516. bottom: 84/2296
  36517. }
  36518. },
  36519. side: {
  36520. height: math.unit(7 + 2/12, "feet"),
  36521. name: "Side",
  36522. image: {
  36523. source: "./media/characters/xoltol/side.svg",
  36524. extra: 2273/2197,
  36525. bottom: 26/2299
  36526. }
  36527. },
  36528. hand: {
  36529. height: math.unit(2.5, "feet"),
  36530. name: "Hand",
  36531. image: {
  36532. source: "./media/characters/xoltol/hand.svg"
  36533. }
  36534. },
  36535. },
  36536. [
  36537. {
  36538. name: "Small-ish",
  36539. height: math.unit(5 + 11/12, "feet")
  36540. },
  36541. {
  36542. name: "Normal",
  36543. height: math.unit(7 + 2/12, "feet")
  36544. },
  36545. {
  36546. name: "\"Macro\"",
  36547. height: math.unit(14 + 9/12, "feet"),
  36548. default: true
  36549. },
  36550. {
  36551. name: "Alternate Height",
  36552. height: math.unit(20, "feet")
  36553. },
  36554. {
  36555. name: "Actually Macro",
  36556. height: math.unit(100, "feet")
  36557. },
  36558. ]
  36559. ))
  36560. characterMakers.push(() => makeCharacter(
  36561. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36562. {
  36563. front: {
  36564. height: math.unit(5 + 2/12, "feet"),
  36565. name: "Front",
  36566. image: {
  36567. source: "./media/characters/kotetsu-redwood/front.svg",
  36568. extra: 1053/942,
  36569. bottom: 60/1113
  36570. }
  36571. },
  36572. },
  36573. [
  36574. {
  36575. name: "Normal",
  36576. height: math.unit(5 + 2/12, "feet"),
  36577. default: true
  36578. },
  36579. ]
  36580. ))
  36581. characterMakers.push(() => makeCharacter(
  36582. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36583. {
  36584. front: {
  36585. height: math.unit(2.4, "meters"),
  36586. weight: math.unit(125, "kg"),
  36587. name: "Front",
  36588. image: {
  36589. source: "./media/characters/lilith/front.svg",
  36590. extra: 1590/1513,
  36591. bottom: 203/1793
  36592. }
  36593. },
  36594. },
  36595. [
  36596. {
  36597. name: "Humanoid",
  36598. height: math.unit(2.4, "meters")
  36599. },
  36600. {
  36601. name: "Normal",
  36602. height: math.unit(6, "meters"),
  36603. default: true
  36604. },
  36605. {
  36606. name: "Largest",
  36607. height: math.unit(55, "meters")
  36608. },
  36609. ]
  36610. ))
  36611. characterMakers.push(() => makeCharacter(
  36612. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36613. {
  36614. front: {
  36615. height: math.unit(8 + 4/12, "feet"),
  36616. weight: math.unit(535, "lb"),
  36617. name: "Front",
  36618. image: {
  36619. source: "./media/characters/beh'kah-bolger/front.svg",
  36620. extra: 1660/1603,
  36621. bottom: 37/1697
  36622. }
  36623. },
  36624. },
  36625. [
  36626. {
  36627. name: "Normal",
  36628. height: math.unit(8 + 4/12, "feet"),
  36629. default: true
  36630. },
  36631. {
  36632. name: "Kaiju",
  36633. height: math.unit(250, "feet")
  36634. },
  36635. {
  36636. name: "Still Growing",
  36637. height: math.unit(10, "miles")
  36638. },
  36639. {
  36640. name: "Continental",
  36641. height: math.unit(5000, "miles")
  36642. },
  36643. {
  36644. name: "Final Form",
  36645. height: math.unit(2500000, "miles")
  36646. },
  36647. ]
  36648. ))
  36649. characterMakers.push(() => makeCharacter(
  36650. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36651. {
  36652. front: {
  36653. height: math.unit(7 + 2/12, "feet"),
  36654. weight: math.unit(230, "kg"),
  36655. name: "Front",
  36656. image: {
  36657. source: "./media/characters/tatyana-milewska/front.svg",
  36658. extra: 1199/1150,
  36659. bottom: 86/1285
  36660. }
  36661. },
  36662. },
  36663. [
  36664. {
  36665. name: "Normal",
  36666. height: math.unit(7 + 2/12, "feet"),
  36667. default: true
  36668. },
  36669. {
  36670. name: "Big",
  36671. height: math.unit(12, "feet")
  36672. },
  36673. {
  36674. name: "Minimacro",
  36675. height: math.unit(20, "feet")
  36676. },
  36677. {
  36678. name: "Macro",
  36679. height: math.unit(120, "feet")
  36680. },
  36681. ]
  36682. ))
  36683. characterMakers.push(() => makeCharacter(
  36684. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36685. {
  36686. front: {
  36687. height: math.unit(7 + 8/12, "feet"),
  36688. weight: math.unit(152, "kg"),
  36689. name: "Front",
  36690. image: {
  36691. source: "./media/characters/helen-arri/front.svg",
  36692. extra: 440/423,
  36693. bottom: 14/454
  36694. }
  36695. },
  36696. back: {
  36697. height: math.unit(7 + 8/12, "feet"),
  36698. weight: math.unit(152, "kg"),
  36699. name: "Back",
  36700. image: {
  36701. source: "./media/characters/helen-arri/back.svg",
  36702. extra: 443/426,
  36703. bottom: 8/451
  36704. }
  36705. },
  36706. },
  36707. [
  36708. {
  36709. name: "Normal",
  36710. height: math.unit(7 + 8/12, "feet"),
  36711. default: true
  36712. },
  36713. {
  36714. name: "Big",
  36715. height: math.unit(14, "feet")
  36716. },
  36717. {
  36718. name: "Minimacro",
  36719. height: math.unit(24, "feet")
  36720. },
  36721. {
  36722. name: "Macro",
  36723. height: math.unit(140, "feet")
  36724. },
  36725. ]
  36726. ))
  36727. characterMakers.push(() => makeCharacter(
  36728. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36729. {
  36730. front: {
  36731. height: math.unit(6, "meters"),
  36732. name: "Front",
  36733. image: {
  36734. source: "./media/characters/ehanu-rehu/front.svg",
  36735. extra: 1800/1800,
  36736. bottom: 59/1859
  36737. }
  36738. },
  36739. },
  36740. [
  36741. {
  36742. name: "Normal",
  36743. height: math.unit(6, "meters"),
  36744. default: true
  36745. },
  36746. ]
  36747. ))
  36748. characterMakers.push(() => makeCharacter(
  36749. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36750. {
  36751. front: {
  36752. height: math.unit(7 + 3/12, "feet"),
  36753. name: "Front",
  36754. image: {
  36755. source: "./media/characters/renholder/front.svg",
  36756. extra: 3096/2960,
  36757. bottom: 250/3346
  36758. }
  36759. },
  36760. },
  36761. [
  36762. {
  36763. name: "Normal Bat",
  36764. height: math.unit(7 + 3/12, "feet"),
  36765. default: true
  36766. },
  36767. {
  36768. name: "Slightly Tall Bat",
  36769. height: math.unit(100, "feet")
  36770. },
  36771. {
  36772. name: "Big Bat",
  36773. height: math.unit(1000, "feet")
  36774. },
  36775. {
  36776. name: "City-Sized Bat",
  36777. height: math.unit(200000, "feet")
  36778. },
  36779. {
  36780. name: "Bigger Bat",
  36781. height: math.unit(10000, "miles")
  36782. },
  36783. {
  36784. name: "Solar Sized Bat",
  36785. height: math.unit(100, "AU")
  36786. },
  36787. {
  36788. name: "Galactic Bat",
  36789. height: math.unit(200000, "lightyears")
  36790. },
  36791. {
  36792. name: "Universally Known Bat",
  36793. height: math.unit(1, "universe")
  36794. },
  36795. ]
  36796. ))
  36797. characterMakers.push(() => makeCharacter(
  36798. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36799. {
  36800. front: {
  36801. height: math.unit(6 + 11/12, "feet"),
  36802. weight: math.unit(250, "lb"),
  36803. name: "Front",
  36804. image: {
  36805. source: "./media/characters/cookiecat/front.svg",
  36806. extra: 893/827,
  36807. bottom: 14/907
  36808. }
  36809. },
  36810. },
  36811. [
  36812. {
  36813. name: "Micro",
  36814. height: math.unit(3, "inches")
  36815. },
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(6 + 11/12, "feet"),
  36819. default: true
  36820. },
  36821. {
  36822. name: "Macro",
  36823. height: math.unit(100, "feet")
  36824. },
  36825. {
  36826. name: "Macro+",
  36827. height: math.unit(404, "feet")
  36828. },
  36829. {
  36830. name: "Megamacro",
  36831. height: math.unit(165, "miles")
  36832. },
  36833. {
  36834. name: "Planetary",
  36835. height: math.unit(4600, "miles")
  36836. },
  36837. ]
  36838. ))
  36839. characterMakers.push(() => makeCharacter(
  36840. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36841. {
  36842. front: {
  36843. height: math.unit(10 + 3/12, "feet"),
  36844. weight: math.unit(1500, "lb"),
  36845. name: "Front",
  36846. image: {
  36847. source: "./media/characters/tux-kusanagi/front.svg",
  36848. extra: 944/840,
  36849. bottom: 39/983
  36850. }
  36851. },
  36852. back: {
  36853. height: math.unit(10 + 3/12, "feet"),
  36854. weight: math.unit(1500, "lb"),
  36855. name: "Back",
  36856. image: {
  36857. source: "./media/characters/tux-kusanagi/back.svg",
  36858. extra: 941/842,
  36859. bottom: 28/969
  36860. }
  36861. },
  36862. rump: {
  36863. height: math.unit(5.25, "feet"),
  36864. name: "Rump",
  36865. image: {
  36866. source: "./media/characters/tux-kusanagi/rump.svg"
  36867. }
  36868. },
  36869. beak: {
  36870. height: math.unit(1.54, "feet"),
  36871. name: "Beak",
  36872. image: {
  36873. source: "./media/characters/tux-kusanagi/beak.svg"
  36874. }
  36875. },
  36876. },
  36877. [
  36878. {
  36879. name: "Normal",
  36880. height: math.unit(10 + 3/12, "feet"),
  36881. default: true
  36882. },
  36883. ]
  36884. ))
  36885. characterMakers.push(() => makeCharacter(
  36886. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36887. {
  36888. front: {
  36889. height: math.unit(58, "feet"),
  36890. weight: math.unit(200, "tons"),
  36891. name: "Front",
  36892. image: {
  36893. source: "./media/characters/uzarmazari/front.svg",
  36894. extra: 1575/1455,
  36895. bottom: 152/1727
  36896. }
  36897. },
  36898. back: {
  36899. height: math.unit(58, "feet"),
  36900. weight: math.unit(200, "tons"),
  36901. name: "Back",
  36902. image: {
  36903. source: "./media/characters/uzarmazari/back.svg",
  36904. extra: 1585/1510,
  36905. bottom: 157/1742
  36906. }
  36907. },
  36908. head: {
  36909. height: math.unit(26, "feet"),
  36910. name: "Head",
  36911. image: {
  36912. source: "./media/characters/uzarmazari/head.svg"
  36913. }
  36914. },
  36915. },
  36916. [
  36917. {
  36918. name: "Normal",
  36919. height: math.unit(58, "feet"),
  36920. default: true
  36921. },
  36922. ]
  36923. ))
  36924. characterMakers.push(() => makeCharacter(
  36925. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36926. {
  36927. side: {
  36928. height: math.unit(15, "feet"),
  36929. name: "Side",
  36930. image: {
  36931. source: "./media/characters/akitu/side.svg",
  36932. extra: 1421/1321,
  36933. bottom: 157/1578
  36934. }
  36935. },
  36936. front: {
  36937. height: math.unit(15, "feet"),
  36938. name: "Front",
  36939. image: {
  36940. source: "./media/characters/akitu/front.svg",
  36941. extra: 1435/1326,
  36942. bottom: 232/1667
  36943. }
  36944. },
  36945. },
  36946. [
  36947. {
  36948. name: "Normal",
  36949. height: math.unit(15, "feet"),
  36950. default: true
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36956. {
  36957. front: {
  36958. height: math.unit(10 + 8/12, "feet"),
  36959. name: "Front",
  36960. image: {
  36961. source: "./media/characters/azalie-croixland/front.svg",
  36962. extra: 1972/1856,
  36963. bottom: 31/2003
  36964. }
  36965. },
  36966. },
  36967. [
  36968. {
  36969. name: "Original Height",
  36970. height: math.unit(5 + 4/12, "feet")
  36971. },
  36972. {
  36973. name: "Normal Height",
  36974. height: math.unit(10 + 8/12, "feet"),
  36975. default: true
  36976. },
  36977. ]
  36978. ))
  36979. characterMakers.push(() => makeCharacter(
  36980. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36981. {
  36982. side: {
  36983. height: math.unit(7 + 1/12, "feet"),
  36984. weight: math.unit(245, "lb"),
  36985. name: "Side",
  36986. image: {
  36987. source: "./media/characters/kavus-kazian/side.svg",
  36988. extra: 349/342,
  36989. bottom: 15/364
  36990. }
  36991. },
  36992. },
  36993. [
  36994. {
  36995. name: "Normal",
  36996. height: math.unit(7 + 1/12, "feet"),
  36997. default: true
  36998. },
  36999. ]
  37000. ))
  37001. characterMakers.push(() => makeCharacter(
  37002. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37003. {
  37004. normalFront: {
  37005. height: math.unit(5 + 11/12, "feet"),
  37006. name: "Front",
  37007. image: {
  37008. source: "./media/characters/moonlight-rose/normal-front.svg",
  37009. extra: 1980/1825,
  37010. bottom: 18/1998
  37011. },
  37012. form: "normal",
  37013. default: true
  37014. },
  37015. normalBack: {
  37016. height: math.unit(5 + 11/12, "feet"),
  37017. name: "Back",
  37018. image: {
  37019. source: "./media/characters/moonlight-rose/normal-back.svg",
  37020. extra: 2010/1839,
  37021. bottom: 10/2020
  37022. },
  37023. form: "normal"
  37024. },
  37025. demonFront: {
  37026. height: math.unit(1.5, "earths"),
  37027. name: "Front",
  37028. image: {
  37029. source: "./media/characters/moonlight-rose/demon.svg",
  37030. extra: 1400/1294,
  37031. bottom: 45/1445
  37032. },
  37033. form: "demon",
  37034. default: true
  37035. },
  37036. terraFront: {
  37037. height: math.unit(1.5, "earths"),
  37038. name: "Front",
  37039. image: {
  37040. source: "./media/characters/moonlight-rose/terra.svg"
  37041. },
  37042. form: "terra",
  37043. default: true
  37044. },
  37045. jupiterFront: {
  37046. height: math.unit(69911*2, "km"),
  37047. name: "Front",
  37048. image: {
  37049. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37050. extra: 1367/1286,
  37051. bottom: 55/1422
  37052. },
  37053. form: "jupiter",
  37054. default: true
  37055. },
  37056. neptuneFront: {
  37057. height: math.unit(24622*2, "feet"),
  37058. name: "Front",
  37059. image: {
  37060. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37061. extra: 1851/1712,
  37062. bottom: 0/1851
  37063. },
  37064. form: "neptune",
  37065. default: true
  37066. },
  37067. },
  37068. [
  37069. {
  37070. name: "\"Natural\" Height",
  37071. height: math.unit(5 + 11/12, "feet"),
  37072. form: "normal"
  37073. },
  37074. {
  37075. name: "Smallest comfortable size",
  37076. height: math.unit(40, "meters"),
  37077. form: "normal"
  37078. },
  37079. {
  37080. name: "Common size",
  37081. height: math.unit(50, "km"),
  37082. form: "normal",
  37083. default: true
  37084. },
  37085. {
  37086. name: "Normal",
  37087. height: math.unit(1.5, "earths"),
  37088. form: "demon",
  37089. default: true
  37090. },
  37091. {
  37092. name: "Universal",
  37093. height: math.unit(15, "universes"),
  37094. form: "demon"
  37095. },
  37096. {
  37097. name: "Earth",
  37098. height: math.unit(1.5, "earths"),
  37099. form: "terra",
  37100. default: true
  37101. },
  37102. {
  37103. name: "Super Earth",
  37104. height: math.unit(67.5, "earths"),
  37105. form: "terra"
  37106. },
  37107. {
  37108. name: "Doesn't fit in a solar system...",
  37109. height: math.unit(1, "galaxy"),
  37110. form: "terra"
  37111. },
  37112. {
  37113. name: "Saturn",
  37114. height: math.unit(58232*2, "km"),
  37115. form: "jupiter"
  37116. },
  37117. {
  37118. name: "Jupiter",
  37119. height: math.unit(69911*2, "km"),
  37120. form: "jupiter",
  37121. default: true
  37122. },
  37123. {
  37124. name: "HD 100546 b",
  37125. height: math.unit(482938, "km"),
  37126. form: "jupiter"
  37127. },
  37128. {
  37129. name: "Enceladus",
  37130. height: math.unit(513*2, "km"),
  37131. form: "neptune"
  37132. },
  37133. {
  37134. name: "Europe",
  37135. height: math.unit(1560*2, "km"),
  37136. form: "neptune"
  37137. },
  37138. {
  37139. name: "Neptune",
  37140. height: math.unit(24622*2, "km"),
  37141. form: "neptune",
  37142. default: true
  37143. },
  37144. {
  37145. name: "CoRoT-9b",
  37146. height: math.unit(75067*2, "km"),
  37147. form: "neptune"
  37148. },
  37149. ],
  37150. {
  37151. "normal": {
  37152. name: "Normal",
  37153. default: true
  37154. },
  37155. "demon": {
  37156. name: "Demon"
  37157. },
  37158. "terra": {
  37159. name: "Terra"
  37160. },
  37161. "jupiter": {
  37162. name: "Jupiter"
  37163. },
  37164. "neptune": {
  37165. name: "Neptune"
  37166. }
  37167. }
  37168. ))
  37169. characterMakers.push(() => makeCharacter(
  37170. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37171. {
  37172. front: {
  37173. height: math.unit(16, "feet"),
  37174. weight: math.unit(610, "kg"),
  37175. name: "Front",
  37176. image: {
  37177. source: "./media/characters/huckle/front.svg",
  37178. extra: 1731/1625,
  37179. bottom: 33/1764
  37180. }
  37181. },
  37182. back: {
  37183. height: math.unit(16, "feet"),
  37184. weight: math.unit(610, "kg"),
  37185. name: "Back",
  37186. image: {
  37187. source: "./media/characters/huckle/back.svg",
  37188. extra: 1738/1651,
  37189. bottom: 37/1775
  37190. }
  37191. },
  37192. laughing: {
  37193. height: math.unit(3.75, "feet"),
  37194. name: "Laughing",
  37195. image: {
  37196. source: "./media/characters/huckle/laughing.svg"
  37197. }
  37198. },
  37199. angry: {
  37200. height: math.unit(4.15, "feet"),
  37201. name: "Angry",
  37202. image: {
  37203. source: "./media/characters/huckle/angry.svg"
  37204. }
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "Normal",
  37210. height: math.unit(16, "feet"),
  37211. default: true
  37212. },
  37213. {
  37214. name: "Mini Macro",
  37215. height: math.unit(463, "feet")
  37216. },
  37217. {
  37218. name: "Macro",
  37219. height: math.unit(1680, "meters")
  37220. },
  37221. {
  37222. name: "Mega Macro",
  37223. height: math.unit(175, "km")
  37224. },
  37225. {
  37226. name: "Terra Macro",
  37227. height: math.unit(32, "gigameters")
  37228. },
  37229. {
  37230. name: "Multiverse+",
  37231. height: math.unit(2.56e23, "yottameters")
  37232. },
  37233. ]
  37234. ))
  37235. characterMakers.push(() => makeCharacter(
  37236. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37237. {
  37238. front: {
  37239. height: math.unit(6 + 9/12, "feet"),
  37240. weight: math.unit(280, "lb"),
  37241. name: "Front",
  37242. image: {
  37243. source: "./media/characters/candy/front.svg",
  37244. extra: 234/217,
  37245. bottom: 11/245
  37246. }
  37247. },
  37248. },
  37249. [
  37250. {
  37251. name: "Really Small",
  37252. height: math.unit(0.1, "nm")
  37253. },
  37254. {
  37255. name: "Micro",
  37256. height: math.unit(2, "inches")
  37257. },
  37258. {
  37259. name: "Normal",
  37260. height: math.unit(6 + 9/12, "feet"),
  37261. default: true
  37262. },
  37263. {
  37264. name: "Small Macro",
  37265. height: math.unit(69, "feet")
  37266. },
  37267. {
  37268. name: "Macro",
  37269. height: math.unit(160, "feet")
  37270. },
  37271. {
  37272. name: "Megamacro",
  37273. height: math.unit(22000, "miles")
  37274. },
  37275. {
  37276. name: "Gigamacro",
  37277. height: math.unit(50000, "miles")
  37278. },
  37279. ]
  37280. ))
  37281. characterMakers.push(() => makeCharacter(
  37282. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37283. {
  37284. front: {
  37285. height: math.unit(4, "feet"),
  37286. weight: math.unit(90, "lb"),
  37287. name: "Front",
  37288. image: {
  37289. source: "./media/characters/joey-mcdonald/front.svg",
  37290. extra: 1059/852,
  37291. bottom: 33/1092
  37292. }
  37293. },
  37294. back: {
  37295. height: math.unit(4, "feet"),
  37296. weight: math.unit(90, "lb"),
  37297. name: "Back",
  37298. image: {
  37299. source: "./media/characters/joey-mcdonald/back.svg",
  37300. extra: 1077/879,
  37301. bottom: 5/1082
  37302. }
  37303. },
  37304. frontKobold: {
  37305. height: math.unit(4, "feet"),
  37306. weight: math.unit(100, "lb"),
  37307. name: "Front-kobold",
  37308. image: {
  37309. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37310. extra: 1480/1367,
  37311. bottom: 0/1480
  37312. }
  37313. },
  37314. backKobold: {
  37315. height: math.unit(4, "feet"),
  37316. weight: math.unit(100, "lb"),
  37317. name: "Back-kobold",
  37318. image: {
  37319. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37320. extra: 1449/1361,
  37321. bottom: 0/1449
  37322. }
  37323. },
  37324. },
  37325. [
  37326. {
  37327. name: "Normal",
  37328. height: math.unit(4, "feet"),
  37329. default: true
  37330. },
  37331. ]
  37332. ))
  37333. characterMakers.push(() => makeCharacter(
  37334. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37335. {
  37336. front: {
  37337. height: math.unit(12 + 6/12, "feet"),
  37338. name: "Front",
  37339. image: {
  37340. source: "./media/characters/kass-lockheed/front.svg",
  37341. extra: 354/343,
  37342. bottom: 9/363
  37343. }
  37344. },
  37345. back: {
  37346. height: math.unit(12 + 6/12, "feet"),
  37347. name: "Back",
  37348. image: {
  37349. source: "./media/characters/kass-lockheed/back.svg",
  37350. extra: 364/352,
  37351. bottom: 3/367
  37352. }
  37353. },
  37354. dick: {
  37355. height: math.unit(3.12, "feet"),
  37356. name: "Dick",
  37357. image: {
  37358. source: "./media/characters/kass-lockheed/dick.svg"
  37359. }
  37360. },
  37361. head: {
  37362. height: math.unit(2.6, "feet"),
  37363. name: "Head",
  37364. image: {
  37365. source: "./media/characters/kass-lockheed/head.svg"
  37366. }
  37367. },
  37368. bleh: {
  37369. height: math.unit(2.85, "feet"),
  37370. name: "Bleh",
  37371. image: {
  37372. source: "./media/characters/kass-lockheed/bleh.svg"
  37373. }
  37374. },
  37375. smug: {
  37376. height: math.unit(2.85, "feet"),
  37377. name: "Smug",
  37378. image: {
  37379. source: "./media/characters/kass-lockheed/smug.svg"
  37380. }
  37381. },
  37382. },
  37383. [
  37384. {
  37385. name: "Normal",
  37386. height: math.unit(12 + 6/12, "feet"),
  37387. default: true
  37388. },
  37389. ]
  37390. ))
  37391. characterMakers.push(() => makeCharacter(
  37392. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37393. {
  37394. front: {
  37395. height: math.unit(6 + 2/12, "feet"),
  37396. name: "Front",
  37397. image: {
  37398. source: "./media/characters/taylor/front.svg",
  37399. extra: 639/495,
  37400. bottom: 12/651
  37401. }
  37402. },
  37403. },
  37404. [
  37405. {
  37406. name: "Normal",
  37407. height: math.unit(6 + 2/12, "feet"),
  37408. default: true
  37409. },
  37410. {
  37411. name: "Big",
  37412. height: math.unit(15, "feet")
  37413. },
  37414. {
  37415. name: "Lorg",
  37416. height: math.unit(80, "feet")
  37417. },
  37418. {
  37419. name: "Too Lorg",
  37420. height: math.unit(120, "feet")
  37421. },
  37422. ]
  37423. ))
  37424. characterMakers.push(() => makeCharacter(
  37425. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37426. {
  37427. front: {
  37428. height: math.unit(15, "feet"),
  37429. name: "Front",
  37430. image: {
  37431. source: "./media/characters/kaizer/front.svg",
  37432. extra: 1612/1436,
  37433. bottom: 43/1655
  37434. }
  37435. },
  37436. },
  37437. [
  37438. {
  37439. name: "Normal",
  37440. height: math.unit(15, "feet"),
  37441. default: true
  37442. },
  37443. ]
  37444. ))
  37445. characterMakers.push(() => makeCharacter(
  37446. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37447. {
  37448. front: {
  37449. height: math.unit(2, "feet"),
  37450. weight: math.unit(30, "lb"),
  37451. name: "Front",
  37452. image: {
  37453. source: "./media/characters/sandy/front.svg",
  37454. extra: 1439/1307,
  37455. bottom: 194/1633
  37456. }
  37457. },
  37458. },
  37459. [
  37460. {
  37461. name: "Normal",
  37462. height: math.unit(2, "feet"),
  37463. default: true
  37464. },
  37465. ]
  37466. ))
  37467. characterMakers.push(() => makeCharacter(
  37468. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37469. {
  37470. front: {
  37471. height: math.unit(3, "feet"),
  37472. name: "Front",
  37473. image: {
  37474. source: "./media/characters/mellvi/front.svg",
  37475. extra: 1831/1630,
  37476. bottom: 58/1889
  37477. }
  37478. },
  37479. },
  37480. [
  37481. {
  37482. name: "Normal",
  37483. height: math.unit(3, "feet"),
  37484. default: true
  37485. },
  37486. ]
  37487. ))
  37488. characterMakers.push(() => makeCharacter(
  37489. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37490. {
  37491. front: {
  37492. height: math.unit(5 + 11/12, "feet"),
  37493. weight: math.unit(200, "lb"),
  37494. name: "Front",
  37495. image: {
  37496. source: "./media/characters/shirou/front.svg",
  37497. extra: 2491/2383,
  37498. bottom: 189/2680
  37499. }
  37500. },
  37501. back: {
  37502. height: math.unit(5 + 11/12, "feet"),
  37503. weight: math.unit(200, "lb"),
  37504. name: "Back",
  37505. image: {
  37506. source: "./media/characters/shirou/back.svg",
  37507. extra: 2554/2450,
  37508. bottom: 76/2630
  37509. }
  37510. },
  37511. },
  37512. [
  37513. {
  37514. name: "Normal",
  37515. height: math.unit(5 + 11/12, "feet"),
  37516. default: true
  37517. },
  37518. ]
  37519. ))
  37520. characterMakers.push(() => makeCharacter(
  37521. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37522. {
  37523. front: {
  37524. height: math.unit(6 + 3/12, "feet"),
  37525. weight: math.unit(177, "lb"),
  37526. name: "Front",
  37527. image: {
  37528. source: "./media/characters/noryu/front.svg",
  37529. extra: 973/885,
  37530. bottom: 10/983
  37531. }
  37532. },
  37533. },
  37534. [
  37535. {
  37536. name: "Normal",
  37537. height: math.unit(6 + 3/12, "feet"),
  37538. default: true
  37539. },
  37540. ]
  37541. ))
  37542. characterMakers.push(() => makeCharacter(
  37543. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37544. {
  37545. front: {
  37546. height: math.unit(5 + 6/12, "feet"),
  37547. weight: math.unit(170, "lb"),
  37548. name: "Front",
  37549. image: {
  37550. source: "./media/characters/mevolas-rubenido/front.svg",
  37551. extra: 2109/1901,
  37552. bottom: 96/2205
  37553. }
  37554. },
  37555. },
  37556. [
  37557. {
  37558. name: "Normal",
  37559. height: math.unit(5 + 6/12, "feet"),
  37560. default: true
  37561. },
  37562. ]
  37563. ))
  37564. characterMakers.push(() => makeCharacter(
  37565. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37566. {
  37567. front: {
  37568. height: math.unit(100, "feet"),
  37569. name: "Front",
  37570. image: {
  37571. source: "./media/characters/dee/front.svg",
  37572. extra: 2153/2036,
  37573. bottom: 59/2212
  37574. }
  37575. },
  37576. back: {
  37577. height: math.unit(100, "feet"),
  37578. name: "Back",
  37579. image: {
  37580. source: "./media/characters/dee/back.svg",
  37581. extra: 2183/2058,
  37582. bottom: 75/2258
  37583. }
  37584. },
  37585. foot: {
  37586. height: math.unit(19.43, "feet"),
  37587. name: "Foot",
  37588. image: {
  37589. source: "./media/characters/dee/foot.svg"
  37590. }
  37591. },
  37592. hoof: {
  37593. height: math.unit(20.6, "feet"),
  37594. name: "Hoof",
  37595. image: {
  37596. source: "./media/characters/dee/hoof.svg"
  37597. }
  37598. },
  37599. },
  37600. [
  37601. {
  37602. name: "Macro",
  37603. height: math.unit(100, "feet"),
  37604. default: true
  37605. },
  37606. ]
  37607. ))
  37608. characterMakers.push(() => makeCharacter(
  37609. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37610. {
  37611. front: {
  37612. height: math.unit(5 + 6/12, "feet"),
  37613. name: "Front",
  37614. image: {
  37615. source: "./media/characters/teh/front.svg",
  37616. extra: 1002/847,
  37617. bottom: 62/1064
  37618. }
  37619. },
  37620. },
  37621. [
  37622. {
  37623. name: "Normal",
  37624. height: math.unit(5 + 6/12, "feet"),
  37625. default: true
  37626. },
  37627. ]
  37628. ))
  37629. characterMakers.push(() => makeCharacter(
  37630. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37631. {
  37632. side: {
  37633. height: math.unit(6 + 1/12, "feet"),
  37634. weight: math.unit(204, "lb"),
  37635. name: "Side",
  37636. image: {
  37637. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37638. extra: 974/775,
  37639. bottom: 169/1143
  37640. }
  37641. },
  37642. sitting: {
  37643. height: math.unit(6 + 2/12, "feet"),
  37644. weight: math.unit(204, "lb"),
  37645. name: "Sitting",
  37646. image: {
  37647. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37648. extra: 1175/964,
  37649. bottom: 378/1553
  37650. }
  37651. },
  37652. },
  37653. [
  37654. {
  37655. name: "Normal",
  37656. height: math.unit(6 + 1/12, "feet"),
  37657. default: true
  37658. },
  37659. ]
  37660. ))
  37661. characterMakers.push(() => makeCharacter(
  37662. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37663. {
  37664. front: {
  37665. height: math.unit(6, "inches"),
  37666. name: "Front",
  37667. image: {
  37668. source: "./media/characters/tululi/front.svg",
  37669. extra: 1997/1876,
  37670. bottom: 20/2017
  37671. }
  37672. },
  37673. },
  37674. [
  37675. {
  37676. name: "Normal",
  37677. height: math.unit(6, "inches"),
  37678. default: true
  37679. },
  37680. ]
  37681. ))
  37682. characterMakers.push(() => makeCharacter(
  37683. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37684. {
  37685. front: {
  37686. height: math.unit(4 + 1/12, "feet"),
  37687. name: "Front",
  37688. image: {
  37689. source: "./media/characters/star/front.svg",
  37690. extra: 1493/1189,
  37691. bottom: 48/1541
  37692. }
  37693. },
  37694. },
  37695. [
  37696. {
  37697. name: "Normal",
  37698. height: math.unit(4 + 1/12, "feet"),
  37699. default: true
  37700. },
  37701. ]
  37702. ))
  37703. characterMakers.push(() => makeCharacter(
  37704. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37705. {
  37706. front: {
  37707. height: math.unit(6 + 3/12, "feet"),
  37708. name: "Front",
  37709. image: {
  37710. source: "./media/characters/comet/front.svg",
  37711. extra: 1681/1462,
  37712. bottom: 26/1707
  37713. }
  37714. },
  37715. },
  37716. [
  37717. {
  37718. name: "Normal",
  37719. height: math.unit(6 + 3/12, "feet"),
  37720. default: true
  37721. },
  37722. ]
  37723. ))
  37724. characterMakers.push(() => makeCharacter(
  37725. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37726. {
  37727. front: {
  37728. height: math.unit(950, "feet"),
  37729. name: "Front",
  37730. image: {
  37731. source: "./media/characters/vortex/front.svg",
  37732. extra: 1497/1434,
  37733. bottom: 56/1553
  37734. }
  37735. },
  37736. maw: {
  37737. height: math.unit(285, "feet"),
  37738. name: "Maw",
  37739. image: {
  37740. source: "./media/characters/vortex/maw.svg"
  37741. }
  37742. },
  37743. },
  37744. [
  37745. {
  37746. name: "Macro",
  37747. height: math.unit(950, "feet"),
  37748. default: true
  37749. },
  37750. ]
  37751. ))
  37752. characterMakers.push(() => makeCharacter(
  37753. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37754. {
  37755. front: {
  37756. height: math.unit(600, "feet"),
  37757. weight: math.unit(0.02, "grams"),
  37758. name: "Front",
  37759. image: {
  37760. source: "./media/characters/doodle/front.svg",
  37761. extra: 1578/1413,
  37762. bottom: 37/1615
  37763. }
  37764. },
  37765. },
  37766. [
  37767. {
  37768. name: "Macro",
  37769. height: math.unit(600, "feet"),
  37770. default: true
  37771. },
  37772. ]
  37773. ))
  37774. characterMakers.push(() => makeCharacter(
  37775. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37776. {
  37777. front: {
  37778. height: math.unit(6 + 6/12, "feet"),
  37779. name: "Front",
  37780. image: {
  37781. source: "./media/characters/jai/front.svg",
  37782. extra: 1645/1534,
  37783. bottom: 115/1760
  37784. }
  37785. },
  37786. },
  37787. [
  37788. {
  37789. name: "Normal",
  37790. height: math.unit(6 + 6/12, "feet"),
  37791. default: true
  37792. },
  37793. ]
  37794. ))
  37795. characterMakers.push(() => makeCharacter(
  37796. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37797. {
  37798. front: {
  37799. height: math.unit(6 + 8/12, "feet"),
  37800. name: "Front",
  37801. image: {
  37802. source: "./media/characters/pixel/front.svg",
  37803. extra: 1900/1735,
  37804. bottom: 63/1963
  37805. }
  37806. },
  37807. },
  37808. [
  37809. {
  37810. name: "Normal",
  37811. height: math.unit(6 + 8/12, "feet"),
  37812. default: true
  37813. },
  37814. ]
  37815. ))
  37816. characterMakers.push(() => makeCharacter(
  37817. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37818. {
  37819. back: {
  37820. height: math.unit(4 + 1/12, "feet"),
  37821. weight: math.unit(75, "lb"),
  37822. name: "Back",
  37823. image: {
  37824. source: "./media/characters/rhett/back.svg",
  37825. extra: 930/878,
  37826. bottom: 25/955
  37827. }
  37828. },
  37829. front: {
  37830. height: math.unit(4 + 1/12, "feet"),
  37831. weight: math.unit(75, "lb"),
  37832. name: "Front",
  37833. image: {
  37834. source: "./media/characters/rhett/front.svg",
  37835. extra: 1682/1586,
  37836. bottom: 92/1774
  37837. }
  37838. },
  37839. },
  37840. [
  37841. {
  37842. name: "Micro",
  37843. height: math.unit(8, "inches")
  37844. },
  37845. {
  37846. name: "Tiny",
  37847. height: math.unit(2, "feet")
  37848. },
  37849. {
  37850. name: "Normal",
  37851. height: math.unit(4 + 1/12, "feet"),
  37852. default: true
  37853. },
  37854. ]
  37855. ))
  37856. characterMakers.push(() => makeCharacter(
  37857. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37858. {
  37859. front: {
  37860. height: math.unit(3 + 3/12, "feet"),
  37861. name: "Front",
  37862. image: {
  37863. source: "./media/characters/penny/front.svg",
  37864. extra: 1406/1311,
  37865. bottom: 26/1432
  37866. }
  37867. },
  37868. },
  37869. [
  37870. {
  37871. name: "Normal",
  37872. height: math.unit(3 + 3/12, "feet"),
  37873. default: true
  37874. },
  37875. ]
  37876. ))
  37877. characterMakers.push(() => makeCharacter(
  37878. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37879. {
  37880. front: {
  37881. height: math.unit(4 + 11/12, "feet"),
  37882. name: "Front",
  37883. image: {
  37884. source: "./media/characters/monty/front.svg",
  37885. extra: 1479/1209,
  37886. bottom: 0/1479
  37887. }
  37888. },
  37889. },
  37890. [
  37891. {
  37892. name: "Normal",
  37893. height: math.unit(4 + 11/12, "feet"),
  37894. default: true
  37895. },
  37896. ]
  37897. ))
  37898. characterMakers.push(() => makeCharacter(
  37899. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37900. {
  37901. front: {
  37902. height: math.unit(8 + 4/12, "feet"),
  37903. name: "Front",
  37904. image: {
  37905. source: "./media/characters/sterling/front.svg",
  37906. extra: 1420/1236,
  37907. bottom: 27/1447
  37908. }
  37909. },
  37910. },
  37911. [
  37912. {
  37913. name: "Normal",
  37914. height: math.unit(8 + 4/12, "feet"),
  37915. default: true
  37916. },
  37917. ]
  37918. ))
  37919. characterMakers.push(() => makeCharacter(
  37920. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37921. {
  37922. front: {
  37923. height: math.unit(15, "feet"),
  37924. name: "Front",
  37925. image: {
  37926. source: "./media/characters/marble/front.svg",
  37927. extra: 973/937,
  37928. bottom: 32/1005
  37929. }
  37930. },
  37931. },
  37932. [
  37933. {
  37934. name: "Normal",
  37935. height: math.unit(15, "feet"),
  37936. default: true
  37937. },
  37938. ]
  37939. ))
  37940. characterMakers.push(() => makeCharacter(
  37941. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37942. {
  37943. front: {
  37944. height: math.unit(3, "inches"),
  37945. name: "Front",
  37946. image: {
  37947. source: "./media/characters/powder/front.svg",
  37948. extra: 1504/1334,
  37949. bottom: 518/2022
  37950. }
  37951. },
  37952. },
  37953. [
  37954. {
  37955. name: "Normal",
  37956. height: math.unit(3, "inches"),
  37957. default: true
  37958. },
  37959. ]
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37963. {
  37964. front: {
  37965. height: math.unit(4 + 5/12, "feet"),
  37966. name: "Front",
  37967. image: {
  37968. source: "./media/characters/joey-raccoon/front.svg",
  37969. extra: 1273/1197,
  37970. bottom: 0/1273
  37971. }
  37972. },
  37973. },
  37974. [
  37975. {
  37976. name: "Normal",
  37977. height: math.unit(4 + 5/12, "feet"),
  37978. default: true
  37979. },
  37980. ]
  37981. ))
  37982. characterMakers.push(() => makeCharacter(
  37983. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37984. {
  37985. front: {
  37986. height: math.unit(8 + 4/12, "feet"),
  37987. name: "Front",
  37988. image: {
  37989. source: "./media/characters/vick/front.svg",
  37990. extra: 2187/2118,
  37991. bottom: 47/2234
  37992. }
  37993. },
  37994. },
  37995. [
  37996. {
  37997. name: "Normal",
  37998. height: math.unit(8 + 4/12, "feet"),
  37999. default: true
  38000. },
  38001. ]
  38002. ))
  38003. characterMakers.push(() => makeCharacter(
  38004. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38005. {
  38006. front: {
  38007. height: math.unit(5 + 5/12, "feet"),
  38008. name: "Front",
  38009. image: {
  38010. source: "./media/characters/mitsy/front.svg",
  38011. extra: 1842/1695,
  38012. bottom: 0/1842
  38013. }
  38014. },
  38015. },
  38016. [
  38017. {
  38018. name: "Normal",
  38019. height: math.unit(5 + 5/12, "feet"),
  38020. default: true
  38021. },
  38022. ]
  38023. ))
  38024. characterMakers.push(() => makeCharacter(
  38025. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38026. {
  38027. front: {
  38028. height: math.unit(6 + 3/12, "feet"),
  38029. name: "Front",
  38030. image: {
  38031. source: "./media/characters/silvy/front.svg",
  38032. extra: 1995/1836,
  38033. bottom: 225/2220
  38034. }
  38035. },
  38036. },
  38037. [
  38038. {
  38039. name: "Normal",
  38040. height: math.unit(6 + 3/12, "feet"),
  38041. default: true
  38042. },
  38043. ]
  38044. ))
  38045. characterMakers.push(() => makeCharacter(
  38046. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38047. {
  38048. front: {
  38049. height: math.unit(3 + 8/12, "feet"),
  38050. name: "Front",
  38051. image: {
  38052. source: "./media/characters/rodney/front.svg",
  38053. extra: 1956/1747,
  38054. bottom: 31/1987
  38055. }
  38056. },
  38057. frontDressed: {
  38058. height: math.unit(2.9, "feet"),
  38059. name: "Front (Dressed)",
  38060. image: {
  38061. source: "./media/characters/rodney/front-dressed.svg",
  38062. extra: 1382/1241,
  38063. bottom: 385/1767
  38064. }
  38065. },
  38066. },
  38067. [
  38068. {
  38069. name: "Normal",
  38070. height: math.unit(3 + 8/12, "feet"),
  38071. default: true
  38072. },
  38073. ]
  38074. ))
  38075. characterMakers.push(() => makeCharacter(
  38076. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38077. {
  38078. front: {
  38079. height: math.unit(5 + 9/12, "feet"),
  38080. weight: math.unit(194, "lbs"),
  38081. name: "Front",
  38082. image: {
  38083. source: "./media/characters/zakail-sudekai/front.svg",
  38084. extra: 2696/2533,
  38085. bottom: 248/2944
  38086. }
  38087. },
  38088. maw: {
  38089. height: math.unit(1.35, "feet"),
  38090. name: "Maw",
  38091. image: {
  38092. source: "./media/characters/zakail-sudekai/maw.svg"
  38093. }
  38094. },
  38095. },
  38096. [
  38097. {
  38098. name: "Normal",
  38099. height: math.unit(5 + 9/12, "feet"),
  38100. default: true
  38101. },
  38102. ]
  38103. ))
  38104. characterMakers.push(() => makeCharacter(
  38105. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38106. {
  38107. front: {
  38108. height: math.unit(8 + 4/12, "feet"),
  38109. weight: math.unit(1200, "lb"),
  38110. name: "Front",
  38111. image: {
  38112. source: "./media/characters/eleanor/front.svg",
  38113. extra: 1226/1192,
  38114. bottom: 52/1278
  38115. }
  38116. },
  38117. back: {
  38118. height: math.unit(8 + 4/12, "feet"),
  38119. weight: math.unit(1200, "lb"),
  38120. name: "Back",
  38121. image: {
  38122. source: "./media/characters/eleanor/back.svg",
  38123. extra: 1242/1184,
  38124. bottom: 60/1302
  38125. }
  38126. },
  38127. head: {
  38128. height: math.unit(2.62, "feet"),
  38129. name: "Head",
  38130. image: {
  38131. source: "./media/characters/eleanor/head.svg"
  38132. }
  38133. },
  38134. },
  38135. [
  38136. {
  38137. name: "Normal",
  38138. height: math.unit(8 + 4/12, "feet"),
  38139. default: true
  38140. },
  38141. ]
  38142. ))
  38143. characterMakers.push(() => makeCharacter(
  38144. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38145. {
  38146. front: {
  38147. height: math.unit(8 + 4/12, "feet"),
  38148. weight: math.unit(750, "lb"),
  38149. name: "Front",
  38150. image: {
  38151. source: "./media/characters/tanya/front.svg",
  38152. extra: 1749/1615,
  38153. bottom: 33/1782
  38154. }
  38155. },
  38156. },
  38157. [
  38158. {
  38159. name: "Normal",
  38160. height: math.unit(8 + 4/12, "feet"),
  38161. default: true
  38162. },
  38163. ]
  38164. ))
  38165. characterMakers.push(() => makeCharacter(
  38166. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38167. {
  38168. front: {
  38169. height: math.unit(5, "feet"),
  38170. weight: math.unit(225, "lb"),
  38171. name: "Front",
  38172. image: {
  38173. source: "./media/characters/cindy/front.svg",
  38174. extra: 1320/1250,
  38175. bottom: 42/1362
  38176. }
  38177. },
  38178. frontDressed: {
  38179. height: math.unit(5, "feet"),
  38180. weight: math.unit(225, "lb"),
  38181. name: "Front (Dressed)",
  38182. image: {
  38183. source: "./media/characters/cindy/front-dressed.svg",
  38184. extra: 1320/1250,
  38185. bottom: 42/1362
  38186. }
  38187. },
  38188. back: {
  38189. height: math.unit(5, "feet"),
  38190. weight: math.unit(225, "lb"),
  38191. name: "Back",
  38192. image: {
  38193. source: "./media/characters/cindy/back.svg",
  38194. extra: 1384/1346,
  38195. bottom: 14/1398
  38196. }
  38197. },
  38198. },
  38199. [
  38200. {
  38201. name: "Normal",
  38202. height: math.unit(5, "feet"),
  38203. default: true
  38204. },
  38205. ]
  38206. ))
  38207. characterMakers.push(() => makeCharacter(
  38208. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38209. {
  38210. front: {
  38211. height: math.unit(6 + 9/12, "feet"),
  38212. weight: math.unit(440, "lb"),
  38213. name: "Front",
  38214. image: {
  38215. source: "./media/characters/wilbur-owen/front.svg",
  38216. extra: 1575/1448,
  38217. bottom: 72/1647
  38218. }
  38219. },
  38220. back: {
  38221. height: math.unit(6 + 9/12, "feet"),
  38222. weight: math.unit(440, "lb"),
  38223. name: "Back",
  38224. image: {
  38225. source: "./media/characters/wilbur-owen/back.svg",
  38226. extra: 1578/1445,
  38227. bottom: 36/1614
  38228. }
  38229. },
  38230. },
  38231. [
  38232. {
  38233. name: "Normal",
  38234. height: math.unit(6 + 9/12, "feet"),
  38235. default: true
  38236. },
  38237. ]
  38238. ))
  38239. characterMakers.push(() => makeCharacter(
  38240. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38241. {
  38242. front: {
  38243. height: math.unit(6 + 5/12, "feet"),
  38244. weight: math.unit(650, "lb"),
  38245. name: "Front",
  38246. image: {
  38247. source: "./media/characters/keegan/front.svg",
  38248. extra: 2387/2198,
  38249. bottom: 33/2420
  38250. }
  38251. },
  38252. side: {
  38253. height: math.unit(6 + 5/12, "feet"),
  38254. weight: math.unit(650, "lb"),
  38255. name: "Side",
  38256. image: {
  38257. source: "./media/characters/keegan/side.svg",
  38258. extra: 2390/2202,
  38259. bottom: 47/2437
  38260. }
  38261. },
  38262. back: {
  38263. height: math.unit(6 + 5/12, "feet"),
  38264. weight: math.unit(650, "lb"),
  38265. name: "Back",
  38266. image: {
  38267. source: "./media/characters/keegan/back.svg",
  38268. extra: 2418/2268,
  38269. bottom: 15/2433
  38270. }
  38271. },
  38272. frontSfw: {
  38273. height: math.unit(6 + 5/12, "feet"),
  38274. weight: math.unit(650, "lb"),
  38275. name: "Front (SFW)",
  38276. image: {
  38277. source: "./media/characters/keegan/front-sfw.svg",
  38278. extra: 2387/2198,
  38279. bottom: 33/2420
  38280. }
  38281. },
  38282. beans: {
  38283. height: math.unit(1.85, "feet"),
  38284. name: "Beans",
  38285. image: {
  38286. source: "./media/characters/keegan/beans.svg"
  38287. }
  38288. },
  38289. },
  38290. [
  38291. {
  38292. name: "Normal",
  38293. height: math.unit(6 + 5/12, "feet"),
  38294. default: true
  38295. },
  38296. ]
  38297. ))
  38298. characterMakers.push(() => makeCharacter(
  38299. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38300. {
  38301. front: {
  38302. height: math.unit(9, "feet"),
  38303. name: "Front",
  38304. image: {
  38305. source: "./media/characters/colton/front.svg",
  38306. extra: 1589/1326,
  38307. bottom: 139/1728
  38308. }
  38309. },
  38310. },
  38311. [
  38312. {
  38313. name: "Normal",
  38314. height: math.unit(9, "feet"),
  38315. default: true
  38316. },
  38317. ]
  38318. ))
  38319. characterMakers.push(() => makeCharacter(
  38320. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38321. {
  38322. front: {
  38323. height: math.unit(2 + 9/12, "feet"),
  38324. name: "Front",
  38325. image: {
  38326. source: "./media/characters/bora/front.svg",
  38327. extra: 1265/1250,
  38328. bottom: 24/1289
  38329. }
  38330. },
  38331. },
  38332. [
  38333. {
  38334. name: "Normal",
  38335. height: math.unit(2 + 9/12, "feet"),
  38336. default: true
  38337. },
  38338. ]
  38339. ))
  38340. characterMakers.push(() => makeCharacter(
  38341. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38342. {
  38343. front: {
  38344. height: math.unit(8, "feet"),
  38345. name: "Front",
  38346. image: {
  38347. source: "./media/characters/myu-myu/front.svg",
  38348. extra: 1949/1857,
  38349. bottom: 90/2039
  38350. }
  38351. },
  38352. },
  38353. [
  38354. {
  38355. name: "Normal",
  38356. height: math.unit(8, "feet"),
  38357. default: true
  38358. },
  38359. {
  38360. name: "Big",
  38361. height: math.unit(15, "feet")
  38362. },
  38363. {
  38364. name: "BIG",
  38365. height: math.unit(25, "feet")
  38366. },
  38367. ]
  38368. ))
  38369. characterMakers.push(() => makeCharacter(
  38370. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38371. {
  38372. side: {
  38373. height: math.unit(7 + 5/12, "feet"),
  38374. weight: math.unit(2800, "lb"),
  38375. name: "Side",
  38376. image: {
  38377. source: "./media/characters/haloren/side.svg",
  38378. extra: 1793/409,
  38379. bottom: 59/1852
  38380. }
  38381. },
  38382. frontPaw: {
  38383. height: math.unit(2.36, "feet"),
  38384. name: "Front paw",
  38385. image: {
  38386. source: "./media/characters/haloren/front-paw.svg"
  38387. }
  38388. },
  38389. hindPaw: {
  38390. height: math.unit(3.18, "feet"),
  38391. name: "Hind paw",
  38392. image: {
  38393. source: "./media/characters/haloren/hind-paw.svg"
  38394. }
  38395. },
  38396. maw: {
  38397. height: math.unit(5.05, "feet"),
  38398. name: "Maw",
  38399. image: {
  38400. source: "./media/characters/haloren/maw.svg"
  38401. }
  38402. },
  38403. dick: {
  38404. height: math.unit(2.90, "feet"),
  38405. name: "Dick",
  38406. image: {
  38407. source: "./media/characters/haloren/dick.svg"
  38408. }
  38409. },
  38410. },
  38411. [
  38412. {
  38413. name: "Normal",
  38414. height: math.unit(7 + 5/12, "feet"),
  38415. default: true
  38416. },
  38417. {
  38418. name: "Enhanced",
  38419. height: math.unit(14 + 3/12, "feet")
  38420. },
  38421. ]
  38422. ))
  38423. characterMakers.push(() => makeCharacter(
  38424. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38425. {
  38426. front: {
  38427. height: math.unit(171, "cm"),
  38428. name: "Front",
  38429. image: {
  38430. source: "./media/characters/kimmy/front.svg",
  38431. extra: 1491/1435,
  38432. bottom: 53/1544
  38433. }
  38434. },
  38435. },
  38436. [
  38437. {
  38438. name: "Small",
  38439. height: math.unit(9, "cm")
  38440. },
  38441. {
  38442. name: "Normal",
  38443. height: math.unit(171, "cm"),
  38444. default: true
  38445. },
  38446. ]
  38447. ))
  38448. characterMakers.push(() => makeCharacter(
  38449. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38450. {
  38451. front: {
  38452. height: math.unit(8, "feet"),
  38453. weight: math.unit(300, "lb"),
  38454. name: "Front",
  38455. image: {
  38456. source: "./media/characters/galeboomer/front.svg",
  38457. extra: 4651/4415,
  38458. bottom: 162/4813
  38459. }
  38460. },
  38461. back: {
  38462. height: math.unit(8, "feet"),
  38463. weight: math.unit(300, "lb"),
  38464. name: "Back",
  38465. image: {
  38466. source: "./media/characters/galeboomer/back.svg",
  38467. extra: 4544/4314,
  38468. bottom: 16/4560
  38469. }
  38470. },
  38471. frontAlt: {
  38472. height: math.unit(8, "feet"),
  38473. weight: math.unit(300, "lb"),
  38474. name: "Front (Alt)",
  38475. image: {
  38476. source: "./media/characters/galeboomer/front-alt.svg",
  38477. extra: 4458/4228,
  38478. bottom: 68/4526
  38479. }
  38480. },
  38481. maw: {
  38482. height: math.unit(1.2, "feet"),
  38483. name: "Maw",
  38484. image: {
  38485. source: "./media/characters/galeboomer/maw.svg"
  38486. }
  38487. },
  38488. },
  38489. [
  38490. {
  38491. name: "Normal",
  38492. height: math.unit(8, "feet"),
  38493. default: true
  38494. },
  38495. ]
  38496. ))
  38497. characterMakers.push(() => makeCharacter(
  38498. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38499. {
  38500. front: {
  38501. height: math.unit(5 + 9/12, "feet"),
  38502. weight: math.unit(120, "lb"),
  38503. name: "Front",
  38504. image: {
  38505. source: "./media/characters/chyr/front.svg",
  38506. extra: 1323/1254,
  38507. bottom: 63/1386
  38508. }
  38509. },
  38510. back: {
  38511. height: math.unit(5 + 9/12, "feet"),
  38512. weight: math.unit(120, "lb"),
  38513. name: "Back",
  38514. image: {
  38515. source: "./media/characters/chyr/back.svg",
  38516. extra: 1323/1252,
  38517. bottom: 48/1371
  38518. }
  38519. },
  38520. },
  38521. [
  38522. {
  38523. name: "Normal",
  38524. height: math.unit(5 + 9/12, "feet"),
  38525. default: true
  38526. },
  38527. ]
  38528. ))
  38529. characterMakers.push(() => makeCharacter(
  38530. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38531. {
  38532. front: {
  38533. height: math.unit(7, "feet"),
  38534. weight: math.unit(310, "lb"),
  38535. name: "Front",
  38536. image: {
  38537. source: "./media/characters/solarus/front.svg",
  38538. extra: 2415/2021,
  38539. bottom: 103/2518
  38540. }
  38541. },
  38542. back: {
  38543. height: math.unit(7, "feet"),
  38544. weight: math.unit(310, "lb"),
  38545. name: "Back",
  38546. image: {
  38547. source: "./media/characters/solarus/back.svg",
  38548. extra: 2463/2089,
  38549. bottom: 79/2542
  38550. }
  38551. },
  38552. },
  38553. [
  38554. {
  38555. name: "Normal",
  38556. height: math.unit(7, "feet"),
  38557. default: true
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38563. {
  38564. front: {
  38565. height: math.unit(16, "feet"),
  38566. name: "Front",
  38567. image: {
  38568. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38569. extra: 1844/1780,
  38570. bottom: 58/1902
  38571. }
  38572. },
  38573. winterCoat: {
  38574. height: math.unit(16, "feet"),
  38575. name: "Winter Coat",
  38576. image: {
  38577. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38578. extra: 1807/1775,
  38579. bottom: 69/1876
  38580. }
  38581. },
  38582. },
  38583. [
  38584. {
  38585. name: "Normal",
  38586. height: math.unit(16, "feet"),
  38587. default: true
  38588. },
  38589. {
  38590. name: "Chicago Size",
  38591. height: math.unit(560, "feet")
  38592. },
  38593. ]
  38594. ))
  38595. characterMakers.push(() => makeCharacter(
  38596. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38597. {
  38598. front: {
  38599. height: math.unit(11 + 6/12, "feet"),
  38600. weight: math.unit(1366, "lb"),
  38601. name: "Front",
  38602. image: {
  38603. source: "./media/characters/lexor/front.svg",
  38604. extra: 1560/1481,
  38605. bottom: 211/1771
  38606. }
  38607. },
  38608. back: {
  38609. height: math.unit(11 + 6/12, "feet"),
  38610. weight: math.unit(1366, "lb"),
  38611. name: "Back",
  38612. image: {
  38613. source: "./media/characters/lexor/back.svg",
  38614. extra: 1614/1533,
  38615. bottom: 76/1690
  38616. }
  38617. },
  38618. maw: {
  38619. height: math.unit(3, "feet"),
  38620. name: "Maw",
  38621. image: {
  38622. source: "./media/characters/lexor/maw.svg"
  38623. }
  38624. },
  38625. dick: {
  38626. height: math.unit(2.59, "feet"),
  38627. name: "Dick",
  38628. image: {
  38629. source: "./media/characters/lexor/dick.svg"
  38630. }
  38631. },
  38632. },
  38633. [
  38634. {
  38635. name: "Normal",
  38636. height: math.unit(11 + 6/12, "feet"),
  38637. default: true
  38638. },
  38639. ]
  38640. ))
  38641. characterMakers.push(() => makeCharacter(
  38642. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38643. {
  38644. front: {
  38645. height: math.unit(5 + 8/12, "feet"),
  38646. name: "Front",
  38647. image: {
  38648. source: "./media/characters/magnum/front.svg",
  38649. extra: 942/855,
  38650. bottom: 26/968
  38651. }
  38652. },
  38653. },
  38654. [
  38655. {
  38656. name: "Normal",
  38657. height: math.unit(5 + 8/12, "feet"),
  38658. default: true
  38659. },
  38660. ]
  38661. ))
  38662. characterMakers.push(() => makeCharacter(
  38663. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38664. {
  38665. front: {
  38666. height: math.unit(18 + 4/12, "feet"),
  38667. weight: math.unit(1500, "kg"),
  38668. name: "Front",
  38669. image: {
  38670. source: "./media/characters/solas-sharpsman/front.svg",
  38671. extra: 1698/1589,
  38672. bottom: 0/1698
  38673. }
  38674. },
  38675. },
  38676. [
  38677. {
  38678. name: "Normal",
  38679. height: math.unit(18 + 4/12, "feet"),
  38680. default: true
  38681. },
  38682. ]
  38683. ))
  38684. characterMakers.push(() => makeCharacter(
  38685. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38686. {
  38687. front: {
  38688. height: math.unit(5 + 5/12, "feet"),
  38689. weight: math.unit(180, "lb"),
  38690. name: "Front",
  38691. image: {
  38692. source: "./media/characters/october/front.svg",
  38693. extra: 1800/1650,
  38694. bottom: 0/1800
  38695. }
  38696. },
  38697. frontNsfw: {
  38698. height: math.unit(5 + 5/12, "feet"),
  38699. weight: math.unit(180, "lb"),
  38700. name: "Front (NSFW)",
  38701. image: {
  38702. source: "./media/characters/october/front-nsfw.svg",
  38703. extra: 1392/1307,
  38704. bottom: 42/1434
  38705. }
  38706. },
  38707. },
  38708. [
  38709. {
  38710. name: "Normal",
  38711. height: math.unit(5 + 5/12, "feet"),
  38712. default: true
  38713. },
  38714. ]
  38715. ))
  38716. characterMakers.push(() => makeCharacter(
  38717. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38718. {
  38719. front: {
  38720. height: math.unit(8 + 6/12, "feet"),
  38721. name: "Front",
  38722. image: {
  38723. source: "./media/characters/essynkardi/front.svg",
  38724. extra: 1914/1846,
  38725. bottom: 22/1936
  38726. }
  38727. },
  38728. },
  38729. [
  38730. {
  38731. name: "Normal",
  38732. height: math.unit(8 + 6/12, "feet"),
  38733. default: true
  38734. },
  38735. ]
  38736. ))
  38737. characterMakers.push(() => makeCharacter(
  38738. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38739. {
  38740. front: {
  38741. height: math.unit(6 + 6/12, "feet"),
  38742. weight: math.unit(7, "lb"),
  38743. name: "Front",
  38744. image: {
  38745. source: "./media/characters/icky/front.svg",
  38746. extra: 813/782,
  38747. bottom: 66/879
  38748. }
  38749. },
  38750. back: {
  38751. height: math.unit(6 + 6/12, "feet"),
  38752. weight: math.unit(7, "lb"),
  38753. name: "Back",
  38754. image: {
  38755. source: "./media/characters/icky/back.svg",
  38756. extra: 754/735,
  38757. bottom: 56/810
  38758. }
  38759. },
  38760. },
  38761. [
  38762. {
  38763. name: "Normal",
  38764. height: math.unit(6 + 6/12, "feet"),
  38765. default: true
  38766. },
  38767. ]
  38768. ))
  38769. characterMakers.push(() => makeCharacter(
  38770. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38771. {
  38772. front: {
  38773. height: math.unit(15, "feet"),
  38774. name: "Front",
  38775. image: {
  38776. source: "./media/characters/rojas/front.svg",
  38777. extra: 1462/1408,
  38778. bottom: 95/1557
  38779. }
  38780. },
  38781. back: {
  38782. height: math.unit(15, "feet"),
  38783. name: "Back",
  38784. image: {
  38785. source: "./media/characters/rojas/back.svg",
  38786. extra: 1023/954,
  38787. bottom: 28/1051
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Normal",
  38794. height: math.unit(15, "feet"),
  38795. default: true
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38801. {
  38802. frontHuman: {
  38803. height: math.unit(5 + 7/12, "feet"),
  38804. name: "Front (Human)",
  38805. image: {
  38806. source: "./media/characters/alek-dryagan/front-human.svg",
  38807. extra: 1687/1667,
  38808. bottom: 69/1756
  38809. }
  38810. },
  38811. backHuman: {
  38812. height: math.unit(5 + 7/12, "feet"),
  38813. name: "Back (Human)",
  38814. image: {
  38815. source: "./media/characters/alek-dryagan/back-human.svg",
  38816. extra: 1670/1649,
  38817. bottom: 65/1735
  38818. }
  38819. },
  38820. frontDemi: {
  38821. height: math.unit(65, "feet"),
  38822. name: "Front (Demi)",
  38823. image: {
  38824. source: "./media/characters/alek-dryagan/front-demi.svg",
  38825. extra: 1669/1642,
  38826. bottom: 49/1718
  38827. }
  38828. },
  38829. backDemi: {
  38830. height: math.unit(65, "feet"),
  38831. name: "Back (Demi)",
  38832. image: {
  38833. source: "./media/characters/alek-dryagan/back-demi.svg",
  38834. extra: 1658/1637,
  38835. bottom: 40/1698
  38836. }
  38837. },
  38838. mawHuman: {
  38839. height: math.unit(0.3, "feet"),
  38840. name: "Maw (Human)",
  38841. image: {
  38842. source: "./media/characters/alek-dryagan/maw-human.svg"
  38843. }
  38844. },
  38845. mawDemi: {
  38846. height: math.unit(3.8, "feet"),
  38847. name: "Maw (Demi)",
  38848. image: {
  38849. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38850. }
  38851. },
  38852. },
  38853. [
  38854. {
  38855. name: "Normal",
  38856. height: math.unit(5 + 7/12, "feet"),
  38857. default: true
  38858. },
  38859. ]
  38860. ))
  38861. characterMakers.push(() => makeCharacter(
  38862. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38863. {
  38864. frontHuman: {
  38865. height: math.unit(5 + 2/12, "feet"),
  38866. name: "Front (Human)",
  38867. image: {
  38868. source: "./media/characters/gen/front-human.svg",
  38869. extra: 1627/1538,
  38870. bottom: 71/1698
  38871. }
  38872. },
  38873. backHuman: {
  38874. height: math.unit(5 + 2/12, "feet"),
  38875. name: "Back (Human)",
  38876. image: {
  38877. source: "./media/characters/gen/back-human.svg",
  38878. extra: 1638/1548,
  38879. bottom: 69/1707
  38880. }
  38881. },
  38882. frontDemi: {
  38883. height: math.unit(5 + 2/12, "feet"),
  38884. name: "Front (Demi)",
  38885. image: {
  38886. source: "./media/characters/gen/front-demi.svg",
  38887. extra: 1627/1538,
  38888. bottom: 71/1698
  38889. }
  38890. },
  38891. backDemi: {
  38892. height: math.unit(5 + 2/12, "feet"),
  38893. name: "Back (Demi)",
  38894. image: {
  38895. source: "./media/characters/gen/back-demi.svg",
  38896. extra: 1638/1548,
  38897. bottom: 69/1707
  38898. }
  38899. },
  38900. },
  38901. [
  38902. {
  38903. name: "Normal",
  38904. height: math.unit(5 + 2/12, "feet"),
  38905. default: true
  38906. },
  38907. ]
  38908. ))
  38909. characterMakers.push(() => makeCharacter(
  38910. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38911. {
  38912. frontImp: {
  38913. height: math.unit(1 + 11/12, "feet"),
  38914. name: "Front (Imp)",
  38915. image: {
  38916. source: "./media/characters/max-kobold/front-imp.svg",
  38917. extra: 1238/1134,
  38918. bottom: 81/1319
  38919. }
  38920. },
  38921. backImp: {
  38922. height: math.unit(1 + 11/12, "feet"),
  38923. name: "Back (Imp)",
  38924. image: {
  38925. source: "./media/characters/max-kobold/back-imp.svg",
  38926. extra: 1334/1175,
  38927. bottom: 34/1368
  38928. }
  38929. },
  38930. frontDemi: {
  38931. height: math.unit(5 + 9/12, "feet"),
  38932. name: "Front (Demi)",
  38933. image: {
  38934. source: "./media/characters/max-kobold/front-demi.svg",
  38935. extra: 1715/1685,
  38936. bottom: 54/1769
  38937. }
  38938. },
  38939. backDemi: {
  38940. height: math.unit(5 + 9/12, "feet"),
  38941. name: "Back (Demi)",
  38942. image: {
  38943. source: "./media/characters/max-kobold/back-demi.svg",
  38944. extra: 1752/1729,
  38945. bottom: 41/1793
  38946. }
  38947. },
  38948. handImp: {
  38949. height: math.unit(0.45, "feet"),
  38950. name: "Hand (Imp)",
  38951. image: {
  38952. source: "./media/characters/max-kobold/hand.svg"
  38953. }
  38954. },
  38955. pawImp: {
  38956. height: math.unit(0.46, "feet"),
  38957. name: "Paw (Imp)",
  38958. image: {
  38959. source: "./media/characters/max-kobold/paw.svg"
  38960. }
  38961. },
  38962. handDemi: {
  38963. height: math.unit(0.80, "feet"),
  38964. name: "Hand (Demi)",
  38965. image: {
  38966. source: "./media/characters/max-kobold/hand.svg"
  38967. }
  38968. },
  38969. pawDemi: {
  38970. height: math.unit(1.1, "feet"),
  38971. name: "Paw (Demi)",
  38972. image: {
  38973. source: "./media/characters/max-kobold/paw.svg"
  38974. }
  38975. },
  38976. headImp: {
  38977. height: math.unit(1.33, "feet"),
  38978. name: "Head (Imp)",
  38979. image: {
  38980. source: "./media/characters/max-kobold/head-imp.svg"
  38981. }
  38982. },
  38983. mawImp: {
  38984. height: math.unit(0.75, "feet"),
  38985. name: "Maw (Imp)",
  38986. image: {
  38987. source: "./media/characters/max-kobold/maw-imp.svg"
  38988. }
  38989. },
  38990. mawDemi: {
  38991. height: math.unit(0.42, "feet"),
  38992. name: "Maw (Demi)",
  38993. image: {
  38994. source: "./media/characters/max-kobold/maw-demi.svg"
  38995. }
  38996. },
  38997. },
  38998. [
  38999. {
  39000. name: "Normal",
  39001. height: math.unit(1 + 11/12, "feet"),
  39002. default: true
  39003. },
  39004. ]
  39005. ))
  39006. characterMakers.push(() => makeCharacter(
  39007. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39008. {
  39009. front: {
  39010. height: math.unit(7 + 5/12, "feet"),
  39011. name: "Front",
  39012. image: {
  39013. source: "./media/characters/carbon/front.svg",
  39014. extra: 1754/1689,
  39015. bottom: 65/1819
  39016. }
  39017. },
  39018. back: {
  39019. height: math.unit(7 + 5/12, "feet"),
  39020. name: "Back",
  39021. image: {
  39022. source: "./media/characters/carbon/back.svg",
  39023. extra: 1762/1695,
  39024. bottom: 24/1786
  39025. }
  39026. },
  39027. frontGigantamax: {
  39028. height: math.unit(150, "feet"),
  39029. name: "Front (Gigantamax)",
  39030. image: {
  39031. source: "./media/characters/carbon/front-gigantamax.svg",
  39032. extra: 1826/1669,
  39033. bottom: 59/1885
  39034. }
  39035. },
  39036. backGigantamax: {
  39037. height: math.unit(150, "feet"),
  39038. name: "Back (Gigantamax)",
  39039. image: {
  39040. source: "./media/characters/carbon/back-gigantamax.svg",
  39041. extra: 1796/1653,
  39042. bottom: 53/1849
  39043. }
  39044. },
  39045. maw: {
  39046. height: math.unit(0.48, "feet"),
  39047. name: "Maw",
  39048. image: {
  39049. source: "./media/characters/carbon/maw.svg"
  39050. }
  39051. },
  39052. mawGigantamax: {
  39053. height: math.unit(7.5, "feet"),
  39054. name: "Maw (Gigantamax)",
  39055. image: {
  39056. source: "./media/characters/carbon/maw-gigantamax.svg"
  39057. }
  39058. },
  39059. },
  39060. [
  39061. {
  39062. name: "Normal",
  39063. height: math.unit(7 + 5/12, "feet"),
  39064. default: true
  39065. },
  39066. ]
  39067. ))
  39068. characterMakers.push(() => makeCharacter(
  39069. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39070. {
  39071. front: {
  39072. height: math.unit(6, "feet"),
  39073. name: "Front",
  39074. image: {
  39075. source: "./media/characters/maverick/front.svg",
  39076. extra: 1672/1661,
  39077. bottom: 85/1757
  39078. }
  39079. },
  39080. back: {
  39081. height: math.unit(6, "feet"),
  39082. name: "Back",
  39083. image: {
  39084. source: "./media/characters/maverick/back.svg",
  39085. extra: 1642/1631,
  39086. bottom: 38/1680
  39087. }
  39088. },
  39089. },
  39090. [
  39091. {
  39092. name: "Normal",
  39093. height: math.unit(6, "feet"),
  39094. default: true
  39095. },
  39096. ]
  39097. ))
  39098. characterMakers.push(() => makeCharacter(
  39099. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39100. {
  39101. front: {
  39102. height: math.unit(15, "feet"),
  39103. weight: math.unit(615, "lb"),
  39104. name: "Front",
  39105. image: {
  39106. source: "./media/characters/grockle/front.svg",
  39107. extra: 1535/1427,
  39108. bottom: 56/1591
  39109. }
  39110. },
  39111. },
  39112. [
  39113. {
  39114. name: "Normal",
  39115. height: math.unit(15, "feet"),
  39116. default: true
  39117. },
  39118. {
  39119. name: "Large",
  39120. height: math.unit(150, "feet")
  39121. },
  39122. {
  39123. name: "Macro",
  39124. height: math.unit(1876, "feet")
  39125. },
  39126. {
  39127. name: "Mega Macro",
  39128. height: math.unit(121940, "feet")
  39129. },
  39130. {
  39131. name: "Giga Macro",
  39132. height: math.unit(750, "km")
  39133. },
  39134. {
  39135. name: "Tera Macro",
  39136. height: math.unit(750000, "km")
  39137. },
  39138. {
  39139. name: "Galactic",
  39140. height: math.unit(1.4e5, "km")
  39141. },
  39142. {
  39143. name: "Godlike",
  39144. height: math.unit(9.8e280, "galaxies")
  39145. },
  39146. ]
  39147. ))
  39148. characterMakers.push(() => makeCharacter(
  39149. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39150. {
  39151. front: {
  39152. height: math.unit(11, "meters"),
  39153. weight: math.unit(20, "tonnes"),
  39154. name: "Front",
  39155. image: {
  39156. source: "./media/characters/alistair/front.svg",
  39157. extra: 1265/1009,
  39158. bottom: 93/1358
  39159. }
  39160. },
  39161. },
  39162. [
  39163. {
  39164. name: "Normal",
  39165. height: math.unit(11, "meters"),
  39166. default: true
  39167. },
  39168. ]
  39169. ))
  39170. characterMakers.push(() => makeCharacter(
  39171. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39172. {
  39173. front: {
  39174. height: math.unit(5 + 8/12, "feet"),
  39175. name: "Front",
  39176. image: {
  39177. source: "./media/characters/haruka/front.svg",
  39178. extra: 2012/1952,
  39179. bottom: 0/2012
  39180. }
  39181. },
  39182. },
  39183. [
  39184. {
  39185. name: "Normal",
  39186. height: math.unit(5 + 8/12, "feet"),
  39187. default: true
  39188. },
  39189. ]
  39190. ))
  39191. characterMakers.push(() => makeCharacter(
  39192. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39193. {
  39194. back: {
  39195. height: math.unit(9, "feet"),
  39196. name: "Back",
  39197. image: {
  39198. source: "./media/characters/vivian-sylveon/back.svg",
  39199. extra: 1853/1714,
  39200. bottom: 0/1853
  39201. }
  39202. },
  39203. },
  39204. [
  39205. {
  39206. name: "Normal",
  39207. height: math.unit(9, "feet"),
  39208. default: true
  39209. },
  39210. {
  39211. name: "Macro",
  39212. height: math.unit(500, "feet")
  39213. },
  39214. {
  39215. name: "Megamacro",
  39216. height: math.unit(600, "miles")
  39217. },
  39218. {
  39219. name: "Gigamacro",
  39220. height: math.unit(30000, "miles")
  39221. },
  39222. ]
  39223. ))
  39224. characterMakers.push(() => makeCharacter(
  39225. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39226. {
  39227. anthro: {
  39228. height: math.unit(5 + 10/12, "feet"),
  39229. weight: math.unit(100, "lb"),
  39230. name: "Anthro",
  39231. image: {
  39232. source: "./media/characters/daiki/anthro.svg",
  39233. extra: 1115/1027,
  39234. bottom: 69/1184
  39235. }
  39236. },
  39237. feral: {
  39238. height: math.unit(200, "feet"),
  39239. name: "Feral",
  39240. image: {
  39241. source: "./media/characters/daiki/feral.svg",
  39242. extra: 1256/313,
  39243. bottom: 39/1295
  39244. }
  39245. },
  39246. feralHead: {
  39247. height: math.unit(171, "feet"),
  39248. name: "Feral Head",
  39249. image: {
  39250. source: "./media/characters/daiki/feral-head.svg"
  39251. }
  39252. },
  39253. manaDragon: {
  39254. height: math.unit(170, "meters"),
  39255. name: "Mana-dragon",
  39256. image: {
  39257. source: "./media/characters/daiki/mana-dragon.svg",
  39258. extra: 763/420,
  39259. bottom: 97/860
  39260. }
  39261. },
  39262. },
  39263. [
  39264. {
  39265. name: "Normal",
  39266. height: math.unit(5 + 10/12, "feet"),
  39267. default: true
  39268. },
  39269. ]
  39270. ))
  39271. characterMakers.push(() => makeCharacter(
  39272. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39273. {
  39274. fullyEquippedFront: {
  39275. height: math.unit(3 + 1/12, "feet"),
  39276. weight: math.unit(24, "lb"),
  39277. name: "Fully Equipped (Front)",
  39278. image: {
  39279. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39280. extra: 687/605,
  39281. bottom: 18/705
  39282. }
  39283. },
  39284. fullyEquippedBack: {
  39285. height: math.unit(3 + 1/12, "feet"),
  39286. weight: math.unit(24, "lb"),
  39287. name: "Fully Equipped (Back)",
  39288. image: {
  39289. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39290. extra: 689/590,
  39291. bottom: 18/707
  39292. }
  39293. },
  39294. dailyWear: {
  39295. height: math.unit(3 + 1/12, "feet"),
  39296. weight: math.unit(24, "lb"),
  39297. name: "Daily Wear",
  39298. image: {
  39299. source: "./media/characters/tea-spot/daily-wear.svg",
  39300. extra: 701/620,
  39301. bottom: 21/722
  39302. }
  39303. },
  39304. maidWork: {
  39305. height: math.unit(3 + 1/12, "feet"),
  39306. weight: math.unit(24, "lb"),
  39307. name: "Maid Work",
  39308. image: {
  39309. source: "./media/characters/tea-spot/maid-work.svg",
  39310. extra: 693/609,
  39311. bottom: 15/708
  39312. }
  39313. },
  39314. },
  39315. [
  39316. {
  39317. name: "Normal",
  39318. height: math.unit(3 + 1/12, "feet"),
  39319. default: true
  39320. },
  39321. ]
  39322. ))
  39323. characterMakers.push(() => makeCharacter(
  39324. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39325. {
  39326. front: {
  39327. height: math.unit(175, "cm"),
  39328. weight: math.unit(75, "kg"),
  39329. name: "Front",
  39330. image: {
  39331. source: "./media/characters/chee/front.svg",
  39332. extra: 1796/1740,
  39333. bottom: 40/1836
  39334. }
  39335. },
  39336. },
  39337. [
  39338. {
  39339. name: "Micro-Micro",
  39340. height: math.unit(1, "nm")
  39341. },
  39342. {
  39343. name: "Micro-erst",
  39344. height: math.unit(1, "micrometer")
  39345. },
  39346. {
  39347. name: "Micro-er",
  39348. height: math.unit(1, "cm")
  39349. },
  39350. {
  39351. name: "Normal",
  39352. height: math.unit(175, "cm"),
  39353. default: true
  39354. },
  39355. {
  39356. name: "Macro",
  39357. height: math.unit(100, "m")
  39358. },
  39359. {
  39360. name: "Macro-er",
  39361. height: math.unit(1, "km")
  39362. },
  39363. {
  39364. name: "Macro-erst",
  39365. height: math.unit(10, "km")
  39366. },
  39367. {
  39368. name: "Macro-Macro",
  39369. height: math.unit(100, "km")
  39370. },
  39371. ]
  39372. ))
  39373. characterMakers.push(() => makeCharacter(
  39374. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39375. {
  39376. front: {
  39377. height: math.unit(11 + 9/12, "feet"),
  39378. weight: math.unit(935, "lb"),
  39379. name: "Front",
  39380. image: {
  39381. source: "./media/characters/kingsley/front.svg",
  39382. extra: 1803/1674,
  39383. bottom: 127/1930
  39384. }
  39385. },
  39386. frontNude: {
  39387. height: math.unit(11 + 9/12, "feet"),
  39388. weight: math.unit(935, "lb"),
  39389. name: "Front (Nude)",
  39390. image: {
  39391. source: "./media/characters/kingsley/front-nude.svg",
  39392. extra: 1803/1674,
  39393. bottom: 127/1930
  39394. }
  39395. },
  39396. },
  39397. [
  39398. {
  39399. name: "Normal",
  39400. height: math.unit(11 + 9/12, "feet"),
  39401. default: true
  39402. },
  39403. ]
  39404. ))
  39405. characterMakers.push(() => makeCharacter(
  39406. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39407. {
  39408. side: {
  39409. height: math.unit(9, "feet"),
  39410. name: "Side",
  39411. image: {
  39412. source: "./media/characters/rymel/side.svg",
  39413. extra: 792/469,
  39414. bottom: 121/913
  39415. }
  39416. },
  39417. maw: {
  39418. height: math.unit(2.4, "meters"),
  39419. name: "Maw",
  39420. image: {
  39421. source: "./media/characters/rymel/maw.svg"
  39422. }
  39423. },
  39424. },
  39425. [
  39426. {
  39427. name: "House Drake",
  39428. height: math.unit(2, "feet")
  39429. },
  39430. {
  39431. name: "Reduced",
  39432. height: math.unit(4.5, "feet")
  39433. },
  39434. {
  39435. name: "Normal",
  39436. height: math.unit(9, "feet"),
  39437. default: true
  39438. },
  39439. ]
  39440. ))
  39441. characterMakers.push(() => makeCharacter(
  39442. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39443. {
  39444. front: {
  39445. height: math.unit(1.74, "meters"),
  39446. weight: math.unit(55, "kg"),
  39447. name: "Front",
  39448. image: {
  39449. source: "./media/characters/rubus/front.svg",
  39450. extra: 1894/1742,
  39451. bottom: 44/1938
  39452. }
  39453. },
  39454. },
  39455. [
  39456. {
  39457. name: "Normal",
  39458. height: math.unit(1.74, "meters"),
  39459. default: true
  39460. },
  39461. ]
  39462. ))
  39463. characterMakers.push(() => makeCharacter(
  39464. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39465. {
  39466. front: {
  39467. height: math.unit(5 + 2/12, "feet"),
  39468. weight: math.unit(112, "lb"),
  39469. name: "Front",
  39470. image: {
  39471. source: "./media/characters/cassie-kingston/front.svg",
  39472. extra: 1438/1390,
  39473. bottom: 47/1485
  39474. }
  39475. },
  39476. },
  39477. [
  39478. {
  39479. name: "Normal",
  39480. height: math.unit(5 + 2/12, "feet"),
  39481. default: true
  39482. },
  39483. {
  39484. name: "Macro",
  39485. height: math.unit(128, "feet")
  39486. },
  39487. {
  39488. name: "Megamacro",
  39489. height: math.unit(2.56, "miles")
  39490. },
  39491. ]
  39492. ))
  39493. characterMakers.push(() => makeCharacter(
  39494. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39495. {
  39496. front: {
  39497. height: math.unit(7, "feet"),
  39498. name: "Front",
  39499. image: {
  39500. source: "./media/characters/fox/front.svg",
  39501. extra: 1798/1703,
  39502. bottom: 55/1853
  39503. }
  39504. },
  39505. back: {
  39506. height: math.unit(7, "feet"),
  39507. name: "Back",
  39508. image: {
  39509. source: "./media/characters/fox/back.svg",
  39510. extra: 1748/1649,
  39511. bottom: 32/1780
  39512. }
  39513. },
  39514. head: {
  39515. height: math.unit(1.95, "feet"),
  39516. name: "Head",
  39517. image: {
  39518. source: "./media/characters/fox/head.svg"
  39519. }
  39520. },
  39521. dick: {
  39522. height: math.unit(1.33, "feet"),
  39523. name: "Dick",
  39524. image: {
  39525. source: "./media/characters/fox/dick.svg"
  39526. }
  39527. },
  39528. foot: {
  39529. height: math.unit(1, "feet"),
  39530. name: "Foot",
  39531. image: {
  39532. source: "./media/characters/fox/foot.svg"
  39533. }
  39534. },
  39535. paw: {
  39536. height: math.unit(0.92, "feet"),
  39537. name: "Paw",
  39538. image: {
  39539. source: "./media/characters/fox/paw.svg"
  39540. }
  39541. },
  39542. },
  39543. [
  39544. {
  39545. name: "Small",
  39546. height: math.unit(3, "inches")
  39547. },
  39548. {
  39549. name: "\"Realistic\"",
  39550. height: math.unit(7, "feet")
  39551. },
  39552. {
  39553. name: "Normal",
  39554. height: math.unit(150, "feet"),
  39555. default: true
  39556. },
  39557. {
  39558. name: "BIG",
  39559. height: math.unit(1200, "feet")
  39560. },
  39561. {
  39562. name: "👀",
  39563. height: math.unit(5, "miles")
  39564. },
  39565. {
  39566. name: "👀👀👀",
  39567. height: math.unit(64, "miles")
  39568. },
  39569. ]
  39570. ))
  39571. characterMakers.push(() => makeCharacter(
  39572. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39573. {
  39574. front: {
  39575. height: math.unit(625, "feet"),
  39576. name: "Front",
  39577. image: {
  39578. source: "./media/characters/asonja-rossa/front.svg",
  39579. extra: 1833/1686,
  39580. bottom: 24/1857
  39581. }
  39582. },
  39583. back: {
  39584. height: math.unit(625, "feet"),
  39585. name: "Back",
  39586. image: {
  39587. source: "./media/characters/asonja-rossa/back.svg",
  39588. extra: 1852/1753,
  39589. bottom: 26/1878
  39590. }
  39591. },
  39592. },
  39593. [
  39594. {
  39595. name: "Macro",
  39596. height: math.unit(625, "feet"),
  39597. default: true
  39598. },
  39599. ]
  39600. ))
  39601. characterMakers.push(() => makeCharacter(
  39602. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39603. {
  39604. side: {
  39605. height: math.unit(8, "feet"),
  39606. name: "Side",
  39607. image: {
  39608. source: "./media/characters/rezukii/side.svg",
  39609. extra: 979/542,
  39610. bottom: 87/1066
  39611. }
  39612. },
  39613. sitting: {
  39614. height: math.unit(14.6, "feet"),
  39615. name: "Sitting",
  39616. image: {
  39617. source: "./media/characters/rezukii/sitting.svg",
  39618. extra: 1023/813,
  39619. bottom: 45/1068
  39620. }
  39621. },
  39622. },
  39623. [
  39624. {
  39625. name: "Tiny",
  39626. height: math.unit(2, "feet")
  39627. },
  39628. {
  39629. name: "Smol",
  39630. height: math.unit(4, "feet")
  39631. },
  39632. {
  39633. name: "Normal",
  39634. height: math.unit(8, "feet"),
  39635. default: true
  39636. },
  39637. {
  39638. name: "Big",
  39639. height: math.unit(12, "feet")
  39640. },
  39641. {
  39642. name: "Macro",
  39643. height: math.unit(30, "feet")
  39644. },
  39645. ]
  39646. ))
  39647. characterMakers.push(() => makeCharacter(
  39648. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39649. {
  39650. front: {
  39651. height: math.unit(14, "feet"),
  39652. weight: math.unit(9.5, "tonnes"),
  39653. name: "Front",
  39654. image: {
  39655. source: "./media/characters/dawnheart/front.svg",
  39656. extra: 2792/2675,
  39657. bottom: 64/2856
  39658. }
  39659. },
  39660. },
  39661. [
  39662. {
  39663. name: "Normal",
  39664. height: math.unit(14, "feet"),
  39665. default: true
  39666. },
  39667. ]
  39668. ))
  39669. characterMakers.push(() => makeCharacter(
  39670. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39671. {
  39672. front: {
  39673. height: math.unit(1.7, "m"),
  39674. name: "Front",
  39675. image: {
  39676. source: "./media/characters/gladi/front.svg",
  39677. extra: 1460/1362,
  39678. bottom: 19/1479
  39679. }
  39680. },
  39681. back: {
  39682. height: math.unit(1.7, "m"),
  39683. name: "Back",
  39684. image: {
  39685. source: "./media/characters/gladi/back.svg",
  39686. extra: 1459/1357,
  39687. bottom: 12/1471
  39688. }
  39689. },
  39690. feral: {
  39691. height: math.unit(2.05, "m"),
  39692. name: "Feral",
  39693. image: {
  39694. source: "./media/characters/gladi/feral.svg",
  39695. extra: 821/557,
  39696. bottom: 91/912
  39697. }
  39698. },
  39699. },
  39700. [
  39701. {
  39702. name: "Shortest",
  39703. height: math.unit(70, "cm")
  39704. },
  39705. {
  39706. name: "Normal",
  39707. height: math.unit(1.7, "m")
  39708. },
  39709. {
  39710. name: "Macro",
  39711. height: math.unit(10, "m"),
  39712. default: true
  39713. },
  39714. {
  39715. name: "Tallest",
  39716. height: math.unit(200, "m")
  39717. },
  39718. ]
  39719. ))
  39720. characterMakers.push(() => makeCharacter(
  39721. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39722. {
  39723. front: {
  39724. height: math.unit(5 + 7/12, "feet"),
  39725. weight: math.unit(2, "tons"),
  39726. name: "Front",
  39727. image: {
  39728. source: "./media/characters/erdno/front.svg",
  39729. extra: 1234/1129,
  39730. bottom: 35/1269
  39731. }
  39732. },
  39733. angled: {
  39734. height: math.unit(5 + 7/12, "feet"),
  39735. weight: math.unit(2, "tons"),
  39736. name: "Angled",
  39737. image: {
  39738. source: "./media/characters/erdno/angled.svg",
  39739. extra: 1185/1139,
  39740. bottom: 36/1221
  39741. }
  39742. },
  39743. side: {
  39744. height: math.unit(5 + 7/12, "feet"),
  39745. weight: math.unit(2, "tons"),
  39746. name: "Side",
  39747. image: {
  39748. source: "./media/characters/erdno/side.svg",
  39749. extra: 1191/1144,
  39750. bottom: 40/1231
  39751. }
  39752. },
  39753. back: {
  39754. height: math.unit(5 + 7/12, "feet"),
  39755. weight: math.unit(2, "tons"),
  39756. name: "Back",
  39757. image: {
  39758. source: "./media/characters/erdno/back.svg",
  39759. extra: 1202/1146,
  39760. bottom: 17/1219
  39761. }
  39762. },
  39763. frontNsfw: {
  39764. height: math.unit(5 + 7/12, "feet"),
  39765. weight: math.unit(2, "tons"),
  39766. name: "Front (NSFW)",
  39767. image: {
  39768. source: "./media/characters/erdno/front-nsfw.svg",
  39769. extra: 1234/1129,
  39770. bottom: 35/1269
  39771. }
  39772. },
  39773. angledNsfw: {
  39774. height: math.unit(5 + 7/12, "feet"),
  39775. weight: math.unit(2, "tons"),
  39776. name: "Angled (NSFW)",
  39777. image: {
  39778. source: "./media/characters/erdno/angled-nsfw.svg",
  39779. extra: 1185/1139,
  39780. bottom: 36/1221
  39781. }
  39782. },
  39783. sideNsfw: {
  39784. height: math.unit(5 + 7/12, "feet"),
  39785. weight: math.unit(2, "tons"),
  39786. name: "Side (NSFW)",
  39787. image: {
  39788. source: "./media/characters/erdno/side-nsfw.svg",
  39789. extra: 1191/1144,
  39790. bottom: 40/1231
  39791. }
  39792. },
  39793. backNsfw: {
  39794. height: math.unit(5 + 7/12, "feet"),
  39795. weight: math.unit(2, "tons"),
  39796. name: "Back (NSFW)",
  39797. image: {
  39798. source: "./media/characters/erdno/back-nsfw.svg",
  39799. extra: 1202/1146,
  39800. bottom: 17/1219
  39801. }
  39802. },
  39803. frontHyper: {
  39804. height: math.unit(5 + 7/12, "feet"),
  39805. weight: math.unit(2, "tons"),
  39806. name: "Front (Hyper)",
  39807. image: {
  39808. source: "./media/characters/erdno/front-hyper.svg",
  39809. extra: 1298/1136,
  39810. bottom: 35/1333
  39811. }
  39812. },
  39813. },
  39814. [
  39815. {
  39816. name: "Normal",
  39817. height: math.unit(5 + 7/12, "feet"),
  39818. default: true
  39819. },
  39820. {
  39821. name: "Big",
  39822. height: math.unit(5.7, "meters")
  39823. },
  39824. {
  39825. name: "Macro",
  39826. height: math.unit(5.7, "kilometers")
  39827. },
  39828. {
  39829. name: "Megamacro",
  39830. height: math.unit(5.7, "earths")
  39831. },
  39832. ]
  39833. ))
  39834. characterMakers.push(() => makeCharacter(
  39835. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39836. {
  39837. front: {
  39838. height: math.unit(5 + 10/12, "feet"),
  39839. weight: math.unit(150, "lb"),
  39840. name: "Front",
  39841. image: {
  39842. source: "./media/characters/jamie/front.svg",
  39843. extra: 1908/1768,
  39844. bottom: 19/1927
  39845. }
  39846. },
  39847. },
  39848. [
  39849. {
  39850. name: "Minimum",
  39851. height: math.unit(2, "cm")
  39852. },
  39853. {
  39854. name: "Micro",
  39855. height: math.unit(3, "inches")
  39856. },
  39857. {
  39858. name: "Normal",
  39859. height: math.unit(5 + 10/12, "feet"),
  39860. default: true
  39861. },
  39862. {
  39863. name: "Macro",
  39864. height: math.unit(150, "feet")
  39865. },
  39866. {
  39867. name: "Megamacro",
  39868. height: math.unit(10000, "m")
  39869. },
  39870. ]
  39871. ))
  39872. characterMakers.push(() => makeCharacter(
  39873. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39874. {
  39875. front: {
  39876. height: math.unit(2, "meters"),
  39877. weight: math.unit(100, "kg"),
  39878. name: "Front",
  39879. image: {
  39880. source: "./media/characters/shiron/front.svg",
  39881. extra: 2103/1985,
  39882. bottom: 98/2201
  39883. }
  39884. },
  39885. back: {
  39886. height: math.unit(2, "meters"),
  39887. weight: math.unit(100, "kg"),
  39888. name: "Back",
  39889. image: {
  39890. source: "./media/characters/shiron/back.svg",
  39891. extra: 2110/2015,
  39892. bottom: 89/2199
  39893. }
  39894. },
  39895. hand: {
  39896. height: math.unit(0.96, "feet"),
  39897. name: "Hand",
  39898. image: {
  39899. source: "./media/characters/shiron/hand.svg"
  39900. }
  39901. },
  39902. foot: {
  39903. height: math.unit(1.464, "feet"),
  39904. name: "Foot",
  39905. image: {
  39906. source: "./media/characters/shiron/foot.svg"
  39907. }
  39908. },
  39909. },
  39910. [
  39911. {
  39912. name: "Normal",
  39913. height: math.unit(2, "meters")
  39914. },
  39915. {
  39916. name: "Macro",
  39917. height: math.unit(500, "meters"),
  39918. default: true
  39919. },
  39920. {
  39921. name: "Megamacro",
  39922. height: math.unit(20, "km")
  39923. },
  39924. ]
  39925. ))
  39926. characterMakers.push(() => makeCharacter(
  39927. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39928. {
  39929. front: {
  39930. height: math.unit(6, "feet"),
  39931. name: "Front",
  39932. image: {
  39933. source: "./media/characters/sam/front.svg",
  39934. extra: 849/826,
  39935. bottom: 19/868
  39936. }
  39937. },
  39938. },
  39939. [
  39940. {
  39941. name: "Normal",
  39942. height: math.unit(6, "feet"),
  39943. default: true
  39944. },
  39945. ]
  39946. ))
  39947. characterMakers.push(() => makeCharacter(
  39948. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39949. {
  39950. front: {
  39951. height: math.unit(8 + 4/12, "feet"),
  39952. weight: math.unit(122, "kg"),
  39953. name: "Front",
  39954. image: {
  39955. source: "./media/characters/namori-kurogawa/front.svg",
  39956. extra: 1894/1576,
  39957. bottom: 34/1928
  39958. }
  39959. },
  39960. },
  39961. [
  39962. {
  39963. name: "Normal",
  39964. height: math.unit(8 + 4/12, "feet"),
  39965. default: true
  39966. },
  39967. ]
  39968. ))
  39969. characterMakers.push(() => makeCharacter(
  39970. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39971. {
  39972. front: {
  39973. height: math.unit(9, "feet"),
  39974. weight: math.unit(621, "lb"),
  39975. name: "Front",
  39976. image: {
  39977. source: "./media/characters/unmru/front.svg",
  39978. extra: 1853/1747,
  39979. bottom: 73/1926
  39980. }
  39981. },
  39982. side: {
  39983. height: math.unit(9, "feet"),
  39984. weight: math.unit(621, "lb"),
  39985. name: "Side",
  39986. image: {
  39987. source: "./media/characters/unmru/side.svg",
  39988. extra: 1781/1671,
  39989. bottom: 127/1908
  39990. }
  39991. },
  39992. back: {
  39993. height: math.unit(9, "feet"),
  39994. weight: math.unit(621, "lb"),
  39995. name: "Back",
  39996. image: {
  39997. source: "./media/characters/unmru/back.svg",
  39998. extra: 1894/1765,
  39999. bottom: 75/1969
  40000. }
  40001. },
  40002. dick: {
  40003. height: math.unit(3, "feet"),
  40004. weight: math.unit(35, "lb"),
  40005. name: "Dick",
  40006. image: {
  40007. source: "./media/characters/unmru/dick.svg"
  40008. }
  40009. },
  40010. },
  40011. [
  40012. {
  40013. name: "Normal",
  40014. height: math.unit(9, "feet")
  40015. },
  40016. {
  40017. name: "Natural",
  40018. height: math.unit(27, "feet"),
  40019. default: true
  40020. },
  40021. {
  40022. name: "Giant",
  40023. height: math.unit(90, "feet")
  40024. },
  40025. {
  40026. name: "Kaiju",
  40027. height: math.unit(270, "feet")
  40028. },
  40029. {
  40030. name: "Macro",
  40031. height: math.unit(900, "feet")
  40032. },
  40033. {
  40034. name: "Macro+",
  40035. height: math.unit(2700, "feet")
  40036. },
  40037. {
  40038. name: "Megamacro",
  40039. height: math.unit(9000, "feet")
  40040. },
  40041. {
  40042. name: "City-Crushing",
  40043. height: math.unit(27000, "feet")
  40044. },
  40045. {
  40046. name: "Mountain-Mashing",
  40047. height: math.unit(90000, "feet")
  40048. },
  40049. {
  40050. name: "Earth-Eclipsing",
  40051. height: math.unit(2.7e8, "feet")
  40052. },
  40053. {
  40054. name: "Sol-Swallowing",
  40055. height: math.unit(9e10, "feet")
  40056. },
  40057. {
  40058. name: "Majoris-Munching",
  40059. height: math.unit(2.7e13, "feet")
  40060. },
  40061. ]
  40062. ))
  40063. characterMakers.push(() => makeCharacter(
  40064. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40065. {
  40066. front: {
  40067. height: math.unit(1, "inch"),
  40068. name: "Front",
  40069. image: {
  40070. source: "./media/characters/squeaks-mouse/front.svg",
  40071. extra: 352/308,
  40072. bottom: 25/377
  40073. }
  40074. },
  40075. },
  40076. [
  40077. {
  40078. name: "Micro",
  40079. height: math.unit(1, "inch"),
  40080. default: true
  40081. },
  40082. ]
  40083. ))
  40084. characterMakers.push(() => makeCharacter(
  40085. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40086. {
  40087. side: {
  40088. height: math.unit(35, "feet"),
  40089. name: "Side",
  40090. image: {
  40091. source: "./media/characters/sayko/side.svg",
  40092. extra: 1697/1021,
  40093. bottom: 82/1779
  40094. }
  40095. },
  40096. head: {
  40097. height: math.unit(16, "feet"),
  40098. name: "Head",
  40099. image: {
  40100. source: "./media/characters/sayko/head.svg"
  40101. }
  40102. },
  40103. forepaw: {
  40104. height: math.unit(7.85, "feet"),
  40105. name: "Forepaw",
  40106. image: {
  40107. source: "./media/characters/sayko/forepaw.svg"
  40108. }
  40109. },
  40110. hindpaw: {
  40111. height: math.unit(8.8, "feet"),
  40112. name: "Hindpaw",
  40113. image: {
  40114. source: "./media/characters/sayko/hindpaw.svg"
  40115. }
  40116. },
  40117. },
  40118. [
  40119. {
  40120. name: "Normal",
  40121. height: math.unit(35, "feet"),
  40122. default: true
  40123. },
  40124. {
  40125. name: "Colossus",
  40126. height: math.unit(100, "meters")
  40127. },
  40128. {
  40129. name: "\"Small\" Deity",
  40130. height: math.unit(1, "km")
  40131. },
  40132. {
  40133. name: "\"Large\" Deity",
  40134. height: math.unit(15, "km")
  40135. },
  40136. ]
  40137. ))
  40138. characterMakers.push(() => makeCharacter(
  40139. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40140. {
  40141. front: {
  40142. height: math.unit(6, "feet"),
  40143. weight: math.unit(250, "lb"),
  40144. name: "Front",
  40145. image: {
  40146. source: "./media/characters/mukiro/front.svg",
  40147. extra: 1368/1310,
  40148. bottom: 34/1402
  40149. }
  40150. },
  40151. },
  40152. [
  40153. {
  40154. name: "Normal",
  40155. height: math.unit(6, "feet"),
  40156. default: true
  40157. },
  40158. ]
  40159. ))
  40160. characterMakers.push(() => makeCharacter(
  40161. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40162. {
  40163. front: {
  40164. height: math.unit(12 + 4/12, "feet"),
  40165. name: "Front",
  40166. image: {
  40167. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40168. extra: 1346/1311,
  40169. bottom: 65/1411
  40170. }
  40171. },
  40172. },
  40173. [
  40174. {
  40175. name: "Base",
  40176. height: math.unit(12 + 4/12, "feet"),
  40177. default: true
  40178. },
  40179. {
  40180. name: "Macro",
  40181. height: math.unit(150, "feet")
  40182. },
  40183. {
  40184. name: "Mega",
  40185. height: math.unit(2, "miles")
  40186. },
  40187. {
  40188. name: "Demi God",
  40189. height: math.unit(4, "AU")
  40190. },
  40191. {
  40192. name: "God Size",
  40193. height: math.unit(1, "universe")
  40194. },
  40195. ]
  40196. ))
  40197. characterMakers.push(() => makeCharacter(
  40198. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40199. {
  40200. front: {
  40201. height: math.unit(3 + 3/12, "feet"),
  40202. weight: math.unit(88, "lb"),
  40203. name: "Front",
  40204. image: {
  40205. source: "./media/characters/trey/front.svg",
  40206. extra: 1815/1509,
  40207. bottom: 60/1875
  40208. }
  40209. },
  40210. },
  40211. [
  40212. {
  40213. name: "Normal",
  40214. height: math.unit(3 + 3/12, "feet"),
  40215. default: true
  40216. },
  40217. ]
  40218. ))
  40219. characterMakers.push(() => makeCharacter(
  40220. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40221. {
  40222. front: {
  40223. height: math.unit(4, "meters"),
  40224. name: "Front",
  40225. image: {
  40226. source: "./media/characters/adelonda/front.svg",
  40227. extra: 1077/982,
  40228. bottom: 39/1116
  40229. }
  40230. },
  40231. back: {
  40232. height: math.unit(4, "meters"),
  40233. name: "Back",
  40234. image: {
  40235. source: "./media/characters/adelonda/back.svg",
  40236. extra: 1105/1003,
  40237. bottom: 25/1130
  40238. }
  40239. },
  40240. feral: {
  40241. height: math.unit(40/1.5, "meters"),
  40242. name: "Feral",
  40243. image: {
  40244. source: "./media/characters/adelonda/feral.svg",
  40245. extra: 597/271,
  40246. bottom: 387/984
  40247. }
  40248. },
  40249. },
  40250. [
  40251. {
  40252. name: "Normal",
  40253. height: math.unit(4, "meters"),
  40254. default: true
  40255. },
  40256. ]
  40257. ))
  40258. characterMakers.push(() => makeCharacter(
  40259. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40260. {
  40261. front: {
  40262. height: math.unit(8 + 4/12, "feet"),
  40263. weight: math.unit(670, "lb"),
  40264. name: "Front",
  40265. image: {
  40266. source: "./media/characters/acadiel/front.svg",
  40267. extra: 1901/1595,
  40268. bottom: 142/2043
  40269. }
  40270. },
  40271. },
  40272. [
  40273. {
  40274. name: "Normal",
  40275. height: math.unit(8 + 4/12, "feet"),
  40276. default: true
  40277. },
  40278. {
  40279. name: "Macro",
  40280. height: math.unit(200, "feet")
  40281. },
  40282. ]
  40283. ))
  40284. characterMakers.push(() => makeCharacter(
  40285. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40286. {
  40287. front: {
  40288. height: math.unit(6 + 2/12, "feet"),
  40289. weight: math.unit(185, "lb"),
  40290. name: "Front",
  40291. image: {
  40292. source: "./media/characters/kayne-ein/front.svg",
  40293. extra: 1780/1560,
  40294. bottom: 81/1861
  40295. }
  40296. },
  40297. },
  40298. [
  40299. {
  40300. name: "Normal",
  40301. height: math.unit(6 + 2/12, "feet"),
  40302. default: true
  40303. },
  40304. {
  40305. name: "Transformation Stage",
  40306. height: math.unit(15, "feet")
  40307. },
  40308. {
  40309. name: "Macro",
  40310. height: math.unit(150, "feet")
  40311. },
  40312. {
  40313. name: "Earth's Shadow",
  40314. height: math.unit(6200, "miles")
  40315. },
  40316. {
  40317. name: "Universal Demon",
  40318. height: math.unit(28e9, "parsecs")
  40319. },
  40320. {
  40321. name: "Multiverse God",
  40322. height: math.unit(3, "multiverses")
  40323. },
  40324. ]
  40325. ))
  40326. characterMakers.push(() => makeCharacter(
  40327. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40328. {
  40329. front: {
  40330. height: math.unit(5 + 5/12, "feet"),
  40331. name: "Front",
  40332. image: {
  40333. source: "./media/characters/fawn/front.svg",
  40334. extra: 1873/1731,
  40335. bottom: 95/1968
  40336. }
  40337. },
  40338. back: {
  40339. height: math.unit(5 + 5/12, "feet"),
  40340. name: "Back",
  40341. image: {
  40342. source: "./media/characters/fawn/back.svg",
  40343. extra: 1813/1700,
  40344. bottom: 14/1827
  40345. }
  40346. },
  40347. hoof: {
  40348. height: math.unit(1.45, "feet"),
  40349. name: "Hoof",
  40350. image: {
  40351. source: "./media/characters/fawn/hoof.svg"
  40352. }
  40353. },
  40354. },
  40355. [
  40356. {
  40357. name: "Normal",
  40358. height: math.unit(5 + 5/12, "feet"),
  40359. default: true
  40360. },
  40361. ]
  40362. ))
  40363. characterMakers.push(() => makeCharacter(
  40364. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40365. {
  40366. front: {
  40367. height: math.unit(2 + 5/12, "feet"),
  40368. name: "Front",
  40369. image: {
  40370. source: "./media/characters/orion/front.svg",
  40371. extra: 1366/1304,
  40372. bottom: 43/1409
  40373. }
  40374. },
  40375. paw: {
  40376. height: math.unit(0.52, "feet"),
  40377. name: "Paw",
  40378. image: {
  40379. source: "./media/characters/orion/paw.svg"
  40380. }
  40381. },
  40382. },
  40383. [
  40384. {
  40385. name: "Normal",
  40386. height: math.unit(2 + 5/12, "feet"),
  40387. default: true
  40388. },
  40389. ]
  40390. ))
  40391. characterMakers.push(() => makeCharacter(
  40392. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40393. {
  40394. front: {
  40395. height: math.unit(5 + 10/12, "feet"),
  40396. name: "Front",
  40397. image: {
  40398. source: "./media/characters/vera/front.svg",
  40399. extra: 1680/1575,
  40400. bottom: 49/1729
  40401. }
  40402. },
  40403. back: {
  40404. height: math.unit(5 + 10/12, "feet"),
  40405. name: "Back",
  40406. image: {
  40407. source: "./media/characters/vera/back.svg",
  40408. extra: 1700/1588,
  40409. bottom: 18/1718
  40410. }
  40411. },
  40412. arcanine: {
  40413. height: math.unit(6 + 8/12, "feet"),
  40414. name: "Arcanine",
  40415. image: {
  40416. source: "./media/characters/vera/arcanine.svg",
  40417. extra: 1590/1511,
  40418. bottom: 71/1661
  40419. }
  40420. },
  40421. maw: {
  40422. height: math.unit(0.82, "feet"),
  40423. name: "Maw",
  40424. image: {
  40425. source: "./media/characters/vera/maw.svg"
  40426. }
  40427. },
  40428. mawArcanine: {
  40429. height: math.unit(0.97, "feet"),
  40430. name: "Maw (Arcanine)",
  40431. image: {
  40432. source: "./media/characters/vera/maw-arcanine.svg"
  40433. }
  40434. },
  40435. paw: {
  40436. height: math.unit(0.75, "feet"),
  40437. name: "Paw",
  40438. image: {
  40439. source: "./media/characters/vera/paw.svg"
  40440. }
  40441. },
  40442. pawprint: {
  40443. height: math.unit(0.52, "feet"),
  40444. name: "Pawprint",
  40445. image: {
  40446. source: "./media/characters/vera/pawprint.svg"
  40447. }
  40448. },
  40449. },
  40450. [
  40451. {
  40452. name: "Normal",
  40453. height: math.unit(5 + 10/12, "feet"),
  40454. default: true
  40455. },
  40456. {
  40457. name: "Macro",
  40458. height: math.unit(75, "feet")
  40459. },
  40460. ]
  40461. ))
  40462. characterMakers.push(() => makeCharacter(
  40463. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40464. {
  40465. front: {
  40466. height: math.unit(4, "feet"),
  40467. weight: math.unit(40, "lb"),
  40468. name: "Front",
  40469. image: {
  40470. source: "./media/characters/orvan-rabbit/front.svg",
  40471. extra: 1896/1642,
  40472. bottom: 29/1925
  40473. }
  40474. },
  40475. },
  40476. [
  40477. {
  40478. name: "Normal",
  40479. height: math.unit(4, "feet"),
  40480. default: true
  40481. },
  40482. ]
  40483. ))
  40484. characterMakers.push(() => makeCharacter(
  40485. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40486. {
  40487. front: {
  40488. height: math.unit(6, "feet"),
  40489. weight: math.unit(168, "lb"),
  40490. name: "Front",
  40491. image: {
  40492. source: "./media/characters/lisa/front.svg",
  40493. extra: 2065/1867,
  40494. bottom: 46/2111
  40495. }
  40496. },
  40497. back: {
  40498. height: math.unit(6, "feet"),
  40499. weight: math.unit(168, "lb"),
  40500. name: "Back",
  40501. image: {
  40502. source: "./media/characters/lisa/back.svg",
  40503. extra: 1982/1838,
  40504. bottom: 29/2011
  40505. }
  40506. },
  40507. maw: {
  40508. height: math.unit(0.81, "feet"),
  40509. name: "Maw",
  40510. image: {
  40511. source: "./media/characters/lisa/maw.svg"
  40512. }
  40513. },
  40514. paw: {
  40515. height: math.unit(0.9, "feet"),
  40516. name: "Paw",
  40517. image: {
  40518. source: "./media/characters/lisa/paw.svg"
  40519. }
  40520. },
  40521. caribousune: {
  40522. height: math.unit(7 + 2/12, "feet"),
  40523. weight: math.unit(268, "lb"),
  40524. name: "Caribousune",
  40525. image: {
  40526. source: "./media/characters/lisa/caribousune.svg",
  40527. extra: 1843/1633,
  40528. bottom: 29/1872
  40529. }
  40530. },
  40531. frontCaribousune: {
  40532. height: math.unit(7 + 2/12, "feet"),
  40533. weight: math.unit(268, "lb"),
  40534. name: "Front (Caribousune)",
  40535. image: {
  40536. source: "./media/characters/lisa/front-caribousune.svg",
  40537. extra: 1818/1638,
  40538. bottom: 52/1870
  40539. }
  40540. },
  40541. sideCaribousune: {
  40542. height: math.unit(7 + 2/12, "feet"),
  40543. weight: math.unit(268, "lb"),
  40544. name: "Side (Caribousune)",
  40545. image: {
  40546. source: "./media/characters/lisa/side-caribousune.svg",
  40547. extra: 1851/1635,
  40548. bottom: 16/1867
  40549. }
  40550. },
  40551. backCaribousune: {
  40552. height: math.unit(7 + 2/12, "feet"),
  40553. weight: math.unit(268, "lb"),
  40554. name: "Back (Caribousune)",
  40555. image: {
  40556. source: "./media/characters/lisa/back-caribousune.svg",
  40557. extra: 1801/1604,
  40558. bottom: 44/1845
  40559. }
  40560. },
  40561. caribou: {
  40562. height: math.unit(7 + 2/12, "feet"),
  40563. weight: math.unit(268, "lb"),
  40564. name: "Caribou",
  40565. image: {
  40566. source: "./media/characters/lisa/caribou.svg",
  40567. extra: 1843/1633,
  40568. bottom: 29/1872
  40569. }
  40570. },
  40571. frontCaribou: {
  40572. height: math.unit(7 + 2/12, "feet"),
  40573. weight: math.unit(268, "lb"),
  40574. name: "Front (Caribou)",
  40575. image: {
  40576. source: "./media/characters/lisa/front-caribou.svg",
  40577. extra: 1818/1638,
  40578. bottom: 52/1870
  40579. }
  40580. },
  40581. sideCaribou: {
  40582. height: math.unit(7 + 2/12, "feet"),
  40583. weight: math.unit(268, "lb"),
  40584. name: "Side (Caribou)",
  40585. image: {
  40586. source: "./media/characters/lisa/side-caribou.svg",
  40587. extra: 1851/1635,
  40588. bottom: 16/1867
  40589. }
  40590. },
  40591. backCaribou: {
  40592. height: math.unit(7 + 2/12, "feet"),
  40593. weight: math.unit(268, "lb"),
  40594. name: "Back (Caribou)",
  40595. image: {
  40596. source: "./media/characters/lisa/back-caribou.svg",
  40597. extra: 1801/1604,
  40598. bottom: 44/1845
  40599. }
  40600. },
  40601. mawCaribou: {
  40602. height: math.unit(1.45, "feet"),
  40603. name: "Maw (Caribou)",
  40604. image: {
  40605. source: "./media/characters/lisa/maw-caribou.svg"
  40606. }
  40607. },
  40608. mawCaribousune: {
  40609. height: math.unit(1.45, "feet"),
  40610. name: "Maw (Caribousune)",
  40611. image: {
  40612. source: "./media/characters/lisa/maw-caribousune.svg"
  40613. }
  40614. },
  40615. pawCaribousune: {
  40616. height: math.unit(1.61, "feet"),
  40617. name: "Paw (Caribou)",
  40618. image: {
  40619. source: "./media/characters/lisa/paw-caribousune.svg"
  40620. }
  40621. },
  40622. },
  40623. [
  40624. {
  40625. name: "Normal",
  40626. height: math.unit(6, "feet")
  40627. },
  40628. {
  40629. name: "God Size",
  40630. height: math.unit(72, "feet"),
  40631. default: true
  40632. },
  40633. {
  40634. name: "Towering",
  40635. height: math.unit(288, "feet")
  40636. },
  40637. {
  40638. name: "City Size",
  40639. height: math.unit(48384, "feet")
  40640. },
  40641. {
  40642. name: "Continental",
  40643. height: math.unit(4200, "miles")
  40644. },
  40645. {
  40646. name: "Planet Eater",
  40647. height: math.unit(42, "earths")
  40648. },
  40649. {
  40650. name: "Star Swallower",
  40651. height: math.unit(42, "solarradii")
  40652. },
  40653. {
  40654. name: "System Swallower",
  40655. height: math.unit(84000, "AU")
  40656. },
  40657. {
  40658. name: "Galaxy Gobbler",
  40659. height: math.unit(42, "galaxies")
  40660. },
  40661. {
  40662. name: "Universe Devourer",
  40663. height: math.unit(42, "universes")
  40664. },
  40665. {
  40666. name: "Multiverse Muncher",
  40667. height: math.unit(42, "multiverses")
  40668. },
  40669. ]
  40670. ))
  40671. characterMakers.push(() => makeCharacter(
  40672. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40673. {
  40674. front: {
  40675. height: math.unit(36, "feet"),
  40676. name: "Front",
  40677. image: {
  40678. source: "./media/characters/shadow-rat/front.svg",
  40679. extra: 1845/1758,
  40680. bottom: 83/1928
  40681. }
  40682. },
  40683. },
  40684. [
  40685. {
  40686. name: "Macro",
  40687. height: math.unit(36, "feet"),
  40688. default: true
  40689. },
  40690. ]
  40691. ))
  40692. characterMakers.push(() => makeCharacter(
  40693. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40694. {
  40695. side: {
  40696. height: math.unit(8, "feet"),
  40697. weight: math.unit(2630, "lb"),
  40698. name: "Side",
  40699. image: {
  40700. source: "./media/characters/torallia/side.svg",
  40701. extra: 2164/2021,
  40702. bottom: 371/2535
  40703. }
  40704. },
  40705. },
  40706. [
  40707. {
  40708. name: "Mortal Interaction",
  40709. height: math.unit(8, "feet")
  40710. },
  40711. {
  40712. name: "Natural",
  40713. height: math.unit(24, "feet"),
  40714. default: true
  40715. },
  40716. {
  40717. name: "Giant",
  40718. height: math.unit(80, "feet")
  40719. },
  40720. {
  40721. name: "Kaiju",
  40722. height: math.unit(240, "feet")
  40723. },
  40724. {
  40725. name: "Macro",
  40726. height: math.unit(800, "feet")
  40727. },
  40728. {
  40729. name: "Macro+",
  40730. height: math.unit(2400, "feet")
  40731. },
  40732. {
  40733. name: "Macro++",
  40734. height: math.unit(8000, "feet")
  40735. },
  40736. {
  40737. name: "City-Crushing",
  40738. height: math.unit(24000, "feet")
  40739. },
  40740. {
  40741. name: "Mountain-Mashing",
  40742. height: math.unit(80000, "feet")
  40743. },
  40744. {
  40745. name: "District Demolisher",
  40746. height: math.unit(240000, "feet")
  40747. },
  40748. {
  40749. name: "Tri-County Terror",
  40750. height: math.unit(800000, "feet")
  40751. },
  40752. {
  40753. name: "State Smasher",
  40754. height: math.unit(2.4e6, "feet")
  40755. },
  40756. {
  40757. name: "Nation Nemesis",
  40758. height: math.unit(8e6, "feet")
  40759. },
  40760. {
  40761. name: "Continent Cracker",
  40762. height: math.unit(2.4e7, "feet")
  40763. },
  40764. {
  40765. name: "Planet-Pillaging",
  40766. height: math.unit(8e7, "feet")
  40767. },
  40768. {
  40769. name: "Earth-Eclipsing",
  40770. height: math.unit(2.4e8, "feet")
  40771. },
  40772. {
  40773. name: "Jovian-Jostling",
  40774. height: math.unit(8e8, "feet")
  40775. },
  40776. {
  40777. name: "Gas Giant Gulper",
  40778. height: math.unit(2.4e9, "feet")
  40779. },
  40780. {
  40781. name: "Astral Annihilator",
  40782. height: math.unit(8e9, "feet")
  40783. },
  40784. {
  40785. name: "Celestial Conqueror",
  40786. height: math.unit(2.4e10, "feet")
  40787. },
  40788. {
  40789. name: "Sol-Swallowing",
  40790. height: math.unit(8e10, "feet")
  40791. },
  40792. {
  40793. name: "Hunter of the Heavens",
  40794. height: math.unit(2.4e13, "feet")
  40795. },
  40796. ]
  40797. ))
  40798. characterMakers.push(() => makeCharacter(
  40799. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40800. {
  40801. front: {
  40802. height: math.unit(6 + 8/12, "feet"),
  40803. weight: math.unit(250, "kilograms"),
  40804. volume: math.unit(28, "liters"),
  40805. name: "Front",
  40806. image: {
  40807. source: "./media/characters/rebecca-pawlson/front.svg",
  40808. extra: 1737/1596,
  40809. bottom: 107/1844
  40810. }
  40811. },
  40812. back: {
  40813. height: math.unit(6 + 8/12, "feet"),
  40814. weight: math.unit(250, "kilograms"),
  40815. volume: math.unit(28, "liters"),
  40816. name: "Back",
  40817. image: {
  40818. source: "./media/characters/rebecca-pawlson/back.svg",
  40819. extra: 1702/1523,
  40820. bottom: 86/1788
  40821. }
  40822. },
  40823. },
  40824. [
  40825. {
  40826. name: "Normal",
  40827. height: math.unit(6 + 8/12, "feet")
  40828. },
  40829. {
  40830. name: "Mini Macro",
  40831. height: math.unit(10, "feet"),
  40832. default: true
  40833. },
  40834. {
  40835. name: "Macro",
  40836. height: math.unit(100, "feet")
  40837. },
  40838. {
  40839. name: "Mega Macro",
  40840. height: math.unit(2500, "feet")
  40841. },
  40842. {
  40843. name: "Giga Macro",
  40844. height: math.unit(50, "miles")
  40845. },
  40846. ]
  40847. ))
  40848. characterMakers.push(() => makeCharacter(
  40849. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40850. {
  40851. front: {
  40852. height: math.unit(7 + 6/12, "feet"),
  40853. weight: math.unit(600, "lb"),
  40854. name: "Front",
  40855. image: {
  40856. source: "./media/characters/moxie-nova/front.svg",
  40857. extra: 1734/1652,
  40858. bottom: 41/1775
  40859. }
  40860. },
  40861. },
  40862. [
  40863. {
  40864. name: "Normal",
  40865. height: math.unit(7 + 6/12, "feet"),
  40866. default: true
  40867. },
  40868. ]
  40869. ))
  40870. characterMakers.push(() => makeCharacter(
  40871. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40872. {
  40873. goat: {
  40874. height: math.unit(4, "feet"),
  40875. weight: math.unit(180, "lb"),
  40876. name: "Goat",
  40877. image: {
  40878. source: "./media/characters/tiffany/goat.svg",
  40879. extra: 1845/1595,
  40880. bottom: 106/1951
  40881. }
  40882. },
  40883. front: {
  40884. height: math.unit(5, "feet"),
  40885. weight: math.unit(150, "lb"),
  40886. name: "Foxcoon",
  40887. image: {
  40888. source: "./media/characters/tiffany/foxcoon.svg",
  40889. extra: 1941/1845,
  40890. bottom: 58/1999
  40891. }
  40892. },
  40893. },
  40894. [
  40895. {
  40896. name: "Normal",
  40897. height: math.unit(5, "feet"),
  40898. default: true
  40899. },
  40900. ]
  40901. ))
  40902. characterMakers.push(() => makeCharacter(
  40903. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40904. {
  40905. front: {
  40906. height: math.unit(8, "feet"),
  40907. weight: math.unit(300, "lb"),
  40908. name: "Front",
  40909. image: {
  40910. source: "./media/characters/raxinath/front.svg",
  40911. extra: 1407/1309,
  40912. bottom: 39/1446
  40913. }
  40914. },
  40915. back: {
  40916. height: math.unit(8, "feet"),
  40917. weight: math.unit(300, "lb"),
  40918. name: "Back",
  40919. image: {
  40920. source: "./media/characters/raxinath/back.svg",
  40921. extra: 1405/1315,
  40922. bottom: 9/1414
  40923. }
  40924. },
  40925. },
  40926. [
  40927. {
  40928. name: "Speck",
  40929. height: math.unit(0.5, "nm")
  40930. },
  40931. {
  40932. name: "Micro",
  40933. height: math.unit(3, "inches")
  40934. },
  40935. {
  40936. name: "Kobold",
  40937. height: math.unit(3, "feet")
  40938. },
  40939. {
  40940. name: "Normal",
  40941. height: math.unit(8, "feet"),
  40942. default: true
  40943. },
  40944. {
  40945. name: "Giant",
  40946. height: math.unit(50, "feet")
  40947. },
  40948. {
  40949. name: "Macro",
  40950. height: math.unit(1000, "feet")
  40951. },
  40952. {
  40953. name: "Megamacro",
  40954. height: math.unit(1, "mile")
  40955. },
  40956. ]
  40957. ))
  40958. characterMakers.push(() => makeCharacter(
  40959. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40960. {
  40961. front: {
  40962. height: math.unit(10, "feet"),
  40963. weight: math.unit(1442, "lb"),
  40964. name: "Front",
  40965. image: {
  40966. source: "./media/characters/mal-dragon/front.svg",
  40967. extra: 1515/1444,
  40968. bottom: 113/1628
  40969. }
  40970. },
  40971. back: {
  40972. height: math.unit(10, "feet"),
  40973. weight: math.unit(1442, "lb"),
  40974. name: "Back",
  40975. image: {
  40976. source: "./media/characters/mal-dragon/back.svg",
  40977. extra: 1527/1434,
  40978. bottom: 25/1552
  40979. }
  40980. },
  40981. },
  40982. [
  40983. {
  40984. name: "Mortal Interaction",
  40985. height: math.unit(10, "feet"),
  40986. default: true
  40987. },
  40988. {
  40989. name: "Large",
  40990. height: math.unit(30, "feet")
  40991. },
  40992. {
  40993. name: "Kaiju",
  40994. height: math.unit(300, "feet")
  40995. },
  40996. {
  40997. name: "Megamacro",
  40998. height: math.unit(10000, "feet")
  40999. },
  41000. {
  41001. name: "Continent Cracker",
  41002. height: math.unit(30000000, "feet")
  41003. },
  41004. {
  41005. name: "Sol-Swallowing",
  41006. height: math.unit(1e11, "feet")
  41007. },
  41008. {
  41009. name: "Light Universal",
  41010. height: math.unit(5, "universes")
  41011. },
  41012. {
  41013. name: "Universe Atoms",
  41014. height: math.unit(1.829e9, "universes")
  41015. },
  41016. {
  41017. name: "Light Multiversal",
  41018. height: math.unit(5, "multiverses")
  41019. },
  41020. {
  41021. name: "Multiverse Atoms",
  41022. height: math.unit(1.829e9, "multiverses")
  41023. },
  41024. {
  41025. name: "Fabric of Time",
  41026. height: math.unit(1e262, "multiverses")
  41027. },
  41028. ]
  41029. ))
  41030. characterMakers.push(() => makeCharacter(
  41031. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41032. {
  41033. front: {
  41034. height: math.unit(9, "feet"),
  41035. weight: math.unit(1050, "lb"),
  41036. name: "Front",
  41037. image: {
  41038. source: "./media/characters/tabitha/front.svg",
  41039. extra: 2083/1994,
  41040. bottom: 68/2151
  41041. }
  41042. },
  41043. },
  41044. [
  41045. {
  41046. name: "Baseline",
  41047. height: math.unit(9, "feet"),
  41048. default: true
  41049. },
  41050. {
  41051. name: "Giant",
  41052. height: math.unit(90, "feet")
  41053. },
  41054. {
  41055. name: "Macro",
  41056. height: math.unit(900, "feet")
  41057. },
  41058. {
  41059. name: "Megamacro",
  41060. height: math.unit(9000, "feet")
  41061. },
  41062. {
  41063. name: "City-Crushing",
  41064. height: math.unit(27000, "feet")
  41065. },
  41066. {
  41067. name: "Mountain-Mashing",
  41068. height: math.unit(90000, "feet")
  41069. },
  41070. {
  41071. name: "Nation Nemesis",
  41072. height: math.unit(9e6, "feet")
  41073. },
  41074. {
  41075. name: "Continent Cracker",
  41076. height: math.unit(27e6, "feet")
  41077. },
  41078. {
  41079. name: "Earth-Eclipsing",
  41080. height: math.unit(2.7e8, "feet")
  41081. },
  41082. {
  41083. name: "Gas Giant Gulper",
  41084. height: math.unit(2.7e9, "feet")
  41085. },
  41086. {
  41087. name: "Sol-Swallowing",
  41088. height: math.unit(9e10, "feet")
  41089. },
  41090. {
  41091. name: "Galaxy Gulper",
  41092. height: math.unit(9, "galaxies")
  41093. },
  41094. {
  41095. name: "Cosmos Churner",
  41096. height: math.unit(9, "universes")
  41097. },
  41098. ]
  41099. ))
  41100. characterMakers.push(() => makeCharacter(
  41101. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41102. {
  41103. front: {
  41104. height: math.unit(160, "cm"),
  41105. weight: math.unit(55, "kg"),
  41106. name: "Front",
  41107. image: {
  41108. source: "./media/characters/tow/front.svg",
  41109. extra: 1751/1722,
  41110. bottom: 74/1825
  41111. }
  41112. },
  41113. },
  41114. [
  41115. {
  41116. name: "Norm",
  41117. height: math.unit(160, "cm")
  41118. },
  41119. {
  41120. name: "Casual",
  41121. height: math.unit(3200, "m"),
  41122. default: true
  41123. },
  41124. {
  41125. name: "Show-Off",
  41126. height: math.unit(160, "km")
  41127. },
  41128. ]
  41129. ))
  41130. characterMakers.push(() => makeCharacter(
  41131. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41132. {
  41133. front: {
  41134. height: math.unit(7 + 11/12, "feet"),
  41135. weight: math.unit(342.8, "lb"),
  41136. name: "Front",
  41137. image: {
  41138. source: "./media/characters/vivian-orca-dragon/front.svg",
  41139. extra: 1890/1865,
  41140. bottom: 28/1918
  41141. }
  41142. },
  41143. },
  41144. [
  41145. {
  41146. name: "Micro",
  41147. height: math.unit(5, "inches")
  41148. },
  41149. {
  41150. name: "Normal",
  41151. height: math.unit(7 + 11/12, "feet"),
  41152. default: true
  41153. },
  41154. {
  41155. name: "Macro",
  41156. height: math.unit(395 + 7/12, "feet")
  41157. },
  41158. ]
  41159. ))
  41160. characterMakers.push(() => makeCharacter(
  41161. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41162. {
  41163. side: {
  41164. height: math.unit(10, "feet"),
  41165. weight: math.unit(1442, "lb"),
  41166. name: "Side",
  41167. image: {
  41168. source: "./media/characters/lotherakon/side.svg",
  41169. extra: 1604/1497,
  41170. bottom: 89/1693
  41171. }
  41172. },
  41173. },
  41174. [
  41175. {
  41176. name: "Mortal Interaction",
  41177. height: math.unit(10, "feet")
  41178. },
  41179. {
  41180. name: "Large",
  41181. height: math.unit(30, "feet"),
  41182. default: true
  41183. },
  41184. {
  41185. name: "Giant",
  41186. height: math.unit(100, "feet")
  41187. },
  41188. {
  41189. name: "Kaiju",
  41190. height: math.unit(300, "feet")
  41191. },
  41192. {
  41193. name: "Macro",
  41194. height: math.unit(1000, "feet")
  41195. },
  41196. {
  41197. name: "Macro+",
  41198. height: math.unit(3000, "feet")
  41199. },
  41200. {
  41201. name: "Megamacro",
  41202. height: math.unit(10000, "feet")
  41203. },
  41204. {
  41205. name: "City-Crushing",
  41206. height: math.unit(30000, "feet")
  41207. },
  41208. {
  41209. name: "Continent Cracker",
  41210. height: math.unit(30e6, "feet")
  41211. },
  41212. {
  41213. name: "Earth Eclipsing",
  41214. height: math.unit(3e8, "feet")
  41215. },
  41216. {
  41217. name: "Gas Giant Gulper",
  41218. height: math.unit(3e9, "feet")
  41219. },
  41220. {
  41221. name: "Sol-Swallowing",
  41222. height: math.unit(1e11, "feet")
  41223. },
  41224. {
  41225. name: "System Swallower",
  41226. height: math.unit(3e14, "feet")
  41227. },
  41228. {
  41229. name: "Galaxy Gulper",
  41230. height: math.unit(10, "galaxies")
  41231. },
  41232. {
  41233. name: "Light Universal",
  41234. height: math.unit(5, "universes")
  41235. },
  41236. {
  41237. name: "Universe Palm",
  41238. height: math.unit(20, "universes")
  41239. },
  41240. {
  41241. name: "Light Multiversal",
  41242. height: math.unit(5, "multiverses")
  41243. },
  41244. {
  41245. name: "Multiverse Palm",
  41246. height: math.unit(20, "multiverses")
  41247. },
  41248. {
  41249. name: "Inferno Incarnate",
  41250. height: math.unit(1e7, "multiverses")
  41251. },
  41252. ]
  41253. ))
  41254. characterMakers.push(() => makeCharacter(
  41255. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41256. {
  41257. front: {
  41258. height: math.unit(8, "feet"),
  41259. weight: math.unit(1200, "lb"),
  41260. name: "Front",
  41261. image: {
  41262. source: "./media/characters/malithee/front.svg",
  41263. extra: 1675/1640,
  41264. bottom: 162/1837
  41265. }
  41266. },
  41267. },
  41268. [
  41269. {
  41270. name: "Mortal Interaction",
  41271. height: math.unit(8, "feet"),
  41272. default: true
  41273. },
  41274. {
  41275. name: "Large",
  41276. height: math.unit(24, "feet")
  41277. },
  41278. {
  41279. name: "Kaiju",
  41280. height: math.unit(240, "feet")
  41281. },
  41282. {
  41283. name: "Megamacro",
  41284. height: math.unit(8000, "feet")
  41285. },
  41286. {
  41287. name: "Continent Cracker",
  41288. height: math.unit(24e6, "feet")
  41289. },
  41290. {
  41291. name: "Earth-Eclipsing",
  41292. height: math.unit(2.4e8, "feet")
  41293. },
  41294. {
  41295. name: "Sol-Swallowing",
  41296. height: math.unit(8e10, "feet")
  41297. },
  41298. {
  41299. name: "Galaxy Gulper",
  41300. height: math.unit(8, "galaxies")
  41301. },
  41302. {
  41303. name: "Light Universal",
  41304. height: math.unit(4, "universes")
  41305. },
  41306. {
  41307. name: "Universe Atoms",
  41308. height: math.unit(1.829e9, "universes")
  41309. },
  41310. {
  41311. name: "Light Multiversal",
  41312. height: math.unit(4, "multiverses")
  41313. },
  41314. {
  41315. name: "Multiverse Atoms",
  41316. height: math.unit(1.829e9, "multiverses")
  41317. },
  41318. {
  41319. name: "Nigh-Omnipresence",
  41320. height: math.unit(8e261, "multiverses")
  41321. },
  41322. ]
  41323. ))
  41324. characterMakers.push(() => makeCharacter(
  41325. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41326. {
  41327. front: {
  41328. height: math.unit(10, "feet"),
  41329. weight: math.unit(1500, "lb"),
  41330. name: "Front",
  41331. image: {
  41332. source: "./media/characters/miles-thestia/front.svg",
  41333. extra: 1812/1727,
  41334. bottom: 86/1898
  41335. }
  41336. },
  41337. back: {
  41338. height: math.unit(10, "feet"),
  41339. weight: math.unit(1500, "lb"),
  41340. name: "Back",
  41341. image: {
  41342. source: "./media/characters/miles-thestia/back.svg",
  41343. extra: 1799/1690,
  41344. bottom: 47/1846
  41345. }
  41346. },
  41347. frontNsfw: {
  41348. height: math.unit(10, "feet"),
  41349. weight: math.unit(1500, "lb"),
  41350. name: "Front (NSFW)",
  41351. image: {
  41352. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41353. extra: 1812/1727,
  41354. bottom: 86/1898
  41355. }
  41356. },
  41357. },
  41358. [
  41359. {
  41360. name: "Mini-Macro",
  41361. height: math.unit(10, "feet"),
  41362. default: true
  41363. },
  41364. ]
  41365. ))
  41366. characterMakers.push(() => makeCharacter(
  41367. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41368. {
  41369. front: {
  41370. height: math.unit(25, "feet"),
  41371. name: "Front",
  41372. image: {
  41373. source: "./media/characters/titan-s-wulf/front.svg",
  41374. extra: 1560/1484,
  41375. bottom: 76/1636
  41376. }
  41377. },
  41378. },
  41379. [
  41380. {
  41381. name: "Smallest",
  41382. height: math.unit(25, "feet"),
  41383. default: true
  41384. },
  41385. {
  41386. name: "Normal",
  41387. height: math.unit(200, "feet")
  41388. },
  41389. {
  41390. name: "Macro",
  41391. height: math.unit(200000, "feet")
  41392. },
  41393. {
  41394. name: "Multiversal Original",
  41395. height: math.unit(10000, "multiverses")
  41396. },
  41397. ]
  41398. ))
  41399. characterMakers.push(() => makeCharacter(
  41400. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41401. {
  41402. front: {
  41403. height: math.unit(8, "feet"),
  41404. weight: math.unit(553, "lb"),
  41405. name: "Front",
  41406. image: {
  41407. source: "./media/characters/tawendeh/front.svg",
  41408. extra: 2365/2268,
  41409. bottom: 83/2448
  41410. }
  41411. },
  41412. frontClothed: {
  41413. height: math.unit(8, "feet"),
  41414. weight: math.unit(553, "lb"),
  41415. name: "Front (Clothed)",
  41416. image: {
  41417. source: "./media/characters/tawendeh/front-clothed.svg",
  41418. extra: 2365/2268,
  41419. bottom: 83/2448
  41420. }
  41421. },
  41422. back: {
  41423. height: math.unit(8, "feet"),
  41424. weight: math.unit(553, "lb"),
  41425. name: "Back",
  41426. image: {
  41427. source: "./media/characters/tawendeh/back.svg",
  41428. extra: 2397/2294,
  41429. bottom: 42/2439
  41430. }
  41431. },
  41432. },
  41433. [
  41434. {
  41435. name: "Mortal Interaction",
  41436. height: math.unit(8, "feet"),
  41437. default: true
  41438. },
  41439. {
  41440. name: "Giant",
  41441. height: math.unit(80, "feet")
  41442. },
  41443. {
  41444. name: "Macro",
  41445. height: math.unit(800, "feet")
  41446. },
  41447. {
  41448. name: "Megamacro",
  41449. height: math.unit(8000, "feet")
  41450. },
  41451. {
  41452. name: "City-Crushing",
  41453. height: math.unit(24000, "feet")
  41454. },
  41455. {
  41456. name: "Mountain-Mashing",
  41457. height: math.unit(80000, "feet")
  41458. },
  41459. {
  41460. name: "Nation Nemesis",
  41461. height: math.unit(8e6, "feet")
  41462. },
  41463. {
  41464. name: "Continent Cracker",
  41465. height: math.unit(24e6, "feet")
  41466. },
  41467. {
  41468. name: "Earth-Eclipsing",
  41469. height: math.unit(2.4e8, "feet")
  41470. },
  41471. {
  41472. name: "Gas Giant Gulper",
  41473. height: math.unit(2.4e9, "feet")
  41474. },
  41475. {
  41476. name: "Sol-Swallowing",
  41477. height: math.unit(8e10, "feet")
  41478. },
  41479. {
  41480. name: "Galaxy Gulper",
  41481. height: math.unit(8, "galaxies")
  41482. },
  41483. {
  41484. name: "Cosmos Churner",
  41485. height: math.unit(8, "universes")
  41486. },
  41487. {
  41488. name: "Omnipotent Otter",
  41489. height: math.unit(80, "universes")
  41490. },
  41491. ]
  41492. ))
  41493. characterMakers.push(() => makeCharacter(
  41494. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41495. {
  41496. front: {
  41497. height: math.unit(2.6, "meters"),
  41498. weight: math.unit(900, "kg"),
  41499. name: "Front",
  41500. image: {
  41501. source: "./media/characters/neesha/front.svg",
  41502. extra: 1803/1653,
  41503. bottom: 128/1931
  41504. }
  41505. },
  41506. },
  41507. [
  41508. {
  41509. name: "Normal",
  41510. height: math.unit(2.6, "meters"),
  41511. default: true
  41512. },
  41513. {
  41514. name: "Macro",
  41515. height: math.unit(50, "meters")
  41516. },
  41517. ]
  41518. ))
  41519. characterMakers.push(() => makeCharacter(
  41520. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41521. {
  41522. front: {
  41523. height: math.unit(5, "feet"),
  41524. weight: math.unit(185, "lb"),
  41525. name: "Front",
  41526. image: {
  41527. source: "./media/characters/kyera/front.svg",
  41528. extra: 1875/1790,
  41529. bottom: 96/1971
  41530. }
  41531. },
  41532. },
  41533. [
  41534. {
  41535. name: "Normal",
  41536. height: math.unit(5, "feet"),
  41537. default: true
  41538. },
  41539. ]
  41540. ))
  41541. characterMakers.push(() => makeCharacter(
  41542. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41543. {
  41544. front: {
  41545. height: math.unit(7 + 6/12, "feet"),
  41546. weight: math.unit(540, "lb"),
  41547. name: "Front",
  41548. image: {
  41549. source: "./media/characters/yuko/front.svg",
  41550. extra: 1282/1222,
  41551. bottom: 101/1383
  41552. }
  41553. },
  41554. frontClothed: {
  41555. height: math.unit(7 + 6/12, "feet"),
  41556. weight: math.unit(540, "lb"),
  41557. name: "Front (Clothed)",
  41558. image: {
  41559. source: "./media/characters/yuko/front-clothed.svg",
  41560. extra: 1282/1222,
  41561. bottom: 101/1383
  41562. }
  41563. },
  41564. },
  41565. [
  41566. {
  41567. name: "Normal",
  41568. height: math.unit(7 + 6/12, "feet"),
  41569. default: true
  41570. },
  41571. {
  41572. name: "Macro",
  41573. height: math.unit(26 + 9/12, "feet")
  41574. },
  41575. {
  41576. name: "Megamacro",
  41577. height: math.unit(300, "feet")
  41578. },
  41579. {
  41580. name: "Gigamacro",
  41581. height: math.unit(5000, "feet")
  41582. },
  41583. {
  41584. name: "Planetary",
  41585. height: math.unit(10000, "miles")
  41586. },
  41587. ]
  41588. ))
  41589. characterMakers.push(() => makeCharacter(
  41590. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41591. {
  41592. front: {
  41593. height: math.unit(8 + 2/12, "feet"),
  41594. weight: math.unit(600, "lb"),
  41595. name: "Front",
  41596. image: {
  41597. source: "./media/characters/deam-nitrel/front.svg",
  41598. extra: 1308/1234,
  41599. bottom: 125/1433
  41600. }
  41601. },
  41602. },
  41603. [
  41604. {
  41605. name: "Normal",
  41606. height: math.unit(8 + 2/12, "feet"),
  41607. default: true
  41608. },
  41609. ]
  41610. ))
  41611. characterMakers.push(() => makeCharacter(
  41612. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41613. {
  41614. front: {
  41615. height: math.unit(6.1, "feet"),
  41616. weight: math.unit(180, "lb"),
  41617. name: "Front",
  41618. image: {
  41619. source: "./media/characters/skyress/front.svg",
  41620. extra: 1045/915,
  41621. bottom: 28/1073
  41622. }
  41623. },
  41624. maw: {
  41625. height: math.unit(1, "feet"),
  41626. name: "Maw",
  41627. image: {
  41628. source: "./media/characters/skyress/maw.svg"
  41629. }
  41630. },
  41631. },
  41632. [
  41633. {
  41634. name: "Normal",
  41635. height: math.unit(6.1, "feet"),
  41636. default: true
  41637. },
  41638. {
  41639. name: "Macro",
  41640. height: math.unit(200, "feet")
  41641. },
  41642. ]
  41643. ))
  41644. characterMakers.push(() => makeCharacter(
  41645. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41646. {
  41647. front: {
  41648. height: math.unit(4 + 2/12, "feet"),
  41649. weight: math.unit(40, "kg"),
  41650. name: "Front",
  41651. image: {
  41652. source: "./media/characters/amethyst-jones/front.svg",
  41653. extra: 1220/1150,
  41654. bottom: 101/1321
  41655. }
  41656. },
  41657. },
  41658. [
  41659. {
  41660. name: "Normal",
  41661. height: math.unit(4 + 2/12, "feet"),
  41662. default: true
  41663. },
  41664. ]
  41665. ))
  41666. characterMakers.push(() => makeCharacter(
  41667. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41668. {
  41669. front: {
  41670. height: math.unit(1.7, "m"),
  41671. weight: math.unit(135, "lb"),
  41672. name: "Front",
  41673. image: {
  41674. source: "./media/characters/jade/front.svg",
  41675. extra: 1818/1767,
  41676. bottom: 32/1850
  41677. }
  41678. },
  41679. back: {
  41680. height: math.unit(1.7, "m"),
  41681. weight: math.unit(135, "lb"),
  41682. name: "Back",
  41683. image: {
  41684. source: "./media/characters/jade/back.svg",
  41685. extra: 1869/1809,
  41686. bottom: 35/1904
  41687. }
  41688. },
  41689. hand: {
  41690. height: math.unit(0.24, "m"),
  41691. name: "Hand",
  41692. image: {
  41693. source: "./media/characters/jade/hand.svg"
  41694. }
  41695. },
  41696. foot: {
  41697. height: math.unit(0.263, "m"),
  41698. name: "Foot",
  41699. image: {
  41700. source: "./media/characters/jade/foot.svg"
  41701. }
  41702. },
  41703. dick: {
  41704. height: math.unit(0.47, "m"),
  41705. name: "Dick",
  41706. image: {
  41707. source: "./media/characters/jade/dick.svg"
  41708. }
  41709. },
  41710. },
  41711. [
  41712. {
  41713. name: "Micro",
  41714. height: math.unit(22, "cm")
  41715. },
  41716. {
  41717. name: "Normal",
  41718. height: math.unit(1.7, "m"),
  41719. default: true
  41720. },
  41721. {
  41722. name: "Macro",
  41723. height: math.unit(152, "m")
  41724. },
  41725. ]
  41726. ))
  41727. characterMakers.push(() => makeCharacter(
  41728. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41729. {
  41730. front: {
  41731. height: math.unit(100, "miles"),
  41732. weight: math.unit(20000, "tons"),
  41733. name: "Front",
  41734. image: {
  41735. source: "./media/characters/cookie/front.svg",
  41736. extra: 1125/1070,
  41737. bottom: 30/1155
  41738. }
  41739. },
  41740. },
  41741. [
  41742. {
  41743. name: "Big",
  41744. height: math.unit(50, "feet")
  41745. },
  41746. {
  41747. name: "Macro",
  41748. height: math.unit(100, "miles"),
  41749. default: true
  41750. },
  41751. {
  41752. name: "Megamacro",
  41753. height: math.unit(90000, "miles")
  41754. },
  41755. ]
  41756. ))
  41757. characterMakers.push(() => makeCharacter(
  41758. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41759. {
  41760. front: {
  41761. height: math.unit(6, "feet"),
  41762. weight: math.unit(145, "lb"),
  41763. name: "Front",
  41764. image: {
  41765. source: "./media/characters/farzian/front.svg",
  41766. extra: 1902/1693,
  41767. bottom: 108/2010
  41768. }
  41769. },
  41770. },
  41771. [
  41772. {
  41773. name: "Macro",
  41774. height: math.unit(500, "feet"),
  41775. default: true
  41776. },
  41777. ]
  41778. ))
  41779. characterMakers.push(() => makeCharacter(
  41780. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41781. {
  41782. front: {
  41783. height: math.unit(3 + 6/12, "feet"),
  41784. weight: math.unit(50, "lb"),
  41785. name: "Front",
  41786. image: {
  41787. source: "./media/characters/kimberly-tilson/front.svg",
  41788. extra: 1400/1322,
  41789. bottom: 36/1436
  41790. }
  41791. },
  41792. back: {
  41793. height: math.unit(3 + 6/12, "feet"),
  41794. weight: math.unit(50, "lb"),
  41795. name: "Back",
  41796. image: {
  41797. source: "./media/characters/kimberly-tilson/back.svg",
  41798. extra: 1370/1307,
  41799. bottom: 20/1390
  41800. }
  41801. },
  41802. },
  41803. [
  41804. {
  41805. name: "Normal",
  41806. height: math.unit(3 + 6/12, "feet"),
  41807. default: true
  41808. },
  41809. ]
  41810. ))
  41811. characterMakers.push(() => makeCharacter(
  41812. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41813. {
  41814. front: {
  41815. height: math.unit(1148, "feet"),
  41816. weight: math.unit(34057, "lb"),
  41817. name: "Front",
  41818. image: {
  41819. source: "./media/characters/harthos/front.svg",
  41820. extra: 1391/1339,
  41821. bottom: 13/1404
  41822. }
  41823. },
  41824. },
  41825. [
  41826. {
  41827. name: "Macro",
  41828. height: math.unit(1148, "feet"),
  41829. default: true
  41830. },
  41831. ]
  41832. ))
  41833. characterMakers.push(() => makeCharacter(
  41834. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41835. {
  41836. front: {
  41837. height: math.unit(15, "feet"),
  41838. name: "Front",
  41839. image: {
  41840. source: "./media/characters/hypatia/front.svg",
  41841. extra: 1653/1591,
  41842. bottom: 79/1732
  41843. }
  41844. },
  41845. },
  41846. [
  41847. {
  41848. name: "Normal",
  41849. height: math.unit(15, "feet")
  41850. },
  41851. {
  41852. name: "Small",
  41853. height: math.unit(300, "feet")
  41854. },
  41855. {
  41856. name: "Macro",
  41857. height: math.unit(2500, "feet"),
  41858. default: true
  41859. },
  41860. {
  41861. name: "Mega Macro",
  41862. height: math.unit(1500, "miles")
  41863. },
  41864. {
  41865. name: "Giga Macro",
  41866. height: math.unit(1.5e6, "miles")
  41867. },
  41868. ]
  41869. ))
  41870. characterMakers.push(() => makeCharacter(
  41871. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41872. {
  41873. front: {
  41874. height: math.unit(6, "feet"),
  41875. weight: math.unit(200, "lb"),
  41876. name: "Front",
  41877. image: {
  41878. source: "./media/characters/wulver/front.svg",
  41879. extra: 1724/1632,
  41880. bottom: 130/1854
  41881. }
  41882. },
  41883. frontNsfw: {
  41884. height: math.unit(6, "feet"),
  41885. weight: math.unit(200, "lb"),
  41886. name: "Front (NSFW)",
  41887. image: {
  41888. source: "./media/characters/wulver/front-nsfw.svg",
  41889. extra: 1724/1632,
  41890. bottom: 130/1854
  41891. }
  41892. },
  41893. },
  41894. [
  41895. {
  41896. name: "Human-Sized",
  41897. height: math.unit(6, "feet")
  41898. },
  41899. {
  41900. name: "Normal",
  41901. height: math.unit(4, "meters"),
  41902. default: true
  41903. },
  41904. {
  41905. name: "Large",
  41906. height: math.unit(6, "m")
  41907. },
  41908. ]
  41909. ))
  41910. characterMakers.push(() => makeCharacter(
  41911. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41912. {
  41913. front: {
  41914. height: math.unit(7, "feet"),
  41915. name: "Front",
  41916. image: {
  41917. source: "./media/characters/maru/front.svg",
  41918. extra: 1595/1570,
  41919. bottom: 0/1595
  41920. }
  41921. },
  41922. },
  41923. [
  41924. {
  41925. name: "Normal",
  41926. height: math.unit(7, "feet"),
  41927. default: true
  41928. },
  41929. {
  41930. name: "Macro",
  41931. height: math.unit(700, "feet")
  41932. },
  41933. {
  41934. name: "Mega Macro",
  41935. height: math.unit(25, "miles")
  41936. },
  41937. ]
  41938. ))
  41939. characterMakers.push(() => makeCharacter(
  41940. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41941. {
  41942. front: {
  41943. height: math.unit(6, "feet"),
  41944. weight: math.unit(170, "lb"),
  41945. name: "Front",
  41946. image: {
  41947. source: "./media/characters/xenon/front.svg",
  41948. extra: 1376/1305,
  41949. bottom: 56/1432
  41950. }
  41951. },
  41952. back: {
  41953. height: math.unit(6, "feet"),
  41954. weight: math.unit(170, "lb"),
  41955. name: "Back",
  41956. image: {
  41957. source: "./media/characters/xenon/back.svg",
  41958. extra: 1328/1259,
  41959. bottom: 95/1423
  41960. }
  41961. },
  41962. maw: {
  41963. height: math.unit(0.52, "feet"),
  41964. name: "Maw",
  41965. image: {
  41966. source: "./media/characters/xenon/maw.svg"
  41967. }
  41968. },
  41969. handLeft: {
  41970. height: math.unit(0.82 * 169 / 153, "feet"),
  41971. name: "Hand (Left)",
  41972. image: {
  41973. source: "./media/characters/xenon/hand-left.svg"
  41974. }
  41975. },
  41976. handRight: {
  41977. height: math.unit(0.82, "feet"),
  41978. name: "Hand (Right)",
  41979. image: {
  41980. source: "./media/characters/xenon/hand-right.svg"
  41981. }
  41982. },
  41983. footLeft: {
  41984. height: math.unit(1.13, "feet"),
  41985. name: "Foot (Left)",
  41986. image: {
  41987. source: "./media/characters/xenon/foot-left.svg"
  41988. }
  41989. },
  41990. footRight: {
  41991. height: math.unit(1.13 * 194 / 196, "feet"),
  41992. name: "Foot (Right)",
  41993. image: {
  41994. source: "./media/characters/xenon/foot-right.svg"
  41995. }
  41996. },
  41997. },
  41998. [
  41999. {
  42000. name: "Micro",
  42001. height: math.unit(0.8, "inches")
  42002. },
  42003. {
  42004. name: "Normal",
  42005. height: math.unit(6, "feet")
  42006. },
  42007. {
  42008. name: "Macro",
  42009. height: math.unit(50, "feet"),
  42010. default: true
  42011. },
  42012. {
  42013. name: "Macro+",
  42014. height: math.unit(250, "feet")
  42015. },
  42016. {
  42017. name: "Megamacro",
  42018. height: math.unit(1500, "feet")
  42019. },
  42020. ]
  42021. ))
  42022. characterMakers.push(() => makeCharacter(
  42023. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42024. {
  42025. front: {
  42026. height: math.unit(7 + 5/12, "feet"),
  42027. name: "Front",
  42028. image: {
  42029. source: "./media/characters/zane/front.svg",
  42030. extra: 1260/1203,
  42031. bottom: 94/1354
  42032. }
  42033. },
  42034. back: {
  42035. height: math.unit(5.05, "feet"),
  42036. name: "Back",
  42037. image: {
  42038. source: "./media/characters/zane/back.svg",
  42039. extra: 893/829,
  42040. bottom: 30/923
  42041. }
  42042. },
  42043. werewolf: {
  42044. height: math.unit(11, "feet"),
  42045. name: "Werewolf",
  42046. image: {
  42047. source: "./media/characters/zane/werewolf.svg",
  42048. extra: 1383/1323,
  42049. bottom: 89/1472
  42050. }
  42051. },
  42052. foot: {
  42053. height: math.unit(1.46, "feet"),
  42054. name: "Foot",
  42055. image: {
  42056. source: "./media/characters/zane/foot.svg"
  42057. }
  42058. },
  42059. footFront: {
  42060. height: math.unit(0.784, "feet"),
  42061. name: "Foot (Front)",
  42062. image: {
  42063. source: "./media/characters/zane/foot-front.svg"
  42064. }
  42065. },
  42066. dick: {
  42067. height: math.unit(1.95, "feet"),
  42068. name: "Dick",
  42069. image: {
  42070. source: "./media/characters/zane/dick.svg"
  42071. }
  42072. },
  42073. dickWerewolf: {
  42074. height: math.unit(3.77, "feet"),
  42075. name: "Dick (Werewolf)",
  42076. image: {
  42077. source: "./media/characters/zane/dick.svg"
  42078. }
  42079. },
  42080. },
  42081. [
  42082. {
  42083. name: "Normal",
  42084. height: math.unit(7 + 5/12, "feet"),
  42085. default: true
  42086. },
  42087. ]
  42088. ))
  42089. characterMakers.push(() => makeCharacter(
  42090. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42091. {
  42092. front: {
  42093. height: math.unit(6 + 2/12, "feet"),
  42094. weight: math.unit(284, "lb"),
  42095. name: "Front",
  42096. image: {
  42097. source: "./media/characters/benni-desparque/front.svg",
  42098. extra: 1353/1126,
  42099. bottom: 69/1422
  42100. }
  42101. },
  42102. },
  42103. [
  42104. {
  42105. name: "Civilian",
  42106. height: math.unit(6 + 2/12, "feet")
  42107. },
  42108. {
  42109. name: "Normal",
  42110. height: math.unit(98, "feet"),
  42111. default: true
  42112. },
  42113. {
  42114. name: "Kaiju Fighter",
  42115. height: math.unit(268, "feet")
  42116. },
  42117. ]
  42118. ))
  42119. characterMakers.push(() => makeCharacter(
  42120. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42121. {
  42122. front: {
  42123. height: math.unit(5, "feet"),
  42124. weight: math.unit(105, "lb"),
  42125. name: "Front",
  42126. image: {
  42127. source: "./media/characters/maxine/front.svg",
  42128. extra: 1386/1250,
  42129. bottom: 71/1457
  42130. }
  42131. },
  42132. },
  42133. [
  42134. {
  42135. name: "Normal",
  42136. height: math.unit(5, "feet"),
  42137. default: true
  42138. },
  42139. ]
  42140. ))
  42141. characterMakers.push(() => makeCharacter(
  42142. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42143. {
  42144. front: {
  42145. height: math.unit(11 + 7/12, "feet"),
  42146. weight: math.unit(9576, "lb"),
  42147. name: "Front",
  42148. image: {
  42149. source: "./media/characters/scaly/front.svg",
  42150. extra: 888/867,
  42151. bottom: 36/924
  42152. }
  42153. },
  42154. },
  42155. [
  42156. {
  42157. name: "Normal",
  42158. height: math.unit(11 + 7/12, "feet"),
  42159. default: true
  42160. },
  42161. ]
  42162. ))
  42163. characterMakers.push(() => makeCharacter(
  42164. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42165. {
  42166. front: {
  42167. height: math.unit(6 + 3/12, "feet"),
  42168. name: "Front",
  42169. image: {
  42170. source: "./media/characters/saelria/front.svg",
  42171. extra: 1243/1138,
  42172. bottom: 46/1289
  42173. }
  42174. },
  42175. },
  42176. [
  42177. {
  42178. name: "Micro",
  42179. height: math.unit(6, "inches"),
  42180. },
  42181. {
  42182. name: "Normal",
  42183. height: math.unit(6 + 3/12, "feet"),
  42184. default: true
  42185. },
  42186. {
  42187. name: "Macro",
  42188. height: math.unit(25, "feet")
  42189. },
  42190. ]
  42191. ))
  42192. characterMakers.push(() => makeCharacter(
  42193. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42194. {
  42195. front: {
  42196. height: math.unit(80, "meters"),
  42197. weight: math.unit(7000, "tonnes"),
  42198. name: "Front",
  42199. image: {
  42200. source: "./media/characters/tef/front.svg",
  42201. extra: 2036/1991,
  42202. bottom: 54/2090
  42203. }
  42204. },
  42205. back: {
  42206. height: math.unit(80, "meters"),
  42207. weight: math.unit(7000, "tonnes"),
  42208. name: "Back",
  42209. image: {
  42210. source: "./media/characters/tef/back.svg",
  42211. extra: 2036/1991,
  42212. bottom: 54/2090
  42213. }
  42214. },
  42215. },
  42216. [
  42217. {
  42218. name: "Macro",
  42219. height: math.unit(80, "meters"),
  42220. default: true
  42221. },
  42222. ]
  42223. ))
  42224. characterMakers.push(() => makeCharacter(
  42225. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42226. {
  42227. front: {
  42228. height: math.unit(13, "feet"),
  42229. weight: math.unit(6, "tons"),
  42230. name: "Front",
  42231. image: {
  42232. source: "./media/characters/rover/front.svg",
  42233. extra: 1233/1156,
  42234. bottom: 50/1283
  42235. }
  42236. },
  42237. back: {
  42238. height: math.unit(13, "feet"),
  42239. weight: math.unit(6, "tons"),
  42240. name: "Back",
  42241. image: {
  42242. source: "./media/characters/rover/back.svg",
  42243. extra: 1327/1258,
  42244. bottom: 39/1366
  42245. }
  42246. },
  42247. },
  42248. [
  42249. {
  42250. name: "Normal",
  42251. height: math.unit(13, "feet"),
  42252. default: true
  42253. },
  42254. {
  42255. name: "Macro",
  42256. height: math.unit(1300, "feet")
  42257. },
  42258. {
  42259. name: "Megamacro",
  42260. height: math.unit(1300, "miles")
  42261. },
  42262. {
  42263. name: "Gigamacro",
  42264. height: math.unit(1300000, "miles")
  42265. },
  42266. ]
  42267. ))
  42268. characterMakers.push(() => makeCharacter(
  42269. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42270. {
  42271. front: {
  42272. height: math.unit(6, "feet"),
  42273. weight: math.unit(150, "lb"),
  42274. name: "Front",
  42275. image: {
  42276. source: "./media/characters/ariz/front.svg",
  42277. extra: 1401/1346,
  42278. bottom: 5/1406
  42279. }
  42280. },
  42281. },
  42282. [
  42283. {
  42284. name: "Normal",
  42285. height: math.unit(10, "feet"),
  42286. default: true
  42287. },
  42288. ]
  42289. ))
  42290. characterMakers.push(() => makeCharacter(
  42291. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42292. {
  42293. front: {
  42294. height: math.unit(6, "feet"),
  42295. weight: math.unit(140, "lb"),
  42296. name: "Front",
  42297. image: {
  42298. source: "./media/characters/sigrun/front.svg",
  42299. extra: 1418/1359,
  42300. bottom: 27/1445
  42301. }
  42302. },
  42303. },
  42304. [
  42305. {
  42306. name: "Macro",
  42307. height: math.unit(35, "feet"),
  42308. default: true
  42309. },
  42310. ]
  42311. ))
  42312. characterMakers.push(() => makeCharacter(
  42313. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42314. {
  42315. front: {
  42316. height: math.unit(6, "feet"),
  42317. weight: math.unit(150, "lb"),
  42318. name: "Front",
  42319. image: {
  42320. source: "./media/characters/numin/front.svg",
  42321. extra: 1433/1388,
  42322. bottom: 12/1445
  42323. }
  42324. },
  42325. },
  42326. [
  42327. {
  42328. name: "Macro",
  42329. height: math.unit(21.5, "km"),
  42330. default: true
  42331. },
  42332. ]
  42333. ))
  42334. characterMakers.push(() => makeCharacter(
  42335. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42336. {
  42337. front: {
  42338. height: math.unit(6, "feet"),
  42339. weight: math.unit(463, "lb"),
  42340. name: "Front",
  42341. image: {
  42342. source: "./media/characters/melwa/front.svg",
  42343. extra: 1307/1248,
  42344. bottom: 93/1400
  42345. }
  42346. },
  42347. },
  42348. [
  42349. {
  42350. name: "Macro",
  42351. height: math.unit(50, "meters"),
  42352. default: true
  42353. },
  42354. ]
  42355. ))
  42356. characterMakers.push(() => makeCharacter(
  42357. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42358. {
  42359. front: {
  42360. height: math.unit(325, "feet"),
  42361. name: "Front",
  42362. image: {
  42363. source: "./media/characters/zorkaiju/front.svg",
  42364. extra: 1955/1814,
  42365. bottom: 40/1995
  42366. }
  42367. },
  42368. frontExtended: {
  42369. height: math.unit(325, "feet"),
  42370. name: "Front (Extended)",
  42371. image: {
  42372. source: "./media/characters/zorkaiju/front-extended.svg",
  42373. extra: 1955/1814,
  42374. bottom: 40/1995
  42375. }
  42376. },
  42377. side: {
  42378. height: math.unit(325, "feet"),
  42379. name: "Side",
  42380. image: {
  42381. source: "./media/characters/zorkaiju/side.svg",
  42382. extra: 1495/1396,
  42383. bottom: 17/1512
  42384. }
  42385. },
  42386. sideExtended: {
  42387. height: math.unit(325, "feet"),
  42388. name: "Side (Extended)",
  42389. image: {
  42390. source: "./media/characters/zorkaiju/side-extended.svg",
  42391. extra: 1495/1396,
  42392. bottom: 17/1512
  42393. }
  42394. },
  42395. back: {
  42396. height: math.unit(325, "feet"),
  42397. name: "Back",
  42398. image: {
  42399. source: "./media/characters/zorkaiju/back.svg",
  42400. extra: 1959/1821,
  42401. bottom: 31/1990
  42402. }
  42403. },
  42404. backExtended: {
  42405. height: math.unit(325, "feet"),
  42406. name: "Back (Extended)",
  42407. image: {
  42408. source: "./media/characters/zorkaiju/back-extended.svg",
  42409. extra: 1959/1821,
  42410. bottom: 31/1990
  42411. }
  42412. },
  42413. hand: {
  42414. height: math.unit(58.4, "feet"),
  42415. name: "Hand",
  42416. image: {
  42417. source: "./media/characters/zorkaiju/hand.svg"
  42418. }
  42419. },
  42420. handExtended: {
  42421. height: math.unit(61.4, "feet"),
  42422. name: "Hand (Extended)",
  42423. image: {
  42424. source: "./media/characters/zorkaiju/hand-extended.svg"
  42425. }
  42426. },
  42427. foot: {
  42428. height: math.unit(95, "feet"),
  42429. name: "Foot",
  42430. image: {
  42431. source: "./media/characters/zorkaiju/foot.svg"
  42432. }
  42433. },
  42434. leftArm: {
  42435. height: math.unit(59, "feet"),
  42436. name: "Left Arm",
  42437. image: {
  42438. source: "./media/characters/zorkaiju/left-arm.svg"
  42439. }
  42440. },
  42441. rightArm: {
  42442. height: math.unit(59, "feet"),
  42443. name: "Right Arm",
  42444. image: {
  42445. source: "./media/characters/zorkaiju/right-arm.svg"
  42446. }
  42447. },
  42448. leftArmExtended: {
  42449. height: math.unit(59 * 1.033546, "feet"),
  42450. name: "Left Arm (Extended)",
  42451. image: {
  42452. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42453. }
  42454. },
  42455. rightArmExtended: {
  42456. height: math.unit(59 * 1.0496, "feet"),
  42457. name: "Right Arm (Extended)",
  42458. image: {
  42459. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42460. }
  42461. },
  42462. tail: {
  42463. height: math.unit(104, "feet"),
  42464. name: "Tail",
  42465. image: {
  42466. source: "./media/characters/zorkaiju/tail.svg"
  42467. }
  42468. },
  42469. tailExtended: {
  42470. height: math.unit(104, "feet"),
  42471. name: "Tail (Extended)",
  42472. image: {
  42473. source: "./media/characters/zorkaiju/tail-extended.svg"
  42474. }
  42475. },
  42476. tailBottom: {
  42477. height: math.unit(104, "feet"),
  42478. name: "Tail Bottom",
  42479. image: {
  42480. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42481. }
  42482. },
  42483. crystal: {
  42484. height: math.unit(27.54, "feet"),
  42485. name: "Crystal",
  42486. image: {
  42487. source: "./media/characters/zorkaiju/crystal.svg"
  42488. }
  42489. },
  42490. },
  42491. [
  42492. {
  42493. name: "Kaiju",
  42494. height: math.unit(325, "feet"),
  42495. default: true
  42496. },
  42497. ]
  42498. ))
  42499. characterMakers.push(() => makeCharacter(
  42500. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42501. {
  42502. front: {
  42503. height: math.unit(6 + 1/12, "feet"),
  42504. weight: math.unit(115, "lb"),
  42505. name: "Front",
  42506. image: {
  42507. source: "./media/characters/bailey-belfry/front.svg",
  42508. extra: 1240/1121,
  42509. bottom: 101/1341
  42510. }
  42511. },
  42512. },
  42513. [
  42514. {
  42515. name: "Normal",
  42516. height: math.unit(6 + 1/12, "feet"),
  42517. default: true
  42518. },
  42519. ]
  42520. ))
  42521. characterMakers.push(() => makeCharacter(
  42522. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42523. {
  42524. side: {
  42525. height: math.unit(4, "meters"),
  42526. weight: math.unit(250, "kg"),
  42527. name: "Side",
  42528. image: {
  42529. source: "./media/characters/blacky/side.svg",
  42530. extra: 1027/919,
  42531. bottom: 43/1070
  42532. }
  42533. },
  42534. maw: {
  42535. height: math.unit(1, "meters"),
  42536. name: "Maw",
  42537. image: {
  42538. source: "./media/characters/blacky/maw.svg"
  42539. }
  42540. },
  42541. paw: {
  42542. height: math.unit(1, "meters"),
  42543. name: "Paw",
  42544. image: {
  42545. source: "./media/characters/blacky/paw.svg"
  42546. }
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Normal",
  42552. height: math.unit(4, "meters"),
  42553. default: true
  42554. },
  42555. ]
  42556. ))
  42557. characterMakers.push(() => makeCharacter(
  42558. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42559. {
  42560. front: {
  42561. height: math.unit(170, "cm"),
  42562. weight: math.unit(66, "kg"),
  42563. name: "Front",
  42564. image: {
  42565. source: "./media/characters/thux-ei/front.svg",
  42566. extra: 1109/1011,
  42567. bottom: 8/1117
  42568. }
  42569. },
  42570. },
  42571. [
  42572. {
  42573. name: "Normal",
  42574. height: math.unit(170, "cm"),
  42575. default: true
  42576. },
  42577. ]
  42578. ))
  42579. characterMakers.push(() => makeCharacter(
  42580. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42581. {
  42582. front: {
  42583. height: math.unit(5, "feet"),
  42584. weight: math.unit(120, "lb"),
  42585. name: "Front",
  42586. image: {
  42587. source: "./media/characters/roxanne-voltaire/front.svg",
  42588. extra: 1901/1779,
  42589. bottom: 53/1954
  42590. }
  42591. },
  42592. },
  42593. [
  42594. {
  42595. name: "Normal",
  42596. height: math.unit(5, "feet"),
  42597. default: true
  42598. },
  42599. {
  42600. name: "Giant",
  42601. height: math.unit(50, "feet")
  42602. },
  42603. {
  42604. name: "Titan",
  42605. height: math.unit(500, "feet")
  42606. },
  42607. {
  42608. name: "Macro",
  42609. height: math.unit(5000, "feet")
  42610. },
  42611. {
  42612. name: "Megamacro",
  42613. height: math.unit(50000, "feet")
  42614. },
  42615. {
  42616. name: "Gigamacro",
  42617. height: math.unit(500000, "feet")
  42618. },
  42619. {
  42620. name: "Teramacro",
  42621. height: math.unit(5e6, "feet")
  42622. },
  42623. ]
  42624. ))
  42625. characterMakers.push(() => makeCharacter(
  42626. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42627. {
  42628. front: {
  42629. height: math.unit(6 + 2/12, "feet"),
  42630. name: "Front",
  42631. image: {
  42632. source: "./media/characters/squeaks/front.svg",
  42633. extra: 1823/1768,
  42634. bottom: 138/1961
  42635. }
  42636. },
  42637. },
  42638. [
  42639. {
  42640. name: "Micro",
  42641. height: math.unit(0.5, "inches")
  42642. },
  42643. {
  42644. name: "Normal",
  42645. height: math.unit(6 + 2/12, "feet"),
  42646. default: true
  42647. },
  42648. {
  42649. name: "Macro",
  42650. height: math.unit(600, "feet")
  42651. },
  42652. ]
  42653. ))
  42654. characterMakers.push(() => makeCharacter(
  42655. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42656. {
  42657. front: {
  42658. height: math.unit(1.72, "meters"),
  42659. name: "Front",
  42660. image: {
  42661. source: "./media/characters/archinger/front.svg",
  42662. extra: 1861/1675,
  42663. bottom: 125/1986
  42664. }
  42665. },
  42666. back: {
  42667. height: math.unit(1.72, "meters"),
  42668. name: "Back",
  42669. image: {
  42670. source: "./media/characters/archinger/back.svg",
  42671. extra: 1844/1701,
  42672. bottom: 104/1948
  42673. }
  42674. },
  42675. cock: {
  42676. height: math.unit(0.59, "feet"),
  42677. name: "Cock",
  42678. image: {
  42679. source: "./media/characters/archinger/cock.svg"
  42680. }
  42681. },
  42682. },
  42683. [
  42684. {
  42685. name: "Normal",
  42686. height: math.unit(1.72, "meters"),
  42687. default: true
  42688. },
  42689. {
  42690. name: "Macro",
  42691. height: math.unit(84, "meters")
  42692. },
  42693. {
  42694. name: "Macro+",
  42695. height: math.unit(112, "meters")
  42696. },
  42697. {
  42698. name: "Macro++",
  42699. height: math.unit(960, "meters")
  42700. },
  42701. {
  42702. name: "Macro+++",
  42703. height: math.unit(4, "km")
  42704. },
  42705. {
  42706. name: "Macro++++",
  42707. height: math.unit(48, "km")
  42708. },
  42709. {
  42710. name: "Macro+++++",
  42711. height: math.unit(4500, "km")
  42712. },
  42713. ]
  42714. ))
  42715. characterMakers.push(() => makeCharacter(
  42716. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42717. {
  42718. front: {
  42719. height: math.unit(5 + 5/12, "feet"),
  42720. name: "Front",
  42721. image: {
  42722. source: "./media/characters/alsnapz/front.svg",
  42723. extra: 1157/1065,
  42724. bottom: 42/1199
  42725. }
  42726. },
  42727. },
  42728. [
  42729. {
  42730. name: "Normal",
  42731. height: math.unit(5 + 5/12, "feet"),
  42732. default: true
  42733. },
  42734. ]
  42735. ))
  42736. characterMakers.push(() => makeCharacter(
  42737. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42738. {
  42739. side: {
  42740. height: math.unit(3.2, "earths"),
  42741. name: "Side",
  42742. image: {
  42743. source: "./media/characters/mag/side.svg",
  42744. extra: 1331/1008,
  42745. bottom: 52/1383
  42746. }
  42747. },
  42748. wing: {
  42749. height: math.unit(1.94, "earths"),
  42750. name: "Wing",
  42751. image: {
  42752. source: "./media/characters/mag/wing.svg"
  42753. }
  42754. },
  42755. dick: {
  42756. height: math.unit(1.8, "earths"),
  42757. name: "Dick",
  42758. image: {
  42759. source: "./media/characters/mag/dick.svg"
  42760. }
  42761. },
  42762. ass: {
  42763. height: math.unit(1.33, "earths"),
  42764. name: "Ass",
  42765. image: {
  42766. source: "./media/characters/mag/ass.svg"
  42767. }
  42768. },
  42769. head: {
  42770. height: math.unit(1.1, "earths"),
  42771. name: "Head",
  42772. image: {
  42773. source: "./media/characters/mag/head.svg"
  42774. }
  42775. },
  42776. maw: {
  42777. height: math.unit(1.62, "earths"),
  42778. name: "Maw",
  42779. image: {
  42780. source: "./media/characters/mag/maw.svg"
  42781. }
  42782. },
  42783. },
  42784. [
  42785. {
  42786. name: "Small",
  42787. height: math.unit(162, "feet")
  42788. },
  42789. {
  42790. name: "Normal",
  42791. height: math.unit(3.2, "earths"),
  42792. default: true
  42793. },
  42794. ]
  42795. ))
  42796. characterMakers.push(() => makeCharacter(
  42797. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42798. {
  42799. front: {
  42800. height: math.unit(512, "feet"),
  42801. weight: math.unit(63509, "tonnes"),
  42802. name: "Front",
  42803. image: {
  42804. source: "./media/characters/vorrel-harroc/front.svg",
  42805. extra: 1075/1063,
  42806. bottom: 62/1137
  42807. }
  42808. },
  42809. },
  42810. [
  42811. {
  42812. name: "Normal",
  42813. height: math.unit(10, "feet")
  42814. },
  42815. {
  42816. name: "Macro",
  42817. height: math.unit(512, "feet"),
  42818. default: true
  42819. },
  42820. {
  42821. name: "Megamacro",
  42822. height: math.unit(256, "miles")
  42823. },
  42824. {
  42825. name: "Gigamacro",
  42826. height: math.unit(4096, "miles")
  42827. },
  42828. ]
  42829. ))
  42830. characterMakers.push(() => makeCharacter(
  42831. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42832. {
  42833. side: {
  42834. height: math.unit(50, "feet"),
  42835. name: "Side",
  42836. image: {
  42837. source: "./media/characters/froimar/side.svg",
  42838. extra: 855/638,
  42839. bottom: 99/954
  42840. }
  42841. },
  42842. },
  42843. [
  42844. {
  42845. name: "Macro",
  42846. height: math.unit(50, "feet"),
  42847. default: true
  42848. },
  42849. ]
  42850. ))
  42851. characterMakers.push(() => makeCharacter(
  42852. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42853. {
  42854. front: {
  42855. height: math.unit(210, "miles"),
  42856. name: "Front",
  42857. image: {
  42858. source: "./media/characters/timothy/front.svg",
  42859. extra: 1007/943,
  42860. bottom: 62/1069
  42861. }
  42862. },
  42863. frontSkirt: {
  42864. height: math.unit(210, "miles"),
  42865. name: "Front (Skirt)",
  42866. image: {
  42867. source: "./media/characters/timothy/front-skirt.svg",
  42868. extra: 1007/943,
  42869. bottom: 62/1069
  42870. }
  42871. },
  42872. frontCoat: {
  42873. height: math.unit(210, "miles"),
  42874. name: "Front (Coat)",
  42875. image: {
  42876. source: "./media/characters/timothy/front-coat.svg",
  42877. extra: 1007/943,
  42878. bottom: 62/1069
  42879. }
  42880. },
  42881. },
  42882. [
  42883. {
  42884. name: "Macro",
  42885. height: math.unit(210, "miles"),
  42886. default: true
  42887. },
  42888. {
  42889. name: "Megamacro",
  42890. height: math.unit(210000, "miles")
  42891. },
  42892. ]
  42893. ))
  42894. characterMakers.push(() => makeCharacter(
  42895. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42896. {
  42897. front: {
  42898. height: math.unit(188, "feet"),
  42899. name: "Front",
  42900. image: {
  42901. source: "./media/characters/pyotr/front.svg",
  42902. extra: 1912/1826,
  42903. bottom: 18/1930
  42904. }
  42905. },
  42906. },
  42907. [
  42908. {
  42909. name: "Macro",
  42910. height: math.unit(188, "feet"),
  42911. default: true
  42912. },
  42913. {
  42914. name: "Megamacro",
  42915. height: math.unit(8, "miles")
  42916. },
  42917. ]
  42918. ))
  42919. characterMakers.push(() => makeCharacter(
  42920. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42921. {
  42922. side: {
  42923. height: math.unit(10, "feet"),
  42924. weight: math.unit(4500, "lb"),
  42925. name: "Side",
  42926. image: {
  42927. source: "./media/characters/ackart/side.svg",
  42928. extra: 1776/1668,
  42929. bottom: 116/1892
  42930. }
  42931. },
  42932. },
  42933. [
  42934. {
  42935. name: "Normal",
  42936. height: math.unit(10, "feet"),
  42937. default: true
  42938. },
  42939. ]
  42940. ))
  42941. characterMakers.push(() => makeCharacter(
  42942. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42943. {
  42944. side: {
  42945. height: math.unit(21, "feet"),
  42946. name: "Side",
  42947. image: {
  42948. source: "./media/characters/nolow/side.svg",
  42949. extra: 1484/1434,
  42950. bottom: 85/1569
  42951. }
  42952. },
  42953. sideErect: {
  42954. height: math.unit(21, "feet"),
  42955. name: "Side-erect",
  42956. image: {
  42957. source: "./media/characters/nolow/side-erect.svg",
  42958. extra: 1484/1434,
  42959. bottom: 85/1569
  42960. }
  42961. },
  42962. },
  42963. [
  42964. {
  42965. name: "Regular",
  42966. height: math.unit(12, "feet")
  42967. },
  42968. {
  42969. name: "Big Chee",
  42970. height: math.unit(21, "feet"),
  42971. default: true
  42972. },
  42973. ]
  42974. ))
  42975. characterMakers.push(() => makeCharacter(
  42976. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42977. {
  42978. front: {
  42979. height: math.unit(7, "feet"),
  42980. weight: math.unit(250, "lb"),
  42981. name: "Front",
  42982. image: {
  42983. source: "./media/characters/nines/front.svg",
  42984. extra: 1741/1607,
  42985. bottom: 41/1782
  42986. }
  42987. },
  42988. side: {
  42989. height: math.unit(7, "feet"),
  42990. weight: math.unit(250, "lb"),
  42991. name: "Side",
  42992. image: {
  42993. source: "./media/characters/nines/side.svg",
  42994. extra: 1854/1735,
  42995. bottom: 93/1947
  42996. }
  42997. },
  42998. back: {
  42999. height: math.unit(7, "feet"),
  43000. weight: math.unit(250, "lb"),
  43001. name: "Back",
  43002. image: {
  43003. source: "./media/characters/nines/back.svg",
  43004. extra: 1748/1615,
  43005. bottom: 20/1768
  43006. }
  43007. },
  43008. },
  43009. [
  43010. {
  43011. name: "Megamacro",
  43012. height: math.unit(99, "km"),
  43013. default: true
  43014. },
  43015. ]
  43016. ))
  43017. characterMakers.push(() => makeCharacter(
  43018. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43019. {
  43020. front: {
  43021. height: math.unit(5 + 10/12, "feet"),
  43022. weight: math.unit(210, "lb"),
  43023. name: "Front",
  43024. image: {
  43025. source: "./media/characters/zenith/front.svg",
  43026. extra: 1531/1452,
  43027. bottom: 198/1729
  43028. }
  43029. },
  43030. back: {
  43031. height: math.unit(5 + 10/12, "feet"),
  43032. weight: math.unit(210, "lb"),
  43033. name: "Back",
  43034. image: {
  43035. source: "./media/characters/zenith/back.svg",
  43036. extra: 1571/1487,
  43037. bottom: 75/1646
  43038. }
  43039. },
  43040. },
  43041. [
  43042. {
  43043. name: "Normal",
  43044. height: math.unit(5 + 10/12, "feet"),
  43045. default: true
  43046. }
  43047. ]
  43048. ))
  43049. characterMakers.push(() => makeCharacter(
  43050. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43051. {
  43052. front: {
  43053. height: math.unit(4, "feet"),
  43054. weight: math.unit(60, "lb"),
  43055. name: "Front",
  43056. image: {
  43057. source: "./media/characters/jasper/front.svg",
  43058. extra: 1450/1379,
  43059. bottom: 19/1469
  43060. }
  43061. },
  43062. },
  43063. [
  43064. {
  43065. name: "Normal",
  43066. height: math.unit(4, "feet"),
  43067. default: true
  43068. },
  43069. ]
  43070. ))
  43071. characterMakers.push(() => makeCharacter(
  43072. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43073. {
  43074. front: {
  43075. height: math.unit(6 + 5/12, "feet"),
  43076. weight: math.unit(290, "lb"),
  43077. name: "Front",
  43078. image: {
  43079. source: "./media/characters/tiberius-thyben/front.svg",
  43080. extra: 757/739,
  43081. bottom: 39/796
  43082. }
  43083. },
  43084. },
  43085. [
  43086. {
  43087. name: "Micro",
  43088. height: math.unit(1.5, "inches")
  43089. },
  43090. {
  43091. name: "Normal",
  43092. height: math.unit(6 + 5/12, "feet"),
  43093. default: true
  43094. },
  43095. {
  43096. name: "Macro",
  43097. height: math.unit(300, "feet")
  43098. },
  43099. ]
  43100. ))
  43101. characterMakers.push(() => makeCharacter(
  43102. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43103. {
  43104. front: {
  43105. height: math.unit(5 + 6/12, "feet"),
  43106. weight: math.unit(60, "kg"),
  43107. name: "Front",
  43108. image: {
  43109. source: "./media/characters/sabre/front.svg",
  43110. extra: 738/671,
  43111. bottom: 27/765
  43112. }
  43113. },
  43114. },
  43115. [
  43116. {
  43117. name: "Teeny",
  43118. height: math.unit(2, "inches")
  43119. },
  43120. {
  43121. name: "Smol",
  43122. height: math.unit(8, "inches")
  43123. },
  43124. {
  43125. name: "Normal",
  43126. height: math.unit(5 + 6/12, "feet"),
  43127. default: true
  43128. },
  43129. {
  43130. name: "Mini-Macro",
  43131. height: math.unit(15, "feet")
  43132. },
  43133. {
  43134. name: "Macro",
  43135. height: math.unit(50, "feet")
  43136. },
  43137. ]
  43138. ))
  43139. characterMakers.push(() => makeCharacter(
  43140. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43141. {
  43142. front: {
  43143. height: math.unit(6 + 4/12, "feet"),
  43144. weight: math.unit(170, "lb"),
  43145. name: "Front",
  43146. image: {
  43147. source: "./media/characters/charlie/front.svg",
  43148. extra: 1348/1228,
  43149. bottom: 15/1363
  43150. }
  43151. },
  43152. },
  43153. [
  43154. {
  43155. name: "Macro",
  43156. height: math.unit(1700, "meters"),
  43157. default: true
  43158. },
  43159. {
  43160. name: "MegaMacro",
  43161. height: math.unit(20400, "meters")
  43162. },
  43163. ]
  43164. ))
  43165. characterMakers.push(() => makeCharacter(
  43166. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43167. {
  43168. front: {
  43169. height: math.unit(6 + 3/12, "feet"),
  43170. weight: math.unit(185, "lb"),
  43171. name: "Front",
  43172. image: {
  43173. source: "./media/characters/susan-grant/front.svg",
  43174. extra: 1351/1327,
  43175. bottom: 26/1377
  43176. }
  43177. },
  43178. },
  43179. [
  43180. {
  43181. name: "Normal",
  43182. height: math.unit(6 + 3/12, "feet"),
  43183. default: true
  43184. },
  43185. {
  43186. name: "Macro",
  43187. height: math.unit(225, "feet")
  43188. },
  43189. {
  43190. name: "Macro+",
  43191. height: math.unit(900, "feet")
  43192. },
  43193. {
  43194. name: "MegaMacro",
  43195. height: math.unit(14400, "feet")
  43196. },
  43197. ]
  43198. ))
  43199. characterMakers.push(() => makeCharacter(
  43200. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43201. {
  43202. front: {
  43203. height: math.unit(5 + 4/12, "feet"),
  43204. weight: math.unit(110, "lb"),
  43205. name: "Front",
  43206. image: {
  43207. source: "./media/characters/axel-isanov/front.svg",
  43208. extra: 1096/1065,
  43209. bottom: 13/1109
  43210. }
  43211. },
  43212. },
  43213. [
  43214. {
  43215. name: "Normal",
  43216. height: math.unit(5 + 4/12, "feet"),
  43217. default: true
  43218. },
  43219. ]
  43220. ))
  43221. characterMakers.push(() => makeCharacter(
  43222. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43223. {
  43224. front: {
  43225. height: math.unit(9, "feet"),
  43226. weight: math.unit(467, "lb"),
  43227. name: "Front",
  43228. image: {
  43229. source: "./media/characters/necahual/front.svg",
  43230. extra: 920/873,
  43231. bottom: 26/946
  43232. }
  43233. },
  43234. back: {
  43235. height: math.unit(9, "feet"),
  43236. weight: math.unit(467, "lb"),
  43237. name: "Back",
  43238. image: {
  43239. source: "./media/characters/necahual/back.svg",
  43240. extra: 930/884,
  43241. bottom: 16/946
  43242. }
  43243. },
  43244. frontUnderwear: {
  43245. height: math.unit(9, "feet"),
  43246. weight: math.unit(467, "lb"),
  43247. name: "Front (Underwear)",
  43248. image: {
  43249. source: "./media/characters/necahual/front-underwear.svg",
  43250. extra: 920/873,
  43251. bottom: 26/946
  43252. }
  43253. },
  43254. frontDressed: {
  43255. height: math.unit(9, "feet"),
  43256. weight: math.unit(467, "lb"),
  43257. name: "Front (Dressed)",
  43258. image: {
  43259. source: "./media/characters/necahual/front-dressed.svg",
  43260. extra: 920/873,
  43261. bottom: 26/946
  43262. }
  43263. },
  43264. },
  43265. [
  43266. {
  43267. name: "Comprsesed",
  43268. height: math.unit(9, "feet")
  43269. },
  43270. {
  43271. name: "Natural",
  43272. height: math.unit(15, "feet"),
  43273. default: true
  43274. },
  43275. {
  43276. name: "Boosted",
  43277. height: math.unit(50, "feet")
  43278. },
  43279. {
  43280. name: "Boosted+",
  43281. height: math.unit(150, "feet")
  43282. },
  43283. {
  43284. name: "Max",
  43285. height: math.unit(500, "feet")
  43286. },
  43287. ]
  43288. ))
  43289. characterMakers.push(() => makeCharacter(
  43290. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43291. {
  43292. front: {
  43293. height: math.unit(22 + 1/12, "feet"),
  43294. weight: math.unit(3200, "lb"),
  43295. name: "Front",
  43296. image: {
  43297. source: "./media/characters/theo-acacia/front.svg",
  43298. extra: 1796/1741,
  43299. bottom: 83/1879
  43300. }
  43301. },
  43302. frontUnderwear: {
  43303. height: math.unit(22 + 1/12, "feet"),
  43304. weight: math.unit(3200, "lb"),
  43305. name: "Front (Underwear)",
  43306. image: {
  43307. source: "./media/characters/theo-acacia/front-underwear.svg",
  43308. extra: 1796/1741,
  43309. bottom: 83/1879
  43310. }
  43311. },
  43312. frontNude: {
  43313. height: math.unit(22 + 1/12, "feet"),
  43314. weight: math.unit(3200, "lb"),
  43315. name: "Front (Nude)",
  43316. image: {
  43317. source: "./media/characters/theo-acacia/front-nude.svg",
  43318. extra: 1796/1741,
  43319. bottom: 83/1879
  43320. }
  43321. },
  43322. },
  43323. [
  43324. {
  43325. name: "Normal",
  43326. height: math.unit(22 + 1/12, "feet"),
  43327. default: true
  43328. },
  43329. ]
  43330. ))
  43331. characterMakers.push(() => makeCharacter(
  43332. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43333. {
  43334. front: {
  43335. height: math.unit(20, "feet"),
  43336. name: "Front",
  43337. image: {
  43338. source: "./media/characters/astra/front.svg",
  43339. extra: 1850/1714,
  43340. bottom: 106/1956
  43341. }
  43342. },
  43343. frontUndressed: {
  43344. height: math.unit(20, "feet"),
  43345. name: "Front (Undressed)",
  43346. image: {
  43347. source: "./media/characters/astra/front-undressed.svg",
  43348. extra: 1926/1749,
  43349. bottom: 0/1926
  43350. }
  43351. },
  43352. hand: {
  43353. height: math.unit(1.53, "feet"),
  43354. name: "Hand",
  43355. image: {
  43356. source: "./media/characters/astra/hand.svg"
  43357. }
  43358. },
  43359. paw: {
  43360. height: math.unit(1.53, "feet"),
  43361. name: "Paw",
  43362. image: {
  43363. source: "./media/characters/astra/paw.svg"
  43364. }
  43365. },
  43366. },
  43367. [
  43368. {
  43369. name: "Smallest",
  43370. height: math.unit(20, "feet")
  43371. },
  43372. {
  43373. name: "Normal",
  43374. height: math.unit(1e9, "miles"),
  43375. default: true
  43376. },
  43377. {
  43378. name: "Larger",
  43379. height: math.unit(5, "multiverses")
  43380. },
  43381. {
  43382. name: "Largest",
  43383. height: math.unit(1e9, "multiverses")
  43384. },
  43385. ]
  43386. ))
  43387. characterMakers.push(() => makeCharacter(
  43388. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43389. {
  43390. front: {
  43391. height: math.unit(8, "feet"),
  43392. name: "Front",
  43393. image: {
  43394. source: "./media/characters/breanna/front.svg",
  43395. extra: 1912/1632,
  43396. bottom: 33/1945
  43397. }
  43398. },
  43399. },
  43400. [
  43401. {
  43402. name: "Smallest",
  43403. height: math.unit(8, "feet")
  43404. },
  43405. {
  43406. name: "Normal",
  43407. height: math.unit(1, "mile"),
  43408. default: true
  43409. },
  43410. {
  43411. name: "Maximum",
  43412. height: math.unit(1500000000000, "lightyears")
  43413. },
  43414. ]
  43415. ))
  43416. characterMakers.push(() => makeCharacter(
  43417. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43418. {
  43419. front: {
  43420. height: math.unit(5 + 11/12, "feet"),
  43421. weight: math.unit(155, "lb"),
  43422. name: "Front",
  43423. image: {
  43424. source: "./media/characters/cai/front.svg",
  43425. extra: 1823/1702,
  43426. bottom: 32/1855
  43427. }
  43428. },
  43429. back: {
  43430. height: math.unit(5 + 11/12, "feet"),
  43431. weight: math.unit(155, "lb"),
  43432. name: "Back",
  43433. image: {
  43434. source: "./media/characters/cai/back.svg",
  43435. extra: 1809/1708,
  43436. bottom: 31/1840
  43437. }
  43438. },
  43439. },
  43440. [
  43441. {
  43442. name: "Normal",
  43443. height: math.unit(5 + 11/12, "feet"),
  43444. default: true
  43445. },
  43446. {
  43447. name: "Big",
  43448. height: math.unit(15, "feet")
  43449. },
  43450. {
  43451. name: "Macro",
  43452. height: math.unit(200, "feet")
  43453. },
  43454. ]
  43455. ))
  43456. characterMakers.push(() => makeCharacter(
  43457. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43458. {
  43459. front: {
  43460. height: math.unit(5 + 6/12, "feet"),
  43461. weight: math.unit(160, "lb"),
  43462. name: "Front",
  43463. image: {
  43464. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43465. extra: 1227/1174,
  43466. bottom: 37/1264
  43467. }
  43468. },
  43469. },
  43470. [
  43471. {
  43472. name: "Macro",
  43473. height: math.unit(444, "meters"),
  43474. default: true
  43475. },
  43476. ]
  43477. ))
  43478. characterMakers.push(() => makeCharacter(
  43479. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43480. {
  43481. front: {
  43482. height: math.unit(18 + 7/12, "feet"),
  43483. name: "Front",
  43484. image: {
  43485. source: "./media/characters/rex/front.svg",
  43486. extra: 1941/1807,
  43487. bottom: 66/2007
  43488. }
  43489. },
  43490. back: {
  43491. height: math.unit(18 + 7/12, "feet"),
  43492. name: "Back",
  43493. image: {
  43494. source: "./media/characters/rex/back.svg",
  43495. extra: 1937/1822,
  43496. bottom: 42/1979
  43497. }
  43498. },
  43499. boot: {
  43500. height: math.unit(3.45, "feet"),
  43501. name: "Boot",
  43502. image: {
  43503. source: "./media/characters/rex/boot.svg"
  43504. }
  43505. },
  43506. paw: {
  43507. height: math.unit(4.17, "feet"),
  43508. name: "Paw",
  43509. image: {
  43510. source: "./media/characters/rex/paw.svg"
  43511. }
  43512. },
  43513. head: {
  43514. height: math.unit(6.728, "feet"),
  43515. name: "Head",
  43516. image: {
  43517. source: "./media/characters/rex/head.svg"
  43518. }
  43519. },
  43520. },
  43521. [
  43522. {
  43523. name: "Nano",
  43524. height: math.unit(18 + 7/12, "feet")
  43525. },
  43526. {
  43527. name: "Micro",
  43528. height: math.unit(1.5, "megameters")
  43529. },
  43530. {
  43531. name: "Normal",
  43532. height: math.unit(440, "megameters"),
  43533. default: true
  43534. },
  43535. {
  43536. name: "Macro",
  43537. height: math.unit(2.5, "gigameters")
  43538. },
  43539. {
  43540. name: "Gigamacro",
  43541. height: math.unit(2, "galaxies")
  43542. },
  43543. ]
  43544. ))
  43545. characterMakers.push(() => makeCharacter(
  43546. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43547. {
  43548. side: {
  43549. height: math.unit(32, "feet"),
  43550. weight: math.unit(250000, "lb"),
  43551. name: "Side",
  43552. image: {
  43553. source: "./media/characters/silverwing/side.svg",
  43554. extra: 1100/1019,
  43555. bottom: 204/1304
  43556. }
  43557. },
  43558. },
  43559. [
  43560. {
  43561. name: "Normal",
  43562. height: math.unit(32, "feet"),
  43563. default: true
  43564. },
  43565. ]
  43566. ))
  43567. characterMakers.push(() => makeCharacter(
  43568. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43569. {
  43570. front: {
  43571. height: math.unit(6 + 6/12, "feet"),
  43572. weight: math.unit(350, "lb"),
  43573. name: "Front",
  43574. image: {
  43575. source: "./media/characters/tristan-hawthorne/front.svg",
  43576. extra: 1159/1124,
  43577. bottom: 37/1196
  43578. },
  43579. form: "labrador",
  43580. default: true
  43581. },
  43582. skunkFront: {
  43583. height: math.unit(4 + 6/12, "feet"),
  43584. weight: math.unit(120, "lb"),
  43585. name: "Front",
  43586. image: {
  43587. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43588. extra: 1609/1551,
  43589. bottom: 169/1778
  43590. },
  43591. form: "skunk",
  43592. default: true
  43593. },
  43594. },
  43595. [
  43596. {
  43597. name: "Normal",
  43598. height: math.unit(6 + 6/12, "feet"),
  43599. form: "labrador",
  43600. default: true
  43601. },
  43602. {
  43603. name: "Normal",
  43604. height: math.unit(4 + 6/12, "feet"),
  43605. form: "skunk",
  43606. default: true
  43607. },
  43608. ],
  43609. {
  43610. "labrador": {
  43611. name: "Labrador",
  43612. default: true
  43613. },
  43614. "skunk": {
  43615. name: "Skunk"
  43616. }
  43617. }
  43618. ))
  43619. characterMakers.push(() => makeCharacter(
  43620. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43621. {
  43622. front: {
  43623. height: math.unit(5 + 11/12, "feet"),
  43624. weight: math.unit(190, "lb"),
  43625. name: "Front",
  43626. image: {
  43627. source: "./media/characters/mizu/front.svg",
  43628. extra: 1988/1788,
  43629. bottom: 14/2002
  43630. }
  43631. },
  43632. },
  43633. [
  43634. {
  43635. name: "Normal",
  43636. height: math.unit(5 + 11/12, "feet"),
  43637. default: true
  43638. },
  43639. ]
  43640. ))
  43641. characterMakers.push(() => makeCharacter(
  43642. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43643. {
  43644. front: {
  43645. height: math.unit(1.7, "feet"),
  43646. weight: math.unit(50, "lb"),
  43647. name: "Front",
  43648. image: {
  43649. source: "./media/characters/dechroma/front.svg",
  43650. extra: 1095/859,
  43651. bottom: 64/1159
  43652. }
  43653. },
  43654. },
  43655. [
  43656. {
  43657. name: "Normal",
  43658. height: math.unit(1.7, "feet"),
  43659. default: true
  43660. },
  43661. ]
  43662. ))
  43663. characterMakers.push(() => makeCharacter(
  43664. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43665. {
  43666. side: {
  43667. height: math.unit(30, "feet"),
  43668. name: "Side",
  43669. image: {
  43670. source: "./media/characters/veluren-thanazel/side.svg",
  43671. extra: 1611/633,
  43672. bottom: 118/1729
  43673. }
  43674. },
  43675. front: {
  43676. height: math.unit(30, "feet"),
  43677. name: "Front",
  43678. image: {
  43679. source: "./media/characters/veluren-thanazel/front.svg",
  43680. extra: 1486/636,
  43681. bottom: 238/1724
  43682. }
  43683. },
  43684. head: {
  43685. height: math.unit(21.4, "feet"),
  43686. name: "Head",
  43687. image: {
  43688. source: "./media/characters/veluren-thanazel/head.svg"
  43689. }
  43690. },
  43691. genitals: {
  43692. height: math.unit(19.4, "feet"),
  43693. name: "Genitals",
  43694. image: {
  43695. source: "./media/characters/veluren-thanazel/genitals.svg"
  43696. }
  43697. },
  43698. },
  43699. [
  43700. {
  43701. name: "Social",
  43702. height: math.unit(6, "feet")
  43703. },
  43704. {
  43705. name: "Play",
  43706. height: math.unit(12, "feet")
  43707. },
  43708. {
  43709. name: "True",
  43710. height: math.unit(30, "feet"),
  43711. default: true
  43712. },
  43713. ]
  43714. ))
  43715. characterMakers.push(() => makeCharacter(
  43716. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43717. {
  43718. front: {
  43719. height: math.unit(7 + 6/12, "feet"),
  43720. weight: math.unit(500, "kg"),
  43721. name: "Front",
  43722. image: {
  43723. source: "./media/characters/arcturas/front.svg",
  43724. extra: 1700/1500,
  43725. bottom: 145/1845
  43726. }
  43727. },
  43728. },
  43729. [
  43730. {
  43731. name: "Normal",
  43732. height: math.unit(7 + 6/12, "feet"),
  43733. default: true
  43734. },
  43735. ]
  43736. ))
  43737. characterMakers.push(() => makeCharacter(
  43738. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43739. {
  43740. side: {
  43741. height: math.unit(6, "feet"),
  43742. weight: math.unit(2, "tons"),
  43743. name: "Side",
  43744. image: {
  43745. source: "./media/characters/vitaen/side.svg",
  43746. extra: 1157/617,
  43747. bottom: 122/1279
  43748. }
  43749. },
  43750. },
  43751. [
  43752. {
  43753. name: "Normal",
  43754. height: math.unit(6, "feet"),
  43755. default: true
  43756. },
  43757. ]
  43758. ))
  43759. characterMakers.push(() => makeCharacter(
  43760. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43761. {
  43762. front: {
  43763. height: math.unit(19, "feet"),
  43764. name: "Front",
  43765. image: {
  43766. source: "./media/characters/fia-dreamweaver/front.svg",
  43767. extra: 1630/1504,
  43768. bottom: 25/1655
  43769. }
  43770. },
  43771. },
  43772. [
  43773. {
  43774. name: "Normal",
  43775. height: math.unit(19, "feet"),
  43776. default: true
  43777. },
  43778. ]
  43779. ))
  43780. characterMakers.push(() => makeCharacter(
  43781. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43782. {
  43783. front: {
  43784. height: math.unit(5 + 4/12, "feet"),
  43785. name: "Front",
  43786. image: {
  43787. source: "./media/characters/artan/front.svg",
  43788. extra: 1618/1535,
  43789. bottom: 46/1664
  43790. }
  43791. },
  43792. back: {
  43793. height: math.unit(5 + 4/12, "feet"),
  43794. name: "Back",
  43795. image: {
  43796. source: "./media/characters/artan/back.svg",
  43797. extra: 1618/1543,
  43798. bottom: 31/1649
  43799. }
  43800. },
  43801. },
  43802. [
  43803. {
  43804. name: "Normal",
  43805. height: math.unit(5 + 4/12, "feet"),
  43806. default: true
  43807. },
  43808. ]
  43809. ))
  43810. characterMakers.push(() => makeCharacter(
  43811. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43812. {
  43813. side: {
  43814. height: math.unit(182, "cm"),
  43815. weight: math.unit(1000, "lb"),
  43816. name: "Side",
  43817. image: {
  43818. source: "./media/characters/silver-dragon/side.svg",
  43819. extra: 710/287,
  43820. bottom: 88/798
  43821. }
  43822. },
  43823. },
  43824. [
  43825. {
  43826. name: "Normal",
  43827. height: math.unit(182, "cm"),
  43828. default: true
  43829. },
  43830. ]
  43831. ))
  43832. characterMakers.push(() => makeCharacter(
  43833. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43834. {
  43835. side: {
  43836. height: math.unit(6 + 6/12, "feet"),
  43837. weight: math.unit(1.5, "tons"),
  43838. name: "Side",
  43839. image: {
  43840. source: "./media/characters/zephyr/side.svg",
  43841. extra: 1433/586,
  43842. bottom: 109/1542
  43843. }
  43844. },
  43845. },
  43846. [
  43847. {
  43848. name: "Normal",
  43849. height: math.unit(6 + 6/12, "feet"),
  43850. default: true
  43851. },
  43852. ]
  43853. ))
  43854. characterMakers.push(() => makeCharacter(
  43855. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43856. {
  43857. side: {
  43858. height: math.unit(1, "feet"),
  43859. name: "Side",
  43860. image: {
  43861. source: "./media/characters/vixye/side.svg",
  43862. extra: 632/541,
  43863. bottom: 0/632
  43864. }
  43865. },
  43866. },
  43867. [
  43868. {
  43869. name: "Normal",
  43870. height: math.unit(1, "feet"),
  43871. default: true
  43872. },
  43873. {
  43874. name: "True",
  43875. height: math.unit(1e15, "multiverses")
  43876. },
  43877. ]
  43878. ))
  43879. characterMakers.push(() => makeCharacter(
  43880. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43881. {
  43882. front: {
  43883. height: math.unit(8 + 2/12, "feet"),
  43884. weight: math.unit(650, "lb"),
  43885. name: "Front",
  43886. image: {
  43887. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43888. extra: 1174/1137,
  43889. bottom: 82/1256
  43890. }
  43891. },
  43892. back: {
  43893. height: math.unit(8 + 2/12, "feet"),
  43894. weight: math.unit(650, "lb"),
  43895. name: "Back",
  43896. image: {
  43897. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43898. extra: 1204/1157,
  43899. bottom: 46/1250
  43900. }
  43901. },
  43902. },
  43903. [
  43904. {
  43905. name: "Wildform",
  43906. height: math.unit(8 + 2/12, "feet"),
  43907. default: true
  43908. },
  43909. ]
  43910. ))
  43911. characterMakers.push(() => makeCharacter(
  43912. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43913. {
  43914. front: {
  43915. height: math.unit(18, "feet"),
  43916. name: "Front",
  43917. image: {
  43918. source: "./media/characters/cyphin/front.svg",
  43919. extra: 970/886,
  43920. bottom: 42/1012
  43921. }
  43922. },
  43923. back: {
  43924. height: math.unit(18, "feet"),
  43925. name: "Back",
  43926. image: {
  43927. source: "./media/characters/cyphin/back.svg",
  43928. extra: 1009/894,
  43929. bottom: 24/1033
  43930. }
  43931. },
  43932. head: {
  43933. height: math.unit(5.05, "feet"),
  43934. name: "Head",
  43935. image: {
  43936. source: "./media/characters/cyphin/head.svg"
  43937. }
  43938. },
  43939. tailbud: {
  43940. height: math.unit(5, "feet"),
  43941. name: "Tailbud",
  43942. image: {
  43943. source: "./media/characters/cyphin/tailbud.svg"
  43944. }
  43945. },
  43946. },
  43947. [
  43948. ]
  43949. ))
  43950. characterMakers.push(() => makeCharacter(
  43951. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43952. {
  43953. side: {
  43954. height: math.unit(10, "feet"),
  43955. weight: math.unit(6, "tons"),
  43956. name: "Side",
  43957. image: {
  43958. source: "./media/characters/raijin/side.svg",
  43959. extra: 1529/613,
  43960. bottom: 337/1866
  43961. }
  43962. },
  43963. },
  43964. [
  43965. {
  43966. name: "Normal",
  43967. height: math.unit(10, "feet"),
  43968. default: true
  43969. },
  43970. ]
  43971. ))
  43972. characterMakers.push(() => makeCharacter(
  43973. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43974. {
  43975. side: {
  43976. height: math.unit(9, "feet"),
  43977. name: "Side",
  43978. image: {
  43979. source: "./media/characters/nilghais/side.svg",
  43980. extra: 1047/744,
  43981. bottom: 91/1138
  43982. }
  43983. },
  43984. head: {
  43985. height: math.unit(3.14, "feet"),
  43986. name: "Head",
  43987. image: {
  43988. source: "./media/characters/nilghais/head.svg"
  43989. }
  43990. },
  43991. mouth: {
  43992. height: math.unit(4.6, "feet"),
  43993. name: "Mouth",
  43994. image: {
  43995. source: "./media/characters/nilghais/mouth.svg"
  43996. }
  43997. },
  43998. wings: {
  43999. height: math.unit(24, "feet"),
  44000. name: "Wings",
  44001. image: {
  44002. source: "./media/characters/nilghais/wings.svg"
  44003. }
  44004. },
  44005. ass: {
  44006. height: math.unit(6.12, "feet"),
  44007. name: "Ass",
  44008. image: {
  44009. source: "./media/characters/nilghais/ass.svg"
  44010. }
  44011. },
  44012. },
  44013. [
  44014. {
  44015. name: "Normal",
  44016. height: math.unit(9, "feet"),
  44017. default: true
  44018. },
  44019. ]
  44020. ))
  44021. characterMakers.push(() => makeCharacter(
  44022. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44023. {
  44024. regular: {
  44025. height: math.unit(16 + 2/12, "feet"),
  44026. weight: math.unit(2300, "lb"),
  44027. name: "Regular",
  44028. image: {
  44029. source: "./media/characters/zolgar/regular.svg",
  44030. extra: 1246/1004,
  44031. bottom: 124/1370
  44032. }
  44033. },
  44034. boxers: {
  44035. height: math.unit(16 + 2/12, "feet"),
  44036. weight: math.unit(2300, "lb"),
  44037. name: "Boxers",
  44038. image: {
  44039. source: "./media/characters/zolgar/boxers.svg",
  44040. extra: 1246/1004,
  44041. bottom: 124/1370
  44042. }
  44043. },
  44044. armored: {
  44045. height: math.unit(16 + 2/12, "feet"),
  44046. weight: math.unit(2300, "lb"),
  44047. name: "Armored",
  44048. image: {
  44049. source: "./media/characters/zolgar/armored.svg",
  44050. extra: 1246/1004,
  44051. bottom: 124/1370
  44052. }
  44053. },
  44054. goth: {
  44055. height: math.unit(16 + 2/12, "feet"),
  44056. weight: math.unit(2300, "lb"),
  44057. name: "Goth",
  44058. image: {
  44059. source: "./media/characters/zolgar/goth.svg",
  44060. extra: 1246/1004,
  44061. bottom: 124/1370
  44062. }
  44063. },
  44064. },
  44065. [
  44066. {
  44067. name: "Shrunken Down",
  44068. height: math.unit(9 + 2/12, "feet")
  44069. },
  44070. {
  44071. name: "Normal",
  44072. height: math.unit(16 + 2/12, "feet"),
  44073. default: true
  44074. },
  44075. ]
  44076. ))
  44077. characterMakers.push(() => makeCharacter(
  44078. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44079. {
  44080. front: {
  44081. height: math.unit(6, "feet"),
  44082. weight: math.unit(168, "lb"),
  44083. name: "Front",
  44084. image: {
  44085. source: "./media/characters/luca/front.svg",
  44086. extra: 841/667,
  44087. bottom: 102/943
  44088. }
  44089. },
  44090. },
  44091. [
  44092. {
  44093. name: "Normal",
  44094. height: math.unit(6, "feet"),
  44095. default: true
  44096. },
  44097. ]
  44098. ))
  44099. characterMakers.push(() => makeCharacter(
  44100. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44101. {
  44102. side: {
  44103. height: math.unit(7 + 3/12, "feet"),
  44104. weight: math.unit(312, "lb"),
  44105. name: "Side",
  44106. image: {
  44107. source: "./media/characters/zezo/side.svg",
  44108. extra: 1192/1067,
  44109. bottom: 63/1255
  44110. }
  44111. },
  44112. },
  44113. [
  44114. {
  44115. name: "Normal",
  44116. height: math.unit(7 + 3/12, "feet"),
  44117. default: true
  44118. },
  44119. ]
  44120. ))
  44121. characterMakers.push(() => makeCharacter(
  44122. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44123. {
  44124. front: {
  44125. height: math.unit(5 + 5/12, "feet"),
  44126. weight: math.unit(170, "lb"),
  44127. name: "Front",
  44128. image: {
  44129. source: "./media/characters/mayso/front.svg",
  44130. extra: 1215/1108,
  44131. bottom: 16/1231
  44132. }
  44133. },
  44134. },
  44135. [
  44136. {
  44137. name: "Normal",
  44138. height: math.unit(5 + 5/12, "feet"),
  44139. default: true
  44140. },
  44141. ]
  44142. ))
  44143. characterMakers.push(() => makeCharacter(
  44144. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44145. {
  44146. front: {
  44147. height: math.unit(4 + 3/12, "feet"),
  44148. weight: math.unit(80, "lb"),
  44149. name: "Front",
  44150. image: {
  44151. source: "./media/characters/hess/front.svg",
  44152. extra: 1200/1123,
  44153. bottom: 16/1216
  44154. }
  44155. },
  44156. },
  44157. [
  44158. {
  44159. name: "Normal",
  44160. height: math.unit(4 + 3/12, "feet"),
  44161. default: true
  44162. },
  44163. ]
  44164. ))
  44165. characterMakers.push(() => makeCharacter(
  44166. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44167. {
  44168. front: {
  44169. height: math.unit(1.9, "meters"),
  44170. name: "Front",
  44171. image: {
  44172. source: "./media/characters/ashgar/front.svg",
  44173. extra: 1177/1146,
  44174. bottom: 99/1276
  44175. }
  44176. },
  44177. back: {
  44178. height: math.unit(1.9, "meters"),
  44179. name: "Back",
  44180. image: {
  44181. source: "./media/characters/ashgar/back.svg",
  44182. extra: 1201/1183,
  44183. bottom: 53/1254
  44184. }
  44185. },
  44186. feral: {
  44187. height: math.unit(1.4, "meters"),
  44188. name: "Feral",
  44189. image: {
  44190. source: "./media/characters/ashgar/feral.svg",
  44191. extra: 370/345,
  44192. bottom: 45/415
  44193. }
  44194. },
  44195. },
  44196. [
  44197. {
  44198. name: "Normal",
  44199. height: math.unit(1.9, "meters"),
  44200. default: true
  44201. },
  44202. ]
  44203. ))
  44204. characterMakers.push(() => makeCharacter(
  44205. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44206. {
  44207. regular: {
  44208. height: math.unit(6, "feet"),
  44209. weight: math.unit(220, "lb"),
  44210. name: "Regular",
  44211. image: {
  44212. source: "./media/characters/phillip/regular.svg",
  44213. extra: 1373/1277,
  44214. bottom: 75/1448
  44215. }
  44216. },
  44217. dressed: {
  44218. height: math.unit(6, "feet"),
  44219. weight: math.unit(220, "lb"),
  44220. name: "Dressed",
  44221. image: {
  44222. source: "./media/characters/phillip/dressed.svg",
  44223. extra: 1373/1277,
  44224. bottom: 75/1448
  44225. }
  44226. },
  44227. paw: {
  44228. height: math.unit(1.44, "feet"),
  44229. name: "Paw",
  44230. image: {
  44231. source: "./media/characters/phillip/paw.svg"
  44232. }
  44233. },
  44234. },
  44235. [
  44236. {
  44237. name: "Normal",
  44238. height: math.unit(6, "feet"),
  44239. default: true
  44240. },
  44241. ]
  44242. ))
  44243. characterMakers.push(() => makeCharacter(
  44244. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44245. {
  44246. side: {
  44247. height: math.unit(42, "feet"),
  44248. name: "Side",
  44249. image: {
  44250. source: "./media/characters/uvula/side.svg",
  44251. extra: 683/586,
  44252. bottom: 60/743
  44253. }
  44254. },
  44255. front: {
  44256. height: math.unit(42, "feet"),
  44257. name: "Front",
  44258. image: {
  44259. source: "./media/characters/uvula/front.svg",
  44260. extra: 705/613,
  44261. bottom: 54/759
  44262. }
  44263. },
  44264. maw: {
  44265. height: math.unit(23.5, "feet"),
  44266. name: "Maw",
  44267. image: {
  44268. source: "./media/characters/uvula/maw.svg"
  44269. }
  44270. },
  44271. },
  44272. [
  44273. {
  44274. name: "Original Size",
  44275. height: math.unit(14, "inches")
  44276. },
  44277. {
  44278. name: "Human Size",
  44279. height: math.unit(6, "feet")
  44280. },
  44281. {
  44282. name: "Big",
  44283. height: math.unit(42, "feet"),
  44284. default: true
  44285. },
  44286. {
  44287. name: "Bigger",
  44288. height: math.unit(100, "feet")
  44289. },
  44290. ]
  44291. ))
  44292. characterMakers.push(() => makeCharacter(
  44293. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44294. {
  44295. front: {
  44296. height: math.unit(5 + 11/12, "feet"),
  44297. name: "Front",
  44298. image: {
  44299. source: "./media/characters/lannah/front.svg",
  44300. extra: 1208/1113,
  44301. bottom: 97/1305
  44302. }
  44303. },
  44304. },
  44305. [
  44306. {
  44307. name: "Normal",
  44308. height: math.unit(5 + 11/12, "feet"),
  44309. default: true
  44310. },
  44311. ]
  44312. ))
  44313. characterMakers.push(() => makeCharacter(
  44314. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44315. {
  44316. front: {
  44317. height: math.unit(6 + 3/12, "feet"),
  44318. weight: math.unit(3.5, "tons"),
  44319. name: "Front",
  44320. image: {
  44321. source: "./media/characters/emberflame/front.svg",
  44322. extra: 1198/672,
  44323. bottom: 82/1280
  44324. }
  44325. },
  44326. side: {
  44327. height: math.unit(6 + 3/12, "feet"),
  44328. weight: math.unit(3.5, "tons"),
  44329. name: "Side",
  44330. image: {
  44331. source: "./media/characters/emberflame/side.svg",
  44332. extra: 938/527,
  44333. bottom: 56/994
  44334. }
  44335. },
  44336. },
  44337. [
  44338. {
  44339. name: "Normal",
  44340. height: math.unit(6 + 3/12, "feet"),
  44341. default: true
  44342. },
  44343. ]
  44344. ))
  44345. characterMakers.push(() => makeCharacter(
  44346. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44347. {
  44348. side: {
  44349. height: math.unit(17.5, "feet"),
  44350. weight: math.unit(35, "tons"),
  44351. name: "Side",
  44352. image: {
  44353. source: "./media/characters/sophie-ambrose/side.svg",
  44354. extra: 1573/1242,
  44355. bottom: 71/1644
  44356. }
  44357. },
  44358. maw: {
  44359. height: math.unit(7.4, "feet"),
  44360. name: "Maw",
  44361. image: {
  44362. source: "./media/characters/sophie-ambrose/maw.svg"
  44363. }
  44364. },
  44365. },
  44366. [
  44367. {
  44368. name: "Normal",
  44369. height: math.unit(17.5, "feet"),
  44370. default: true
  44371. },
  44372. ]
  44373. ))
  44374. characterMakers.push(() => makeCharacter(
  44375. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44376. {
  44377. front: {
  44378. height: math.unit(280, "feet"),
  44379. weight: math.unit(550, "tons"),
  44380. name: "Front",
  44381. image: {
  44382. source: "./media/characters/king-mugi/front.svg",
  44383. extra: 1102/947,
  44384. bottom: 104/1206
  44385. }
  44386. },
  44387. },
  44388. [
  44389. {
  44390. name: "King Mugi",
  44391. height: math.unit(280, "feet"),
  44392. default: true
  44393. },
  44394. ]
  44395. ))
  44396. characterMakers.push(() => makeCharacter(
  44397. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44398. {
  44399. front: {
  44400. height: math.unit(64, "meters"),
  44401. name: "Front",
  44402. image: {
  44403. source: "./media/characters/nova-fox/front.svg",
  44404. extra: 1310/1246,
  44405. bottom: 65/1375
  44406. }
  44407. },
  44408. },
  44409. [
  44410. {
  44411. name: "Macro",
  44412. height: math.unit(64, "meters"),
  44413. default: true
  44414. },
  44415. ]
  44416. ))
  44417. characterMakers.push(() => makeCharacter(
  44418. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44419. {
  44420. front: {
  44421. height: math.unit(6 + 3/12, "feet"),
  44422. weight: math.unit(170, "lb"),
  44423. name: "Front",
  44424. image: {
  44425. source: "./media/characters/sam-bat/front.svg",
  44426. extra: 1601/1411,
  44427. bottom: 125/1726
  44428. }
  44429. },
  44430. back: {
  44431. height: math.unit(6 + 3/12, "feet"),
  44432. weight: math.unit(170, "lb"),
  44433. name: "Back",
  44434. image: {
  44435. source: "./media/characters/sam-bat/back.svg",
  44436. extra: 1577/1405,
  44437. bottom: 58/1635
  44438. }
  44439. },
  44440. },
  44441. [
  44442. {
  44443. name: "Normal",
  44444. height: math.unit(6 + 3/12, "feet"),
  44445. default: true
  44446. },
  44447. ]
  44448. ))
  44449. characterMakers.push(() => makeCharacter(
  44450. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44451. {
  44452. front: {
  44453. height: math.unit(59, "feet"),
  44454. weight: math.unit(40000, "lb"),
  44455. name: "Front",
  44456. image: {
  44457. source: "./media/characters/inari/front.svg",
  44458. extra: 1884/1350,
  44459. bottom: 95/1979
  44460. }
  44461. },
  44462. },
  44463. [
  44464. {
  44465. name: "Gigantamax",
  44466. height: math.unit(59, "feet"),
  44467. default: true
  44468. },
  44469. ]
  44470. ))
  44471. characterMakers.push(() => makeCharacter(
  44472. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44473. {
  44474. front: {
  44475. height: math.unit(5 + 8/12, "feet"),
  44476. name: "Front",
  44477. image: {
  44478. source: "./media/characters/elizabeth/front.svg",
  44479. extra: 1395/1298,
  44480. bottom: 54/1449
  44481. }
  44482. },
  44483. mouth: {
  44484. height: math.unit(1.97, "feet"),
  44485. name: "Mouth",
  44486. image: {
  44487. source: "./media/characters/elizabeth/mouth.svg"
  44488. }
  44489. },
  44490. foot: {
  44491. height: math.unit(1.17, "feet"),
  44492. name: "Foot",
  44493. image: {
  44494. source: "./media/characters/elizabeth/foot.svg"
  44495. }
  44496. },
  44497. },
  44498. [
  44499. {
  44500. name: "Normal",
  44501. height: math.unit(5 + 8/12, "feet"),
  44502. default: true
  44503. },
  44504. {
  44505. name: "Minimacro",
  44506. height: math.unit(18, "feet")
  44507. },
  44508. {
  44509. name: "Macro",
  44510. height: math.unit(180, "feet")
  44511. },
  44512. ]
  44513. ))
  44514. characterMakers.push(() => makeCharacter(
  44515. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44516. {
  44517. front: {
  44518. height: math.unit(5 + 2/12, "feet"),
  44519. name: "Front",
  44520. image: {
  44521. source: "./media/characters/october-gossamer/front.svg",
  44522. extra: 505/454,
  44523. bottom: 7/512
  44524. }
  44525. },
  44526. back: {
  44527. height: math.unit(5 + 2/12, "feet"),
  44528. name: "Back",
  44529. image: {
  44530. source: "./media/characters/october-gossamer/back.svg",
  44531. extra: 501/454,
  44532. bottom: 11/512
  44533. }
  44534. },
  44535. },
  44536. [
  44537. {
  44538. name: "Normal",
  44539. height: math.unit(5 + 2/12, "feet"),
  44540. default: true
  44541. },
  44542. ]
  44543. ))
  44544. characterMakers.push(() => makeCharacter(
  44545. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44546. {
  44547. front: {
  44548. height: math.unit(5, "feet"),
  44549. name: "Front",
  44550. image: {
  44551. source: "./media/characters/epiglottis/front.svg",
  44552. extra: 923/849,
  44553. bottom: 17/940
  44554. }
  44555. },
  44556. },
  44557. [
  44558. {
  44559. name: "Original Size",
  44560. height: math.unit(10, "inches")
  44561. },
  44562. {
  44563. name: "Human Size",
  44564. height: math.unit(5, "feet"),
  44565. default: true
  44566. },
  44567. {
  44568. name: "Big",
  44569. height: math.unit(25, "feet")
  44570. },
  44571. {
  44572. name: "Bigger",
  44573. height: math.unit(50, "feet")
  44574. },
  44575. {
  44576. name: "oh lawd",
  44577. height: math.unit(75, "feet")
  44578. },
  44579. ]
  44580. ))
  44581. characterMakers.push(() => makeCharacter(
  44582. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44583. {
  44584. front: {
  44585. height: math.unit(2 + 4/12, "feet"),
  44586. weight: math.unit(60, "lb"),
  44587. name: "Front",
  44588. image: {
  44589. source: "./media/characters/lerm/front.svg",
  44590. extra: 796/790,
  44591. bottom: 79/875
  44592. }
  44593. },
  44594. },
  44595. [
  44596. {
  44597. name: "Normal",
  44598. height: math.unit(2 + 4/12, "feet"),
  44599. default: true
  44600. },
  44601. ]
  44602. ))
  44603. characterMakers.push(() => makeCharacter(
  44604. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44605. {
  44606. front: {
  44607. height: math.unit(5.5, "feet"),
  44608. weight: math.unit(130, "lb"),
  44609. name: "Front",
  44610. image: {
  44611. source: "./media/characters/xena-nebadon/front.svg",
  44612. extra: 1828/1730,
  44613. bottom: 79/1907
  44614. }
  44615. },
  44616. },
  44617. [
  44618. {
  44619. name: "Tiny Puppy",
  44620. height: math.unit(3, "inches")
  44621. },
  44622. {
  44623. name: "Normal",
  44624. height: math.unit(5.5, "feet"),
  44625. default: true
  44626. },
  44627. {
  44628. name: "Lotta Lady",
  44629. height: math.unit(12, "feet")
  44630. },
  44631. {
  44632. name: "Pretty Big",
  44633. height: math.unit(100, "feet")
  44634. },
  44635. {
  44636. name: "Big",
  44637. height: math.unit(500, "feet")
  44638. },
  44639. {
  44640. name: "Skyscraper Toys",
  44641. height: math.unit(2500, "feet")
  44642. },
  44643. {
  44644. name: "Plane Catcher",
  44645. height: math.unit(8, "miles")
  44646. },
  44647. {
  44648. name: "Planet Toys",
  44649. height: math.unit(15, "earths")
  44650. },
  44651. {
  44652. name: "Stardust",
  44653. height: math.unit(0.25, "galaxies")
  44654. },
  44655. {
  44656. name: "Snacks",
  44657. height: math.unit(70, "universes")
  44658. },
  44659. ]
  44660. ))
  44661. characterMakers.push(() => makeCharacter(
  44662. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44663. {
  44664. front: {
  44665. height: math.unit(1.6, "meters"),
  44666. weight: math.unit(60, "kg"),
  44667. name: "Front",
  44668. image: {
  44669. source: "./media/characters/bounty/front.svg",
  44670. extra: 1426/1308,
  44671. bottom: 15/1441
  44672. }
  44673. },
  44674. back: {
  44675. height: math.unit(1.6, "meters"),
  44676. weight: math.unit(60, "kg"),
  44677. name: "Back",
  44678. image: {
  44679. source: "./media/characters/bounty/back.svg",
  44680. extra: 1417/1307,
  44681. bottom: 8/1425
  44682. }
  44683. },
  44684. },
  44685. [
  44686. {
  44687. name: "Normal",
  44688. height: math.unit(1.6, "meters"),
  44689. default: true
  44690. },
  44691. {
  44692. name: "Macro",
  44693. height: math.unit(300, "meters")
  44694. },
  44695. ]
  44696. ))
  44697. characterMakers.push(() => makeCharacter(
  44698. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44699. {
  44700. front: {
  44701. height: math.unit(2 + 8/12, "feet"),
  44702. weight: math.unit(15, "lb"),
  44703. name: "Front",
  44704. image: {
  44705. source: "./media/characters/mochi/front.svg",
  44706. extra: 1022/852,
  44707. bottom: 435/1457
  44708. }
  44709. },
  44710. back: {
  44711. height: math.unit(2 + 8/12, "feet"),
  44712. weight: math.unit(15, "lb"),
  44713. name: "Back",
  44714. image: {
  44715. source: "./media/characters/mochi/back.svg",
  44716. extra: 1335/1119,
  44717. bottom: 39/1374
  44718. }
  44719. },
  44720. bird: {
  44721. height: math.unit(2 + 8/12, "feet"),
  44722. weight: math.unit(15, "lb"),
  44723. name: "Bird",
  44724. image: {
  44725. source: "./media/characters/mochi/bird.svg",
  44726. extra: 1251/1113,
  44727. bottom: 178/1429
  44728. }
  44729. },
  44730. kaiju: {
  44731. height: math.unit(154, "feet"),
  44732. weight: math.unit(1e7, "lb"),
  44733. name: "Kaiju",
  44734. image: {
  44735. source: "./media/characters/mochi/kaiju.svg",
  44736. extra: 460/324,
  44737. bottom: 40/500
  44738. }
  44739. },
  44740. head: {
  44741. height: math.unit(1.21, "feet"),
  44742. name: "Head",
  44743. image: {
  44744. source: "./media/characters/mochi/head.svg"
  44745. }
  44746. },
  44747. alternateTail: {
  44748. height: math.unit(2 + 8/12, "feet"),
  44749. weight: math.unit(45, "lb"),
  44750. name: "Alternate Tail",
  44751. image: {
  44752. source: "./media/characters/mochi/alternate-tail.svg",
  44753. extra: 139/76,
  44754. bottom: 45/184
  44755. }
  44756. },
  44757. },
  44758. [
  44759. {
  44760. name: "Micro",
  44761. height: math.unit(2, "inches")
  44762. },
  44763. {
  44764. name: "Normal",
  44765. height: math.unit(2 + 8/12, "feet"),
  44766. default: true
  44767. },
  44768. {
  44769. name: "Macro",
  44770. height: math.unit(106, "feet")
  44771. },
  44772. ]
  44773. ))
  44774. characterMakers.push(() => makeCharacter(
  44775. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44776. {
  44777. front: {
  44778. height: math.unit(5.67, "feet"),
  44779. weight: math.unit(135, "lb"),
  44780. name: "Front",
  44781. image: {
  44782. source: "./media/characters/sarel/front.svg",
  44783. extra: 865/788,
  44784. bottom: 97/962
  44785. }
  44786. },
  44787. back: {
  44788. height: math.unit(5.67, "feet"),
  44789. weight: math.unit(135, "lb"),
  44790. name: "Back",
  44791. image: {
  44792. source: "./media/characters/sarel/back.svg",
  44793. extra: 857/777,
  44794. bottom: 32/889
  44795. }
  44796. },
  44797. chozoan: {
  44798. height: math.unit(5.67, "feet"),
  44799. weight: math.unit(135, "lb"),
  44800. name: "Chozoan",
  44801. image: {
  44802. source: "./media/characters/sarel/chozoan.svg",
  44803. extra: 865/788,
  44804. bottom: 97/962
  44805. }
  44806. },
  44807. current: {
  44808. height: math.unit(5.67, "feet"),
  44809. weight: math.unit(135, "lb"),
  44810. name: "Current",
  44811. image: {
  44812. source: "./media/characters/sarel/current.svg",
  44813. extra: 865/788,
  44814. bottom: 97/962
  44815. }
  44816. },
  44817. head: {
  44818. height: math.unit(1.77, "feet"),
  44819. name: "Head",
  44820. image: {
  44821. source: "./media/characters/sarel/head.svg"
  44822. }
  44823. },
  44824. claws: {
  44825. height: math.unit(1.8, "feet"),
  44826. name: "Claws",
  44827. image: {
  44828. source: "./media/characters/sarel/claws.svg"
  44829. }
  44830. },
  44831. clawsAlt: {
  44832. height: math.unit(1.8, "feet"),
  44833. name: "Claws-alt",
  44834. image: {
  44835. source: "./media/characters/sarel/claws-alt.svg"
  44836. }
  44837. },
  44838. },
  44839. [
  44840. {
  44841. name: "Normal",
  44842. height: math.unit(5.67, "feet"),
  44843. default: true
  44844. },
  44845. ]
  44846. ))
  44847. characterMakers.push(() => makeCharacter(
  44848. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44849. {
  44850. front: {
  44851. height: math.unit(5500, "feet"),
  44852. name: "Front",
  44853. image: {
  44854. source: "./media/characters/alyonia/front.svg",
  44855. extra: 1200/1135,
  44856. bottom: 29/1229
  44857. }
  44858. },
  44859. back: {
  44860. height: math.unit(5500, "feet"),
  44861. name: "Back",
  44862. image: {
  44863. source: "./media/characters/alyonia/back.svg",
  44864. extra: 1205/1138,
  44865. bottom: 10/1215
  44866. }
  44867. },
  44868. },
  44869. [
  44870. {
  44871. name: "Small",
  44872. height: math.unit(10, "feet")
  44873. },
  44874. {
  44875. name: "Macro",
  44876. height: math.unit(500, "feet")
  44877. },
  44878. {
  44879. name: "Mega Macro",
  44880. height: math.unit(5500, "feet"),
  44881. default: true
  44882. },
  44883. {
  44884. name: "Mega Macro+",
  44885. height: math.unit(500000, "feet")
  44886. },
  44887. {
  44888. name: "Giga Macro",
  44889. height: math.unit(3000, "miles")
  44890. },
  44891. {
  44892. name: "Tera Macro",
  44893. height: math.unit(2.8e6, "miles")
  44894. },
  44895. {
  44896. name: "Galactic",
  44897. height: math.unit(120000, "lightyears")
  44898. },
  44899. ]
  44900. ))
  44901. characterMakers.push(() => makeCharacter(
  44902. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44903. {
  44904. werewolf: {
  44905. height: math.unit(8, "feet"),
  44906. weight: math.unit(425, "lb"),
  44907. name: "Werewolf",
  44908. image: {
  44909. source: "./media/characters/autumn/werewolf.svg",
  44910. extra: 2154/2031,
  44911. bottom: 160/2314
  44912. }
  44913. },
  44914. human: {
  44915. height: math.unit(5 + 8/12, "feet"),
  44916. weight: math.unit(150, "lb"),
  44917. name: "Human",
  44918. image: {
  44919. source: "./media/characters/autumn/human.svg",
  44920. extra: 1200/1149,
  44921. bottom: 30/1230
  44922. }
  44923. },
  44924. },
  44925. [
  44926. {
  44927. name: "Normal",
  44928. height: math.unit(8, "feet"),
  44929. default: true
  44930. },
  44931. ]
  44932. ))
  44933. characterMakers.push(() => makeCharacter(
  44934. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44935. {
  44936. front: {
  44937. height: math.unit(8 + 5/12, "feet"),
  44938. weight: math.unit(825, "lb"),
  44939. name: "Front",
  44940. image: {
  44941. source: "./media/characters/cobalt-charizard/front.svg",
  44942. extra: 1268/1155,
  44943. bottom: 122/1390
  44944. }
  44945. },
  44946. side: {
  44947. height: math.unit(8 + 5/12, "feet"),
  44948. weight: math.unit(825, "lb"),
  44949. name: "Side",
  44950. image: {
  44951. source: "./media/characters/cobalt-charizard/side.svg",
  44952. extra: 1348/1257,
  44953. bottom: 58/1406
  44954. }
  44955. },
  44956. gMax: {
  44957. height: math.unit(134 + 11/12, "feet"),
  44958. name: "G-Max",
  44959. image: {
  44960. source: "./media/characters/cobalt-charizard/g-max.svg",
  44961. extra: 1835/1541,
  44962. bottom: 151/1986
  44963. }
  44964. },
  44965. },
  44966. [
  44967. {
  44968. name: "Normal",
  44969. height: math.unit(8 + 5/12, "feet"),
  44970. default: true
  44971. },
  44972. ]
  44973. ))
  44974. characterMakers.push(() => makeCharacter(
  44975. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44976. {
  44977. front: {
  44978. height: math.unit(6 + 3/12, "feet"),
  44979. weight: math.unit(210, "lb"),
  44980. name: "Front",
  44981. image: {
  44982. source: "./media/characters/stella/front.svg",
  44983. extra: 3549/3335,
  44984. bottom: 51/3600
  44985. }
  44986. },
  44987. },
  44988. [
  44989. {
  44990. name: "Normal",
  44991. height: math.unit(6 + 3/12, "feet"),
  44992. default: true
  44993. },
  44994. ]
  44995. ))
  44996. characterMakers.push(() => makeCharacter(
  44997. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44998. {
  44999. front: {
  45000. height: math.unit(5, "feet"),
  45001. weight: math.unit(90, "lb"),
  45002. name: "Front",
  45003. image: {
  45004. source: "./media/characters/riley-bishop/front.svg",
  45005. extra: 1450/1428,
  45006. bottom: 152/1602
  45007. }
  45008. },
  45009. },
  45010. [
  45011. {
  45012. name: "Normal",
  45013. height: math.unit(5, "feet"),
  45014. default: true
  45015. },
  45016. ]
  45017. ))
  45018. characterMakers.push(() => makeCharacter(
  45019. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45020. {
  45021. side: {
  45022. height: math.unit(8 + 2/12, "feet"),
  45023. weight: math.unit(500, "kg"),
  45024. name: "Side",
  45025. image: {
  45026. source: "./media/characters/theo-arcanine/side.svg",
  45027. extra: 1342/1074,
  45028. bottom: 111/1453
  45029. }
  45030. },
  45031. },
  45032. [
  45033. {
  45034. name: "Normal",
  45035. height: math.unit(8 + 2/12, "feet"),
  45036. default: true
  45037. },
  45038. ]
  45039. ))
  45040. characterMakers.push(() => makeCharacter(
  45041. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45042. {
  45043. front: {
  45044. height: math.unit(4, "feet"),
  45045. name: "Front",
  45046. image: {
  45047. source: "./media/characters/kali/front.svg",
  45048. extra: 1921/1357,
  45049. bottom: 70/1991
  45050. }
  45051. },
  45052. },
  45053. [
  45054. {
  45055. name: "Normal",
  45056. height: math.unit(4, "feet"),
  45057. default: true
  45058. },
  45059. {
  45060. name: "Macro",
  45061. height: math.unit(32, "meters")
  45062. },
  45063. {
  45064. name: "Macro+",
  45065. height: math.unit(150, "meters")
  45066. },
  45067. {
  45068. name: "Megamacro",
  45069. height: math.unit(7500, "meters")
  45070. },
  45071. {
  45072. name: "Megamacro+",
  45073. height: math.unit(80, "kilometers")
  45074. },
  45075. ]
  45076. ))
  45077. characterMakers.push(() => makeCharacter(
  45078. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45079. {
  45080. side: {
  45081. height: math.unit(5 + 11/12, "feet"),
  45082. weight: math.unit(236, "lb"),
  45083. name: "Side",
  45084. image: {
  45085. source: "./media/characters/gapp/side.svg",
  45086. extra: 775/340,
  45087. bottom: 58/833
  45088. }
  45089. },
  45090. mouth: {
  45091. height: math.unit(2.98, "feet"),
  45092. name: "Mouth",
  45093. image: {
  45094. source: "./media/characters/gapp/mouth.svg"
  45095. }
  45096. },
  45097. },
  45098. [
  45099. {
  45100. name: "Normal",
  45101. height: math.unit(5 + 1/12, "feet"),
  45102. default: true
  45103. },
  45104. ]
  45105. ))
  45106. characterMakers.push(() => makeCharacter(
  45107. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45108. {
  45109. front: {
  45110. height: math.unit(6, "feet"),
  45111. name: "Front",
  45112. image: {
  45113. source: "./media/characters/persephone/front.svg",
  45114. extra: 1895/1717,
  45115. bottom: 96/1991
  45116. }
  45117. },
  45118. back: {
  45119. height: math.unit(6, "feet"),
  45120. name: "Back",
  45121. image: {
  45122. source: "./media/characters/persephone/back.svg",
  45123. extra: 1868/1679,
  45124. bottom: 26/1894
  45125. }
  45126. },
  45127. casual: {
  45128. height: math.unit(6, "feet"),
  45129. name: "Casual",
  45130. image: {
  45131. source: "./media/characters/persephone/casual.svg",
  45132. extra: 1713/1541,
  45133. bottom: 76/1789
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Human Size",
  45140. height: math.unit(6, "feet")
  45141. },
  45142. {
  45143. name: "Big Steppy",
  45144. height: math.unit(600, "meters"),
  45145. default: true
  45146. },
  45147. {
  45148. name: "Galaxy Brain",
  45149. height: math.unit(1, "zettameter")
  45150. },
  45151. ]
  45152. ))
  45153. characterMakers.push(() => makeCharacter(
  45154. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45155. {
  45156. front: {
  45157. height: math.unit(1.85, "meters"),
  45158. name: "Front",
  45159. image: {
  45160. source: "./media/characters/riley-foxthing/front.svg",
  45161. extra: 1495/1354,
  45162. bottom: 122/1617
  45163. }
  45164. },
  45165. frontAlt: {
  45166. height: math.unit(1.85, "meters"),
  45167. name: "Front (Alt)",
  45168. image: {
  45169. source: "./media/characters/riley-foxthing/front-alt.svg",
  45170. extra: 1572/1389,
  45171. bottom: 116/1688
  45172. }
  45173. },
  45174. },
  45175. [
  45176. {
  45177. name: "Normal Sized",
  45178. height: math.unit(1.85, "meters"),
  45179. default: true
  45180. },
  45181. {
  45182. name: "Quite Sizable",
  45183. height: math.unit(5, "meters")
  45184. },
  45185. {
  45186. name: "Rather Large",
  45187. height: math.unit(20, "meters")
  45188. },
  45189. {
  45190. name: "Macro",
  45191. height: math.unit(450, "meters")
  45192. },
  45193. {
  45194. name: "Giga",
  45195. height: math.unit(5, "km")
  45196. },
  45197. ]
  45198. ))
  45199. characterMakers.push(() => makeCharacter(
  45200. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45201. {
  45202. front: {
  45203. height: math.unit(6, "feet"),
  45204. weight: math.unit(200, "lb"),
  45205. name: "Front",
  45206. image: {
  45207. source: "./media/characters/blizzard/front.svg",
  45208. extra: 1136/990,
  45209. bottom: 136/1272
  45210. }
  45211. },
  45212. back: {
  45213. height: math.unit(6, "feet"),
  45214. weight: math.unit(200, "lb"),
  45215. name: "Back",
  45216. image: {
  45217. source: "./media/characters/blizzard/back.svg",
  45218. extra: 1175/1034,
  45219. bottom: 97/1272
  45220. }
  45221. },
  45222. sitting: {
  45223. height: math.unit(3.725, "feet"),
  45224. weight: math.unit(200, "lb"),
  45225. name: "Sitting",
  45226. image: {
  45227. source: "./media/characters/blizzard/sitting.svg",
  45228. extra: 581/485,
  45229. bottom: 90/671
  45230. }
  45231. },
  45232. frontWizard: {
  45233. height: math.unit(7.9, "feet"),
  45234. weight: math.unit(200, "lb"),
  45235. name: "Front (Wizard)",
  45236. image: {
  45237. source: "./media/characters/blizzard/front-wizard.svg"
  45238. }
  45239. },
  45240. backWizard: {
  45241. height: math.unit(7.9, "feet"),
  45242. weight: math.unit(200, "lb"),
  45243. name: "Back (Wizard)",
  45244. image: {
  45245. source: "./media/characters/blizzard/back-wizard.svg"
  45246. }
  45247. },
  45248. frontNsfw: {
  45249. height: math.unit(6, "feet"),
  45250. weight: math.unit(200, "lb"),
  45251. name: "Front (NSFW)",
  45252. image: {
  45253. source: "./media/characters/blizzard/front-nsfw.svg",
  45254. extra: 1136/990,
  45255. bottom: 136/1272
  45256. }
  45257. },
  45258. backNsfw: {
  45259. height: math.unit(6, "feet"),
  45260. weight: math.unit(200, "lb"),
  45261. name: "Back (NSFW)",
  45262. image: {
  45263. source: "./media/characters/blizzard/back-nsfw.svg",
  45264. extra: 1175/1034,
  45265. bottom: 97/1272
  45266. }
  45267. },
  45268. sittingNsfw: {
  45269. height: math.unit(3.725, "feet"),
  45270. weight: math.unit(200, "lb"),
  45271. name: "Sitting (NSFW)",
  45272. image: {
  45273. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45274. extra: 581/485,
  45275. bottom: 90/671
  45276. }
  45277. },
  45278. wizardFrontNsfw: {
  45279. height: math.unit(7.9, "feet"),
  45280. weight: math.unit(200, "lb"),
  45281. name: "Wizard (Front, NSFW)",
  45282. image: {
  45283. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45284. }
  45285. },
  45286. },
  45287. [
  45288. {
  45289. name: "Normal",
  45290. height: math.unit(6, "feet"),
  45291. default: true
  45292. },
  45293. ]
  45294. ))
  45295. characterMakers.push(() => makeCharacter(
  45296. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45297. {
  45298. front: {
  45299. height: math.unit(5 + 2/12, "feet"),
  45300. name: "Front",
  45301. image: {
  45302. source: "./media/characters/lumi/front.svg",
  45303. extra: 1328/1268,
  45304. bottom: 103/1431
  45305. }
  45306. },
  45307. back: {
  45308. height: math.unit(5 + 2/12, "feet"),
  45309. name: "Back",
  45310. image: {
  45311. source: "./media/characters/lumi/back.svg",
  45312. extra: 1381/1327,
  45313. bottom: 43/1424
  45314. }
  45315. },
  45316. },
  45317. [
  45318. {
  45319. name: "Normal",
  45320. height: math.unit(5 + 2/12, "feet"),
  45321. default: true
  45322. },
  45323. ]
  45324. ))
  45325. characterMakers.push(() => makeCharacter(
  45326. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45327. {
  45328. front: {
  45329. height: math.unit(5 + 9/12, "feet"),
  45330. name: "Front",
  45331. image: {
  45332. source: "./media/characters/aliya-cotton/front.svg",
  45333. extra: 577/564,
  45334. bottom: 29/606
  45335. }
  45336. },
  45337. },
  45338. [
  45339. {
  45340. name: "Normal",
  45341. height: math.unit(5 + 9/12, "feet"),
  45342. default: true
  45343. },
  45344. ]
  45345. ))
  45346. characterMakers.push(() => makeCharacter(
  45347. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45348. {
  45349. front: {
  45350. height: math.unit(2.7, "meters"),
  45351. weight: math.unit(25000, "lb"),
  45352. name: "Front",
  45353. image: {
  45354. source: "./media/characters/noah-luxray/front.svg",
  45355. extra: 1644/825,
  45356. bottom: 339/1983
  45357. }
  45358. },
  45359. side: {
  45360. height: math.unit(2.97, "meters"),
  45361. weight: math.unit(25000, "lb"),
  45362. name: "Side",
  45363. image: {
  45364. source: "./media/characters/noah-luxray/side.svg",
  45365. extra: 1319/650,
  45366. bottom: 163/1482
  45367. }
  45368. },
  45369. dick: {
  45370. height: math.unit(7.4, "feet"),
  45371. weight: math.unit(2500, "lb"),
  45372. name: "Dick",
  45373. image: {
  45374. source: "./media/characters/noah-luxray/dick.svg"
  45375. }
  45376. },
  45377. dickAlt: {
  45378. height: math.unit(10.83, "feet"),
  45379. weight: math.unit(2500, "lb"),
  45380. name: "Dick-alt",
  45381. image: {
  45382. source: "./media/characters/noah-luxray/dick-alt.svg"
  45383. }
  45384. },
  45385. },
  45386. [
  45387. {
  45388. name: "BIG",
  45389. height: math.unit(2.7, "meters"),
  45390. default: true
  45391. },
  45392. ]
  45393. ))
  45394. characterMakers.push(() => makeCharacter(
  45395. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45396. {
  45397. standing: {
  45398. height: math.unit(183, "cm"),
  45399. weight: math.unit(68, "kg"),
  45400. name: "Standing",
  45401. image: {
  45402. source: "./media/characters/arion/standing.svg",
  45403. extra: 1869/1807,
  45404. bottom: 93/1962
  45405. }
  45406. },
  45407. reclining: {
  45408. height: math.unit(70.5, "cm"),
  45409. weight: math.unit(68, "lb"),
  45410. name: "Reclining",
  45411. image: {
  45412. source: "./media/characters/arion/reclining.svg",
  45413. extra: 937/870,
  45414. bottom: 63/1000
  45415. }
  45416. },
  45417. },
  45418. [
  45419. {
  45420. name: "Colossus Size, Low",
  45421. height: math.unit(33, "meters"),
  45422. default: true
  45423. },
  45424. {
  45425. name: "Colossus Size, Mid",
  45426. height: math.unit(52, "meters")
  45427. },
  45428. {
  45429. name: "Colossus Size, High",
  45430. height: math.unit(60, "meters")
  45431. },
  45432. {
  45433. name: "Titan Size, Low",
  45434. height: math.unit(91, "meters"),
  45435. },
  45436. {
  45437. name: "Titan Size, Mid",
  45438. height: math.unit(122, "meters")
  45439. },
  45440. {
  45441. name: "Titan Size, High",
  45442. height: math.unit(162, "meters")
  45443. },
  45444. ]
  45445. ))
  45446. characterMakers.push(() => makeCharacter(
  45447. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45448. {
  45449. front: {
  45450. height: math.unit(53, "meters"),
  45451. name: "Front",
  45452. image: {
  45453. source: "./media/characters/stellar-marbey/front.svg",
  45454. extra: 1913/1805,
  45455. bottom: 92/2005
  45456. }
  45457. },
  45458. back: {
  45459. height: math.unit(53, "meters"),
  45460. name: "Back",
  45461. image: {
  45462. source: "./media/characters/stellar-marbey/back.svg",
  45463. extra: 1960/1851,
  45464. bottom: 28/1988
  45465. }
  45466. },
  45467. mouth: {
  45468. height: math.unit(3.5, "meters"),
  45469. name: "Mouth",
  45470. image: {
  45471. source: "./media/characters/stellar-marbey/mouth.svg"
  45472. }
  45473. },
  45474. },
  45475. [
  45476. {
  45477. name: "Macro",
  45478. height: math.unit(53, "meters"),
  45479. default: true
  45480. },
  45481. ]
  45482. ))
  45483. characterMakers.push(() => makeCharacter(
  45484. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45485. {
  45486. front: {
  45487. height: math.unit(8 + 1/12, "feet"),
  45488. weight: math.unit(233, "lb"),
  45489. name: "Front",
  45490. image: {
  45491. source: "./media/characters/matsu/front.svg",
  45492. extra: 832/772,
  45493. bottom: 40/872
  45494. }
  45495. },
  45496. back: {
  45497. height: math.unit(8 + 1/12, "feet"),
  45498. weight: math.unit(233, "lb"),
  45499. name: "Back",
  45500. image: {
  45501. source: "./media/characters/matsu/back.svg",
  45502. extra: 839/780,
  45503. bottom: 47/886
  45504. }
  45505. },
  45506. },
  45507. [
  45508. {
  45509. name: "Normal",
  45510. height: math.unit(8 + 1/12, "feet"),
  45511. default: true
  45512. },
  45513. ]
  45514. ))
  45515. characterMakers.push(() => makeCharacter(
  45516. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45517. {
  45518. front: {
  45519. height: math.unit(4, "feet"),
  45520. weight: math.unit(148, "lb"),
  45521. name: "Front",
  45522. image: {
  45523. source: "./media/characters/thiz/front.svg",
  45524. extra: 1913/1748,
  45525. bottom: 62/1975
  45526. }
  45527. },
  45528. },
  45529. [
  45530. {
  45531. name: "Normal",
  45532. height: math.unit(4, "feet"),
  45533. default: true
  45534. },
  45535. ]
  45536. ))
  45537. characterMakers.push(() => makeCharacter(
  45538. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45539. {
  45540. front: {
  45541. height: math.unit(7 + 6/12, "feet"),
  45542. weight: math.unit(267, "lb"),
  45543. name: "Front",
  45544. image: {
  45545. source: "./media/characters/marcel/front.svg",
  45546. extra: 1221/1096,
  45547. bottom: 76/1297
  45548. }
  45549. },
  45550. },
  45551. [
  45552. {
  45553. name: "Normal",
  45554. height: math.unit(7 + 6/12, "feet"),
  45555. default: true
  45556. },
  45557. ]
  45558. ))
  45559. characterMakers.push(() => makeCharacter(
  45560. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45561. {
  45562. side: {
  45563. height: math.unit(42, "meters"),
  45564. name: "Side",
  45565. image: {
  45566. source: "./media/characters/flake/side.svg",
  45567. extra: 1525/1306,
  45568. bottom: 209/1734
  45569. }
  45570. },
  45571. },
  45572. [
  45573. {
  45574. name: "Normal",
  45575. height: math.unit(42, "meters"),
  45576. default: true
  45577. },
  45578. ]
  45579. ))
  45580. characterMakers.push(() => makeCharacter(
  45581. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45582. {
  45583. dressed: {
  45584. height: math.unit(6 + 4/12, "feet"),
  45585. weight: math.unit(520, "lb"),
  45586. name: "Dressed",
  45587. image: {
  45588. source: "./media/characters/someonne/dressed.svg",
  45589. extra: 1020/1010,
  45590. bottom: 178/1198
  45591. }
  45592. },
  45593. undressed: {
  45594. height: math.unit(6 + 4/12, "feet"),
  45595. weight: math.unit(520, "lb"),
  45596. name: "Undressed",
  45597. image: {
  45598. source: "./media/characters/someonne/undressed.svg",
  45599. extra: 1019/1014,
  45600. bottom: 169/1188
  45601. }
  45602. },
  45603. },
  45604. [
  45605. {
  45606. name: "Normal",
  45607. height: math.unit(6 + 4/12, "feet"),
  45608. default: true
  45609. },
  45610. ]
  45611. ))
  45612. characterMakers.push(() => makeCharacter(
  45613. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45614. {
  45615. front: {
  45616. height: math.unit(3, "feet"),
  45617. weight: math.unit(30, "lb"),
  45618. name: "Front",
  45619. image: {
  45620. source: "./media/characters/till/front.svg",
  45621. extra: 892/823,
  45622. bottom: 55/947
  45623. }
  45624. },
  45625. },
  45626. [
  45627. {
  45628. name: "Normal",
  45629. height: math.unit(3, "feet"),
  45630. default: true
  45631. },
  45632. ]
  45633. ))
  45634. characterMakers.push(() => makeCharacter(
  45635. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45636. {
  45637. front: {
  45638. height: math.unit(9 + 8/12, "feet"),
  45639. weight: math.unit(800, "lb"),
  45640. name: "Front",
  45641. image: {
  45642. source: "./media/characters/sydney-heki/front.svg",
  45643. extra: 1360/1300,
  45644. bottom: 22/1382
  45645. }
  45646. },
  45647. back: {
  45648. height: math.unit(9 + 8/12, "feet"),
  45649. weight: math.unit(800, "lb"),
  45650. name: "Back",
  45651. image: {
  45652. source: "./media/characters/sydney-heki/back.svg",
  45653. extra: 1356/1293,
  45654. bottom: 12/1368
  45655. }
  45656. },
  45657. frontDressed: {
  45658. height: math.unit(9 + 8/12, "feet"),
  45659. weight: math.unit(800, "lb"),
  45660. name: "Front-dressed",
  45661. image: {
  45662. source: "./media/characters/sydney-heki/front-dressed.svg",
  45663. extra: 1360/1300,
  45664. bottom: 22/1382
  45665. }
  45666. },
  45667. },
  45668. [
  45669. {
  45670. name: "Normal",
  45671. height: math.unit(9 + 8/12, "feet"),
  45672. default: true
  45673. },
  45674. {
  45675. name: "Macro",
  45676. height: math.unit(500, "feet")
  45677. },
  45678. {
  45679. name: "Megamacro",
  45680. height: math.unit(3.6, "miles")
  45681. },
  45682. ]
  45683. ))
  45684. characterMakers.push(() => makeCharacter(
  45685. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45686. {
  45687. front: {
  45688. height: math.unit(200, "cm"),
  45689. weight: math.unit(250, "lb"),
  45690. name: "Front",
  45691. image: {
  45692. source: "./media/characters/fowler-karlsson/front.svg",
  45693. extra: 897/845,
  45694. bottom: 123/1020
  45695. }
  45696. },
  45697. back: {
  45698. height: math.unit(200, "cm"),
  45699. weight: math.unit(250, "lb"),
  45700. name: "Back",
  45701. image: {
  45702. source: "./media/characters/fowler-karlsson/back.svg",
  45703. extra: 999/944,
  45704. bottom: 26/1025
  45705. }
  45706. },
  45707. dick: {
  45708. height: math.unit(1.92, "feet"),
  45709. weight: math.unit(150, "lb"),
  45710. name: "Dick",
  45711. image: {
  45712. source: "./media/characters/fowler-karlsson/dick.svg"
  45713. }
  45714. },
  45715. },
  45716. [
  45717. {
  45718. name: "Normal",
  45719. height: math.unit(200, "cm"),
  45720. default: true
  45721. },
  45722. {
  45723. name: "Smaller Macro",
  45724. height: math.unit(90, "m")
  45725. },
  45726. {
  45727. name: "Macro",
  45728. height: math.unit(150, "m")
  45729. },
  45730. {
  45731. name: "Bigger Macro",
  45732. height: math.unit(300, "m")
  45733. },
  45734. ]
  45735. ))
  45736. characterMakers.push(() => makeCharacter(
  45737. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45738. {
  45739. side: {
  45740. height: math.unit(8 + 2/12, "feet"),
  45741. weight: math.unit(1, "tonne"),
  45742. name: "Side",
  45743. image: {
  45744. source: "./media/characters/rylide/side.svg",
  45745. extra: 1318/1034,
  45746. bottom: 106/1424
  45747. }
  45748. },
  45749. sitting: {
  45750. height: math.unit(303, "cm"),
  45751. weight: math.unit(1, "tonne"),
  45752. name: "Sitting",
  45753. image: {
  45754. source: "./media/characters/rylide/sitting.svg",
  45755. extra: 1303/1103,
  45756. bottom: 36/1339
  45757. }
  45758. },
  45759. },
  45760. [
  45761. {
  45762. name: "Normal",
  45763. height: math.unit(8 + 2/12, "feet"),
  45764. default: true
  45765. },
  45766. ]
  45767. ))
  45768. characterMakers.push(() => makeCharacter(
  45769. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45770. {
  45771. front: {
  45772. height: math.unit(5 + 10/12, "feet"),
  45773. weight: math.unit(160, "lb"),
  45774. name: "Front",
  45775. image: {
  45776. source: "./media/characters/pudask/front.svg",
  45777. extra: 1616/1590,
  45778. bottom: 161/1777
  45779. }
  45780. },
  45781. },
  45782. [
  45783. {
  45784. name: "Ferret Height",
  45785. height: math.unit(2 + 5/12, "feet")
  45786. },
  45787. {
  45788. name: "Canon Height",
  45789. height: math.unit(5 + 10/12, "feet"),
  45790. default: true
  45791. },
  45792. ]
  45793. ))
  45794. characterMakers.push(() => makeCharacter(
  45795. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45796. {
  45797. front: {
  45798. height: math.unit(3 + 6/12, "feet"),
  45799. weight: math.unit(60, "lb"),
  45800. name: "Front",
  45801. image: {
  45802. source: "./media/characters/ramita/front.svg",
  45803. extra: 1402/1232,
  45804. bottom: 62/1464
  45805. }
  45806. },
  45807. dressed: {
  45808. height: math.unit(3 + 6/12, "feet"),
  45809. weight: math.unit(60, "lb"),
  45810. name: "Dressed",
  45811. image: {
  45812. source: "./media/characters/ramita/dressed.svg",
  45813. extra: 1534/1249,
  45814. bottom: 50/1584
  45815. }
  45816. },
  45817. },
  45818. [
  45819. {
  45820. name: "Normal",
  45821. height: math.unit(3 + 6/12, "feet"),
  45822. default: true
  45823. },
  45824. ]
  45825. ))
  45826. characterMakers.push(() => makeCharacter(
  45827. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45828. {
  45829. front: {
  45830. height: math.unit(8, "feet"),
  45831. name: "Front",
  45832. image: {
  45833. source: "./media/characters/ark/front.svg",
  45834. extra: 772/693,
  45835. bottom: 45/817
  45836. }
  45837. },
  45838. },
  45839. [
  45840. {
  45841. name: "Normal",
  45842. height: math.unit(8, "feet"),
  45843. default: true
  45844. },
  45845. ]
  45846. ))
  45847. characterMakers.push(() => makeCharacter(
  45848. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45849. {
  45850. front: {
  45851. height: math.unit(6, "feet"),
  45852. weight: math.unit(250, "lb"),
  45853. volume: math.unit(5/8, "gallons"),
  45854. name: "Front",
  45855. image: {
  45856. source: "./media/characters/ludwig-horn/front.svg",
  45857. extra: 1782/1635,
  45858. bottom: 96/1878
  45859. }
  45860. },
  45861. back: {
  45862. height: math.unit(6, "feet"),
  45863. weight: math.unit(250, "lb"),
  45864. volume: math.unit(5/8, "gallons"),
  45865. name: "Back",
  45866. image: {
  45867. source: "./media/characters/ludwig-horn/back.svg",
  45868. extra: 1874/1729,
  45869. bottom: 27/1901
  45870. }
  45871. },
  45872. dick: {
  45873. height: math.unit(1.05, "feet"),
  45874. weight: math.unit(15, "lb"),
  45875. volume: math.unit(5/8, "gallons"),
  45876. name: "Dick",
  45877. image: {
  45878. source: "./media/characters/ludwig-horn/dick.svg"
  45879. }
  45880. },
  45881. },
  45882. [
  45883. {
  45884. name: "Small",
  45885. height: math.unit(6, "feet")
  45886. },
  45887. {
  45888. name: "Typical",
  45889. height: math.unit(12, "feet"),
  45890. default: true
  45891. },
  45892. {
  45893. name: "Building",
  45894. height: math.unit(80, "feet")
  45895. },
  45896. {
  45897. name: "Town",
  45898. height: math.unit(800, "feet")
  45899. },
  45900. {
  45901. name: "Kingdom",
  45902. height: math.unit(80000, "feet")
  45903. },
  45904. {
  45905. name: "Planet",
  45906. height: math.unit(8000000, "feet")
  45907. },
  45908. {
  45909. name: "Universe",
  45910. height: math.unit(8000000000, "feet")
  45911. },
  45912. {
  45913. name: "Transcended",
  45914. height: math.unit(8e27, "feet")
  45915. },
  45916. ]
  45917. ))
  45918. characterMakers.push(() => makeCharacter(
  45919. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45920. {
  45921. front: {
  45922. height: math.unit(5, "feet"),
  45923. weight: math.unit(50, "kg"),
  45924. name: "Front",
  45925. image: {
  45926. source: "./media/characters/biot-avery/front.svg",
  45927. extra: 1295/1232,
  45928. bottom: 86/1381
  45929. }
  45930. },
  45931. },
  45932. [
  45933. {
  45934. name: "Normal",
  45935. height: math.unit(5, "feet"),
  45936. default: true
  45937. },
  45938. ]
  45939. ))
  45940. characterMakers.push(() => makeCharacter(
  45941. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45942. {
  45943. front: {
  45944. height: math.unit(6, "feet"),
  45945. name: "Front",
  45946. image: {
  45947. source: "./media/characters/kitsune-kiro/front.svg",
  45948. extra: 1270/1158,
  45949. bottom: 42/1312
  45950. }
  45951. },
  45952. frontAlt: {
  45953. height: math.unit(6, "feet"),
  45954. name: "Front-alt",
  45955. image: {
  45956. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45957. extra: 1130/1081,
  45958. bottom: 36/1166
  45959. }
  45960. },
  45961. },
  45962. [
  45963. {
  45964. name: "Smol",
  45965. height: math.unit(3, "feet")
  45966. },
  45967. {
  45968. name: "Normal",
  45969. height: math.unit(6, "feet"),
  45970. default: true
  45971. },
  45972. ]
  45973. ))
  45974. characterMakers.push(() => makeCharacter(
  45975. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45976. {
  45977. front: {
  45978. height: math.unit(6, "feet"),
  45979. weight: math.unit(125, "lb"),
  45980. name: "Front",
  45981. image: {
  45982. source: "./media/characters/jack-thatcher/front.svg",
  45983. extra: 1474/1370,
  45984. bottom: 26/1500
  45985. }
  45986. },
  45987. back: {
  45988. height: math.unit(6, "feet"),
  45989. weight: math.unit(125, "lb"),
  45990. name: "Back",
  45991. image: {
  45992. source: "./media/characters/jack-thatcher/back.svg",
  45993. extra: 1489/1384,
  45994. bottom: 18/1507
  45995. }
  45996. },
  45997. },
  45998. [
  45999. {
  46000. name: "Normal",
  46001. height: math.unit(6, "feet"),
  46002. default: true
  46003. },
  46004. {
  46005. name: "Macro",
  46006. height: math.unit(75, "feet")
  46007. },
  46008. {
  46009. name: "Macro-er",
  46010. height: math.unit(250, "feet")
  46011. },
  46012. ]
  46013. ))
  46014. characterMakers.push(() => makeCharacter(
  46015. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46016. {
  46017. front: {
  46018. height: math.unit(7, "feet"),
  46019. weight: math.unit(110, "kg"),
  46020. name: "Front",
  46021. image: {
  46022. source: "./media/characters/max-hyper/front.svg",
  46023. extra: 1969/1881,
  46024. bottom: 49/2018
  46025. }
  46026. },
  46027. },
  46028. [
  46029. {
  46030. name: "Normal",
  46031. height: math.unit(7, "feet"),
  46032. default: true
  46033. },
  46034. ]
  46035. ))
  46036. characterMakers.push(() => makeCharacter(
  46037. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46038. {
  46039. front: {
  46040. height: math.unit(5 + 5/12, "feet"),
  46041. weight: math.unit(160, "lb"),
  46042. name: "Front",
  46043. image: {
  46044. source: "./media/characters/spook/front.svg",
  46045. extra: 794/791,
  46046. bottom: 54/848
  46047. }
  46048. },
  46049. back: {
  46050. height: math.unit(5 + 5/12, "feet"),
  46051. weight: math.unit(160, "lb"),
  46052. name: "Back",
  46053. image: {
  46054. source: "./media/characters/spook/back.svg",
  46055. extra: 812/798,
  46056. bottom: 32/844
  46057. }
  46058. },
  46059. },
  46060. [
  46061. {
  46062. name: "Normal",
  46063. height: math.unit(5 + 5/12, "feet"),
  46064. default: true
  46065. },
  46066. ]
  46067. ))
  46068. characterMakers.push(() => makeCharacter(
  46069. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46070. {
  46071. front: {
  46072. height: math.unit(18, "feet"),
  46073. name: "Front",
  46074. image: {
  46075. source: "./media/characters/xeaduulix/front.svg",
  46076. extra: 1380/1166,
  46077. bottom: 110/1490
  46078. }
  46079. },
  46080. back: {
  46081. height: math.unit(18, "feet"),
  46082. name: "Back",
  46083. image: {
  46084. source: "./media/characters/xeaduulix/back.svg",
  46085. extra: 1592/1170,
  46086. bottom: 128/1720
  46087. }
  46088. },
  46089. frontNsfw: {
  46090. height: math.unit(18, "feet"),
  46091. name: "Front (NSFW)",
  46092. image: {
  46093. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46094. extra: 1380/1166,
  46095. bottom: 110/1490
  46096. }
  46097. },
  46098. backNsfw: {
  46099. height: math.unit(18, "feet"),
  46100. name: "Back (NSFW)",
  46101. image: {
  46102. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46103. extra: 1592/1170,
  46104. bottom: 128/1720
  46105. }
  46106. },
  46107. },
  46108. [
  46109. {
  46110. name: "Normal",
  46111. height: math.unit(18, "feet"),
  46112. default: true
  46113. },
  46114. ]
  46115. ))
  46116. characterMakers.push(() => makeCharacter(
  46117. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46118. {
  46119. spreadWings: {
  46120. height: math.unit(20, "feet"),
  46121. name: "Spread Wings",
  46122. image: {
  46123. source: "./media/characters/fledge/spread-wings.svg",
  46124. extra: 693/635,
  46125. bottom: 26/719
  46126. }
  46127. },
  46128. front: {
  46129. height: math.unit(20, "feet"),
  46130. name: "Front",
  46131. image: {
  46132. source: "./media/characters/fledge/front.svg",
  46133. extra: 684/637,
  46134. bottom: 18/702
  46135. }
  46136. },
  46137. frontAlt: {
  46138. height: math.unit(20, "feet"),
  46139. name: "Front (Alt)",
  46140. image: {
  46141. source: "./media/characters/fledge/front-alt.svg",
  46142. extra: 708/664,
  46143. bottom: 13/721
  46144. }
  46145. },
  46146. back: {
  46147. height: math.unit(20, "feet"),
  46148. name: "Back",
  46149. image: {
  46150. source: "./media/characters/fledge/back.svg",
  46151. extra: 718/634,
  46152. bottom: 22/740
  46153. }
  46154. },
  46155. head: {
  46156. height: math.unit(5.55, "feet"),
  46157. name: "Head",
  46158. image: {
  46159. source: "./media/characters/fledge/head.svg"
  46160. }
  46161. },
  46162. headAlt: {
  46163. height: math.unit(5.1, "feet"),
  46164. name: "Head (Alt)",
  46165. image: {
  46166. source: "./media/characters/fledge/head-alt.svg"
  46167. }
  46168. },
  46169. },
  46170. [
  46171. {
  46172. name: "Small",
  46173. height: math.unit(6 + 2/12, "feet")
  46174. },
  46175. {
  46176. name: "Big",
  46177. height: math.unit(20, "feet"),
  46178. default: true
  46179. },
  46180. {
  46181. name: "Giant",
  46182. height: math.unit(100, "feet")
  46183. },
  46184. {
  46185. name: "Macro",
  46186. height: math.unit(200, "feet")
  46187. },
  46188. ]
  46189. ))
  46190. characterMakers.push(() => makeCharacter(
  46191. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46192. {
  46193. front: {
  46194. height: math.unit(1, "meter"),
  46195. name: "Front",
  46196. image: {
  46197. source: "./media/characters/atlas-morenai/front.svg",
  46198. extra: 1275/1043,
  46199. bottom: 19/1294
  46200. }
  46201. },
  46202. back: {
  46203. height: math.unit(1, "meter"),
  46204. name: "Back",
  46205. image: {
  46206. source: "./media/characters/atlas-morenai/back.svg",
  46207. extra: 1141/1001,
  46208. bottom: 25/1166
  46209. }
  46210. },
  46211. },
  46212. [
  46213. {
  46214. name: "Normal",
  46215. height: math.unit(1, "meter"),
  46216. default: true
  46217. },
  46218. {
  46219. name: "Magic-Infused",
  46220. height: math.unit(5, "meters")
  46221. },
  46222. ]
  46223. ))
  46224. characterMakers.push(() => makeCharacter(
  46225. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46226. {
  46227. front: {
  46228. height: math.unit(5, "meters"),
  46229. name: "Front",
  46230. image: {
  46231. source: "./media/characters/cintia/front.svg",
  46232. extra: 1312/1228,
  46233. bottom: 38/1350
  46234. }
  46235. },
  46236. back: {
  46237. height: math.unit(5, "meters"),
  46238. name: "Back",
  46239. image: {
  46240. source: "./media/characters/cintia/back.svg",
  46241. extra: 1260/1166,
  46242. bottom: 98/1358
  46243. }
  46244. },
  46245. frontDick: {
  46246. height: math.unit(5, "meters"),
  46247. name: "Front (Dick)",
  46248. image: {
  46249. source: "./media/characters/cintia/front-dick.svg",
  46250. extra: 1312/1228,
  46251. bottom: 38/1350
  46252. }
  46253. },
  46254. backDick: {
  46255. height: math.unit(5, "meters"),
  46256. name: "Back (Dick)",
  46257. image: {
  46258. source: "./media/characters/cintia/back-dick.svg",
  46259. extra: 1260/1166,
  46260. bottom: 98/1358
  46261. }
  46262. },
  46263. bust: {
  46264. height: math.unit(1.97, "meters"),
  46265. name: "Bust",
  46266. image: {
  46267. source: "./media/characters/cintia/bust.svg",
  46268. extra: 617/565,
  46269. bottom: 0/617
  46270. }
  46271. },
  46272. },
  46273. [
  46274. {
  46275. name: "Normal",
  46276. height: math.unit(5, "meters"),
  46277. default: true
  46278. },
  46279. ]
  46280. ))
  46281. characterMakers.push(() => makeCharacter(
  46282. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46283. {
  46284. side: {
  46285. height: math.unit(100, "feet"),
  46286. name: "Side",
  46287. image: {
  46288. source: "./media/characters/denora/side.svg",
  46289. extra: 875/803,
  46290. bottom: 9/884
  46291. }
  46292. },
  46293. },
  46294. [
  46295. {
  46296. name: "Standard",
  46297. height: math.unit(100, "feet"),
  46298. default: true
  46299. },
  46300. {
  46301. name: "Grand",
  46302. height: math.unit(1000, "feet")
  46303. },
  46304. {
  46305. name: "Conquering",
  46306. height: math.unit(10000, "feet")
  46307. },
  46308. ]
  46309. ))
  46310. characterMakers.push(() => makeCharacter(
  46311. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46312. {
  46313. dressed: {
  46314. height: math.unit(8 + 5/12, "feet"),
  46315. weight: math.unit(700, "lb"),
  46316. name: "Dressed",
  46317. image: {
  46318. source: "./media/characters/kiva/dressed.svg",
  46319. extra: 1102/1055,
  46320. bottom: 60/1162
  46321. }
  46322. },
  46323. nude: {
  46324. height: math.unit(8 + 5/12, "feet"),
  46325. weight: math.unit(700, "lb"),
  46326. name: "Nude",
  46327. image: {
  46328. source: "./media/characters/kiva/nude.svg",
  46329. extra: 1102/1055,
  46330. bottom: 60/1162
  46331. }
  46332. },
  46333. },
  46334. [
  46335. {
  46336. name: "Base Height",
  46337. height: math.unit(8 + 5/12, "feet"),
  46338. default: true
  46339. },
  46340. {
  46341. name: "Macro",
  46342. height: math.unit(100, "feet")
  46343. },
  46344. {
  46345. name: "Max",
  46346. height: math.unit(3280, "feet")
  46347. },
  46348. ]
  46349. ))
  46350. characterMakers.push(() => makeCharacter(
  46351. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46352. {
  46353. front: {
  46354. height: math.unit(6 + 8/12, "feet"),
  46355. weight: math.unit(250, "lb"),
  46356. name: "Front",
  46357. image: {
  46358. source: "./media/characters/ztragon/front.svg",
  46359. extra: 1825/1684,
  46360. bottom: 98/1923
  46361. }
  46362. },
  46363. },
  46364. [
  46365. {
  46366. name: "Normal",
  46367. height: math.unit(6 + 8/12, "feet"),
  46368. default: true
  46369. },
  46370. {
  46371. name: "Macro",
  46372. height: math.unit(80, "feet")
  46373. },
  46374. ]
  46375. ))
  46376. characterMakers.push(() => makeCharacter(
  46377. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46378. {
  46379. front: {
  46380. height: math.unit(10.4, "feet"),
  46381. weight: math.unit(2, "tons"),
  46382. name: "Front",
  46383. image: {
  46384. source: "./media/characters/yesenia/front.svg",
  46385. extra: 1479/1474,
  46386. bottom: 233/1712
  46387. }
  46388. },
  46389. },
  46390. [
  46391. {
  46392. name: "Normal",
  46393. height: math.unit(10.4, "feet"),
  46394. default: true
  46395. },
  46396. ]
  46397. ))
  46398. characterMakers.push(() => makeCharacter(
  46399. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46400. {
  46401. normal: {
  46402. height: math.unit(6 + 1/12, "feet"),
  46403. weight: math.unit(180, "lb"),
  46404. name: "Normal",
  46405. image: {
  46406. source: "./media/characters/leanne-lycheborne/normal.svg",
  46407. extra: 1748/1660,
  46408. bottom: 98/1846
  46409. }
  46410. },
  46411. were: {
  46412. height: math.unit(12, "feet"),
  46413. weight: math.unit(1600, "lb"),
  46414. name: "Were",
  46415. image: {
  46416. source: "./media/characters/leanne-lycheborne/were.svg",
  46417. extra: 1485/1432,
  46418. bottom: 66/1551
  46419. }
  46420. },
  46421. },
  46422. [
  46423. {
  46424. name: "Normal",
  46425. height: math.unit(6 + 1/12, "feet"),
  46426. default: true
  46427. },
  46428. ]
  46429. ))
  46430. characterMakers.push(() => makeCharacter(
  46431. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46432. {
  46433. side: {
  46434. height: math.unit(13, "feet"),
  46435. name: "Side",
  46436. image: {
  46437. source: "./media/characters/kira-tyler/side.svg",
  46438. extra: 693/393,
  46439. bottom: 58/751
  46440. }
  46441. },
  46442. },
  46443. [
  46444. {
  46445. name: "Normal",
  46446. height: math.unit(13, "feet"),
  46447. default: true
  46448. },
  46449. ]
  46450. ))
  46451. characterMakers.push(() => makeCharacter(
  46452. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46453. {
  46454. front: {
  46455. height: math.unit(10.3, "feet"),
  46456. weight: math.unit(150, "lb"),
  46457. name: "Front",
  46458. image: {
  46459. source: "./media/characters/blaze/front.svg",
  46460. extra: 1378/1286,
  46461. bottom: 172/1550
  46462. }
  46463. },
  46464. },
  46465. [
  46466. {
  46467. name: "Normal",
  46468. height: math.unit(10.3, "feet"),
  46469. default: true
  46470. },
  46471. ]
  46472. ))
  46473. characterMakers.push(() => makeCharacter(
  46474. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46475. {
  46476. side: {
  46477. height: math.unit(2, "meters"),
  46478. weight: math.unit(400, "kg"),
  46479. name: "Side",
  46480. image: {
  46481. source: "./media/characters/anu/side.svg",
  46482. extra: 506/394,
  46483. bottom: 18/524
  46484. }
  46485. },
  46486. },
  46487. [
  46488. {
  46489. name: "Humanoid",
  46490. height: math.unit(2, "meters")
  46491. },
  46492. {
  46493. name: "Normal",
  46494. height: math.unit(5, "meters"),
  46495. default: true
  46496. },
  46497. ]
  46498. ))
  46499. characterMakers.push(() => makeCharacter(
  46500. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46501. {
  46502. front: {
  46503. height: math.unit(5 + 5/12, "feet"),
  46504. weight: math.unit(170, "lb"),
  46505. name: "Front",
  46506. image: {
  46507. source: "./media/characters/synx-the-lynx/front.svg",
  46508. extra: 1893/1745,
  46509. bottom: 17/1910
  46510. }
  46511. },
  46512. side: {
  46513. height: math.unit(5 + 5/12, "feet"),
  46514. weight: math.unit(170, "lb"),
  46515. name: "Side",
  46516. image: {
  46517. source: "./media/characters/synx-the-lynx/side.svg",
  46518. extra: 1884/1740,
  46519. bottom: 39/1923
  46520. }
  46521. },
  46522. back: {
  46523. height: math.unit(5 + 5/12, "feet"),
  46524. weight: math.unit(170, "lb"),
  46525. name: "Back",
  46526. image: {
  46527. source: "./media/characters/synx-the-lynx/back.svg",
  46528. extra: 1903/1755,
  46529. bottom: 14/1917
  46530. }
  46531. },
  46532. },
  46533. [
  46534. {
  46535. name: "Normal",
  46536. height: math.unit(5 + 5/12, "feet"),
  46537. default: true
  46538. },
  46539. ]
  46540. ))
  46541. characterMakers.push(() => makeCharacter(
  46542. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46543. {
  46544. back: {
  46545. height: math.unit(15, "feet"),
  46546. name: "Back",
  46547. image: {
  46548. source: "./media/characters/nadezda-fex/back.svg",
  46549. extra: 1695/1481,
  46550. bottom: 25/1720
  46551. }
  46552. },
  46553. },
  46554. [
  46555. {
  46556. name: "Normal",
  46557. height: math.unit(15, "feet"),
  46558. default: true
  46559. },
  46560. {
  46561. name: "Macro",
  46562. height: math.unit(2.5, "miles")
  46563. },
  46564. {
  46565. name: "Goddess",
  46566. height: math.unit(2, "multiverses")
  46567. },
  46568. ]
  46569. ))
  46570. characterMakers.push(() => makeCharacter(
  46571. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46572. {
  46573. front: {
  46574. height: math.unit(216, "cm"),
  46575. name: "Front",
  46576. image: {
  46577. source: "./media/characters/lev/front.svg",
  46578. extra: 1728/1670,
  46579. bottom: 82/1810
  46580. }
  46581. },
  46582. back: {
  46583. height: math.unit(216, "cm"),
  46584. name: "Back",
  46585. image: {
  46586. source: "./media/characters/lev/back.svg",
  46587. extra: 1738/1675,
  46588. bottom: 24/1762
  46589. }
  46590. },
  46591. dressed: {
  46592. height: math.unit(216, "cm"),
  46593. name: "Dressed",
  46594. image: {
  46595. source: "./media/characters/lev/dressed.svg",
  46596. extra: 1397/1351,
  46597. bottom: 73/1470
  46598. }
  46599. },
  46600. head: {
  46601. height: math.unit(0.51, "meter"),
  46602. name: "Head",
  46603. image: {
  46604. source: "./media/characters/lev/head.svg"
  46605. }
  46606. },
  46607. },
  46608. [
  46609. {
  46610. name: "Normal",
  46611. height: math.unit(216, "cm"),
  46612. default: true
  46613. },
  46614. {
  46615. name: "Relatively Macro",
  46616. height: math.unit(80, "meters")
  46617. },
  46618. {
  46619. name: "Megamacro",
  46620. height: math.unit(21600, "meters")
  46621. },
  46622. {
  46623. name: "Megamacro+",
  46624. height: math.unit(64800, "meters")
  46625. },
  46626. ]
  46627. ))
  46628. characterMakers.push(() => makeCharacter(
  46629. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46630. {
  46631. front: {
  46632. height: math.unit(2, "meters"),
  46633. weight: math.unit(80, "kg"),
  46634. name: "Front",
  46635. image: {
  46636. source: "./media/characters/moka/front.svg",
  46637. extra: 1337/1255,
  46638. bottom: 58/1395
  46639. }
  46640. },
  46641. },
  46642. [
  46643. {
  46644. name: "Micro",
  46645. height: math.unit(15, "cm")
  46646. },
  46647. {
  46648. name: "Normal",
  46649. height: math.unit(2, "meters"),
  46650. default: true
  46651. },
  46652. {
  46653. name: "Macro",
  46654. height: math.unit(20, "meters"),
  46655. },
  46656. ]
  46657. ))
  46658. characterMakers.push(() => makeCharacter(
  46659. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46660. {
  46661. front: {
  46662. height: math.unit(9, "feet"),
  46663. weight: math.unit(240, "lb"),
  46664. name: "Front",
  46665. image: {
  46666. source: "./media/characters/kuzco/front.svg",
  46667. extra: 1593/1487,
  46668. bottom: 32/1625
  46669. }
  46670. },
  46671. side: {
  46672. height: math.unit(9, "feet"),
  46673. weight: math.unit(240, "lb"),
  46674. name: "Side",
  46675. image: {
  46676. source: "./media/characters/kuzco/side.svg",
  46677. extra: 1575/1485,
  46678. bottom: 30/1605
  46679. }
  46680. },
  46681. back: {
  46682. height: math.unit(9, "feet"),
  46683. weight: math.unit(240, "lb"),
  46684. name: "Back",
  46685. image: {
  46686. source: "./media/characters/kuzco/back.svg",
  46687. extra: 1603/1514,
  46688. bottom: 14/1617
  46689. }
  46690. },
  46691. },
  46692. [
  46693. {
  46694. name: "Normal",
  46695. height: math.unit(9, "feet"),
  46696. default: true
  46697. },
  46698. ]
  46699. ))
  46700. characterMakers.push(() => makeCharacter(
  46701. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46702. {
  46703. side: {
  46704. height: math.unit(2, "meters"),
  46705. weight: math.unit(300, "kg"),
  46706. name: "Side",
  46707. image: {
  46708. source: "./media/characters/ceruleus/side.svg",
  46709. extra: 1068/974,
  46710. bottom: 126/1194
  46711. }
  46712. },
  46713. maw: {
  46714. height: math.unit(0.8125, "meter"),
  46715. name: "Maw",
  46716. image: {
  46717. source: "./media/characters/ceruleus/maw.svg"
  46718. }
  46719. },
  46720. },
  46721. [
  46722. {
  46723. name: "Normal",
  46724. height: math.unit(16, "meters"),
  46725. default: true
  46726. },
  46727. ]
  46728. ))
  46729. characterMakers.push(() => makeCharacter(
  46730. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46731. {
  46732. front: {
  46733. height: math.unit(9, "feet"),
  46734. weight: math.unit(500, "kg"),
  46735. name: "Front",
  46736. image: {
  46737. source: "./media/characters/acouya/front.svg",
  46738. extra: 1660/1473,
  46739. bottom: 28/1688
  46740. }
  46741. },
  46742. },
  46743. [
  46744. {
  46745. name: "Normal",
  46746. height: math.unit(9, "feet"),
  46747. default: true
  46748. },
  46749. ]
  46750. ))
  46751. characterMakers.push(() => makeCharacter(
  46752. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46753. {
  46754. front: {
  46755. height: math.unit(5 + 6/12, "feet"),
  46756. weight: math.unit(195, "lb"),
  46757. name: "Front",
  46758. image: {
  46759. source: "./media/characters/vant/front.svg",
  46760. extra: 1396/1320,
  46761. bottom: 20/1416
  46762. }
  46763. },
  46764. back: {
  46765. height: math.unit(5 + 6/12, "feet"),
  46766. weight: math.unit(195, "lb"),
  46767. name: "Back",
  46768. image: {
  46769. source: "./media/characters/vant/back.svg",
  46770. extra: 1396/1320,
  46771. bottom: 20/1416
  46772. }
  46773. },
  46774. maw: {
  46775. height: math.unit(0.75, "feet"),
  46776. name: "Maw",
  46777. image: {
  46778. source: "./media/characters/vant/maw.svg"
  46779. }
  46780. },
  46781. paw: {
  46782. height: math.unit(1.07, "feet"),
  46783. name: "Paw",
  46784. image: {
  46785. source: "./media/characters/vant/paw.svg"
  46786. }
  46787. },
  46788. },
  46789. [
  46790. {
  46791. name: "Micro",
  46792. height: math.unit(0.25, "inches")
  46793. },
  46794. {
  46795. name: "Normal",
  46796. height: math.unit(5 + 6/12, "feet"),
  46797. default: true
  46798. },
  46799. {
  46800. name: "Macro",
  46801. height: math.unit(75, "feet")
  46802. },
  46803. ]
  46804. ))
  46805. characterMakers.push(() => makeCharacter(
  46806. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46807. {
  46808. front: {
  46809. height: math.unit(30, "meters"),
  46810. weight: math.unit(363, "tons"),
  46811. name: "Front",
  46812. image: {
  46813. source: "./media/characters/ahra/front.svg",
  46814. extra: 1914/1814,
  46815. bottom: 46/1960
  46816. }
  46817. },
  46818. },
  46819. [
  46820. {
  46821. name: "Macro",
  46822. height: math.unit(30, "meters"),
  46823. default: true
  46824. },
  46825. ]
  46826. ))
  46827. characterMakers.push(() => makeCharacter(
  46828. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46829. {
  46830. undressed: {
  46831. height: math.unit(2, "m"),
  46832. weight: math.unit(250, "kg"),
  46833. name: "Undressed",
  46834. image: {
  46835. source: "./media/characters/coriander/undressed.svg",
  46836. extra: 1757/1606,
  46837. bottom: 107/1864
  46838. }
  46839. },
  46840. dressed: {
  46841. height: math.unit(2, "m"),
  46842. weight: math.unit(250, "kg"),
  46843. name: "Dressed",
  46844. image: {
  46845. source: "./media/characters/coriander/dressed.svg",
  46846. extra: 1757/1606,
  46847. bottom: 107/1864
  46848. }
  46849. },
  46850. },
  46851. [
  46852. {
  46853. name: "Normal",
  46854. height: math.unit(4, "meters"),
  46855. default: true
  46856. },
  46857. {
  46858. name: "XL",
  46859. height: math.unit(6, "meters")
  46860. },
  46861. {
  46862. name: "XXL",
  46863. height: math.unit(8, "meters")
  46864. },
  46865. ]
  46866. ))
  46867. characterMakers.push(() => makeCharacter(
  46868. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46869. {
  46870. front: {
  46871. height: math.unit(6, "feet"),
  46872. name: "Front",
  46873. image: {
  46874. source: "./media/characters/syrinx/front.svg",
  46875. extra: 1557/1259,
  46876. bottom: 171/1728
  46877. }
  46878. },
  46879. },
  46880. [
  46881. {
  46882. name: "Normal",
  46883. height: math.unit(6 + 3/12, "feet"),
  46884. default: true
  46885. },
  46886. ]
  46887. ))
  46888. characterMakers.push(() => makeCharacter(
  46889. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46890. {
  46891. front: {
  46892. height: math.unit(11 + 6/12, "feet"),
  46893. weight: math.unit(1.5, "tons"),
  46894. name: "Front",
  46895. image: {
  46896. source: "./media/characters/bor/front.svg",
  46897. extra: 1189/1109,
  46898. bottom: 170/1359
  46899. }
  46900. },
  46901. },
  46902. [
  46903. {
  46904. name: "Normal",
  46905. height: math.unit(11 + 6/12, "feet"),
  46906. default: true
  46907. },
  46908. {
  46909. name: "Macro",
  46910. height: math.unit(32 + 9/12, "feet")
  46911. },
  46912. ]
  46913. ))
  46914. characterMakers.push(() => makeCharacter(
  46915. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46916. {
  46917. anthro: {
  46918. height: math.unit(9, "feet"),
  46919. weight: math.unit(2076, "lb"),
  46920. name: "Anthro",
  46921. image: {
  46922. source: "./media/characters/abacus/anthro.svg",
  46923. extra: 1540/1494,
  46924. bottom: 233/1773
  46925. }
  46926. },
  46927. pigeon: {
  46928. height: math.unit(1, "feet"),
  46929. name: "Pigeon",
  46930. image: {
  46931. source: "./media/characters/abacus/pigeon.svg",
  46932. extra: 528/525,
  46933. bottom: 46/574
  46934. }
  46935. },
  46936. },
  46937. [
  46938. {
  46939. name: "Normal",
  46940. height: math.unit(9, "feet"),
  46941. default: true
  46942. },
  46943. ]
  46944. ))
  46945. characterMakers.push(() => makeCharacter(
  46946. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46947. {
  46948. side: {
  46949. height: math.unit(6, "feet"),
  46950. name: "Side",
  46951. image: {
  46952. source: "./media/characters/delkhan/side.svg",
  46953. extra: 1884/1786,
  46954. bottom: 308/2192
  46955. }
  46956. },
  46957. head: {
  46958. height: math.unit(3.38, "feet"),
  46959. name: "Head",
  46960. image: {
  46961. source: "./media/characters/delkhan/head.svg"
  46962. }
  46963. },
  46964. },
  46965. [
  46966. {
  46967. name: "Normal",
  46968. height: math.unit(72, "feet"),
  46969. default: true
  46970. },
  46971. {
  46972. name: "Giant",
  46973. height: math.unit(172, "feet")
  46974. },
  46975. ]
  46976. ))
  46977. characterMakers.push(() => makeCharacter(
  46978. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46979. {
  46980. standing: {
  46981. height: math.unit(6, "feet"),
  46982. name: "Standing",
  46983. image: {
  46984. source: "./media/characters/euchidat/standing.svg",
  46985. extra: 1612/1553,
  46986. bottom: 116/1728
  46987. }
  46988. },
  46989. leaning: {
  46990. height: math.unit(6, "feet"),
  46991. name: "Leaning",
  46992. image: {
  46993. source: "./media/characters/euchidat/leaning.svg",
  46994. extra: 1719/1674,
  46995. bottom: 27/1746
  46996. }
  46997. },
  46998. },
  46999. [
  47000. {
  47001. name: "Normal",
  47002. height: math.unit(175, "feet"),
  47003. default: true
  47004. },
  47005. {
  47006. name: "Megamacro",
  47007. height: math.unit(190, "miles")
  47008. },
  47009. {
  47010. name: "Gigamacro",
  47011. height: math.unit(190000, "miles")
  47012. },
  47013. ]
  47014. ))
  47015. characterMakers.push(() => makeCharacter(
  47016. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47017. {
  47018. front: {
  47019. height: math.unit(6, "feet"),
  47020. weight: math.unit(150, "lb"),
  47021. name: "Front",
  47022. image: {
  47023. source: "./media/characters/rebecca-stack/front.svg",
  47024. extra: 1256/1201,
  47025. bottom: 18/1274
  47026. }
  47027. },
  47028. },
  47029. [
  47030. {
  47031. name: "Normal",
  47032. height: math.unit(5 + 8/12, "feet"),
  47033. default: true
  47034. },
  47035. {
  47036. name: "Demolitionist",
  47037. height: math.unit(200, "feet")
  47038. },
  47039. {
  47040. name: "Out of Control",
  47041. height: math.unit(2, "miles")
  47042. },
  47043. {
  47044. name: "Giga",
  47045. height: math.unit(7200, "miles")
  47046. },
  47047. ]
  47048. ))
  47049. characterMakers.push(() => makeCharacter(
  47050. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47051. {
  47052. front: {
  47053. height: math.unit(6, "feet"),
  47054. weight: math.unit(150, "lb"),
  47055. name: "Front",
  47056. image: {
  47057. source: "./media/characters/jenny-cartwright/front.svg",
  47058. extra: 1384/1376,
  47059. bottom: 58/1442
  47060. }
  47061. },
  47062. },
  47063. [
  47064. {
  47065. name: "Normal",
  47066. height: math.unit(6 + 7/12, "feet"),
  47067. default: true
  47068. },
  47069. {
  47070. name: "Librarian",
  47071. height: math.unit(55, "feet")
  47072. },
  47073. {
  47074. name: "Sightseer",
  47075. height: math.unit(50, "miles")
  47076. },
  47077. {
  47078. name: "Giga",
  47079. height: math.unit(30000, "miles")
  47080. },
  47081. ]
  47082. ))
  47083. characterMakers.push(() => makeCharacter(
  47084. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47085. {
  47086. nude: {
  47087. height: math.unit(8, "feet"),
  47088. weight: math.unit(225, "lb"),
  47089. name: "Nude",
  47090. image: {
  47091. source: "./media/characters/marvy/nude.svg",
  47092. extra: 1900/1683,
  47093. bottom: 89/1989
  47094. }
  47095. },
  47096. dressed: {
  47097. height: math.unit(8, "feet"),
  47098. weight: math.unit(225, "lb"),
  47099. name: "Dressed",
  47100. image: {
  47101. source: "./media/characters/marvy/dressed.svg",
  47102. extra: 1900/1683,
  47103. bottom: 89/1989
  47104. }
  47105. },
  47106. head: {
  47107. height: math.unit(2.85, "feet"),
  47108. name: "Head",
  47109. image: {
  47110. source: "./media/characters/marvy/head.svg"
  47111. }
  47112. },
  47113. },
  47114. [
  47115. {
  47116. name: "Normal",
  47117. height: math.unit(8, "feet"),
  47118. default: true
  47119. },
  47120. ]
  47121. ))
  47122. characterMakers.push(() => makeCharacter(
  47123. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47124. {
  47125. front: {
  47126. height: math.unit(8, "feet"),
  47127. weight: math.unit(250, "lb"),
  47128. name: "Front",
  47129. image: {
  47130. source: "./media/characters/leah/front.svg",
  47131. extra: 1257/1149,
  47132. bottom: 109/1366
  47133. }
  47134. },
  47135. },
  47136. [
  47137. {
  47138. name: "Normal",
  47139. height: math.unit(8, "feet"),
  47140. default: true
  47141. },
  47142. {
  47143. name: "Minimacro",
  47144. height: math.unit(40, "feet")
  47145. },
  47146. {
  47147. name: "Macro",
  47148. height: math.unit(124, "feet")
  47149. },
  47150. {
  47151. name: "Megamacro",
  47152. height: math.unit(850, "feet")
  47153. },
  47154. ]
  47155. ))
  47156. characterMakers.push(() => makeCharacter(
  47157. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47158. {
  47159. side: {
  47160. height: math.unit(13 + 6/12, "feet"),
  47161. weight: math.unit(3200, "lb"),
  47162. name: "Side",
  47163. image: {
  47164. source: "./media/characters/alvir/side.svg",
  47165. extra: 896/589,
  47166. bottom: 26/922
  47167. }
  47168. },
  47169. },
  47170. [
  47171. {
  47172. name: "Normal",
  47173. height: math.unit(13 + 6/12, "feet"),
  47174. default: true
  47175. },
  47176. ]
  47177. ))
  47178. characterMakers.push(() => makeCharacter(
  47179. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47180. {
  47181. front: {
  47182. height: math.unit(5 + 4/12, "feet"),
  47183. weight: math.unit(236, "lb"),
  47184. name: "Front",
  47185. image: {
  47186. source: "./media/characters/zaina-khalil/front.svg",
  47187. extra: 1533/1485,
  47188. bottom: 94/1627
  47189. }
  47190. },
  47191. side: {
  47192. height: math.unit(5 + 4/12, "feet"),
  47193. weight: math.unit(236, "lb"),
  47194. name: "Side",
  47195. image: {
  47196. source: "./media/characters/zaina-khalil/side.svg",
  47197. extra: 1537/1498,
  47198. bottom: 66/1603
  47199. }
  47200. },
  47201. back: {
  47202. height: math.unit(5 + 4/12, "feet"),
  47203. weight: math.unit(236, "lb"),
  47204. name: "Back",
  47205. image: {
  47206. source: "./media/characters/zaina-khalil/back.svg",
  47207. extra: 1546/1494,
  47208. bottom: 89/1635
  47209. }
  47210. },
  47211. },
  47212. [
  47213. {
  47214. name: "Normal",
  47215. height: math.unit(5 + 4/12, "feet"),
  47216. default: true
  47217. },
  47218. ]
  47219. ))
  47220. characterMakers.push(() => makeCharacter(
  47221. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47222. {
  47223. side: {
  47224. height: math.unit(12, "feet"),
  47225. weight: math.unit(4000, "lb"),
  47226. name: "Side",
  47227. image: {
  47228. source: "./media/characters/terry/side.svg",
  47229. extra: 1518/1439,
  47230. bottom: 149/1667
  47231. }
  47232. },
  47233. },
  47234. [
  47235. {
  47236. name: "Normal",
  47237. height: math.unit(12, "feet"),
  47238. default: true
  47239. },
  47240. ]
  47241. ))
  47242. characterMakers.push(() => makeCharacter(
  47243. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47244. {
  47245. front: {
  47246. height: math.unit(12, "feet"),
  47247. weight: math.unit(1500, "lb"),
  47248. name: "Front",
  47249. image: {
  47250. source: "./media/characters/kahea/front.svg",
  47251. extra: 1722/1617,
  47252. bottom: 179/1901
  47253. }
  47254. },
  47255. },
  47256. [
  47257. {
  47258. name: "Normal",
  47259. height: math.unit(12, "feet"),
  47260. default: true
  47261. },
  47262. ]
  47263. ))
  47264. characterMakers.push(() => makeCharacter(
  47265. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47266. {
  47267. demonFront: {
  47268. height: math.unit(36, "feet"),
  47269. name: "Front",
  47270. image: {
  47271. source: "./media/characters/alex-xuria/demon-front.svg",
  47272. extra: 1705/1673,
  47273. bottom: 198/1903
  47274. },
  47275. form: "demon",
  47276. default: true
  47277. },
  47278. demonBack: {
  47279. height: math.unit(36, "feet"),
  47280. name: "Back",
  47281. image: {
  47282. source: "./media/characters/alex-xuria/demon-back.svg",
  47283. extra: 1725/1693,
  47284. bottom: 70/1795
  47285. },
  47286. form: "demon"
  47287. },
  47288. demonHead: {
  47289. height: math.unit(2.14, "meters"),
  47290. name: "Head",
  47291. image: {
  47292. source: "./media/characters/alex-xuria/demon-head.svg"
  47293. },
  47294. form: "demon"
  47295. },
  47296. demonHand: {
  47297. height: math.unit(1.61, "meters"),
  47298. name: "Hand",
  47299. image: {
  47300. source: "./media/characters/alex-xuria/demon-hand.svg"
  47301. },
  47302. form: "demon"
  47303. },
  47304. demonPaw: {
  47305. height: math.unit(1.35, "meters"),
  47306. name: "Paw",
  47307. image: {
  47308. source: "./media/characters/alex-xuria/demon-paw.svg"
  47309. },
  47310. form: "demon"
  47311. },
  47312. demonFoot: {
  47313. height: math.unit(2.2, "meters"),
  47314. name: "Foot",
  47315. image: {
  47316. source: "./media/characters/alex-xuria/demon-foot.svg"
  47317. },
  47318. form: "demon"
  47319. },
  47320. demonCock: {
  47321. height: math.unit(1.74, "meters"),
  47322. name: "Cock",
  47323. image: {
  47324. source: "./media/characters/alex-xuria/demon-cock.svg"
  47325. },
  47326. form: "demon"
  47327. },
  47328. demonTailClosed: {
  47329. height: math.unit(1.47, "meters"),
  47330. name: "Tail (Closed)",
  47331. image: {
  47332. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47333. },
  47334. form: "demon"
  47335. },
  47336. demonTailOpen: {
  47337. height: math.unit(2.85, "meters"),
  47338. name: "Tail (Open)",
  47339. image: {
  47340. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47341. },
  47342. form: "demon"
  47343. },
  47344. incubusFront: {
  47345. height: math.unit(12, "feet"),
  47346. name: "Front",
  47347. image: {
  47348. source: "./media/characters/alex-xuria/incubus-front.svg",
  47349. extra: 1754/1677,
  47350. bottom: 125/1879
  47351. },
  47352. form: "incubus",
  47353. default: true
  47354. },
  47355. incubusBack: {
  47356. height: math.unit(12, "feet"),
  47357. name: "Back",
  47358. image: {
  47359. source: "./media/characters/alex-xuria/incubus-back.svg",
  47360. extra: 1702/1647,
  47361. bottom: 30/1732
  47362. },
  47363. form: "incubus"
  47364. },
  47365. incubusHead: {
  47366. height: math.unit(3.45, "feet"),
  47367. name: "Head",
  47368. image: {
  47369. source: "./media/characters/alex-xuria/incubus-head.svg"
  47370. },
  47371. form: "incubus"
  47372. },
  47373. rabbitFront: {
  47374. height: math.unit(6, "feet"),
  47375. name: "Front",
  47376. image: {
  47377. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47378. extra: 1369/1349,
  47379. bottom: 45/1414
  47380. },
  47381. form: "rabbit",
  47382. default: true
  47383. },
  47384. rabbitSide: {
  47385. height: math.unit(6, "feet"),
  47386. name: "Side",
  47387. image: {
  47388. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47389. extra: 1370/1356,
  47390. bottom: 37/1407
  47391. },
  47392. form: "rabbit"
  47393. },
  47394. rabbitBack: {
  47395. height: math.unit(6, "feet"),
  47396. name: "Back",
  47397. image: {
  47398. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47399. extra: 1375/1358,
  47400. bottom: 43/1418
  47401. },
  47402. form: "rabbit"
  47403. },
  47404. },
  47405. [
  47406. {
  47407. name: "Normal",
  47408. height: math.unit(6, "feet"),
  47409. default: true,
  47410. form: "rabbit"
  47411. },
  47412. {
  47413. name: "Incubus",
  47414. height: math.unit(12, "feet"),
  47415. default: true,
  47416. form: "incubus"
  47417. },
  47418. {
  47419. name: "Demon",
  47420. height: math.unit(36, "feet"),
  47421. default: true,
  47422. form: "demon"
  47423. }
  47424. ],
  47425. {
  47426. "demon": {
  47427. name: "Demon",
  47428. default: true
  47429. },
  47430. "incubus": {
  47431. name: "Incubus",
  47432. },
  47433. "rabbit": {
  47434. name: "Rabbit"
  47435. }
  47436. }
  47437. ))
  47438. characterMakers.push(() => makeCharacter(
  47439. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47440. {
  47441. front: {
  47442. height: math.unit(7 + 5/12, "feet"),
  47443. weight: math.unit(510, "lb"),
  47444. name: "Front",
  47445. image: {
  47446. source: "./media/characters/syrup/front.svg",
  47447. extra: 932/916,
  47448. bottom: 26/958
  47449. }
  47450. },
  47451. },
  47452. [
  47453. {
  47454. name: "Normal",
  47455. height: math.unit(7 + 5/12, "feet"),
  47456. default: true
  47457. },
  47458. {
  47459. name: "Big",
  47460. height: math.unit(50, "feet")
  47461. },
  47462. {
  47463. name: "Macro",
  47464. height: math.unit(300, "feet")
  47465. },
  47466. {
  47467. name: "Megamacro",
  47468. height: math.unit(1, "mile")
  47469. },
  47470. ]
  47471. ))
  47472. characterMakers.push(() => makeCharacter(
  47473. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47474. {
  47475. front: {
  47476. height: math.unit(6 + 9/12, "feet"),
  47477. name: "Front",
  47478. image: {
  47479. source: "./media/characters/zeimne/front.svg",
  47480. extra: 1969/1806,
  47481. bottom: 53/2022
  47482. }
  47483. },
  47484. },
  47485. [
  47486. {
  47487. name: "Normal",
  47488. height: math.unit(6 + 9/12, "feet"),
  47489. default: true
  47490. },
  47491. {
  47492. name: "Giant",
  47493. height: math.unit(550, "feet")
  47494. },
  47495. {
  47496. name: "Mega",
  47497. height: math.unit(3, "miles")
  47498. },
  47499. {
  47500. name: "Giga",
  47501. height: math.unit(250, "miles")
  47502. },
  47503. {
  47504. name: "Tera",
  47505. height: math.unit(1, "AU")
  47506. },
  47507. ]
  47508. ))
  47509. characterMakers.push(() => makeCharacter(
  47510. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47511. {
  47512. front: {
  47513. height: math.unit(5 + 2/12, "feet"),
  47514. name: "Front",
  47515. image: {
  47516. source: "./media/characters/grar/front.svg",
  47517. extra: 1331/1119,
  47518. bottom: 60/1391
  47519. }
  47520. },
  47521. back: {
  47522. height: math.unit(5 + 2/12, "feet"),
  47523. name: "Back",
  47524. image: {
  47525. source: "./media/characters/grar/back.svg",
  47526. extra: 1385/1169,
  47527. bottom: 23/1408
  47528. }
  47529. },
  47530. },
  47531. [
  47532. {
  47533. name: "Normal",
  47534. height: math.unit(5 + 2/12, "feet"),
  47535. default: true
  47536. },
  47537. ]
  47538. ))
  47539. characterMakers.push(() => makeCharacter(
  47540. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47541. {
  47542. front: {
  47543. height: math.unit(13 + 7/12, "feet"),
  47544. weight: math.unit(2200, "lb"),
  47545. name: "Front",
  47546. image: {
  47547. source: "./media/characters/endraya/front.svg",
  47548. extra: 1289/1215,
  47549. bottom: 50/1339
  47550. }
  47551. },
  47552. nude: {
  47553. height: math.unit(13 + 7/12, "feet"),
  47554. weight: math.unit(2200, "lb"),
  47555. name: "Nude",
  47556. image: {
  47557. source: "./media/characters/endraya/nude.svg",
  47558. extra: 1247/1171,
  47559. bottom: 40/1287
  47560. }
  47561. },
  47562. head: {
  47563. height: math.unit(2.6, "feet"),
  47564. name: "Head",
  47565. image: {
  47566. source: "./media/characters/endraya/head.svg"
  47567. }
  47568. },
  47569. slit: {
  47570. height: math.unit(3.4, "feet"),
  47571. name: "Slit",
  47572. image: {
  47573. source: "./media/characters/endraya/slit.svg"
  47574. }
  47575. },
  47576. },
  47577. [
  47578. {
  47579. name: "Normal",
  47580. height: math.unit(13 + 7/12, "feet"),
  47581. default: true
  47582. },
  47583. {
  47584. name: "Macro",
  47585. height: math.unit(200, "feet")
  47586. },
  47587. ]
  47588. ))
  47589. characterMakers.push(() => makeCharacter(
  47590. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47591. {
  47592. front: {
  47593. height: math.unit(1.81, "meters"),
  47594. weight: math.unit(69, "kg"),
  47595. name: "Front",
  47596. image: {
  47597. source: "./media/characters/rodryana/front.svg",
  47598. extra: 2002/1921,
  47599. bottom: 53/2055
  47600. }
  47601. },
  47602. back: {
  47603. height: math.unit(1.81, "meters"),
  47604. weight: math.unit(69, "kg"),
  47605. name: "Back",
  47606. image: {
  47607. source: "./media/characters/rodryana/back.svg",
  47608. extra: 1993/1926,
  47609. bottom: 48/2041
  47610. }
  47611. },
  47612. maw: {
  47613. height: math.unit(0.19769417475, "meters"),
  47614. name: "Maw",
  47615. image: {
  47616. source: "./media/characters/rodryana/maw.svg"
  47617. }
  47618. },
  47619. slit: {
  47620. height: math.unit(0.31631067961, "meters"),
  47621. name: "Slit",
  47622. image: {
  47623. source: "./media/characters/rodryana/slit.svg"
  47624. }
  47625. },
  47626. },
  47627. [
  47628. {
  47629. name: "Normal",
  47630. height: math.unit(1.81, "meters")
  47631. },
  47632. {
  47633. name: "Mini Macro",
  47634. height: math.unit(181, "meters")
  47635. },
  47636. {
  47637. name: "Macro",
  47638. height: math.unit(452, "meters"),
  47639. default: true
  47640. },
  47641. {
  47642. name: "Mega Macro",
  47643. height: math.unit(1.375, "km")
  47644. },
  47645. {
  47646. name: "Giga Macro",
  47647. height: math.unit(13.575, "km")
  47648. },
  47649. ]
  47650. ))
  47651. characterMakers.push(() => makeCharacter(
  47652. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47653. {
  47654. front: {
  47655. height: math.unit(6, "feet"),
  47656. weight: math.unit(1000, "lb"),
  47657. name: "Front",
  47658. image: {
  47659. source: "./media/characters/asaya/front.svg",
  47660. extra: 1460/1200,
  47661. bottom: 71/1531
  47662. }
  47663. },
  47664. },
  47665. [
  47666. {
  47667. name: "Normal",
  47668. height: math.unit(8, "km"),
  47669. default: true
  47670. },
  47671. ]
  47672. ))
  47673. characterMakers.push(() => makeCharacter(
  47674. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47675. {
  47676. front: {
  47677. height: math.unit(3.5, "meters"),
  47678. name: "Front",
  47679. image: {
  47680. source: "./media/characters/sarzu-and-israz/front.svg",
  47681. extra: 1570/1558,
  47682. bottom: 150/1720
  47683. },
  47684. },
  47685. back: {
  47686. height: math.unit(3.5, "meters"),
  47687. name: "Back",
  47688. image: {
  47689. source: "./media/characters/sarzu-and-israz/back.svg",
  47690. extra: 1523/1509,
  47691. bottom: 132/1655
  47692. },
  47693. },
  47694. frontFemale: {
  47695. height: math.unit(3.5, "meters"),
  47696. name: "Front (Female)",
  47697. image: {
  47698. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47699. extra: 1570/1558,
  47700. bottom: 150/1720
  47701. },
  47702. },
  47703. frontHerm: {
  47704. height: math.unit(3.5, "meters"),
  47705. name: "Front (Herm)",
  47706. image: {
  47707. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47708. extra: 1570/1558,
  47709. bottom: 150/1720
  47710. },
  47711. },
  47712. },
  47713. [
  47714. {
  47715. name: "Normal",
  47716. height: math.unit(3.5, "meters"),
  47717. default: true,
  47718. },
  47719. {
  47720. name: "Macro",
  47721. height: math.unit(65.5, "meters"),
  47722. },
  47723. ],
  47724. ))
  47725. characterMakers.push(() => makeCharacter(
  47726. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47727. {
  47728. front: {
  47729. height: math.unit(6, "feet"),
  47730. weight: math.unit(250, "lb"),
  47731. name: "Front",
  47732. image: {
  47733. source: "./media/characters/zenimma/front.svg",
  47734. extra: 1346/1320,
  47735. bottom: 58/1404
  47736. }
  47737. },
  47738. back: {
  47739. height: math.unit(6, "feet"),
  47740. weight: math.unit(250, "lb"),
  47741. name: "Back",
  47742. image: {
  47743. source: "./media/characters/zenimma/back.svg",
  47744. extra: 1324/1308,
  47745. bottom: 44/1368
  47746. }
  47747. },
  47748. dick: {
  47749. height: math.unit(1.44, "feet"),
  47750. name: "Dick",
  47751. image: {
  47752. source: "./media/characters/zenimma/dick.svg"
  47753. }
  47754. },
  47755. },
  47756. [
  47757. {
  47758. name: "Canon Height",
  47759. height: math.unit(66, "miles"),
  47760. default: true
  47761. },
  47762. ]
  47763. ))
  47764. characterMakers.push(() => makeCharacter(
  47765. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47766. {
  47767. nude: {
  47768. height: math.unit(6, "feet"),
  47769. weight: math.unit(150, "lb"),
  47770. name: "Nude",
  47771. image: {
  47772. source: "./media/characters/shavon/nude.svg",
  47773. extra: 1242/1096,
  47774. bottom: 98/1340
  47775. }
  47776. },
  47777. dressed: {
  47778. height: math.unit(6, "feet"),
  47779. weight: math.unit(150, "lb"),
  47780. name: "Dressed",
  47781. image: {
  47782. source: "./media/characters/shavon/dressed.svg",
  47783. extra: 1242/1096,
  47784. bottom: 98/1340
  47785. }
  47786. },
  47787. },
  47788. [
  47789. {
  47790. name: "Macro",
  47791. height: math.unit(255, "feet"),
  47792. default: true
  47793. },
  47794. ]
  47795. ))
  47796. characterMakers.push(() => makeCharacter(
  47797. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47798. {
  47799. front: {
  47800. height: math.unit(6, "feet"),
  47801. name: "Front",
  47802. image: {
  47803. source: "./media/characters/steph/front.svg",
  47804. extra: 1430/1330,
  47805. bottom: 54/1484
  47806. }
  47807. },
  47808. },
  47809. [
  47810. {
  47811. name: "Normal",
  47812. height: math.unit(6, "feet"),
  47813. default: true
  47814. },
  47815. ]
  47816. ))
  47817. characterMakers.push(() => makeCharacter(
  47818. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47819. {
  47820. front: {
  47821. height: math.unit(9, "feet"),
  47822. weight: math.unit(400, "lb"),
  47823. name: "Front",
  47824. image: {
  47825. source: "./media/characters/kil'aman/front.svg",
  47826. extra: 1210/1159,
  47827. bottom: 109/1319
  47828. }
  47829. },
  47830. head: {
  47831. height: math.unit(2.14, "feet"),
  47832. name: "Head",
  47833. image: {
  47834. source: "./media/characters/kil'aman/head.svg"
  47835. }
  47836. },
  47837. maw: {
  47838. height: math.unit(1.21, "feet"),
  47839. name: "Maw",
  47840. image: {
  47841. source: "./media/characters/kil'aman/maw.svg"
  47842. }
  47843. },
  47844. foot: {
  47845. height: math.unit(1.7, "feet"),
  47846. name: "Foot",
  47847. image: {
  47848. source: "./media/characters/kil'aman/foot.svg"
  47849. }
  47850. },
  47851. dick: {
  47852. height: math.unit(2.1, "feet"),
  47853. name: "Dick",
  47854. image: {
  47855. source: "./media/characters/kil'aman/dick.svg"
  47856. }
  47857. },
  47858. },
  47859. [
  47860. {
  47861. name: "Normal",
  47862. height: math.unit(9, "feet")
  47863. },
  47864. {
  47865. name: "Canon Height",
  47866. height: math.unit(10, "miles"),
  47867. default: true
  47868. },
  47869. {
  47870. name: "Maximum",
  47871. height: math.unit(6e9, "miles")
  47872. },
  47873. ]
  47874. ))
  47875. characterMakers.push(() => makeCharacter(
  47876. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47877. {
  47878. front: {
  47879. height: math.unit(90, "feet"),
  47880. weight: math.unit(675000, "lb"),
  47881. name: "Front",
  47882. image: {
  47883. source: "./media/characters/qadan/front.svg",
  47884. extra: 1012/1004,
  47885. bottom: 78/1090
  47886. }
  47887. },
  47888. back: {
  47889. height: math.unit(90, "feet"),
  47890. weight: math.unit(675000, "lb"),
  47891. name: "Back",
  47892. image: {
  47893. source: "./media/characters/qadan/back.svg",
  47894. extra: 1042/1031,
  47895. bottom: 55/1097
  47896. }
  47897. },
  47898. armored: {
  47899. height: math.unit(90, "feet"),
  47900. weight: math.unit(675000, "lb"),
  47901. name: "Armored",
  47902. image: {
  47903. source: "./media/characters/qadan/armored.svg",
  47904. extra: 1047/1037,
  47905. bottom: 48/1095
  47906. }
  47907. },
  47908. },
  47909. [
  47910. {
  47911. name: "Normal",
  47912. height: math.unit(90, "feet"),
  47913. default: true
  47914. },
  47915. ]
  47916. ))
  47917. characterMakers.push(() => makeCharacter(
  47918. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47919. {
  47920. front: {
  47921. height: math.unit(6, "feet"),
  47922. weight: math.unit(225, "lb"),
  47923. name: "Front",
  47924. image: {
  47925. source: "./media/characters/brooke/front.svg",
  47926. extra: 1050/1010,
  47927. bottom: 66/1116
  47928. }
  47929. },
  47930. back: {
  47931. height: math.unit(6, "feet"),
  47932. weight: math.unit(225, "lb"),
  47933. name: "Back",
  47934. image: {
  47935. source: "./media/characters/brooke/back.svg",
  47936. extra: 1053/1013,
  47937. bottom: 41/1094
  47938. }
  47939. },
  47940. dressed: {
  47941. height: math.unit(6, "feet"),
  47942. weight: math.unit(225, "lb"),
  47943. name: "Dressed",
  47944. image: {
  47945. source: "./media/characters/brooke/dressed.svg",
  47946. extra: 1050/1010,
  47947. bottom: 66/1116
  47948. }
  47949. },
  47950. },
  47951. [
  47952. {
  47953. name: "Canon Height",
  47954. height: math.unit(500, "miles"),
  47955. default: true
  47956. },
  47957. ]
  47958. ))
  47959. characterMakers.push(() => makeCharacter(
  47960. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47961. {
  47962. front: {
  47963. height: math.unit(6 + 2/12, "feet"),
  47964. weight: math.unit(210, "lb"),
  47965. name: "Front",
  47966. image: {
  47967. source: "./media/characters/wubs/front.svg",
  47968. extra: 1345/1325,
  47969. bottom: 70/1415
  47970. }
  47971. },
  47972. back: {
  47973. height: math.unit(6 + 2/12, "feet"),
  47974. weight: math.unit(210, "lb"),
  47975. name: "Back",
  47976. image: {
  47977. source: "./media/characters/wubs/back.svg",
  47978. extra: 1296/1275,
  47979. bottom: 58/1354
  47980. }
  47981. },
  47982. },
  47983. [
  47984. {
  47985. name: "Normal",
  47986. height: math.unit(6 + 2/12, "feet"),
  47987. default: true
  47988. },
  47989. {
  47990. name: "Macro",
  47991. height: math.unit(1000, "feet")
  47992. },
  47993. {
  47994. name: "Megamacro",
  47995. height: math.unit(1, "mile")
  47996. },
  47997. ]
  47998. ))
  47999. characterMakers.push(() => makeCharacter(
  48000. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48001. {
  48002. front: {
  48003. height: math.unit(4, "feet"),
  48004. weight: math.unit(120, "lb"),
  48005. name: "Front",
  48006. image: {
  48007. source: "./media/characters/blue/front.svg",
  48008. extra: 1636/1525,
  48009. bottom: 43/1679
  48010. }
  48011. },
  48012. back: {
  48013. height: math.unit(4, "feet"),
  48014. weight: math.unit(120, "lb"),
  48015. name: "Back",
  48016. image: {
  48017. source: "./media/characters/blue/back.svg",
  48018. extra: 1660/1560,
  48019. bottom: 57/1717
  48020. }
  48021. },
  48022. paws: {
  48023. height: math.unit(0.826, "feet"),
  48024. name: "Paws",
  48025. image: {
  48026. source: "./media/characters/blue/paws.svg"
  48027. }
  48028. },
  48029. },
  48030. [
  48031. {
  48032. name: "Micro",
  48033. height: math.unit(3, "inches")
  48034. },
  48035. {
  48036. name: "Normal",
  48037. height: math.unit(4, "feet"),
  48038. default: true
  48039. },
  48040. {
  48041. name: "Femenine Form",
  48042. height: math.unit(14, "feet")
  48043. },
  48044. {
  48045. name: "Werebat Form",
  48046. height: math.unit(18, "feet")
  48047. },
  48048. ]
  48049. ))
  48050. characterMakers.push(() => makeCharacter(
  48051. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48052. {
  48053. female: {
  48054. height: math.unit(7 + 4/12, "feet"),
  48055. weight: math.unit(243, "lb"),
  48056. name: "Female",
  48057. image: {
  48058. source: "./media/characters/kaya/female.svg",
  48059. extra: 975/898,
  48060. bottom: 34/1009
  48061. }
  48062. },
  48063. herm: {
  48064. height: math.unit(7 + 4/12, "feet"),
  48065. weight: math.unit(243, "lb"),
  48066. name: "Herm",
  48067. image: {
  48068. source: "./media/characters/kaya/herm.svg",
  48069. extra: 975/898,
  48070. bottom: 34/1009
  48071. }
  48072. },
  48073. },
  48074. [
  48075. {
  48076. name: "Normal",
  48077. height: math.unit(7 + 4/12, "feet"),
  48078. default: true
  48079. },
  48080. ]
  48081. ))
  48082. characterMakers.push(() => makeCharacter(
  48083. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48084. {
  48085. female: {
  48086. height: math.unit(9 + 4/12, "feet"),
  48087. weight: math.unit(398, "lb"),
  48088. name: "Female",
  48089. image: {
  48090. source: "./media/characters/kassandra/female.svg",
  48091. extra: 908/839,
  48092. bottom: 61/969
  48093. }
  48094. },
  48095. intersex: {
  48096. height: math.unit(9 + 4/12, "feet"),
  48097. weight: math.unit(398, "lb"),
  48098. name: "Intersex",
  48099. image: {
  48100. source: "./media/characters/kassandra/intersex.svg",
  48101. extra: 908/839,
  48102. bottom: 61/969
  48103. }
  48104. },
  48105. },
  48106. [
  48107. {
  48108. name: "Normal",
  48109. height: math.unit(9 + 4/12, "feet"),
  48110. default: true
  48111. },
  48112. ]
  48113. ))
  48114. characterMakers.push(() => makeCharacter(
  48115. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48116. {
  48117. front: {
  48118. height: math.unit(3, "meters"),
  48119. name: "Front",
  48120. image: {
  48121. source: "./media/characters/amy/front.svg",
  48122. extra: 1380/1343,
  48123. bottom: 70/1450
  48124. }
  48125. },
  48126. back: {
  48127. height: math.unit(3, "meters"),
  48128. name: "Back",
  48129. image: {
  48130. source: "./media/characters/amy/back.svg",
  48131. extra: 1380/1347,
  48132. bottom: 66/1446
  48133. }
  48134. },
  48135. },
  48136. [
  48137. {
  48138. name: "Normal",
  48139. height: math.unit(3, "meters"),
  48140. default: true
  48141. },
  48142. ]
  48143. ))
  48144. characterMakers.push(() => makeCharacter(
  48145. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48146. {
  48147. side: {
  48148. height: math.unit(47, "cm"),
  48149. weight: math.unit(10.8, "kg"),
  48150. name: "Side",
  48151. image: {
  48152. source: "./media/characters/alphaschakal/side.svg",
  48153. extra: 1058/568,
  48154. bottom: 62/1120
  48155. }
  48156. },
  48157. back: {
  48158. height: math.unit(78, "cm"),
  48159. weight: math.unit(10.8, "kg"),
  48160. name: "Back",
  48161. image: {
  48162. source: "./media/characters/alphaschakal/back.svg",
  48163. extra: 1102/942,
  48164. bottom: 185/1287
  48165. }
  48166. },
  48167. head: {
  48168. height: math.unit(28, "cm"),
  48169. name: "Head",
  48170. image: {
  48171. source: "./media/characters/alphaschakal/head.svg",
  48172. extra: 696/508,
  48173. bottom: 0/696
  48174. }
  48175. },
  48176. paw: {
  48177. height: math.unit(16, "cm"),
  48178. name: "Paw",
  48179. image: {
  48180. source: "./media/characters/alphaschakal/paw.svg"
  48181. }
  48182. },
  48183. },
  48184. [
  48185. {
  48186. name: "Normal",
  48187. height: math.unit(47, "cm"),
  48188. default: true
  48189. },
  48190. {
  48191. name: "Macro",
  48192. height: math.unit(340, "cm")
  48193. },
  48194. ]
  48195. ))
  48196. characterMakers.push(() => makeCharacter(
  48197. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48198. {
  48199. front: {
  48200. height: math.unit(36, "earths"),
  48201. name: "Front",
  48202. image: {
  48203. source: "./media/characters/ecobyss/front.svg",
  48204. extra: 1282/1215,
  48205. bottom: 11/1293
  48206. }
  48207. },
  48208. back: {
  48209. height: math.unit(36, "earths"),
  48210. name: "Back",
  48211. image: {
  48212. source: "./media/characters/ecobyss/back.svg",
  48213. extra: 1291/1222,
  48214. bottom: 8/1299
  48215. }
  48216. },
  48217. },
  48218. [
  48219. {
  48220. name: "Normal",
  48221. height: math.unit(36, "earths"),
  48222. default: true
  48223. },
  48224. ]
  48225. ))
  48226. characterMakers.push(() => makeCharacter(
  48227. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48228. {
  48229. front: {
  48230. height: math.unit(12, "feet"),
  48231. name: "Front",
  48232. image: {
  48233. source: "./media/characters/vasuk/front.svg",
  48234. extra: 1326/1207,
  48235. bottom: 64/1390
  48236. }
  48237. },
  48238. },
  48239. [
  48240. {
  48241. name: "Normal",
  48242. height: math.unit(12, "feet"),
  48243. default: true
  48244. },
  48245. ]
  48246. ))
  48247. characterMakers.push(() => makeCharacter(
  48248. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48249. {
  48250. side: {
  48251. height: math.unit(100, "feet"),
  48252. name: "Side",
  48253. image: {
  48254. source: "./media/characters/linneaus/side.svg",
  48255. extra: 987/807,
  48256. bottom: 47/1034
  48257. }
  48258. },
  48259. },
  48260. [
  48261. {
  48262. name: "Macro",
  48263. height: math.unit(100, "feet"),
  48264. default: true
  48265. },
  48266. ]
  48267. ))
  48268. characterMakers.push(() => makeCharacter(
  48269. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48270. {
  48271. front: {
  48272. height: math.unit(8, "feet"),
  48273. weight: math.unit(1200, "lb"),
  48274. name: "Front",
  48275. image: {
  48276. source: "./media/characters/nyterious-daligdig/front.svg",
  48277. extra: 1284/1094,
  48278. bottom: 84/1368
  48279. }
  48280. },
  48281. back: {
  48282. height: math.unit(8, "feet"),
  48283. weight: math.unit(1200, "lb"),
  48284. name: "Back",
  48285. image: {
  48286. source: "./media/characters/nyterious-daligdig/back.svg",
  48287. extra: 1301/1121,
  48288. bottom: 129/1430
  48289. }
  48290. },
  48291. mouth: {
  48292. height: math.unit(1.464, "feet"),
  48293. name: "Mouth",
  48294. image: {
  48295. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48296. }
  48297. },
  48298. },
  48299. [
  48300. {
  48301. name: "Small",
  48302. height: math.unit(8, "feet"),
  48303. default: true
  48304. },
  48305. {
  48306. name: "Normal",
  48307. height: math.unit(15, "feet")
  48308. },
  48309. {
  48310. name: "Macro",
  48311. height: math.unit(90, "feet")
  48312. },
  48313. ]
  48314. ))
  48315. characterMakers.push(() => makeCharacter(
  48316. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48317. {
  48318. front: {
  48319. height: math.unit(7 + 4/12, "feet"),
  48320. weight: math.unit(252, "lb"),
  48321. name: "Front",
  48322. image: {
  48323. source: "./media/characters/bandel/front.svg",
  48324. extra: 1946/1775,
  48325. bottom: 26/1972
  48326. }
  48327. },
  48328. back: {
  48329. height: math.unit(7 + 4/12, "feet"),
  48330. weight: math.unit(252, "lb"),
  48331. name: "Back",
  48332. image: {
  48333. source: "./media/characters/bandel/back.svg",
  48334. extra: 1940/1770,
  48335. bottom: 25/1965
  48336. }
  48337. },
  48338. maw: {
  48339. height: math.unit(2.15, "feet"),
  48340. name: "Maw",
  48341. image: {
  48342. source: "./media/characters/bandel/maw.svg"
  48343. }
  48344. },
  48345. stomach: {
  48346. height: math.unit(1.95, "feet"),
  48347. name: "Stomach",
  48348. image: {
  48349. source: "./media/characters/bandel/stomach.svg"
  48350. }
  48351. },
  48352. },
  48353. [
  48354. {
  48355. name: "Normal",
  48356. height: math.unit(7 + 4/12, "feet"),
  48357. default: true
  48358. },
  48359. ]
  48360. ))
  48361. characterMakers.push(() => makeCharacter(
  48362. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48363. {
  48364. front: {
  48365. height: math.unit(10 + 5/12, "feet"),
  48366. weight: math.unit(773.5, "kg"),
  48367. name: "Front",
  48368. image: {
  48369. source: "./media/characters/zed/front.svg",
  48370. extra: 987/941,
  48371. bottom: 52/1039
  48372. }
  48373. },
  48374. },
  48375. [
  48376. {
  48377. name: "Short",
  48378. height: math.unit(5 + 4/12, "feet")
  48379. },
  48380. {
  48381. name: "Average",
  48382. height: math.unit(10 + 5/12, "feet"),
  48383. default: true
  48384. },
  48385. {
  48386. name: "Mini-Macro",
  48387. height: math.unit(24 + 9/12, "feet")
  48388. },
  48389. {
  48390. name: "Macro",
  48391. height: math.unit(249, "feet")
  48392. },
  48393. {
  48394. name: "Mega-Macro",
  48395. height: math.unit(12490, "feet")
  48396. },
  48397. {
  48398. name: "Giga-Macro",
  48399. height: math.unit(24.9, "miles")
  48400. },
  48401. {
  48402. name: "Tera-Macro",
  48403. height: math.unit(24900, "miles")
  48404. },
  48405. {
  48406. name: "Cosmic Scale",
  48407. height: math.unit(38.9, "lightyears")
  48408. },
  48409. {
  48410. name: "Universal Scale",
  48411. height: math.unit(138e12, "lightyears")
  48412. },
  48413. ]
  48414. ))
  48415. characterMakers.push(() => makeCharacter(
  48416. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48417. {
  48418. front: {
  48419. height: math.unit(1561, "inches"),
  48420. name: "Front",
  48421. image: {
  48422. source: "./media/characters/ivan/front.svg",
  48423. extra: 1126/1071,
  48424. bottom: 26/1152
  48425. }
  48426. },
  48427. back: {
  48428. height: math.unit(1561, "inches"),
  48429. name: "Back",
  48430. image: {
  48431. source: "./media/characters/ivan/back.svg",
  48432. extra: 1134/1079,
  48433. bottom: 30/1164
  48434. }
  48435. },
  48436. },
  48437. [
  48438. {
  48439. name: "Normal",
  48440. height: math.unit(1561, "inches"),
  48441. default: true
  48442. },
  48443. ]
  48444. ))
  48445. characterMakers.push(() => makeCharacter(
  48446. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48447. {
  48448. front: {
  48449. height: math.unit(5 + 7/12, "feet"),
  48450. weight: math.unit(150, "lb"),
  48451. name: "Front",
  48452. image: {
  48453. source: "./media/characters/robin-arctic-hare/front.svg",
  48454. extra: 1148/974,
  48455. bottom: 20/1168
  48456. }
  48457. },
  48458. },
  48459. [
  48460. {
  48461. name: "Normal",
  48462. height: math.unit(5 + 7/12, "feet"),
  48463. default: true
  48464. },
  48465. ]
  48466. ))
  48467. characterMakers.push(() => makeCharacter(
  48468. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48469. {
  48470. side: {
  48471. height: math.unit(5, "feet"),
  48472. name: "Side",
  48473. image: {
  48474. source: "./media/characters/birch/side.svg",
  48475. extra: 985/796,
  48476. bottom: 111/1096
  48477. }
  48478. },
  48479. },
  48480. [
  48481. {
  48482. name: "Normal",
  48483. height: math.unit(5, "feet"),
  48484. default: true
  48485. },
  48486. ]
  48487. ))
  48488. characterMakers.push(() => makeCharacter(
  48489. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48490. {
  48491. front: {
  48492. height: math.unit(4, "feet"),
  48493. name: "Front",
  48494. image: {
  48495. source: "./media/characters/rasp/front.svg",
  48496. extra: 561/478,
  48497. bottom: 74/635
  48498. }
  48499. },
  48500. },
  48501. [
  48502. {
  48503. name: "Normal",
  48504. height: math.unit(4, "feet"),
  48505. default: true
  48506. },
  48507. ]
  48508. ))
  48509. characterMakers.push(() => makeCharacter(
  48510. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48511. {
  48512. front: {
  48513. height: math.unit(4 + 6/12, "feet"),
  48514. name: "Front",
  48515. image: {
  48516. source: "./media/characters/agatha/front.svg",
  48517. extra: 947/933,
  48518. bottom: 42/989
  48519. }
  48520. },
  48521. back: {
  48522. height: math.unit(4 + 6/12, "feet"),
  48523. name: "Back",
  48524. image: {
  48525. source: "./media/characters/agatha/back.svg",
  48526. extra: 935/922,
  48527. bottom: 48/983
  48528. }
  48529. },
  48530. },
  48531. [
  48532. {
  48533. name: "Normal",
  48534. height: math.unit(4 + 6 /12, "feet"),
  48535. default: true
  48536. },
  48537. {
  48538. name: "Max Size",
  48539. height: math.unit(500, "feet")
  48540. },
  48541. ]
  48542. ))
  48543. characterMakers.push(() => makeCharacter(
  48544. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48545. {
  48546. side: {
  48547. height: math.unit(30, "feet"),
  48548. name: "Side",
  48549. image: {
  48550. source: "./media/characters/roggy/side.svg",
  48551. extra: 909/643,
  48552. bottom: 63/972
  48553. }
  48554. },
  48555. lounging: {
  48556. height: math.unit(20, "feet"),
  48557. name: "Lounging",
  48558. image: {
  48559. source: "./media/characters/roggy/lounging.svg",
  48560. extra: 643/479,
  48561. bottom: 145/788
  48562. }
  48563. },
  48564. handpaw: {
  48565. height: math.unit(13.1, "feet"),
  48566. name: "Handpaw",
  48567. image: {
  48568. source: "./media/characters/roggy/handpaw.svg"
  48569. }
  48570. },
  48571. footpaw: {
  48572. height: math.unit(15.8, "feet"),
  48573. name: "Footpaw",
  48574. image: {
  48575. source: "./media/characters/roggy/footpaw.svg"
  48576. }
  48577. },
  48578. },
  48579. [
  48580. {
  48581. name: "Menacing",
  48582. height: math.unit(30, "feet"),
  48583. default: true
  48584. },
  48585. ]
  48586. ))
  48587. characterMakers.push(() => makeCharacter(
  48588. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48589. {
  48590. front: {
  48591. height: math.unit(5 + 7/12, "feet"),
  48592. weight: math.unit(135, "lb"),
  48593. name: "Front",
  48594. image: {
  48595. source: "./media/characters/naomi/front.svg",
  48596. extra: 1209/1154,
  48597. bottom: 129/1338
  48598. }
  48599. },
  48600. back: {
  48601. height: math.unit(5 + 7/12, "feet"),
  48602. weight: math.unit(135, "lb"),
  48603. name: "Back",
  48604. image: {
  48605. source: "./media/characters/naomi/back.svg",
  48606. extra: 1252/1190,
  48607. bottom: 23/1275
  48608. }
  48609. },
  48610. },
  48611. [
  48612. {
  48613. name: "Normal",
  48614. height: math.unit(5 + 7 /12, "feet"),
  48615. default: true
  48616. },
  48617. ]
  48618. ))
  48619. characterMakers.push(() => makeCharacter(
  48620. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48621. {
  48622. side: {
  48623. height: math.unit(35, "meters"),
  48624. name: "Side",
  48625. image: {
  48626. source: "./media/characters/kimpi/side.svg",
  48627. extra: 419/382,
  48628. bottom: 63/482
  48629. }
  48630. },
  48631. hand: {
  48632. height: math.unit(8.96, "meters"),
  48633. name: "Hand",
  48634. image: {
  48635. source: "./media/characters/kimpi/hand.svg"
  48636. }
  48637. },
  48638. },
  48639. [
  48640. {
  48641. name: "Normal",
  48642. height: math.unit(35, "meters"),
  48643. default: true
  48644. },
  48645. ]
  48646. ))
  48647. characterMakers.push(() => makeCharacter(
  48648. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48649. {
  48650. front: {
  48651. height: math.unit(4 + 4/12, "feet"),
  48652. name: "Front",
  48653. image: {
  48654. source: "./media/characters/pepper-purrloin/front.svg",
  48655. extra: 1141/1024,
  48656. bottom: 21/1162
  48657. }
  48658. },
  48659. },
  48660. [
  48661. {
  48662. name: "Normal",
  48663. height: math.unit(4 + 4/12, "feet"),
  48664. default: true
  48665. },
  48666. ]
  48667. ))
  48668. characterMakers.push(() => makeCharacter(
  48669. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48670. {
  48671. front: {
  48672. height: math.unit(6 + 2/12, "feet"),
  48673. name: "Front",
  48674. image: {
  48675. source: "./media/characters/raphael/front.svg",
  48676. extra: 1101/962,
  48677. bottom: 59/1160
  48678. }
  48679. },
  48680. },
  48681. [
  48682. {
  48683. name: "Normal",
  48684. height: math.unit(6 + 2/12, "feet"),
  48685. default: true
  48686. },
  48687. ]
  48688. ))
  48689. characterMakers.push(() => makeCharacter(
  48690. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48691. {
  48692. front: {
  48693. height: math.unit(6, "feet"),
  48694. weight: math.unit(150, "lb"),
  48695. name: "Front",
  48696. image: {
  48697. source: "./media/characters/victor-williams/front.svg",
  48698. extra: 1894/1825,
  48699. bottom: 67/1961
  48700. }
  48701. },
  48702. },
  48703. [
  48704. {
  48705. name: "Normal",
  48706. height: math.unit(6, "feet"),
  48707. default: true
  48708. },
  48709. ]
  48710. ))
  48711. characterMakers.push(() => makeCharacter(
  48712. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48713. {
  48714. front: {
  48715. height: math.unit(5 + 8/12, "feet"),
  48716. weight: math.unit(150, "lb"),
  48717. name: "Front",
  48718. image: {
  48719. source: "./media/characters/rachel/front.svg",
  48720. extra: 1902/1787,
  48721. bottom: 46/1948
  48722. }
  48723. },
  48724. },
  48725. [
  48726. {
  48727. name: "Base Height",
  48728. height: math.unit(5 + 8/12, "feet"),
  48729. default: true
  48730. },
  48731. {
  48732. name: "Macro",
  48733. height: math.unit(200, "feet")
  48734. },
  48735. {
  48736. name: "Mega Macro",
  48737. height: math.unit(1, "mile")
  48738. },
  48739. {
  48740. name: "Giga Macro",
  48741. height: math.unit(1500, "miles")
  48742. },
  48743. {
  48744. name: "Tera Macro",
  48745. height: math.unit(8000, "miles")
  48746. },
  48747. {
  48748. name: "Tera Macro+",
  48749. height: math.unit(2e5, "miles")
  48750. },
  48751. ]
  48752. ))
  48753. characterMakers.push(() => makeCharacter(
  48754. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48755. {
  48756. front: {
  48757. height: math.unit(6.5, "feet"),
  48758. name: "Front",
  48759. image: {
  48760. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48761. extra: 860/819,
  48762. bottom: 307/1167
  48763. }
  48764. },
  48765. back: {
  48766. height: math.unit(6.5, "feet"),
  48767. name: "Back",
  48768. image: {
  48769. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48770. extra: 880/837,
  48771. bottom: 395/1275
  48772. }
  48773. },
  48774. sleeping: {
  48775. height: math.unit(2.79, "feet"),
  48776. name: "Sleeping",
  48777. image: {
  48778. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48779. extra: 465/383,
  48780. bottom: 263/728
  48781. }
  48782. },
  48783. maw: {
  48784. height: math.unit(2.52, "feet"),
  48785. name: "Maw",
  48786. image: {
  48787. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48788. }
  48789. },
  48790. },
  48791. [
  48792. {
  48793. name: "Normal",
  48794. height: math.unit(6.5, "feet"),
  48795. default: true
  48796. },
  48797. ]
  48798. ))
  48799. characterMakers.push(() => makeCharacter(
  48800. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48801. {
  48802. front: {
  48803. height: math.unit(5, "feet"),
  48804. name: "Front",
  48805. image: {
  48806. source: "./media/characters/nova-nerium/front.svg",
  48807. extra: 1548/1392,
  48808. bottom: 374/1922
  48809. }
  48810. },
  48811. back: {
  48812. height: math.unit(5, "feet"),
  48813. name: "Back",
  48814. image: {
  48815. source: "./media/characters/nova-nerium/back.svg",
  48816. extra: 1658/1468,
  48817. bottom: 257/1915
  48818. }
  48819. },
  48820. },
  48821. [
  48822. {
  48823. name: "Normal",
  48824. height: math.unit(5, "feet"),
  48825. default: true
  48826. },
  48827. ]
  48828. ))
  48829. characterMakers.push(() => makeCharacter(
  48830. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48831. {
  48832. front: {
  48833. height: math.unit(5 + 4/12, "feet"),
  48834. name: "Front",
  48835. image: {
  48836. source: "./media/characters/ashe-pyriph/front.svg",
  48837. extra: 1935/1747,
  48838. bottom: 60/1995
  48839. }
  48840. },
  48841. },
  48842. [
  48843. {
  48844. name: "Normal",
  48845. height: math.unit(5 + 4/12, "feet"),
  48846. default: true
  48847. },
  48848. ]
  48849. ))
  48850. characterMakers.push(() => makeCharacter(
  48851. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48852. {
  48853. front: {
  48854. height: math.unit(8.7, "feet"),
  48855. name: "Front",
  48856. image: {
  48857. source: "./media/characters/flicker-wisp/front.svg",
  48858. extra: 1835/1613,
  48859. bottom: 449/2284
  48860. }
  48861. },
  48862. side: {
  48863. height: math.unit(8.7, "feet"),
  48864. name: "Side",
  48865. image: {
  48866. source: "./media/characters/flicker-wisp/side.svg",
  48867. extra: 1841/1642,
  48868. bottom: 336/2177
  48869. },
  48870. default: true
  48871. },
  48872. maw: {
  48873. height: math.unit(3.35, "feet"),
  48874. name: "Maw",
  48875. image: {
  48876. source: "./media/characters/flicker-wisp/maw.svg",
  48877. extra: 2338/1506,
  48878. bottom: 0/2338
  48879. }
  48880. },
  48881. ovipositor: {
  48882. height: math.unit(4.95, "feet"),
  48883. name: "Ovipositor",
  48884. image: {
  48885. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48886. }
  48887. },
  48888. egg: {
  48889. height: math.unit(0.385, "feet"),
  48890. weight: math.unit(2, "lb"),
  48891. name: "Egg",
  48892. image: {
  48893. source: "./media/characters/flicker-wisp/egg.svg"
  48894. }
  48895. },
  48896. },
  48897. [
  48898. {
  48899. name: "Normal",
  48900. height: math.unit(8.7, "feet"),
  48901. default: true
  48902. },
  48903. ]
  48904. ))
  48905. characterMakers.push(() => makeCharacter(
  48906. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48907. {
  48908. side: {
  48909. height: math.unit(11, "feet"),
  48910. name: "Side",
  48911. image: {
  48912. source: "./media/characters/faefnul/side.svg",
  48913. extra: 1100/1007,
  48914. bottom: 0/1100
  48915. }
  48916. },
  48917. },
  48918. [
  48919. {
  48920. name: "Normal",
  48921. height: math.unit(11, "feet"),
  48922. default: true
  48923. },
  48924. ]
  48925. ))
  48926. characterMakers.push(() => makeCharacter(
  48927. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48928. {
  48929. front: {
  48930. height: math.unit(6 + 2/12, "feet"),
  48931. name: "Front",
  48932. image: {
  48933. source: "./media/characters/shady/front.svg",
  48934. extra: 502/461,
  48935. bottom: 9/511
  48936. }
  48937. },
  48938. kneeling: {
  48939. height: math.unit(4.6, "feet"),
  48940. name: "Kneeling",
  48941. image: {
  48942. source: "./media/characters/shady/kneeling.svg",
  48943. extra: 1328/1219,
  48944. bottom: 117/1445
  48945. }
  48946. },
  48947. maw: {
  48948. height: math.unit(2, "feet"),
  48949. name: "Maw",
  48950. image: {
  48951. source: "./media/characters/shady/maw.svg"
  48952. }
  48953. },
  48954. },
  48955. [
  48956. {
  48957. name: "Nano",
  48958. height: math.unit(1, "mm")
  48959. },
  48960. {
  48961. name: "Micro",
  48962. height: math.unit(12, "mm")
  48963. },
  48964. {
  48965. name: "Tiny",
  48966. height: math.unit(3, "inches")
  48967. },
  48968. {
  48969. name: "Normal",
  48970. height: math.unit(6 + 2/12, "feet"),
  48971. default: true
  48972. },
  48973. {
  48974. name: "Big",
  48975. height: math.unit(15, "feet")
  48976. },
  48977. {
  48978. name: "Macro",
  48979. height: math.unit(150, "feet")
  48980. },
  48981. {
  48982. name: "Titanic",
  48983. height: math.unit(500, "feet")
  48984. },
  48985. ]
  48986. ))
  48987. characterMakers.push(() => makeCharacter(
  48988. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48989. {
  48990. front: {
  48991. height: math.unit(12, "feet"),
  48992. name: "Front",
  48993. image: {
  48994. source: "./media/characters/fenrir/front.svg",
  48995. extra: 968/875,
  48996. bottom: 22/990
  48997. }
  48998. },
  48999. },
  49000. [
  49001. {
  49002. name: "Big",
  49003. height: math.unit(12, "feet"),
  49004. default: true
  49005. },
  49006. ]
  49007. ))
  49008. characterMakers.push(() => makeCharacter(
  49009. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49010. {
  49011. front: {
  49012. height: math.unit(5 + 4/12, "feet"),
  49013. name: "Front",
  49014. image: {
  49015. source: "./media/characters/makar/front.svg",
  49016. extra: 1181/1112,
  49017. bottom: 78/1259
  49018. }
  49019. },
  49020. },
  49021. [
  49022. {
  49023. name: "Normal",
  49024. height: math.unit(5 + 4/12, "feet"),
  49025. default: true
  49026. },
  49027. ]
  49028. ))
  49029. characterMakers.push(() => makeCharacter(
  49030. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49031. {
  49032. front: {
  49033. height: math.unit(5 + 7/12, "feet"),
  49034. name: "Front",
  49035. image: {
  49036. source: "./media/characters/callow/front.svg",
  49037. extra: 1482/1304,
  49038. bottom: 23/1505
  49039. }
  49040. },
  49041. back: {
  49042. height: math.unit(5 + 7/12, "feet"),
  49043. name: "Back",
  49044. image: {
  49045. source: "./media/characters/callow/back.svg",
  49046. extra: 1484/1296,
  49047. bottom: 25/1509
  49048. }
  49049. },
  49050. },
  49051. [
  49052. {
  49053. name: "Micro",
  49054. height: math.unit(3, "inches"),
  49055. default: true
  49056. },
  49057. {
  49058. name: "Normal",
  49059. height: math.unit(5 + 7/12, "feet")
  49060. },
  49061. ]
  49062. ))
  49063. characterMakers.push(() => makeCharacter(
  49064. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49065. {
  49066. front: {
  49067. height: math.unit(6 + 2/12, "feet"),
  49068. name: "Front",
  49069. image: {
  49070. source: "./media/characters/natel/front.svg",
  49071. extra: 1833/1692,
  49072. bottom: 166/1999
  49073. }
  49074. },
  49075. },
  49076. [
  49077. {
  49078. name: "Normal",
  49079. height: math.unit(6 + 2/12, "feet"),
  49080. default: true
  49081. },
  49082. ]
  49083. ))
  49084. characterMakers.push(() => makeCharacter(
  49085. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49086. {
  49087. front: {
  49088. height: math.unit(1.75, "meters"),
  49089. name: "Front",
  49090. image: {
  49091. source: "./media/characters/misu/front.svg",
  49092. extra: 1690/1558,
  49093. bottom: 234/1924
  49094. }
  49095. },
  49096. back: {
  49097. height: math.unit(1.75, "meters"),
  49098. name: "Back",
  49099. image: {
  49100. source: "./media/characters/misu/back.svg",
  49101. extra: 1762/1618,
  49102. bottom: 146/1908
  49103. }
  49104. },
  49105. frontNude: {
  49106. height: math.unit(1.75, "meters"),
  49107. name: "Front (Nude)",
  49108. image: {
  49109. source: "./media/characters/misu/front-nude.svg",
  49110. extra: 1690/1558,
  49111. bottom: 234/1924
  49112. }
  49113. },
  49114. backNude: {
  49115. height: math.unit(1.75, "meters"),
  49116. name: "Back (Nude)",
  49117. image: {
  49118. source: "./media/characters/misu/back-nude.svg",
  49119. extra: 1762/1618,
  49120. bottom: 146/1908
  49121. }
  49122. },
  49123. frontErect: {
  49124. height: math.unit(1.75, "meters"),
  49125. name: "Front (Erect)",
  49126. image: {
  49127. source: "./media/characters/misu/front-erect.svg",
  49128. extra: 1690/1558,
  49129. bottom: 234/1924
  49130. }
  49131. },
  49132. maw: {
  49133. height: math.unit(0.47, "meters"),
  49134. name: "Maw",
  49135. image: {
  49136. source: "./media/characters/misu/maw.svg"
  49137. }
  49138. },
  49139. head: {
  49140. height: math.unit(0.35, "meters"),
  49141. name: "Head",
  49142. image: {
  49143. source: "./media/characters/misu/head.svg"
  49144. }
  49145. },
  49146. rear: {
  49147. height: math.unit(0.47, "meters"),
  49148. name: "Rear",
  49149. image: {
  49150. source: "./media/characters/misu/rear.svg"
  49151. }
  49152. },
  49153. },
  49154. [
  49155. {
  49156. name: "Normal",
  49157. height: math.unit(1.75, "meters")
  49158. },
  49159. {
  49160. name: "Not good for the people",
  49161. height: math.unit(42, "meters")
  49162. },
  49163. {
  49164. name: "Not good for the neighborhood",
  49165. height: math.unit(135, "meters")
  49166. },
  49167. {
  49168. name: "Bit bigger problem",
  49169. height: math.unit(380, "meters"),
  49170. default: true
  49171. },
  49172. {
  49173. name: "Not good for the city",
  49174. height: math.unit(1.5, "km")
  49175. },
  49176. {
  49177. name: "Not good for the county",
  49178. height: math.unit(5.5, "km")
  49179. },
  49180. {
  49181. name: "Not good for the state",
  49182. height: math.unit(25, "km")
  49183. },
  49184. {
  49185. name: "Not good for the country",
  49186. height: math.unit(125, "km")
  49187. },
  49188. {
  49189. name: "Not good for the continent",
  49190. height: math.unit(2100, "km")
  49191. },
  49192. {
  49193. name: "Not good for the planet",
  49194. height: math.unit(35000, "km")
  49195. },
  49196. {
  49197. name: "Just no",
  49198. height: math.unit(8.5e18, "km")
  49199. },
  49200. ]
  49201. ))
  49202. characterMakers.push(() => makeCharacter(
  49203. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49204. {
  49205. front: {
  49206. height: math.unit(6.5, "feet"),
  49207. name: "Front",
  49208. image: {
  49209. source: "./media/characters/poppy/front.svg",
  49210. extra: 1878/1812,
  49211. bottom: 43/1921
  49212. }
  49213. },
  49214. feet: {
  49215. height: math.unit(1.06, "feet"),
  49216. name: "Feet",
  49217. image: {
  49218. source: "./media/characters/poppy/feet.svg",
  49219. extra: 1083/1083,
  49220. bottom: 87/1170
  49221. }
  49222. },
  49223. },
  49224. [
  49225. {
  49226. name: "Human",
  49227. height: math.unit(6.5, "feet")
  49228. },
  49229. {
  49230. name: "Default",
  49231. height: math.unit(300, "feet"),
  49232. default: true
  49233. },
  49234. {
  49235. name: "Huge",
  49236. height: math.unit(850, "feet")
  49237. },
  49238. {
  49239. name: "Mega",
  49240. height: math.unit(8000, "feet")
  49241. },
  49242. {
  49243. name: "Giga",
  49244. height: math.unit(300, "miles")
  49245. },
  49246. ]
  49247. ))
  49248. characterMakers.push(() => makeCharacter(
  49249. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49250. {
  49251. bipedal: {
  49252. height: math.unit(7, "feet"),
  49253. name: "Bipedal",
  49254. image: {
  49255. source: "./media/characters/zener/bipedal.svg",
  49256. extra: 874/805,
  49257. bottom: 109/983
  49258. }
  49259. },
  49260. quadrupedal: {
  49261. height: math.unit(4.64, "feet"),
  49262. name: "Quadrupedal",
  49263. image: {
  49264. source: "./media/characters/zener/quadrupedal.svg",
  49265. extra: 638/507,
  49266. bottom: 190/828
  49267. }
  49268. },
  49269. cock: {
  49270. height: math.unit(18, "inches"),
  49271. name: "Cock",
  49272. image: {
  49273. source: "./media/characters/zener/cock.svg"
  49274. }
  49275. },
  49276. },
  49277. [
  49278. {
  49279. name: "Normal",
  49280. height: math.unit(7, "feet"),
  49281. default: true
  49282. },
  49283. ]
  49284. ))
  49285. characterMakers.push(() => makeCharacter(
  49286. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49287. {
  49288. nude: {
  49289. height: math.unit(5 + 6/12, "feet"),
  49290. name: "Nude",
  49291. image: {
  49292. source: "./media/characters/charlie-dog/nude.svg",
  49293. extra: 768/734,
  49294. bottom: 26/794
  49295. }
  49296. },
  49297. dressed: {
  49298. height: math.unit(5 + 6/12, "feet"),
  49299. name: "Dressed",
  49300. image: {
  49301. source: "./media/characters/charlie-dog/dressed.svg",
  49302. extra: 768/734,
  49303. bottom: 26/794
  49304. }
  49305. },
  49306. },
  49307. [
  49308. {
  49309. name: "Normal",
  49310. height: math.unit(5 + 6/12, "feet"),
  49311. default: true
  49312. },
  49313. ]
  49314. ))
  49315. characterMakers.push(() => makeCharacter(
  49316. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49317. {
  49318. front: {
  49319. height: math.unit(6 + 4/12, "feet"),
  49320. name: "Front",
  49321. image: {
  49322. source: "./media/characters/ir'istrasz/front.svg",
  49323. extra: 1014/977,
  49324. bottom: 65/1079
  49325. }
  49326. },
  49327. back: {
  49328. height: math.unit(6 + 4/12, "feet"),
  49329. name: "Back",
  49330. image: {
  49331. source: "./media/characters/ir'istrasz/back.svg",
  49332. extra: 1024/992,
  49333. bottom: 34/1058
  49334. }
  49335. },
  49336. },
  49337. [
  49338. {
  49339. name: "Normal",
  49340. height: math.unit(6 + 4/12, "feet"),
  49341. default: true
  49342. },
  49343. ]
  49344. ))
  49345. characterMakers.push(() => makeCharacter(
  49346. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49347. {
  49348. front: {
  49349. height: math.unit(5 + 8/12, "feet"),
  49350. name: "Front",
  49351. image: {
  49352. source: "./media/characters/dee-ditto/front.svg",
  49353. extra: 1874/1785,
  49354. bottom: 68/1942
  49355. }
  49356. },
  49357. back: {
  49358. height: math.unit(5 + 8/12, "feet"),
  49359. name: "Back",
  49360. image: {
  49361. source: "./media/characters/dee-ditto/back.svg",
  49362. extra: 1870/1783,
  49363. bottom: 77/1947
  49364. }
  49365. },
  49366. },
  49367. [
  49368. {
  49369. name: "Normal",
  49370. height: math.unit(5 + 8/12, "feet"),
  49371. default: true
  49372. },
  49373. ]
  49374. ))
  49375. characterMakers.push(() => makeCharacter(
  49376. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49377. {
  49378. front: {
  49379. height: math.unit(7 + 6/12, "feet"),
  49380. name: "Front",
  49381. image: {
  49382. source: "./media/characters/fey/front.svg",
  49383. extra: 995/979,
  49384. bottom: 30/1025
  49385. }
  49386. },
  49387. back: {
  49388. height: math.unit(7 + 6/12, "feet"),
  49389. name: "Back",
  49390. image: {
  49391. source: "./media/characters/fey/back.svg",
  49392. extra: 1079/1008,
  49393. bottom: 5/1084
  49394. }
  49395. },
  49396. dressed: {
  49397. height: math.unit(7 + 6/12, "feet"),
  49398. name: "Dressed",
  49399. image: {
  49400. source: "./media/characters/fey/dressed.svg",
  49401. extra: 995/979,
  49402. bottom: 30/1025
  49403. }
  49404. },
  49405. },
  49406. [
  49407. {
  49408. name: "Normal",
  49409. height: math.unit(7 + 6/12, "feet"),
  49410. default: true
  49411. },
  49412. ]
  49413. ))
  49414. characterMakers.push(() => makeCharacter(
  49415. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49416. {
  49417. standing: {
  49418. height: math.unit(17, "feet"),
  49419. name: "Standing",
  49420. image: {
  49421. source: "./media/characters/aster/standing.svg",
  49422. extra: 1798/1598,
  49423. bottom: 117/1915
  49424. }
  49425. },
  49426. },
  49427. [
  49428. {
  49429. name: "Normal",
  49430. height: math.unit(17, "feet"),
  49431. default: true
  49432. },
  49433. {
  49434. name: "Homewrecker",
  49435. height: math.unit(95, "feet")
  49436. },
  49437. {
  49438. name: "Planet Devourer",
  49439. height: math.unit(1008000, "miles")
  49440. },
  49441. ]
  49442. ))
  49443. characterMakers.push(() => makeCharacter(
  49444. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49445. {
  49446. front: {
  49447. height: math.unit(6 + 5/12, "feet"),
  49448. weight: math.unit(265, "lb"),
  49449. name: "Front",
  49450. image: {
  49451. source: "./media/characters/devon-childs/front.svg",
  49452. extra: 1795/1721,
  49453. bottom: 41/1836
  49454. }
  49455. },
  49456. side: {
  49457. height: math.unit(6 + 5/12, "feet"),
  49458. weight: math.unit(265, "lb"),
  49459. name: "Side",
  49460. image: {
  49461. source: "./media/characters/devon-childs/side.svg",
  49462. extra: 1812/1738,
  49463. bottom: 30/1842
  49464. }
  49465. },
  49466. back: {
  49467. height: math.unit(6 + 5/12, "feet"),
  49468. weight: math.unit(265, "lb"),
  49469. name: "Back",
  49470. image: {
  49471. source: "./media/characters/devon-childs/back.svg",
  49472. extra: 1808/1735,
  49473. bottom: 23/1831
  49474. }
  49475. },
  49476. hand: {
  49477. height: math.unit(1.464, "feet"),
  49478. name: "Hand",
  49479. image: {
  49480. source: "./media/characters/devon-childs/hand.svg"
  49481. }
  49482. },
  49483. foot: {
  49484. height: math.unit(1.6, "feet"),
  49485. name: "Foot",
  49486. image: {
  49487. source: "./media/characters/devon-childs/foot.svg"
  49488. }
  49489. },
  49490. },
  49491. [
  49492. {
  49493. name: "Micro",
  49494. height: math.unit(7, "cm")
  49495. },
  49496. {
  49497. name: "Normal",
  49498. height: math.unit(6 + 5/12, "feet"),
  49499. default: true
  49500. },
  49501. {
  49502. name: "Macro",
  49503. height: math.unit(154, "feet")
  49504. },
  49505. ]
  49506. ))
  49507. characterMakers.push(() => makeCharacter(
  49508. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49509. {
  49510. front: {
  49511. height: math.unit(6, "feet"),
  49512. weight: math.unit(180, "lb"),
  49513. name: "Front",
  49514. image: {
  49515. source: "./media/characters/lydemox-vir/front.svg",
  49516. extra: 1632/1435,
  49517. bottom: 58/1690
  49518. }
  49519. },
  49520. frontSFW: {
  49521. height: math.unit(6, "feet"),
  49522. weight: math.unit(180, "lb"),
  49523. name: "Front (SFW)",
  49524. image: {
  49525. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49526. extra: 1632/1435,
  49527. bottom: 58/1690
  49528. }
  49529. },
  49530. back: {
  49531. height: math.unit(6, "feet"),
  49532. weight: math.unit(180, "lb"),
  49533. name: "Back",
  49534. image: {
  49535. source: "./media/characters/lydemox-vir/back.svg",
  49536. extra: 1593/1408,
  49537. bottom: 31/1624
  49538. }
  49539. },
  49540. paw: {
  49541. height: math.unit(1.85, "feet"),
  49542. name: "Paw",
  49543. image: {
  49544. source: "./media/characters/lydemox-vir/paw.svg"
  49545. }
  49546. },
  49547. dick: {
  49548. height: math.unit(1.8, "feet"),
  49549. name: "Dick",
  49550. image: {
  49551. source: "./media/characters/lydemox-vir/dick.svg"
  49552. }
  49553. },
  49554. },
  49555. [
  49556. {
  49557. name: "Macro",
  49558. height: math.unit(100, "feet"),
  49559. default: true
  49560. },
  49561. {
  49562. name: "Teramacro",
  49563. height: math.unit(1, "earth")
  49564. },
  49565. {
  49566. name: "Planetary",
  49567. height: math.unit(20, "earths")
  49568. },
  49569. ]
  49570. ))
  49571. characterMakers.push(() => makeCharacter(
  49572. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49573. {
  49574. front: {
  49575. height: math.unit(15 + 8/12, "feet"),
  49576. weight: math.unit(1237, "kg"),
  49577. name: "Front",
  49578. image: {
  49579. source: "./media/characters/mia/front.svg",
  49580. extra: 1573/1446,
  49581. bottom: 58/1631
  49582. }
  49583. },
  49584. },
  49585. [
  49586. {
  49587. name: "Small",
  49588. height: math.unit(9 + 5/12, "feet")
  49589. },
  49590. {
  49591. name: "Normal",
  49592. height: math.unit(15 + 8/12, "feet"),
  49593. default: true
  49594. },
  49595. ]
  49596. ))
  49597. characterMakers.push(() => makeCharacter(
  49598. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49599. {
  49600. front: {
  49601. height: math.unit(10 + 6/12, "feet"),
  49602. weight: math.unit(1.3, "tons"),
  49603. name: "Front",
  49604. image: {
  49605. source: "./media/characters/mr-graves/front.svg",
  49606. extra: 1779/1695,
  49607. bottom: 198/1977
  49608. }
  49609. },
  49610. },
  49611. [
  49612. {
  49613. name: "Normal",
  49614. height: math.unit(10 + 6 /12, "feet"),
  49615. default: true
  49616. },
  49617. ]
  49618. ))
  49619. characterMakers.push(() => makeCharacter(
  49620. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49621. {
  49622. dressedFront: {
  49623. height: math.unit(5 + 8/12, "feet"),
  49624. weight: math.unit(125, "lb"),
  49625. name: "Dressed (Front)",
  49626. image: {
  49627. source: "./media/characters/jess/dressed-front.svg",
  49628. extra: 1176/1152,
  49629. bottom: 42/1218
  49630. }
  49631. },
  49632. dressedSide: {
  49633. height: math.unit(5 + 8/12, "feet"),
  49634. weight: math.unit(125, "lb"),
  49635. name: "Dressed (Side)",
  49636. image: {
  49637. source: "./media/characters/jess/dressed-side.svg",
  49638. extra: 1204/1190,
  49639. bottom: 6/1210
  49640. }
  49641. },
  49642. nudeFront: {
  49643. height: math.unit(5 + 8/12, "feet"),
  49644. weight: math.unit(125, "lb"),
  49645. name: "Nude (Front)",
  49646. image: {
  49647. source: "./media/characters/jess/nude-front.svg",
  49648. extra: 1176/1152,
  49649. bottom: 42/1218
  49650. }
  49651. },
  49652. nudeSide: {
  49653. height: math.unit(5 + 8/12, "feet"),
  49654. weight: math.unit(125, "lb"),
  49655. name: "Nude (Side)",
  49656. image: {
  49657. source: "./media/characters/jess/nude-side.svg",
  49658. extra: 1204/1190,
  49659. bottom: 6/1210
  49660. }
  49661. },
  49662. organsFront: {
  49663. height: math.unit(2.83799342105, "feet"),
  49664. name: "Organs (Front)",
  49665. image: {
  49666. source: "./media/characters/jess/organs-front.svg"
  49667. }
  49668. },
  49669. organsSide: {
  49670. height: math.unit(2.64225290474, "feet"),
  49671. name: "Organs (Side)",
  49672. image: {
  49673. source: "./media/characters/jess/organs-side.svg"
  49674. }
  49675. },
  49676. digestiveTractFront: {
  49677. height: math.unit(2.8106580871, "feet"),
  49678. name: "Digestive Tract (Front)",
  49679. image: {
  49680. source: "./media/characters/jess/digestive-tract-front.svg"
  49681. }
  49682. },
  49683. digestiveTractSide: {
  49684. height: math.unit(2.54365045014, "feet"),
  49685. name: "Digestive Tract (Side)",
  49686. image: {
  49687. source: "./media/characters/jess/digestive-tract-side.svg"
  49688. }
  49689. },
  49690. respiratorySystemFront: {
  49691. height: math.unit(1.11196233456, "feet"),
  49692. name: "Respiratory System (Front)",
  49693. image: {
  49694. source: "./media/characters/jess/respiratory-system-front.svg"
  49695. }
  49696. },
  49697. respiratorySystemSide: {
  49698. height: math.unit(0.89327966297, "feet"),
  49699. name: "Respiratory System (Side)",
  49700. image: {
  49701. source: "./media/characters/jess/respiratory-system-side.svg"
  49702. }
  49703. },
  49704. urinaryTractFront: {
  49705. height: math.unit(1.16126356186, "feet"),
  49706. name: "Urinary Tract (Front)",
  49707. image: {
  49708. source: "./media/characters/jess/urinary-tract-front.svg"
  49709. }
  49710. },
  49711. urinaryTractSide: {
  49712. height: math.unit(1.20910039627, "feet"),
  49713. name: "Urinary Tract (Side)",
  49714. image: {
  49715. source: "./media/characters/jess/urinary-tract-side.svg"
  49716. }
  49717. },
  49718. reproductiveOrgansFront: {
  49719. height: math.unit(0.48422591566, "feet"),
  49720. name: "Reproductive Organs (Front)",
  49721. image: {
  49722. source: "./media/characters/jess/reproductive-organs-front.svg"
  49723. }
  49724. },
  49725. reproductiveOrgansSide: {
  49726. height: math.unit(0.61553314481, "feet"),
  49727. name: "Reproductive Organs (Side)",
  49728. image: {
  49729. source: "./media/characters/jess/reproductive-organs-side.svg"
  49730. }
  49731. },
  49732. breastsFront: {
  49733. height: math.unit(0.47690395121, "feet"),
  49734. name: "Breasts (Front)",
  49735. image: {
  49736. source: "./media/characters/jess/breasts-front.svg"
  49737. }
  49738. },
  49739. breastsSide: {
  49740. height: math.unit(0.30556998307, "feet"),
  49741. name: "Breasts (Side)",
  49742. image: {
  49743. source: "./media/characters/jess/breasts-side.svg"
  49744. }
  49745. },
  49746. heartFront: {
  49747. height: math.unit(0.53011022622, "feet"),
  49748. name: "Heart (Front)",
  49749. image: {
  49750. source: "./media/characters/jess/heart-front.svg"
  49751. }
  49752. },
  49753. heartSide: {
  49754. height: math.unit(0.51790695213, "feet"),
  49755. name: "Heart (Side)",
  49756. image: {
  49757. source: "./media/characters/jess/heart-side.svg"
  49758. }
  49759. },
  49760. earsAndNoseFront: {
  49761. height: math.unit(0.29385483995, "feet"),
  49762. name: "Ears and Nose (Front)",
  49763. image: {
  49764. source: "./media/characters/jess/ears-and-nose-front.svg"
  49765. }
  49766. },
  49767. earsAndNoseSide: {
  49768. height: math.unit(0.18109658741, "feet"),
  49769. name: "Ears and Nose (Side)",
  49770. image: {
  49771. source: "./media/characters/jess/ears-and-nose-side.svg"
  49772. }
  49773. },
  49774. },
  49775. [
  49776. {
  49777. name: "Normal",
  49778. height: math.unit(5 + 8/12, "feet"),
  49779. default: true
  49780. },
  49781. ]
  49782. ))
  49783. characterMakers.push(() => makeCharacter(
  49784. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49785. {
  49786. front: {
  49787. height: math.unit(6, "feet"),
  49788. weight: math.unit(6.64467e-7, "grams"),
  49789. name: "Front",
  49790. image: {
  49791. source: "./media/characters/wimpering/front.svg",
  49792. extra: 597/587,
  49793. bottom: 34/631
  49794. }
  49795. },
  49796. },
  49797. [
  49798. {
  49799. name: "Micro",
  49800. height: math.unit(0.4, "mm"),
  49801. default: true
  49802. },
  49803. ]
  49804. ))
  49805. characterMakers.push(() => makeCharacter(
  49806. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49807. {
  49808. front: {
  49809. height: math.unit(5 + 2/12, "feet"),
  49810. weight: math.unit(110, "lb"),
  49811. name: "Front",
  49812. image: {
  49813. source: "./media/characters/keltre/front.svg",
  49814. extra: 1099/1057,
  49815. bottom: 22/1121
  49816. }
  49817. },
  49818. back: {
  49819. height: math.unit(5 + 2/12, "feet"),
  49820. weight: math.unit(110, "lb"),
  49821. name: "Back",
  49822. image: {
  49823. source: "./media/characters/keltre/back.svg",
  49824. extra: 1095/1053,
  49825. bottom: 17/1112
  49826. }
  49827. },
  49828. dressed: {
  49829. height: math.unit(5 + 2/12, "feet"),
  49830. weight: math.unit(110, "lb"),
  49831. name: "Dressed",
  49832. image: {
  49833. source: "./media/characters/keltre/dressed.svg",
  49834. extra: 1099/1057,
  49835. bottom: 22/1121
  49836. }
  49837. },
  49838. winter: {
  49839. height: math.unit(5 + 2/12, "feet"),
  49840. weight: math.unit(110, "lb"),
  49841. name: "Winter",
  49842. image: {
  49843. source: "./media/characters/keltre/winter.svg",
  49844. extra: 1099/1057,
  49845. bottom: 22/1121
  49846. }
  49847. },
  49848. head: {
  49849. height: math.unit(1.61 * 0.86, "feet"),
  49850. name: "Head",
  49851. image: {
  49852. source: "./media/characters/keltre/head.svg",
  49853. extra: 534/421,
  49854. bottom: 0/534
  49855. }
  49856. },
  49857. hand: {
  49858. height: math.unit(1.3 * 0.86, "feet"),
  49859. name: "Hand",
  49860. image: {
  49861. source: "./media/characters/keltre/hand.svg"
  49862. }
  49863. },
  49864. foot: {
  49865. height: math.unit(1.8 * 0.86, "feet"),
  49866. name: "Foot",
  49867. image: {
  49868. source: "./media/characters/keltre/foot.svg"
  49869. }
  49870. },
  49871. },
  49872. [
  49873. {
  49874. name: "Fine",
  49875. height: math.unit(1, "inch")
  49876. },
  49877. {
  49878. name: "Dimnutive",
  49879. height: math.unit(4, "inches")
  49880. },
  49881. {
  49882. name: "Tiny",
  49883. height: math.unit(1, "foot")
  49884. },
  49885. {
  49886. name: "Small",
  49887. height: math.unit(3, "feet")
  49888. },
  49889. {
  49890. name: "Normal",
  49891. height: math.unit(5 + 2/12, "feet"),
  49892. default: true
  49893. },
  49894. ]
  49895. ))
  49896. characterMakers.push(() => makeCharacter(
  49897. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49898. {
  49899. front: {
  49900. height: math.unit(6 + 2/12, "feet"),
  49901. name: "Front",
  49902. image: {
  49903. source: "./media/characters/nox/front.svg",
  49904. extra: 1917/1830,
  49905. bottom: 74/1991
  49906. }
  49907. },
  49908. back: {
  49909. height: math.unit(6 + 2/12, "feet"),
  49910. name: "Back",
  49911. image: {
  49912. source: "./media/characters/nox/back.svg",
  49913. extra: 1896/1815,
  49914. bottom: 21/1917
  49915. }
  49916. },
  49917. head: {
  49918. height: math.unit(1.1, "feet"),
  49919. name: "Head",
  49920. image: {
  49921. source: "./media/characters/nox/head.svg",
  49922. extra: 874/704,
  49923. bottom: 0/874
  49924. }
  49925. },
  49926. tattoo: {
  49927. height: math.unit(0.729, "feet"),
  49928. name: "Tattoo",
  49929. image: {
  49930. source: "./media/characters/nox/tattoo.svg"
  49931. }
  49932. },
  49933. },
  49934. [
  49935. {
  49936. name: "Normal",
  49937. height: math.unit(6 + 2/12, "feet")
  49938. },
  49939. {
  49940. name: "Gigamacro",
  49941. height: math.unit(2, "earths"),
  49942. default: true
  49943. },
  49944. {
  49945. name: "Cosmic",
  49946. height: math.unit(867, "yottameters")
  49947. },
  49948. ]
  49949. ))
  49950. characterMakers.push(() => makeCharacter(
  49951. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49952. {
  49953. front: {
  49954. height: math.unit(6, "feet"),
  49955. weight: math.unit(150, "lb"),
  49956. name: "Front",
  49957. image: {
  49958. source: "./media/characters/caspian/front.svg",
  49959. extra: 1443/1359,
  49960. bottom: 0/1443
  49961. }
  49962. },
  49963. back: {
  49964. height: math.unit(6, "feet"),
  49965. weight: math.unit(150, "lb"),
  49966. name: "Back",
  49967. image: {
  49968. source: "./media/characters/caspian/back.svg",
  49969. extra: 1379/1309,
  49970. bottom: 0/1379
  49971. }
  49972. },
  49973. head: {
  49974. height: math.unit(0.9, "feet"),
  49975. name: "Head",
  49976. image: {
  49977. source: "./media/characters/caspian/head.svg",
  49978. extra: 692/492,
  49979. bottom: 0/692
  49980. }
  49981. },
  49982. headAlt: {
  49983. height: math.unit(0.95, "feet"),
  49984. name: "Head (Alt)",
  49985. image: {
  49986. source: "./media/characters/caspian/head-alt.svg",
  49987. extra: 668/508,
  49988. bottom: 0/668
  49989. }
  49990. },
  49991. hand: {
  49992. height: math.unit(0.8, "feet"),
  49993. name: "Hand",
  49994. image: {
  49995. source: "./media/characters/caspian/hand.svg"
  49996. }
  49997. },
  49998. paw: {
  49999. height: math.unit(0.95, "feet"),
  50000. name: "Paw",
  50001. image: {
  50002. source: "./media/characters/caspian/paw.svg"
  50003. }
  50004. },
  50005. },
  50006. [
  50007. {
  50008. name: "Normal",
  50009. height: math.unit(162, "feet"),
  50010. default: true
  50011. },
  50012. ]
  50013. ))
  50014. characterMakers.push(() => makeCharacter(
  50015. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50016. {
  50017. front: {
  50018. height: math.unit(6, "feet"),
  50019. name: "Front",
  50020. image: {
  50021. source: "./media/characters/myra-aisling/front.svg",
  50022. extra: 1268/1166,
  50023. bottom: 73/1341
  50024. }
  50025. },
  50026. back: {
  50027. height: math.unit(6, "feet"),
  50028. name: "Back",
  50029. image: {
  50030. source: "./media/characters/myra-aisling/back.svg",
  50031. extra: 1249/1149,
  50032. bottom: 79/1328
  50033. }
  50034. },
  50035. dressed: {
  50036. height: math.unit(6, "feet"),
  50037. name: "Dressed",
  50038. image: {
  50039. source: "./media/characters/myra-aisling/dressed.svg",
  50040. extra: 1290/1189,
  50041. bottom: 47/1337
  50042. }
  50043. },
  50044. hand: {
  50045. height: math.unit(1.1, "feet"),
  50046. name: "Hand",
  50047. image: {
  50048. source: "./media/characters/myra-aisling/hand.svg"
  50049. }
  50050. },
  50051. paw: {
  50052. height: math.unit(1.23, "feet"),
  50053. name: "Paw",
  50054. image: {
  50055. source: "./media/characters/myra-aisling/paw.svg"
  50056. }
  50057. },
  50058. },
  50059. [
  50060. {
  50061. name: "Normal",
  50062. height: math.unit(160, "feet"),
  50063. default: true
  50064. },
  50065. ]
  50066. ))
  50067. characterMakers.push(() => makeCharacter(
  50068. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50069. {
  50070. front: {
  50071. height: math.unit(6, "feet"),
  50072. name: "Front",
  50073. image: {
  50074. source: "./media/characters/tenley-sidero/front.svg",
  50075. extra: 1365/1276,
  50076. bottom: 47/1412
  50077. }
  50078. },
  50079. back: {
  50080. height: math.unit(6, "feet"),
  50081. name: "Back",
  50082. image: {
  50083. source: "./media/characters/tenley-sidero/back.svg",
  50084. extra: 1383/1283,
  50085. bottom: 35/1418
  50086. }
  50087. },
  50088. dressed: {
  50089. height: math.unit(6, "feet"),
  50090. name: "Dressed",
  50091. image: {
  50092. source: "./media/characters/tenley-sidero/dressed.svg",
  50093. extra: 1364/1275,
  50094. bottom: 42/1406
  50095. }
  50096. },
  50097. head: {
  50098. height: math.unit(1.47, "feet"),
  50099. name: "Head",
  50100. image: {
  50101. source: "./media/characters/tenley-sidero/head.svg",
  50102. extra: 610/490,
  50103. bottom: 0/610
  50104. }
  50105. },
  50106. },
  50107. [
  50108. {
  50109. name: "Normal",
  50110. height: math.unit(154, "feet"),
  50111. default: true
  50112. },
  50113. ]
  50114. ))
  50115. characterMakers.push(() => makeCharacter(
  50116. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50117. {
  50118. front: {
  50119. height: math.unit(5, "inches"),
  50120. name: "Front",
  50121. image: {
  50122. source: "./media/characters/mallory/front.svg",
  50123. extra: 1919/1678,
  50124. bottom: 29/1948
  50125. }
  50126. },
  50127. hand: {
  50128. height: math.unit(0.73, "inches"),
  50129. name: "Hand",
  50130. image: {
  50131. source: "./media/characters/mallory/hand.svg"
  50132. }
  50133. },
  50134. paw: {
  50135. height: math.unit(0.68, "inches"),
  50136. name: "Paw",
  50137. image: {
  50138. source: "./media/characters/mallory/paw.svg"
  50139. }
  50140. },
  50141. },
  50142. [
  50143. {
  50144. name: "Small",
  50145. height: math.unit(5, "inches"),
  50146. default: true
  50147. },
  50148. ]
  50149. ))
  50150. characterMakers.push(() => makeCharacter(
  50151. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50152. {
  50153. naked: {
  50154. height: math.unit(6, "feet"),
  50155. name: "Naked",
  50156. image: {
  50157. source: "./media/characters/mab/naked.svg",
  50158. extra: 1855/1757,
  50159. bottom: 208/2063
  50160. }
  50161. },
  50162. outside: {
  50163. height: math.unit(6, "feet"),
  50164. name: "Outside",
  50165. image: {
  50166. source: "./media/characters/mab/outside.svg",
  50167. extra: 1855/1757,
  50168. bottom: 208/2063
  50169. }
  50170. },
  50171. party: {
  50172. height: math.unit(6, "feet"),
  50173. name: "Party",
  50174. image: {
  50175. source: "./media/characters/mab/party.svg",
  50176. extra: 1855/1757,
  50177. bottom: 208/2063
  50178. }
  50179. },
  50180. },
  50181. [
  50182. {
  50183. name: "Normal",
  50184. height: math.unit(165, "feet"),
  50185. default: true
  50186. },
  50187. ]
  50188. ))
  50189. characterMakers.push(() => makeCharacter(
  50190. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50191. {
  50192. feral: {
  50193. height: math.unit(12, "feet"),
  50194. weight: math.unit(20000, "lb"),
  50195. name: "Side",
  50196. image: {
  50197. source: "./media/characters/winter/feral.svg",
  50198. extra: 1286/943,
  50199. bottom: 112/1398
  50200. },
  50201. form: "feral",
  50202. default: true
  50203. },
  50204. feralNsfw: {
  50205. height: math.unit(12, "feet"),
  50206. weight: math.unit(20000, "lb"),
  50207. name: "Side (NSFW)",
  50208. image: {
  50209. source: "./media/characters/winter/feral-nsfw.svg",
  50210. extra: 1286/943,
  50211. bottom: 112/1398
  50212. },
  50213. form: "feral"
  50214. },
  50215. dick: {
  50216. height: math.unit(3.79, "feet"),
  50217. name: "Dick",
  50218. image: {
  50219. source: "./media/characters/winter/dick.svg"
  50220. },
  50221. form: "feral"
  50222. },
  50223. anthro: {
  50224. height: math.unit(12, "feet"),
  50225. weight: math.unit(10, "tons"),
  50226. name: "Anthro",
  50227. image: {
  50228. source: "./media/characters/winter/anthro.svg",
  50229. extra: 1701/1553,
  50230. bottom: 64/1765
  50231. },
  50232. form: "anthro",
  50233. default: true
  50234. },
  50235. },
  50236. [
  50237. {
  50238. name: "Big",
  50239. height: math.unit(12, "feet"),
  50240. default: true,
  50241. form: "feral"
  50242. },
  50243. {
  50244. name: "Big",
  50245. height: math.unit(12, "feet"),
  50246. default: true,
  50247. form: "anthro"
  50248. },
  50249. ],
  50250. {
  50251. "feral": {
  50252. name: "Feral",
  50253. default: true
  50254. },
  50255. "anthro": {
  50256. name: "Anthro"
  50257. }
  50258. }
  50259. ))
  50260. characterMakers.push(() => makeCharacter(
  50261. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50262. {
  50263. front: {
  50264. height: math.unit(4.1, "inches"),
  50265. name: "Front",
  50266. image: {
  50267. source: "./media/characters/alto/front.svg",
  50268. extra: 736/627,
  50269. bottom: 90/826
  50270. }
  50271. },
  50272. },
  50273. [
  50274. {
  50275. name: "Normal",
  50276. height: math.unit(4.1, "inches"),
  50277. default: true
  50278. },
  50279. ]
  50280. ))
  50281. characterMakers.push(() => makeCharacter(
  50282. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50283. {
  50284. sitting: {
  50285. height: math.unit(3, "feet"),
  50286. name: "Sitting",
  50287. image: {
  50288. source: "./media/characters/ratstrid-v/sitting.svg",
  50289. extra: 355/310,
  50290. bottom: 136/491
  50291. }
  50292. },
  50293. },
  50294. [
  50295. {
  50296. name: "Normal",
  50297. height: math.unit(3, "feet"),
  50298. default: true
  50299. },
  50300. ]
  50301. ))
  50302. characterMakers.push(() => makeCharacter(
  50303. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50304. {
  50305. back: {
  50306. height: math.unit(6, "feet"),
  50307. weight: math.unit(450, "lb"),
  50308. name: "Back",
  50309. image: {
  50310. source: "./media/characters/siz/back.svg",
  50311. extra: 1449/1274,
  50312. bottom: 13/1462
  50313. }
  50314. },
  50315. },
  50316. [
  50317. {
  50318. name: "Smallest",
  50319. height: math.unit(18 + 3/12, "feet")
  50320. },
  50321. {
  50322. name: "Modest",
  50323. height: math.unit(56 + 8/12, "feet"),
  50324. default: true
  50325. },
  50326. {
  50327. name: "Largest",
  50328. height: math.unit(3590, "feet")
  50329. },
  50330. ]
  50331. ))
  50332. characterMakers.push(() => makeCharacter(
  50333. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50334. {
  50335. front: {
  50336. height: math.unit(5 + 9/12, "feet"),
  50337. weight: math.unit(150, "lb"),
  50338. name: "Front",
  50339. image: {
  50340. source: "./media/characters/ven/front.svg",
  50341. extra: 1372/1320,
  50342. bottom: 73/1445
  50343. }
  50344. },
  50345. side: {
  50346. height: math.unit(5 + 9/12, "feet"),
  50347. weight: math.unit(1150, "lb"),
  50348. name: "Side",
  50349. image: {
  50350. source: "./media/characters/ven/side.svg",
  50351. extra: 1119/1070,
  50352. bottom: 42/1161
  50353. },
  50354. default: true
  50355. },
  50356. },
  50357. [
  50358. {
  50359. name: "Normal",
  50360. height: math.unit(5 + 9/12, "feet"),
  50361. default: true
  50362. },
  50363. ]
  50364. ))
  50365. characterMakers.push(() => makeCharacter(
  50366. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50367. {
  50368. front: {
  50369. height: math.unit(12, "feet"),
  50370. weight: math.unit(1000, "kg"),
  50371. name: "Front",
  50372. image: {
  50373. source: "./media/characters/maple/front.svg",
  50374. extra: 1193/1081,
  50375. bottom: 22/1215
  50376. }
  50377. },
  50378. },
  50379. [
  50380. {
  50381. name: "Compressed",
  50382. height: math.unit(7, "feet")
  50383. },
  50384. {
  50385. name: "Normal",
  50386. height: math.unit(12, "feet"),
  50387. default: true
  50388. },
  50389. ]
  50390. ))
  50391. characterMakers.push(() => makeCharacter(
  50392. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50393. {
  50394. front: {
  50395. height: math.unit(9, "feet"),
  50396. weight: math.unit(1500, "lb"),
  50397. name: "Front",
  50398. image: {
  50399. source: "./media/characters/nora/front.svg",
  50400. extra: 1348/1286,
  50401. bottom: 218/1566
  50402. }
  50403. },
  50404. erect: {
  50405. height: math.unit(9, "feet"),
  50406. weight: math.unit(11500, "lb"),
  50407. name: "Erect",
  50408. image: {
  50409. source: "./media/characters/nora/erect.svg",
  50410. extra: 1488/1433,
  50411. bottom: 133/1621
  50412. }
  50413. },
  50414. },
  50415. [
  50416. {
  50417. name: "Normal",
  50418. height: math.unit(9, "feet"),
  50419. default: true
  50420. },
  50421. ]
  50422. ))
  50423. characterMakers.push(() => makeCharacter(
  50424. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50425. {
  50426. front: {
  50427. height: math.unit(25, "feet"),
  50428. weight: math.unit(27500, "lb"),
  50429. name: "Front",
  50430. image: {
  50431. source: "./media/characters/north-caudin/front.svg",
  50432. extra: 1184/1082,
  50433. bottom: 23/1207
  50434. }
  50435. },
  50436. },
  50437. [
  50438. {
  50439. name: "Compressed",
  50440. height: math.unit(10, "feet")
  50441. },
  50442. {
  50443. name: "Normal",
  50444. height: math.unit(25, "feet"),
  50445. default: true
  50446. },
  50447. ]
  50448. ))
  50449. characterMakers.push(() => makeCharacter(
  50450. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50451. {
  50452. front: {
  50453. height: math.unit(9, "feet"),
  50454. weight: math.unit(1250, "lb"),
  50455. name: "Front",
  50456. image: {
  50457. source: "./media/characters/merrian/front.svg",
  50458. extra: 2393/2304,
  50459. bottom: 40/2433
  50460. }
  50461. },
  50462. },
  50463. [
  50464. {
  50465. name: "Normal",
  50466. height: math.unit(9, "feet"),
  50467. default: true
  50468. },
  50469. ]
  50470. ))
  50471. characterMakers.push(() => makeCharacter(
  50472. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50473. {
  50474. front: {
  50475. height: math.unit(9, "feet"),
  50476. weight: math.unit(1000, "lb"),
  50477. name: "Front",
  50478. image: {
  50479. source: "./media/characters/hazel/front.svg",
  50480. extra: 2351/2298,
  50481. bottom: 38/2389
  50482. }
  50483. },
  50484. },
  50485. [
  50486. {
  50487. name: "Normal",
  50488. height: math.unit(9, "feet"),
  50489. default: true
  50490. },
  50491. ]
  50492. ))
  50493. characterMakers.push(() => makeCharacter(
  50494. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50495. {
  50496. front: {
  50497. height: math.unit(13, "feet"),
  50498. weight: math.unit(3200, "lb"),
  50499. name: "Front",
  50500. image: {
  50501. source: "./media/characters/emma/front.svg",
  50502. extra: 2263/2029,
  50503. bottom: 68/2331
  50504. }
  50505. },
  50506. },
  50507. [
  50508. {
  50509. name: "Normal",
  50510. height: math.unit(13, "feet"),
  50511. default: true
  50512. },
  50513. ]
  50514. ))
  50515. characterMakers.push(() => makeCharacter(
  50516. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50517. {
  50518. front: {
  50519. height: math.unit(11 + 9/12, "feet"),
  50520. weight: math.unit(2500, "lb"),
  50521. name: "Front",
  50522. image: {
  50523. source: "./media/characters/ilumina/front.svg",
  50524. extra: 2248/2209,
  50525. bottom: 164/2412
  50526. }
  50527. },
  50528. },
  50529. [
  50530. {
  50531. name: "Normal",
  50532. height: math.unit(11 + 9/12, "feet"),
  50533. default: true
  50534. },
  50535. ]
  50536. ))
  50537. characterMakers.push(() => makeCharacter(
  50538. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50539. {
  50540. front: {
  50541. height: math.unit(8 + 10/12, "feet"),
  50542. weight: math.unit(1350, "lb"),
  50543. name: "Front",
  50544. image: {
  50545. source: "./media/characters/moonshine/front.svg",
  50546. extra: 2395/2288,
  50547. bottom: 40/2435
  50548. }
  50549. },
  50550. },
  50551. [
  50552. {
  50553. name: "Normal",
  50554. height: math.unit(8 + 10/12, "feet"),
  50555. default: true
  50556. },
  50557. ]
  50558. ))
  50559. characterMakers.push(() => makeCharacter(
  50560. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50561. {
  50562. front: {
  50563. height: math.unit(14, "feet"),
  50564. weight: math.unit(3400, "lb"),
  50565. name: "Front",
  50566. image: {
  50567. source: "./media/characters/aletia/front.svg",
  50568. extra: 1185/1052,
  50569. bottom: 21/1206
  50570. }
  50571. },
  50572. },
  50573. [
  50574. {
  50575. name: "Compressed",
  50576. height: math.unit(8, "feet")
  50577. },
  50578. {
  50579. name: "Normal",
  50580. height: math.unit(14, "feet"),
  50581. default: true
  50582. },
  50583. ]
  50584. ))
  50585. characterMakers.push(() => makeCharacter(
  50586. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50587. {
  50588. front: {
  50589. height: math.unit(17, "feet"),
  50590. weight: math.unit(6500, "lb"),
  50591. name: "Front",
  50592. image: {
  50593. source: "./media/characters/deidra/front.svg",
  50594. extra: 1201/1081,
  50595. bottom: 16/1217
  50596. }
  50597. },
  50598. },
  50599. [
  50600. {
  50601. name: "Compressed",
  50602. height: math.unit(9 + 6/12, "feet")
  50603. },
  50604. {
  50605. name: "Normal",
  50606. height: math.unit(17, "feet"),
  50607. default: true
  50608. },
  50609. ]
  50610. ))
  50611. characterMakers.push(() => makeCharacter(
  50612. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50613. {
  50614. front: {
  50615. height: math.unit(7 + 4/12, "feet"),
  50616. weight: math.unit(280, "lb"),
  50617. name: "Front",
  50618. image: {
  50619. source: "./media/characters/freki-yrmori/front.svg",
  50620. extra: 1286/1182,
  50621. bottom: 29/1315
  50622. }
  50623. },
  50624. maw: {
  50625. height: math.unit(0.9, "feet"),
  50626. name: "Maw",
  50627. image: {
  50628. source: "./media/characters/freki-yrmori/maw.svg"
  50629. }
  50630. },
  50631. },
  50632. [
  50633. {
  50634. name: "Normal",
  50635. height: math.unit(7 + 4/12, "feet"),
  50636. default: true
  50637. },
  50638. {
  50639. name: "Macro",
  50640. height: math.unit(38.5, "meters")
  50641. },
  50642. ]
  50643. ))
  50644. characterMakers.push(() => makeCharacter(
  50645. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50646. {
  50647. side: {
  50648. height: math.unit(47.2, "meters"),
  50649. weight: math.unit(10000, "tons"),
  50650. name: "Side",
  50651. image: {
  50652. source: "./media/characters/aetherios/side.svg",
  50653. extra: 2363/642,
  50654. bottom: 221/2584
  50655. }
  50656. },
  50657. top: {
  50658. height: math.unit(240, "meters"),
  50659. weight: math.unit(10000, "tons"),
  50660. name: "Top",
  50661. image: {
  50662. source: "./media/characters/aetherios/top.svg"
  50663. }
  50664. },
  50665. bottom: {
  50666. height: math.unit(240, "meters"),
  50667. weight: math.unit(10000, "tons"),
  50668. name: "Bottom",
  50669. image: {
  50670. source: "./media/characters/aetherios/bottom.svg"
  50671. }
  50672. },
  50673. head: {
  50674. height: math.unit(38.6, "meters"),
  50675. name: "Head",
  50676. image: {
  50677. source: "./media/characters/aetherios/head.svg",
  50678. extra: 1335/1112,
  50679. bottom: 0/1335
  50680. }
  50681. },
  50682. front: {
  50683. height: math.unit(29, "meters"),
  50684. name: "Front",
  50685. image: {
  50686. source: "./media/characters/aetherios/front.svg",
  50687. extra: 1266/953,
  50688. bottom: 158/1424
  50689. }
  50690. },
  50691. maw: {
  50692. height: math.unit(16.37, "meters"),
  50693. name: "Maw",
  50694. image: {
  50695. source: "./media/characters/aetherios/maw.svg",
  50696. extra: 748/637,
  50697. bottom: 0/748
  50698. },
  50699. extraAttributes: {
  50700. preyCapacity: {
  50701. name: "Capacity",
  50702. power: 3,
  50703. type: "volume",
  50704. base: math.unit(1000, "people")
  50705. },
  50706. tongueSize: {
  50707. name: "Tongue Size",
  50708. power: 2,
  50709. type: "area",
  50710. base: math.unit(21, "m^2")
  50711. }
  50712. }
  50713. },
  50714. forepaw: {
  50715. height: math.unit(18, "meters"),
  50716. name: "Forepaw",
  50717. image: {
  50718. source: "./media/characters/aetherios/forepaw.svg"
  50719. }
  50720. },
  50721. hindpaw: {
  50722. height: math.unit(23, "meters"),
  50723. name: "Hindpaw",
  50724. image: {
  50725. source: "./media/characters/aetherios/hindpaw.svg"
  50726. }
  50727. },
  50728. genitals: {
  50729. height: math.unit(42, "meters"),
  50730. name: "Genitals",
  50731. image: {
  50732. source: "./media/characters/aetherios/genitals.svg"
  50733. }
  50734. },
  50735. },
  50736. [
  50737. {
  50738. name: "Normal",
  50739. height: math.unit(47.2, "meters"),
  50740. default: true
  50741. },
  50742. {
  50743. name: "Macro",
  50744. height: math.unit(160, "meters")
  50745. },
  50746. {
  50747. name: "Mega",
  50748. height: math.unit(1.87, "km")
  50749. },
  50750. {
  50751. name: "Giga",
  50752. height: math.unit(40000, "km")
  50753. },
  50754. {
  50755. name: "Stellar",
  50756. height: math.unit(158000000, "km")
  50757. },
  50758. {
  50759. name: "Cosmic",
  50760. height: math.unit(9.46e12, "km")
  50761. },
  50762. ]
  50763. ))
  50764. characterMakers.push(() => makeCharacter(
  50765. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50766. {
  50767. front: {
  50768. height: math.unit(5 + 4/12, "feet"),
  50769. weight: math.unit(80, "lb"),
  50770. name: "Front",
  50771. image: {
  50772. source: "./media/characters/mizu-gieeg/front.svg",
  50773. extra: 850/709,
  50774. bottom: 52/902
  50775. }
  50776. },
  50777. back: {
  50778. height: math.unit(5 + 4/12, "feet"),
  50779. weight: math.unit(80, "lb"),
  50780. name: "Back",
  50781. image: {
  50782. source: "./media/characters/mizu-gieeg/back.svg",
  50783. extra: 882/745,
  50784. bottom: 25/907
  50785. }
  50786. },
  50787. },
  50788. [
  50789. {
  50790. name: "Normal",
  50791. height: math.unit(5 + 4/12, "feet"),
  50792. default: true
  50793. },
  50794. ]
  50795. ))
  50796. characterMakers.push(() => makeCharacter(
  50797. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50798. {
  50799. front: {
  50800. height: math.unit(6, "feet"),
  50801. name: "Front",
  50802. image: {
  50803. source: "./media/characters/roselle-st-papier/front.svg",
  50804. extra: 1430/1280,
  50805. bottom: 37/1467
  50806. }
  50807. },
  50808. back: {
  50809. height: math.unit(6, "feet"),
  50810. name: "Back",
  50811. image: {
  50812. source: "./media/characters/roselle-st-papier/back.svg",
  50813. extra: 1491/1296,
  50814. bottom: 23/1514
  50815. }
  50816. },
  50817. ear: {
  50818. height: math.unit(1.26, "feet"),
  50819. name: "Ear",
  50820. image: {
  50821. source: "./media/characters/roselle-st-papier/ear.svg"
  50822. }
  50823. },
  50824. },
  50825. [
  50826. {
  50827. name: "Normal",
  50828. height: math.unit(150, "feet"),
  50829. default: true
  50830. },
  50831. ]
  50832. ))
  50833. characterMakers.push(() => makeCharacter(
  50834. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50835. {
  50836. front: {
  50837. height: math.unit(1, "inches"),
  50838. name: "Front",
  50839. image: {
  50840. source: "./media/characters/valargent/front.svg",
  50841. extra: 1825/1694,
  50842. bottom: 62/1887
  50843. }
  50844. },
  50845. back: {
  50846. height: math.unit(1, "inches"),
  50847. name: "Back",
  50848. image: {
  50849. source: "./media/characters/valargent/back.svg",
  50850. extra: 1775/1682,
  50851. bottom: 88/1863
  50852. }
  50853. },
  50854. },
  50855. [
  50856. {
  50857. name: "Micro",
  50858. height: math.unit(1, "inch"),
  50859. default: true
  50860. },
  50861. ]
  50862. ))
  50863. characterMakers.push(() => makeCharacter(
  50864. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50865. {
  50866. front: {
  50867. height: math.unit(3.4, "meters"),
  50868. name: "Front",
  50869. image: {
  50870. source: "./media/characters/zarina/front.svg",
  50871. extra: 1733/1425,
  50872. bottom: 93/1826
  50873. }
  50874. },
  50875. squatting: {
  50876. height: math.unit(2.14, "meters"),
  50877. name: "Squatting",
  50878. image: {
  50879. source: "./media/characters/zarina/squatting.svg",
  50880. extra: 1073/788,
  50881. bottom: 63/1136
  50882. }
  50883. },
  50884. back: {
  50885. height: math.unit(2.14, "meters"),
  50886. name: "Back",
  50887. image: {
  50888. source: "./media/characters/zarina/back.svg",
  50889. extra: 1128/885,
  50890. bottom: 0/1128
  50891. }
  50892. },
  50893. },
  50894. [
  50895. {
  50896. name: "Normal",
  50897. height: math.unit(3.4, "meters"),
  50898. default: true
  50899. },
  50900. {
  50901. name: "Big",
  50902. height: math.unit(5, "meters")
  50903. },
  50904. {
  50905. name: "Macro",
  50906. height: math.unit(110, "meters")
  50907. },
  50908. ]
  50909. ))
  50910. characterMakers.push(() => makeCharacter(
  50911. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50912. {
  50913. front: {
  50914. height: math.unit(7, "feet"),
  50915. name: "Front",
  50916. image: {
  50917. source: "./media/characters/ventus-astro-fox/front.svg",
  50918. extra: 1792/1623,
  50919. bottom: 28/1820
  50920. }
  50921. },
  50922. back: {
  50923. height: math.unit(7, "feet"),
  50924. name: "Back",
  50925. image: {
  50926. source: "./media/characters/ventus-astro-fox/back.svg",
  50927. extra: 1789/1620,
  50928. bottom: 31/1820
  50929. }
  50930. },
  50931. outfit: {
  50932. height: math.unit(7, "feet"),
  50933. name: "Outfit",
  50934. image: {
  50935. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50936. extra: 1054/925,
  50937. bottom: 15/1069
  50938. }
  50939. },
  50940. head: {
  50941. height: math.unit(1.12, "feet"),
  50942. name: "Head",
  50943. image: {
  50944. source: "./media/characters/ventus-astro-fox/head.svg",
  50945. extra: 866/504,
  50946. bottom: 0/866
  50947. }
  50948. },
  50949. hand: {
  50950. height: math.unit(1, "feet"),
  50951. name: "Hand",
  50952. image: {
  50953. source: "./media/characters/ventus-astro-fox/hand.svg"
  50954. }
  50955. },
  50956. paw: {
  50957. height: math.unit(1.5, "feet"),
  50958. name: "Paw",
  50959. image: {
  50960. source: "./media/characters/ventus-astro-fox/paw.svg"
  50961. }
  50962. },
  50963. },
  50964. [
  50965. {
  50966. name: "Normal",
  50967. height: math.unit(7, "feet"),
  50968. default: true
  50969. },
  50970. {
  50971. name: "Macro",
  50972. height: math.unit(200, "feet")
  50973. },
  50974. {
  50975. name: "Cosmic",
  50976. height: math.unit(3, "universes")
  50977. },
  50978. ]
  50979. ))
  50980. characterMakers.push(() => makeCharacter(
  50981. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50982. {
  50983. front: {
  50984. height: math.unit(3, "meters"),
  50985. weight: math.unit(7000, "lb"),
  50986. name: "Front",
  50987. image: {
  50988. source: "./media/characters/core-t/front.svg",
  50989. extra: 5729/4941,
  50990. bottom: 1129/6858
  50991. }
  50992. },
  50993. },
  50994. [
  50995. {
  50996. name: "Big",
  50997. height: math.unit(3, "meters"),
  50998. default: true
  50999. },
  51000. ]
  51001. ))
  51002. characterMakers.push(() => makeCharacter(
  51003. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51004. {
  51005. normal: {
  51006. height: math.unit(6 + 6/12, "feet"),
  51007. weight: math.unit(275, "lb"),
  51008. name: "Front",
  51009. image: {
  51010. source: "./media/characters/cadbunny/normal.svg",
  51011. extra: 1129/947,
  51012. bottom: 93/1222
  51013. },
  51014. default: true,
  51015. form: "normal"
  51016. },
  51017. gigantamax: {
  51018. height: math.unit(26, "feet"),
  51019. weight: math.unit(16000, "lb"),
  51020. name: "Front",
  51021. image: {
  51022. source: "./media/characters/cadbunny/gigantamax.svg",
  51023. extra: 1133/944,
  51024. bottom: 90/1223
  51025. },
  51026. default: true,
  51027. form: "gigantamax"
  51028. },
  51029. },
  51030. [
  51031. {
  51032. name: "Normal",
  51033. height: math.unit(6 + 6/12, "feet"),
  51034. default: true,
  51035. form: "normal"
  51036. },
  51037. {
  51038. name: "Small",
  51039. height: math.unit(26, "feet"),
  51040. default: true,
  51041. form: "gigantamax"
  51042. },
  51043. {
  51044. name: "Large",
  51045. height: math.unit(78, "feet"),
  51046. form: "gigantamax"
  51047. },
  51048. ],
  51049. {
  51050. "normal": {
  51051. name: "Normal",
  51052. default: true
  51053. },
  51054. "gigantamax": {
  51055. name: "Gigantamax"
  51056. }
  51057. }
  51058. ))
  51059. characterMakers.push(() => makeCharacter(
  51060. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51061. {
  51062. anthroFront: {
  51063. height: math.unit(8, "feet"),
  51064. weight: math.unit(300, "lb"),
  51065. name: "Front",
  51066. image: {
  51067. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51068. extra: 1272/1176,
  51069. bottom: 53/1325
  51070. },
  51071. form: "anthro",
  51072. default: true
  51073. },
  51074. feralSide: {
  51075. height: math.unit(4, "feet"),
  51076. weight: math.unit(250, "lb"),
  51077. name: "Side",
  51078. image: {
  51079. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51080. extra: 731/621,
  51081. bottom: 0/731
  51082. },
  51083. form: "feral",
  51084. default: true
  51085. },
  51086. },
  51087. [
  51088. {
  51089. name: "Regular",
  51090. height: math.unit(8, "feet"),
  51091. form: "anthro"
  51092. },
  51093. {
  51094. name: "Macro",
  51095. height: math.unit(250, "feet"),
  51096. form: "anthro",
  51097. default: true
  51098. },
  51099. {
  51100. name: "Regular",
  51101. height: math.unit(4, "feet"),
  51102. form: "feral"
  51103. },
  51104. {
  51105. name: "Macro",
  51106. height: math.unit(125, "feet"),
  51107. form: "feral",
  51108. default: true
  51109. },
  51110. ],
  51111. {
  51112. "anthro": {
  51113. name: "Anthro",
  51114. default: true
  51115. },
  51116. "feral": {
  51117. name: "Feral",
  51118. },
  51119. }
  51120. ))
  51121. characterMakers.push(() => makeCharacter(
  51122. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51123. {
  51124. front: {
  51125. height: math.unit(11 + 10/12, "feet"),
  51126. weight: math.unit(1587, "kg"),
  51127. name: "Front",
  51128. image: {
  51129. source: "./media/characters/maple-javira-dragon/front.svg",
  51130. extra: 1136/744,
  51131. bottom: 73/1209
  51132. }
  51133. },
  51134. side: {
  51135. height: math.unit(11 + 10/12, "feet"),
  51136. weight: math.unit(1587, "kg"),
  51137. name: "Side",
  51138. image: {
  51139. source: "./media/characters/maple-javira-dragon/side.svg",
  51140. extra: 712/505,
  51141. bottom: 17/729
  51142. }
  51143. },
  51144. head: {
  51145. height: math.unit(8.05, "feet"),
  51146. name: "Head",
  51147. image: {
  51148. source: "./media/characters/maple-javira-dragon/head.svg",
  51149. extra: 1420/1344,
  51150. bottom: 0/1420
  51151. }
  51152. },
  51153. },
  51154. [
  51155. {
  51156. name: "Normal",
  51157. height: math.unit(11 + 10/12, "feet"),
  51158. default: true
  51159. },
  51160. ]
  51161. ))
  51162. characterMakers.push(() => makeCharacter(
  51163. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51164. {
  51165. front: {
  51166. height: math.unit(117, "cm"),
  51167. weight: math.unit(50, "kg"),
  51168. name: "Front",
  51169. image: {
  51170. source: "./media/characters/sonia-wyverntail/front.svg",
  51171. extra: 708/592,
  51172. bottom: 25/733
  51173. }
  51174. },
  51175. },
  51176. [
  51177. {
  51178. name: "Normal",
  51179. height: math.unit(117, "cm"),
  51180. default: true
  51181. },
  51182. ]
  51183. ))
  51184. characterMakers.push(() => makeCharacter(
  51185. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51186. {
  51187. front: {
  51188. height: math.unit(6 + 5/12, "feet"),
  51189. name: "Front",
  51190. image: {
  51191. source: "./media/characters/micah/front.svg",
  51192. extra: 1758/1546,
  51193. bottom: 214/1972
  51194. }
  51195. },
  51196. },
  51197. [
  51198. {
  51199. name: "Normal",
  51200. height: math.unit(6 + 5/12, "feet"),
  51201. default: true
  51202. },
  51203. ]
  51204. ))
  51205. characterMakers.push(() => makeCharacter(
  51206. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51207. {
  51208. front: {
  51209. height: math.unit(1.75, "meters"),
  51210. weight: math.unit(100, "kg"),
  51211. name: "Front",
  51212. image: {
  51213. source: "./media/characters/zarya/front.svg",
  51214. extra: 741/735,
  51215. bottom: 44/785
  51216. },
  51217. extraAttributes: {
  51218. "tailLength": {
  51219. name: "Tail Length",
  51220. power: 1,
  51221. type: "length",
  51222. base: math.unit(180, "cm")
  51223. },
  51224. "pawLength": {
  51225. name: "Paw Length",
  51226. power: 1,
  51227. type: "length",
  51228. base: math.unit(31, "cm")
  51229. },
  51230. }
  51231. },
  51232. side: {
  51233. height: math.unit(1.75, "meters"),
  51234. weight: math.unit(100, "kg"),
  51235. name: "Side",
  51236. image: {
  51237. source: "./media/characters/zarya/side.svg",
  51238. extra: 776/770,
  51239. bottom: 17/793
  51240. },
  51241. extraAttributes: {
  51242. "tailLength": {
  51243. name: "Tail Length",
  51244. power: 1,
  51245. type: "length",
  51246. base: math.unit(180, "cm")
  51247. },
  51248. "pawLength": {
  51249. name: "Paw Length",
  51250. power: 1,
  51251. type: "length",
  51252. base: math.unit(31, "cm")
  51253. },
  51254. }
  51255. },
  51256. back: {
  51257. height: math.unit(1.75, "meters"),
  51258. weight: math.unit(100, "kg"),
  51259. name: "Back",
  51260. image: {
  51261. source: "./media/characters/zarya/back.svg",
  51262. extra: 741/735,
  51263. bottom: 44/785
  51264. },
  51265. extraAttributes: {
  51266. "tailLength": {
  51267. name: "Tail Length",
  51268. power: 1,
  51269. type: "length",
  51270. base: math.unit(180, "cm")
  51271. },
  51272. "pawLength": {
  51273. name: "Paw Length",
  51274. power: 1,
  51275. type: "length",
  51276. base: math.unit(31, "cm")
  51277. },
  51278. }
  51279. },
  51280. frontNoTail: {
  51281. height: math.unit(1.75, "meters"),
  51282. weight: math.unit(100, "kg"),
  51283. name: "Front (No Tail)",
  51284. image: {
  51285. source: "./media/characters/zarya/front-no-tail.svg",
  51286. extra: 741/735,
  51287. bottom: 44/785
  51288. },
  51289. extraAttributes: {
  51290. "tailLength": {
  51291. name: "Tail Length",
  51292. power: 1,
  51293. type: "length",
  51294. base: math.unit(180, "cm")
  51295. },
  51296. "pawLength": {
  51297. name: "Paw Length",
  51298. power: 1,
  51299. type: "length",
  51300. base: math.unit(31, "cm")
  51301. },
  51302. }
  51303. },
  51304. dressed: {
  51305. height: math.unit(1.75, "meters"),
  51306. weight: math.unit(100, "kg"),
  51307. name: "Dressed",
  51308. image: {
  51309. source: "./media/characters/zarya/dressed.svg",
  51310. extra: 683/672,
  51311. bottom: 79/762
  51312. },
  51313. extraAttributes: {
  51314. "tailLength": {
  51315. name: "Tail Length",
  51316. power: 1,
  51317. type: "length",
  51318. base: math.unit(180, "cm")
  51319. },
  51320. "pawLength": {
  51321. name: "Paw Length",
  51322. power: 1,
  51323. type: "length",
  51324. base: math.unit(31, "cm")
  51325. },
  51326. }
  51327. },
  51328. },
  51329. [
  51330. {
  51331. name: "Micro",
  51332. height: math.unit(5, "cm")
  51333. },
  51334. {
  51335. name: "Normal",
  51336. height: math.unit(1.75, "meters"),
  51337. default: true
  51338. },
  51339. {
  51340. name: "Macro",
  51341. height: math.unit(122, "meters")
  51342. },
  51343. ]
  51344. ))
  51345. characterMakers.push(() => makeCharacter(
  51346. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51347. {
  51348. front: {
  51349. height: math.unit(7.5, "feet"),
  51350. name: "Front",
  51351. image: {
  51352. source: "./media/characters/sven-hatisson/front.svg",
  51353. extra: 917/857,
  51354. bottom: 42/959
  51355. }
  51356. },
  51357. back: {
  51358. height: math.unit(7.5, "feet"),
  51359. name: "Back",
  51360. image: {
  51361. source: "./media/characters/sven-hatisson/back.svg",
  51362. extra: 903/856,
  51363. bottom: 15/918
  51364. }
  51365. },
  51366. },
  51367. [
  51368. {
  51369. name: "Base Height",
  51370. height: math.unit(7.5, "feet")
  51371. },
  51372. {
  51373. name: "Usual Height",
  51374. height: math.unit(13.5, "feet"),
  51375. default: true
  51376. },
  51377. {
  51378. name: "Smaller Macro",
  51379. height: math.unit(85, "feet")
  51380. },
  51381. {
  51382. name: "Moderate Macro",
  51383. height: math.unit(320, "feet")
  51384. },
  51385. {
  51386. name: "Large Macro",
  51387. height: math.unit(1000, "feet")
  51388. },
  51389. {
  51390. name: "Largest Size",
  51391. height: math.unit(2, "miles")
  51392. },
  51393. ]
  51394. ))
  51395. characterMakers.push(() => makeCharacter(
  51396. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51397. {
  51398. side: {
  51399. height: math.unit(1.8, "meters"),
  51400. weight: math.unit(275, "kg"),
  51401. name: "Side",
  51402. image: {
  51403. source: "./media/characters/terra/side.svg",
  51404. extra: 1273/1147,
  51405. bottom: 0/1273
  51406. }
  51407. },
  51408. },
  51409. [
  51410. {
  51411. name: "Normal",
  51412. height: math.unit(16.2, "meters"),
  51413. default: true
  51414. },
  51415. ]
  51416. ))
  51417. characterMakers.push(() => makeCharacter(
  51418. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51419. {
  51420. borzoiFront: {
  51421. height: math.unit(6 + 9/12, "feet"),
  51422. name: "Front",
  51423. image: {
  51424. source: "./media/characters/rae/borzoi-front.svg",
  51425. extra: 1161/1098,
  51426. bottom: 31/1192
  51427. },
  51428. form: "borzoi",
  51429. default: true
  51430. },
  51431. werewolfFront: {
  51432. height: math.unit(8 + 7/12, "feet"),
  51433. name: "Front",
  51434. image: {
  51435. source: "./media/characters/rae/werewolf-front.svg",
  51436. extra: 1411/1334,
  51437. bottom: 127/1538
  51438. },
  51439. form: "werewolf",
  51440. default: true
  51441. },
  51442. },
  51443. [
  51444. {
  51445. name: "Normal",
  51446. height: math.unit(6 + 9/12, "feet"),
  51447. default: true,
  51448. form: "borzoi"
  51449. },
  51450. {
  51451. name: "Normal",
  51452. height: math.unit(8 + 7/12, "feet"),
  51453. default: true,
  51454. form: "werewolf"
  51455. },
  51456. ],
  51457. {
  51458. "borzoi": {
  51459. name: "Borzoi",
  51460. default: true
  51461. },
  51462. "werewolf": {
  51463. name: "Werewolf",
  51464. },
  51465. }
  51466. ))
  51467. characterMakers.push(() => makeCharacter(
  51468. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51469. {
  51470. front: {
  51471. height: math.unit(8 + 7/12, "feet"),
  51472. weight: math.unit(482, "lb"),
  51473. name: "Front",
  51474. image: {
  51475. source: "./media/characters/kit/front.svg",
  51476. extra: 1247/1103,
  51477. bottom: 41/1288
  51478. }
  51479. },
  51480. back: {
  51481. height: math.unit(8 + 7/12, "feet"),
  51482. weight: math.unit(482, "lb"),
  51483. name: "Back",
  51484. image: {
  51485. source: "./media/characters/kit/back.svg",
  51486. extra: 1252/1123,
  51487. bottom: 21/1273
  51488. }
  51489. },
  51490. paw: {
  51491. height: math.unit(1.46, "feet"),
  51492. name: "Paw",
  51493. image: {
  51494. source: "./media/characters/kit/paw.svg"
  51495. }
  51496. },
  51497. },
  51498. [
  51499. {
  51500. name: "Normal",
  51501. height: math.unit(2.61, "meters"),
  51502. default: true
  51503. },
  51504. {
  51505. name: "\"Tall\"",
  51506. height: math.unit(8.21, "meters")
  51507. },
  51508. {
  51509. name: "Tall",
  51510. height: math.unit(19.6, "meters")
  51511. },
  51512. {
  51513. name: "Very Tall",
  51514. height: math.unit(57.91, "meters")
  51515. },
  51516. {
  51517. name: "Semi-Macro",
  51518. height: math.unit(138.64, "meters")
  51519. },
  51520. {
  51521. name: "Macro",
  51522. height: math.unit(831.99, "meters")
  51523. },
  51524. {
  51525. name: "EX-Macro",
  51526. height: math.unit(96451121, "meters")
  51527. },
  51528. {
  51529. name: "S1-Omnipotent",
  51530. height: math.unit(4.42074e+9, "meters")
  51531. },
  51532. {
  51533. name: "S2-Omnipotent",
  51534. height: math.unit(9.42074e+17, "meters")
  51535. },
  51536. {
  51537. name: "Omnipotent",
  51538. height: math.unit(4.23112e+24, "meters")
  51539. },
  51540. {
  51541. name: "Hypergod",
  51542. height: math.unit(5.05176e+27, "meters")
  51543. },
  51544. {
  51545. name: "Hypergod-EX",
  51546. height: math.unit(9.45532e+49, "meters")
  51547. },
  51548. {
  51549. name: "Hypergod-SP",
  51550. height: math.unit(9.45532e+195, "meters")
  51551. },
  51552. ]
  51553. ))
  51554. characterMakers.push(() => makeCharacter(
  51555. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51556. {
  51557. side: {
  51558. height: math.unit(0.6, "meters"),
  51559. weight: math.unit(24, "kg"),
  51560. name: "Side",
  51561. image: {
  51562. source: "./media/characters/celeste/side.svg",
  51563. extra: 810/517,
  51564. bottom: 53/863
  51565. }
  51566. },
  51567. },
  51568. [
  51569. {
  51570. name: "Velociraptor",
  51571. height: math.unit(0.6, "meters"),
  51572. default: true
  51573. },
  51574. {
  51575. name: "Utahraptor",
  51576. height: math.unit(1.8, "meters")
  51577. },
  51578. {
  51579. name: "Gallimimus",
  51580. height: math.unit(4.0, "meters")
  51581. },
  51582. {
  51583. name: "Large",
  51584. height: math.unit(20, "meters")
  51585. },
  51586. {
  51587. name: "Planetary",
  51588. height: math.unit(50, "megameters")
  51589. },
  51590. {
  51591. name: "Stellar",
  51592. height: math.unit(1.5, "gigameters")
  51593. },
  51594. {
  51595. name: "Galactic",
  51596. height: math.unit(100, "exameters")
  51597. },
  51598. ]
  51599. ))
  51600. characterMakers.push(() => makeCharacter(
  51601. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51602. {
  51603. front: {
  51604. height: math.unit(6, "feet"),
  51605. weight: math.unit(210, "lb"),
  51606. name: "Front",
  51607. image: {
  51608. source: "./media/characters/glacia/front.svg",
  51609. extra: 958/901,
  51610. bottom: 45/1003
  51611. }
  51612. },
  51613. },
  51614. [
  51615. {
  51616. name: "Macro",
  51617. height: math.unit(1000, "meters"),
  51618. default: true
  51619. },
  51620. ]
  51621. ))
  51622. characterMakers.push(() => makeCharacter(
  51623. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51624. {
  51625. front: {
  51626. height: math.unit(4, "meters"),
  51627. name: "Front",
  51628. image: {
  51629. source: "./media/characters/giri/front.svg",
  51630. extra: 966/894,
  51631. bottom: 21/987
  51632. }
  51633. },
  51634. },
  51635. [
  51636. {
  51637. name: "Normal",
  51638. height: math.unit(4, "meters"),
  51639. default: true
  51640. },
  51641. ]
  51642. ))
  51643. characterMakers.push(() => makeCharacter(
  51644. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51645. {
  51646. back: {
  51647. height: math.unit(4, "feet"),
  51648. weight: math.unit(37, "lb"),
  51649. name: "Back",
  51650. image: {
  51651. source: "./media/characters/tin/back.svg",
  51652. extra: 845/780,
  51653. bottom: 28/873
  51654. }
  51655. },
  51656. },
  51657. [
  51658. {
  51659. name: "Normal",
  51660. height: math.unit(4, "feet"),
  51661. default: true
  51662. },
  51663. ]
  51664. ))
  51665. characterMakers.push(() => makeCharacter(
  51666. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51667. {
  51668. front: {
  51669. height: math.unit(25, "feet"),
  51670. name: "Front",
  51671. image: {
  51672. source: "./media/characters/cadenza-vivace/front.svg",
  51673. extra: 1842/1578,
  51674. bottom: 30/1872
  51675. }
  51676. },
  51677. },
  51678. [
  51679. {
  51680. name: "Macro",
  51681. height: math.unit(25, "feet"),
  51682. default: true
  51683. },
  51684. ]
  51685. ))
  51686. characterMakers.push(() => makeCharacter(
  51687. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51688. {
  51689. front: {
  51690. height: math.unit(10, "feet"),
  51691. weight: math.unit(625, "kg"),
  51692. name: "Front",
  51693. image: {
  51694. source: "./media/characters/zain/front.svg",
  51695. extra: 1682/1498,
  51696. bottom: 223/1905
  51697. }
  51698. },
  51699. back: {
  51700. height: math.unit(10, "feet"),
  51701. weight: math.unit(625, "kg"),
  51702. name: "Back",
  51703. image: {
  51704. source: "./media/characters/zain/back.svg",
  51705. extra: 1814/1657,
  51706. bottom: 152/1966
  51707. }
  51708. },
  51709. head: {
  51710. height: math.unit(10, "feet"),
  51711. weight: math.unit(625, "kg"),
  51712. name: "Head",
  51713. image: {
  51714. source: "./media/characters/zain/head.svg",
  51715. extra: 1059/762,
  51716. bottom: 0/1059
  51717. }
  51718. },
  51719. },
  51720. [
  51721. {
  51722. name: "Normal",
  51723. height: math.unit(10, "feet"),
  51724. default: true
  51725. },
  51726. ]
  51727. ))
  51728. characterMakers.push(() => makeCharacter(
  51729. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51730. {
  51731. front: {
  51732. height: math.unit(6 + 5/12, "feet"),
  51733. weight: math.unit(750, "lb"),
  51734. name: "Front",
  51735. image: {
  51736. source: "./media/characters/ruchex/front.svg",
  51737. extra: 877/820,
  51738. bottom: 17/894
  51739. },
  51740. extraAttributes: {
  51741. "width": {
  51742. name: "Width",
  51743. power: 1,
  51744. type: "length",
  51745. base: math.unit(4.757, "feet")
  51746. },
  51747. }
  51748. },
  51749. },
  51750. [
  51751. {
  51752. name: "Normal",
  51753. height: math.unit(6 + 5/12, "feet"),
  51754. default: true
  51755. },
  51756. ]
  51757. ))
  51758. characterMakers.push(() => makeCharacter(
  51759. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51760. {
  51761. dressedFront: {
  51762. height: math.unit(191, "cm"),
  51763. weight: math.unit(80, "kg"),
  51764. name: "Front",
  51765. image: {
  51766. source: "./media/characters/buster/dressed-front.svg",
  51767. extra: 1022/973,
  51768. bottom: 69/1091
  51769. }
  51770. },
  51771. dressedBack: {
  51772. height: math.unit(191, "cm"),
  51773. weight: math.unit(80, "kg"),
  51774. name: "Back",
  51775. image: {
  51776. source: "./media/characters/buster/dressed-back.svg",
  51777. extra: 1018/970,
  51778. bottom: 55/1073
  51779. }
  51780. },
  51781. nudeFront: {
  51782. height: math.unit(191, "cm"),
  51783. weight: math.unit(80, "kg"),
  51784. name: "Front (Nude)",
  51785. image: {
  51786. source: "./media/characters/buster/nude-front.svg",
  51787. extra: 1022/973,
  51788. bottom: 69/1091
  51789. }
  51790. },
  51791. nudeBack: {
  51792. height: math.unit(191, "cm"),
  51793. weight: math.unit(80, "kg"),
  51794. name: "Back (Nude)",
  51795. image: {
  51796. source: "./media/characters/buster/nude-back.svg",
  51797. extra: 1018/970,
  51798. bottom: 55/1073
  51799. }
  51800. },
  51801. dick: {
  51802. height: math.unit(2.59, "feet"),
  51803. name: "Dick",
  51804. image: {
  51805. source: "./media/characters/buster/dick.svg"
  51806. }
  51807. },
  51808. ass: {
  51809. height: math.unit(1.2, "feet"),
  51810. name: "Ass",
  51811. image: {
  51812. source: "./media/characters/buster/ass.svg"
  51813. }
  51814. },
  51815. },
  51816. [
  51817. {
  51818. name: "Normal",
  51819. height: math.unit(191, "cm"),
  51820. default: true
  51821. },
  51822. ]
  51823. ))
  51824. characterMakers.push(() => makeCharacter(
  51825. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51826. {
  51827. side: {
  51828. height: math.unit(8.1, "feet"),
  51829. weight: math.unit(3500, "lb"),
  51830. name: "Side",
  51831. image: {
  51832. source: "./media/characters/sonya/side.svg",
  51833. extra: 1730/1317,
  51834. bottom: 86/1816
  51835. }
  51836. },
  51837. },
  51838. [
  51839. {
  51840. name: "Normal",
  51841. height: math.unit(8.1, "feet"),
  51842. default: true
  51843. },
  51844. ]
  51845. ))
  51846. characterMakers.push(() => makeCharacter(
  51847. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51848. {
  51849. front: {
  51850. height: math.unit(6, "feet"),
  51851. weight: math.unit(150, "lb"),
  51852. name: "Front",
  51853. image: {
  51854. source: "./media/characters/cadence-andrysiak/front.svg",
  51855. extra: 1164/1121,
  51856. bottom: 60/1224
  51857. }
  51858. },
  51859. back: {
  51860. height: math.unit(6, "feet"),
  51861. weight: math.unit(150, "lb"),
  51862. name: "Back",
  51863. image: {
  51864. source: "./media/characters/cadence-andrysiak/back.svg",
  51865. extra: 1200/1165,
  51866. bottom: 9/1209
  51867. }
  51868. },
  51869. dressed: {
  51870. height: math.unit(6, "feet"),
  51871. weight: math.unit(150, "lb"),
  51872. name: "Dressed",
  51873. image: {
  51874. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51875. extra: 1164/1121,
  51876. bottom: 60/1224
  51877. }
  51878. },
  51879. },
  51880. [
  51881. {
  51882. name: "Micro",
  51883. height: math.unit(1, "mm")
  51884. },
  51885. {
  51886. name: "Normal",
  51887. height: math.unit(6, "feet"),
  51888. default: true
  51889. },
  51890. ]
  51891. ))
  51892. characterMakers.push(() => makeCharacter(
  51893. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51894. {
  51895. front: {
  51896. height: math.unit(60, "inches"),
  51897. weight: math.unit(16, "lb"),
  51898. preyCapacity: math.unit(80, "liters"),
  51899. name: "Front",
  51900. image: {
  51901. source: "./media/characters/penny-lynx/front.svg",
  51902. extra: 1959/1769,
  51903. bottom: 49/2008
  51904. }
  51905. },
  51906. },
  51907. [
  51908. {
  51909. name: "Nokia",
  51910. height: math.unit(2, "inches")
  51911. },
  51912. {
  51913. name: "Desktop",
  51914. height: math.unit(24, "inches")
  51915. },
  51916. {
  51917. name: "TV",
  51918. height: math.unit(60, "inches")
  51919. },
  51920. {
  51921. name: "Jumbotron",
  51922. height: math.unit(12, "feet")
  51923. },
  51924. {
  51925. name: "Billboard",
  51926. height: math.unit(48, "feet"),
  51927. default: true
  51928. },
  51929. {
  51930. name: "IMAX",
  51931. height: math.unit(96, "feet")
  51932. },
  51933. {
  51934. name: "SINGULARITY",
  51935. height: math.unit(864938, "miles")
  51936. },
  51937. ]
  51938. ))
  51939. characterMakers.push(() => makeCharacter(
  51940. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51941. {
  51942. front: {
  51943. height: math.unit(5 + 4/12, "feet"),
  51944. weight: math.unit(230, "lb"),
  51945. name: "Front",
  51946. image: {
  51947. source: "./media/characters/sukebe/front.svg",
  51948. extra: 2130/2038,
  51949. bottom: 90/2220
  51950. }
  51951. },
  51952. back: {
  51953. height: math.unit(3.48, "feet"),
  51954. weight: math.unit(230, "lb"),
  51955. name: "Back",
  51956. image: {
  51957. source: "./media/characters/sukebe/back.svg",
  51958. extra: 1670/1604,
  51959. bottom: 0/1670
  51960. }
  51961. },
  51962. },
  51963. [
  51964. {
  51965. name: "Normal",
  51966. height: math.unit(5 + 4/12, "feet"),
  51967. default: true
  51968. },
  51969. ]
  51970. ))
  51971. characterMakers.push(() => makeCharacter(
  51972. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51973. {
  51974. front: {
  51975. height: math.unit(6, "feet"),
  51976. name: "Front",
  51977. image: {
  51978. source: "./media/characters/nylla/front.svg",
  51979. extra: 1868/1699,
  51980. bottom: 97/1965
  51981. }
  51982. },
  51983. back: {
  51984. height: math.unit(6, "feet"),
  51985. name: "Back",
  51986. image: {
  51987. source: "./media/characters/nylla/back.svg",
  51988. extra: 1889/1712,
  51989. bottom: 93/1982
  51990. }
  51991. },
  51992. frontNsfw: {
  51993. height: math.unit(6, "feet"),
  51994. name: "Front (NSFW)",
  51995. image: {
  51996. source: "./media/characters/nylla/front-nsfw.svg",
  51997. extra: 1868/1699,
  51998. bottom: 97/1965
  51999. },
  52000. extraAttributes: {
  52001. "dickLength": {
  52002. name: "Dick Length",
  52003. power: 1,
  52004. type: "length",
  52005. base: math.unit(1.4, "feet")
  52006. },
  52007. "cumVolume": {
  52008. name: "Cum Volume",
  52009. power: 3,
  52010. type: "volume",
  52011. base: math.unit(100, "mL")
  52012. },
  52013. }
  52014. },
  52015. backNsfw: {
  52016. height: math.unit(6, "feet"),
  52017. name: "Back (NSFW)",
  52018. image: {
  52019. source: "./media/characters/nylla/back-nsfw.svg",
  52020. extra: 1889/1712,
  52021. bottom: 93/1982
  52022. }
  52023. },
  52024. maw: {
  52025. height: math.unit(2.10, "feet"),
  52026. name: "Maw",
  52027. image: {
  52028. source: "./media/characters/nylla/maw.svg"
  52029. }
  52030. },
  52031. paws: {
  52032. height: math.unit(2.06, "feet"),
  52033. name: "Paws",
  52034. image: {
  52035. source: "./media/characters/nylla/paws.svg"
  52036. }
  52037. },
  52038. muzzle: {
  52039. height: math.unit(0.61, "feet"),
  52040. name: "Muzzle",
  52041. image: {
  52042. source: "./media/characters/nylla/muzzle.svg"
  52043. }
  52044. },
  52045. sheath: {
  52046. height: math.unit(1.305, "feet"),
  52047. name: "Sheath",
  52048. image: {
  52049. source: "./media/characters/nylla/sheath.svg"
  52050. }
  52051. },
  52052. },
  52053. [
  52054. {
  52055. name: "Micro",
  52056. height: math.unit(7.5, "inches")
  52057. },
  52058. {
  52059. name: "Normal",
  52060. height: math.unit(7, "feet"),
  52061. default: true
  52062. },
  52063. {
  52064. name: "Macro",
  52065. height: math.unit(60, "feet")
  52066. },
  52067. {
  52068. name: "Mega",
  52069. height: math.unit(200, "feet")
  52070. },
  52071. ]
  52072. ))
  52073. characterMakers.push(() => makeCharacter(
  52074. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52075. {
  52076. front: {
  52077. height: math.unit(10, "feet"),
  52078. weight: math.unit(2300, "lb"),
  52079. name: "Front",
  52080. image: {
  52081. source: "./media/characters/hunt3r/front.svg",
  52082. extra: 1909/1742,
  52083. bottom: 46/1955
  52084. }
  52085. },
  52086. },
  52087. [
  52088. {
  52089. name: "Normal",
  52090. height: math.unit(10, "feet"),
  52091. default: true
  52092. },
  52093. ]
  52094. ))
  52095. characterMakers.push(() => makeCharacter(
  52096. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52097. {
  52098. dressed: {
  52099. height: math.unit(11, "feet"),
  52100. weight: math.unit(18500, "lb"),
  52101. preyCapacity: math.unit(9, "people"),
  52102. name: "Dressed",
  52103. image: {
  52104. source: "./media/characters/cylphis/dressed.svg",
  52105. extra: 1028/1003,
  52106. bottom: 75/1103
  52107. },
  52108. },
  52109. undressed: {
  52110. height: math.unit(11, "feet"),
  52111. weight: math.unit(18500, "lb"),
  52112. preyCapacity: math.unit(9, "people"),
  52113. name: "Undressed",
  52114. image: {
  52115. source: "./media/characters/cylphis/undressed.svg",
  52116. extra: 1028/1003,
  52117. bottom: 75/1103
  52118. }
  52119. },
  52120. full: {
  52121. height: math.unit(11, "feet"),
  52122. weight: math.unit(18500 + 150*9, "lb"),
  52123. preyCapacity: math.unit(9, "people"),
  52124. name: "Full",
  52125. image: {
  52126. source: "./media/characters/cylphis/full.svg",
  52127. extra: 1028/1003,
  52128. bottom: 75/1103
  52129. }
  52130. },
  52131. },
  52132. [
  52133. {
  52134. name: "Small",
  52135. height: math.unit(8, "feet")
  52136. },
  52137. {
  52138. name: "Normal",
  52139. height: math.unit(11, "feet"),
  52140. default: true
  52141. },
  52142. ]
  52143. ))
  52144. characterMakers.push(() => makeCharacter(
  52145. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52146. {
  52147. front: {
  52148. height: math.unit(2 + 7/12, "feet"),
  52149. name: "Front",
  52150. image: {
  52151. source: "./media/characters/orishan/front.svg",
  52152. extra: 1058/1023,
  52153. bottom: 23/1081
  52154. }
  52155. },
  52156. back: {
  52157. height: math.unit(2 + 7/12, "feet"),
  52158. name: "Back",
  52159. image: {
  52160. source: "./media/characters/orishan/back.svg",
  52161. extra: 1058/1023,
  52162. bottom: 23/1081
  52163. }
  52164. },
  52165. },
  52166. [
  52167. {
  52168. name: "Micro",
  52169. height: math.unit(2, "cm")
  52170. },
  52171. {
  52172. name: "Normal",
  52173. height: math.unit(2 + 7/12, "feet"),
  52174. default: true
  52175. },
  52176. ]
  52177. ))
  52178. characterMakers.push(() => makeCharacter(
  52179. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52180. {
  52181. front: {
  52182. height: math.unit(3, "meters"),
  52183. weight: math.unit(508, "kg"),
  52184. name: "Front",
  52185. image: {
  52186. source: "./media/characters/seranis/front.svg",
  52187. extra: 1478/1454,
  52188. bottom: 41/1519
  52189. }
  52190. },
  52191. },
  52192. [
  52193. {
  52194. name: "Normal",
  52195. height: math.unit(3, "meters"),
  52196. default: true
  52197. },
  52198. {
  52199. name: "Macro",
  52200. height: math.unit(108, "meters")
  52201. },
  52202. {
  52203. name: "Megamacro",
  52204. height: math.unit(1250, "meters")
  52205. },
  52206. ]
  52207. ))
  52208. characterMakers.push(() => makeCharacter(
  52209. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52210. {
  52211. undressed: {
  52212. height: math.unit(5 + 3/12, "feet"),
  52213. name: "Undressed",
  52214. image: {
  52215. source: "./media/characters/ankou/undressed.svg",
  52216. extra: 1301/1213,
  52217. bottom: 87/1388
  52218. }
  52219. },
  52220. dressed: {
  52221. height: math.unit(5 + 3/12, "feet"),
  52222. name: "Dressed",
  52223. image: {
  52224. source: "./media/characters/ankou/dressed.svg",
  52225. extra: 1301/1213,
  52226. bottom: 87/1388
  52227. }
  52228. },
  52229. head: {
  52230. height: math.unit(1.61, "feet"),
  52231. name: "Head",
  52232. image: {
  52233. source: "./media/characters/ankou/head.svg"
  52234. }
  52235. },
  52236. },
  52237. [
  52238. {
  52239. name: "Normal",
  52240. height: math.unit(5 + 3/12, "feet"),
  52241. default: true
  52242. },
  52243. ]
  52244. ))
  52245. characterMakers.push(() => makeCharacter(
  52246. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52247. {
  52248. side: {
  52249. height: math.unit(6 + 3/12, "feet"),
  52250. weight: math.unit(200, "kg"),
  52251. name: "Side",
  52252. image: {
  52253. source: "./media/characters/juniper-skunktaur/side.svg",
  52254. extra: 1574/1229,
  52255. bottom: 38/1612
  52256. }
  52257. },
  52258. front: {
  52259. height: math.unit(6 + 3/12, "feet"),
  52260. weight: math.unit(200, "kg"),
  52261. name: "Front",
  52262. image: {
  52263. source: "./media/characters/juniper-skunktaur/front.svg",
  52264. extra: 1337/1278,
  52265. bottom: 22/1359
  52266. }
  52267. },
  52268. back: {
  52269. height: math.unit(6 + 3/12, "feet"),
  52270. weight: math.unit(200, "kg"),
  52271. name: "Back",
  52272. image: {
  52273. source: "./media/characters/juniper-skunktaur/back.svg",
  52274. extra: 1618/1273,
  52275. bottom: 13/1631
  52276. }
  52277. },
  52278. top: {
  52279. height: math.unit(2.62, "feet"),
  52280. weight: math.unit(200, "kg"),
  52281. name: "Top",
  52282. image: {
  52283. source: "./media/characters/juniper-skunktaur/top.svg"
  52284. }
  52285. },
  52286. },
  52287. [
  52288. {
  52289. name: "Normal",
  52290. height: math.unit(6 + 3/12, "feet"),
  52291. default: true
  52292. },
  52293. ]
  52294. ))
  52295. characterMakers.push(() => makeCharacter(
  52296. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52297. {
  52298. front: {
  52299. height: math.unit(20.5, "feet"),
  52300. name: "Front",
  52301. image: {
  52302. source: "./media/characters/rei/front.svg",
  52303. extra: 1349/1195,
  52304. bottom: 31/1380
  52305. }
  52306. },
  52307. back: {
  52308. height: math.unit(20.5, "feet"),
  52309. name: "Back",
  52310. image: {
  52311. source: "./media/characters/rei/back.svg",
  52312. extra: 1358/1204,
  52313. bottom: 22/1380
  52314. }
  52315. },
  52316. pawsDigi: {
  52317. height: math.unit(3.45, "feet"),
  52318. name: "Paws (Digi)",
  52319. image: {
  52320. source: "./media/characters/rei/paws-digi.svg"
  52321. }
  52322. },
  52323. pawsPlanti: {
  52324. height: math.unit(3.45, "feet"),
  52325. name: "Paws (Planti)",
  52326. image: {
  52327. source: "./media/characters/rei/paws-planti.svg"
  52328. }
  52329. },
  52330. },
  52331. [
  52332. {
  52333. name: "Normal",
  52334. height: math.unit(20.5, "feet"),
  52335. default: true
  52336. },
  52337. ]
  52338. ))
  52339. characterMakers.push(() => makeCharacter(
  52340. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52341. {
  52342. front: {
  52343. height: math.unit(5 + 11/12, "feet"),
  52344. name: "Front",
  52345. image: {
  52346. source: "./media/characters/carina/front.svg",
  52347. extra: 1720/1449,
  52348. bottom: 14/1734
  52349. }
  52350. },
  52351. back: {
  52352. height: math.unit(5 + 11/12, "feet"),
  52353. name: "Back",
  52354. image: {
  52355. source: "./media/characters/carina/back.svg",
  52356. extra: 1493/1445,
  52357. bottom: 17/1510
  52358. }
  52359. },
  52360. paw: {
  52361. height: math.unit(0.92, "feet"),
  52362. name: "Paw",
  52363. image: {
  52364. source: "./media/characters/carina/paw.svg"
  52365. }
  52366. },
  52367. },
  52368. [
  52369. {
  52370. name: "Normal",
  52371. height: math.unit(5 + 11/12, "feet"),
  52372. default: true
  52373. },
  52374. ]
  52375. ))
  52376. characterMakers.push(() => makeCharacter(
  52377. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52378. {
  52379. front: {
  52380. height: math.unit(4.88, "meters"),
  52381. name: "Front",
  52382. image: {
  52383. source: "./media/characters/maya/front.svg",
  52384. extra: 1222/1145,
  52385. bottom: 57/1279
  52386. }
  52387. },
  52388. },
  52389. [
  52390. {
  52391. name: "Normal",
  52392. height: math.unit(4.88, "meters"),
  52393. default: true
  52394. },
  52395. {
  52396. name: "Macro",
  52397. height: math.unit(38.1, "meters")
  52398. },
  52399. {
  52400. name: "Macro+",
  52401. height: math.unit(152.4, "meters")
  52402. },
  52403. {
  52404. name: "Macro++",
  52405. height: math.unit(16.09, "km")
  52406. },
  52407. {
  52408. name: "Mega-macro",
  52409. height: math.unit(700, "megameters")
  52410. },
  52411. ]
  52412. ))
  52413. characterMakers.push(() => makeCharacter(
  52414. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52415. {
  52416. front: {
  52417. height: math.unit(6 + 2/12, "feet"),
  52418. weight: math.unit(500, "lb"),
  52419. preyCapacity: math.unit(4, "people"),
  52420. name: "Front",
  52421. image: {
  52422. source: "./media/characters/yepir/front.svg"
  52423. }
  52424. },
  52425. side: {
  52426. height: math.unit(6 + 2/12, "feet"),
  52427. weight: math.unit(500, "lb"),
  52428. preyCapacity: math.unit(4, "people"),
  52429. name: "Side",
  52430. image: {
  52431. source: "./media/characters/yepir/side.svg"
  52432. }
  52433. },
  52434. paw: {
  52435. height: math.unit(1.05, "feet"),
  52436. name: "Paw",
  52437. image: {
  52438. source: "./media/characters/yepir/paw.svg"
  52439. }
  52440. },
  52441. },
  52442. [
  52443. {
  52444. name: "Normal",
  52445. height: math.unit(6 + 2/12, "feet"),
  52446. default: true
  52447. },
  52448. ]
  52449. ))
  52450. characterMakers.push(() => makeCharacter(
  52451. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52452. {
  52453. front: {
  52454. height: math.unit(5 + 4/12, "feet"),
  52455. name: "Front",
  52456. image: {
  52457. source: "./media/characters/russec/front.svg",
  52458. extra: 1926/1626,
  52459. bottom: 72/1998
  52460. }
  52461. },
  52462. back: {
  52463. height: math.unit(5 + 4/12, "feet"),
  52464. name: "Back",
  52465. image: {
  52466. source: "./media/characters/russec/back.svg",
  52467. extra: 1910/1591,
  52468. bottom: 48/1958
  52469. }
  52470. },
  52471. },
  52472. [
  52473. {
  52474. name: "Small",
  52475. height: math.unit(5 + 4/12, "feet")
  52476. },
  52477. {
  52478. name: "Normal",
  52479. height: math.unit(72, "feet"),
  52480. default: true
  52481. },
  52482. ]
  52483. ))
  52484. characterMakers.push(() => makeCharacter(
  52485. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52486. {
  52487. side: {
  52488. height: math.unit(12, "feet"),
  52489. name: "Side",
  52490. image: {
  52491. source: "./media/characters/cianus/side.svg",
  52492. extra: 808/526,
  52493. bottom: 61/869
  52494. }
  52495. },
  52496. },
  52497. [
  52498. {
  52499. name: "Normal",
  52500. height: math.unit(12, "feet"),
  52501. default: true
  52502. },
  52503. ]
  52504. ))
  52505. characterMakers.push(() => makeCharacter(
  52506. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52507. {
  52508. front: {
  52509. height: math.unit(9 + 6/12, "feet"),
  52510. weight: math.unit(300, "lb"),
  52511. name: "Front",
  52512. image: {
  52513. source: "./media/characters/ahab/front.svg",
  52514. extra: 1897/1868,
  52515. bottom: 121/2018
  52516. }
  52517. },
  52518. frontNsfw: {
  52519. height: math.unit(9 + 6/12, "feet"),
  52520. weight: math.unit(300, "lb"),
  52521. name: "Front-nsfw",
  52522. image: {
  52523. source: "./media/characters/ahab/front-nsfw.svg",
  52524. extra: 1897/1868,
  52525. bottom: 121/2018
  52526. }
  52527. },
  52528. },
  52529. [
  52530. {
  52531. name: "Normal",
  52532. height: math.unit(9 + 6/12, "feet")
  52533. },
  52534. {
  52535. name: "Macro",
  52536. height: math.unit(657, "feet"),
  52537. default: true
  52538. },
  52539. ]
  52540. ))
  52541. characterMakers.push(() => makeCharacter(
  52542. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52543. {
  52544. front: {
  52545. height: math.unit(2.69, "meters"),
  52546. weight: math.unit(132, "kg"),
  52547. name: "Front",
  52548. image: {
  52549. source: "./media/characters/aarkus/front.svg",
  52550. extra: 1400/1231,
  52551. bottom: 34/1434
  52552. }
  52553. },
  52554. back: {
  52555. height: math.unit(2.69, "meters"),
  52556. weight: math.unit(132, "kg"),
  52557. name: "Back",
  52558. image: {
  52559. source: "./media/characters/aarkus/back.svg",
  52560. extra: 1381/1218,
  52561. bottom: 30/1411
  52562. }
  52563. },
  52564. frontNsfw: {
  52565. height: math.unit(2.69, "meters"),
  52566. weight: math.unit(132, "kg"),
  52567. name: "Front (NSFW)",
  52568. image: {
  52569. source: "./media/characters/aarkus/front-nsfw.svg",
  52570. extra: 1400/1231,
  52571. bottom: 34/1434
  52572. }
  52573. },
  52574. foot: {
  52575. height: math.unit(1.45, "feet"),
  52576. name: "Foot",
  52577. image: {
  52578. source: "./media/characters/aarkus/foot.svg"
  52579. }
  52580. },
  52581. head: {
  52582. height: math.unit(2.85, "feet"),
  52583. name: "Head",
  52584. image: {
  52585. source: "./media/characters/aarkus/head.svg"
  52586. }
  52587. },
  52588. headAlt: {
  52589. height: math.unit(3.07, "feet"),
  52590. name: "Head (Alt)",
  52591. image: {
  52592. source: "./media/characters/aarkus/head-alt.svg"
  52593. }
  52594. },
  52595. mouth: {
  52596. height: math.unit(1.25, "feet"),
  52597. name: "Mouth",
  52598. image: {
  52599. source: "./media/characters/aarkus/mouth.svg"
  52600. }
  52601. },
  52602. dick: {
  52603. height: math.unit(1.77, "feet"),
  52604. name: "Dick",
  52605. image: {
  52606. source: "./media/characters/aarkus/dick.svg"
  52607. }
  52608. },
  52609. },
  52610. [
  52611. {
  52612. name: "Normal",
  52613. height: math.unit(2.69, "meters"),
  52614. default: true
  52615. },
  52616. {
  52617. name: "Macro",
  52618. height: math.unit(269, "meters")
  52619. },
  52620. {
  52621. name: "Macro+",
  52622. height: math.unit(672.5, "meters")
  52623. },
  52624. {
  52625. name: "Megamacro",
  52626. height: math.unit(2.017, "km")
  52627. },
  52628. ]
  52629. ))
  52630. characterMakers.push(() => makeCharacter(
  52631. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52632. {
  52633. front: {
  52634. height: math.unit(23.47, "cm"),
  52635. weight: math.unit(600, "grams"),
  52636. name: "Front",
  52637. image: {
  52638. source: "./media/characters/diode/front.svg",
  52639. extra: 1778/1396,
  52640. bottom: 95/1873
  52641. }
  52642. },
  52643. side: {
  52644. height: math.unit(23.47, "cm"),
  52645. weight: math.unit(600, "grams"),
  52646. name: "Side",
  52647. image: {
  52648. source: "./media/characters/diode/side.svg",
  52649. extra: 1831/1404,
  52650. bottom: 86/1917
  52651. }
  52652. },
  52653. wings: {
  52654. height: math.unit(0.683, "feet"),
  52655. name: "Wings",
  52656. image: {
  52657. source: "./media/characters/diode/wings.svg"
  52658. }
  52659. },
  52660. },
  52661. [
  52662. {
  52663. name: "Normal",
  52664. height: math.unit(23.47, "cm"),
  52665. default: true
  52666. },
  52667. ]
  52668. ))
  52669. characterMakers.push(() => makeCharacter(
  52670. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52671. {
  52672. front: {
  52673. height: math.unit(6 + 3/12, "feet"),
  52674. weight: math.unit(250, "lb"),
  52675. name: "Front",
  52676. image: {
  52677. source: "./media/characters/reika/front.svg",
  52678. extra: 1120/1078,
  52679. bottom: 86/1206
  52680. }
  52681. },
  52682. },
  52683. [
  52684. {
  52685. name: "Normal",
  52686. height: math.unit(6 + 3/12, "feet"),
  52687. default: true
  52688. },
  52689. ]
  52690. ))
  52691. characterMakers.push(() => makeCharacter(
  52692. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52693. {
  52694. front: {
  52695. height: math.unit(16 + 8/12, "feet"),
  52696. weight: math.unit(9000, "lb"),
  52697. name: "Front",
  52698. image: {
  52699. source: "./media/characters/lokuto-takama/front.svg",
  52700. extra: 1774/1632,
  52701. bottom: 147/1921
  52702. },
  52703. extraAttributes: {
  52704. "bustWidth": {
  52705. name: "Bust Width",
  52706. power: 1,
  52707. type: "length",
  52708. base: math.unit(2.4, "meters")
  52709. },
  52710. "breastWeight": {
  52711. name: "Breast Weight",
  52712. power: 3,
  52713. type: "mass",
  52714. base: math.unit(1000, "kg")
  52715. },
  52716. }
  52717. },
  52718. },
  52719. [
  52720. {
  52721. name: "Normal",
  52722. height: math.unit(16 + 8/12, "feet"),
  52723. default: true
  52724. },
  52725. ]
  52726. ))
  52727. characterMakers.push(() => makeCharacter(
  52728. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52729. {
  52730. front: {
  52731. height: math.unit(10, "cm"),
  52732. weight: math.unit(850, "grams"),
  52733. name: "Front",
  52734. image: {
  52735. source: "./media/characters/owak-bone/front.svg",
  52736. extra: 1965/1801,
  52737. bottom: 31/1996
  52738. }
  52739. },
  52740. },
  52741. [
  52742. {
  52743. name: "Normal",
  52744. height: math.unit(10, "cm"),
  52745. default: true
  52746. },
  52747. ]
  52748. ))
  52749. characterMakers.push(() => makeCharacter(
  52750. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52751. {
  52752. front: {
  52753. height: math.unit(2 + 6/12, "feet"),
  52754. weight: math.unit(9, "lb"),
  52755. name: "Front",
  52756. image: {
  52757. source: "./media/characters/muffin/front.svg",
  52758. extra: 1220/1195,
  52759. bottom: 84/1304
  52760. }
  52761. },
  52762. },
  52763. [
  52764. {
  52765. name: "Normal",
  52766. height: math.unit(2 + 6/12, "feet"),
  52767. default: true
  52768. },
  52769. ]
  52770. ))
  52771. characterMakers.push(() => makeCharacter(
  52772. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52773. {
  52774. front: {
  52775. height: math.unit(7, "feet"),
  52776. name: "Front",
  52777. image: {
  52778. source: "./media/characters/chimera/front.svg",
  52779. extra: 1752/1614,
  52780. bottom: 68/1820
  52781. }
  52782. },
  52783. },
  52784. [
  52785. {
  52786. name: "Normal",
  52787. height: math.unit(7, "feet")
  52788. },
  52789. {
  52790. name: "Gigamacro",
  52791. height: math.unit(2.9, "gigameters"),
  52792. default: true
  52793. },
  52794. {
  52795. name: "Universal",
  52796. height: math.unit(1.56e26, "yottameters")
  52797. },
  52798. ]
  52799. ))
  52800. characterMakers.push(() => makeCharacter(
  52801. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52802. {
  52803. front: {
  52804. height: math.unit(3, "feet"),
  52805. weight: math.unit(20, "lb"),
  52806. name: "Front",
  52807. image: {
  52808. source: "./media/characters/kit-fennec-fox/front.svg",
  52809. extra: 1027/932,
  52810. bottom: 16/1043
  52811. }
  52812. },
  52813. back: {
  52814. height: math.unit(3, "feet"),
  52815. weight: math.unit(20, "lb"),
  52816. name: "Back",
  52817. image: {
  52818. source: "./media/characters/kit-fennec-fox/back.svg",
  52819. extra: 1027/932,
  52820. bottom: 16/1043
  52821. }
  52822. },
  52823. },
  52824. [
  52825. {
  52826. name: "Normal",
  52827. height: math.unit(3, "feet"),
  52828. default: true
  52829. },
  52830. ]
  52831. ))
  52832. characterMakers.push(() => makeCharacter(
  52833. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52834. {
  52835. front: {
  52836. height: math.unit(167, "cm"),
  52837. name: "Front",
  52838. image: {
  52839. source: "./media/characters/blue-otter/front.svg",
  52840. extra: 1951/1920,
  52841. bottom: 31/1982
  52842. }
  52843. },
  52844. },
  52845. [
  52846. {
  52847. name: "Otter-Sized",
  52848. height: math.unit(100, "cm")
  52849. },
  52850. {
  52851. name: "Normal",
  52852. height: math.unit(167, "cm"),
  52853. default: true
  52854. },
  52855. ]
  52856. ))
  52857. characterMakers.push(() => makeCharacter(
  52858. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52859. {
  52860. front: {
  52861. height: math.unit(4 + 4/12, "feet"),
  52862. name: "Front",
  52863. image: {
  52864. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52865. extra: 1072/1067,
  52866. bottom: 117/1189
  52867. }
  52868. },
  52869. back: {
  52870. height: math.unit(4 + 4/12, "feet"),
  52871. name: "Back",
  52872. image: {
  52873. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52874. extra: 1135/1129,
  52875. bottom: 57/1192
  52876. }
  52877. },
  52878. head: {
  52879. height: math.unit(1.77, "feet"),
  52880. name: "Head",
  52881. image: {
  52882. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52883. }
  52884. },
  52885. },
  52886. [
  52887. {
  52888. name: "Normal",
  52889. height: math.unit(4 + 4/12, "feet"),
  52890. default: true
  52891. },
  52892. ]
  52893. ))
  52894. characterMakers.push(() => makeCharacter(
  52895. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52896. {
  52897. front: {
  52898. height: math.unit(2, "inches"),
  52899. name: "Front",
  52900. image: {
  52901. source: "./media/characters/carley-hartford/front.svg",
  52902. extra: 1035/988,
  52903. bottom: 23/1058
  52904. }
  52905. },
  52906. back: {
  52907. height: math.unit(2, "inches"),
  52908. name: "Back",
  52909. image: {
  52910. source: "./media/characters/carley-hartford/back.svg",
  52911. extra: 1035/988,
  52912. bottom: 23/1058
  52913. }
  52914. },
  52915. dressed: {
  52916. height: math.unit(2, "inches"),
  52917. name: "Dressed",
  52918. image: {
  52919. source: "./media/characters/carley-hartford/dressed.svg",
  52920. extra: 651/620,
  52921. bottom: 0/651
  52922. }
  52923. },
  52924. },
  52925. [
  52926. {
  52927. name: "Micro",
  52928. height: math.unit(2, "inches"),
  52929. default: true
  52930. },
  52931. {
  52932. name: "Macro",
  52933. height: math.unit(6 + 3/12, "feet")
  52934. },
  52935. ]
  52936. ))
  52937. characterMakers.push(() => makeCharacter(
  52938. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52939. {
  52940. front: {
  52941. height: math.unit(2 + 3/12, "feet"),
  52942. weight: math.unit(15 + 7/16, "lb"),
  52943. name: "Front",
  52944. image: {
  52945. source: "./media/characters/duke/front.svg",
  52946. extra: 910/815,
  52947. bottom: 30/940
  52948. }
  52949. },
  52950. },
  52951. [
  52952. {
  52953. name: "Normal",
  52954. height: math.unit(2 + 3/12, "feet"),
  52955. default: true
  52956. },
  52957. ]
  52958. ))
  52959. characterMakers.push(() => makeCharacter(
  52960. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52961. {
  52962. front: {
  52963. height: math.unit(5 + 4/12, "feet"),
  52964. weight: math.unit(156, "lb"),
  52965. name: "Front",
  52966. image: {
  52967. source: "./media/characters/dein/front.svg",
  52968. extra: 855/815,
  52969. bottom: 48/903
  52970. }
  52971. },
  52972. side: {
  52973. height: math.unit(5 + 4/12, "feet"),
  52974. weight: math.unit(156, "lb"),
  52975. name: "side",
  52976. image: {
  52977. source: "./media/characters/dein/side.svg",
  52978. extra: 846/803,
  52979. bottom: 25/871
  52980. }
  52981. },
  52982. maw: {
  52983. height: math.unit(1.45, "feet"),
  52984. name: "Maw",
  52985. image: {
  52986. source: "./media/characters/dein/maw.svg"
  52987. }
  52988. },
  52989. },
  52990. [
  52991. {
  52992. name: "Ferret Sized",
  52993. height: math.unit(2 + 5/12, "feet")
  52994. },
  52995. {
  52996. name: "Normal",
  52997. height: math.unit(5 + 4/12, "feet"),
  52998. default: true
  52999. },
  53000. ]
  53001. ))
  53002. characterMakers.push(() => makeCharacter(
  53003. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53004. {
  53005. front: {
  53006. height: math.unit(84 + 8/12, "feet"),
  53007. weight: math.unit(942180, "lb"),
  53008. name: "Front",
  53009. image: {
  53010. source: "./media/characters/daurine-arima/front.svg",
  53011. extra: 1989/1782,
  53012. bottom: 37/2026
  53013. }
  53014. },
  53015. side: {
  53016. height: math.unit(84 + 8/12, "feet"),
  53017. weight: math.unit(942180, "lb"),
  53018. name: "Side",
  53019. image: {
  53020. source: "./media/characters/daurine-arima/side.svg",
  53021. extra: 1997/1790,
  53022. bottom: 21/2018
  53023. }
  53024. },
  53025. back: {
  53026. height: math.unit(84 + 8/12, "feet"),
  53027. weight: math.unit(942180, "lb"),
  53028. name: "Back",
  53029. image: {
  53030. source: "./media/characters/daurine-arima/back.svg",
  53031. extra: 1992/1800,
  53032. bottom: 12/2004
  53033. }
  53034. },
  53035. head: {
  53036. height: math.unit(15.5, "feet"),
  53037. name: "Head",
  53038. image: {
  53039. source: "./media/characters/daurine-arima/head.svg"
  53040. }
  53041. },
  53042. headAlt: {
  53043. height: math.unit(19.19, "feet"),
  53044. name: "Head (Alt)",
  53045. image: {
  53046. source: "./media/characters/daurine-arima/head-alt.svg"
  53047. }
  53048. },
  53049. },
  53050. [
  53051. {
  53052. name: "Minimum height",
  53053. height: math.unit(8 + 10/12, "feet")
  53054. },
  53055. {
  53056. name: "Comfort height",
  53057. height: math.unit(19 + 6 /12, "feet")
  53058. },
  53059. {
  53060. name: "\"Normal\" height",
  53061. height: math.unit(28 + 10/12, "feet")
  53062. },
  53063. {
  53064. name: "Base height",
  53065. height: math.unit(84 + 8/12, "feet"),
  53066. default: true
  53067. },
  53068. {
  53069. name: "Mini-macro",
  53070. height: math.unit(2360, "feet")
  53071. },
  53072. {
  53073. name: "Macro",
  53074. height: math.unit(10, "miles")
  53075. },
  53076. {
  53077. name: "Goddess",
  53078. height: math.unit(9.99e40, "yottameters")
  53079. },
  53080. ]
  53081. ))
  53082. characterMakers.push(() => makeCharacter(
  53083. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53084. {
  53085. front: {
  53086. height: math.unit(2.3, "meters"),
  53087. name: "Front",
  53088. image: {
  53089. source: "./media/characters/cilenomon/front.svg",
  53090. extra: 1963/1778,
  53091. bottom: 54/2017
  53092. }
  53093. },
  53094. },
  53095. [
  53096. {
  53097. name: "Normal",
  53098. height: math.unit(2.3, "meters"),
  53099. default: true
  53100. },
  53101. {
  53102. name: "Big",
  53103. height: math.unit(5, "meters")
  53104. },
  53105. {
  53106. name: "Macro",
  53107. height: math.unit(30, "meters")
  53108. },
  53109. {
  53110. name: "True",
  53111. height: math.unit(1, "universe")
  53112. },
  53113. ]
  53114. ))
  53115. characterMakers.push(() => makeCharacter(
  53116. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53117. {
  53118. front: {
  53119. height: math.unit(5, "feet"),
  53120. name: "Front",
  53121. image: {
  53122. source: "./media/characters/sen-mink/front.svg",
  53123. extra: 1727/1675,
  53124. bottom: 35/1762
  53125. }
  53126. },
  53127. },
  53128. [
  53129. {
  53130. name: "Normal",
  53131. height: math.unit(5, "feet"),
  53132. default: true
  53133. },
  53134. ]
  53135. ))
  53136. characterMakers.push(() => makeCharacter(
  53137. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53138. {
  53139. front: {
  53140. height: math.unit(5.42999, "feet"),
  53141. weight: math.unit(100, "lb"),
  53142. name: "Front",
  53143. image: {
  53144. source: "./media/characters/ophois/front.svg",
  53145. extra: 1429/1286,
  53146. bottom: 60/1489
  53147. }
  53148. },
  53149. },
  53150. [
  53151. {
  53152. name: "Normal",
  53153. height: math.unit(5.42999, "feet"),
  53154. default: true
  53155. },
  53156. ]
  53157. ))
  53158. characterMakers.push(() => makeCharacter(
  53159. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53160. {
  53161. front: {
  53162. height: math.unit(2, "meters"),
  53163. name: "Front",
  53164. image: {
  53165. source: "./media/characters/riley/front.svg",
  53166. extra: 1779/1754,
  53167. bottom: 139/1918
  53168. }
  53169. },
  53170. },
  53171. [
  53172. {
  53173. name: "Normal",
  53174. height: math.unit(2, "meters"),
  53175. default: true
  53176. },
  53177. ]
  53178. ))
  53179. characterMakers.push(() => makeCharacter(
  53180. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53181. {
  53182. front: {
  53183. height: math.unit(6 + 2/12, "feet"),
  53184. weight: math.unit(195, "lb"),
  53185. preyCapacity: math.unit(6, "people"),
  53186. name: "Front",
  53187. image: {
  53188. source: "./media/characters/shuken-flash/front.svg",
  53189. extra: 1905/1739,
  53190. bottom: 65/1970
  53191. }
  53192. },
  53193. back: {
  53194. height: math.unit(6 + 2/12, "feet"),
  53195. weight: math.unit(195, "lb"),
  53196. preyCapacity: math.unit(6, "people"),
  53197. name: "Back",
  53198. image: {
  53199. source: "./media/characters/shuken-flash/back.svg",
  53200. extra: 1912/1751,
  53201. bottom: 13/1925
  53202. }
  53203. },
  53204. },
  53205. [
  53206. {
  53207. name: "Normal",
  53208. height: math.unit(6 + 2/12, "feet"),
  53209. default: true
  53210. },
  53211. ]
  53212. ))
  53213. characterMakers.push(() => makeCharacter(
  53214. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53215. {
  53216. front: {
  53217. height: math.unit(5 + 9/12, "feet"),
  53218. weight: math.unit(150, "lb"),
  53219. name: "Front",
  53220. image: {
  53221. source: "./media/characters/plat/front.svg",
  53222. extra: 1816/1703,
  53223. bottom: 43/1859
  53224. }
  53225. },
  53226. side: {
  53227. height: math.unit(5 + 9/12, "feet"),
  53228. weight: math.unit(300, "lb"),
  53229. name: "Side",
  53230. image: {
  53231. source: "./media/characters/plat/side.svg",
  53232. extra: 1824/1699,
  53233. bottom: 18/1842
  53234. }
  53235. },
  53236. },
  53237. [
  53238. {
  53239. name: "Normal",
  53240. height: math.unit(5 + 9/12, "feet"),
  53241. default: true
  53242. },
  53243. ]
  53244. ))
  53245. characterMakers.push(() => makeCharacter(
  53246. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53247. {
  53248. front: {
  53249. height: math.unit(9, "feet"),
  53250. weight: math.unit(1800, "lb"),
  53251. name: "Front",
  53252. image: {
  53253. source: "./media/characters/elaine/front.svg",
  53254. extra: 1833/1354,
  53255. bottom: 25/1858
  53256. }
  53257. },
  53258. back: {
  53259. height: math.unit(8.8, "feet"),
  53260. weight: math.unit(1800, "lb"),
  53261. name: "Back",
  53262. image: {
  53263. source: "./media/characters/elaine/back.svg",
  53264. extra: 1641/1233,
  53265. bottom: 53/1694
  53266. }
  53267. },
  53268. },
  53269. [
  53270. {
  53271. name: "Normal",
  53272. height: math.unit(9, "feet"),
  53273. default: true
  53274. },
  53275. ]
  53276. ))
  53277. characterMakers.push(() => makeCharacter(
  53278. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53279. {
  53280. front: {
  53281. height: math.unit(17 + 9/12, "feet"),
  53282. weight: math.unit(8000, "lb"),
  53283. name: "Front",
  53284. image: {
  53285. source: "./media/characters/vera-raven/front.svg",
  53286. extra: 1457/1412,
  53287. bottom: 121/1578
  53288. }
  53289. },
  53290. side: {
  53291. height: math.unit(17 + 9/12, "feet"),
  53292. weight: math.unit(8000, "lb"),
  53293. name: "Side",
  53294. image: {
  53295. source: "./media/characters/vera-raven/side.svg",
  53296. extra: 1510/1464,
  53297. bottom: 54/1564
  53298. }
  53299. },
  53300. },
  53301. [
  53302. {
  53303. name: "Normal",
  53304. height: math.unit(17 + 9/12, "feet"),
  53305. default: true
  53306. },
  53307. ]
  53308. ))
  53309. characterMakers.push(() => makeCharacter(
  53310. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53311. {
  53312. dressed: {
  53313. height: math.unit(6 + 9/12, "feet"),
  53314. name: "Dressed",
  53315. image: {
  53316. source: "./media/characters/nakisha/dressed.svg",
  53317. extra: 1909/1757,
  53318. bottom: 48/1957
  53319. }
  53320. },
  53321. nude: {
  53322. height: math.unit(6 + 9/12, "feet"),
  53323. name: "Nude",
  53324. image: {
  53325. source: "./media/characters/nakisha/nude.svg",
  53326. extra: 1917/1765,
  53327. bottom: 34/1951
  53328. }
  53329. },
  53330. },
  53331. [
  53332. {
  53333. name: "Normal",
  53334. height: math.unit(6 + 9/12, "feet"),
  53335. default: true
  53336. },
  53337. ]
  53338. ))
  53339. characterMakers.push(() => makeCharacter(
  53340. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53341. {
  53342. front: {
  53343. height: math.unit(87, "meters"),
  53344. name: "Front",
  53345. image: {
  53346. source: "./media/characters/serafin/front.svg",
  53347. extra: 1919/1776,
  53348. bottom: 65/1984
  53349. }
  53350. },
  53351. },
  53352. [
  53353. {
  53354. name: "Normal",
  53355. height: math.unit(87, "meters"),
  53356. default: true
  53357. },
  53358. ]
  53359. ))
  53360. characterMakers.push(() => makeCharacter(
  53361. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53362. {
  53363. front: {
  53364. height: math.unit(6, "feet"),
  53365. weight: math.unit(200, "lb"),
  53366. name: "Front",
  53367. image: {
  53368. source: "./media/characters/poptart/front.svg",
  53369. extra: 615/583,
  53370. bottom: 23/638
  53371. }
  53372. },
  53373. back: {
  53374. height: math.unit(6, "feet"),
  53375. weight: math.unit(200, "lb"),
  53376. name: "Back",
  53377. image: {
  53378. source: "./media/characters/poptart/back.svg",
  53379. extra: 617/584,
  53380. bottom: 22/639
  53381. }
  53382. },
  53383. frontNsfw: {
  53384. height: math.unit(6, "feet"),
  53385. weight: math.unit(200, "lb"),
  53386. name: "Front (NSFW)",
  53387. image: {
  53388. source: "./media/characters/poptart/front-nsfw.svg",
  53389. extra: 615/583,
  53390. bottom: 23/638
  53391. }
  53392. },
  53393. backNsfw: {
  53394. height: math.unit(6, "feet"),
  53395. weight: math.unit(200, "lb"),
  53396. name: "Back (NSFW)",
  53397. image: {
  53398. source: "./media/characters/poptart/back-nsfw.svg",
  53399. extra: 617/584,
  53400. bottom: 22/639
  53401. }
  53402. },
  53403. hand: {
  53404. height: math.unit(1.14, "feet"),
  53405. name: "Hand",
  53406. image: {
  53407. source: "./media/characters/poptart/hand.svg"
  53408. }
  53409. },
  53410. foot: {
  53411. height: math.unit(1.5, "feet"),
  53412. name: "Foot",
  53413. image: {
  53414. source: "./media/characters/poptart/foot.svg"
  53415. }
  53416. },
  53417. },
  53418. [
  53419. {
  53420. name: "Normal",
  53421. height: math.unit(6, "feet"),
  53422. default: true
  53423. },
  53424. {
  53425. name: "Grande",
  53426. height: math.unit(350, "feet")
  53427. },
  53428. {
  53429. name: "Massif",
  53430. height: math.unit(967, "feet")
  53431. },
  53432. ]
  53433. ))
  53434. characterMakers.push(() => makeCharacter(
  53435. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53436. {
  53437. hyenaSide: {
  53438. height: math.unit(120, "cm"),
  53439. weight: math.unit(120, "lb"),
  53440. name: "Side",
  53441. image: {
  53442. source: "./media/characters/trance/hyena-side.svg",
  53443. extra: 998/904,
  53444. bottom: 76/1074
  53445. }
  53446. },
  53447. },
  53448. [
  53449. {
  53450. name: "Normal",
  53451. height: math.unit(120, "cm"),
  53452. default: true
  53453. },
  53454. {
  53455. name: "Dire",
  53456. height: math.unit(230, "cm")
  53457. },
  53458. {
  53459. name: "Macro",
  53460. height: math.unit(37, "feet")
  53461. },
  53462. ]
  53463. ))
  53464. characterMakers.push(() => makeCharacter(
  53465. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53466. {
  53467. front: {
  53468. height: math.unit(6 + 3/12, "feet"),
  53469. name: "Front",
  53470. image: {
  53471. source: "./media/characters/michael-berretta/front.svg",
  53472. extra: 515/494,
  53473. bottom: 20/535
  53474. }
  53475. },
  53476. back: {
  53477. height: math.unit(6 + 3/12, "feet"),
  53478. name: "Back",
  53479. image: {
  53480. source: "./media/characters/michael-berretta/back.svg",
  53481. extra: 520/497,
  53482. bottom: 21/541
  53483. }
  53484. },
  53485. frontNsfw: {
  53486. height: math.unit(6 + 3/12, "feet"),
  53487. name: "Front (NSFW)",
  53488. image: {
  53489. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53490. extra: 515/494,
  53491. bottom: 20/535
  53492. }
  53493. },
  53494. dick: {
  53495. height: math.unit(1, "feet"),
  53496. name: "Dick",
  53497. image: {
  53498. source: "./media/characters/michael-berretta/dick.svg"
  53499. }
  53500. },
  53501. },
  53502. [
  53503. {
  53504. name: "Normal",
  53505. height: math.unit(6 + 3/12, "feet"),
  53506. default: true
  53507. },
  53508. {
  53509. name: "Big",
  53510. height: math.unit(12, "feet")
  53511. },
  53512. {
  53513. name: "Macro",
  53514. height: math.unit(187.5, "feet")
  53515. },
  53516. ]
  53517. ))
  53518. characterMakers.push(() => makeCharacter(
  53519. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53520. {
  53521. front: {
  53522. height: math.unit(9 + 9/12, "feet"),
  53523. weight: math.unit(1244, "lb"),
  53524. name: "Front",
  53525. image: {
  53526. source: "./media/characters/stella-edgecomb/front.svg",
  53527. extra: 1835/1706,
  53528. bottom: 49/1884
  53529. }
  53530. },
  53531. pen: {
  53532. height: math.unit(0.95, "feet"),
  53533. name: "Pen",
  53534. image: {
  53535. source: "./media/characters/stella-edgecomb/pen.svg"
  53536. }
  53537. },
  53538. },
  53539. [
  53540. {
  53541. name: "Cozy Bear",
  53542. height: math.unit(0.5, "inches")
  53543. },
  53544. {
  53545. name: "Normal",
  53546. height: math.unit(9 + 9/12, "feet"),
  53547. default: true
  53548. },
  53549. {
  53550. name: "Giga Bear",
  53551. height: math.unit(1, "mile")
  53552. },
  53553. {
  53554. name: "Great Bear",
  53555. height: math.unit(53, "miles")
  53556. },
  53557. {
  53558. name: "Goddess Bear",
  53559. height: math.unit(40000, "miles")
  53560. },
  53561. {
  53562. name: "Sun Bear",
  53563. height: math.unit(900000, "miles")
  53564. },
  53565. ]
  53566. ))
  53567. characterMakers.push(() => makeCharacter(
  53568. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53569. {
  53570. anthroFront: {
  53571. height: math.unit(556, "cm"),
  53572. weight: math.unit(2650, "kg"),
  53573. preyCapacity: math.unit(3, "people"),
  53574. name: "Front",
  53575. image: {
  53576. source: "./media/characters/ash´iika/front.svg",
  53577. extra: 710/673,
  53578. bottom: 15/725
  53579. },
  53580. form: "anthro",
  53581. default: true
  53582. },
  53583. anthroSide: {
  53584. height: math.unit(556, "cm"),
  53585. weight: math.unit(2650, "kg"),
  53586. preyCapacity: math.unit(3, "people"),
  53587. name: "Side",
  53588. image: {
  53589. source: "./media/characters/ash´iika/side.svg",
  53590. extra: 696/676,
  53591. bottom: 13/709
  53592. },
  53593. form: "anthro"
  53594. },
  53595. anthroDressed: {
  53596. height: math.unit(556, "cm"),
  53597. weight: math.unit(2650, "kg"),
  53598. preyCapacity: math.unit(3, "people"),
  53599. name: "Dressed",
  53600. image: {
  53601. source: "./media/characters/ash´iika/dressed.svg",
  53602. extra: 710/673,
  53603. bottom: 15/725
  53604. },
  53605. form: "anthro"
  53606. },
  53607. anthroHead: {
  53608. height: math.unit(3.5, "feet"),
  53609. name: "Head",
  53610. image: {
  53611. source: "./media/characters/ash´iika/head.svg",
  53612. extra: 348/291,
  53613. bottom: 45/393
  53614. },
  53615. form: "anthro"
  53616. },
  53617. feralSide: {
  53618. height: math.unit(870, "cm"),
  53619. weight: math.unit(17500, "kg"),
  53620. preyCapacity: math.unit(15, "people"),
  53621. name: "Side",
  53622. image: {
  53623. source: "./media/characters/ash´iika/feral.svg",
  53624. extra: 595/199,
  53625. bottom: 7/602
  53626. },
  53627. form: "feral",
  53628. default: true,
  53629. },
  53630. },
  53631. [
  53632. {
  53633. name: "Normal",
  53634. height: math.unit(556, "cm"),
  53635. default: true,
  53636. form: "anthro"
  53637. },
  53638. {
  53639. name: "Macro",
  53640. height: math.unit(88, "meters"),
  53641. form: "anthro"
  53642. },
  53643. {
  53644. name: "Normal",
  53645. height: math.unit(870, "cm"),
  53646. default: true,
  53647. form: "feral"
  53648. },
  53649. {
  53650. name: "Large",
  53651. height: math.unit(25, "meters"),
  53652. form: "feral"
  53653. },
  53654. ],
  53655. {
  53656. "anthro": {
  53657. name: "Anthro",
  53658. default: true
  53659. },
  53660. "feral": {
  53661. name: "Feral",
  53662. },
  53663. }
  53664. ))
  53665. characterMakers.push(() => makeCharacter(
  53666. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53667. {
  53668. front: {
  53669. height: math.unit(10, "feet"),
  53670. weight: math.unit(800, "lb"),
  53671. name: "Front",
  53672. image: {
  53673. source: "./media/characters/yen/front.svg",
  53674. extra: 443/411,
  53675. bottom: 6/449
  53676. }
  53677. },
  53678. sleeping: {
  53679. height: math.unit(10, "feet"),
  53680. weight: math.unit(800, "lb"),
  53681. name: "Sleeping",
  53682. image: {
  53683. source: "./media/characters/yen/sleeping.svg",
  53684. extra: 470/422,
  53685. bottom: 0/470
  53686. }
  53687. },
  53688. head: {
  53689. height: math.unit(2.2, "feet"),
  53690. name: "Head",
  53691. image: {
  53692. source: "./media/characters/yen/head.svg"
  53693. }
  53694. },
  53695. headAlt: {
  53696. height: math.unit(2.1, "feet"),
  53697. name: "Head (Alt)",
  53698. image: {
  53699. source: "./media/characters/yen/head-alt.svg"
  53700. }
  53701. },
  53702. },
  53703. [
  53704. {
  53705. name: "Normal",
  53706. height: math.unit(10, "feet"),
  53707. default: true
  53708. },
  53709. ]
  53710. ))
  53711. characterMakers.push(() => makeCharacter(
  53712. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53713. {
  53714. front: {
  53715. height: math.unit(12, "feet"),
  53716. name: "Front",
  53717. image: {
  53718. source: "./media/characters/citra/front.svg",
  53719. extra: 1950/1710,
  53720. bottom: 47/1997
  53721. }
  53722. },
  53723. },
  53724. [
  53725. {
  53726. name: "Normal",
  53727. height: math.unit(12, "feet"),
  53728. default: true
  53729. },
  53730. ]
  53731. ))
  53732. characterMakers.push(() => makeCharacter(
  53733. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53734. {
  53735. side: {
  53736. height: math.unit(7 + 10/12, "feet"),
  53737. name: "Side",
  53738. image: {
  53739. source: "./media/characters/sholstim/side.svg",
  53740. extra: 786/682,
  53741. bottom: 40/826
  53742. }
  53743. },
  53744. },
  53745. [
  53746. {
  53747. name: "Normal",
  53748. height: math.unit(7 + 10/12, "feet"),
  53749. default: true
  53750. },
  53751. ]
  53752. ))
  53753. characterMakers.push(() => makeCharacter(
  53754. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53755. {
  53756. front: {
  53757. height: math.unit(3.10, "meters"),
  53758. name: "Front",
  53759. image: {
  53760. source: "./media/characters/aggyn/front.svg",
  53761. extra: 1188/963,
  53762. bottom: 24/1212
  53763. }
  53764. },
  53765. },
  53766. [
  53767. {
  53768. name: "Normal",
  53769. height: math.unit(3.10, "meters"),
  53770. default: true
  53771. },
  53772. ]
  53773. ))
  53774. characterMakers.push(() => makeCharacter(
  53775. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53776. {
  53777. front: {
  53778. height: math.unit(7 + 5/12, "feet"),
  53779. weight: math.unit(687, "lb"),
  53780. name: "Front",
  53781. image: {
  53782. source: "./media/characters/alsandair-hergenroether/front.svg",
  53783. extra: 1251/1186,
  53784. bottom: 75/1326
  53785. }
  53786. },
  53787. back: {
  53788. height: math.unit(7 + 5/12, "feet"),
  53789. weight: math.unit(687, "lb"),
  53790. name: "Back",
  53791. image: {
  53792. source: "./media/characters/alsandair-hergenroether/back.svg",
  53793. extra: 1290/1229,
  53794. bottom: 17/1307
  53795. }
  53796. },
  53797. },
  53798. [
  53799. {
  53800. name: "Max Compression",
  53801. height: math.unit(7 + 5/12, "feet"),
  53802. default: true
  53803. },
  53804. {
  53805. name: "\"Normal\"",
  53806. height: math.unit(2, "universes")
  53807. },
  53808. ]
  53809. ))
  53810. characterMakers.push(() => makeCharacter(
  53811. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53812. {
  53813. front: {
  53814. height: math.unit(4 + 1/12, "feet"),
  53815. weight: math.unit(92, "lb"),
  53816. name: "Front",
  53817. image: {
  53818. source: "./media/characters/ie/front.svg",
  53819. extra: 1585/1352,
  53820. bottom: 91/1676
  53821. }
  53822. },
  53823. },
  53824. [
  53825. {
  53826. name: "Normal",
  53827. height: math.unit(4 + 1/12, "feet"),
  53828. default: true
  53829. },
  53830. ]
  53831. ))
  53832. characterMakers.push(() => makeCharacter(
  53833. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53834. {
  53835. anthro: {
  53836. height: math.unit(6, "feet"),
  53837. weight: math.unit(150, "lb"),
  53838. name: "Front",
  53839. image: {
  53840. source: "./media/characters/willow/anthro.svg",
  53841. extra: 1073/986,
  53842. bottom: 34/1107
  53843. },
  53844. form: "anthro",
  53845. default: true
  53846. },
  53847. taur: {
  53848. height: math.unit(6, "feet"),
  53849. weight: math.unit(150, "lb"),
  53850. name: "Side",
  53851. image: {
  53852. source: "./media/characters/willow/taur.svg",
  53853. extra: 647/512,
  53854. bottom: 136/783
  53855. },
  53856. form: "taur",
  53857. default: true
  53858. },
  53859. },
  53860. [
  53861. {
  53862. name: "Humanoid",
  53863. height: math.unit(2.7, "meters"),
  53864. form: "anthro"
  53865. },
  53866. {
  53867. name: "Normal",
  53868. height: math.unit(9, "meters"),
  53869. form: "anthro",
  53870. default: true
  53871. },
  53872. {
  53873. name: "Humanoid",
  53874. height: math.unit(2.1, "meters"),
  53875. form: "taur"
  53876. },
  53877. {
  53878. name: "Normal",
  53879. height: math.unit(7, "meters"),
  53880. form: "taur",
  53881. default: true
  53882. },
  53883. ],
  53884. {
  53885. "anthro": {
  53886. name: "Anthro",
  53887. default: true
  53888. },
  53889. "taur": {
  53890. name: "Taur",
  53891. },
  53892. }
  53893. ))
  53894. characterMakers.push(() => makeCharacter(
  53895. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53896. {
  53897. front: {
  53898. height: math.unit(2 + 5/12, "feet"),
  53899. name: "Front",
  53900. image: {
  53901. source: "./media/characters/kyan/front.svg",
  53902. extra: 460/334,
  53903. bottom: 23/483
  53904. },
  53905. extraAttributes: {
  53906. "toeLength": {
  53907. name: "Toe Length",
  53908. power: 1,
  53909. type: "length",
  53910. base: math.unit(7, "cm")
  53911. },
  53912. "toeclawLength": {
  53913. name: "Toeclaw Length",
  53914. power: 1,
  53915. type: "length",
  53916. base: math.unit(4.7, "cm")
  53917. },
  53918. "earHeight": {
  53919. name: "Ear Height",
  53920. power: 1,
  53921. type: "length",
  53922. base: math.unit(14.1, "cm")
  53923. },
  53924. }
  53925. },
  53926. paws: {
  53927. height: math.unit(0.45, "feet"),
  53928. name: "Paws",
  53929. image: {
  53930. source: "./media/characters/kyan/paws.svg",
  53931. extra: 581/581,
  53932. bottom: 114/695
  53933. }
  53934. },
  53935. },
  53936. [
  53937. {
  53938. name: "Normal",
  53939. height: math.unit(2 + 5/12, "feet"),
  53940. default: true
  53941. },
  53942. ]
  53943. ))
  53944. characterMakers.push(() => makeCharacter(
  53945. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53946. {
  53947. front: {
  53948. height: math.unit(2 + 2/3, "feet"),
  53949. name: "Front",
  53950. image: {
  53951. source: "./media/characters/xazzon/front.svg",
  53952. extra: 1109/984,
  53953. bottom: 42/1151
  53954. }
  53955. },
  53956. back: {
  53957. height: math.unit(2 + 2/3, "feet"),
  53958. name: "Back",
  53959. image: {
  53960. source: "./media/characters/xazzon/back.svg",
  53961. extra: 1095/971,
  53962. bottom: 23/1118
  53963. }
  53964. },
  53965. },
  53966. [
  53967. {
  53968. name: "Normal",
  53969. height: math.unit(2 + 2/3, "feet"),
  53970. default: true
  53971. },
  53972. ]
  53973. ))
  53974. characterMakers.push(() => makeCharacter(
  53975. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53976. {
  53977. dressed: {
  53978. height: math.unit(5 + 7/12, "feet"),
  53979. weight: math.unit(173, "lb"),
  53980. name: "Dressed",
  53981. image: {
  53982. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53983. extra: 3262/2862,
  53984. bottom: 188/3450
  53985. }
  53986. },
  53987. undressed: {
  53988. height: math.unit(5 + 7/12, "feet"),
  53989. weight: math.unit(173, "lb"),
  53990. name: "Undressed",
  53991. image: {
  53992. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53993. extra: 3262/2862,
  53994. bottom: 188/3450
  53995. }
  53996. },
  53997. },
  53998. [
  53999. {
  54000. name: "The void",
  54001. height: math.unit(7.29193e-34, "angstroms")
  54002. },
  54003. {
  54004. name: "Uh-Oh.",
  54005. height: math.unit(5.734e-7, "angstroms")
  54006. },
  54007. {
  54008. name: "Pico",
  54009. height: math.unit(0.876, "angstroms")
  54010. },
  54011. {
  54012. name: "Nano",
  54013. height: math.unit(0.000134200, "mm")
  54014. },
  54015. {
  54016. name: "Micro",
  54017. height: math.unit(0.0673020, "mm")
  54018. },
  54019. {
  54020. name: "Tiny",
  54021. height: math.unit(2.4, "mm")
  54022. },
  54023. {
  54024. name: "Actual Normal",
  54025. height: math.unit(3, "inches"),
  54026. default: true
  54027. },
  54028. {
  54029. name: "Normal",
  54030. height: math.unit(5 + 8/12, "feet")
  54031. },
  54032. {
  54033. name: "Giant",
  54034. height: math.unit(12, "feet")
  54035. },
  54036. {
  54037. name: "City Ruler",
  54038. height: math.unit(270, "meters")
  54039. },
  54040. {
  54041. name: "Giga",
  54042. height: math.unit(1117.6, "km")
  54043. },
  54044. {
  54045. name: "All-Powerful Queen",
  54046. height: math.unit(70.8, "gigameters")
  54047. },
  54048. {
  54049. name: "'Goddess'",
  54050. height: math.unit(600, "yottameters")
  54051. },
  54052. {
  54053. name: "Biggest!",
  54054. height: math.unit(4.23e5, "yottameters")
  54055. },
  54056. ]
  54057. ))
  54058. characterMakers.push(() => makeCharacter(
  54059. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54060. {
  54061. front: {
  54062. height: math.unit(8, "feet"),
  54063. weight: math.unit(300, "lb"),
  54064. name: "Front",
  54065. image: {
  54066. source: "./media/characters/khyla-shadowsong/front.svg",
  54067. extra: 861/798,
  54068. bottom: 32/893
  54069. }
  54070. },
  54071. side: {
  54072. height: math.unit(8, "feet"),
  54073. weight: math.unit(300, "lb"),
  54074. name: "Side",
  54075. image: {
  54076. source: "./media/characters/khyla-shadowsong/side.svg",
  54077. extra: 790/750,
  54078. bottom: 87/877
  54079. }
  54080. },
  54081. back: {
  54082. height: math.unit(8, "feet"),
  54083. weight: math.unit(300, "lb"),
  54084. name: "Back",
  54085. image: {
  54086. source: "./media/characters/khyla-shadowsong/back.svg",
  54087. extra: 855/808,
  54088. bottom: 14/869
  54089. }
  54090. },
  54091. head: {
  54092. height: math.unit(2.7, "feet"),
  54093. name: "Head",
  54094. image: {
  54095. source: "./media/characters/khyla-shadowsong/head.svg"
  54096. }
  54097. },
  54098. },
  54099. [
  54100. {
  54101. name: "Micro",
  54102. height: math.unit(6, "inches")
  54103. },
  54104. {
  54105. name: "Normal",
  54106. height: math.unit(8, "feet"),
  54107. default: true
  54108. },
  54109. ]
  54110. ))
  54111. characterMakers.push(() => makeCharacter(
  54112. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54113. {
  54114. hyperFront: {
  54115. height: math.unit(9 + 4/12, "feet"),
  54116. weight: math.unit(2000, "lb"),
  54117. name: "Front",
  54118. image: {
  54119. source: "./media/characters/tiden/hyper-front.svg",
  54120. extra: 400/382,
  54121. bottom: 6/406
  54122. },
  54123. form: "hyper",
  54124. },
  54125. regularFront: {
  54126. height: math.unit(7 + 10/12, "feet"),
  54127. weight: math.unit(470, "lb"),
  54128. name: "Front",
  54129. image: {
  54130. source: "./media/characters/tiden/regular-front.svg",
  54131. extra: 468/442,
  54132. bottom: 6/474
  54133. },
  54134. form: "regular",
  54135. },
  54136. },
  54137. [
  54138. {
  54139. name: "Normal",
  54140. height: math.unit(9 + 4/12, "feet"),
  54141. default: true,
  54142. form: "hyper"
  54143. },
  54144. {
  54145. name: "Normal",
  54146. height: math.unit(7 + 10/12, "feet"),
  54147. default: true,
  54148. form: "regular"
  54149. },
  54150. ],
  54151. {
  54152. "hyper": {
  54153. name: "Hyper",
  54154. default: true
  54155. },
  54156. "regular": {
  54157. name: "Regular",
  54158. },
  54159. }
  54160. ))
  54161. characterMakers.push(() => makeCharacter(
  54162. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54163. {
  54164. side: {
  54165. height: math.unit(6, "feet"),
  54166. weight: math.unit(150, "lb"),
  54167. name: "Side",
  54168. image: {
  54169. source: "./media/characters/jason-crowe/side.svg",
  54170. extra: 1771/766,
  54171. bottom: 219/1990
  54172. }
  54173. },
  54174. },
  54175. [
  54176. {
  54177. name: "Pocket Gryphon",
  54178. height: math.unit(6, "cm")
  54179. },
  54180. {
  54181. name: "Raven",
  54182. height: math.unit(60, "cm")
  54183. },
  54184. {
  54185. name: "Normal",
  54186. height: math.unit(1, "meter"),
  54187. default: true
  54188. },
  54189. ]
  54190. ))
  54191. characterMakers.push(() => makeCharacter(
  54192. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54193. {
  54194. front: {
  54195. height: math.unit(9 + 6/12, "feet"),
  54196. weight: math.unit(1100, "lb"),
  54197. name: "Front",
  54198. image: {
  54199. source: "./media/characters/django/front.svg",
  54200. extra: 1231/1136,
  54201. bottom: 34/1265
  54202. }
  54203. },
  54204. side: {
  54205. height: math.unit(9 + 6/12, "feet"),
  54206. weight: math.unit(1100, "lb"),
  54207. name: "Side",
  54208. image: {
  54209. source: "./media/characters/django/side.svg",
  54210. extra: 1267/1174,
  54211. bottom: 9/1276
  54212. }
  54213. },
  54214. },
  54215. [
  54216. {
  54217. name: "Normal",
  54218. height: math.unit(9 + 6/12, "feet"),
  54219. default: true
  54220. },
  54221. {
  54222. name: "Macro 1",
  54223. height: math.unit(50, "feet")
  54224. },
  54225. {
  54226. name: "Macro 2",
  54227. height: math.unit(500, "feet")
  54228. },
  54229. {
  54230. name: "Mega Macro",
  54231. height: math.unit(5300, "feet")
  54232. },
  54233. ]
  54234. ))
  54235. characterMakers.push(() => makeCharacter(
  54236. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54237. {
  54238. frontSfw: {
  54239. height: math.unit(120, "cm"),
  54240. weight: math.unit(15, "kg"),
  54241. name: "Front (SFW)",
  54242. image: {
  54243. source: "./media/characters/eri/front-sfw.svg",
  54244. extra: 1014/939,
  54245. bottom: 37/1051
  54246. },
  54247. form: "moth",
  54248. },
  54249. frontNsfw: {
  54250. height: math.unit(120, "cm"),
  54251. weight: math.unit(15, "kg"),
  54252. name: "Front (NSFW)",
  54253. image: {
  54254. source: "./media/characters/eri/front-nsfw.svg",
  54255. extra: 1014/939,
  54256. bottom: 37/1051
  54257. },
  54258. form: "moth",
  54259. default: true
  54260. },
  54261. egg: {
  54262. height: math.unit(10, "cm"),
  54263. name: "Egg",
  54264. image: {
  54265. source: "./media/characters/eri/egg.svg"
  54266. },
  54267. form: "egg",
  54268. default: true
  54269. },
  54270. },
  54271. [
  54272. {
  54273. name: "Normal",
  54274. height: math.unit(120, "cm"),
  54275. default: true,
  54276. form: "moth"
  54277. },
  54278. {
  54279. name: "Normal",
  54280. height: math.unit(10, "cm"),
  54281. default: true,
  54282. form: "egg"
  54283. },
  54284. ],
  54285. {
  54286. "moth": {
  54287. name: "Moth",
  54288. default: true
  54289. },
  54290. "egg": {
  54291. name: "Egg",
  54292. },
  54293. }
  54294. ))
  54295. characterMakers.push(() => makeCharacter(
  54296. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54297. {
  54298. front: {
  54299. height: math.unit(200, "feet"),
  54300. name: "Front",
  54301. image: {
  54302. source: "./media/characters/bishop-dowser/front.svg",
  54303. extra: 933/868,
  54304. bottom: 106/1039
  54305. }
  54306. },
  54307. },
  54308. [
  54309. {
  54310. name: "Giant",
  54311. height: math.unit(200, "feet"),
  54312. default: true
  54313. },
  54314. ]
  54315. ))
  54316. characterMakers.push(() => makeCharacter(
  54317. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54318. {
  54319. front: {
  54320. height: math.unit(2, "meters"),
  54321. preyCapacity: math.unit(3, "people"),
  54322. name: "Front",
  54323. image: {
  54324. source: "./media/characters/fryra/front.svg",
  54325. extra: 1025/948,
  54326. bottom: 30/1055
  54327. },
  54328. extraAttributes: {
  54329. "breastVolume": {
  54330. name: "Breast Volume",
  54331. power: 3,
  54332. type: "volume",
  54333. base: math.unit(8, "liters")
  54334. },
  54335. }
  54336. },
  54337. back: {
  54338. height: math.unit(2, "meters"),
  54339. preyCapacity: math.unit(3, "people"),
  54340. name: "Back",
  54341. image: {
  54342. source: "./media/characters/fryra/back.svg",
  54343. extra: 993/938,
  54344. bottom: 38/1031
  54345. },
  54346. extraAttributes: {
  54347. "breastVolume": {
  54348. name: "Breast Volume",
  54349. power: 3,
  54350. type: "volume",
  54351. base: math.unit(8, "liters")
  54352. },
  54353. }
  54354. },
  54355. head: {
  54356. height: math.unit(1.33, "feet"),
  54357. name: "Head",
  54358. image: {
  54359. source: "./media/characters/fryra/head.svg"
  54360. }
  54361. },
  54362. maw: {
  54363. height: math.unit(0.56, "feet"),
  54364. name: "Maw",
  54365. image: {
  54366. source: "./media/characters/fryra/maw.svg"
  54367. }
  54368. },
  54369. },
  54370. [
  54371. {
  54372. name: "Micro",
  54373. height: math.unit(5, "cm")
  54374. },
  54375. {
  54376. name: "Normal",
  54377. height: math.unit(2, "meters"),
  54378. default: true
  54379. },
  54380. {
  54381. name: "Small Macro",
  54382. height: math.unit(8, "meters")
  54383. },
  54384. {
  54385. name: "Macro",
  54386. height: math.unit(50, "meters")
  54387. },
  54388. {
  54389. name: "Megamacro",
  54390. height: math.unit(1, "km")
  54391. },
  54392. {
  54393. name: "Planetary",
  54394. height: math.unit(300000, "km")
  54395. },
  54396. {
  54397. name: "Universal",
  54398. height: math.unit(250, "lightyears")
  54399. },
  54400. {
  54401. name: "Fabric of Reality",
  54402. height: math.unit(1000, "multiverses")
  54403. },
  54404. ]
  54405. ))
  54406. characterMakers.push(() => makeCharacter(
  54407. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54408. {
  54409. frontDressed: {
  54410. height: math.unit(6 + 2/12, "feet"),
  54411. name: "Front (Dressed)",
  54412. image: {
  54413. source: "./media/characters/fiera/front-dressed.svg",
  54414. extra: 1883/1793,
  54415. bottom: 70/1953
  54416. }
  54417. },
  54418. backDressed: {
  54419. height: math.unit(6 + 2/12, "feet"),
  54420. name: "Back (Dressed)",
  54421. image: {
  54422. source: "./media/characters/fiera/back-dressed.svg",
  54423. extra: 1847/1780,
  54424. bottom: 70/1917
  54425. }
  54426. },
  54427. frontNude: {
  54428. height: math.unit(6 + 2/12, "feet"),
  54429. name: "Front (Nude)",
  54430. image: {
  54431. source: "./media/characters/fiera/front-nude.svg",
  54432. extra: 1875/1785,
  54433. bottom: 66/1941
  54434. }
  54435. },
  54436. backNude: {
  54437. height: math.unit(6 + 2/12, "feet"),
  54438. name: "Back (Nude)",
  54439. image: {
  54440. source: "./media/characters/fiera/back-nude.svg",
  54441. extra: 1855/1788,
  54442. bottom: 44/1899
  54443. }
  54444. },
  54445. maw: {
  54446. height: math.unit(1.3, "feet"),
  54447. name: "Maw",
  54448. image: {
  54449. source: "./media/characters/fiera/maw.svg"
  54450. }
  54451. },
  54452. paw: {
  54453. height: math.unit(1, "feet"),
  54454. name: "Paw",
  54455. image: {
  54456. source: "./media/characters/fiera/paw.svg"
  54457. }
  54458. },
  54459. shoe: {
  54460. height: math.unit(1.05, "feet"),
  54461. name: "Shoe",
  54462. image: {
  54463. source: "./media/characters/fiera/shoe.svg"
  54464. }
  54465. },
  54466. },
  54467. [
  54468. {
  54469. name: "Normal",
  54470. height: math.unit(6 + 2/12, "feet"),
  54471. default: true
  54472. },
  54473. {
  54474. name: "Size Difference",
  54475. height: math.unit(13, "feet")
  54476. },
  54477. {
  54478. name: "Macro",
  54479. height: math.unit(60, "feet")
  54480. },
  54481. {
  54482. name: "Mega Macro",
  54483. height: math.unit(200, "feet")
  54484. },
  54485. ]
  54486. ))
  54487. characterMakers.push(() => makeCharacter(
  54488. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54489. {
  54490. back: {
  54491. height: math.unit(6, "feet"),
  54492. name: "Back",
  54493. image: {
  54494. source: "./media/characters/flare/back.svg",
  54495. extra: 1883/1765,
  54496. bottom: 32/1915
  54497. }
  54498. },
  54499. },
  54500. [
  54501. {
  54502. name: "Normal",
  54503. height: math.unit(6 + 2/12, "feet"),
  54504. default: true
  54505. },
  54506. {
  54507. name: "Size Difference",
  54508. height: math.unit(13, "feet")
  54509. },
  54510. {
  54511. name: "Macro",
  54512. height: math.unit(60, "feet")
  54513. },
  54514. {
  54515. name: "Macro 2",
  54516. height: math.unit(100, "feet")
  54517. },
  54518. {
  54519. name: "Mega Macro",
  54520. height: math.unit(200, "feet")
  54521. },
  54522. ]
  54523. ))
  54524. characterMakers.push(() => makeCharacter(
  54525. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54526. {
  54527. front: {
  54528. height: math.unit(2.2, "m"),
  54529. weight: math.unit(300, "kg"),
  54530. name: "Front",
  54531. image: {
  54532. source: "./media/characters/hanna/front.svg",
  54533. extra: 1696/1502,
  54534. bottom: 206/1902
  54535. }
  54536. },
  54537. },
  54538. [
  54539. {
  54540. name: "Humanoid",
  54541. height: math.unit(2.2, "meters")
  54542. },
  54543. {
  54544. name: "Normal",
  54545. height: math.unit(4.8, "meters"),
  54546. default: true
  54547. },
  54548. ]
  54549. ))
  54550. characterMakers.push(() => makeCharacter(
  54551. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54552. {
  54553. front: {
  54554. height: math.unit(2.8, "meters"),
  54555. name: "Front",
  54556. image: {
  54557. source: "./media/characters/argo/front.svg",
  54558. extra: 731/518,
  54559. bottom: 84/815
  54560. }
  54561. },
  54562. },
  54563. [
  54564. {
  54565. name: "Normal",
  54566. height: math.unit(3, "meters"),
  54567. default: true
  54568. },
  54569. ]
  54570. ))
  54571. characterMakers.push(() => makeCharacter(
  54572. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54573. {
  54574. side: {
  54575. height: math.unit(3.8, "meters"),
  54576. name: "Side",
  54577. image: {
  54578. source: "./media/characters/sybil/side.svg",
  54579. extra: 382/361,
  54580. bottom: 25/407
  54581. }
  54582. },
  54583. },
  54584. [
  54585. {
  54586. name: "Normal",
  54587. height: math.unit(3.8, "meters"),
  54588. default: true
  54589. },
  54590. ]
  54591. ))
  54592. characterMakers.push(() => makeCharacter(
  54593. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54594. {
  54595. side: {
  54596. height: math.unit(6, "meters"),
  54597. name: "Side",
  54598. image: {
  54599. source: "./media/characters/plum/side.svg",
  54600. extra: 858/755,
  54601. bottom: 45/903
  54602. },
  54603. form: "taur",
  54604. default: true
  54605. },
  54606. back: {
  54607. height: math.unit(6.3, "meters"),
  54608. name: "Back",
  54609. image: {
  54610. source: "./media/characters/plum/back.svg",
  54611. extra: 887/813,
  54612. bottom: 32/919
  54613. },
  54614. form: "taur",
  54615. },
  54616. feral: {
  54617. height: math.unit(5.5, "meter"),
  54618. name: "Front",
  54619. image: {
  54620. source: "./media/characters/plum/feral.svg",
  54621. extra: 568/403,
  54622. bottom: 51/619
  54623. },
  54624. form: "feral",
  54625. default: true
  54626. },
  54627. head: {
  54628. height: math.unit(1.46, "meter"),
  54629. name: "Head",
  54630. image: {
  54631. source: "./media/characters/plum/head.svg"
  54632. },
  54633. form: "taur"
  54634. },
  54635. tailTop: {
  54636. height: math.unit(5.6, "meter"),
  54637. name: "Tail (Top)",
  54638. image: {
  54639. source: "./media/characters/plum/tail-top.svg"
  54640. },
  54641. form: "taur",
  54642. },
  54643. tailBottom: {
  54644. height: math.unit(5.6, "meter"),
  54645. name: "Tail (Bottom)",
  54646. image: {
  54647. source: "./media/characters/plum/tail-bottom.svg"
  54648. },
  54649. form: "taur",
  54650. },
  54651. feralHead: {
  54652. height: math.unit(2.56549521, "meter"),
  54653. name: "Head",
  54654. image: {
  54655. source: "./media/characters/plum/head.svg"
  54656. },
  54657. form: "feral"
  54658. },
  54659. feralTailTop: {
  54660. height: math.unit(5.44728435, "meter"),
  54661. name: "Tail (Top)",
  54662. image: {
  54663. source: "./media/characters/plum/tail-top.svg"
  54664. },
  54665. form: "feral",
  54666. },
  54667. feralTailBottom: {
  54668. height: math.unit(5.44728435, "meter"),
  54669. name: "Tail (Bottom)",
  54670. image: {
  54671. source: "./media/characters/plum/tail-bottom.svg"
  54672. },
  54673. form: "feral",
  54674. },
  54675. },
  54676. [
  54677. {
  54678. name: "Normal",
  54679. height: math.unit(6, "meters"),
  54680. default: true,
  54681. form: "taur"
  54682. },
  54683. {
  54684. name: "Normal",
  54685. height: math.unit(5.5, "meters"),
  54686. default: true,
  54687. form: "feral"
  54688. },
  54689. ],
  54690. {
  54691. "taur": {
  54692. name: "Taur",
  54693. default: true
  54694. },
  54695. "feral": {
  54696. name: "Feral",
  54697. },
  54698. }
  54699. ))
  54700. characterMakers.push(() => makeCharacter(
  54701. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54702. {
  54703. front: {
  54704. height: math.unit(6, "feet"),
  54705. weight: math.unit(115, "lb"),
  54706. name: "Front",
  54707. image: {
  54708. source: "./media/characters/celeste-kitsune/front.svg",
  54709. extra: 393/366,
  54710. bottom: 7/400
  54711. }
  54712. },
  54713. side: {
  54714. height: math.unit(6, "feet"),
  54715. weight: math.unit(115, "lb"),
  54716. name: "Side",
  54717. image: {
  54718. source: "./media/characters/celeste-kitsune/side.svg",
  54719. extra: 818/765,
  54720. bottom: 40/858
  54721. }
  54722. },
  54723. },
  54724. [
  54725. {
  54726. name: "Megamacro",
  54727. height: math.unit(1500, "miles"),
  54728. default: true
  54729. },
  54730. ]
  54731. ))
  54732. characterMakers.push(() => makeCharacter(
  54733. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54734. {
  54735. front: {
  54736. height: math.unit(8, "meters"),
  54737. name: "Front",
  54738. image: {
  54739. source: "./media/characters/io/front.svg",
  54740. extra: 865/722,
  54741. bottom: 58/923
  54742. }
  54743. },
  54744. back: {
  54745. height: math.unit(8, "meters"),
  54746. name: "Back",
  54747. image: {
  54748. source: "./media/characters/io/back.svg",
  54749. extra: 920/776,
  54750. bottom: 42/962
  54751. }
  54752. },
  54753. head: {
  54754. height: math.unit(5.09, "meters"),
  54755. name: "Head",
  54756. image: {
  54757. source: "./media/characters/io/head.svg"
  54758. }
  54759. },
  54760. hand: {
  54761. height: math.unit(1.6, "meters"),
  54762. name: "Hand",
  54763. image: {
  54764. source: "./media/characters/io/hand.svg"
  54765. }
  54766. },
  54767. foot: {
  54768. height: math.unit(2.4, "meters"),
  54769. name: "Foot",
  54770. image: {
  54771. source: "./media/characters/io/foot.svg"
  54772. }
  54773. },
  54774. },
  54775. [
  54776. {
  54777. name: "Normal",
  54778. height: math.unit(8, "meters"),
  54779. default: true
  54780. },
  54781. ]
  54782. ))
  54783. characterMakers.push(() => makeCharacter(
  54784. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54785. {
  54786. side: {
  54787. height: math.unit(6 + 3/12, "feet"),
  54788. weight: math.unit(225, "lb"),
  54789. name: "Side",
  54790. image: {
  54791. source: "./media/characters/silas/side.svg",
  54792. extra: 703/653,
  54793. bottom: 23/726
  54794. },
  54795. extraAttributes: {
  54796. "pawLength": {
  54797. name: "Paw Length",
  54798. power: 1,
  54799. type: "length",
  54800. base: math.unit(12, "inches")
  54801. },
  54802. "pawWidth": {
  54803. name: "Paw Width",
  54804. power: 1,
  54805. type: "length",
  54806. base: math.unit(4.5, "inches")
  54807. },
  54808. "pawArea": {
  54809. name: "Paw Area",
  54810. power: 2,
  54811. type: "area",
  54812. base: math.unit(12 * 4.5, "inches^2")
  54813. },
  54814. }
  54815. },
  54816. },
  54817. [
  54818. {
  54819. name: "Normal",
  54820. height: math.unit(6 + 3/12, "feet"),
  54821. default: true
  54822. },
  54823. ]
  54824. ))
  54825. characterMakers.push(() => makeCharacter(
  54826. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54827. {
  54828. back: {
  54829. height: math.unit(1.6, "meters"),
  54830. weight: math.unit(150, "lb"),
  54831. name: "Back",
  54832. image: {
  54833. source: "./media/characters/zari/back.svg",
  54834. extra: 424/411,
  54835. bottom: 32/456
  54836. },
  54837. extraAttributes: {
  54838. "bladderCapacity": {
  54839. name: "Bladder Size",
  54840. power: 3,
  54841. type: "volume",
  54842. base: math.unit(500, "mL")
  54843. },
  54844. "bladderFlow": {
  54845. name: "Flow Rate",
  54846. power: 3,
  54847. type: "volume",
  54848. base: math.unit(25, "mL")
  54849. },
  54850. }
  54851. },
  54852. },
  54853. [
  54854. {
  54855. name: "Normal",
  54856. height: math.unit(1.6, "meters"),
  54857. default: true
  54858. },
  54859. ]
  54860. ))
  54861. characterMakers.push(() => makeCharacter(
  54862. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54863. {
  54864. front: {
  54865. height: math.unit(25, "feet"),
  54866. weight: math.unit(5, "tons"),
  54867. name: "Front",
  54868. image: {
  54869. source: "./media/characters/charlie-human/front.svg",
  54870. extra: 1870/1740,
  54871. bottom: 102/1972
  54872. },
  54873. extraAttributes: {
  54874. "dickLength": {
  54875. name: "Dick Length",
  54876. power: 1,
  54877. type: "length",
  54878. base: math.unit(9, "feet")
  54879. },
  54880. }
  54881. },
  54882. back: {
  54883. height: math.unit(25, "feet"),
  54884. weight: math.unit(5, "tons"),
  54885. name: "Back",
  54886. image: {
  54887. source: "./media/characters/charlie-human/back.svg",
  54888. extra: 1858/1733,
  54889. bottom: 105/1963
  54890. },
  54891. extraAttributes: {
  54892. "dickLength": {
  54893. name: "Dick Length",
  54894. power: 1,
  54895. type: "length",
  54896. base: math.unit(9, "feet")
  54897. },
  54898. }
  54899. },
  54900. },
  54901. [
  54902. {
  54903. name: "\"Normal\"",
  54904. height: math.unit(6 + 4/12, "feet")
  54905. },
  54906. {
  54907. name: "Big",
  54908. height: math.unit(25, "feet"),
  54909. default: true
  54910. },
  54911. ]
  54912. ))
  54913. characterMakers.push(() => makeCharacter(
  54914. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54915. {
  54916. front: {
  54917. height: math.unit(6 + 4/12, "feet"),
  54918. weight: math.unit(320, "lb"),
  54919. name: "Front",
  54920. image: {
  54921. source: "./media/characters/ookitsu/front.svg",
  54922. extra: 1160/976,
  54923. bottom: 38/1198
  54924. }
  54925. },
  54926. frontNsfw: {
  54927. height: math.unit(6 + 4/12, "feet"),
  54928. weight: math.unit(320, "lb"),
  54929. name: "Front (NSFW)",
  54930. image: {
  54931. source: "./media/characters/ookitsu/front-nsfw.svg",
  54932. extra: 1160/976,
  54933. bottom: 38/1198
  54934. }
  54935. },
  54936. back: {
  54937. height: math.unit(6 + 4/12, "feet"),
  54938. weight: math.unit(320, "lb"),
  54939. name: "Back",
  54940. image: {
  54941. source: "./media/characters/ookitsu/back.svg",
  54942. extra: 1030/975,
  54943. bottom: 70/1100
  54944. }
  54945. },
  54946. head: {
  54947. height: math.unit(1.79, "feet"),
  54948. name: "Head",
  54949. image: {
  54950. source: "./media/characters/ookitsu/head.svg"
  54951. }
  54952. },
  54953. hand: {
  54954. height: math.unit(0.92, "feet"),
  54955. name: "Hand",
  54956. image: {
  54957. source: "./media/characters/ookitsu/hand.svg"
  54958. }
  54959. },
  54960. tails: {
  54961. height: math.unit(3.3, "feet"),
  54962. name: "Tails",
  54963. image: {
  54964. source: "./media/characters/ookitsu/tails.svg"
  54965. }
  54966. },
  54967. dick: {
  54968. height: math.unit(1.10833, "feet"),
  54969. name: "Dick",
  54970. image: {
  54971. source: "./media/characters/ookitsu/dick.svg"
  54972. }
  54973. },
  54974. },
  54975. [
  54976. {
  54977. name: "Normal",
  54978. height: math.unit(6 + 4/12, "feet"),
  54979. default: true
  54980. },
  54981. {
  54982. name: "Macro",
  54983. height: math.unit(30, "feet")
  54984. },
  54985. ]
  54986. ))
  54987. characterMakers.push(() => makeCharacter(
  54988. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54989. {
  54990. anthroFront: {
  54991. height: math.unit(6, "feet"),
  54992. weight: math.unit(250, "lb"),
  54993. name: "Front",
  54994. image: {
  54995. source: "./media/characters/jhusky/anthro-front.svg",
  54996. extra: 474/439,
  54997. bottom: 7/481
  54998. },
  54999. form: "anthro",
  55000. default: true
  55001. },
  55002. taurSideSfw: {
  55003. height: math.unit(6 + 4/12, "feet"),
  55004. weight: math.unit(500, "lb"),
  55005. name: "Side (SFW)",
  55006. image: {
  55007. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55008. extra: 1741/1629,
  55009. bottom: 196/1937
  55010. },
  55011. form: "taur",
  55012. default: true
  55013. },
  55014. taurSideNsfw: {
  55015. height: math.unit(6 + 4/12, "feet"),
  55016. weight: math.unit(500, "lb"),
  55017. name: "Taur (NSFW)",
  55018. image: {
  55019. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55020. extra: 1741/1629,
  55021. bottom: 196/1937
  55022. },
  55023. form: "taur",
  55024. },
  55025. },
  55026. [
  55027. {
  55028. name: "Huge",
  55029. height: math.unit(500, "feet"),
  55030. form: "anthro"
  55031. },
  55032. {
  55033. name: "Macro",
  55034. height: math.unit(1000, "feet"),
  55035. default: true,
  55036. form: "anthro"
  55037. },
  55038. {
  55039. name: "Megamacro",
  55040. height: math.unit(10000, "feet"),
  55041. form: "anthro"
  55042. },
  55043. {
  55044. name: "Huge",
  55045. height: math.unit(528, "feet"),
  55046. form: "taur"
  55047. },
  55048. {
  55049. name: "Macro",
  55050. height: math.unit(1056, "feet"),
  55051. default: true,
  55052. form: "taur"
  55053. },
  55054. {
  55055. name: "Megamacro",
  55056. height: math.unit(10556, "feet"),
  55057. form: "taur"
  55058. },
  55059. ],
  55060. {
  55061. "anthro": {
  55062. name: "Anthro",
  55063. default: true
  55064. },
  55065. "taur": {
  55066. name: "Taur",
  55067. },
  55068. }
  55069. ))
  55070. characterMakers.push(() => makeCharacter(
  55071. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55072. {
  55073. front: {
  55074. height: math.unit(8, "feet"),
  55075. weight: math.unit(500, "lb"),
  55076. name: "Front",
  55077. image: {
  55078. source: "./media/characters/armail/front.svg",
  55079. extra: 1753/1669,
  55080. bottom: 155/1908
  55081. }
  55082. },
  55083. back: {
  55084. height: math.unit(8, "feet"),
  55085. weight: math.unit(500, "lb"),
  55086. name: "Back",
  55087. image: {
  55088. source: "./media/characters/armail/back.svg",
  55089. extra: 1872/1803,
  55090. bottom: 63/1935
  55091. }
  55092. },
  55093. },
  55094. [
  55095. {
  55096. name: "Micro",
  55097. height: math.unit(0.25, "feet")
  55098. },
  55099. {
  55100. name: "Normal",
  55101. height: math.unit(8, "feet"),
  55102. default: true
  55103. },
  55104. {
  55105. name: "Mini-macro",
  55106. height: math.unit(30, "feet")
  55107. },
  55108. {
  55109. name: "Macro",
  55110. height: math.unit(400, "feet")
  55111. },
  55112. {
  55113. name: "Mega-macro",
  55114. height: math.unit(6000, "feet")
  55115. },
  55116. ]
  55117. ))
  55118. characterMakers.push(() => makeCharacter(
  55119. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55120. {
  55121. front: {
  55122. height: math.unit(6 + 7/12, "feet"),
  55123. weight: math.unit(210, "lb"),
  55124. name: "Front",
  55125. image: {
  55126. source: "./media/characters/wilfred-t-buxton/front.svg",
  55127. extra: 1068/882,
  55128. bottom: 28/1096
  55129. }
  55130. },
  55131. },
  55132. [
  55133. {
  55134. name: "Normal",
  55135. height: math.unit(6 + 7/12, "feet"),
  55136. default: true
  55137. },
  55138. ]
  55139. ))
  55140. characterMakers.push(() => makeCharacter(
  55141. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55142. {
  55143. front: {
  55144. height: math.unit(5 + 2/12, "feet"),
  55145. weight: math.unit(120, "lb"),
  55146. name: "Front",
  55147. image: {
  55148. source: "./media/characters/leighton-marrow/front.svg",
  55149. extra: 441/409,
  55150. bottom: 37/478
  55151. }
  55152. },
  55153. },
  55154. [
  55155. {
  55156. name: "Normal",
  55157. height: math.unit(5 + 2/12, "feet"),
  55158. default: true
  55159. },
  55160. ]
  55161. ))
  55162. characterMakers.push(() => makeCharacter(
  55163. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55164. {
  55165. front: {
  55166. height: math.unit(4, "meters"),
  55167. weight: math.unit(1200, "kg"),
  55168. name: "Front",
  55169. image: {
  55170. source: "./media/characters/licos/front.svg",
  55171. extra: 1727/1604,
  55172. bottom: 101/1828
  55173. },
  55174. form: "anthro",
  55175. default: true
  55176. },
  55177. taur_side: {
  55178. height: math.unit(20, "meters"),
  55179. weight: math.unit(1100000, "kg"),
  55180. name: "Side",
  55181. image: {
  55182. source: "./media/characters/licos/taur.svg",
  55183. extra: 1158/1091,
  55184. bottom: 80/1238
  55185. },
  55186. form: "taur",
  55187. default: true
  55188. },
  55189. },
  55190. [
  55191. {
  55192. name: "Normal",
  55193. height: math.unit(4, "meters"),
  55194. default: true,
  55195. form: "anthro"
  55196. },
  55197. {
  55198. name: "Normal",
  55199. height: math.unit(20, "meters"),
  55200. default: true,
  55201. form: "taur"
  55202. },
  55203. ],
  55204. {
  55205. "anthro": {
  55206. name: "Anthro",
  55207. default: true
  55208. },
  55209. "taur": {
  55210. name: "Taur",
  55211. },
  55212. }
  55213. ))
  55214. characterMakers.push(() => makeCharacter(
  55215. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55216. {
  55217. front: {
  55218. height: math.unit(10 + 3/12, "feet"),
  55219. name: "Front",
  55220. image: {
  55221. source: "./media/characters/theo-monkey/front.svg",
  55222. extra: 1735/1658,
  55223. bottom: 73/1808
  55224. }
  55225. },
  55226. back: {
  55227. height: math.unit(10 + 3/12, "feet"),
  55228. name: "Back",
  55229. image: {
  55230. source: "./media/characters/theo-monkey/back.svg",
  55231. extra: 1742/1664,
  55232. bottom: 33/1775
  55233. }
  55234. },
  55235. head: {
  55236. height: math.unit(2.29, "feet"),
  55237. name: "Head",
  55238. image: {
  55239. source: "./media/characters/theo-monkey/head.svg"
  55240. }
  55241. },
  55242. handPalm: {
  55243. height: math.unit(1.73, "feet"),
  55244. name: "Hand (Palm)",
  55245. image: {
  55246. source: "./media/characters/theo-monkey/hand-palm.svg"
  55247. }
  55248. },
  55249. handBack: {
  55250. height: math.unit(1.63, "feet"),
  55251. name: "Hand (Back)",
  55252. image: {
  55253. source: "./media/characters/theo-monkey/hand-back.svg"
  55254. }
  55255. },
  55256. footSole: {
  55257. height: math.unit(2.15, "feet"),
  55258. name: "Foot (Sole)",
  55259. image: {
  55260. source: "./media/characters/theo-monkey/foot-sole.svg"
  55261. }
  55262. },
  55263. footSide: {
  55264. height: math.unit(1.6, "feet"),
  55265. name: "Foot (Side)",
  55266. image: {
  55267. source: "./media/characters/theo-monkey/foot-side.svg"
  55268. }
  55269. },
  55270. },
  55271. [
  55272. {
  55273. name: "Normal",
  55274. height: math.unit(10 + 3/12, "feet"),
  55275. default: true
  55276. },
  55277. ]
  55278. ))
  55279. characterMakers.push(() => makeCharacter(
  55280. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55281. {
  55282. front: {
  55283. height: math.unit(11, "feet"),
  55284. weight: math.unit(3000, "lb"),
  55285. preyCapacity: math.unit(10, "people"),
  55286. name: "Front",
  55287. image: {
  55288. source: "./media/characters/brook/front.svg",
  55289. extra: 909/835,
  55290. bottom: 108/1017
  55291. }
  55292. },
  55293. back: {
  55294. height: math.unit(11, "feet"),
  55295. weight: math.unit(3000, "lb"),
  55296. preyCapacity: math.unit(10, "people"),
  55297. name: "Back",
  55298. image: {
  55299. source: "./media/characters/brook/back.svg",
  55300. extra: 976/916,
  55301. bottom: 34/1010
  55302. }
  55303. },
  55304. backAlt: {
  55305. height: math.unit(11, "feet"),
  55306. weight: math.unit(3000, "lb"),
  55307. preyCapacity: math.unit(10, "people"),
  55308. name: "Back (Alt)",
  55309. image: {
  55310. source: "./media/characters/brook/back-alt.svg",
  55311. extra: 1283/1213,
  55312. bottom: 35/1318
  55313. }
  55314. },
  55315. bust: {
  55316. height: math.unit(9.0859030837, "feet"),
  55317. weight: math.unit(3000, "lb"),
  55318. preyCapacity: math.unit(10, "people"),
  55319. name: "Bust",
  55320. image: {
  55321. source: "./media/characters/brook/bust.svg",
  55322. extra: 2043/1923,
  55323. bottom: 0/2043
  55324. }
  55325. },
  55326. },
  55327. [
  55328. {
  55329. name: "Small",
  55330. height: math.unit(11, "feet"),
  55331. default: true
  55332. },
  55333. {
  55334. name: "Towering",
  55335. height: math.unit(5, "km")
  55336. },
  55337. {
  55338. name: "Enormous",
  55339. height: math.unit(25, "earths")
  55340. },
  55341. ]
  55342. ))
  55343. characterMakers.push(() => makeCharacter(
  55344. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55345. {
  55346. front: {
  55347. height: math.unit(4, "feet"),
  55348. weight: math.unit(150, "lb"),
  55349. name: "Front",
  55350. image: {
  55351. source: "./media/characters/squishi/front.svg",
  55352. extra: 1428/1271,
  55353. bottom: 30/1458
  55354. },
  55355. extraAttributes: {
  55356. "pawSize": {
  55357. name: "Paw Size",
  55358. power: 1,
  55359. type: "length",
  55360. base: math.unit(14, "ShoeSizeMensUS"),
  55361. defaultUnit: "ShoeSizeMensUS"
  55362. },
  55363. }
  55364. },
  55365. side: {
  55366. height: math.unit(4, "feet"),
  55367. weight: math.unit(150, "lb"),
  55368. name: "Side",
  55369. image: {
  55370. source: "./media/characters/squishi/side.svg",
  55371. extra: 1428/1271,
  55372. bottom: 30/1458
  55373. },
  55374. extraAttributes: {
  55375. "pawSize": {
  55376. name: "Paw Size",
  55377. power: 1,
  55378. type: "length",
  55379. base: math.unit(14, "ShoeSizeMensUS"),
  55380. defaultUnit: "ShoeSizeMensUS"
  55381. },
  55382. }
  55383. },
  55384. back: {
  55385. height: math.unit(4, "feet"),
  55386. weight: math.unit(150, "lb"),
  55387. name: "Back",
  55388. image: {
  55389. source: "./media/characters/squishi/back.svg",
  55390. extra: 1428/1271,
  55391. bottom: 30/1458
  55392. },
  55393. extraAttributes: {
  55394. "pawSize": {
  55395. name: "Paw Size",
  55396. power: 1,
  55397. type: "length",
  55398. base: math.unit(14, "ShoeSizeMensUS"),
  55399. defaultUnit: "ShoeSizeMensUS"
  55400. },
  55401. }
  55402. },
  55403. },
  55404. [
  55405. {
  55406. name: "Normal",
  55407. height: math.unit(4, "feet"),
  55408. default: true
  55409. },
  55410. ]
  55411. ))
  55412. characterMakers.push(() => makeCharacter(
  55413. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55414. {
  55415. front: {
  55416. height: math.unit(7 + 8/12, "feet"),
  55417. weight: math.unit(333, "lb"),
  55418. name: "Front",
  55419. image: {
  55420. source: "./media/characters/vincent-vasroc/front.svg",
  55421. extra: 1962/1860,
  55422. bottom: 41/2003
  55423. }
  55424. },
  55425. back: {
  55426. height: math.unit(7 + 8/12, "feet"),
  55427. weight: math.unit(333, "lb"),
  55428. name: "Back",
  55429. image: {
  55430. source: "./media/characters/vincent-vasroc/back.svg",
  55431. extra: 1952/1815,
  55432. bottom: 33/1985
  55433. }
  55434. },
  55435. paw: {
  55436. height: math.unit(1.24, "feet"),
  55437. name: "Paw",
  55438. image: {
  55439. source: "./media/characters/vincent-vasroc/paw.svg"
  55440. }
  55441. },
  55442. ear: {
  55443. height: math.unit(0.75, "feet"),
  55444. name: "Ear",
  55445. image: {
  55446. source: "./media/characters/vincent-vasroc/ear.svg"
  55447. }
  55448. },
  55449. },
  55450. [
  55451. {
  55452. name: "Nano",
  55453. height: math.unit(92, "micrometers")
  55454. },
  55455. {
  55456. name: "Normal",
  55457. height: math.unit(7 + 8/12, "feet"),
  55458. default: true
  55459. },
  55460. ]
  55461. ))
  55462. characterMakers.push(() => makeCharacter(
  55463. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55464. {
  55465. frontNsfw: {
  55466. height: math.unit(40, "feet"),
  55467. weight: math.unit(58, "tons"),
  55468. name: "Front (NSFW)",
  55469. image: {
  55470. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55471. extra: 1265/965,
  55472. bottom: 155/1420
  55473. }
  55474. },
  55475. frontSfw: {
  55476. height: math.unit(40, "feet"),
  55477. weight: math.unit(58, "tons"),
  55478. name: "Front (SFW)",
  55479. image: {
  55480. source: "./media/characters/ru-kahn/front-sfw.svg",
  55481. extra: 1265/965,
  55482. bottom: 80/1345
  55483. }
  55484. },
  55485. },
  55486. [
  55487. {
  55488. name: "Small",
  55489. height: math.unit(4, "feet")
  55490. },
  55491. {
  55492. name: "Normal",
  55493. height: math.unit(40, "feet"),
  55494. default: true
  55495. },
  55496. {
  55497. name: "Macro",
  55498. height: math.unit(400, "feet")
  55499. },
  55500. ]
  55501. ))
  55502. characterMakers.push(() => makeCharacter(
  55503. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55504. {
  55505. frontNude: {
  55506. height: math.unit(6 + 5/12, "feet"),
  55507. name: "Front (Nude)",
  55508. image: {
  55509. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55510. extra: 1369/1366,
  55511. bottom: 68/1437
  55512. }
  55513. },
  55514. frontDressed: {
  55515. height: math.unit(6 + 5/12, "feet"),
  55516. name: "Front (Dressed)",
  55517. image: {
  55518. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55519. extra: 1369/1366,
  55520. bottom: 68/1437
  55521. }
  55522. },
  55523. },
  55524. [
  55525. {
  55526. name: "Normal",
  55527. height: math.unit(6 + 5/12, "feet"),
  55528. default: true
  55529. },
  55530. {
  55531. name: "Maximum",
  55532. height: math.unit(1930, "feet")
  55533. },
  55534. ]
  55535. ))
  55536. characterMakers.push(() => makeCharacter(
  55537. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55538. {
  55539. front: {
  55540. height: math.unit(5 + 6/12, "feet"),
  55541. name: "Front",
  55542. image: {
  55543. source: "./media/characters/kaja/front.svg",
  55544. extra: 1874/1514,
  55545. bottom: 117/1991
  55546. }
  55547. },
  55548. },
  55549. [
  55550. {
  55551. name: "Normal",
  55552. height: math.unit(5 + 6/12, "feet"),
  55553. default: true
  55554. },
  55555. ]
  55556. ))
  55557. characterMakers.push(() => makeCharacter(
  55558. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55559. {
  55560. front: {
  55561. height: math.unit(5 + 9/12, "feet"),
  55562. weight: math.unit(200, "lb"),
  55563. name: "Front",
  55564. image: {
  55565. source: "./media/characters/mark-smith/front.svg",
  55566. extra: 1004/943,
  55567. bottom: 58/1062
  55568. }
  55569. },
  55570. back: {
  55571. height: math.unit(5 + 9/12, "feet"),
  55572. weight: math.unit(200, "lb"),
  55573. name: "Back",
  55574. image: {
  55575. source: "./media/characters/mark-smith/back.svg",
  55576. extra: 1023/953,
  55577. bottom: 24/1047
  55578. }
  55579. },
  55580. head: {
  55581. height: math.unit(1.82, "feet"),
  55582. name: "Head",
  55583. image: {
  55584. source: "./media/characters/mark-smith/head.svg"
  55585. }
  55586. },
  55587. hand: {
  55588. height: math.unit(1.4, "feet"),
  55589. name: "Hand",
  55590. image: {
  55591. source: "./media/characters/mark-smith/hand.svg"
  55592. }
  55593. },
  55594. paw: {
  55595. height: math.unit(1.69, "feet"),
  55596. name: "Paw",
  55597. image: {
  55598. source: "./media/characters/mark-smith/paw.svg"
  55599. }
  55600. },
  55601. },
  55602. [
  55603. {
  55604. name: "Micro",
  55605. height: math.unit(0.25, "inches")
  55606. },
  55607. {
  55608. name: "Normal",
  55609. height: math.unit(5 + 9/12, "feet"),
  55610. default: true
  55611. },
  55612. {
  55613. name: "Macro",
  55614. height: math.unit(500, "feet")
  55615. },
  55616. ]
  55617. ))
  55618. characterMakers.push(() => makeCharacter(
  55619. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55620. {
  55621. frontNude: {
  55622. height: math.unit(6, "feet"),
  55623. name: "Front (Nude)",
  55624. image: {
  55625. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55626. extra: 1384/1321,
  55627. bottom: 57/1441
  55628. }
  55629. },
  55630. frontDressed: {
  55631. height: math.unit(6, "feet"),
  55632. name: "Front (Dressed)",
  55633. image: {
  55634. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55635. extra: 1384/1321,
  55636. bottom: 57/1441
  55637. }
  55638. },
  55639. },
  55640. [
  55641. {
  55642. name: "Normal",
  55643. height: math.unit(6, "feet"),
  55644. default: true
  55645. },
  55646. {
  55647. name: "Maximum",
  55648. height: math.unit(1776, "feet")
  55649. },
  55650. ]
  55651. ))
  55652. characterMakers.push(() => makeCharacter(
  55653. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55654. {
  55655. front: {
  55656. height: math.unit(2 + 4/12, "feet"),
  55657. weight: math.unit(350, "lb"),
  55658. name: "Front",
  55659. image: {
  55660. source: "./media/characters/devos/front.svg",
  55661. extra: 958/852,
  55662. bottom: 143/1101
  55663. }
  55664. },
  55665. },
  55666. [
  55667. {
  55668. name: "Base",
  55669. height: math.unit(2 + 4/12, "feet"),
  55670. default: true
  55671. },
  55672. ]
  55673. ))
  55674. characterMakers.push(() => makeCharacter(
  55675. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55676. {
  55677. front: {
  55678. height: math.unit(9 + 2/12, "feet"),
  55679. name: "Front",
  55680. image: {
  55681. source: "./media/characters/hiveheart/front.svg",
  55682. extra: 394/364,
  55683. bottom: 65/459
  55684. }
  55685. },
  55686. back: {
  55687. height: math.unit(9 + 2/12, "feet"),
  55688. name: "Back",
  55689. image: {
  55690. source: "./media/characters/hiveheart/back.svg",
  55691. extra: 374/357,
  55692. bottom: 63/437
  55693. }
  55694. },
  55695. },
  55696. [
  55697. {
  55698. name: "Base",
  55699. height: math.unit(9 + 2/12, "feet"),
  55700. default: true
  55701. },
  55702. ]
  55703. ))
  55704. characterMakers.push(() => makeCharacter(
  55705. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55706. {
  55707. front: {
  55708. height: math.unit(2.5, "inches"),
  55709. weight: math.unit(0.6, "oz"),
  55710. name: "Front",
  55711. image: {
  55712. source: "./media/characters/bryn/front.svg",
  55713. extra: 1480/1205,
  55714. bottom: 27/1507
  55715. }
  55716. },
  55717. back: {
  55718. height: math.unit(2.5, "inches"),
  55719. weight: math.unit(0.6, "oz"),
  55720. name: "Back",
  55721. image: {
  55722. source: "./media/characters/bryn/back.svg",
  55723. extra: 1475/1201,
  55724. bottom: 39/1514
  55725. }
  55726. },
  55727. foot: {
  55728. height: math.unit(0.4, "inches"),
  55729. name: "Foot",
  55730. image: {
  55731. source: "./media/characters/bryn/foot.svg"
  55732. }
  55733. },
  55734. },
  55735. [
  55736. {
  55737. name: "Normal",
  55738. height: math.unit(2.5, "inches"),
  55739. default: true
  55740. },
  55741. ]
  55742. ))
  55743. characterMakers.push(() => makeCharacter(
  55744. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55745. {
  55746. side: {
  55747. height: math.unit(7, "feet"),
  55748. weight: math.unit(657, "kg"),
  55749. name: "Side",
  55750. image: {
  55751. source: "./media/characters/delta/side.svg",
  55752. extra: 781/212,
  55753. bottom: 7/788
  55754. },
  55755. extraAttributes: {
  55756. "wingspan": {
  55757. name: "Wingspan",
  55758. power: 1,
  55759. type: "length",
  55760. base: math.unit(48, "feet")
  55761. },
  55762. "length": {
  55763. name: "Length",
  55764. power: 1,
  55765. type: "length",
  55766. base: math.unit(21, "feet")
  55767. },
  55768. "pawSize": {
  55769. name: "Paw Size",
  55770. power: 2,
  55771. type: "area",
  55772. base: math.unit(1.5*1.4, "feet^2")
  55773. },
  55774. }
  55775. },
  55776. },
  55777. [
  55778. {
  55779. name: "Normal",
  55780. height: math.unit(6, "feet"),
  55781. default: true
  55782. },
  55783. ]
  55784. ))
  55785. characterMakers.push(() => makeCharacter(
  55786. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55787. {
  55788. front: {
  55789. height: math.unit(6, "feet"),
  55790. name: "Front",
  55791. image: {
  55792. source: "./media/characters/pyrow/front.svg",
  55793. extra: 513/486,
  55794. bottom: 14/527
  55795. }
  55796. },
  55797. frontWing: {
  55798. height: math.unit(6, "feet"),
  55799. name: "Front (Wing)",
  55800. image: {
  55801. source: "./media/characters/pyrow/front-wing.svg",
  55802. extra: 539/383,
  55803. bottom: 20/559
  55804. }
  55805. },
  55806. back: {
  55807. height: math.unit(6, "feet"),
  55808. name: "Back",
  55809. image: {
  55810. source: "./media/characters/pyrow/back.svg",
  55811. extra: 500/473,
  55812. bottom: 9/509
  55813. }
  55814. },
  55815. },
  55816. [
  55817. {
  55818. name: "Normal",
  55819. height: math.unit(6, "feet"),
  55820. default: true
  55821. },
  55822. ]
  55823. ))
  55824. characterMakers.push(() => makeCharacter(
  55825. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55826. {
  55827. front: {
  55828. height: math.unit(5, "meters"),
  55829. weight: math.unit(3, "tonnes"),
  55830. name: "Front",
  55831. image: {
  55832. source: "./media/characters/velikan/front.svg",
  55833. extra: 867/744,
  55834. bottom: 71/938
  55835. },
  55836. extraAttributes: {
  55837. "shoeSize": {
  55838. name: "Shoe Size",
  55839. power: 1,
  55840. type: "length",
  55841. base: math.unit(135, "ShoeSizeUK"),
  55842. defaultUnit: "ShoeSizeUK"
  55843. },
  55844. }
  55845. },
  55846. },
  55847. [
  55848. {
  55849. name: "Normal",
  55850. height: math.unit(5, "meters"),
  55851. default: true
  55852. },
  55853. {
  55854. name: "Macro",
  55855. height: math.unit(1, "km")
  55856. },
  55857. {
  55858. name: "Mega Macro",
  55859. height: math.unit(100, "km")
  55860. },
  55861. {
  55862. name: "Giga Macro",
  55863. height: math.unit(2, "megameters")
  55864. },
  55865. {
  55866. name: "Planetary",
  55867. height: math.unit(22, "megameters")
  55868. },
  55869. {
  55870. name: "Solar",
  55871. height: math.unit(8, "gigameters")
  55872. },
  55873. {
  55874. name: "Cosmic",
  55875. height: math.unit(10, "zettameters")
  55876. },
  55877. {
  55878. name: "Omni",
  55879. height: math.unit(9e260, "multiverses")
  55880. },
  55881. ]
  55882. ))
  55883. characterMakers.push(() => makeCharacter(
  55884. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55885. {
  55886. front: {
  55887. height: math.unit(4 + 3/12, "feet"),
  55888. weight: math.unit(90, "lb"),
  55889. name: "Front",
  55890. image: {
  55891. source: "./media/characters/sabiki/front.svg",
  55892. extra: 1662/1423,
  55893. bottom: 65/1727
  55894. }
  55895. },
  55896. },
  55897. [
  55898. {
  55899. name: "Normal",
  55900. height: math.unit(4 + 3/12, "feet"),
  55901. default: true
  55902. },
  55903. ]
  55904. ))
  55905. characterMakers.push(() => makeCharacter(
  55906. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55907. {
  55908. frontSfw: {
  55909. height: math.unit(2, "mm"),
  55910. name: "Front (SFW)",
  55911. image: {
  55912. source: "./media/characters/carmel/front-sfw.svg",
  55913. extra: 1131/1006,
  55914. bottom: 66/1197
  55915. }
  55916. },
  55917. frontNsfw: {
  55918. height: math.unit(2, "mm"),
  55919. name: "Front (NSFW)",
  55920. image: {
  55921. source: "./media/characters/carmel/front-nsfw.svg",
  55922. extra: 1131/1006,
  55923. bottom: 66/1197
  55924. }
  55925. },
  55926. foot: {
  55927. height: math.unit(0.3, "mm"),
  55928. name: "Foot",
  55929. image: {
  55930. source: "./media/characters/carmel/foot.svg"
  55931. }
  55932. },
  55933. tongue: {
  55934. height: math.unit(0.71, "mm"),
  55935. name: "Tongue",
  55936. image: {
  55937. source: "./media/characters/carmel/tongue.svg"
  55938. }
  55939. },
  55940. dick: {
  55941. height: math.unit(0.085, "mm"),
  55942. name: "Dick",
  55943. image: {
  55944. source: "./media/characters/carmel/dick.svg"
  55945. }
  55946. },
  55947. },
  55948. [
  55949. {
  55950. name: "Micro",
  55951. height: math.unit(2, "mm"),
  55952. default: true
  55953. },
  55954. {
  55955. name: "Normal",
  55956. height: math.unit(4 + 8/12, "feet")
  55957. },
  55958. {
  55959. name: "Mega Macro",
  55960. height: math.unit(250, "feet")
  55961. },
  55962. {
  55963. name: "BIGGER",
  55964. height: math.unit(1000, "feet")
  55965. },
  55966. {
  55967. name: "BIGGEST",
  55968. height: math.unit(2, "miles")
  55969. },
  55970. ]
  55971. ))
  55972. characterMakers.push(() => makeCharacter(
  55973. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55974. {
  55975. front: {
  55976. height: math.unit(6.5, "feet"),
  55977. weight: math.unit(198, "lb"),
  55978. name: "Front",
  55979. image: {
  55980. source: "./media/characters/tamani/anthro.svg",
  55981. extra: 930/890,
  55982. bottom: 34/964
  55983. },
  55984. form: "anthro",
  55985. default: true
  55986. },
  55987. side: {
  55988. height: math.unit(6, "feet"),
  55989. weight: math.unit(198*2, "lb"),
  55990. name: "Side",
  55991. image: {
  55992. source: "./media/characters/tamani/feral.svg",
  55993. extra: 559/519,
  55994. bottom: 43/602
  55995. },
  55996. form: "feral"
  55997. },
  55998. },
  55999. [
  56000. {
  56001. name: "Normal",
  56002. height: math.unit(6.5, "feet"),
  56003. default: true,
  56004. form: "anthro"
  56005. },
  56006. {
  56007. name: "Normal",
  56008. height: math.unit(6, "feet"),
  56009. default: true,
  56010. form: "feral"
  56011. },
  56012. ],
  56013. {
  56014. "anthro": {
  56015. name: "Anthro",
  56016. default: true
  56017. },
  56018. "feral": {
  56019. name: "Feral",
  56020. },
  56021. }
  56022. ))
  56023. characterMakers.push(() => makeCharacter(
  56024. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56025. {
  56026. front: {
  56027. height: math.unit(4 + 1/12, "feet"),
  56028. weight: math.unit(114, "lb"),
  56029. name: "Front",
  56030. image: {
  56031. source: "./media/characters/dex/front.svg",
  56032. extra: 787/680,
  56033. bottom: 18/805
  56034. }
  56035. },
  56036. side: {
  56037. height: math.unit(4 + 1/12, "feet"),
  56038. weight: math.unit(114, "lb"),
  56039. name: "Side",
  56040. image: {
  56041. source: "./media/characters/dex/side.svg",
  56042. extra: 785/680,
  56043. bottom: 12/797
  56044. }
  56045. },
  56046. back: {
  56047. height: math.unit(4 + 1/12, "feet"),
  56048. weight: math.unit(114, "lb"),
  56049. name: "Back",
  56050. image: {
  56051. source: "./media/characters/dex/back.svg",
  56052. extra: 785/681,
  56053. bottom: 17/802
  56054. }
  56055. },
  56056. loungewear: {
  56057. height: math.unit(4 + 1/12, "feet"),
  56058. weight: math.unit(114, "lb"),
  56059. name: "Loungewear",
  56060. image: {
  56061. source: "./media/characters/dex/loungewear.svg",
  56062. extra: 787/680,
  56063. bottom: 18/805
  56064. }
  56065. },
  56066. workout: {
  56067. height: math.unit(4 + 1/12, "feet"),
  56068. weight: math.unit(114, "lb"),
  56069. name: "Workout",
  56070. image: {
  56071. source: "./media/characters/dex/workout.svg",
  56072. extra: 787/680,
  56073. bottom: 18/805
  56074. }
  56075. },
  56076. schoolUniform: {
  56077. height: math.unit(4 + 1/12, "feet"),
  56078. weight: math.unit(114, "lb"),
  56079. name: "School-uniform",
  56080. image: {
  56081. source: "./media/characters/dex/school-uniform.svg",
  56082. extra: 787/680,
  56083. bottom: 18/805
  56084. }
  56085. },
  56086. maw: {
  56087. height: math.unit(0.55, "feet"),
  56088. name: "Maw",
  56089. image: {
  56090. source: "./media/characters/dex/maw.svg"
  56091. }
  56092. },
  56093. paw: {
  56094. height: math.unit(0.87, "feet"),
  56095. name: "Paw",
  56096. image: {
  56097. source: "./media/characters/dex/paw.svg"
  56098. }
  56099. },
  56100. bust: {
  56101. height: math.unit(1.67, "feet"),
  56102. name: "Bust",
  56103. image: {
  56104. source: "./media/characters/dex/bust.svg"
  56105. }
  56106. },
  56107. },
  56108. [
  56109. {
  56110. name: "Normal",
  56111. height: math.unit(4 + 1/12, "feet"),
  56112. default: true
  56113. },
  56114. ]
  56115. ))
  56116. characterMakers.push(() => makeCharacter(
  56117. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56118. {
  56119. front: {
  56120. height: math.unit(4 + 3/12, "feet"),
  56121. weight: math.unit(60, "lb"),
  56122. name: "Front",
  56123. image: {
  56124. source: "./media/characters/silke/front.svg",
  56125. extra: 1334/1122,
  56126. bottom: 21/1355
  56127. }
  56128. },
  56129. back: {
  56130. height: math.unit(4 + 3/12, "feet"),
  56131. weight: math.unit(60, "lb"),
  56132. name: "Back",
  56133. image: {
  56134. source: "./media/characters/silke/back.svg",
  56135. extra: 1328/1092,
  56136. bottom: 16/1344
  56137. }
  56138. },
  56139. dressed: {
  56140. height: math.unit(4 + 3/12, "feet"),
  56141. weight: math.unit(60, "lb"),
  56142. name: "Dressed",
  56143. image: {
  56144. source: "./media/characters/silke/dressed.svg",
  56145. extra: 1334/1122,
  56146. bottom: 43/1377
  56147. }
  56148. },
  56149. },
  56150. [
  56151. {
  56152. name: "Normal",
  56153. height: math.unit(4 + 3/12, "feet"),
  56154. default: true
  56155. },
  56156. ]
  56157. ))
  56158. characterMakers.push(() => makeCharacter(
  56159. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56160. {
  56161. front: {
  56162. height: math.unit(1.58, "meters"),
  56163. weight: math.unit(47, "kg"),
  56164. name: "Front",
  56165. image: {
  56166. source: "./media/characters/wireshark/front.svg",
  56167. extra: 883/838,
  56168. bottom: 66/949
  56169. }
  56170. },
  56171. },
  56172. [
  56173. {
  56174. name: "Normal",
  56175. height: math.unit(1.58, "meters"),
  56176. default: true
  56177. },
  56178. ]
  56179. ))
  56180. characterMakers.push(() => makeCharacter(
  56181. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56182. {
  56183. front: {
  56184. height: math.unit(6, "meters"),
  56185. weight: math.unit(15000, "kg"),
  56186. name: "Front",
  56187. image: {
  56188. source: "./media/characters/gallagher/front.svg",
  56189. extra: 532/493,
  56190. bottom: 0/532
  56191. }
  56192. },
  56193. },
  56194. [
  56195. {
  56196. name: "Normal",
  56197. height: math.unit(6, "meters"),
  56198. default: true
  56199. },
  56200. ]
  56201. ))
  56202. characterMakers.push(() => makeCharacter(
  56203. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56204. {
  56205. front: {
  56206. height: math.unit(2.4, "meters"),
  56207. weight: math.unit(270, "kg"),
  56208. name: "Front",
  56209. image: {
  56210. source: "./media/characters/alice/front.svg",
  56211. extra: 950/900,
  56212. bottom: 36/986
  56213. }
  56214. },
  56215. side: {
  56216. height: math.unit(2.4, "meters"),
  56217. weight: math.unit(270, "kg"),
  56218. name: "Side",
  56219. image: {
  56220. source: "./media/characters/alice/side.svg",
  56221. extra: 921/876,
  56222. bottom: 19/940
  56223. }
  56224. },
  56225. dressed: {
  56226. height: math.unit(2.4, "meters"),
  56227. weight: math.unit(270, "kg"),
  56228. name: "Dressed",
  56229. image: {
  56230. source: "./media/characters/alice/dressed.svg",
  56231. extra: 905/850,
  56232. bottom: 81/986
  56233. }
  56234. },
  56235. fishnet: {
  56236. height: math.unit(2.4, "meters"),
  56237. weight: math.unit(270, "kg"),
  56238. name: "Fishnet",
  56239. image: {
  56240. source: "./media/characters/alice/fishnet.svg",
  56241. extra: 905/850,
  56242. bottom: 81/986
  56243. }
  56244. },
  56245. },
  56246. [
  56247. {
  56248. name: "Normal",
  56249. height: math.unit(2.4, "meters"),
  56250. default: true
  56251. },
  56252. ]
  56253. ))
  56254. characterMakers.push(() => makeCharacter(
  56255. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56256. {
  56257. front: {
  56258. height: math.unit(175.25, "feet"),
  56259. name: "Front",
  56260. image: {
  56261. source: "./media/characters/fio/front.svg",
  56262. extra: 1883/1591,
  56263. bottom: 34/1917
  56264. }
  56265. },
  56266. },
  56267. [
  56268. {
  56269. name: "Normal",
  56270. height: math.unit(175.25, "cm"),
  56271. default: true
  56272. },
  56273. ]
  56274. ))
  56275. characterMakers.push(() => makeCharacter(
  56276. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56277. {
  56278. side: {
  56279. height: math.unit(6, "meters"),
  56280. weight: math.unit(3400, "kg"),
  56281. preyCapacity: math.unit(1700, "liters"),
  56282. name: "Side",
  56283. image: {
  56284. source: "./media/characters/hass/side.svg",
  56285. extra: 1058/997,
  56286. bottom: 177/1235
  56287. }
  56288. },
  56289. feeding: {
  56290. height: math.unit(6*0.63, "meters"),
  56291. weight: math.unit(3400, "kg"),
  56292. preyCapacity: math.unit(1700, "liters"),
  56293. name: "Feeding",
  56294. image: {
  56295. source: "./media/characters/hass/feeding.svg",
  56296. extra: 689/579,
  56297. bottom: 146/835
  56298. }
  56299. },
  56300. guts: {
  56301. height: math.unit(6, "meters"),
  56302. weight: math.unit(3400, "kg"),
  56303. name: "Guts",
  56304. image: {
  56305. source: "./media/characters/hass/guts.svg",
  56306. extra: 1223/1198,
  56307. bottom: 182/1405
  56308. }
  56309. },
  56310. dickFront: {
  56311. height: math.unit(1.4, "meters"),
  56312. name: "Dick (Front)",
  56313. image: {
  56314. source: "./media/characters/hass/dick-front.svg"
  56315. }
  56316. },
  56317. dickSide: {
  56318. height: math.unit(1.3, "meters"),
  56319. name: "Dick (Side)",
  56320. image: {
  56321. source: "./media/characters/hass/dick-side.svg"
  56322. }
  56323. },
  56324. dickBack: {
  56325. height: math.unit(1.4, "meters"),
  56326. name: "Dick (Back)",
  56327. image: {
  56328. source: "./media/characters/hass/dick-back.svg"
  56329. }
  56330. },
  56331. },
  56332. [
  56333. {
  56334. name: "Normal",
  56335. height: math.unit(6, "meters"),
  56336. default: true
  56337. },
  56338. ]
  56339. ))
  56340. characterMakers.push(() => makeCharacter(
  56341. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56342. {
  56343. front: {
  56344. height: math.unit(4, "feet"),
  56345. weight: math.unit(60, "lb"),
  56346. name: "Front",
  56347. image: {
  56348. source: "./media/characters/hickory-finnegan/front.svg",
  56349. extra: 444/411,
  56350. bottom: 10/454
  56351. }
  56352. },
  56353. side: {
  56354. height: math.unit(4, "feet"),
  56355. weight: math.unit(60, "lb"),
  56356. name: "Side",
  56357. image: {
  56358. source: "./media/characters/hickory-finnegan/side.svg",
  56359. extra: 444/411,
  56360. bottom: 10/454
  56361. }
  56362. },
  56363. back: {
  56364. height: math.unit(4, "feet"),
  56365. weight: math.unit(60, "lb"),
  56366. name: "Back",
  56367. image: {
  56368. source: "./media/characters/hickory-finnegan/back.svg",
  56369. extra: 444/411,
  56370. bottom: 10/454
  56371. }
  56372. },
  56373. },
  56374. [
  56375. {
  56376. name: "Normal",
  56377. height: math.unit(4, "feet"),
  56378. default: true
  56379. },
  56380. ]
  56381. ))
  56382. characterMakers.push(() => makeCharacter(
  56383. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56384. {
  56385. snivy_front: {
  56386. height: math.unit(2, "feet"),
  56387. weight: math.unit(17.9, "lb"),
  56388. name: "Front",
  56389. image: {
  56390. source: "./media/characters/robin-phox/snivy-front.svg",
  56391. extra: 569/504,
  56392. bottom: 33/602
  56393. },
  56394. form: "snivy",
  56395. default: true
  56396. },
  56397. snivy_frontNsfw: {
  56398. height: math.unit(2, "feet"),
  56399. weight: math.unit(17.9, "lb"),
  56400. name: "Front (NSFW)",
  56401. image: {
  56402. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56403. extra: 569/504,
  56404. bottom: 33/602
  56405. },
  56406. form: "snivy",
  56407. },
  56408. snivy_back: {
  56409. height: math.unit(2, "feet"),
  56410. weight: math.unit(17.9, "lb"),
  56411. name: "Back",
  56412. image: {
  56413. source: "./media/characters/robin-phox/snivy-back.svg",
  56414. extra: 577/508,
  56415. bottom: 21/598
  56416. },
  56417. form: "snivy",
  56418. },
  56419. snivy_foot: {
  56420. height: math.unit(0.68, "feet"),
  56421. name: "Foot",
  56422. image: {
  56423. source: "./media/characters/robin-phox/snivy-foot.svg"
  56424. },
  56425. form: "snivy",
  56426. },
  56427. snivy_sole: {
  56428. height: math.unit(0.68, "feet"),
  56429. name: "Sole",
  56430. image: {
  56431. source: "./media/characters/robin-phox/snivy-sole.svg"
  56432. },
  56433. form: "snivy",
  56434. },
  56435. yoshi_front: {
  56436. height: math.unit(6, "feet"),
  56437. weight: math.unit(150, "lb"),
  56438. name: "Front",
  56439. image: {
  56440. source: "./media/characters/robin-phox/yoshi-front.svg",
  56441. extra: 890/792,
  56442. bottom: 29/919
  56443. },
  56444. form: "yoshi",
  56445. default: true
  56446. },
  56447. yoshi_frontNsfw: {
  56448. height: math.unit(6, "feet"),
  56449. weight: math.unit(150, "lb"),
  56450. name: "Front (NSFW)",
  56451. image: {
  56452. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56453. extra: 890/792,
  56454. bottom: 29/919
  56455. },
  56456. form: "yoshi",
  56457. },
  56458. yoshi_back: {
  56459. height: math.unit(6, "feet"),
  56460. weight: math.unit(150, "lb"),
  56461. name: "Back",
  56462. image: {
  56463. source: "./media/characters/robin-phox/yoshi-back.svg",
  56464. extra: 890/792,
  56465. bottom: 29/919
  56466. },
  56467. form: "yoshi",
  56468. },
  56469. yoshi_foot: {
  56470. height: math.unit(1.5, "feet"),
  56471. name: "Foot",
  56472. image: {
  56473. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56474. },
  56475. form: "yoshi",
  56476. },
  56477. delphox_front: {
  56478. height: math.unit(4 + 11/12, "feet"),
  56479. weight: math.unit(86, "lb"),
  56480. name: "Front",
  56481. image: {
  56482. source: "./media/characters/robin-phox/delphox-front.svg",
  56483. extra: 1266/1069,
  56484. bottom: 32/1298
  56485. },
  56486. form: "delphox",
  56487. default: true
  56488. },
  56489. delphox_frontNsfw: {
  56490. height: math.unit(4 + 11/12, "feet"),
  56491. weight: math.unit(86, "lb"),
  56492. name: "Front (NSFW)",
  56493. image: {
  56494. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56495. extra: 1266/1069,
  56496. bottom: 32/1298
  56497. },
  56498. form: "delphox",
  56499. },
  56500. delphox_back: {
  56501. height: math.unit(4 + 11/12, "feet"),
  56502. weight: math.unit(86, "lb"),
  56503. name: "Back",
  56504. image: {
  56505. source: "./media/characters/robin-phox/delphox-back.svg",
  56506. extra: 1269/1083,
  56507. bottom: 15/1284
  56508. },
  56509. form: "delphox",
  56510. },
  56511. mienshao_front: {
  56512. height: math.unit(4 + 7/12, "feet"),
  56513. weight: math.unit(78.3, "lb"),
  56514. name: "Front",
  56515. image: {
  56516. source: "./media/characters/robin-phox/mienshao-front.svg",
  56517. extra: 1052/970,
  56518. bottom: 108/1160
  56519. },
  56520. form: "mienshao",
  56521. default: true
  56522. },
  56523. mienshao_frontNsfw: {
  56524. height: math.unit(4 + 7/12, "feet"),
  56525. weight: math.unit(78.3, "lb"),
  56526. name: "Front (NSFW)",
  56527. image: {
  56528. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56529. extra: 1052/970,
  56530. bottom: 108/1160
  56531. },
  56532. form: "mienshao",
  56533. },
  56534. mienshao_back: {
  56535. height: math.unit(4 + 7/12, "feet"),
  56536. weight: math.unit(78.3, "lb"),
  56537. name: "Back",
  56538. image: {
  56539. source: "./media/characters/robin-phox/mienshao-back.svg",
  56540. extra: 1102/982,
  56541. bottom: 32/1134
  56542. },
  56543. form: "mienshao",
  56544. },
  56545. inteleon_front: {
  56546. height: math.unit(6 + 3/12, "feet"),
  56547. weight: math.unit(99.6, "lb"),
  56548. name: "Front",
  56549. image: {
  56550. source: "./media/characters/robin-phox/inteleon-front.svg",
  56551. extra: 910/799,
  56552. bottom: 76/986
  56553. },
  56554. form: "inteleon",
  56555. default: true
  56556. },
  56557. inteleon_frontNsfw: {
  56558. height: math.unit(6 + 3/12, "feet"),
  56559. weight: math.unit(99.6, "lb"),
  56560. name: "Front (NSFW)",
  56561. image: {
  56562. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56563. extra: 910/799,
  56564. bottom: 76/986
  56565. },
  56566. form: "inteleon",
  56567. },
  56568. inteleon_back: {
  56569. height: math.unit(6 + 3/12, "feet"),
  56570. weight: math.unit(99.6, "lb"),
  56571. name: "Back",
  56572. image: {
  56573. source: "./media/characters/robin-phox/inteleon-back.svg",
  56574. extra: 907/796,
  56575. bottom: 25/932
  56576. },
  56577. form: "inteleon",
  56578. },
  56579. reshiram_front: {
  56580. height: math.unit(10 + 6/12, "feet"),
  56581. weight: math.unit(727.5, "lb"),
  56582. name: "Front",
  56583. image: {
  56584. source: "./media/characters/robin-phox/reshiram-front.svg",
  56585. extra: 1198/940,
  56586. bottom: 123/1321
  56587. },
  56588. form: "reshiram",
  56589. },
  56590. reshiram_frontNsfw: {
  56591. height: math.unit(10 + 6/12, "feet"),
  56592. weight: math.unit(727.5, "lb"),
  56593. name: "Front-nsfw",
  56594. image: {
  56595. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56596. extra: 1198/940,
  56597. bottom: 123/1321
  56598. },
  56599. form: "reshiram",
  56600. },
  56601. reshiram_back: {
  56602. height: math.unit(10 + 6/12, "feet"),
  56603. weight: math.unit(727.5, "lb"),
  56604. name: "Back",
  56605. image: {
  56606. source: "./media/characters/robin-phox/reshiram-back.svg",
  56607. extra: 1024/904,
  56608. bottom: 85/1109
  56609. },
  56610. form: "reshiram",
  56611. },
  56612. samurott_front: {
  56613. height: math.unit(8, "feet"),
  56614. weight: math.unit(208.6, "lb"),
  56615. name: "Front",
  56616. image: {
  56617. source: "./media/characters/robin-phox/samurott-front.svg",
  56618. extra: 1048/984,
  56619. bottom: 100/1148
  56620. },
  56621. form: "samurott",
  56622. },
  56623. samurott_frontNsfw: {
  56624. height: math.unit(8, "feet"),
  56625. weight: math.unit(208.6, "lb"),
  56626. name: "Front-nsfw",
  56627. image: {
  56628. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56629. extra: 1048/984,
  56630. bottom: 100/1148
  56631. },
  56632. form: "samurott",
  56633. },
  56634. samurott_back: {
  56635. height: math.unit(8, "feet"),
  56636. weight: math.unit(208.6, "lb"),
  56637. name: "Back",
  56638. image: {
  56639. source: "./media/characters/robin-phox/samurott-back.svg",
  56640. extra: 1110/1042,
  56641. bottom: 12/1122
  56642. },
  56643. form: "samurott",
  56644. },
  56645. samurott_feral: {
  56646. height: math.unit(4 + 11/12, "feet"),
  56647. weight: math.unit(208.6, "lb"),
  56648. name: "Feral",
  56649. image: {
  56650. source: "./media/characters/robin-phox/samurott-feral.svg",
  56651. extra: 766/681,
  56652. bottom: 108/874
  56653. },
  56654. form: "samurott",
  56655. },
  56656. },
  56657. [
  56658. {
  56659. name: "Normal",
  56660. height: math.unit(2, "feet"),
  56661. default: true,
  56662. form: "snivy"
  56663. },
  56664. {
  56665. name: "Normal",
  56666. height: math.unit(6, "feet"),
  56667. default: true,
  56668. form: "yoshi"
  56669. },
  56670. {
  56671. name: "Normal",
  56672. height: math.unit(4 + 11/12, "feet"),
  56673. default: true,
  56674. form: "delphox"
  56675. },
  56676. {
  56677. name: "Normal",
  56678. height: math.unit(4 + 7/12, "feet"),
  56679. default: true,
  56680. form: "mienshao"
  56681. },
  56682. {
  56683. name: "Normal",
  56684. height: math.unit(6 + 3/12, "feet"),
  56685. default: true,
  56686. form: "inteleon"
  56687. },
  56688. {
  56689. name: "Normal",
  56690. height: math.unit(10 + 6/12, "feet"),
  56691. default: true,
  56692. form: "reshiram"
  56693. },
  56694. {
  56695. name: "Normal",
  56696. height: math.unit(8, "feet"),
  56697. default: true,
  56698. form: "samurott"
  56699. },
  56700. {
  56701. name: "Macro",
  56702. height: math.unit(500, "feet"),
  56703. allForms: true
  56704. },
  56705. {
  56706. name: "Mega Macro",
  56707. height: math.unit(10, "earths"),
  56708. allForms: true
  56709. },
  56710. {
  56711. name: "Giga Macro",
  56712. height: math.unit(1, "galaxy"),
  56713. allForms: true
  56714. },
  56715. {
  56716. name: "Godly Macro",
  56717. height: math.unit(1e10, "multiverses"),
  56718. allForms: true
  56719. },
  56720. ],
  56721. {
  56722. "snivy": {
  56723. name: "Snivy",
  56724. default: true
  56725. },
  56726. "yoshi": {
  56727. name: "Yoshi",
  56728. },
  56729. "delphox": {
  56730. name: "Delphox",
  56731. },
  56732. "mienshao": {
  56733. name: "Mienshao",
  56734. },
  56735. "inteleon": {
  56736. name: "Inteleon",
  56737. },
  56738. "reshiram": {
  56739. name: "Reshiram",
  56740. },
  56741. "samurott": {
  56742. name: "Samurott",
  56743. },
  56744. }
  56745. ))
  56746. characterMakers.push(() => makeCharacter(
  56747. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56748. {
  56749. front: {
  56750. height: math.unit(4, "feet"),
  56751. name: "Front",
  56752. image: {
  56753. source: "./media/characters/ash-leung/front.svg",
  56754. extra: 1916/1792,
  56755. bottom: 50/1966
  56756. }
  56757. },
  56758. },
  56759. [
  56760. {
  56761. name: "Atomic",
  56762. height: math.unit(1, "angstrom")
  56763. },
  56764. {
  56765. name: "Microscopic",
  56766. height: math.unit(4000, "angstroms")
  56767. },
  56768. {
  56769. name: "Speck",
  56770. height: math.unit(1, "mm")
  56771. },
  56772. {
  56773. name: "Small",
  56774. height: math.unit(1, "inch")
  56775. },
  56776. {
  56777. name: "Normal",
  56778. height: math.unit(4, "feet"),
  56779. default: true
  56780. },
  56781. ]
  56782. ))
  56783. characterMakers.push(() => makeCharacter(
  56784. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56785. {
  56786. frontDressed: {
  56787. height: math.unit(2.08, "meters"),
  56788. weight: math.unit(175, "lb"),
  56789. name: "Front (Dressed)",
  56790. image: {
  56791. source: "./media/characters/carie/front-dressed.svg",
  56792. extra: 456/417,
  56793. bottom: 7/463
  56794. }
  56795. },
  56796. backDressed: {
  56797. height: math.unit(2.08, "meters"),
  56798. weight: math.unit(175, "lb"),
  56799. name: "Back (Dressed)",
  56800. image: {
  56801. source: "./media/characters/carie/back-dressed.svg",
  56802. extra: 455/414,
  56803. bottom: 11/466
  56804. }
  56805. },
  56806. front: {
  56807. height: math.unit(2, "meters"),
  56808. weight: math.unit(175, "lb"),
  56809. name: "Front",
  56810. image: {
  56811. source: "./media/characters/carie/front.svg",
  56812. extra: 438/399,
  56813. bottom: 12/450
  56814. }
  56815. },
  56816. back: {
  56817. height: math.unit(2, "meters"),
  56818. weight: math.unit(175, "lb"),
  56819. name: "Back",
  56820. image: {
  56821. source: "./media/characters/carie/back.svg",
  56822. extra: 438/397,
  56823. bottom: 7/445
  56824. }
  56825. },
  56826. },
  56827. [
  56828. {
  56829. name: "Normal",
  56830. height: math.unit(2.08, "meters"),
  56831. default: true
  56832. },
  56833. {
  56834. name: "Macro",
  56835. height: math.unit(2.08e3, "meters")
  56836. },
  56837. {
  56838. name: "Mega Macro",
  56839. height: math.unit(2.08e6, "meters")
  56840. },
  56841. {
  56842. name: "Giga Macro",
  56843. height: math.unit(2.08e9, "meters")
  56844. },
  56845. {
  56846. name: "Tera Macro",
  56847. height: math.unit(2.08e12, "meters")
  56848. },
  56849. {
  56850. name: "Peta Macro",
  56851. height: math.unit(2.08e15, "meters")
  56852. },
  56853. {
  56854. name: "Exa Macro",
  56855. height: math.unit(2.08e18, "meters")
  56856. },
  56857. {
  56858. name: "Zetta Macro",
  56859. height: math.unit(2.08e21, "meters")
  56860. },
  56861. {
  56862. name: "Yotta Macro",
  56863. height: math.unit(2.08e24, "meters")
  56864. },
  56865. ]
  56866. ))
  56867. characterMakers.push(() => makeCharacter(
  56868. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  56869. {
  56870. front: {
  56871. height: math.unit(5 + 2/12, "feet"),
  56872. weight: math.unit(120, "lb"),
  56873. name: "Front",
  56874. image: {
  56875. source: "./media/characters/sai-bree/front.svg",
  56876. extra: 1843/1702,
  56877. bottom: 91/1934
  56878. }
  56879. },
  56880. back: {
  56881. height: math.unit(5 + 2/12, "feet"),
  56882. weight: math.unit(120, "lb"),
  56883. name: "Back",
  56884. image: {
  56885. source: "./media/characters/sai-bree/back.svg",
  56886. extra: 1809/1637,
  56887. bottom: 56/1865
  56888. }
  56889. },
  56890. },
  56891. [
  56892. {
  56893. name: "Normal",
  56894. height: math.unit(5 + 2/12, "feet"),
  56895. default: true
  56896. },
  56897. {
  56898. name: "Macro",
  56899. height: math.unit(500, "feet")
  56900. },
  56901. ]
  56902. ))
  56903. characterMakers.push(() => makeCharacter(
  56904. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  56905. {
  56906. side: {
  56907. height: math.unit(0.77, "meters"),
  56908. weight: math.unit(120, "lb"),
  56909. name: "Side",
  56910. image: {
  56911. source: "./media/characters/davwyn/side.svg",
  56912. extra: 1557/1225,
  56913. bottom: 131/1688
  56914. }
  56915. },
  56916. front: {
  56917. height: math.unit(0.835410, "meters"),
  56918. weight: math.unit(120, "lb"),
  56919. name: "Front",
  56920. image: {
  56921. source: "./media/characters/davwyn/front.svg",
  56922. extra: 870/843,
  56923. bottom: 175/1045
  56924. }
  56925. },
  56926. },
  56927. [
  56928. {
  56929. name: "Minidrake",
  56930. height: math.unit(0.77/4, "meters")
  56931. },
  56932. {
  56933. name: "Normal",
  56934. height: math.unit(0.77, "meters"),
  56935. default: true
  56936. },
  56937. ]
  56938. ))
  56939. characterMakers.push(() => makeCharacter(
  56940. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  56941. {
  56942. front: {
  56943. height: math.unit(10 + 3/12, "feet"),
  56944. weight: math.unit(2857, "lb"),
  56945. name: "Front",
  56946. image: {
  56947. source: "./media/characters/balans/front.svg",
  56948. extra: 427/402,
  56949. bottom: 26/453
  56950. }
  56951. },
  56952. side: {
  56953. height: math.unit(10 + 3/12, "feet"),
  56954. weight: math.unit(2857, "lb"),
  56955. name: "Side",
  56956. image: {
  56957. source: "./media/characters/balans/side.svg",
  56958. extra: 397/371,
  56959. bottom: 17/414
  56960. }
  56961. },
  56962. back: {
  56963. height: math.unit(10 + 3/12, "feet"),
  56964. weight: math.unit(2857, "lb"),
  56965. name: "Back",
  56966. image: {
  56967. source: "./media/characters/balans/back.svg",
  56968. extra: 408/381,
  56969. bottom: 14/422
  56970. }
  56971. },
  56972. hand: {
  56973. height: math.unit(1.15, "feet"),
  56974. name: "Hand",
  56975. image: {
  56976. source: "./media/characters/balans/hand.svg"
  56977. }
  56978. },
  56979. footRest: {
  56980. height: math.unit(3.1, "feet"),
  56981. name: "Foot (Rest)",
  56982. image: {
  56983. source: "./media/characters/balans/foot-rest.svg"
  56984. }
  56985. },
  56986. footActive: {
  56987. height: math.unit(3.5, "feet"),
  56988. name: "Foot (Active)",
  56989. image: {
  56990. source: "./media/characters/balans/foot-active.svg"
  56991. }
  56992. },
  56993. },
  56994. [
  56995. {
  56996. name: "Normal",
  56997. height: math.unit(10 + 3/12, "feet"),
  56998. default: true
  56999. },
  57000. ]
  57001. ))
  57002. characterMakers.push(() => makeCharacter(
  57003. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57004. {
  57005. side: {
  57006. height: math.unit(9, "meters"),
  57007. weight: math.unit(114, "tonnes"),
  57008. name: "Side",
  57009. image: {
  57010. source: "./media/characters/eldkveikir/side.svg",
  57011. extra: 1927/338,
  57012. bottom: 42/1969
  57013. }
  57014. },
  57015. sitting: {
  57016. height: math.unit(13.4, "meters"),
  57017. weight: math.unit(114, "tonnes"),
  57018. name: "Sitting",
  57019. image: {
  57020. source: "./media/characters/eldkveikir/sitting.svg",
  57021. extra: 1108/963,
  57022. bottom: 610/1718
  57023. }
  57024. },
  57025. maw: {
  57026. height: math.unit(8.36, "meters"),
  57027. name: "Maw",
  57028. image: {
  57029. source: "./media/characters/eldkveikir/maw.svg"
  57030. }
  57031. },
  57032. hand: {
  57033. height: math.unit(4.84, "meters"),
  57034. name: "Hand",
  57035. image: {
  57036. source: "./media/characters/eldkveikir/hand.svg"
  57037. }
  57038. },
  57039. foot: {
  57040. height: math.unit(6.9, "meters"),
  57041. name: "Foot",
  57042. image: {
  57043. source: "./media/characters/eldkveikir/foot.svg"
  57044. }
  57045. },
  57046. genitals: {
  57047. height: math.unit(9.6, "meters"),
  57048. name: "Genitals",
  57049. image: {
  57050. source: "./media/characters/eldkveikir/genitals.svg"
  57051. }
  57052. },
  57053. },
  57054. [
  57055. {
  57056. name: "Normal",
  57057. height: math.unit(9, "meters"),
  57058. default: true
  57059. },
  57060. ]
  57061. ))
  57062. characterMakers.push(() => makeCharacter(
  57063. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57064. {
  57065. front: {
  57066. height: math.unit(14, "feet"),
  57067. weight: math.unit(4100, "lb"),
  57068. name: "Front",
  57069. image: {
  57070. source: "./media/characters/arrow/front.svg",
  57071. extra: 330/318,
  57072. bottom: 56/386
  57073. }
  57074. },
  57075. },
  57076. [
  57077. {
  57078. name: "Normal",
  57079. height: math.unit(14, "feet"),
  57080. default: true
  57081. },
  57082. {
  57083. name: "Minimacro",
  57084. height: math.unit(63, "feet")
  57085. },
  57086. {
  57087. name: "Macro",
  57088. height: math.unit(630, "feet")
  57089. },
  57090. {
  57091. name: "Megamacro",
  57092. height: math.unit(12600, "feet")
  57093. },
  57094. {
  57095. name: "Gigamacro",
  57096. height: math.unit(18000, "miles")
  57097. },
  57098. ]
  57099. ))
  57100. characterMakers.push(() => makeCharacter(
  57101. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57102. {
  57103. front: {
  57104. height: math.unit(10, "feet"),
  57105. weight: math.unit(2.4, "tons"),
  57106. name: "Front",
  57107. image: {
  57108. source: "./media/characters/3yk-k0-unit/front.svg",
  57109. extra: 573/561,
  57110. bottom: 33/606
  57111. }
  57112. },
  57113. back: {
  57114. height: math.unit(10, "feet"),
  57115. weight: math.unit(2.4, "tons"),
  57116. name: "Back",
  57117. image: {
  57118. source: "./media/characters/3yk-k0-unit/back.svg",
  57119. extra: 614/573,
  57120. bottom: 32/646
  57121. }
  57122. },
  57123. maw: {
  57124. height: math.unit(2.15, "feet"),
  57125. name: "Maw",
  57126. image: {
  57127. source: "./media/characters/3yk-k0-unit/maw.svg"
  57128. }
  57129. },
  57130. },
  57131. [
  57132. {
  57133. name: "Normal",
  57134. height: math.unit(10, "feet"),
  57135. default: true
  57136. },
  57137. ]
  57138. ))
  57139. characterMakers.push(() => makeCharacter(
  57140. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57141. {
  57142. front: {
  57143. height: math.unit(8 + 8/12, "feet"),
  57144. name: "Front",
  57145. image: {
  57146. source: "./media/characters/nemo/front.svg",
  57147. extra: 1308/1217,
  57148. bottom: 57/1365
  57149. }
  57150. },
  57151. },
  57152. [
  57153. {
  57154. name: "Normal",
  57155. height: math.unit(8 + 8/12, "feet"),
  57156. default: true
  57157. },
  57158. ]
  57159. ))
  57160. characterMakers.push(() => makeCharacter(
  57161. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57162. {
  57163. front: {
  57164. height: math.unit(8, "feet"),
  57165. weight: math.unit(760, "lb"),
  57166. name: "Front",
  57167. image: {
  57168. source: "./media/characters/rexx/front.svg",
  57169. extra: 786/750,
  57170. bottom: 17/803
  57171. },
  57172. extraAttributes: {
  57173. "pawLength": {
  57174. name: "Paw Length",
  57175. power: 1,
  57176. type: "length",
  57177. base: math.unit(27, "inches")
  57178. },
  57179. }
  57180. },
  57181. },
  57182. [
  57183. {
  57184. name: "Micro",
  57185. height: math.unit(2, "inches")
  57186. },
  57187. {
  57188. name: "Normal",
  57189. height: math.unit(8, "feet"),
  57190. default: true
  57191. },
  57192. {
  57193. name: "Macro",
  57194. height: math.unit(150, "feet")
  57195. },
  57196. ]
  57197. ))
  57198. characterMakers.push(() => makeCharacter(
  57199. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57200. {
  57201. front: {
  57202. height: math.unit(18, "feet"),
  57203. weight: math.unit(1975, "lb"),
  57204. name: "Front",
  57205. image: {
  57206. source: "./media/characters/draco/front.svg",
  57207. extra: 1325/1241,
  57208. bottom: 83/1408
  57209. }
  57210. },
  57211. back: {
  57212. height: math.unit(18, "feet"),
  57213. weight: math.unit(1975, "lb"),
  57214. name: "Back",
  57215. image: {
  57216. source: "./media/characters/draco/back.svg",
  57217. extra: 1332/1250,
  57218. bottom: 43/1375
  57219. }
  57220. },
  57221. dick: {
  57222. height: math.unit(7.5, "feet"),
  57223. name: "Dick",
  57224. image: {
  57225. source: "./media/characters/draco/dick.svg"
  57226. }
  57227. },
  57228. },
  57229. [
  57230. {
  57231. name: "Normal",
  57232. height: math.unit(18, "feet"),
  57233. default: true
  57234. },
  57235. ]
  57236. ))
  57237. characterMakers.push(() => makeCharacter(
  57238. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57239. {
  57240. front: {
  57241. height: math.unit(3.2, "meters"),
  57242. name: "Front",
  57243. image: {
  57244. source: "./media/characters/harriett/front.svg",
  57245. extra: 1966/1915,
  57246. bottom: 9/1975
  57247. }
  57248. },
  57249. },
  57250. [
  57251. {
  57252. name: "Normal",
  57253. height: math.unit(3.2, "meters"),
  57254. default: true
  57255. },
  57256. ]
  57257. ))
  57258. characterMakers.push(() => makeCharacter(
  57259. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57260. {
  57261. sitting: {
  57262. height: math.unit(0.8, "meter"),
  57263. name: "Sitting",
  57264. image: {
  57265. source: "./media/characters/serpentus/sitting.svg",
  57266. extra: 293/290,
  57267. bottom: 140/433
  57268. }
  57269. },
  57270. },
  57271. [
  57272. {
  57273. name: "Normal",
  57274. height: math.unit(0.8, "meter"),
  57275. default: true
  57276. },
  57277. ]
  57278. ))
  57279. //characters
  57280. function makeCharacters() {
  57281. const results = [];
  57282. characterMakers.forEach(character => {
  57283. results.push(character());
  57284. });
  57285. return results;
  57286. }