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

58992 行
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: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. }
  2210. //species
  2211. function getSpeciesInfo(speciesList) {
  2212. let result = new Set();
  2213. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2214. result.add(entry)
  2215. });
  2216. return Array.from(result);
  2217. };
  2218. function getSpeciesInfoHelper(species) {
  2219. if (!speciesData[species]) {
  2220. console.warn(species + " doesn't exist");
  2221. return [];
  2222. }
  2223. if (speciesData[species].parents) {
  2224. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2225. } else {
  2226. return [species];
  2227. }
  2228. }
  2229. characterMakers.push(() => makeCharacter(
  2230. {
  2231. name: "Fen",
  2232. species: ["crux"],
  2233. description: {
  2234. title: "Bio",
  2235. text: "Very furry. Sheds on everything."
  2236. },
  2237. tags: [
  2238. "anthro",
  2239. "goo"
  2240. ]
  2241. },
  2242. {
  2243. front: {
  2244. height: math.unit(12, "feet"),
  2245. weight: math.unit(2400, "lb"),
  2246. preyCapacity: math.unit(1, "people"),
  2247. name: "Front",
  2248. image: {
  2249. source: "./media/characters/fen/front.svg",
  2250. extra: 1804/1562,
  2251. bottom: 205/2009
  2252. },
  2253. extraAttributes: {
  2254. pawSize: {
  2255. name: "Paw Size",
  2256. power: 2,
  2257. type: "area",
  2258. base: math.unit(0.35, "m^2")
  2259. }
  2260. }
  2261. },
  2262. diving: {
  2263. height: math.unit(4.9, "meters"),
  2264. weight: math.unit(2400, "lb"),
  2265. name: "Diving",
  2266. image: {
  2267. source: "./media/characters/fen/diving.svg"
  2268. }
  2269. },
  2270. sleeby: {
  2271. height: math.unit(3.45, "meters"),
  2272. weight: math.unit(2400, "lb"),
  2273. name: "Sleeby",
  2274. image: {
  2275. source: "./media/characters/fen/sleeby.svg"
  2276. }
  2277. },
  2278. goo: {
  2279. height: math.unit(12, "feet"),
  2280. weight: math.unit(3600, "lb"),
  2281. volume: math.unit(1000, "liters"),
  2282. preyCapacity: math.unit(6, "people"),
  2283. name: "Goo",
  2284. image: {
  2285. source: "./media/characters/fen/goo.svg",
  2286. extra: 1307/1071,
  2287. bottom: 134/1441
  2288. }
  2289. },
  2290. horror: {
  2291. height: math.unit(13.6, "feet"),
  2292. weight: math.unit(2400, "lb"),
  2293. preyCapacity: math.unit(1, "people"),
  2294. name: "Horror",
  2295. image: {
  2296. source: "./media/characters/fen/horror.svg",
  2297. extra: 893/797,
  2298. bottom: 0/893
  2299. }
  2300. },
  2301. gooNsfw: {
  2302. height: math.unit(12, "feet"),
  2303. weight: math.unit(3750, "lb"),
  2304. volume: math.unit(1000, "liters"),
  2305. preyCapacity: math.unit(6, "people"),
  2306. name: "Goo (NSFW)",
  2307. image: {
  2308. source: "./media/characters/fen/goo-nsfw.svg",
  2309. extra: 1875/1734,
  2310. bottom: 122/1997
  2311. }
  2312. },
  2313. maw: {
  2314. height: math.unit(5.03, "feet"),
  2315. name: "Maw",
  2316. image: {
  2317. source: "./media/characters/fen/maw.svg"
  2318. }
  2319. },
  2320. gooCeiling: {
  2321. height: math.unit(6.6, "feet"),
  2322. weight: math.unit(3000, "lb"),
  2323. volume: math.unit(1000, "liters"),
  2324. preyCapacity: math.unit(6, "people"),
  2325. name: "Maw (Goo)",
  2326. image: {
  2327. source: "./media/characters/fen/goo-maw.svg"
  2328. }
  2329. },
  2330. paw: {
  2331. height: math.unit(3.77, "feet"),
  2332. name: "Paw",
  2333. image: {
  2334. source: "./media/characters/fen/paw.svg"
  2335. },
  2336. extraAttributes: {
  2337. "toeSize": {
  2338. name: "Toe Size",
  2339. power: 2,
  2340. type: "area",
  2341. base: math.unit(0.02875, "m^2")
  2342. },
  2343. "pawSize": {
  2344. name: "Paw Size",
  2345. power: 2,
  2346. type: "area",
  2347. base: math.unit(0.378, "m^2")
  2348. },
  2349. }
  2350. },
  2351. tail: {
  2352. height: math.unit(12.1, "feet"),
  2353. name: "Tail",
  2354. image: {
  2355. source: "./media/characters/fen/tail.svg"
  2356. }
  2357. },
  2358. tailFull: {
  2359. height: math.unit(12.1, "feet"),
  2360. name: "Full Tail",
  2361. image: {
  2362. source: "./media/characters/fen/tail-full.svg"
  2363. }
  2364. },
  2365. back: {
  2366. height: math.unit(12, "feet"),
  2367. weight: math.unit(2400, "lb"),
  2368. name: "Back",
  2369. image: {
  2370. source: "./media/characters/fen/back.svg",
  2371. },
  2372. info: {
  2373. description: {
  2374. mode: "append",
  2375. text: "\n\nHe is not currently looking at you."
  2376. }
  2377. }
  2378. },
  2379. full: {
  2380. height: math.unit(1.85, "meter"),
  2381. weight: math.unit(3200, "lb"),
  2382. name: "Full",
  2383. image: {
  2384. source: "./media/characters/fen/full.svg",
  2385. extra: 1133/859,
  2386. bottom: 145/1278
  2387. },
  2388. info: {
  2389. description: {
  2390. mode: "append",
  2391. text: "\n\nMunch."
  2392. }
  2393. }
  2394. },
  2395. gooLounging: {
  2396. height: math.unit(4.53, "feet"),
  2397. weight: math.unit(3000, "lb"),
  2398. preyCapacity: math.unit(6, "people"),
  2399. name: "Goo (Lounging)",
  2400. image: {
  2401. source: "./media/characters/fen/goo-lounging.svg",
  2402. bottom: 116 / 613
  2403. }
  2404. },
  2405. lounging: {
  2406. height: math.unit(10.52, "feet"),
  2407. weight: math.unit(2400, "lb"),
  2408. name: "Lounging",
  2409. image: {
  2410. source: "./media/characters/fen/lounging.svg"
  2411. }
  2412. },
  2413. },
  2414. [
  2415. {
  2416. name: "Small",
  2417. height: math.unit(2.2428, "meter")
  2418. },
  2419. {
  2420. name: "Normal",
  2421. height: math.unit(12, "feet"),
  2422. default: true,
  2423. },
  2424. {
  2425. name: "Big",
  2426. height: math.unit(20, "feet")
  2427. },
  2428. {
  2429. name: "Minimacro",
  2430. height: math.unit(40, "feet"),
  2431. info: {
  2432. description: {
  2433. mode: "append",
  2434. text: "\n\nTOO DAMN BIG"
  2435. }
  2436. }
  2437. },
  2438. {
  2439. name: "Macro",
  2440. height: math.unit(100, "feet"),
  2441. info: {
  2442. description: {
  2443. mode: "append",
  2444. text: "\n\nTOO DAMN BIG"
  2445. }
  2446. }
  2447. },
  2448. {
  2449. name: "Megamacro",
  2450. height: math.unit(2, "miles")
  2451. },
  2452. {
  2453. name: "Gigamacro",
  2454. height: math.unit(10, "earths")
  2455. },
  2456. ]
  2457. ))
  2458. characterMakers.push(() => makeCharacter(
  2459. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2460. {
  2461. front: {
  2462. height: math.unit(183, "cm"),
  2463. weight: math.unit(80, "kg"),
  2464. name: "Front",
  2465. image: {
  2466. source: "./media/characters/sofia-fluttertail/front.svg",
  2467. bottom: 0.01,
  2468. extra: 2154 / 2081
  2469. }
  2470. },
  2471. frontAlt: {
  2472. height: math.unit(183, "cm"),
  2473. weight: math.unit(80, "kg"),
  2474. name: "Front (alt)",
  2475. image: {
  2476. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2477. }
  2478. },
  2479. back: {
  2480. height: math.unit(183, "cm"),
  2481. weight: math.unit(80, "kg"),
  2482. name: "Back",
  2483. image: {
  2484. source: "./media/characters/sofia-fluttertail/back.svg"
  2485. }
  2486. },
  2487. kneeling: {
  2488. height: math.unit(125, "cm"),
  2489. weight: math.unit(80, "kg"),
  2490. name: "Kneeling",
  2491. image: {
  2492. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2493. extra: 1033 / 977,
  2494. bottom: 23.7 / 1057
  2495. }
  2496. },
  2497. maw: {
  2498. height: math.unit(183 / 5, "cm"),
  2499. name: "Maw",
  2500. image: {
  2501. source: "./media/characters/sofia-fluttertail/maw.svg"
  2502. }
  2503. },
  2504. mawcloseup: {
  2505. height: math.unit(183 / 5 * 0.41, "cm"),
  2506. name: "Maw (Closeup)",
  2507. image: {
  2508. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2509. }
  2510. },
  2511. paws: {
  2512. height: math.unit(1.17, "feet"),
  2513. name: "Paws",
  2514. image: {
  2515. source: "./media/characters/sofia-fluttertail/paws.svg",
  2516. extra: 851 / 851,
  2517. bottom: 17 / 868
  2518. }
  2519. },
  2520. },
  2521. [
  2522. {
  2523. name: "Normal",
  2524. height: math.unit(1.83, "meter")
  2525. },
  2526. {
  2527. name: "Size Thief",
  2528. height: math.unit(18, "feet")
  2529. },
  2530. {
  2531. name: "50 Foot Collie",
  2532. height: math.unit(50, "feet")
  2533. },
  2534. {
  2535. name: "Macro",
  2536. height: math.unit(96, "feet"),
  2537. default: true
  2538. },
  2539. {
  2540. name: "Megamerger",
  2541. height: math.unit(650, "feet")
  2542. },
  2543. ]
  2544. ))
  2545. characterMakers.push(() => makeCharacter(
  2546. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2547. {
  2548. front: {
  2549. height: math.unit(7, "feet"),
  2550. weight: math.unit(100, "kg"),
  2551. name: "Front",
  2552. image: {
  2553. source: "./media/characters/march/front.svg",
  2554. extra: 1992/1851,
  2555. bottom: 39/2031
  2556. }
  2557. },
  2558. foot: {
  2559. height: math.unit(0.9, "feet"),
  2560. name: "Foot",
  2561. image: {
  2562. source: "./media/characters/march/foot.svg"
  2563. }
  2564. },
  2565. },
  2566. [
  2567. {
  2568. name: "Normal",
  2569. height: math.unit(7.9, "feet")
  2570. },
  2571. {
  2572. name: "Macro",
  2573. height: math.unit(220, "meters")
  2574. },
  2575. {
  2576. name: "Megamacro",
  2577. height: math.unit(2.98, "km"),
  2578. default: true
  2579. },
  2580. {
  2581. name: "Gigamacro",
  2582. height: math.unit(15963, "km")
  2583. },
  2584. {
  2585. name: "Teramacro",
  2586. height: math.unit(2980000000, "km")
  2587. },
  2588. {
  2589. name: "Examacro",
  2590. height: math.unit(250, "parsecs")
  2591. },
  2592. ]
  2593. ))
  2594. characterMakers.push(() => makeCharacter(
  2595. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2596. {
  2597. front: {
  2598. height: math.unit(6, "feet"),
  2599. weight: math.unit(60, "kg"),
  2600. name: "Front",
  2601. image: {
  2602. source: "./media/characters/noir/front.svg",
  2603. extra: 1,
  2604. bottom: 0.032
  2605. }
  2606. },
  2607. },
  2608. [
  2609. {
  2610. name: "Normal",
  2611. height: math.unit(6.6, "feet")
  2612. },
  2613. {
  2614. name: "Macro",
  2615. height: math.unit(500, "feet")
  2616. },
  2617. {
  2618. name: "Megamacro",
  2619. height: math.unit(2.5, "km"),
  2620. default: true
  2621. },
  2622. {
  2623. name: "Gigamacro",
  2624. height: math.unit(22500, "km")
  2625. },
  2626. {
  2627. name: "Teramacro",
  2628. height: math.unit(2500000000, "km")
  2629. },
  2630. {
  2631. name: "Examacro",
  2632. height: math.unit(200, "parsecs")
  2633. },
  2634. ]
  2635. ))
  2636. characterMakers.push(() => makeCharacter(
  2637. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2638. {
  2639. front: {
  2640. height: math.unit(7, "feet"),
  2641. weight: math.unit(100, "kg"),
  2642. name: "Front",
  2643. image: {
  2644. source: "./media/characters/okuri/front.svg",
  2645. extra: 739/665,
  2646. bottom: 39/778
  2647. }
  2648. },
  2649. back: {
  2650. height: math.unit(7, "feet"),
  2651. weight: math.unit(100, "kg"),
  2652. name: "Back",
  2653. image: {
  2654. source: "./media/characters/okuri/back.svg",
  2655. extra: 734/653,
  2656. bottom: 13/747
  2657. }
  2658. },
  2659. sitting: {
  2660. height: math.unit(2.95, "feet"),
  2661. weight: math.unit(100, "kg"),
  2662. name: "Sitting",
  2663. image: {
  2664. source: "./media/characters/okuri/sitting.svg",
  2665. extra: 370/318,
  2666. bottom: 99/469
  2667. }
  2668. },
  2669. },
  2670. [
  2671. {
  2672. name: "Smallest",
  2673. height: math.unit(5 + 2/12, "feet")
  2674. },
  2675. {
  2676. name: "Smaller",
  2677. height: math.unit(300, "feet")
  2678. },
  2679. {
  2680. name: "Small",
  2681. height: math.unit(1000, "feet")
  2682. },
  2683. {
  2684. name: "Macro",
  2685. height: math.unit(1, "mile")
  2686. },
  2687. {
  2688. name: "Mega Macro (Small)",
  2689. height: math.unit(20, "km")
  2690. },
  2691. {
  2692. name: "Mega Macro (Large)",
  2693. height: math.unit(600, "km")
  2694. },
  2695. {
  2696. name: "Giga Macro",
  2697. height: math.unit(10000, "km")
  2698. },
  2699. {
  2700. name: "Normal",
  2701. height: math.unit(577560, "km"),
  2702. default: true
  2703. },
  2704. {
  2705. name: "Large",
  2706. height: math.unit(4, "galaxies")
  2707. },
  2708. {
  2709. name: "Largest",
  2710. height: math.unit(15, "multiverses")
  2711. },
  2712. ]
  2713. ))
  2714. characterMakers.push(() => makeCharacter(
  2715. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2716. {
  2717. front: {
  2718. height: math.unit(7, "feet"),
  2719. weight: math.unit(100, "kg"),
  2720. name: "Front",
  2721. image: {
  2722. source: "./media/characters/manny/front.svg",
  2723. extra: 1,
  2724. bottom: 0.06
  2725. }
  2726. },
  2727. back: {
  2728. height: math.unit(7, "feet"),
  2729. weight: math.unit(100, "kg"),
  2730. name: "Back",
  2731. image: {
  2732. source: "./media/characters/manny/back.svg",
  2733. extra: 1,
  2734. bottom: 0.014
  2735. }
  2736. },
  2737. },
  2738. [
  2739. {
  2740. name: "Normal",
  2741. height: math.unit(7, "feet"),
  2742. },
  2743. {
  2744. name: "Macro",
  2745. height: math.unit(78, "feet"),
  2746. default: true
  2747. },
  2748. {
  2749. name: "Macro+",
  2750. height: math.unit(300, "meters")
  2751. },
  2752. {
  2753. name: "Macro++",
  2754. height: math.unit(2400, "meters")
  2755. },
  2756. {
  2757. name: "Megamacro",
  2758. height: math.unit(5167, "meters")
  2759. },
  2760. {
  2761. name: "Gigamacro",
  2762. height: math.unit(41769, "miles")
  2763. },
  2764. ]
  2765. ))
  2766. characterMakers.push(() => makeCharacter(
  2767. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2768. {
  2769. front: {
  2770. height: math.unit(7, "feet"),
  2771. weight: math.unit(100, "kg"),
  2772. name: "Front",
  2773. image: {
  2774. source: "./media/characters/adake/front-1.svg"
  2775. }
  2776. },
  2777. frontAlt: {
  2778. height: math.unit(7, "feet"),
  2779. weight: math.unit(100, "kg"),
  2780. name: "Front (Alt)",
  2781. image: {
  2782. source: "./media/characters/adake/front-2.svg",
  2783. extra: 1,
  2784. bottom: 0.01
  2785. }
  2786. },
  2787. back: {
  2788. height: math.unit(7, "feet"),
  2789. weight: math.unit(100, "kg"),
  2790. name: "Back",
  2791. image: {
  2792. source: "./media/characters/adake/back.svg",
  2793. }
  2794. },
  2795. kneel: {
  2796. height: math.unit(5.385, "feet"),
  2797. weight: math.unit(100, "kg"),
  2798. name: "Kneeling",
  2799. image: {
  2800. source: "./media/characters/adake/kneel.svg",
  2801. bottom: 0.052
  2802. }
  2803. },
  2804. },
  2805. [
  2806. {
  2807. name: "Normal",
  2808. height: math.unit(7, "feet"),
  2809. },
  2810. {
  2811. name: "Macro",
  2812. height: math.unit(78, "feet"),
  2813. default: true
  2814. },
  2815. {
  2816. name: "Macro+",
  2817. height: math.unit(300, "meters")
  2818. },
  2819. {
  2820. name: "Macro++",
  2821. height: math.unit(2400, "meters")
  2822. },
  2823. {
  2824. name: "Megamacro",
  2825. height: math.unit(5167, "meters")
  2826. },
  2827. {
  2828. name: "Gigamacro",
  2829. height: math.unit(41769, "miles")
  2830. },
  2831. ]
  2832. ))
  2833. characterMakers.push(() => makeCharacter(
  2834. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2835. {
  2836. front: {
  2837. height: math.unit(1.65, "meters"),
  2838. weight: math.unit(50, "kg"),
  2839. name: "Front",
  2840. image: {
  2841. source: "./media/characters/elijah/front.svg",
  2842. extra: 858 / 830,
  2843. bottom: 95.5 / 953.8559
  2844. }
  2845. },
  2846. back: {
  2847. height: math.unit(1.65, "meters"),
  2848. weight: math.unit(50, "kg"),
  2849. name: "Back",
  2850. image: {
  2851. source: "./media/characters/elijah/back.svg",
  2852. extra: 895 / 850,
  2853. bottom: 5.3 / 897.956
  2854. }
  2855. },
  2856. frontNsfw: {
  2857. height: math.unit(1.65, "meters"),
  2858. weight: math.unit(50, "kg"),
  2859. name: "Front (NSFW)",
  2860. image: {
  2861. source: "./media/characters/elijah/front-nsfw.svg",
  2862. extra: 858 / 830,
  2863. bottom: 95.5 / 953.8559
  2864. }
  2865. },
  2866. backNsfw: {
  2867. height: math.unit(1.65, "meters"),
  2868. weight: math.unit(50, "kg"),
  2869. name: "Back (NSFW)",
  2870. image: {
  2871. source: "./media/characters/elijah/back-nsfw.svg",
  2872. extra: 895 / 850,
  2873. bottom: 5.3 / 897.956
  2874. }
  2875. },
  2876. dick: {
  2877. height: math.unit(1, "feet"),
  2878. name: "Dick",
  2879. image: {
  2880. source: "./media/characters/elijah/dick.svg"
  2881. }
  2882. },
  2883. beakOpen: {
  2884. height: math.unit(1.25, "feet"),
  2885. name: "Beak (Open)",
  2886. image: {
  2887. source: "./media/characters/elijah/beak-open.svg"
  2888. }
  2889. },
  2890. beakShut: {
  2891. height: math.unit(1.25, "feet"),
  2892. name: "Beak (Shut)",
  2893. image: {
  2894. source: "./media/characters/elijah/beak-shut.svg"
  2895. }
  2896. },
  2897. footFlexing: {
  2898. height: math.unit(1.61, "feet"),
  2899. name: "Foot (Flexing)",
  2900. image: {
  2901. source: "./media/characters/elijah/foot-flexing.svg"
  2902. }
  2903. },
  2904. footStepping: {
  2905. height: math.unit(1.44, "feet"),
  2906. name: "Foot (Stepping)",
  2907. image: {
  2908. source: "./media/characters/elijah/foot-stepping.svg"
  2909. }
  2910. },
  2911. plantigradeLeg: {
  2912. height: math.unit(2.34, "feet"),
  2913. name: "Plantigrade Leg",
  2914. image: {
  2915. source: "./media/characters/elijah/plantigrade-leg.svg"
  2916. }
  2917. },
  2918. plantigradeFootLeft: {
  2919. height: math.unit(0.9, "feet"),
  2920. name: "Plantigrade Foot (Left)",
  2921. image: {
  2922. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2923. }
  2924. },
  2925. plantigradeFootRight: {
  2926. height: math.unit(0.9, "feet"),
  2927. name: "Plantigrade Foot (Right)",
  2928. image: {
  2929. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2930. }
  2931. },
  2932. },
  2933. [
  2934. {
  2935. name: "Normal",
  2936. height: math.unit(1.65, "meters")
  2937. },
  2938. {
  2939. name: "Macro",
  2940. height: math.unit(55, "meters"),
  2941. default: true
  2942. },
  2943. {
  2944. name: "Macro+",
  2945. height: math.unit(105, "meters")
  2946. },
  2947. ]
  2948. ))
  2949. characterMakers.push(() => makeCharacter(
  2950. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2951. {
  2952. front: {
  2953. height: math.unit(7 + 2/12, "feet"),
  2954. weight: math.unit(320, "kg"),
  2955. preyCapacity: math.unit(0.276549935, "people"),
  2956. name: "Front",
  2957. image: {
  2958. source: "./media/characters/rai/front.svg",
  2959. extra: 1802/1696,
  2960. bottom: 68/1870
  2961. },
  2962. form: "anthro",
  2963. default: true
  2964. },
  2965. frontDressed: {
  2966. height: math.unit(7 + 2/12, "feet"),
  2967. weight: math.unit(320, "kg"),
  2968. preyCapacity: math.unit(0.276549935, "people"),
  2969. name: "Front (Dressed)",
  2970. image: {
  2971. source: "./media/characters/rai/front-dressed.svg",
  2972. extra: 1802/1696,
  2973. bottom: 68/1870
  2974. },
  2975. form: "anthro"
  2976. },
  2977. side: {
  2978. height: math.unit(7 + 2/12, "feet"),
  2979. weight: math.unit(320, "kg"),
  2980. preyCapacity: math.unit(0.276549935, "people"),
  2981. name: "Side",
  2982. image: {
  2983. source: "./media/characters/rai/side.svg",
  2984. extra: 1789/1710,
  2985. bottom: 115/1904
  2986. },
  2987. form: "anthro"
  2988. },
  2989. back: {
  2990. height: math.unit(7 + 2/12, "feet"),
  2991. weight: math.unit(320, "kg"),
  2992. preyCapacity: math.unit(0.276549935, "people"),
  2993. name: "Back",
  2994. image: {
  2995. source: "./media/characters/rai/back.svg",
  2996. extra: 1770/1707,
  2997. bottom: 28/1798
  2998. },
  2999. form: "anthro"
  3000. },
  3001. feral: {
  3002. height: math.unit(9.5, "feet"),
  3003. weight: math.unit(640, "kg"),
  3004. preyCapacity: math.unit(4, "people"),
  3005. name: "Feral",
  3006. image: {
  3007. source: "./media/characters/rai/feral.svg",
  3008. extra: 945/553,
  3009. bottom: 176/1121
  3010. },
  3011. form: "feral",
  3012. default: true
  3013. },
  3014. dragon: {
  3015. height: math.unit(23, "feet"),
  3016. weight: math.unit(50000, "lb"),
  3017. name: "Dragon",
  3018. image: {
  3019. source: "./media/characters/rai/dragon.svg",
  3020. extra: 2498 / 2030,
  3021. bottom: 85.2 / 2584
  3022. },
  3023. form: "dragon",
  3024. default: true
  3025. },
  3026. maw: {
  3027. height: math.unit(1.69, "feet"),
  3028. name: "Maw",
  3029. image: {
  3030. source: "./media/characters/rai/maw.svg"
  3031. },
  3032. form: "anthro"
  3033. },
  3034. },
  3035. [
  3036. {
  3037. name: "Normal",
  3038. height: math.unit(7 + 2/12, "feet"),
  3039. form: "anthro"
  3040. },
  3041. {
  3042. name: "Big",
  3043. height: math.unit(11, "feet"),
  3044. form: "anthro"
  3045. },
  3046. {
  3047. name: "Minimacro",
  3048. height: math.unit(77, "feet"),
  3049. form: "anthro"
  3050. },
  3051. {
  3052. name: "Macro",
  3053. height: math.unit(302, "feet"),
  3054. default: true,
  3055. form: "anthro"
  3056. },
  3057. {
  3058. name: "Normal",
  3059. height: math.unit(9.5, "feet"),
  3060. form: "feral",
  3061. default: true
  3062. },
  3063. {
  3064. name: "Normal",
  3065. height: math.unit(23, "feet"),
  3066. form: "dragon",
  3067. default: true
  3068. }
  3069. ],
  3070. {
  3071. "anthro": {
  3072. name: "Anthro",
  3073. default: true
  3074. },
  3075. "feral": {
  3076. name: "Feral",
  3077. },
  3078. "dragon": {
  3079. name: "Dragon",
  3080. },
  3081. }
  3082. ))
  3083. characterMakers.push(() => makeCharacter(
  3084. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3085. {
  3086. frontDressed: {
  3087. height: math.unit(216, "feet"),
  3088. weight: math.unit(7000000, "lb"),
  3089. preyCapacity: math.unit(1321, "people"),
  3090. name: "Front (Dressed)",
  3091. image: {
  3092. source: "./media/characters/jazzy/front-dressed.svg",
  3093. extra: 2738 / 2651,
  3094. bottom: 41.8 / 2786
  3095. }
  3096. },
  3097. backDressed: {
  3098. height: math.unit(216, "feet"),
  3099. weight: math.unit(7000000, "lb"),
  3100. preyCapacity: math.unit(1321, "people"),
  3101. name: "Back (Dressed)",
  3102. image: {
  3103. source: "./media/characters/jazzy/back-dressed.svg",
  3104. extra: 2775 / 2673,
  3105. bottom: 36.8 / 2817
  3106. }
  3107. },
  3108. front: {
  3109. height: math.unit(216, "feet"),
  3110. weight: math.unit(7000000, "lb"),
  3111. preyCapacity: math.unit(1321, "people"),
  3112. name: "Front",
  3113. image: {
  3114. source: "./media/characters/jazzy/front.svg",
  3115. extra: 2738 / 2651,
  3116. bottom: 41.8 / 2786
  3117. }
  3118. },
  3119. back: {
  3120. height: math.unit(216, "feet"),
  3121. weight: math.unit(7000000, "lb"),
  3122. preyCapacity: math.unit(1321, "people"),
  3123. name: "Back",
  3124. image: {
  3125. source: "./media/characters/jazzy/back.svg",
  3126. extra: 2775 / 2673,
  3127. bottom: 36.8 / 2817
  3128. }
  3129. },
  3130. maw: {
  3131. height: math.unit(20, "feet"),
  3132. name: "Maw",
  3133. image: {
  3134. source: "./media/characters/jazzy/maw.svg"
  3135. }
  3136. },
  3137. paws: {
  3138. height: math.unit(27.5, "feet"),
  3139. name: "Paws",
  3140. image: {
  3141. source: "./media/characters/jazzy/paws.svg"
  3142. }
  3143. },
  3144. eye: {
  3145. height: math.unit(4.4, "feet"),
  3146. name: "Eye",
  3147. image: {
  3148. source: "./media/characters/jazzy/eye.svg"
  3149. }
  3150. },
  3151. droneOffense: {
  3152. height: math.unit(9.5, "inches"),
  3153. name: "Drone (Offense)",
  3154. image: {
  3155. source: "./media/characters/jazzy/drone-offense.svg"
  3156. }
  3157. },
  3158. droneRecon: {
  3159. height: math.unit(9.5, "inches"),
  3160. name: "Drone (Recon)",
  3161. image: {
  3162. source: "./media/characters/jazzy/drone-recon.svg"
  3163. }
  3164. },
  3165. droneDefense: {
  3166. height: math.unit(9.5, "inches"),
  3167. name: "Drone (Defense)",
  3168. image: {
  3169. source: "./media/characters/jazzy/drone-defense.svg"
  3170. }
  3171. },
  3172. },
  3173. [
  3174. {
  3175. name: "Macro",
  3176. height: math.unit(216, "feet"),
  3177. default: true
  3178. },
  3179. ]
  3180. ))
  3181. characterMakers.push(() => makeCharacter(
  3182. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3183. {
  3184. front: {
  3185. height: math.unit(9 + 6/12, "feet"),
  3186. weight: math.unit(700, "lb"),
  3187. name: "Front",
  3188. image: {
  3189. source: "./media/characters/flamm/front.svg",
  3190. extra: 1736/1596,
  3191. bottom: 93/1829
  3192. }
  3193. },
  3194. buff: {
  3195. height: math.unit(9 + 6/12, "feet"),
  3196. weight: math.unit(950, "lb"),
  3197. name: "Buff",
  3198. image: {
  3199. source: "./media/characters/flamm/buff.svg",
  3200. extra: 3018/2874,
  3201. bottom: 221/3239
  3202. }
  3203. },
  3204. },
  3205. [
  3206. {
  3207. name: "Normal",
  3208. height: math.unit(9.5, "feet")
  3209. },
  3210. {
  3211. name: "Macro",
  3212. height: math.unit(200, "feet"),
  3213. default: true
  3214. },
  3215. ]
  3216. ))
  3217. characterMakers.push(() => makeCharacter(
  3218. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3219. {
  3220. front: {
  3221. height: math.unit(5 + 3/12, "feet"),
  3222. weight: math.unit(60, "kg"),
  3223. name: "Front",
  3224. image: {
  3225. source: "./media/characters/zephiro/front.svg",
  3226. extra: 1873/1761,
  3227. bottom: 147/2020
  3228. }
  3229. },
  3230. side: {
  3231. height: math.unit(5 + 3/12, "feet"),
  3232. weight: math.unit(60, "kg"),
  3233. name: "Side",
  3234. image: {
  3235. source: "./media/characters/zephiro/side.svg",
  3236. extra: 1929/1827,
  3237. bottom: 65/1994
  3238. }
  3239. },
  3240. back: {
  3241. height: math.unit(5 + 3/12, "feet"),
  3242. weight: math.unit(60, "kg"),
  3243. name: "Back",
  3244. image: {
  3245. source: "./media/characters/zephiro/back.svg",
  3246. extra: 1926/1816,
  3247. bottom: 41/1967
  3248. }
  3249. },
  3250. hand: {
  3251. height: math.unit(0.68, "feet"),
  3252. name: "Hand",
  3253. image: {
  3254. source: "./media/characters/zephiro/hand.svg"
  3255. }
  3256. },
  3257. paw: {
  3258. height: math.unit(1, "feet"),
  3259. name: "Paw",
  3260. image: {
  3261. source: "./media/characters/zephiro/paw.svg"
  3262. }
  3263. },
  3264. beans: {
  3265. height: math.unit(0.93, "feet"),
  3266. name: "Beans",
  3267. image: {
  3268. source: "./media/characters/zephiro/beans.svg"
  3269. }
  3270. },
  3271. },
  3272. [
  3273. {
  3274. name: "Micro",
  3275. height: math.unit(3, "inches")
  3276. },
  3277. {
  3278. name: "Normal",
  3279. height: math.unit(5 + 3 / 12, "feet"),
  3280. default: true
  3281. },
  3282. {
  3283. name: "Macro",
  3284. height: math.unit(118, "feet")
  3285. },
  3286. ]
  3287. ))
  3288. characterMakers.push(() => makeCharacter(
  3289. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3290. {
  3291. front: {
  3292. height: math.unit(5, "feet"),
  3293. weight: math.unit(90, "kg"),
  3294. preyCapacity: math.unit(14, "people"),
  3295. name: "Front",
  3296. image: {
  3297. source: "./media/characters/fory/front.svg",
  3298. extra: 2862 / 2674,
  3299. bottom: 180 / 3043.8
  3300. },
  3301. form: "weaselbun",
  3302. default: true,
  3303. extraAttributes: {
  3304. "pawSize": {
  3305. name: "Paw Size",
  3306. power: 2,
  3307. type: "area",
  3308. base: math.unit(0.1596, "m^2")
  3309. },
  3310. "pawLength": {
  3311. name: "Paw Length",
  3312. power: 1,
  3313. type: "length",
  3314. base: math.unit(0.7, "m")
  3315. }
  3316. }
  3317. },
  3318. back: {
  3319. height: math.unit(5, "feet"),
  3320. weight: math.unit(90, "kg"),
  3321. preyCapacity: math.unit(14, "people"),
  3322. name: "Back",
  3323. image: {
  3324. source: "./media/characters/fory/back.svg",
  3325. extra: 1790/1672,
  3326. bottom: 84/1874
  3327. },
  3328. form: "weaselbun",
  3329. extraAttributes: {
  3330. "pawSize": {
  3331. name: "Paw Size",
  3332. power: 2,
  3333. type: "area",
  3334. base: math.unit(0.1596, "m^2")
  3335. },
  3336. "pawLength": {
  3337. name: "Paw Length",
  3338. power: 1,
  3339. type: "length",
  3340. base: math.unit(0.7, "m")
  3341. }
  3342. }
  3343. },
  3344. paw: {
  3345. height: math.unit(2.14, "feet"),
  3346. name: "Paw",
  3347. image: {
  3348. source: "./media/characters/fory/paw.svg"
  3349. },
  3350. form: "weaselbun",
  3351. extraAttributes: {
  3352. "pawSize": {
  3353. name: "Paw Size",
  3354. power: 2,
  3355. type: "area",
  3356. base: math.unit(0.1596, "m^2")
  3357. },
  3358. "pawLength": {
  3359. name: "Paw Length",
  3360. power: 1,
  3361. type: "length",
  3362. base: math.unit(0.48, "m")
  3363. }
  3364. }
  3365. },
  3366. bunBack: {
  3367. height: math.unit(3, "feet"),
  3368. weight: math.unit(20, "kg"),
  3369. preyCapacity: math.unit(3, "people"),
  3370. name: "Back",
  3371. image: {
  3372. source: "./media/characters/fory/bun-back.svg",
  3373. extra: 1749/1564,
  3374. bottom: 246/1995
  3375. },
  3376. form: "bun",
  3377. default: true,
  3378. extraAttributes: {
  3379. "pawSize": {
  3380. name: "Paw Size",
  3381. power: 2,
  3382. type: "area",
  3383. base: math.unit(0.072, "m^2")
  3384. },
  3385. "pawLength": {
  3386. name: "Paw Length",
  3387. power: 1,
  3388. type: "length",
  3389. base: math.unit(0.45, "m")
  3390. }
  3391. }
  3392. },
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(5, "feet"),
  3398. form: "weaselbun"
  3399. },
  3400. {
  3401. name: "Macro",
  3402. height: math.unit(50, "feet"),
  3403. default: true,
  3404. form: "weaselbun"
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(10, "miles"),
  3409. form: "weaselbun"
  3410. },
  3411. {
  3412. name: "Gigamacro",
  3413. height: math.unit(5, "earths"),
  3414. form: "weaselbun"
  3415. },
  3416. {
  3417. name: "Normal",
  3418. height: math.unit(3, "feet"),
  3419. default: true,
  3420. form: "bun"
  3421. },
  3422. {
  3423. name: "Fun-Size",
  3424. height: math.unit(12, "feet"),
  3425. form: "bun"
  3426. },
  3427. {
  3428. name: "Macro",
  3429. height: math.unit(100, "feet"),
  3430. form: "bun"
  3431. },
  3432. {
  3433. name: "Planetary",
  3434. height: math.unit(3, "earths"),
  3435. form: "bun"
  3436. },
  3437. ],
  3438. {
  3439. "weaselbun": {
  3440. name: "Weaselbun",
  3441. default: true
  3442. },
  3443. "bun": {
  3444. name: "Bun",
  3445. },
  3446. }
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3450. {
  3451. front: {
  3452. height: math.unit(7, "feet"),
  3453. weight: math.unit(90, "kg"),
  3454. name: "Front",
  3455. image: {
  3456. source: "./media/characters/kurrikage/front.svg",
  3457. extra: 1845/1733,
  3458. bottom: 119/1964
  3459. }
  3460. },
  3461. back: {
  3462. height: math.unit(7, "feet"),
  3463. weight: math.unit(90, "kg"),
  3464. name: "Back",
  3465. image: {
  3466. source: "./media/characters/kurrikage/back.svg",
  3467. extra: 1790/1677,
  3468. bottom: 61/1851
  3469. }
  3470. },
  3471. dressed: {
  3472. height: math.unit(7, "feet"),
  3473. weight: math.unit(90, "kg"),
  3474. name: "Dressed",
  3475. image: {
  3476. source: "./media/characters/kurrikage/dressed.svg",
  3477. extra: 1845/1733,
  3478. bottom: 119/1964
  3479. }
  3480. },
  3481. foot: {
  3482. height: math.unit(1.5, "feet"),
  3483. name: "Foot",
  3484. image: {
  3485. source: "./media/characters/kurrikage/foot.svg"
  3486. }
  3487. },
  3488. staff: {
  3489. height: math.unit(6.7, "feet"),
  3490. name: "Staff",
  3491. image: {
  3492. source: "./media/characters/kurrikage/staff.svg"
  3493. }
  3494. },
  3495. peek: {
  3496. height: math.unit(1.05, "feet"),
  3497. name: "Peeking",
  3498. image: {
  3499. source: "./media/characters/kurrikage/peek.svg",
  3500. bottom: 0.08
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(12, "feet"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Big",
  3512. height: math.unit(20, "feet")
  3513. },
  3514. {
  3515. name: "Macro",
  3516. height: math.unit(500, "feet")
  3517. },
  3518. {
  3519. name: "Megamacro",
  3520. height: math.unit(20, "miles")
  3521. },
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(6, "feet"),
  3529. weight: math.unit(75, "kg"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/shingo/front.svg",
  3533. extra: 1900/1825,
  3534. bottom: 82/1982
  3535. }
  3536. },
  3537. side: {
  3538. height: math.unit(6, "feet"),
  3539. weight: math.unit(75, "kg"),
  3540. name: "Side",
  3541. image: {
  3542. source: "./media/characters/shingo/side.svg",
  3543. extra: 1930/1865,
  3544. bottom: 16/1946
  3545. }
  3546. },
  3547. back: {
  3548. height: math.unit(6, "feet"),
  3549. weight: math.unit(75, "kg"),
  3550. name: "Back",
  3551. image: {
  3552. source: "./media/characters/shingo/back.svg",
  3553. extra: 1922/1852,
  3554. bottom: 16/1938
  3555. }
  3556. },
  3557. frontDressed: {
  3558. height: math.unit(6, "feet"),
  3559. weight: math.unit(150, "lb"),
  3560. name: "Front-dressed",
  3561. image: {
  3562. source: "./media/characters/shingo/front-dressed.svg",
  3563. extra: 1900/1825,
  3564. bottom: 82/1982
  3565. }
  3566. },
  3567. paw: {
  3568. height: math.unit(1.29, "feet"),
  3569. name: "Paw",
  3570. image: {
  3571. source: "./media/characters/shingo/paw.svg"
  3572. }
  3573. },
  3574. hand: {
  3575. height: math.unit(1.07, "feet"),
  3576. name: "Hand",
  3577. image: {
  3578. source: "./media/characters/shingo/hand.svg"
  3579. }
  3580. },
  3581. frontAlt: {
  3582. height: math.unit(6, "feet"),
  3583. weight: math.unit(75, "kg"),
  3584. name: "Front (Alt)",
  3585. image: {
  3586. source: "./media/characters/shingo/front-alt.svg",
  3587. extra: 3511 / 3338,
  3588. bottom: 0.005
  3589. }
  3590. },
  3591. frontAlt2: {
  3592. height: math.unit(6, "feet"),
  3593. weight: math.unit(75, "kg"),
  3594. name: "Front (Alt 2)",
  3595. image: {
  3596. source: "./media/characters/shingo/front-alt-2.svg",
  3597. extra: 706/681,
  3598. bottom: 11/717
  3599. }
  3600. },
  3601. pawAlt: {
  3602. height: math.unit(1, "feet"),
  3603. name: "Paw (Alt)",
  3604. image: {
  3605. source: "./media/characters/shingo/paw-alt.svg"
  3606. }
  3607. },
  3608. },
  3609. [
  3610. {
  3611. name: "Micro",
  3612. height: math.unit(4, "inches")
  3613. },
  3614. {
  3615. name: "Normal",
  3616. height: math.unit(6, "feet"),
  3617. default: true
  3618. },
  3619. {
  3620. name: "Macro",
  3621. height: math.unit(108, "feet")
  3622. },
  3623. {
  3624. name: "Macro+",
  3625. height: math.unit(1500, "feet")
  3626. },
  3627. ]
  3628. ))
  3629. characterMakers.push(() => makeCharacter(
  3630. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3631. {
  3632. side: {
  3633. height: math.unit(6, "feet"),
  3634. weight: math.unit(75, "kg"),
  3635. name: "Side",
  3636. image: {
  3637. source: "./media/characters/aigey/side.svg"
  3638. }
  3639. },
  3640. },
  3641. [
  3642. {
  3643. name: "Macro",
  3644. height: math.unit(200, "feet"),
  3645. default: true
  3646. },
  3647. {
  3648. name: "Megamacro",
  3649. height: math.unit(100, "miles")
  3650. },
  3651. ]
  3652. )
  3653. )
  3654. characterMakers.push(() => makeCharacter(
  3655. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3656. {
  3657. front: {
  3658. height: math.unit(5 + 5 / 12, "feet"),
  3659. weight: math.unit(75, "kg"),
  3660. name: "Front",
  3661. image: {
  3662. source: "./media/characters/natasha/front.svg",
  3663. extra: 859 / 824,
  3664. bottom: 23 / 879.6
  3665. }
  3666. },
  3667. frontNsfw: {
  3668. height: math.unit(5 + 5 / 12, "feet"),
  3669. weight: math.unit(75, "kg"),
  3670. name: "Front (NSFW)",
  3671. image: {
  3672. source: "./media/characters/natasha/front-nsfw.svg",
  3673. extra: 859 / 824,
  3674. bottom: 23 / 879.6
  3675. }
  3676. },
  3677. frontErect: {
  3678. height: math.unit(5 + 5 / 12, "feet"),
  3679. weight: math.unit(75, "kg"),
  3680. name: "Front (Erect)",
  3681. image: {
  3682. source: "./media/characters/natasha/front-erect.svg",
  3683. extra: 859 / 824,
  3684. bottom: 23 / 879.6
  3685. }
  3686. },
  3687. back: {
  3688. height: math.unit(5 + 5 / 12, "feet"),
  3689. weight: math.unit(75, "kg"),
  3690. name: "Back",
  3691. image: {
  3692. source: "./media/characters/natasha/back.svg",
  3693. extra: 887.9 / 852.6,
  3694. bottom: 9.7 / 896.4
  3695. }
  3696. },
  3697. backAlt: {
  3698. height: math.unit(5 + 5 / 12, "feet"),
  3699. weight: math.unit(75, "kg"),
  3700. name: "Back (Alt)",
  3701. image: {
  3702. source: "./media/characters/natasha/back-alt.svg",
  3703. extra: 1236.7 / 1192,
  3704. bottom: 22.3 / 1258.2
  3705. }
  3706. },
  3707. dick: {
  3708. height: math.unit(1.772, "feet"),
  3709. name: "Dick",
  3710. image: {
  3711. source: "./media/characters/natasha/dick.svg"
  3712. }
  3713. },
  3714. paw: {
  3715. height: math.unit(0.250, "meters"),
  3716. name: "Paw",
  3717. image: {
  3718. source: "./media/characters/natasha/paw.svg"
  3719. },
  3720. extraAttributes: {
  3721. "toeSize": {
  3722. name: "Toe Size",
  3723. power: 2,
  3724. type: "area",
  3725. base: math.unit(0.0024, "m^2")
  3726. },
  3727. "padSize": {
  3728. name: "Pad Size",
  3729. power: 2,
  3730. type: "area",
  3731. base: math.unit(0.00889, "m^2")
  3732. },
  3733. "pawSize": {
  3734. name: "Paw Size",
  3735. power: 2,
  3736. type: "area",
  3737. base: math.unit(0.023667, "m^2")
  3738. },
  3739. }
  3740. },
  3741. },
  3742. [
  3743. {
  3744. name: "Shortstack",
  3745. height: math.unit(3, "feet"),
  3746. default: true
  3747. },
  3748. {
  3749. name: "Normal",
  3750. height: math.unit(5 + 5 / 12, "feet")
  3751. },
  3752. {
  3753. name: "Large",
  3754. height: math.unit(12, "feet")
  3755. },
  3756. {
  3757. name: "Macro",
  3758. height: math.unit(100, "feet")
  3759. },
  3760. {
  3761. name: "Macro+",
  3762. height: math.unit(260, "feet")
  3763. },
  3764. {
  3765. name: "Macro++",
  3766. height: math.unit(1, "mile")
  3767. },
  3768. ]
  3769. ))
  3770. characterMakers.push(() => makeCharacter(
  3771. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3772. {
  3773. front: {
  3774. height: math.unit(6, "feet"),
  3775. weight: math.unit(75, "kg"),
  3776. name: "Front",
  3777. image: {
  3778. source: "./media/characters/malik/front.svg",
  3779. extra: 1750/1561,
  3780. bottom: 80/1830
  3781. },
  3782. extraAttributes: {
  3783. "toeSize": {
  3784. name: "Toe Size",
  3785. power: 2,
  3786. type: "area",
  3787. base: math.unit(0.0159, "m^2")
  3788. },
  3789. "pawSize": {
  3790. name: "Paw Size",
  3791. power: 2,
  3792. type: "area",
  3793. base: math.unit(0.09834, "m^2")
  3794. },
  3795. }
  3796. },
  3797. side: {
  3798. height: math.unit(6, "feet"),
  3799. weight: math.unit(75, "kg"),
  3800. name: "Side",
  3801. image: {
  3802. source: "./media/characters/malik/side.svg",
  3803. extra: 1802/1685,
  3804. bottom: 42/1844
  3805. },
  3806. extraAttributes: {
  3807. "toeSize": {
  3808. name: "Toe Size",
  3809. power: 2,
  3810. type: "area",
  3811. base: math.unit(0.0159, "m^2")
  3812. },
  3813. "pawSize": {
  3814. name: "Paw Size",
  3815. power: 2,
  3816. type: "area",
  3817. base: math.unit(0.09834, "m^2")
  3818. },
  3819. }
  3820. },
  3821. back: {
  3822. height: math.unit(6, "feet"),
  3823. weight: math.unit(75, "kg"),
  3824. name: "Back",
  3825. image: {
  3826. source: "./media/characters/malik/back.svg",
  3827. extra: 1803/1607,
  3828. bottom: 33/1836
  3829. },
  3830. extraAttributes: {
  3831. "toeSize": {
  3832. name: "Toe Size",
  3833. power: 2,
  3834. type: "area",
  3835. base: math.unit(0.0159, "m^2")
  3836. },
  3837. "pawSize": {
  3838. name: "Paw Size",
  3839. power: 2,
  3840. type: "area",
  3841. base: math.unit(0.09834, "m^2")
  3842. },
  3843. }
  3844. },
  3845. },
  3846. [
  3847. {
  3848. name: "Macro",
  3849. height: math.unit(156, "feet"),
  3850. default: true
  3851. },
  3852. {
  3853. name: "Macro+",
  3854. height: math.unit(1188, "feet")
  3855. },
  3856. ]
  3857. ))
  3858. characterMakers.push(() => makeCharacter(
  3859. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3860. {
  3861. front: {
  3862. height: math.unit(6, "feet"),
  3863. weight: math.unit(75, "kg"),
  3864. name: "Front",
  3865. image: {
  3866. source: "./media/characters/sefer/front.svg",
  3867. extra: 848 / 659,
  3868. bottom: 28.3 / 876.442
  3869. }
  3870. },
  3871. back: {
  3872. height: math.unit(6, "feet"),
  3873. weight: math.unit(75, "kg"),
  3874. name: "Back",
  3875. image: {
  3876. source: "./media/characters/sefer/back.svg",
  3877. extra: 864 / 695,
  3878. bottom: 10 / 871
  3879. }
  3880. },
  3881. frontDressed: {
  3882. height: math.unit(6, "feet"),
  3883. weight: math.unit(75, "kg"),
  3884. name: "Dressed",
  3885. image: {
  3886. source: "./media/characters/sefer/dressed.svg",
  3887. extra: 839 / 653,
  3888. bottom: 37.6 / 878
  3889. }
  3890. },
  3891. },
  3892. [
  3893. {
  3894. name: "Normal",
  3895. height: math.unit(6, "feet"),
  3896. default: true
  3897. },
  3898. {
  3899. name: "Big",
  3900. height: math.unit(8, "meters")
  3901. },
  3902. ]
  3903. ))
  3904. characterMakers.push(() => makeCharacter(
  3905. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3906. {
  3907. body: {
  3908. height: math.unit(2.2428, "meter"),
  3909. weight: math.unit(124.738, "kg"),
  3910. name: "Body",
  3911. image: {
  3912. extra: 1225 / 1050,
  3913. source: "./media/characters/north/front.svg"
  3914. }
  3915. }
  3916. },
  3917. [
  3918. {
  3919. name: "Micro",
  3920. height: math.unit(4, "inches")
  3921. },
  3922. {
  3923. name: "Macro",
  3924. height: math.unit(63, "meters")
  3925. },
  3926. {
  3927. name: "Megamacro",
  3928. height: math.unit(101, "miles"),
  3929. default: true
  3930. }
  3931. ]
  3932. ))
  3933. characterMakers.push(() => makeCharacter(
  3934. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3935. {
  3936. angled: {
  3937. height: math.unit(4, "meter"),
  3938. weight: math.unit(150, "kg"),
  3939. name: "Angled",
  3940. image: {
  3941. source: "./media/characters/talan/angled-sfw.svg",
  3942. bottom: 29 / 3734
  3943. }
  3944. },
  3945. angledNsfw: {
  3946. height: math.unit(4, "meter"),
  3947. weight: math.unit(150, "kg"),
  3948. name: "Angled (NSFW)",
  3949. image: {
  3950. source: "./media/characters/talan/angled-nsfw.svg",
  3951. bottom: 29 / 3734
  3952. }
  3953. },
  3954. frontNsfw: {
  3955. height: math.unit(4, "meter"),
  3956. weight: math.unit(150, "kg"),
  3957. name: "Front (NSFW)",
  3958. image: {
  3959. source: "./media/characters/talan/front-nsfw.svg",
  3960. bottom: 29 / 3734
  3961. }
  3962. },
  3963. sideNsfw: {
  3964. height: math.unit(4, "meter"),
  3965. weight: math.unit(150, "kg"),
  3966. name: "Side (NSFW)",
  3967. image: {
  3968. source: "./media/characters/talan/side-nsfw.svg",
  3969. bottom: 29 / 3734
  3970. }
  3971. },
  3972. back: {
  3973. height: math.unit(4, "meter"),
  3974. weight: math.unit(150, "kg"),
  3975. name: "Back",
  3976. image: {
  3977. source: "./media/characters/talan/back.svg"
  3978. }
  3979. },
  3980. dickBottom: {
  3981. height: math.unit(0.621, "meter"),
  3982. name: "Dick (Bottom)",
  3983. image: {
  3984. source: "./media/characters/talan/dick-bottom.svg"
  3985. }
  3986. },
  3987. dickTop: {
  3988. height: math.unit(0.621, "meter"),
  3989. name: "Dick (Top)",
  3990. image: {
  3991. source: "./media/characters/talan/dick-top.svg"
  3992. }
  3993. },
  3994. dickSide: {
  3995. height: math.unit(0.305, "meter"),
  3996. name: "Dick (Side)",
  3997. image: {
  3998. source: "./media/characters/talan/dick-side.svg"
  3999. }
  4000. },
  4001. dickFront: {
  4002. height: math.unit(0.305, "meter"),
  4003. name: "Dick (Front)",
  4004. image: {
  4005. source: "./media/characters/talan/dick-front.svg"
  4006. }
  4007. },
  4008. },
  4009. [
  4010. {
  4011. name: "Normal",
  4012. height: math.unit(4, "meters")
  4013. },
  4014. {
  4015. name: "Macro",
  4016. height: math.unit(100, "meters")
  4017. },
  4018. {
  4019. name: "Megamacro",
  4020. height: math.unit(2, "miles"),
  4021. default: true
  4022. },
  4023. {
  4024. name: "Gigamacro",
  4025. height: math.unit(5000, "miles")
  4026. },
  4027. {
  4028. name: "Teramacro",
  4029. height: math.unit(100, "parsecs")
  4030. }
  4031. ]
  4032. ))
  4033. characterMakers.push(() => makeCharacter(
  4034. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4035. {
  4036. front: {
  4037. height: math.unit(2, "meter"),
  4038. weight: math.unit(90, "kg"),
  4039. name: "Front",
  4040. image: {
  4041. source: "./media/characters/gael'rathus/front.svg"
  4042. }
  4043. },
  4044. frontAlt: {
  4045. height: math.unit(2, "meter"),
  4046. weight: math.unit(90, "kg"),
  4047. name: "Front (alt)",
  4048. image: {
  4049. source: "./media/characters/gael'rathus/front-alt.svg"
  4050. }
  4051. },
  4052. frontAlt2: {
  4053. height: math.unit(2, "meter"),
  4054. weight: math.unit(90, "kg"),
  4055. name: "Front (alt 2)",
  4056. image: {
  4057. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4058. }
  4059. }
  4060. },
  4061. [
  4062. {
  4063. name: "Normal",
  4064. height: math.unit(9, "feet"),
  4065. default: true
  4066. },
  4067. {
  4068. name: "Large",
  4069. height: math.unit(25, "feet")
  4070. },
  4071. {
  4072. name: "Macro",
  4073. height: math.unit(0.25, "miles")
  4074. },
  4075. {
  4076. name: "Megamacro",
  4077. height: math.unit(10, "miles")
  4078. }
  4079. ]
  4080. ))
  4081. characterMakers.push(() => makeCharacter(
  4082. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4083. {
  4084. side: {
  4085. height: math.unit(2, "meter"),
  4086. weight: math.unit(140, "kg"),
  4087. name: "Side",
  4088. image: {
  4089. source: "./media/characters/sosha/side.svg",
  4090. extra: 1170/1006,
  4091. bottom: 94/1264
  4092. }
  4093. },
  4094. maw: {
  4095. height: math.unit(2.87, "feet"),
  4096. name: "Maw",
  4097. image: {
  4098. source: "./media/characters/sosha/maw.svg",
  4099. extra: 966/865,
  4100. bottom: 0/966
  4101. }
  4102. },
  4103. cooch: {
  4104. height: math.unit(5.6, "feet"),
  4105. name: "Cooch",
  4106. image: {
  4107. source: "./media/characters/sosha/cooch.svg"
  4108. }
  4109. },
  4110. },
  4111. [
  4112. {
  4113. name: "Normal",
  4114. height: math.unit(12, "feet"),
  4115. default: true
  4116. }
  4117. ]
  4118. ))
  4119. characterMakers.push(() => makeCharacter(
  4120. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4121. {
  4122. side: {
  4123. height: math.unit(5 + 5 / 12, "feet"),
  4124. weight: math.unit(170, "kg"),
  4125. name: "Side",
  4126. image: {
  4127. source: "./media/characters/runnola/side.svg",
  4128. extra: 741 / 448,
  4129. bottom: 0.05
  4130. }
  4131. },
  4132. },
  4133. [
  4134. {
  4135. name: "Small",
  4136. height: math.unit(3, "feet")
  4137. },
  4138. {
  4139. name: "Normal",
  4140. height: math.unit(5 + 5 / 12, "feet"),
  4141. default: true
  4142. },
  4143. {
  4144. name: "Big",
  4145. height: math.unit(10, "feet")
  4146. },
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4151. {
  4152. front: {
  4153. height: math.unit(2, "meter"),
  4154. weight: math.unit(50, "kg"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/kurribird/front.svg",
  4158. bottom: 0.015
  4159. }
  4160. },
  4161. frontAlt: {
  4162. height: math.unit(1.5, "meter"),
  4163. weight: math.unit(50, "kg"),
  4164. name: "Front (Alt)",
  4165. image: {
  4166. source: "./media/characters/kurribird/front-alt.svg",
  4167. extra: 1.45
  4168. }
  4169. },
  4170. },
  4171. [
  4172. {
  4173. name: "Normal",
  4174. height: math.unit(7, "feet")
  4175. },
  4176. {
  4177. name: "Big",
  4178. height: math.unit(12, "feet"),
  4179. default: true
  4180. },
  4181. {
  4182. name: "Macro",
  4183. height: math.unit(1500, "feet")
  4184. },
  4185. {
  4186. name: "Megamacro",
  4187. height: math.unit(2, "miles")
  4188. }
  4189. ]
  4190. ))
  4191. characterMakers.push(() => makeCharacter(
  4192. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4193. {
  4194. front: {
  4195. height: math.unit(2, "meter"),
  4196. weight: math.unit(80, "kg"),
  4197. name: "Front",
  4198. image: {
  4199. source: "./media/characters/elbial/front.svg",
  4200. extra: 1643 / 1556,
  4201. bottom: 60.2 / 1696
  4202. }
  4203. },
  4204. side: {
  4205. height: math.unit(2, "meter"),
  4206. weight: math.unit(80, "kg"),
  4207. name: "Side",
  4208. image: {
  4209. source: "./media/characters/elbial/side.svg",
  4210. extra: 1601/1528,
  4211. bottom: 97/1698
  4212. }
  4213. },
  4214. back: {
  4215. height: math.unit(2, "meter"),
  4216. weight: math.unit(80, "kg"),
  4217. name: "Back",
  4218. image: {
  4219. source: "./media/characters/elbial/back.svg",
  4220. extra: 1653/1569,
  4221. bottom: 20/1673
  4222. }
  4223. },
  4224. frontDressed: {
  4225. height: math.unit(2, "meter"),
  4226. weight: math.unit(80, "kg"),
  4227. name: "Front (Dressed)",
  4228. image: {
  4229. source: "./media/characters/elbial/front-dressed.svg",
  4230. extra: 1638/1569,
  4231. bottom: 70/1708
  4232. }
  4233. },
  4234. genitals: {
  4235. height: math.unit(2 / 3.367, "meter"),
  4236. name: "Genitals",
  4237. image: {
  4238. source: "./media/characters/elbial/genitals.svg"
  4239. }
  4240. },
  4241. },
  4242. [
  4243. {
  4244. name: "Large",
  4245. height: math.unit(100, "feet")
  4246. },
  4247. {
  4248. name: "Macro",
  4249. height: math.unit(500, "feet"),
  4250. default: true
  4251. },
  4252. {
  4253. name: "Megamacro",
  4254. height: math.unit(10, "miles")
  4255. },
  4256. {
  4257. name: "Gigamacro",
  4258. height: math.unit(25000, "miles")
  4259. },
  4260. {
  4261. name: "Full-Size",
  4262. height: math.unit(8000000, "gigaparsecs")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(2, "meter"),
  4271. weight: math.unit(60, "kg"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/noah/front.svg"
  4275. }
  4276. },
  4277. talons: {
  4278. height: math.unit(0.315, "meter"),
  4279. name: "Talons",
  4280. image: {
  4281. source: "./media/characters/noah/talons.svg"
  4282. }
  4283. }
  4284. },
  4285. [
  4286. {
  4287. name: "Large",
  4288. height: math.unit(50, "feet")
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(750, "feet"),
  4293. default: true
  4294. },
  4295. {
  4296. name: "Megamacro",
  4297. height: math.unit(50, "miles")
  4298. },
  4299. {
  4300. name: "Gigamacro",
  4301. height: math.unit(100000, "miles")
  4302. },
  4303. {
  4304. name: "Full-Size",
  4305. height: math.unit(3000000000, "miles")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(2, "meter"),
  4314. weight: math.unit(80, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/natalya/front.svg"
  4318. }
  4319. },
  4320. back: {
  4321. height: math.unit(2, "meter"),
  4322. weight: math.unit(80, "kg"),
  4323. name: "Back",
  4324. image: {
  4325. source: "./media/characters/natalya/back.svg"
  4326. }
  4327. }
  4328. },
  4329. [
  4330. {
  4331. name: "Normal",
  4332. height: math.unit(150, "feet"),
  4333. default: true
  4334. },
  4335. {
  4336. name: "Megamacro",
  4337. height: math.unit(5, "miles")
  4338. },
  4339. {
  4340. name: "Full-Size",
  4341. height: math.unit(600, "kiloparsecs")
  4342. }
  4343. ]
  4344. ))
  4345. characterMakers.push(() => makeCharacter(
  4346. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4347. {
  4348. front: {
  4349. height: math.unit(2, "meter"),
  4350. weight: math.unit(50, "kg"),
  4351. name: "Front",
  4352. image: {
  4353. source: "./media/characters/erestrebah/front.svg",
  4354. extra: 1262/1162,
  4355. bottom: 96/1358
  4356. }
  4357. },
  4358. back: {
  4359. height: math.unit(2, "meter"),
  4360. weight: math.unit(50, "kg"),
  4361. name: "Back",
  4362. image: {
  4363. source: "./media/characters/erestrebah/back.svg",
  4364. extra: 1257/1139,
  4365. bottom: 13/1270
  4366. }
  4367. },
  4368. wing: {
  4369. height: math.unit(2, "meter"),
  4370. weight: math.unit(50, "kg"),
  4371. name: "Wing",
  4372. image: {
  4373. source: "./media/characters/erestrebah/wing.svg",
  4374. extra: 1262/1162,
  4375. bottom: 96/1358
  4376. }
  4377. },
  4378. mouth: {
  4379. height: math.unit(0.39, "feet"),
  4380. name: "Mouth",
  4381. image: {
  4382. source: "./media/characters/erestrebah/mouth.svg"
  4383. }
  4384. }
  4385. },
  4386. [
  4387. {
  4388. name: "Normal",
  4389. height: math.unit(10, "feet")
  4390. },
  4391. {
  4392. name: "Large",
  4393. height: math.unit(50, "feet"),
  4394. default: true
  4395. },
  4396. {
  4397. name: "Macro",
  4398. height: math.unit(300, "feet")
  4399. },
  4400. {
  4401. name: "Macro+",
  4402. height: math.unit(750, "feet")
  4403. },
  4404. {
  4405. name: "Megamacro",
  4406. height: math.unit(3, "miles")
  4407. }
  4408. ]
  4409. ))
  4410. characterMakers.push(() => makeCharacter(
  4411. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4412. {
  4413. front: {
  4414. height: math.unit(2, "meter"),
  4415. weight: math.unit(80, "kg"),
  4416. name: "Front",
  4417. image: {
  4418. source: "./media/characters/jennifer/front.svg",
  4419. bottom: 0.11,
  4420. extra: 1.16
  4421. }
  4422. },
  4423. frontAlt: {
  4424. height: math.unit(2, "meter"),
  4425. weight: math.unit(80, "kg"),
  4426. name: "Front (Alt)",
  4427. image: {
  4428. source: "./media/characters/jennifer/front-alt.svg"
  4429. }
  4430. }
  4431. },
  4432. [
  4433. {
  4434. name: "Canon Height",
  4435. height: math.unit(120, "feet"),
  4436. default: true
  4437. },
  4438. {
  4439. name: "Macro+",
  4440. height: math.unit(300, "feet")
  4441. },
  4442. {
  4443. name: "Megamacro",
  4444. height: math.unit(20000, "feet")
  4445. }
  4446. ]
  4447. ))
  4448. characterMakers.push(() => makeCharacter(
  4449. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4450. {
  4451. front: {
  4452. height: math.unit(2, "meter"),
  4453. weight: math.unit(50, "kg"),
  4454. name: "Front",
  4455. image: {
  4456. source: "./media/characters/kalista/front.svg",
  4457. extra: 1314/1145,
  4458. bottom: 101/1415
  4459. }
  4460. },
  4461. back: {
  4462. height: math.unit(2, "meter"),
  4463. weight: math.unit(50, "kg"),
  4464. name: "Back",
  4465. image: {
  4466. source: "./media/characters/kalista/back.svg",
  4467. extra: 1366 / 1156,
  4468. bottom: 33.9 / 1362.78
  4469. }
  4470. }
  4471. },
  4472. [
  4473. {
  4474. name: "Uncomfortably Small",
  4475. height: math.unit(10, "feet")
  4476. },
  4477. {
  4478. name: "Small",
  4479. height: math.unit(30, "feet")
  4480. },
  4481. {
  4482. name: "Macro",
  4483. height: math.unit(100, "feet"),
  4484. default: true
  4485. },
  4486. {
  4487. name: "Macro+",
  4488. height: math.unit(2000, "feet")
  4489. },
  4490. {
  4491. name: "True Form",
  4492. height: math.unit(8924, "miles")
  4493. }
  4494. ]
  4495. ))
  4496. characterMakers.push(() => makeCharacter(
  4497. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4498. {
  4499. front: {
  4500. height: math.unit(2, "meter"),
  4501. weight: math.unit(120, "kg"),
  4502. name: "Front",
  4503. image: {
  4504. source: "./media/characters/ggv/front.svg"
  4505. }
  4506. },
  4507. side: {
  4508. height: math.unit(2, "meter"),
  4509. weight: math.unit(120, "kg"),
  4510. name: "Side",
  4511. image: {
  4512. source: "./media/characters/ggv/side.svg"
  4513. }
  4514. }
  4515. },
  4516. [
  4517. {
  4518. name: "Extremely Puny",
  4519. height: math.unit(9 + 5 / 12, "feet")
  4520. },
  4521. {
  4522. name: "Horribly Small",
  4523. height: math.unit(47.7, "miles"),
  4524. default: true
  4525. },
  4526. {
  4527. name: "Reasonably Sized",
  4528. height: math.unit(25000, "parsecs")
  4529. },
  4530. {
  4531. name: "Slightly Uncompressed",
  4532. height: math.unit(7.77e31, "parsecs")
  4533. },
  4534. {
  4535. name: "Omniversal",
  4536. height: math.unit(1e300, "meters")
  4537. },
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4542. {
  4543. front: {
  4544. height: math.unit(2, "meter"),
  4545. weight: math.unit(75, "lb"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/napalm/front.svg"
  4549. }
  4550. },
  4551. back: {
  4552. height: math.unit(2, "meter"),
  4553. weight: math.unit(75, "lb"),
  4554. name: "Back",
  4555. image: {
  4556. source: "./media/characters/napalm/back.svg"
  4557. }
  4558. }
  4559. },
  4560. [
  4561. {
  4562. name: "Standard",
  4563. height: math.unit(55, "feet"),
  4564. default: true
  4565. }
  4566. ]
  4567. ))
  4568. characterMakers.push(() => makeCharacter(
  4569. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4570. {
  4571. front: {
  4572. height: math.unit(7 + 5 / 6, "feet"),
  4573. weight: math.unit(325, "lb"),
  4574. name: "Front",
  4575. image: {
  4576. source: "./media/characters/asana/front.svg",
  4577. extra: 1133 / 1060,
  4578. bottom: 15.2 / 1148.6
  4579. }
  4580. },
  4581. back: {
  4582. height: math.unit(7 + 5 / 6, "feet"),
  4583. weight: math.unit(325, "lb"),
  4584. name: "Back",
  4585. image: {
  4586. source: "./media/characters/asana/back.svg",
  4587. extra: 1114 / 1043,
  4588. bottom: 5 / 1120
  4589. }
  4590. },
  4591. dressedDark: {
  4592. height: math.unit(7 + 5 / 6, "feet"),
  4593. weight: math.unit(325, "lb"),
  4594. name: "Dressed (Dark)",
  4595. image: {
  4596. source: "./media/characters/asana/dressed-dark.svg",
  4597. extra: 1133 / 1060,
  4598. bottom: 15.2 / 1148.6
  4599. }
  4600. },
  4601. dressedLight: {
  4602. height: math.unit(7 + 5 / 6, "feet"),
  4603. weight: math.unit(325, "lb"),
  4604. name: "Dressed (Light)",
  4605. image: {
  4606. source: "./media/characters/asana/dressed-light.svg",
  4607. extra: 1133 / 1060,
  4608. bottom: 15.2 / 1148.6
  4609. }
  4610. },
  4611. },
  4612. [
  4613. {
  4614. name: "Standard",
  4615. height: math.unit(7 + 5 / 6, "feet"),
  4616. default: true
  4617. },
  4618. {
  4619. name: "Large",
  4620. height: math.unit(10, "meters")
  4621. },
  4622. {
  4623. name: "Macro",
  4624. height: math.unit(2500, "meters")
  4625. },
  4626. {
  4627. name: "Megamacro",
  4628. height: math.unit(5e6, "meters")
  4629. },
  4630. {
  4631. name: "Examacro",
  4632. height: math.unit(5e12, "lightyears")
  4633. },
  4634. {
  4635. name: "Max Size",
  4636. height: math.unit(1e31, "lightyears")
  4637. }
  4638. ]
  4639. ))
  4640. characterMakers.push(() => makeCharacter(
  4641. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4642. {
  4643. front: {
  4644. height: math.unit(2, "meter"),
  4645. weight: math.unit(60, "kg"),
  4646. name: "Front",
  4647. image: {
  4648. source: "./media/characters/ebony/front.svg",
  4649. bottom: 0.03,
  4650. extra: 1045 / 810 + 0.03
  4651. }
  4652. },
  4653. side: {
  4654. height: math.unit(2, "meter"),
  4655. weight: math.unit(60, "kg"),
  4656. name: "Side",
  4657. image: {
  4658. source: "./media/characters/ebony/side.svg",
  4659. bottom: 0.03,
  4660. extra: 1045 / 810 + 0.03
  4661. }
  4662. },
  4663. back: {
  4664. height: math.unit(2, "meter"),
  4665. weight: math.unit(60, "kg"),
  4666. name: "Back",
  4667. image: {
  4668. source: "./media/characters/ebony/back.svg",
  4669. bottom: 0.01,
  4670. extra: 1045 / 810 + 0.01
  4671. }
  4672. },
  4673. },
  4674. [
  4675. // TODO check why I did this lol
  4676. {
  4677. name: "Standard",
  4678. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4679. default: true
  4680. },
  4681. {
  4682. name: "Macro",
  4683. height: math.unit(200, "feet")
  4684. },
  4685. {
  4686. name: "Gigamacro",
  4687. height: math.unit(13000, "km")
  4688. }
  4689. ]
  4690. ))
  4691. characterMakers.push(() => makeCharacter(
  4692. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4693. {
  4694. front: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(175, "lb"),
  4697. name: "Front",
  4698. image: {
  4699. source: "./media/characters/mountain/front.svg",
  4700. extra: 972 / 955,
  4701. bottom: 64 / 1036.6
  4702. }
  4703. },
  4704. back: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(175, "lb"),
  4707. name: "Back",
  4708. image: {
  4709. source: "./media/characters/mountain/back.svg",
  4710. extra: 970 / 950,
  4711. bottom: 28.25 / 999
  4712. }
  4713. },
  4714. },
  4715. [
  4716. {
  4717. name: "Large",
  4718. height: math.unit(20, "meters")
  4719. },
  4720. {
  4721. name: "Macro",
  4722. height: math.unit(300, "meters")
  4723. },
  4724. {
  4725. name: "Gigamacro",
  4726. height: math.unit(10000, "km"),
  4727. default: true
  4728. },
  4729. {
  4730. name: "Examacro",
  4731. height: math.unit(10e9, "lightyears")
  4732. }
  4733. ]
  4734. ))
  4735. characterMakers.push(() => makeCharacter(
  4736. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4737. {
  4738. front: {
  4739. height: math.unit(8, "feet"),
  4740. weight: math.unit(500, "lb"),
  4741. name: "Front",
  4742. image: {
  4743. source: "./media/characters/rick/front.svg"
  4744. }
  4745. }
  4746. },
  4747. [
  4748. {
  4749. name: "Normal",
  4750. height: math.unit(8, "feet"),
  4751. default: true
  4752. },
  4753. {
  4754. name: "Macro",
  4755. height: math.unit(5, "km")
  4756. }
  4757. ]
  4758. ))
  4759. characterMakers.push(() => makeCharacter(
  4760. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4761. {
  4762. front: {
  4763. height: math.unit(8, "feet"),
  4764. weight: math.unit(120, "lb"),
  4765. name: "Front",
  4766. image: {
  4767. source: "./media/characters/ona/front.svg"
  4768. }
  4769. },
  4770. frontAlt: {
  4771. height: math.unit(8, "feet"),
  4772. weight: math.unit(120, "lb"),
  4773. name: "Front (Alt)",
  4774. image: {
  4775. source: "./media/characters/ona/front-alt.svg"
  4776. }
  4777. },
  4778. back: {
  4779. height: math.unit(8, "feet"),
  4780. weight: math.unit(120, "lb"),
  4781. name: "Back",
  4782. image: {
  4783. source: "./media/characters/ona/back.svg"
  4784. }
  4785. },
  4786. foot: {
  4787. height: math.unit(1.1, "feet"),
  4788. name: "Foot",
  4789. image: {
  4790. source: "./media/characters/ona/foot.svg"
  4791. }
  4792. }
  4793. },
  4794. [
  4795. {
  4796. name: "Megamacro",
  4797. height: math.unit(70, "km"),
  4798. default: true
  4799. },
  4800. {
  4801. name: "Gigamacro",
  4802. height: math.unit(681818, "miles")
  4803. },
  4804. {
  4805. name: "Examacro",
  4806. height: math.unit(3800000, "lightyears")
  4807. },
  4808. ]
  4809. ))
  4810. characterMakers.push(() => makeCharacter(
  4811. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4812. {
  4813. front: {
  4814. height: math.unit(12, "feet"),
  4815. weight: math.unit(3000, "lb"),
  4816. name: "Front",
  4817. image: {
  4818. source: "./media/characters/mech/front.svg",
  4819. extra: 2900 / 2770,
  4820. bottom: 110 / 3010
  4821. }
  4822. },
  4823. back: {
  4824. height: math.unit(12, "feet"),
  4825. weight: math.unit(3000, "lb"),
  4826. name: "Back",
  4827. image: {
  4828. source: "./media/characters/mech/back.svg",
  4829. extra: 3011 / 2890,
  4830. bottom: 94 / 3105
  4831. }
  4832. },
  4833. maw: {
  4834. height: math.unit(3.07, "feet"),
  4835. name: "Maw",
  4836. image: {
  4837. source: "./media/characters/mech/maw.svg"
  4838. }
  4839. },
  4840. head: {
  4841. height: math.unit(3.07, "feet"),
  4842. name: "Head",
  4843. image: {
  4844. source: "./media/characters/mech/head.svg"
  4845. }
  4846. },
  4847. dick: {
  4848. height: math.unit(1.43, "feet"),
  4849. name: "Dick",
  4850. image: {
  4851. source: "./media/characters/mech/dick.svg"
  4852. }
  4853. },
  4854. },
  4855. [
  4856. {
  4857. name: "Normal",
  4858. height: math.unit(12, "feet")
  4859. },
  4860. {
  4861. name: "Macro",
  4862. height: math.unit(300, "feet"),
  4863. default: true
  4864. },
  4865. {
  4866. name: "Macro+",
  4867. height: math.unit(1500, "feet")
  4868. },
  4869. ]
  4870. ))
  4871. characterMakers.push(() => makeCharacter(
  4872. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4873. {
  4874. front: {
  4875. height: math.unit(1.3, "meter"),
  4876. weight: math.unit(30, "kg"),
  4877. name: "Front",
  4878. image: {
  4879. source: "./media/characters/gregory/front.svg",
  4880. }
  4881. }
  4882. },
  4883. [
  4884. {
  4885. name: "Normal",
  4886. height: math.unit(1.3, "meter"),
  4887. default: true
  4888. },
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(20, "meter")
  4892. }
  4893. ]
  4894. ))
  4895. characterMakers.push(() => makeCharacter(
  4896. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4897. {
  4898. front: {
  4899. height: math.unit(2.8, "meter"),
  4900. weight: math.unit(200, "kg"),
  4901. name: "Front",
  4902. image: {
  4903. source: "./media/characters/elory/front.svg",
  4904. }
  4905. }
  4906. },
  4907. [
  4908. {
  4909. name: "Normal",
  4910. height: math.unit(2.8, "meter"),
  4911. default: true
  4912. },
  4913. {
  4914. name: "Macro",
  4915. height: math.unit(38, "meter")
  4916. }
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4921. {
  4922. front: {
  4923. height: math.unit(470, "feet"),
  4924. weight: math.unit(924, "tons"),
  4925. name: "Front",
  4926. image: {
  4927. source: "./media/characters/angelpatamon/front.svg",
  4928. }
  4929. }
  4930. },
  4931. [
  4932. {
  4933. name: "Normal",
  4934. height: math.unit(470, "feet"),
  4935. default: true
  4936. },
  4937. {
  4938. name: "Deity Size I",
  4939. height: math.unit(28651.2, "km")
  4940. },
  4941. {
  4942. name: "Deity Size II",
  4943. height: math.unit(171907.2, "km")
  4944. }
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4949. {
  4950. side: {
  4951. height: math.unit(7.2, "meter"),
  4952. weight: math.unit(8.2, "tons"),
  4953. name: "Side",
  4954. image: {
  4955. source: "./media/characters/cryae/side.svg",
  4956. extra: 3500 / 1500
  4957. }
  4958. }
  4959. },
  4960. [
  4961. {
  4962. name: "Normal",
  4963. height: math.unit(7.2, "meter"),
  4964. default: true
  4965. }
  4966. ]
  4967. ))
  4968. characterMakers.push(() => makeCharacter(
  4969. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4970. {
  4971. front: {
  4972. height: math.unit(6, "feet"),
  4973. weight: math.unit(175, "lb"),
  4974. name: "Front",
  4975. image: {
  4976. source: "./media/characters/xera/front.svg",
  4977. extra: 2377 / 1972,
  4978. bottom: 75.5 / 2452
  4979. }
  4980. },
  4981. side: {
  4982. height: math.unit(6, "feet"),
  4983. weight: math.unit(175, "lb"),
  4984. name: "Side",
  4985. image: {
  4986. source: "./media/characters/xera/side.svg",
  4987. extra: 2345 / 2019,
  4988. bottom: 39.7 / 2384
  4989. }
  4990. },
  4991. back: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(175, "lb"),
  4994. name: "Back",
  4995. image: {
  4996. source: "./media/characters/xera/back.svg",
  4997. extra: 2095 / 1984,
  4998. bottom: 67 / 2166
  4999. }
  5000. },
  5001. },
  5002. [
  5003. {
  5004. name: "Small",
  5005. height: math.unit(10, "feet")
  5006. },
  5007. {
  5008. name: "Macro",
  5009. height: math.unit(500, "meters"),
  5010. default: true
  5011. },
  5012. {
  5013. name: "Macro+",
  5014. height: math.unit(10, "km")
  5015. },
  5016. {
  5017. name: "Gigamacro",
  5018. height: math.unit(25000, "km")
  5019. },
  5020. {
  5021. name: "Teramacro",
  5022. height: math.unit(3e6, "km")
  5023. }
  5024. ]
  5025. ))
  5026. characterMakers.push(() => makeCharacter(
  5027. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5028. {
  5029. front: {
  5030. height: math.unit(6, "feet"),
  5031. weight: math.unit(175, "lb"),
  5032. name: "Front",
  5033. image: {
  5034. source: "./media/characters/nebula/front.svg",
  5035. extra: 2566 / 2362,
  5036. bottom: 81 / 2644
  5037. }
  5038. }
  5039. },
  5040. [
  5041. {
  5042. name: "Small",
  5043. height: math.unit(4.5, "meters")
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(1500, "meters"),
  5048. default: true
  5049. },
  5050. {
  5051. name: "Megamacro",
  5052. height: math.unit(150, "km")
  5053. },
  5054. {
  5055. name: "Gigamacro",
  5056. height: math.unit(27000, "km")
  5057. }
  5058. ]
  5059. ))
  5060. characterMakers.push(() => makeCharacter(
  5061. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5062. {
  5063. front: {
  5064. height: math.unit(6, "feet"),
  5065. weight: math.unit(225, "lb"),
  5066. name: "Front",
  5067. image: {
  5068. source: "./media/characters/abysgar/front.svg",
  5069. extra: 1739/1614,
  5070. bottom: 71/1810
  5071. }
  5072. },
  5073. frontNsfw: {
  5074. height: math.unit(6, "feet"),
  5075. weight: math.unit(225, "lb"),
  5076. name: "Front (NSFW)",
  5077. image: {
  5078. source: "./media/characters/abysgar/front-nsfw.svg",
  5079. extra: 1739/1614,
  5080. bottom: 71/1810
  5081. }
  5082. },
  5083. back: {
  5084. height: math.unit(4.6, "feet"),
  5085. weight: math.unit(225, "lb"),
  5086. name: "Back",
  5087. image: {
  5088. source: "./media/characters/abysgar/back.svg",
  5089. extra: 1384/1327,
  5090. bottom: 0/1384
  5091. }
  5092. },
  5093. head: {
  5094. height: math.unit(1.25, "feet"),
  5095. name: "Head",
  5096. image: {
  5097. source: "./media/characters/abysgar/head.svg",
  5098. extra: 669/569,
  5099. bottom: 0/669
  5100. }
  5101. },
  5102. },
  5103. [
  5104. {
  5105. name: "Small",
  5106. height: math.unit(4.5, "meters")
  5107. },
  5108. {
  5109. name: "Macro",
  5110. height: math.unit(1250, "meters"),
  5111. default: true
  5112. },
  5113. {
  5114. name: "Megamacro",
  5115. height: math.unit(125, "km")
  5116. },
  5117. {
  5118. name: "Gigamacro",
  5119. height: math.unit(26000, "km")
  5120. }
  5121. ]
  5122. ))
  5123. characterMakers.push(() => makeCharacter(
  5124. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5125. {
  5126. front: {
  5127. height: math.unit(6, "feet"),
  5128. weight: math.unit(180, "lb"),
  5129. name: "Front",
  5130. image: {
  5131. source: "./media/characters/yakuz/front.svg"
  5132. }
  5133. }
  5134. },
  5135. [
  5136. {
  5137. name: "Small",
  5138. height: math.unit(5, "meters")
  5139. },
  5140. {
  5141. name: "Macro",
  5142. height: math.unit(1500, "meters"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Megamacro",
  5147. height: math.unit(200, "km")
  5148. },
  5149. {
  5150. name: "Gigamacro",
  5151. height: math.unit(100000, "km")
  5152. }
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5157. {
  5158. front: {
  5159. height: math.unit(6, "feet"),
  5160. weight: math.unit(175, "lb"),
  5161. name: "Front",
  5162. image: {
  5163. source: "./media/characters/mirova/front.svg",
  5164. extra: 3334 / 3071,
  5165. bottom: 42 / 3375.6
  5166. }
  5167. }
  5168. },
  5169. [
  5170. {
  5171. name: "Small",
  5172. height: math.unit(5, "meters")
  5173. },
  5174. {
  5175. name: "Macro",
  5176. height: math.unit(900, "meters"),
  5177. default: true
  5178. },
  5179. {
  5180. name: "Megamacro",
  5181. height: math.unit(135, "km")
  5182. },
  5183. {
  5184. name: "Gigamacro",
  5185. height: math.unit(20000, "km")
  5186. }
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5191. {
  5192. side: {
  5193. height: math.unit(28.35, "feet"),
  5194. weight: math.unit(99.75, "tons"),
  5195. name: "Side",
  5196. image: {
  5197. source: "./media/characters/asana-mech/side.svg",
  5198. extra: 923 / 699,
  5199. bottom: 50 / 975
  5200. }
  5201. },
  5202. chaingun: {
  5203. height: math.unit(7, "feet"),
  5204. weight: math.unit(2400, "lb"),
  5205. name: "Chaingun",
  5206. image: {
  5207. source: "./media/characters/asana-mech/chaingun.svg"
  5208. }
  5209. },
  5210. laser: {
  5211. height: math.unit(7.12, "feet"),
  5212. weight: math.unit(2000, "lb"),
  5213. name: "Laser",
  5214. image: {
  5215. source: "./media/characters/asana-mech/laser.svg"
  5216. }
  5217. },
  5218. },
  5219. [
  5220. {
  5221. name: "Normal",
  5222. height: math.unit(28.35, "feet"),
  5223. default: true
  5224. },
  5225. {
  5226. name: "Macro",
  5227. height: math.unit(2500, "feet")
  5228. },
  5229. {
  5230. name: "Megamacro",
  5231. height: math.unit(25, "miles")
  5232. },
  5233. {
  5234. name: "Examacro",
  5235. height: math.unit(6e8, "lightyears")
  5236. },
  5237. ]
  5238. ))
  5239. characterMakers.push(() => makeCharacter(
  5240. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5241. {
  5242. front: {
  5243. height: math.unit(5, "meters"),
  5244. weight: math.unit(1000, "kg"),
  5245. name: "Front",
  5246. image: {
  5247. source: "./media/characters/asche/front.svg",
  5248. extra: 1258 / 1190,
  5249. bottom: 47 / 1305
  5250. }
  5251. },
  5252. frontUnderwear: {
  5253. height: math.unit(5, "meters"),
  5254. weight: math.unit(1000, "kg"),
  5255. name: "Front (Underwear)",
  5256. image: {
  5257. source: "./media/characters/asche/front-underwear.svg",
  5258. extra: 1258 / 1190,
  5259. bottom: 47 / 1305
  5260. }
  5261. },
  5262. frontDressed: {
  5263. height: math.unit(5, "meters"),
  5264. weight: math.unit(1000, "kg"),
  5265. name: "Front (Dressed)",
  5266. image: {
  5267. source: "./media/characters/asche/front-dressed.svg",
  5268. extra: 1258 / 1190,
  5269. bottom: 47 / 1305
  5270. }
  5271. },
  5272. frontArmor: {
  5273. height: math.unit(5, "meters"),
  5274. weight: math.unit(1000, "kg"),
  5275. name: "Front (Armored)",
  5276. image: {
  5277. source: "./media/characters/asche/front-armored.svg",
  5278. extra: 1374 / 1308,
  5279. bottom: 23 / 1397
  5280. }
  5281. },
  5282. mp724: {
  5283. height: math.unit(0.96, "meters"),
  5284. weight: math.unit(38, "kg"),
  5285. name: "H&K MP724",
  5286. image: {
  5287. source: "./media/characters/asche/h&k-mp724.svg"
  5288. }
  5289. },
  5290. side: {
  5291. height: math.unit(5, "meters"),
  5292. weight: math.unit(1000, "kg"),
  5293. name: "Side",
  5294. image: {
  5295. source: "./media/characters/asche/side.svg",
  5296. extra: 1717 / 1609,
  5297. bottom: 0.005
  5298. }
  5299. },
  5300. back: {
  5301. height: math.unit(5, "meters"),
  5302. weight: math.unit(1000, "kg"),
  5303. name: "Back",
  5304. image: {
  5305. source: "./media/characters/asche/back.svg",
  5306. extra: 1570 / 1501
  5307. }
  5308. },
  5309. },
  5310. [
  5311. {
  5312. name: "DEFCON 5",
  5313. height: math.unit(5, "meters")
  5314. },
  5315. {
  5316. name: "DEFCON 4",
  5317. height: math.unit(500, "meters"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "DEFCON 3",
  5322. height: math.unit(5, "km")
  5323. },
  5324. {
  5325. name: "DEFCON 2",
  5326. height: math.unit(500, "km")
  5327. },
  5328. {
  5329. name: "DEFCON 1",
  5330. height: math.unit(500000, "km")
  5331. },
  5332. {
  5333. name: "DEFCON 0",
  5334. height: math.unit(3, "gigaparsecs")
  5335. },
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5340. {
  5341. front: {
  5342. height: math.unit(7, "feet"),
  5343. weight: math.unit(92.7, "kg"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/gale/front.svg",
  5347. extra: 977/919,
  5348. bottom: 105/1082
  5349. }
  5350. },
  5351. side: {
  5352. height: math.unit(6.7, "feet"),
  5353. weight: math.unit(92.7, "kg"),
  5354. name: "Side",
  5355. image: {
  5356. source: "./media/characters/gale/side.svg",
  5357. extra: 978/922,
  5358. bottom: 140/1118
  5359. }
  5360. },
  5361. back: {
  5362. height: math.unit(7, "feet"),
  5363. weight: math.unit(92.7, "kg"),
  5364. name: "Back",
  5365. image: {
  5366. source: "./media/characters/gale/back.svg",
  5367. extra: 966/920,
  5368. bottom: 61/1027
  5369. }
  5370. },
  5371. maw: {
  5372. height: math.unit(2.23, "feet"),
  5373. name: "Maw",
  5374. image: {
  5375. source: "./media/characters/gale/maw.svg"
  5376. }
  5377. },
  5378. foot: {
  5379. height: math.unit(2.1, "feet"),
  5380. name: "Foot",
  5381. image: {
  5382. source: "./media/characters/gale/foot.svg"
  5383. }
  5384. },
  5385. },
  5386. [
  5387. {
  5388. name: "Normal",
  5389. height: math.unit(7, "feet")
  5390. },
  5391. {
  5392. name: "Macro",
  5393. height: math.unit(150, "feet"),
  5394. default: true
  5395. },
  5396. {
  5397. name: "Macro+",
  5398. height: math.unit(300, "feet")
  5399. },
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5404. {
  5405. front: {
  5406. height: math.unit(5 + 10/12, "feet"),
  5407. weight: math.unit(67, "kg"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/draylen/front.svg",
  5411. extra: 832/777,
  5412. bottom: 85/917
  5413. }
  5414. }
  5415. },
  5416. [
  5417. {
  5418. name: "Normal",
  5419. height: math.unit(5 + 10/12, "feet")
  5420. },
  5421. {
  5422. name: "Macro",
  5423. height: math.unit(150, "feet"),
  5424. default: true
  5425. }
  5426. ]
  5427. ))
  5428. characterMakers.push(() => makeCharacter(
  5429. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5430. {
  5431. front: {
  5432. height: math.unit(7 + 9 / 12, "feet"),
  5433. weight: math.unit(379, "lbs"),
  5434. name: "Front",
  5435. image: {
  5436. source: "./media/characters/chez/front.svg"
  5437. }
  5438. },
  5439. side: {
  5440. height: math.unit(7 + 9 / 12, "feet"),
  5441. weight: math.unit(379, "lbs"),
  5442. name: "Side",
  5443. image: {
  5444. source: "./media/characters/chez/side.svg"
  5445. }
  5446. }
  5447. },
  5448. [
  5449. {
  5450. name: "Normal",
  5451. height: math.unit(7 + 9 / 12, "feet"),
  5452. default: true
  5453. },
  5454. {
  5455. name: "God King",
  5456. height: math.unit(9750000, "meters")
  5457. }
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5462. {
  5463. front: {
  5464. height: math.unit(6, "feet"),
  5465. weight: math.unit(275, "lbs"),
  5466. name: "Front",
  5467. image: {
  5468. source: "./media/characters/kaylum/front.svg",
  5469. bottom: 0.01,
  5470. extra: 1166 / 1031
  5471. }
  5472. },
  5473. frontWingless: {
  5474. height: math.unit(6, "feet"),
  5475. weight: math.unit(275, "lbs"),
  5476. name: "Front (Wingless)",
  5477. image: {
  5478. source: "./media/characters/kaylum/front-wingless.svg",
  5479. bottom: 0.01,
  5480. extra: 1117 / 1031
  5481. }
  5482. }
  5483. },
  5484. [
  5485. {
  5486. name: "Normal",
  5487. height: math.unit(3.05, "meters")
  5488. },
  5489. {
  5490. name: "Master",
  5491. height: math.unit(5.5, "meters")
  5492. },
  5493. {
  5494. name: "Rampage",
  5495. height: math.unit(19, "meters")
  5496. },
  5497. {
  5498. name: "Macro Lite",
  5499. height: math.unit(37, "meters")
  5500. },
  5501. {
  5502. name: "Hyper Predator",
  5503. height: math.unit(61, "meters")
  5504. },
  5505. {
  5506. name: "Macro",
  5507. height: math.unit(138, "meters"),
  5508. default: true
  5509. }
  5510. ]
  5511. ))
  5512. characterMakers.push(() => makeCharacter(
  5513. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5514. {
  5515. front: {
  5516. height: math.unit(5 + 5 / 12, "feet"),
  5517. weight: math.unit(120, "lbs"),
  5518. name: "Front",
  5519. image: {
  5520. source: "./media/characters/geta/front.svg",
  5521. extra: 1003/933,
  5522. bottom: 21/1024
  5523. }
  5524. },
  5525. paw: {
  5526. height: math.unit(0.35, "feet"),
  5527. name: "Paw",
  5528. image: {
  5529. source: "./media/characters/geta/paw.svg"
  5530. }
  5531. },
  5532. },
  5533. [
  5534. {
  5535. name: "Micro",
  5536. height: math.unit(3, "inches"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(5 + 5 / 12, "feet")
  5542. }
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5547. {
  5548. front: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(300, "lbs"),
  5551. name: "Front",
  5552. image: {
  5553. source: "./media/characters/tyrnn/front.svg"
  5554. }
  5555. }
  5556. },
  5557. [
  5558. {
  5559. name: "Main Height",
  5560. height: math.unit(355, "feet"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Fave. Height",
  5565. height: math.unit(2400, "feet")
  5566. }
  5567. ]
  5568. ))
  5569. characterMakers.push(() => makeCharacter(
  5570. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5571. {
  5572. front: {
  5573. height: math.unit(6, "feet"),
  5574. weight: math.unit(300, "lbs"),
  5575. name: "Front",
  5576. image: {
  5577. source: "./media/characters/appledectomy/front.svg"
  5578. }
  5579. }
  5580. },
  5581. [
  5582. {
  5583. name: "Macro",
  5584. height: math.unit(2500, "feet")
  5585. },
  5586. {
  5587. name: "Megamacro",
  5588. height: math.unit(50, "miles"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Gigamacro",
  5593. height: math.unit(5000, "miles")
  5594. },
  5595. {
  5596. name: "Teramacro",
  5597. height: math.unit(250000, "miles")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(200, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/vulpes/front.svg",
  5610. extra: 573 / 543,
  5611. bottom: 0.033
  5612. }
  5613. },
  5614. side: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(200, "lbs"),
  5617. name: "Side",
  5618. image: {
  5619. source: "./media/characters/vulpes/side.svg",
  5620. extra: 577 / 549,
  5621. bottom: 11 / 588
  5622. }
  5623. },
  5624. back: {
  5625. height: math.unit(6, "feet"),
  5626. weight: math.unit(200, "lbs"),
  5627. name: "Back",
  5628. image: {
  5629. source: "./media/characters/vulpes/back.svg",
  5630. extra: 573 / 549,
  5631. bottom: 20 / 593
  5632. }
  5633. },
  5634. feet: {
  5635. height: math.unit(1.276, "feet"),
  5636. name: "Feet",
  5637. image: {
  5638. source: "./media/characters/vulpes/feet.svg"
  5639. }
  5640. },
  5641. maw: {
  5642. height: math.unit(1.18, "feet"),
  5643. name: "Maw",
  5644. image: {
  5645. source: "./media/characters/vulpes/maw.svg"
  5646. }
  5647. },
  5648. },
  5649. [
  5650. {
  5651. name: "Micro",
  5652. height: math.unit(2, "inches")
  5653. },
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(6.3, "feet")
  5657. },
  5658. {
  5659. name: "Macro",
  5660. height: math.unit(850, "feet")
  5661. },
  5662. {
  5663. name: "Megamacro",
  5664. height: math.unit(7500, "feet"),
  5665. default: true
  5666. },
  5667. {
  5668. name: "Gigamacro",
  5669. height: math.unit(570000, "miles")
  5670. }
  5671. ]
  5672. ))
  5673. characterMakers.push(() => makeCharacter(
  5674. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5675. {
  5676. front: {
  5677. height: math.unit(6, "feet"),
  5678. weight: math.unit(210, "lbs"),
  5679. name: "Front",
  5680. image: {
  5681. source: "./media/characters/rain-fallen/front.svg"
  5682. }
  5683. },
  5684. side: {
  5685. height: math.unit(6, "feet"),
  5686. weight: math.unit(210, "lbs"),
  5687. name: "Side",
  5688. image: {
  5689. source: "./media/characters/rain-fallen/side.svg"
  5690. }
  5691. },
  5692. back: {
  5693. height: math.unit(6, "feet"),
  5694. weight: math.unit(210, "lbs"),
  5695. name: "Back",
  5696. image: {
  5697. source: "./media/characters/rain-fallen/back.svg"
  5698. }
  5699. },
  5700. feral: {
  5701. height: math.unit(9, "feet"),
  5702. weight: math.unit(700, "lbs"),
  5703. name: "Feral",
  5704. image: {
  5705. source: "./media/characters/rain-fallen/feral.svg"
  5706. }
  5707. },
  5708. },
  5709. [
  5710. {
  5711. name: "Meddling with Mortals",
  5712. height: math.unit(8 + 8/12, "feet")
  5713. },
  5714. {
  5715. name: "Normal",
  5716. height: math.unit(5, "meter")
  5717. },
  5718. {
  5719. name: "Macro",
  5720. height: math.unit(150, "meter"),
  5721. default: true
  5722. },
  5723. {
  5724. name: "Megamacro",
  5725. height: math.unit(278e6, "meter")
  5726. },
  5727. {
  5728. name: "Gigamacro",
  5729. height: math.unit(2e9, "meter")
  5730. },
  5731. {
  5732. name: "Teramacro",
  5733. height: math.unit(8e12, "meter")
  5734. },
  5735. {
  5736. name: "Devourer",
  5737. height: math.unit(14, "zettameters")
  5738. },
  5739. {
  5740. name: "Scarlet King",
  5741. height: math.unit(18, "yottameters")
  5742. },
  5743. {
  5744. name: "Void",
  5745. height: math.unit(1e88, "yottameters")
  5746. }
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5751. {
  5752. standing: {
  5753. height: math.unit(6, "feet"),
  5754. weight: math.unit(180, "lbs"),
  5755. name: "Standing",
  5756. image: {
  5757. source: "./media/characters/zaakira/standing.svg",
  5758. extra: 1599/1504,
  5759. bottom: 39/1638
  5760. }
  5761. },
  5762. laying: {
  5763. height: math.unit(3.3, "feet"),
  5764. weight: math.unit(180, "lbs"),
  5765. name: "Laying",
  5766. image: {
  5767. source: "./media/characters/zaakira/laying.svg"
  5768. }
  5769. },
  5770. },
  5771. [
  5772. {
  5773. name: "Normal",
  5774. height: math.unit(12, "feet")
  5775. },
  5776. {
  5777. name: "Macro",
  5778. height: math.unit(279, "feet"),
  5779. default: true
  5780. }
  5781. ]
  5782. ))
  5783. characterMakers.push(() => makeCharacter(
  5784. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5785. {
  5786. femSfw: {
  5787. height: math.unit(8, "feet"),
  5788. weight: math.unit(350, "lb"),
  5789. name: "Fem",
  5790. image: {
  5791. source: "./media/characters/sigvald/fem-sfw.svg",
  5792. extra: 182 / 164,
  5793. bottom: 8.7 / 190.5
  5794. }
  5795. },
  5796. femNsfw: {
  5797. height: math.unit(8, "feet"),
  5798. weight: math.unit(350, "lb"),
  5799. name: "Fem (NSFW)",
  5800. image: {
  5801. source: "./media/characters/sigvald/fem-nsfw.svg",
  5802. extra: 182 / 164,
  5803. bottom: 8.7 / 190.5
  5804. }
  5805. },
  5806. maleNsfw: {
  5807. height: math.unit(8, "feet"),
  5808. weight: math.unit(350, "lb"),
  5809. name: "Male (NSFW)",
  5810. image: {
  5811. source: "./media/characters/sigvald/male-nsfw.svg",
  5812. extra: 182 / 164,
  5813. bottom: 8.7 / 190.5
  5814. }
  5815. },
  5816. hermNsfw: {
  5817. height: math.unit(8, "feet"),
  5818. weight: math.unit(350, "lb"),
  5819. name: "Herm (NSFW)",
  5820. image: {
  5821. source: "./media/characters/sigvald/herm-nsfw.svg",
  5822. extra: 182 / 164,
  5823. bottom: 8.7 / 190.5
  5824. }
  5825. },
  5826. dick: {
  5827. height: math.unit(2.36, "feet"),
  5828. name: "Dick",
  5829. image: {
  5830. source: "./media/characters/sigvald/dick.svg"
  5831. }
  5832. },
  5833. eye: {
  5834. height: math.unit(0.31, "feet"),
  5835. name: "Eye",
  5836. image: {
  5837. source: "./media/characters/sigvald/eye.svg"
  5838. }
  5839. },
  5840. mouth: {
  5841. height: math.unit(0.92, "feet"),
  5842. name: "Mouth",
  5843. image: {
  5844. source: "./media/characters/sigvald/mouth.svg"
  5845. }
  5846. },
  5847. paws: {
  5848. height: math.unit(2.2, "feet"),
  5849. name: "Paws",
  5850. image: {
  5851. source: "./media/characters/sigvald/paws.svg"
  5852. }
  5853. }
  5854. },
  5855. [
  5856. {
  5857. name: "Normal",
  5858. height: math.unit(8, "feet")
  5859. },
  5860. {
  5861. name: "Large",
  5862. height: math.unit(12, "feet")
  5863. },
  5864. {
  5865. name: "Larger",
  5866. height: math.unit(20, "feet")
  5867. },
  5868. {
  5869. name: "Macro",
  5870. height: math.unit(150, "feet")
  5871. },
  5872. {
  5873. name: "Macro+",
  5874. height: math.unit(200, "feet"),
  5875. default: true
  5876. },
  5877. ]
  5878. ))
  5879. characterMakers.push(() => makeCharacter(
  5880. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5881. {
  5882. side: {
  5883. height: math.unit(12, "feet"),
  5884. weight: math.unit(2000, "kg"),
  5885. name: "Side",
  5886. image: {
  5887. source: "./media/characters/scott/side.svg",
  5888. extra: 754 / 724,
  5889. bottom: 0.069
  5890. }
  5891. },
  5892. upright: {
  5893. height: math.unit(12, "feet"),
  5894. weight: math.unit(2000, "kg"),
  5895. name: "Upright",
  5896. image: {
  5897. source: "./media/characters/scott/upright.svg",
  5898. extra: 3881 / 3722,
  5899. bottom: 0.05
  5900. }
  5901. },
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(12, "feet"),
  5907. default: true
  5908. },
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5913. {
  5914. side: {
  5915. height: math.unit(8, "meters"),
  5916. weight: math.unit(84755, "lbs"),
  5917. name: "Side",
  5918. image: {
  5919. source: "./media/characters/tobias/side.svg",
  5920. extra: 1474 / 1096,
  5921. bottom: 38.9 / 1513.1235
  5922. }
  5923. },
  5924. },
  5925. [
  5926. {
  5927. name: "Normal",
  5928. height: math.unit(8, "meters"),
  5929. default: true
  5930. },
  5931. ]
  5932. ))
  5933. characterMakers.push(() => makeCharacter(
  5934. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5935. {
  5936. front: {
  5937. height: math.unit(5.5, "feet"),
  5938. weight: math.unit(400, "lbs"),
  5939. name: "Front",
  5940. image: {
  5941. source: "./media/characters/kieran/front.svg",
  5942. extra: 2694 / 2364,
  5943. bottom: 217 / 2908
  5944. }
  5945. },
  5946. side: {
  5947. height: math.unit(5.5, "feet"),
  5948. weight: math.unit(400, "lbs"),
  5949. name: "Side",
  5950. image: {
  5951. source: "./media/characters/kieran/side.svg",
  5952. extra: 875 / 777,
  5953. bottom: 84.6 / 959
  5954. }
  5955. },
  5956. },
  5957. [
  5958. {
  5959. name: "Normal",
  5960. height: math.unit(5.5, "feet"),
  5961. default: true
  5962. },
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5967. {
  5968. side: {
  5969. height: math.unit(2, "meters"),
  5970. weight: math.unit(70, "kg"),
  5971. name: "Side",
  5972. image: {
  5973. source: "./media/characters/sanya/side.svg",
  5974. bottom: 0.02,
  5975. extra: 1.02
  5976. }
  5977. },
  5978. },
  5979. [
  5980. {
  5981. name: "Small",
  5982. height: math.unit(2, "meters")
  5983. },
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(3, "meters")
  5987. },
  5988. {
  5989. name: "Macro",
  5990. height: math.unit(16, "meters"),
  5991. default: true
  5992. },
  5993. ]
  5994. ))
  5995. characterMakers.push(() => makeCharacter(
  5996. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5997. {
  5998. front: {
  5999. height: math.unit(2, "meters"),
  6000. weight: math.unit(120, "kg"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/miranda/front.svg",
  6004. extra: 195 / 185,
  6005. bottom: 10.9 / 206.5
  6006. }
  6007. },
  6008. back: {
  6009. height: math.unit(2, "meters"),
  6010. weight: math.unit(120, "kg"),
  6011. name: "Back",
  6012. image: {
  6013. source: "./media/characters/miranda/back.svg",
  6014. extra: 201 / 193,
  6015. bottom: 2.3 / 203.7
  6016. }
  6017. },
  6018. },
  6019. [
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(10, "feet"),
  6023. default: true
  6024. }
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "James", species: ["deer"], tags: ["anthro"] },
  6029. {
  6030. side: {
  6031. height: math.unit(2, "meters"),
  6032. weight: math.unit(100, "kg"),
  6033. name: "Front",
  6034. image: {
  6035. source: "./media/characters/james/front.svg",
  6036. extra: 10 / 8.5
  6037. }
  6038. },
  6039. },
  6040. [
  6041. {
  6042. name: "Normal",
  6043. height: math.unit(8.5, "feet"),
  6044. default: true
  6045. }
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6050. {
  6051. side: {
  6052. height: math.unit(9.5, "feet"),
  6053. weight: math.unit(2500, "lbs"),
  6054. name: "Side",
  6055. image: {
  6056. source: "./media/characters/heather/side.svg"
  6057. }
  6058. },
  6059. },
  6060. [
  6061. {
  6062. name: "Normal",
  6063. height: math.unit(9.5, "feet"),
  6064. default: true
  6065. }
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6070. {
  6071. side: {
  6072. height: math.unit(6.5, "feet"),
  6073. weight: math.unit(400, "lbs"),
  6074. name: "Side",
  6075. image: {
  6076. source: "./media/characters/lukas/side.svg",
  6077. extra: 7.25 / 6.5
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Normal",
  6084. height: math.unit(6.5, "feet"),
  6085. default: true
  6086. }
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6091. {
  6092. side: {
  6093. height: math.unit(5, "feet"),
  6094. weight: math.unit(3000, "lbs"),
  6095. name: "Side",
  6096. image: {
  6097. source: "./media/characters/louise/side.svg"
  6098. }
  6099. },
  6100. },
  6101. [
  6102. {
  6103. name: "Normal",
  6104. height: math.unit(5, "feet"),
  6105. default: true
  6106. }
  6107. ]
  6108. ))
  6109. characterMakers.push(() => makeCharacter(
  6110. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6111. {
  6112. side: {
  6113. height: math.unit(6, "feet"),
  6114. weight: math.unit(150, "lbs"),
  6115. name: "Side",
  6116. image: {
  6117. source: "./media/characters/ramona/side.svg",
  6118. extra: 871/854,
  6119. bottom: 41/912
  6120. }
  6121. },
  6122. },
  6123. [
  6124. {
  6125. name: "Normal",
  6126. height: math.unit(6 + 4/12, "feet")
  6127. },
  6128. {
  6129. name: "Minimacro",
  6130. height: math.unit(5.3, "meters"),
  6131. default: true
  6132. },
  6133. {
  6134. name: "Macro",
  6135. height: math.unit(20, "stories")
  6136. },
  6137. {
  6138. name: "Macro+",
  6139. height: math.unit(50, "stories")
  6140. },
  6141. ]
  6142. ))
  6143. characterMakers.push(() => makeCharacter(
  6144. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6145. {
  6146. standing: {
  6147. height: math.unit(5.75, "feet"),
  6148. weight: math.unit(160, "lbs"),
  6149. name: "Standing",
  6150. image: {
  6151. source: "./media/characters/deerpuff/standing.svg",
  6152. extra: 682 / 624
  6153. }
  6154. },
  6155. sitting: {
  6156. height: math.unit(5.75 / 1.79, "feet"),
  6157. weight: math.unit(160, "lbs"),
  6158. name: "Sitting",
  6159. image: {
  6160. source: "./media/characters/deerpuff/sitting.svg",
  6161. bottom: 44 / 400,
  6162. extra: 1
  6163. }
  6164. },
  6165. taurLaying: {
  6166. height: math.unit(6, "feet"),
  6167. weight: math.unit(400, "lbs"),
  6168. name: "Taur (Laying)",
  6169. image: {
  6170. source: "./media/characters/deerpuff/taur-laying.svg"
  6171. }
  6172. },
  6173. },
  6174. [
  6175. {
  6176. name: "Puffball",
  6177. height: math.unit(6, "inches")
  6178. },
  6179. {
  6180. name: "Normalpuff",
  6181. height: math.unit(5.75, "feet")
  6182. },
  6183. {
  6184. name: "Macropuff",
  6185. height: math.unit(1500, "feet"),
  6186. default: true
  6187. },
  6188. {
  6189. name: "Megapuff",
  6190. height: math.unit(500, "miles")
  6191. },
  6192. {
  6193. name: "Gigapuff",
  6194. height: math.unit(250000, "miles")
  6195. },
  6196. {
  6197. name: "Omegapuff",
  6198. height: math.unit(1000, "lightyears")
  6199. },
  6200. ]
  6201. ))
  6202. characterMakers.push(() => makeCharacter(
  6203. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6204. {
  6205. stomping: {
  6206. height: math.unit(6, "feet"),
  6207. weight: math.unit(170, "lbs"),
  6208. name: "Stomping",
  6209. image: {
  6210. source: "./media/characters/vivian/stomping.svg"
  6211. }
  6212. },
  6213. sitting: {
  6214. height: math.unit(6 / 1.75, "feet"),
  6215. weight: math.unit(170, "lbs"),
  6216. name: "Sitting",
  6217. image: {
  6218. source: "./media/characters/vivian/sitting.svg",
  6219. bottom: 1 / 6.4,
  6220. extra: 1,
  6221. }
  6222. },
  6223. },
  6224. [
  6225. {
  6226. name: "Normal",
  6227. height: math.unit(7, "feet"),
  6228. default: true
  6229. },
  6230. {
  6231. name: "Macro",
  6232. height: math.unit(10, "stories")
  6233. },
  6234. {
  6235. name: "Macro+",
  6236. height: math.unit(30, "stories")
  6237. },
  6238. {
  6239. name: "Megamacro",
  6240. height: math.unit(10, "miles")
  6241. },
  6242. {
  6243. name: "Megamacro+",
  6244. height: math.unit(2750000, "meters")
  6245. },
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(6, "feet"),
  6253. weight: math.unit(160, "lbs"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/prince/front.svg",
  6257. extra: 1938/1682,
  6258. bottom: 45/1983
  6259. }
  6260. },
  6261. back: {
  6262. height: math.unit(6, "feet"),
  6263. weight: math.unit(160, "lbs"),
  6264. name: "Back",
  6265. image: {
  6266. source: "./media/characters/prince/back.svg",
  6267. extra: 1955/1726,
  6268. bottom: 6/1961
  6269. }
  6270. },
  6271. },
  6272. [
  6273. {
  6274. name: "Normal",
  6275. height: math.unit(7.75, "feet"),
  6276. default: true
  6277. },
  6278. {
  6279. name: "Not cute",
  6280. height: math.unit(17, "feet")
  6281. },
  6282. {
  6283. name: "I said NOT",
  6284. height: math.unit(91, "feet")
  6285. },
  6286. {
  6287. name: "Please stop",
  6288. height: math.unit(560, "feet")
  6289. },
  6290. {
  6291. name: "What have you done",
  6292. height: math.unit(2200, "feet")
  6293. },
  6294. {
  6295. name: "Deer God",
  6296. height: math.unit(3.6, "miles")
  6297. },
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6302. {
  6303. standing: {
  6304. height: math.unit(6, "feet"),
  6305. weight: math.unit(300, "lbs"),
  6306. name: "Standing",
  6307. image: {
  6308. source: "./media/characters/psymon/standing.svg",
  6309. extra: 1888 / 1810,
  6310. bottom: 0.05
  6311. }
  6312. },
  6313. slithering: {
  6314. height: math.unit(6, "feet"),
  6315. weight: math.unit(300, "lbs"),
  6316. name: "Slithering",
  6317. image: {
  6318. source: "./media/characters/psymon/slithering.svg",
  6319. extra: 1330 / 1224
  6320. }
  6321. },
  6322. slitheringAlt: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(300, "lbs"),
  6325. name: "Slithering (Alt)",
  6326. image: {
  6327. source: "./media/characters/psymon/slithering-alt.svg",
  6328. extra: 1330 / 1224
  6329. }
  6330. },
  6331. },
  6332. [
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(11.25, "feet"),
  6336. default: true
  6337. },
  6338. {
  6339. name: "Large",
  6340. height: math.unit(27, "feet")
  6341. },
  6342. {
  6343. name: "Giant",
  6344. height: math.unit(87, "feet")
  6345. },
  6346. {
  6347. name: "Macro",
  6348. height: math.unit(365, "feet")
  6349. },
  6350. {
  6351. name: "Megamacro",
  6352. height: math.unit(3, "miles")
  6353. },
  6354. {
  6355. name: "World Serpent",
  6356. height: math.unit(8000, "miles")
  6357. },
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(180, "lbs"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/daimos/front.svg",
  6369. extra: 4160 / 3897,
  6370. bottom: 0.021
  6371. }
  6372. }
  6373. },
  6374. [
  6375. {
  6376. name: "Normal",
  6377. height: math.unit(8, "feet"),
  6378. default: true
  6379. },
  6380. {
  6381. name: "Big Dog",
  6382. height: math.unit(22, "feet")
  6383. },
  6384. {
  6385. name: "Macro",
  6386. height: math.unit(127, "feet")
  6387. },
  6388. {
  6389. name: "Megamacro",
  6390. height: math.unit(3600, "feet")
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6396. {
  6397. side: {
  6398. height: math.unit(6, "feet"),
  6399. weight: math.unit(180, "lbs"),
  6400. name: "Side",
  6401. image: {
  6402. source: "./media/characters/blake/side.svg",
  6403. extra: 1212 / 1120,
  6404. bottom: 0.05
  6405. }
  6406. },
  6407. crouched: {
  6408. height: math.unit(6 * 0.57, "feet"),
  6409. weight: math.unit(180, "lbs"),
  6410. name: "Crouched",
  6411. image: {
  6412. source: "./media/characters/blake/crouched.svg",
  6413. extra: 840 / 587,
  6414. bottom: 0.04
  6415. }
  6416. },
  6417. bent: {
  6418. height: math.unit(6 * 0.75, "feet"),
  6419. weight: math.unit(180, "lbs"),
  6420. name: "Bent",
  6421. image: {
  6422. source: "./media/characters/blake/bent.svg",
  6423. extra: 592 / 544,
  6424. bottom: 0.035
  6425. }
  6426. },
  6427. },
  6428. [
  6429. {
  6430. name: "Normal",
  6431. height: math.unit(8 + 1 / 6, "feet"),
  6432. default: true
  6433. },
  6434. {
  6435. name: "Big Backside",
  6436. height: math.unit(37, "feet")
  6437. },
  6438. {
  6439. name: "Subway Shredder",
  6440. height: math.unit(72, "feet")
  6441. },
  6442. {
  6443. name: "City Carver",
  6444. height: math.unit(1675, "feet")
  6445. },
  6446. {
  6447. name: "Tectonic Tweaker",
  6448. height: math.unit(2300, "miles")
  6449. },
  6450. ]
  6451. ))
  6452. characterMakers.push(() => makeCharacter(
  6453. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6454. {
  6455. front: {
  6456. height: math.unit(6, "feet"),
  6457. weight: math.unit(180, "lbs"),
  6458. name: "Front",
  6459. image: {
  6460. source: "./media/characters/guisetto/front.svg",
  6461. extra: 856 / 817,
  6462. bottom: 0.06
  6463. }
  6464. },
  6465. airborne: {
  6466. height: math.unit(6, "feet"),
  6467. weight: math.unit(180, "lbs"),
  6468. name: "Airborne",
  6469. image: {
  6470. source: "./media/characters/guisetto/airborne.svg",
  6471. extra: 584 / 525
  6472. }
  6473. },
  6474. },
  6475. [
  6476. {
  6477. name: "Normal",
  6478. height: math.unit(10 + 11 / 12, "feet"),
  6479. default: true
  6480. },
  6481. {
  6482. name: "Large",
  6483. height: math.unit(35, "feet")
  6484. },
  6485. {
  6486. name: "Macro",
  6487. height: math.unit(475, "feet")
  6488. },
  6489. ]
  6490. ))
  6491. characterMakers.push(() => makeCharacter(
  6492. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6493. {
  6494. front: {
  6495. height: math.unit(6, "feet"),
  6496. weight: math.unit(180, "lbs"),
  6497. name: "Front",
  6498. image: {
  6499. source: "./media/characters/luxor/front.svg",
  6500. extra: 2940 / 2152
  6501. }
  6502. },
  6503. back: {
  6504. height: math.unit(6, "feet"),
  6505. weight: math.unit(180, "lbs"),
  6506. name: "Back",
  6507. image: {
  6508. source: "./media/characters/luxor/back.svg",
  6509. extra: 1083 / 960
  6510. }
  6511. },
  6512. },
  6513. [
  6514. {
  6515. name: "Normal",
  6516. height: math.unit(5 + 5 / 6, "feet"),
  6517. default: true
  6518. },
  6519. {
  6520. name: "Lamp",
  6521. height: math.unit(50, "feet")
  6522. },
  6523. {
  6524. name: "Lämp",
  6525. height: math.unit(300, "feet")
  6526. },
  6527. {
  6528. name: "The sun is a lamp",
  6529. height: math.unit(250000, "miles")
  6530. },
  6531. ]
  6532. ))
  6533. characterMakers.push(() => makeCharacter(
  6534. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6535. {
  6536. front: {
  6537. height: math.unit(6, "feet"),
  6538. weight: math.unit(50, "lbs"),
  6539. name: "Front",
  6540. image: {
  6541. source: "./media/characters/huoyan/front.svg"
  6542. }
  6543. },
  6544. side: {
  6545. height: math.unit(6, "feet"),
  6546. weight: math.unit(180, "lbs"),
  6547. name: "Side",
  6548. image: {
  6549. source: "./media/characters/huoyan/side.svg"
  6550. }
  6551. },
  6552. },
  6553. [
  6554. {
  6555. name: "Chef",
  6556. height: math.unit(9, "feet")
  6557. },
  6558. {
  6559. name: "Normal",
  6560. height: math.unit(65, "feet"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Macro",
  6565. height: math.unit(780, "feet")
  6566. },
  6567. {
  6568. name: "Flaming Mountain",
  6569. height: math.unit(4.8, "miles")
  6570. },
  6571. {
  6572. name: "Celestial",
  6573. height: math.unit(765000, "miles")
  6574. },
  6575. ]
  6576. ))
  6577. characterMakers.push(() => makeCharacter(
  6578. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6579. {
  6580. front: {
  6581. height: math.unit(5 + 3 / 4, "feet"),
  6582. weight: math.unit(120, "lbs"),
  6583. name: "Front",
  6584. image: {
  6585. source: "./media/characters/tails/front.svg"
  6586. }
  6587. }
  6588. },
  6589. [
  6590. {
  6591. name: "Normal",
  6592. height: math.unit(5 + 3 / 4, "feet"),
  6593. default: true
  6594. }
  6595. ]
  6596. ))
  6597. characterMakers.push(() => makeCharacter(
  6598. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6599. {
  6600. front: {
  6601. height: math.unit(4, "feet"),
  6602. weight: math.unit(50, "lbs"),
  6603. name: "Front",
  6604. image: {
  6605. source: "./media/characters/rainy/front.svg"
  6606. }
  6607. }
  6608. },
  6609. [
  6610. {
  6611. name: "Macro",
  6612. height: math.unit(800, "feet"),
  6613. default: true
  6614. }
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6619. {
  6620. front: {
  6621. height: math.unit(6, "feet"),
  6622. weight: math.unit(150, "lbs"),
  6623. name: "Front",
  6624. image: {
  6625. source: "./media/characters/rainier/front.svg"
  6626. }
  6627. }
  6628. },
  6629. [
  6630. {
  6631. name: "Micro",
  6632. height: math.unit(2, "mm"),
  6633. default: true
  6634. }
  6635. ]
  6636. ))
  6637. characterMakers.push(() => makeCharacter(
  6638. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6639. {
  6640. front: {
  6641. height: math.unit(8 + 4/12, "feet"),
  6642. weight: math.unit(450, "kilograms"),
  6643. volume: math.unit(5, "cups"),
  6644. name: "Front",
  6645. image: {
  6646. source: "./media/characters/andy-renard/front.svg",
  6647. extra: 1839/1726,
  6648. bottom: 134/1973
  6649. }
  6650. },
  6651. back: {
  6652. height: math.unit(8 + 4/12, "feet"),
  6653. weight: math.unit(450, "kilograms"),
  6654. volume: math.unit(5, "cups"),
  6655. name: "Back",
  6656. image: {
  6657. source: "./media/characters/andy-renard/back.svg",
  6658. extra: 1838/1710,
  6659. bottom: 105/1943
  6660. }
  6661. },
  6662. },
  6663. [
  6664. {
  6665. name: "Tall",
  6666. height: math.unit(8 + 4/12, "feet")
  6667. },
  6668. {
  6669. name: "Mini Macro",
  6670. height: math.unit(15, "feet"),
  6671. default: true
  6672. },
  6673. {
  6674. name: "Macro",
  6675. height: math.unit(100, "feet")
  6676. },
  6677. {
  6678. name: "Mega Macro",
  6679. height: math.unit(1000, "feet")
  6680. },
  6681. {
  6682. name: "Giga Macro",
  6683. height: math.unit(10, "miles")
  6684. },
  6685. {
  6686. name: "God Macro",
  6687. height: math.unit(1, "multiverse")
  6688. },
  6689. ]
  6690. ))
  6691. characterMakers.push(() => makeCharacter(
  6692. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6693. {
  6694. front: {
  6695. height: math.unit(6, "feet"),
  6696. weight: math.unit(210, "lbs"),
  6697. name: "Front",
  6698. image: {
  6699. source: "./media/characters/cimmaron/front-sfw.svg",
  6700. extra: 701 / 676,
  6701. bottom: 0.046
  6702. }
  6703. },
  6704. back: {
  6705. height: math.unit(6, "feet"),
  6706. weight: math.unit(210, "lbs"),
  6707. name: "Back",
  6708. image: {
  6709. source: "./media/characters/cimmaron/back-sfw.svg",
  6710. extra: 701 / 676,
  6711. bottom: 0.046
  6712. }
  6713. },
  6714. frontNsfw: {
  6715. height: math.unit(6, "feet"),
  6716. weight: math.unit(210, "lbs"),
  6717. name: "Front (NSFW)",
  6718. image: {
  6719. source: "./media/characters/cimmaron/front-nsfw.svg",
  6720. extra: 701 / 676,
  6721. bottom: 0.046
  6722. }
  6723. },
  6724. backNsfw: {
  6725. height: math.unit(6, "feet"),
  6726. weight: math.unit(210, "lbs"),
  6727. name: "Back (NSFW)",
  6728. image: {
  6729. source: "./media/characters/cimmaron/back-nsfw.svg",
  6730. extra: 701 / 676,
  6731. bottom: 0.046
  6732. }
  6733. },
  6734. dick: {
  6735. height: math.unit(1.714, "feet"),
  6736. name: "Dick",
  6737. image: {
  6738. source: "./media/characters/cimmaron/dick.svg"
  6739. }
  6740. },
  6741. },
  6742. [
  6743. {
  6744. name: "Normal",
  6745. height: math.unit(6, "feet"),
  6746. default: true
  6747. },
  6748. {
  6749. name: "Macro Mayor",
  6750. height: math.unit(350, "meters")
  6751. },
  6752. ]
  6753. ))
  6754. characterMakers.push(() => makeCharacter(
  6755. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6756. {
  6757. front: {
  6758. height: math.unit(6, "feet"),
  6759. weight: math.unit(200, "lbs"),
  6760. name: "Front",
  6761. image: {
  6762. source: "./media/characters/akari/front.svg",
  6763. extra: 962 / 901,
  6764. bottom: 0.04
  6765. }
  6766. }
  6767. },
  6768. [
  6769. {
  6770. name: "Micro",
  6771. height: math.unit(5, "inches"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Normal",
  6776. height: math.unit(7, "feet")
  6777. },
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(140, "lbs"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/cynosura/front.svg",
  6789. extra: 437/410,
  6790. bottom: 9/446
  6791. }
  6792. },
  6793. back: {
  6794. height: math.unit(6, "feet"),
  6795. weight: math.unit(140, "lbs"),
  6796. name: "Back",
  6797. image: {
  6798. source: "./media/characters/cynosura/back.svg",
  6799. extra: 1304/1160,
  6800. bottom: 71/1375
  6801. }
  6802. },
  6803. },
  6804. [
  6805. {
  6806. name: "Micro",
  6807. height: math.unit(4, "inches")
  6808. },
  6809. {
  6810. name: "Normal",
  6811. height: math.unit(5.75, "feet"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Tall",
  6816. height: math.unit(10, "feet")
  6817. },
  6818. {
  6819. name: "Big",
  6820. height: math.unit(20, "feet")
  6821. },
  6822. {
  6823. name: "Macro",
  6824. height: math.unit(50, "feet")
  6825. },
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(13 + 2/12, "feet"),
  6833. weight: math.unit(800, "kg"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/gin/front.svg",
  6837. extra: 1312/1191,
  6838. bottom: 45/1357
  6839. }
  6840. },
  6841. mouth: {
  6842. height: math.unit(2.39 * 1.8, "feet"),
  6843. name: "Mouth",
  6844. image: {
  6845. source: "./media/characters/gin/mouth.svg"
  6846. }
  6847. },
  6848. hand: {
  6849. height: math.unit(1.57 * 2.19, "feet"),
  6850. name: "Hand",
  6851. image: {
  6852. source: "./media/characters/gin/hand.svg"
  6853. }
  6854. },
  6855. foot: {
  6856. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6857. name: "Foot",
  6858. image: {
  6859. source: "./media/characters/gin/foot.svg"
  6860. }
  6861. },
  6862. sole: {
  6863. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6864. name: "Sole",
  6865. image: {
  6866. source: "./media/characters/gin/sole.svg"
  6867. }
  6868. },
  6869. },
  6870. [
  6871. {
  6872. name: "Very Small",
  6873. height: math.unit(13 + 2 / 12, "feet")
  6874. },
  6875. {
  6876. name: "Micro",
  6877. height: math.unit(600, "miles")
  6878. },
  6879. {
  6880. name: "Regular",
  6881. height: math.unit(20, "earths"),
  6882. default: true
  6883. },
  6884. {
  6885. name: "Macro",
  6886. height: math.unit(2.2, "solarradii")
  6887. },
  6888. {
  6889. name: "Teramacro",
  6890. height: math.unit(1.2, "galaxies")
  6891. },
  6892. {
  6893. name: "Omegamacro",
  6894. height: math.unit(200, "universes")
  6895. },
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6900. {
  6901. front: {
  6902. height: math.unit(6 + 1 / 6, "feet"),
  6903. weight: math.unit(178, "lbs"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/guy/front.svg"
  6907. }
  6908. }
  6909. },
  6910. [
  6911. {
  6912. name: "Normal",
  6913. height: math.unit(6 + 1 / 6, "feet"),
  6914. default: true
  6915. },
  6916. {
  6917. name: "Large",
  6918. height: math.unit(25 + 7 / 12, "feet")
  6919. },
  6920. {
  6921. name: "Macro",
  6922. height: math.unit(60 + 9 / 12, "feet")
  6923. },
  6924. {
  6925. name: "Macro+",
  6926. height: math.unit(246, "feet")
  6927. },
  6928. {
  6929. name: "Macro++",
  6930. height: math.unit(878, "feet")
  6931. }
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6936. {
  6937. front: {
  6938. height: math.unit(9, "feet"),
  6939. weight: math.unit(800, "lbs"),
  6940. name: "Front",
  6941. image: {
  6942. source: "./media/characters/tiberius/front.svg",
  6943. extra: 2295 / 2071
  6944. }
  6945. },
  6946. back: {
  6947. height: math.unit(9, "feet"),
  6948. weight: math.unit(800, "lbs"),
  6949. name: "Back",
  6950. image: {
  6951. source: "./media/characters/tiberius/back.svg",
  6952. extra: 2373 / 2160
  6953. }
  6954. },
  6955. },
  6956. [
  6957. {
  6958. name: "Normal",
  6959. height: math.unit(9, "feet"),
  6960. default: true
  6961. }
  6962. ]
  6963. ))
  6964. characterMakers.push(() => makeCharacter(
  6965. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6966. {
  6967. front: {
  6968. height: math.unit(6, "feet"),
  6969. weight: math.unit(600, "lbs"),
  6970. name: "Front",
  6971. image: {
  6972. source: "./media/characters/surgo/front.svg",
  6973. extra: 3591 / 2227
  6974. }
  6975. },
  6976. back: {
  6977. height: math.unit(6, "feet"),
  6978. weight: math.unit(600, "lbs"),
  6979. name: "Back",
  6980. image: {
  6981. source: "./media/characters/surgo/back.svg",
  6982. extra: 3557 / 2228
  6983. }
  6984. },
  6985. laying: {
  6986. height: math.unit(6 * 0.85, "feet"),
  6987. weight: math.unit(600, "lbs"),
  6988. name: "Laying",
  6989. image: {
  6990. source: "./media/characters/surgo/laying.svg"
  6991. }
  6992. },
  6993. },
  6994. [
  6995. {
  6996. name: "Normal",
  6997. height: math.unit(6, "feet"),
  6998. default: true
  6999. }
  7000. ]
  7001. ))
  7002. characterMakers.push(() => makeCharacter(
  7003. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7004. {
  7005. side: {
  7006. height: math.unit(6, "feet"),
  7007. weight: math.unit(150, "lbs"),
  7008. name: "Side",
  7009. image: {
  7010. source: "./media/characters/cibus/side.svg",
  7011. extra: 800 / 400
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(6, "feet"),
  7019. default: true
  7020. }
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(240, "lbs"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/nibbles/front.svg"
  7032. }
  7033. },
  7034. side: {
  7035. height: math.unit(6, "feet"),
  7036. weight: math.unit(240, "lbs"),
  7037. name: "Side",
  7038. image: {
  7039. source: "./media/characters/nibbles/side.svg"
  7040. }
  7041. },
  7042. },
  7043. [
  7044. {
  7045. name: "Normal",
  7046. height: math.unit(9, "feet"),
  7047. default: true
  7048. }
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7053. {
  7054. side: {
  7055. height: math.unit(5 + 1 / 6, "feet"),
  7056. weight: math.unit(130, "lbs"),
  7057. name: "Side",
  7058. image: {
  7059. source: "./media/characters/rikky/side.svg",
  7060. extra: 851 / 801
  7061. }
  7062. },
  7063. },
  7064. [
  7065. {
  7066. name: "Normal",
  7067. height: math.unit(5 + 1 / 6, "feet")
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(152, "feet"),
  7072. default: true
  7073. },
  7074. {
  7075. name: "Megamacro",
  7076. height: math.unit(7, "miles")
  7077. }
  7078. ]
  7079. ))
  7080. characterMakers.push(() => makeCharacter(
  7081. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7082. {
  7083. side: {
  7084. height: math.unit(370, "cm"),
  7085. weight: math.unit(350, "lbs"),
  7086. name: "Side",
  7087. image: {
  7088. source: "./media/characters/malfressa/side.svg"
  7089. }
  7090. },
  7091. walking: {
  7092. height: math.unit(370, "cm"),
  7093. weight: math.unit(350, "lbs"),
  7094. name: "Walking",
  7095. image: {
  7096. source: "./media/characters/malfressa/walking.svg"
  7097. }
  7098. },
  7099. feral: {
  7100. height: math.unit(2500, "cm"),
  7101. weight: math.unit(100000, "lbs"),
  7102. name: "Feral",
  7103. image: {
  7104. source: "./media/characters/malfressa/feral.svg",
  7105. extra: 2108 / 837,
  7106. bottom: 0.02
  7107. }
  7108. },
  7109. },
  7110. [
  7111. {
  7112. name: "Normal",
  7113. height: math.unit(370, "cm")
  7114. },
  7115. {
  7116. name: "Macro",
  7117. height: math.unit(300, "meters"),
  7118. default: true
  7119. }
  7120. ]
  7121. ))
  7122. characterMakers.push(() => makeCharacter(
  7123. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7124. {
  7125. front: {
  7126. height: math.unit(6, "feet"),
  7127. weight: math.unit(60, "kg"),
  7128. name: "Front",
  7129. image: {
  7130. source: "./media/characters/jaro/front.svg",
  7131. extra: 845/817,
  7132. bottom: 45/890
  7133. }
  7134. },
  7135. back: {
  7136. height: math.unit(6, "feet"),
  7137. weight: math.unit(60, "kg"),
  7138. name: "Back",
  7139. image: {
  7140. source: "./media/characters/jaro/back.svg",
  7141. extra: 847/817,
  7142. bottom: 34/881
  7143. }
  7144. },
  7145. },
  7146. [
  7147. {
  7148. name: "Micro",
  7149. height: math.unit(7, "inches")
  7150. },
  7151. {
  7152. name: "Normal",
  7153. height: math.unit(5.5, "feet"),
  7154. default: true
  7155. },
  7156. {
  7157. name: "Minimacro",
  7158. height: math.unit(20, "feet")
  7159. },
  7160. {
  7161. name: "Macro",
  7162. height: math.unit(200, "meters")
  7163. }
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7168. {
  7169. front: {
  7170. height: math.unit(6, "feet"),
  7171. weight: math.unit(195, "lb"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/rogue/front.svg"
  7175. }
  7176. },
  7177. },
  7178. [
  7179. {
  7180. name: "Macro",
  7181. height: math.unit(90, "feet"),
  7182. default: true
  7183. },
  7184. ]
  7185. ))
  7186. characterMakers.push(() => makeCharacter(
  7187. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7188. {
  7189. standing: {
  7190. height: math.unit(5 + 8 / 12, "feet"),
  7191. weight: math.unit(140, "lb"),
  7192. name: "Standing",
  7193. image: {
  7194. source: "./media/characters/piper/standing.svg",
  7195. extra: 1440/1284,
  7196. bottom: 66/1506
  7197. }
  7198. },
  7199. running: {
  7200. height: math.unit(5 + 8 / 12, "feet"),
  7201. weight: math.unit(140, "lb"),
  7202. name: "Running",
  7203. image: {
  7204. source: "./media/characters/piper/running.svg",
  7205. extra: 3948/3655,
  7206. bottom: 0/3948
  7207. }
  7208. },
  7209. sole: {
  7210. height: math.unit(0.81, "feet"),
  7211. weight: math.unit(2, "kg"),
  7212. name: "Sole",
  7213. image: {
  7214. source: "./media/characters/piper/sole.svg"
  7215. }
  7216. },
  7217. nipple: {
  7218. height: math.unit(0.25, "feet"),
  7219. weight: math.unit(1.5, "lb"),
  7220. name: "Nipple",
  7221. image: {
  7222. source: "./media/characters/piper/nipple.svg"
  7223. }
  7224. },
  7225. head: {
  7226. height: math.unit(1.1, "feet"),
  7227. name: "Head",
  7228. image: {
  7229. source: "./media/characters/piper/head.svg"
  7230. }
  7231. },
  7232. },
  7233. [
  7234. {
  7235. name: "Micro",
  7236. height: math.unit(2, "inches")
  7237. },
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(5 + 8 / 12, "feet")
  7241. },
  7242. {
  7243. name: "Macro",
  7244. height: math.unit(250, "feet"),
  7245. default: true
  7246. },
  7247. {
  7248. name: "Megamacro",
  7249. height: math.unit(7, "miles")
  7250. },
  7251. ]
  7252. ))
  7253. characterMakers.push(() => makeCharacter(
  7254. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7255. {
  7256. front: {
  7257. height: math.unit(6, "feet"),
  7258. weight: math.unit(220, "lb"),
  7259. name: "Front",
  7260. image: {
  7261. source: "./media/characters/gemini/front.svg"
  7262. }
  7263. },
  7264. back: {
  7265. height: math.unit(6, "feet"),
  7266. weight: math.unit(220, "lb"),
  7267. name: "Back",
  7268. image: {
  7269. source: "./media/characters/gemini/back.svg"
  7270. }
  7271. },
  7272. kneeling: {
  7273. height: math.unit(6 / 1.5, "feet"),
  7274. weight: math.unit(220, "lb"),
  7275. name: "Kneeling",
  7276. image: {
  7277. source: "./media/characters/gemini/kneeling.svg",
  7278. bottom: 0.02
  7279. }
  7280. },
  7281. },
  7282. [
  7283. {
  7284. name: "Macro",
  7285. height: math.unit(300, "meters"),
  7286. default: true
  7287. },
  7288. {
  7289. name: "Megamacro",
  7290. height: math.unit(6900, "meters")
  7291. },
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7296. {
  7297. anthro: {
  7298. height: math.unit(2.35, "meters"),
  7299. weight: math.unit(73, "kg"),
  7300. name: "Anthro",
  7301. image: {
  7302. source: "./media/characters/alicia/anthro.svg",
  7303. extra: 2571 / 2385,
  7304. bottom: 75 / 2648
  7305. }
  7306. },
  7307. paw: {
  7308. height: math.unit(1.32, "feet"),
  7309. name: "Paw",
  7310. image: {
  7311. source: "./media/characters/alicia/paw.svg"
  7312. }
  7313. },
  7314. feral: {
  7315. height: math.unit(1.69, "meters"),
  7316. weight: math.unit(73, "kg"),
  7317. name: "Feral",
  7318. image: {
  7319. source: "./media/characters/alicia/feral.svg",
  7320. extra: 2123 / 1715,
  7321. bottom: 222 / 2349
  7322. }
  7323. },
  7324. },
  7325. [
  7326. {
  7327. name: "Normal",
  7328. height: math.unit(2.35, "meters")
  7329. },
  7330. {
  7331. name: "Macro",
  7332. height: math.unit(60, "meters"),
  7333. default: true
  7334. },
  7335. {
  7336. name: "Megamacro",
  7337. height: math.unit(10000, "kilometers")
  7338. },
  7339. ]
  7340. ))
  7341. characterMakers.push(() => makeCharacter(
  7342. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7343. {
  7344. front: {
  7345. height: math.unit(7, "feet"),
  7346. weight: math.unit(250, "lbs"),
  7347. name: "Front",
  7348. image: {
  7349. source: "./media/characters/archy/front.svg"
  7350. }
  7351. }
  7352. },
  7353. [
  7354. {
  7355. name: "Micro",
  7356. height: math.unit(1, "inch")
  7357. },
  7358. {
  7359. name: "Shorty",
  7360. height: math.unit(5, "feet")
  7361. },
  7362. {
  7363. name: "Normal",
  7364. height: math.unit(7, "feet")
  7365. },
  7366. {
  7367. name: "Macro",
  7368. height: math.unit(600, "meters"),
  7369. default: true
  7370. },
  7371. {
  7372. name: "Megamacro",
  7373. height: math.unit(1, "mile")
  7374. },
  7375. ]
  7376. ))
  7377. characterMakers.push(() => makeCharacter(
  7378. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7379. {
  7380. front: {
  7381. height: math.unit(1.65, "meters"),
  7382. weight: math.unit(74, "kg"),
  7383. name: "Front",
  7384. image: {
  7385. source: "./media/characters/berri/front.svg",
  7386. extra: 857 / 837,
  7387. bottom: 18 / 877
  7388. }
  7389. },
  7390. bum: {
  7391. height: math.unit(1.46, "feet"),
  7392. name: "Bum",
  7393. image: {
  7394. source: "./media/characters/berri/bum.svg"
  7395. }
  7396. },
  7397. mouth: {
  7398. height: math.unit(0.44, "feet"),
  7399. name: "Mouth",
  7400. image: {
  7401. source: "./media/characters/berri/mouth.svg"
  7402. }
  7403. },
  7404. paw: {
  7405. height: math.unit(0.826, "feet"),
  7406. name: "Paw",
  7407. image: {
  7408. source: "./media/characters/berri/paw.svg"
  7409. }
  7410. },
  7411. },
  7412. [
  7413. {
  7414. name: "Normal",
  7415. height: math.unit(1.65, "meters")
  7416. },
  7417. {
  7418. name: "Macro",
  7419. height: math.unit(60, "m"),
  7420. default: true
  7421. },
  7422. {
  7423. name: "Megamacro",
  7424. height: math.unit(9.213, "km")
  7425. },
  7426. {
  7427. name: "Planet Eater",
  7428. height: math.unit(489, "megameters")
  7429. },
  7430. {
  7431. name: "Teramacro",
  7432. height: math.unit(2471635000000, "meters")
  7433. },
  7434. {
  7435. name: "Examacro",
  7436. height: math.unit(8.0624e+26, "meters")
  7437. }
  7438. ]
  7439. ))
  7440. characterMakers.push(() => makeCharacter(
  7441. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7442. {
  7443. front: {
  7444. height: math.unit(1.72, "meters"),
  7445. weight: math.unit(68, "kg"),
  7446. name: "Front",
  7447. image: {
  7448. source: "./media/characters/lexi/front.svg"
  7449. }
  7450. }
  7451. },
  7452. [
  7453. {
  7454. name: "Very Smol",
  7455. height: math.unit(10, "mm")
  7456. },
  7457. {
  7458. name: "Micro",
  7459. height: math.unit(6.8, "cm"),
  7460. default: true
  7461. },
  7462. {
  7463. name: "Normal",
  7464. height: math.unit(1.72, "m")
  7465. }
  7466. ]
  7467. ))
  7468. characterMakers.push(() => makeCharacter(
  7469. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7470. {
  7471. front: {
  7472. height: math.unit(1.69, "meters"),
  7473. weight: math.unit(68, "kg"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/martin/front.svg",
  7477. extra: 596 / 581
  7478. }
  7479. }
  7480. },
  7481. [
  7482. {
  7483. name: "Micro",
  7484. height: math.unit(6.85, "cm"),
  7485. default: true
  7486. },
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(1.69, "m")
  7490. }
  7491. ]
  7492. ))
  7493. characterMakers.push(() => makeCharacter(
  7494. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7495. {
  7496. front: {
  7497. height: math.unit(1.69, "meters"),
  7498. weight: math.unit(68, "kg"),
  7499. name: "Front",
  7500. image: {
  7501. source: "./media/characters/juno/front.svg"
  7502. }
  7503. }
  7504. },
  7505. [
  7506. {
  7507. name: "Micro",
  7508. height: math.unit(7, "cm")
  7509. },
  7510. {
  7511. name: "Normal",
  7512. height: math.unit(1.89, "m")
  7513. },
  7514. {
  7515. name: "Macro",
  7516. height: math.unit(353, "meters"),
  7517. default: true
  7518. }
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7523. {
  7524. front: {
  7525. height: math.unit(1.93, "meters"),
  7526. weight: math.unit(83, "kg"),
  7527. name: "Front",
  7528. image: {
  7529. source: "./media/characters/samantha/front.svg"
  7530. }
  7531. },
  7532. frontClothed: {
  7533. height: math.unit(1.93, "meters"),
  7534. weight: math.unit(83, "kg"),
  7535. name: "Front (Clothed)",
  7536. image: {
  7537. source: "./media/characters/samantha/front-clothed.svg"
  7538. }
  7539. },
  7540. back: {
  7541. height: math.unit(1.93, "meters"),
  7542. weight: math.unit(83, "kg"),
  7543. name: "Back",
  7544. image: {
  7545. source: "./media/characters/samantha/back.svg"
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Normal",
  7552. height: math.unit(1.93, "m")
  7553. },
  7554. {
  7555. name: "Macro",
  7556. height: math.unit(74, "meters"),
  7557. default: true
  7558. },
  7559. {
  7560. name: "Macro+",
  7561. height: math.unit(223, "meters"),
  7562. },
  7563. {
  7564. name: "Megamacro",
  7565. height: math.unit(8381, "meters"),
  7566. },
  7567. {
  7568. name: "Megamacro+",
  7569. height: math.unit(12000, "kilometers")
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(1.92, "meters"),
  7578. weight: math.unit(80, "kg"),
  7579. name: "Front",
  7580. image: {
  7581. source: "./media/characters/dr-clay/front.svg"
  7582. }
  7583. },
  7584. frontClothed: {
  7585. height: math.unit(1.92, "meters"),
  7586. weight: math.unit(80, "kg"),
  7587. name: "Front (Clothed)",
  7588. image: {
  7589. source: "./media/characters/dr-clay/front-clothed.svg"
  7590. }
  7591. }
  7592. },
  7593. [
  7594. {
  7595. name: "Normal",
  7596. height: math.unit(1.92, "m")
  7597. },
  7598. {
  7599. name: "Macro",
  7600. height: math.unit(214, "meters"),
  7601. default: true
  7602. },
  7603. {
  7604. name: "Macro+",
  7605. height: math.unit(12.237, "meters"),
  7606. },
  7607. {
  7608. name: "Megamacro",
  7609. height: math.unit(557, "megameters"),
  7610. },
  7611. {
  7612. name: "Unimaginable",
  7613. height: math.unit(120e9, "lightyears")
  7614. },
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7619. {
  7620. front: {
  7621. height: math.unit(2, "meters"),
  7622. weight: math.unit(80, "kg"),
  7623. name: "Front",
  7624. image: {
  7625. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7626. }
  7627. }
  7628. },
  7629. [
  7630. {
  7631. name: "Teramacro",
  7632. height: math.unit(500000, "lightyears"),
  7633. default: true
  7634. },
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7639. {
  7640. crux: {
  7641. height: math.unit(2, "meters"),
  7642. weight: math.unit(150, "kg"),
  7643. name: "Crux",
  7644. image: {
  7645. source: "./media/characters/vemus/crux.svg",
  7646. extra: 1074/936,
  7647. bottom: 23/1097
  7648. }
  7649. },
  7650. skunkTanuki: {
  7651. height: math.unit(2, "meters"),
  7652. weight: math.unit(150, "kg"),
  7653. name: "Skunk-Tanuki",
  7654. image: {
  7655. source: "./media/characters/vemus/skunk-tanuki.svg",
  7656. extra: 926/893,
  7657. bottom: 20/946
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(4, "meters"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Big",
  7669. height: math.unit(8, "meters")
  7670. },
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(100, "meters")
  7674. },
  7675. {
  7676. name: "Macro+",
  7677. height: math.unit(1500, "meters")
  7678. },
  7679. {
  7680. name: "Stellar",
  7681. height: math.unit(14e8, "meters")
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(2, "meters"),
  7690. weight: math.unit(70, "kg"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/beherit/front.svg",
  7694. extra: 1234/1109,
  7695. bottom: 55/1289
  7696. }
  7697. }
  7698. },
  7699. [
  7700. {
  7701. name: "Normal",
  7702. height: math.unit(6, "feet")
  7703. },
  7704. {
  7705. name: "Lorg",
  7706. height: math.unit(25, "feet"),
  7707. default: true
  7708. },
  7709. {
  7710. name: "Lorger",
  7711. height: math.unit(75, "feet")
  7712. },
  7713. {
  7714. name: "Macro",
  7715. height: math.unit(200, "meters")
  7716. },
  7717. ]
  7718. ))
  7719. characterMakers.push(() => makeCharacter(
  7720. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7721. {
  7722. front: {
  7723. height: math.unit(2, "meters"),
  7724. weight: math.unit(150, "kg"),
  7725. name: "Front",
  7726. image: {
  7727. source: "./media/characters/everett/front.svg",
  7728. extra: 1017/866,
  7729. bottom: 86/1103
  7730. }
  7731. },
  7732. paw: {
  7733. height: math.unit(2 / 3.6, "meters"),
  7734. name: "Paw",
  7735. image: {
  7736. source: "./media/characters/everett/paw.svg"
  7737. }
  7738. },
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(15, "feet"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Lorg",
  7748. height: math.unit(70, "feet"),
  7749. default: true
  7750. },
  7751. {
  7752. name: "Lorger",
  7753. height: math.unit(250, "feet")
  7754. },
  7755. {
  7756. name: "Macro",
  7757. height: math.unit(500, "meters")
  7758. },
  7759. ]
  7760. ))
  7761. characterMakers.push(() => makeCharacter(
  7762. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7763. {
  7764. front: {
  7765. height: math.unit(2, "meters"),
  7766. weight: math.unit(86, "kg"),
  7767. name: "Front",
  7768. image: {
  7769. source: "./media/characters/rose/front.svg",
  7770. extra: 1785/1636,
  7771. bottom: 30/1815
  7772. },
  7773. form: "liom",
  7774. default: true
  7775. },
  7776. frontSporty: {
  7777. height: math.unit(2, "meters"),
  7778. weight: math.unit(86, "kg"),
  7779. name: "Front (Sporty)",
  7780. image: {
  7781. source: "./media/characters/rose/front-sporty.svg",
  7782. extra: 350/335,
  7783. bottom: 10/360
  7784. },
  7785. form: "liom"
  7786. },
  7787. frontAlt: {
  7788. height: math.unit(1.6, "meters"),
  7789. weight: math.unit(86, "kg"),
  7790. name: "Front (Alt)",
  7791. image: {
  7792. source: "./media/characters/rose/front-alt.svg",
  7793. extra: 299/283,
  7794. bottom: 3/302
  7795. },
  7796. form: "liom"
  7797. },
  7798. plush: {
  7799. height: math.unit(2, "meters"),
  7800. weight: math.unit(86/3, "kg"),
  7801. name: "Plush",
  7802. image: {
  7803. source: "./media/characters/rose/plush.svg",
  7804. extra: 361/337,
  7805. bottom: 11/372
  7806. },
  7807. form: "plush",
  7808. default: true
  7809. },
  7810. faeStanding: {
  7811. height: math.unit(10, "cm"),
  7812. weight: math.unit(10, "grams"),
  7813. name: "Standing",
  7814. image: {
  7815. source: "./media/characters/rose/fae-standing.svg",
  7816. extra: 1189/1060,
  7817. bottom: 27/1216
  7818. },
  7819. form: "fae",
  7820. default: true
  7821. },
  7822. faeSitting: {
  7823. height: math.unit(5, "cm"),
  7824. weight: math.unit(10, "grams"),
  7825. name: "Sitting",
  7826. image: {
  7827. source: "./media/characters/rose/fae-sitting.svg",
  7828. extra: 737/577,
  7829. bottom: 356/1093
  7830. },
  7831. form: "fae"
  7832. },
  7833. faePaw: {
  7834. height: math.unit(1.35, "cm"),
  7835. name: "Paw",
  7836. image: {
  7837. source: "./media/characters/rose/fae-paw.svg"
  7838. },
  7839. form: "fae"
  7840. },
  7841. },
  7842. [
  7843. {
  7844. name: "True Micro",
  7845. height: math.unit(9, "cm"),
  7846. form: "liom"
  7847. },
  7848. {
  7849. name: "Micro",
  7850. height: math.unit(16, "cm"),
  7851. form: "liom"
  7852. },
  7853. {
  7854. name: "Normal",
  7855. height: math.unit(1.85, "meters"),
  7856. default: true,
  7857. form: "liom"
  7858. },
  7859. {
  7860. name: "Mini-Macro",
  7861. height: math.unit(5, "meters"),
  7862. form: "liom"
  7863. },
  7864. {
  7865. name: "Macro",
  7866. height: math.unit(15, "meters"),
  7867. form: "liom"
  7868. },
  7869. {
  7870. name: "True Macro",
  7871. height: math.unit(40, "meters"),
  7872. form: "liom"
  7873. },
  7874. {
  7875. name: "City Scale",
  7876. height: math.unit(1, "km"),
  7877. form: "liom"
  7878. },
  7879. {
  7880. name: "Plushie",
  7881. height: math.unit(9, "cm"),
  7882. form: "plush",
  7883. default: true
  7884. },
  7885. {
  7886. name: "Fae",
  7887. height: math.unit(10, "cm"),
  7888. form: "fae",
  7889. default: true
  7890. },
  7891. ],
  7892. {
  7893. "liom": {
  7894. name: "Liom"
  7895. },
  7896. "plush": {
  7897. name: "Plush"
  7898. },
  7899. "fae": {
  7900. name: "Fae Fox",
  7901. default: true
  7902. }
  7903. }
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7907. {
  7908. front: {
  7909. height: math.unit(2, "meters"),
  7910. weight: math.unit(350, "lbs"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/regal/front.svg"
  7914. }
  7915. },
  7916. back: {
  7917. height: math.unit(2, "meters"),
  7918. weight: math.unit(350, "lbs"),
  7919. name: "Back",
  7920. image: {
  7921. source: "./media/characters/regal/back.svg"
  7922. }
  7923. },
  7924. },
  7925. [
  7926. {
  7927. name: "Macro",
  7928. height: math.unit(350, "feet"),
  7929. default: true
  7930. }
  7931. ]
  7932. ))
  7933. characterMakers.push(() => makeCharacter(
  7934. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7935. {
  7936. front: {
  7937. height: math.unit(4 + 11 / 12, "feet"),
  7938. weight: math.unit(100, "lbs"),
  7939. name: "Front",
  7940. image: {
  7941. source: "./media/characters/opal/front.svg"
  7942. }
  7943. },
  7944. frontAlt: {
  7945. height: math.unit(4 + 11 / 12, "feet"),
  7946. weight: math.unit(100, "lbs"),
  7947. name: "Front (Alt)",
  7948. image: {
  7949. source: "./media/characters/opal/front-alt.svg"
  7950. }
  7951. },
  7952. },
  7953. [
  7954. {
  7955. name: "Small",
  7956. height: math.unit(4 + 11 / 12, "feet")
  7957. },
  7958. {
  7959. name: "Normal",
  7960. height: math.unit(20, "feet"),
  7961. default: true
  7962. },
  7963. {
  7964. name: "Macro",
  7965. height: math.unit(120, "feet")
  7966. },
  7967. {
  7968. name: "Megamacro",
  7969. height: math.unit(80, "miles")
  7970. },
  7971. {
  7972. name: "True Size",
  7973. height: math.unit(100000, "lightyears")
  7974. },
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7979. {
  7980. front: {
  7981. height: math.unit(6, "feet"),
  7982. weight: math.unit(200, "lbs"),
  7983. name: "Front",
  7984. image: {
  7985. source: "./media/characters/vector-wuff/front.svg"
  7986. }
  7987. }
  7988. },
  7989. [
  7990. {
  7991. name: "Normal",
  7992. height: math.unit(2.8, "meters")
  7993. },
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(450, "meters"),
  7997. default: true
  7998. },
  7999. {
  8000. name: "Megamacro",
  8001. height: math.unit(15, "kilometers")
  8002. }
  8003. ]
  8004. ))
  8005. characterMakers.push(() => makeCharacter(
  8006. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8007. {
  8008. front: {
  8009. height: math.unit(6, "feet"),
  8010. weight: math.unit(256, "lbs"),
  8011. name: "Front",
  8012. image: {
  8013. source: "./media/characters/dannik/front.svg"
  8014. }
  8015. }
  8016. },
  8017. [
  8018. {
  8019. name: "Macro",
  8020. height: math.unit(69.57, "meters"),
  8021. default: true
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(6, "feet"),
  8030. weight: math.unit(120, "lbs"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/azura-saharah/front.svg"
  8034. }
  8035. },
  8036. back: {
  8037. height: math.unit(6, "feet"),
  8038. weight: math.unit(120, "lbs"),
  8039. name: "Back",
  8040. image: {
  8041. source: "./media/characters/azura-saharah/back.svg"
  8042. }
  8043. },
  8044. },
  8045. [
  8046. {
  8047. name: "Macro",
  8048. height: math.unit(100, "feet"),
  8049. default: true
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8055. {
  8056. side: {
  8057. height: math.unit(5 + 4 / 12, "feet"),
  8058. weight: math.unit(163, "lbs"),
  8059. name: "Side",
  8060. image: {
  8061. source: "./media/characters/kennedy/side.svg"
  8062. }
  8063. }
  8064. },
  8065. [
  8066. {
  8067. name: "Standard Doggo",
  8068. height: math.unit(5 + 4 / 12, "feet")
  8069. },
  8070. {
  8071. name: "Big Doggo",
  8072. height: math.unit(25 + 3 / 12, "feet"),
  8073. default: true
  8074. },
  8075. ]
  8076. ))
  8077. characterMakers.push(() => makeCharacter(
  8078. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8079. {
  8080. front: {
  8081. height: math.unit(5 + 5/12, "feet"),
  8082. weight: math.unit(100, "lbs"),
  8083. name: "Front",
  8084. image: {
  8085. source: "./media/characters/odios-de-lunar/front.svg",
  8086. extra: 1468/1323,
  8087. bottom: 22/1490
  8088. }
  8089. }
  8090. },
  8091. [
  8092. {
  8093. name: "Micro",
  8094. height: math.unit(3, "inches")
  8095. },
  8096. {
  8097. name: "Normal",
  8098. height: math.unit(5.5, "feet"),
  8099. default: true
  8100. },
  8101. {
  8102. name: "Macro",
  8103. height: math.unit(100, "feet")
  8104. },
  8105. ]
  8106. ))
  8107. characterMakers.push(() => makeCharacter(
  8108. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8109. {
  8110. back: {
  8111. height: math.unit(6, "feet"),
  8112. weight: math.unit(220, "lbs"),
  8113. name: "Back",
  8114. image: {
  8115. source: "./media/characters/mandake/back.svg"
  8116. }
  8117. }
  8118. },
  8119. [
  8120. {
  8121. name: "Normal",
  8122. height: math.unit(7, "feet"),
  8123. default: true
  8124. },
  8125. {
  8126. name: "Macro",
  8127. height: math.unit(78, "feet")
  8128. },
  8129. {
  8130. name: "Macro+",
  8131. height: math.unit(300, "meters")
  8132. },
  8133. {
  8134. name: "Macro++",
  8135. height: math.unit(2400, "feet")
  8136. },
  8137. {
  8138. name: "Megamacro",
  8139. height: math.unit(5167, "meters")
  8140. },
  8141. {
  8142. name: "Gigamacro",
  8143. height: math.unit(41769, "miles")
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(120, "lbs"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/yozey/front.svg"
  8156. }
  8157. },
  8158. frontAlt: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(120, "lbs"),
  8161. name: "Front (Alt)",
  8162. image: {
  8163. source: "./media/characters/yozey/front-alt.svg"
  8164. }
  8165. },
  8166. side: {
  8167. height: math.unit(6, "feet"),
  8168. weight: math.unit(120, "lbs"),
  8169. name: "Side",
  8170. image: {
  8171. source: "./media/characters/yozey/side.svg"
  8172. }
  8173. },
  8174. },
  8175. [
  8176. {
  8177. name: "Micro",
  8178. height: math.unit(3, "inches"),
  8179. default: true
  8180. },
  8181. {
  8182. name: "Normal",
  8183. height: math.unit(6, "feet")
  8184. }
  8185. ]
  8186. ))
  8187. characterMakers.push(() => makeCharacter(
  8188. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8189. {
  8190. front: {
  8191. height: math.unit(6, "feet"),
  8192. weight: math.unit(103, "lbs"),
  8193. name: "Front",
  8194. image: {
  8195. source: "./media/characters/valeska-voss/front.svg"
  8196. }
  8197. }
  8198. },
  8199. [
  8200. {
  8201. name: "Mini-Sized Sub",
  8202. height: math.unit(3.1, "inches")
  8203. },
  8204. {
  8205. name: "Mid-Sized Sub",
  8206. height: math.unit(6.2, "inches")
  8207. },
  8208. {
  8209. name: "Full-Sized Sub",
  8210. height: math.unit(9.3, "inches")
  8211. },
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(5 + 2 / 12, "foot"),
  8215. default: true
  8216. },
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8221. {
  8222. front: {
  8223. height: math.unit(6, "feet"),
  8224. weight: math.unit(160, "lbs"),
  8225. name: "Front",
  8226. image: {
  8227. source: "./media/characters/gene-zeta/front.svg",
  8228. extra: 3006 / 2826,
  8229. bottom: 182 / 3188
  8230. }
  8231. }
  8232. },
  8233. [
  8234. {
  8235. name: "Micro",
  8236. height: math.unit(6, "inches")
  8237. },
  8238. {
  8239. name: "Normal",
  8240. height: math.unit(5 + 11 / 12, "foot"),
  8241. default: true
  8242. },
  8243. {
  8244. name: "Macro",
  8245. height: math.unit(140, "feet")
  8246. },
  8247. {
  8248. name: "Supercharged",
  8249. height: math.unit(2500, "feet")
  8250. },
  8251. ]
  8252. ))
  8253. characterMakers.push(() => makeCharacter(
  8254. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8255. {
  8256. front: {
  8257. height: math.unit(6, "feet"),
  8258. weight: math.unit(350, "lbs"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/razinox/front.svg",
  8262. extra: 1686 / 1548,
  8263. bottom: 28.2 / 1868
  8264. }
  8265. },
  8266. back: {
  8267. height: math.unit(6, "feet"),
  8268. weight: math.unit(350, "lbs"),
  8269. name: "Back",
  8270. image: {
  8271. source: "./media/characters/razinox/back.svg",
  8272. extra: 1660 / 1590,
  8273. bottom: 15 / 1665
  8274. }
  8275. },
  8276. },
  8277. [
  8278. {
  8279. name: "Normal",
  8280. height: math.unit(10 + 8 / 12, "foot")
  8281. },
  8282. {
  8283. name: "Minimacro",
  8284. height: math.unit(15, "foot")
  8285. },
  8286. {
  8287. name: "Macro",
  8288. height: math.unit(60, "foot"),
  8289. default: true
  8290. },
  8291. {
  8292. name: "Megamacro",
  8293. height: math.unit(5, "miles")
  8294. },
  8295. {
  8296. name: "Gigamacro",
  8297. height: math.unit(6000, "miles")
  8298. },
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8303. {
  8304. front: {
  8305. height: math.unit(6, "feet"),
  8306. weight: math.unit(150, "lbs"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/cobalt/front.svg"
  8310. }
  8311. }
  8312. },
  8313. [
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(8 + 1 / 12, "foot")
  8317. },
  8318. {
  8319. name: "Macro",
  8320. height: math.unit(111, "foot"),
  8321. default: true
  8322. },
  8323. {
  8324. name: "Supracosmic",
  8325. height: math.unit(1e42, "feet")
  8326. },
  8327. ]
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(5, "inches"),
  8334. name: "Front",
  8335. image: {
  8336. source: "./media/characters/amanda/front.svg",
  8337. extra: 926/791,
  8338. bottom: 38/964
  8339. }
  8340. },
  8341. back: {
  8342. height: math.unit(5, "inches"),
  8343. name: "Back",
  8344. image: {
  8345. source: "./media/characters/amanda/back.svg",
  8346. extra: 909/805,
  8347. bottom: 43/952
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Micro",
  8354. height: math.unit(5, "inches"),
  8355. default: true
  8356. },
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8361. {
  8362. front: {
  8363. height: math.unit(2.75, "meters"),
  8364. weight: math.unit(1200, "lb"),
  8365. name: "Front",
  8366. image: {
  8367. source: "./media/characters/teal/front.svg",
  8368. extra: 2463 / 2320,
  8369. bottom: 166 / 2629
  8370. }
  8371. },
  8372. back: {
  8373. height: math.unit(2.75, "meters"),
  8374. weight: math.unit(1200, "lb"),
  8375. name: "Back",
  8376. image: {
  8377. source: "./media/characters/teal/back.svg",
  8378. extra: 2580 / 2489,
  8379. bottom: 151 / 2731
  8380. }
  8381. },
  8382. sitting: {
  8383. height: math.unit(1.9, "meters"),
  8384. weight: math.unit(1200, "lb"),
  8385. name: "Sitting",
  8386. image: {
  8387. source: "./media/characters/teal/sitting.svg",
  8388. extra: 623 / 590,
  8389. bottom: 121 / 744
  8390. }
  8391. },
  8392. standing: {
  8393. height: math.unit(2.75, "meters"),
  8394. weight: math.unit(1200, "lb"),
  8395. name: "Standing",
  8396. image: {
  8397. source: "./media/characters/teal/standing.svg",
  8398. extra: 923 / 893,
  8399. bottom: 60 / 983
  8400. }
  8401. },
  8402. stretching: {
  8403. height: math.unit(3.65, "meters"),
  8404. weight: math.unit(1200, "lb"),
  8405. name: "Stretching",
  8406. image: {
  8407. source: "./media/characters/teal/stretching.svg",
  8408. extra: 1276 / 1244,
  8409. bottom: 0 / 1276
  8410. }
  8411. },
  8412. legged: {
  8413. height: math.unit(1.3, "meters"),
  8414. weight: math.unit(100, "lb"),
  8415. name: "Legged",
  8416. image: {
  8417. source: "./media/characters/teal/legged.svg",
  8418. extra: 462 / 437,
  8419. bottom: 24 / 486
  8420. }
  8421. },
  8422. naga: {
  8423. height: math.unit(5.4, "meters"),
  8424. weight: math.unit(4000, "lb"),
  8425. name: "Naga",
  8426. image: {
  8427. source: "./media/characters/teal/naga.svg",
  8428. extra: 1902 / 1858,
  8429. bottom: 0 / 1902
  8430. }
  8431. },
  8432. hand: {
  8433. height: math.unit(0.52, "meters"),
  8434. name: "Hand",
  8435. image: {
  8436. source: "./media/characters/teal/hand.svg"
  8437. }
  8438. },
  8439. maw: {
  8440. height: math.unit(0.43, "meters"),
  8441. name: "Maw",
  8442. image: {
  8443. source: "./media/characters/teal/maw.svg"
  8444. }
  8445. },
  8446. slit: {
  8447. height: math.unit(0.25, "meters"),
  8448. name: "Slit",
  8449. image: {
  8450. source: "./media/characters/teal/slit.svg"
  8451. }
  8452. },
  8453. },
  8454. [
  8455. {
  8456. name: "Normal",
  8457. height: math.unit(2.75, "meters"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Macro",
  8462. height: math.unit(300, "feet")
  8463. },
  8464. {
  8465. name: "Macro+",
  8466. height: math.unit(2000, "feet")
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8472. {
  8473. frontCat: {
  8474. height: math.unit(6, "feet"),
  8475. weight: math.unit(180, "lbs"),
  8476. name: "Front (Cat)",
  8477. image: {
  8478. source: "./media/characters/ravin-amulet/front-cat.svg"
  8479. }
  8480. },
  8481. frontCatAlt: {
  8482. height: math.unit(6, "feet"),
  8483. weight: math.unit(180, "lbs"),
  8484. name: "Front (Alt, Cat)",
  8485. image: {
  8486. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8487. }
  8488. },
  8489. frontWerewolf: {
  8490. height: math.unit(6 * 1.2, "feet"),
  8491. weight: math.unit(225, "lbs"),
  8492. name: "Front (Werewolf)",
  8493. image: {
  8494. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8495. }
  8496. },
  8497. backWerewolf: {
  8498. height: math.unit(6 * 1.2, "feet"),
  8499. weight: math.unit(225, "lbs"),
  8500. name: "Back (Werewolf)",
  8501. image: {
  8502. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8503. }
  8504. },
  8505. },
  8506. [
  8507. {
  8508. name: "Nano",
  8509. height: math.unit(1, "micrometer")
  8510. },
  8511. {
  8512. name: "Micro",
  8513. height: math.unit(1, "inch")
  8514. },
  8515. {
  8516. name: "Normal",
  8517. height: math.unit(6, "feet"),
  8518. default: true
  8519. },
  8520. {
  8521. name: "Macro",
  8522. height: math.unit(60, "feet")
  8523. }
  8524. ]
  8525. ))
  8526. characterMakers.push(() => makeCharacter(
  8527. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8528. {
  8529. front: {
  8530. height: math.unit(6, "feet"),
  8531. weight: math.unit(165, "lbs"),
  8532. name: "Front",
  8533. image: {
  8534. source: "./media/characters/fluoresce/front.svg"
  8535. }
  8536. }
  8537. },
  8538. [
  8539. {
  8540. name: "Micro",
  8541. height: math.unit(6, "cm")
  8542. },
  8543. {
  8544. name: "Normal",
  8545. height: math.unit(5 + 7 / 12, "feet"),
  8546. default: true
  8547. },
  8548. {
  8549. name: "Macro",
  8550. height: math.unit(56, "feet")
  8551. },
  8552. {
  8553. name: "Megamacro",
  8554. height: math.unit(1.9, "miles")
  8555. },
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8560. {
  8561. front: {
  8562. height: math.unit(9 + 6 / 12, "feet"),
  8563. weight: math.unit(523, "lbs"),
  8564. name: "Side",
  8565. image: {
  8566. source: "./media/characters/aurora/side.svg",
  8567. extra: 474/393,
  8568. bottom: 5/479
  8569. }
  8570. }
  8571. },
  8572. [
  8573. {
  8574. name: "Normal",
  8575. height: math.unit(9 + 6 / 12, "feet")
  8576. },
  8577. {
  8578. name: "Macro",
  8579. height: math.unit(96, "feet"),
  8580. default: true
  8581. },
  8582. {
  8583. name: "Macro+",
  8584. height: math.unit(243, "feet")
  8585. },
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(194, "cm"),
  8593. weight: math.unit(90, "kg"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/ranek/front.svg",
  8597. extra: 1862/1791,
  8598. bottom: 80/1942
  8599. }
  8600. },
  8601. back: {
  8602. height: math.unit(194, "cm"),
  8603. weight: math.unit(90, "kg"),
  8604. name: "Back",
  8605. image: {
  8606. source: "./media/characters/ranek/back.svg",
  8607. extra: 1853/1787,
  8608. bottom: 74/1927
  8609. }
  8610. },
  8611. feral: {
  8612. height: math.unit(30, "cm"),
  8613. weight: math.unit(1.6, "lbs"),
  8614. name: "Feral",
  8615. image: {
  8616. source: "./media/characters/ranek/feral.svg",
  8617. extra: 990/631,
  8618. bottom: 29/1019
  8619. }
  8620. },
  8621. },
  8622. [
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(194, "cm"),
  8626. default: true
  8627. },
  8628. {
  8629. name: "Macro",
  8630. height: math.unit(100, "meters")
  8631. },
  8632. ]
  8633. ))
  8634. characterMakers.push(() => makeCharacter(
  8635. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8636. {
  8637. front: {
  8638. height: math.unit(5 + 6 / 12, "feet"),
  8639. weight: math.unit(153, "lbs"),
  8640. name: "Front",
  8641. image: {
  8642. source: "./media/characters/andrew-cooper/front.svg"
  8643. }
  8644. },
  8645. },
  8646. [
  8647. {
  8648. name: "Nano",
  8649. height: math.unit(1, "mm")
  8650. },
  8651. {
  8652. name: "Micro",
  8653. height: math.unit(2, "inches")
  8654. },
  8655. {
  8656. name: "Normal",
  8657. height: math.unit(5 + 6 / 12, "feet"),
  8658. default: true
  8659. }
  8660. ]
  8661. ))
  8662. characterMakers.push(() => makeCharacter(
  8663. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8664. {
  8665. front: {
  8666. height: math.unit(6, "feet"),
  8667. weight: math.unit(180, "lbs"),
  8668. name: "Front",
  8669. image: {
  8670. source: "./media/characters/akane-sato/front.svg",
  8671. extra: 1219 / 1140
  8672. }
  8673. },
  8674. back: {
  8675. height: math.unit(6, "feet"),
  8676. weight: math.unit(180, "lbs"),
  8677. name: "Back",
  8678. image: {
  8679. source: "./media/characters/akane-sato/back.svg",
  8680. extra: 1219 / 1170
  8681. }
  8682. },
  8683. },
  8684. [
  8685. {
  8686. name: "Normal",
  8687. height: math.unit(2.5, "meters")
  8688. },
  8689. {
  8690. name: "Macro",
  8691. height: math.unit(250, "meters"),
  8692. default: true
  8693. },
  8694. {
  8695. name: "Megamacro",
  8696. height: math.unit(25, "km")
  8697. },
  8698. ]
  8699. ))
  8700. characterMakers.push(() => makeCharacter(
  8701. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8702. {
  8703. front: {
  8704. height: math.unit(6, "feet"),
  8705. weight: math.unit(65, "kg"),
  8706. name: "Front",
  8707. image: {
  8708. source: "./media/characters/rook/front.svg",
  8709. extra: 960 / 950
  8710. }
  8711. }
  8712. },
  8713. [
  8714. {
  8715. name: "Normal",
  8716. height: math.unit(8.8, "feet")
  8717. },
  8718. {
  8719. name: "Macro",
  8720. height: math.unit(88, "feet"),
  8721. default: true
  8722. },
  8723. {
  8724. name: "Megamacro",
  8725. height: math.unit(8, "miles")
  8726. },
  8727. ]
  8728. ))
  8729. characterMakers.push(() => makeCharacter(
  8730. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8731. {
  8732. front: {
  8733. height: math.unit(12 + 2 / 12, "feet"),
  8734. weight: math.unit(808, "lbs"),
  8735. name: "Front",
  8736. image: {
  8737. source: "./media/characters/prodigy/front.svg"
  8738. }
  8739. }
  8740. },
  8741. [
  8742. {
  8743. name: "Normal",
  8744. height: math.unit(12 + 2 / 12, "feet"),
  8745. default: true
  8746. },
  8747. {
  8748. name: "Macro",
  8749. height: math.unit(143, "feet")
  8750. },
  8751. {
  8752. name: "Macro+",
  8753. height: math.unit(400, "feet")
  8754. },
  8755. ]
  8756. ))
  8757. characterMakers.push(() => makeCharacter(
  8758. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8759. {
  8760. front: {
  8761. height: math.unit(6, "feet"),
  8762. weight: math.unit(225, "lbs"),
  8763. name: "Front",
  8764. image: {
  8765. source: "./media/characters/daniel/front.svg"
  8766. }
  8767. },
  8768. leaning: {
  8769. height: math.unit(6, "feet"),
  8770. weight: math.unit(225, "lbs"),
  8771. name: "Leaning",
  8772. image: {
  8773. source: "./media/characters/daniel/leaning.svg"
  8774. }
  8775. },
  8776. },
  8777. [
  8778. {
  8779. name: "Macro",
  8780. height: math.unit(1000, "feet"),
  8781. default: true
  8782. },
  8783. ]
  8784. ))
  8785. characterMakers.push(() => makeCharacter(
  8786. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8787. {
  8788. front: {
  8789. height: math.unit(6, "feet"),
  8790. weight: math.unit(88, "lbs"),
  8791. name: "Front",
  8792. image: {
  8793. source: "./media/characters/chiros/front.svg",
  8794. extra: 306 / 226
  8795. }
  8796. },
  8797. side: {
  8798. height: math.unit(6, "feet"),
  8799. weight: math.unit(88, "lbs"),
  8800. name: "Side",
  8801. image: {
  8802. source: "./media/characters/chiros/side.svg",
  8803. extra: 306 / 226
  8804. }
  8805. },
  8806. },
  8807. [
  8808. {
  8809. name: "Normal",
  8810. height: math.unit(6, "cm"),
  8811. default: true
  8812. },
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8817. {
  8818. front: {
  8819. height: math.unit(6, "feet"),
  8820. weight: math.unit(100, "lbs"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/selka/front.svg",
  8824. extra: 947 / 887
  8825. }
  8826. }
  8827. },
  8828. [
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(5, "cm"),
  8832. default: true
  8833. },
  8834. ]
  8835. ))
  8836. characterMakers.push(() => makeCharacter(
  8837. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8838. {
  8839. front: {
  8840. height: math.unit(8 + 3 / 12, "feet"),
  8841. weight: math.unit(424, "lbs"),
  8842. name: "Front",
  8843. image: {
  8844. source: "./media/characters/verin/front.svg",
  8845. extra: 1845 / 1550
  8846. }
  8847. },
  8848. frontArmored: {
  8849. height: math.unit(8 + 3 / 12, "feet"),
  8850. weight: math.unit(424, "lbs"),
  8851. name: "Front (Armored)",
  8852. image: {
  8853. source: "./media/characters/verin/front-armor.svg",
  8854. extra: 1845 / 1550,
  8855. bottom: 0.01
  8856. }
  8857. },
  8858. back: {
  8859. height: math.unit(8 + 3 / 12, "feet"),
  8860. weight: math.unit(424, "lbs"),
  8861. name: "Back",
  8862. image: {
  8863. source: "./media/characters/verin/back.svg",
  8864. bottom: 0.1,
  8865. extra: 1
  8866. }
  8867. },
  8868. foot: {
  8869. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8870. name: "Foot",
  8871. image: {
  8872. source: "./media/characters/verin/foot.svg"
  8873. }
  8874. },
  8875. },
  8876. [
  8877. {
  8878. name: "Normal",
  8879. height: math.unit(8 + 3 / 12, "feet")
  8880. },
  8881. {
  8882. name: "Minimacro",
  8883. height: math.unit(21, "feet"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Macro",
  8888. height: math.unit(626, "feet")
  8889. },
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8894. {
  8895. front: {
  8896. height: math.unit(2.718, "meters"),
  8897. weight: math.unit(150, "lbs"),
  8898. name: "Front",
  8899. image: {
  8900. source: "./media/characters/sovrim-terraquian/front.svg",
  8901. extra: 1752/1689,
  8902. bottom: 36/1788
  8903. }
  8904. },
  8905. back: {
  8906. height: math.unit(2.718, "meters"),
  8907. weight: math.unit(150, "lbs"),
  8908. name: "Back",
  8909. image: {
  8910. source: "./media/characters/sovrim-terraquian/back.svg",
  8911. extra: 1698/1657,
  8912. bottom: 58/1756
  8913. }
  8914. },
  8915. tongue: {
  8916. height: math.unit(2.865, "feet"),
  8917. name: "Tongue",
  8918. image: {
  8919. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8920. }
  8921. },
  8922. hand: {
  8923. height: math.unit(1.61, "feet"),
  8924. name: "Hand",
  8925. image: {
  8926. source: "./media/characters/sovrim-terraquian/hand.svg"
  8927. }
  8928. },
  8929. foot: {
  8930. height: math.unit(1.05, "feet"),
  8931. name: "Foot",
  8932. image: {
  8933. source: "./media/characters/sovrim-terraquian/foot.svg"
  8934. }
  8935. },
  8936. footAlt: {
  8937. height: math.unit(0.88, "feet"),
  8938. name: "Foot (Alt)",
  8939. image: {
  8940. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8941. }
  8942. },
  8943. },
  8944. [
  8945. {
  8946. name: "Micro",
  8947. height: math.unit(2, "inches")
  8948. },
  8949. {
  8950. name: "Small",
  8951. height: math.unit(1, "meter")
  8952. },
  8953. {
  8954. name: "Normal",
  8955. height: math.unit(Math.E, "meters"),
  8956. default: true
  8957. },
  8958. {
  8959. name: "Macro",
  8960. height: math.unit(20, "meters")
  8961. },
  8962. {
  8963. name: "Macro+",
  8964. height: math.unit(400, "meters")
  8965. },
  8966. ]
  8967. ))
  8968. characterMakers.push(() => makeCharacter(
  8969. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8970. {
  8971. front: {
  8972. height: math.unit(7, "feet"),
  8973. weight: math.unit(489, "lbs"),
  8974. name: "Front",
  8975. image: {
  8976. source: "./media/characters/reece-silvermane/front.svg",
  8977. bottom: 0.02,
  8978. extra: 1
  8979. }
  8980. },
  8981. },
  8982. [
  8983. {
  8984. name: "Macro",
  8985. height: math.unit(1.5, "miles"),
  8986. default: true
  8987. },
  8988. ]
  8989. ))
  8990. characterMakers.push(() => makeCharacter(
  8991. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8992. {
  8993. front: {
  8994. height: math.unit(6, "feet"),
  8995. weight: math.unit(78, "kg"),
  8996. name: "Front",
  8997. image: {
  8998. source: "./media/characters/kane/front.svg",
  8999. extra: 978 / 899
  9000. }
  9001. },
  9002. },
  9003. [
  9004. {
  9005. name: "Normal",
  9006. height: math.unit(2.1, "m"),
  9007. },
  9008. {
  9009. name: "Macro",
  9010. height: math.unit(1, "km"),
  9011. default: true
  9012. },
  9013. ]
  9014. ))
  9015. characterMakers.push(() => makeCharacter(
  9016. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9017. {
  9018. front: {
  9019. height: math.unit(6, "feet"),
  9020. weight: math.unit(200, "kg"),
  9021. name: "Front",
  9022. image: {
  9023. source: "./media/characters/tegon/front.svg",
  9024. bottom: 0.01,
  9025. extra: 1
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Micro",
  9032. height: math.unit(1, "inch")
  9033. },
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(6 + 3 / 12, "feet"),
  9037. default: true
  9038. },
  9039. {
  9040. name: "Macro",
  9041. height: math.unit(300, "feet")
  9042. },
  9043. {
  9044. name: "Megamacro",
  9045. height: math.unit(69, "miles")
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9051. {
  9052. side: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(2304, "lbs"),
  9055. name: "Side",
  9056. image: {
  9057. source: "./media/characters/arcturax/side.svg",
  9058. extra: 790 / 376,
  9059. bottom: 0.01
  9060. }
  9061. },
  9062. },
  9063. [
  9064. {
  9065. name: "Micro",
  9066. height: math.unit(2, "inch")
  9067. },
  9068. {
  9069. name: "Normal",
  9070. height: math.unit(6, "feet")
  9071. },
  9072. {
  9073. name: "Macro",
  9074. height: math.unit(39, "feet"),
  9075. default: true
  9076. },
  9077. {
  9078. name: "Megamacro",
  9079. height: math.unit(7, "miles")
  9080. },
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9085. {
  9086. front: {
  9087. height: math.unit(6, "feet"),
  9088. weight: math.unit(50, "lbs"),
  9089. name: "Front",
  9090. image: {
  9091. source: "./media/characters/sentri/front.svg",
  9092. extra: 1750 / 1570,
  9093. bottom: 0.025
  9094. }
  9095. },
  9096. frontAlt: {
  9097. height: math.unit(6, "feet"),
  9098. weight: math.unit(50, "lbs"),
  9099. name: "Front (Alt)",
  9100. image: {
  9101. source: "./media/characters/sentri/front-alt.svg",
  9102. extra: 1750 / 1570,
  9103. bottom: 0.025
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Normal",
  9110. height: math.unit(15, "feet"),
  9111. default: true
  9112. },
  9113. {
  9114. name: "Macro",
  9115. height: math.unit(2500, "feet")
  9116. }
  9117. ]
  9118. ))
  9119. characterMakers.push(() => makeCharacter(
  9120. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9121. {
  9122. front: {
  9123. height: math.unit(5 + 8 / 12, "feet"),
  9124. weight: math.unit(130, "lbs"),
  9125. name: "Front",
  9126. image: {
  9127. source: "./media/characters/corvin/front.svg",
  9128. extra: 1803 / 1629
  9129. }
  9130. },
  9131. frontShirt: {
  9132. height: math.unit(5 + 8 / 12, "feet"),
  9133. weight: math.unit(130, "lbs"),
  9134. name: "Front (Shirt)",
  9135. image: {
  9136. source: "./media/characters/corvin/front-shirt.svg",
  9137. extra: 1803 / 1629
  9138. }
  9139. },
  9140. frontPoncho: {
  9141. height: math.unit(5 + 8 / 12, "feet"),
  9142. weight: math.unit(130, "lbs"),
  9143. name: "Front (Poncho)",
  9144. image: {
  9145. source: "./media/characters/corvin/front-poncho.svg",
  9146. extra: 1803 / 1629
  9147. }
  9148. },
  9149. side: {
  9150. height: math.unit(5 + 8 / 12, "feet"),
  9151. weight: math.unit(130, "lbs"),
  9152. name: "Side",
  9153. image: {
  9154. source: "./media/characters/corvin/side.svg",
  9155. extra: 1012 / 945
  9156. }
  9157. },
  9158. back: {
  9159. height: math.unit(5 + 8 / 12, "feet"),
  9160. weight: math.unit(130, "lbs"),
  9161. name: "Back",
  9162. image: {
  9163. source: "./media/characters/corvin/back.svg",
  9164. extra: 1803 / 1629
  9165. }
  9166. },
  9167. },
  9168. [
  9169. {
  9170. name: "Micro",
  9171. height: math.unit(3, "inches")
  9172. },
  9173. {
  9174. name: "Normal",
  9175. height: math.unit(5 + 8 / 12, "feet")
  9176. },
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(300, "feet"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Megamacro",
  9184. height: math.unit(500, "miles")
  9185. }
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9190. {
  9191. front: {
  9192. height: math.unit(6, "feet"),
  9193. weight: math.unit(135, "lbs"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/q/front.svg",
  9197. extra: 854 / 752,
  9198. bottom: 0.005
  9199. }
  9200. },
  9201. back: {
  9202. height: math.unit(6, "feet"),
  9203. weight: math.unit(130, "lbs"),
  9204. name: "Back",
  9205. image: {
  9206. source: "./media/characters/q/back.svg",
  9207. extra: 854 / 752
  9208. }
  9209. },
  9210. },
  9211. [
  9212. {
  9213. name: "Macro",
  9214. height: math.unit(90, "feet"),
  9215. default: true
  9216. },
  9217. {
  9218. name: "Extra Macro",
  9219. height: math.unit(300, "feet"),
  9220. },
  9221. {
  9222. name: "BIG WALF",
  9223. height: math.unit(750, "feet"),
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(3, "feet"),
  9232. weight: math.unit(28, "lbs"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/citrine/front.svg"
  9236. }
  9237. }
  9238. },
  9239. [
  9240. {
  9241. name: "Normal",
  9242. height: math.unit(3, "feet"),
  9243. default: true
  9244. }
  9245. ]
  9246. ))
  9247. characterMakers.push(() => makeCharacter(
  9248. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9249. {
  9250. front: {
  9251. height: math.unit(14, "feet"),
  9252. weight: math.unit(1450, "kg"),
  9253. preyCapacity: math.unit(15, "people"),
  9254. name: "Front",
  9255. image: {
  9256. source: "./media/characters/aura-starwind/front.svg",
  9257. extra: 1440/1327,
  9258. bottom: 11/1451
  9259. }
  9260. },
  9261. side: {
  9262. height: math.unit(14, "feet"),
  9263. weight: math.unit(1450, "kg"),
  9264. preyCapacity: math.unit(15, "people"),
  9265. name: "Side",
  9266. image: {
  9267. source: "./media/characters/aura-starwind/side.svg",
  9268. extra: 1654 / 1497
  9269. }
  9270. },
  9271. taur: {
  9272. height: math.unit(18, "feet"),
  9273. weight: math.unit(5500, "kg"),
  9274. preyCapacity: math.unit(50, "people"),
  9275. name: "Taur",
  9276. image: {
  9277. source: "./media/characters/aura-starwind/taur.svg",
  9278. extra: 1760 / 1650
  9279. }
  9280. },
  9281. feral: {
  9282. height: math.unit(46, "feet"),
  9283. weight: math.unit(25000, "kg"),
  9284. preyCapacity: math.unit(120, "people"),
  9285. name: "Feral",
  9286. image: {
  9287. source: "./media/characters/aura-starwind/feral.svg"
  9288. }
  9289. },
  9290. },
  9291. [
  9292. {
  9293. name: "Normal",
  9294. height: math.unit(14, "feet"),
  9295. default: true
  9296. },
  9297. {
  9298. name: "Macro",
  9299. height: math.unit(50, "meters")
  9300. },
  9301. {
  9302. name: "Megamacro",
  9303. height: math.unit(5000, "meters")
  9304. },
  9305. {
  9306. name: "Gigamacro",
  9307. height: math.unit(100000, "kilometers")
  9308. },
  9309. ]
  9310. ))
  9311. characterMakers.push(() => makeCharacter(
  9312. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9313. {
  9314. front: {
  9315. height: math.unit(2 + 7 / 12, "feet"),
  9316. weight: math.unit(32, "lbs"),
  9317. name: "Front",
  9318. image: {
  9319. source: "./media/characters/rivet/front.svg",
  9320. extra: 1716 / 1658,
  9321. bottom: 0.03
  9322. }
  9323. },
  9324. foot: {
  9325. height: math.unit(0.551, "feet"),
  9326. name: "Rivet's Foot",
  9327. image: {
  9328. source: "./media/characters/rivet/foot.svg"
  9329. },
  9330. rename: true
  9331. }
  9332. },
  9333. [
  9334. {
  9335. name: "Micro",
  9336. height: math.unit(1.5, "inches"),
  9337. },
  9338. {
  9339. name: "Normal",
  9340. height: math.unit(2 + 7 / 12, "feet"),
  9341. default: true
  9342. },
  9343. {
  9344. name: "Macro",
  9345. height: math.unit(85, "feet")
  9346. },
  9347. {
  9348. name: "Megamacro",
  9349. height: math.unit(2.2, "km")
  9350. }
  9351. ]
  9352. ))
  9353. characterMakers.push(() => makeCharacter(
  9354. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9355. {
  9356. front: {
  9357. height: math.unit(5 + 9 / 12, "feet"),
  9358. weight: math.unit(150, "lbs"),
  9359. name: "Front",
  9360. image: {
  9361. source: "./media/characters/coffee/front.svg",
  9362. extra: 946/880,
  9363. bottom: 66/1012
  9364. }
  9365. },
  9366. foot: {
  9367. height: math.unit(1.29, "feet"),
  9368. name: "Foot",
  9369. image: {
  9370. source: "./media/characters/coffee/foot.svg"
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(2, "inches"),
  9378. },
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(5 + 9 / 12, "feet"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Macro",
  9386. height: math.unit(800, "feet")
  9387. },
  9388. {
  9389. name: "Megamacro",
  9390. height: math.unit(25, "miles")
  9391. }
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(200, "lbs"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/chari-gal/front.svg",
  9403. extra: 1568 / 1385,
  9404. bottom: 0.047
  9405. }
  9406. },
  9407. gigantamax: {
  9408. height: math.unit(6 * 16, "feet"),
  9409. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9410. name: "Gigantamax",
  9411. image: {
  9412. source: "./media/characters/chari-gal/gigantamax.svg",
  9413. extra: 1124 / 888,
  9414. bottom: 0.03
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Normal",
  9421. height: math.unit(5 + 7 / 12, "feet")
  9422. },
  9423. {
  9424. name: "Macro",
  9425. height: math.unit(200, "feet"),
  9426. default: true
  9427. }
  9428. ]
  9429. ))
  9430. characterMakers.push(() => makeCharacter(
  9431. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9432. {
  9433. front: {
  9434. height: math.unit(6, "feet"),
  9435. weight: math.unit(150, "lbs"),
  9436. name: "Front",
  9437. image: {
  9438. source: "./media/characters/nova/front.svg",
  9439. extra: 5000 / 4722,
  9440. bottom: 0.02
  9441. }
  9442. }
  9443. },
  9444. [
  9445. {
  9446. name: "Micro-",
  9447. height: math.unit(0.8, "inches")
  9448. },
  9449. {
  9450. name: "Micro",
  9451. height: math.unit(2, "inches"),
  9452. default: true
  9453. },
  9454. ]
  9455. ))
  9456. characterMakers.push(() => makeCharacter(
  9457. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9458. {
  9459. koboldFront: {
  9460. height: math.unit(3 + 1 / 12, "feet"),
  9461. weight: math.unit(21.7, "lbs"),
  9462. name: "Front",
  9463. image: {
  9464. source: "./media/characters/argent/kobold-front.svg",
  9465. extra: 1471 / 1331,
  9466. bottom: 100.8 / 1575.5
  9467. },
  9468. form: "kobold",
  9469. default: true
  9470. },
  9471. dragonFront: {
  9472. height: math.unit(75, "inches"),
  9473. name: "Front",
  9474. image: {
  9475. source: "./media/characters/argent/dragon-front.svg",
  9476. extra: 1389/1248,
  9477. bottom: 54/1443
  9478. },
  9479. form: "dragon",
  9480. },
  9481. dragonBack: {
  9482. height: math.unit(75, "inches"),
  9483. name: "Back",
  9484. image: {
  9485. source: "./media/characters/argent/dragon-back.svg",
  9486. extra: 1399/1271,
  9487. bottom: 23/1422
  9488. },
  9489. form: "dragon",
  9490. },
  9491. dragonDressed: {
  9492. height: math.unit(75, "inches"),
  9493. name: "Dressed",
  9494. image: {
  9495. source: "./media/characters/argent/dragon-dressed.svg",
  9496. extra: 1350/1215,
  9497. bottom: 26/1376
  9498. },
  9499. form: "dragon"
  9500. },
  9501. dragonHead: {
  9502. height: math.unit(23.5, "inches"),
  9503. name: "Head",
  9504. image: {
  9505. source: "./media/characters/argent/dragon-head.svg"
  9506. },
  9507. form: "dragon",
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Micro",
  9513. height: math.unit(2, "inches"),
  9514. form: "kobold",
  9515. },
  9516. {
  9517. name: "Normal",
  9518. height: math.unit(3 + 1 / 12, "feet"),
  9519. form: "kobold",
  9520. default: true
  9521. },
  9522. {
  9523. name: "Macro",
  9524. height: math.unit(120, "feet"),
  9525. form: "kobold",
  9526. },
  9527. {
  9528. name: "Speck",
  9529. height: math.unit(1, "mm"),
  9530. form: "dragon",
  9531. },
  9532. {
  9533. name: "Tiny",
  9534. height: math.unit(1, "cm"),
  9535. form: "dragon",
  9536. },
  9537. {
  9538. name: "Micro",
  9539. height: math.unit(5, "cm"),
  9540. form: "dragon",
  9541. },
  9542. {
  9543. name: "Normal",
  9544. height: math.unit(75, "inches"),
  9545. form: "dragon",
  9546. default: true
  9547. },
  9548. {
  9549. name: "Extra Tall",
  9550. height: math.unit(9, "feet"),
  9551. form: "dragon",
  9552. },
  9553. {
  9554. name: "Inconvenient",
  9555. height: math.unit(5, "meters"),
  9556. form: "dragon",
  9557. },
  9558. {
  9559. name: "Macro",
  9560. height: math.unit(70, "meters"),
  9561. form: "dragon",
  9562. },
  9563. {
  9564. name: "Macro+",
  9565. height: math.unit(250, "meters"),
  9566. form: "dragon",
  9567. },
  9568. {
  9569. name: "Megamacro",
  9570. height: math.unit(20, "km"),
  9571. form: "dragon",
  9572. },
  9573. {
  9574. name: "Mountainous",
  9575. height: math.unit(100, "km"),
  9576. form: "dragon",
  9577. },
  9578. {
  9579. name: "Continental",
  9580. height: math.unit(2, "megameters"),
  9581. form: "dragon",
  9582. },
  9583. {
  9584. name: "Too Big",
  9585. height: math.unit(900, "megameters"),
  9586. form: "dragon",
  9587. },
  9588. ],
  9589. {
  9590. "kobold": {
  9591. name: "Kobold",
  9592. default: true
  9593. },
  9594. "dragon": {
  9595. name: "Dragon",
  9596. },
  9597. }
  9598. ))
  9599. characterMakers.push(() => makeCharacter(
  9600. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9601. {
  9602. lamp: {
  9603. height: math.unit(7 * 1559 / 989, "feet"),
  9604. name: "Magic Lamp",
  9605. image: {
  9606. source: "./media/characters/mira-al-cul/lamp.svg",
  9607. extra: 1617 / 1559
  9608. }
  9609. },
  9610. front: {
  9611. height: math.unit(7, "feet"),
  9612. name: "Front",
  9613. image: {
  9614. source: "./media/characters/mira-al-cul/front.svg",
  9615. extra: 1044 / 990
  9616. }
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Heavily Restricted",
  9622. height: math.unit(7 * 1559 / 989, "feet")
  9623. },
  9624. {
  9625. name: "Freshly Freed",
  9626. height: math.unit(50 * 1559 / 989, "feet")
  9627. },
  9628. {
  9629. name: "World Encompassing",
  9630. height: math.unit(10000 * 1559 / 989, "miles")
  9631. },
  9632. {
  9633. name: "Galactic",
  9634. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9635. },
  9636. {
  9637. name: "Palmed Universe",
  9638. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9639. default: true
  9640. },
  9641. {
  9642. name: "Multiversal Matriarch",
  9643. height: math.unit(8.87e10, "yottameters")
  9644. },
  9645. {
  9646. name: "Void Mother",
  9647. height: math.unit(3.14e110, "yottaparsecs")
  9648. },
  9649. {
  9650. name: "Toying with Transcendence",
  9651. height: math.unit(1e307, "meters")
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9657. {
  9658. front: {
  9659. height: math.unit(17 + 1 / 12, "feet"),
  9660. weight: math.unit(476.2 * 5, "lbs"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/kuro-shi-uchū/front.svg",
  9664. extra: 2329 / 1835,
  9665. bottom: 0.02
  9666. }
  9667. },
  9668. },
  9669. [
  9670. {
  9671. name: "Micro",
  9672. height: math.unit(2, "inches")
  9673. },
  9674. {
  9675. name: "Normal",
  9676. height: math.unit(12, "meters")
  9677. },
  9678. {
  9679. name: "Planetary",
  9680. height: math.unit(0.00929, "AU"),
  9681. default: true
  9682. },
  9683. {
  9684. name: "Universal",
  9685. height: math.unit(20, "gigaparsecs")
  9686. },
  9687. ]
  9688. ))
  9689. characterMakers.push(() => makeCharacter(
  9690. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9691. {
  9692. front: {
  9693. height: math.unit(5 + 2 / 12, "feet"),
  9694. weight: math.unit(120, "lbs"),
  9695. name: "Front",
  9696. image: {
  9697. source: "./media/characters/katherine/front.svg",
  9698. extra: 2075 / 1969
  9699. }
  9700. },
  9701. dress: {
  9702. height: math.unit(5 + 2 / 12, "feet"),
  9703. weight: math.unit(120, "lbs"),
  9704. name: "Dress",
  9705. image: {
  9706. source: "./media/characters/katherine/dress.svg",
  9707. extra: 2258 / 2064
  9708. }
  9709. },
  9710. },
  9711. [
  9712. {
  9713. name: "Micro",
  9714. height: math.unit(1, "inches"),
  9715. default: true
  9716. },
  9717. {
  9718. name: "Normal",
  9719. height: math.unit(5 + 2 / 12, "feet")
  9720. },
  9721. {
  9722. name: "Macro",
  9723. height: math.unit(100, "meters")
  9724. },
  9725. {
  9726. name: "Megamacro",
  9727. height: math.unit(80, "miles")
  9728. },
  9729. ]
  9730. ))
  9731. characterMakers.push(() => makeCharacter(
  9732. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9733. {
  9734. front: {
  9735. height: math.unit(7 + 8 / 12, "feet"),
  9736. weight: math.unit(250, "lbs"),
  9737. name: "Front",
  9738. image: {
  9739. source: "./media/characters/yevis/front.svg",
  9740. extra: 1938 / 1755
  9741. }
  9742. }
  9743. },
  9744. [
  9745. {
  9746. name: "Mortal",
  9747. height: math.unit(7 + 8 / 12, "feet")
  9748. },
  9749. {
  9750. name: "Battle",
  9751. height: math.unit(25 + 11 / 12, "feet")
  9752. },
  9753. {
  9754. name: "Wrath",
  9755. height: math.unit(1654 + 11 / 12, "feet")
  9756. },
  9757. {
  9758. name: "Planet Destroyer",
  9759. height: math.unit(12000, "miles")
  9760. },
  9761. {
  9762. name: "Galaxy Conqueror",
  9763. height: math.unit(1.45, "zettameters"),
  9764. default: true
  9765. },
  9766. {
  9767. name: "Universal War",
  9768. height: math.unit(184, "gigaparsecs")
  9769. },
  9770. {
  9771. name: "Eternity War",
  9772. height: math.unit(1.98e55, "yottaparsecs")
  9773. },
  9774. ]
  9775. ))
  9776. characterMakers.push(() => makeCharacter(
  9777. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9778. {
  9779. front: {
  9780. height: math.unit(5 + 8 / 12, "feet"),
  9781. weight: math.unit(63, "kg"),
  9782. name: "Front",
  9783. image: {
  9784. source: "./media/characters/xavier/front.svg",
  9785. extra: 944 / 883
  9786. }
  9787. },
  9788. frontStretch: {
  9789. height: math.unit(5 + 8 / 12, "feet"),
  9790. weight: math.unit(63, "kg"),
  9791. name: "Stretching",
  9792. image: {
  9793. source: "./media/characters/xavier/front-stretch.svg",
  9794. extra: 962 / 820
  9795. }
  9796. },
  9797. },
  9798. [
  9799. {
  9800. name: "Normal",
  9801. height: math.unit(5 + 8 / 12, "feet")
  9802. },
  9803. {
  9804. name: "Macro",
  9805. height: math.unit(100, "meters"),
  9806. default: true
  9807. },
  9808. {
  9809. name: "McLargeHuge",
  9810. height: math.unit(10, "miles")
  9811. },
  9812. ]
  9813. ))
  9814. characterMakers.push(() => makeCharacter(
  9815. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9816. {
  9817. front: {
  9818. height: math.unit(5 + 5 / 12, "feet"),
  9819. weight: math.unit(150, "lb"),
  9820. name: "Front",
  9821. image: {
  9822. source: "./media/characters/joshii/front.svg",
  9823. extra: 765 / 653,
  9824. bottom: 51 / 816
  9825. }
  9826. },
  9827. foot: {
  9828. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9829. name: "Foot",
  9830. image: {
  9831. source: "./media/characters/joshii/foot.svg"
  9832. }
  9833. },
  9834. },
  9835. [
  9836. {
  9837. name: "Micro",
  9838. height: math.unit(2, "inches")
  9839. },
  9840. {
  9841. name: "Normal",
  9842. height: math.unit(5 + 5 / 12, "feet")
  9843. },
  9844. {
  9845. name: "Macro",
  9846. height: math.unit(785, "feet"),
  9847. default: true
  9848. },
  9849. {
  9850. name: "Megamacro",
  9851. height: math.unit(24.5, "miles")
  9852. },
  9853. ]
  9854. ))
  9855. characterMakers.push(() => makeCharacter(
  9856. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9857. {
  9858. front: {
  9859. height: math.unit(6, "feet"),
  9860. weight: math.unit(150, "lb"),
  9861. name: "Front",
  9862. image: {
  9863. source: "./media/characters/goddess-elizabeth/front.svg",
  9864. extra: 1800 / 1525,
  9865. bottom: 0.005
  9866. }
  9867. },
  9868. foot: {
  9869. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9870. name: "Foot",
  9871. image: {
  9872. source: "./media/characters/goddess-elizabeth/foot.svg"
  9873. }
  9874. },
  9875. mouth: {
  9876. height: math.unit(6, "feet"),
  9877. name: "Mouth",
  9878. image: {
  9879. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Micro",
  9886. height: math.unit(12, "feet")
  9887. },
  9888. {
  9889. name: "Normal",
  9890. height: math.unit(80, "miles"),
  9891. default: true
  9892. },
  9893. {
  9894. name: "Macro",
  9895. height: math.unit(15000, "parsecs")
  9896. },
  9897. ]
  9898. ))
  9899. characterMakers.push(() => makeCharacter(
  9900. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9901. {
  9902. front: {
  9903. height: math.unit(5 + 9 / 12, "feet"),
  9904. weight: math.unit(144, "lb"),
  9905. name: "Front",
  9906. image: {
  9907. source: "./media/characters/kara/front.svg"
  9908. }
  9909. },
  9910. feet: {
  9911. height: math.unit(6 / 6.765, "feet"),
  9912. name: "Kara's Feet",
  9913. rename: true,
  9914. image: {
  9915. source: "./media/characters/kara/feet.svg"
  9916. }
  9917. },
  9918. },
  9919. [
  9920. {
  9921. name: "Normal",
  9922. height: math.unit(5 + 9 / 12, "feet")
  9923. },
  9924. {
  9925. name: "Macro",
  9926. height: math.unit(174, "feet"),
  9927. default: true
  9928. },
  9929. ]
  9930. ))
  9931. characterMakers.push(() => makeCharacter(
  9932. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9933. {
  9934. front: {
  9935. height: math.unit(18, "feet"),
  9936. weight: math.unit(4050, "lb"),
  9937. name: "Front",
  9938. image: {
  9939. source: "./media/characters/tyrone/front.svg",
  9940. extra: 2405 / 2270,
  9941. bottom: 182 / 2587
  9942. }
  9943. },
  9944. },
  9945. [
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(18, "feet"),
  9949. default: true
  9950. },
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(300, "feet")
  9954. },
  9955. {
  9956. name: "Megamacro",
  9957. height: math.unit(15, "km")
  9958. },
  9959. {
  9960. name: "Gigamacro",
  9961. height: math.unit(500, "km")
  9962. },
  9963. {
  9964. name: "Teramacro",
  9965. height: math.unit(0.5, "gigameters")
  9966. },
  9967. {
  9968. name: "Omnimacro",
  9969. height: math.unit(1e252, "yottauniverse")
  9970. },
  9971. ]
  9972. ))
  9973. characterMakers.push(() => makeCharacter(
  9974. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9975. {
  9976. front: {
  9977. height: math.unit(7 + 8 / 12, "feet"),
  9978. weight: math.unit(120, "lb"),
  9979. name: "Front",
  9980. image: {
  9981. source: "./media/characters/danny/front.svg",
  9982. extra: 1490 / 1350
  9983. }
  9984. },
  9985. back: {
  9986. height: math.unit(7 + 8 / 12, "feet"),
  9987. weight: math.unit(120, "lb"),
  9988. name: "Back",
  9989. image: {
  9990. source: "./media/characters/danny/back.svg",
  9991. extra: 1490 / 1350
  9992. }
  9993. },
  9994. },
  9995. [
  9996. {
  9997. name: "Normal",
  9998. height: math.unit(7 + 8 / 12, "feet"),
  9999. default: true
  10000. },
  10001. ]
  10002. ))
  10003. characterMakers.push(() => makeCharacter(
  10004. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10005. {
  10006. front: {
  10007. height: math.unit(3.5, "inches"),
  10008. weight: math.unit(19, "grams"),
  10009. name: "Front",
  10010. image: {
  10011. source: "./media/characters/mallow/front.svg",
  10012. extra: 471 / 431
  10013. }
  10014. },
  10015. back: {
  10016. height: math.unit(3.5, "inches"),
  10017. weight: math.unit(19, "grams"),
  10018. name: "Back",
  10019. image: {
  10020. source: "./media/characters/mallow/back.svg",
  10021. extra: 471 / 431
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(3.5, "inches"),
  10029. default: true
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(9, "feet"),
  10038. weight: math.unit(230, "kg"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/starry-aqua/front.svg"
  10042. }
  10043. },
  10044. back: {
  10045. height: math.unit(9, "feet"),
  10046. weight: math.unit(230, "kg"),
  10047. name: "Back",
  10048. image: {
  10049. source: "./media/characters/starry-aqua/back.svg"
  10050. }
  10051. },
  10052. hand: {
  10053. height: math.unit(9 * 0.1168, "feet"),
  10054. name: "Hand",
  10055. image: {
  10056. source: "./media/characters/starry-aqua/hand.svg"
  10057. }
  10058. },
  10059. foot: {
  10060. height: math.unit(9 * 0.18, "feet"),
  10061. name: "Foot",
  10062. image: {
  10063. source: "./media/characters/starry-aqua/foot.svg"
  10064. }
  10065. }
  10066. },
  10067. [
  10068. {
  10069. name: "Micro",
  10070. height: math.unit(3, "inches")
  10071. },
  10072. {
  10073. name: "Normal",
  10074. height: math.unit(9, "feet")
  10075. },
  10076. {
  10077. name: "Macro",
  10078. height: math.unit(300, "feet"),
  10079. default: true
  10080. },
  10081. {
  10082. name: "Megamacro",
  10083. height: math.unit(3200, "feet")
  10084. }
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10089. {
  10090. front: {
  10091. height: math.unit(15, "feet"),
  10092. weight: math.unit(5026, "lb"),
  10093. name: "Front",
  10094. image: {
  10095. source: "./media/characters/luka-towers/front.svg",
  10096. extra: 1269/1133,
  10097. bottom: 51/1320
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Normal",
  10104. height: math.unit(15, "feet"),
  10105. default: true
  10106. },
  10107. {
  10108. name: "Minimacro",
  10109. height: math.unit(25, "feet")
  10110. },
  10111. {
  10112. name: "Macro",
  10113. height: math.unit(320, "feet")
  10114. },
  10115. {
  10116. name: "Megamacro",
  10117. height: math.unit(35000, "feet")
  10118. },
  10119. {
  10120. name: "Gigamacro",
  10121. height: math.unit(4000, "miles")
  10122. },
  10123. {
  10124. name: "Teramacro",
  10125. height: math.unit(15000, "miles")
  10126. },
  10127. ]
  10128. ))
  10129. characterMakers.push(() => makeCharacter(
  10130. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10131. {
  10132. front: {
  10133. height: math.unit(6, "feet"),
  10134. weight: math.unit(150, "lb"),
  10135. name: "Front",
  10136. image: {
  10137. source: "./media/characters/natalie-nightring/front.svg",
  10138. extra: 1,
  10139. bottom: 0.06
  10140. }
  10141. },
  10142. },
  10143. [
  10144. {
  10145. name: "Uh Oh",
  10146. height: math.unit(0.1, "mm")
  10147. },
  10148. {
  10149. name: "Small",
  10150. height: math.unit(3, "inches")
  10151. },
  10152. {
  10153. name: "Human Scale",
  10154. height: math.unit(6, "feet")
  10155. },
  10156. {
  10157. name: "Librarian",
  10158. height: math.unit(50, "feet"),
  10159. default: true
  10160. },
  10161. {
  10162. name: "Immense",
  10163. height: math.unit(200, "miles")
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(6, "feet"),
  10172. weight: math.unit(180, "lbs"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/danni-rosie/front.svg",
  10176. extra: 1260 / 1128,
  10177. bottom: 0.022
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Micro",
  10184. height: math.unit(2, "inches"),
  10185. default: true
  10186. },
  10187. ]
  10188. ))
  10189. characterMakers.push(() => makeCharacter(
  10190. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10191. {
  10192. front: {
  10193. height: math.unit(5 + 9 / 12, "feet"),
  10194. weight: math.unit(220, "lb"),
  10195. name: "Front",
  10196. image: {
  10197. source: "./media/characters/samantha-kruse/front.svg",
  10198. extra: (985 / 935),
  10199. bottom: 0.03
  10200. }
  10201. },
  10202. frontUndressed: {
  10203. height: math.unit(5 + 9 / 12, "feet"),
  10204. weight: math.unit(220, "lb"),
  10205. name: "Front (Undressed)",
  10206. image: {
  10207. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10208. extra: (973 / 923),
  10209. bottom: 0.025
  10210. }
  10211. },
  10212. fat: {
  10213. height: math.unit(5 + 9 / 12, "feet"),
  10214. weight: math.unit(900, "lb"),
  10215. name: "Front (Fat)",
  10216. image: {
  10217. source: "./media/characters/samantha-kruse/fat.svg",
  10218. extra: 2688 / 2561
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(5 + 9 / 12, "feet"),
  10226. default: true
  10227. }
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10232. {
  10233. back: {
  10234. height: math.unit(5 + 4 / 12, "feet"),
  10235. weight: math.unit(4963, "lb"),
  10236. name: "Back",
  10237. image: {
  10238. source: "./media/characters/amelia-rosie/back.svg",
  10239. extra: 1113 / 963,
  10240. bottom: 0.01
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Level 0",
  10247. height: math.unit(5 + 4 / 12, "feet")
  10248. },
  10249. {
  10250. name: "Level 1",
  10251. height: math.unit(164597, "feet"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Level 2",
  10256. height: math.unit(956243, "miles")
  10257. },
  10258. {
  10259. name: "Level 3",
  10260. height: math.unit(29421709423, "miles")
  10261. },
  10262. {
  10263. name: "Level 4",
  10264. height: math.unit(154, "lightyears")
  10265. },
  10266. {
  10267. name: "Level 5",
  10268. height: math.unit(4738272, "lightyears")
  10269. },
  10270. {
  10271. name: "Level 6",
  10272. height: math.unit(145787152896, "lightyears")
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(5 + 11 / 12, "feet"),
  10281. weight: math.unit(65, "kg"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/rook-kitara/front.svg",
  10285. extra: 1347 / 1274,
  10286. bottom: 0.005
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Totally Unfair",
  10293. height: math.unit(1.8, "mm")
  10294. },
  10295. {
  10296. name: "Lap Rookie",
  10297. height: math.unit(1.4, "feet")
  10298. },
  10299. {
  10300. name: "Normal",
  10301. height: math.unit(5 + 11 / 12, "feet"),
  10302. default: true
  10303. },
  10304. {
  10305. name: "How Did This Happen",
  10306. height: math.unit(80, "miles")
  10307. }
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10312. {
  10313. front: {
  10314. height: math.unit(7, "feet"),
  10315. weight: math.unit(300, "lb"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/pisces/front.svg",
  10319. extra: 2255 / 2115,
  10320. bottom: 0.03
  10321. }
  10322. },
  10323. back: {
  10324. height: math.unit(7, "feet"),
  10325. weight: math.unit(300, "lb"),
  10326. name: "Back",
  10327. image: {
  10328. source: "./media/characters/pisces/back.svg",
  10329. extra: 2146 / 2055,
  10330. bottom: 0.04
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Normal",
  10337. height: math.unit(7, "feet"),
  10338. default: true
  10339. },
  10340. {
  10341. name: "Swimming Pool",
  10342. height: math.unit(12.2, "meters")
  10343. },
  10344. {
  10345. name: "Olympic Swimming Pool",
  10346. height: math.unit(56.3, "meters")
  10347. },
  10348. {
  10349. name: "Lake Superior",
  10350. height: math.unit(93900, "meters")
  10351. },
  10352. {
  10353. name: "Mediterranean Sea",
  10354. height: math.unit(644457, "meters")
  10355. },
  10356. {
  10357. name: "World's Oceans",
  10358. height: math.unit(4567491, "meters")
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10364. {
  10365. front: {
  10366. height: math.unit(2.3, "meters"),
  10367. weight: math.unit(120, "kg"),
  10368. name: "Front",
  10369. image: {
  10370. source: "./media/characters/zelas/front.svg"
  10371. }
  10372. },
  10373. side: {
  10374. height: math.unit(2.3, "meters"),
  10375. weight: math.unit(120, "kg"),
  10376. name: "Side",
  10377. image: {
  10378. source: "./media/characters/zelas/side.svg"
  10379. }
  10380. },
  10381. back: {
  10382. height: math.unit(2.3, "meters"),
  10383. weight: math.unit(120, "kg"),
  10384. name: "Back",
  10385. image: {
  10386. source: "./media/characters/zelas/back.svg"
  10387. }
  10388. },
  10389. foot: {
  10390. height: math.unit(1.116, "feet"),
  10391. name: "Foot",
  10392. image: {
  10393. source: "./media/characters/zelas/foot.svg"
  10394. }
  10395. },
  10396. },
  10397. [
  10398. {
  10399. name: "Normal",
  10400. height: math.unit(2.3, "meters")
  10401. },
  10402. {
  10403. name: "Macro",
  10404. height: math.unit(30, "meters"),
  10405. default: true
  10406. },
  10407. ]
  10408. ))
  10409. characterMakers.push(() => makeCharacter(
  10410. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10411. {
  10412. front: {
  10413. height: math.unit(1, "inch"),
  10414. weight: math.unit(0.21, "grams"),
  10415. name: "Front",
  10416. image: {
  10417. source: "./media/characters/talbot/front.svg",
  10418. extra: 594 / 544
  10419. }
  10420. },
  10421. },
  10422. [
  10423. {
  10424. name: "Micro",
  10425. height: math.unit(1, "inch"),
  10426. default: true
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10432. {
  10433. front: {
  10434. height: math.unit(3 + 3 / 12, "feet"),
  10435. weight: math.unit(51.8, "lb"),
  10436. name: "Front",
  10437. image: {
  10438. source: "./media/characters/fliss/front.svg",
  10439. extra: 840 / 640
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Teeny Tiny",
  10446. height: math.unit(1, "mm")
  10447. },
  10448. {
  10449. name: "Small",
  10450. height: math.unit(1, "inch"),
  10451. default: true
  10452. },
  10453. {
  10454. name: "Standard Sylveon",
  10455. height: math.unit(3 + 3 / 12, "feet")
  10456. },
  10457. {
  10458. name: "Large Nuisance",
  10459. height: math.unit(33, "feet")
  10460. },
  10461. {
  10462. name: "City Filler",
  10463. height: math.unit(3000, "feet")
  10464. },
  10465. {
  10466. name: "New Horizon",
  10467. height: math.unit(6000, "miles")
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10473. {
  10474. front: {
  10475. height: math.unit(5, "cm"),
  10476. weight: math.unit(1.94, "g"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/fleta/front.svg",
  10480. extra: 835 / 803
  10481. }
  10482. },
  10483. back: {
  10484. height: math.unit(5, "cm"),
  10485. weight: math.unit(1.94, "g"),
  10486. name: "Back",
  10487. image: {
  10488. source: "./media/characters/fleta/back.svg",
  10489. extra: 835 / 803
  10490. }
  10491. },
  10492. },
  10493. [
  10494. {
  10495. name: "Micro",
  10496. height: math.unit(5, "cm"),
  10497. default: true
  10498. },
  10499. ]
  10500. ))
  10501. characterMakers.push(() => makeCharacter(
  10502. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10503. {
  10504. front: {
  10505. height: math.unit(6, "feet"),
  10506. weight: math.unit(225, "lb"),
  10507. name: "Front",
  10508. image: {
  10509. source: "./media/characters/dominic/front.svg",
  10510. extra: 1770 / 1620,
  10511. bottom: 0.025
  10512. }
  10513. },
  10514. back: {
  10515. height: math.unit(6, "feet"),
  10516. weight: math.unit(225, "lb"),
  10517. name: "Back",
  10518. image: {
  10519. source: "./media/characters/dominic/back.svg",
  10520. extra: 1745 / 1620,
  10521. bottom: 0.065
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Nano",
  10528. height: math.unit(0.1, "mm")
  10529. },
  10530. {
  10531. name: "Micro-",
  10532. height: math.unit(1, "mm")
  10533. },
  10534. {
  10535. name: "Micro",
  10536. height: math.unit(4, "inches")
  10537. },
  10538. {
  10539. name: "Normal",
  10540. height: math.unit(6 + 4 / 12, "feet"),
  10541. default: true
  10542. },
  10543. {
  10544. name: "Macro",
  10545. height: math.unit(115, "feet")
  10546. },
  10547. {
  10548. name: "Macro+",
  10549. height: math.unit(955, "feet")
  10550. },
  10551. {
  10552. name: "Megamacro",
  10553. height: math.unit(8990, "feet")
  10554. },
  10555. {
  10556. name: "Gigmacro",
  10557. height: math.unit(9310, "miles")
  10558. },
  10559. {
  10560. name: "Teramacro",
  10561. height: math.unit(1567005010, "miles")
  10562. },
  10563. {
  10564. name: "Examacro",
  10565. height: math.unit(1425, "parsecs")
  10566. },
  10567. ]
  10568. ))
  10569. characterMakers.push(() => makeCharacter(
  10570. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10571. {
  10572. front: {
  10573. height: math.unit(400, "feet"),
  10574. weight: math.unit(44444444, "lb"),
  10575. name: "Front",
  10576. image: {
  10577. source: "./media/characters/major-colonel/front.svg"
  10578. }
  10579. },
  10580. back: {
  10581. height: math.unit(400, "feet"),
  10582. weight: math.unit(44444444, "lb"),
  10583. name: "Back",
  10584. image: {
  10585. source: "./media/characters/major-colonel/back.svg"
  10586. }
  10587. },
  10588. },
  10589. [
  10590. {
  10591. name: "Macro",
  10592. height: math.unit(400, "feet"),
  10593. default: true
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10599. {
  10600. catFront: {
  10601. height: math.unit(6, "feet"),
  10602. weight: math.unit(120, "lb"),
  10603. name: "Front (Cat Side)",
  10604. image: {
  10605. source: "./media/characters/axel-lycan/cat-front.svg",
  10606. extra: 430 / 402,
  10607. bottom: 43 / 472.35
  10608. }
  10609. },
  10610. catBack: {
  10611. height: math.unit(6, "feet"),
  10612. weight: math.unit(120, "lb"),
  10613. name: "Back (Cat Side)",
  10614. image: {
  10615. source: "./media/characters/axel-lycan/cat-back.svg",
  10616. extra: 447 / 419,
  10617. bottom: 23.3 / 469
  10618. }
  10619. },
  10620. wolfFront: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(120, "lb"),
  10623. name: "Front (Wolf Side)",
  10624. image: {
  10625. source: "./media/characters/axel-lycan/wolf-front.svg",
  10626. extra: 485 / 456,
  10627. bottom: 19 / 504
  10628. }
  10629. },
  10630. wolfBack: {
  10631. height: math.unit(6, "feet"),
  10632. weight: math.unit(120, "lb"),
  10633. name: "Back (Wolf Side)",
  10634. image: {
  10635. source: "./media/characters/axel-lycan/wolf-back.svg",
  10636. extra: 475 / 438,
  10637. bottom: 39.2 / 514
  10638. }
  10639. },
  10640. },
  10641. [
  10642. {
  10643. name: "Macro",
  10644. height: math.unit(1, "km"),
  10645. default: true
  10646. },
  10647. ]
  10648. ))
  10649. characterMakers.push(() => makeCharacter(
  10650. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10651. {
  10652. front: {
  10653. height: math.unit(5 + 9 / 12, "feet"),
  10654. weight: math.unit(175, "lb"),
  10655. name: "Front",
  10656. image: {
  10657. source: "./media/characters/vanrel-hyena/front.svg",
  10658. extra: 1086 / 1010,
  10659. bottom: 0.04
  10660. }
  10661. },
  10662. },
  10663. [
  10664. {
  10665. name: "Normal",
  10666. height: math.unit(5 + 9 / 12, "feet"),
  10667. default: true
  10668. },
  10669. ]
  10670. ))
  10671. characterMakers.push(() => makeCharacter(
  10672. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10673. {
  10674. front: {
  10675. height: math.unit(6, "feet"),
  10676. weight: math.unit(103, "lb"),
  10677. name: "Front",
  10678. image: {
  10679. source: "./media/characters/abbott-absol/front.svg",
  10680. extra: 2010 / 1842
  10681. }
  10682. },
  10683. },
  10684. [
  10685. {
  10686. name: "Megamicro",
  10687. height: math.unit(0.1, "mm")
  10688. },
  10689. {
  10690. name: "Micro",
  10691. height: math.unit(1, "inch")
  10692. },
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(6, "feet"),
  10696. default: true
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10702. {
  10703. front: {
  10704. height: math.unit(6, "feet"),
  10705. weight: math.unit(264, "lb"),
  10706. name: "Front",
  10707. image: {
  10708. source: "./media/characters/hector/front.svg",
  10709. extra: 2280 / 2130,
  10710. bottom: 0.07
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(12.25, "foot"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "Macro",
  10722. height: math.unit(160, "feet")
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(6, "feet"),
  10731. weight: math.unit(150, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/sal/front.svg",
  10735. extra: 1846 / 1699,
  10736. bottom: 0.04
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Megamacro",
  10743. height: math.unit(10, "miles"),
  10744. default: true
  10745. },
  10746. ]
  10747. ))
  10748. characterMakers.push(() => makeCharacter(
  10749. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10750. {
  10751. front: {
  10752. height: math.unit(3, "meters"),
  10753. weight: math.unit(450, "kg"),
  10754. name: "front",
  10755. image: {
  10756. source: "./media/characters/ranger/front.svg",
  10757. extra: 2401 / 2243,
  10758. bottom: 0.05
  10759. }
  10760. },
  10761. },
  10762. [
  10763. {
  10764. name: "Normal",
  10765. height: math.unit(3, "meters"),
  10766. default: true
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10772. {
  10773. front: {
  10774. height: math.unit(14, "feet"),
  10775. weight: math.unit(800, "kg"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/theresa/front.svg",
  10779. extra: 3575 / 3346,
  10780. bottom: 0.03
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Normal",
  10787. height: math.unit(14, "feet"),
  10788. default: true
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10794. {
  10795. front: {
  10796. height: math.unit(6, "feet"),
  10797. weight: math.unit(3, "kg"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/ine/front.svg",
  10801. extra: 678 / 539,
  10802. bottom: 0.023
  10803. }
  10804. },
  10805. },
  10806. [
  10807. {
  10808. name: "Normal",
  10809. height: math.unit(2.265, "feet"),
  10810. default: true
  10811. },
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10816. {
  10817. front: {
  10818. height: math.unit(5, "feet"),
  10819. weight: math.unit(30, "kg"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/vial/front.svg",
  10823. extra: 1365 / 1277,
  10824. bottom: 0.04
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Normal",
  10831. height: math.unit(5, "feet"),
  10832. default: true
  10833. },
  10834. ]
  10835. ))
  10836. characterMakers.push(() => makeCharacter(
  10837. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10838. {
  10839. side: {
  10840. height: math.unit(3.4, "meters"),
  10841. weight: math.unit(1000, "lb"),
  10842. name: "Side",
  10843. image: {
  10844. source: "./media/characters/rovoska/side.svg",
  10845. extra: 4403 / 1515
  10846. }
  10847. },
  10848. },
  10849. [
  10850. {
  10851. name: "Normal",
  10852. height: math.unit(3.4, "meters"),
  10853. default: true
  10854. },
  10855. ]
  10856. ))
  10857. characterMakers.push(() => makeCharacter(
  10858. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10859. {
  10860. front: {
  10861. height: math.unit(8, "feet"),
  10862. weight: math.unit(315, "lb"),
  10863. name: "Front",
  10864. image: {
  10865. source: "./media/characters/gunner-rotthbauer/front.svg"
  10866. }
  10867. },
  10868. back: {
  10869. height: math.unit(8, "feet"),
  10870. weight: math.unit(315, "lb"),
  10871. name: "Back",
  10872. image: {
  10873. source: "./media/characters/gunner-rotthbauer/back.svg"
  10874. }
  10875. },
  10876. },
  10877. [
  10878. {
  10879. name: "Micro",
  10880. height: math.unit(3.5, "inches")
  10881. },
  10882. {
  10883. name: "Normal",
  10884. height: math.unit(8, "feet"),
  10885. default: true
  10886. },
  10887. {
  10888. name: "Macro",
  10889. height: math.unit(250, "feet")
  10890. },
  10891. {
  10892. name: "Megamacro",
  10893. height: math.unit(1, "AU")
  10894. },
  10895. ]
  10896. ))
  10897. characterMakers.push(() => makeCharacter(
  10898. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10899. {
  10900. front: {
  10901. height: math.unit(5 + 5 / 12, "feet"),
  10902. weight: math.unit(140, "lb"),
  10903. name: "Front",
  10904. image: {
  10905. source: "./media/characters/allatia/front.svg",
  10906. extra: 1227 / 1180,
  10907. bottom: 0.027
  10908. }
  10909. },
  10910. },
  10911. [
  10912. {
  10913. name: "Normal",
  10914. height: math.unit(5 + 5 / 12, "feet")
  10915. },
  10916. {
  10917. name: "Macro",
  10918. height: math.unit(250, "feet"),
  10919. default: true
  10920. },
  10921. {
  10922. name: "Megamacro",
  10923. height: math.unit(8, "miles")
  10924. }
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10929. {
  10930. front: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(120, "lb"),
  10933. name: "Front",
  10934. image: {
  10935. source: "./media/characters/tene/front.svg",
  10936. extra: 814/750,
  10937. bottom: 36/850
  10938. }
  10939. },
  10940. stomping: {
  10941. height: math.unit(2.025, "meters"),
  10942. weight: math.unit(120, "lb"),
  10943. name: "Stomping",
  10944. image: {
  10945. source: "./media/characters/tene/stomping.svg",
  10946. extra: 885/821,
  10947. bottom: 15/900
  10948. }
  10949. },
  10950. sitting: {
  10951. height: math.unit(1, "meter"),
  10952. weight: math.unit(120, "lb"),
  10953. name: "Sitting",
  10954. image: {
  10955. source: "./media/characters/tene/sitting.svg",
  10956. extra: 396/366,
  10957. bottom: 79/475
  10958. }
  10959. },
  10960. smiling: {
  10961. height: math.unit(1.2, "feet"),
  10962. name: "Smiling",
  10963. image: {
  10964. source: "./media/characters/tene/smiling.svg",
  10965. extra: 1364/1071,
  10966. bottom: 0/1364
  10967. }
  10968. },
  10969. smug: {
  10970. height: math.unit(1.3, "feet"),
  10971. name: "Smug",
  10972. image: {
  10973. source: "./media/characters/tene/smug.svg",
  10974. extra: 1323/1082,
  10975. bottom: 0/1323
  10976. }
  10977. },
  10978. feral: {
  10979. height: math.unit(3.9, "feet"),
  10980. weight: math.unit(250, "lb"),
  10981. name: "Feral",
  10982. image: {
  10983. source: "./media/characters/tene/feral.svg",
  10984. extra: 717 / 458,
  10985. bottom: 0.179
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Normal",
  10992. height: math.unit(6, "feet")
  10993. },
  10994. {
  10995. name: "Macro",
  10996. height: math.unit(300, "feet"),
  10997. default: true
  10998. },
  10999. {
  11000. name: "Megamacro",
  11001. height: math.unit(5, "miles")
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11007. {
  11008. side: {
  11009. height: math.unit(6, "feet"),
  11010. name: "Side",
  11011. image: {
  11012. source: "./media/characters/evander/side.svg",
  11013. extra: 877 / 477
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Normal",
  11020. height: math.unit(0.83, "meters"),
  11021. default: true
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11027. {
  11028. front: {
  11029. height: math.unit(12, "feet"),
  11030. weight: math.unit(1000, "lb"),
  11031. name: "Front",
  11032. image: {
  11033. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11034. extra: 1762 / 1611
  11035. }
  11036. },
  11037. back: {
  11038. height: math.unit(12, "feet"),
  11039. weight: math.unit(1000, "lb"),
  11040. name: "Back",
  11041. image: {
  11042. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11043. extra: 1762 / 1611
  11044. }
  11045. },
  11046. },
  11047. [
  11048. {
  11049. name: "Normal",
  11050. height: math.unit(12, "feet"),
  11051. default: true
  11052. },
  11053. {
  11054. name: "Kaiju",
  11055. height: math.unit(150, "feet")
  11056. },
  11057. ]
  11058. ))
  11059. characterMakers.push(() => makeCharacter(
  11060. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11061. {
  11062. front: {
  11063. height: math.unit(6, "feet"),
  11064. weight: math.unit(150, "lb"),
  11065. name: "Front",
  11066. image: {
  11067. source: "./media/characters/zero-alurus/front.svg"
  11068. }
  11069. },
  11070. back: {
  11071. height: math.unit(6, "feet"),
  11072. weight: math.unit(150, "lb"),
  11073. name: "Back",
  11074. image: {
  11075. source: "./media/characters/zero-alurus/back.svg"
  11076. }
  11077. },
  11078. },
  11079. [
  11080. {
  11081. name: "Normal",
  11082. height: math.unit(5 + 10 / 12, "feet")
  11083. },
  11084. {
  11085. name: "Macro",
  11086. height: math.unit(60, "feet"),
  11087. default: true
  11088. },
  11089. {
  11090. name: "Macro+",
  11091. height: math.unit(450, "feet")
  11092. },
  11093. ]
  11094. ))
  11095. characterMakers.push(() => makeCharacter(
  11096. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11097. {
  11098. front: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(200, "lb"),
  11101. name: "Front",
  11102. image: {
  11103. source: "./media/characters/mega-shi/front.svg",
  11104. extra: 1279 / 1250,
  11105. bottom: 0.02
  11106. }
  11107. },
  11108. back: {
  11109. height: math.unit(6, "feet"),
  11110. weight: math.unit(200, "lb"),
  11111. name: "Back",
  11112. image: {
  11113. source: "./media/characters/mega-shi/back.svg",
  11114. extra: 1279 / 1250,
  11115. bottom: 0.02
  11116. }
  11117. },
  11118. },
  11119. [
  11120. {
  11121. name: "Micro",
  11122. height: math.unit(16 + 6 / 12, "feet")
  11123. },
  11124. {
  11125. name: "Third Dimension",
  11126. height: math.unit(40, "meters")
  11127. },
  11128. {
  11129. name: "Normal",
  11130. height: math.unit(660, "feet"),
  11131. default: true
  11132. },
  11133. {
  11134. name: "Megamacro",
  11135. height: math.unit(10, "miles")
  11136. },
  11137. {
  11138. name: "Planetary Launch",
  11139. height: math.unit(500, "miles")
  11140. },
  11141. {
  11142. name: "Interstellar",
  11143. height: math.unit(1e9, "miles")
  11144. },
  11145. {
  11146. name: "Leaving the Universe",
  11147. height: math.unit(1, "gigaparsec")
  11148. },
  11149. {
  11150. name: "Travelling Universes",
  11151. height: math.unit(30e15, "parsecs")
  11152. },
  11153. ]
  11154. ))
  11155. characterMakers.push(() => makeCharacter(
  11156. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11157. {
  11158. front: {
  11159. height: math.unit(5 + 4/12, "feet"),
  11160. weight: math.unit(120, "lb"),
  11161. name: "Front",
  11162. image: {
  11163. source: "./media/characters/odyssey/front.svg",
  11164. extra: 1747/1571,
  11165. bottom: 47/1794
  11166. }
  11167. },
  11168. side: {
  11169. height: math.unit(5.1, "feet"),
  11170. weight: math.unit(120, "lb"),
  11171. name: "Side",
  11172. image: {
  11173. source: "./media/characters/odyssey/side.svg",
  11174. extra: 1847/1619,
  11175. bottom: 47/1894
  11176. }
  11177. },
  11178. lounging: {
  11179. height: math.unit(1.464, "feet"),
  11180. weight: math.unit(120, "lb"),
  11181. name: "Lounging",
  11182. image: {
  11183. source: "./media/characters/odyssey/lounging.svg",
  11184. extra: 1235/837,
  11185. bottom: 551/1786
  11186. }
  11187. },
  11188. },
  11189. [
  11190. {
  11191. name: "Normal",
  11192. height: math.unit(5 + 4 / 12, "feet")
  11193. },
  11194. {
  11195. name: "Macro",
  11196. height: math.unit(1, "km")
  11197. },
  11198. {
  11199. name: "Megamacro",
  11200. height: math.unit(3000, "km")
  11201. },
  11202. {
  11203. name: "Gigamacro",
  11204. height: math.unit(1, "AU"),
  11205. default: true
  11206. },
  11207. {
  11208. name: "Omniversal",
  11209. height: math.unit(100e14, "lightyears")
  11210. },
  11211. ]
  11212. ))
  11213. characterMakers.push(() => makeCharacter(
  11214. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11215. {
  11216. front: {
  11217. height: math.unit(5 + 10/12, "feet"),
  11218. name: "Front",
  11219. image: {
  11220. source: "./media/characters/mekuto/front.svg",
  11221. extra: 875/835,
  11222. bottom: 46/921
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Minimicro",
  11229. height: math.unit(0.2, "inches")
  11230. },
  11231. {
  11232. name: "Micro",
  11233. height: math.unit(1.5, "inches")
  11234. },
  11235. {
  11236. name: "Normal",
  11237. height: math.unit(5 + 10 / 12, "feet"),
  11238. default: true
  11239. },
  11240. {
  11241. name: "Minimacro",
  11242. height: math.unit(17 + 9 / 12, "feet")
  11243. },
  11244. {
  11245. name: "Macro",
  11246. height: math.unit(177.5, "feet")
  11247. },
  11248. {
  11249. name: "Megamacro",
  11250. height: math.unit(152, "miles")
  11251. },
  11252. ]
  11253. ))
  11254. characterMakers.push(() => makeCharacter(
  11255. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11256. {
  11257. front: {
  11258. height: math.unit(6.5, "inches"),
  11259. weight: math.unit(13, "oz"),
  11260. name: "Front",
  11261. image: {
  11262. source: "./media/characters/dafydd-tomos/front.svg",
  11263. extra: 2990 / 2603,
  11264. bottom: 0.03
  11265. }
  11266. },
  11267. },
  11268. [
  11269. {
  11270. name: "Micro",
  11271. height: math.unit(6.5, "inches"),
  11272. default: true
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(6, "feet"),
  11281. weight: math.unit(150, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/splinter/front.svg",
  11285. extra: 2990 / 2882,
  11286. bottom: 0.04
  11287. }
  11288. },
  11289. back: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(150, "lb"),
  11292. name: "Back",
  11293. image: {
  11294. source: "./media/characters/splinter/back.svg",
  11295. extra: 2990 / 2882,
  11296. bottom: 0.04
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Normal",
  11303. height: math.unit(6, "feet")
  11304. },
  11305. {
  11306. name: "Macro",
  11307. height: math.unit(230, "meters"),
  11308. default: true
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11314. {
  11315. front: {
  11316. height: math.unit(4 + 10 / 12, "feet"),
  11317. weight: math.unit(480, "lb"),
  11318. name: "Front",
  11319. image: {
  11320. source: "./media/characters/snow-gabumon/front.svg",
  11321. extra: 1140 / 963,
  11322. bottom: 0.058
  11323. }
  11324. },
  11325. back: {
  11326. height: math.unit(4 + 10 / 12, "feet"),
  11327. weight: math.unit(480, "lb"),
  11328. name: "Back",
  11329. image: {
  11330. source: "./media/characters/snow-gabumon/back.svg",
  11331. extra: 1115 / 962,
  11332. bottom: 0.041
  11333. }
  11334. },
  11335. frontUndresed: {
  11336. height: math.unit(4 + 10 / 12, "feet"),
  11337. weight: math.unit(480, "lb"),
  11338. name: "Front (Undressed)",
  11339. image: {
  11340. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11341. extra: 1061 / 960,
  11342. bottom: 0.045
  11343. }
  11344. },
  11345. },
  11346. [
  11347. {
  11348. name: "Micro",
  11349. height: math.unit(1, "inch")
  11350. },
  11351. {
  11352. name: "Normal",
  11353. height: math.unit(4 + 10 / 12, "feet"),
  11354. default: true
  11355. },
  11356. {
  11357. name: "Macro",
  11358. height: math.unit(200, "feet")
  11359. },
  11360. {
  11361. name: "Megamacro",
  11362. height: math.unit(120, "miles")
  11363. },
  11364. {
  11365. name: "Gigamacro",
  11366. height: math.unit(9800, "miles")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11372. {
  11373. front: {
  11374. height: math.unit(1.7, "meters"),
  11375. weight: math.unit(140, "lb"),
  11376. name: "Front",
  11377. image: {
  11378. source: "./media/characters/moody/front.svg",
  11379. extra: 3226 / 3007,
  11380. bottom: 0.087
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Micro",
  11387. height: math.unit(1, "mm")
  11388. },
  11389. {
  11390. name: "Normal",
  11391. height: math.unit(1.7, "meters"),
  11392. default: true
  11393. },
  11394. {
  11395. name: "Macro",
  11396. height: math.unit(80, "meters")
  11397. },
  11398. {
  11399. name: "Macro+",
  11400. height: math.unit(500, "meters")
  11401. },
  11402. ]
  11403. ))
  11404. characterMakers.push(() => makeCharacter(
  11405. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11406. {
  11407. front: {
  11408. height: math.unit(6, "feet"),
  11409. weight: math.unit(150, "lb"),
  11410. name: "Front",
  11411. image: {
  11412. source: "./media/characters/zyas/front.svg",
  11413. extra: 1180 / 1120,
  11414. bottom: 0.045
  11415. }
  11416. },
  11417. },
  11418. [
  11419. {
  11420. name: "Normal",
  11421. height: math.unit(10, "feet"),
  11422. default: true
  11423. },
  11424. {
  11425. name: "Macro",
  11426. height: math.unit(500, "feet")
  11427. },
  11428. {
  11429. name: "Megamacro",
  11430. height: math.unit(5, "miles")
  11431. },
  11432. {
  11433. name: "Teramacro",
  11434. height: math.unit(150000, "miles")
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11440. {
  11441. front: {
  11442. height: math.unit(6, "feet"),
  11443. weight: math.unit(150, "lb"),
  11444. name: "Front",
  11445. image: {
  11446. source: "./media/characters/cuon/front.svg",
  11447. extra: 1390 / 1320,
  11448. bottom: 0.008
  11449. }
  11450. },
  11451. },
  11452. [
  11453. {
  11454. name: "Micro",
  11455. height: math.unit(3, "inches")
  11456. },
  11457. {
  11458. name: "Normal",
  11459. height: math.unit(18 + 9 / 12, "feet"),
  11460. default: true
  11461. },
  11462. {
  11463. name: "Macro",
  11464. height: math.unit(360, "feet")
  11465. },
  11466. {
  11467. name: "Megamacro",
  11468. height: math.unit(360, "miles")
  11469. },
  11470. ]
  11471. ))
  11472. characterMakers.push(() => makeCharacter(
  11473. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11474. {
  11475. front: {
  11476. height: math.unit(2.4, "meters"),
  11477. weight: math.unit(70, "kg"),
  11478. name: "Front",
  11479. image: {
  11480. source: "./media/characters/nyanuxk/front.svg",
  11481. extra: 1172 / 1084,
  11482. bottom: 0.065
  11483. }
  11484. },
  11485. side: {
  11486. height: math.unit(2.4, "meters"),
  11487. weight: math.unit(70, "kg"),
  11488. name: "Side",
  11489. image: {
  11490. source: "./media/characters/nyanuxk/side.svg",
  11491. extra: 1190 / 1132,
  11492. bottom: 0.007
  11493. }
  11494. },
  11495. back: {
  11496. height: math.unit(2.4, "meters"),
  11497. weight: math.unit(70, "kg"),
  11498. name: "Back",
  11499. image: {
  11500. source: "./media/characters/nyanuxk/back.svg",
  11501. extra: 1200 / 1141,
  11502. bottom: 0.015
  11503. }
  11504. },
  11505. foot: {
  11506. height: math.unit(0.52, "meters"),
  11507. name: "Foot",
  11508. image: {
  11509. source: "./media/characters/nyanuxk/foot.svg"
  11510. }
  11511. },
  11512. },
  11513. [
  11514. {
  11515. name: "Micro",
  11516. height: math.unit(2, "cm")
  11517. },
  11518. {
  11519. name: "Normal",
  11520. height: math.unit(2.4, "meters"),
  11521. default: true
  11522. },
  11523. {
  11524. name: "Smaller Macro",
  11525. height: math.unit(120, "meters")
  11526. },
  11527. {
  11528. name: "Bigger Macro",
  11529. height: math.unit(1.2, "km")
  11530. },
  11531. {
  11532. name: "Megamacro",
  11533. height: math.unit(15, "kilometers")
  11534. },
  11535. {
  11536. name: "Gigamacro",
  11537. height: math.unit(2000, "km")
  11538. },
  11539. {
  11540. name: "Teramacro",
  11541. height: math.unit(500000, "km")
  11542. },
  11543. ]
  11544. ))
  11545. characterMakers.push(() => makeCharacter(
  11546. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11547. {
  11548. side: {
  11549. height: math.unit(6, "feet"),
  11550. name: "Side",
  11551. image: {
  11552. source: "./media/characters/ailbhe/side.svg",
  11553. extra: 757 / 464,
  11554. bottom: 0.041
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Normal",
  11561. height: math.unit(1.07, "meters"),
  11562. default: true
  11563. },
  11564. ]
  11565. ))
  11566. characterMakers.push(() => makeCharacter(
  11567. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11568. {
  11569. front: {
  11570. height: math.unit(6, "feet"),
  11571. weight: math.unit(120, "kg"),
  11572. name: "Front",
  11573. image: {
  11574. source: "./media/characters/zevulfius/front.svg",
  11575. extra: 965 / 903
  11576. }
  11577. },
  11578. side: {
  11579. height: math.unit(6, "feet"),
  11580. weight: math.unit(120, "kg"),
  11581. name: "Side",
  11582. image: {
  11583. source: "./media/characters/zevulfius/side.svg",
  11584. extra: 939 / 900
  11585. }
  11586. },
  11587. back: {
  11588. height: math.unit(6, "feet"),
  11589. weight: math.unit(120, "kg"),
  11590. name: "Back",
  11591. image: {
  11592. source: "./media/characters/zevulfius/back.svg",
  11593. extra: 918 / 854,
  11594. bottom: 0.005
  11595. }
  11596. },
  11597. foot: {
  11598. height: math.unit(6 / 3.72, "feet"),
  11599. name: "Foot",
  11600. image: {
  11601. source: "./media/characters/zevulfius/foot.svg"
  11602. }
  11603. },
  11604. },
  11605. [
  11606. {
  11607. name: "Macro",
  11608. height: math.unit(750, "meters")
  11609. },
  11610. {
  11611. name: "Megamacro",
  11612. height: math.unit(20, "km"),
  11613. default: true
  11614. },
  11615. {
  11616. name: "Gigamacro",
  11617. height: math.unit(2000, "km")
  11618. },
  11619. {
  11620. name: "Teramacro",
  11621. height: math.unit(250000, "km")
  11622. },
  11623. ]
  11624. ))
  11625. characterMakers.push(() => makeCharacter(
  11626. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11627. {
  11628. front: {
  11629. height: math.unit(100, "feet"),
  11630. weight: math.unit(350, "kg"),
  11631. name: "Front",
  11632. image: {
  11633. source: "./media/characters/rikes/front.svg",
  11634. extra: 1565 / 1483,
  11635. bottom: 0.017
  11636. }
  11637. },
  11638. },
  11639. [
  11640. {
  11641. name: "Macro",
  11642. height: math.unit(100, "feet"),
  11643. default: true
  11644. },
  11645. ]
  11646. ))
  11647. characterMakers.push(() => makeCharacter(
  11648. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11649. {
  11650. front: {
  11651. height: math.unit(8, "feet"),
  11652. weight: math.unit(356, "lb"),
  11653. name: "Front",
  11654. image: {
  11655. source: "./media/characters/adam-silver-mane/front.svg",
  11656. extra: 1036/937,
  11657. bottom: 63/1099
  11658. }
  11659. },
  11660. side: {
  11661. height: math.unit(8, "feet"),
  11662. weight: math.unit(356, "lb"),
  11663. name: "Side",
  11664. image: {
  11665. source: "./media/characters/adam-silver-mane/side.svg",
  11666. extra: 997/901,
  11667. bottom: 59/1056
  11668. }
  11669. },
  11670. frontNsfw: {
  11671. height: math.unit(8, "feet"),
  11672. weight: math.unit(356, "lb"),
  11673. name: "Front (NSFW)",
  11674. image: {
  11675. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11676. extra: 1036/937,
  11677. bottom: 63/1099
  11678. }
  11679. },
  11680. sideNsfw: {
  11681. height: math.unit(8, "feet"),
  11682. weight: math.unit(356, "lb"),
  11683. name: "Side (NSFW)",
  11684. image: {
  11685. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11686. extra: 997/901,
  11687. bottom: 59/1056
  11688. }
  11689. },
  11690. dick: {
  11691. height: math.unit(2.1, "feet"),
  11692. name: "Dick",
  11693. image: {
  11694. source: "./media/characters/adam-silver-mane/dick.svg"
  11695. }
  11696. },
  11697. taur: {
  11698. height: math.unit(16, "feet"),
  11699. weight: math.unit(1500, "kg"),
  11700. name: "Taur",
  11701. image: {
  11702. source: "./media/characters/adam-silver-mane/taur.svg",
  11703. extra: 1713 / 1571,
  11704. bottom: 0.01
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Normal",
  11711. height: math.unit(8, "feet")
  11712. },
  11713. {
  11714. name: "Minimacro",
  11715. height: math.unit(80, "feet")
  11716. },
  11717. {
  11718. name: "MDA",
  11719. height: math.unit(80, "meters")
  11720. },
  11721. {
  11722. name: "Macro",
  11723. height: math.unit(800, "feet"),
  11724. default: true
  11725. },
  11726. {
  11727. name: "Megamacro",
  11728. height: math.unit(8000, "feet")
  11729. },
  11730. {
  11731. name: "Gigamacro",
  11732. height: math.unit(800, "miles")
  11733. },
  11734. {
  11735. name: "Teramacro",
  11736. height: math.unit(80000, "miles")
  11737. },
  11738. {
  11739. name: "Celestial",
  11740. height: math.unit(8e6, "miles")
  11741. },
  11742. {
  11743. name: "Star Dragon",
  11744. height: math.unit(800000, "parsecs")
  11745. },
  11746. {
  11747. name: "Godly",
  11748. height: math.unit(800, "teraparsecs")
  11749. },
  11750. ]
  11751. ))
  11752. characterMakers.push(() => makeCharacter(
  11753. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11754. {
  11755. front: {
  11756. height: math.unit(6, "feet"),
  11757. weight: math.unit(150, "lb"),
  11758. name: "Front",
  11759. image: {
  11760. source: "./media/characters/ky'owin/front.svg",
  11761. extra: 3862/3053,
  11762. bottom: 74/3936
  11763. }
  11764. },
  11765. },
  11766. [
  11767. {
  11768. name: "Normal",
  11769. height: math.unit(6 + 8 / 12, "feet")
  11770. },
  11771. {
  11772. name: "Large",
  11773. height: math.unit(68, "feet")
  11774. },
  11775. {
  11776. name: "Macro",
  11777. height: math.unit(132, "feet")
  11778. },
  11779. {
  11780. name: "Macro+",
  11781. height: math.unit(340, "feet")
  11782. },
  11783. {
  11784. name: "Macro++",
  11785. height: math.unit(680, "feet"),
  11786. default: true
  11787. },
  11788. {
  11789. name: "Megamacro",
  11790. height: math.unit(1, "mile")
  11791. },
  11792. {
  11793. name: "Megamacro+",
  11794. height: math.unit(10, "miles")
  11795. },
  11796. ]
  11797. ))
  11798. characterMakers.push(() => makeCharacter(
  11799. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11800. {
  11801. front: {
  11802. height: math.unit(4, "feet"),
  11803. weight: math.unit(50, "lb"),
  11804. name: "Front",
  11805. image: {
  11806. source: "./media/characters/mal/front.svg",
  11807. extra: 785 / 724,
  11808. bottom: 0.07
  11809. }
  11810. },
  11811. },
  11812. [
  11813. {
  11814. name: "Micro",
  11815. height: math.unit(4, "inches")
  11816. },
  11817. {
  11818. name: "Normal",
  11819. height: math.unit(4, "feet"),
  11820. default: true
  11821. },
  11822. {
  11823. name: "Macro",
  11824. height: math.unit(200, "feet")
  11825. },
  11826. ]
  11827. ))
  11828. characterMakers.push(() => makeCharacter(
  11829. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11830. {
  11831. front: {
  11832. height: math.unit(6, "feet"),
  11833. weight: math.unit(150, "lb"),
  11834. name: "Front",
  11835. image: {
  11836. source: "./media/characters/jordan-deware/front.svg",
  11837. extra: 1191 / 1012
  11838. }
  11839. },
  11840. },
  11841. [
  11842. {
  11843. name: "Nano",
  11844. height: math.unit(0.01, "mm")
  11845. },
  11846. {
  11847. name: "Minimicro",
  11848. height: math.unit(1, "mm")
  11849. },
  11850. {
  11851. name: "Micro",
  11852. height: math.unit(0.5, "inches")
  11853. },
  11854. {
  11855. name: "Normal",
  11856. height: math.unit(4, "feet"),
  11857. default: true
  11858. },
  11859. {
  11860. name: "Minimacro",
  11861. height: math.unit(40, "meters")
  11862. },
  11863. {
  11864. name: "Small Macro",
  11865. height: math.unit(400, "meters")
  11866. },
  11867. {
  11868. name: "Macro",
  11869. height: math.unit(4, "miles")
  11870. },
  11871. {
  11872. name: "Megamacro",
  11873. height: math.unit(40, "miles")
  11874. },
  11875. {
  11876. name: "Megamacro+",
  11877. height: math.unit(400, "miles")
  11878. },
  11879. {
  11880. name: "Gigamacro",
  11881. height: math.unit(400000, "miles")
  11882. },
  11883. ]
  11884. ))
  11885. characterMakers.push(() => makeCharacter(
  11886. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11887. {
  11888. side: {
  11889. height: math.unit(6, "feet"),
  11890. weight: math.unit(150, "lb"),
  11891. name: "Side",
  11892. image: {
  11893. source: "./media/characters/kimiko/side.svg",
  11894. extra: 600 / 358
  11895. }
  11896. },
  11897. },
  11898. [
  11899. {
  11900. name: "Normal",
  11901. height: math.unit(15, "feet"),
  11902. default: true
  11903. },
  11904. {
  11905. name: "Macro",
  11906. height: math.unit(220, "feet")
  11907. },
  11908. {
  11909. name: "Macro+",
  11910. height: math.unit(1450, "feet")
  11911. },
  11912. {
  11913. name: "Megamacro",
  11914. height: math.unit(11500, "feet")
  11915. },
  11916. {
  11917. name: "Gigamacro",
  11918. height: math.unit(9500, "miles")
  11919. },
  11920. {
  11921. name: "Teramacro",
  11922. height: math.unit(2208005005, "miles")
  11923. },
  11924. {
  11925. name: "Examacro",
  11926. height: math.unit(2750, "parsecs")
  11927. },
  11928. {
  11929. name: "Zettamacro",
  11930. height: math.unit(101500, "parsecs")
  11931. },
  11932. ]
  11933. ))
  11934. characterMakers.push(() => makeCharacter(
  11935. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11936. {
  11937. front: {
  11938. height: math.unit(6, "feet"),
  11939. weight: math.unit(70, "kg"),
  11940. name: "Front",
  11941. image: {
  11942. source: "./media/characters/andrew-sleepy/front.svg"
  11943. }
  11944. },
  11945. side: {
  11946. height: math.unit(6, "feet"),
  11947. weight: math.unit(70, "kg"),
  11948. name: "Side",
  11949. image: {
  11950. source: "./media/characters/andrew-sleepy/side.svg"
  11951. }
  11952. },
  11953. },
  11954. [
  11955. {
  11956. name: "Micro",
  11957. height: math.unit(1, "mm"),
  11958. default: true
  11959. },
  11960. ]
  11961. ))
  11962. characterMakers.push(() => makeCharacter(
  11963. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11964. {
  11965. front: {
  11966. height: math.unit(6, "feet"),
  11967. weight: math.unit(150, "lb"),
  11968. name: "Front",
  11969. image: {
  11970. source: "./media/characters/judio/front.svg",
  11971. extra: 1258 / 1110
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(5 + 6 / 12, "feet")
  11979. },
  11980. {
  11981. name: "Macro",
  11982. height: math.unit(1000, "feet"),
  11983. default: true
  11984. },
  11985. {
  11986. name: "Megamacro",
  11987. height: math.unit(10, "miles")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11993. {
  11994. frontDressed: {
  11995. height: math.unit(6, "feet"),
  11996. weight: math.unit(68, "kg"),
  11997. name: "Front (Dressed)",
  11998. image: {
  11999. source: "./media/characters/nomaxice/front-dressed.svg",
  12000. extra: 1137/824,
  12001. bottom: 74/1211
  12002. }
  12003. },
  12004. frontShorts: {
  12005. height: math.unit(6, "feet"),
  12006. weight: math.unit(68, "kg"),
  12007. name: "Front (Shorts)",
  12008. image: {
  12009. source: "./media/characters/nomaxice/front-shorts.svg",
  12010. extra: 1137/824,
  12011. bottom: 74/1211
  12012. }
  12013. },
  12014. back: {
  12015. height: math.unit(6, "feet"),
  12016. weight: math.unit(68, "kg"),
  12017. name: "Back",
  12018. image: {
  12019. source: "./media/characters/nomaxice/back.svg",
  12020. extra: 822/786,
  12021. bottom: 39/861
  12022. }
  12023. },
  12024. hand: {
  12025. height: math.unit(0.565, "feet"),
  12026. name: "Hand",
  12027. image: {
  12028. source: "./media/characters/nomaxice/hand.svg"
  12029. }
  12030. },
  12031. foot: {
  12032. height: math.unit(1, "feet"),
  12033. name: "Foot",
  12034. image: {
  12035. source: "./media/characters/nomaxice/foot.svg"
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Micro",
  12042. height: math.unit(8, "cm")
  12043. },
  12044. {
  12045. name: "Norm",
  12046. height: math.unit(1.82, "m")
  12047. },
  12048. {
  12049. name: "Norm+",
  12050. height: math.unit(8.8, "feet"),
  12051. default: true
  12052. },
  12053. {
  12054. name: "Big",
  12055. height: math.unit(8, "meters")
  12056. },
  12057. {
  12058. name: "Macro",
  12059. height: math.unit(18, "meters")
  12060. },
  12061. {
  12062. name: "Macro+",
  12063. height: math.unit(88, "meters")
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(12, "feet"),
  12072. weight: math.unit(1.5, "tons"),
  12073. name: "Front",
  12074. image: {
  12075. source: "./media/characters/dydros/front.svg",
  12076. extra: 863 / 800,
  12077. bottom: 0.015
  12078. }
  12079. },
  12080. back: {
  12081. height: math.unit(12, "feet"),
  12082. weight: math.unit(1.5, "tons"),
  12083. name: "Back",
  12084. image: {
  12085. source: "./media/characters/dydros/back.svg",
  12086. extra: 900 / 843,
  12087. bottom: 0.005
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Normal",
  12094. height: math.unit(12, "feet"),
  12095. default: true
  12096. },
  12097. ]
  12098. ))
  12099. characterMakers.push(() => makeCharacter(
  12100. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12101. {
  12102. front: {
  12103. height: math.unit(6, "feet"),
  12104. weight: math.unit(100, "kg"),
  12105. name: "Front",
  12106. image: {
  12107. source: "./media/characters/riggi/front.svg",
  12108. extra: 5787 / 5303
  12109. }
  12110. },
  12111. hyper: {
  12112. height: math.unit(6 * 5 / 3, "feet"),
  12113. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12114. name: "Hyper",
  12115. image: {
  12116. source: "./media/characters/riggi/hyper.svg",
  12117. extra: 3595 / 3485
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Small Macro",
  12124. height: math.unit(50, "feet")
  12125. },
  12126. {
  12127. name: "Default",
  12128. height: math.unit(200, "feet"),
  12129. default: true
  12130. },
  12131. {
  12132. name: "Loom",
  12133. height: math.unit(10000, "feet")
  12134. },
  12135. {
  12136. name: "Cruising Altitude",
  12137. height: math.unit(30000, "feet")
  12138. },
  12139. {
  12140. name: "Megamacro",
  12141. height: math.unit(100, "miles")
  12142. },
  12143. {
  12144. name: "Continent Sized",
  12145. height: math.unit(2800, "miles")
  12146. },
  12147. {
  12148. name: "Earth Sized",
  12149. height: math.unit(8000, "miles")
  12150. },
  12151. ]
  12152. ))
  12153. characterMakers.push(() => makeCharacter(
  12154. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12155. {
  12156. front: {
  12157. height: math.unit(6, "feet"),
  12158. weight: math.unit(250, "lb"),
  12159. name: "Front",
  12160. image: {
  12161. source: "./media/characters/alexi/front.svg",
  12162. extra: 3483 / 3291,
  12163. bottom: 0.04
  12164. }
  12165. },
  12166. back: {
  12167. height: math.unit(6, "feet"),
  12168. weight: math.unit(250, "lb"),
  12169. name: "Back",
  12170. image: {
  12171. source: "./media/characters/alexi/back.svg",
  12172. extra: 3533 / 3356,
  12173. bottom: 0.021
  12174. }
  12175. },
  12176. frontTransforming: {
  12177. height: math.unit(8.58, "feet"),
  12178. weight: math.unit(1300, "lb"),
  12179. name: "Transforming",
  12180. image: {
  12181. source: "./media/characters/alexi/front-transforming.svg",
  12182. extra: 437 / 409,
  12183. bottom: 19 / 458.66
  12184. }
  12185. },
  12186. frontTransformed: {
  12187. height: math.unit(12.5, "feet"),
  12188. weight: math.unit(4000, "lb"),
  12189. name: "Transformed",
  12190. image: {
  12191. source: "./media/characters/alexi/front-transformed.svg",
  12192. extra: 639 / 614,
  12193. bottom: 30.55 / 671
  12194. }
  12195. },
  12196. },
  12197. [
  12198. {
  12199. name: "Normal",
  12200. height: math.unit(14, "feet"),
  12201. default: true
  12202. },
  12203. {
  12204. name: "Minimacro",
  12205. height: math.unit(30, "meters")
  12206. },
  12207. {
  12208. name: "Macro",
  12209. height: math.unit(500, "meters")
  12210. },
  12211. {
  12212. name: "Megamacro",
  12213. height: math.unit(9000, "km")
  12214. },
  12215. {
  12216. name: "Teramacro",
  12217. height: math.unit(384000, "km")
  12218. },
  12219. ]
  12220. ))
  12221. characterMakers.push(() => makeCharacter(
  12222. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12223. {
  12224. front: {
  12225. height: math.unit(6, "feet"),
  12226. weight: math.unit(150, "lb"),
  12227. name: "Front",
  12228. image: {
  12229. source: "./media/characters/kayroo/front.svg",
  12230. extra: 1153 / 1038,
  12231. bottom: 0.06
  12232. }
  12233. },
  12234. foot: {
  12235. height: math.unit(6, "feet"),
  12236. weight: math.unit(150, "lb"),
  12237. name: "Foot",
  12238. image: {
  12239. source: "./media/characters/kayroo/foot.svg"
  12240. }
  12241. },
  12242. },
  12243. [
  12244. {
  12245. name: "Normal",
  12246. height: math.unit(8, "feet"),
  12247. default: true
  12248. },
  12249. {
  12250. name: "Minimacro",
  12251. height: math.unit(250, "feet")
  12252. },
  12253. {
  12254. name: "Macro",
  12255. height: math.unit(2800, "feet")
  12256. },
  12257. {
  12258. name: "Megamacro",
  12259. height: math.unit(5200, "feet")
  12260. },
  12261. {
  12262. name: "Gigamacro",
  12263. height: math.unit(27000, "feet")
  12264. },
  12265. {
  12266. name: "Omega",
  12267. height: math.unit(45000, "feet")
  12268. },
  12269. ]
  12270. ))
  12271. characterMakers.push(() => makeCharacter(
  12272. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12273. {
  12274. front: {
  12275. height: math.unit(18, "feet"),
  12276. weight: math.unit(5800, "lb"),
  12277. name: "Front",
  12278. image: {
  12279. source: "./media/characters/rhys/front.svg",
  12280. extra: 3386 / 3090,
  12281. bottom: 0.07
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Normal",
  12288. height: math.unit(18, "feet"),
  12289. default: true
  12290. },
  12291. {
  12292. name: "Working Size",
  12293. height: math.unit(200, "feet")
  12294. },
  12295. {
  12296. name: "Demolition Size",
  12297. height: math.unit(2000, "feet")
  12298. },
  12299. {
  12300. name: "Maximum Licensed Size",
  12301. height: math.unit(5, "miles")
  12302. },
  12303. {
  12304. name: "Maximum Observed Size",
  12305. height: math.unit(10, "yottameters")
  12306. },
  12307. ]
  12308. ))
  12309. characterMakers.push(() => makeCharacter(
  12310. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12311. {
  12312. front: {
  12313. height: math.unit(6, "feet"),
  12314. weight: math.unit(250, "lb"),
  12315. name: "Front",
  12316. image: {
  12317. source: "./media/characters/toto/front.svg",
  12318. extra: 527 / 479,
  12319. bottom: 0.05
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Micro",
  12326. height: math.unit(3, "feet")
  12327. },
  12328. {
  12329. name: "Normal",
  12330. height: math.unit(10, "feet")
  12331. },
  12332. {
  12333. name: "Macro",
  12334. height: math.unit(150, "feet"),
  12335. default: true
  12336. },
  12337. {
  12338. name: "Megamacro",
  12339. height: math.unit(1200, "feet")
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "King", species: ["lion"], tags: ["anthro"] },
  12345. {
  12346. back: {
  12347. height: math.unit(6, "feet"),
  12348. weight: math.unit(150, "lb"),
  12349. name: "Back",
  12350. image: {
  12351. source: "./media/characters/king/back.svg"
  12352. }
  12353. },
  12354. },
  12355. [
  12356. {
  12357. name: "Micro",
  12358. height: math.unit(2, "inches")
  12359. },
  12360. {
  12361. name: "Normal",
  12362. height: math.unit(8, "feet")
  12363. },
  12364. {
  12365. name: "Macro",
  12366. height: math.unit(200, "feet"),
  12367. default: true
  12368. },
  12369. {
  12370. name: "Megamacro",
  12371. height: math.unit(50, "miles")
  12372. },
  12373. ]
  12374. ))
  12375. characterMakers.push(() => makeCharacter(
  12376. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12377. {
  12378. front: {
  12379. height: math.unit(11, "feet"),
  12380. weight: math.unit(1400, "lb"),
  12381. name: "Front",
  12382. image: {
  12383. source: "./media/characters/cordite/front.svg",
  12384. extra: 1919/1827,
  12385. bottom: 40/1959
  12386. }
  12387. },
  12388. side: {
  12389. height: math.unit(11, "feet"),
  12390. weight: math.unit(1400, "lb"),
  12391. name: "Side",
  12392. image: {
  12393. source: "./media/characters/cordite/side.svg",
  12394. extra: 1908/1793,
  12395. bottom: 38/1946
  12396. }
  12397. },
  12398. back: {
  12399. height: math.unit(11, "feet"),
  12400. weight: math.unit(1400, "lb"),
  12401. name: "Back",
  12402. image: {
  12403. source: "./media/characters/cordite/back.svg",
  12404. extra: 1938/1837,
  12405. bottom: 10/1948
  12406. }
  12407. },
  12408. feral: {
  12409. height: math.unit(2, "feet"),
  12410. weight: math.unit(90, "lb"),
  12411. name: "Feral",
  12412. image: {
  12413. source: "./media/characters/cordite/feral.svg",
  12414. extra: 1260 / 755,
  12415. bottom: 0.05
  12416. }
  12417. },
  12418. },
  12419. [
  12420. {
  12421. name: "Normal",
  12422. height: math.unit(11, "feet"),
  12423. default: true
  12424. },
  12425. ]
  12426. ))
  12427. characterMakers.push(() => makeCharacter(
  12428. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12429. {
  12430. front: {
  12431. height: math.unit(6, "feet"),
  12432. weight: math.unit(150, "lb"),
  12433. name: "Front",
  12434. image: {
  12435. source: "./media/characters/pianostrong/front.svg",
  12436. extra: 6577 / 6254,
  12437. bottom: 0.02
  12438. }
  12439. },
  12440. side: {
  12441. height: math.unit(6, "feet"),
  12442. weight: math.unit(150, "lb"),
  12443. name: "Side",
  12444. image: {
  12445. source: "./media/characters/pianostrong/side.svg",
  12446. extra: 6106 / 5730
  12447. }
  12448. },
  12449. back: {
  12450. height: math.unit(6, "feet"),
  12451. weight: math.unit(150, "lb"),
  12452. name: "Back",
  12453. image: {
  12454. source: "./media/characters/pianostrong/back.svg",
  12455. extra: 6085 / 5733,
  12456. bottom: 0.01
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Macro",
  12463. height: math.unit(100, "feet")
  12464. },
  12465. {
  12466. name: "Macro+",
  12467. height: math.unit(300, "feet"),
  12468. default: true
  12469. },
  12470. {
  12471. name: "Macro++",
  12472. height: math.unit(1000, "feet")
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12478. {
  12479. front: {
  12480. height: math.unit(6, "feet"),
  12481. weight: math.unit(150, "lb"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/kona/front.svg",
  12485. extra: 2960 / 2629,
  12486. bottom: 0.005
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Normal",
  12493. height: math.unit(11 + 8 / 12, "feet")
  12494. },
  12495. {
  12496. name: "Macro",
  12497. height: math.unit(850, "feet"),
  12498. default: true
  12499. },
  12500. {
  12501. name: "Macro+",
  12502. height: math.unit(1.5, "km"),
  12503. default: true
  12504. },
  12505. {
  12506. name: "Megamacro",
  12507. height: math.unit(80, "miles")
  12508. },
  12509. {
  12510. name: "Gigamacro",
  12511. height: math.unit(3500, "miles")
  12512. },
  12513. ]
  12514. ))
  12515. characterMakers.push(() => makeCharacter(
  12516. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12517. {
  12518. side: {
  12519. height: math.unit(1.9, "meters"),
  12520. weight: math.unit(326, "kg"),
  12521. name: "Side",
  12522. image: {
  12523. source: "./media/characters/levi/side.svg",
  12524. extra: 1704 / 1334,
  12525. bottom: 0.02
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Normal",
  12532. height: math.unit(1.9, "meters"),
  12533. default: true
  12534. },
  12535. {
  12536. name: "Macro",
  12537. height: math.unit(20, "meters")
  12538. },
  12539. {
  12540. name: "Macro+",
  12541. height: math.unit(200, "meters")
  12542. },
  12543. {
  12544. name: "Megamacro",
  12545. height: math.unit(2, "km")
  12546. },
  12547. {
  12548. name: "Megamacro+",
  12549. height: math.unit(20, "km")
  12550. },
  12551. {
  12552. name: "Gigamacro",
  12553. height: math.unit(2500, "km")
  12554. },
  12555. {
  12556. name: "Gigamacro+",
  12557. height: math.unit(120000, "km")
  12558. },
  12559. {
  12560. name: "Teramacro",
  12561. height: math.unit(7.77e6, "km")
  12562. },
  12563. ]
  12564. ))
  12565. characterMakers.push(() => makeCharacter(
  12566. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12567. {
  12568. front: {
  12569. height: math.unit(6 + 4/12, "feet"),
  12570. weight: math.unit(190, "lb"),
  12571. name: "Front",
  12572. image: {
  12573. source: "./media/characters/bmc/front.svg",
  12574. extra: 1626/1472,
  12575. bottom: 79/1705
  12576. }
  12577. },
  12578. back: {
  12579. height: math.unit(6 + 4/12, "feet"),
  12580. weight: math.unit(190, "lb"),
  12581. name: "Back",
  12582. image: {
  12583. source: "./media/characters/bmc/back.svg",
  12584. extra: 1640/1479,
  12585. bottom: 45/1685
  12586. }
  12587. },
  12588. frontArmor: {
  12589. height: math.unit(6 + 4/12, "feet"),
  12590. weight: math.unit(190, "lb"),
  12591. name: "Front-armor",
  12592. image: {
  12593. source: "./media/characters/bmc/front-armor.svg",
  12594. extra: 1538/1468,
  12595. bottom: 79/1617
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Human-sized",
  12602. height: math.unit(6 + 4 / 12, "feet")
  12603. },
  12604. {
  12605. name: "Interactive Size",
  12606. height: math.unit(25, "feet")
  12607. },
  12608. {
  12609. name: "Small",
  12610. height: math.unit(250, "feet")
  12611. },
  12612. {
  12613. name: "Normal",
  12614. height: math.unit(1250, "feet"),
  12615. default: true
  12616. },
  12617. {
  12618. name: "Good Day",
  12619. height: math.unit(88, "miles")
  12620. },
  12621. {
  12622. name: "Largest Measured Size",
  12623. height: math.unit(105.960, "galaxies")
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12629. {
  12630. front: {
  12631. height: math.unit(20, "feet"),
  12632. weight: math.unit(2016, "kg"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/sven-the-kaiju/front.svg",
  12636. extra: 1277/1250,
  12637. bottom: 35/1312
  12638. }
  12639. },
  12640. mouth: {
  12641. height: math.unit(1.85, "feet"),
  12642. name: "Mouth",
  12643. image: {
  12644. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12645. }
  12646. },
  12647. },
  12648. [
  12649. {
  12650. name: "Fairy",
  12651. height: math.unit(6, "inches")
  12652. },
  12653. {
  12654. name: "Normal",
  12655. height: math.unit(20, "feet"),
  12656. default: true
  12657. },
  12658. {
  12659. name: "Rampage",
  12660. height: math.unit(200, "feet")
  12661. },
  12662. {
  12663. name: "Archfey Forest Guardian",
  12664. height: math.unit(1, "mile")
  12665. },
  12666. ]
  12667. ))
  12668. characterMakers.push(() => makeCharacter(
  12669. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12670. {
  12671. front: {
  12672. height: math.unit(4, "meters"),
  12673. weight: math.unit(2, "tons"),
  12674. name: "Front",
  12675. image: {
  12676. source: "./media/characters/marik/front.svg",
  12677. extra: 1057 / 1003,
  12678. bottom: 0.08
  12679. }
  12680. },
  12681. },
  12682. [
  12683. {
  12684. name: "Normal",
  12685. height: math.unit(4, "meters"),
  12686. default: true
  12687. },
  12688. {
  12689. name: "Macro",
  12690. height: math.unit(20, "meters")
  12691. },
  12692. {
  12693. name: "Megamacro",
  12694. height: math.unit(50, "km")
  12695. },
  12696. {
  12697. name: "Gigamacro",
  12698. height: math.unit(100, "km")
  12699. },
  12700. {
  12701. name: "Alpha Macro",
  12702. height: math.unit(7.88e7, "yottameters")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(110, "lb"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/mel/front.svg",
  12715. extra: 736 / 617,
  12716. bottom: 0.017
  12717. }
  12718. },
  12719. },
  12720. [
  12721. {
  12722. name: "Pico",
  12723. height: math.unit(3, "pm")
  12724. },
  12725. {
  12726. name: "Nano",
  12727. height: math.unit(3, "nm")
  12728. },
  12729. {
  12730. name: "Micro",
  12731. height: math.unit(0.3, "mm"),
  12732. default: true
  12733. },
  12734. {
  12735. name: "Micro+",
  12736. height: math.unit(3, "mm")
  12737. },
  12738. {
  12739. name: "Normal",
  12740. height: math.unit(5 + 10.5 / 12, "feet")
  12741. },
  12742. ]
  12743. ))
  12744. characterMakers.push(() => makeCharacter(
  12745. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12746. {
  12747. kaiju: {
  12748. height: math.unit(1.75, "meters"),
  12749. weight: math.unit(55, "kg"),
  12750. name: "Kaiju",
  12751. image: {
  12752. source: "./media/characters/lykonous/kaiju.svg",
  12753. extra: 1055 / 946,
  12754. bottom: 0.135
  12755. }
  12756. },
  12757. },
  12758. [
  12759. {
  12760. name: "Normal",
  12761. height: math.unit(2.5, "meters"),
  12762. default: true
  12763. },
  12764. {
  12765. name: "Kaiju Dragon",
  12766. height: math.unit(60, "meters")
  12767. },
  12768. {
  12769. name: "Mega Kaiju",
  12770. height: math.unit(120, "km")
  12771. },
  12772. {
  12773. name: "Giga Kaiju",
  12774. height: math.unit(200, "megameters")
  12775. },
  12776. {
  12777. name: "Terra Kaiju",
  12778. height: math.unit(400, "gigameters")
  12779. },
  12780. {
  12781. name: "Kaiju Dragon God",
  12782. height: math.unit(13000, "exaparsecs")
  12783. },
  12784. ]
  12785. ))
  12786. characterMakers.push(() => makeCharacter(
  12787. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12788. {
  12789. front: {
  12790. height: math.unit(6, "feet"),
  12791. weight: math.unit(150, "lb"),
  12792. name: "Front",
  12793. image: {
  12794. source: "./media/characters/blü/front.svg",
  12795. extra: 1883 / 1564,
  12796. bottom: 0.031
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Normal",
  12803. height: math.unit(13, "feet"),
  12804. default: true
  12805. },
  12806. {
  12807. name: "Big Boi",
  12808. height: math.unit(150, "meters")
  12809. },
  12810. {
  12811. name: "Mini Stomper",
  12812. height: math.unit(300, "meters")
  12813. },
  12814. {
  12815. name: "Macro",
  12816. height: math.unit(1000, "meters")
  12817. },
  12818. {
  12819. name: "Megamacro",
  12820. height: math.unit(11000, "meters")
  12821. },
  12822. {
  12823. name: "Gigamacro",
  12824. height: math.unit(11000, "km")
  12825. },
  12826. {
  12827. name: "Teramacro",
  12828. height: math.unit(420000, "km")
  12829. },
  12830. {
  12831. name: "Examacro",
  12832. height: math.unit(120, "parsecs")
  12833. },
  12834. {
  12835. name: "God Tho",
  12836. height: math.unit(98000000000, "parsecs")
  12837. },
  12838. ]
  12839. ))
  12840. characterMakers.push(() => makeCharacter(
  12841. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12842. {
  12843. taurFront: {
  12844. height: math.unit(6, "feet"),
  12845. weight: math.unit(200, "lb"),
  12846. name: "Taur (Front)",
  12847. image: {
  12848. source: "./media/characters/scales/taur-front.svg",
  12849. extra: 1,
  12850. bottom: 0.05
  12851. }
  12852. },
  12853. taurBack: {
  12854. height: math.unit(6, "feet"),
  12855. weight: math.unit(200, "lb"),
  12856. name: "Taur (Back)",
  12857. image: {
  12858. source: "./media/characters/scales/taur-back.svg",
  12859. extra: 1,
  12860. bottom: 0.08
  12861. }
  12862. },
  12863. anthro: {
  12864. height: math.unit(6 * 7 / 12, "feet"),
  12865. weight: math.unit(100, "lb"),
  12866. name: "Anthro",
  12867. image: {
  12868. source: "./media/characters/scales/anthro.svg",
  12869. extra: 1,
  12870. bottom: 0.06
  12871. }
  12872. },
  12873. },
  12874. [
  12875. {
  12876. name: "Normal",
  12877. height: math.unit(12, "feet"),
  12878. default: true
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(6, "feet"),
  12887. weight: math.unit(150, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/koragos/front.svg",
  12891. extra: 841 / 794,
  12892. bottom: 0.035
  12893. }
  12894. },
  12895. back: {
  12896. height: math.unit(6, "feet"),
  12897. weight: math.unit(150, "lb"),
  12898. name: "Back",
  12899. image: {
  12900. source: "./media/characters/koragos/back.svg",
  12901. extra: 841 / 810,
  12902. bottom: 0.022
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Normal",
  12909. height: math.unit(6 + 11 / 12, "feet"),
  12910. default: true
  12911. },
  12912. {
  12913. name: "Macro",
  12914. height: math.unit(490, "feet")
  12915. },
  12916. {
  12917. name: "Megamacro",
  12918. height: math.unit(10, "miles")
  12919. },
  12920. {
  12921. name: "Gigamacro",
  12922. height: math.unit(50, "miles")
  12923. },
  12924. ]
  12925. ))
  12926. characterMakers.push(() => makeCharacter(
  12927. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12928. {
  12929. front: {
  12930. height: math.unit(6, "feet"),
  12931. weight: math.unit(250, "lb"),
  12932. name: "Front",
  12933. image: {
  12934. source: "./media/characters/xylrem/front.svg",
  12935. extra: 3323 / 3050,
  12936. bottom: 0.065
  12937. }
  12938. },
  12939. },
  12940. [
  12941. {
  12942. name: "Micro",
  12943. height: math.unit(4, "feet")
  12944. },
  12945. {
  12946. name: "Normal",
  12947. height: math.unit(16, "feet"),
  12948. default: true
  12949. },
  12950. {
  12951. name: "Macro",
  12952. height: math.unit(2720, "feet")
  12953. },
  12954. {
  12955. name: "Megamacro",
  12956. height: math.unit(25000, "miles")
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12962. {
  12963. front: {
  12964. height: math.unit(8, "feet"),
  12965. weight: math.unit(250, "kg"),
  12966. name: "Front",
  12967. image: {
  12968. source: "./media/characters/ikideru/front.svg",
  12969. extra: 930 / 870,
  12970. bottom: 0.087
  12971. }
  12972. },
  12973. back: {
  12974. height: math.unit(8, "feet"),
  12975. weight: math.unit(250, "kg"),
  12976. name: "Back",
  12977. image: {
  12978. source: "./media/characters/ikideru/back.svg",
  12979. extra: 919 / 852,
  12980. bottom: 0.055
  12981. }
  12982. },
  12983. },
  12984. [
  12985. {
  12986. name: "Rare",
  12987. height: math.unit(8, "feet"),
  12988. default: true
  12989. },
  12990. {
  12991. name: "Playful Loom",
  12992. height: math.unit(80, "feet")
  12993. },
  12994. {
  12995. name: "City Leaner",
  12996. height: math.unit(230, "feet")
  12997. },
  12998. {
  12999. name: "Megamacro",
  13000. height: math.unit(2500, "feet")
  13001. },
  13002. {
  13003. name: "Gigamacro",
  13004. height: math.unit(26400, "feet")
  13005. },
  13006. {
  13007. name: "Tectonic Shifter",
  13008. height: math.unit(1.7, "megameters")
  13009. },
  13010. {
  13011. name: "Planet Carer",
  13012. height: math.unit(21, "megameters")
  13013. },
  13014. {
  13015. name: "God",
  13016. height: math.unit(11157.22, "parsecs")
  13017. },
  13018. ]
  13019. ))
  13020. characterMakers.push(() => makeCharacter(
  13021. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13022. {
  13023. front: {
  13024. height: math.unit(6, "feet"),
  13025. weight: math.unit(120, "lb"),
  13026. name: "Front",
  13027. image: {
  13028. source: "./media/characters/neo/front.svg"
  13029. }
  13030. },
  13031. },
  13032. [
  13033. {
  13034. name: "Micro",
  13035. height: math.unit(2, "inches"),
  13036. default: true
  13037. },
  13038. {
  13039. name: "Human Size",
  13040. height: math.unit(5 + 8 / 12, "feet")
  13041. },
  13042. ]
  13043. ))
  13044. characterMakers.push(() => makeCharacter(
  13045. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13046. {
  13047. front: {
  13048. height: math.unit(13 + 10 / 12, "feet"),
  13049. weight: math.unit(5320, "lb"),
  13050. name: "Front",
  13051. image: {
  13052. source: "./media/characters/chauncey-chantz/front.svg",
  13053. extra: 1587 / 1435,
  13054. bottom: 0.02
  13055. }
  13056. },
  13057. },
  13058. [
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(13 + 10 / 12, "feet"),
  13062. default: true
  13063. },
  13064. {
  13065. name: "Macro",
  13066. height: math.unit(45, "feet")
  13067. },
  13068. {
  13069. name: "Megamacro",
  13070. height: math.unit(250, "miles")
  13071. },
  13072. {
  13073. name: "Planetary",
  13074. height: math.unit(10000, "miles")
  13075. },
  13076. {
  13077. name: "Galactic",
  13078. height: math.unit(40000, "parsecs")
  13079. },
  13080. {
  13081. name: "Universal",
  13082. height: math.unit(1, "yottameter")
  13083. },
  13084. ]
  13085. ))
  13086. characterMakers.push(() => makeCharacter(
  13087. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13088. {
  13089. front: {
  13090. height: math.unit(6, "feet"),
  13091. weight: math.unit(150, "lb"),
  13092. name: "Front",
  13093. image: {
  13094. source: "./media/characters/epifox/front.svg",
  13095. extra: 1,
  13096. bottom: 0.075
  13097. }
  13098. },
  13099. },
  13100. [
  13101. {
  13102. name: "Micro",
  13103. height: math.unit(6, "inches")
  13104. },
  13105. {
  13106. name: "Normal",
  13107. height: math.unit(12, "feet"),
  13108. default: true
  13109. },
  13110. {
  13111. name: "Macro",
  13112. height: math.unit(3810, "feet")
  13113. },
  13114. {
  13115. name: "Megamacro",
  13116. height: math.unit(500, "miles")
  13117. },
  13118. ]
  13119. ))
  13120. characterMakers.push(() => makeCharacter(
  13121. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13122. {
  13123. front: {
  13124. height: math.unit(1.8796, "m"),
  13125. weight: math.unit(230, "lb"),
  13126. name: "Front",
  13127. image: {
  13128. source: "./media/characters/colin-t/front.svg",
  13129. extra: 1272 / 1193,
  13130. bottom: 0.07
  13131. }
  13132. },
  13133. },
  13134. [
  13135. {
  13136. name: "Micro",
  13137. height: math.unit(0.571, "meters")
  13138. },
  13139. {
  13140. name: "Normal",
  13141. height: math.unit(1.8796, "meters"),
  13142. default: true
  13143. },
  13144. {
  13145. name: "Tall",
  13146. height: math.unit(4, "meters")
  13147. },
  13148. {
  13149. name: "Macro",
  13150. height: math.unit(67.241, "meters")
  13151. },
  13152. {
  13153. name: "Megamacro",
  13154. height: math.unit(371.856, "meters")
  13155. },
  13156. {
  13157. name: "Planetary",
  13158. height: math.unit(12631.5689, "km")
  13159. },
  13160. ]
  13161. ))
  13162. characterMakers.push(() => makeCharacter(
  13163. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13164. {
  13165. front: {
  13166. height: math.unit(1.85, "meters"),
  13167. weight: math.unit(80, "kg"),
  13168. name: "Front",
  13169. image: {
  13170. source: "./media/characters/matvei/front.svg",
  13171. extra: 456/447,
  13172. bottom: 8/464
  13173. }
  13174. },
  13175. back: {
  13176. height: math.unit(1.85, "meters"),
  13177. weight: math.unit(80, "kg"),
  13178. name: "Back",
  13179. image: {
  13180. source: "./media/characters/matvei/back.svg",
  13181. extra: 434/427,
  13182. bottom: 11/445
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Normal",
  13189. height: math.unit(1.85, "meters"),
  13190. default: true
  13191. },
  13192. ]
  13193. ))
  13194. characterMakers.push(() => makeCharacter(
  13195. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13196. {
  13197. front: {
  13198. height: math.unit(5 + 9 / 12, "feet"),
  13199. weight: math.unit(70, "lb"),
  13200. name: "Front",
  13201. image: {
  13202. source: "./media/characters/quincy/front.svg",
  13203. extra: 3041 / 2751
  13204. }
  13205. },
  13206. back: {
  13207. height: math.unit(5 + 9 / 12, "feet"),
  13208. weight: math.unit(70, "lb"),
  13209. name: "Back",
  13210. image: {
  13211. source: "./media/characters/quincy/back.svg",
  13212. extra: 3041 / 2751
  13213. }
  13214. },
  13215. flying: {
  13216. height: math.unit(5 + 4 / 12, "feet"),
  13217. weight: math.unit(70, "lb"),
  13218. name: "Flying",
  13219. image: {
  13220. source: "./media/characters/quincy/flying.svg",
  13221. extra: 1044 / 930
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Micro",
  13228. height: math.unit(3, "cm")
  13229. },
  13230. {
  13231. name: "Normal",
  13232. height: math.unit(5 + 9 / 12, "feet")
  13233. },
  13234. {
  13235. name: "Macro",
  13236. height: math.unit(200, "meters"),
  13237. default: true
  13238. },
  13239. {
  13240. name: "Megamacro",
  13241. height: math.unit(1000, "meters")
  13242. },
  13243. ]
  13244. ))
  13245. characterMakers.push(() => makeCharacter(
  13246. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13247. {
  13248. front: {
  13249. height: math.unit(3 + 11/12, "feet"),
  13250. weight: math.unit(50, "lb"),
  13251. name: "Front",
  13252. image: {
  13253. source: "./media/characters/vanrel/front.svg",
  13254. extra: 1104/949,
  13255. bottom: 52/1156
  13256. }
  13257. },
  13258. back: {
  13259. height: math.unit(3 + 11/12, "feet"),
  13260. weight: math.unit(50, "lb"),
  13261. name: "Back",
  13262. image: {
  13263. source: "./media/characters/vanrel/back.svg",
  13264. extra: 1119/976,
  13265. bottom: 37/1156
  13266. }
  13267. },
  13268. tome: {
  13269. height: math.unit(1.35, "feet"),
  13270. weight: math.unit(10, "lb"),
  13271. name: "Vanrel's Tome",
  13272. rename: true,
  13273. image: {
  13274. source: "./media/characters/vanrel/tome.svg"
  13275. }
  13276. },
  13277. beans: {
  13278. height: math.unit(0.89, "feet"),
  13279. name: "Beans",
  13280. image: {
  13281. source: "./media/characters/vanrel/beans.svg"
  13282. }
  13283. },
  13284. },
  13285. [
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(3 + 11/12, "feet"),
  13289. default: true
  13290. },
  13291. ]
  13292. ))
  13293. characterMakers.push(() => makeCharacter(
  13294. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13295. {
  13296. front: {
  13297. height: math.unit(7 + 5 / 12, "feet"),
  13298. name: "Front",
  13299. image: {
  13300. source: "./media/characters/kuiper-vanrel/front.svg",
  13301. extra: 1219/1169,
  13302. bottom: 69/1288
  13303. }
  13304. },
  13305. back: {
  13306. height: math.unit(7 + 5 / 12, "feet"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/kuiper-vanrel/back.svg",
  13310. extra: 1236/1193,
  13311. bottom: 27/1263
  13312. }
  13313. },
  13314. foot: {
  13315. height: math.unit(0.55, "meters"),
  13316. name: "Foot",
  13317. image: {
  13318. source: "./media/characters/kuiper-vanrel/foot.svg",
  13319. }
  13320. },
  13321. battle: {
  13322. height: math.unit(6.824, "feet"),
  13323. name: "Battle",
  13324. image: {
  13325. source: "./media/characters/kuiper-vanrel/battle.svg",
  13326. extra: 1466 / 1327,
  13327. bottom: 29 / 1492.5
  13328. }
  13329. },
  13330. meerkui: {
  13331. height: math.unit(18, "inches"),
  13332. name: "Meerkui",
  13333. image: {
  13334. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13335. extra: 1354/1289,
  13336. bottom: 69/1423
  13337. }
  13338. },
  13339. },
  13340. [
  13341. {
  13342. name: "Normal",
  13343. height: math.unit(7 + 5 / 12, "feet"),
  13344. default: true
  13345. },
  13346. ]
  13347. ))
  13348. characterMakers.push(() => makeCharacter(
  13349. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13350. {
  13351. front: {
  13352. height: math.unit(8 + 5 / 12, "feet"),
  13353. name: "Front",
  13354. image: {
  13355. source: "./media/characters/keset-vanrel/front.svg",
  13356. extra: 1231/1148,
  13357. bottom: 82/1313
  13358. }
  13359. },
  13360. back: {
  13361. height: math.unit(8 + 5 / 12, "feet"),
  13362. name: "Back",
  13363. image: {
  13364. source: "./media/characters/keset-vanrel/back.svg",
  13365. extra: 1240/1174,
  13366. bottom: 33/1273
  13367. }
  13368. },
  13369. hand: {
  13370. height: math.unit(0.6, "meters"),
  13371. name: "Hand",
  13372. image: {
  13373. source: "./media/characters/keset-vanrel/hand.svg"
  13374. }
  13375. },
  13376. foot: {
  13377. height: math.unit(0.94978, "meters"),
  13378. name: "Foot",
  13379. image: {
  13380. source: "./media/characters/keset-vanrel/foot.svg"
  13381. }
  13382. },
  13383. battle: {
  13384. height: math.unit(7.408, "feet"),
  13385. name: "Battle",
  13386. image: {
  13387. source: "./media/characters/keset-vanrel/battle.svg",
  13388. extra: 1890 / 1386,
  13389. bottom: 73.28 / 1970
  13390. }
  13391. },
  13392. },
  13393. [
  13394. {
  13395. name: "Normal",
  13396. height: math.unit(8 + 5 / 12, "feet"),
  13397. default: true
  13398. },
  13399. ]
  13400. ))
  13401. characterMakers.push(() => makeCharacter(
  13402. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13403. {
  13404. front: {
  13405. height: math.unit(6, "feet"),
  13406. weight: math.unit(150, "lb"),
  13407. name: "Front",
  13408. image: {
  13409. source: "./media/characters/neos/front.svg",
  13410. extra: 1696 / 992,
  13411. bottom: 0.14
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Normal",
  13418. height: math.unit(54, "cm"),
  13419. default: true
  13420. },
  13421. {
  13422. name: "Macro",
  13423. height: math.unit(100, "m")
  13424. },
  13425. {
  13426. name: "Megamacro",
  13427. height: math.unit(10, "km")
  13428. },
  13429. {
  13430. name: "Megamacro+",
  13431. height: math.unit(100, "km")
  13432. },
  13433. {
  13434. name: "Gigamacro",
  13435. height: math.unit(100, "Mm")
  13436. },
  13437. {
  13438. name: "Teramacro",
  13439. height: math.unit(100, "Gm")
  13440. },
  13441. {
  13442. name: "Examacro",
  13443. height: math.unit(100, "Em")
  13444. },
  13445. {
  13446. name: "Godly",
  13447. height: math.unit(10000, "Ym")
  13448. },
  13449. {
  13450. name: "Beyond Godly",
  13451. height: math.unit(25, "multiverses")
  13452. },
  13453. ]
  13454. ))
  13455. characterMakers.push(() => makeCharacter(
  13456. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13457. {
  13458. feminine: {
  13459. height: math.unit(5, "feet"),
  13460. weight: math.unit(100, "lb"),
  13461. name: "Feminine",
  13462. image: {
  13463. source: "./media/characters/sammy-mouse/feminine.svg",
  13464. extra: 2526 / 2425,
  13465. bottom: 0.123
  13466. }
  13467. },
  13468. masculine: {
  13469. height: math.unit(5, "feet"),
  13470. weight: math.unit(100, "lb"),
  13471. name: "Masculine",
  13472. image: {
  13473. source: "./media/characters/sammy-mouse/masculine.svg",
  13474. extra: 2526 / 2425,
  13475. bottom: 0.123
  13476. }
  13477. },
  13478. },
  13479. [
  13480. {
  13481. name: "Micro",
  13482. height: math.unit(5, "inches")
  13483. },
  13484. {
  13485. name: "Normal",
  13486. height: math.unit(5, "feet"),
  13487. default: true
  13488. },
  13489. {
  13490. name: "Macro",
  13491. height: math.unit(60, "feet")
  13492. },
  13493. ]
  13494. ))
  13495. characterMakers.push(() => makeCharacter(
  13496. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13497. {
  13498. front: {
  13499. height: math.unit(4, "feet"),
  13500. weight: math.unit(50, "lb"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/kole/front.svg",
  13504. extra: 1423 / 1303,
  13505. bottom: 0.025
  13506. }
  13507. },
  13508. back: {
  13509. height: math.unit(4, "feet"),
  13510. weight: math.unit(50, "lb"),
  13511. name: "Back",
  13512. image: {
  13513. source: "./media/characters/kole/back.svg",
  13514. extra: 1426 / 1280,
  13515. bottom: 0.02
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Normal",
  13522. height: math.unit(4, "feet"),
  13523. default: true
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13529. {
  13530. front: {
  13531. height: math.unit(2.5, "feet"),
  13532. weight: math.unit(32, "lb"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/rufran/front.svg",
  13536. extra: 1313/885,
  13537. bottom: 94/1407
  13538. }
  13539. },
  13540. side: {
  13541. height: math.unit(2.5, "feet"),
  13542. weight: math.unit(32, "lb"),
  13543. name: "Side",
  13544. image: {
  13545. source: "./media/characters/rufran/side.svg",
  13546. extra: 1109/852,
  13547. bottom: 118/1227
  13548. }
  13549. },
  13550. back: {
  13551. height: math.unit(2.5, "feet"),
  13552. weight: math.unit(32, "lb"),
  13553. name: "Back",
  13554. image: {
  13555. source: "./media/characters/rufran/back.svg",
  13556. extra: 1280/878,
  13557. bottom: 131/1411
  13558. }
  13559. },
  13560. mouth: {
  13561. height: math.unit(1.13, "feet"),
  13562. name: "Mouth",
  13563. image: {
  13564. source: "./media/characters/rufran/mouth.svg"
  13565. }
  13566. },
  13567. foot: {
  13568. height: math.unit(1.33, "feet"),
  13569. name: "Foot",
  13570. image: {
  13571. source: "./media/characters/rufran/foot.svg"
  13572. }
  13573. },
  13574. koboldFront: {
  13575. height: math.unit(2 + 6 / 12, "feet"),
  13576. weight: math.unit(20, "lb"),
  13577. name: "Front (Kobold)",
  13578. image: {
  13579. source: "./media/characters/rufran/kobold-front.svg",
  13580. extra: 2041 / 1839,
  13581. bottom: 0.055
  13582. }
  13583. },
  13584. koboldBack: {
  13585. height: math.unit(2 + 6 / 12, "feet"),
  13586. weight: math.unit(20, "lb"),
  13587. name: "Back (Kobold)",
  13588. image: {
  13589. source: "./media/characters/rufran/kobold-back.svg",
  13590. extra: 2054 / 1839,
  13591. bottom: 0.01
  13592. }
  13593. },
  13594. koboldHand: {
  13595. height: math.unit(0.2166, "meters"),
  13596. name: "Hand (Kobold)",
  13597. image: {
  13598. source: "./media/characters/rufran/kobold-hand.svg"
  13599. }
  13600. },
  13601. koboldFoot: {
  13602. height: math.unit(0.185, "meters"),
  13603. name: "Foot (Kobold)",
  13604. image: {
  13605. source: "./media/characters/rufran/kobold-foot.svg"
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Micro",
  13612. height: math.unit(1, "inch")
  13613. },
  13614. {
  13615. name: "Normal",
  13616. height: math.unit(2 + 6 / 12, "feet"),
  13617. default: true
  13618. },
  13619. {
  13620. name: "Big",
  13621. height: math.unit(60, "feet")
  13622. },
  13623. {
  13624. name: "Macro",
  13625. height: math.unit(325, "feet")
  13626. },
  13627. ]
  13628. ))
  13629. characterMakers.push(() => makeCharacter(
  13630. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13631. {
  13632. front: {
  13633. height: math.unit(0.3, "meters"),
  13634. weight: math.unit(3.5, "kg"),
  13635. name: "Front",
  13636. image: {
  13637. source: "./media/characters/chip/front.svg",
  13638. extra: 748 / 674
  13639. }
  13640. },
  13641. },
  13642. [
  13643. {
  13644. name: "Micro",
  13645. height: math.unit(1, "inch"),
  13646. default: true
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13652. {
  13653. side: {
  13654. height: math.unit(2.3, "meters"),
  13655. weight: math.unit(3500, "lb"),
  13656. name: "Side",
  13657. image: {
  13658. source: "./media/characters/torvid/side.svg",
  13659. extra: 1972 / 722,
  13660. bottom: 0.035
  13661. }
  13662. },
  13663. },
  13664. [
  13665. {
  13666. name: "Normal",
  13667. height: math.unit(2.3, "meters"),
  13668. default: true
  13669. },
  13670. ]
  13671. ))
  13672. characterMakers.push(() => makeCharacter(
  13673. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13674. {
  13675. front: {
  13676. height: math.unit(2, "meters"),
  13677. weight: math.unit(150.5, "kg"),
  13678. name: "Front",
  13679. image: {
  13680. source: "./media/characters/susan/front.svg",
  13681. extra: 693 / 635,
  13682. bottom: 0.05
  13683. }
  13684. },
  13685. },
  13686. [
  13687. {
  13688. name: "Megamacro",
  13689. height: math.unit(505, "miles"),
  13690. default: true
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13696. {
  13697. front: {
  13698. height: math.unit(6, "feet"),
  13699. weight: math.unit(150, "lb"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/raindrops/front.svg",
  13703. extra: 2655 / 2461,
  13704. bottom: 49 / 2705
  13705. }
  13706. },
  13707. back: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Back",
  13711. image: {
  13712. source: "./media/characters/raindrops/back.svg",
  13713. extra: 2574 / 2400,
  13714. bottom: 65 / 2634
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Micro",
  13721. height: math.unit(6, "inches")
  13722. },
  13723. {
  13724. name: "Normal",
  13725. height: math.unit(6 + 2 / 12, "feet")
  13726. },
  13727. {
  13728. name: "Macro",
  13729. height: math.unit(131, "feet"),
  13730. default: true
  13731. },
  13732. {
  13733. name: "Megamacro",
  13734. height: math.unit(15, "miles")
  13735. },
  13736. {
  13737. name: "Gigamacro",
  13738. height: math.unit(4000, "miles")
  13739. },
  13740. {
  13741. name: "Teramacro",
  13742. height: math.unit(315000, "miles")
  13743. },
  13744. ]
  13745. ))
  13746. characterMakers.push(() => makeCharacter(
  13747. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13748. {
  13749. front: {
  13750. height: math.unit(2.794, "meters"),
  13751. weight: math.unit(325, "kg"),
  13752. name: "Front",
  13753. image: {
  13754. source: "./media/characters/tezwa/front.svg",
  13755. extra: 2083 / 1906,
  13756. bottom: 0.031
  13757. }
  13758. },
  13759. foot: {
  13760. height: math.unit(0.687, "meters"),
  13761. name: "Foot",
  13762. image: {
  13763. source: "./media/characters/tezwa/foot.svg"
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Normal",
  13770. height: math.unit(9 + 2 / 12, "feet"),
  13771. default: true
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(58, "feet"),
  13780. weight: math.unit(89000, "lb"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/typhus/front.svg",
  13784. extra: 816 / 800,
  13785. bottom: 0.065
  13786. }
  13787. },
  13788. },
  13789. [
  13790. {
  13791. name: "Macro",
  13792. height: math.unit(58, "feet"),
  13793. default: true
  13794. },
  13795. ]
  13796. ))
  13797. characterMakers.push(() => makeCharacter(
  13798. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13799. {
  13800. front: {
  13801. height: math.unit(12, "feet"),
  13802. weight: math.unit(6, "tonnes"),
  13803. name: "Front",
  13804. image: {
  13805. source: "./media/characters/lyra-von-wulf/front.svg",
  13806. extra: 1,
  13807. bottom: 0.10
  13808. }
  13809. },
  13810. frontMecha: {
  13811. height: math.unit(12, "feet"),
  13812. weight: math.unit(12, "tonnes"),
  13813. name: "Front (Mecha)",
  13814. image: {
  13815. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13816. extra: 1,
  13817. bottom: 0.042
  13818. }
  13819. },
  13820. maw: {
  13821. height: math.unit(2.2, "feet"),
  13822. name: "Maw",
  13823. image: {
  13824. source: "./media/characters/lyra-von-wulf/maw.svg"
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Normal",
  13831. height: math.unit(12, "feet"),
  13832. default: true
  13833. },
  13834. {
  13835. name: "Classic",
  13836. height: math.unit(50, "feet")
  13837. },
  13838. {
  13839. name: "Macro",
  13840. height: math.unit(500, "feet")
  13841. },
  13842. {
  13843. name: "Megamacro",
  13844. height: math.unit(1, "mile")
  13845. },
  13846. {
  13847. name: "Gigamacro",
  13848. height: math.unit(400, "miles")
  13849. },
  13850. {
  13851. name: "Teramacro",
  13852. height: math.unit(22000, "miles")
  13853. },
  13854. {
  13855. name: "Solarmacro",
  13856. height: math.unit(8600000, "miles")
  13857. },
  13858. {
  13859. name: "Galactic",
  13860. height: math.unit(1057000, "lightyears")
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13866. {
  13867. front: {
  13868. height: math.unit(6 + 10 / 12, "feet"),
  13869. weight: math.unit(150, "lb"),
  13870. name: "Front",
  13871. image: {
  13872. source: "./media/characters/dixon/front.svg",
  13873. extra: 3361 / 3209,
  13874. bottom: 0.01
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Normal",
  13881. height: math.unit(6 + 10 / 12, "feet"),
  13882. default: true
  13883. },
  13884. {
  13885. name: "Big",
  13886. height: math.unit(12, "meters")
  13887. },
  13888. {
  13889. name: "Macro",
  13890. height: math.unit(500, "meters")
  13891. },
  13892. {
  13893. name: "Megamacro",
  13894. height: math.unit(2, "km")
  13895. },
  13896. ]
  13897. ))
  13898. characterMakers.push(() => makeCharacter(
  13899. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13900. {
  13901. front: {
  13902. height: math.unit(185, "cm"),
  13903. weight: math.unit(68, "kg"),
  13904. name: "Front",
  13905. image: {
  13906. source: "./media/characters/kauko/front.svg",
  13907. extra: 1455 / 1421,
  13908. bottom: 0.03
  13909. }
  13910. },
  13911. back: {
  13912. height: math.unit(185, "cm"),
  13913. weight: math.unit(68, "kg"),
  13914. name: "Back",
  13915. image: {
  13916. source: "./media/characters/kauko/back.svg",
  13917. extra: 1455 / 1421,
  13918. bottom: 0.004
  13919. }
  13920. },
  13921. },
  13922. [
  13923. {
  13924. name: "Normal",
  13925. height: math.unit(185, "cm"),
  13926. default: true
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13932. {
  13933. frontSfw: {
  13934. height: math.unit(5, "meters"),
  13935. weight: math.unit(4250, "lb"),
  13936. name: "Front",
  13937. image: {
  13938. source: "./media/characters/varg/front-sfw.svg",
  13939. extra: 1103/1010,
  13940. bottom: 50/1153
  13941. },
  13942. form: "anthro",
  13943. default: true
  13944. },
  13945. backSfw: {
  13946. height: math.unit(5, "meters"),
  13947. weight: math.unit(4250, "lb"),
  13948. name: "Back",
  13949. image: {
  13950. source: "./media/characters/varg/back-sfw.svg",
  13951. extra: 1038/1022,
  13952. bottom: 36/1074
  13953. },
  13954. form: "anthro"
  13955. },
  13956. frontNsfw: {
  13957. height: math.unit(5, "meters"),
  13958. weight: math.unit(4250, "lb"),
  13959. name: "Front (NSFW)",
  13960. image: {
  13961. source: "./media/characters/varg/front-nsfw.svg",
  13962. extra: 1103/1010,
  13963. bottom: 50/1153
  13964. },
  13965. form: "anthro"
  13966. },
  13967. sheath: {
  13968. height: math.unit(3.8, "feet"),
  13969. weight: math.unit(90, "kilograms"),
  13970. name: "Sheath",
  13971. image: {
  13972. source: "./media/characters/varg/sheath.svg"
  13973. },
  13974. form: "anthro"
  13975. },
  13976. dick: {
  13977. height: math.unit(4.6, "feet"),
  13978. weight: math.unit(451, "kilograms"),
  13979. name: "Dick",
  13980. image: {
  13981. source: "./media/characters/varg/dick.svg"
  13982. },
  13983. form: "anthro"
  13984. },
  13985. feralSfw: {
  13986. height: math.unit(5, "meters"),
  13987. weight: math.unit(100000, "lb"),
  13988. name: "Side",
  13989. image: {
  13990. source: "./media/characters/varg/feral-sfw.svg",
  13991. extra: 1065/511,
  13992. bottom: 211/1276
  13993. },
  13994. form: "feral",
  13995. default: true
  13996. },
  13997. feralNsfw: {
  13998. height: math.unit(5, "meters"),
  13999. weight: math.unit(100000, "lb"),
  14000. name: "Side (NSFW)",
  14001. image: {
  14002. source: "./media/characters/varg/feral-nsfw.svg",
  14003. extra: 1065/511,
  14004. bottom: 211/1276
  14005. },
  14006. form: "feral",
  14007. },
  14008. feralSheath: {
  14009. height: math.unit(9.8, "feet"),
  14010. weight: math.unit(2000, "kilograms"),
  14011. name: "Sheath",
  14012. image: {
  14013. source: "./media/characters/varg/sheath.svg"
  14014. },
  14015. form: "feral"
  14016. },
  14017. feralDick: {
  14018. height: math.unit(13.11, "feet"),
  14019. weight: math.unit(10440, "kilograms"),
  14020. name: "Dick",
  14021. image: {
  14022. source: "./media/characters/varg/dick.svg"
  14023. },
  14024. form: "feral"
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Normal",
  14030. height: math.unit(5, "meters"),
  14031. form: "anthro"
  14032. },
  14033. {
  14034. name: "Macro",
  14035. height: math.unit(200, "meters"),
  14036. form: "anthro"
  14037. },
  14038. {
  14039. name: "Megamacro",
  14040. height: math.unit(20, "kilometers"),
  14041. form: "anthro"
  14042. },
  14043. {
  14044. name: "True Size",
  14045. height: math.unit(211, "km"),
  14046. form: "anthro",
  14047. default: true
  14048. },
  14049. {
  14050. name: "Gigamacro",
  14051. height: math.unit(1000, "km"),
  14052. form: "anthro"
  14053. },
  14054. {
  14055. name: "Gigamacro+",
  14056. height: math.unit(8000, "km"),
  14057. form: "anthro"
  14058. },
  14059. {
  14060. name: "Teramacro",
  14061. height: math.unit(1000000, "km"),
  14062. form: "anthro"
  14063. },
  14064. {
  14065. name: "Normal",
  14066. height: math.unit(5, "meters"),
  14067. form: "feral"
  14068. },
  14069. {
  14070. name: "Macro",
  14071. height: math.unit(200, "meters"),
  14072. form: "feral"
  14073. },
  14074. {
  14075. name: "Megamacro",
  14076. height: math.unit(20, "kilometers"),
  14077. form: "feral"
  14078. },
  14079. {
  14080. name: "True Size",
  14081. height: math.unit(211, "km"),
  14082. form: "feral",
  14083. default: true
  14084. },
  14085. {
  14086. name: "Gigamacro",
  14087. height: math.unit(1000, "km"),
  14088. form: "feral"
  14089. },
  14090. {
  14091. name: "Gigamacro+",
  14092. height: math.unit(8000, "km"),
  14093. form: "feral"
  14094. },
  14095. {
  14096. name: "Teramacro",
  14097. height: math.unit(1000000, "km"),
  14098. form: "feral"
  14099. },
  14100. ],
  14101. {
  14102. "anthro": {
  14103. name: "Anthro",
  14104. default: true
  14105. },
  14106. "feral": {
  14107. name: "Feral",
  14108. },
  14109. }
  14110. ))
  14111. characterMakers.push(() => makeCharacter(
  14112. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14113. {
  14114. front: {
  14115. height: math.unit(7 + 7 / 12, "feet"),
  14116. weight: math.unit(267, "lb"),
  14117. name: "Front",
  14118. image: {
  14119. source: "./media/characters/dayza/front.svg",
  14120. extra: 1262 / 1200,
  14121. bottom: 0.035
  14122. }
  14123. },
  14124. side: {
  14125. height: math.unit(7 + 7 / 12, "feet"),
  14126. weight: math.unit(267, "lb"),
  14127. name: "Side",
  14128. image: {
  14129. source: "./media/characters/dayza/side.svg",
  14130. extra: 1295 / 1245,
  14131. bottom: 0.05
  14132. }
  14133. },
  14134. back: {
  14135. height: math.unit(7 + 7 / 12, "feet"),
  14136. weight: math.unit(267, "lb"),
  14137. name: "Back",
  14138. image: {
  14139. source: "./media/characters/dayza/back.svg",
  14140. extra: 1241 / 1170
  14141. }
  14142. },
  14143. },
  14144. [
  14145. {
  14146. name: "Normal",
  14147. height: math.unit(7 + 7 / 12, "feet"),
  14148. default: true
  14149. },
  14150. {
  14151. name: "Macro",
  14152. height: math.unit(155, "feet")
  14153. },
  14154. ]
  14155. ))
  14156. characterMakers.push(() => makeCharacter(
  14157. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14158. {
  14159. front: {
  14160. height: math.unit(6 + 5 / 12, "feet"),
  14161. weight: math.unit(160, "lb"),
  14162. name: "Front",
  14163. image: {
  14164. source: "./media/characters/xanthos/front.svg",
  14165. extra: 1,
  14166. bottom: 0.04
  14167. }
  14168. },
  14169. back: {
  14170. height: math.unit(6 + 5 / 12, "feet"),
  14171. weight: math.unit(160, "lb"),
  14172. name: "Back",
  14173. image: {
  14174. source: "./media/characters/xanthos/back.svg",
  14175. extra: 1,
  14176. bottom: 0.03
  14177. }
  14178. },
  14179. hand: {
  14180. height: math.unit(0.928, "feet"),
  14181. name: "Hand",
  14182. image: {
  14183. source: "./media/characters/xanthos/hand.svg"
  14184. }
  14185. },
  14186. foot: {
  14187. height: math.unit(1.286, "feet"),
  14188. name: "Foot",
  14189. image: {
  14190. source: "./media/characters/xanthos/foot.svg"
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Normal",
  14197. height: math.unit(6 + 5 / 12, "feet"),
  14198. default: true
  14199. },
  14200. {
  14201. name: "Normal+",
  14202. height: math.unit(6, "meters")
  14203. },
  14204. {
  14205. name: "Macro",
  14206. height: math.unit(40, "feet")
  14207. },
  14208. {
  14209. name: "Macro+",
  14210. height: math.unit(200, "meters")
  14211. },
  14212. {
  14213. name: "Megamacro",
  14214. height: math.unit(20, "km")
  14215. },
  14216. {
  14217. name: "Megamacro+",
  14218. height: math.unit(100, "km")
  14219. },
  14220. {
  14221. name: "Gigamacro",
  14222. height: math.unit(200, "megameters")
  14223. },
  14224. {
  14225. name: "Gigamacro+",
  14226. height: math.unit(1.5, "gigameters")
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(6 + 3 / 12, "feet"),
  14235. weight: math.unit(215, "lb"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/grynn/front.svg",
  14239. extra: 4627 / 4209,
  14240. bottom: 0.047
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Micro",
  14247. height: math.unit(6, "inches")
  14248. },
  14249. {
  14250. name: "Normal",
  14251. height: math.unit(6 + 3 / 12, "feet"),
  14252. default: true
  14253. },
  14254. {
  14255. name: "Big",
  14256. height: math.unit(104, "feet")
  14257. },
  14258. {
  14259. name: "Macro",
  14260. height: math.unit(944, "feet")
  14261. },
  14262. {
  14263. name: "Macro+",
  14264. height: math.unit(9480, "feet")
  14265. },
  14266. {
  14267. name: "Megamacro",
  14268. height: math.unit(78752, "feet")
  14269. },
  14270. {
  14271. name: "Megamacro+",
  14272. height: math.unit(630128, "feet")
  14273. },
  14274. {
  14275. name: "Megamacro++",
  14276. height: math.unit(3150695, "feet")
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14282. {
  14283. front: {
  14284. height: math.unit(7 + 5 / 12, "feet"),
  14285. weight: math.unit(450, "lb"),
  14286. name: "Front",
  14287. image: {
  14288. source: "./media/characters/mocha-aura/front.svg",
  14289. extra: 1907 / 1817,
  14290. bottom: 0.04
  14291. }
  14292. },
  14293. back: {
  14294. height: math.unit(7 + 5 / 12, "feet"),
  14295. weight: math.unit(450, "lb"),
  14296. name: "Back",
  14297. image: {
  14298. source: "./media/characters/mocha-aura/back.svg",
  14299. extra: 1900 / 1825,
  14300. bottom: 0.045
  14301. }
  14302. },
  14303. },
  14304. [
  14305. {
  14306. name: "Nano",
  14307. height: math.unit(1, "nm")
  14308. },
  14309. {
  14310. name: "Megamicro",
  14311. height: math.unit(1, "mm")
  14312. },
  14313. {
  14314. name: "Micro",
  14315. height: math.unit(3, "inches")
  14316. },
  14317. {
  14318. name: "Normal",
  14319. height: math.unit(7 + 5 / 12, "feet"),
  14320. default: true
  14321. },
  14322. {
  14323. name: "Macro",
  14324. height: math.unit(30, "feet")
  14325. },
  14326. {
  14327. name: "Megamacro",
  14328. height: math.unit(3500, "feet")
  14329. },
  14330. {
  14331. name: "Teramacro",
  14332. height: math.unit(500000, "miles")
  14333. },
  14334. {
  14335. name: "Petamacro",
  14336. height: math.unit(50000000000000000, "parsecs")
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14342. {
  14343. front: {
  14344. height: math.unit(6, "feet"),
  14345. weight: math.unit(150, "lb"),
  14346. name: "Front",
  14347. image: {
  14348. source: "./media/characters/ilisha-devya/front.svg",
  14349. extra: 1053/1049,
  14350. bottom: 270/1323
  14351. }
  14352. },
  14353. back: {
  14354. height: math.unit(6, "feet"),
  14355. weight: math.unit(150, "lb"),
  14356. name: "Back",
  14357. image: {
  14358. source: "./media/characters/ilisha-devya/back.svg",
  14359. extra: 1131/1128,
  14360. bottom: 39/1170
  14361. }
  14362. },
  14363. },
  14364. [
  14365. {
  14366. name: "Macro",
  14367. height: math.unit(500, "feet"),
  14368. default: true
  14369. },
  14370. {
  14371. name: "Megamacro",
  14372. height: math.unit(10, "miles")
  14373. },
  14374. {
  14375. name: "Gigamacro",
  14376. height: math.unit(100000, "miles")
  14377. },
  14378. {
  14379. name: "Examacro",
  14380. height: math.unit(1e9, "lightyears")
  14381. },
  14382. {
  14383. name: "Omniversal",
  14384. height: math.unit(1e33, "lightyears")
  14385. },
  14386. {
  14387. name: "Beyond Infinite",
  14388. height: math.unit(1e100, "lightyears")
  14389. },
  14390. ]
  14391. ))
  14392. characterMakers.push(() => makeCharacter(
  14393. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14394. {
  14395. Side: {
  14396. height: math.unit(6, "feet"),
  14397. weight: math.unit(150, "lb"),
  14398. name: "Side",
  14399. image: {
  14400. source: "./media/characters/mira/side.svg",
  14401. extra: 900 / 799,
  14402. bottom: 0.02
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Human Size",
  14409. height: math.unit(6, "feet")
  14410. },
  14411. {
  14412. name: "Macro",
  14413. height: math.unit(100, "feet"),
  14414. default: true
  14415. },
  14416. {
  14417. name: "Megamacro",
  14418. height: math.unit(10, "miles")
  14419. },
  14420. {
  14421. name: "Gigamacro",
  14422. height: math.unit(25000, "miles")
  14423. },
  14424. {
  14425. name: "Teramacro",
  14426. height: math.unit(300, "AU")
  14427. },
  14428. {
  14429. name: "Full Size",
  14430. height: math.unit(4.5e10, "lightyears")
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14436. {
  14437. front: {
  14438. height: math.unit(6, "feet"),
  14439. weight: math.unit(150, "lb"),
  14440. name: "Front",
  14441. image: {
  14442. source: "./media/characters/holly/front.svg",
  14443. extra: 639 / 606
  14444. }
  14445. },
  14446. back: {
  14447. height: math.unit(6, "feet"),
  14448. weight: math.unit(150, "lb"),
  14449. name: "Back",
  14450. image: {
  14451. source: "./media/characters/holly/back.svg",
  14452. extra: 623 / 598
  14453. }
  14454. },
  14455. frontWorking: {
  14456. height: math.unit(6, "feet"),
  14457. weight: math.unit(150, "lb"),
  14458. name: "Front (Working)",
  14459. image: {
  14460. source: "./media/characters/holly/front-working.svg",
  14461. extra: 607 / 577,
  14462. bottom: 0.048
  14463. }
  14464. },
  14465. },
  14466. [
  14467. {
  14468. name: "Normal",
  14469. height: math.unit(12 + 3 / 12, "feet"),
  14470. default: true
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14476. {
  14477. front: {
  14478. height: math.unit(6, "feet"),
  14479. weight: math.unit(150, "lb"),
  14480. name: "Front",
  14481. image: {
  14482. source: "./media/characters/porter/front.svg",
  14483. extra: 1,
  14484. bottom: 0.01
  14485. }
  14486. },
  14487. frontRobes: {
  14488. height: math.unit(6, "feet"),
  14489. weight: math.unit(150, "lb"),
  14490. name: "Front (Robes)",
  14491. image: {
  14492. source: "./media/characters/porter/front-robes.svg",
  14493. extra: 1.01,
  14494. bottom: 0.01
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Normal",
  14501. height: math.unit(11 + 9 / 12, "feet"),
  14502. default: true
  14503. },
  14504. ]
  14505. ))
  14506. characterMakers.push(() => makeCharacter(
  14507. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14508. {
  14509. legendary: {
  14510. height: math.unit(6, "feet"),
  14511. weight: math.unit(150, "lb"),
  14512. name: "Legendary",
  14513. image: {
  14514. source: "./media/characters/lucy/legendary.svg",
  14515. extra: 1355 / 1100,
  14516. bottom: 0.045
  14517. }
  14518. },
  14519. },
  14520. [
  14521. {
  14522. name: "Legendary",
  14523. height: math.unit(86882 * 2, "miles"),
  14524. default: true
  14525. },
  14526. ]
  14527. ))
  14528. characterMakers.push(() => makeCharacter(
  14529. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14530. {
  14531. front: {
  14532. height: math.unit(6, "feet"),
  14533. weight: math.unit(150, "lb"),
  14534. name: "Front",
  14535. image: {
  14536. source: "./media/characters/drusilla/front.svg",
  14537. extra: 678 / 635,
  14538. bottom: 0.03
  14539. }
  14540. },
  14541. back: {
  14542. height: math.unit(6, "feet"),
  14543. weight: math.unit(150, "lb"),
  14544. name: "Back",
  14545. image: {
  14546. source: "./media/characters/drusilla/back.svg",
  14547. extra: 678 / 635,
  14548. bottom: 0.005
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Macro",
  14555. height: math.unit(100, "feet")
  14556. },
  14557. {
  14558. name: "Canon Height",
  14559. height: math.unit(2000, "feet"),
  14560. default: true
  14561. },
  14562. ]
  14563. ))
  14564. characterMakers.push(() => makeCharacter(
  14565. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14566. {
  14567. front: {
  14568. height: math.unit(6, "feet"),
  14569. weight: math.unit(180, "lb"),
  14570. name: "Front",
  14571. image: {
  14572. source: "./media/characters/renard-thatch/front.svg",
  14573. extra: 2411 / 2275,
  14574. bottom: 0.01
  14575. }
  14576. },
  14577. frontPosing: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(180, "lb"),
  14580. name: "Front (Posing)",
  14581. image: {
  14582. source: "./media/characters/renard-thatch/front-posing.svg",
  14583. extra: 2381 / 2261,
  14584. bottom: 0.01
  14585. }
  14586. },
  14587. back: {
  14588. height: math.unit(6, "feet"),
  14589. weight: math.unit(180, "lb"),
  14590. name: "Back",
  14591. image: {
  14592. source: "./media/characters/renard-thatch/back.svg",
  14593. extra: 2428 / 2288
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Micro",
  14600. height: math.unit(3, "inches")
  14601. },
  14602. {
  14603. name: "Default",
  14604. height: math.unit(6, "feet"),
  14605. default: true
  14606. },
  14607. {
  14608. name: "Macro",
  14609. height: math.unit(75, "feet")
  14610. },
  14611. ]
  14612. ))
  14613. characterMakers.push(() => makeCharacter(
  14614. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14615. {
  14616. front: {
  14617. height: math.unit(1450, "feet"),
  14618. weight: math.unit(1.21e6, "tons"),
  14619. name: "Front",
  14620. image: {
  14621. source: "./media/characters/sekvra/front.svg",
  14622. extra: 1193/1190,
  14623. bottom: 78/1271
  14624. }
  14625. },
  14626. side: {
  14627. height: math.unit(1450, "feet"),
  14628. weight: math.unit(1.21e6, "tons"),
  14629. name: "Side",
  14630. image: {
  14631. source: "./media/characters/sekvra/side.svg",
  14632. extra: 1193/1190,
  14633. bottom: 52/1245
  14634. }
  14635. },
  14636. back: {
  14637. height: math.unit(1450, "feet"),
  14638. weight: math.unit(1.21e6, "tons"),
  14639. name: "Back",
  14640. image: {
  14641. source: "./media/characters/sekvra/back.svg",
  14642. extra: 1219/1216,
  14643. bottom: 21/1240
  14644. }
  14645. },
  14646. frontClothed: {
  14647. height: math.unit(1450, "feet"),
  14648. weight: math.unit(1.21e6, "tons"),
  14649. name: "Front (Clothed)",
  14650. image: {
  14651. source: "./media/characters/sekvra/front-clothed.svg",
  14652. extra: 1192/1189,
  14653. bottom: 79/1271
  14654. }
  14655. },
  14656. },
  14657. [
  14658. {
  14659. name: "Macro",
  14660. height: math.unit(1450, "feet"),
  14661. default: true
  14662. },
  14663. {
  14664. name: "Megamacro",
  14665. height: math.unit(15000, "feet")
  14666. },
  14667. ]
  14668. ))
  14669. characterMakers.push(() => makeCharacter(
  14670. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14671. {
  14672. front: {
  14673. height: math.unit(6, "feet"),
  14674. weight: math.unit(150, "lb"),
  14675. name: "Front",
  14676. image: {
  14677. source: "./media/characters/carmine/front.svg",
  14678. extra: 1,
  14679. bottom: 0.035
  14680. }
  14681. },
  14682. frontArmor: {
  14683. height: math.unit(6, "feet"),
  14684. weight: math.unit(150, "lb"),
  14685. name: "Front (Armor)",
  14686. image: {
  14687. source: "./media/characters/carmine/front-armor.svg",
  14688. extra: 1,
  14689. bottom: 0.035
  14690. }
  14691. },
  14692. },
  14693. [
  14694. {
  14695. name: "Large",
  14696. height: math.unit(1, "mile")
  14697. },
  14698. {
  14699. name: "Huge",
  14700. height: math.unit(40, "miles"),
  14701. default: true
  14702. },
  14703. {
  14704. name: "Colossal",
  14705. height: math.unit(2500, "miles")
  14706. },
  14707. ]
  14708. ))
  14709. characterMakers.push(() => makeCharacter(
  14710. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14711. {
  14712. front: {
  14713. height: math.unit(6, "feet"),
  14714. weight: math.unit(150, "lb"),
  14715. name: "Front",
  14716. image: {
  14717. source: "./media/characters/elyssia/front.svg",
  14718. extra: 2201 / 2035,
  14719. bottom: 0.05
  14720. }
  14721. },
  14722. frontClothed: {
  14723. height: math.unit(6, "feet"),
  14724. weight: math.unit(150, "lb"),
  14725. name: "Front (Clothed)",
  14726. image: {
  14727. source: "./media/characters/elyssia/front-clothed.svg",
  14728. extra: 2201 / 2035,
  14729. bottom: 0.05
  14730. }
  14731. },
  14732. back: {
  14733. height: math.unit(6, "feet"),
  14734. weight: math.unit(150, "lb"),
  14735. name: "Back",
  14736. image: {
  14737. source: "./media/characters/elyssia/back.svg",
  14738. extra: 2201 / 2035,
  14739. bottom: 0.013
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Smaller",
  14746. height: math.unit(150, "feet")
  14747. },
  14748. {
  14749. name: "Standard",
  14750. height: math.unit(1400, "feet"),
  14751. default: true
  14752. },
  14753. {
  14754. name: "Distracted",
  14755. height: math.unit(15000, "feet")
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(7 + 4/12, "feet"),
  14764. weight: math.unit(690, "lb"),
  14765. name: "Front",
  14766. image: {
  14767. source: "./media/characters/geno-maxwell/front.svg",
  14768. extra: 984/856,
  14769. bottom: 87/1071
  14770. }
  14771. },
  14772. back: {
  14773. height: math.unit(7 + 4/12, "feet"),
  14774. weight: math.unit(690, "lb"),
  14775. name: "Back",
  14776. image: {
  14777. source: "./media/characters/geno-maxwell/back.svg",
  14778. extra: 981/854,
  14779. bottom: 57/1038
  14780. }
  14781. },
  14782. frontCostume: {
  14783. height: math.unit(7 + 4/12, "feet"),
  14784. weight: math.unit(690, "lb"),
  14785. name: "Front (Costume)",
  14786. image: {
  14787. source: "./media/characters/geno-maxwell/front-costume.svg",
  14788. extra: 984/856,
  14789. bottom: 87/1071
  14790. }
  14791. },
  14792. backcostume: {
  14793. height: math.unit(7 + 4/12, "feet"),
  14794. weight: math.unit(690, "lb"),
  14795. name: "Back (Costume)",
  14796. image: {
  14797. source: "./media/characters/geno-maxwell/back-costume.svg",
  14798. extra: 981/854,
  14799. bottom: 57/1038
  14800. }
  14801. },
  14802. },
  14803. [
  14804. {
  14805. name: "Micro",
  14806. height: math.unit(3, "inches")
  14807. },
  14808. {
  14809. name: "Normal",
  14810. height: math.unit(7 + 4 / 12, "feet"),
  14811. default: true
  14812. },
  14813. {
  14814. name: "Macro",
  14815. height: math.unit(220, "feet")
  14816. },
  14817. {
  14818. name: "Megamacro",
  14819. height: math.unit(11, "miles")
  14820. },
  14821. ]
  14822. ))
  14823. characterMakers.push(() => makeCharacter(
  14824. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14825. {
  14826. front: {
  14827. height: math.unit(7 + 4/12, "feet"),
  14828. weight: math.unit(750, "lb"),
  14829. name: "Front",
  14830. image: {
  14831. source: "./media/characters/regena-maxwell/front.svg",
  14832. extra: 984/856,
  14833. bottom: 87/1071
  14834. }
  14835. },
  14836. back: {
  14837. height: math.unit(7 + 4/12, "feet"),
  14838. weight: math.unit(750, "lb"),
  14839. name: "Back",
  14840. image: {
  14841. source: "./media/characters/regena-maxwell/back.svg",
  14842. extra: 981/854,
  14843. bottom: 57/1038
  14844. }
  14845. },
  14846. frontCostume: {
  14847. height: math.unit(7 + 4/12, "feet"),
  14848. weight: math.unit(750, "lb"),
  14849. name: "Front (Costume)",
  14850. image: {
  14851. source: "./media/characters/regena-maxwell/front-costume.svg",
  14852. extra: 984/856,
  14853. bottom: 87/1071
  14854. }
  14855. },
  14856. backcostume: {
  14857. height: math.unit(7 + 4/12, "feet"),
  14858. weight: math.unit(750, "lb"),
  14859. name: "Back (Costume)",
  14860. image: {
  14861. source: "./media/characters/regena-maxwell/back-costume.svg",
  14862. extra: 981/854,
  14863. bottom: 57/1038
  14864. }
  14865. },
  14866. },
  14867. [
  14868. {
  14869. name: "Normal",
  14870. height: math.unit(7 + 4 / 12, "feet"),
  14871. default: true
  14872. },
  14873. {
  14874. name: "Macro",
  14875. height: math.unit(220, "feet")
  14876. },
  14877. {
  14878. name: "Megamacro",
  14879. height: math.unit(11, "miles")
  14880. },
  14881. ]
  14882. ))
  14883. characterMakers.push(() => makeCharacter(
  14884. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14885. {
  14886. front: {
  14887. height: math.unit(6, "feet"),
  14888. weight: math.unit(150, "lb"),
  14889. name: "Front",
  14890. image: {
  14891. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14892. extra: 860 / 690,
  14893. bottom: 0.03
  14894. }
  14895. },
  14896. },
  14897. [
  14898. {
  14899. name: "Normal",
  14900. height: math.unit(1.7, "meters"),
  14901. default: true
  14902. },
  14903. ]
  14904. ))
  14905. characterMakers.push(() => makeCharacter(
  14906. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14907. {
  14908. front: {
  14909. height: math.unit(6, "feet"),
  14910. weight: math.unit(150, "lb"),
  14911. name: "Front",
  14912. image: {
  14913. source: "./media/characters/quilly/front.svg",
  14914. extra: 890 / 776
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Gigamacro",
  14921. height: math.unit(404090, "miles"),
  14922. default: true
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14928. {
  14929. front: {
  14930. height: math.unit(7 + 8 / 12, "feet"),
  14931. weight: math.unit(350, "lb"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/tempest/front.svg",
  14935. extra: 1175 / 1086,
  14936. bottom: 0.02
  14937. }
  14938. },
  14939. },
  14940. [
  14941. {
  14942. name: "Normal",
  14943. height: math.unit(7 + 8 / 12, "feet"),
  14944. default: true
  14945. },
  14946. ]
  14947. ))
  14948. characterMakers.push(() => makeCharacter(
  14949. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14950. {
  14951. side: {
  14952. height: math.unit(4 + 5 / 12, "feet"),
  14953. weight: math.unit(80, "lb"),
  14954. name: "Side",
  14955. image: {
  14956. source: "./media/characters/rodger/side.svg",
  14957. extra: 1235 / 1118
  14958. }
  14959. },
  14960. },
  14961. [
  14962. {
  14963. name: "Micro",
  14964. height: math.unit(1, "inch")
  14965. },
  14966. {
  14967. name: "Normal",
  14968. height: math.unit(4 + 5 / 12, "feet"),
  14969. default: true
  14970. },
  14971. {
  14972. name: "Macro",
  14973. height: math.unit(120, "feet")
  14974. },
  14975. ]
  14976. ))
  14977. characterMakers.push(() => makeCharacter(
  14978. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14979. {
  14980. front: {
  14981. height: math.unit(6, "feet"),
  14982. weight: math.unit(150, "lb"),
  14983. name: "Front",
  14984. image: {
  14985. source: "./media/characters/danyel/front.svg",
  14986. extra: 1185 / 1123,
  14987. bottom: 0.05
  14988. }
  14989. },
  14990. },
  14991. [
  14992. {
  14993. name: "Shrunken",
  14994. height: math.unit(0.5, "mm")
  14995. },
  14996. {
  14997. name: "Micro",
  14998. height: math.unit(1, "mm"),
  14999. default: true
  15000. },
  15001. {
  15002. name: "Upsized",
  15003. height: math.unit(5 + 5 / 12, "feet")
  15004. },
  15005. ]
  15006. ))
  15007. characterMakers.push(() => makeCharacter(
  15008. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15009. {
  15010. front: {
  15011. height: math.unit(5 + 6 / 12, "feet"),
  15012. weight: math.unit(200, "lb"),
  15013. name: "Front",
  15014. image: {
  15015. source: "./media/characters/vivian-bijoux/front.svg",
  15016. extra: 1217/1209,
  15017. bottom: 76/1293
  15018. }
  15019. },
  15020. back: {
  15021. height: math.unit(5 + 6 / 12, "feet"),
  15022. weight: math.unit(200, "lb"),
  15023. name: "Back",
  15024. image: {
  15025. source: "./media/characters/vivian-bijoux/back.svg",
  15026. extra: 1214/1208,
  15027. bottom: 51/1265
  15028. }
  15029. },
  15030. dressed: {
  15031. height: math.unit(5 + 6 / 12, "feet"),
  15032. weight: math.unit(200, "lb"),
  15033. name: "Dressed",
  15034. image: {
  15035. source: "./media/characters/vivian-bijoux/dressed.svg",
  15036. extra: 1217/1209,
  15037. bottom: 76/1293
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Normal",
  15044. height: math.unit(5 + 6 / 12, "feet"),
  15045. default: true
  15046. },
  15047. {
  15048. name: "Bad Dream",
  15049. height: math.unit(500, "feet")
  15050. },
  15051. {
  15052. name: "Nightmare",
  15053. height: math.unit(500, "miles")
  15054. },
  15055. ]
  15056. ))
  15057. characterMakers.push(() => makeCharacter(
  15058. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15059. {
  15060. front: {
  15061. height: math.unit(6 + 1 / 12, "feet"),
  15062. weight: math.unit(260, "lb"),
  15063. name: "Front",
  15064. image: {
  15065. source: "./media/characters/zeta/front.svg",
  15066. extra: 1968 / 1889,
  15067. bottom: 0.06
  15068. }
  15069. },
  15070. back: {
  15071. height: math.unit(6 + 1 / 12, "feet"),
  15072. weight: math.unit(260, "lb"),
  15073. name: "Back",
  15074. image: {
  15075. source: "./media/characters/zeta/back.svg",
  15076. extra: 1944 / 1858,
  15077. bottom: 0.03
  15078. }
  15079. },
  15080. hand: {
  15081. height: math.unit(1.112, "feet"),
  15082. name: "Hand",
  15083. image: {
  15084. source: "./media/characters/zeta/hand.svg"
  15085. }
  15086. },
  15087. foot: {
  15088. height: math.unit(1.48, "feet"),
  15089. name: "Foot",
  15090. image: {
  15091. source: "./media/characters/zeta/foot.svg"
  15092. }
  15093. },
  15094. },
  15095. [
  15096. {
  15097. name: "Micro",
  15098. height: math.unit(6, "inches")
  15099. },
  15100. {
  15101. name: "Normal",
  15102. height: math.unit(6 + 1 / 12, "feet"),
  15103. default: true
  15104. },
  15105. {
  15106. name: "Macro",
  15107. height: math.unit(20, "feet")
  15108. },
  15109. ]
  15110. ))
  15111. characterMakers.push(() => makeCharacter(
  15112. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15113. {
  15114. front: {
  15115. height: math.unit(6, "feet"),
  15116. weight: math.unit(150, "lb"),
  15117. name: "Front",
  15118. image: {
  15119. source: "./media/characters/jamie-larsen/front.svg",
  15120. extra: 962 / 933,
  15121. bottom: 0.02
  15122. }
  15123. },
  15124. back: {
  15125. height: math.unit(6, "feet"),
  15126. weight: math.unit(150, "lb"),
  15127. name: "Back",
  15128. image: {
  15129. source: "./media/characters/jamie-larsen/back.svg",
  15130. extra: 997 / 946
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Macro",
  15137. height: math.unit(28 + 7 / 12, "feet"),
  15138. default: true
  15139. },
  15140. {
  15141. name: "Macro+",
  15142. height: math.unit(180, "feet")
  15143. },
  15144. {
  15145. name: "Megamacro",
  15146. height: math.unit(10, "miles")
  15147. },
  15148. {
  15149. name: "Gigamacro",
  15150. height: math.unit(200000, "miles")
  15151. },
  15152. ]
  15153. ))
  15154. characterMakers.push(() => makeCharacter(
  15155. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15156. {
  15157. front: {
  15158. height: math.unit(6, "feet"),
  15159. weight: math.unit(120, "lb"),
  15160. name: "Front",
  15161. image: {
  15162. source: "./media/characters/vance/front.svg",
  15163. extra: 1980 / 1890,
  15164. bottom: 0.09
  15165. }
  15166. },
  15167. back: {
  15168. height: math.unit(6, "feet"),
  15169. weight: math.unit(120, "lb"),
  15170. name: "Back",
  15171. image: {
  15172. source: "./media/characters/vance/back.svg",
  15173. extra: 2081 / 1994,
  15174. bottom: 0.014
  15175. }
  15176. },
  15177. hand: {
  15178. height: math.unit(0.88, "feet"),
  15179. name: "Hand",
  15180. image: {
  15181. source: "./media/characters/vance/hand.svg"
  15182. }
  15183. },
  15184. foot: {
  15185. height: math.unit(0.64, "feet"),
  15186. name: "Foot",
  15187. image: {
  15188. source: "./media/characters/vance/foot.svg"
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Small",
  15195. height: math.unit(90, "feet"),
  15196. default: true
  15197. },
  15198. {
  15199. name: "Macro",
  15200. height: math.unit(100, "meters")
  15201. },
  15202. {
  15203. name: "Megamacro",
  15204. height: math.unit(15, "miles")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(6, "feet"),
  15213. weight: math.unit(180, "lb"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/xochitl/front.svg",
  15217. extra: 2297 / 2261,
  15218. bottom: 0.065
  15219. }
  15220. },
  15221. back: {
  15222. height: math.unit(6, "feet"),
  15223. weight: math.unit(180, "lb"),
  15224. name: "Back",
  15225. image: {
  15226. source: "./media/characters/xochitl/back.svg",
  15227. extra: 2386 / 2354,
  15228. bottom: 0.01
  15229. }
  15230. },
  15231. foot: {
  15232. height: math.unit(6 / 5 * 1.15, "feet"),
  15233. weight: math.unit(150, "lb"),
  15234. name: "Foot",
  15235. image: {
  15236. source: "./media/characters/xochitl/foot.svg"
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Macro",
  15243. height: math.unit(80, "feet")
  15244. },
  15245. {
  15246. name: "Macro+",
  15247. height: math.unit(400, "feet"),
  15248. default: true
  15249. },
  15250. {
  15251. name: "Gigamacro",
  15252. height: math.unit(80000, "miles")
  15253. },
  15254. {
  15255. name: "Gigamacro+",
  15256. height: math.unit(400000, "miles")
  15257. },
  15258. {
  15259. name: "Teramacro",
  15260. height: math.unit(300, "AU")
  15261. },
  15262. ]
  15263. ))
  15264. characterMakers.push(() => makeCharacter(
  15265. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15266. {
  15267. front: {
  15268. height: math.unit(6, "feet"),
  15269. weight: math.unit(150, "lb"),
  15270. name: "Front",
  15271. image: {
  15272. source: "./media/characters/vincent/front.svg",
  15273. extra: 1130 / 1080,
  15274. bottom: 0.055
  15275. }
  15276. },
  15277. beak: {
  15278. height: math.unit(6 * 0.1, "feet"),
  15279. name: "Beak",
  15280. image: {
  15281. source: "./media/characters/vincent/beak.svg"
  15282. }
  15283. },
  15284. hand: {
  15285. height: math.unit(6 * 0.85, "feet"),
  15286. weight: math.unit(150, "lb"),
  15287. name: "Hand",
  15288. image: {
  15289. source: "./media/characters/vincent/hand.svg"
  15290. }
  15291. },
  15292. foot: {
  15293. height: math.unit(6 * 0.19, "feet"),
  15294. weight: math.unit(150, "lb"),
  15295. name: "Foot",
  15296. image: {
  15297. source: "./media/characters/vincent/foot.svg"
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Base",
  15304. height: math.unit(6 + 5 / 12, "feet"),
  15305. default: true
  15306. },
  15307. {
  15308. name: "Macro",
  15309. height: math.unit(300, "feet")
  15310. },
  15311. {
  15312. name: "Megamacro",
  15313. height: math.unit(2, "miles")
  15314. },
  15315. {
  15316. name: "Gigamacro",
  15317. height: math.unit(1000, "miles")
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15323. {
  15324. front: {
  15325. height: math.unit(2, "meters"),
  15326. weight: math.unit(500, "kg"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/coatl/front.svg",
  15330. extra: 3948 / 3500,
  15331. bottom: 0.082
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Normal",
  15338. height: math.unit(4, "meters")
  15339. },
  15340. {
  15341. name: "Macro",
  15342. height: math.unit(100, "meters"),
  15343. default: true
  15344. },
  15345. {
  15346. name: "Macro+",
  15347. height: math.unit(300, "meters")
  15348. },
  15349. {
  15350. name: "Megamacro",
  15351. height: math.unit(3, "gigameters")
  15352. },
  15353. {
  15354. name: "Megamacro+",
  15355. height: math.unit(300, "terameters")
  15356. },
  15357. {
  15358. name: "Megamacro++",
  15359. height: math.unit(3, "lightyears")
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(6, "feet"),
  15368. weight: math.unit(50, "kg"),
  15369. name: "front",
  15370. image: {
  15371. source: "./media/characters/shiroryu/front.svg",
  15372. extra: 1990 / 1935
  15373. }
  15374. },
  15375. },
  15376. [
  15377. {
  15378. name: "Mortal Mingling",
  15379. height: math.unit(3, "meters")
  15380. },
  15381. {
  15382. name: "Kaiju-ish",
  15383. height: math.unit(250, "meters")
  15384. },
  15385. {
  15386. name: "Somewhat Godly",
  15387. height: math.unit(400, "km"),
  15388. default: true
  15389. },
  15390. {
  15391. name: "Planetary",
  15392. height: math.unit(300, "megameters")
  15393. },
  15394. {
  15395. name: "Galaxy-dwarfing",
  15396. height: math.unit(450, "kiloparsecs")
  15397. },
  15398. {
  15399. name: "Universe Eater",
  15400. height: math.unit(150, "gigaparsecs")
  15401. },
  15402. {
  15403. name: "Almost Immeasurable",
  15404. height: math.unit(1.3e266, "yottaparsecs")
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(6, "feet"),
  15413. weight: math.unit(150, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/umeko/front.svg",
  15417. extra: 1,
  15418. bottom: 0.019
  15419. }
  15420. },
  15421. frontArmored: {
  15422. height: math.unit(6, "feet"),
  15423. weight: math.unit(150, "lb"),
  15424. name: "Front (Armored)",
  15425. image: {
  15426. source: "./media/characters/umeko/front-armored.svg",
  15427. extra: 1,
  15428. bottom: 0.021
  15429. }
  15430. },
  15431. },
  15432. [
  15433. {
  15434. name: "Macro",
  15435. height: math.unit(220, "feet"),
  15436. default: true
  15437. },
  15438. {
  15439. name: "Guardian Dragon",
  15440. height: math.unit(50, "miles")
  15441. },
  15442. {
  15443. name: "Cosmic",
  15444. height: math.unit(800000, "miles")
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15450. {
  15451. front: {
  15452. height: math.unit(6, "feet"),
  15453. weight: math.unit(150, "lb"),
  15454. name: "Front",
  15455. image: {
  15456. source: "./media/characters/cassidy/front.svg",
  15457. extra: 810/808,
  15458. bottom: 41/851
  15459. }
  15460. },
  15461. },
  15462. [
  15463. {
  15464. name: "Canon Height",
  15465. height: math.unit(120, "feet"),
  15466. default: true
  15467. },
  15468. {
  15469. name: "Macro+",
  15470. height: math.unit(400, "feet")
  15471. },
  15472. {
  15473. name: "Macro++",
  15474. height: math.unit(4000, "feet")
  15475. },
  15476. {
  15477. name: "Megamacro",
  15478. height: math.unit(3, "miles")
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15484. {
  15485. front: {
  15486. height: math.unit(6, "feet"),
  15487. weight: math.unit(150, "lb"),
  15488. name: "Front",
  15489. image: {
  15490. source: "./media/characters/isaac/front.svg",
  15491. extra: 896 / 815,
  15492. bottom: 0.11
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Human Size",
  15499. height: math.unit(8, "feet"),
  15500. default: true
  15501. },
  15502. {
  15503. name: "Macro",
  15504. height: math.unit(400, "feet")
  15505. },
  15506. {
  15507. name: "Megamacro",
  15508. height: math.unit(50, "miles")
  15509. },
  15510. {
  15511. name: "Canon Height",
  15512. height: math.unit(200, "AU")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(6, "feet"),
  15521. weight: math.unit(72, "kg"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/sleekit/front.svg",
  15525. extra: 4693 / 4487,
  15526. bottom: 0.012
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Minimum Height",
  15533. height: math.unit(10, "meters")
  15534. },
  15535. {
  15536. name: "Smaller",
  15537. height: math.unit(25, "meters")
  15538. },
  15539. {
  15540. name: "Larger",
  15541. height: math.unit(38, "meters"),
  15542. default: true
  15543. },
  15544. {
  15545. name: "Maximum height",
  15546. height: math.unit(100, "meters")
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15552. {
  15553. front: {
  15554. height: math.unit(6, "feet"),
  15555. weight: math.unit(150, "lb"),
  15556. name: "Front",
  15557. image: {
  15558. source: "./media/characters/nillia/front.svg",
  15559. extra: 2195 / 2037,
  15560. bottom: 0.005
  15561. }
  15562. },
  15563. back: {
  15564. height: math.unit(6, "feet"),
  15565. weight: math.unit(150, "lb"),
  15566. name: "Back",
  15567. image: {
  15568. source: "./media/characters/nillia/back.svg",
  15569. extra: 2195 / 2037,
  15570. bottom: 0.005
  15571. }
  15572. },
  15573. },
  15574. [
  15575. {
  15576. name: "Canon Height",
  15577. height: math.unit(489, "feet"),
  15578. default: true
  15579. }
  15580. ]
  15581. ))
  15582. characterMakers.push(() => makeCharacter(
  15583. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15584. {
  15585. front: {
  15586. height: math.unit(6, "feet"),
  15587. weight: math.unit(150, "lb"),
  15588. name: "Front",
  15589. image: {
  15590. source: "./media/characters/mesmyriza/front.svg",
  15591. extra: 2067 / 1784,
  15592. bottom: 0.035
  15593. }
  15594. },
  15595. foot: {
  15596. height: math.unit(6 / (250 / 35), "feet"),
  15597. name: "Foot",
  15598. image: {
  15599. source: "./media/characters/mesmyriza/foot.svg"
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Macro",
  15606. height: math.unit(457, "meters"),
  15607. default: true
  15608. },
  15609. {
  15610. name: "Megamacro",
  15611. height: math.unit(8, "megameters")
  15612. },
  15613. ]
  15614. ))
  15615. characterMakers.push(() => makeCharacter(
  15616. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15617. {
  15618. front: {
  15619. height: math.unit(6, "feet"),
  15620. weight: math.unit(250, "lb"),
  15621. name: "Front",
  15622. image: {
  15623. source: "./media/characters/saudade/front.svg",
  15624. extra: 1172 / 1139,
  15625. bottom: 0.035
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "Micro",
  15632. height: math.unit(3, "inches")
  15633. },
  15634. {
  15635. name: "Normal",
  15636. height: math.unit(6, "feet"),
  15637. default: true
  15638. },
  15639. {
  15640. name: "Macro",
  15641. height: math.unit(50, "feet")
  15642. },
  15643. {
  15644. name: "Megamacro",
  15645. height: math.unit(2800, "feet")
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15651. {
  15652. front: {
  15653. height: math.unit(5 + 4 / 12, "feet"),
  15654. weight: math.unit(100, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/keireer/front.svg",
  15658. extra: 716 / 666,
  15659. bottom: 0.05
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Normal",
  15666. height: math.unit(5 + 4 / 12, "feet"),
  15667. default: true
  15668. },
  15669. ]
  15670. ))
  15671. characterMakers.push(() => makeCharacter(
  15672. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15673. {
  15674. front: {
  15675. height: math.unit(5.5, "feet"),
  15676. weight: math.unit(90, "kg"),
  15677. name: "Front",
  15678. image: {
  15679. source: "./media/characters/mirja/front.svg",
  15680. extra: 1452/1262,
  15681. bottom: 67/1519
  15682. }
  15683. },
  15684. frontDressed: {
  15685. height: math.unit(5.5, "feet"),
  15686. weight: math.unit(90, "lb"),
  15687. name: "Front (Dressed)",
  15688. image: {
  15689. source: "./media/characters/mirja/dressed.svg",
  15690. extra: 1452/1262,
  15691. bottom: 67/1519
  15692. }
  15693. },
  15694. back: {
  15695. height: math.unit(6, "feet"),
  15696. weight: math.unit(90, "lb"),
  15697. name: "Back",
  15698. image: {
  15699. source: "./media/characters/mirja/back.svg",
  15700. extra: 1892/1795,
  15701. bottom: 48/1940
  15702. }
  15703. },
  15704. maw: {
  15705. height: math.unit(1.312, "feet"),
  15706. name: "Maw",
  15707. image: {
  15708. source: "./media/characters/mirja/maw.svg"
  15709. }
  15710. },
  15711. paw: {
  15712. height: math.unit(1.15, "feet"),
  15713. name: "Paw",
  15714. image: {
  15715. source: "./media/characters/mirja/paw.svg"
  15716. }
  15717. },
  15718. },
  15719. [
  15720. {
  15721. name: "\"Incognito\"",
  15722. height: math.unit(3, "meters")
  15723. },
  15724. {
  15725. name: "Strolling Size",
  15726. height: math.unit(15, "km")
  15727. },
  15728. {
  15729. name: "Larger Strolling Size",
  15730. height: math.unit(400, "km")
  15731. },
  15732. {
  15733. name: "Preferred Size",
  15734. height: math.unit(5000, "km"),
  15735. default: true
  15736. },
  15737. {
  15738. name: "True Size",
  15739. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15740. },
  15741. ]
  15742. ))
  15743. characterMakers.push(() => makeCharacter(
  15744. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15745. {
  15746. front: {
  15747. height: math.unit(15, "feet"),
  15748. weight: math.unit(880, "kg"),
  15749. name: "Front",
  15750. image: {
  15751. source: "./media/characters/nightraver/front.svg",
  15752. extra: 2444 / 2160,
  15753. bottom: 0.027
  15754. }
  15755. },
  15756. back: {
  15757. height: math.unit(15, "feet"),
  15758. weight: math.unit(880, "kg"),
  15759. name: "Back",
  15760. image: {
  15761. source: "./media/characters/nightraver/back.svg",
  15762. extra: 2309 / 2180,
  15763. bottom: 0.005
  15764. }
  15765. },
  15766. sole: {
  15767. height: math.unit(2.878, "feet"),
  15768. name: "Sole",
  15769. image: {
  15770. source: "./media/characters/nightraver/sole.svg"
  15771. }
  15772. },
  15773. foot: {
  15774. height: math.unit(2.285, "feet"),
  15775. name: "Foot",
  15776. image: {
  15777. source: "./media/characters/nightraver/foot.svg"
  15778. }
  15779. },
  15780. maw: {
  15781. height: math.unit(2.67, "feet"),
  15782. name: "Maw",
  15783. image: {
  15784. source: "./media/characters/nightraver/maw.svg"
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Micro",
  15791. height: math.unit(1, "cm")
  15792. },
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(15, "feet"),
  15796. default: true
  15797. },
  15798. {
  15799. name: "Macro",
  15800. height: math.unit(300, "feet")
  15801. },
  15802. {
  15803. name: "Megamacro",
  15804. height: math.unit(300, "miles")
  15805. },
  15806. {
  15807. name: "Gigamacro",
  15808. height: math.unit(10000, "miles")
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15814. {
  15815. side: {
  15816. height: math.unit(2, "inches"),
  15817. weight: math.unit(5, "grams"),
  15818. name: "Side",
  15819. image: {
  15820. source: "./media/characters/arc/side.svg"
  15821. }
  15822. },
  15823. },
  15824. [
  15825. {
  15826. name: "Micro",
  15827. height: math.unit(2, "inches"),
  15828. default: true
  15829. },
  15830. ]
  15831. ))
  15832. characterMakers.push(() => makeCharacter(
  15833. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15834. {
  15835. front: {
  15836. height: math.unit(1.1938, "meters"),
  15837. weight: math.unit(54, "kg"),
  15838. name: "Front",
  15839. image: {
  15840. source: "./media/characters/nebula-shahar/front.svg",
  15841. extra: 1642 / 1436,
  15842. bottom: 0.06
  15843. }
  15844. },
  15845. },
  15846. [
  15847. {
  15848. name: "Megamicro",
  15849. height: math.unit(0.3, "mm")
  15850. },
  15851. {
  15852. name: "Micro",
  15853. height: math.unit(3, "cm")
  15854. },
  15855. {
  15856. name: "Normal",
  15857. height: math.unit(138, "cm"),
  15858. default: true
  15859. },
  15860. {
  15861. name: "Macro",
  15862. height: math.unit(30, "m")
  15863. },
  15864. ]
  15865. ))
  15866. characterMakers.push(() => makeCharacter(
  15867. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15868. {
  15869. front: {
  15870. height: math.unit(5.24, "feet"),
  15871. weight: math.unit(150, "lb"),
  15872. name: "Front",
  15873. image: {
  15874. source: "./media/characters/shayla/front.svg",
  15875. extra: 1512 / 1414,
  15876. bottom: 0.01
  15877. }
  15878. },
  15879. back: {
  15880. height: math.unit(5.24, "feet"),
  15881. weight: math.unit(150, "lb"),
  15882. name: "Back",
  15883. image: {
  15884. source: "./media/characters/shayla/back.svg",
  15885. extra: 1512 / 1414
  15886. }
  15887. },
  15888. hand: {
  15889. height: math.unit(0.7781496062992126, "feet"),
  15890. name: "Hand",
  15891. image: {
  15892. source: "./media/characters/shayla/hand.svg"
  15893. }
  15894. },
  15895. foot: {
  15896. height: math.unit(1.4206036745406823, "feet"),
  15897. name: "Foot",
  15898. image: {
  15899. source: "./media/characters/shayla/foot.svg"
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Micro",
  15906. height: math.unit(0.32, "feet")
  15907. },
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(5.24, "feet"),
  15911. default: true
  15912. },
  15913. {
  15914. name: "Macro",
  15915. height: math.unit(492.12, "feet")
  15916. },
  15917. {
  15918. name: "Megamacro",
  15919. height: math.unit(186.41, "miles")
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15925. {
  15926. front: {
  15927. height: math.unit(2.2, "m"),
  15928. weight: math.unit(120, "kg"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/pia-jr/front.svg",
  15932. extra: 1000 / 970,
  15933. bottom: 0.035
  15934. }
  15935. },
  15936. hand: {
  15937. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15938. name: "Hand",
  15939. image: {
  15940. source: "./media/characters/pia-jr/hand.svg"
  15941. }
  15942. },
  15943. paw: {
  15944. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15945. name: "Paw",
  15946. image: {
  15947. source: "./media/characters/pia-jr/paw.svg"
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "Micro",
  15954. height: math.unit(1.2, "cm")
  15955. },
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(2.2, "m"),
  15959. default: true
  15960. },
  15961. {
  15962. name: "Macro",
  15963. height: math.unit(180, "m")
  15964. },
  15965. {
  15966. name: "Megamacro",
  15967. height: math.unit(420, "km")
  15968. },
  15969. ]
  15970. ))
  15971. characterMakers.push(() => makeCharacter(
  15972. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15973. {
  15974. front: {
  15975. height: math.unit(2, "m"),
  15976. weight: math.unit(115, "kg"),
  15977. name: "Front",
  15978. image: {
  15979. source: "./media/characters/pia-sr/front.svg",
  15980. extra: 760 / 730,
  15981. bottom: 0.015
  15982. }
  15983. },
  15984. back: {
  15985. height: math.unit(2, "m"),
  15986. weight: math.unit(115, "kg"),
  15987. name: "Back",
  15988. image: {
  15989. source: "./media/characters/pia-sr/back.svg",
  15990. extra: 760 / 730,
  15991. bottom: 0.01
  15992. }
  15993. },
  15994. hand: {
  15995. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15996. name: "Hand",
  15997. image: {
  15998. source: "./media/characters/pia-sr/hand.svg"
  15999. }
  16000. },
  16001. foot: {
  16002. height: math.unit(1.83, "feet"),
  16003. name: "Foot",
  16004. image: {
  16005. source: "./media/characters/pia-sr/foot.svg"
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Micro",
  16012. height: math.unit(88, "mm")
  16013. },
  16014. {
  16015. name: "Normal",
  16016. height: math.unit(2, "m"),
  16017. default: true
  16018. },
  16019. {
  16020. name: "Macro",
  16021. height: math.unit(200, "m")
  16022. },
  16023. {
  16024. name: "Megamacro",
  16025. height: math.unit(420, "km")
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16031. {
  16032. front: {
  16033. height: math.unit(8 + 2 / 12, "feet"),
  16034. weight: math.unit(300, "lb"),
  16035. name: "Front",
  16036. image: {
  16037. source: "./media/characters/kibibyte/front.svg",
  16038. extra: 2221 / 2098,
  16039. bottom: 0.04
  16040. }
  16041. },
  16042. },
  16043. [
  16044. {
  16045. name: "Normal",
  16046. height: math.unit(8 + 2 / 12, "feet"),
  16047. default: true
  16048. },
  16049. {
  16050. name: "Socialable Macro",
  16051. height: math.unit(50, "feet")
  16052. },
  16053. {
  16054. name: "Macro",
  16055. height: math.unit(300, "feet")
  16056. },
  16057. {
  16058. name: "Megamacro",
  16059. height: math.unit(500, "miles")
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(6, "feet"),
  16068. weight: math.unit(150, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/felix/front.svg",
  16072. extra: 762 / 722,
  16073. bottom: 0.02
  16074. }
  16075. },
  16076. frontClothed: {
  16077. height: math.unit(6, "feet"),
  16078. weight: math.unit(150, "lb"),
  16079. name: "Front (Clothed)",
  16080. image: {
  16081. source: "./media/characters/felix/front-clothed.svg",
  16082. extra: 762 / 722,
  16083. bottom: 0.02
  16084. }
  16085. },
  16086. },
  16087. [
  16088. {
  16089. name: "Normal",
  16090. height: math.unit(6 + 8 / 12, "feet"),
  16091. default: true
  16092. },
  16093. {
  16094. name: "Macro",
  16095. height: math.unit(2600, "feet")
  16096. },
  16097. {
  16098. name: "Megamacro",
  16099. height: math.unit(450, "miles")
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16105. {
  16106. front: {
  16107. height: math.unit(6 + 1 / 12, "feet"),
  16108. weight: math.unit(250, "lb"),
  16109. name: "Front",
  16110. image: {
  16111. source: "./media/characters/tobo/front.svg",
  16112. extra: 608 / 586,
  16113. bottom: 0.023
  16114. }
  16115. },
  16116. back: {
  16117. height: math.unit(6 + 1 / 12, "feet"),
  16118. weight: math.unit(250, "lb"),
  16119. name: "Back",
  16120. image: {
  16121. source: "./media/characters/tobo/back.svg",
  16122. extra: 608 / 586
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Nano",
  16129. height: math.unit(2, "nm")
  16130. },
  16131. {
  16132. name: "Megamicro",
  16133. height: math.unit(0.1, "mm")
  16134. },
  16135. {
  16136. name: "Micro",
  16137. height: math.unit(1, "inch"),
  16138. default: true
  16139. },
  16140. {
  16141. name: "Human-sized",
  16142. height: math.unit(6 + 1 / 12, "feet")
  16143. },
  16144. {
  16145. name: "Macro",
  16146. height: math.unit(250, "feet")
  16147. },
  16148. {
  16149. name: "Megamacro",
  16150. height: math.unit(75, "miles")
  16151. },
  16152. {
  16153. name: "Texas-sized",
  16154. height: math.unit(750, "miles")
  16155. },
  16156. {
  16157. name: "Teramacro",
  16158. height: math.unit(50000, "miles")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(269, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/danny-kapowsky/front.svg",
  16171. extra: 766 / 736,
  16172. bottom: 0.044
  16173. }
  16174. },
  16175. back: {
  16176. height: math.unit(6, "feet"),
  16177. weight: math.unit(269, "lb"),
  16178. name: "Back",
  16179. image: {
  16180. source: "./media/characters/danny-kapowsky/back.svg",
  16181. extra: 797 / 760,
  16182. bottom: 0.025
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Macro",
  16189. height: math.unit(150, "feet"),
  16190. default: true
  16191. },
  16192. {
  16193. name: "Macro+",
  16194. height: math.unit(200, "feet")
  16195. },
  16196. {
  16197. name: "Macro++",
  16198. height: math.unit(300, "feet")
  16199. },
  16200. {
  16201. name: "Macro+++",
  16202. height: math.unit(400, "feet")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16208. {
  16209. side: {
  16210. height: math.unit(6, "feet"),
  16211. weight: math.unit(170, "lb"),
  16212. name: "Side",
  16213. image: {
  16214. source: "./media/characters/finn/side.svg",
  16215. extra: 1953 / 1807,
  16216. bottom: 0.057
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Megamacro",
  16223. height: math.unit(14445, "feet"),
  16224. default: true
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16230. {
  16231. front: {
  16232. height: math.unit(5 + 6 / 12, "feet"),
  16233. weight: math.unit(125, "lb"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/roy/front.svg",
  16237. extra: 1,
  16238. bottom: 0.11
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Micro",
  16245. height: math.unit(3, "inches"),
  16246. default: true
  16247. },
  16248. {
  16249. name: "Normal",
  16250. height: math.unit(5 + 6 / 12, "feet")
  16251. },
  16252. {
  16253. name: "Lesser Macro",
  16254. height: math.unit(60, "feet")
  16255. },
  16256. {
  16257. name: "Greater Macro",
  16258. height: math.unit(120, "feet")
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16264. {
  16265. front: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(100, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/aevsivs/front.svg",
  16271. extra: 1,
  16272. bottom: 0.03
  16273. }
  16274. },
  16275. back: {
  16276. height: math.unit(6, "feet"),
  16277. weight: math.unit(100, "lb"),
  16278. name: "Back",
  16279. image: {
  16280. source: "./media/characters/aevsivs/back.svg"
  16281. }
  16282. },
  16283. },
  16284. [
  16285. {
  16286. name: "Micro",
  16287. height: math.unit(2, "inches"),
  16288. default: true
  16289. },
  16290. {
  16291. name: "Normal",
  16292. height: math.unit(5, "feet")
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16298. {
  16299. front: {
  16300. height: math.unit(5 + 7 / 12, "feet"),
  16301. weight: math.unit(159, "lb"),
  16302. name: "Front",
  16303. image: {
  16304. source: "./media/characters/hildegard/front.svg",
  16305. extra: 289 / 269,
  16306. bottom: 7.63 / 297.8
  16307. }
  16308. },
  16309. back: {
  16310. height: math.unit(5 + 7 / 12, "feet"),
  16311. weight: math.unit(159, "lb"),
  16312. name: "Back",
  16313. image: {
  16314. source: "./media/characters/hildegard/back.svg",
  16315. extra: 280 / 260,
  16316. bottom: 2.3 / 282
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(5 + 7 / 12, "feet"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16330. {
  16331. bernard: {
  16332. height: math.unit(2 + 7 / 12, "feet"),
  16333. weight: math.unit(66, "lb"),
  16334. name: "Bernard",
  16335. rename: true,
  16336. image: {
  16337. source: "./media/characters/bernard-wilder/bernard.svg",
  16338. extra: 192 / 128,
  16339. bottom: 0.05
  16340. }
  16341. },
  16342. wilder: {
  16343. height: math.unit(5 + 8 / 12, "feet"),
  16344. weight: math.unit(143, "lb"),
  16345. name: "Wilder",
  16346. rename: true,
  16347. image: {
  16348. source: "./media/characters/bernard-wilder/wilder.svg",
  16349. extra: 361 / 312,
  16350. bottom: 0.02
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(2 + 7 / 12, "feet"),
  16358. default: true
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16364. {
  16365. anthro: {
  16366. height: math.unit(6 + 1 / 12, "feet"),
  16367. weight: math.unit(155, "lb"),
  16368. name: "Anthro",
  16369. image: {
  16370. source: "./media/characters/hearth/anthro.svg",
  16371. extra: 1178/1136,
  16372. bottom: 28/1206
  16373. }
  16374. },
  16375. feral: {
  16376. height: math.unit(3.78, "feet"),
  16377. weight: math.unit(35, "kg"),
  16378. name: "Feral",
  16379. image: {
  16380. source: "./media/characters/hearth/feral.svg",
  16381. extra: 153 / 135,
  16382. bottom: 0.03
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(6 + 1 / 12, "feet"),
  16390. default: true
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16396. {
  16397. front: {
  16398. height: math.unit(6, "feet"),
  16399. weight: math.unit(182, "lb"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/ingrid/front.svg",
  16403. extra: 294 / 268,
  16404. bottom: 0.027
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(6, "feet"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16418. {
  16419. eevee: {
  16420. height: math.unit(2 + 10 / 12, "feet"),
  16421. weight: math.unit(86, "lb"),
  16422. name: "Malgam",
  16423. image: {
  16424. source: "./media/characters/malgam/eevee.svg",
  16425. extra: 952/784,
  16426. bottom: 38/990
  16427. }
  16428. },
  16429. sylveon: {
  16430. height: math.unit(4, "feet"),
  16431. weight: math.unit(101, "lb"),
  16432. name: "Future Malgam",
  16433. rename: true,
  16434. image: {
  16435. source: "./media/characters/malgam/sylveon.svg",
  16436. extra: 371 / 325,
  16437. bottom: 0.015
  16438. }
  16439. },
  16440. gigantamax: {
  16441. height: math.unit(50, "feet"),
  16442. name: "Gigantamax Malgam",
  16443. rename: true,
  16444. image: {
  16445. source: "./media/characters/malgam/gigantamax.svg"
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Normal",
  16452. height: math.unit(2 + 10 / 12, "feet"),
  16453. default: true
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16459. {
  16460. front: {
  16461. height: math.unit(5 + 11 / 12, "feet"),
  16462. weight: math.unit(188, "lb"),
  16463. name: "Front",
  16464. image: {
  16465. source: "./media/characters/fleur/front.svg",
  16466. extra: 309 / 283,
  16467. bottom: 0.007
  16468. }
  16469. },
  16470. },
  16471. [
  16472. {
  16473. name: "Normal",
  16474. height: math.unit(5 + 11 / 12, "feet"),
  16475. default: true
  16476. },
  16477. ]
  16478. ))
  16479. characterMakers.push(() => makeCharacter(
  16480. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16481. {
  16482. front: {
  16483. height: math.unit(5 + 4 / 12, "feet"),
  16484. weight: math.unit(122, "lb"),
  16485. name: "Front",
  16486. image: {
  16487. source: "./media/characters/jude/front.svg",
  16488. extra: 288 / 273,
  16489. bottom: 0.03
  16490. }
  16491. },
  16492. },
  16493. [
  16494. {
  16495. name: "Normal",
  16496. height: math.unit(5 + 4 / 12, "feet"),
  16497. default: true
  16498. },
  16499. ]
  16500. ))
  16501. characterMakers.push(() => makeCharacter(
  16502. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16503. {
  16504. front: {
  16505. height: math.unit(5 + 11 / 12, "feet"),
  16506. weight: math.unit(190, "lb"),
  16507. name: "Front",
  16508. image: {
  16509. source: "./media/characters/seara/front.svg",
  16510. extra: 1,
  16511. bottom: 0.05
  16512. }
  16513. },
  16514. },
  16515. [
  16516. {
  16517. name: "Normal",
  16518. height: math.unit(5 + 11 / 12, "feet"),
  16519. default: true
  16520. },
  16521. ]
  16522. ))
  16523. characterMakers.push(() => makeCharacter(
  16524. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16525. {
  16526. front: {
  16527. height: math.unit(16 + 5 / 12, "feet"),
  16528. weight: math.unit(524, "lb"),
  16529. name: "Front",
  16530. image: {
  16531. source: "./media/characters/caspian-lugia/front.svg",
  16532. extra: 1,
  16533. bottom: 0.04
  16534. }
  16535. },
  16536. },
  16537. [
  16538. {
  16539. name: "Normal",
  16540. height: math.unit(16 + 5 / 12, "feet"),
  16541. default: true
  16542. },
  16543. ]
  16544. ))
  16545. characterMakers.push(() => makeCharacter(
  16546. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16547. {
  16548. front: {
  16549. height: math.unit(5 + 7 / 12, "feet"),
  16550. weight: math.unit(170, "lb"),
  16551. name: "Front",
  16552. image: {
  16553. source: "./media/characters/mika/front.svg",
  16554. extra: 1,
  16555. bottom: 0.016
  16556. }
  16557. },
  16558. },
  16559. [
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(5 + 7 / 12, "feet"),
  16563. default: true
  16564. },
  16565. ]
  16566. ))
  16567. characterMakers.push(() => makeCharacter(
  16568. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16569. {
  16570. front: {
  16571. height: math.unit(6 + 2 / 12, "feet"),
  16572. weight: math.unit(268, "lb"),
  16573. name: "Front",
  16574. image: {
  16575. source: "./media/characters/sol/front.svg",
  16576. extra: 247 / 231,
  16577. bottom: 0.05
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Normal",
  16584. height: math.unit(6 + 2 / 12, "feet"),
  16585. default: true
  16586. },
  16587. ]
  16588. ))
  16589. characterMakers.push(() => makeCharacter(
  16590. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16591. {
  16592. buizel: {
  16593. height: math.unit(2 + 5 / 12, "feet"),
  16594. weight: math.unit(87, "lb"),
  16595. name: "Front",
  16596. image: {
  16597. source: "./media/characters/umiko/buizel.svg",
  16598. extra: 172 / 157,
  16599. bottom: 0.01
  16600. },
  16601. form: "buizel",
  16602. default: true
  16603. },
  16604. floatzel: {
  16605. height: math.unit(5 + 9 / 12, "feet"),
  16606. weight: math.unit(250, "lb"),
  16607. name: "Front",
  16608. image: {
  16609. source: "./media/characters/umiko/floatzel.svg",
  16610. extra: 1076/1006,
  16611. bottom: 15/1091
  16612. },
  16613. form: "floatzel",
  16614. default: true
  16615. },
  16616. },
  16617. [
  16618. {
  16619. name: "Normal",
  16620. height: math.unit(2 + 5 / 12, "feet"),
  16621. form: "buizel",
  16622. default: true
  16623. },
  16624. {
  16625. name: "Normal",
  16626. height: math.unit(5 + 9 / 12, "feet"),
  16627. form: "floatzel",
  16628. default: true
  16629. },
  16630. ],
  16631. {
  16632. "buizel": {
  16633. name: "Buizel"
  16634. },
  16635. "floatzel": {
  16636. name: "Floatzel",
  16637. default: true
  16638. }
  16639. }
  16640. ))
  16641. characterMakers.push(() => makeCharacter(
  16642. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16643. {
  16644. front: {
  16645. height: math.unit(6 + 2 / 12, "feet"),
  16646. weight: math.unit(146, "lb"),
  16647. name: "Front",
  16648. image: {
  16649. source: "./media/characters/iliac/front.svg",
  16650. extra: 389 / 365,
  16651. bottom: 0.035
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(6 + 2 / 12, "feet"),
  16659. default: true
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16665. {
  16666. front: {
  16667. height: math.unit(6, "feet"),
  16668. weight: math.unit(170, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/topaz/front.svg",
  16672. extra: 317 / 303,
  16673. bottom: 0.055
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(6, "feet"),
  16681. default: true
  16682. },
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16687. {
  16688. front: {
  16689. height: math.unit(5 + 11 / 12, "feet"),
  16690. weight: math.unit(144, "lb"),
  16691. name: "Front",
  16692. image: {
  16693. source: "./media/characters/gabriel/front.svg",
  16694. extra: 285 / 262,
  16695. bottom: 0.004
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Normal",
  16702. height: math.unit(5 + 11 / 12, "feet"),
  16703. default: true
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16709. {
  16710. side: {
  16711. height: math.unit(6 + 5 / 12, "feet"),
  16712. weight: math.unit(300, "lb"),
  16713. name: "Side",
  16714. image: {
  16715. source: "./media/characters/tempest-suicune/side.svg",
  16716. extra: 195 / 154,
  16717. bottom: 0.04
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Normal",
  16724. height: math.unit(6 + 5 / 12, "feet"),
  16725. default: true
  16726. },
  16727. ]
  16728. ))
  16729. characterMakers.push(() => makeCharacter(
  16730. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16731. {
  16732. front: {
  16733. height: math.unit(7 + 2 / 12, "feet"),
  16734. weight: math.unit(322, "lb"),
  16735. name: "Front",
  16736. image: {
  16737. source: "./media/characters/vulcan/front.svg",
  16738. extra: 154 / 147,
  16739. bottom: 0.04
  16740. }
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Normal",
  16746. height: math.unit(7 + 2 / 12, "feet"),
  16747. default: true
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16753. {
  16754. front: {
  16755. height: math.unit(5 + 10 / 12, "feet"),
  16756. weight: math.unit(264, "lb"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/gault/front.svg",
  16760. extra: 161 / 140,
  16761. bottom: 0.028
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(5 + 10 / 12, "feet"),
  16769. default: true
  16770. },
  16771. ]
  16772. ))
  16773. characterMakers.push(() => makeCharacter(
  16774. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16775. {
  16776. front: {
  16777. height: math.unit(6, "feet"),
  16778. weight: math.unit(150, "lb"),
  16779. name: "Front",
  16780. image: {
  16781. source: "./media/characters/shard/front.svg",
  16782. extra: 273 / 238,
  16783. bottom: 0.02
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(3 + 6 / 12, "feet"),
  16791. default: true
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16797. {
  16798. front: {
  16799. height: math.unit(5 + 11 / 12, "feet"),
  16800. weight: math.unit(146, "lb"),
  16801. name: "Front",
  16802. image: {
  16803. source: "./media/characters/ashe/front.svg",
  16804. extra: 400 / 373,
  16805. bottom: 0.01
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Normal",
  16812. height: math.unit(5 + 11 / 12, "feet"),
  16813. default: true
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16819. {
  16820. front: {
  16821. height: math.unit(5 + 5 / 12, "feet"),
  16822. weight: math.unit(135, "lb"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/beatrix/front.svg",
  16826. extra: 392 / 379,
  16827. bottom: 0.01
  16828. }
  16829. },
  16830. },
  16831. [
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(6, "feet"),
  16835. default: true
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16841. {
  16842. front: {
  16843. height: math.unit(6 + 2/12, "feet"),
  16844. weight: math.unit(135, "lb"),
  16845. name: "Front",
  16846. image: {
  16847. source: "./media/characters/ignatius/front.svg",
  16848. extra: 1380/1259,
  16849. bottom: 27/1407
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Normal",
  16856. height: math.unit(6 + 2/12, "feet"),
  16857. default: true
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16863. {
  16864. front: {
  16865. height: math.unit(6 + 2 / 12, "feet"),
  16866. weight: math.unit(138, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/mei-li/front.svg",
  16870. extra: 237 / 229,
  16871. bottom: 0.03
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Normal",
  16878. height: math.unit(6 + 2 / 12, "feet"),
  16879. default: true
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16885. {
  16886. front: {
  16887. height: math.unit(2 + 4 / 12, "feet"),
  16888. weight: math.unit(62, "lb"),
  16889. name: "Front",
  16890. image: {
  16891. source: "./media/characters/puru/front.svg",
  16892. extra: 206 / 149,
  16893. bottom: 0.06
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(2 + 4 / 12, "feet"),
  16901. default: true
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16907. {
  16908. anthro: {
  16909. height: math.unit(5 + 8/12, "feet"),
  16910. weight: math.unit(200, "lb"),
  16911. energyNeed: math.unit(2000, "kcal"),
  16912. name: "Anthro",
  16913. image: {
  16914. source: "./media/characters/kee/anthro.svg",
  16915. extra: 3251/3184,
  16916. bottom: 250/3501
  16917. }
  16918. },
  16919. taur: {
  16920. height: math.unit(11, "feet"),
  16921. weight: math.unit(500, "lb"),
  16922. energyNeed: math.unit(5000, "kcal"),
  16923. name: "Taur",
  16924. image: {
  16925. source: "./media/characters/kee/taur.svg",
  16926. extra: 1362/1320,
  16927. bottom: 83/1445
  16928. }
  16929. },
  16930. },
  16931. [
  16932. {
  16933. name: "Normal",
  16934. height: math.unit(5 + 8/12, "feet"),
  16935. default: true
  16936. },
  16937. {
  16938. name: "Macro",
  16939. height: math.unit(35, "feet")
  16940. },
  16941. ]
  16942. ))
  16943. characterMakers.push(() => makeCharacter(
  16944. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16945. {
  16946. anthro: {
  16947. height: math.unit(7, "feet"),
  16948. weight: math.unit(190, "lb"),
  16949. name: "Anthro",
  16950. image: {
  16951. source: "./media/characters/cobalt-dracha/anthro.svg",
  16952. extra: 231 / 225,
  16953. bottom: 0.04
  16954. }
  16955. },
  16956. feral: {
  16957. height: math.unit(9 + 7 / 12, "feet"),
  16958. weight: math.unit(294, "lb"),
  16959. name: "Feral",
  16960. image: {
  16961. source: "./media/characters/cobalt-dracha/feral.svg",
  16962. extra: 692 / 633,
  16963. bottom: 0.05
  16964. }
  16965. },
  16966. },
  16967. [
  16968. {
  16969. name: "Normal",
  16970. height: math.unit(7, "feet"),
  16971. default: true
  16972. },
  16973. ]
  16974. ))
  16975. characterMakers.push(() => makeCharacter(
  16976. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16977. {
  16978. fallen: {
  16979. height: math.unit(11 + 8 / 12, "feet"),
  16980. weight: math.unit(485, "lb"),
  16981. name: "Java (Fallen)",
  16982. rename: true,
  16983. image: {
  16984. source: "./media/characters/java/fallen.svg",
  16985. extra: 226 / 208,
  16986. bottom: 0.005
  16987. }
  16988. },
  16989. godkin: {
  16990. height: math.unit(10 + 6 / 12, "feet"),
  16991. weight: math.unit(328, "lb"),
  16992. name: "Java (Godkin)",
  16993. rename: true,
  16994. image: {
  16995. source: "./media/characters/java/godkin.svg",
  16996. extra: 1104/1068,
  16997. bottom: 36/1140
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(11 + 8 / 12, "feet"),
  17005. default: true
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17011. {
  17012. front: {
  17013. height: math.unit(5 + 9 / 12, "feet"),
  17014. weight: math.unit(170, "lb"),
  17015. name: "Front",
  17016. image: {
  17017. source: "./media/characters/purna/front.svg",
  17018. extra: 239 / 229,
  17019. bottom: 0.01
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(5 + 9 / 12, "feet"),
  17027. default: true
  17028. },
  17029. ]
  17030. ))
  17031. characterMakers.push(() => makeCharacter(
  17032. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17033. {
  17034. front: {
  17035. height: math.unit(5 + 9 / 12, "feet"),
  17036. weight: math.unit(142, "lb"),
  17037. name: "Front",
  17038. image: {
  17039. source: "./media/characters/kuva/front.svg",
  17040. extra: 281 / 271,
  17041. bottom: 0.006
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Normal",
  17048. height: math.unit(5 + 9 / 12, "feet"),
  17049. default: true
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17055. {
  17056. anthro: {
  17057. height: math.unit(9 + 2 / 12, "feet"),
  17058. weight: math.unit(270, "lb"),
  17059. name: "Anthro",
  17060. image: {
  17061. source: "./media/characters/embra/anthro.svg",
  17062. extra: 200 / 187,
  17063. bottom: 0.02
  17064. }
  17065. },
  17066. feral: {
  17067. height: math.unit(18 + 8 / 12, "feet"),
  17068. weight: math.unit(576, "lb"),
  17069. name: "Feral",
  17070. image: {
  17071. source: "./media/characters/embra/feral.svg",
  17072. extra: 152 / 137,
  17073. bottom: 0.037
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Normal",
  17080. height: math.unit(9 + 2 / 12, "feet"),
  17081. default: true
  17082. },
  17083. ]
  17084. ))
  17085. characterMakers.push(() => makeCharacter(
  17086. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17087. {
  17088. anthro: {
  17089. height: math.unit(10 + 9 / 12, "feet"),
  17090. weight: math.unit(224, "lb"),
  17091. name: "Anthro",
  17092. image: {
  17093. source: "./media/characters/grottos/anthro.svg",
  17094. extra: 350 / 332,
  17095. bottom: 0.045
  17096. }
  17097. },
  17098. feral: {
  17099. height: math.unit(20 + 7 / 12, "feet"),
  17100. weight: math.unit(629, "lb"),
  17101. name: "Feral",
  17102. image: {
  17103. source: "./media/characters/grottos/feral.svg",
  17104. extra: 207 / 190,
  17105. bottom: 0.05
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(10 + 9 / 12, "feet"),
  17113. default: true
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17119. {
  17120. anthro: {
  17121. height: math.unit(9 + 6 / 12, "feet"),
  17122. weight: math.unit(298, "lb"),
  17123. name: "Anthro",
  17124. image: {
  17125. source: "./media/characters/frifna/anthro.svg",
  17126. extra: 282 / 269,
  17127. bottom: 0.015
  17128. }
  17129. },
  17130. feral: {
  17131. height: math.unit(16 + 2 / 12, "feet"),
  17132. weight: math.unit(624, "lb"),
  17133. name: "Feral",
  17134. image: {
  17135. source: "./media/characters/frifna/feral.svg"
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Normal",
  17142. height: math.unit(9 + 6 / 12, "feet"),
  17143. default: true
  17144. },
  17145. ]
  17146. ))
  17147. characterMakers.push(() => makeCharacter(
  17148. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17149. {
  17150. front: {
  17151. height: math.unit(6 + 2 / 12, "feet"),
  17152. weight: math.unit(168, "lb"),
  17153. name: "Front",
  17154. image: {
  17155. source: "./media/characters/elise/front.svg",
  17156. extra: 276 / 271
  17157. }
  17158. },
  17159. },
  17160. [
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(6 + 2 / 12, "feet"),
  17164. default: true
  17165. },
  17166. ]
  17167. ))
  17168. characterMakers.push(() => makeCharacter(
  17169. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17170. {
  17171. front: {
  17172. height: math.unit(5 + 10 / 12, "feet"),
  17173. weight: math.unit(210, "lb"),
  17174. name: "Front",
  17175. image: {
  17176. source: "./media/characters/glade/front.svg",
  17177. extra: 258 / 247,
  17178. bottom: 0.008
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(5 + 10 / 12, "feet"),
  17186. default: true
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17192. {
  17193. front: {
  17194. height: math.unit(5 + 10 / 12, "feet"),
  17195. weight: math.unit(129, "lb"),
  17196. name: "Front",
  17197. image: {
  17198. source: "./media/characters/rina/front.svg",
  17199. extra: 266 / 255,
  17200. bottom: 0.005
  17201. }
  17202. },
  17203. },
  17204. [
  17205. {
  17206. name: "Normal",
  17207. height: math.unit(5 + 10 / 12, "feet"),
  17208. default: true
  17209. },
  17210. ]
  17211. ))
  17212. characterMakers.push(() => makeCharacter(
  17213. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17214. {
  17215. front: {
  17216. height: math.unit(6 + 1 / 12, "feet"),
  17217. weight: math.unit(192, "lb"),
  17218. name: "Front",
  17219. image: {
  17220. source: "./media/characters/veronica/front.svg",
  17221. extra: 319 / 309,
  17222. bottom: 0.005
  17223. }
  17224. },
  17225. },
  17226. [
  17227. {
  17228. name: "Normal",
  17229. height: math.unit(6 + 1 / 12, "feet"),
  17230. default: true
  17231. },
  17232. ]
  17233. ))
  17234. characterMakers.push(() => makeCharacter(
  17235. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17236. {
  17237. front: {
  17238. height: math.unit(9 + 3 / 12, "feet"),
  17239. weight: math.unit(1100, "lb"),
  17240. name: "Front",
  17241. image: {
  17242. source: "./media/characters/braxton/front.svg",
  17243. extra: 1057 / 984,
  17244. bottom: 0.05
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(9 + 3 / 12, "feet")
  17252. },
  17253. {
  17254. name: "Giant",
  17255. height: math.unit(300, "feet"),
  17256. default: true
  17257. },
  17258. {
  17259. name: "Macro",
  17260. height: math.unit(700, "feet")
  17261. },
  17262. {
  17263. name: "Megamacro",
  17264. height: math.unit(6000, "feet")
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(6 + 7 / 12, "feet"),
  17273. weight: math.unit(150, "lb"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/blue-feyonics/front.svg",
  17277. extra: 1403 / 1306,
  17278. bottom: 0.047
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Normal",
  17285. height: math.unit(6 + 7 / 12, "feet"),
  17286. default: true
  17287. },
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17292. {
  17293. front: {
  17294. height: math.unit(1.8, "meters"),
  17295. weight: math.unit(60, "kg"),
  17296. name: "Front",
  17297. image: {
  17298. source: "./media/characters/maxwell/front.svg",
  17299. extra: 2060 / 1873
  17300. }
  17301. },
  17302. },
  17303. [
  17304. {
  17305. name: "Micro",
  17306. height: math.unit(1, "mm")
  17307. },
  17308. {
  17309. name: "Normal",
  17310. height: math.unit(1.8, "meter"),
  17311. default: true
  17312. },
  17313. {
  17314. name: "Macro",
  17315. height: math.unit(30, "meters")
  17316. },
  17317. {
  17318. name: "Megamacro",
  17319. height: math.unit(10, "km")
  17320. },
  17321. ]
  17322. ))
  17323. characterMakers.push(() => makeCharacter(
  17324. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17325. {
  17326. front: {
  17327. height: math.unit(6, "feet"),
  17328. weight: math.unit(150, "lb"),
  17329. name: "Front",
  17330. image: {
  17331. source: "./media/characters/jack/front.svg",
  17332. extra: 1754 / 1640,
  17333. bottom: 0.01
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(80000, "feet"),
  17341. default: true
  17342. },
  17343. {
  17344. name: "Max size",
  17345. height: math.unit(10, "lightyears")
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17351. {
  17352. urban: {
  17353. height: math.unit(5, "feet"),
  17354. weight: math.unit(240, "lb"),
  17355. name: "Urban",
  17356. image: {
  17357. source: "./media/characters/cafat/urban.svg",
  17358. extra: 1223/1126,
  17359. bottom: 205/1428
  17360. }
  17361. },
  17362. summer: {
  17363. height: math.unit(5, "feet"),
  17364. weight: math.unit(240, "lb"),
  17365. name: "Summer",
  17366. image: {
  17367. source: "./media/characters/cafat/summer.svg",
  17368. extra: 1223/1126,
  17369. bottom: 205/1428
  17370. }
  17371. },
  17372. winter: {
  17373. height: math.unit(5, "feet"),
  17374. weight: math.unit(240, "lb"),
  17375. name: "Winter",
  17376. image: {
  17377. source: "./media/characters/cafat/winter.svg",
  17378. extra: 1223/1126,
  17379. bottom: 205/1428
  17380. }
  17381. },
  17382. lingerie: {
  17383. height: math.unit(5, "feet"),
  17384. weight: math.unit(240, "lb"),
  17385. name: "Lingerie",
  17386. image: {
  17387. source: "./media/characters/cafat/lingerie.svg",
  17388. extra: 1223/1126,
  17389. bottom: 205/1428
  17390. }
  17391. },
  17392. upright: {
  17393. height: math.unit(6.3, "feet"),
  17394. weight: math.unit(240, "lb"),
  17395. name: "Upright",
  17396. image: {
  17397. source: "./media/characters/cafat/upright.svg",
  17398. bottom: 0.01
  17399. }
  17400. },
  17401. uprightFull: {
  17402. height: math.unit(6.3, "feet"),
  17403. weight: math.unit(240, "lb"),
  17404. name: "Upright (Full)",
  17405. image: {
  17406. source: "./media/characters/cafat/upright-full.svg",
  17407. bottom: 0.01
  17408. }
  17409. },
  17410. },
  17411. [
  17412. {
  17413. name: "Small",
  17414. height: math.unit(5, "feet"),
  17415. default: true
  17416. },
  17417. {
  17418. name: "Large",
  17419. height: math.unit(13, "feet")
  17420. },
  17421. ]
  17422. ))
  17423. characterMakers.push(() => makeCharacter(
  17424. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17425. {
  17426. front: {
  17427. height: math.unit(6, "feet"),
  17428. weight: math.unit(150, "lb"),
  17429. name: "Front",
  17430. image: {
  17431. source: "./media/characters/verin-raharra/front.svg",
  17432. extra: 5019 / 4835,
  17433. bottom: 0.023
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(7 + 5 / 12, "feet"),
  17441. default: true
  17442. },
  17443. {
  17444. name: "Upsized",
  17445. height: math.unit(20, "feet")
  17446. },
  17447. ]
  17448. ))
  17449. characterMakers.push(() => makeCharacter(
  17450. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17451. {
  17452. front: {
  17453. height: math.unit(7, "feet"),
  17454. weight: math.unit(230, "lb"),
  17455. name: "Front",
  17456. image: {
  17457. source: "./media/characters/nakata/front.svg",
  17458. extra: 1.005,
  17459. bottom: 0.01
  17460. }
  17461. },
  17462. },
  17463. [
  17464. {
  17465. name: "Normal",
  17466. height: math.unit(7, "feet"),
  17467. default: true
  17468. },
  17469. {
  17470. name: "Big",
  17471. height: math.unit(14, "feet")
  17472. },
  17473. {
  17474. name: "Macro",
  17475. height: math.unit(400, "feet")
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17481. {
  17482. front: {
  17483. height: math.unit(4.91, "feet"),
  17484. weight: math.unit(100, "lb"),
  17485. name: "Front",
  17486. image: {
  17487. source: "./media/characters/lily/front.svg",
  17488. extra: 1585 / 1415,
  17489. bottom: 0.02
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(4.91, "feet"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17503. {
  17504. laying: {
  17505. height: math.unit(4 + 4 / 12, "feet"),
  17506. weight: math.unit(600, "lb"),
  17507. name: "Laying",
  17508. image: {
  17509. source: "./media/characters/sheila/laying.svg",
  17510. extra: 1333 / 1265,
  17511. bottom: 0.16
  17512. }
  17513. },
  17514. },
  17515. [
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(4 + 4 / 12, "feet"),
  17519. default: true
  17520. },
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17525. {
  17526. front: {
  17527. height: math.unit(6, "feet"),
  17528. weight: math.unit(190, "lb"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/sax/front.svg",
  17532. extra: 1187 / 973,
  17533. bottom: 0.042
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Micro",
  17540. height: math.unit(4, "inches"),
  17541. default: true
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17547. {
  17548. front: {
  17549. height: math.unit(6, "feet"),
  17550. weight: math.unit(150, "lb"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/pandora/front.svg",
  17554. extra: 2720 / 2556,
  17555. bottom: 0.015
  17556. }
  17557. },
  17558. back: {
  17559. height: math.unit(6, "feet"),
  17560. weight: math.unit(150, "lb"),
  17561. name: "Back",
  17562. image: {
  17563. source: "./media/characters/pandora/back.svg",
  17564. extra: 2720 / 2556,
  17565. bottom: 0.01
  17566. }
  17567. },
  17568. beans: {
  17569. height: math.unit(6 / 8, "feet"),
  17570. name: "Beans",
  17571. image: {
  17572. source: "./media/characters/pandora/beans.svg"
  17573. }
  17574. },
  17575. collar: {
  17576. height: math.unit(0.31, "feet"),
  17577. name: "Collar",
  17578. image: {
  17579. source: "./media/characters/pandora/collar.svg"
  17580. }
  17581. },
  17582. skirt: {
  17583. height: math.unit(6, "feet"),
  17584. weight: math.unit(150, "lb"),
  17585. name: "Skirt",
  17586. image: {
  17587. source: "./media/characters/pandora/skirt.svg",
  17588. extra: 1622 / 1525,
  17589. bottom: 0.015
  17590. }
  17591. },
  17592. hoodie: {
  17593. height: math.unit(6, "feet"),
  17594. weight: math.unit(150, "lb"),
  17595. name: "Hoodie",
  17596. image: {
  17597. source: "./media/characters/pandora/hoodie.svg",
  17598. extra: 1622 / 1525,
  17599. bottom: 0.015
  17600. }
  17601. },
  17602. casual: {
  17603. height: math.unit(6, "feet"),
  17604. weight: math.unit(150, "lb"),
  17605. name: "Casual",
  17606. image: {
  17607. source: "./media/characters/pandora/casual.svg",
  17608. extra: 1622 / 1525,
  17609. bottom: 0.015
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(6, "feet")
  17617. },
  17618. {
  17619. name: "Big Steppy",
  17620. height: math.unit(1, "km"),
  17621. default: true
  17622. },
  17623. {
  17624. name: "Galactic Steppy",
  17625. height: math.unit(2, "gigameters")
  17626. },
  17627. ]
  17628. ))
  17629. characterMakers.push(() => makeCharacter(
  17630. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17631. {
  17632. side: {
  17633. height: math.unit(10, "feet"),
  17634. weight: math.unit(800, "kg"),
  17635. name: "Side",
  17636. image: {
  17637. source: "./media/characters/venio-darcony/side.svg",
  17638. extra: 1373 / 1003,
  17639. bottom: 0.037
  17640. }
  17641. },
  17642. front: {
  17643. height: math.unit(19, "feet"),
  17644. weight: math.unit(800, "kg"),
  17645. name: "Front",
  17646. image: {
  17647. source: "./media/characters/venio-darcony/front.svg"
  17648. }
  17649. },
  17650. back: {
  17651. height: math.unit(19, "feet"),
  17652. weight: math.unit(800, "kg"),
  17653. name: "Back",
  17654. image: {
  17655. source: "./media/characters/venio-darcony/back.svg"
  17656. }
  17657. },
  17658. sideNsfw: {
  17659. height: math.unit(10, "feet"),
  17660. weight: math.unit(800, "kg"),
  17661. name: "Side (NSFW)",
  17662. image: {
  17663. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17664. extra: 1373 / 1003,
  17665. bottom: 0.037
  17666. }
  17667. },
  17668. frontNsfw: {
  17669. height: math.unit(19, "feet"),
  17670. weight: math.unit(800, "kg"),
  17671. name: "Front (NSFW)",
  17672. image: {
  17673. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17674. }
  17675. },
  17676. backNsfw: {
  17677. height: math.unit(19, "feet"),
  17678. weight: math.unit(800, "kg"),
  17679. name: "Back (NSFW)",
  17680. image: {
  17681. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17682. }
  17683. },
  17684. sideArmored: {
  17685. height: math.unit(10, "feet"),
  17686. weight: math.unit(800, "kg"),
  17687. name: "Side (Armored)",
  17688. image: {
  17689. source: "./media/characters/venio-darcony/side-armored.svg",
  17690. extra: 1373 / 1003,
  17691. bottom: 0.037
  17692. }
  17693. },
  17694. frontArmored: {
  17695. height: math.unit(19, "feet"),
  17696. weight: math.unit(900, "kg"),
  17697. name: "Front (Armored)",
  17698. image: {
  17699. source: "./media/characters/venio-darcony/front-armored.svg"
  17700. }
  17701. },
  17702. backArmored: {
  17703. height: math.unit(19, "feet"),
  17704. weight: math.unit(900, "kg"),
  17705. name: "Back (Armored)",
  17706. image: {
  17707. source: "./media/characters/venio-darcony/back-armored.svg"
  17708. }
  17709. },
  17710. sword: {
  17711. height: math.unit(10, "feet"),
  17712. weight: math.unit(50, "lb"),
  17713. name: "Sword",
  17714. image: {
  17715. source: "./media/characters/venio-darcony/sword.svg"
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Normal",
  17722. height: math.unit(10, "feet")
  17723. },
  17724. {
  17725. name: "Macro",
  17726. height: math.unit(130, "feet"),
  17727. default: true
  17728. },
  17729. {
  17730. name: "Macro+",
  17731. height: math.unit(240, "feet")
  17732. },
  17733. ]
  17734. ))
  17735. characterMakers.push(() => makeCharacter(
  17736. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17737. {
  17738. front: {
  17739. height: math.unit(6, "feet"),
  17740. weight: math.unit(150, "lb"),
  17741. name: "Front",
  17742. image: {
  17743. source: "./media/characters/veski/front.svg",
  17744. extra: 1299 / 1225,
  17745. bottom: 0.04
  17746. }
  17747. },
  17748. back: {
  17749. height: math.unit(6, "feet"),
  17750. weight: math.unit(150, "lb"),
  17751. name: "Back",
  17752. image: {
  17753. source: "./media/characters/veski/back.svg",
  17754. extra: 1299 / 1225,
  17755. bottom: 0.008
  17756. }
  17757. },
  17758. maw: {
  17759. height: math.unit(1.5 * 1.21, "feet"),
  17760. name: "Maw",
  17761. image: {
  17762. source: "./media/characters/veski/maw.svg"
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Macro",
  17769. height: math.unit(2, "km"),
  17770. default: true
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17776. {
  17777. front: {
  17778. height: math.unit(5 + 7 / 12, "feet"),
  17779. name: "Front",
  17780. image: {
  17781. source: "./media/characters/isabelle/front.svg",
  17782. extra: 2130 / 1976,
  17783. bottom: 0.05
  17784. }
  17785. },
  17786. },
  17787. [
  17788. {
  17789. name: "Supermicro",
  17790. height: math.unit(10, "micrometers")
  17791. },
  17792. {
  17793. name: "Micro",
  17794. height: math.unit(1, "inch")
  17795. },
  17796. {
  17797. name: "Tiny",
  17798. height: math.unit(5, "inches")
  17799. },
  17800. {
  17801. name: "Standard",
  17802. height: math.unit(5 + 7 / 12, "inches")
  17803. },
  17804. {
  17805. name: "Macro",
  17806. height: math.unit(80, "meters"),
  17807. default: true
  17808. },
  17809. {
  17810. name: "Megamacro",
  17811. height: math.unit(250, "meters")
  17812. },
  17813. {
  17814. name: "Gigamacro",
  17815. height: math.unit(5, "km")
  17816. },
  17817. {
  17818. name: "Cosmic",
  17819. height: math.unit(2.5e6, "miles")
  17820. },
  17821. ]
  17822. ))
  17823. characterMakers.push(() => makeCharacter(
  17824. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17825. {
  17826. front: {
  17827. height: math.unit(6, "feet"),
  17828. weight: math.unit(150, "lb"),
  17829. name: "Front",
  17830. image: {
  17831. source: "./media/characters/hanzo/front.svg",
  17832. extra: 374 / 344,
  17833. bottom: 0.02
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(8, "feet"),
  17841. default: true
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17847. {
  17848. front: {
  17849. height: math.unit(7, "feet"),
  17850. weight: math.unit(130, "lb"),
  17851. name: "Front",
  17852. image: {
  17853. source: "./media/characters/anna/front.svg",
  17854. extra: 169 / 145,
  17855. bottom: 0.06
  17856. }
  17857. },
  17858. full: {
  17859. height: math.unit(4.96, "feet"),
  17860. weight: math.unit(220, "lb"),
  17861. name: "Full",
  17862. image: {
  17863. source: "./media/characters/anna/full.svg",
  17864. extra: 138 / 114,
  17865. bottom: 0.15
  17866. }
  17867. },
  17868. tongue: {
  17869. height: math.unit(2.53, "feet"),
  17870. name: "Tongue",
  17871. image: {
  17872. source: "./media/characters/anna/tongue.svg"
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(7, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(7, "feet"),
  17889. weight: math.unit(150, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/ian-corvid/front.svg",
  17893. extra: 150 / 142,
  17894. bottom: 0.02
  17895. }
  17896. },
  17897. back: {
  17898. height: math.unit(7, "feet"),
  17899. weight: math.unit(150, "lb"),
  17900. name: "Back",
  17901. image: {
  17902. source: "./media/characters/ian-corvid/back.svg",
  17903. extra: 150 / 143,
  17904. bottom: 0.01
  17905. }
  17906. },
  17907. stomping: {
  17908. height: math.unit(7, "feet"),
  17909. weight: math.unit(150, "lb"),
  17910. name: "Stomping",
  17911. image: {
  17912. source: "./media/characters/ian-corvid/stomping.svg",
  17913. extra: 76 / 72
  17914. }
  17915. },
  17916. sitting: {
  17917. height: math.unit(7 / 1.8, "feet"),
  17918. weight: math.unit(150, "lb"),
  17919. name: "Sitting",
  17920. image: {
  17921. source: "./media/characters/ian-corvid/sitting.svg",
  17922. extra: 1400 / 1269,
  17923. bottom: 0.15
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Tiny Microw",
  17930. height: math.unit(1, "inch")
  17931. },
  17932. {
  17933. name: "Microw",
  17934. height: math.unit(6, "inches")
  17935. },
  17936. {
  17937. name: "Crow",
  17938. height: math.unit(7 + 1 / 12, "feet"),
  17939. default: true
  17940. },
  17941. {
  17942. name: "Macrow",
  17943. height: math.unit(176, "feet")
  17944. },
  17945. ]
  17946. ))
  17947. characterMakers.push(() => makeCharacter(
  17948. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17949. {
  17950. front: {
  17951. height: math.unit(5 + 7 / 12, "feet"),
  17952. weight: math.unit(147, "lb"),
  17953. name: "Front",
  17954. image: {
  17955. source: "./media/characters/natalie-kellon/front.svg",
  17956. extra: 1214 / 1141,
  17957. bottom: 0.02
  17958. }
  17959. },
  17960. },
  17961. [
  17962. {
  17963. name: "Micro",
  17964. height: math.unit(1 / 16, "inch")
  17965. },
  17966. {
  17967. name: "Tiny",
  17968. height: math.unit(4, "inches")
  17969. },
  17970. {
  17971. name: "Normal",
  17972. height: math.unit(5 + 7 / 12, "feet"),
  17973. default: true
  17974. },
  17975. {
  17976. name: "Amazon",
  17977. height: math.unit(12, "feet")
  17978. },
  17979. {
  17980. name: "Giantess",
  17981. height: math.unit(160, "meters")
  17982. },
  17983. {
  17984. name: "Titaness",
  17985. height: math.unit(800, "meters")
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17991. {
  17992. front: {
  17993. height: math.unit(6, "feet"),
  17994. weight: math.unit(150, "lb"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/alluria/front.svg",
  17998. extra: 806 / 738,
  17999. bottom: 0.01
  18000. }
  18001. },
  18002. side: {
  18003. height: math.unit(6, "feet"),
  18004. weight: math.unit(150, "lb"),
  18005. name: "Side",
  18006. image: {
  18007. source: "./media/characters/alluria/side.svg",
  18008. extra: 800 / 750,
  18009. }
  18010. },
  18011. back: {
  18012. height: math.unit(6, "feet"),
  18013. weight: math.unit(150, "lb"),
  18014. name: "Back",
  18015. image: {
  18016. source: "./media/characters/alluria/back.svg",
  18017. extra: 806 / 738,
  18018. }
  18019. },
  18020. frontMaid: {
  18021. height: math.unit(6, "feet"),
  18022. weight: math.unit(150, "lb"),
  18023. name: "Front (Maid)",
  18024. image: {
  18025. source: "./media/characters/alluria/front-maid.svg",
  18026. extra: 806 / 738,
  18027. bottom: 0.01
  18028. }
  18029. },
  18030. sideMaid: {
  18031. height: math.unit(6, "feet"),
  18032. weight: math.unit(150, "lb"),
  18033. name: "Side (Maid)",
  18034. image: {
  18035. source: "./media/characters/alluria/side-maid.svg",
  18036. extra: 800 / 750,
  18037. bottom: 0.005
  18038. }
  18039. },
  18040. backMaid: {
  18041. height: math.unit(6, "feet"),
  18042. weight: math.unit(150, "lb"),
  18043. name: "Back (Maid)",
  18044. image: {
  18045. source: "./media/characters/alluria/back-maid.svg",
  18046. extra: 806 / 738,
  18047. }
  18048. },
  18049. },
  18050. [
  18051. {
  18052. name: "Micro",
  18053. height: math.unit(6, "inches"),
  18054. default: true
  18055. },
  18056. ]
  18057. ))
  18058. characterMakers.push(() => makeCharacter(
  18059. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18060. {
  18061. front: {
  18062. height: math.unit(6, "feet"),
  18063. weight: math.unit(150, "lb"),
  18064. name: "Front",
  18065. image: {
  18066. source: "./media/characters/kyle/front.svg",
  18067. extra: 1069 / 962,
  18068. bottom: 77.228 / 1727.45
  18069. }
  18070. },
  18071. },
  18072. [
  18073. {
  18074. name: "Macro",
  18075. height: math.unit(150, "feet"),
  18076. default: true
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18082. {
  18083. front: {
  18084. height: math.unit(6, "feet"),
  18085. weight: math.unit(300, "lb"),
  18086. name: "Front",
  18087. image: {
  18088. source: "./media/characters/duncan/front.svg",
  18089. extra: 1650 / 1482,
  18090. bottom: 0.05
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Macro",
  18097. height: math.unit(100, "feet"),
  18098. default: true
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(5 + 4 / 12, "feet"),
  18107. weight: math.unit(220, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/memory/front.svg",
  18111. extra: 3641 / 3545,
  18112. bottom: 0.03
  18113. }
  18114. },
  18115. back: {
  18116. height: math.unit(5 + 4 / 12, "feet"),
  18117. weight: math.unit(220, "lb"),
  18118. name: "Back",
  18119. image: {
  18120. source: "./media/characters/memory/back.svg",
  18121. extra: 3641 / 3545,
  18122. bottom: 0.025
  18123. }
  18124. },
  18125. frontSkirt: {
  18126. height: math.unit(5 + 4 / 12, "feet"),
  18127. weight: math.unit(220, "lb"),
  18128. name: "Front (Skirt)",
  18129. image: {
  18130. source: "./media/characters/memory/front-skirt.svg",
  18131. extra: 3641 / 3545,
  18132. bottom: 0.03
  18133. }
  18134. },
  18135. frontDress: {
  18136. height: math.unit(5 + 4 / 12, "feet"),
  18137. weight: math.unit(220, "lb"),
  18138. name: "Front (Dress)",
  18139. image: {
  18140. source: "./media/characters/memory/front-dress.svg",
  18141. extra: 3641 / 3545,
  18142. bottom: 0.03
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Micro",
  18149. height: math.unit(6, "inches"),
  18150. default: true
  18151. },
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(5 + 4 / 12, "feet")
  18155. },
  18156. ]
  18157. ))
  18158. characterMakers.push(() => makeCharacter(
  18159. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18160. {
  18161. front: {
  18162. height: math.unit(4 + 11 / 12, "feet"),
  18163. weight: math.unit(100, "lb"),
  18164. name: "Front",
  18165. image: {
  18166. source: "./media/characters/luno/front.svg",
  18167. extra: 1535 / 1487,
  18168. bottom: 0.03
  18169. }
  18170. },
  18171. },
  18172. [
  18173. {
  18174. name: "Micro",
  18175. height: math.unit(3, "inches")
  18176. },
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(4 + 11 / 12, "feet"),
  18180. default: true
  18181. },
  18182. {
  18183. name: "Macro",
  18184. height: math.unit(300, "feet")
  18185. },
  18186. {
  18187. name: "Megamacro",
  18188. height: math.unit(700, "miles")
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(6 + 2 / 12, "feet"),
  18197. weight: math.unit(170, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/jamesy/front.svg",
  18201. extra: 440 / 382,
  18202. bottom: 0.005
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Micro",
  18209. height: math.unit(3, "inches")
  18210. },
  18211. {
  18212. name: "Normal",
  18213. height: math.unit(6 + 2 / 12, "feet"),
  18214. default: true
  18215. },
  18216. {
  18217. name: "Macro",
  18218. height: math.unit(300, "feet")
  18219. },
  18220. {
  18221. name: "Megamacro",
  18222. height: math.unit(700, "miles")
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(6, "feet"),
  18231. weight: math.unit(160, "lb"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/mark/front.svg",
  18235. extra: 3300 / 3100,
  18236. bottom: 136.42 / 3440.47
  18237. }
  18238. },
  18239. },
  18240. [
  18241. {
  18242. name: "Macro",
  18243. height: math.unit(120, "meters")
  18244. },
  18245. {
  18246. name: "Bigger Macro",
  18247. height: math.unit(350, "meters")
  18248. },
  18249. {
  18250. name: "Megamacro",
  18251. height: math.unit(8, "km"),
  18252. default: true
  18253. },
  18254. {
  18255. name: "Continental",
  18256. height: math.unit(4550, "km")
  18257. },
  18258. {
  18259. name: "Planetary",
  18260. height: math.unit(65000, "km")
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(6, "feet"),
  18269. weight: math.unit(400, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/mac/front.svg",
  18273. extra: 1048 / 987.7,
  18274. bottom: 60 / 1107.6,
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Macro",
  18281. height: math.unit(500, "feet"),
  18282. default: true
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18288. {
  18289. front: {
  18290. height: math.unit(5 + 2 / 12, "feet"),
  18291. weight: math.unit(190, "lb"),
  18292. name: "Front",
  18293. image: {
  18294. source: "./media/characters/bari/front.svg",
  18295. extra: 3156 / 2880,
  18296. bottom: 0.03
  18297. }
  18298. },
  18299. back: {
  18300. height: math.unit(5 + 2 / 12, "feet"),
  18301. weight: math.unit(190, "lb"),
  18302. name: "Back",
  18303. image: {
  18304. source: "./media/characters/bari/back.svg",
  18305. extra: 3260 / 2834,
  18306. bottom: 0.025
  18307. }
  18308. },
  18309. frontPlush: {
  18310. height: math.unit(5 + 2 / 12, "feet"),
  18311. weight: math.unit(190, "lb"),
  18312. name: "Front (Plush)",
  18313. image: {
  18314. source: "./media/characters/bari/front-plush.svg",
  18315. extra: 1112 / 1061,
  18316. bottom: 0.002
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Micro",
  18323. height: math.unit(3, "inches")
  18324. },
  18325. {
  18326. name: "Normal",
  18327. height: math.unit(5 + 2 / 12, "feet"),
  18328. default: true
  18329. },
  18330. {
  18331. name: "Macro",
  18332. height: math.unit(20, "feet")
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18338. {
  18339. front: {
  18340. height: math.unit(6 + 1 / 12, "feet"),
  18341. weight: math.unit(275, "lb"),
  18342. name: "Front",
  18343. image: {
  18344. source: "./media/characters/hunter-misha-raven/front.svg"
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Mortal",
  18351. height: math.unit(6 + 1 / 12, "feet")
  18352. },
  18353. {
  18354. name: "Divine",
  18355. height: math.unit(1.12134e34, "parsecs"),
  18356. default: true
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18362. {
  18363. front: {
  18364. height: math.unit(6 + 3 / 12, "feet"),
  18365. weight: math.unit(220, "lb"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/max-calore/front.svg",
  18369. extra: 1700 / 1648,
  18370. bottom: 0.01
  18371. }
  18372. },
  18373. back: {
  18374. height: math.unit(6 + 3 / 12, "feet"),
  18375. weight: math.unit(220, "lb"),
  18376. name: "Back",
  18377. image: {
  18378. source: "./media/characters/max-calore/back.svg",
  18379. extra: 1700 / 1648,
  18380. bottom: 0.01
  18381. }
  18382. },
  18383. },
  18384. [
  18385. {
  18386. name: "Normal",
  18387. height: math.unit(6 + 3 / 12, "feet"),
  18388. default: true
  18389. },
  18390. ]
  18391. ))
  18392. characterMakers.push(() => makeCharacter(
  18393. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18394. {
  18395. side: {
  18396. height: math.unit(2 + 8 / 12, "feet"),
  18397. weight: math.unit(99, "lb"),
  18398. name: "Side",
  18399. image: {
  18400. source: "./media/characters/aspen/side.svg",
  18401. extra: 152 / 138,
  18402. bottom: 0.032
  18403. }
  18404. },
  18405. },
  18406. [
  18407. {
  18408. name: "Normal",
  18409. height: math.unit(2 + 8 / 12, "feet"),
  18410. default: true
  18411. },
  18412. ]
  18413. ))
  18414. characterMakers.push(() => makeCharacter(
  18415. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18416. {
  18417. side: {
  18418. height: math.unit(3 + 2 / 12, "feet"),
  18419. weight: math.unit(224, "lb"),
  18420. name: "Side",
  18421. image: {
  18422. source: "./media/characters/sheila-feral-wolf/side.svg",
  18423. extra: 179 / 166,
  18424. bottom: 0.03
  18425. }
  18426. },
  18427. },
  18428. [
  18429. {
  18430. name: "Normal",
  18431. height: math.unit(3 + 2 / 12, "feet"),
  18432. default: true
  18433. },
  18434. ]
  18435. ))
  18436. characterMakers.push(() => makeCharacter(
  18437. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18438. {
  18439. side: {
  18440. height: math.unit(1 + 9 / 12, "feet"),
  18441. weight: math.unit(38, "lb"),
  18442. name: "Side",
  18443. image: {
  18444. source: "./media/characters/michelle/side.svg",
  18445. extra: 147 / 136.7,
  18446. bottom: 0.03
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Normal",
  18453. height: math.unit(1 + 9 / 12, "feet"),
  18454. default: true
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18460. {
  18461. front: {
  18462. height: math.unit(1.54, "feet"),
  18463. weight: math.unit(50, "lb"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/nino/front.svg"
  18467. }
  18468. },
  18469. },
  18470. [
  18471. {
  18472. name: "Normal",
  18473. height: math.unit(1.54, "feet"),
  18474. default: true
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18480. {
  18481. front: {
  18482. height: math.unit(1.49, "feet"),
  18483. weight: math.unit(45, "lb"),
  18484. name: "Front",
  18485. image: {
  18486. source: "./media/characters/viola/front.svg"
  18487. }
  18488. },
  18489. },
  18490. [
  18491. {
  18492. name: "Normal",
  18493. height: math.unit(1.49, "feet"),
  18494. default: true
  18495. },
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18500. {
  18501. front: {
  18502. height: math.unit(6 + 5 / 12, "feet"),
  18503. weight: math.unit(580, "lb"),
  18504. name: "Front",
  18505. image: {
  18506. source: "./media/characters/atlas/front.svg",
  18507. extra: 298.5 / 290,
  18508. bottom: 0.015
  18509. }
  18510. },
  18511. },
  18512. [
  18513. {
  18514. name: "Normal",
  18515. height: math.unit(6 + 5 / 12, "feet"),
  18516. default: true
  18517. },
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18522. {
  18523. side: {
  18524. height: math.unit(15.6, "inches"),
  18525. weight: math.unit(10, "lb"),
  18526. name: "Side",
  18527. image: {
  18528. source: "./media/characters/davy/side.svg",
  18529. extra: 200 / 170,
  18530. bottom: 0.01
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(15.6, "inches"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18544. {
  18545. side: {
  18546. height: math.unit(4 + 8 / 12, "feet"),
  18547. weight: math.unit(166, "lb"),
  18548. name: "Side",
  18549. image: {
  18550. source: "./media/characters/fiona/side.svg",
  18551. extra: 232 / 220,
  18552. bottom: 0.03
  18553. }
  18554. },
  18555. },
  18556. [
  18557. {
  18558. name: "Normal",
  18559. height: math.unit(4 + 8 / 12, "feet"),
  18560. default: true
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18566. {
  18567. front: {
  18568. height: math.unit(26, "inches"),
  18569. weight: math.unit(35, "lb"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/lyla/front.svg",
  18573. bottom: 0.1
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Normal",
  18580. height: math.unit(3, "feet"),
  18581. default: true
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18587. {
  18588. side: {
  18589. height: math.unit(1.8, "feet"),
  18590. weight: math.unit(44, "lb"),
  18591. name: "Side",
  18592. image: {
  18593. source: "./media/characters/perseus/side.svg",
  18594. bottom: 0.21
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Normal",
  18601. height: math.unit(1.8, "feet"),
  18602. default: true
  18603. },
  18604. ]
  18605. ))
  18606. characterMakers.push(() => makeCharacter(
  18607. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18608. {
  18609. side: {
  18610. height: math.unit(4 + 2 / 12, "feet"),
  18611. weight: math.unit(20, "lb"),
  18612. name: "Side",
  18613. image: {
  18614. source: "./media/characters/remus/side.svg"
  18615. }
  18616. },
  18617. },
  18618. [
  18619. {
  18620. name: "Normal",
  18621. height: math.unit(4 + 2 / 12, "feet"),
  18622. default: true
  18623. },
  18624. ]
  18625. ))
  18626. characterMakers.push(() => makeCharacter(
  18627. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18628. {
  18629. front: {
  18630. height: math.unit(4 + 11 / 12, "feet"),
  18631. weight: math.unit(114, "lb"),
  18632. name: "Front",
  18633. image: {
  18634. source: "./media/characters/raf/front.svg",
  18635. extra: 1504/1339,
  18636. bottom: 26/1530
  18637. }
  18638. },
  18639. side: {
  18640. height: math.unit(4 + 11 / 12, "feet"),
  18641. weight: math.unit(114, "lb"),
  18642. name: "Side",
  18643. image: {
  18644. source: "./media/characters/raf/side.svg",
  18645. extra: 1466/1316,
  18646. bottom: 29/1495
  18647. }
  18648. },
  18649. paw: {
  18650. height: math.unit(1.45, "feet"),
  18651. name: "Paw",
  18652. image: {
  18653. source: "./media/characters/raf/paw.svg"
  18654. },
  18655. extraAttributes: {
  18656. "toeSize": {
  18657. name: "Toe Size",
  18658. power: 2,
  18659. type: "area",
  18660. base: math.unit(0.004, "m^2")
  18661. },
  18662. "padSize": {
  18663. name: "Pad Size",
  18664. power: 2,
  18665. type: "area",
  18666. base: math.unit(0.04, "m^2")
  18667. },
  18668. "footSize": {
  18669. name: "Foot Size",
  18670. power: 2,
  18671. type: "area",
  18672. base: math.unit(0.08, "m^2")
  18673. },
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Micro",
  18680. height: math.unit(2, "inches")
  18681. },
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(4 + 11 / 12, "feet"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Macro",
  18689. height: math.unit(70, "feet")
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18695. {
  18696. front: {
  18697. height: math.unit(1.5, "meters"),
  18698. weight: math.unit(68, "kg"),
  18699. name: "Front",
  18700. image: {
  18701. source: "./media/characters/liam-einarr/front.svg",
  18702. extra: 2822 / 2666
  18703. }
  18704. },
  18705. back: {
  18706. height: math.unit(1.5, "meters"),
  18707. weight: math.unit(68, "kg"),
  18708. name: "Back",
  18709. image: {
  18710. source: "./media/characters/liam-einarr/back.svg",
  18711. extra: 2822 / 2666,
  18712. bottom: 0.015
  18713. }
  18714. },
  18715. },
  18716. [
  18717. {
  18718. name: "Normal",
  18719. height: math.unit(1.5, "meters"),
  18720. default: true
  18721. },
  18722. {
  18723. name: "Macro",
  18724. height: math.unit(150, "meters")
  18725. },
  18726. {
  18727. name: "Megamacro",
  18728. height: math.unit(35, "km")
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18734. {
  18735. front: {
  18736. height: math.unit(6, "feet"),
  18737. weight: math.unit(75, "kg"),
  18738. name: "Front",
  18739. image: {
  18740. source: "./media/characters/linda/front.svg",
  18741. extra: 930 / 874,
  18742. bottom: 0.004
  18743. }
  18744. },
  18745. },
  18746. [
  18747. {
  18748. name: "Normal",
  18749. height: math.unit(6, "feet"),
  18750. default: true
  18751. },
  18752. ]
  18753. ))
  18754. characterMakers.push(() => makeCharacter(
  18755. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18756. {
  18757. front: {
  18758. height: math.unit(6 + 8 / 12, "feet"),
  18759. weight: math.unit(220, "lb"),
  18760. name: "Front",
  18761. image: {
  18762. source: "./media/characters/caylex/front.svg",
  18763. extra: 821 / 772,
  18764. bottom: 0.07
  18765. }
  18766. },
  18767. back: {
  18768. height: math.unit(6 + 8 / 12, "feet"),
  18769. weight: math.unit(220, "lb"),
  18770. name: "Back",
  18771. image: {
  18772. source: "./media/characters/caylex/back.svg",
  18773. extra: 821 / 772,
  18774. bottom: 0.022
  18775. }
  18776. },
  18777. hand: {
  18778. height: math.unit(1.25, "feet"),
  18779. name: "Hand",
  18780. image: {
  18781. source: "./media/characters/caylex/hand.svg"
  18782. }
  18783. },
  18784. foot: {
  18785. height: math.unit(1.6, "feet"),
  18786. name: "Foot",
  18787. image: {
  18788. source: "./media/characters/caylex/foot.svg"
  18789. }
  18790. },
  18791. armored: {
  18792. height: math.unit(6 + 8 / 12, "feet"),
  18793. weight: math.unit(250, "lb"),
  18794. name: "Armored",
  18795. image: {
  18796. source: "./media/characters/caylex/armored.svg",
  18797. extra: 1420 / 1310,
  18798. bottom: 0.045
  18799. }
  18800. },
  18801. },
  18802. [
  18803. {
  18804. name: "Normal",
  18805. height: math.unit(6 + 8 / 12, "feet"),
  18806. default: true
  18807. },
  18808. {
  18809. name: "Normal+",
  18810. height: math.unit(12, "feet")
  18811. },
  18812. ]
  18813. ))
  18814. characterMakers.push(() => makeCharacter(
  18815. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18816. {
  18817. front: {
  18818. height: math.unit(7 + 6 / 12, "feet"),
  18819. weight: math.unit(288, "lb"),
  18820. name: "Front",
  18821. image: {
  18822. source: "./media/characters/alana/front.svg",
  18823. extra: 679 / 653,
  18824. bottom: 22.5 / 701
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Normal",
  18831. height: math.unit(7 + 6 / 12, "feet")
  18832. },
  18833. {
  18834. name: "Large",
  18835. height: math.unit(50, "feet")
  18836. },
  18837. {
  18838. name: "Macro",
  18839. height: math.unit(100, "feet"),
  18840. default: true
  18841. },
  18842. {
  18843. name: "Macro+",
  18844. height: math.unit(200, "feet")
  18845. },
  18846. ]
  18847. ))
  18848. characterMakers.push(() => makeCharacter(
  18849. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18850. {
  18851. front: {
  18852. height: math.unit(6 + 1 / 12, "feet"),
  18853. weight: math.unit(210, "lb"),
  18854. name: "Front",
  18855. image: {
  18856. source: "./media/characters/hasani/front.svg",
  18857. extra: 244 / 232,
  18858. bottom: 0.01
  18859. }
  18860. },
  18861. back: {
  18862. height: math.unit(6 + 1 / 12, "feet"),
  18863. weight: math.unit(210, "lb"),
  18864. name: "Back",
  18865. image: {
  18866. source: "./media/characters/hasani/back.svg",
  18867. extra: 244 / 232,
  18868. bottom: 0.01
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(6 + 1 / 12, "feet")
  18876. },
  18877. {
  18878. name: "Macro",
  18879. height: math.unit(175, "feet"),
  18880. default: true
  18881. },
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18886. {
  18887. front: {
  18888. height: math.unit(1.82, "meters"),
  18889. weight: math.unit(140, "lb"),
  18890. name: "Front",
  18891. image: {
  18892. source: "./media/characters/nita/front.svg",
  18893. extra: 2473 / 2363,
  18894. bottom: 0.01
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(1.82, "m")
  18902. },
  18903. {
  18904. name: "Macro",
  18905. height: math.unit(300, "m")
  18906. },
  18907. {
  18908. name: "Mistake Canon",
  18909. height: math.unit(0.5, "miles"),
  18910. default: true
  18911. },
  18912. {
  18913. name: "Big Mistake",
  18914. height: math.unit(13, "miles")
  18915. },
  18916. {
  18917. name: "Playing God",
  18918. height: math.unit(2450, "miles")
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18924. {
  18925. front: {
  18926. height: math.unit(4, "feet"),
  18927. weight: math.unit(120, "lb"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/shiriko/front.svg",
  18931. extra: 970/934,
  18932. bottom: 5/975
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(4, "feet"),
  18940. default: true
  18941. },
  18942. ]
  18943. ))
  18944. characterMakers.push(() => makeCharacter(
  18945. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18946. {
  18947. front: {
  18948. height: math.unit(6, "feet"),
  18949. name: "front",
  18950. image: {
  18951. source: "./media/characters/deja/front.svg",
  18952. extra: 926 / 840,
  18953. bottom: 0.07
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Planck Length",
  18960. height: math.unit(1.6e-35, "meters")
  18961. },
  18962. {
  18963. name: "Normal",
  18964. height: math.unit(30.48, "meters"),
  18965. default: true
  18966. },
  18967. {
  18968. name: "Universal",
  18969. height: math.unit(8.8e26, "meters")
  18970. },
  18971. ]
  18972. ))
  18973. characterMakers.push(() => makeCharacter(
  18974. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18975. {
  18976. side: {
  18977. height: math.unit(8, "feet"),
  18978. weight: math.unit(6300, "lb"),
  18979. name: "Side",
  18980. image: {
  18981. source: "./media/characters/anima/side.svg",
  18982. bottom: 0.035
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Normal",
  18989. height: math.unit(8, "feet"),
  18990. default: true
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18996. {
  18997. front: {
  18998. height: math.unit(8, "feet"),
  18999. weight: math.unit(350, "lb"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/bianca/front.svg",
  19003. extra: 234 / 225,
  19004. bottom: 0.03
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Normal",
  19011. height: math.unit(8, "feet"),
  19012. default: true
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19018. {
  19019. front: {
  19020. height: math.unit(11 + 5/12, "feet"),
  19021. weight: math.unit(1200, "lb"),
  19022. name: "Front",
  19023. image: {
  19024. source: "./media/characters/adinia/front.svg",
  19025. extra: 1767/1641,
  19026. bottom: 44/1811
  19027. },
  19028. extraAttributes: {
  19029. "energyIntake": {
  19030. name: "Energy Intake",
  19031. power: 3,
  19032. type: "energy",
  19033. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19034. },
  19035. }
  19036. },
  19037. back: {
  19038. height: math.unit(11 + 5/12, "feet"),
  19039. weight: math.unit(1200, "lb"),
  19040. name: "Back",
  19041. image: {
  19042. source: "./media/characters/adinia/back.svg",
  19043. extra: 1834/1684,
  19044. bottom: 14/1848
  19045. },
  19046. extraAttributes: {
  19047. "energyIntake": {
  19048. name: "Energy Intake",
  19049. power: 3,
  19050. type: "energy",
  19051. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19052. },
  19053. }
  19054. },
  19055. maw: {
  19056. height: math.unit(3.79, "feet"),
  19057. name: "Maw",
  19058. image: {
  19059. source: "./media/characters/adinia/maw.svg"
  19060. }
  19061. },
  19062. rump: {
  19063. height: math.unit(4.6, "feet"),
  19064. name: "Rump",
  19065. image: {
  19066. source: "./media/characters/adinia/rump.svg"
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(11 + 5 / 12, "feet"),
  19074. default: true
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19080. {
  19081. front: {
  19082. height: math.unit(3, "meters"),
  19083. weight: math.unit(200, "kg"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/lykasa/front.svg",
  19087. extra: 1076 / 976,
  19088. bottom: 0.06
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(3, "meters")
  19096. },
  19097. {
  19098. name: "Kaiju",
  19099. height: math.unit(120, "meters"),
  19100. default: true
  19101. },
  19102. {
  19103. name: "Mega Kaiju",
  19104. height: math.unit(240, "km")
  19105. },
  19106. {
  19107. name: "Giga Kaiju",
  19108. height: math.unit(400, "megameters")
  19109. },
  19110. {
  19111. name: "Tera Kaiju",
  19112. height: math.unit(800, "gigameters")
  19113. },
  19114. {
  19115. name: "Kaiju Dragon Goddess",
  19116. height: math.unit(26, "zettaparsecs")
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19122. {
  19123. side: {
  19124. height: math.unit(283 / 124 * 6, "feet"),
  19125. weight: math.unit(35000, "lb"),
  19126. name: "Side",
  19127. image: {
  19128. source: "./media/characters/malfaren/side.svg",
  19129. extra: 1310/529,
  19130. bottom: 24/1334
  19131. }
  19132. },
  19133. front: {
  19134. height: math.unit(22.36, "feet"),
  19135. weight: math.unit(35000, "lb"),
  19136. name: "Front",
  19137. image: {
  19138. source: "./media/characters/malfaren/front.svg",
  19139. extra: 1237/1115,
  19140. bottom: 32/1269
  19141. }
  19142. },
  19143. maw: {
  19144. height: math.unit(6.9, "feet"),
  19145. name: "Maw",
  19146. image: {
  19147. source: "./media/characters/malfaren/maw.svg"
  19148. }
  19149. },
  19150. dick: {
  19151. height: math.unit(6.19, "feet"),
  19152. name: "Dick",
  19153. image: {
  19154. source: "./media/characters/malfaren/dick.svg"
  19155. }
  19156. },
  19157. eye: {
  19158. height: math.unit(0.69, "feet"),
  19159. name: "Eye",
  19160. image: {
  19161. source: "./media/characters/malfaren/eye.svg"
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Big",
  19168. height: math.unit(283 / 162 * 6, "feet"),
  19169. },
  19170. {
  19171. name: "Bigger",
  19172. height: math.unit(283 / 124 * 6, "feet")
  19173. },
  19174. {
  19175. name: "Massive",
  19176. height: math.unit(283 / 92 * 6, "feet"),
  19177. default: true
  19178. },
  19179. {
  19180. name: "👀💦",
  19181. height: math.unit(283 / 73 * 6, "feet"),
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19187. {
  19188. front: {
  19189. height: math.unit(1.7, "m"),
  19190. weight: math.unit(70, "kg"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/kernel/front.svg",
  19194. extra: 222 / 210,
  19195. bottom: 0.007
  19196. }
  19197. },
  19198. },
  19199. [
  19200. {
  19201. name: "Nano",
  19202. height: math.unit(17, "micrometers")
  19203. },
  19204. {
  19205. name: "Micro",
  19206. height: math.unit(1.7, "mm")
  19207. },
  19208. {
  19209. name: "Small",
  19210. height: math.unit(1.7, "cm")
  19211. },
  19212. {
  19213. name: "Normal",
  19214. height: math.unit(1.7, "m"),
  19215. default: true
  19216. },
  19217. ]
  19218. ))
  19219. characterMakers.push(() => makeCharacter(
  19220. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19221. {
  19222. front: {
  19223. height: math.unit(1.75, "meters"),
  19224. weight: math.unit(65, "kg"),
  19225. name: "Front",
  19226. image: {
  19227. source: "./media/characters/jayne-folest/front.svg",
  19228. extra: 2115 / 2007,
  19229. bottom: 0.02
  19230. }
  19231. },
  19232. back: {
  19233. height: math.unit(1.75, "meters"),
  19234. weight: math.unit(65, "kg"),
  19235. name: "Back",
  19236. image: {
  19237. source: "./media/characters/jayne-folest/back.svg",
  19238. extra: 2115 / 2007,
  19239. bottom: 0.005
  19240. }
  19241. },
  19242. frontClothed: {
  19243. height: math.unit(1.75, "meters"),
  19244. weight: math.unit(65, "kg"),
  19245. name: "Front (Clothed)",
  19246. image: {
  19247. source: "./media/characters/jayne-folest/front-clothed.svg",
  19248. extra: 2115 / 2007,
  19249. bottom: 0.035
  19250. }
  19251. },
  19252. hand: {
  19253. height: math.unit(1 / 1.260, "feet"),
  19254. name: "Hand",
  19255. image: {
  19256. source: "./media/characters/jayne-folest/hand.svg"
  19257. }
  19258. },
  19259. foot: {
  19260. height: math.unit(1 / 0.918, "feet"),
  19261. name: "Foot",
  19262. image: {
  19263. source: "./media/characters/jayne-folest/foot.svg"
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Micro",
  19270. height: math.unit(4, "cm")
  19271. },
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(1.75, "meters")
  19275. },
  19276. {
  19277. name: "Macro",
  19278. height: math.unit(47.5, "meters"),
  19279. default: true
  19280. },
  19281. ]
  19282. ))
  19283. characterMakers.push(() => makeCharacter(
  19284. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19285. {
  19286. front: {
  19287. height: math.unit(180, "cm"),
  19288. weight: math.unit(70, "kg"),
  19289. name: "Front",
  19290. image: {
  19291. source: "./media/characters/algier/front.svg",
  19292. extra: 596 / 572,
  19293. bottom: 0.04
  19294. }
  19295. },
  19296. back: {
  19297. height: math.unit(180, "cm"),
  19298. weight: math.unit(70, "kg"),
  19299. name: "Back",
  19300. image: {
  19301. source: "./media/characters/algier/back.svg",
  19302. extra: 596 / 572,
  19303. bottom: 0.025
  19304. }
  19305. },
  19306. frontdressed: {
  19307. height: math.unit(180, "cm"),
  19308. weight: math.unit(150, "kg"),
  19309. name: "Front-dressed",
  19310. image: {
  19311. source: "./media/characters/algier/front-dressed.svg",
  19312. extra: 596 / 572,
  19313. bottom: 0.038
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Micro",
  19320. height: math.unit(5, "cm")
  19321. },
  19322. {
  19323. name: "Normal",
  19324. height: math.unit(180, "cm"),
  19325. default: true
  19326. },
  19327. {
  19328. name: "Macro",
  19329. height: math.unit(64, "m")
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19335. {
  19336. upright: {
  19337. height: math.unit(7, "feet"),
  19338. weight: math.unit(300, "lb"),
  19339. name: "Upright",
  19340. image: {
  19341. source: "./media/characters/pretzel/upright.svg",
  19342. extra: 534 / 522,
  19343. bottom: 0.065
  19344. }
  19345. },
  19346. sprawling: {
  19347. height: math.unit(3.75, "feet"),
  19348. weight: math.unit(300, "lb"),
  19349. name: "Sprawling",
  19350. image: {
  19351. source: "./media/characters/pretzel/sprawling.svg",
  19352. extra: 314 / 281,
  19353. bottom: 0.1
  19354. }
  19355. },
  19356. tongue: {
  19357. height: math.unit(2, "feet"),
  19358. name: "Tongue",
  19359. image: {
  19360. source: "./media/characters/pretzel/tongue.svg"
  19361. }
  19362. },
  19363. },
  19364. [
  19365. {
  19366. name: "Normal",
  19367. height: math.unit(7, "feet"),
  19368. default: true
  19369. },
  19370. {
  19371. name: "Oversized",
  19372. height: math.unit(15, "feet")
  19373. },
  19374. {
  19375. name: "Huge",
  19376. height: math.unit(30, "feet")
  19377. },
  19378. {
  19379. name: "Macro",
  19380. height: math.unit(250, "feet")
  19381. },
  19382. ]
  19383. ))
  19384. characterMakers.push(() => makeCharacter(
  19385. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19386. {
  19387. sideFront: {
  19388. height: math.unit(5 + 2 / 12, "feet"),
  19389. weight: math.unit(120, "lb"),
  19390. name: "Front Side",
  19391. image: {
  19392. source: "./media/characters/roxi/side-front.svg",
  19393. extra: 2924 / 2717,
  19394. bottom: 0.08
  19395. }
  19396. },
  19397. sideBack: {
  19398. height: math.unit(5 + 2 / 12, "feet"),
  19399. weight: math.unit(120, "lb"),
  19400. name: "Back Side",
  19401. image: {
  19402. source: "./media/characters/roxi/side-back.svg",
  19403. extra: 2904 / 2693,
  19404. bottom: 0.06
  19405. }
  19406. },
  19407. front: {
  19408. height: math.unit(5 + 2 / 12, "feet"),
  19409. weight: math.unit(120, "lb"),
  19410. name: "Front",
  19411. image: {
  19412. source: "./media/characters/roxi/front.svg",
  19413. extra: 2028 / 1907,
  19414. bottom: 0.01
  19415. }
  19416. },
  19417. frontAlt: {
  19418. height: math.unit(5 + 2 / 12, "feet"),
  19419. weight: math.unit(120, "lb"),
  19420. name: "Front (Alt)",
  19421. image: {
  19422. source: "./media/characters/roxi/front-alt.svg",
  19423. extra: 1828 / 1798,
  19424. bottom: 0.01
  19425. }
  19426. },
  19427. sitting: {
  19428. height: math.unit(2.8, "feet"),
  19429. weight: math.unit(120, "lb"),
  19430. name: "Sitting",
  19431. image: {
  19432. source: "./media/characters/roxi/sitting.svg",
  19433. extra: 2660 / 2462,
  19434. bottom: 0.1
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Normal",
  19441. height: math.unit(5 + 2 / 12, "feet"),
  19442. default: true
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19448. {
  19449. side: {
  19450. height: math.unit(55, "feet"),
  19451. weight: math.unit(153, "tons"),
  19452. name: "Side",
  19453. image: {
  19454. source: "./media/characters/shadow/side.svg",
  19455. extra: 701 / 628,
  19456. bottom: 0.02
  19457. }
  19458. },
  19459. flying: {
  19460. height: math.unit(145, "feet"),
  19461. weight: math.unit(153, "tons"),
  19462. name: "Flying",
  19463. image: {
  19464. source: "./media/characters/shadow/flying.svg"
  19465. }
  19466. },
  19467. },
  19468. [
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(55, "feet"),
  19472. default: true
  19473. },
  19474. ]
  19475. ))
  19476. characterMakers.push(() => makeCharacter(
  19477. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19478. {
  19479. front: {
  19480. height: math.unit(6, "feet"),
  19481. weight: math.unit(200, "lb"),
  19482. name: "Front",
  19483. image: {
  19484. source: "./media/characters/marcie/front.svg",
  19485. extra: 960 / 876,
  19486. bottom: 58 / 1017.87
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Macro",
  19493. height: math.unit(1, "mile"),
  19494. default: true
  19495. },
  19496. ]
  19497. ))
  19498. characterMakers.push(() => makeCharacter(
  19499. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19500. {
  19501. front: {
  19502. height: math.unit(7, "feet"),
  19503. weight: math.unit(200, "lb"),
  19504. name: "Front",
  19505. image: {
  19506. source: "./media/characters/kachina/front.svg",
  19507. extra: 1290.68 / 1119,
  19508. bottom: 36.5 / 1327.18
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Normal",
  19515. height: math.unit(7, "feet"),
  19516. default: true
  19517. },
  19518. ]
  19519. ))
  19520. characterMakers.push(() => makeCharacter(
  19521. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19522. {
  19523. looking: {
  19524. height: math.unit(2, "meters"),
  19525. weight: math.unit(300, "kg"),
  19526. name: "Looking",
  19527. image: {
  19528. source: "./media/characters/kash/looking.svg",
  19529. extra: 474 / 344,
  19530. bottom: 0.03
  19531. }
  19532. },
  19533. side: {
  19534. height: math.unit(2, "meters"),
  19535. weight: math.unit(300, "kg"),
  19536. name: "Side",
  19537. image: {
  19538. source: "./media/characters/kash/side.svg",
  19539. extra: 302 / 251,
  19540. bottom: 0.03
  19541. }
  19542. },
  19543. front: {
  19544. height: math.unit(2, "meters"),
  19545. weight: math.unit(300, "kg"),
  19546. name: "Front",
  19547. image: {
  19548. source: "./media/characters/kash/front.svg",
  19549. extra: 495 / 360,
  19550. bottom: 0.015
  19551. }
  19552. },
  19553. },
  19554. [
  19555. {
  19556. name: "Normal",
  19557. height: math.unit(2, "meters"),
  19558. default: true
  19559. },
  19560. {
  19561. name: "Big",
  19562. height: math.unit(3, "meters")
  19563. },
  19564. {
  19565. name: "Large",
  19566. height: math.unit(5, "meters")
  19567. },
  19568. ]
  19569. ))
  19570. characterMakers.push(() => makeCharacter(
  19571. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19572. {
  19573. feeding: {
  19574. height: math.unit(6.7, "feet"),
  19575. weight: math.unit(350, "lb"),
  19576. name: "Feeding",
  19577. image: {
  19578. source: "./media/characters/lalim/feeding.svg",
  19579. }
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Normal",
  19585. height: math.unit(6.7, "feet"),
  19586. default: true
  19587. },
  19588. ]
  19589. ))
  19590. characterMakers.push(() => makeCharacter(
  19591. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19592. {
  19593. front: {
  19594. height: math.unit(9.5, "feet"),
  19595. weight: math.unit(600, "lb"),
  19596. name: "Front",
  19597. image: {
  19598. source: "./media/characters/de'vout/front.svg",
  19599. extra: 1443 / 1328,
  19600. bottom: 0.025
  19601. }
  19602. },
  19603. back: {
  19604. height: math.unit(9.5, "feet"),
  19605. weight: math.unit(600, "lb"),
  19606. name: "Back",
  19607. image: {
  19608. source: "./media/characters/de'vout/back.svg",
  19609. extra: 1443 / 1328
  19610. }
  19611. },
  19612. frontDressed: {
  19613. height: math.unit(9.5, "feet"),
  19614. weight: math.unit(600, "lb"),
  19615. name: "Front (Dressed",
  19616. image: {
  19617. source: "./media/characters/de'vout/front-dressed.svg",
  19618. extra: 1443 / 1328,
  19619. bottom: 0.025
  19620. }
  19621. },
  19622. backDressed: {
  19623. height: math.unit(9.5, "feet"),
  19624. weight: math.unit(600, "lb"),
  19625. name: "Back (Dressed",
  19626. image: {
  19627. source: "./media/characters/de'vout/back-dressed.svg",
  19628. extra: 1443 / 1328
  19629. }
  19630. },
  19631. },
  19632. [
  19633. {
  19634. name: "Normal",
  19635. height: math.unit(9.5, "feet"),
  19636. default: true
  19637. },
  19638. ]
  19639. ))
  19640. characterMakers.push(() => makeCharacter(
  19641. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19642. {
  19643. front: {
  19644. height: math.unit(8, "feet"),
  19645. weight: math.unit(225, "lb"),
  19646. name: "Front",
  19647. image: {
  19648. source: "./media/characters/talana/front.svg",
  19649. extra: 1410 / 1300,
  19650. bottom: 0.015
  19651. }
  19652. },
  19653. frontDressed: {
  19654. height: math.unit(8, "feet"),
  19655. weight: math.unit(225, "lb"),
  19656. name: "Front (Dressed",
  19657. image: {
  19658. source: "./media/characters/talana/front-dressed.svg",
  19659. extra: 1410 / 1300,
  19660. bottom: 0.015
  19661. }
  19662. },
  19663. },
  19664. [
  19665. {
  19666. name: "Normal",
  19667. height: math.unit(8, "feet"),
  19668. default: true
  19669. },
  19670. ]
  19671. ))
  19672. characterMakers.push(() => makeCharacter(
  19673. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19674. {
  19675. side: {
  19676. height: math.unit(7.2, "feet"),
  19677. weight: math.unit(150, "lb"),
  19678. name: "Side",
  19679. image: {
  19680. source: "./media/characters/xeauvok/side.svg",
  19681. extra: 1975 / 1523,
  19682. bottom: 0.07
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Normal",
  19689. height: math.unit(7.2, "feet"),
  19690. default: true
  19691. },
  19692. ]
  19693. ))
  19694. characterMakers.push(() => makeCharacter(
  19695. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19696. {
  19697. side: {
  19698. height: math.unit(4, "meters"),
  19699. weight: math.unit(2200, "kg"),
  19700. name: "Side",
  19701. image: {
  19702. source: "./media/characters/zara/side.svg",
  19703. extra: 765/744,
  19704. bottom: 156/921
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(4, "meters"),
  19712. default: true
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19718. {
  19719. side: {
  19720. height: math.unit(6, "feet"),
  19721. weight: math.unit(150, "lb"),
  19722. name: "Side",
  19723. image: {
  19724. source: "./media/characters/richard-dragon/side.svg",
  19725. extra: 845 / 340,
  19726. bottom: 0.017
  19727. }
  19728. },
  19729. maw: {
  19730. height: math.unit(2.97, "feet"),
  19731. name: "Maw",
  19732. image: {
  19733. source: "./media/characters/richard-dragon/maw.svg"
  19734. }
  19735. },
  19736. },
  19737. [
  19738. ]
  19739. ))
  19740. characterMakers.push(() => makeCharacter(
  19741. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19742. {
  19743. front: {
  19744. height: math.unit(4, "feet"),
  19745. weight: math.unit(100, "lb"),
  19746. name: "Front",
  19747. image: {
  19748. source: "./media/characters/richard-smeargle/front.svg",
  19749. extra: 2952 / 2820,
  19750. bottom: 0.028
  19751. }
  19752. },
  19753. },
  19754. [
  19755. {
  19756. name: "Normal",
  19757. height: math.unit(4, "feet"),
  19758. default: true
  19759. },
  19760. {
  19761. name: "Dynamax",
  19762. height: math.unit(20, "meters")
  19763. },
  19764. ]
  19765. ))
  19766. characterMakers.push(() => makeCharacter(
  19767. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19768. {
  19769. front: {
  19770. height: math.unit(6, "feet"),
  19771. weight: math.unit(110, "lb"),
  19772. name: "Front",
  19773. image: {
  19774. source: "./media/characters/klay/front.svg",
  19775. extra: 962 / 883,
  19776. bottom: 0.04
  19777. }
  19778. },
  19779. back: {
  19780. height: math.unit(6, "feet"),
  19781. weight: math.unit(110, "lb"),
  19782. name: "Back",
  19783. image: {
  19784. source: "./media/characters/klay/back.svg",
  19785. extra: 962 / 883
  19786. }
  19787. },
  19788. beans: {
  19789. height: math.unit(1.15, "feet"),
  19790. name: "Beans",
  19791. image: {
  19792. source: "./media/characters/klay/beans.svg"
  19793. }
  19794. },
  19795. },
  19796. [
  19797. {
  19798. name: "Micro",
  19799. height: math.unit(6, "inches")
  19800. },
  19801. {
  19802. name: "Mini",
  19803. height: math.unit(3, "feet")
  19804. },
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(6, "feet"),
  19808. default: true
  19809. },
  19810. {
  19811. name: "Big",
  19812. height: math.unit(25, "feet")
  19813. },
  19814. {
  19815. name: "Macro",
  19816. height: math.unit(100, "feet")
  19817. },
  19818. {
  19819. name: "Megamacro",
  19820. height: math.unit(400, "feet")
  19821. },
  19822. ]
  19823. ))
  19824. characterMakers.push(() => makeCharacter(
  19825. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19826. {
  19827. front: {
  19828. height: math.unit(6, "feet"),
  19829. weight: math.unit(160, "lb"),
  19830. name: "Front",
  19831. image: {
  19832. source: "./media/characters/marcus/front.svg",
  19833. extra: 734 / 676,
  19834. bottom: 0.03
  19835. }
  19836. },
  19837. },
  19838. [
  19839. {
  19840. name: "Little",
  19841. height: math.unit(6, "feet")
  19842. },
  19843. {
  19844. name: "Normal",
  19845. height: math.unit(110, "feet"),
  19846. default: true
  19847. },
  19848. {
  19849. name: "Macro",
  19850. height: math.unit(250, "feet")
  19851. },
  19852. {
  19853. name: "Megamacro",
  19854. height: math.unit(1000, "feet")
  19855. },
  19856. ]
  19857. ))
  19858. characterMakers.push(() => makeCharacter(
  19859. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19860. {
  19861. front: {
  19862. height: math.unit(7, "feet"),
  19863. weight: math.unit(275, "lb"),
  19864. name: "Front",
  19865. image: {
  19866. source: "./media/characters/claude-delroute/front.svg",
  19867. extra: 902/827,
  19868. bottom: 26/928
  19869. }
  19870. },
  19871. side: {
  19872. height: math.unit(7, "feet"),
  19873. weight: math.unit(275, "lb"),
  19874. name: "Side",
  19875. image: {
  19876. source: "./media/characters/claude-delroute/side.svg",
  19877. extra: 908/853,
  19878. bottom: 16/924
  19879. }
  19880. },
  19881. back: {
  19882. height: math.unit(7, "feet"),
  19883. weight: math.unit(275, "lb"),
  19884. name: "Back",
  19885. image: {
  19886. source: "./media/characters/claude-delroute/back.svg",
  19887. extra: 911/829,
  19888. bottom: 18/929
  19889. }
  19890. },
  19891. maw: {
  19892. height: math.unit(0.6407, "meters"),
  19893. name: "Maw",
  19894. image: {
  19895. source: "./media/characters/claude-delroute/maw.svg"
  19896. }
  19897. },
  19898. },
  19899. [
  19900. {
  19901. name: "Normal",
  19902. height: math.unit(7, "feet"),
  19903. default: true
  19904. },
  19905. {
  19906. name: "Lorge",
  19907. height: math.unit(20, "feet")
  19908. },
  19909. ]
  19910. ))
  19911. characterMakers.push(() => makeCharacter(
  19912. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19913. {
  19914. front: {
  19915. height: math.unit(8 + 4 / 12, "feet"),
  19916. weight: math.unit(600, "lb"),
  19917. name: "Front",
  19918. image: {
  19919. source: "./media/characters/dragonien/front.svg",
  19920. extra: 100 / 94,
  19921. bottom: 3.3 / 103.3445
  19922. }
  19923. },
  19924. back: {
  19925. height: math.unit(8 + 4 / 12, "feet"),
  19926. weight: math.unit(600, "lb"),
  19927. name: "Back",
  19928. image: {
  19929. source: "./media/characters/dragonien/back.svg",
  19930. extra: 776 / 746,
  19931. bottom: 6.4 / 782.0616
  19932. }
  19933. },
  19934. foot: {
  19935. height: math.unit(1.54, "feet"),
  19936. name: "Foot",
  19937. image: {
  19938. source: "./media/characters/dragonien/foot.svg",
  19939. }
  19940. },
  19941. },
  19942. [
  19943. {
  19944. name: "Normal",
  19945. height: math.unit(8 + 4 / 12, "feet"),
  19946. default: true
  19947. },
  19948. {
  19949. name: "Macro",
  19950. height: math.unit(200, "feet")
  19951. },
  19952. {
  19953. name: "Megamacro",
  19954. height: math.unit(1, "mile")
  19955. },
  19956. {
  19957. name: "Gigamacro",
  19958. height: math.unit(1000, "miles")
  19959. },
  19960. ]
  19961. ))
  19962. characterMakers.push(() => makeCharacter(
  19963. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19964. {
  19965. front: {
  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.svg",
  19971. extra: 767 / 726,
  19972. bottom: 11.7 / 779
  19973. }
  19974. },
  19975. back: {
  19976. height: math.unit(5 + 2 / 12, "feet"),
  19977. weight: math.unit(110, "lb"),
  19978. name: "Back",
  19979. image: {
  19980. source: "./media/characters/desta/back.svg",
  19981. extra: 777 / 728,
  19982. bottom: 6 / 784
  19983. }
  19984. },
  19985. frontAlt: {
  19986. height: math.unit(5 + 2 / 12, "feet"),
  19987. weight: math.unit(110, "lb"),
  19988. name: "Front",
  19989. image: {
  19990. source: "./media/characters/desta/front-alt.svg",
  19991. extra: 1482 / 1417
  19992. }
  19993. },
  19994. side: {
  19995. height: math.unit(5 + 2 / 12, "feet"),
  19996. weight: math.unit(110, "lb"),
  19997. name: "Side",
  19998. image: {
  19999. source: "./media/characters/desta/side.svg",
  20000. extra: 2579 / 2491,
  20001. bottom: 0.053
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Micro",
  20008. height: math.unit(6, "inches")
  20009. },
  20010. {
  20011. name: "Normal",
  20012. height: math.unit(5 + 2 / 12, "feet"),
  20013. default: true
  20014. },
  20015. {
  20016. name: "Macro",
  20017. height: math.unit(62, "feet")
  20018. },
  20019. {
  20020. name: "Megamacro",
  20021. height: math.unit(1800, "feet")
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20027. {
  20028. front: {
  20029. height: math.unit(10, "feet"),
  20030. weight: math.unit(700, "lb"),
  20031. name: "Front",
  20032. image: {
  20033. source: "./media/characters/storm-alystar/front.svg",
  20034. extra: 2112 / 1898,
  20035. bottom: 0.034
  20036. }
  20037. },
  20038. },
  20039. [
  20040. {
  20041. name: "Micro",
  20042. height: math.unit(3.5, "inches")
  20043. },
  20044. {
  20045. name: "Normal",
  20046. height: math.unit(10, "feet"),
  20047. default: true
  20048. },
  20049. {
  20050. name: "Macro",
  20051. height: math.unit(400, "feet")
  20052. },
  20053. {
  20054. name: "Deific",
  20055. height: math.unit(60, "miles")
  20056. },
  20057. ]
  20058. ))
  20059. characterMakers.push(() => makeCharacter(
  20060. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20061. {
  20062. front: {
  20063. height: math.unit(2.35, "meters"),
  20064. weight: math.unit(119, "kg"),
  20065. name: "Front",
  20066. image: {
  20067. source: "./media/characters/ilia/front.svg",
  20068. extra: 1285 / 1255,
  20069. bottom: 0.06
  20070. }
  20071. },
  20072. },
  20073. [
  20074. {
  20075. name: "Normal",
  20076. height: math.unit(2.35, "meters")
  20077. },
  20078. {
  20079. name: "Macro",
  20080. height: math.unit(140, "meters"),
  20081. default: true
  20082. },
  20083. {
  20084. name: "Megamacro",
  20085. height: math.unit(100, "miles")
  20086. },
  20087. ]
  20088. ))
  20089. characterMakers.push(() => makeCharacter(
  20090. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20091. {
  20092. front: {
  20093. height: math.unit(6 + 5 / 12, "feet"),
  20094. weight: math.unit(190, "lb"),
  20095. name: "Front",
  20096. image: {
  20097. source: "./media/characters/kingdead/front.svg",
  20098. extra: 1228 / 1177
  20099. }
  20100. },
  20101. },
  20102. [
  20103. {
  20104. name: "Micro",
  20105. height: math.unit(7, "inches")
  20106. },
  20107. {
  20108. name: "Normal",
  20109. height: math.unit(6 + 5 / 12, "feet")
  20110. },
  20111. {
  20112. name: "Macro",
  20113. height: math.unit(150, "feet"),
  20114. default: true
  20115. },
  20116. {
  20117. name: "Megamacro",
  20118. height: math.unit(200, "miles")
  20119. },
  20120. ]
  20121. ))
  20122. characterMakers.push(() => makeCharacter(
  20123. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20124. {
  20125. front: {
  20126. height: math.unit(8, "feet"),
  20127. weight: math.unit(600, "lb"),
  20128. name: "Front",
  20129. image: {
  20130. source: "./media/characters/kyrehx/front.svg",
  20131. extra: 1195 / 1095,
  20132. bottom: 0.034
  20133. }
  20134. },
  20135. },
  20136. [
  20137. {
  20138. name: "Micro",
  20139. height: math.unit(2, "inches")
  20140. },
  20141. {
  20142. name: "Normal",
  20143. height: math.unit(8, "feet"),
  20144. default: true
  20145. },
  20146. {
  20147. name: "Macro",
  20148. height: math.unit(255, "feet")
  20149. },
  20150. ]
  20151. ))
  20152. characterMakers.push(() => makeCharacter(
  20153. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20154. {
  20155. front: {
  20156. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20157. weight: math.unit(184, "lb"),
  20158. name: "Front",
  20159. image: {
  20160. source: "./media/characters/xang/front.svg",
  20161. extra: 845 / 755
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Normal",
  20168. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20169. default: true
  20170. },
  20171. {
  20172. name: "Macro",
  20173. height: math.unit(0.935 * 146, "feet")
  20174. },
  20175. {
  20176. name: "Megamacro",
  20177. height: math.unit(0.935 * 3, "miles")
  20178. },
  20179. ]
  20180. ))
  20181. characterMakers.push(() => makeCharacter(
  20182. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20183. {
  20184. frontDressed: {
  20185. height: math.unit(5 + 7 / 12, "feet"),
  20186. weight: math.unit(140, "lb"),
  20187. name: "Front (Dressed)",
  20188. image: {
  20189. source: "./media/characters/doc-weardno/front-dressed.svg",
  20190. extra: 263 / 234
  20191. }
  20192. },
  20193. backDressed: {
  20194. height: math.unit(5 + 7 / 12, "feet"),
  20195. weight: math.unit(140, "lb"),
  20196. name: "Back (Dressed)",
  20197. image: {
  20198. source: "./media/characters/doc-weardno/back-dressed.svg",
  20199. extra: 266 / 238
  20200. }
  20201. },
  20202. front: {
  20203. height: math.unit(5 + 7 / 12, "feet"),
  20204. weight: math.unit(140, "lb"),
  20205. name: "Front",
  20206. image: {
  20207. source: "./media/characters/doc-weardno/front.svg",
  20208. extra: 254 / 233
  20209. }
  20210. },
  20211. },
  20212. [
  20213. {
  20214. name: "Micro",
  20215. height: math.unit(3, "inches")
  20216. },
  20217. {
  20218. name: "Normal",
  20219. height: math.unit(5 + 7 / 12, "feet"),
  20220. default: true
  20221. },
  20222. {
  20223. name: "Macro",
  20224. height: math.unit(25, "feet")
  20225. },
  20226. {
  20227. name: "Megamacro",
  20228. height: math.unit(2, "miles")
  20229. },
  20230. ]
  20231. ))
  20232. characterMakers.push(() => makeCharacter(
  20233. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20234. {
  20235. front: {
  20236. height: math.unit(6 + 2 / 12, "feet"),
  20237. weight: math.unit(153, "lb"),
  20238. name: "Front",
  20239. image: {
  20240. source: "./media/characters/seth-whilst/front.svg",
  20241. bottom: 0.07
  20242. }
  20243. },
  20244. },
  20245. [
  20246. {
  20247. name: "Micro",
  20248. height: math.unit(5, "inches")
  20249. },
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(6 + 2 / 12, "feet"),
  20253. default: true
  20254. },
  20255. ]
  20256. ))
  20257. characterMakers.push(() => makeCharacter(
  20258. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20259. {
  20260. front: {
  20261. height: math.unit(3, "inches"),
  20262. weight: math.unit(8, "grams"),
  20263. name: "Front",
  20264. image: {
  20265. source: "./media/characters/pocket-jabari/front.svg",
  20266. extra: 1024 / 974,
  20267. bottom: 0.039
  20268. }
  20269. },
  20270. },
  20271. [
  20272. {
  20273. name: "Minimicro",
  20274. height: math.unit(8, "mm")
  20275. },
  20276. {
  20277. name: "Micro",
  20278. height: math.unit(3, "inches"),
  20279. default: true
  20280. },
  20281. {
  20282. name: "Normal",
  20283. height: math.unit(3, "feet")
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20289. {
  20290. frontDressed: {
  20291. height: math.unit(15, "feet"),
  20292. weight: math.unit(3280, "lb"),
  20293. name: "Front (Dressed)",
  20294. image: {
  20295. source: "./media/characters/sapphy/front-dressed.svg",
  20296. extra: 1951/1654,
  20297. bottom: 194/2145
  20298. },
  20299. form: "anthro",
  20300. default: true
  20301. },
  20302. backDressed: {
  20303. height: math.unit(15, "feet"),
  20304. weight: math.unit(3280, "lb"),
  20305. name: "Back (Dressed)",
  20306. image: {
  20307. source: "./media/characters/sapphy/back-dressed.svg",
  20308. extra: 2058/1918,
  20309. bottom: 125/2183
  20310. },
  20311. form: "anthro"
  20312. },
  20313. frontNude: {
  20314. height: math.unit(15, "feet"),
  20315. weight: math.unit(3280, "lb"),
  20316. name: "Front (Nude)",
  20317. image: {
  20318. source: "./media/characters/sapphy/front-nude.svg",
  20319. extra: 1951/1654,
  20320. bottom: 194/2145
  20321. },
  20322. form: "anthro"
  20323. },
  20324. backNude: {
  20325. height: math.unit(15, "feet"),
  20326. weight: math.unit(3280, "lb"),
  20327. name: "Back (Nude)",
  20328. image: {
  20329. source: "./media/characters/sapphy/back-nude.svg",
  20330. extra: 2058/1918,
  20331. bottom: 125/2183
  20332. },
  20333. form: "anthro"
  20334. },
  20335. full: {
  20336. height: math.unit(15, "feet"),
  20337. weight: math.unit(3280, "lb"),
  20338. name: "Full",
  20339. image: {
  20340. source: "./media/characters/sapphy/full.svg",
  20341. extra: 1396/1317,
  20342. bottom: 44/1440
  20343. },
  20344. form: "anthro"
  20345. },
  20346. dick: {
  20347. height: math.unit(3.8, "feet"),
  20348. name: "Dick",
  20349. image: {
  20350. source: "./media/characters/sapphy/dick.svg"
  20351. },
  20352. form: "anthro"
  20353. },
  20354. feral: {
  20355. height: math.unit(35, "feet"),
  20356. weight: math.unit(160, "tons"),
  20357. name: "Feral",
  20358. image: {
  20359. source: "./media/characters/sapphy/feral.svg",
  20360. extra: 1050/573,
  20361. bottom: 60/1110
  20362. },
  20363. form: "feral",
  20364. default: true
  20365. },
  20366. },
  20367. [
  20368. {
  20369. name: "Normal",
  20370. height: math.unit(15, "feet"),
  20371. form: "anthro"
  20372. },
  20373. {
  20374. name: "Casual Macro",
  20375. height: math.unit(120, "feet"),
  20376. form: "anthro"
  20377. },
  20378. {
  20379. name: "Macro",
  20380. height: math.unit(2150, "feet"),
  20381. default: true,
  20382. form: "anthro"
  20383. },
  20384. {
  20385. name: "Megamacro",
  20386. height: math.unit(8, "miles"),
  20387. form: "anthro"
  20388. },
  20389. {
  20390. name: "Galaxy Mom",
  20391. height: math.unit(6, "megalightyears"),
  20392. form: "anthro"
  20393. },
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(35, "feet"),
  20397. form: "feral",
  20398. default: true
  20399. },
  20400. {
  20401. name: "Macro",
  20402. height: math.unit(300, "feet"),
  20403. form: "feral"
  20404. },
  20405. {
  20406. name: "Galaxy Mom",
  20407. height: math.unit(10, "megalightyears"),
  20408. form: "feral"
  20409. },
  20410. ],
  20411. {
  20412. "anthro": {
  20413. name: "Anthro",
  20414. default: true
  20415. },
  20416. "feral": {
  20417. name: "Feral"
  20418. }
  20419. }
  20420. ))
  20421. characterMakers.push(() => makeCharacter(
  20422. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20423. {
  20424. hyenaFront: {
  20425. height: math.unit(6, "feet"),
  20426. weight: math.unit(190, "lb"),
  20427. name: "Front",
  20428. image: {
  20429. source: "./media/characters/kiro/hyena-front.svg",
  20430. extra: 927/839,
  20431. bottom: 91/1018
  20432. },
  20433. form: "hyena",
  20434. default: true
  20435. },
  20436. front: {
  20437. height: math.unit(6, "feet"),
  20438. weight: math.unit(170, "lb"),
  20439. name: "Front",
  20440. image: {
  20441. source: "./media/characters/kiro/front.svg",
  20442. extra: 1064 / 1012,
  20443. bottom: 0.052
  20444. },
  20445. form: "folf",
  20446. default: true
  20447. },
  20448. },
  20449. [
  20450. {
  20451. name: "Micro",
  20452. height: math.unit(6, "inches"),
  20453. form: "folf"
  20454. },
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(6, "feet"),
  20458. form: "folf",
  20459. default: true
  20460. },
  20461. {
  20462. name: "Macro",
  20463. height: math.unit(72, "feet"),
  20464. form: "folf"
  20465. },
  20466. {
  20467. name: "Micro",
  20468. height: math.unit(6, "inches"),
  20469. form: "hyena"
  20470. },
  20471. {
  20472. name: "Normal",
  20473. height: math.unit(6, "feet"),
  20474. form: "hyena",
  20475. default: true
  20476. },
  20477. {
  20478. name: "Macro",
  20479. height: math.unit(72, "feet"),
  20480. form: "hyena"
  20481. },
  20482. ],
  20483. {
  20484. "hyena": {
  20485. name: "Hyena",
  20486. default: true
  20487. },
  20488. "folf": {
  20489. name: "Folf",
  20490. },
  20491. }
  20492. ))
  20493. characterMakers.push(() => makeCharacter(
  20494. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20495. {
  20496. front: {
  20497. height: math.unit(5 + 9 / 12, "feet"),
  20498. weight: math.unit(175, "lb"),
  20499. name: "Front",
  20500. image: {
  20501. source: "./media/characters/irishfox/front.svg",
  20502. extra: 1912 / 1680,
  20503. bottom: 0.02
  20504. }
  20505. },
  20506. },
  20507. [
  20508. {
  20509. name: "Nano",
  20510. height: math.unit(1, "mm")
  20511. },
  20512. {
  20513. name: "Micro",
  20514. height: math.unit(2, "inches")
  20515. },
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(5 + 9 / 12, "feet"),
  20519. default: true
  20520. },
  20521. {
  20522. name: "Macro",
  20523. height: math.unit(45, "feet")
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(6 + 1 / 12, "feet"),
  20532. weight: math.unit(75, "lb"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/aronai-sieyes/front.svg",
  20536. extra: 1532/1450,
  20537. bottom: 42/1574
  20538. }
  20539. },
  20540. side: {
  20541. height: math.unit(6 + 1 / 12, "feet"),
  20542. weight: math.unit(75, "lb"),
  20543. name: "Side",
  20544. image: {
  20545. source: "./media/characters/aronai-sieyes/side.svg",
  20546. extra: 1422/1365,
  20547. bottom: 148/1570
  20548. }
  20549. },
  20550. back: {
  20551. height: math.unit(6 + 1 / 12, "feet"),
  20552. weight: math.unit(75, "lb"),
  20553. name: "Back",
  20554. image: {
  20555. source: "./media/characters/aronai-sieyes/back.svg",
  20556. extra: 1526/1464,
  20557. bottom: 51/1577
  20558. }
  20559. },
  20560. dressed: {
  20561. height: math.unit(6 + 1 / 12, "feet"),
  20562. weight: math.unit(75, "lb"),
  20563. name: "Dressed",
  20564. image: {
  20565. source: "./media/characters/aronai-sieyes/dressed.svg",
  20566. extra: 1559/1483,
  20567. bottom: 39/1598
  20568. }
  20569. },
  20570. slit: {
  20571. height: math.unit(1.3, "feet"),
  20572. name: "Slit",
  20573. image: {
  20574. source: "./media/characters/aronai-sieyes/slit.svg"
  20575. }
  20576. },
  20577. slitSpread: {
  20578. height: math.unit(0.9, "feet"),
  20579. name: "Slit (Spread)",
  20580. image: {
  20581. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20582. }
  20583. },
  20584. rump: {
  20585. height: math.unit(1.3, "feet"),
  20586. name: "Rump",
  20587. image: {
  20588. source: "./media/characters/aronai-sieyes/rump.svg"
  20589. }
  20590. },
  20591. maw: {
  20592. height: math.unit(1.25, "feet"),
  20593. name: "Maw",
  20594. image: {
  20595. source: "./media/characters/aronai-sieyes/maw.svg"
  20596. }
  20597. },
  20598. feral: {
  20599. height: math.unit(18, "feet"),
  20600. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20601. name: "Feral",
  20602. image: {
  20603. source: "./media/characters/aronai-sieyes/feral.svg",
  20604. extra: 1530 / 1240,
  20605. bottom: 0.035
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Micro",
  20612. height: math.unit(2, "inches")
  20613. },
  20614. {
  20615. name: "Normal",
  20616. height: math.unit(6 + 1 / 12, "feet"),
  20617. default: true
  20618. }
  20619. ]
  20620. ))
  20621. characterMakers.push(() => makeCharacter(
  20622. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20623. {
  20624. front: {
  20625. height: math.unit(12, "feet"),
  20626. weight: math.unit(410, "kg"),
  20627. name: "Front",
  20628. image: {
  20629. source: "./media/characters/xuna/front.svg",
  20630. extra: 2184 / 1980
  20631. }
  20632. },
  20633. side: {
  20634. height: math.unit(12, "feet"),
  20635. weight: math.unit(410, "kg"),
  20636. name: "Side",
  20637. image: {
  20638. source: "./media/characters/xuna/side.svg",
  20639. extra: 2184 / 1980
  20640. }
  20641. },
  20642. back: {
  20643. height: math.unit(12, "feet"),
  20644. weight: math.unit(410, "kg"),
  20645. name: "Back",
  20646. image: {
  20647. source: "./media/characters/xuna/back.svg",
  20648. extra: 2184 / 1980
  20649. }
  20650. },
  20651. },
  20652. [
  20653. {
  20654. name: "Nano glow",
  20655. height: math.unit(10, "nm")
  20656. },
  20657. {
  20658. name: "Micro floof",
  20659. height: math.unit(0.3, "m")
  20660. },
  20661. {
  20662. name: "Huggable softy boi",
  20663. height: math.unit(3.6576, "m"),
  20664. default: true
  20665. },
  20666. {
  20667. name: "Admirable floof",
  20668. height: math.unit(80, "meters")
  20669. },
  20670. {
  20671. name: "Gentle macro",
  20672. height: math.unit(300, "meters")
  20673. },
  20674. {
  20675. name: "Very careful floof",
  20676. height: math.unit(3200, "meters")
  20677. },
  20678. {
  20679. name: "The mega floof",
  20680. height: math.unit(36000, "meters")
  20681. },
  20682. {
  20683. name: "Giga-fur-Wicker",
  20684. height: math.unit(4800000, "meters")
  20685. },
  20686. {
  20687. name: "Licky world",
  20688. height: math.unit(20000000, "meters")
  20689. },
  20690. {
  20691. name: "Floofy cyan sun",
  20692. height: math.unit(1500000000, "meters")
  20693. },
  20694. {
  20695. name: "Milky Wicker",
  20696. height: math.unit(1000000000000000000000, "meters")
  20697. },
  20698. {
  20699. name: "The observing Wicker",
  20700. height: math.unit(999999999999999999999999999, "meters")
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20706. {
  20707. front: {
  20708. height: math.unit(5 + 9 / 12, "feet"),
  20709. weight: math.unit(150, "lb"),
  20710. name: "Front",
  20711. image: {
  20712. source: "./media/characters/arokha-sieyes/front.svg",
  20713. extra: 1425 / 1284,
  20714. bottom: 0.05
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(5 + 9 / 12, "feet")
  20722. },
  20723. {
  20724. name: "Macro",
  20725. height: math.unit(30, "meters"),
  20726. default: true
  20727. },
  20728. ]
  20729. ))
  20730. characterMakers.push(() => makeCharacter(
  20731. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20732. {
  20733. front: {
  20734. height: math.unit(6, "feet"),
  20735. weight: math.unit(180, "lb"),
  20736. name: "Front",
  20737. image: {
  20738. source: "./media/characters/arokh-sieyes/front.svg",
  20739. extra: 1830 / 1769,
  20740. bottom: 0.01
  20741. }
  20742. },
  20743. },
  20744. [
  20745. {
  20746. name: "Normal",
  20747. height: math.unit(6, "feet")
  20748. },
  20749. {
  20750. name: "Macro",
  20751. height: math.unit(30, "meters"),
  20752. default: true
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20758. {
  20759. side: {
  20760. height: math.unit(13 + 1 / 12, "feet"),
  20761. weight: math.unit(8.5, "tonnes"),
  20762. preyCapacity: math.unit(36, "people"),
  20763. name: "Side",
  20764. image: {
  20765. source: "./media/characters/goldeneye/side.svg",
  20766. extra: 1139/741,
  20767. bottom: 98/1237
  20768. }
  20769. },
  20770. front: {
  20771. height: math.unit(5.1, "feet"),
  20772. weight: math.unit(8.5, "tonnes"),
  20773. preyCapacity: math.unit(36, "people"),
  20774. name: "Front",
  20775. image: {
  20776. source: "./media/characters/goldeneye/front.svg",
  20777. extra: 635/365,
  20778. bottom: 598/1233
  20779. }
  20780. },
  20781. maw: {
  20782. height: math.unit(6.6, "feet"),
  20783. name: "Maw",
  20784. image: {
  20785. source: "./media/characters/goldeneye/maw.svg"
  20786. }
  20787. },
  20788. headFront: {
  20789. height: math.unit(8, "feet"),
  20790. name: "Head (Front)",
  20791. image: {
  20792. source: "./media/characters/goldeneye/head-front.svg"
  20793. }
  20794. },
  20795. headSide: {
  20796. height: math.unit(6, "feet"),
  20797. name: "Head (Side)",
  20798. image: {
  20799. source: "./media/characters/goldeneye/head-side.svg"
  20800. }
  20801. },
  20802. headBack: {
  20803. height: math.unit(8, "feet"),
  20804. name: "Head (Back)",
  20805. image: {
  20806. source: "./media/characters/goldeneye/head-back.svg"
  20807. }
  20808. },
  20809. paw: {
  20810. height: math.unit(3.4, "feet"),
  20811. name: "Paw",
  20812. image: {
  20813. source: "./media/characters/goldeneye/paw.svg"
  20814. }
  20815. },
  20816. toering: {
  20817. height: math.unit(0.45, "feet"),
  20818. name: "Toering",
  20819. image: {
  20820. source: "./media/characters/goldeneye/toering.svg"
  20821. }
  20822. },
  20823. eyes: {
  20824. height: math.unit(0.5, "feet"),
  20825. name: "Eyes",
  20826. image: {
  20827. source: "./media/characters/goldeneye/eyes.svg"
  20828. }
  20829. },
  20830. },
  20831. [
  20832. {
  20833. name: "Normal",
  20834. height: math.unit(13 + 1 / 12, "feet"),
  20835. default: true
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20841. {
  20842. front: {
  20843. height: math.unit(6 + 1 / 12, "feet"),
  20844. weight: math.unit(210, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/leonardo-lycheborne/front.svg",
  20848. extra: 776/723,
  20849. bottom: 34/810
  20850. }
  20851. },
  20852. side: {
  20853. height: math.unit(6 + 1 / 12, "feet"),
  20854. weight: math.unit(210, "lb"),
  20855. name: "Side",
  20856. image: {
  20857. source: "./media/characters/leonardo-lycheborne/side.svg",
  20858. extra: 780/728,
  20859. bottom: 12/792
  20860. }
  20861. },
  20862. back: {
  20863. height: math.unit(6 + 1 / 12, "feet"),
  20864. weight: math.unit(210, "lb"),
  20865. name: "Back",
  20866. image: {
  20867. source: "./media/characters/leonardo-lycheborne/back.svg",
  20868. extra: 775/721,
  20869. bottom: 17/792
  20870. }
  20871. },
  20872. hand: {
  20873. height: math.unit(1.08, "feet"),
  20874. name: "Hand",
  20875. image: {
  20876. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20877. }
  20878. },
  20879. foot: {
  20880. height: math.unit(1.32, "feet"),
  20881. name: "Foot",
  20882. image: {
  20883. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20884. }
  20885. },
  20886. maw: {
  20887. height: math.unit(1, "feet"),
  20888. name: "Maw",
  20889. image: {
  20890. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20891. }
  20892. },
  20893. were: {
  20894. height: math.unit(20, "feet"),
  20895. weight: math.unit(7800, "lb"),
  20896. name: "Were",
  20897. image: {
  20898. source: "./media/characters/leonardo-lycheborne/were.svg",
  20899. extra: 1224/1165,
  20900. bottom: 72/1296
  20901. }
  20902. },
  20903. feral: {
  20904. height: math.unit(7.5, "feet"),
  20905. weight: math.unit(600, "lb"),
  20906. name: "Feral",
  20907. image: {
  20908. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20909. extra: 797/702,
  20910. bottom: 139/936
  20911. }
  20912. },
  20913. taur: {
  20914. height: math.unit(11, "feet"),
  20915. weight: math.unit(3300, "lb"),
  20916. name: "Taur",
  20917. image: {
  20918. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20919. extra: 1271/1197,
  20920. bottom: 47/1318
  20921. }
  20922. },
  20923. barghest: {
  20924. height: math.unit(11, "feet"),
  20925. weight: math.unit(1300, "lb"),
  20926. name: "Barghest",
  20927. image: {
  20928. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20929. extra: 1291/1204,
  20930. bottom: 37/1328
  20931. }
  20932. },
  20933. dick: {
  20934. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20935. name: "Dick",
  20936. image: {
  20937. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20938. }
  20939. },
  20940. dickWere: {
  20941. height: math.unit((20) / 3.8, "feet"),
  20942. name: "Dick (Were)",
  20943. image: {
  20944. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Normal",
  20951. height: math.unit(6 + 1 / 12, "feet"),
  20952. default: true
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20958. {
  20959. front: {
  20960. height: math.unit(10, "feet"),
  20961. weight: math.unit(350, "lb"),
  20962. name: "Front",
  20963. image: {
  20964. source: "./media/characters/jet/front.svg",
  20965. extra: 2050 / 1980,
  20966. bottom: 0.013
  20967. }
  20968. },
  20969. back: {
  20970. height: math.unit(10, "feet"),
  20971. weight: math.unit(350, "lb"),
  20972. name: "Back",
  20973. image: {
  20974. source: "./media/characters/jet/back.svg",
  20975. extra: 2050 / 1980,
  20976. bottom: 0.013
  20977. }
  20978. },
  20979. },
  20980. [
  20981. {
  20982. name: "Micro",
  20983. height: math.unit(6, "inches")
  20984. },
  20985. {
  20986. name: "Normal",
  20987. height: math.unit(10, "feet"),
  20988. default: true
  20989. },
  20990. {
  20991. name: "Macro",
  20992. height: math.unit(100, "feet")
  20993. },
  20994. ]
  20995. ))
  20996. characterMakers.push(() => makeCharacter(
  20997. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20998. {
  20999. front: {
  21000. height: math.unit(15, "feet"),
  21001. weight: math.unit(2800, "lb"),
  21002. name: "Front",
  21003. image: {
  21004. source: "./media/characters/tanarath/front.svg",
  21005. extra: 2392 / 2220,
  21006. bottom: 0.03
  21007. }
  21008. },
  21009. back: {
  21010. height: math.unit(15, "feet"),
  21011. weight: math.unit(2800, "lb"),
  21012. name: "Back",
  21013. image: {
  21014. source: "./media/characters/tanarath/back.svg",
  21015. extra: 2392 / 2220,
  21016. bottom: 0.03
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Normal",
  21023. height: math.unit(15, "feet"),
  21024. default: true
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21030. {
  21031. front: {
  21032. height: math.unit(7 + 1 / 12, "feet"),
  21033. weight: math.unit(175, "lb"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/patty-cattybatty/front.svg",
  21037. extra: 908 / 874,
  21038. bottom: 0.025
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "Micro",
  21045. height: math.unit(1, "inch")
  21046. },
  21047. {
  21048. name: "Normal",
  21049. height: math.unit(7 + 1 / 12, "feet")
  21050. },
  21051. {
  21052. name: "Mini Macro",
  21053. height: math.unit(155, "feet")
  21054. },
  21055. {
  21056. name: "Macro",
  21057. height: math.unit(1077, "feet")
  21058. },
  21059. {
  21060. name: "Mega Macro",
  21061. height: math.unit(47650, "feet"),
  21062. default: true
  21063. },
  21064. {
  21065. name: "Giga Macro",
  21066. height: math.unit(440, "miles")
  21067. },
  21068. {
  21069. name: "Tera Macro",
  21070. height: math.unit(8700, "miles")
  21071. },
  21072. {
  21073. name: "Planetary Macro",
  21074. height: math.unit(32700, "miles")
  21075. },
  21076. {
  21077. name: "Solar Macro",
  21078. height: math.unit(550000, "miles")
  21079. },
  21080. {
  21081. name: "Celestial Macro",
  21082. height: math.unit(2.5, "AU")
  21083. },
  21084. ]
  21085. ))
  21086. characterMakers.push(() => makeCharacter(
  21087. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21088. {
  21089. front: {
  21090. height: math.unit(4 + 5 / 12, "feet"),
  21091. weight: math.unit(90, "lb"),
  21092. name: "Front",
  21093. image: {
  21094. source: "./media/characters/cappu/front.svg",
  21095. extra: 1247 / 1152,
  21096. bottom: 0.012
  21097. }
  21098. },
  21099. },
  21100. [
  21101. {
  21102. name: "Normal",
  21103. height: math.unit(4 + 5 / 12, "feet"),
  21104. default: true
  21105. },
  21106. ]
  21107. ))
  21108. characterMakers.push(() => makeCharacter(
  21109. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21110. {
  21111. frontDressed: {
  21112. height: math.unit(70, "cm"),
  21113. weight: math.unit(6, "kg"),
  21114. name: "Front (Dressed)",
  21115. image: {
  21116. source: "./media/characters/sebi/front-dressed.svg",
  21117. extra: 713.5 / 686.5,
  21118. bottom: 0.003
  21119. }
  21120. },
  21121. front: {
  21122. height: math.unit(70, "cm"),
  21123. weight: math.unit(5, "kg"),
  21124. name: "Front",
  21125. image: {
  21126. source: "./media/characters/sebi/front.svg",
  21127. extra: 713.5 / 686.5,
  21128. bottom: 0.003
  21129. }
  21130. }
  21131. },
  21132. [
  21133. {
  21134. name: "Normal",
  21135. height: math.unit(70, "cm"),
  21136. default: true
  21137. },
  21138. {
  21139. name: "Macro",
  21140. height: math.unit(8, "meters")
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(6, "feet"),
  21149. weight: math.unit(150, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/typhek/front.svg",
  21153. extra: 1948 / 1929,
  21154. bottom: 0.025
  21155. }
  21156. },
  21157. side: {
  21158. height: math.unit(6, "feet"),
  21159. weight: math.unit(150, "lb"),
  21160. name: "Side",
  21161. image: {
  21162. source: "./media/characters/typhek/side.svg",
  21163. extra: 2034 / 2010,
  21164. bottom: 0.003
  21165. }
  21166. },
  21167. back: {
  21168. height: math.unit(6, "feet"),
  21169. weight: math.unit(150, "lb"),
  21170. name: "Back",
  21171. image: {
  21172. source: "./media/characters/typhek/back.svg",
  21173. extra: 2005 / 1978,
  21174. bottom: 0.004
  21175. }
  21176. },
  21177. palm: {
  21178. height: math.unit(1.2, "feet"),
  21179. name: "Palm",
  21180. image: {
  21181. source: "./media/characters/typhek/palm.svg"
  21182. }
  21183. },
  21184. fist: {
  21185. height: math.unit(1.1, "feet"),
  21186. name: "Fist",
  21187. image: {
  21188. source: "./media/characters/typhek/fist.svg"
  21189. }
  21190. },
  21191. foot: {
  21192. height: math.unit(1.57, "feet"),
  21193. name: "Foot",
  21194. image: {
  21195. source: "./media/characters/typhek/foot.svg"
  21196. }
  21197. },
  21198. sole: {
  21199. height: math.unit(2.05, "feet"),
  21200. name: "Sole",
  21201. image: {
  21202. source: "./media/characters/typhek/sole.svg"
  21203. }
  21204. },
  21205. },
  21206. [
  21207. {
  21208. name: "Macro",
  21209. height: math.unit(40, "stories"),
  21210. default: true
  21211. },
  21212. {
  21213. name: "Megamacro",
  21214. height: math.unit(1, "mile")
  21215. },
  21216. {
  21217. name: "Gigamacro",
  21218. height: math.unit(4000, "solarradii")
  21219. },
  21220. {
  21221. name: "Universal",
  21222. height: math.unit(1.1, "universes")
  21223. }
  21224. ]
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21228. {
  21229. side: {
  21230. height: math.unit(5 + 7 / 12, "feet"),
  21231. weight: math.unit(150, "lb"),
  21232. name: "Side",
  21233. image: {
  21234. source: "./media/characters/kassy/side.svg",
  21235. extra: 1280 / 1225,
  21236. bottom: 0.002
  21237. }
  21238. },
  21239. front: {
  21240. height: math.unit(5 + 7 / 12, "feet"),
  21241. weight: math.unit(150, "lb"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/kassy/front.svg",
  21245. extra: 1280 / 1225,
  21246. bottom: 0.025
  21247. }
  21248. },
  21249. back: {
  21250. height: math.unit(5 + 7 / 12, "feet"),
  21251. weight: math.unit(150, "lb"),
  21252. name: "Back",
  21253. image: {
  21254. source: "./media/characters/kassy/back.svg",
  21255. extra: 1280 / 1225,
  21256. bottom: 0.002
  21257. }
  21258. },
  21259. foot: {
  21260. height: math.unit(1.266, "feet"),
  21261. name: "Foot",
  21262. image: {
  21263. source: "./media/characters/kassy/foot.svg"
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(5 + 7 / 12, "feet")
  21271. },
  21272. {
  21273. name: "Macro",
  21274. height: math.unit(137, "feet"),
  21275. default: true
  21276. },
  21277. {
  21278. name: "Megamacro",
  21279. height: math.unit(1, "mile")
  21280. },
  21281. ]
  21282. ))
  21283. characterMakers.push(() => makeCharacter(
  21284. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21285. {
  21286. front: {
  21287. height: math.unit(6 + 1 / 12, "feet"),
  21288. weight: math.unit(200, "lb"),
  21289. name: "Front",
  21290. image: {
  21291. source: "./media/characters/neil/front.svg",
  21292. extra: 1326 / 1250,
  21293. bottom: 0.023
  21294. }
  21295. },
  21296. },
  21297. [
  21298. {
  21299. name: "Normal",
  21300. height: math.unit(6 + 1 / 12, "feet"),
  21301. default: true
  21302. },
  21303. {
  21304. name: "Macro",
  21305. height: math.unit(200, "feet")
  21306. },
  21307. ]
  21308. ))
  21309. characterMakers.push(() => makeCharacter(
  21310. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21311. {
  21312. front: {
  21313. height: math.unit(5 + 9 / 12, "feet"),
  21314. weight: math.unit(190, "lb"),
  21315. name: "Front",
  21316. image: {
  21317. source: "./media/characters/atticus/front.svg",
  21318. extra: 2934 / 2785,
  21319. bottom: 0.025
  21320. }
  21321. },
  21322. },
  21323. [
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(5 + 9 / 12, "feet"),
  21327. default: true
  21328. },
  21329. {
  21330. name: "Macro",
  21331. height: math.unit(180, "feet")
  21332. },
  21333. ]
  21334. ))
  21335. characterMakers.push(() => makeCharacter(
  21336. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21337. {
  21338. side: {
  21339. height: math.unit(9, "feet"),
  21340. weight: math.unit(650, "lb"),
  21341. name: "Side",
  21342. image: {
  21343. source: "./media/characters/milo/side.svg",
  21344. extra: 2644 / 2310,
  21345. bottom: 0.032
  21346. }
  21347. },
  21348. },
  21349. [
  21350. {
  21351. name: "Normal",
  21352. height: math.unit(9, "feet"),
  21353. default: true
  21354. },
  21355. {
  21356. name: "Macro",
  21357. height: math.unit(300, "feet")
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21363. {
  21364. side: {
  21365. height: math.unit(8, "meters"),
  21366. weight: math.unit(90000, "kg"),
  21367. name: "Side",
  21368. image: {
  21369. source: "./media/characters/ijzer/side.svg",
  21370. extra: 2756 / 1600,
  21371. bottom: 0.01
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Small",
  21378. height: math.unit(3, "meters")
  21379. },
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(8, "meters"),
  21383. default: true
  21384. },
  21385. {
  21386. name: "Normal+",
  21387. height: math.unit(10, "meters")
  21388. },
  21389. {
  21390. name: "Bigger",
  21391. height: math.unit(24, "meters")
  21392. },
  21393. {
  21394. name: "Huge",
  21395. height: math.unit(80, "meters")
  21396. },
  21397. ]
  21398. ))
  21399. characterMakers.push(() => makeCharacter(
  21400. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21401. {
  21402. front: {
  21403. height: math.unit(6 + 2 / 12, "feet"),
  21404. weight: math.unit(153, "lb"),
  21405. name: "Front",
  21406. image: {
  21407. source: "./media/characters/luca-cervicum/front.svg",
  21408. extra: 370 / 327,
  21409. bottom: 0.015
  21410. }
  21411. },
  21412. back: {
  21413. height: math.unit(6 + 2 / 12, "feet"),
  21414. weight: math.unit(153, "lb"),
  21415. name: "Back",
  21416. image: {
  21417. source: "./media/characters/luca-cervicum/back.svg",
  21418. extra: 367 / 333,
  21419. bottom: 0.005
  21420. }
  21421. },
  21422. frontGear: {
  21423. height: math.unit(6 + 2 / 12, "feet"),
  21424. weight: math.unit(173, "lb"),
  21425. name: "Front (Gear)",
  21426. image: {
  21427. source: "./media/characters/luca-cervicum/front-gear.svg",
  21428. extra: 377 / 333,
  21429. bottom: 0.006
  21430. }
  21431. },
  21432. },
  21433. [
  21434. {
  21435. name: "Normal",
  21436. height: math.unit(6 + 2 / 12, "feet"),
  21437. default: true
  21438. },
  21439. ]
  21440. ))
  21441. characterMakers.push(() => makeCharacter(
  21442. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21443. {
  21444. front: {
  21445. height: math.unit(6 + 1 / 12, "feet"),
  21446. weight: math.unit(304, "lb"),
  21447. name: "Front",
  21448. image: {
  21449. source: "./media/characters/oliver/front.svg",
  21450. extra: 157 / 143,
  21451. bottom: 0.08
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(6 + 1 / 12, "feet"),
  21459. default: true
  21460. },
  21461. ]
  21462. ))
  21463. characterMakers.push(() => makeCharacter(
  21464. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21465. {
  21466. front: {
  21467. height: math.unit(5 + 7 / 12, "feet"),
  21468. weight: math.unit(140, "lb"),
  21469. name: "Front",
  21470. image: {
  21471. source: "./media/characters/shane/front.svg",
  21472. extra: 304 / 289,
  21473. bottom: 0.005
  21474. }
  21475. },
  21476. },
  21477. [
  21478. {
  21479. name: "Normal",
  21480. height: math.unit(5 + 7 / 12, "feet"),
  21481. default: true
  21482. },
  21483. ]
  21484. ))
  21485. characterMakers.push(() => makeCharacter(
  21486. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21487. {
  21488. front: {
  21489. height: math.unit(5 + 9 / 12, "feet"),
  21490. weight: math.unit(178, "lb"),
  21491. name: "Front",
  21492. image: {
  21493. source: "./media/characters/shin/front.svg",
  21494. extra: 159 / 151,
  21495. bottom: 0.015
  21496. }
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(5 + 9 / 12, "feet"),
  21503. default: true
  21504. },
  21505. ]
  21506. ))
  21507. characterMakers.push(() => makeCharacter(
  21508. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21509. {
  21510. front: {
  21511. height: math.unit(5 + 10 / 12, "feet"),
  21512. weight: math.unit(168, "lb"),
  21513. name: "Front",
  21514. image: {
  21515. source: "./media/characters/xerxes/front.svg",
  21516. extra: 282 / 260,
  21517. bottom: 0.045
  21518. }
  21519. },
  21520. },
  21521. [
  21522. {
  21523. name: "Normal",
  21524. height: math.unit(5 + 10 / 12, "feet"),
  21525. default: true
  21526. },
  21527. ]
  21528. ))
  21529. characterMakers.push(() => makeCharacter(
  21530. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21531. {
  21532. front: {
  21533. height: math.unit(6 + 7 / 12, "feet"),
  21534. weight: math.unit(208, "lb"),
  21535. name: "Front",
  21536. image: {
  21537. source: "./media/characters/chaska/front.svg",
  21538. extra: 332 / 319,
  21539. bottom: 0.015
  21540. }
  21541. },
  21542. },
  21543. [
  21544. {
  21545. name: "Normal",
  21546. height: math.unit(6 + 7 / 12, "feet"),
  21547. default: true
  21548. },
  21549. ]
  21550. ))
  21551. characterMakers.push(() => makeCharacter(
  21552. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21553. {
  21554. front: {
  21555. height: math.unit(5 + 8 / 12, "feet"),
  21556. weight: math.unit(208, "lb"),
  21557. name: "Front",
  21558. image: {
  21559. source: "./media/characters/enuk/front.svg",
  21560. extra: 437 / 406,
  21561. bottom: 0.02
  21562. }
  21563. },
  21564. },
  21565. [
  21566. {
  21567. name: "Normal",
  21568. height: math.unit(5 + 8 / 12, "feet"),
  21569. default: true
  21570. },
  21571. ]
  21572. ))
  21573. characterMakers.push(() => makeCharacter(
  21574. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21575. {
  21576. front: {
  21577. height: math.unit(5 + 10 / 12, "feet"),
  21578. weight: math.unit(252, "lb"),
  21579. name: "Front",
  21580. image: {
  21581. source: "./media/characters/bruun/front.svg",
  21582. extra: 197 / 187,
  21583. bottom: 0.012
  21584. }
  21585. },
  21586. },
  21587. [
  21588. {
  21589. name: "Normal",
  21590. height: math.unit(5 + 10 / 12, "feet"),
  21591. default: true
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21597. {
  21598. front: {
  21599. height: math.unit(6 + 10 / 12, "feet"),
  21600. weight: math.unit(255, "lb"),
  21601. name: "Front",
  21602. image: {
  21603. source: "./media/characters/alexeev/front.svg",
  21604. extra: 213 / 200,
  21605. bottom: 0.05
  21606. }
  21607. },
  21608. },
  21609. [
  21610. {
  21611. name: "Normal",
  21612. height: math.unit(6 + 10 / 12, "feet"),
  21613. default: true
  21614. },
  21615. ]
  21616. ))
  21617. characterMakers.push(() => makeCharacter(
  21618. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21619. {
  21620. front: {
  21621. height: math.unit(2 + 8 / 12, "feet"),
  21622. weight: math.unit(22, "lb"),
  21623. name: "Front",
  21624. image: {
  21625. source: "./media/characters/evelyn/front.svg",
  21626. extra: 208 / 180
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(2 + 8 / 12, "feet"),
  21634. default: true
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21640. {
  21641. front: {
  21642. height: math.unit(5 + 9 / 12, "feet"),
  21643. weight: math.unit(139, "lb"),
  21644. name: "Front",
  21645. image: {
  21646. source: "./media/characters/inca/front.svg",
  21647. extra: 294 / 291,
  21648. bottom: 0.03
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(5 + 9 / 12, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21662. {
  21663. front: {
  21664. height: math.unit(6 + 3 / 12, "feet"),
  21665. weight: math.unit(185, "lb"),
  21666. name: "Front",
  21667. image: {
  21668. source: "./media/characters/mera/front.svg",
  21669. extra: 291 / 277,
  21670. bottom: 0.03
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(6 + 3 / 12, "feet"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21684. {
  21685. front: {
  21686. height: math.unit(6 + 7 / 12, "feet"),
  21687. weight: math.unit(160, "lb"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/ceres/front.svg",
  21691. extra: 1023 / 950,
  21692. bottom: 0.027
  21693. }
  21694. },
  21695. back: {
  21696. height: math.unit(6 + 7 / 12, "feet"),
  21697. weight: math.unit(160, "lb"),
  21698. name: "Back",
  21699. image: {
  21700. source: "./media/characters/ceres/back.svg",
  21701. extra: 1023 / 950
  21702. }
  21703. },
  21704. },
  21705. [
  21706. {
  21707. name: "Normal",
  21708. height: math.unit(6 + 7 / 12, "feet"),
  21709. default: true
  21710. },
  21711. ]
  21712. ))
  21713. characterMakers.push(() => makeCharacter(
  21714. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21715. {
  21716. front: {
  21717. height: math.unit(5 + 10 / 12, "feet"),
  21718. weight: math.unit(150, "lb"),
  21719. name: "Front",
  21720. image: {
  21721. source: "./media/characters/kris/front.svg",
  21722. extra: 885 / 803,
  21723. bottom: 0.03
  21724. }
  21725. },
  21726. },
  21727. [
  21728. {
  21729. name: "Normal",
  21730. height: math.unit(5 + 10 / 12, "feet"),
  21731. default: true
  21732. },
  21733. ]
  21734. ))
  21735. characterMakers.push(() => makeCharacter(
  21736. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21737. {
  21738. front: {
  21739. height: math.unit(7, "feet"),
  21740. weight: math.unit(120, "kg"),
  21741. name: "Front",
  21742. image: {
  21743. source: "./media/characters/taluthus/front.svg",
  21744. extra: 903 / 833,
  21745. bottom: 0.015
  21746. }
  21747. },
  21748. },
  21749. [
  21750. {
  21751. name: "Normal",
  21752. height: math.unit(7, "feet"),
  21753. default: true
  21754. },
  21755. {
  21756. name: "Macro",
  21757. height: math.unit(300, "feet")
  21758. },
  21759. ]
  21760. ))
  21761. characterMakers.push(() => makeCharacter(
  21762. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21763. {
  21764. front: {
  21765. height: math.unit(5 + 9 / 12, "feet"),
  21766. weight: math.unit(145, "lb"),
  21767. name: "Front",
  21768. image: {
  21769. source: "./media/characters/dawn/front.svg",
  21770. extra: 2094 / 2016,
  21771. bottom: 0.025
  21772. }
  21773. },
  21774. back: {
  21775. height: math.unit(5 + 9 / 12, "feet"),
  21776. weight: math.unit(160, "lb"),
  21777. name: "Back",
  21778. image: {
  21779. source: "./media/characters/dawn/back.svg",
  21780. extra: 2112 / 2080,
  21781. bottom: 0.005
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(6 + 7 / 12, "feet"),
  21789. default: true
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21795. {
  21796. anthro: {
  21797. height: math.unit(8 + 3 / 12, "feet"),
  21798. weight: math.unit(450, "lb"),
  21799. name: "Anthro",
  21800. image: {
  21801. source: "./media/characters/arador/anthro.svg",
  21802. extra: 1835 / 1718,
  21803. bottom: 0.025
  21804. }
  21805. },
  21806. feral: {
  21807. height: math.unit(4, "feet"),
  21808. weight: math.unit(200, "lb"),
  21809. name: "Feral",
  21810. image: {
  21811. source: "./media/characters/arador/feral.svg",
  21812. extra: 1683 / 1514,
  21813. bottom: 0.07
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Normal",
  21820. height: math.unit(8 + 3 / 12, "feet")
  21821. },
  21822. {
  21823. name: "Macro",
  21824. height: math.unit(82.5, "feet"),
  21825. default: true
  21826. },
  21827. ]
  21828. ))
  21829. characterMakers.push(() => makeCharacter(
  21830. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21831. {
  21832. front: {
  21833. height: math.unit(5 + 10 / 12, "feet"),
  21834. weight: math.unit(125, "lb"),
  21835. name: "Front",
  21836. image: {
  21837. source: "./media/characters/dharsi/front.svg",
  21838. extra: 716 / 630,
  21839. bottom: 0.035
  21840. }
  21841. },
  21842. },
  21843. [
  21844. {
  21845. name: "Nano",
  21846. height: math.unit(100, "nm")
  21847. },
  21848. {
  21849. name: "Micro",
  21850. height: math.unit(2, "inches")
  21851. },
  21852. {
  21853. name: "Normal",
  21854. height: math.unit(5 + 10 / 12, "feet"),
  21855. default: true
  21856. },
  21857. {
  21858. name: "Macro",
  21859. height: math.unit(1000, "feet")
  21860. },
  21861. {
  21862. name: "Megamacro",
  21863. height: math.unit(10, "miles")
  21864. },
  21865. {
  21866. name: "Gigamacro",
  21867. height: math.unit(3000, "miles")
  21868. },
  21869. {
  21870. name: "Teramacro",
  21871. height: math.unit(500000, "miles")
  21872. },
  21873. {
  21874. name: "Teramacro+",
  21875. height: math.unit(30, "galaxies")
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(6, "feet"),
  21884. weight: math.unit(150, "lb"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/deathy/front.svg",
  21888. extra: 1552 / 1463,
  21889. bottom: 0.025
  21890. }
  21891. },
  21892. side: {
  21893. height: math.unit(6, "feet"),
  21894. weight: math.unit(150, "lb"),
  21895. name: "Side",
  21896. image: {
  21897. source: "./media/characters/deathy/side.svg",
  21898. extra: 1604 / 1455,
  21899. bottom: 0.025
  21900. }
  21901. },
  21902. back: {
  21903. height: math.unit(6, "feet"),
  21904. weight: math.unit(150, "lb"),
  21905. name: "Back",
  21906. image: {
  21907. source: "./media/characters/deathy/back.svg",
  21908. extra: 1580 / 1463,
  21909. bottom: 0.005
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Micro",
  21916. height: math.unit(5, "millimeters")
  21917. },
  21918. {
  21919. name: "Normal",
  21920. height: math.unit(6 + 5 / 12, "feet"),
  21921. default: true
  21922. },
  21923. ]
  21924. ))
  21925. characterMakers.push(() => makeCharacter(
  21926. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21927. {
  21928. front: {
  21929. height: math.unit(16, "feet"),
  21930. weight: math.unit(4000, "lb"),
  21931. name: "Front",
  21932. image: {
  21933. source: "./media/characters/juniper/front.svg",
  21934. bottom: 0.04
  21935. }
  21936. },
  21937. },
  21938. [
  21939. {
  21940. name: "Normal",
  21941. height: math.unit(16, "feet"),
  21942. default: true
  21943. },
  21944. ]
  21945. ))
  21946. characterMakers.push(() => makeCharacter(
  21947. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21948. {
  21949. front: {
  21950. height: math.unit(6, "feet"),
  21951. weight: math.unit(150, "lb"),
  21952. name: "Front",
  21953. image: {
  21954. source: "./media/characters/hipster/front.svg",
  21955. extra: 1312 / 1209,
  21956. bottom: 0.025
  21957. }
  21958. },
  21959. back: {
  21960. height: math.unit(6, "feet"),
  21961. weight: math.unit(150, "lb"),
  21962. name: "Back",
  21963. image: {
  21964. source: "./media/characters/hipster/back.svg",
  21965. extra: 1281 / 1196,
  21966. bottom: 0.01
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Micro",
  21973. height: math.unit(1, "mm")
  21974. },
  21975. {
  21976. name: "Normal",
  21977. height: math.unit(4, "inches"),
  21978. default: true
  21979. },
  21980. {
  21981. name: "Macro",
  21982. height: math.unit(500, "feet")
  21983. },
  21984. {
  21985. name: "Megamacro",
  21986. height: math.unit(1000, "miles")
  21987. },
  21988. ]
  21989. ))
  21990. characterMakers.push(() => makeCharacter(
  21991. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21992. {
  21993. front: {
  21994. height: math.unit(6, "feet"),
  21995. weight: math.unit(150, "lb"),
  21996. name: "Front",
  21997. image: {
  21998. source: "./media/characters/tendirmuldr/front.svg",
  21999. extra: 1878 / 1772,
  22000. bottom: 0.015
  22001. }
  22002. },
  22003. },
  22004. [
  22005. {
  22006. name: "Megamacro",
  22007. height: math.unit(1500, "miles"),
  22008. default: true
  22009. },
  22010. ]
  22011. ))
  22012. characterMakers.push(() => makeCharacter(
  22013. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22014. {
  22015. front: {
  22016. height: math.unit(14, "feet"),
  22017. weight: math.unit(12000, "lb"),
  22018. name: "Front",
  22019. image: {
  22020. source: "./media/characters/mort/front.svg",
  22021. extra: 365 / 318,
  22022. bottom: 0.01
  22023. }
  22024. },
  22025. side: {
  22026. height: math.unit(14, "feet"),
  22027. weight: math.unit(12000, "lb"),
  22028. name: "Side",
  22029. image: {
  22030. source: "./media/characters/mort/side.svg",
  22031. extra: 365 / 318,
  22032. bottom: 0.052
  22033. },
  22034. default: true
  22035. },
  22036. back: {
  22037. height: math.unit(14, "feet"),
  22038. weight: math.unit(12000, "lb"),
  22039. name: "Back",
  22040. image: {
  22041. source: "./media/characters/mort/back.svg",
  22042. extra: 371 / 332,
  22043. bottom: 0.18
  22044. }
  22045. },
  22046. },
  22047. [
  22048. {
  22049. name: "Normal",
  22050. height: math.unit(14, "feet"),
  22051. default: true
  22052. },
  22053. ]
  22054. ))
  22055. characterMakers.push(() => makeCharacter(
  22056. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22057. {
  22058. front: {
  22059. height: math.unit(8, "feet"),
  22060. weight: math.unit(1, "ton"),
  22061. name: "Front",
  22062. image: {
  22063. source: "./media/characters/lycoa/front.svg",
  22064. extra: 1836/1728,
  22065. bottom: 81/1917
  22066. }
  22067. },
  22068. back: {
  22069. height: math.unit(8, "feet"),
  22070. weight: math.unit(1, "ton"),
  22071. name: "Back",
  22072. image: {
  22073. source: "./media/characters/lycoa/back.svg",
  22074. extra: 1785/1720,
  22075. bottom: 91/1876
  22076. }
  22077. },
  22078. head: {
  22079. height: math.unit(1.6243, "feet"),
  22080. name: "Head",
  22081. image: {
  22082. source: "./media/characters/lycoa/head.svg",
  22083. extra: 1011/782,
  22084. bottom: 0/1011
  22085. }
  22086. },
  22087. tailmaw: {
  22088. height: math.unit(1.9, "feet"),
  22089. name: "Tailmaw",
  22090. image: {
  22091. source: "./media/characters/lycoa/tailmaw.svg"
  22092. }
  22093. },
  22094. tentacles: {
  22095. height: math.unit(2.1, "feet"),
  22096. name: "Tentacles",
  22097. image: {
  22098. source: "./media/characters/lycoa/tentacles.svg"
  22099. }
  22100. },
  22101. dick: {
  22102. height: math.unit(1.73, "feet"),
  22103. name: "Dick",
  22104. image: {
  22105. source: "./media/characters/lycoa/dick.svg"
  22106. }
  22107. },
  22108. },
  22109. [
  22110. {
  22111. name: "Normal",
  22112. height: math.unit(8, "feet"),
  22113. default: true
  22114. },
  22115. {
  22116. name: "Macro",
  22117. height: math.unit(30, "feet")
  22118. },
  22119. ]
  22120. ))
  22121. characterMakers.push(() => makeCharacter(
  22122. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22123. {
  22124. front: {
  22125. height: math.unit(4 + 2 / 12, "feet"),
  22126. weight: math.unit(70, "lb"),
  22127. name: "Front",
  22128. image: {
  22129. source: "./media/characters/naldara/front.svg",
  22130. extra: 1664/1387,
  22131. bottom: 81/1745
  22132. },
  22133. form: "anthro",
  22134. default: true
  22135. },
  22136. naga: {
  22137. height: math.unit(20, "feet"),
  22138. weight: math.unit(15000, "kg"),
  22139. name: "Front",
  22140. image: {
  22141. source: "./media/characters/naldara/naga.svg",
  22142. extra: 1590/1396,
  22143. bottom: 285/1875
  22144. },
  22145. form: "naga",
  22146. default: true
  22147. },
  22148. },
  22149. [
  22150. {
  22151. name: "Normal",
  22152. height: math.unit(4 + 2 / 12, "feet"),
  22153. form: "anthro",
  22154. default: true
  22155. },
  22156. {
  22157. name: "Normal",
  22158. height: math.unit(20, "feet"),
  22159. form: "naga",
  22160. default: true
  22161. },
  22162. ],
  22163. {
  22164. "anthro": {
  22165. name: "Anthro",
  22166. default: true
  22167. },
  22168. "naga": {
  22169. name: "Naga"
  22170. }
  22171. }
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22175. {
  22176. front: {
  22177. height: math.unit(13 + 7 / 12, "feet"),
  22178. weight: math.unit(1500, "lb"),
  22179. name: "Front",
  22180. image: {
  22181. source: "./media/characters/briar/front.svg",
  22182. extra: 1223/1157,
  22183. bottom: 123/1346
  22184. }
  22185. },
  22186. },
  22187. [
  22188. {
  22189. name: "Normal",
  22190. height: math.unit(13 + 7 / 12, "feet"),
  22191. default: true
  22192. },
  22193. ]
  22194. ))
  22195. characterMakers.push(() => makeCharacter(
  22196. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22197. {
  22198. side: {
  22199. height: math.unit(16, "feet"),
  22200. weight: math.unit(500, "lb"),
  22201. name: "Side",
  22202. image: {
  22203. source: "./media/characters/vanguard/side.svg",
  22204. extra: 1022/914,
  22205. bottom: 30/1052
  22206. }
  22207. },
  22208. sideAlt: {
  22209. height: math.unit(10, "feet"),
  22210. weight: math.unit(500, "lb"),
  22211. name: "Side (Alt)",
  22212. image: {
  22213. source: "./media/characters/vanguard/side-alt.svg",
  22214. extra: 502 / 425,
  22215. bottom: 0.087
  22216. }
  22217. },
  22218. },
  22219. [
  22220. {
  22221. name: "Normal",
  22222. height: math.unit(17.71, "feet"),
  22223. default: true
  22224. },
  22225. ]
  22226. ))
  22227. characterMakers.push(() => makeCharacter(
  22228. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22229. {
  22230. front: {
  22231. height: math.unit(7.5, "feet"),
  22232. weight: math.unit(2, "lb"),
  22233. name: "Front",
  22234. image: {
  22235. source: "./media/characters/artemis/work-safe-front.svg",
  22236. extra: 1192 / 1075,
  22237. bottom: 0.07
  22238. },
  22239. form: "work-safe",
  22240. default: true
  22241. },
  22242. frontNsfw: {
  22243. height: math.unit(7.5, "feet"),
  22244. weight: math.unit(2, "lb"),
  22245. name: "Front",
  22246. image: {
  22247. source: "./media/characters/artemis/calibrating-front.svg",
  22248. extra: 1192 / 1075,
  22249. bottom: 0.07
  22250. },
  22251. form: "calibrating",
  22252. default: true
  22253. },
  22254. frontNsfwer: {
  22255. height: math.unit(7.5, "feet"),
  22256. weight: math.unit(2, "lb"),
  22257. name: "Front",
  22258. image: {
  22259. source: "./media/characters/artemis/oversize-load-front.svg",
  22260. extra: 1192 / 1075,
  22261. bottom: 0.07
  22262. },
  22263. form: "oversize-load",
  22264. default: true
  22265. },
  22266. side: {
  22267. height: math.unit(7.5, "feet"),
  22268. weight: math.unit(2, "lb"),
  22269. name: "Side",
  22270. image: {
  22271. source: "./media/characters/artemis/work-safe-side.svg",
  22272. extra: 1192 / 1075,
  22273. bottom: 0.07
  22274. },
  22275. form: "work-safe"
  22276. },
  22277. sideNsfw: {
  22278. height: math.unit(7.5, "feet"),
  22279. weight: math.unit(2, "lb"),
  22280. name: "Side",
  22281. image: {
  22282. source: "./media/characters/artemis/calibrating-side.svg",
  22283. extra: 1192 / 1075,
  22284. bottom: 0.07
  22285. },
  22286. form: "calibrating"
  22287. },
  22288. sideNsfwer: {
  22289. height: math.unit(7.5, "feet"),
  22290. weight: math.unit(2, "lb"),
  22291. name: "Side",
  22292. image: {
  22293. source: "./media/characters/artemis/oversize-load-side.svg",
  22294. extra: 1192 / 1075,
  22295. bottom: 0.07
  22296. },
  22297. form: "oversize-load"
  22298. },
  22299. maw: {
  22300. height: math.unit(1.1, "feet"),
  22301. name: "Maw",
  22302. image: {
  22303. source: "./media/characters/artemis/maw.svg"
  22304. },
  22305. form: "work-safe"
  22306. },
  22307. stomach: {
  22308. height: math.unit(0.95, "feet"),
  22309. name: "Stomach",
  22310. image: {
  22311. source: "./media/characters/artemis/stomach.svg"
  22312. },
  22313. form: "work-safe"
  22314. },
  22315. dickCanine: {
  22316. height: math.unit(1, "feet"),
  22317. name: "Dick (Canine)",
  22318. image: {
  22319. source: "./media/characters/artemis/dick-canine.svg"
  22320. },
  22321. form: "calibrating"
  22322. },
  22323. dickEquine: {
  22324. height: math.unit(0.85, "feet"),
  22325. name: "Dick (Equine)",
  22326. image: {
  22327. source: "./media/characters/artemis/dick-equine.svg"
  22328. },
  22329. form: "calibrating"
  22330. },
  22331. dickExotic: {
  22332. height: math.unit(0.85, "feet"),
  22333. name: "Dick (Exotic)",
  22334. image: {
  22335. source: "./media/characters/artemis/dick-exotic.svg"
  22336. },
  22337. form: "calibrating"
  22338. },
  22339. dickCanineBigger: {
  22340. height: math.unit(1 * 1.33, "feet"),
  22341. name: "Dick (Canine)",
  22342. image: {
  22343. source: "./media/characters/artemis/dick-canine.svg"
  22344. },
  22345. form: "oversize-load"
  22346. },
  22347. dickEquineBigger: {
  22348. height: math.unit(0.85 * 1.33, "feet"),
  22349. name: "Dick (Equine)",
  22350. image: {
  22351. source: "./media/characters/artemis/dick-equine.svg"
  22352. },
  22353. form: "oversize-load"
  22354. },
  22355. dickExoticBigger: {
  22356. height: math.unit(0.85 * 1.33, "feet"),
  22357. name: "Dick (Exotic)",
  22358. image: {
  22359. source: "./media/characters/artemis/dick-exotic.svg"
  22360. },
  22361. form: "oversize-load"
  22362. },
  22363. },
  22364. [
  22365. {
  22366. name: "Normal",
  22367. height: math.unit(7.5, "feet"),
  22368. form: "work-safe",
  22369. default: true
  22370. },
  22371. {
  22372. name: "Normal",
  22373. height: math.unit(7.5, "feet"),
  22374. form: "calibrating",
  22375. default: true
  22376. },
  22377. {
  22378. name: "Normal",
  22379. height: math.unit(7.5, "feet"),
  22380. form: "oversize-load",
  22381. default: true
  22382. },
  22383. {
  22384. name: "Enlarged",
  22385. height: math.unit(12, "feet"),
  22386. form: "work-safe",
  22387. },
  22388. {
  22389. name: "Enlarged",
  22390. height: math.unit(12, "feet"),
  22391. form: "calibrating",
  22392. },
  22393. {
  22394. name: "Enlarged",
  22395. height: math.unit(12, "feet"),
  22396. form: "oversize-load",
  22397. },
  22398. ],
  22399. {
  22400. "work-safe": {
  22401. name: "Work-Safe",
  22402. default: true
  22403. },
  22404. "calibrating": {
  22405. name: "Calibrating"
  22406. },
  22407. "oversize-load": {
  22408. name: "Oversize Load"
  22409. }
  22410. }
  22411. ))
  22412. characterMakers.push(() => makeCharacter(
  22413. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22414. {
  22415. front: {
  22416. height: math.unit(5 + 3 / 12, "feet"),
  22417. weight: math.unit(160, "lb"),
  22418. name: "Front",
  22419. image: {
  22420. source: "./media/characters/kira/front.svg",
  22421. extra: 906 / 786,
  22422. bottom: 0.01
  22423. }
  22424. },
  22425. back: {
  22426. height: math.unit(5 + 3 / 12, "feet"),
  22427. weight: math.unit(160, "lb"),
  22428. name: "Back",
  22429. image: {
  22430. source: "./media/characters/kira/back.svg",
  22431. extra: 882 / 757,
  22432. bottom: 0.005
  22433. }
  22434. },
  22435. frontDressed: {
  22436. height: math.unit(5 + 3 / 12, "feet"),
  22437. weight: math.unit(160, "lb"),
  22438. name: "Front (Dressed)",
  22439. image: {
  22440. source: "./media/characters/kira/front-dressed.svg",
  22441. extra: 906 / 786,
  22442. bottom: 0.01
  22443. }
  22444. },
  22445. beans: {
  22446. height: math.unit(0.92, "feet"),
  22447. name: "Beans",
  22448. image: {
  22449. source: "./media/characters/kira/beans.svg"
  22450. }
  22451. },
  22452. },
  22453. [
  22454. {
  22455. name: "Normal",
  22456. height: math.unit(5 + 3 / 12, "feet"),
  22457. default: true
  22458. },
  22459. ]
  22460. ))
  22461. characterMakers.push(() => makeCharacter(
  22462. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22463. {
  22464. front: {
  22465. height: math.unit(5 + 4 / 12, "feet"),
  22466. weight: math.unit(145, "lb"),
  22467. name: "Front",
  22468. image: {
  22469. source: "./media/characters/scramble/front.svg",
  22470. extra: 763 / 727,
  22471. bottom: 0.05
  22472. }
  22473. },
  22474. back: {
  22475. height: math.unit(5 + 4 / 12, "feet"),
  22476. weight: math.unit(145, "lb"),
  22477. name: "Back",
  22478. image: {
  22479. source: "./media/characters/scramble/back.svg",
  22480. extra: 826 / 737,
  22481. bottom: 0.002
  22482. }
  22483. },
  22484. },
  22485. [
  22486. {
  22487. name: "Normal",
  22488. height: math.unit(5 + 4 / 12, "feet"),
  22489. default: true
  22490. },
  22491. ]
  22492. ))
  22493. characterMakers.push(() => makeCharacter(
  22494. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22495. {
  22496. side: {
  22497. height: math.unit(6 + 2 / 12, "feet"),
  22498. weight: math.unit(190, "lb"),
  22499. name: "Side",
  22500. image: {
  22501. source: "./media/characters/biscuit/side.svg",
  22502. extra: 858 / 791,
  22503. bottom: 0.044
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Normal",
  22510. height: math.unit(6 + 2 / 12, "feet"),
  22511. default: true
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22517. {
  22518. front: {
  22519. height: math.unit(5 + 2 / 12, "feet"),
  22520. weight: math.unit(120, "lb"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/poffin/front.svg",
  22524. extra: 786 / 680,
  22525. bottom: 0.005
  22526. }
  22527. },
  22528. },
  22529. [
  22530. {
  22531. name: "Normal",
  22532. height: math.unit(5 + 2 / 12, "feet"),
  22533. default: true
  22534. },
  22535. ]
  22536. ))
  22537. characterMakers.push(() => makeCharacter(
  22538. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22539. {
  22540. front: {
  22541. height: math.unit(6 + 3 / 12, "feet"),
  22542. weight: math.unit(519, "lb"),
  22543. name: "Front",
  22544. image: {
  22545. source: "./media/characters/dhari/front.svg",
  22546. extra: 1048 / 946,
  22547. bottom: 0.015
  22548. }
  22549. },
  22550. back: {
  22551. height: math.unit(6 + 3 / 12, "feet"),
  22552. weight: math.unit(519, "lb"),
  22553. name: "Back",
  22554. image: {
  22555. source: "./media/characters/dhari/back.svg",
  22556. extra: 1048 / 931,
  22557. bottom: 0.005
  22558. }
  22559. },
  22560. frontDressed: {
  22561. height: math.unit(6 + 3 / 12, "feet"),
  22562. weight: math.unit(519, "lb"),
  22563. name: "Front (Dressed)",
  22564. image: {
  22565. source: "./media/characters/dhari/front-dressed.svg",
  22566. extra: 1713 / 1546,
  22567. bottom: 0.02
  22568. }
  22569. },
  22570. backDressed: {
  22571. height: math.unit(6 + 3 / 12, "feet"),
  22572. weight: math.unit(519, "lb"),
  22573. name: "Back (Dressed)",
  22574. image: {
  22575. source: "./media/characters/dhari/back-dressed.svg",
  22576. extra: 1699 / 1537,
  22577. bottom: 0.01
  22578. }
  22579. },
  22580. maw: {
  22581. height: math.unit(0.95, "feet"),
  22582. name: "Maw",
  22583. image: {
  22584. source: "./media/characters/dhari/maw.svg"
  22585. }
  22586. },
  22587. wereFront: {
  22588. height: math.unit(12 + 8 / 12, "feet"),
  22589. weight: math.unit(4000, "lb"),
  22590. name: "Front (Were)",
  22591. image: {
  22592. source: "./media/characters/dhari/were-front.svg",
  22593. extra: 1065 / 969,
  22594. bottom: 0.015
  22595. }
  22596. },
  22597. wereBack: {
  22598. height: math.unit(12 + 8 / 12, "feet"),
  22599. weight: math.unit(4000, "lb"),
  22600. name: "Back (Were)",
  22601. image: {
  22602. source: "./media/characters/dhari/were-back.svg",
  22603. extra: 1065 / 969,
  22604. bottom: 0.012
  22605. }
  22606. },
  22607. wereMaw: {
  22608. height: math.unit(0.625, "meters"),
  22609. name: "Maw (Were)",
  22610. image: {
  22611. source: "./media/characters/dhari/were-maw.svg"
  22612. }
  22613. },
  22614. },
  22615. [
  22616. {
  22617. name: "Normal",
  22618. height: math.unit(6 + 3 / 12, "feet"),
  22619. default: true
  22620. },
  22621. ]
  22622. ))
  22623. characterMakers.push(() => makeCharacter(
  22624. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22625. {
  22626. anthro: {
  22627. height: math.unit(5 + 7 / 12, "feet"),
  22628. weight: math.unit(175, "lb"),
  22629. name: "Anthro",
  22630. image: {
  22631. source: "./media/characters/rena-dyne/anthro.svg",
  22632. extra: 1849 / 1785,
  22633. bottom: 0.005
  22634. }
  22635. },
  22636. taur: {
  22637. height: math.unit(15 + 6 / 12, "feet"),
  22638. weight: math.unit(8000, "lb"),
  22639. name: "Taur",
  22640. image: {
  22641. source: "./media/characters/rena-dyne/taur.svg",
  22642. extra: 2315 / 2234,
  22643. bottom: 0.033
  22644. }
  22645. },
  22646. },
  22647. [
  22648. {
  22649. name: "Normal",
  22650. height: math.unit(5 + 7 / 12, "feet"),
  22651. default: true
  22652. },
  22653. ]
  22654. ))
  22655. characterMakers.push(() => makeCharacter(
  22656. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22657. {
  22658. front: {
  22659. height: math.unit(8, "feet"),
  22660. weight: math.unit(600, "lb"),
  22661. name: "Front",
  22662. image: {
  22663. source: "./media/characters/weremeep/front.svg",
  22664. extra: 970/849,
  22665. bottom: 7/977
  22666. }
  22667. },
  22668. },
  22669. [
  22670. {
  22671. name: "Normal",
  22672. height: math.unit(8, "feet"),
  22673. default: true
  22674. },
  22675. {
  22676. name: "Lorg",
  22677. height: math.unit(12, "feet")
  22678. },
  22679. {
  22680. name: "Oh Lawd She Comin'",
  22681. height: math.unit(20, "feet")
  22682. },
  22683. ]
  22684. ))
  22685. characterMakers.push(() => makeCharacter(
  22686. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22687. {
  22688. front: {
  22689. height: math.unit(4, "feet"),
  22690. weight: math.unit(90, "lb"),
  22691. name: "Front",
  22692. image: {
  22693. source: "./media/characters/reza/front.svg",
  22694. extra: 1183 / 1111,
  22695. bottom: 0.017
  22696. }
  22697. },
  22698. back: {
  22699. height: math.unit(4, "feet"),
  22700. weight: math.unit(90, "lb"),
  22701. name: "Back",
  22702. image: {
  22703. source: "./media/characters/reza/back.svg",
  22704. extra: 1183 / 1111,
  22705. bottom: 0.01
  22706. }
  22707. },
  22708. drake: {
  22709. height: math.unit(30, "feet"),
  22710. weight: math.unit(246960, "lb"),
  22711. name: "Drake",
  22712. image: {
  22713. source: "./media/characters/reza/drake.svg",
  22714. extra: 2350 / 2024,
  22715. bottom: 60.7 / 2403
  22716. }
  22717. },
  22718. },
  22719. [
  22720. {
  22721. name: "Normal",
  22722. height: math.unit(4, "feet"),
  22723. default: true
  22724. },
  22725. ]
  22726. ))
  22727. characterMakers.push(() => makeCharacter(
  22728. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22729. {
  22730. side: {
  22731. height: math.unit(15, "feet"),
  22732. weight: math.unit(14, "tons"),
  22733. name: "Side",
  22734. image: {
  22735. source: "./media/characters/athea/side.svg",
  22736. extra: 960 / 540,
  22737. bottom: 0.003
  22738. }
  22739. },
  22740. sitting: {
  22741. height: math.unit(6 * 2.85, "feet"),
  22742. weight: math.unit(14, "tons"),
  22743. name: "Sitting",
  22744. image: {
  22745. source: "./media/characters/athea/sitting.svg",
  22746. extra: 621 / 581,
  22747. bottom: 0.075
  22748. }
  22749. },
  22750. maw: {
  22751. height: math.unit(7.59498031496063, "feet"),
  22752. name: "Maw",
  22753. image: {
  22754. source: "./media/characters/athea/maw.svg"
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Lap Cat",
  22761. height: math.unit(2.5, "feet")
  22762. },
  22763. {
  22764. name: "Minimacro",
  22765. height: math.unit(15, "feet"),
  22766. default: true
  22767. },
  22768. {
  22769. name: "Macro",
  22770. height: math.unit(120, "feet")
  22771. },
  22772. {
  22773. name: "Macro+",
  22774. height: math.unit(640, "feet")
  22775. },
  22776. {
  22777. name: "Colossus",
  22778. height: math.unit(2.2, "miles")
  22779. },
  22780. ]
  22781. ))
  22782. characterMakers.push(() => makeCharacter(
  22783. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22784. {
  22785. front: {
  22786. height: math.unit(8 + 8 / 12, "feet"),
  22787. weight: math.unit(130, "kg"),
  22788. name: "Front",
  22789. image: {
  22790. source: "./media/characters/seroko/front.svg",
  22791. extra: 1385 / 1280,
  22792. bottom: 0.025
  22793. }
  22794. },
  22795. back: {
  22796. height: math.unit(8 + 8 / 12, "feet"),
  22797. weight: math.unit(130, "kg"),
  22798. name: "Back",
  22799. image: {
  22800. source: "./media/characters/seroko/back.svg",
  22801. extra: 1369 / 1238,
  22802. bottom: 0.018
  22803. }
  22804. },
  22805. frontDressed: {
  22806. height: math.unit(8 + 8 / 12, "feet"),
  22807. weight: math.unit(130, "kg"),
  22808. name: "Front (Dressed)",
  22809. image: {
  22810. source: "./media/characters/seroko/front-dressed.svg",
  22811. extra: 1366 / 1275,
  22812. bottom: 0.03
  22813. }
  22814. },
  22815. },
  22816. [
  22817. {
  22818. name: "Normal",
  22819. height: math.unit(8 + 8 / 12, "feet"),
  22820. default: true
  22821. },
  22822. ]
  22823. ))
  22824. characterMakers.push(() => makeCharacter(
  22825. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22826. {
  22827. front: {
  22828. height: math.unit(5.5, "feet"),
  22829. weight: math.unit(160, "lb"),
  22830. name: "Front",
  22831. image: {
  22832. source: "./media/characters/quatzi/front.svg",
  22833. extra: 2346 / 2242,
  22834. bottom: 0.015
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Normal",
  22841. height: math.unit(5.5, "feet"),
  22842. default: true
  22843. },
  22844. {
  22845. name: "Big",
  22846. height: math.unit(7.7, "feet")
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(5 + 11 / 12, "feet"),
  22855. weight: math.unit(180, "lb"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/sen/front.svg",
  22859. extra: 1321 / 1254,
  22860. bottom: 0.015
  22861. }
  22862. },
  22863. side: {
  22864. height: math.unit(5 + 11 / 12, "feet"),
  22865. weight: math.unit(180, "lb"),
  22866. name: "Side",
  22867. image: {
  22868. source: "./media/characters/sen/side.svg",
  22869. extra: 1321 / 1254,
  22870. bottom: 0.007
  22871. }
  22872. },
  22873. back: {
  22874. height: math.unit(5 + 11 / 12, "feet"),
  22875. weight: math.unit(180, "lb"),
  22876. name: "Back",
  22877. image: {
  22878. source: "./media/characters/sen/back.svg",
  22879. extra: 1321 / 1254
  22880. }
  22881. },
  22882. },
  22883. [
  22884. {
  22885. name: "Normal",
  22886. height: math.unit(5 + 11 / 12, "feet"),
  22887. default: true
  22888. },
  22889. ]
  22890. ))
  22891. characterMakers.push(() => makeCharacter(
  22892. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22893. {
  22894. front: {
  22895. height: math.unit(166.6, "cm"),
  22896. weight: math.unit(66.6, "kg"),
  22897. name: "Front",
  22898. image: {
  22899. source: "./media/characters/fruity/front.svg",
  22900. extra: 1510 / 1386,
  22901. bottom: 0.04
  22902. }
  22903. },
  22904. back: {
  22905. height: math.unit(166.6, "cm"),
  22906. weight: math.unit(66.6, "lb"),
  22907. name: "Back",
  22908. image: {
  22909. source: "./media/characters/fruity/back.svg",
  22910. extra: 1563 / 1435,
  22911. bottom: 0.005
  22912. }
  22913. },
  22914. },
  22915. [
  22916. {
  22917. name: "Normal",
  22918. height: math.unit(166.6, "cm"),
  22919. default: true
  22920. },
  22921. {
  22922. name: "Demonic",
  22923. height: math.unit(166.6, "feet")
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22929. {
  22930. side: {
  22931. height: math.unit(10, "feet"),
  22932. weight: math.unit(500, "lb"),
  22933. name: "Side",
  22934. image: {
  22935. source: "./media/characters/zost/side.svg",
  22936. extra: 2870/2533,
  22937. bottom: 252/3122
  22938. }
  22939. },
  22940. mawFront: {
  22941. height: math.unit(1.08, "meters"),
  22942. name: "Maw (Front)",
  22943. image: {
  22944. source: "./media/characters/zost/maw-front.svg"
  22945. }
  22946. },
  22947. mawSide: {
  22948. height: math.unit(2.66, "feet"),
  22949. name: "Maw (Side)",
  22950. image: {
  22951. source: "./media/characters/zost/maw-side.svg"
  22952. }
  22953. },
  22954. wingspan: {
  22955. height: math.unit(7.4, "feet"),
  22956. name: "Wingspan",
  22957. image: {
  22958. source: "./media/characters/zost/wingspan.svg"
  22959. }
  22960. },
  22961. },
  22962. [
  22963. {
  22964. name: "Normal",
  22965. height: math.unit(10, "feet"),
  22966. default: true
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22972. {
  22973. front: {
  22974. height: math.unit(5 + 4 / 12, "feet"),
  22975. weight: math.unit(120, "lb"),
  22976. name: "Front",
  22977. image: {
  22978. source: "./media/characters/luci/front.svg",
  22979. extra: 1985 / 1884,
  22980. bottom: 0.04
  22981. }
  22982. },
  22983. back: {
  22984. height: math.unit(5 + 4 / 12, "feet"),
  22985. weight: math.unit(120, "lb"),
  22986. name: "Back",
  22987. image: {
  22988. source: "./media/characters/luci/back.svg",
  22989. extra: 1892 / 1791,
  22990. bottom: 0.002
  22991. }
  22992. },
  22993. },
  22994. [
  22995. {
  22996. name: "Normal",
  22997. height: math.unit(5 + 4 / 12, "feet"),
  22998. default: true
  22999. },
  23000. ]
  23001. ))
  23002. characterMakers.push(() => makeCharacter(
  23003. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23004. {
  23005. front: {
  23006. height: math.unit(1500, "feet"),
  23007. weight: math.unit(3.8e6, "tons"),
  23008. name: "Front",
  23009. image: {
  23010. source: "./media/characters/2th/front.svg",
  23011. extra: 3489 / 3350,
  23012. bottom: 0.1
  23013. }
  23014. },
  23015. foot: {
  23016. height: math.unit(461, "feet"),
  23017. name: "Foot",
  23018. image: {
  23019. source: "./media/characters/2th/foot.svg"
  23020. }
  23021. },
  23022. },
  23023. [
  23024. {
  23025. name: "\"Micro\"",
  23026. height: math.unit(15 + 7 / 12, "feet")
  23027. },
  23028. {
  23029. name: "Normal",
  23030. height: math.unit(1500, "feet"),
  23031. default: true
  23032. },
  23033. {
  23034. name: "Macro",
  23035. height: math.unit(5000, "feet")
  23036. },
  23037. {
  23038. name: "Megamacro",
  23039. height: math.unit(15, "miles")
  23040. },
  23041. {
  23042. name: "Gigamacro",
  23043. height: math.unit(4000, "miles")
  23044. },
  23045. {
  23046. name: "Galactic",
  23047. height: math.unit(50, "AU")
  23048. },
  23049. ]
  23050. ))
  23051. characterMakers.push(() => makeCharacter(
  23052. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23053. {
  23054. front: {
  23055. height: math.unit(5 + 6 / 12, "feet"),
  23056. weight: math.unit(220, "lb"),
  23057. name: "Front",
  23058. image: {
  23059. source: "./media/characters/amethyst/front.svg",
  23060. extra: 2078 / 2040,
  23061. bottom: 0.045
  23062. }
  23063. },
  23064. back: {
  23065. height: math.unit(5 + 6 / 12, "feet"),
  23066. weight: math.unit(220, "lb"),
  23067. name: "Back",
  23068. image: {
  23069. source: "./media/characters/amethyst/back.svg",
  23070. extra: 2021 / 1989,
  23071. bottom: 0.02
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Normal",
  23078. height: math.unit(5 + 6 / 12, "feet"),
  23079. default: true
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23085. {
  23086. front: {
  23087. height: math.unit(4 + 11 / 12, "feet"),
  23088. weight: math.unit(120, "lb"),
  23089. name: "Front",
  23090. image: {
  23091. source: "./media/characters/yumi-akiyama/front.svg",
  23092. extra: 1327 / 1235,
  23093. bottom: 0.02
  23094. }
  23095. },
  23096. back: {
  23097. height: math.unit(4 + 11 / 12, "feet"),
  23098. weight: math.unit(120, "lb"),
  23099. name: "Back",
  23100. image: {
  23101. source: "./media/characters/yumi-akiyama/back.svg",
  23102. extra: 1287 / 1245,
  23103. bottom: 0.002
  23104. }
  23105. },
  23106. },
  23107. [
  23108. {
  23109. name: "Galactic",
  23110. height: math.unit(50, "galaxies"),
  23111. default: true
  23112. },
  23113. {
  23114. name: "Universal",
  23115. height: math.unit(100, "universes")
  23116. },
  23117. ]
  23118. ))
  23119. characterMakers.push(() => makeCharacter(
  23120. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23121. {
  23122. front: {
  23123. height: math.unit(8, "feet"),
  23124. weight: math.unit(500, "lb"),
  23125. name: "Front",
  23126. image: {
  23127. source: "./media/characters/rifter-yrmori/front.svg",
  23128. extra: 1180 / 1125,
  23129. bottom: 0.02
  23130. }
  23131. },
  23132. back: {
  23133. height: math.unit(8, "feet"),
  23134. weight: math.unit(500, "lb"),
  23135. name: "Back",
  23136. image: {
  23137. source: "./media/characters/rifter-yrmori/back.svg",
  23138. extra: 1190 / 1145,
  23139. bottom: 0.001
  23140. }
  23141. },
  23142. wings: {
  23143. height: math.unit(7.75, "feet"),
  23144. weight: math.unit(500, "lb"),
  23145. name: "Wings",
  23146. image: {
  23147. source: "./media/characters/rifter-yrmori/wings.svg",
  23148. extra: 1357 / 1285
  23149. }
  23150. },
  23151. maw: {
  23152. height: math.unit(0.8, "feet"),
  23153. name: "Maw",
  23154. image: {
  23155. source: "./media/characters/rifter-yrmori/maw.svg"
  23156. }
  23157. },
  23158. mawfront: {
  23159. height: math.unit(1.45, "feet"),
  23160. name: "Maw (Front)",
  23161. image: {
  23162. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Normal",
  23169. height: math.unit(8, "feet"),
  23170. default: true
  23171. },
  23172. {
  23173. name: "Macro",
  23174. height: math.unit(42, "meters")
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23180. {
  23181. were: {
  23182. height: math.unit(25 + 6 / 12, "feet"),
  23183. weight: math.unit(10000, "lb"),
  23184. name: "Were",
  23185. image: {
  23186. source: "./media/characters/tahajin/were.svg",
  23187. extra: 801 / 770,
  23188. bottom: 0.042
  23189. }
  23190. },
  23191. aquatic: {
  23192. height: math.unit(6 + 4 / 12, "feet"),
  23193. weight: math.unit(160, "lb"),
  23194. name: "Aquatic",
  23195. image: {
  23196. source: "./media/characters/tahajin/aquatic.svg",
  23197. extra: 572 / 542,
  23198. bottom: 0.04
  23199. }
  23200. },
  23201. chow: {
  23202. height: math.unit(8 + 11 / 12, "feet"),
  23203. weight: math.unit(450, "lb"),
  23204. name: "Chow",
  23205. image: {
  23206. source: "./media/characters/tahajin/chow.svg",
  23207. extra: 660 / 640,
  23208. bottom: 0.015
  23209. }
  23210. },
  23211. demiNaga: {
  23212. height: math.unit(6 + 8 / 12, "feet"),
  23213. weight: math.unit(300, "lb"),
  23214. name: "Demi Naga",
  23215. image: {
  23216. source: "./media/characters/tahajin/demi-naga.svg",
  23217. extra: 643 / 615,
  23218. bottom: 0.1
  23219. }
  23220. },
  23221. data: {
  23222. height: math.unit(5, "inches"),
  23223. weight: math.unit(0.1, "lb"),
  23224. name: "Data",
  23225. image: {
  23226. source: "./media/characters/tahajin/data.svg"
  23227. }
  23228. },
  23229. fluu: {
  23230. height: math.unit(5 + 7 / 12, "feet"),
  23231. weight: math.unit(140, "lb"),
  23232. name: "Fluu",
  23233. image: {
  23234. source: "./media/characters/tahajin/fluu.svg",
  23235. extra: 628 / 592,
  23236. bottom: 0.02
  23237. }
  23238. },
  23239. starWarrior: {
  23240. height: math.unit(4 + 5 / 12, "feet"),
  23241. weight: math.unit(50, "lb"),
  23242. name: "Star Warrior",
  23243. image: {
  23244. source: "./media/characters/tahajin/star-warrior.svg"
  23245. }
  23246. },
  23247. },
  23248. [
  23249. {
  23250. name: "Normal",
  23251. height: math.unit(25 + 6 / 12, "feet"),
  23252. default: true
  23253. },
  23254. ]
  23255. ))
  23256. characterMakers.push(() => makeCharacter(
  23257. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23258. {
  23259. front: {
  23260. height: math.unit(8, "feet"),
  23261. weight: math.unit(350, "lb"),
  23262. name: "Front",
  23263. image: {
  23264. source: "./media/characters/gabira/front.svg",
  23265. extra: 1261/1154,
  23266. bottom: 51/1312
  23267. }
  23268. },
  23269. back: {
  23270. height: math.unit(8, "feet"),
  23271. weight: math.unit(350, "lb"),
  23272. name: "Back",
  23273. image: {
  23274. source: "./media/characters/gabira/back.svg",
  23275. extra: 1265/1163,
  23276. bottom: 46/1311
  23277. }
  23278. },
  23279. head: {
  23280. height: math.unit(2.85, "feet"),
  23281. name: "Head",
  23282. image: {
  23283. source: "./media/characters/gabira/head.svg"
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Normal",
  23290. height: math.unit(8, "feet"),
  23291. default: true
  23292. },
  23293. ]
  23294. ))
  23295. characterMakers.push(() => makeCharacter(
  23296. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23297. {
  23298. front: {
  23299. height: math.unit(5 + 3 / 12, "feet"),
  23300. weight: math.unit(137, "lb"),
  23301. name: "Front",
  23302. image: {
  23303. source: "./media/characters/sasha-katraine/front.svg",
  23304. extra: 1745/1694,
  23305. bottom: 37/1782
  23306. }
  23307. },
  23308. back: {
  23309. height: math.unit(5 + 3 / 12, "feet"),
  23310. weight: math.unit(137, "lb"),
  23311. name: "Back",
  23312. image: {
  23313. source: "./media/characters/sasha-katraine/back.svg",
  23314. extra: 1776/1699,
  23315. bottom: 26/1802
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Micro",
  23322. height: math.unit(5, "inches")
  23323. },
  23324. {
  23325. name: "Normal",
  23326. height: math.unit(5 + 3 / 12, "feet"),
  23327. default: true
  23328. },
  23329. ]
  23330. ))
  23331. characterMakers.push(() => makeCharacter(
  23332. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23333. {
  23334. side: {
  23335. height: math.unit(4, "inches"),
  23336. weight: math.unit(200, "grams"),
  23337. name: "Side",
  23338. image: {
  23339. source: "./media/characters/der/side.svg",
  23340. extra: 719 / 400,
  23341. bottom: 30.6 / 749.9187
  23342. }
  23343. },
  23344. },
  23345. [
  23346. {
  23347. name: "Micro",
  23348. height: math.unit(4, "inches"),
  23349. default: true
  23350. },
  23351. ]
  23352. ))
  23353. characterMakers.push(() => makeCharacter(
  23354. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23355. {
  23356. side: {
  23357. height: math.unit(30, "meters"),
  23358. weight: math.unit(700, "tonnes"),
  23359. name: "Side",
  23360. image: {
  23361. source: "./media/characters/fixerdragon/side.svg",
  23362. extra: (1293.0514 - 116.03) / 1106.86,
  23363. bottom: 116.03 / 1293.0514
  23364. }
  23365. },
  23366. },
  23367. [
  23368. {
  23369. name: "Planck",
  23370. height: math.unit(1.6e-35, "meters")
  23371. },
  23372. {
  23373. name: "Micro",
  23374. height: math.unit(0.4, "meters")
  23375. },
  23376. {
  23377. name: "Normal",
  23378. height: math.unit(30, "meters"),
  23379. default: true
  23380. },
  23381. {
  23382. name: "Megamacro",
  23383. height: math.unit(1.2, "megameters")
  23384. },
  23385. {
  23386. name: "Teramacro",
  23387. height: math.unit(130, "terameters")
  23388. },
  23389. {
  23390. name: "Yottamacro",
  23391. height: math.unit(6200, "yottameters")
  23392. },
  23393. ]
  23394. ));
  23395. characterMakers.push(() => makeCharacter(
  23396. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23397. {
  23398. front: {
  23399. height: math.unit(8, "feet"),
  23400. weight: math.unit(250, "lb"),
  23401. name: "Front",
  23402. image: {
  23403. source: "./media/characters/kite/front.svg",
  23404. extra: 2796 / 2659,
  23405. bottom: 0.002
  23406. }
  23407. },
  23408. },
  23409. [
  23410. {
  23411. name: "Normal",
  23412. height: math.unit(8, "feet"),
  23413. default: true
  23414. },
  23415. {
  23416. name: "Macro",
  23417. height: math.unit(360, "feet")
  23418. },
  23419. {
  23420. name: "Megamacro",
  23421. height: math.unit(1500, "feet")
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(5 + 11/12, "feet"),
  23430. weight: math.unit(170, "lb"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/poojawa-vynar/front.svg",
  23434. extra: 1735/1585,
  23435. bottom: 96/1831
  23436. }
  23437. },
  23438. back: {
  23439. height: math.unit(5 + 11/12, "feet"),
  23440. weight: math.unit(170, "lb"),
  23441. name: "Back",
  23442. image: {
  23443. source: "./media/characters/poojawa-vynar/back.svg",
  23444. extra: 1749/1607,
  23445. bottom: 28/1777
  23446. }
  23447. },
  23448. male: {
  23449. height: math.unit(5 + 11/12, "feet"),
  23450. weight: math.unit(170, "lb"),
  23451. name: "Male",
  23452. image: {
  23453. source: "./media/characters/poojawa-vynar/male.svg",
  23454. extra: 1855/1713,
  23455. bottom: 63/1918
  23456. }
  23457. },
  23458. taur: {
  23459. height: math.unit(5 + 11/12, "feet"),
  23460. weight: math.unit(170, "lb"),
  23461. name: "Taur",
  23462. image: {
  23463. source: "./media/characters/poojawa-vynar/taur.svg",
  23464. extra: 1151/1059,
  23465. bottom: 356/1507
  23466. }
  23467. },
  23468. frontDressed: {
  23469. height: math.unit(5 + 11/12, "feet"),
  23470. weight: math.unit(170, "lb"),
  23471. name: "Front (Dressed)",
  23472. image: {
  23473. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23474. extra: 1735/1585,
  23475. bottom: 96/1831
  23476. }
  23477. },
  23478. backDressed: {
  23479. height: math.unit(5 + 11/12, "feet"),
  23480. weight: math.unit(170, "lb"),
  23481. name: "Back (Dressed)",
  23482. image: {
  23483. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23484. extra: 1749/1607,
  23485. bottom: 28/1777
  23486. }
  23487. },
  23488. maleDressed: {
  23489. height: math.unit(5 + 11/12, "feet"),
  23490. weight: math.unit(170, "lb"),
  23491. name: "Male (Dressed)",
  23492. image: {
  23493. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23494. extra: 1855/1713,
  23495. bottom: 63/1918
  23496. }
  23497. },
  23498. taurDressed: {
  23499. height: math.unit(5 + 11/12, "feet"),
  23500. weight: math.unit(170, "lb"),
  23501. name: "Taur (Dressed)",
  23502. image: {
  23503. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23504. extra: 1151/1059,
  23505. bottom: 356/1507
  23506. }
  23507. },
  23508. maw: {
  23509. height: math.unit(1.46, "feet"),
  23510. name: "Maw",
  23511. image: {
  23512. source: "./media/characters/poojawa-vynar/maw.svg"
  23513. }
  23514. },
  23515. head: {
  23516. height: math.unit(2.34, "feet"),
  23517. name: "Head",
  23518. image: {
  23519. source: "./media/characters/poojawa-vynar/head.svg"
  23520. }
  23521. },
  23522. paw: {
  23523. height: math.unit(1.61, "feet"),
  23524. name: "Paw",
  23525. image: {
  23526. source: "./media/characters/poojawa-vynar/paw.svg"
  23527. }
  23528. },
  23529. pawToering: {
  23530. height: math.unit(1.72, "feet"),
  23531. name: "Paw (Toering)",
  23532. image: {
  23533. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23534. }
  23535. },
  23536. toering: {
  23537. height: math.unit(2.9, "inches"),
  23538. name: "Toering",
  23539. image: {
  23540. source: "./media/characters/poojawa-vynar/toering.svg"
  23541. }
  23542. },
  23543. shaft: {
  23544. height: math.unit(0.625, "feet"),
  23545. name: "Shaft",
  23546. image: {
  23547. source: "./media/characters/poojawa-vynar/shaft.svg"
  23548. }
  23549. },
  23550. spade: {
  23551. height: math.unit(0.42, "feet"),
  23552. name: "Spade",
  23553. image: {
  23554. source: "./media/characters/poojawa-vynar/spade.svg"
  23555. }
  23556. },
  23557. },
  23558. [
  23559. {
  23560. name: "Shortstack",
  23561. height: math.unit(4, "feet")
  23562. },
  23563. {
  23564. name: "Normal",
  23565. height: math.unit(5 + 11 / 12, "feet"),
  23566. default: true
  23567. },
  23568. {
  23569. name: "Tauric",
  23570. height: math.unit(4, "meters")
  23571. },
  23572. ]
  23573. ))
  23574. characterMakers.push(() => makeCharacter(
  23575. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23576. {
  23577. front: {
  23578. height: math.unit(293, "meters"),
  23579. weight: math.unit(70400, "tons"),
  23580. name: "Front",
  23581. image: {
  23582. source: "./media/characters/violette/front.svg",
  23583. extra: 1227 / 1180,
  23584. bottom: 0.005
  23585. }
  23586. },
  23587. back: {
  23588. height: math.unit(293, "meters"),
  23589. weight: math.unit(70400, "tons"),
  23590. name: "Back",
  23591. image: {
  23592. source: "./media/characters/violette/back.svg",
  23593. extra: 1227 / 1180,
  23594. bottom: 0.005
  23595. }
  23596. },
  23597. },
  23598. [
  23599. {
  23600. name: "Macro",
  23601. height: math.unit(293, "meters"),
  23602. default: true
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23608. {
  23609. front: {
  23610. height: math.unit(1050, "feet"),
  23611. weight: math.unit(200000, "tons"),
  23612. name: "Front",
  23613. image: {
  23614. source: "./media/characters/alessandra/front.svg",
  23615. extra: 960 / 912,
  23616. bottom: 0.06
  23617. }
  23618. },
  23619. },
  23620. [
  23621. {
  23622. name: "Macro",
  23623. height: math.unit(1050, "feet")
  23624. },
  23625. {
  23626. name: "Macro+",
  23627. height: math.unit(900, "meters"),
  23628. default: true
  23629. },
  23630. ]
  23631. ))
  23632. characterMakers.push(() => makeCharacter(
  23633. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23634. {
  23635. front: {
  23636. height: math.unit(5, "feet"),
  23637. weight: math.unit(187, "lb"),
  23638. name: "Front",
  23639. image: {
  23640. source: "./media/characters/person/front.svg",
  23641. extra: 3087 / 2945,
  23642. bottom: 91 / 3181
  23643. }
  23644. },
  23645. },
  23646. [
  23647. {
  23648. name: "Micro",
  23649. height: math.unit(3, "inches")
  23650. },
  23651. {
  23652. name: "Normal",
  23653. height: math.unit(5, "feet"),
  23654. default: true
  23655. },
  23656. {
  23657. name: "Macro",
  23658. height: math.unit(90, "feet")
  23659. },
  23660. {
  23661. name: "Max Size",
  23662. height: math.unit(280, "feet")
  23663. },
  23664. ]
  23665. ))
  23666. characterMakers.push(() => makeCharacter(
  23667. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23668. {
  23669. front: {
  23670. height: math.unit(4.5, "meters"),
  23671. weight: math.unit(3200, "lb"),
  23672. name: "Front",
  23673. image: {
  23674. source: "./media/characters/ty/front.svg",
  23675. extra: 1038 / 960,
  23676. bottom: 31.156 / 1068
  23677. }
  23678. },
  23679. back: {
  23680. height: math.unit(4.5, "meters"),
  23681. weight: math.unit(3200, "lb"),
  23682. name: "Back",
  23683. image: {
  23684. source: "./media/characters/ty/back.svg",
  23685. extra: 1044 / 966,
  23686. bottom: 7.48 / 1049
  23687. }
  23688. },
  23689. },
  23690. [
  23691. {
  23692. name: "Normal",
  23693. height: math.unit(4.5, "meters"),
  23694. default: true
  23695. },
  23696. ]
  23697. ))
  23698. characterMakers.push(() => makeCharacter(
  23699. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23700. {
  23701. front: {
  23702. height: math.unit(5 + 4 / 12, "feet"),
  23703. weight: math.unit(115, "lb"),
  23704. name: "Front",
  23705. image: {
  23706. source: "./media/characters/rocky/front.svg",
  23707. extra: 1012 / 975,
  23708. bottom: 54 / 1066
  23709. }
  23710. },
  23711. },
  23712. [
  23713. {
  23714. name: "Normal",
  23715. height: math.unit(5 + 4 / 12, "feet"),
  23716. default: true
  23717. },
  23718. ]
  23719. ))
  23720. characterMakers.push(() => makeCharacter(
  23721. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23722. {
  23723. upright: {
  23724. height: math.unit(6, "meters"),
  23725. weight: math.unit(4000, "kg"),
  23726. name: "Upright",
  23727. image: {
  23728. source: "./media/characters/ruin/upright.svg",
  23729. extra: 668 / 661,
  23730. bottom: 42 / 799.8396
  23731. }
  23732. },
  23733. },
  23734. [
  23735. {
  23736. name: "Normal",
  23737. height: math.unit(6, "meters"),
  23738. default: true
  23739. },
  23740. ]
  23741. ))
  23742. characterMakers.push(() => makeCharacter(
  23743. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23744. {
  23745. front: {
  23746. height: math.unit(5, "feet"),
  23747. weight: math.unit(106, "lb"),
  23748. name: "Front",
  23749. image: {
  23750. source: "./media/characters/robin/front.svg",
  23751. extra: 862 / 799,
  23752. bottom: 42.4 / 914.8856
  23753. }
  23754. },
  23755. },
  23756. [
  23757. {
  23758. name: "Normal",
  23759. height: math.unit(5, "feet"),
  23760. default: true
  23761. },
  23762. ]
  23763. ))
  23764. characterMakers.push(() => makeCharacter(
  23765. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23766. {
  23767. side: {
  23768. height: math.unit(3, "feet"),
  23769. weight: math.unit(225, "lb"),
  23770. name: "Side",
  23771. image: {
  23772. source: "./media/characters/saian/side.svg",
  23773. extra: 566 / 356,
  23774. bottom: 79.7 / 643
  23775. }
  23776. },
  23777. maw: {
  23778. height: math.unit(2.85, "feet"),
  23779. name: "Maw",
  23780. image: {
  23781. source: "./media/characters/saian/maw.svg"
  23782. }
  23783. },
  23784. },
  23785. [
  23786. {
  23787. name: "Normal",
  23788. height: math.unit(3, "feet"),
  23789. default: true
  23790. },
  23791. ]
  23792. ))
  23793. characterMakers.push(() => makeCharacter(
  23794. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23795. {
  23796. side: {
  23797. height: math.unit(8, "feet"),
  23798. weight: math.unit(300, "lb"),
  23799. name: "Side",
  23800. image: {
  23801. source: "./media/characters/equus-silvermane/side.svg",
  23802. extra: 2176 / 2050,
  23803. bottom: 65.7 / 2245
  23804. }
  23805. },
  23806. front: {
  23807. height: math.unit(8, "feet"),
  23808. weight: math.unit(300, "lb"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/equus-silvermane/front.svg",
  23812. extra: 4633 / 4400,
  23813. bottom: 71.3 / 4706.915
  23814. }
  23815. },
  23816. sideStepping: {
  23817. height: math.unit(8, "feet"),
  23818. weight: math.unit(300, "lb"),
  23819. name: "Side (Stepping)",
  23820. image: {
  23821. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23822. extra: 1968 / 1860,
  23823. bottom: 16.4 / 1989
  23824. }
  23825. },
  23826. },
  23827. [
  23828. {
  23829. name: "Normal",
  23830. height: math.unit(8, "feet")
  23831. },
  23832. {
  23833. name: "Minimacro",
  23834. height: math.unit(75, "feet"),
  23835. default: true
  23836. },
  23837. {
  23838. name: "Macro",
  23839. height: math.unit(150, "feet")
  23840. },
  23841. {
  23842. name: "Macro+",
  23843. height: math.unit(1000, "feet")
  23844. },
  23845. {
  23846. name: "Megamacro",
  23847. height: math.unit(1, "mile")
  23848. },
  23849. ]
  23850. ))
  23851. characterMakers.push(() => makeCharacter(
  23852. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23853. {
  23854. side: {
  23855. height: math.unit(20, "feet"),
  23856. weight: math.unit(30000, "kg"),
  23857. name: "Side",
  23858. image: {
  23859. source: "./media/characters/windar/side.svg",
  23860. extra: 1491 / 1248,
  23861. bottom: 82.56 / 1568
  23862. }
  23863. },
  23864. },
  23865. [
  23866. {
  23867. name: "Normal",
  23868. height: math.unit(20, "feet"),
  23869. default: true
  23870. },
  23871. ]
  23872. ))
  23873. characterMakers.push(() => makeCharacter(
  23874. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23875. {
  23876. side: {
  23877. height: math.unit(15.66, "feet"),
  23878. weight: math.unit(150, "lb"),
  23879. name: "Side",
  23880. image: {
  23881. source: "./media/characters/melody/side.svg",
  23882. extra: 1097 / 944,
  23883. bottom: 11.8 / 1109
  23884. }
  23885. },
  23886. sideOutfit: {
  23887. height: math.unit(15.66, "feet"),
  23888. weight: math.unit(150, "lb"),
  23889. name: "Side (Outfit)",
  23890. image: {
  23891. source: "./media/characters/melody/side-outfit.svg",
  23892. extra: 1097 / 944,
  23893. bottom: 11.8 / 1109
  23894. }
  23895. },
  23896. },
  23897. [
  23898. {
  23899. name: "Normal",
  23900. height: math.unit(15.66, "feet"),
  23901. default: true
  23902. },
  23903. ]
  23904. ))
  23905. characterMakers.push(() => makeCharacter(
  23906. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23907. {
  23908. armoredFront: {
  23909. height: math.unit(8, "feet"),
  23910. weight: math.unit(325, "lb"),
  23911. name: "Front",
  23912. image: {
  23913. source: "./media/characters/windera/armored-front.svg",
  23914. extra: 1830/1598,
  23915. bottom: 151/1981
  23916. },
  23917. form: "armored",
  23918. default: true
  23919. },
  23920. macroFront: {
  23921. height: math.unit(70, "feet"),
  23922. weight: math.unit(315453, "lb"),
  23923. name: "Front",
  23924. image: {
  23925. source: "./media/characters/windera/macro-front.svg",
  23926. extra: 963/883,
  23927. bottom: 23/986
  23928. },
  23929. form: "macro",
  23930. default: true
  23931. },
  23932. },
  23933. [
  23934. {
  23935. name: "Normal",
  23936. height: math.unit(8, "feet"),
  23937. default: true,
  23938. form: "armored"
  23939. },
  23940. {
  23941. name: "Normal",
  23942. height: math.unit(70, "feet"),
  23943. default: true,
  23944. form: "macro"
  23945. },
  23946. ],
  23947. {
  23948. "armored": {
  23949. name: "Armored",
  23950. default: true
  23951. },
  23952. "macro": {
  23953. name: "Macro",
  23954. },
  23955. }
  23956. ))
  23957. characterMakers.push(() => makeCharacter(
  23958. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23959. {
  23960. front: {
  23961. height: math.unit(28.75, "feet"),
  23962. weight: math.unit(2000, "kg"),
  23963. name: "Front",
  23964. image: {
  23965. source: "./media/characters/sonear/front.svg",
  23966. extra: 1041.1 / 964.9,
  23967. bottom: 53.7 / 1096.6
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Normal",
  23974. height: math.unit(28.75, "feet"),
  23975. default: true
  23976. },
  23977. ]
  23978. ))
  23979. characterMakers.push(() => makeCharacter(
  23980. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23981. {
  23982. side: {
  23983. height: math.unit(25.5, "feet"),
  23984. weight: math.unit(23000, "kg"),
  23985. name: "Side",
  23986. image: {
  23987. source: "./media/characters/kanara/side.svg"
  23988. }
  23989. },
  23990. },
  23991. [
  23992. {
  23993. name: "Normal",
  23994. height: math.unit(25.5, "feet"),
  23995. default: true
  23996. },
  23997. ]
  23998. ))
  23999. characterMakers.push(() => makeCharacter(
  24000. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24001. {
  24002. side: {
  24003. height: math.unit(10, "feet"),
  24004. weight: math.unit(1000, "kg"),
  24005. name: "Side",
  24006. image: {
  24007. source: "./media/characters/ereus/side.svg",
  24008. extra: 1157 / 959,
  24009. bottom: 153 / 1312.5
  24010. }
  24011. },
  24012. },
  24013. [
  24014. {
  24015. name: "Normal",
  24016. height: math.unit(10, "feet"),
  24017. default: true
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24023. {
  24024. side: {
  24025. height: math.unit(4.5, "feet"),
  24026. weight: math.unit(500, "lb"),
  24027. name: "Side",
  24028. image: {
  24029. source: "./media/characters/e-ter/side.svg",
  24030. extra: 1550 / 1248,
  24031. bottom: 146 / 1694
  24032. }
  24033. },
  24034. },
  24035. [
  24036. {
  24037. name: "Normal",
  24038. height: math.unit(4.5, "feet"),
  24039. default: true
  24040. },
  24041. ]
  24042. ))
  24043. characterMakers.push(() => makeCharacter(
  24044. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24045. {
  24046. side: {
  24047. height: math.unit(9.7, "feet"),
  24048. weight: math.unit(4000, "kg"),
  24049. name: "Side",
  24050. image: {
  24051. source: "./media/characters/yamie/side.svg"
  24052. }
  24053. },
  24054. },
  24055. [
  24056. {
  24057. name: "Normal",
  24058. height: math.unit(9.7, "feet"),
  24059. default: true
  24060. },
  24061. ]
  24062. ))
  24063. characterMakers.push(() => makeCharacter(
  24064. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24065. {
  24066. front: {
  24067. height: math.unit(50, "feet"),
  24068. weight: math.unit(50000, "kg"),
  24069. name: "Front",
  24070. image: {
  24071. source: "./media/characters/anders/front.svg",
  24072. extra: 570 / 539,
  24073. bottom: 14.7 / 586.7
  24074. }
  24075. },
  24076. },
  24077. [
  24078. {
  24079. name: "Large",
  24080. height: math.unit(50, "feet")
  24081. },
  24082. {
  24083. name: "Macro",
  24084. height: math.unit(2000, "feet"),
  24085. default: true
  24086. },
  24087. {
  24088. name: "Megamacro",
  24089. height: math.unit(12, "miles")
  24090. },
  24091. ]
  24092. ))
  24093. characterMakers.push(() => makeCharacter(
  24094. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24095. {
  24096. front: {
  24097. height: math.unit(7 + 2 / 12, "feet"),
  24098. weight: math.unit(300, "lb"),
  24099. name: "Front",
  24100. image: {
  24101. source: "./media/characters/reban/front.svg",
  24102. extra: 1287/1212,
  24103. bottom: 148/1435
  24104. }
  24105. },
  24106. head: {
  24107. height: math.unit(1.95, "feet"),
  24108. name: "Head",
  24109. image: {
  24110. source: "./media/characters/reban/head.svg"
  24111. }
  24112. },
  24113. maw: {
  24114. height: math.unit(0.95, "feet"),
  24115. name: "Maw",
  24116. image: {
  24117. source: "./media/characters/reban/maw.svg"
  24118. }
  24119. },
  24120. foot: {
  24121. height: math.unit(1.65, "feet"),
  24122. name: "Foot",
  24123. image: {
  24124. source: "./media/characters/reban/foot.svg"
  24125. }
  24126. },
  24127. dick: {
  24128. height: math.unit(7 / 5, "feet"),
  24129. name: "Dick",
  24130. image: {
  24131. source: "./media/characters/reban/dick.svg"
  24132. }
  24133. },
  24134. },
  24135. [
  24136. {
  24137. name: "Natural Height",
  24138. height: math.unit(7 + 2 / 12, "feet")
  24139. },
  24140. {
  24141. name: "Macro",
  24142. height: math.unit(500, "feet"),
  24143. default: true
  24144. },
  24145. {
  24146. name: "Canon Height",
  24147. height: math.unit(50, "AU")
  24148. },
  24149. ]
  24150. ))
  24151. characterMakers.push(() => makeCharacter(
  24152. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24153. {
  24154. front: {
  24155. height: math.unit(6, "feet"),
  24156. weight: math.unit(150, "lb"),
  24157. name: "Front",
  24158. image: {
  24159. source: "./media/characters/terrance-keayes/front.svg",
  24160. extra: 1.005,
  24161. bottom: 151 / 1615
  24162. }
  24163. },
  24164. side: {
  24165. height: math.unit(6, "feet"),
  24166. weight: math.unit(150, "lb"),
  24167. name: "Side",
  24168. image: {
  24169. source: "./media/characters/terrance-keayes/side.svg",
  24170. extra: 1.005,
  24171. bottom: 129.4 / 1544
  24172. }
  24173. },
  24174. back: {
  24175. height: math.unit(6, "feet"),
  24176. weight: math.unit(150, "lb"),
  24177. name: "Back",
  24178. image: {
  24179. source: "./media/characters/terrance-keayes/back.svg",
  24180. extra: 1.005,
  24181. bottom: 58.4 / 1557.3
  24182. }
  24183. },
  24184. dick: {
  24185. height: math.unit(6 * 0.208, "feet"),
  24186. name: "Dick",
  24187. image: {
  24188. source: "./media/characters/terrance-keayes/dick.svg"
  24189. }
  24190. },
  24191. },
  24192. [
  24193. {
  24194. name: "Canon Height",
  24195. height: math.unit(35, "miles"),
  24196. default: true
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24202. {
  24203. front: {
  24204. height: math.unit(6, "feet"),
  24205. weight: math.unit(150, "lb"),
  24206. name: "Front",
  24207. image: {
  24208. source: "./media/characters/ofelia/front.svg",
  24209. extra: 1130/1117,
  24210. bottom: 91/1221
  24211. }
  24212. },
  24213. back: {
  24214. height: math.unit(6, "feet"),
  24215. weight: math.unit(150, "lb"),
  24216. name: "Back",
  24217. image: {
  24218. source: "./media/characters/ofelia/back.svg",
  24219. extra: 1172/1159,
  24220. bottom: 28/1200
  24221. }
  24222. },
  24223. maw: {
  24224. height: math.unit(1, "feet"),
  24225. name: "Maw",
  24226. image: {
  24227. source: "./media/characters/ofelia/maw.svg"
  24228. }
  24229. },
  24230. foot: {
  24231. height: math.unit(1.949, "feet"),
  24232. name: "Foot",
  24233. image: {
  24234. source: "./media/characters/ofelia/foot.svg"
  24235. }
  24236. },
  24237. },
  24238. [
  24239. {
  24240. name: "Canon Height",
  24241. height: math.unit(2000, "miles"),
  24242. default: true
  24243. },
  24244. ]
  24245. ))
  24246. characterMakers.push(() => makeCharacter(
  24247. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24248. {
  24249. front: {
  24250. height: math.unit(6, "feet"),
  24251. weight: math.unit(150, "lb"),
  24252. name: "Front",
  24253. image: {
  24254. source: "./media/characters/samuel/front.svg",
  24255. extra: 265 / 258,
  24256. bottom: 2 / 266.1566
  24257. }
  24258. },
  24259. },
  24260. [
  24261. {
  24262. name: "Macro",
  24263. height: math.unit(100, "feet"),
  24264. default: true
  24265. },
  24266. {
  24267. name: "Full Size",
  24268. height: math.unit(1000, "miles")
  24269. },
  24270. ]
  24271. ))
  24272. characterMakers.push(() => makeCharacter(
  24273. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24274. {
  24275. front: {
  24276. height: math.unit(6, "feet"),
  24277. weight: math.unit(300, "lb"),
  24278. name: "Front",
  24279. image: {
  24280. source: "./media/characters/beishir-kiel/front.svg",
  24281. extra: 569 / 547,
  24282. bottom: 41.9 / 609
  24283. }
  24284. },
  24285. maw: {
  24286. height: math.unit(6 * 0.202, "feet"),
  24287. name: "Maw",
  24288. image: {
  24289. source: "./media/characters/beishir-kiel/maw.svg"
  24290. }
  24291. },
  24292. },
  24293. [
  24294. {
  24295. name: "Macro",
  24296. height: math.unit(300, "feet"),
  24297. default: true
  24298. },
  24299. ]
  24300. ))
  24301. characterMakers.push(() => makeCharacter(
  24302. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24303. {
  24304. front: {
  24305. height: math.unit(5 + 7/12, "feet"),
  24306. weight: math.unit(120, "lb"),
  24307. name: "Front",
  24308. image: {
  24309. source: "./media/characters/logan-grey/front.svg",
  24310. extra: 1836/1738,
  24311. bottom: 108/1944
  24312. }
  24313. },
  24314. back: {
  24315. height: math.unit(5 + 7/12, "feet"),
  24316. weight: math.unit(120, "lb"),
  24317. name: "Back",
  24318. image: {
  24319. source: "./media/characters/logan-grey/back.svg",
  24320. extra: 1880/1794,
  24321. bottom: 24/1904
  24322. }
  24323. },
  24324. frontSfw: {
  24325. height: math.unit(5 + 7/12, "feet"),
  24326. weight: math.unit(120, "lb"),
  24327. name: "Front (SFW)",
  24328. image: {
  24329. source: "./media/characters/logan-grey/front-sfw.svg",
  24330. extra: 1836/1738,
  24331. bottom: 108/1944
  24332. }
  24333. },
  24334. backSfw: {
  24335. height: math.unit(5 + 7/12, "feet"),
  24336. weight: math.unit(120, "lb"),
  24337. name: "Back (SFW)",
  24338. image: {
  24339. source: "./media/characters/logan-grey/back-sfw.svg",
  24340. extra: 1880/1794,
  24341. bottom: 24/1904
  24342. }
  24343. },
  24344. hands: {
  24345. height: math.unit(0.84, "feet"),
  24346. name: "Hands",
  24347. image: {
  24348. source: "./media/characters/logan-grey/hands.svg"
  24349. }
  24350. },
  24351. paws: {
  24352. height: math.unit(0.72, "feet"),
  24353. name: "Paws",
  24354. image: {
  24355. source: "./media/characters/logan-grey/paws.svg"
  24356. }
  24357. },
  24358. cock: {
  24359. height: math.unit(1.45, "feet"),
  24360. name: "Cock",
  24361. image: {
  24362. source: "./media/characters/logan-grey/cock.svg"
  24363. }
  24364. },
  24365. cockAlt: {
  24366. height: math.unit(1.437, "feet"),
  24367. name: "Cock (alt)",
  24368. image: {
  24369. source: "./media/characters/logan-grey/cock-alt.svg"
  24370. }
  24371. },
  24372. },
  24373. [
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(5 + 8 / 12, "feet")
  24377. },
  24378. {
  24379. name: "The 500 Foot Femboy",
  24380. height: math.unit(500, "feet"),
  24381. default: true
  24382. },
  24383. {
  24384. name: "Megmacro",
  24385. height: math.unit(20, "miles")
  24386. },
  24387. ]
  24388. ))
  24389. characterMakers.push(() => makeCharacter(
  24390. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24391. {
  24392. front: {
  24393. height: math.unit(8 + 2 / 12, "feet"),
  24394. weight: math.unit(275, "lb"),
  24395. name: "Front",
  24396. image: {
  24397. source: "./media/characters/draganta/front.svg",
  24398. extra: 1177 / 1135,
  24399. bottom: 33.46 / 1212.1
  24400. }
  24401. },
  24402. },
  24403. [
  24404. {
  24405. name: "Normal",
  24406. height: math.unit(8 + 6 / 12, "feet"),
  24407. default: true
  24408. },
  24409. {
  24410. name: "Macro",
  24411. height: math.unit(150, "feet")
  24412. },
  24413. {
  24414. name: "Megamacro",
  24415. height: math.unit(1000, "miles")
  24416. },
  24417. ]
  24418. ))
  24419. characterMakers.push(() => makeCharacter(
  24420. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24421. {
  24422. front: {
  24423. height: math.unit(1.72, "m"),
  24424. weight: math.unit(80, "lb"),
  24425. name: "Front",
  24426. image: {
  24427. source: "./media/characters/voski/front.svg",
  24428. extra: 2076.22 / 2022.4,
  24429. bottom: 102.7 / 2177.3866
  24430. }
  24431. },
  24432. frontFlaccid: {
  24433. height: math.unit(1.72, "m"),
  24434. weight: math.unit(80, "lb"),
  24435. name: "Front (Flaccid)",
  24436. image: {
  24437. source: "./media/characters/voski/front-flaccid.svg",
  24438. extra: 2076.22 / 2022.4,
  24439. bottom: 102.7 / 2177.3866
  24440. }
  24441. },
  24442. frontErect: {
  24443. height: math.unit(1.72, "m"),
  24444. weight: math.unit(80, "lb"),
  24445. name: "Front (Erect)",
  24446. image: {
  24447. source: "./media/characters/voski/front-erect.svg",
  24448. extra: 2076.22 / 2022.4,
  24449. bottom: 102.7 / 2177.3866
  24450. }
  24451. },
  24452. back: {
  24453. height: math.unit(1.72, "m"),
  24454. weight: math.unit(80, "lb"),
  24455. name: "Back",
  24456. image: {
  24457. source: "./media/characters/voski/back.svg",
  24458. extra: 2104 / 2051,
  24459. bottom: 10.45 / 2113.63
  24460. }
  24461. },
  24462. },
  24463. [
  24464. {
  24465. name: "Normal",
  24466. height: math.unit(1.72, "m")
  24467. },
  24468. {
  24469. name: "Macro",
  24470. height: math.unit(55, "m"),
  24471. default: true
  24472. },
  24473. {
  24474. name: "Macro+",
  24475. height: math.unit(300, "m")
  24476. },
  24477. {
  24478. name: "Macro++",
  24479. height: math.unit(700, "m")
  24480. },
  24481. {
  24482. name: "Macro+++",
  24483. height: math.unit(4500, "m")
  24484. },
  24485. {
  24486. name: "Macro++++",
  24487. height: math.unit(45, "km")
  24488. },
  24489. {
  24490. name: "Macro+++++",
  24491. height: math.unit(1220, "km")
  24492. },
  24493. ]
  24494. ))
  24495. characterMakers.push(() => makeCharacter(
  24496. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24497. {
  24498. front: {
  24499. height: math.unit(2.3, "m"),
  24500. weight: math.unit(304, "kg"),
  24501. name: "Front",
  24502. image: {
  24503. source: "./media/characters/icowom-lee/front.svg",
  24504. extra: 985 / 955,
  24505. bottom: 25.4 / 1012
  24506. }
  24507. },
  24508. fronttentacles: {
  24509. height: math.unit(2.3, "m"),
  24510. weight: math.unit(304, "kg"),
  24511. name: "Front-tentacles",
  24512. image: {
  24513. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24514. extra: 985 / 955,
  24515. bottom: 25.4 / 1012
  24516. }
  24517. },
  24518. back: {
  24519. height: math.unit(2.3, "m"),
  24520. weight: math.unit(304, "kg"),
  24521. name: "Back",
  24522. image: {
  24523. source: "./media/characters/icowom-lee/back.svg",
  24524. extra: 975 / 954,
  24525. bottom: 9.5 / 985
  24526. }
  24527. },
  24528. backtentacles: {
  24529. height: math.unit(2.3, "m"),
  24530. weight: math.unit(304, "kg"),
  24531. name: "Back-tentacles",
  24532. image: {
  24533. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24534. extra: 975 / 954,
  24535. bottom: 9.5 / 985
  24536. }
  24537. },
  24538. frontDressed: {
  24539. height: math.unit(2.3, "m"),
  24540. weight: math.unit(304, "kg"),
  24541. name: "Front (Dressed)",
  24542. image: {
  24543. source: "./media/characters/icowom-lee/front-dressed.svg",
  24544. extra: 3076 / 2933,
  24545. bottom: 51.4 / 3125.1889
  24546. }
  24547. },
  24548. rump: {
  24549. height: math.unit(0.776, "meters"),
  24550. name: "Rump",
  24551. image: {
  24552. source: "./media/characters/icowom-lee/rump.svg"
  24553. }
  24554. },
  24555. genitals: {
  24556. height: math.unit(0.78, "meters"),
  24557. name: "Genitals",
  24558. image: {
  24559. source: "./media/characters/icowom-lee/genitals.svg"
  24560. }
  24561. },
  24562. },
  24563. [
  24564. {
  24565. name: "Normal",
  24566. height: math.unit(2.3, "meters"),
  24567. default: true
  24568. },
  24569. {
  24570. name: "Macro",
  24571. height: math.unit(94, "meters"),
  24572. default: true
  24573. },
  24574. ]
  24575. ))
  24576. characterMakers.push(() => makeCharacter(
  24577. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24578. {
  24579. front: {
  24580. height: math.unit(22, "meters"),
  24581. weight: math.unit(21000, "kg"),
  24582. name: "Front",
  24583. image: {
  24584. source: "./media/characters/shock-diamond/front.svg",
  24585. extra: 2204 / 2053,
  24586. bottom: 65 / 2239.47
  24587. }
  24588. },
  24589. frontNude: {
  24590. height: math.unit(22, "meters"),
  24591. weight: math.unit(21000, "kg"),
  24592. name: "Front (Nude)",
  24593. image: {
  24594. source: "./media/characters/shock-diamond/front-nude.svg",
  24595. extra: 2514 / 2285,
  24596. bottom: 13 / 2527.56
  24597. }
  24598. },
  24599. },
  24600. [
  24601. {
  24602. name: "Normal",
  24603. height: math.unit(3, "meters")
  24604. },
  24605. {
  24606. name: "Macro",
  24607. height: math.unit(22, "meters"),
  24608. default: true
  24609. },
  24610. ]
  24611. ))
  24612. characterMakers.push(() => makeCharacter(
  24613. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24614. {
  24615. front: {
  24616. height: math.unit(5 + 4/12, "feet"),
  24617. weight: math.unit(125, "lb"),
  24618. name: "Front",
  24619. image: {
  24620. source: "./media/characters/rory/front.svg",
  24621. extra: 1790/1681,
  24622. bottom: 66/1856
  24623. },
  24624. form: "normal",
  24625. default: true
  24626. },
  24627. back: {
  24628. height: math.unit(5 + 4/12, "feet"),
  24629. weight: math.unit(125, "lb"),
  24630. name: "Back",
  24631. image: {
  24632. source: "./media/characters/rory/back.svg",
  24633. extra: 1805/1690,
  24634. bottom: 56/1861
  24635. },
  24636. form: "normal"
  24637. },
  24638. frontDressed: {
  24639. height: math.unit(5 + 4/12, "feet"),
  24640. weight: math.unit(125, "lb"),
  24641. name: "Front (Dressed)",
  24642. image: {
  24643. source: "./media/characters/rory/front-dressed.svg",
  24644. extra: 1790/1681,
  24645. bottom: 66/1856
  24646. },
  24647. form: "normal"
  24648. },
  24649. backDressed: {
  24650. height: math.unit(5 + 4/12, "feet"),
  24651. weight: math.unit(125, "lb"),
  24652. name: "Back (Dressed)",
  24653. image: {
  24654. source: "./media/characters/rory/back-dressed.svg",
  24655. extra: 1805/1690,
  24656. bottom: 56/1861
  24657. },
  24658. form: "normal"
  24659. },
  24660. frontNsfw: {
  24661. height: math.unit(5 + 4/12, "feet"),
  24662. weight: math.unit(125, "lb"),
  24663. name: "Front (NSFW)",
  24664. image: {
  24665. source: "./media/characters/rory/front-nsfw.svg",
  24666. extra: 1790/1681,
  24667. bottom: 66/1856
  24668. },
  24669. form: "normal"
  24670. },
  24671. backNsfw: {
  24672. height: math.unit(5 + 4/12, "feet"),
  24673. weight: math.unit(125, "lb"),
  24674. name: "Back (NSFW)",
  24675. image: {
  24676. source: "./media/characters/rory/back-nsfw.svg",
  24677. extra: 1805/1690,
  24678. bottom: 56/1861
  24679. },
  24680. form: "normal"
  24681. },
  24682. dick: {
  24683. height: math.unit(0.8, "feet"),
  24684. name: "Dick",
  24685. image: {
  24686. source: "./media/characters/rory/dick.svg"
  24687. },
  24688. form: "normal"
  24689. },
  24690. thicc_front: {
  24691. height: math.unit(5 + 4/12, "feet"),
  24692. weight: math.unit(195, "lb"),
  24693. name: "Front",
  24694. image: {
  24695. source: "./media/characters/rory/thicc-front.svg",
  24696. extra: 1220/1100,
  24697. bottom: 103/1323
  24698. },
  24699. form: "thicc",
  24700. default: true
  24701. },
  24702. thicc_back: {
  24703. height: math.unit(5 + 4/12, "feet"),
  24704. weight: math.unit(195, "lb"),
  24705. name: "Back",
  24706. image: {
  24707. source: "./media/characters/rory/thicc-back.svg",
  24708. extra: 1166/1086,
  24709. bottom: 35/1201
  24710. },
  24711. form: "thicc"
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Micro",
  24717. height: math.unit(3, "inches"),
  24718. allForms: true
  24719. },
  24720. {
  24721. name: "Normal",
  24722. height: math.unit(5 + 4/12, "feet"),
  24723. allForms: true,
  24724. default: true
  24725. },
  24726. {
  24727. name: "Macro",
  24728. height: math.unit(90, "feet"),
  24729. allForms: true
  24730. },
  24731. {
  24732. name: "Supercharged",
  24733. height: math.unit(270, "feet"),
  24734. allForms: true
  24735. },
  24736. ],
  24737. {
  24738. "normal": {
  24739. name: "Normal",
  24740. default: true
  24741. },
  24742. "thicc": {
  24743. name: "Thicc",
  24744. },
  24745. }
  24746. ))
  24747. characterMakers.push(() => makeCharacter(
  24748. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24749. {
  24750. front: {
  24751. height: math.unit(5 + 9 / 12, "feet"),
  24752. weight: math.unit(190, "lb"),
  24753. name: "Front",
  24754. image: {
  24755. source: "./media/characters/sprisk/front.svg",
  24756. extra: 1225 / 1180,
  24757. bottom: 42.7 / 1266.4
  24758. }
  24759. },
  24760. frontNsfw: {
  24761. height: math.unit(5 + 9 / 12, "feet"),
  24762. weight: math.unit(190, "lb"),
  24763. name: "Front (NSFW)",
  24764. image: {
  24765. source: "./media/characters/sprisk/front-nsfw.svg",
  24766. extra: 1225 / 1180,
  24767. bottom: 42.7 / 1266.4
  24768. }
  24769. },
  24770. back: {
  24771. height: math.unit(5 + 9 / 12, "feet"),
  24772. weight: math.unit(190, "lb"),
  24773. name: "Back",
  24774. image: {
  24775. source: "./media/characters/sprisk/back.svg",
  24776. extra: 1247 / 1200,
  24777. bottom: 5.6 / 1253.04
  24778. }
  24779. },
  24780. },
  24781. [
  24782. {
  24783. name: "Tiny",
  24784. height: math.unit(2, "inches")
  24785. },
  24786. {
  24787. name: "Normal",
  24788. height: math.unit(5 + 9 / 12, "feet"),
  24789. default: true
  24790. },
  24791. {
  24792. name: "Mini Macro",
  24793. height: math.unit(18, "feet")
  24794. },
  24795. {
  24796. name: "Macro",
  24797. height: math.unit(100, "feet")
  24798. },
  24799. {
  24800. name: "MACRO",
  24801. height: math.unit(50, "miles")
  24802. },
  24803. {
  24804. name: "M A C R O",
  24805. height: math.unit(300, "miles")
  24806. },
  24807. ]
  24808. ))
  24809. characterMakers.push(() => makeCharacter(
  24810. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24811. {
  24812. side: {
  24813. height: math.unit(15.6, "meters"),
  24814. weight: math.unit(700000, "kg"),
  24815. name: "Side",
  24816. image: {
  24817. source: "./media/characters/bunsen/side.svg",
  24818. extra: 1644 / 358
  24819. }
  24820. },
  24821. foot: {
  24822. height: math.unit(1.611 * 1644 / 358, "meter"),
  24823. name: "Foot",
  24824. image: {
  24825. source: "./media/characters/bunsen/foot.svg"
  24826. }
  24827. },
  24828. },
  24829. [
  24830. {
  24831. name: "Small",
  24832. height: math.unit(10, "feet")
  24833. },
  24834. {
  24835. name: "Normal",
  24836. height: math.unit(15.6, "meters"),
  24837. default: true
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24843. {
  24844. front: {
  24845. height: math.unit(4 + 11 / 12, "feet"),
  24846. weight: math.unit(140, "lb"),
  24847. name: "Front",
  24848. image: {
  24849. source: "./media/characters/sesh/front.svg",
  24850. extra: 3420 / 3231,
  24851. bottom: 72 / 3949.5
  24852. }
  24853. },
  24854. },
  24855. [
  24856. {
  24857. name: "Normal",
  24858. height: math.unit(4 + 11 / 12, "feet")
  24859. },
  24860. {
  24861. name: "Grown",
  24862. height: math.unit(15, "feet"),
  24863. default: true
  24864. },
  24865. {
  24866. name: "Macro",
  24867. height: math.unit(1500, "feet")
  24868. },
  24869. {
  24870. name: "Megamacro",
  24871. height: math.unit(30, "miles")
  24872. },
  24873. {
  24874. name: "Continental",
  24875. height: math.unit(3000, "miles")
  24876. },
  24877. {
  24878. name: "Gravity Mass",
  24879. height: math.unit(300000, "miles")
  24880. },
  24881. {
  24882. name: "Planet Buster",
  24883. height: math.unit(30000000, "miles")
  24884. },
  24885. {
  24886. name: "Big",
  24887. height: math.unit(3000000000, "miles")
  24888. },
  24889. ]
  24890. ))
  24891. characterMakers.push(() => makeCharacter(
  24892. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24893. {
  24894. front: {
  24895. height: math.unit(9, "feet"),
  24896. weight: math.unit(350, "lb"),
  24897. name: "Front",
  24898. image: {
  24899. source: "./media/characters/pepper/front.svg",
  24900. extra: 1448 / 1312,
  24901. bottom: 9.4 / 1457.88
  24902. }
  24903. },
  24904. back: {
  24905. height: math.unit(9, "feet"),
  24906. weight: math.unit(350, "lb"),
  24907. name: "Back",
  24908. image: {
  24909. source: "./media/characters/pepper/back.svg",
  24910. extra: 1423 / 1300,
  24911. bottom: 4.6 / 1429
  24912. }
  24913. },
  24914. maw: {
  24915. height: math.unit(0.932, "feet"),
  24916. name: "Maw",
  24917. image: {
  24918. source: "./media/characters/pepper/maw.svg"
  24919. }
  24920. },
  24921. },
  24922. [
  24923. {
  24924. name: "Normal",
  24925. height: math.unit(9, "feet"),
  24926. default: true
  24927. },
  24928. ]
  24929. ))
  24930. characterMakers.push(() => makeCharacter(
  24931. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24932. {
  24933. front: {
  24934. height: math.unit(6, "feet"),
  24935. weight: math.unit(150, "lb"),
  24936. name: "Front",
  24937. image: {
  24938. source: "./media/characters/maelstrom/front.svg",
  24939. extra: 2100 / 1883,
  24940. bottom: 94 / 2196.7
  24941. }
  24942. },
  24943. },
  24944. [
  24945. {
  24946. name: "Less Kaiju",
  24947. height: math.unit(200, "feet")
  24948. },
  24949. {
  24950. name: "Kaiju",
  24951. height: math.unit(400, "feet"),
  24952. default: true
  24953. },
  24954. {
  24955. name: "Kaiju-er",
  24956. height: math.unit(600, "feet")
  24957. },
  24958. ]
  24959. ))
  24960. characterMakers.push(() => makeCharacter(
  24961. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24962. {
  24963. front: {
  24964. height: math.unit(6 + 5 / 12, "feet"),
  24965. weight: math.unit(180, "lb"),
  24966. name: "Front",
  24967. image: {
  24968. source: "./media/characters/lexir/front.svg",
  24969. extra: 180 / 172,
  24970. bottom: 12 / 192
  24971. }
  24972. },
  24973. back: {
  24974. height: math.unit(6 + 5 / 12, "feet"),
  24975. weight: math.unit(180, "lb"),
  24976. name: "Back",
  24977. image: {
  24978. source: "./media/characters/lexir/back.svg",
  24979. extra: 1273/1201,
  24980. bottom: 39/1312
  24981. }
  24982. },
  24983. },
  24984. [
  24985. {
  24986. name: "Very Smal",
  24987. height: math.unit(1, "nm")
  24988. },
  24989. {
  24990. name: "Normal",
  24991. height: math.unit(6 + 5 / 12, "feet"),
  24992. default: true
  24993. },
  24994. {
  24995. name: "Macro",
  24996. height: math.unit(1, "mile")
  24997. },
  24998. {
  24999. name: "Megamacro",
  25000. height: math.unit(50, "miles")
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(1.5, "meters"),
  25009. weight: math.unit(100, "lb"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/maksio/front.svg",
  25013. extra: 1549 / 1531,
  25014. bottom: 123.7 / 1674.5429
  25015. }
  25016. },
  25017. back: {
  25018. height: math.unit(1.5, "meters"),
  25019. weight: math.unit(100, "lb"),
  25020. name: "Back",
  25021. image: {
  25022. source: "./media/characters/maksio/back.svg",
  25023. extra: 1541 / 1509,
  25024. bottom: 97 / 1639
  25025. }
  25026. },
  25027. hand: {
  25028. height: math.unit(0.621, "feet"),
  25029. name: "Hand",
  25030. image: {
  25031. source: "./media/characters/maksio/hand.svg"
  25032. }
  25033. },
  25034. foot: {
  25035. height: math.unit(1.611, "feet"),
  25036. name: "Foot",
  25037. image: {
  25038. source: "./media/characters/maksio/foot.svg"
  25039. }
  25040. },
  25041. },
  25042. [
  25043. {
  25044. name: "Shrunken",
  25045. height: math.unit(10, "cm")
  25046. },
  25047. {
  25048. name: "Normal",
  25049. height: math.unit(150, "cm"),
  25050. default: true
  25051. },
  25052. ]
  25053. ))
  25054. characterMakers.push(() => makeCharacter(
  25055. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25056. {
  25057. front: {
  25058. height: math.unit(100, "feet"),
  25059. name: "Front",
  25060. image: {
  25061. source: "./media/characters/erza-bear/front.svg",
  25062. extra: 2449 / 2390,
  25063. bottom: 46 / 2494
  25064. }
  25065. },
  25066. back: {
  25067. height: math.unit(100, "feet"),
  25068. name: "Back",
  25069. image: {
  25070. source: "./media/characters/erza-bear/back.svg",
  25071. extra: 2489 / 2430,
  25072. bottom: 85.4 / 2480
  25073. }
  25074. },
  25075. tail: {
  25076. height: math.unit(42, "feet"),
  25077. name: "Tail",
  25078. image: {
  25079. source: "./media/characters/erza-bear/tail.svg"
  25080. }
  25081. },
  25082. tongue: {
  25083. height: math.unit(8, "feet"),
  25084. name: "Tongue",
  25085. image: {
  25086. source: "./media/characters/erza-bear/tongue.svg"
  25087. }
  25088. },
  25089. dick: {
  25090. height: math.unit(10.5, "feet"),
  25091. name: "Dick",
  25092. image: {
  25093. source: "./media/characters/erza-bear/dick.svg"
  25094. }
  25095. },
  25096. dickVertical: {
  25097. height: math.unit(16.9, "feet"),
  25098. name: "Dick (Vertical)",
  25099. image: {
  25100. source: "./media/characters/erza-bear/dick-vertical.svg"
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Macro",
  25107. height: math.unit(100, "feet"),
  25108. default: true
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25114. {
  25115. front: {
  25116. height: math.unit(172, "cm"),
  25117. weight: math.unit(73, "kg"),
  25118. name: "Front",
  25119. image: {
  25120. source: "./media/characters/violet-flor/front.svg",
  25121. extra: 1530 / 1442,
  25122. bottom: 61.9 / 1588.8
  25123. }
  25124. },
  25125. back: {
  25126. height: math.unit(180, "cm"),
  25127. weight: math.unit(73, "kg"),
  25128. name: "Back",
  25129. image: {
  25130. source: "./media/characters/violet-flor/back.svg",
  25131. extra: 1692 / 1630,
  25132. bottom: 20 / 1712
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Normal",
  25139. height: math.unit(172, "cm"),
  25140. default: true
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25146. {
  25147. front: {
  25148. height: math.unit(6, "feet"),
  25149. weight: math.unit(220, "lb"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/lynn-rhea/front.svg",
  25153. extra: 310 / 273
  25154. }
  25155. },
  25156. back: {
  25157. height: math.unit(6, "feet"),
  25158. weight: math.unit(220, "lb"),
  25159. name: "Back",
  25160. image: {
  25161. source: "./media/characters/lynn-rhea/back.svg",
  25162. extra: 310 / 273
  25163. }
  25164. },
  25165. dicks: {
  25166. height: math.unit(0.9, "feet"),
  25167. name: "Dicks",
  25168. image: {
  25169. source: "./media/characters/lynn-rhea/dicks.svg"
  25170. }
  25171. },
  25172. slit: {
  25173. height: math.unit(0.4, "feet"),
  25174. name: "Slit",
  25175. image: {
  25176. source: "./media/characters/lynn-rhea/slit.svg"
  25177. }
  25178. },
  25179. },
  25180. [
  25181. {
  25182. name: "Micro",
  25183. height: math.unit(1, "inch")
  25184. },
  25185. {
  25186. name: "Macro",
  25187. height: math.unit(60, "feet"),
  25188. default: true
  25189. },
  25190. {
  25191. name: "Megamacro",
  25192. height: math.unit(2, "miles")
  25193. },
  25194. {
  25195. name: "Gigamacro",
  25196. height: math.unit(3, "earths")
  25197. },
  25198. {
  25199. name: "Galactic",
  25200. height: math.unit(0.8, "galaxies")
  25201. },
  25202. ]
  25203. ))
  25204. characterMakers.push(() => makeCharacter(
  25205. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25206. {
  25207. front: {
  25208. height: math.unit(1600, "feet"),
  25209. weight: math.unit(85758785169, "kg"),
  25210. name: "Front",
  25211. image: {
  25212. source: "./media/characters/valathos/front.svg",
  25213. extra: 1451 / 1339
  25214. }
  25215. },
  25216. },
  25217. [
  25218. {
  25219. name: "Macro",
  25220. height: math.unit(1600, "feet"),
  25221. default: true
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25227. {
  25228. front: {
  25229. height: math.unit(7 + 5 / 12, "feet"),
  25230. weight: math.unit(300, "lb"),
  25231. name: "Front",
  25232. image: {
  25233. source: "./media/characters/azula/front.svg",
  25234. extra: 3208 / 2880,
  25235. bottom: 80.2 / 3277
  25236. }
  25237. },
  25238. back: {
  25239. height: math.unit(7 + 5 / 12, "feet"),
  25240. weight: math.unit(300, "lb"),
  25241. name: "Back",
  25242. image: {
  25243. source: "./media/characters/azula/back.svg",
  25244. extra: 3169 / 2822,
  25245. bottom: 150.6 / 3321
  25246. }
  25247. },
  25248. },
  25249. [
  25250. {
  25251. name: "Normal",
  25252. height: math.unit(7 + 5 / 12, "feet"),
  25253. default: true
  25254. },
  25255. {
  25256. name: "Big",
  25257. height: math.unit(20, "feet")
  25258. },
  25259. ]
  25260. ))
  25261. characterMakers.push(() => makeCharacter(
  25262. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25263. {
  25264. front: {
  25265. height: math.unit(5 + 1 / 12, "feet"),
  25266. weight: math.unit(110, "lb"),
  25267. name: "Front",
  25268. image: {
  25269. source: "./media/characters/rupert/front.svg",
  25270. extra: 1549 / 1495,
  25271. bottom: 54.2 / 1604.4
  25272. }
  25273. },
  25274. },
  25275. [
  25276. {
  25277. name: "Normal",
  25278. height: math.unit(5 + 1 / 12, "feet"),
  25279. default: true
  25280. },
  25281. ]
  25282. ))
  25283. characterMakers.push(() => makeCharacter(
  25284. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25285. {
  25286. front: {
  25287. height: math.unit(8 + 4 / 12, "feet"),
  25288. weight: math.unit(350, "lb"),
  25289. name: "Front",
  25290. image: {
  25291. source: "./media/characters/sheera-castellar/front.svg",
  25292. extra: 1957 / 1894,
  25293. bottom: 26.97 / 1975.017
  25294. }
  25295. },
  25296. side: {
  25297. height: math.unit(8 + 4 / 12, "feet"),
  25298. weight: math.unit(350, "lb"),
  25299. name: "Side",
  25300. image: {
  25301. source: "./media/characters/sheera-castellar/side.svg",
  25302. extra: 1957 / 1894
  25303. }
  25304. },
  25305. back: {
  25306. height: math.unit(8 + 4 / 12, "feet"),
  25307. weight: math.unit(350, "lb"),
  25308. name: "Back",
  25309. image: {
  25310. source: "./media/characters/sheera-castellar/back.svg",
  25311. extra: 1957 / 1894
  25312. }
  25313. },
  25314. angled: {
  25315. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25316. weight: math.unit(350, "lb"),
  25317. name: "Angled",
  25318. image: {
  25319. source: "./media/characters/sheera-castellar/angled.svg",
  25320. extra: 1807 / 1707,
  25321. bottom: 68 / 1875
  25322. }
  25323. },
  25324. genitals: {
  25325. height: math.unit(2.2, "feet"),
  25326. name: "Genitals",
  25327. image: {
  25328. source: "./media/characters/sheera-castellar/genitals.svg"
  25329. }
  25330. },
  25331. taur: {
  25332. height: math.unit(10 + 6/12, "feet"),
  25333. name: "Taur",
  25334. image: {
  25335. source: "./media/characters/sheera-castellar/taur.svg",
  25336. extra: 2017/1909,
  25337. bottom: 185/2202
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Normal",
  25344. height: math.unit(8 + 4 / 12, "feet")
  25345. },
  25346. {
  25347. name: "Macro",
  25348. height: math.unit(150, "feet"),
  25349. default: true
  25350. },
  25351. {
  25352. name: "Macro+",
  25353. height: math.unit(800, "feet")
  25354. },
  25355. ]
  25356. ))
  25357. characterMakers.push(() => makeCharacter(
  25358. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25359. {
  25360. front: {
  25361. height: math.unit(6, "feet"),
  25362. weight: math.unit(150, "lb"),
  25363. name: "Front",
  25364. image: {
  25365. source: "./media/characters/jaipur/front.svg",
  25366. extra: 3860 / 3731,
  25367. bottom: 287 / 4140
  25368. }
  25369. },
  25370. back: {
  25371. height: math.unit(6, "feet"),
  25372. weight: math.unit(150, "lb"),
  25373. name: "Back",
  25374. image: {
  25375. source: "./media/characters/jaipur/back.svg",
  25376. extra: 1637/1561,
  25377. bottom: 154/1791
  25378. }
  25379. },
  25380. },
  25381. [
  25382. {
  25383. name: "Normal",
  25384. height: math.unit(1.85, "meters"),
  25385. default: true
  25386. },
  25387. {
  25388. name: "Macro",
  25389. height: math.unit(150, "meters")
  25390. },
  25391. {
  25392. name: "Macro+",
  25393. height: math.unit(0.5, "miles")
  25394. },
  25395. {
  25396. name: "Macro++",
  25397. height: math.unit(2.5, "miles")
  25398. },
  25399. {
  25400. name: "Macro+++",
  25401. height: math.unit(12, "miles")
  25402. },
  25403. {
  25404. name: "Macro++++",
  25405. height: math.unit(120, "miles")
  25406. },
  25407. {
  25408. name: "Macro+++++",
  25409. height: math.unit(1200, "miles")
  25410. },
  25411. ]
  25412. ))
  25413. characterMakers.push(() => makeCharacter(
  25414. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25415. {
  25416. front: {
  25417. height: math.unit(6, "feet"),
  25418. weight: math.unit(150, "lb"),
  25419. name: "Front",
  25420. image: {
  25421. source: "./media/characters/sheila-wolf/front.svg",
  25422. extra: 1931 / 1808,
  25423. bottom: 29.5 / 1960
  25424. }
  25425. },
  25426. dick: {
  25427. height: math.unit(1.464, "feet"),
  25428. name: "Dick",
  25429. image: {
  25430. source: "./media/characters/sheila-wolf/dick.svg"
  25431. }
  25432. },
  25433. muzzle: {
  25434. height: math.unit(0.513, "feet"),
  25435. name: "Muzzle",
  25436. image: {
  25437. source: "./media/characters/sheila-wolf/muzzle.svg"
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Macro",
  25444. height: math.unit(70, "feet"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25451. {
  25452. front: {
  25453. height: math.unit(32, "meters"),
  25454. weight: math.unit(300000, "kg"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/almor/front.svg",
  25458. extra: 1408 / 1322,
  25459. bottom: 94.6 / 1506.5
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Macro",
  25466. height: math.unit(32, "meters"),
  25467. default: true
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25473. {
  25474. front: {
  25475. height: math.unit(7, "feet"),
  25476. weight: math.unit(200, "lb"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/silver/front.svg",
  25480. extra: 472.1 / 450.5,
  25481. bottom: 26.5 / 499.424
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Normal",
  25488. height: math.unit(7, "feet"),
  25489. default: true
  25490. },
  25491. {
  25492. name: "Macro",
  25493. height: math.unit(800, "feet")
  25494. },
  25495. {
  25496. name: "Megamacro",
  25497. height: math.unit(250, "miles")
  25498. },
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25503. {
  25504. front: {
  25505. height: math.unit(6, "feet"),
  25506. weight: math.unit(150, "lb"),
  25507. name: "Front",
  25508. image: {
  25509. source: "./media/characters/pliskin/front.svg",
  25510. extra: 1469 / 1359,
  25511. bottom: 70 / 1540
  25512. }
  25513. },
  25514. },
  25515. [
  25516. {
  25517. name: "Micro",
  25518. height: math.unit(3, "inches")
  25519. },
  25520. {
  25521. name: "Normal",
  25522. height: math.unit(5 + 11 / 12, "feet"),
  25523. default: true
  25524. },
  25525. {
  25526. name: "Macro",
  25527. height: math.unit(120, "feet")
  25528. },
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25533. {
  25534. front: {
  25535. height: math.unit(6, "feet"),
  25536. weight: math.unit(150, "lb"),
  25537. name: "Front",
  25538. image: {
  25539. source: "./media/characters/sammy/front.svg",
  25540. extra: 1193 / 1089,
  25541. bottom: 30.5 / 1226
  25542. }
  25543. },
  25544. },
  25545. [
  25546. {
  25547. name: "Macro",
  25548. height: math.unit(1700, "feet"),
  25549. default: true
  25550. },
  25551. {
  25552. name: "Examacro",
  25553. height: math.unit(2.5e9, "lightyears")
  25554. },
  25555. ]
  25556. ))
  25557. characterMakers.push(() => makeCharacter(
  25558. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25559. {
  25560. front: {
  25561. height: math.unit(21, "meters"),
  25562. weight: math.unit(12, "tonnes"),
  25563. name: "Front",
  25564. image: {
  25565. source: "./media/characters/kuru/front.svg",
  25566. extra: 4301 / 3785,
  25567. bottom: 371.3 / 4691
  25568. }
  25569. },
  25570. },
  25571. [
  25572. {
  25573. name: "Macro",
  25574. height: math.unit(21, "meters"),
  25575. default: true
  25576. },
  25577. ]
  25578. ))
  25579. characterMakers.push(() => makeCharacter(
  25580. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25581. {
  25582. front: {
  25583. height: math.unit(23, "meters"),
  25584. weight: math.unit(12.2, "tonnes"),
  25585. name: "Front",
  25586. image: {
  25587. source: "./media/characters/rakka/front.svg",
  25588. extra: 4670 / 4169,
  25589. bottom: 301 / 4968.7
  25590. }
  25591. },
  25592. },
  25593. [
  25594. {
  25595. name: "Macro",
  25596. height: math.unit(23, "meters"),
  25597. default: true
  25598. },
  25599. ]
  25600. ))
  25601. characterMakers.push(() => makeCharacter(
  25602. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25603. {
  25604. front: {
  25605. height: math.unit(6, "feet"),
  25606. weight: math.unit(150, "lb"),
  25607. name: "Front",
  25608. image: {
  25609. source: "./media/characters/rhys-feline/front.svg",
  25610. extra: 2488 / 2308,
  25611. bottom: 35.67 / 2519.19
  25612. }
  25613. },
  25614. },
  25615. [
  25616. {
  25617. name: "Really Small",
  25618. height: math.unit(1, "nm")
  25619. },
  25620. {
  25621. name: "Micro",
  25622. height: math.unit(4, "inches")
  25623. },
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(4 + 10 / 12, "feet"),
  25627. default: true
  25628. },
  25629. {
  25630. name: "Macro",
  25631. height: math.unit(100, "feet")
  25632. },
  25633. {
  25634. name: "Megamacto",
  25635. height: math.unit(50, "miles")
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25641. {
  25642. side: {
  25643. height: math.unit(30, "feet"),
  25644. weight: math.unit(35000, "kg"),
  25645. name: "Side",
  25646. image: {
  25647. source: "./media/characters/alydar/side.svg",
  25648. extra: 234 / 222,
  25649. bottom: 6.5 / 241
  25650. }
  25651. },
  25652. front: {
  25653. height: math.unit(30, "feet"),
  25654. weight: math.unit(35000, "kg"),
  25655. name: "Front",
  25656. image: {
  25657. source: "./media/characters/alydar/front.svg",
  25658. extra: 223.37 / 210.2,
  25659. bottom: 22.3 / 246.76
  25660. }
  25661. },
  25662. top: {
  25663. height: math.unit(64.54, "feet"),
  25664. weight: math.unit(35000, "kg"),
  25665. name: "Top",
  25666. image: {
  25667. source: "./media/characters/alydar/top.svg"
  25668. }
  25669. },
  25670. anthro: {
  25671. height: math.unit(30, "feet"),
  25672. weight: math.unit(9000, "kg"),
  25673. name: "Anthro",
  25674. image: {
  25675. source: "./media/characters/alydar/anthro.svg",
  25676. extra: 432 / 421,
  25677. bottom: 7.18 / 440
  25678. }
  25679. },
  25680. maw: {
  25681. height: math.unit(11.693, "feet"),
  25682. name: "Maw",
  25683. image: {
  25684. source: "./media/characters/alydar/maw.svg"
  25685. }
  25686. },
  25687. head: {
  25688. height: math.unit(11.693, "feet"),
  25689. name: "Head",
  25690. image: {
  25691. source: "./media/characters/alydar/head.svg"
  25692. }
  25693. },
  25694. headAlt: {
  25695. height: math.unit(12.861, "feet"),
  25696. name: "Head (Alt)",
  25697. image: {
  25698. source: "./media/characters/alydar/head-alt.svg"
  25699. }
  25700. },
  25701. wing: {
  25702. height: math.unit(20.712, "feet"),
  25703. name: "Wing",
  25704. image: {
  25705. source: "./media/characters/alydar/wing.svg"
  25706. }
  25707. },
  25708. wingFeather: {
  25709. height: math.unit(9.662, "feet"),
  25710. name: "Wing Feather",
  25711. image: {
  25712. source: "./media/characters/alydar/wing-feather.svg"
  25713. }
  25714. },
  25715. countourFeather: {
  25716. height: math.unit(4.154, "feet"),
  25717. name: "Contour Feather",
  25718. image: {
  25719. source: "./media/characters/alydar/contour-feather.svg"
  25720. }
  25721. },
  25722. },
  25723. [
  25724. {
  25725. name: "Diplomatic",
  25726. height: math.unit(13, "feet"),
  25727. default: true
  25728. },
  25729. {
  25730. name: "Small",
  25731. height: math.unit(30, "feet")
  25732. },
  25733. {
  25734. name: "Normal",
  25735. height: math.unit(95, "feet"),
  25736. default: true
  25737. },
  25738. {
  25739. name: "Large",
  25740. height: math.unit(285, "feet")
  25741. },
  25742. {
  25743. name: "Incomprehensible",
  25744. height: math.unit(450, "megameters")
  25745. },
  25746. ]
  25747. ))
  25748. characterMakers.push(() => makeCharacter(
  25749. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25750. {
  25751. side: {
  25752. height: math.unit(11, "feet"),
  25753. weight: math.unit(1750, "kg"),
  25754. name: "Side",
  25755. image: {
  25756. source: "./media/characters/selicia/side.svg",
  25757. extra: 440 / 396,
  25758. bottom: 24.8 / 465.979
  25759. }
  25760. },
  25761. maw: {
  25762. height: math.unit(4.665, "feet"),
  25763. name: "Maw",
  25764. image: {
  25765. source: "./media/characters/selicia/maw.svg"
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Normal",
  25772. height: math.unit(11, "feet"),
  25773. default: true
  25774. },
  25775. ]
  25776. ))
  25777. characterMakers.push(() => makeCharacter(
  25778. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25779. {
  25780. side: {
  25781. height: math.unit(2 + 6 / 12, "feet"),
  25782. weight: math.unit(30, "lb"),
  25783. name: "Side",
  25784. image: {
  25785. source: "./media/characters/layla/side.svg",
  25786. extra: 244 / 188,
  25787. bottom: 18.2 / 262.1
  25788. }
  25789. },
  25790. back: {
  25791. height: math.unit(2 + 6 / 12, "feet"),
  25792. weight: math.unit(30, "lb"),
  25793. name: "Back",
  25794. image: {
  25795. source: "./media/characters/layla/back.svg",
  25796. extra: 308 / 241.5,
  25797. bottom: 8.9 / 316.8
  25798. }
  25799. },
  25800. cumming: {
  25801. height: math.unit(2 + 6 / 12, "feet"),
  25802. weight: math.unit(30, "lb"),
  25803. name: "Cumming",
  25804. image: {
  25805. source: "./media/characters/layla/cumming.svg",
  25806. extra: 342 / 279,
  25807. bottom: 595 / 938
  25808. }
  25809. },
  25810. dickFlaccid: {
  25811. height: math.unit(2.595, "feet"),
  25812. name: "Flaccid Genitals",
  25813. image: {
  25814. source: "./media/characters/layla/dick-flaccid.svg"
  25815. }
  25816. },
  25817. dickErect: {
  25818. height: math.unit(2.359, "feet"),
  25819. name: "Erect Genitals",
  25820. image: {
  25821. source: "./media/characters/layla/dick-erect.svg"
  25822. }
  25823. },
  25824. dragon: {
  25825. height: math.unit(40, "feet"),
  25826. name: "Dragon",
  25827. image: {
  25828. source: "./media/characters/layla/dragon.svg",
  25829. extra: 610/535,
  25830. bottom: 367/977
  25831. }
  25832. },
  25833. taur: {
  25834. height: math.unit(30, "feet"),
  25835. name: "Taur",
  25836. image: {
  25837. source: "./media/characters/layla/taur.svg",
  25838. extra: 1268/1199,
  25839. bottom: 112/1380
  25840. }
  25841. },
  25842. },
  25843. [
  25844. {
  25845. name: "Micro",
  25846. height: math.unit(1, "inch")
  25847. },
  25848. {
  25849. name: "Small",
  25850. height: math.unit(1, "foot")
  25851. },
  25852. {
  25853. name: "Normal",
  25854. height: math.unit(2 + 6 / 12, "feet"),
  25855. default: true
  25856. },
  25857. {
  25858. name: "Macro",
  25859. height: math.unit(200, "feet")
  25860. },
  25861. {
  25862. name: "Megamacro",
  25863. height: math.unit(1000, "miles")
  25864. },
  25865. {
  25866. name: "Planetary",
  25867. height: math.unit(8000, "miles")
  25868. },
  25869. {
  25870. name: "True Layla",
  25871. height: math.unit(200000 * 7, "multiverses")
  25872. },
  25873. ]
  25874. ))
  25875. characterMakers.push(() => makeCharacter(
  25876. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25877. {
  25878. back: {
  25879. height: math.unit(10.5, "feet"),
  25880. weight: math.unit(800, "lb"),
  25881. name: "Back",
  25882. image: {
  25883. source: "./media/characters/knox/back.svg",
  25884. extra: 1486 / 1089,
  25885. bottom: 107 / 1601.4
  25886. }
  25887. },
  25888. side: {
  25889. height: math.unit(10.5, "feet"),
  25890. weight: math.unit(800, "lb"),
  25891. name: "Side",
  25892. image: {
  25893. source: "./media/characters/knox/side.svg",
  25894. extra: 244 / 218,
  25895. bottom: 14 / 260
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Compact",
  25902. height: math.unit(10.5, "feet"),
  25903. default: true
  25904. },
  25905. {
  25906. name: "Dynamax",
  25907. height: math.unit(210, "feet")
  25908. },
  25909. {
  25910. name: "Full Macro",
  25911. height: math.unit(850, "feet")
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(28, "feet"),
  25920. weight: math.unit(10500, "lb"),
  25921. name: "Front",
  25922. image: {
  25923. source: "./media/characters/kayda/front.svg",
  25924. extra: 1536 / 1428,
  25925. bottom: 68.7 / 1603
  25926. }
  25927. },
  25928. back: {
  25929. height: math.unit(28, "feet"),
  25930. weight: math.unit(10500, "lb"),
  25931. name: "Back",
  25932. image: {
  25933. source: "./media/characters/kayda/back.svg",
  25934. extra: 1557 / 1464,
  25935. bottom: 39.5 / 1597.49
  25936. }
  25937. },
  25938. dick: {
  25939. height: math.unit(3.858, "feet"),
  25940. name: "Dick",
  25941. image: {
  25942. source: "./media/characters/kayda/dick.svg"
  25943. }
  25944. },
  25945. },
  25946. [
  25947. {
  25948. name: "Macro",
  25949. height: math.unit(28, "feet"),
  25950. default: true
  25951. },
  25952. ]
  25953. ))
  25954. characterMakers.push(() => makeCharacter(
  25955. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25956. {
  25957. front: {
  25958. height: math.unit(10 + 11 / 12, "feet"),
  25959. weight: math.unit(1400, "lb"),
  25960. name: "Front",
  25961. image: {
  25962. source: "./media/characters/brian/front.svg",
  25963. extra: 737 / 692,
  25964. bottom: 55.4 / 785
  25965. }
  25966. },
  25967. },
  25968. [
  25969. {
  25970. name: "Normal",
  25971. height: math.unit(10 + 11 / 12, "feet"),
  25972. default: true
  25973. },
  25974. ]
  25975. ))
  25976. characterMakers.push(() => makeCharacter(
  25977. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25978. {
  25979. front: {
  25980. height: math.unit(5 + 8 / 12, "feet"),
  25981. weight: math.unit(140, "lb"),
  25982. name: "Front",
  25983. image: {
  25984. source: "./media/characters/khemri/front.svg",
  25985. extra: 4780 / 4059,
  25986. bottom: 80.1 / 4859.25
  25987. }
  25988. },
  25989. },
  25990. [
  25991. {
  25992. name: "Micro",
  25993. height: math.unit(6, "inches")
  25994. },
  25995. {
  25996. name: "Normal",
  25997. height: math.unit(5 + 8 / 12, "feet"),
  25998. default: true
  25999. },
  26000. ]
  26001. ))
  26002. characterMakers.push(() => makeCharacter(
  26003. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26004. {
  26005. front: {
  26006. height: math.unit(13, "feet"),
  26007. weight: math.unit(1700, "lb"),
  26008. name: "Front",
  26009. image: {
  26010. source: "./media/characters/felix-braveheart/front.svg",
  26011. extra: 1222 / 1157,
  26012. bottom: 53.2 / 1280
  26013. }
  26014. },
  26015. back: {
  26016. height: math.unit(13, "feet"),
  26017. weight: math.unit(1700, "lb"),
  26018. name: "Back",
  26019. image: {
  26020. source: "./media/characters/felix-braveheart/back.svg",
  26021. extra: 1277 / 1203,
  26022. bottom: 50.2 / 1327
  26023. }
  26024. },
  26025. feral: {
  26026. height: math.unit(6, "feet"),
  26027. weight: math.unit(400, "lb"),
  26028. name: "Feral",
  26029. image: {
  26030. source: "./media/characters/felix-braveheart/feral.svg",
  26031. extra: 682 / 625,
  26032. bottom: 6.9 / 688
  26033. }
  26034. },
  26035. },
  26036. [
  26037. {
  26038. name: "Normal",
  26039. height: math.unit(13, "feet"),
  26040. default: true
  26041. },
  26042. ]
  26043. ))
  26044. characterMakers.push(() => makeCharacter(
  26045. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26046. {
  26047. side: {
  26048. height: math.unit(5 + 11 / 12, "feet"),
  26049. weight: math.unit(1400, "lb"),
  26050. name: "Side",
  26051. image: {
  26052. source: "./media/characters/shadow-blade/side.svg",
  26053. extra: 1726 / 1267,
  26054. bottom: 58.4 / 1785
  26055. }
  26056. },
  26057. },
  26058. [
  26059. {
  26060. name: "Normal",
  26061. height: math.unit(5 + 11 / 12, "feet"),
  26062. default: true
  26063. },
  26064. ]
  26065. ))
  26066. characterMakers.push(() => makeCharacter(
  26067. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26068. {
  26069. front: {
  26070. height: math.unit(1 + 6 / 12, "feet"),
  26071. weight: math.unit(25, "lb"),
  26072. name: "Front",
  26073. image: {
  26074. source: "./media/characters/karla-halldor/front.svg",
  26075. extra: 1459 / 1383,
  26076. bottom: 12 / 1472
  26077. }
  26078. },
  26079. },
  26080. [
  26081. {
  26082. name: "Normal",
  26083. height: math.unit(1 + 6 / 12, "feet"),
  26084. default: true
  26085. },
  26086. ]
  26087. ))
  26088. characterMakers.push(() => makeCharacter(
  26089. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26090. {
  26091. front: {
  26092. height: math.unit(6 + 2 / 12, "feet"),
  26093. weight: math.unit(160, "lb"),
  26094. name: "Front",
  26095. image: {
  26096. source: "./media/characters/ariam/front.svg",
  26097. extra: 1073/976,
  26098. bottom: 52/1125
  26099. }
  26100. },
  26101. back: {
  26102. height: math.unit(6 + 2/12, "feet"),
  26103. weight: math.unit(160, "lb"),
  26104. name: "Back",
  26105. image: {
  26106. source: "./media/characters/ariam/back.svg",
  26107. extra: 1103/1023,
  26108. bottom: 9/1112
  26109. }
  26110. },
  26111. dressed: {
  26112. height: math.unit(6 + 2/12, "feet"),
  26113. weight: math.unit(160, "lb"),
  26114. name: "Dressed",
  26115. image: {
  26116. source: "./media/characters/ariam/dressed.svg",
  26117. extra: 1099/1009,
  26118. bottom: 25/1124
  26119. }
  26120. },
  26121. squatting: {
  26122. height: math.unit(4.1, "feet"),
  26123. weight: math.unit(160, "lb"),
  26124. name: "Squatting",
  26125. image: {
  26126. source: "./media/characters/ariam/squatting.svg",
  26127. extra: 2617 / 2112,
  26128. bottom: 61.2 / 2681,
  26129. }
  26130. },
  26131. },
  26132. [
  26133. {
  26134. name: "Normal",
  26135. height: math.unit(6 + 2 / 12, "feet"),
  26136. default: true
  26137. },
  26138. {
  26139. name: "Normal+",
  26140. height: math.unit(4, "meters")
  26141. },
  26142. {
  26143. name: "Macro",
  26144. height: math.unit(50, "meters")
  26145. },
  26146. {
  26147. name: "Macro+",
  26148. height: math.unit(100, "meters")
  26149. },
  26150. {
  26151. name: "Megamacro",
  26152. height: math.unit(20, "km")
  26153. },
  26154. {
  26155. name: "Caretaker",
  26156. height: math.unit(444, "megameters")
  26157. },
  26158. ]
  26159. ))
  26160. characterMakers.push(() => makeCharacter(
  26161. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26162. {
  26163. front: {
  26164. height: math.unit(1.67, "meters"),
  26165. weight: math.unit(140, "lb"),
  26166. name: "Front",
  26167. image: {
  26168. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26169. extra: 438 / 410,
  26170. bottom: 0.75 / 439
  26171. }
  26172. },
  26173. },
  26174. [
  26175. {
  26176. name: "Shrunken",
  26177. height: math.unit(7.6, "cm")
  26178. },
  26179. {
  26180. name: "Human Scale",
  26181. height: math.unit(1.67, "meters")
  26182. },
  26183. {
  26184. name: "Wolxi Scale",
  26185. height: math.unit(36.7, "meters"),
  26186. default: true
  26187. },
  26188. ]
  26189. ))
  26190. characterMakers.push(() => makeCharacter(
  26191. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26192. {
  26193. front: {
  26194. height: math.unit(1.73, "meters"),
  26195. weight: math.unit(240, "lb"),
  26196. name: "Front",
  26197. image: {
  26198. source: "./media/characters/izue-two-mothers/front.svg",
  26199. extra: 469 / 437,
  26200. bottom: 1.24 / 470.6
  26201. }
  26202. },
  26203. },
  26204. [
  26205. {
  26206. name: "Shrunken",
  26207. height: math.unit(7.86, "cm")
  26208. },
  26209. {
  26210. name: "Human Scale",
  26211. height: math.unit(1.73, "meters")
  26212. },
  26213. {
  26214. name: "Wolxi Scale",
  26215. height: math.unit(38, "meters"),
  26216. default: true
  26217. },
  26218. ]
  26219. ))
  26220. characterMakers.push(() => makeCharacter(
  26221. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26222. {
  26223. front: {
  26224. height: math.unit(1.55, "meters"),
  26225. weight: math.unit(120, "lb"),
  26226. name: "Front",
  26227. image: {
  26228. source: "./media/characters/teeku-love-shack/front.svg",
  26229. extra: 387 / 362,
  26230. bottom: 1.51 / 388
  26231. }
  26232. },
  26233. },
  26234. [
  26235. {
  26236. name: "Shrunken",
  26237. height: math.unit(7, "cm")
  26238. },
  26239. {
  26240. name: "Human Scale",
  26241. height: math.unit(1.55, "meters")
  26242. },
  26243. {
  26244. name: "Wolxi Scale",
  26245. height: math.unit(34.1, "meters"),
  26246. default: true
  26247. },
  26248. ]
  26249. ))
  26250. characterMakers.push(() => makeCharacter(
  26251. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26252. {
  26253. front: {
  26254. height: math.unit(1.83, "meters"),
  26255. weight: math.unit(135, "lb"),
  26256. name: "Front",
  26257. image: {
  26258. source: "./media/characters/dejma-the-red/front.svg",
  26259. extra: 480 / 458,
  26260. bottom: 1.8 / 482
  26261. }
  26262. },
  26263. },
  26264. [
  26265. {
  26266. name: "Shrunken",
  26267. height: math.unit(8.3, "cm")
  26268. },
  26269. {
  26270. name: "Human Scale",
  26271. height: math.unit(1.83, "meters")
  26272. },
  26273. {
  26274. name: "Wolxi Scale",
  26275. height: math.unit(40, "meters"),
  26276. default: true
  26277. },
  26278. ]
  26279. ))
  26280. characterMakers.push(() => makeCharacter(
  26281. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26282. {
  26283. front: {
  26284. height: math.unit(1.78, "meters"),
  26285. weight: math.unit(65, "kg"),
  26286. name: "Front",
  26287. image: {
  26288. source: "./media/characters/aki/front.svg",
  26289. extra: 452 / 415
  26290. }
  26291. },
  26292. frontNsfw: {
  26293. height: math.unit(1.78, "meters"),
  26294. weight: math.unit(65, "kg"),
  26295. name: "Front (NSFW)",
  26296. image: {
  26297. source: "./media/characters/aki/front-nsfw.svg",
  26298. extra: 452 / 415
  26299. }
  26300. },
  26301. back: {
  26302. height: math.unit(1.78, "meters"),
  26303. weight: math.unit(65, "kg"),
  26304. name: "Back",
  26305. image: {
  26306. source: "./media/characters/aki/back.svg",
  26307. extra: 452 / 415
  26308. }
  26309. },
  26310. rump: {
  26311. height: math.unit(2.05, "feet"),
  26312. name: "Rump",
  26313. image: {
  26314. source: "./media/characters/aki/rump.svg"
  26315. }
  26316. },
  26317. dick: {
  26318. height: math.unit(0.95, "feet"),
  26319. name: "Dick",
  26320. image: {
  26321. source: "./media/characters/aki/dick.svg"
  26322. }
  26323. },
  26324. },
  26325. [
  26326. {
  26327. name: "Micro",
  26328. height: math.unit(15, "cm")
  26329. },
  26330. {
  26331. name: "Normal",
  26332. height: math.unit(178, "cm"),
  26333. default: true
  26334. },
  26335. {
  26336. name: "Macro",
  26337. height: math.unit(214, "m")
  26338. },
  26339. {
  26340. name: "Macro+",
  26341. height: math.unit(534, "m")
  26342. },
  26343. ]
  26344. ))
  26345. characterMakers.push(() => makeCharacter(
  26346. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26347. {
  26348. front: {
  26349. height: math.unit(5 + 5 / 12, "feet"),
  26350. weight: math.unit(120, "lb"),
  26351. name: "Front",
  26352. image: {
  26353. source: "./media/characters/ari/front.svg",
  26354. extra: 1550/1471,
  26355. bottom: 39/1589
  26356. }
  26357. },
  26358. },
  26359. [
  26360. {
  26361. name: "Normal",
  26362. height: math.unit(5 + 5 / 12, "feet")
  26363. },
  26364. {
  26365. name: "Macro",
  26366. height: math.unit(100, "feet"),
  26367. default: true
  26368. },
  26369. {
  26370. name: "Megamacro",
  26371. height: math.unit(100, "miles")
  26372. },
  26373. {
  26374. name: "Gigamacro",
  26375. height: math.unit(80000, "miles")
  26376. },
  26377. ]
  26378. ))
  26379. characterMakers.push(() => makeCharacter(
  26380. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26381. {
  26382. side: {
  26383. height: math.unit(9, "feet"),
  26384. weight: math.unit(400, "kg"),
  26385. name: "Side",
  26386. image: {
  26387. source: "./media/characters/bolt/side.svg",
  26388. extra: 1126 / 896,
  26389. bottom: 60 / 1187.3,
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Micro",
  26396. height: math.unit(5, "inches")
  26397. },
  26398. {
  26399. name: "Normal",
  26400. height: math.unit(9, "feet"),
  26401. default: true
  26402. },
  26403. {
  26404. name: "Macro",
  26405. height: math.unit(700, "feet")
  26406. },
  26407. {
  26408. name: "Max Size",
  26409. height: math.unit(1.52e22, "yottameters")
  26410. },
  26411. ]
  26412. ))
  26413. characterMakers.push(() => makeCharacter(
  26414. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26415. {
  26416. front: {
  26417. height: math.unit(4.3, "meters"),
  26418. weight: math.unit(3, "tons"),
  26419. name: "Front",
  26420. image: {
  26421. source: "./media/characters/draekon-sylviar/front.svg",
  26422. extra: 2072/1512,
  26423. bottom: 74/2146
  26424. }
  26425. },
  26426. back: {
  26427. height: math.unit(4.3, "meters"),
  26428. weight: math.unit(3, "tons"),
  26429. name: "Back",
  26430. image: {
  26431. source: "./media/characters/draekon-sylviar/back.svg",
  26432. extra: 1639/1483,
  26433. bottom: 41/1680
  26434. }
  26435. },
  26436. feral: {
  26437. height: math.unit(1.15, "meters"),
  26438. weight: math.unit(3, "tons"),
  26439. name: "Feral",
  26440. image: {
  26441. source: "./media/characters/draekon-sylviar/feral.svg",
  26442. extra: 1033/395,
  26443. bottom: 130/1163
  26444. }
  26445. },
  26446. maw: {
  26447. height: math.unit(1.3, "meters"),
  26448. name: "Maw",
  26449. image: {
  26450. source: "./media/characters/draekon-sylviar/maw.svg"
  26451. }
  26452. },
  26453. mawSeparated: {
  26454. height: math.unit(1.53, "meters"),
  26455. name: "Separated Maw",
  26456. image: {
  26457. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26458. }
  26459. },
  26460. tail: {
  26461. height: math.unit(1.15, "meters"),
  26462. name: "Tail",
  26463. image: {
  26464. source: "./media/characters/draekon-sylviar/tail.svg"
  26465. }
  26466. },
  26467. tailDick: {
  26468. height: math.unit(1.15, "meters"),
  26469. name: "Tail (Dick)",
  26470. image: {
  26471. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26472. }
  26473. },
  26474. tailDickSeparated: {
  26475. height: math.unit(1.19, "meters"),
  26476. name: "Tail (Separated Dick)",
  26477. image: {
  26478. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26479. }
  26480. },
  26481. slit: {
  26482. height: math.unit(1, "meters"),
  26483. name: "Slit",
  26484. image: {
  26485. source: "./media/characters/draekon-sylviar/slit.svg"
  26486. }
  26487. },
  26488. dick: {
  26489. height: math.unit(1.15, "meters"),
  26490. name: "Dick",
  26491. image: {
  26492. source: "./media/characters/draekon-sylviar/dick.svg"
  26493. }
  26494. },
  26495. dickSeparated: {
  26496. height: math.unit(1.1, "meters"),
  26497. name: "Separated Dick",
  26498. image: {
  26499. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26500. }
  26501. },
  26502. sheath: {
  26503. height: math.unit(1.15, "meters"),
  26504. name: "Sheath",
  26505. image: {
  26506. source: "./media/characters/draekon-sylviar/sheath.svg"
  26507. }
  26508. },
  26509. },
  26510. [
  26511. {
  26512. name: "Small",
  26513. height: math.unit(4.53 / 2, "meters"),
  26514. default: true
  26515. },
  26516. {
  26517. name: "Normal",
  26518. height: math.unit(4.53, "meters"),
  26519. default: true
  26520. },
  26521. {
  26522. name: "Large",
  26523. height: math.unit(4.53 * 2, "meters"),
  26524. },
  26525. ]
  26526. ))
  26527. characterMakers.push(() => makeCharacter(
  26528. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26529. {
  26530. front: {
  26531. height: math.unit(6 + 2 / 12, "feet"),
  26532. weight: math.unit(180, "lb"),
  26533. name: "Front",
  26534. image: {
  26535. source: "./media/characters/brawler/front.svg",
  26536. extra: 3301 / 3027,
  26537. bottom: 138 / 3439
  26538. }
  26539. },
  26540. },
  26541. [
  26542. {
  26543. name: "Normal",
  26544. height: math.unit(6 + 2 / 12, "feet"),
  26545. default: true
  26546. },
  26547. ]
  26548. ))
  26549. characterMakers.push(() => makeCharacter(
  26550. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26551. {
  26552. front: {
  26553. height: math.unit(11, "feet"),
  26554. weight: math.unit(1000, "lb"),
  26555. name: "Front",
  26556. image: {
  26557. source: "./media/characters/alex/front.svg",
  26558. bottom: 44.5 / 620
  26559. }
  26560. },
  26561. },
  26562. [
  26563. {
  26564. name: "Micro",
  26565. height: math.unit(5, "inches")
  26566. },
  26567. {
  26568. name: "Normal",
  26569. height: math.unit(11, "feet"),
  26570. default: true
  26571. },
  26572. {
  26573. name: "Macro",
  26574. height: math.unit(9.5e9, "feet")
  26575. },
  26576. {
  26577. name: "Max Size",
  26578. height: math.unit(1.4e283, "yottameters")
  26579. },
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26584. {
  26585. female: {
  26586. height: math.unit(29.9, "m"),
  26587. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26588. name: "Female",
  26589. image: {
  26590. source: "./media/characters/zenari/female.svg",
  26591. extra: 3281.6 / 3217,
  26592. bottom: 72.2 / 3353
  26593. }
  26594. },
  26595. male: {
  26596. height: math.unit(27.7, "m"),
  26597. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26598. name: "Male",
  26599. image: {
  26600. source: "./media/characters/zenari/male.svg",
  26601. extra: 3008 / 2991,
  26602. bottom: 54.6 / 3069
  26603. }
  26604. },
  26605. },
  26606. [
  26607. {
  26608. name: "Macro",
  26609. height: math.unit(29.7, "meters"),
  26610. default: true
  26611. },
  26612. ]
  26613. ))
  26614. characterMakers.push(() => makeCharacter(
  26615. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26616. {
  26617. female: {
  26618. height: math.unit(23.8, "m"),
  26619. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26620. name: "Female",
  26621. image: {
  26622. source: "./media/characters/mactarian/female.svg",
  26623. extra: 2662 / 2569,
  26624. bottom: 73 / 2736
  26625. }
  26626. },
  26627. male: {
  26628. height: math.unit(23.8, "m"),
  26629. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26630. name: "Male",
  26631. image: {
  26632. source: "./media/characters/mactarian/male.svg",
  26633. extra: 2673 / 2600,
  26634. bottom: 76 / 2750
  26635. }
  26636. },
  26637. },
  26638. [
  26639. {
  26640. name: "Macro",
  26641. height: math.unit(23.8, "meters"),
  26642. default: true
  26643. },
  26644. ]
  26645. ))
  26646. characterMakers.push(() => makeCharacter(
  26647. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26648. {
  26649. female: {
  26650. height: math.unit(19.3, "m"),
  26651. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26652. name: "Female",
  26653. image: {
  26654. source: "./media/characters/umok/female.svg",
  26655. extra: 2186 / 2078,
  26656. bottom: 87 / 2277
  26657. }
  26658. },
  26659. male: {
  26660. height: math.unit(19.5, "m"),
  26661. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26662. name: "Male",
  26663. image: {
  26664. source: "./media/characters/umok/male.svg",
  26665. extra: 2233 / 2140,
  26666. bottom: 24.4 / 2258
  26667. }
  26668. },
  26669. },
  26670. [
  26671. {
  26672. name: "Macro",
  26673. height: math.unit(19.3, "meters"),
  26674. default: true
  26675. },
  26676. ]
  26677. ))
  26678. characterMakers.push(() => makeCharacter(
  26679. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26680. {
  26681. female: {
  26682. height: math.unit(26.15, "m"),
  26683. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26684. name: "Female",
  26685. image: {
  26686. source: "./media/characters/joraxian/female.svg",
  26687. extra: 2912 / 2824,
  26688. bottom: 36 / 2956
  26689. }
  26690. },
  26691. male: {
  26692. height: math.unit(25.4, "m"),
  26693. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26694. name: "Male",
  26695. image: {
  26696. source: "./media/characters/joraxian/male.svg",
  26697. extra: 2877 / 2721,
  26698. bottom: 82 / 2967
  26699. }
  26700. },
  26701. },
  26702. [
  26703. {
  26704. name: "Macro",
  26705. height: math.unit(26.15, "meters"),
  26706. default: true
  26707. },
  26708. ]
  26709. ))
  26710. characterMakers.push(() => makeCharacter(
  26711. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26712. {
  26713. female: {
  26714. height: math.unit(21.6, "m"),
  26715. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26716. name: "Female",
  26717. image: {
  26718. source: "./media/characters/sthara/female.svg",
  26719. extra: 2516 / 2347,
  26720. bottom: 21.5 / 2537
  26721. }
  26722. },
  26723. male: {
  26724. height: math.unit(24, "m"),
  26725. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26726. name: "Male",
  26727. image: {
  26728. source: "./media/characters/sthara/male.svg",
  26729. extra: 2732 / 2607,
  26730. bottom: 23 / 2732
  26731. }
  26732. },
  26733. },
  26734. [
  26735. {
  26736. name: "Macro",
  26737. height: math.unit(21.6, "meters"),
  26738. default: true
  26739. },
  26740. ]
  26741. ))
  26742. characterMakers.push(() => makeCharacter(
  26743. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26744. {
  26745. front: {
  26746. height: math.unit(6 + 4 / 12, "feet"),
  26747. weight: math.unit(175, "lb"),
  26748. name: "Front",
  26749. image: {
  26750. source: "./media/characters/luka-bryzant/front.svg",
  26751. extra: 311 / 289,
  26752. bottom: 4 / 315
  26753. }
  26754. },
  26755. back: {
  26756. height: math.unit(6 + 4 / 12, "feet"),
  26757. weight: math.unit(175, "lb"),
  26758. name: "Back",
  26759. image: {
  26760. source: "./media/characters/luka-bryzant/back.svg",
  26761. extra: 311 / 289,
  26762. bottom: 3.8 / 313.7
  26763. }
  26764. },
  26765. },
  26766. [
  26767. {
  26768. name: "Micro",
  26769. height: math.unit(10, "inches")
  26770. },
  26771. {
  26772. name: "Normal",
  26773. height: math.unit(6 + 4 / 12, "feet"),
  26774. default: true
  26775. },
  26776. {
  26777. name: "Large",
  26778. height: math.unit(12, "feet")
  26779. },
  26780. ]
  26781. ))
  26782. characterMakers.push(() => makeCharacter(
  26783. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26784. {
  26785. front: {
  26786. height: math.unit(5 + 7 / 12, "feet"),
  26787. weight: math.unit(185, "lb"),
  26788. name: "Front",
  26789. image: {
  26790. source: "./media/characters/aman-aquila/front.svg",
  26791. extra: 1013 / 976,
  26792. bottom: 45.6 / 1057
  26793. }
  26794. },
  26795. side: {
  26796. height: math.unit(5 + 7 / 12, "feet"),
  26797. weight: math.unit(185, "lb"),
  26798. name: "Side",
  26799. image: {
  26800. source: "./media/characters/aman-aquila/side.svg",
  26801. extra: 1054 / 1011,
  26802. bottom: 15 / 1070
  26803. }
  26804. },
  26805. back: {
  26806. height: math.unit(5 + 7 / 12, "feet"),
  26807. weight: math.unit(185, "lb"),
  26808. name: "Back",
  26809. image: {
  26810. source: "./media/characters/aman-aquila/back.svg",
  26811. extra: 1026 / 970,
  26812. bottom: 12 / 1039
  26813. }
  26814. },
  26815. head: {
  26816. height: math.unit(1.211, "feet"),
  26817. name: "Head",
  26818. image: {
  26819. source: "./media/characters/aman-aquila/head.svg",
  26820. }
  26821. },
  26822. },
  26823. [
  26824. {
  26825. name: "Minimicro",
  26826. height: math.unit(0.057, "inches")
  26827. },
  26828. {
  26829. name: "Micro",
  26830. height: math.unit(7, "inches")
  26831. },
  26832. {
  26833. name: "Mini",
  26834. height: math.unit(3 + 7 / 12, "feet")
  26835. },
  26836. {
  26837. name: "Normal",
  26838. height: math.unit(5 + 7 / 12, "feet"),
  26839. default: true
  26840. },
  26841. {
  26842. name: "Macro",
  26843. height: math.unit(157 + 7 / 12, "feet")
  26844. },
  26845. {
  26846. name: "Megamacro",
  26847. height: math.unit(1557 + 7 / 12, "feet")
  26848. },
  26849. {
  26850. name: "Gigamacro",
  26851. height: math.unit(15557 + 7 / 12, "feet")
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26857. {
  26858. front: {
  26859. height: math.unit(3 + 2 / 12, "inches"),
  26860. weight: math.unit(0.3, "ounces"),
  26861. name: "Front",
  26862. image: {
  26863. source: "./media/characters/hiphae/front.svg",
  26864. extra: 1931 / 1683,
  26865. bottom: 24 / 1955
  26866. }
  26867. },
  26868. },
  26869. [
  26870. {
  26871. name: "Normal",
  26872. height: math.unit(3 + 1 / 2, "inches"),
  26873. default: true
  26874. },
  26875. ]
  26876. ))
  26877. characterMakers.push(() => makeCharacter(
  26878. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26879. {
  26880. front: {
  26881. height: math.unit(5 + 10 / 12, "feet"),
  26882. weight: math.unit(165, "lb"),
  26883. name: "Front",
  26884. image: {
  26885. source: "./media/characters/nicky/front.svg",
  26886. extra: 3144 / 2886,
  26887. bottom: 45.6 / 3192
  26888. }
  26889. },
  26890. back: {
  26891. height: math.unit(5 + 10 / 12, "feet"),
  26892. weight: math.unit(165, "lb"),
  26893. name: "Back",
  26894. image: {
  26895. source: "./media/characters/nicky/back.svg",
  26896. extra: 3055 / 2804,
  26897. bottom: 28.4 / 3087
  26898. }
  26899. },
  26900. frontclothed: {
  26901. height: math.unit(5 + 10 / 12, "feet"),
  26902. weight: math.unit(165, "lb"),
  26903. name: "Front-clothed",
  26904. image: {
  26905. source: "./media/characters/nicky/front-clothed.svg",
  26906. extra: 3184.9 / 2926.9,
  26907. bottom: 86.5 / 3239.9
  26908. }
  26909. },
  26910. foot: {
  26911. height: math.unit(1.16, "feet"),
  26912. name: "Foot",
  26913. image: {
  26914. source: "./media/characters/nicky/foot.svg"
  26915. }
  26916. },
  26917. feet: {
  26918. height: math.unit(1.34, "feet"),
  26919. name: "Feet",
  26920. image: {
  26921. source: "./media/characters/nicky/feet.svg"
  26922. }
  26923. },
  26924. maw: {
  26925. height: math.unit(0.9, "feet"),
  26926. name: "Maw",
  26927. image: {
  26928. source: "./media/characters/nicky/maw.svg"
  26929. }
  26930. },
  26931. },
  26932. [
  26933. {
  26934. name: "Normal",
  26935. height: math.unit(5 + 10 / 12, "feet"),
  26936. default: true
  26937. },
  26938. {
  26939. name: "Macro",
  26940. height: math.unit(60, "feet")
  26941. },
  26942. {
  26943. name: "Megamacro",
  26944. height: math.unit(1, "mile")
  26945. },
  26946. ]
  26947. ))
  26948. characterMakers.push(() => makeCharacter(
  26949. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26950. {
  26951. side: {
  26952. height: math.unit(10, "feet"),
  26953. weight: math.unit(600, "lb"),
  26954. name: "Side",
  26955. image: {
  26956. source: "./media/characters/blair/side.svg",
  26957. bottom: 16.6 / 475,
  26958. extra: 458 / 431
  26959. }
  26960. },
  26961. },
  26962. [
  26963. {
  26964. name: "Micro",
  26965. height: math.unit(8, "inches")
  26966. },
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(10, "feet"),
  26970. default: true
  26971. },
  26972. {
  26973. name: "Macro",
  26974. height: math.unit(180, "feet")
  26975. },
  26976. ]
  26977. ))
  26978. characterMakers.push(() => makeCharacter(
  26979. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26980. {
  26981. front: {
  26982. height: math.unit(5 + 4 / 12, "feet"),
  26983. weight: math.unit(125, "lb"),
  26984. name: "Front",
  26985. image: {
  26986. source: "./media/characters/fisher/front.svg",
  26987. extra: 444 / 390,
  26988. bottom: 2 / 444.8
  26989. }
  26990. },
  26991. },
  26992. [
  26993. {
  26994. name: "Micro",
  26995. height: math.unit(4, "inches")
  26996. },
  26997. {
  26998. name: "Normal",
  26999. height: math.unit(5 + 4 / 12, "feet"),
  27000. default: true
  27001. },
  27002. {
  27003. name: "Macro",
  27004. height: math.unit(100, "feet")
  27005. },
  27006. ]
  27007. ))
  27008. characterMakers.push(() => makeCharacter(
  27009. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27010. {
  27011. front: {
  27012. height: math.unit(6.71, "feet"),
  27013. weight: math.unit(200, "lb"),
  27014. preyCapacity: math.unit(1000000, "people"),
  27015. name: "Front",
  27016. image: {
  27017. source: "./media/characters/gliss/front.svg",
  27018. extra: 2347 / 2231,
  27019. bottom: 113 / 2462
  27020. }
  27021. },
  27022. hammerspaceSize: {
  27023. height: math.unit(6.71 * 717, "feet"),
  27024. weight: math.unit(200, "lb"),
  27025. preyCapacity: math.unit(1000000, "people"),
  27026. name: "Hammerspace Size",
  27027. image: {
  27028. source: "./media/characters/gliss/front.svg",
  27029. extra: 2347 / 2231,
  27030. bottom: 113 / 2462
  27031. }
  27032. },
  27033. },
  27034. [
  27035. {
  27036. name: "Normal",
  27037. height: math.unit(6.71, "feet"),
  27038. default: true
  27039. },
  27040. ]
  27041. ))
  27042. characterMakers.push(() => makeCharacter(
  27043. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27044. {
  27045. side: {
  27046. height: math.unit(1.44, "m"),
  27047. weight: math.unit(80, "kg"),
  27048. name: "Side",
  27049. image: {
  27050. source: "./media/characters/dune-anderson/side.svg",
  27051. bottom: 49 / 1426
  27052. }
  27053. },
  27054. },
  27055. [
  27056. {
  27057. name: "Wolf-sized",
  27058. height: math.unit(1.44, "meters")
  27059. },
  27060. {
  27061. name: "Normal",
  27062. height: math.unit(5.05, "meters"),
  27063. default: true
  27064. },
  27065. {
  27066. name: "Big",
  27067. height: math.unit(14.4, "meters")
  27068. },
  27069. {
  27070. name: "Huge",
  27071. height: math.unit(144, "meters")
  27072. },
  27073. ]
  27074. ))
  27075. characterMakers.push(() => makeCharacter(
  27076. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27077. {
  27078. front: {
  27079. height: math.unit(7, "feet"),
  27080. weight: math.unit(425, "lb"),
  27081. name: "Front",
  27082. image: {
  27083. source: "./media/characters/hind/front.svg",
  27084. extra: 2091 / 1860,
  27085. bottom: 129 / 2220
  27086. }
  27087. },
  27088. back: {
  27089. height: math.unit(7, "feet"),
  27090. weight: math.unit(425, "lb"),
  27091. name: "Back",
  27092. image: {
  27093. source: "./media/characters/hind/back.svg",
  27094. extra: 2091 / 1860,
  27095. bottom: 24.6 / 2309
  27096. }
  27097. },
  27098. tail: {
  27099. height: math.unit(2.8, "feet"),
  27100. name: "Tail",
  27101. image: {
  27102. source: "./media/characters/hind/tail.svg"
  27103. }
  27104. },
  27105. head: {
  27106. height: math.unit(2.55, "feet"),
  27107. name: "Head",
  27108. image: {
  27109. source: "./media/characters/hind/head.svg"
  27110. }
  27111. },
  27112. },
  27113. [
  27114. {
  27115. name: "XS",
  27116. height: math.unit(0.7, "feet")
  27117. },
  27118. {
  27119. name: "Normal",
  27120. height: math.unit(7, "feet"),
  27121. default: true
  27122. },
  27123. {
  27124. name: "XL",
  27125. height: math.unit(70, "feet")
  27126. },
  27127. ]
  27128. ))
  27129. characterMakers.push(() => makeCharacter(
  27130. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27131. {
  27132. front: {
  27133. height: math.unit(2.1, "meters"),
  27134. weight: math.unit(150, "lb"),
  27135. name: "Front",
  27136. image: {
  27137. source: "./media/characters/tharquench-sizestealer/front.svg",
  27138. extra: 1605/1470,
  27139. bottom: 36/1641
  27140. }
  27141. },
  27142. frontAlt: {
  27143. height: math.unit(2.1, "meters"),
  27144. weight: math.unit(150, "lb"),
  27145. name: "Front (Alt)",
  27146. image: {
  27147. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27148. extra: 2318 / 2063,
  27149. bottom: 93.4 / 2410
  27150. }
  27151. },
  27152. },
  27153. [
  27154. {
  27155. name: "Nano",
  27156. height: math.unit(1, "mm")
  27157. },
  27158. {
  27159. name: "Micro",
  27160. height: math.unit(1, "cm")
  27161. },
  27162. {
  27163. name: "Normal",
  27164. height: math.unit(2.1, "meters"),
  27165. default: true
  27166. },
  27167. ]
  27168. ))
  27169. characterMakers.push(() => makeCharacter(
  27170. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27171. {
  27172. front: {
  27173. height: math.unit(7 + 5 / 12, "feet"),
  27174. weight: math.unit(357, "lb"),
  27175. name: "Front",
  27176. image: {
  27177. source: "./media/characters/solex-draconov/front.svg",
  27178. extra: 1993 / 1865,
  27179. bottom: 117 / 2111
  27180. }
  27181. },
  27182. },
  27183. [
  27184. {
  27185. name: "Natural Height",
  27186. height: math.unit(7 + 5 / 12, "feet"),
  27187. default: true
  27188. },
  27189. {
  27190. name: "Macro",
  27191. height: math.unit(350, "feet")
  27192. },
  27193. {
  27194. name: "Macro+",
  27195. height: math.unit(1000, "feet")
  27196. },
  27197. {
  27198. name: "Megamacro",
  27199. height: math.unit(20, "km")
  27200. },
  27201. {
  27202. name: "Megamacro+",
  27203. height: math.unit(1000, "km")
  27204. },
  27205. {
  27206. name: "Gigamacro",
  27207. height: math.unit(2.5, "Gm")
  27208. },
  27209. {
  27210. name: "Teramacro",
  27211. height: math.unit(15, "Tm")
  27212. },
  27213. {
  27214. name: "Galactic",
  27215. height: math.unit(30, "Zm")
  27216. },
  27217. {
  27218. name: "Universal",
  27219. height: math.unit(21000, "Ym")
  27220. },
  27221. {
  27222. name: "Omniversal",
  27223. height: math.unit(9.861e50, "Ym")
  27224. },
  27225. {
  27226. name: "Existential",
  27227. height: math.unit(1e300, "meters")
  27228. },
  27229. ]
  27230. ))
  27231. characterMakers.push(() => makeCharacter(
  27232. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27233. {
  27234. side: {
  27235. height: math.unit(25, "feet"),
  27236. weight: math.unit(90000, "lb"),
  27237. name: "Side",
  27238. image: {
  27239. source: "./media/characters/mandarax/side.svg",
  27240. extra: 614 / 332,
  27241. bottom: 55 / 630
  27242. }
  27243. },
  27244. lounging: {
  27245. height: math.unit(15.4, "feet"),
  27246. weight: math.unit(90000, "lb"),
  27247. name: "Lounging",
  27248. image: {
  27249. source: "./media/characters/mandarax/lounging.svg",
  27250. extra: 817/609,
  27251. bottom: 685/1502
  27252. }
  27253. },
  27254. head: {
  27255. height: math.unit(11.4, "feet"),
  27256. name: "Head",
  27257. image: {
  27258. source: "./media/characters/mandarax/head.svg"
  27259. }
  27260. },
  27261. belly: {
  27262. height: math.unit(33, "feet"),
  27263. name: "Belly",
  27264. preyCapacity: math.unit(500, "people"),
  27265. image: {
  27266. source: "./media/characters/mandarax/belly.svg"
  27267. }
  27268. },
  27269. dick: {
  27270. height: math.unit(8.46, "feet"),
  27271. name: "Dick",
  27272. image: {
  27273. source: "./media/characters/mandarax/dick.svg"
  27274. }
  27275. },
  27276. top: {
  27277. height: math.unit(28, "meters"),
  27278. name: "Top",
  27279. image: {
  27280. source: "./media/characters/mandarax/top.svg"
  27281. }
  27282. },
  27283. },
  27284. [
  27285. {
  27286. name: "Normal",
  27287. height: math.unit(25, "feet"),
  27288. default: true
  27289. },
  27290. ]
  27291. ))
  27292. characterMakers.push(() => makeCharacter(
  27293. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27294. {
  27295. front: {
  27296. height: math.unit(5, "feet"),
  27297. weight: math.unit(90, "lb"),
  27298. name: "Front",
  27299. image: {
  27300. source: "./media/characters/pixil/front.svg",
  27301. extra: 2000 / 1618,
  27302. bottom: 12.3 / 2011
  27303. }
  27304. },
  27305. },
  27306. [
  27307. {
  27308. name: "Normal",
  27309. height: math.unit(5, "feet"),
  27310. default: true
  27311. },
  27312. {
  27313. name: "Megamacro",
  27314. height: math.unit(10, "miles"),
  27315. },
  27316. ]
  27317. ))
  27318. characterMakers.push(() => makeCharacter(
  27319. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27320. {
  27321. front: {
  27322. height: math.unit(7 + 2 / 12, "feet"),
  27323. weight: math.unit(200, "lb"),
  27324. name: "Front",
  27325. image: {
  27326. source: "./media/characters/angel/front.svg",
  27327. extra: 1830 / 1737,
  27328. bottom: 22.6 / 1854,
  27329. }
  27330. },
  27331. },
  27332. [
  27333. {
  27334. name: "Normal",
  27335. height: math.unit(7 + 2 / 12, "feet"),
  27336. default: true
  27337. },
  27338. {
  27339. name: "Macro",
  27340. height: math.unit(1000, "feet")
  27341. },
  27342. {
  27343. name: "Megamacro",
  27344. height: math.unit(2, "miles")
  27345. },
  27346. {
  27347. name: "Gigamacro",
  27348. height: math.unit(20, "earths")
  27349. },
  27350. ]
  27351. ))
  27352. characterMakers.push(() => makeCharacter(
  27353. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27354. {
  27355. front: {
  27356. height: math.unit(5, "feet"),
  27357. weight: math.unit(180, "lb"),
  27358. name: "Front",
  27359. image: {
  27360. source: "./media/characters/mekana/front.svg",
  27361. extra: 1671 / 1605,
  27362. bottom: 3.5 / 1691
  27363. }
  27364. },
  27365. side: {
  27366. height: math.unit(5, "feet"),
  27367. weight: math.unit(180, "lb"),
  27368. name: "Side",
  27369. image: {
  27370. source: "./media/characters/mekana/side.svg",
  27371. extra: 1671 / 1605,
  27372. bottom: 3.5 / 1691
  27373. }
  27374. },
  27375. back: {
  27376. height: math.unit(5, "feet"),
  27377. weight: math.unit(180, "lb"),
  27378. name: "Back",
  27379. image: {
  27380. source: "./media/characters/mekana/back.svg",
  27381. extra: 1671 / 1605,
  27382. bottom: 3.5 / 1691
  27383. }
  27384. },
  27385. },
  27386. [
  27387. {
  27388. name: "Normal",
  27389. height: math.unit(5, "feet"),
  27390. default: true
  27391. },
  27392. ]
  27393. ))
  27394. characterMakers.push(() => makeCharacter(
  27395. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27396. {
  27397. front: {
  27398. height: math.unit(4 + 6 / 12, "feet"),
  27399. weight: math.unit(80, "lb"),
  27400. name: "Front",
  27401. image: {
  27402. source: "./media/characters/pixie/front.svg",
  27403. extra: 1924 / 1825,
  27404. bottom: 22.4 / 1946
  27405. }
  27406. },
  27407. },
  27408. [
  27409. {
  27410. name: "Normal",
  27411. height: math.unit(4 + 6 / 12, "feet"),
  27412. default: true
  27413. },
  27414. {
  27415. name: "Macro",
  27416. height: math.unit(40, "feet")
  27417. },
  27418. ]
  27419. ))
  27420. characterMakers.push(() => makeCharacter(
  27421. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27422. {
  27423. front: {
  27424. height: math.unit(2.1, "meters"),
  27425. weight: math.unit(200, "lb"),
  27426. name: "Front",
  27427. image: {
  27428. source: "./media/characters/the-lascivious/front.svg",
  27429. extra: 1 / 0.893,
  27430. bottom: 3.5 / 573.7
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Human Scale",
  27437. height: math.unit(2.1, "meters")
  27438. },
  27439. {
  27440. name: "Wolxi Scale",
  27441. height: math.unit(46.2, "m"),
  27442. default: true
  27443. },
  27444. {
  27445. name: "Boinker of Buildings",
  27446. height: math.unit(10, "km")
  27447. },
  27448. {
  27449. name: "Shagger of Skyscrapers",
  27450. height: math.unit(40, "km")
  27451. },
  27452. {
  27453. name: "Banger of Boroughs",
  27454. height: math.unit(4000, "km")
  27455. },
  27456. {
  27457. name: "Screwer of States",
  27458. height: math.unit(100000, "km")
  27459. },
  27460. {
  27461. name: "Pounder of Planets",
  27462. height: math.unit(2000000, "km")
  27463. },
  27464. ]
  27465. ))
  27466. characterMakers.push(() => makeCharacter(
  27467. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27468. {
  27469. front: {
  27470. height: math.unit(6, "feet"),
  27471. weight: math.unit(150, "lb"),
  27472. name: "Front",
  27473. image: {
  27474. source: "./media/characters/aj/front.svg",
  27475. extra: 2039 / 1562,
  27476. bottom: 40 / 2079
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Normal",
  27483. height: math.unit(11 + 6 / 12, "feet"),
  27484. default: true
  27485. },
  27486. {
  27487. name: "Megamacro",
  27488. height: math.unit(60, "megameters")
  27489. },
  27490. ]
  27491. ))
  27492. characterMakers.push(() => makeCharacter(
  27493. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27494. {
  27495. side: {
  27496. height: math.unit(31 + 8 / 12, "feet"),
  27497. weight: math.unit(75000, "kg"),
  27498. name: "Side",
  27499. image: {
  27500. source: "./media/characters/koros/side.svg",
  27501. extra: 1442 / 1297,
  27502. bottom: 122.7 / 1562
  27503. }
  27504. },
  27505. dicksKingsCrown: {
  27506. height: math.unit(6, "feet"),
  27507. name: "Dicks (King's Crown)",
  27508. image: {
  27509. source: "./media/characters/koros/dicks-kings-crown.svg"
  27510. }
  27511. },
  27512. dicksTailSet: {
  27513. height: math.unit(3, "feet"),
  27514. name: "Dicks (Tail Set)",
  27515. image: {
  27516. source: "./media/characters/koros/dicks-tail-set.svg"
  27517. }
  27518. },
  27519. dickCumming: {
  27520. height: math.unit(7.98, "feet"),
  27521. name: "Dick (Cumming)",
  27522. image: {
  27523. source: "./media/characters/koros/dick-cumming.svg"
  27524. }
  27525. },
  27526. dicksBack: {
  27527. height: math.unit(5.9, "feet"),
  27528. name: "Dicks (Back)",
  27529. image: {
  27530. source: "./media/characters/koros/dicks-back.svg"
  27531. }
  27532. },
  27533. dicksFront: {
  27534. height: math.unit(3.72, "feet"),
  27535. name: "Dicks (Front)",
  27536. image: {
  27537. source: "./media/characters/koros/dicks-front.svg"
  27538. }
  27539. },
  27540. dicksPeeking: {
  27541. height: math.unit(3.0, "feet"),
  27542. name: "Dicks (Peeking)",
  27543. image: {
  27544. source: "./media/characters/koros/dicks-peeking.svg"
  27545. }
  27546. },
  27547. eye: {
  27548. height: math.unit(1.7, "feet"),
  27549. name: "Eye",
  27550. image: {
  27551. source: "./media/characters/koros/eye.svg"
  27552. }
  27553. },
  27554. headFront: {
  27555. height: math.unit(11.69, "feet"),
  27556. name: "Head (Front)",
  27557. image: {
  27558. source: "./media/characters/koros/head-front.svg"
  27559. }
  27560. },
  27561. headSide: {
  27562. height: math.unit(14, "feet"),
  27563. name: "Head (Side)",
  27564. image: {
  27565. source: "./media/characters/koros/head-side.svg"
  27566. }
  27567. },
  27568. leg: {
  27569. height: math.unit(17, "feet"),
  27570. name: "Leg",
  27571. image: {
  27572. source: "./media/characters/koros/leg.svg"
  27573. }
  27574. },
  27575. mawSide: {
  27576. height: math.unit(12.8, "feet"),
  27577. name: "Maw (Side)",
  27578. image: {
  27579. source: "./media/characters/koros/maw-side.svg"
  27580. }
  27581. },
  27582. mawSpitting: {
  27583. height: math.unit(17, "feet"),
  27584. name: "Maw (Spitting)",
  27585. image: {
  27586. source: "./media/characters/koros/maw-spitting.svg"
  27587. }
  27588. },
  27589. slit: {
  27590. height: math.unit(2.8, "feet"),
  27591. name: "Slit",
  27592. image: {
  27593. source: "./media/characters/koros/slit.svg"
  27594. }
  27595. },
  27596. stomach: {
  27597. height: math.unit(6.8, "feet"),
  27598. preyCapacity: math.unit(20, "people"),
  27599. name: "Stomach",
  27600. image: {
  27601. source: "./media/characters/koros/stomach.svg"
  27602. }
  27603. },
  27604. wingspanBottom: {
  27605. height: math.unit(114, "feet"),
  27606. name: "Wingspan (Bottom)",
  27607. image: {
  27608. source: "./media/characters/koros/wingspan-bottom.svg"
  27609. }
  27610. },
  27611. wingspanTop: {
  27612. height: math.unit(104, "feet"),
  27613. name: "Wingspan (Top)",
  27614. image: {
  27615. source: "./media/characters/koros/wingspan-top.svg"
  27616. }
  27617. },
  27618. },
  27619. [
  27620. {
  27621. name: "Normal",
  27622. height: math.unit(31 + 8 / 12, "feet"),
  27623. default: true
  27624. },
  27625. ]
  27626. ))
  27627. characterMakers.push(() => makeCharacter(
  27628. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27629. {
  27630. front: {
  27631. height: math.unit(18 + 5 / 12, "feet"),
  27632. weight: math.unit(3750, "kg"),
  27633. name: "Front",
  27634. image: {
  27635. source: "./media/characters/vexx/front.svg",
  27636. extra: 426 / 396,
  27637. bottom: 31.5 / 458
  27638. }
  27639. },
  27640. maw: {
  27641. height: math.unit(6, "feet"),
  27642. name: "Maw",
  27643. image: {
  27644. source: "./media/characters/vexx/maw.svg"
  27645. }
  27646. },
  27647. },
  27648. [
  27649. {
  27650. name: "Normal",
  27651. height: math.unit(18 + 5 / 12, "feet"),
  27652. default: true
  27653. },
  27654. ]
  27655. ))
  27656. characterMakers.push(() => makeCharacter(
  27657. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27658. {
  27659. front: {
  27660. height: math.unit(17 + 6 / 12, "feet"),
  27661. weight: math.unit(150, "lb"),
  27662. name: "Front",
  27663. image: {
  27664. source: "./media/characters/baadra/front.svg",
  27665. extra: 1694/1553,
  27666. bottom: 179/1873
  27667. }
  27668. },
  27669. frontAlt: {
  27670. height: math.unit(17 + 6 / 12, "feet"),
  27671. weight: math.unit(150, "lb"),
  27672. name: "Front (Alt)",
  27673. image: {
  27674. source: "./media/characters/baadra/front-alt.svg",
  27675. extra: 3137 / 2890,
  27676. bottom: 168.4 / 3305
  27677. }
  27678. },
  27679. back: {
  27680. height: math.unit(17 + 6 / 12, "feet"),
  27681. weight: math.unit(150, "lb"),
  27682. name: "Back",
  27683. image: {
  27684. source: "./media/characters/baadra/back.svg",
  27685. extra: 3142 / 2890,
  27686. bottom: 220 / 3371
  27687. }
  27688. },
  27689. head: {
  27690. height: math.unit(5.45, "feet"),
  27691. name: "Head",
  27692. image: {
  27693. source: "./media/characters/baadra/head.svg"
  27694. }
  27695. },
  27696. headAngry: {
  27697. height: math.unit(4.95, "feet"),
  27698. name: "Head (Angry)",
  27699. image: {
  27700. source: "./media/characters/baadra/head-angry.svg"
  27701. }
  27702. },
  27703. headOpen: {
  27704. height: math.unit(6, "feet"),
  27705. name: "Head (Open)",
  27706. image: {
  27707. source: "./media/characters/baadra/head-open.svg"
  27708. }
  27709. },
  27710. },
  27711. [
  27712. {
  27713. name: "Normal",
  27714. height: math.unit(17 + 6 / 12, "feet"),
  27715. default: true
  27716. },
  27717. ]
  27718. ))
  27719. characterMakers.push(() => makeCharacter(
  27720. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27721. {
  27722. front: {
  27723. height: math.unit(7 + 3 / 12, "feet"),
  27724. weight: math.unit(180, "lb"),
  27725. name: "Front",
  27726. image: {
  27727. source: "./media/characters/juri/front.svg",
  27728. extra: 1401 / 1237,
  27729. bottom: 18.5 / 1418
  27730. }
  27731. },
  27732. side: {
  27733. height: math.unit(7 + 3 / 12, "feet"),
  27734. weight: math.unit(180, "lb"),
  27735. name: "Side",
  27736. image: {
  27737. source: "./media/characters/juri/side.svg",
  27738. extra: 1424 / 1242,
  27739. bottom: 18.5 / 1447
  27740. }
  27741. },
  27742. sitting: {
  27743. height: math.unit(6, "feet"),
  27744. weight: math.unit(180, "lb"),
  27745. name: "Sitting",
  27746. image: {
  27747. source: "./media/characters/juri/sitting.svg",
  27748. extra: 1270 / 1143,
  27749. bottom: 100 / 1343
  27750. }
  27751. },
  27752. back: {
  27753. height: math.unit(7 + 3 / 12, "feet"),
  27754. weight: math.unit(180, "lb"),
  27755. name: "Back",
  27756. image: {
  27757. source: "./media/characters/juri/back.svg",
  27758. extra: 1377 / 1240,
  27759. bottom: 23.7 / 1405
  27760. }
  27761. },
  27762. maw: {
  27763. height: math.unit(2.8, "feet"),
  27764. name: "Maw",
  27765. image: {
  27766. source: "./media/characters/juri/maw.svg"
  27767. }
  27768. },
  27769. stomach: {
  27770. height: math.unit(0.89, "feet"),
  27771. preyCapacity: math.unit(4, "liters"),
  27772. name: "Stomach",
  27773. image: {
  27774. source: "./media/characters/juri/stomach.svg"
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(7 + 3 / 12, "feet"),
  27782. default: true
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27788. {
  27789. fox: {
  27790. height: math.unit(5 + 6 / 12, "feet"),
  27791. weight: math.unit(140, "lb"),
  27792. name: "Fox",
  27793. image: {
  27794. source: "./media/characters/maxene-sita/fox.svg",
  27795. extra: 146 / 138,
  27796. bottom: 2.1 / 148.19
  27797. }
  27798. },
  27799. foxLaying: {
  27800. height: math.unit(1.70, "feet"),
  27801. weight: math.unit(140, "lb"),
  27802. name: "Fox (Laying)",
  27803. image: {
  27804. source: "./media/characters/maxene-sita/fox-laying.svg",
  27805. extra: 910 / 572,
  27806. bottom: 71 / 981
  27807. }
  27808. },
  27809. kitsune: {
  27810. height: math.unit(10, "feet"),
  27811. weight: math.unit(800, "lb"),
  27812. name: "Kitsune",
  27813. image: {
  27814. source: "./media/characters/maxene-sita/kitsune.svg",
  27815. extra: 185 / 176,
  27816. bottom: 4.7 / 189.9
  27817. }
  27818. },
  27819. hellhound: {
  27820. height: math.unit(10, "feet"),
  27821. weight: math.unit(700, "lb"),
  27822. name: "Hellhound",
  27823. image: {
  27824. source: "./media/characters/maxene-sita/hellhound.svg",
  27825. extra: 1600 / 1545,
  27826. bottom: 81 / 1681
  27827. }
  27828. },
  27829. },
  27830. [
  27831. {
  27832. name: "Normal",
  27833. height: math.unit(5 + 6 / 12, "feet"),
  27834. default: true
  27835. },
  27836. ]
  27837. ))
  27838. characterMakers.push(() => makeCharacter(
  27839. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27840. {
  27841. front: {
  27842. height: math.unit(3 + 4 / 12, "feet"),
  27843. weight: math.unit(70, "lb"),
  27844. name: "Front",
  27845. image: {
  27846. source: "./media/characters/maia/front.svg",
  27847. extra: 227 / 219.5,
  27848. bottom: 40 / 267
  27849. }
  27850. },
  27851. back: {
  27852. height: math.unit(3 + 4 / 12, "feet"),
  27853. weight: math.unit(70, "lb"),
  27854. name: "Back",
  27855. image: {
  27856. source: "./media/characters/maia/back.svg",
  27857. extra: 237 / 225
  27858. }
  27859. },
  27860. },
  27861. [
  27862. {
  27863. name: "Normal",
  27864. height: math.unit(3 + 4 / 12, "feet"),
  27865. default: true
  27866. },
  27867. ]
  27868. ))
  27869. characterMakers.push(() => makeCharacter(
  27870. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27871. {
  27872. front: {
  27873. height: math.unit(5 + 10 / 12, "feet"),
  27874. weight: math.unit(197, "lb"),
  27875. name: "Front",
  27876. image: {
  27877. source: "./media/characters/jabaro/front.svg",
  27878. extra: 225 / 216,
  27879. bottom: 5.06 / 230
  27880. }
  27881. },
  27882. back: {
  27883. height: math.unit(5 + 10 / 12, "feet"),
  27884. weight: math.unit(197, "lb"),
  27885. name: "Back",
  27886. image: {
  27887. source: "./media/characters/jabaro/back.svg",
  27888. extra: 225 / 219,
  27889. bottom: 1.9 / 227
  27890. }
  27891. },
  27892. },
  27893. [
  27894. {
  27895. name: "Normal",
  27896. height: math.unit(5 + 10 / 12, "feet"),
  27897. default: true
  27898. },
  27899. ]
  27900. ))
  27901. characterMakers.push(() => makeCharacter(
  27902. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27903. {
  27904. front: {
  27905. height: math.unit(5 + 8 / 12, "feet"),
  27906. weight: math.unit(139, "lb"),
  27907. name: "Front",
  27908. image: {
  27909. source: "./media/characters/risa/front.svg",
  27910. extra: 270 / 260,
  27911. bottom: 11.2 / 282
  27912. }
  27913. },
  27914. back: {
  27915. height: math.unit(5 + 8 / 12, "feet"),
  27916. weight: math.unit(139, "lb"),
  27917. name: "Back",
  27918. image: {
  27919. source: "./media/characters/risa/back.svg",
  27920. extra: 264 / 255,
  27921. bottom: 4 / 268
  27922. }
  27923. },
  27924. },
  27925. [
  27926. {
  27927. name: "Normal",
  27928. height: math.unit(5 + 8 / 12, "feet"),
  27929. default: true
  27930. },
  27931. ]
  27932. ))
  27933. characterMakers.push(() => makeCharacter(
  27934. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27935. {
  27936. front: {
  27937. height: math.unit(2 + 11 / 12, "feet"),
  27938. weight: math.unit(30, "lb"),
  27939. name: "Front",
  27940. image: {
  27941. source: "./media/characters/weatley/front.svg",
  27942. bottom: 10.7 / 414,
  27943. extra: 403.5 / 362
  27944. }
  27945. },
  27946. back: {
  27947. height: math.unit(2 + 11 / 12, "feet"),
  27948. weight: math.unit(30, "lb"),
  27949. name: "Back",
  27950. image: {
  27951. source: "./media/characters/weatley/back.svg",
  27952. bottom: 10.7 / 414,
  27953. extra: 403.5 / 362
  27954. }
  27955. },
  27956. },
  27957. [
  27958. {
  27959. name: "Normal",
  27960. height: math.unit(2 + 11 / 12, "feet"),
  27961. default: true
  27962. },
  27963. ]
  27964. ))
  27965. characterMakers.push(() => makeCharacter(
  27966. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27967. {
  27968. front: {
  27969. height: math.unit(5 + 2 / 12, "feet"),
  27970. weight: math.unit(50, "kg"),
  27971. name: "Front",
  27972. image: {
  27973. source: "./media/characters/mercury-crescent/front.svg",
  27974. extra: 1088 / 1033,
  27975. bottom: 18.9 / 1109
  27976. }
  27977. },
  27978. },
  27979. [
  27980. {
  27981. name: "Normal",
  27982. height: math.unit(5 + 2 / 12, "feet"),
  27983. default: true
  27984. },
  27985. ]
  27986. ))
  27987. characterMakers.push(() => makeCharacter(
  27988. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27989. {
  27990. front: {
  27991. height: math.unit(2, "feet"),
  27992. weight: math.unit(15, "kg"),
  27993. name: "Front",
  27994. image: {
  27995. source: "./media/characters/diamond-jones/front.svg",
  27996. extra: 727/723,
  27997. bottom: 46/773
  27998. }
  27999. },
  28000. },
  28001. [
  28002. {
  28003. name: "Normal",
  28004. height: math.unit(2, "feet"),
  28005. default: true
  28006. },
  28007. ]
  28008. ))
  28009. characterMakers.push(() => makeCharacter(
  28010. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28011. {
  28012. front: {
  28013. height: math.unit(3, "feet"),
  28014. weight: math.unit(30, "kg"),
  28015. name: "Front",
  28016. image: {
  28017. source: "./media/characters/sweet-bit/front.svg",
  28018. extra: 675 / 567,
  28019. bottom: 27.7 / 703
  28020. }
  28021. },
  28022. },
  28023. [
  28024. {
  28025. name: "Normal",
  28026. height: math.unit(3, "feet"),
  28027. default: true
  28028. },
  28029. ]
  28030. ))
  28031. characterMakers.push(() => makeCharacter(
  28032. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28033. {
  28034. side: {
  28035. height: math.unit(9.178, "feet"),
  28036. weight: math.unit(500, "lb"),
  28037. name: "Side",
  28038. image: {
  28039. source: "./media/characters/umbrazen/side.svg",
  28040. extra: 1730 / 1473,
  28041. bottom: 34.6 / 1765
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Normal",
  28048. height: math.unit(9.178, "feet"),
  28049. default: true
  28050. },
  28051. ]
  28052. ))
  28053. characterMakers.push(() => makeCharacter(
  28054. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28055. {
  28056. front: {
  28057. height: math.unit(10, "feet"),
  28058. weight: math.unit(750, "lb"),
  28059. name: "Front",
  28060. image: {
  28061. source: "./media/characters/arlist/front.svg",
  28062. extra: 961 / 778,
  28063. bottom: 6.2 / 986
  28064. }
  28065. },
  28066. },
  28067. [
  28068. {
  28069. name: "Normal",
  28070. height: math.unit(10, "feet"),
  28071. default: true
  28072. },
  28073. ]
  28074. ))
  28075. characterMakers.push(() => makeCharacter(
  28076. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28077. {
  28078. front: {
  28079. height: math.unit(5 + 1 / 12, "feet"),
  28080. weight: math.unit(110, "lb"),
  28081. name: "Front",
  28082. image: {
  28083. source: "./media/characters/aradel/front.svg",
  28084. extra: 324 / 303,
  28085. bottom: 3.6 / 329.4
  28086. }
  28087. },
  28088. },
  28089. [
  28090. {
  28091. name: "Normal",
  28092. height: math.unit(5 + 1 / 12, "feet"),
  28093. default: true
  28094. },
  28095. ]
  28096. ))
  28097. characterMakers.push(() => makeCharacter(
  28098. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28099. {
  28100. dressed: {
  28101. height: math.unit(3 + 8 / 12, "feet"),
  28102. weight: math.unit(50, "lb"),
  28103. name: "Dressed",
  28104. image: {
  28105. source: "./media/characters/serryn/dressed.svg",
  28106. extra: 1792 / 1656,
  28107. bottom: 43.5 / 1840
  28108. }
  28109. },
  28110. nude: {
  28111. height: math.unit(3 + 8 / 12, "feet"),
  28112. weight: math.unit(50, "lb"),
  28113. name: "Nude",
  28114. image: {
  28115. source: "./media/characters/serryn/nude.svg",
  28116. extra: 1792 / 1656,
  28117. bottom: 43.5 / 1840
  28118. }
  28119. },
  28120. },
  28121. [
  28122. {
  28123. name: "Normal",
  28124. height: math.unit(3 + 8 / 12, "feet"),
  28125. default: true
  28126. },
  28127. ]
  28128. ))
  28129. characterMakers.push(() => makeCharacter(
  28130. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28131. {
  28132. front: {
  28133. height: math.unit(7 + 10 / 12, "feet"),
  28134. weight: math.unit(255, "lb"),
  28135. name: "Front",
  28136. image: {
  28137. source: "./media/characters/xavier-thyme/front.svg",
  28138. extra: 3733 / 3642,
  28139. bottom: 131 / 3869
  28140. }
  28141. },
  28142. frontRaven: {
  28143. height: math.unit(7 + 10 / 12, "feet"),
  28144. weight: math.unit(255, "lb"),
  28145. name: "Front (Raven)",
  28146. image: {
  28147. source: "./media/characters/xavier-thyme/front-raven.svg",
  28148. extra: 4385 / 3642,
  28149. bottom: 131 / 4517
  28150. }
  28151. },
  28152. },
  28153. [
  28154. {
  28155. name: "Normal",
  28156. height: math.unit(7 + 10 / 12, "feet"),
  28157. default: true
  28158. },
  28159. ]
  28160. ))
  28161. characterMakers.push(() => makeCharacter(
  28162. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28163. {
  28164. front: {
  28165. height: math.unit(1.6, "m"),
  28166. weight: math.unit(50, "kg"),
  28167. name: "Front",
  28168. image: {
  28169. source: "./media/characters/kiki/front.svg",
  28170. extra: 4682 / 3610,
  28171. bottom: 115 / 4777
  28172. }
  28173. },
  28174. },
  28175. [
  28176. {
  28177. name: "Normal",
  28178. height: math.unit(1.6, "meters"),
  28179. default: true
  28180. },
  28181. ]
  28182. ))
  28183. characterMakers.push(() => makeCharacter(
  28184. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28185. {
  28186. front: {
  28187. height: math.unit(50, "m"),
  28188. weight: math.unit(500, "tonnes"),
  28189. name: "Front",
  28190. image: {
  28191. source: "./media/characters/ryoko/front.svg",
  28192. extra: 4632 / 3926,
  28193. bottom: 193 / 4823
  28194. }
  28195. },
  28196. },
  28197. [
  28198. {
  28199. name: "Normal",
  28200. height: math.unit(50, "meters"),
  28201. default: true
  28202. },
  28203. ]
  28204. ))
  28205. characterMakers.push(() => makeCharacter(
  28206. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28207. {
  28208. front: {
  28209. height: math.unit(30, "m"),
  28210. weight: math.unit(22, "tonnes"),
  28211. name: "Front",
  28212. image: {
  28213. source: "./media/characters/elio/front.svg",
  28214. extra: 4582 / 3720,
  28215. bottom: 236 / 4828
  28216. }
  28217. },
  28218. },
  28219. [
  28220. {
  28221. name: "Normal",
  28222. height: math.unit(30, "meters"),
  28223. default: true
  28224. },
  28225. ]
  28226. ))
  28227. characterMakers.push(() => makeCharacter(
  28228. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28229. {
  28230. front: {
  28231. height: math.unit(6 + 3 / 12, "feet"),
  28232. weight: math.unit(120, "lb"),
  28233. name: "Front",
  28234. image: {
  28235. source: "./media/characters/azura/front.svg",
  28236. extra: 1149 / 1135,
  28237. bottom: 45 / 1194
  28238. }
  28239. },
  28240. frontClothed: {
  28241. height: math.unit(6 + 3 / 12, "feet"),
  28242. weight: math.unit(120, "lb"),
  28243. name: "Front (Clothed)",
  28244. image: {
  28245. source: "./media/characters/azura/front-clothed.svg",
  28246. extra: 1149 / 1135,
  28247. bottom: 45 / 1194
  28248. }
  28249. },
  28250. },
  28251. [
  28252. {
  28253. name: "Normal",
  28254. height: math.unit(6 + 3 / 12, "feet"),
  28255. default: true
  28256. },
  28257. {
  28258. name: "Macro",
  28259. height: math.unit(20 + 6 / 12, "feet")
  28260. },
  28261. {
  28262. name: "Megamacro",
  28263. height: math.unit(12, "miles")
  28264. },
  28265. {
  28266. name: "Gigamacro",
  28267. height: math.unit(10000, "miles")
  28268. },
  28269. {
  28270. name: "Teramacro",
  28271. height: math.unit(900000, "miles")
  28272. },
  28273. ]
  28274. ))
  28275. characterMakers.push(() => makeCharacter(
  28276. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28277. {
  28278. front: {
  28279. height: math.unit(12, "feet"),
  28280. weight: math.unit(1, "ton"),
  28281. capacity: math.unit(660000, "gallons"),
  28282. name: "Front",
  28283. image: {
  28284. source: "./media/characters/zeus/front.svg",
  28285. extra: 5005 / 4717,
  28286. bottom: 363 / 5388
  28287. }
  28288. },
  28289. },
  28290. [
  28291. {
  28292. name: "Normal",
  28293. height: math.unit(12, "feet")
  28294. },
  28295. {
  28296. name: "Preferred Size",
  28297. height: math.unit(0.5, "miles"),
  28298. default: true
  28299. },
  28300. {
  28301. name: "Giga Horse",
  28302. height: math.unit(300, "miles")
  28303. },
  28304. {
  28305. name: "Riding Planets",
  28306. height: math.unit(30, "megameters")
  28307. },
  28308. {
  28309. name: "Cosmic Giant",
  28310. height: math.unit(3, "zettameters")
  28311. },
  28312. {
  28313. name: "Breeding God",
  28314. height: math.unit(9.92e22, "yottameters")
  28315. },
  28316. ]
  28317. ))
  28318. characterMakers.push(() => makeCharacter(
  28319. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28320. {
  28321. side: {
  28322. height: math.unit(9, "feet"),
  28323. weight: math.unit(1500, "kg"),
  28324. name: "Side",
  28325. image: {
  28326. source: "./media/characters/fang/side.svg",
  28327. extra: 924 / 866,
  28328. bottom: 47.5 / 972.3
  28329. }
  28330. },
  28331. },
  28332. [
  28333. {
  28334. name: "Normal",
  28335. height: math.unit(9, "feet"),
  28336. default: true
  28337. },
  28338. {
  28339. name: "Macro",
  28340. height: math.unit(75 + 6 / 12, "feet")
  28341. },
  28342. {
  28343. name: "Teramacro",
  28344. height: math.unit(50000, "miles")
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(10, "feet"),
  28353. weight: math.unit(2, "tons"),
  28354. name: "Front",
  28355. image: {
  28356. source: "./media/characters/rekhit/front.svg",
  28357. extra: 2796 / 2590,
  28358. bottom: 225 / 3022
  28359. }
  28360. },
  28361. },
  28362. [
  28363. {
  28364. name: "Normal",
  28365. height: math.unit(10, "feet"),
  28366. default: true
  28367. },
  28368. {
  28369. name: "Macro",
  28370. height: math.unit(500, "feet")
  28371. },
  28372. ]
  28373. ))
  28374. characterMakers.push(() => makeCharacter(
  28375. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28376. {
  28377. front: {
  28378. height: math.unit(7 + 6.451 / 12, "feet"),
  28379. weight: math.unit(310, "lb"),
  28380. name: "Front",
  28381. image: {
  28382. source: "./media/characters/dahlia-verrick/front.svg",
  28383. extra: 1488 / 1365,
  28384. bottom: 6.2 / 1495
  28385. }
  28386. },
  28387. back: {
  28388. height: math.unit(7 + 6.451 / 12, "feet"),
  28389. weight: math.unit(310, "lb"),
  28390. name: "Back",
  28391. image: {
  28392. source: "./media/characters/dahlia-verrick/back.svg",
  28393. extra: 1472 / 1351,
  28394. bottom: 5.28 / 1477
  28395. }
  28396. },
  28397. frontBusiness: {
  28398. height: math.unit(7 + 6.451 / 12, "feet"),
  28399. weight: math.unit(200, "lb"),
  28400. name: "Front (Business)",
  28401. image: {
  28402. source: "./media/characters/dahlia-verrick/front-business.svg",
  28403. extra: 1478 / 1381,
  28404. bottom: 5.5 / 1484
  28405. }
  28406. },
  28407. frontCasual: {
  28408. height: math.unit(7 + 6.451 / 12, "feet"),
  28409. weight: math.unit(200, "lb"),
  28410. name: "Front (Casual)",
  28411. image: {
  28412. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28413. extra: 1478 / 1381,
  28414. bottom: 5.5 / 1484
  28415. }
  28416. },
  28417. },
  28418. [
  28419. {
  28420. name: "Travel-Sized",
  28421. height: math.unit(7.45, "inches")
  28422. },
  28423. {
  28424. name: "Normal",
  28425. height: math.unit(7 + 6.451 / 12, "feet"),
  28426. default: true
  28427. },
  28428. {
  28429. name: "Hitting the Town",
  28430. height: math.unit(37 + 8 / 12, "feet")
  28431. },
  28432. {
  28433. name: "Stomp in the Suburbs",
  28434. height: math.unit(964 + 9.728 / 12, "feet")
  28435. },
  28436. {
  28437. name: "Sit on the City",
  28438. height: math.unit(61747 + 10.592 / 12, "feet")
  28439. },
  28440. {
  28441. name: "Glomp the Globe",
  28442. height: math.unit(252919327 + 4.832 / 12, "feet")
  28443. },
  28444. ]
  28445. ))
  28446. characterMakers.push(() => makeCharacter(
  28447. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28448. {
  28449. front: {
  28450. height: math.unit(6 + 4 / 12, "feet"),
  28451. weight: math.unit(320, "lb"),
  28452. name: "Front",
  28453. image: {
  28454. source: "./media/characters/balina-mahigan/front.svg",
  28455. extra: 447 / 428,
  28456. bottom: 18 / 466
  28457. }
  28458. },
  28459. back: {
  28460. height: math.unit(6 + 4 / 12, "feet"),
  28461. weight: math.unit(320, "lb"),
  28462. name: "Back",
  28463. image: {
  28464. source: "./media/characters/balina-mahigan/back.svg",
  28465. extra: 445 / 428,
  28466. bottom: 4.07 / 448
  28467. }
  28468. },
  28469. arm: {
  28470. height: math.unit(1.88, "feet"),
  28471. name: "Arm",
  28472. image: {
  28473. source: "./media/characters/balina-mahigan/arm.svg"
  28474. }
  28475. },
  28476. backPort: {
  28477. height: math.unit(0.685, "feet"),
  28478. name: "Back Port",
  28479. image: {
  28480. source: "./media/characters/balina-mahigan/back-port.svg"
  28481. }
  28482. },
  28483. hoofpaw: {
  28484. height: math.unit(1.41, "feet"),
  28485. name: "Hoofpaw",
  28486. image: {
  28487. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28488. }
  28489. },
  28490. leftHandBack: {
  28491. height: math.unit(0.938, "feet"),
  28492. name: "Left Hand (Back)",
  28493. image: {
  28494. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28495. }
  28496. },
  28497. leftHandFront: {
  28498. height: math.unit(0.938, "feet"),
  28499. name: "Left Hand (Front)",
  28500. image: {
  28501. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28502. }
  28503. },
  28504. rightHandBack: {
  28505. height: math.unit(0.95, "feet"),
  28506. name: "Right Hand (Back)",
  28507. image: {
  28508. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28509. }
  28510. },
  28511. rightHandFront: {
  28512. height: math.unit(0.95, "feet"),
  28513. name: "Right Hand (Front)",
  28514. image: {
  28515. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28516. }
  28517. },
  28518. },
  28519. [
  28520. {
  28521. name: "Normal",
  28522. height: math.unit(6 + 4 / 12, "feet"),
  28523. default: true
  28524. },
  28525. ]
  28526. ))
  28527. characterMakers.push(() => makeCharacter(
  28528. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28529. {
  28530. front: {
  28531. height: math.unit(6, "feet"),
  28532. weight: math.unit(320, "lb"),
  28533. name: "Front",
  28534. image: {
  28535. source: "./media/characters/balina-mejeri/front.svg",
  28536. extra: 517 / 488,
  28537. bottom: 44.2 / 561
  28538. }
  28539. },
  28540. },
  28541. [
  28542. {
  28543. name: "Normal",
  28544. height: math.unit(6 + 4 / 12, "feet")
  28545. },
  28546. {
  28547. name: "Business",
  28548. height: math.unit(155, "feet"),
  28549. default: true
  28550. },
  28551. ]
  28552. ))
  28553. characterMakers.push(() => makeCharacter(
  28554. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28555. {
  28556. kneeling: {
  28557. height: math.unit(6 + 4 / 12, "feet"),
  28558. weight: math.unit(300 * 20, "lb"),
  28559. name: "Kneeling",
  28560. image: {
  28561. source: "./media/characters/balbarian/kneeling.svg",
  28562. extra: 922 / 862,
  28563. bottom: 42.4 / 965
  28564. }
  28565. },
  28566. },
  28567. [
  28568. {
  28569. name: "Normal",
  28570. height: math.unit(6 + 4 / 12, "feet")
  28571. },
  28572. {
  28573. name: "Treasured",
  28574. height: math.unit(18 + 9 / 12, "feet"),
  28575. default: true
  28576. },
  28577. {
  28578. name: "Macro",
  28579. height: math.unit(900, "feet")
  28580. },
  28581. ]
  28582. ))
  28583. characterMakers.push(() => makeCharacter(
  28584. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28585. {
  28586. front: {
  28587. height: math.unit(6 + 4 / 12, "feet"),
  28588. weight: math.unit(325, "lb"),
  28589. name: "Front",
  28590. image: {
  28591. source: "./media/characters/balina-amarini/front.svg",
  28592. extra: 415 / 403,
  28593. bottom: 19 / 433.4
  28594. }
  28595. },
  28596. back: {
  28597. height: math.unit(6 + 4 / 12, "feet"),
  28598. weight: math.unit(325, "lb"),
  28599. name: "Back",
  28600. image: {
  28601. source: "./media/characters/balina-amarini/back.svg",
  28602. extra: 415 / 403,
  28603. bottom: 13.5 / 432
  28604. }
  28605. },
  28606. overdrive: {
  28607. height: math.unit(6 + 4 / 12, "feet"),
  28608. weight: math.unit(400, "lb"),
  28609. name: "Overdrive",
  28610. image: {
  28611. source: "./media/characters/balina-amarini/overdrive.svg",
  28612. extra: 269 / 259,
  28613. bottom: 12 / 282
  28614. }
  28615. },
  28616. },
  28617. [
  28618. {
  28619. name: "Boom",
  28620. height: math.unit(9 + 10 / 12, "feet"),
  28621. default: true
  28622. },
  28623. {
  28624. name: "Macro",
  28625. height: math.unit(280, "feet")
  28626. },
  28627. ]
  28628. ))
  28629. characterMakers.push(() => makeCharacter(
  28630. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28631. {
  28632. goddess: {
  28633. height: math.unit(600, "feet"),
  28634. weight: math.unit(2000000, "tons"),
  28635. name: "Goddess",
  28636. image: {
  28637. source: "./media/characters/lady-kubwa/goddess.svg",
  28638. extra: 1240.5 / 1223,
  28639. bottom: 22 / 1263
  28640. }
  28641. },
  28642. goddesser: {
  28643. height: math.unit(900, "feet"),
  28644. weight: math.unit(20000000, "lb"),
  28645. name: "Goddess-er",
  28646. image: {
  28647. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28648. extra: 899 / 888,
  28649. bottom: 12.6 / 912
  28650. }
  28651. },
  28652. },
  28653. [
  28654. {
  28655. name: "Macro",
  28656. height: math.unit(600, "feet"),
  28657. default: true
  28658. },
  28659. {
  28660. name: "Megamacro",
  28661. height: math.unit(250, "miles")
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28667. {
  28668. front: {
  28669. height: math.unit(7 + 7 / 12, "feet"),
  28670. weight: math.unit(250, "lb"),
  28671. name: "Front",
  28672. image: {
  28673. source: "./media/characters/tala-grovehorn/front.svg",
  28674. extra: 2636 / 2525,
  28675. bottom: 147 / 2781
  28676. }
  28677. },
  28678. back: {
  28679. height: math.unit(7 + 7 / 12, "feet"),
  28680. weight: math.unit(250, "lb"),
  28681. name: "Back",
  28682. image: {
  28683. source: "./media/characters/tala-grovehorn/back.svg",
  28684. extra: 2635 / 2539,
  28685. bottom: 100 / 2732.8
  28686. }
  28687. },
  28688. mouth: {
  28689. height: math.unit(1.15, "feet"),
  28690. name: "Mouth",
  28691. image: {
  28692. source: "./media/characters/tala-grovehorn/mouth.svg"
  28693. }
  28694. },
  28695. dick: {
  28696. height: math.unit(2.36, "feet"),
  28697. name: "Dick",
  28698. image: {
  28699. source: "./media/characters/tala-grovehorn/dick.svg"
  28700. }
  28701. },
  28702. slit: {
  28703. height: math.unit(0.61, "feet"),
  28704. name: "Slit",
  28705. image: {
  28706. source: "./media/characters/tala-grovehorn/slit.svg"
  28707. }
  28708. },
  28709. },
  28710. [
  28711. ]
  28712. ))
  28713. characterMakers.push(() => makeCharacter(
  28714. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28715. {
  28716. front: {
  28717. height: math.unit(7 + 7 / 12, "feet"),
  28718. weight: math.unit(225, "lb"),
  28719. name: "Front",
  28720. image: {
  28721. source: "./media/characters/epona/front.svg",
  28722. extra: 2445 / 2290,
  28723. bottom: 251 / 2696
  28724. }
  28725. },
  28726. back: {
  28727. height: math.unit(7 + 7 / 12, "feet"),
  28728. weight: math.unit(225, "lb"),
  28729. name: "Back",
  28730. image: {
  28731. source: "./media/characters/epona/back.svg",
  28732. extra: 2546 / 2408,
  28733. bottom: 44 / 2589
  28734. }
  28735. },
  28736. genitals: {
  28737. height: math.unit(1.5, "feet"),
  28738. name: "Genitals",
  28739. image: {
  28740. source: "./media/characters/epona/genitals.svg"
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Normal",
  28747. height: math.unit(7 + 7 / 12, "feet"),
  28748. default: true
  28749. },
  28750. ]
  28751. ))
  28752. characterMakers.push(() => makeCharacter(
  28753. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28754. {
  28755. front: {
  28756. height: math.unit(7, "feet"),
  28757. weight: math.unit(518, "lb"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/avia-bloodbourn/front.svg",
  28761. extra: 1466 / 1350,
  28762. bottom: 65 / 1527
  28763. }
  28764. },
  28765. },
  28766. [
  28767. ]
  28768. ))
  28769. characterMakers.push(() => makeCharacter(
  28770. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28771. {
  28772. front: {
  28773. height: math.unit(9.35, "feet"),
  28774. weight: math.unit(600, "lb"),
  28775. name: "Front",
  28776. image: {
  28777. source: "./media/characters/amera/front.svg",
  28778. extra: 891 / 818,
  28779. bottom: 30 / 922.7
  28780. }
  28781. },
  28782. back: {
  28783. height: math.unit(9.35, "feet"),
  28784. weight: math.unit(600, "lb"),
  28785. name: "Back",
  28786. image: {
  28787. source: "./media/characters/amera/back.svg",
  28788. extra: 876 / 824,
  28789. bottom: 6.8 / 884
  28790. }
  28791. },
  28792. dick: {
  28793. height: math.unit(2.14, "feet"),
  28794. name: "Dick",
  28795. image: {
  28796. source: "./media/characters/amera/dick.svg"
  28797. }
  28798. },
  28799. },
  28800. [
  28801. {
  28802. name: "Normal",
  28803. height: math.unit(9.35, "feet"),
  28804. default: true
  28805. },
  28806. ]
  28807. ))
  28808. characterMakers.push(() => makeCharacter(
  28809. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28810. {
  28811. kneeling: {
  28812. height: math.unit(3 + 4 / 12, "feet"),
  28813. weight: math.unit(90, "lb"),
  28814. name: "Kneeling",
  28815. image: {
  28816. source: "./media/characters/rosewen/kneeling.svg",
  28817. extra: 1835 / 1571,
  28818. bottom: 27.7 / 1862
  28819. }
  28820. },
  28821. },
  28822. [
  28823. {
  28824. name: "Normal",
  28825. height: math.unit(3 + 4 / 12, "feet"),
  28826. default: true
  28827. },
  28828. ]
  28829. ))
  28830. characterMakers.push(() => makeCharacter(
  28831. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28832. {
  28833. front: {
  28834. height: math.unit(5 + 10 / 12, "feet"),
  28835. weight: math.unit(200, "lb"),
  28836. name: "Front",
  28837. image: {
  28838. source: "./media/characters/sabah/front.svg",
  28839. extra: 849 / 763,
  28840. bottom: 33.9 / 881
  28841. }
  28842. },
  28843. },
  28844. [
  28845. {
  28846. name: "Normal",
  28847. height: math.unit(5 + 10 / 12, "feet"),
  28848. default: true
  28849. },
  28850. ]
  28851. ))
  28852. characterMakers.push(() => makeCharacter(
  28853. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28854. {
  28855. front: {
  28856. height: math.unit(3 + 5 / 12, "feet"),
  28857. weight: math.unit(40, "kg"),
  28858. name: "Front",
  28859. image: {
  28860. source: "./media/characters/purple-flame/front.svg",
  28861. extra: 1577 / 1412,
  28862. bottom: 97 / 1694
  28863. }
  28864. },
  28865. frontDressed: {
  28866. height: math.unit(3 + 5 / 12, "feet"),
  28867. weight: math.unit(40, "kg"),
  28868. name: "Front (Dressed)",
  28869. image: {
  28870. source: "./media/characters/purple-flame/front-dressed.svg",
  28871. extra: 1577 / 1412,
  28872. bottom: 97 / 1694
  28873. }
  28874. },
  28875. headphones: {
  28876. height: math.unit(0.85, "feet"),
  28877. name: "Headphones",
  28878. image: {
  28879. source: "./media/characters/purple-flame/headphones.svg"
  28880. }
  28881. },
  28882. },
  28883. [
  28884. {
  28885. name: "Really Small",
  28886. height: math.unit(5, "cm")
  28887. },
  28888. {
  28889. name: "Micro",
  28890. height: math.unit(1 + 5 / 12, "feet")
  28891. },
  28892. {
  28893. name: "Normal",
  28894. height: math.unit(3 + 5 / 12, "feet"),
  28895. default: true
  28896. },
  28897. {
  28898. name: "Minimacro",
  28899. height: math.unit(125, "feet")
  28900. },
  28901. {
  28902. name: "Macro",
  28903. height: math.unit(0.5, "miles")
  28904. },
  28905. {
  28906. name: "Megamacro",
  28907. height: math.unit(50, "miles")
  28908. },
  28909. {
  28910. name: "Gigantic",
  28911. height: math.unit(750, "miles")
  28912. },
  28913. {
  28914. name: "Planetary",
  28915. height: math.unit(15000, "miles")
  28916. },
  28917. ]
  28918. ))
  28919. characterMakers.push(() => makeCharacter(
  28920. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28921. {
  28922. front: {
  28923. height: math.unit(14, "feet"),
  28924. weight: math.unit(959, "lb"),
  28925. name: "Front",
  28926. image: {
  28927. source: "./media/characters/arsenal/front.svg",
  28928. extra: 2357 / 2157,
  28929. bottom: 93 / 2458
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(14, "feet"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28943. {
  28944. front: {
  28945. height: math.unit(6, "feet"),
  28946. weight: math.unit(150, "lb"),
  28947. name: "Front",
  28948. image: {
  28949. source: "./media/characters/adira/front.svg",
  28950. extra: 1078 / 1029,
  28951. bottom: 87 / 1166
  28952. }
  28953. },
  28954. },
  28955. [
  28956. {
  28957. name: "Micro",
  28958. height: math.unit(4, "inches"),
  28959. default: true
  28960. },
  28961. {
  28962. name: "Macro",
  28963. height: math.unit(50, "feet")
  28964. },
  28965. ]
  28966. ))
  28967. characterMakers.push(() => makeCharacter(
  28968. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28969. {
  28970. front: {
  28971. height: math.unit(16, "feet"),
  28972. weight: math.unit(1000, "lb"),
  28973. name: "Front",
  28974. image: {
  28975. source: "./media/characters/grim/front.svg",
  28976. extra: 622 / 614,
  28977. bottom: 18.1 / 642
  28978. }
  28979. },
  28980. back: {
  28981. height: math.unit(16, "feet"),
  28982. weight: math.unit(1000, "lb"),
  28983. name: "Back",
  28984. image: {
  28985. source: "./media/characters/grim/back.svg",
  28986. extra: 610.6 / 602,
  28987. bottom: 40.8 / 652
  28988. }
  28989. },
  28990. hunched: {
  28991. height: math.unit(9.75, "feet"),
  28992. weight: math.unit(1000, "lb"),
  28993. name: "Hunched",
  28994. image: {
  28995. source: "./media/characters/grim/hunched.svg",
  28996. extra: 304 / 297,
  28997. bottom: 35.4 / 394
  28998. }
  28999. },
  29000. },
  29001. [
  29002. {
  29003. name: "Normal",
  29004. height: math.unit(16, "feet"),
  29005. default: true
  29006. },
  29007. ]
  29008. ))
  29009. characterMakers.push(() => makeCharacter(
  29010. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29011. {
  29012. front: {
  29013. height: math.unit(2.3, "meters"),
  29014. weight: math.unit(300, "lb"),
  29015. name: "Front",
  29016. image: {
  29017. source: "./media/characters/sinja/front-sfw.svg",
  29018. extra: 1393 / 1294,
  29019. bottom: 70 / 1463
  29020. }
  29021. },
  29022. frontNsfw: {
  29023. height: math.unit(2.3, "meters"),
  29024. weight: math.unit(300, "lb"),
  29025. name: "Front (NSFW)",
  29026. image: {
  29027. source: "./media/characters/sinja/front-nsfw.svg",
  29028. extra: 1393 / 1294,
  29029. bottom: 70 / 1463
  29030. }
  29031. },
  29032. back: {
  29033. height: math.unit(2.3, "meters"),
  29034. weight: math.unit(300, "lb"),
  29035. name: "Back",
  29036. image: {
  29037. source: "./media/characters/sinja/back.svg",
  29038. extra: 1393 / 1294,
  29039. bottom: 70 / 1463
  29040. }
  29041. },
  29042. head: {
  29043. height: math.unit(1.771, "feet"),
  29044. name: "Head",
  29045. image: {
  29046. source: "./media/characters/sinja/head.svg"
  29047. }
  29048. },
  29049. slit: {
  29050. height: math.unit(0.8, "feet"),
  29051. name: "Slit",
  29052. image: {
  29053. source: "./media/characters/sinja/slit.svg"
  29054. }
  29055. },
  29056. },
  29057. [
  29058. {
  29059. name: "Normal",
  29060. height: math.unit(2.3, "meters")
  29061. },
  29062. {
  29063. name: "Macro",
  29064. height: math.unit(91, "meters"),
  29065. default: true
  29066. },
  29067. {
  29068. name: "Megamacro",
  29069. height: math.unit(91440, "meters")
  29070. },
  29071. {
  29072. name: "Gigamacro",
  29073. height: math.unit(60960000, "meters")
  29074. },
  29075. {
  29076. name: "Teramacro",
  29077. height: math.unit(9144000000, "meters")
  29078. },
  29079. ]
  29080. ))
  29081. characterMakers.push(() => makeCharacter(
  29082. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29083. {
  29084. front: {
  29085. height: math.unit(1.7, "meters"),
  29086. weight: math.unit(130, "lb"),
  29087. name: "Front",
  29088. image: {
  29089. source: "./media/characters/kyu/front.svg",
  29090. extra: 415 / 395,
  29091. bottom: 5 / 420
  29092. }
  29093. },
  29094. head: {
  29095. height: math.unit(1.75, "feet"),
  29096. name: "Head",
  29097. image: {
  29098. source: "./media/characters/kyu/head.svg"
  29099. }
  29100. },
  29101. foot: {
  29102. height: math.unit(0.81, "feet"),
  29103. name: "Foot",
  29104. image: {
  29105. source: "./media/characters/kyu/foot.svg"
  29106. }
  29107. },
  29108. },
  29109. [
  29110. {
  29111. name: "Normal",
  29112. height: math.unit(1.7, "meters")
  29113. },
  29114. {
  29115. name: "Macro",
  29116. height: math.unit(131, "feet"),
  29117. default: true
  29118. },
  29119. {
  29120. name: "Megamacro",
  29121. height: math.unit(91440, "meters")
  29122. },
  29123. {
  29124. name: "Gigamacro",
  29125. height: math.unit(60960000, "meters")
  29126. },
  29127. {
  29128. name: "Teramacro",
  29129. height: math.unit(9144000000, "meters")
  29130. },
  29131. ]
  29132. ))
  29133. characterMakers.push(() => makeCharacter(
  29134. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29135. {
  29136. front: {
  29137. height: math.unit(7 + 1 / 12, "feet"),
  29138. weight: math.unit(250, "lb"),
  29139. name: "Front",
  29140. image: {
  29141. source: "./media/characters/joey/front.svg",
  29142. extra: 1791 / 1537,
  29143. bottom: 28 / 1816
  29144. }
  29145. },
  29146. },
  29147. [
  29148. {
  29149. name: "Micro",
  29150. height: math.unit(3, "inches")
  29151. },
  29152. {
  29153. name: "Normal",
  29154. height: math.unit(7 + 1 / 12, "feet"),
  29155. default: true
  29156. },
  29157. ]
  29158. ))
  29159. characterMakers.push(() => makeCharacter(
  29160. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29161. {
  29162. front: {
  29163. height: math.unit(165, "cm"),
  29164. weight: math.unit(140, "lb"),
  29165. name: "Front",
  29166. image: {
  29167. source: "./media/characters/sam-evans/front.svg",
  29168. extra: 3417 / 3230,
  29169. bottom: 41.3 / 3417
  29170. }
  29171. },
  29172. frontSixTails: {
  29173. height: math.unit(165, "cm"),
  29174. weight: math.unit(140, "lb"),
  29175. name: "Front-six-tails",
  29176. image: {
  29177. source: "./media/characters/sam-evans/front-six-tails.svg",
  29178. extra: 3417 / 3230,
  29179. bottom: 41.3 / 3417
  29180. }
  29181. },
  29182. back: {
  29183. height: math.unit(165, "cm"),
  29184. weight: math.unit(140, "lb"),
  29185. name: "Back",
  29186. image: {
  29187. source: "./media/characters/sam-evans/back.svg",
  29188. extra: 3227 / 3032,
  29189. bottom: 6.8 / 3234
  29190. }
  29191. },
  29192. face: {
  29193. height: math.unit(0.68, "feet"),
  29194. name: "Face",
  29195. image: {
  29196. source: "./media/characters/sam-evans/face.svg"
  29197. }
  29198. },
  29199. },
  29200. [
  29201. {
  29202. name: "Normal",
  29203. height: math.unit(165, "cm"),
  29204. default: true
  29205. },
  29206. {
  29207. name: "Macro",
  29208. height: math.unit(100, "meters")
  29209. },
  29210. {
  29211. name: "Macro+",
  29212. height: math.unit(800, "meters")
  29213. },
  29214. {
  29215. name: "Macro++",
  29216. height: math.unit(3, "km")
  29217. },
  29218. {
  29219. name: "Macro+++",
  29220. height: math.unit(30, "km")
  29221. },
  29222. ]
  29223. ))
  29224. characterMakers.push(() => makeCharacter(
  29225. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29226. {
  29227. front: {
  29228. height: math.unit(10, "feet"),
  29229. weight: math.unit(750, "lb"),
  29230. name: "Front",
  29231. image: {
  29232. source: "./media/characters/juliet-a/front.svg",
  29233. extra: 1766 / 1720,
  29234. bottom: 43 / 1809
  29235. }
  29236. },
  29237. back: {
  29238. height: math.unit(10, "feet"),
  29239. weight: math.unit(750, "lb"),
  29240. name: "Back",
  29241. image: {
  29242. source: "./media/characters/juliet-a/back.svg",
  29243. extra: 1781 / 1734,
  29244. bottom: 35 / 1810,
  29245. }
  29246. },
  29247. },
  29248. [
  29249. {
  29250. name: "Normal",
  29251. height: math.unit(10, "feet"),
  29252. default: true
  29253. },
  29254. {
  29255. name: "Dragon Form",
  29256. height: math.unit(250, "feet")
  29257. },
  29258. {
  29259. name: "Macro",
  29260. height: math.unit(1000, "feet")
  29261. },
  29262. {
  29263. name: "Megamacro",
  29264. height: math.unit(10000, "feet")
  29265. }
  29266. ]
  29267. ))
  29268. characterMakers.push(() => makeCharacter(
  29269. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29270. {
  29271. regular: {
  29272. height: math.unit(7 + 3 / 12, "feet"),
  29273. weight: math.unit(260, "lb"),
  29274. name: "Regular",
  29275. image: {
  29276. source: "./media/characters/wild/regular.svg",
  29277. extra: 97.45 / 92,
  29278. bottom: 6.8 / 104.3
  29279. }
  29280. },
  29281. biggums: {
  29282. height: math.unit(8 + 6 / 12, "feet"),
  29283. weight: math.unit(425, "lb"),
  29284. name: "Biggums",
  29285. image: {
  29286. source: "./media/characters/wild/biggums.svg",
  29287. extra: 97.45 / 92,
  29288. bottom: 7.5 / 132.34
  29289. }
  29290. },
  29291. mawRegular: {
  29292. height: math.unit(1.24, "feet"),
  29293. name: "Maw (Regular)",
  29294. image: {
  29295. source: "./media/characters/wild/maw.svg"
  29296. }
  29297. },
  29298. mawBiggums: {
  29299. height: math.unit(1.47, "feet"),
  29300. name: "Maw (Biggums)",
  29301. image: {
  29302. source: "./media/characters/wild/maw.svg"
  29303. }
  29304. },
  29305. },
  29306. [
  29307. {
  29308. name: "Normal",
  29309. height: math.unit(7 + 3 / 12, "feet"),
  29310. default: true
  29311. },
  29312. ]
  29313. ))
  29314. characterMakers.push(() => makeCharacter(
  29315. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29316. {
  29317. front: {
  29318. height: math.unit(2.5, "meters"),
  29319. weight: math.unit(200, "kg"),
  29320. name: "Front",
  29321. image: {
  29322. source: "./media/characters/vidar/front.svg",
  29323. extra: 2994 / 2795,
  29324. bottom: 56 / 3061
  29325. }
  29326. },
  29327. back: {
  29328. height: math.unit(2.5, "meters"),
  29329. weight: math.unit(200, "kg"),
  29330. name: "Back",
  29331. image: {
  29332. source: "./media/characters/vidar/back.svg",
  29333. extra: 3131 / 2928,
  29334. bottom: 13.5 / 3141.5
  29335. }
  29336. },
  29337. feral: {
  29338. height: math.unit(2.5, "meters"),
  29339. weight: math.unit(2000, "kg"),
  29340. name: "Feral",
  29341. image: {
  29342. source: "./media/characters/vidar/feral.svg",
  29343. extra: 2790 / 1765,
  29344. bottom: 6 / 2796
  29345. }
  29346. },
  29347. },
  29348. [
  29349. {
  29350. name: "Normal",
  29351. height: math.unit(2.5, "meters"),
  29352. default: true
  29353. },
  29354. {
  29355. name: "Macro",
  29356. height: math.unit(100, "meters")
  29357. },
  29358. ]
  29359. ))
  29360. characterMakers.push(() => makeCharacter(
  29361. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29362. {
  29363. front: {
  29364. height: math.unit(5 + 9 / 12, "feet"),
  29365. weight: math.unit(120, "lb"),
  29366. name: "Front",
  29367. image: {
  29368. source: "./media/characters/ash/front.svg",
  29369. extra: 2189 / 1961,
  29370. bottom: 5.2 / 2194
  29371. }
  29372. },
  29373. },
  29374. [
  29375. {
  29376. name: "Normal",
  29377. height: math.unit(5 + 9 / 12, "feet"),
  29378. default: true
  29379. },
  29380. ]
  29381. ))
  29382. characterMakers.push(() => makeCharacter(
  29383. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29384. {
  29385. front: {
  29386. height: math.unit(9, "feet"),
  29387. weight: math.unit(10000, "lb"),
  29388. name: "Front",
  29389. image: {
  29390. source: "./media/characters/gygabite/front.svg",
  29391. bottom: 31.7 / 537.8,
  29392. extra: 505 / 370
  29393. }
  29394. },
  29395. },
  29396. [
  29397. {
  29398. name: "Normal",
  29399. height: math.unit(9, "feet"),
  29400. default: true
  29401. },
  29402. ]
  29403. ))
  29404. characterMakers.push(() => makeCharacter(
  29405. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29406. {
  29407. front: {
  29408. height: math.unit(12, "feet"),
  29409. weight: math.unit(4000, "lb"),
  29410. name: "Front",
  29411. image: {
  29412. source: "./media/characters/p0tat0/front.svg",
  29413. extra: 1065 / 921,
  29414. bottom: 55.7 / 1121.25
  29415. }
  29416. },
  29417. },
  29418. [
  29419. {
  29420. name: "Normal",
  29421. height: math.unit(12, "feet"),
  29422. default: true
  29423. },
  29424. ]
  29425. ))
  29426. characterMakers.push(() => makeCharacter(
  29427. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29428. {
  29429. side: {
  29430. height: math.unit(6.5, "feet"),
  29431. weight: math.unit(800, "lb"),
  29432. name: "Side",
  29433. image: {
  29434. source: "./media/characters/dusk/side.svg",
  29435. extra: 615 / 373,
  29436. bottom: 53 / 664
  29437. }
  29438. },
  29439. sitting: {
  29440. height: math.unit(7, "feet"),
  29441. weight: math.unit(800, "lb"),
  29442. name: "Sitting",
  29443. image: {
  29444. source: "./media/characters/dusk/sitting.svg",
  29445. extra: 753 / 425,
  29446. bottom: 33 / 774
  29447. }
  29448. },
  29449. head: {
  29450. height: math.unit(6.1, "feet"),
  29451. name: "Head",
  29452. image: {
  29453. source: "./media/characters/dusk/head.svg"
  29454. }
  29455. },
  29456. },
  29457. [
  29458. {
  29459. name: "Normal",
  29460. height: math.unit(7, "feet"),
  29461. default: true
  29462. },
  29463. ]
  29464. ))
  29465. characterMakers.push(() => makeCharacter(
  29466. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29467. {
  29468. front: {
  29469. height: math.unit(15, "feet"),
  29470. weight: math.unit(7000, "lb"),
  29471. name: "Front",
  29472. image: {
  29473. source: "./media/characters/jay-direwolf/front.svg",
  29474. extra: 1810 / 1732,
  29475. bottom: 66 / 1892
  29476. }
  29477. },
  29478. },
  29479. [
  29480. {
  29481. name: "Normal",
  29482. height: math.unit(15, "feet"),
  29483. default: true
  29484. },
  29485. ]
  29486. ))
  29487. characterMakers.push(() => makeCharacter(
  29488. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29489. {
  29490. front: {
  29491. height: math.unit(4 + 9 / 12, "feet"),
  29492. weight: math.unit(130, "lb"),
  29493. name: "Front",
  29494. image: {
  29495. source: "./media/characters/anchovie/front.svg",
  29496. extra: 382 / 350,
  29497. bottom: 25 / 409
  29498. }
  29499. },
  29500. back: {
  29501. height: math.unit(4 + 9 / 12, "feet"),
  29502. weight: math.unit(130, "lb"),
  29503. name: "Back",
  29504. image: {
  29505. source: "./media/characters/anchovie/back.svg",
  29506. extra: 385 / 352,
  29507. bottom: 16.6 / 402
  29508. }
  29509. },
  29510. frontDressed: {
  29511. height: math.unit(4 + 9 / 12, "feet"),
  29512. weight: math.unit(130, "lb"),
  29513. name: "Front (Dressed)",
  29514. image: {
  29515. source: "./media/characters/anchovie/front-dressed.svg",
  29516. extra: 382 / 350,
  29517. bottom: 25 / 409
  29518. }
  29519. },
  29520. backDressed: {
  29521. height: math.unit(4 + 9 / 12, "feet"),
  29522. weight: math.unit(130, "lb"),
  29523. name: "Back (Dressed)",
  29524. image: {
  29525. source: "./media/characters/anchovie/back-dressed.svg",
  29526. extra: 385 / 352,
  29527. bottom: 16.6 / 402
  29528. }
  29529. },
  29530. },
  29531. [
  29532. {
  29533. name: "Micro",
  29534. height: math.unit(6.4, "inches")
  29535. },
  29536. {
  29537. name: "Normal",
  29538. height: math.unit(4 + 9 / 12, "feet"),
  29539. default: true
  29540. },
  29541. ]
  29542. ))
  29543. characterMakers.push(() => makeCharacter(
  29544. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29545. {
  29546. front: {
  29547. height: math.unit(2, "meters"),
  29548. weight: math.unit(180, "lb"),
  29549. name: "Front",
  29550. image: {
  29551. source: "./media/characters/acidrenamon/front.svg",
  29552. extra: 987 / 890,
  29553. bottom: 22.8 / 1009
  29554. }
  29555. },
  29556. back: {
  29557. height: math.unit(2, "meters"),
  29558. weight: math.unit(180, "lb"),
  29559. name: "Back",
  29560. image: {
  29561. source: "./media/characters/acidrenamon/back.svg",
  29562. extra: 983 / 891,
  29563. bottom: 8.4 / 992
  29564. }
  29565. },
  29566. head: {
  29567. height: math.unit(1.92, "feet"),
  29568. name: "Head",
  29569. image: {
  29570. source: "./media/characters/acidrenamon/head.svg"
  29571. }
  29572. },
  29573. rump: {
  29574. height: math.unit(1.72, "feet"),
  29575. name: "Rump",
  29576. image: {
  29577. source: "./media/characters/acidrenamon/rump.svg"
  29578. }
  29579. },
  29580. tail: {
  29581. height: math.unit(4.2, "feet"),
  29582. name: "Tail",
  29583. image: {
  29584. source: "./media/characters/acidrenamon/tail.svg"
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Normal",
  29591. height: math.unit(2, "meters"),
  29592. default: true
  29593. },
  29594. {
  29595. name: "Minimacro",
  29596. height: math.unit(7, "meters")
  29597. },
  29598. {
  29599. name: "Macro",
  29600. height: math.unit(200, "meters")
  29601. },
  29602. {
  29603. name: "Gigamacro",
  29604. height: math.unit(0.2, "earths")
  29605. },
  29606. ]
  29607. ))
  29608. characterMakers.push(() => makeCharacter(
  29609. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29610. {
  29611. front: {
  29612. height: math.unit(152, "feet"),
  29613. name: "Front",
  29614. image: {
  29615. source: "./media/characters/kenzie-lee/front.svg",
  29616. extra: 1869/1774,
  29617. bottom: 128/1997
  29618. }
  29619. },
  29620. side: {
  29621. height: math.unit(86, "feet"),
  29622. name: "Side",
  29623. image: {
  29624. source: "./media/characters/kenzie-lee/side.svg",
  29625. extra: 930/815,
  29626. bottom: 177/1107
  29627. }
  29628. },
  29629. paw: {
  29630. height: math.unit(15, "feet"),
  29631. name: "Paw",
  29632. image: {
  29633. source: "./media/characters/kenzie-lee/paw.svg"
  29634. }
  29635. },
  29636. },
  29637. [
  29638. {
  29639. name: "Kenzie Flea",
  29640. height: math.unit(2, "mm"),
  29641. default: true
  29642. },
  29643. {
  29644. name: "Micro",
  29645. height: math.unit(2, "inches")
  29646. },
  29647. {
  29648. name: "Normal",
  29649. height: math.unit(152, "feet")
  29650. },
  29651. {
  29652. name: "Megamacro",
  29653. height: math.unit(7, "miles")
  29654. },
  29655. {
  29656. name: "Gigamacro",
  29657. height: math.unit(8000, "miles")
  29658. },
  29659. ]
  29660. ))
  29661. characterMakers.push(() => makeCharacter(
  29662. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29663. {
  29664. front: {
  29665. height: math.unit(6, "feet"),
  29666. name: "Front",
  29667. image: {
  29668. source: "./media/characters/withers/front.svg",
  29669. extra: 1935/1760,
  29670. bottom: 72/2007
  29671. }
  29672. },
  29673. back: {
  29674. height: math.unit(6, "feet"),
  29675. name: "Back",
  29676. image: {
  29677. source: "./media/characters/withers/back.svg",
  29678. extra: 1944/1792,
  29679. bottom: 12/1956
  29680. }
  29681. },
  29682. dressed: {
  29683. height: math.unit(6, "feet"),
  29684. name: "Dressed",
  29685. image: {
  29686. source: "./media/characters/withers/dressed.svg",
  29687. extra: 1937/1765,
  29688. bottom: 73/2010
  29689. }
  29690. },
  29691. phase1: {
  29692. height: math.unit(1.1, "feet"),
  29693. name: "Phase 1",
  29694. image: {
  29695. source: "./media/characters/withers/phase-1.svg",
  29696. extra: 1885/1232,
  29697. bottom: 0/1885
  29698. }
  29699. },
  29700. phase2: {
  29701. height: math.unit(1.05, "feet"),
  29702. name: "Phase 2",
  29703. image: {
  29704. source: "./media/characters/withers/phase-2.svg",
  29705. extra: 1792/1090,
  29706. bottom: 0/1792
  29707. }
  29708. },
  29709. partyWipe: {
  29710. height: math.unit(1.1, "feet"),
  29711. name: "Party Wipe",
  29712. image: {
  29713. source: "./media/characters/withers/party-wipe.svg",
  29714. extra: 1864/1207,
  29715. bottom: 0/1864
  29716. }
  29717. },
  29718. },
  29719. [
  29720. {
  29721. name: "Macro",
  29722. height: math.unit(167, "feet"),
  29723. default: true
  29724. },
  29725. {
  29726. name: "Megamacro",
  29727. height: math.unit(15, "miles")
  29728. }
  29729. ]
  29730. ))
  29731. characterMakers.push(() => makeCharacter(
  29732. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29733. {
  29734. front: {
  29735. height: math.unit(6 + 7 / 12, "feet"),
  29736. weight: math.unit(250, "lb"),
  29737. name: "Front",
  29738. image: {
  29739. source: "./media/characters/nemoskii/front.svg",
  29740. extra: 2270 / 1734,
  29741. bottom: 86 / 2354
  29742. }
  29743. },
  29744. back: {
  29745. height: math.unit(6 + 7 / 12, "feet"),
  29746. weight: math.unit(250, "lb"),
  29747. name: "Back",
  29748. image: {
  29749. source: "./media/characters/nemoskii/back.svg",
  29750. extra: 1845 / 1788,
  29751. bottom: 10.5 / 1852
  29752. }
  29753. },
  29754. head: {
  29755. height: math.unit(1.31, "feet"),
  29756. name: "Head",
  29757. image: {
  29758. source: "./media/characters/nemoskii/head.svg"
  29759. }
  29760. },
  29761. },
  29762. [
  29763. {
  29764. name: "Micro",
  29765. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29766. },
  29767. {
  29768. name: "Normal",
  29769. height: math.unit(6 + 7 / 12, "feet"),
  29770. default: true
  29771. },
  29772. {
  29773. name: "Macro",
  29774. height: math.unit((6 + 7 / 12) * 150, "feet")
  29775. },
  29776. {
  29777. name: "Macro+",
  29778. height: math.unit((6 + 7 / 12) * 500, "feet")
  29779. },
  29780. {
  29781. name: "Megamacro",
  29782. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29783. },
  29784. ]
  29785. ))
  29786. characterMakers.push(() => makeCharacter(
  29787. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29788. {
  29789. front: {
  29790. height: math.unit(1, "mile"),
  29791. weight: math.unit(265261.9, "lb"),
  29792. name: "Front",
  29793. image: {
  29794. source: "./media/characters/shui/front.svg",
  29795. extra: 1633 / 1564,
  29796. bottom: 91.5 / 1726
  29797. }
  29798. },
  29799. },
  29800. [
  29801. {
  29802. name: "Macro",
  29803. height: math.unit(1, "mile"),
  29804. default: true
  29805. },
  29806. ]
  29807. ))
  29808. characterMakers.push(() => makeCharacter(
  29809. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29810. {
  29811. front: {
  29812. height: math.unit(12 + 6 / 12, "feet"),
  29813. weight: math.unit(1342, "lb"),
  29814. name: "Front",
  29815. image: {
  29816. source: "./media/characters/arokh-takakura/front.svg",
  29817. extra: 1089 / 1043,
  29818. bottom: 77.4 / 1176.7
  29819. }
  29820. },
  29821. back: {
  29822. height: math.unit(12 + 6 / 12, "feet"),
  29823. weight: math.unit(1342, "lb"),
  29824. name: "Back",
  29825. image: {
  29826. source: "./media/characters/arokh-takakura/back.svg",
  29827. extra: 1046 / 1019,
  29828. bottom: 102 / 1150
  29829. }
  29830. },
  29831. },
  29832. [
  29833. {
  29834. name: "Big",
  29835. height: math.unit(12 + 6 / 12, "feet"),
  29836. default: true
  29837. },
  29838. ]
  29839. ))
  29840. characterMakers.push(() => makeCharacter(
  29841. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29842. {
  29843. front: {
  29844. height: math.unit(5 + 6 / 12, "feet"),
  29845. weight: math.unit(150, "lb"),
  29846. name: "Front",
  29847. image: {
  29848. source: "./media/characters/theo/front.svg",
  29849. extra: 1184 / 1131,
  29850. bottom: 7.4 / 1191
  29851. }
  29852. },
  29853. },
  29854. [
  29855. {
  29856. name: "Micro",
  29857. height: math.unit(5, "inches")
  29858. },
  29859. {
  29860. name: "Normal",
  29861. height: math.unit(5 + 6 / 12, "feet"),
  29862. default: true
  29863. },
  29864. ]
  29865. ))
  29866. characterMakers.push(() => makeCharacter(
  29867. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29868. {
  29869. front: {
  29870. height: math.unit(5 + 9 / 12, "feet"),
  29871. weight: math.unit(130, "lb"),
  29872. name: "Front",
  29873. image: {
  29874. source: "./media/characters/cecelia-swift/front.svg",
  29875. extra: 502 / 484,
  29876. bottom: 23 / 523
  29877. }
  29878. },
  29879. back: {
  29880. height: math.unit(5 + 9 / 12, "feet"),
  29881. weight: math.unit(130, "lb"),
  29882. name: "Back",
  29883. image: {
  29884. source: "./media/characters/cecelia-swift/back.svg",
  29885. extra: 499 / 485,
  29886. bottom: 12 / 511
  29887. }
  29888. },
  29889. head: {
  29890. height: math.unit(0.90, "feet"),
  29891. name: "Head",
  29892. image: {
  29893. source: "./media/characters/cecelia-swift/head.svg"
  29894. }
  29895. },
  29896. rump: {
  29897. height: math.unit(1.75, "feet"),
  29898. name: "Rump",
  29899. image: {
  29900. source: "./media/characters/cecelia-swift/rump.svg"
  29901. }
  29902. },
  29903. },
  29904. [
  29905. {
  29906. name: "Normal",
  29907. height: math.unit(5 + 9 / 12, "feet"),
  29908. default: true
  29909. },
  29910. {
  29911. name: "Big",
  29912. height: math.unit(50, "feet")
  29913. },
  29914. {
  29915. name: "Macro",
  29916. height: math.unit(100, "feet")
  29917. },
  29918. {
  29919. name: "Macro+",
  29920. height: math.unit(500, "feet")
  29921. },
  29922. {
  29923. name: "Macro++",
  29924. height: math.unit(1000, "feet")
  29925. },
  29926. ]
  29927. ))
  29928. characterMakers.push(() => makeCharacter(
  29929. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29930. {
  29931. front: {
  29932. height: math.unit(6, "feet"),
  29933. weight: math.unit(150, "lb"),
  29934. name: "Front",
  29935. image: {
  29936. source: "./media/characters/kaunan/front.svg",
  29937. extra: 2890 / 2523,
  29938. bottom: 49 / 2939
  29939. }
  29940. },
  29941. },
  29942. [
  29943. {
  29944. name: "Macro",
  29945. height: math.unit(150, "feet"),
  29946. default: true
  29947. },
  29948. ]
  29949. ))
  29950. characterMakers.push(() => makeCharacter(
  29951. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29952. {
  29953. dressed: {
  29954. height: math.unit(175, "cm"),
  29955. weight: math.unit(60, "kg"),
  29956. name: "Dressed",
  29957. image: {
  29958. source: "./media/characters/fei/dressed.svg",
  29959. extra: 1402/1278,
  29960. bottom: 27/1429
  29961. }
  29962. },
  29963. nude: {
  29964. height: math.unit(175, "cm"),
  29965. weight: math.unit(60, "kg"),
  29966. name: "Nude",
  29967. image: {
  29968. source: "./media/characters/fei/nude.svg",
  29969. extra: 1402/1278,
  29970. bottom: 27/1429
  29971. }
  29972. },
  29973. heels: {
  29974. height: math.unit(0.466, "feet"),
  29975. name: "Heels",
  29976. image: {
  29977. source: "./media/characters/fei/heels.svg",
  29978. extra: 156/152,
  29979. bottom: 28/184
  29980. }
  29981. },
  29982. },
  29983. [
  29984. {
  29985. name: "Mortal",
  29986. height: math.unit(175, "cm")
  29987. },
  29988. {
  29989. name: "Normal",
  29990. height: math.unit(3500, "m")
  29991. },
  29992. {
  29993. name: "Stroll",
  29994. height: math.unit(18.4, "km"),
  29995. default: true
  29996. },
  29997. {
  29998. name: "Showoff",
  29999. height: math.unit(175, "km")
  30000. },
  30001. ]
  30002. ))
  30003. characterMakers.push(() => makeCharacter(
  30004. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30005. {
  30006. front: {
  30007. height: math.unit(7, "feet"),
  30008. weight: math.unit(1000, "kg"),
  30009. name: "Front",
  30010. image: {
  30011. source: "./media/characters/edrax/front.svg",
  30012. extra: 2838 / 2550,
  30013. bottom: 130 / 2968
  30014. }
  30015. },
  30016. },
  30017. [
  30018. {
  30019. name: "Small",
  30020. height: math.unit(7, "feet")
  30021. },
  30022. {
  30023. name: "Normal",
  30024. height: math.unit(1500, "meters")
  30025. },
  30026. {
  30027. name: "Mega",
  30028. height: math.unit(12000000, "km"),
  30029. default: true
  30030. },
  30031. {
  30032. name: "Megamacro",
  30033. height: math.unit(10600000, "lightyears")
  30034. },
  30035. {
  30036. name: "Hypermacro",
  30037. height: math.unit(256, "yottameters")
  30038. },
  30039. ]
  30040. ))
  30041. characterMakers.push(() => makeCharacter(
  30042. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30043. {
  30044. front: {
  30045. height: math.unit(10, "feet"),
  30046. weight: math.unit(750, "lb"),
  30047. name: "Front",
  30048. image: {
  30049. source: "./media/characters/clove/front.svg",
  30050. extra: 1918/1751,
  30051. bottom: 52/1970
  30052. }
  30053. },
  30054. back: {
  30055. height: math.unit(10, "feet"),
  30056. weight: math.unit(750, "lb"),
  30057. name: "Back",
  30058. image: {
  30059. source: "./media/characters/clove/back.svg",
  30060. extra: 1912/1747,
  30061. bottom: 50/1962
  30062. }
  30063. },
  30064. },
  30065. [
  30066. {
  30067. name: "Normal",
  30068. height: math.unit(10, "feet"),
  30069. default: true
  30070. },
  30071. ]
  30072. ))
  30073. characterMakers.push(() => makeCharacter(
  30074. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30075. {
  30076. front: {
  30077. height: math.unit(4, "feet"),
  30078. weight: math.unit(50, "lb"),
  30079. name: "Front",
  30080. image: {
  30081. source: "./media/characters/alex-rabbit/front.svg",
  30082. extra: 507 / 458,
  30083. bottom: 18.5 / 527
  30084. }
  30085. },
  30086. back: {
  30087. height: math.unit(4, "feet"),
  30088. weight: math.unit(50, "lb"),
  30089. name: "Back",
  30090. image: {
  30091. source: "./media/characters/alex-rabbit/back.svg",
  30092. extra: 502 / 460,
  30093. bottom: 18.9 / 521
  30094. }
  30095. },
  30096. },
  30097. [
  30098. {
  30099. name: "Normal",
  30100. height: math.unit(4, "feet"),
  30101. default: true
  30102. },
  30103. ]
  30104. ))
  30105. characterMakers.push(() => makeCharacter(
  30106. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30107. {
  30108. front: {
  30109. height: math.unit(1 + 3 / 12, "feet"),
  30110. weight: math.unit(80, "lb"),
  30111. name: "Front",
  30112. image: {
  30113. source: "./media/characters/zander-rose/front.svg",
  30114. extra: 916 / 797,
  30115. bottom: 17 / 933
  30116. }
  30117. },
  30118. back: {
  30119. height: math.unit(1 + 3 / 12, "feet"),
  30120. weight: math.unit(80, "lb"),
  30121. name: "Back",
  30122. image: {
  30123. source: "./media/characters/zander-rose/back.svg",
  30124. extra: 903 / 779,
  30125. bottom: 31 / 934
  30126. }
  30127. },
  30128. },
  30129. [
  30130. {
  30131. name: "Normal",
  30132. height: math.unit(1 + 3 / 12, "feet"),
  30133. default: true
  30134. },
  30135. ]
  30136. ))
  30137. characterMakers.push(() => makeCharacter(
  30138. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30139. {
  30140. anthro: {
  30141. height: math.unit(6, "feet"),
  30142. weight: math.unit(150, "lb"),
  30143. name: "Anthro",
  30144. image: {
  30145. source: "./media/characters/razz/anthro.svg",
  30146. extra: 1437 / 1343,
  30147. bottom: 48 / 1485
  30148. }
  30149. },
  30150. feral: {
  30151. height: math.unit(6, "feet"),
  30152. weight: math.unit(150, "lb"),
  30153. name: "Feral",
  30154. image: {
  30155. source: "./media/characters/razz/feral.svg",
  30156. extra: 2569 / 1385,
  30157. bottom: 95 / 2664
  30158. }
  30159. },
  30160. },
  30161. [
  30162. {
  30163. name: "Normal",
  30164. height: math.unit(6, "feet"),
  30165. default: true
  30166. },
  30167. ]
  30168. ))
  30169. characterMakers.push(() => makeCharacter(
  30170. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30171. {
  30172. front: {
  30173. height: math.unit(9 + 4 / 12, "feet"),
  30174. weight: math.unit(500, "lb"),
  30175. name: "Front",
  30176. image: {
  30177. source: "./media/characters/morrigan/front.svg",
  30178. extra: 2707 / 2579,
  30179. bottom: 156 / 2863
  30180. }
  30181. },
  30182. },
  30183. [
  30184. {
  30185. name: "Normal",
  30186. height: math.unit(9 + 4 / 12, "feet"),
  30187. default: true
  30188. },
  30189. ]
  30190. ))
  30191. characterMakers.push(() => makeCharacter(
  30192. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30193. {
  30194. front: {
  30195. height: math.unit(5, "stories"),
  30196. weight: math.unit(4000, "lb"),
  30197. name: "Front",
  30198. image: {
  30199. source: "./media/characters/jenene/front.svg",
  30200. extra: 1780 / 1710,
  30201. bottom: 57 / 1837
  30202. }
  30203. },
  30204. },
  30205. [
  30206. {
  30207. name: "Normal",
  30208. height: math.unit(5, "stories"),
  30209. default: true
  30210. },
  30211. ]
  30212. ))
  30213. characterMakers.push(() => makeCharacter(
  30214. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30215. {
  30216. taurSfw: {
  30217. height: math.unit(10, "meters"),
  30218. weight: math.unit(17500, "kg"),
  30219. name: "Taur",
  30220. image: {
  30221. source: "./media/characters/faey/taur-sfw.svg",
  30222. extra: 1200 / 968,
  30223. bottom: 41 / 1241
  30224. }
  30225. },
  30226. chestmaw: {
  30227. height: math.unit(2.01, "meters"),
  30228. name: "Chestmaw",
  30229. image: {
  30230. source: "./media/characters/faey/chestmaw.svg"
  30231. }
  30232. },
  30233. foot: {
  30234. height: math.unit(2.43, "meters"),
  30235. name: "Foot",
  30236. image: {
  30237. source: "./media/characters/faey/foot.svg"
  30238. }
  30239. },
  30240. jaws: {
  30241. height: math.unit(1.66, "meters"),
  30242. name: "Jaws",
  30243. image: {
  30244. source: "./media/characters/faey/jaws.svg"
  30245. }
  30246. },
  30247. tongues: {
  30248. height: math.unit(2.01, "meters"),
  30249. name: "Tongues",
  30250. image: {
  30251. source: "./media/characters/faey/tongues.svg"
  30252. }
  30253. },
  30254. },
  30255. [
  30256. {
  30257. name: "Small",
  30258. height: math.unit(10, "meters"),
  30259. default: true
  30260. },
  30261. {
  30262. name: "Big",
  30263. height: math.unit(500000, "km")
  30264. },
  30265. ]
  30266. ))
  30267. characterMakers.push(() => makeCharacter(
  30268. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30269. {
  30270. front: {
  30271. height: math.unit(7, "feet"),
  30272. weight: math.unit(275, "lb"),
  30273. name: "Front",
  30274. image: {
  30275. source: "./media/characters/roku/front.svg",
  30276. extra: 903 / 878,
  30277. bottom: 37 / 940
  30278. }
  30279. },
  30280. },
  30281. [
  30282. {
  30283. name: "Normal",
  30284. height: math.unit(7, "feet"),
  30285. default: true
  30286. },
  30287. {
  30288. name: "Macro",
  30289. height: math.unit(500, "feet")
  30290. },
  30291. {
  30292. name: "Megamacro",
  30293. height: math.unit(200, "miles")
  30294. },
  30295. ]
  30296. ))
  30297. characterMakers.push(() => makeCharacter(
  30298. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30299. {
  30300. front: {
  30301. height: math.unit(6 + 2 / 12, "feet"),
  30302. weight: math.unit(150, "lb"),
  30303. name: "Front",
  30304. image: {
  30305. source: "./media/characters/lira/front.svg",
  30306. extra: 1727 / 1605,
  30307. bottom: 26 / 1753
  30308. }
  30309. },
  30310. back: {
  30311. height: math.unit(6 + 2 / 12, "feet"),
  30312. weight: math.unit(150, "lb"),
  30313. name: "Back",
  30314. image: {
  30315. source: "./media/characters/lira/back.svg",
  30316. extra: 1713/1621,
  30317. bottom: 20/1733
  30318. }
  30319. },
  30320. hand: {
  30321. height: math.unit(0.75, "feet"),
  30322. name: "Hand",
  30323. image: {
  30324. source: "./media/characters/lira/hand.svg"
  30325. }
  30326. },
  30327. maw: {
  30328. height: math.unit(0.65, "feet"),
  30329. name: "Maw",
  30330. image: {
  30331. source: "./media/characters/lira/maw.svg"
  30332. }
  30333. },
  30334. pawDigi: {
  30335. height: math.unit(1.6, "feet"),
  30336. name: "Paw Digi",
  30337. image: {
  30338. source: "./media/characters/lira/paw-digi.svg"
  30339. }
  30340. },
  30341. pawPlanti: {
  30342. height: math.unit(1.4, "feet"),
  30343. name: "Paw Planti",
  30344. image: {
  30345. source: "./media/characters/lira/paw-planti.svg"
  30346. }
  30347. },
  30348. },
  30349. [
  30350. {
  30351. name: "Normal",
  30352. height: math.unit(6 + 2 / 12, "feet"),
  30353. default: true
  30354. },
  30355. {
  30356. name: "Macro",
  30357. height: math.unit(100, "feet")
  30358. },
  30359. {
  30360. name: "Macro²",
  30361. height: math.unit(1600, "feet")
  30362. },
  30363. {
  30364. name: "Planetary",
  30365. height: math.unit(20, "earths")
  30366. },
  30367. ]
  30368. ))
  30369. characterMakers.push(() => makeCharacter(
  30370. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30371. {
  30372. front: {
  30373. height: math.unit(6, "feet"),
  30374. weight: math.unit(150, "lb"),
  30375. name: "Front",
  30376. image: {
  30377. source: "./media/characters/hadjet/front.svg",
  30378. extra: 1480 / 1346,
  30379. bottom: 26 / 1506
  30380. }
  30381. },
  30382. frontNsfw: {
  30383. height: math.unit(6, "feet"),
  30384. weight: math.unit(150, "lb"),
  30385. name: "Front (NSFW)",
  30386. image: {
  30387. source: "./media/characters/hadjet/front-nsfw.svg",
  30388. extra: 1440 / 1358,
  30389. bottom: 52 / 1492
  30390. }
  30391. },
  30392. },
  30393. [
  30394. {
  30395. name: "Macro",
  30396. height: math.unit(10, "stories"),
  30397. default: true
  30398. },
  30399. {
  30400. name: "Megamacro",
  30401. height: math.unit(1.5, "miles")
  30402. },
  30403. {
  30404. name: "Megamacro+",
  30405. height: math.unit(5, "miles")
  30406. },
  30407. ]
  30408. ))
  30409. characterMakers.push(() => makeCharacter(
  30410. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30411. {
  30412. side: {
  30413. height: math.unit(106, "feet"),
  30414. weight: math.unit(500, "tonnes"),
  30415. name: "Side",
  30416. image: {
  30417. source: "./media/characters/kodran/side.svg",
  30418. extra: 553 / 480,
  30419. bottom: 33 / 586
  30420. }
  30421. },
  30422. front: {
  30423. height: math.unit(132, "feet"),
  30424. weight: math.unit(500, "tonnes"),
  30425. name: "Front",
  30426. image: {
  30427. source: "./media/characters/kodran/front.svg",
  30428. extra: 667 / 643,
  30429. bottom: 42 / 709
  30430. }
  30431. },
  30432. flying: {
  30433. height: math.unit(350, "feet"),
  30434. weight: math.unit(500, "tonnes"),
  30435. name: "Flying",
  30436. image: {
  30437. source: "./media/characters/kodran/flying.svg"
  30438. }
  30439. },
  30440. foot: {
  30441. height: math.unit(33, "feet"),
  30442. name: "Foot",
  30443. image: {
  30444. source: "./media/characters/kodran/foot.svg"
  30445. }
  30446. },
  30447. footFront: {
  30448. height: math.unit(19, "feet"),
  30449. name: "Foot (Front)",
  30450. image: {
  30451. source: "./media/characters/kodran/foot-front.svg",
  30452. extra: 261 / 261,
  30453. bottom: 91 / 352
  30454. }
  30455. },
  30456. headFront: {
  30457. height: math.unit(53, "feet"),
  30458. name: "Head (Front)",
  30459. image: {
  30460. source: "./media/characters/kodran/head-front.svg"
  30461. }
  30462. },
  30463. headSide: {
  30464. height: math.unit(65, "feet"),
  30465. name: "Head (Side)",
  30466. image: {
  30467. source: "./media/characters/kodran/head-side.svg"
  30468. }
  30469. },
  30470. throat: {
  30471. height: math.unit(79, "feet"),
  30472. name: "Throat",
  30473. image: {
  30474. source: "./media/characters/kodran/throat.svg"
  30475. }
  30476. },
  30477. },
  30478. [
  30479. {
  30480. name: "Large",
  30481. height: math.unit(106, "feet"),
  30482. default: true
  30483. },
  30484. ]
  30485. ))
  30486. characterMakers.push(() => makeCharacter(
  30487. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30488. {
  30489. side: {
  30490. height: math.unit(11, "feet"),
  30491. weight: math.unit(150, "lb"),
  30492. name: "Side",
  30493. image: {
  30494. source: "./media/characters/pyxaron/side.svg",
  30495. extra: 305 / 195,
  30496. bottom: 17 / 322
  30497. }
  30498. },
  30499. },
  30500. [
  30501. {
  30502. name: "Normal",
  30503. height: math.unit(11, "feet"),
  30504. default: true
  30505. },
  30506. ]
  30507. ))
  30508. characterMakers.push(() => makeCharacter(
  30509. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30510. {
  30511. front: {
  30512. height: math.unit(6, "feet"),
  30513. weight: math.unit(150, "lb"),
  30514. name: "Front",
  30515. image: {
  30516. source: "./media/characters/meep/front.svg",
  30517. extra: 88 / 80,
  30518. bottom: 6 / 94
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Fun Sized",
  30525. height: math.unit(2, "inches"),
  30526. default: true
  30527. },
  30528. {
  30529. name: "Friend Sized",
  30530. height: math.unit(8, "inches")
  30531. },
  30532. ]
  30533. ))
  30534. characterMakers.push(() => makeCharacter(
  30535. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30536. {
  30537. front: {
  30538. height: math.unit(15, "feet"),
  30539. weight: math.unit(2500, "lb"),
  30540. name: "Front",
  30541. image: {
  30542. source: "./media/characters/holly-rabbit/front.svg",
  30543. extra: 1433 / 1233,
  30544. bottom: 125 / 1558
  30545. }
  30546. },
  30547. dick: {
  30548. height: math.unit(4.6, "feet"),
  30549. name: "Dick",
  30550. image: {
  30551. source: "./media/characters/holly-rabbit/dick.svg"
  30552. }
  30553. },
  30554. },
  30555. [
  30556. {
  30557. name: "Normal",
  30558. height: math.unit(15, "feet"),
  30559. default: true
  30560. },
  30561. {
  30562. name: "Macro",
  30563. height: math.unit(250, "feet")
  30564. },
  30565. {
  30566. name: "Macro+",
  30567. height: math.unit(2500, "feet")
  30568. },
  30569. ]
  30570. ))
  30571. characterMakers.push(() => makeCharacter(
  30572. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30573. {
  30574. front: {
  30575. height: math.unit(3.02, "meters"),
  30576. weight: math.unit(500, "kg"),
  30577. name: "Front",
  30578. image: {
  30579. source: "./media/characters/drena/front.svg",
  30580. extra: 282 / 243,
  30581. bottom: 8 / 290
  30582. }
  30583. },
  30584. side: {
  30585. height: math.unit(3.02, "meters"),
  30586. weight: math.unit(500, "kg"),
  30587. name: "Side",
  30588. image: {
  30589. source: "./media/characters/drena/side.svg",
  30590. extra: 280 / 245,
  30591. bottom: 10 / 290
  30592. }
  30593. },
  30594. back: {
  30595. height: math.unit(3.02, "meters"),
  30596. weight: math.unit(500, "kg"),
  30597. name: "Back",
  30598. image: {
  30599. source: "./media/characters/drena/back.svg",
  30600. extra: 278 / 243,
  30601. bottom: 2 / 280
  30602. }
  30603. },
  30604. foot: {
  30605. height: math.unit(0.75, "meters"),
  30606. name: "Foot",
  30607. image: {
  30608. source: "./media/characters/drena/foot.svg"
  30609. }
  30610. },
  30611. maw: {
  30612. height: math.unit(0.82, "meters"),
  30613. name: "Maw",
  30614. image: {
  30615. source: "./media/characters/drena/maw.svg"
  30616. }
  30617. },
  30618. eating: {
  30619. height: math.unit(0.75, "meters"),
  30620. name: "Eating",
  30621. image: {
  30622. source: "./media/characters/drena/eating.svg"
  30623. }
  30624. },
  30625. rump: {
  30626. height: math.unit(0.93, "meters"),
  30627. name: "Rump",
  30628. image: {
  30629. source: "./media/characters/drena/rump.svg"
  30630. }
  30631. },
  30632. },
  30633. [
  30634. {
  30635. name: "Normal",
  30636. height: math.unit(3.02, "meters"),
  30637. default: true
  30638. },
  30639. ]
  30640. ))
  30641. characterMakers.push(() => makeCharacter(
  30642. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30643. {
  30644. front: {
  30645. height: math.unit(6 + 4 / 12, "feet"),
  30646. weight: math.unit(250, "lb"),
  30647. name: "Front",
  30648. image: {
  30649. source: "./media/characters/remmyzilla/front.svg",
  30650. extra: 4033 / 3588,
  30651. bottom: 123 / 4156
  30652. }
  30653. },
  30654. back: {
  30655. height: math.unit(6 + 4 / 12, "feet"),
  30656. weight: math.unit(250, "lb"),
  30657. name: "Back",
  30658. image: {
  30659. source: "./media/characters/remmyzilla/back.svg",
  30660. extra: 2687 / 2555,
  30661. bottom: 48 / 2735
  30662. }
  30663. },
  30664. paw: {
  30665. height: math.unit(1.73, "feet"),
  30666. name: "Paw",
  30667. image: {
  30668. source: "./media/characters/remmyzilla/paw.svg"
  30669. },
  30670. extraAttributes: {
  30671. "toeSize": {
  30672. name: "Toe Size",
  30673. power: 2,
  30674. type: "area",
  30675. base: math.unit(0.0035, "m^2")
  30676. },
  30677. "padSize": {
  30678. name: "Pad Size",
  30679. power: 2,
  30680. type: "area",
  30681. base: math.unit(0.015, "m^2")
  30682. },
  30683. "pawsize": {
  30684. name: "Paw Size",
  30685. power: 2,
  30686. type: "area",
  30687. base: math.unit(0.072, "m^2")
  30688. },
  30689. }
  30690. },
  30691. maw: {
  30692. height: math.unit(1.73, "feet"),
  30693. name: "Maw",
  30694. image: {
  30695. source: "./media/characters/remmyzilla/maw.svg"
  30696. }
  30697. },
  30698. },
  30699. [
  30700. {
  30701. name: "Normal",
  30702. height: math.unit(6 + 4 / 12, "feet")
  30703. },
  30704. {
  30705. name: "Minimacro",
  30706. height: math.unit(12 + 8 / 12, "feet")
  30707. },
  30708. {
  30709. name: "Normal",
  30710. height: math.unit(640, "feet"),
  30711. default: true
  30712. },
  30713. {
  30714. name: "Megamacro",
  30715. height: math.unit(6400, "feet")
  30716. },
  30717. {
  30718. name: "Gigamacro",
  30719. height: math.unit(64000, "miles")
  30720. },
  30721. ]
  30722. ))
  30723. characterMakers.push(() => makeCharacter(
  30724. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30725. {
  30726. front: {
  30727. height: math.unit(2.5, "meters"),
  30728. weight: math.unit(300, "lb"),
  30729. name: "Front",
  30730. image: {
  30731. source: "./media/characters/lawrence/front.svg",
  30732. extra: 357 / 335,
  30733. bottom: 30 / 387
  30734. }
  30735. },
  30736. back: {
  30737. height: math.unit(2.5, "meters"),
  30738. weight: math.unit(300, "lb"),
  30739. name: "Back",
  30740. image: {
  30741. source: "./media/characters/lawrence/back.svg",
  30742. extra: 357 / 338,
  30743. bottom: 16 / 373
  30744. }
  30745. },
  30746. head: {
  30747. height: math.unit(0.9, "meter"),
  30748. name: "Head",
  30749. image: {
  30750. source: "./media/characters/lawrence/head.svg"
  30751. }
  30752. },
  30753. maw: {
  30754. height: math.unit(0.7, "meter"),
  30755. name: "Maw",
  30756. image: {
  30757. source: "./media/characters/lawrence/maw.svg"
  30758. }
  30759. },
  30760. footBottom: {
  30761. height: math.unit(0.5, "meter"),
  30762. name: "Foot (Bottom)",
  30763. image: {
  30764. source: "./media/characters/lawrence/foot-bottom.svg"
  30765. }
  30766. },
  30767. footTop: {
  30768. height: math.unit(0.5, "meter"),
  30769. name: "Foot (Top)",
  30770. image: {
  30771. source: "./media/characters/lawrence/foot-top.svg"
  30772. }
  30773. },
  30774. },
  30775. [
  30776. {
  30777. name: "Normal",
  30778. height: math.unit(2.5, "meters"),
  30779. default: true
  30780. },
  30781. {
  30782. name: "Macro",
  30783. height: math.unit(95, "meters")
  30784. },
  30785. {
  30786. name: "Megamacro",
  30787. height: math.unit(150, "km")
  30788. },
  30789. ]
  30790. ))
  30791. characterMakers.push(() => makeCharacter(
  30792. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30793. {
  30794. front: {
  30795. height: math.unit(4.2, "meters"),
  30796. preyCapacity: math.unit(50, "m^3"),
  30797. weight: math.unit(30, "tonnes"),
  30798. name: "Front",
  30799. image: {
  30800. source: "./media/characters/sydney/front.svg",
  30801. extra: 1177/1129,
  30802. bottom: 197/1374
  30803. },
  30804. extraAttributes: {
  30805. "length": {
  30806. name: "Length",
  30807. power: 1,
  30808. type: "length",
  30809. base: math.unit(21, "meters")
  30810. },
  30811. }
  30812. },
  30813. },
  30814. [
  30815. {
  30816. name: "Normal",
  30817. height: math.unit(4.2, "meters"),
  30818. default: true
  30819. },
  30820. ]
  30821. ))
  30822. characterMakers.push(() => makeCharacter(
  30823. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30824. {
  30825. back: {
  30826. height: math.unit(201, "feet"),
  30827. name: "Back",
  30828. image: {
  30829. source: "./media/characters/jessica/back.svg",
  30830. extra: 273 / 259,
  30831. bottom: 7 / 280
  30832. }
  30833. },
  30834. },
  30835. [
  30836. {
  30837. name: "Normal",
  30838. height: math.unit(201, "feet"),
  30839. default: true
  30840. },
  30841. {
  30842. name: "Megamacro",
  30843. height: math.unit(8, "miles")
  30844. },
  30845. ]
  30846. ))
  30847. characterMakers.push(() => makeCharacter(
  30848. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30849. {
  30850. side: {
  30851. height: math.unit(5.6, "m"),
  30852. weight: math.unit(8000, "kg"),
  30853. name: "Side",
  30854. image: {
  30855. source: "./media/characters/victoria/side.svg",
  30856. extra: 1542/1229,
  30857. bottom: 124/1666
  30858. }
  30859. },
  30860. maw: {
  30861. height: math.unit(7.14, "feet"),
  30862. name: "Maw",
  30863. image: {
  30864. source: "./media/characters/victoria/maw.svg"
  30865. }
  30866. },
  30867. },
  30868. [
  30869. {
  30870. name: "Normal",
  30871. height: math.unit(5.6, "m"),
  30872. default: true
  30873. },
  30874. ]
  30875. ))
  30876. characterMakers.push(() => makeCharacter(
  30877. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30878. {
  30879. front: {
  30880. height: math.unit(5 + 6 / 12, "feet"),
  30881. name: "Front",
  30882. image: {
  30883. source: "./media/characters/cat/front.svg",
  30884. extra: 1449/1295,
  30885. bottom: 34/1483
  30886. },
  30887. form: "cat",
  30888. default: true
  30889. },
  30890. back: {
  30891. height: math.unit(5 + 6 / 12, "feet"),
  30892. name: "Back",
  30893. image: {
  30894. source: "./media/characters/cat/back.svg",
  30895. extra: 1466/1301,
  30896. bottom: 19/1485
  30897. },
  30898. form: "cat"
  30899. },
  30900. taur: {
  30901. height: math.unit(7, "feet"),
  30902. name: "Taur",
  30903. image: {
  30904. source: "./media/characters/cat/taur.svg",
  30905. extra: 1389/1233,
  30906. bottom: 83/1472
  30907. },
  30908. form: "taur",
  30909. default: true
  30910. },
  30911. lucarioFront: {
  30912. height: math.unit(4, "feet"),
  30913. name: "Lucario (Front)",
  30914. image: {
  30915. source: "./media/characters/cat/lucario-front.svg",
  30916. extra: 1149/1019,
  30917. bottom: 84/1233
  30918. },
  30919. form: "lucario",
  30920. default: true
  30921. },
  30922. lucarioBack: {
  30923. height: math.unit(4, "feet"),
  30924. name: "Lucario (Back)",
  30925. image: {
  30926. source: "./media/characters/cat/lucario-back.svg",
  30927. extra: 1190/1059,
  30928. bottom: 33/1223
  30929. },
  30930. form: "lucario"
  30931. },
  30932. megaLucario: {
  30933. height: math.unit(4, "feet"),
  30934. name: "Mega Lucario",
  30935. image: {
  30936. source: "./media/characters/cat/mega-lucario.svg",
  30937. extra: 1515 / 1319,
  30938. bottom: 63 / 1578
  30939. },
  30940. form: "lucario"
  30941. },
  30942. nickit: {
  30943. height: math.unit(2, "feet"),
  30944. name: "Nickit",
  30945. image: {
  30946. source: "./media/characters/cat/nickit.svg",
  30947. extra: 1980 / 1585,
  30948. bottom: 102 / 2082
  30949. },
  30950. form: "nickit",
  30951. default: true
  30952. },
  30953. lopunnyFront: {
  30954. height: math.unit(5, "feet"),
  30955. name: "Lopunny (Front)",
  30956. image: {
  30957. source: "./media/characters/cat/lopunny-front.svg",
  30958. extra: 1782 / 1469,
  30959. bottom: 38 / 1820
  30960. },
  30961. form: "lopunny",
  30962. default: true
  30963. },
  30964. lopunnyBack: {
  30965. height: math.unit(5, "feet"),
  30966. name: "Lopunny (Back)",
  30967. image: {
  30968. source: "./media/characters/cat/lopunny-back.svg",
  30969. extra: 1660 / 1490,
  30970. bottom: 25 / 1685
  30971. },
  30972. form: "lopunny"
  30973. },
  30974. },
  30975. [
  30976. {
  30977. name: "Really small",
  30978. height: math.unit(1, "nm")
  30979. },
  30980. {
  30981. name: "Micro",
  30982. height: math.unit(5, "inches")
  30983. },
  30984. {
  30985. name: "Normal",
  30986. height: math.unit(5 + 6 / 12, "feet"),
  30987. default: true
  30988. },
  30989. {
  30990. name: "Macro",
  30991. height: math.unit(50, "feet")
  30992. },
  30993. {
  30994. name: "Macro+",
  30995. height: math.unit(150, "feet")
  30996. },
  30997. {
  30998. name: "Megamacro",
  30999. height: math.unit(100, "miles")
  31000. },
  31001. ]
  31002. ))
  31003. characterMakers.push(() => makeCharacter(
  31004. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31005. {
  31006. front: {
  31007. height: math.unit(63.4, "meters"),
  31008. weight: math.unit(3.28349e+6, "kilograms"),
  31009. name: "Front",
  31010. image: {
  31011. source: "./media/characters/kirina-violet/front.svg",
  31012. extra: 2812 / 2725,
  31013. bottom: 0 / 2812
  31014. }
  31015. },
  31016. back: {
  31017. height: math.unit(63.4, "meters"),
  31018. weight: math.unit(3.28349e+6, "kilograms"),
  31019. name: "Back",
  31020. image: {
  31021. source: "./media/characters/kirina-violet/back.svg",
  31022. extra: 2812 / 2725,
  31023. bottom: 0 / 2812
  31024. }
  31025. },
  31026. mouth: {
  31027. height: math.unit(4.35, "meters"),
  31028. name: "Mouth",
  31029. image: {
  31030. source: "./media/characters/kirina-violet/mouth.svg"
  31031. }
  31032. },
  31033. paw: {
  31034. height: math.unit(5.6, "meters"),
  31035. name: "Paw",
  31036. image: {
  31037. source: "./media/characters/kirina-violet/paw.svg"
  31038. }
  31039. },
  31040. tail: {
  31041. height: math.unit(18, "meters"),
  31042. name: "Tail",
  31043. image: {
  31044. source: "./media/characters/kirina-violet/tail.svg"
  31045. }
  31046. },
  31047. },
  31048. [
  31049. {
  31050. name: "Macro",
  31051. height: math.unit(63.4, "meters"),
  31052. default: true
  31053. },
  31054. ]
  31055. ))
  31056. characterMakers.push(() => makeCharacter(
  31057. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31058. {
  31059. front: {
  31060. height: math.unit(75, "feet"),
  31061. name: "Front",
  31062. image: {
  31063. source: "./media/characters/cat-gigachu/front.svg",
  31064. extra: 1239/1027,
  31065. bottom: 32/1271
  31066. }
  31067. },
  31068. back: {
  31069. height: math.unit(75, "feet"),
  31070. name: "Back",
  31071. image: {
  31072. source: "./media/characters/cat-gigachu/back.svg",
  31073. extra: 1229/1030,
  31074. bottom: 9/1238
  31075. }
  31076. },
  31077. },
  31078. [
  31079. {
  31080. name: "Dynamax",
  31081. height: math.unit(75, "feet"),
  31082. default: true
  31083. },
  31084. ]
  31085. ))
  31086. characterMakers.push(() => makeCharacter(
  31087. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31088. {
  31089. front: {
  31090. height: math.unit(6, "feet"),
  31091. weight: math.unit(150, "lb"),
  31092. name: "Front",
  31093. image: {
  31094. source: "./media/characters/sfaiyan/front.svg",
  31095. extra: 999 / 978,
  31096. bottom: 5 / 1004
  31097. }
  31098. },
  31099. },
  31100. [
  31101. {
  31102. name: "Normal",
  31103. height: math.unit(1.82, "meters")
  31104. },
  31105. {
  31106. name: "Giant",
  31107. height: math.unit(2.27, "km"),
  31108. default: true
  31109. },
  31110. ]
  31111. ))
  31112. characterMakers.push(() => makeCharacter(
  31113. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31114. {
  31115. front: {
  31116. height: math.unit(179, "cm"),
  31117. weight: math.unit(100, "kg"),
  31118. name: "Front",
  31119. image: {
  31120. source: "./media/characters/raunehkeli/front.svg",
  31121. extra: 1934 / 1926,
  31122. bottom: 0 / 1934
  31123. }
  31124. },
  31125. },
  31126. [
  31127. {
  31128. name: "Normal",
  31129. height: math.unit(179, "cm")
  31130. },
  31131. {
  31132. name: "Maximum",
  31133. height: math.unit(575, "meters"),
  31134. default: true
  31135. },
  31136. ]
  31137. ))
  31138. characterMakers.push(() => makeCharacter(
  31139. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31140. {
  31141. front: {
  31142. height: math.unit(6, "feet"),
  31143. weight: math.unit(150, "lb"),
  31144. name: "Front",
  31145. image: {
  31146. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31147. extra: 2625 / 2518,
  31148. bottom: 60 / 2685
  31149. }
  31150. },
  31151. },
  31152. [
  31153. {
  31154. name: "Normal",
  31155. height: math.unit(6 + 2 / 12, "feet")
  31156. },
  31157. {
  31158. name: "Macro",
  31159. height: math.unit(1180, "feet"),
  31160. default: true
  31161. },
  31162. ]
  31163. ))
  31164. characterMakers.push(() => makeCharacter(
  31165. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31166. {
  31167. front: {
  31168. height: math.unit(5 + 6 / 12, "feet"),
  31169. weight: math.unit(108, "lb"),
  31170. name: "Front",
  31171. image: {
  31172. source: "./media/characters/lilith-zott/front.svg",
  31173. extra: 2510 / 2238,
  31174. bottom: 100 / 2610
  31175. }
  31176. },
  31177. frontDressed: {
  31178. height: math.unit(5 + 6 / 12, "feet"),
  31179. weight: math.unit(108, "lb"),
  31180. name: "Front (Dressed)",
  31181. image: {
  31182. source: "./media/characters/lilith-zott/front-dressed.svg",
  31183. extra: 2510 / 2238,
  31184. bottom: 100 / 2610
  31185. }
  31186. },
  31187. },
  31188. [
  31189. {
  31190. name: "Normal",
  31191. height: math.unit(5 + 6 / 12, "feet")
  31192. },
  31193. {
  31194. name: "Macro",
  31195. height: math.unit(1030, "feet"),
  31196. default: true
  31197. },
  31198. ]
  31199. ))
  31200. characterMakers.push(() => makeCharacter(
  31201. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31202. {
  31203. front: {
  31204. height: math.unit(6, "feet"),
  31205. weight: math.unit(150, "lb"),
  31206. name: "Front",
  31207. image: {
  31208. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31209. extra: 2567 / 2435,
  31210. bottom: 39 / 2606
  31211. }
  31212. },
  31213. frontSuper: {
  31214. height: math.unit(6, "feet"),
  31215. name: "Front (Super)",
  31216. image: {
  31217. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31218. extra: 2567 / 2435,
  31219. bottom: 39 / 2606
  31220. }
  31221. },
  31222. },
  31223. [
  31224. {
  31225. name: "Normal",
  31226. height: math.unit(5 + 10 / 12, "feet")
  31227. },
  31228. {
  31229. name: "Macro",
  31230. height: math.unit(1100, "feet"),
  31231. default: true
  31232. },
  31233. ]
  31234. ))
  31235. characterMakers.push(() => makeCharacter(
  31236. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31237. {
  31238. front: {
  31239. height: math.unit(100, "miles"),
  31240. name: "Front",
  31241. image: {
  31242. source: "./media/characters/sona/front.svg",
  31243. extra: 2433 / 2201,
  31244. bottom: 53 / 2486
  31245. }
  31246. },
  31247. foot: {
  31248. height: math.unit(16.1, "miles"),
  31249. name: "Foot",
  31250. image: {
  31251. source: "./media/characters/sona/foot.svg"
  31252. }
  31253. },
  31254. },
  31255. [
  31256. {
  31257. name: "Macro",
  31258. height: math.unit(100, "miles"),
  31259. default: true
  31260. },
  31261. ]
  31262. ))
  31263. characterMakers.push(() => makeCharacter(
  31264. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31265. {
  31266. front: {
  31267. height: math.unit(6, "feet"),
  31268. weight: math.unit(150, "lb"),
  31269. name: "Front",
  31270. image: {
  31271. source: "./media/characters/bailey/front.svg",
  31272. extra: 1778 / 1724,
  31273. bottom: 30 / 1808
  31274. }
  31275. },
  31276. },
  31277. [
  31278. {
  31279. name: "Micro",
  31280. height: math.unit(4, "inches")
  31281. },
  31282. {
  31283. name: "Normal",
  31284. height: math.unit(5 + 5 / 12, "feet"),
  31285. default: true
  31286. },
  31287. {
  31288. name: "Macro",
  31289. height: math.unit(250, "feet")
  31290. },
  31291. {
  31292. name: "Megamacro",
  31293. height: math.unit(100, "miles")
  31294. },
  31295. ]
  31296. ))
  31297. characterMakers.push(() => makeCharacter(
  31298. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31299. {
  31300. front: {
  31301. height: math.unit(5 + 2 / 12, "feet"),
  31302. weight: math.unit(120, "lb"),
  31303. name: "Front",
  31304. image: {
  31305. source: "./media/characters/snaps/front.svg",
  31306. extra: 2370 / 2177,
  31307. bottom: 48 / 2418
  31308. }
  31309. },
  31310. back: {
  31311. height: math.unit(5 + 2 / 12, "feet"),
  31312. weight: math.unit(120, "lb"),
  31313. name: "Back",
  31314. image: {
  31315. source: "./media/characters/snaps/back.svg",
  31316. extra: 2408 / 2258,
  31317. bottom: 15 / 2423
  31318. }
  31319. },
  31320. },
  31321. [
  31322. {
  31323. name: "Micro",
  31324. height: math.unit(9, "inches")
  31325. },
  31326. {
  31327. name: "Normal",
  31328. height: math.unit(5 + 2 / 12, "feet"),
  31329. default: true
  31330. },
  31331. {
  31332. name: "Mini Macro",
  31333. height: math.unit(10, "feet")
  31334. },
  31335. ]
  31336. ))
  31337. characterMakers.push(() => makeCharacter(
  31338. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31339. {
  31340. front: {
  31341. height: math.unit(1.8, "meters"),
  31342. weight: math.unit(85, "kg"),
  31343. name: "Front",
  31344. image: {
  31345. source: "./media/characters/azteck/front.svg",
  31346. extra: 2815 / 2625,
  31347. bottom: 89 / 2904
  31348. }
  31349. },
  31350. back: {
  31351. height: math.unit(1.8, "meters"),
  31352. weight: math.unit(85, "kg"),
  31353. name: "Back",
  31354. image: {
  31355. source: "./media/characters/azteck/back.svg",
  31356. extra: 2856 / 2648,
  31357. bottom: 85 / 2941
  31358. }
  31359. },
  31360. frontDressed: {
  31361. height: math.unit(1.8, "meters"),
  31362. weight: math.unit(85, "kg"),
  31363. name: "Front (Dressed)",
  31364. image: {
  31365. source: "./media/characters/azteck/front-dressed.svg",
  31366. extra: 2147 / 2003,
  31367. bottom: 68 / 2215
  31368. }
  31369. },
  31370. head: {
  31371. height: math.unit(0.47, "meters"),
  31372. weight: math.unit(85, "kg"),
  31373. name: "Head",
  31374. image: {
  31375. source: "./media/characters/azteck/head.svg"
  31376. }
  31377. },
  31378. },
  31379. [
  31380. {
  31381. name: "Bite sized",
  31382. height: math.unit(16, "cm")
  31383. },
  31384. {
  31385. name: "Normal",
  31386. height: math.unit(1.8, "meters"),
  31387. default: true
  31388. },
  31389. ]
  31390. ))
  31391. characterMakers.push(() => makeCharacter(
  31392. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31393. {
  31394. front: {
  31395. height: math.unit(6, "feet"),
  31396. weight: math.unit(150, "lb"),
  31397. name: "Front",
  31398. image: {
  31399. source: "./media/characters/pidge/front.svg",
  31400. extra: 1936/1820,
  31401. bottom: 0/1936
  31402. }
  31403. },
  31404. back: {
  31405. height: math.unit(6, "feet"),
  31406. weight: math.unit(150, "lb"),
  31407. name: "Back",
  31408. image: {
  31409. source: "./media/characters/pidge/back.svg",
  31410. extra: 1938/1843,
  31411. bottom: 0/1938
  31412. }
  31413. },
  31414. casual: {
  31415. height: math.unit(6, "feet"),
  31416. weight: math.unit(150, "lb"),
  31417. name: "Casual",
  31418. image: {
  31419. source: "./media/characters/pidge/casual.svg",
  31420. extra: 1936/1820,
  31421. bottom: 0/1936
  31422. }
  31423. },
  31424. tech: {
  31425. height: math.unit(6, "feet"),
  31426. weight: math.unit(150, "lb"),
  31427. name: "Tech",
  31428. image: {
  31429. source: "./media/characters/pidge/tech.svg",
  31430. extra: 1802/1682,
  31431. bottom: 0/1802
  31432. }
  31433. },
  31434. head: {
  31435. height: math.unit(1.61, "feet"),
  31436. name: "Head",
  31437. image: {
  31438. source: "./media/characters/pidge/head.svg"
  31439. }
  31440. },
  31441. collar: {
  31442. height: math.unit(0.82, "feet"),
  31443. name: "Collar",
  31444. image: {
  31445. source: "./media/characters/pidge/collar.svg"
  31446. }
  31447. },
  31448. },
  31449. [
  31450. {
  31451. name: "Macro",
  31452. height: math.unit(2, "mile"),
  31453. default: true
  31454. },
  31455. {
  31456. name: "PUPPY",
  31457. height: math.unit(20, "miles")
  31458. },
  31459. ]
  31460. ))
  31461. characterMakers.push(() => makeCharacter(
  31462. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31463. {
  31464. front: {
  31465. height: math.unit(6, "feet"),
  31466. weight: math.unit(150, "lb"),
  31467. name: "Front",
  31468. image: {
  31469. source: "./media/characters/en/front.svg",
  31470. extra: 1697 / 1563,
  31471. bottom: 103 / 1800
  31472. }
  31473. },
  31474. back: {
  31475. height: math.unit(6, "feet"),
  31476. weight: math.unit(150, "lb"),
  31477. name: "Back",
  31478. image: {
  31479. source: "./media/characters/en/back.svg",
  31480. extra: 1700 / 1570,
  31481. bottom: 51 / 1751
  31482. }
  31483. },
  31484. frontDressed: {
  31485. height: math.unit(6, "feet"),
  31486. weight: math.unit(150, "lb"),
  31487. name: "Front (Dressed)",
  31488. image: {
  31489. source: "./media/characters/en/front-dressed.svg",
  31490. extra: 1697 / 1563,
  31491. bottom: 103 / 1800
  31492. }
  31493. },
  31494. backDressed: {
  31495. height: math.unit(6, "feet"),
  31496. weight: math.unit(150, "lb"),
  31497. name: "Back (Dressed)",
  31498. image: {
  31499. source: "./media/characters/en/back-dressed.svg",
  31500. extra: 1700 / 1570,
  31501. bottom: 51 / 1751
  31502. }
  31503. },
  31504. },
  31505. [
  31506. {
  31507. name: "Macro",
  31508. height: math.unit(210, "feet"),
  31509. default: true
  31510. },
  31511. ]
  31512. ))
  31513. characterMakers.push(() => makeCharacter(
  31514. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31515. {
  31516. front: {
  31517. height: math.unit(6, "feet"),
  31518. weight: math.unit(150, "lb"),
  31519. name: "Front",
  31520. image: {
  31521. source: "./media/characters/haze-orris/front.svg",
  31522. extra: 3975 / 3525,
  31523. bottom: 137 / 4112
  31524. }
  31525. },
  31526. },
  31527. [
  31528. {
  31529. name: "Micro",
  31530. height: math.unit(150, "mm"),
  31531. default: true
  31532. },
  31533. ]
  31534. ))
  31535. characterMakers.push(() => makeCharacter(
  31536. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31537. {
  31538. front: {
  31539. height: math.unit(6, "feet"),
  31540. weight: math.unit(150, "lb"),
  31541. name: "Front",
  31542. image: {
  31543. source: "./media/characters/casselene-yaro/front.svg",
  31544. extra: 4721 / 4541,
  31545. bottom: 82 / 4803
  31546. }
  31547. },
  31548. back: {
  31549. height: math.unit(6, "feet"),
  31550. weight: math.unit(150, "lb"),
  31551. name: "Back",
  31552. image: {
  31553. source: "./media/characters/casselene-yaro/back.svg",
  31554. extra: 4569 / 4377,
  31555. bottom: 69 / 4638
  31556. }
  31557. },
  31558. dressed: {
  31559. height: math.unit(6, "feet"),
  31560. weight: math.unit(150, "lb"),
  31561. name: "Dressed",
  31562. image: {
  31563. source: "./media/characters/casselene-yaro/dressed.svg",
  31564. extra: 4721 / 4541,
  31565. bottom: 82 / 4803
  31566. }
  31567. },
  31568. maw: {
  31569. height: math.unit(1, "feet"),
  31570. name: "Maw",
  31571. image: {
  31572. source: "./media/characters/casselene-yaro/maw.svg"
  31573. }
  31574. },
  31575. },
  31576. [
  31577. {
  31578. name: "Macro",
  31579. height: math.unit(190, "feet"),
  31580. default: true
  31581. },
  31582. ]
  31583. ))
  31584. characterMakers.push(() => makeCharacter(
  31585. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31586. {
  31587. front: {
  31588. height: math.unit(10, "feet"),
  31589. weight: math.unit(15015, "lb"),
  31590. name: "Front",
  31591. image: {
  31592. source: "./media/characters/platine/front.svg",
  31593. extra: 1741/1650,
  31594. bottom: 84/1825
  31595. }
  31596. },
  31597. side: {
  31598. height: math.unit(10, "feet"),
  31599. weight: math.unit(15015, "lb"),
  31600. name: "Side",
  31601. image: {
  31602. source: "./media/characters/platine/side.svg",
  31603. extra: 1790/1705,
  31604. bottom: 29/1819
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Normal",
  31611. height: math.unit(10, "feet"),
  31612. default: true
  31613. },
  31614. {
  31615. name: "Macro",
  31616. height: math.unit(100, "feet")
  31617. },
  31618. {
  31619. name: "Megamacro",
  31620. height: math.unit(1000, "feet")
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31626. {
  31627. front: {
  31628. height: math.unit(15 + 5 / 12, "feet"),
  31629. weight: math.unit(4600, "lb"),
  31630. name: "Front",
  31631. image: {
  31632. source: "./media/characters/neapolitan-ananassa/front.svg",
  31633. extra: 2903 / 2736,
  31634. bottom: 0 / 2903
  31635. }
  31636. },
  31637. side: {
  31638. height: math.unit(15 + 5 / 12, "feet"),
  31639. weight: math.unit(4600, "lb"),
  31640. name: "Side",
  31641. image: {
  31642. source: "./media/characters/neapolitan-ananassa/side.svg",
  31643. extra: 2925 / 2719,
  31644. bottom: 0 / 2925
  31645. }
  31646. },
  31647. back: {
  31648. height: math.unit(15 + 5 / 12, "feet"),
  31649. weight: math.unit(4600, "lb"),
  31650. name: "Back",
  31651. image: {
  31652. source: "./media/characters/neapolitan-ananassa/back.svg",
  31653. extra: 2903 / 2736,
  31654. bottom: 0 / 2903
  31655. }
  31656. },
  31657. },
  31658. [
  31659. {
  31660. name: "Normal",
  31661. height: math.unit(15 + 5 / 12, "feet"),
  31662. default: true
  31663. },
  31664. {
  31665. name: "Post-Millenium",
  31666. height: math.unit(35 + 5 / 12, "feet")
  31667. },
  31668. {
  31669. name: "Post-Era",
  31670. height: math.unit(450 + 5 / 12, "feet")
  31671. },
  31672. ]
  31673. ))
  31674. characterMakers.push(() => makeCharacter(
  31675. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31676. {
  31677. front: {
  31678. height: math.unit(300, "meters"),
  31679. weight: math.unit(125000, "tonnes"),
  31680. name: "Front",
  31681. image: {
  31682. source: "./media/characters/pazuzu/front.svg",
  31683. extra: 877 / 794,
  31684. bottom: 47 / 924
  31685. }
  31686. },
  31687. },
  31688. [
  31689. {
  31690. name: "Macro",
  31691. height: math.unit(300, "meters"),
  31692. default: true
  31693. },
  31694. ]
  31695. ))
  31696. characterMakers.push(() => makeCharacter(
  31697. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31698. {
  31699. side: {
  31700. height: math.unit(10 + 7 / 12, "feet"),
  31701. weight: math.unit(2.5, "tons"),
  31702. name: "Side",
  31703. image: {
  31704. source: "./media/characters/aasha/side.svg",
  31705. extra: 1345 / 1245,
  31706. bottom: 111 / 1456
  31707. }
  31708. },
  31709. back: {
  31710. height: math.unit(10 + 7 / 12, "feet"),
  31711. weight: math.unit(2.5, "tons"),
  31712. name: "Back",
  31713. image: {
  31714. source: "./media/characters/aasha/back.svg",
  31715. extra: 1133 / 1057,
  31716. bottom: 257 / 1390
  31717. }
  31718. },
  31719. },
  31720. [
  31721. {
  31722. name: "Normal",
  31723. height: math.unit(10 + 7 / 12, "feet"),
  31724. default: true
  31725. },
  31726. ]
  31727. ))
  31728. characterMakers.push(() => makeCharacter(
  31729. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31730. {
  31731. front: {
  31732. height: math.unit(6 + 3 / 12, "feet"),
  31733. name: "Front",
  31734. image: {
  31735. source: "./media/characters/nevan/front.svg",
  31736. extra: 704 / 704,
  31737. bottom: 28 / 732
  31738. }
  31739. },
  31740. back: {
  31741. height: math.unit(6 + 3 / 12, "feet"),
  31742. name: "Back",
  31743. image: {
  31744. source: "./media/characters/nevan/back.svg",
  31745. extra: 714 / 714,
  31746. bottom: 21 / 735
  31747. }
  31748. },
  31749. frontFlaccid: {
  31750. height: math.unit(6 + 3 / 12, "feet"),
  31751. name: "Front (Flaccid)",
  31752. image: {
  31753. source: "./media/characters/nevan/front-flaccid.svg",
  31754. extra: 704 / 704,
  31755. bottom: 28 / 732
  31756. }
  31757. },
  31758. frontErect: {
  31759. height: math.unit(6 + 3 / 12, "feet"),
  31760. name: "Front (Erect)",
  31761. image: {
  31762. source: "./media/characters/nevan/front-erect.svg",
  31763. extra: 704 / 704,
  31764. bottom: 28 / 732
  31765. }
  31766. },
  31767. backFlaccid: {
  31768. height: math.unit(6 + 3 / 12, "feet"),
  31769. name: "Back (Flaccid)",
  31770. image: {
  31771. source: "./media/characters/nevan/back-flaccid.svg",
  31772. extra: 714 / 714,
  31773. bottom: 21 / 735
  31774. }
  31775. },
  31776. },
  31777. [
  31778. {
  31779. name: "Normal",
  31780. height: math.unit(6 + 3 / 12, "feet"),
  31781. default: true
  31782. },
  31783. ]
  31784. ))
  31785. characterMakers.push(() => makeCharacter(
  31786. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31787. {
  31788. front: {
  31789. height: math.unit(4, "feet"),
  31790. name: "Front",
  31791. image: {
  31792. source: "./media/characters/arhan/front.svg",
  31793. extra: 3368 / 3133,
  31794. bottom: 0 / 3368
  31795. }
  31796. },
  31797. side: {
  31798. height: math.unit(4, "feet"),
  31799. name: "Side",
  31800. image: {
  31801. source: "./media/characters/arhan/side.svg",
  31802. extra: 3347 / 3105,
  31803. bottom: 0 / 3347
  31804. }
  31805. },
  31806. tongue: {
  31807. height: math.unit(1.42, "feet"),
  31808. name: "Tongue",
  31809. image: {
  31810. source: "./media/characters/arhan/tongue.svg"
  31811. }
  31812. },
  31813. head: {
  31814. height: math.unit(0.85, "feet"),
  31815. name: "Head",
  31816. image: {
  31817. source: "./media/characters/arhan/head.svg"
  31818. }
  31819. },
  31820. },
  31821. [
  31822. {
  31823. name: "Normal",
  31824. height: math.unit(4, "feet"),
  31825. default: true
  31826. },
  31827. ]
  31828. ))
  31829. characterMakers.push(() => makeCharacter(
  31830. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31831. {
  31832. front: {
  31833. height: math.unit(5 + 7.5 / 12, "feet"),
  31834. weight: math.unit(120, "lb"),
  31835. name: "Front",
  31836. image: {
  31837. source: "./media/characters/digi-duncan/front.svg",
  31838. extra: 330 / 326,
  31839. bottom: 16 / 346
  31840. }
  31841. },
  31842. side: {
  31843. height: math.unit(5 + 7.5 / 12, "feet"),
  31844. weight: math.unit(120, "lb"),
  31845. name: "Side",
  31846. image: {
  31847. source: "./media/characters/digi-duncan/side.svg",
  31848. extra: 341 / 337,
  31849. bottom: 1 / 342
  31850. }
  31851. },
  31852. back: {
  31853. height: math.unit(5 + 7.5 / 12, "feet"),
  31854. weight: math.unit(120, "lb"),
  31855. name: "Back",
  31856. image: {
  31857. source: "./media/characters/digi-duncan/back.svg",
  31858. extra: 330 / 326,
  31859. bottom: 12 / 342
  31860. }
  31861. },
  31862. },
  31863. [
  31864. {
  31865. name: "Speck",
  31866. height: math.unit(0.25, "mm")
  31867. },
  31868. {
  31869. name: "Micro",
  31870. height: math.unit(5, "mm")
  31871. },
  31872. {
  31873. name: "Tiny",
  31874. height: math.unit(0.5, "inches"),
  31875. default: true
  31876. },
  31877. {
  31878. name: "Human",
  31879. height: math.unit(5 + 7.5 / 12, "feet")
  31880. },
  31881. {
  31882. name: "Minigiant",
  31883. height: math.unit(8 + 5.25, "feet")
  31884. },
  31885. {
  31886. name: "Giant",
  31887. height: math.unit(2000, "feet")
  31888. },
  31889. {
  31890. name: "Mega",
  31891. height: math.unit(371.1, "miles")
  31892. },
  31893. ]
  31894. ))
  31895. characterMakers.push(() => makeCharacter(
  31896. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31897. {
  31898. front: {
  31899. height: math.unit(2, "meters"),
  31900. weight: math.unit(350, "kg"),
  31901. name: "Front",
  31902. image: {
  31903. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31904. extra: 898 / 838,
  31905. bottom: 9 / 907
  31906. }
  31907. },
  31908. },
  31909. [
  31910. {
  31911. name: "Micro",
  31912. height: math.unit(8, "meters")
  31913. },
  31914. {
  31915. name: "Normal",
  31916. height: math.unit(50, "meters"),
  31917. default: true
  31918. },
  31919. {
  31920. name: "Macro",
  31921. height: math.unit(500, "meters")
  31922. },
  31923. ]
  31924. ))
  31925. characterMakers.push(() => makeCharacter(
  31926. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31927. {
  31928. front: {
  31929. height: math.unit(6 + 6 / 12, "feet"),
  31930. name: "Front",
  31931. image: {
  31932. source: "./media/characters/khardesh/front.svg",
  31933. extra: 1788/1596,
  31934. bottom: 66/1854
  31935. }
  31936. },
  31937. back: {
  31938. height: math.unit(6 + 6 / 12, "feet"),
  31939. name: "Back",
  31940. image: {
  31941. source: "./media/characters/khardesh/back.svg",
  31942. extra: 1781/1584,
  31943. bottom: 68/1849
  31944. }
  31945. },
  31946. },
  31947. [
  31948. {
  31949. name: "Normal",
  31950. height: math.unit(6 + 6 / 12, "feet"),
  31951. default: true
  31952. },
  31953. {
  31954. name: "Normal+",
  31955. height: math.unit(4, "meters")
  31956. },
  31957. {
  31958. name: "Macro",
  31959. height: math.unit(50, "meters")
  31960. },
  31961. {
  31962. name: "Macro+",
  31963. height: math.unit(100, "meters")
  31964. },
  31965. {
  31966. name: "Megamacro",
  31967. height: math.unit(20, "km")
  31968. },
  31969. ]
  31970. ))
  31971. characterMakers.push(() => makeCharacter(
  31972. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31973. {
  31974. front: {
  31975. height: math.unit(6, "feet"),
  31976. weight: math.unit(150, "lb"),
  31977. name: "Front",
  31978. image: {
  31979. source: "./media/characters/kosho/front.svg",
  31980. extra: 1847 / 1847,
  31981. bottom: 86 / 1933
  31982. }
  31983. },
  31984. },
  31985. [
  31986. {
  31987. name: "Second-stage micro",
  31988. height: math.unit(0.5, "inches")
  31989. },
  31990. {
  31991. name: "First-stage micro",
  31992. height: math.unit(6, "inches")
  31993. },
  31994. {
  31995. name: "Normal",
  31996. height: math.unit(6, "feet"),
  31997. default: true
  31998. },
  31999. {
  32000. name: "First-stage macro",
  32001. height: math.unit(72, "feet")
  32002. },
  32003. {
  32004. name: "Second-stage macro",
  32005. height: math.unit(864, "feet")
  32006. },
  32007. ]
  32008. ))
  32009. characterMakers.push(() => makeCharacter(
  32010. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32011. {
  32012. normal: {
  32013. height: math.unit(4 + 6 / 12, "feet"),
  32014. name: "Normal",
  32015. image: {
  32016. source: "./media/characters/hydra/normal.svg",
  32017. extra: 2833 / 2634,
  32018. bottom: 68 / 2901
  32019. }
  32020. },
  32021. smol: {
  32022. height: math.unit(0.705, "inches"),
  32023. name: "Smol",
  32024. image: {
  32025. source: "./media/characters/hydra/smol.svg",
  32026. extra: 2715 / 2540,
  32027. bottom: 0 / 2715
  32028. }
  32029. },
  32030. },
  32031. [
  32032. {
  32033. name: "Normal",
  32034. height: math.unit(4 + 6 / 12, "feet"),
  32035. default: true
  32036. }
  32037. ]
  32038. ))
  32039. characterMakers.push(() => makeCharacter(
  32040. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32041. {
  32042. front: {
  32043. height: math.unit(0.6, "cm"),
  32044. name: "Front",
  32045. image: {
  32046. source: "./media/characters/daz/front.svg",
  32047. extra: 1682 / 1164,
  32048. bottom: 42 / 1724
  32049. }
  32050. },
  32051. },
  32052. [
  32053. {
  32054. name: "Normal",
  32055. height: math.unit(0.6, "cm"),
  32056. default: true
  32057. },
  32058. ]
  32059. ))
  32060. characterMakers.push(() => makeCharacter(
  32061. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32062. {
  32063. front: {
  32064. height: math.unit(6, "feet"),
  32065. weight: math.unit(235, "lb"),
  32066. name: "Front",
  32067. image: {
  32068. source: "./media/characters/theo-pangolin/front.svg",
  32069. extra: 1996 / 1969,
  32070. bottom: 115 / 2111
  32071. }
  32072. },
  32073. back: {
  32074. height: math.unit(6, "feet"),
  32075. weight: math.unit(235, "lb"),
  32076. name: "Back",
  32077. image: {
  32078. source: "./media/characters/theo-pangolin/back.svg",
  32079. extra: 1979 / 1979,
  32080. bottom: 40 / 2019
  32081. }
  32082. },
  32083. feral: {
  32084. height: math.unit(2, "feet"),
  32085. weight: math.unit(30, "lb"),
  32086. name: "Feral",
  32087. image: {
  32088. source: "./media/characters/theo-pangolin/feral.svg",
  32089. extra: 803 / 791,
  32090. bottom: 181 / 984
  32091. }
  32092. },
  32093. footFive: {
  32094. height: math.unit(1.43, "feet"),
  32095. name: "Foot (Five Toes)",
  32096. image: {
  32097. source: "./media/characters/theo-pangolin/foot-five.svg"
  32098. }
  32099. },
  32100. footFour: {
  32101. height: math.unit(1.43, "feet"),
  32102. name: "Foot (Four Toes)",
  32103. image: {
  32104. source: "./media/characters/theo-pangolin/foot-four.svg"
  32105. }
  32106. },
  32107. handFour: {
  32108. height: math.unit(0.81, "feet"),
  32109. name: "Hand (Four Fingers)",
  32110. image: {
  32111. source: "./media/characters/theo-pangolin/hand-four.svg"
  32112. }
  32113. },
  32114. handThree: {
  32115. height: math.unit(0.81, "feet"),
  32116. name: "Hand (Three Fingers)",
  32117. image: {
  32118. source: "./media/characters/theo-pangolin/hand-three.svg"
  32119. }
  32120. },
  32121. headFront: {
  32122. height: math.unit(1.37, "feet"),
  32123. name: "Head (Front)",
  32124. image: {
  32125. source: "./media/characters/theo-pangolin/head-front.svg"
  32126. }
  32127. },
  32128. headSide: {
  32129. height: math.unit(1.43, "feet"),
  32130. name: "Head (Side)",
  32131. image: {
  32132. source: "./media/characters/theo-pangolin/head-side.svg"
  32133. }
  32134. },
  32135. tongue: {
  32136. height: math.unit(2.29, "feet"),
  32137. name: "Tongue",
  32138. image: {
  32139. source: "./media/characters/theo-pangolin/tongue.svg"
  32140. }
  32141. },
  32142. },
  32143. [
  32144. {
  32145. name: "Normal",
  32146. height: math.unit(6, "feet")
  32147. },
  32148. {
  32149. name: "Macro",
  32150. height: math.unit(400, "feet"),
  32151. default: true
  32152. },
  32153. ]
  32154. ))
  32155. characterMakers.push(() => makeCharacter(
  32156. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32157. {
  32158. front: {
  32159. height: math.unit(6, "inches"),
  32160. weight: math.unit(0.036, "kg"),
  32161. name: "Front",
  32162. image: {
  32163. source: "./media/characters/renée/front.svg",
  32164. extra: 900 / 886,
  32165. bottom: 8 / 908
  32166. }
  32167. },
  32168. },
  32169. [
  32170. {
  32171. name: "Nano",
  32172. height: math.unit(1, "nm")
  32173. },
  32174. {
  32175. name: "Micro",
  32176. height: math.unit(1, "mm")
  32177. },
  32178. {
  32179. name: "Normal",
  32180. height: math.unit(6, "inches")
  32181. },
  32182. {
  32183. name: "Macro",
  32184. height: math.unit(2000, "feet"),
  32185. default: true
  32186. },
  32187. {
  32188. name: "Megamacro",
  32189. height: math.unit(2, "km")
  32190. },
  32191. {
  32192. name: "Gigamacro",
  32193. height: math.unit(2000, "km")
  32194. },
  32195. {
  32196. name: "Teramacro",
  32197. height: math.unit(250000, "km")
  32198. },
  32199. ]
  32200. ))
  32201. characterMakers.push(() => makeCharacter(
  32202. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32203. {
  32204. front: {
  32205. height: math.unit(4, "meters"),
  32206. weight: math.unit(150, "kg"),
  32207. name: "Front",
  32208. image: {
  32209. source: "./media/characters/caledvwlch/front.svg",
  32210. extra: 1757/1537,
  32211. bottom: 31/1788
  32212. }
  32213. },
  32214. side: {
  32215. height: math.unit(4, "meters"),
  32216. weight: math.unit(150, "kg"),
  32217. name: "Side",
  32218. image: {
  32219. source: "./media/characters/caledvwlch/side.svg",
  32220. extra: 1605 / 1536,
  32221. bottom: 31 / 1636
  32222. }
  32223. },
  32224. back: {
  32225. height: math.unit(4, "meters"),
  32226. weight: math.unit(150, "kg"),
  32227. name: "Back",
  32228. image: {
  32229. source: "./media/characters/caledvwlch/back.svg",
  32230. extra: 1635 / 1565,
  32231. bottom: 27 / 1662
  32232. }
  32233. },
  32234. },
  32235. [
  32236. {
  32237. name: "\"Incognito\"",
  32238. height: math.unit(4, "meters")
  32239. },
  32240. {
  32241. name: "Small rampage",
  32242. height: math.unit(600, "meters")
  32243. },
  32244. {
  32245. name: "Mega",
  32246. height: math.unit(30, "km")
  32247. },
  32248. {
  32249. name: "Home-size",
  32250. height: math.unit(50, "km"),
  32251. default: true
  32252. },
  32253. {
  32254. name: "Giga",
  32255. height: math.unit(300, "km")
  32256. },
  32257. {
  32258. name: "Lounging",
  32259. height: math.unit(11000, "km")
  32260. },
  32261. {
  32262. name: "Planet snacking",
  32263. height: math.unit(2000000, "km")
  32264. },
  32265. ]
  32266. ))
  32267. characterMakers.push(() => makeCharacter(
  32268. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32269. {
  32270. front: {
  32271. height: math.unit(6, "feet"),
  32272. weight: math.unit(215, "lb"),
  32273. name: "Front",
  32274. image: {
  32275. source: "./media/characters/sapphire-svell/front.svg",
  32276. extra: 495 / 455,
  32277. bottom: 20 / 515
  32278. }
  32279. },
  32280. back: {
  32281. height: math.unit(6, "feet"),
  32282. weight: math.unit(216, "lb"),
  32283. name: "Back",
  32284. image: {
  32285. source: "./media/characters/sapphire-svell/back.svg",
  32286. extra: 497 / 477,
  32287. bottom: 7 / 504
  32288. }
  32289. },
  32290. maw: {
  32291. height: math.unit(1.57, "feet"),
  32292. name: "Maw",
  32293. image: {
  32294. source: "./media/characters/sapphire-svell/maw.svg"
  32295. }
  32296. },
  32297. foot: {
  32298. height: math.unit(1.07, "feet"),
  32299. name: "Foot",
  32300. image: {
  32301. source: "./media/characters/sapphire-svell/foot.svg"
  32302. }
  32303. },
  32304. toering: {
  32305. height: math.unit(1.7, "inch"),
  32306. name: "Toering",
  32307. image: {
  32308. source: "./media/characters/sapphire-svell/toering.svg"
  32309. }
  32310. },
  32311. },
  32312. [
  32313. {
  32314. name: "Normal",
  32315. height: math.unit(300, "feet"),
  32316. default: true
  32317. },
  32318. {
  32319. name: "Augmented",
  32320. height: math.unit(1250, "feet")
  32321. },
  32322. {
  32323. name: "Unleashed",
  32324. height: math.unit(3000, "feet")
  32325. },
  32326. ]
  32327. ))
  32328. characterMakers.push(() => makeCharacter(
  32329. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32330. {
  32331. side: {
  32332. height: math.unit(2 + 3 / 12, "feet"),
  32333. weight: math.unit(110, "lb"),
  32334. name: "Side",
  32335. image: {
  32336. source: "./media/characters/glitch-flux/side.svg",
  32337. extra: 997 / 805,
  32338. bottom: 20 / 1017
  32339. }
  32340. },
  32341. },
  32342. [
  32343. {
  32344. name: "Normal",
  32345. height: math.unit(2 + 3 / 12, "feet"),
  32346. default: true
  32347. },
  32348. ]
  32349. ))
  32350. characterMakers.push(() => makeCharacter(
  32351. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32352. {
  32353. front: {
  32354. height: math.unit(4, "meters"),
  32355. name: "Front",
  32356. image: {
  32357. source: "./media/characters/mid/front.svg",
  32358. extra: 507 / 476,
  32359. bottom: 17 / 524
  32360. }
  32361. },
  32362. back: {
  32363. height: math.unit(4, "meters"),
  32364. name: "Back",
  32365. image: {
  32366. source: "./media/characters/mid/back.svg",
  32367. extra: 519 / 487,
  32368. bottom: 7 / 526
  32369. }
  32370. },
  32371. stuck: {
  32372. height: math.unit(2.2, "meters"),
  32373. name: "Stuck",
  32374. image: {
  32375. source: "./media/characters/mid/stuck.svg",
  32376. extra: 1951 / 1869,
  32377. bottom: 88 / 2039
  32378. }
  32379. }
  32380. },
  32381. [
  32382. {
  32383. name: "Normal",
  32384. height: math.unit(4, "meters"),
  32385. default: true
  32386. },
  32387. {
  32388. name: "Big",
  32389. height: math.unit(10, "meters")
  32390. },
  32391. {
  32392. name: "Macro",
  32393. height: math.unit(800, "meters")
  32394. },
  32395. {
  32396. name: "Megamacro",
  32397. height: math.unit(100, "km")
  32398. },
  32399. {
  32400. name: "Overgrown",
  32401. height: math.unit(1, "parsec")
  32402. },
  32403. ]
  32404. ))
  32405. characterMakers.push(() => makeCharacter(
  32406. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32407. {
  32408. front: {
  32409. height: math.unit(2.5, "meters"),
  32410. weight: math.unit(225, "kg"),
  32411. name: "Front",
  32412. image: {
  32413. source: "./media/characters/iris/front.svg",
  32414. extra: 3348 / 3251,
  32415. bottom: 205 / 3553
  32416. }
  32417. },
  32418. maw: {
  32419. height: math.unit(0.56, "meter"),
  32420. name: "Maw",
  32421. image: {
  32422. source: "./media/characters/iris/maw.svg"
  32423. }
  32424. },
  32425. },
  32426. [
  32427. {
  32428. name: "Mewter cat",
  32429. height: math.unit(1.2, "meters")
  32430. },
  32431. {
  32432. name: "Normal",
  32433. height: math.unit(2.5, "meters"),
  32434. default: true
  32435. },
  32436. {
  32437. name: "Minimacro",
  32438. height: math.unit(18, "feet")
  32439. },
  32440. {
  32441. name: "Macro",
  32442. height: math.unit(140, "feet")
  32443. },
  32444. {
  32445. name: "Macro+",
  32446. height: math.unit(180, "meters")
  32447. },
  32448. {
  32449. name: "Megamacro",
  32450. height: math.unit(2746, "meters")
  32451. },
  32452. ]
  32453. ))
  32454. characterMakers.push(() => makeCharacter(
  32455. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32456. {
  32457. front: {
  32458. height: math.unit(6, "feet"),
  32459. weight: math.unit(135, "lb"),
  32460. name: "Front",
  32461. image: {
  32462. source: "./media/characters/axel/front.svg",
  32463. extra: 908 / 908,
  32464. bottom: 58 / 966
  32465. }
  32466. },
  32467. side: {
  32468. height: math.unit(6, "feet"),
  32469. weight: math.unit(135, "lb"),
  32470. name: "Side",
  32471. image: {
  32472. source: "./media/characters/axel/side.svg",
  32473. extra: 958 / 958,
  32474. bottom: 11 / 969
  32475. }
  32476. },
  32477. back: {
  32478. height: math.unit(6, "feet"),
  32479. weight: math.unit(135, "lb"),
  32480. name: "Back",
  32481. image: {
  32482. source: "./media/characters/axel/back.svg",
  32483. extra: 887 / 887,
  32484. bottom: 34 / 921
  32485. }
  32486. },
  32487. head: {
  32488. height: math.unit(1.07, "feet"),
  32489. name: "Head",
  32490. image: {
  32491. source: "./media/characters/axel/head.svg"
  32492. }
  32493. },
  32494. beak: {
  32495. height: math.unit(1.4, "feet"),
  32496. name: "Beak",
  32497. image: {
  32498. source: "./media/characters/axel/beak.svg"
  32499. }
  32500. },
  32501. beakSide: {
  32502. height: math.unit(1.4, "feet"),
  32503. name: "Beak Side",
  32504. image: {
  32505. source: "./media/characters/axel/beak-side.svg"
  32506. }
  32507. },
  32508. sheath: {
  32509. height: math.unit(0.5, "feet"),
  32510. name: "Sheath",
  32511. image: {
  32512. source: "./media/characters/axel/sheath.svg"
  32513. }
  32514. },
  32515. dick: {
  32516. height: math.unit(0.98, "feet"),
  32517. name: "Dick",
  32518. image: {
  32519. source: "./media/characters/axel/dick.svg"
  32520. }
  32521. },
  32522. },
  32523. [
  32524. {
  32525. name: "Macro",
  32526. height: math.unit(68, "meters"),
  32527. default: true
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32533. {
  32534. front: {
  32535. height: math.unit(3.5, "meters"),
  32536. weight: math.unit(1200, "kg"),
  32537. name: "Front",
  32538. image: {
  32539. source: "./media/characters/joanna/front.svg",
  32540. extra: 1596 / 1488,
  32541. bottom: 29 / 1625
  32542. }
  32543. },
  32544. back: {
  32545. height: math.unit(3.5, "meters"),
  32546. weight: math.unit(1200, "kg"),
  32547. name: "Back",
  32548. image: {
  32549. source: "./media/characters/joanna/back.svg",
  32550. extra: 1594 / 1495,
  32551. bottom: 26 / 1620
  32552. }
  32553. },
  32554. frontShorts: {
  32555. height: math.unit(3.5, "meters"),
  32556. weight: math.unit(1200, "kg"),
  32557. name: "Front (Shorts)",
  32558. image: {
  32559. source: "./media/characters/joanna/front-shorts.svg",
  32560. extra: 1596 / 1488,
  32561. bottom: 29 / 1625
  32562. }
  32563. },
  32564. frontBiker: {
  32565. height: math.unit(3.5, "meters"),
  32566. weight: math.unit(1200, "kg"),
  32567. name: "Front (Biker)",
  32568. image: {
  32569. source: "./media/characters/joanna/front-biker.svg",
  32570. extra: 1596 / 1488,
  32571. bottom: 29 / 1625
  32572. }
  32573. },
  32574. backBiker: {
  32575. height: math.unit(3.5, "meters"),
  32576. weight: math.unit(1200, "kg"),
  32577. name: "Back (Biker)",
  32578. image: {
  32579. source: "./media/characters/joanna/back-biker.svg",
  32580. extra: 1594 / 1495,
  32581. bottom: 88 / 1682
  32582. }
  32583. },
  32584. bikeLeft: {
  32585. height: math.unit(2.4, "meters"),
  32586. weight: math.unit(1600, "kg"),
  32587. name: "Bike (Left)",
  32588. image: {
  32589. source: "./media/characters/joanna/bike-left.svg",
  32590. extra: 720 / 720,
  32591. bottom: 8 / 728
  32592. }
  32593. },
  32594. bikeRight: {
  32595. height: math.unit(2.4, "meters"),
  32596. weight: math.unit(1600, "kg"),
  32597. name: "Bike (Right)",
  32598. image: {
  32599. source: "./media/characters/joanna/bike-right.svg",
  32600. extra: 720 / 720,
  32601. bottom: 8 / 728
  32602. }
  32603. },
  32604. },
  32605. [
  32606. {
  32607. name: "Incognito",
  32608. height: math.unit(3.5, "meters")
  32609. },
  32610. {
  32611. name: "Casual Big",
  32612. height: math.unit(200, "meters")
  32613. },
  32614. {
  32615. name: "Macro",
  32616. height: math.unit(600, "meters")
  32617. },
  32618. {
  32619. name: "Original",
  32620. height: math.unit(20, "km"),
  32621. default: true
  32622. },
  32623. {
  32624. name: "Giga",
  32625. height: math.unit(400, "km")
  32626. },
  32627. {
  32628. name: "Lounging",
  32629. height: math.unit(1500, "km")
  32630. },
  32631. {
  32632. name: "Planetary",
  32633. height: math.unit(200000, "km")
  32634. },
  32635. ]
  32636. ))
  32637. characterMakers.push(() => makeCharacter(
  32638. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32639. {
  32640. front: {
  32641. height: math.unit(6, "feet"),
  32642. weight: math.unit(150, "lb"),
  32643. name: "Front",
  32644. image: {
  32645. source: "./media/characters/hugo-sigil/front.svg",
  32646. extra: 522 / 500,
  32647. bottom: 2 / 524
  32648. }
  32649. },
  32650. back: {
  32651. height: math.unit(6, "feet"),
  32652. weight: math.unit(150, "lb"),
  32653. name: "Back",
  32654. image: {
  32655. source: "./media/characters/hugo-sigil/back.svg",
  32656. extra: 519 / 495,
  32657. bottom: 5 / 524
  32658. }
  32659. },
  32660. maw: {
  32661. height: math.unit(1.4, "feet"),
  32662. weight: math.unit(150, "lb"),
  32663. name: "Maw",
  32664. image: {
  32665. source: "./media/characters/hugo-sigil/maw.svg"
  32666. }
  32667. },
  32668. feet: {
  32669. height: math.unit(1.56, "feet"),
  32670. weight: math.unit(150, "lb"),
  32671. name: "Feet",
  32672. image: {
  32673. source: "./media/characters/hugo-sigil/feet.svg",
  32674. extra: 177 / 177,
  32675. bottom: 12 / 189
  32676. }
  32677. },
  32678. },
  32679. [
  32680. {
  32681. name: "Normal",
  32682. height: math.unit(6, "feet")
  32683. },
  32684. {
  32685. name: "Macro",
  32686. height: math.unit(200, "feet"),
  32687. default: true
  32688. },
  32689. ]
  32690. ))
  32691. characterMakers.push(() => makeCharacter(
  32692. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32693. {
  32694. front: {
  32695. height: math.unit(6, "feet"),
  32696. weight: math.unit(150, "lb"),
  32697. name: "Front",
  32698. image: {
  32699. source: "./media/characters/peri/front.svg",
  32700. extra: 2354 / 2233,
  32701. bottom: 49 / 2403
  32702. }
  32703. },
  32704. },
  32705. [
  32706. {
  32707. name: "Really Small",
  32708. height: math.unit(1, "nm")
  32709. },
  32710. {
  32711. name: "Micro",
  32712. height: math.unit(4, "inches")
  32713. },
  32714. {
  32715. name: "Normal",
  32716. height: math.unit(7, "inches"),
  32717. default: true
  32718. },
  32719. {
  32720. name: "Macro",
  32721. height: math.unit(400, "feet")
  32722. },
  32723. {
  32724. name: "Megamacro",
  32725. height: math.unit(100, "miles")
  32726. },
  32727. ]
  32728. ))
  32729. characterMakers.push(() => makeCharacter(
  32730. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32731. {
  32732. frontSlim: {
  32733. height: math.unit(7, "feet"),
  32734. name: "Front (Slim)",
  32735. image: {
  32736. source: "./media/characters/issilora/front-slim.svg",
  32737. extra: 529 / 449,
  32738. bottom: 53 / 582
  32739. }
  32740. },
  32741. sideSlim: {
  32742. height: math.unit(7, "feet"),
  32743. name: "Side (Slim)",
  32744. image: {
  32745. source: "./media/characters/issilora/side-slim.svg",
  32746. extra: 570 / 480,
  32747. bottom: 30 / 600
  32748. }
  32749. },
  32750. backSlim: {
  32751. height: math.unit(7, "feet"),
  32752. name: "Back (Slim)",
  32753. image: {
  32754. source: "./media/characters/issilora/back-slim.svg",
  32755. extra: 537 / 455,
  32756. bottom: 46 / 583
  32757. }
  32758. },
  32759. frontBuff: {
  32760. height: math.unit(7, "feet"),
  32761. name: "Front (Buff)",
  32762. image: {
  32763. source: "./media/characters/issilora/front-buff.svg",
  32764. extra: 2310 / 2035,
  32765. bottom: 335 / 2645
  32766. }
  32767. },
  32768. head: {
  32769. height: math.unit(1.94, "feet"),
  32770. name: "Head",
  32771. image: {
  32772. source: "./media/characters/issilora/head.svg"
  32773. }
  32774. },
  32775. },
  32776. [
  32777. {
  32778. name: "Minimum",
  32779. height: math.unit(7, "feet")
  32780. },
  32781. {
  32782. name: "Comfortable",
  32783. height: math.unit(17, "feet")
  32784. },
  32785. {
  32786. name: "Fun Size",
  32787. height: math.unit(47, "feet")
  32788. },
  32789. {
  32790. name: "Natural Macro",
  32791. height: math.unit(137, "feet"),
  32792. default: true
  32793. },
  32794. {
  32795. name: "Maximum Kaiju",
  32796. height: math.unit(397, "feet")
  32797. },
  32798. ]
  32799. ))
  32800. characterMakers.push(() => makeCharacter(
  32801. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32802. {
  32803. front: {
  32804. height: math.unit(50 + 9/12, "feet"),
  32805. weight: math.unit(32.8, "tons"),
  32806. name: "Front",
  32807. image: {
  32808. source: "./media/characters/irb'iiritaahn/front.svg",
  32809. extra: 1878/1826,
  32810. bottom: 326/2204
  32811. }
  32812. },
  32813. back: {
  32814. height: math.unit(50 + 9/12, "feet"),
  32815. weight: math.unit(32.8, "tons"),
  32816. name: "Back",
  32817. image: {
  32818. source: "./media/characters/irb'iiritaahn/back.svg",
  32819. extra: 2052/2018,
  32820. bottom: 152/2204
  32821. }
  32822. },
  32823. head: {
  32824. height: math.unit(12.86, "feet"),
  32825. name: "Head",
  32826. image: {
  32827. source: "./media/characters/irb'iiritaahn/head.svg"
  32828. }
  32829. },
  32830. maw: {
  32831. height: math.unit(9.66, "feet"),
  32832. name: "Maw",
  32833. image: {
  32834. source: "./media/characters/irb'iiritaahn/maw.svg"
  32835. }
  32836. },
  32837. frontDick: {
  32838. height: math.unit(8.78461, "feet"),
  32839. name: "Front Dick",
  32840. image: {
  32841. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32842. }
  32843. },
  32844. rearDick: {
  32845. height: math.unit(8.78461, "feet"),
  32846. name: "Rear Dick",
  32847. image: {
  32848. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32849. }
  32850. },
  32851. rearDickUnfolded: {
  32852. height: math.unit(8.78, "feet"),
  32853. name: "Rear Dick (Unfolded)",
  32854. image: {
  32855. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32856. }
  32857. },
  32858. wings: {
  32859. height: math.unit(43, "feet"),
  32860. name: "Wings",
  32861. image: {
  32862. source: "./media/characters/irb'iiritaahn/wings.svg"
  32863. }
  32864. },
  32865. },
  32866. [
  32867. {
  32868. name: "Macro",
  32869. height: math.unit(50 + 9/12, "feet"),
  32870. default: true
  32871. },
  32872. ]
  32873. ))
  32874. characterMakers.push(() => makeCharacter(
  32875. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32876. {
  32877. front: {
  32878. height: math.unit(205, "cm"),
  32879. weight: math.unit(102, "kg"),
  32880. name: "Front",
  32881. image: {
  32882. source: "./media/characters/irbisgreif/front.svg",
  32883. extra: 785/706,
  32884. bottom: 13/798
  32885. }
  32886. },
  32887. back: {
  32888. height: math.unit(205, "cm"),
  32889. weight: math.unit(102, "kg"),
  32890. name: "Back",
  32891. image: {
  32892. source: "./media/characters/irbisgreif/back.svg",
  32893. extra: 713/701,
  32894. bottom: 26/739
  32895. }
  32896. },
  32897. frontDressed: {
  32898. height: math.unit(216, "cm"),
  32899. weight: math.unit(102, "kg"),
  32900. name: "Front-dressed",
  32901. image: {
  32902. source: "./media/characters/irbisgreif/front-dressed.svg",
  32903. extra: 902/776,
  32904. bottom: 14/916
  32905. }
  32906. },
  32907. sideDressed: {
  32908. height: math.unit(195, "cm"),
  32909. weight: math.unit(102, "kg"),
  32910. name: "Side-dressed",
  32911. image: {
  32912. source: "./media/characters/irbisgreif/side-dressed.svg",
  32913. extra: 788/688,
  32914. bottom: 21/809
  32915. }
  32916. },
  32917. backDressed: {
  32918. height: math.unit(216, "cm"),
  32919. weight: math.unit(102, "kg"),
  32920. name: "Back-dressed",
  32921. image: {
  32922. source: "./media/characters/irbisgreif/back-dressed.svg",
  32923. extra: 901/783,
  32924. bottom: 10/911
  32925. }
  32926. },
  32927. dick: {
  32928. height: math.unit(0.49, "feet"),
  32929. name: "Dick",
  32930. image: {
  32931. source: "./media/characters/irbisgreif/dick.svg"
  32932. }
  32933. },
  32934. wingTop: {
  32935. height: math.unit(1.93 , "feet"),
  32936. name: "Wing-top",
  32937. image: {
  32938. source: "./media/characters/irbisgreif/wing-top.svg"
  32939. }
  32940. },
  32941. wingBottom: {
  32942. height: math.unit(1.93 , "feet"),
  32943. name: "Wing-bottom",
  32944. image: {
  32945. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32946. }
  32947. },
  32948. },
  32949. [
  32950. {
  32951. name: "Normal",
  32952. height: math.unit(216, "cm"),
  32953. default: true
  32954. },
  32955. ]
  32956. ))
  32957. characterMakers.push(() => makeCharacter(
  32958. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32959. {
  32960. front: {
  32961. height: math.unit(6, "feet"),
  32962. weight: math.unit(150, "lb"),
  32963. name: "Front",
  32964. image: {
  32965. source: "./media/characters/pride/front.svg",
  32966. extra: 1299/1230,
  32967. bottom: 18/1317
  32968. }
  32969. },
  32970. },
  32971. [
  32972. {
  32973. name: "Normal",
  32974. height: math.unit(7, "feet")
  32975. },
  32976. {
  32977. name: "Mini-macro",
  32978. height: math.unit(11, "feet")
  32979. },
  32980. {
  32981. name: "Macro",
  32982. height: math.unit(15, "meters"),
  32983. default: true
  32984. },
  32985. {
  32986. name: "Macro+",
  32987. height: math.unit(40, "meters")
  32988. },
  32989. ]
  32990. ))
  32991. characterMakers.push(() => makeCharacter(
  32992. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32993. {
  32994. front: {
  32995. height: math.unit(4 + 2 / 12, "feet"),
  32996. weight: math.unit(95, "lb"),
  32997. name: "Front",
  32998. image: {
  32999. source: "./media/characters/vaelophis-nyx/front.svg",
  33000. extra: 2532/2330,
  33001. bottom: 0/2532
  33002. }
  33003. },
  33004. back: {
  33005. height: math.unit(4 + 2 / 12, "feet"),
  33006. weight: math.unit(95, "lb"),
  33007. name: "Back",
  33008. image: {
  33009. source: "./media/characters/vaelophis-nyx/back.svg",
  33010. extra: 2484/2361,
  33011. bottom: 0/2484
  33012. }
  33013. },
  33014. feralSide: {
  33015. height: math.unit(2 + 1/12, "feet"),
  33016. weight: math.unit(20, "lb"),
  33017. name: "Feral (Side)",
  33018. image: {
  33019. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33020. extra: 1721/1581,
  33021. bottom: 70/1791
  33022. }
  33023. },
  33024. feralLazing: {
  33025. height: math.unit(1.08, "feet"),
  33026. weight: math.unit(20, "lb"),
  33027. name: "Feral (Lazing)",
  33028. image: {
  33029. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33030. extra: 822/822,
  33031. bottom: 248/1070
  33032. }
  33033. },
  33034. ear: {
  33035. height: math.unit(0.416, "feet"),
  33036. name: "Ear",
  33037. image: {
  33038. source: "./media/characters/vaelophis-nyx/ear.svg"
  33039. }
  33040. },
  33041. eye: {
  33042. height: math.unit(0.0748, "feet"),
  33043. name: "Eye",
  33044. image: {
  33045. source: "./media/characters/vaelophis-nyx/eye.svg"
  33046. }
  33047. },
  33048. mouth: {
  33049. height: math.unit(0.378, "feet"),
  33050. name: "Mouth",
  33051. image: {
  33052. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33053. }
  33054. },
  33055. spade: {
  33056. height: math.unit(0.55, "feet"),
  33057. name: "Spade",
  33058. image: {
  33059. source: "./media/characters/vaelophis-nyx/spade.svg"
  33060. }
  33061. },
  33062. },
  33063. [
  33064. {
  33065. name: "Normal",
  33066. height: math.unit(4 + 2/12, "feet"),
  33067. default: true
  33068. },
  33069. ]
  33070. ))
  33071. characterMakers.push(() => makeCharacter(
  33072. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33073. {
  33074. front: {
  33075. height: math.unit(7, "feet"),
  33076. weight: math.unit(231, "lb"),
  33077. name: "Front",
  33078. image: {
  33079. source: "./media/characters/flux/front.svg",
  33080. extra: 919/871,
  33081. bottom: 0/919
  33082. }
  33083. },
  33084. back: {
  33085. height: math.unit(7, "feet"),
  33086. weight: math.unit(231, "lb"),
  33087. name: "Back",
  33088. image: {
  33089. source: "./media/characters/flux/back.svg",
  33090. extra: 1040/992,
  33091. bottom: 0/1040
  33092. }
  33093. },
  33094. frontDressed: {
  33095. height: math.unit(7, "feet"),
  33096. weight: math.unit(231, "lb"),
  33097. name: "Front (Dressed)",
  33098. image: {
  33099. source: "./media/characters/flux/front-dressed.svg",
  33100. extra: 919/871,
  33101. bottom: 0/919
  33102. }
  33103. },
  33104. feralSide: {
  33105. height: math.unit(5, "feet"),
  33106. weight: math.unit(150, "lb"),
  33107. name: "Feral (Side)",
  33108. image: {
  33109. source: "./media/characters/flux/feral-side.svg",
  33110. extra: 598/528,
  33111. bottom: 28/626
  33112. }
  33113. },
  33114. head: {
  33115. height: math.unit(1.585, "feet"),
  33116. name: "Head",
  33117. image: {
  33118. source: "./media/characters/flux/head.svg"
  33119. }
  33120. },
  33121. headSide: {
  33122. height: math.unit(1.74, "feet"),
  33123. name: "Head (Side)",
  33124. image: {
  33125. source: "./media/characters/flux/head-side.svg"
  33126. }
  33127. },
  33128. headSideFire: {
  33129. height: math.unit(1.76, "feet"),
  33130. name: "Head (Side, Fire)",
  33131. image: {
  33132. source: "./media/characters/flux/head-side-fire.svg"
  33133. }
  33134. },
  33135. },
  33136. [
  33137. {
  33138. name: "Normal",
  33139. height: math.unit(7, "feet"),
  33140. default: true
  33141. },
  33142. ]
  33143. ))
  33144. characterMakers.push(() => makeCharacter(
  33145. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33146. {
  33147. front: {
  33148. height: math.unit(9, "feet"),
  33149. weight: math.unit(1012, "lb"),
  33150. name: "Front",
  33151. image: {
  33152. source: "./media/characters/ulfra-lupae/front.svg",
  33153. extra: 1083/1011,
  33154. bottom: 67/1150
  33155. }
  33156. },
  33157. },
  33158. [
  33159. {
  33160. name: "Micro",
  33161. height: math.unit(6, "inches")
  33162. },
  33163. {
  33164. name: "Socializing",
  33165. height: math.unit(6 + 5/12, "feet")
  33166. },
  33167. {
  33168. name: "Normal",
  33169. height: math.unit(9, "feet"),
  33170. default: true
  33171. },
  33172. {
  33173. name: "Macro",
  33174. height: math.unit(150, "feet")
  33175. },
  33176. ]
  33177. ))
  33178. characterMakers.push(() => makeCharacter(
  33179. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33180. {
  33181. front: {
  33182. height: math.unit(5 + 2/12, "feet"),
  33183. weight: math.unit(120, "lb"),
  33184. name: "Front",
  33185. image: {
  33186. source: "./media/characters/timber/front.svg",
  33187. extra: 2814/2705,
  33188. bottom: 181/2995
  33189. }
  33190. },
  33191. },
  33192. [
  33193. {
  33194. name: "Normal",
  33195. height: math.unit(5 + 2/12, "feet"),
  33196. default: true
  33197. },
  33198. ]
  33199. ))
  33200. characterMakers.push(() => makeCharacter(
  33201. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33202. {
  33203. front: {
  33204. height: math.unit(9, "feet"),
  33205. name: "Front",
  33206. image: {
  33207. source: "./media/characters/nicki/front.svg",
  33208. extra: 1240/990,
  33209. bottom: 45/1285
  33210. },
  33211. form: "anthro",
  33212. default: true
  33213. },
  33214. side: {
  33215. height: math.unit(9, "feet"),
  33216. name: "Side",
  33217. image: {
  33218. source: "./media/characters/nicki/side.svg",
  33219. extra: 1047/973,
  33220. bottom: 61/1108
  33221. },
  33222. form: "anthro"
  33223. },
  33224. back: {
  33225. height: math.unit(9, "feet"),
  33226. name: "Back",
  33227. image: {
  33228. source: "./media/characters/nicki/back.svg",
  33229. extra: 1006/965,
  33230. bottom: 39/1045
  33231. },
  33232. form: "anthro"
  33233. },
  33234. taur: {
  33235. height: math.unit(15, "feet"),
  33236. name: "Taur",
  33237. image: {
  33238. source: "./media/characters/nicki/taur.svg",
  33239. extra: 1592/1347,
  33240. bottom: 0/1592
  33241. },
  33242. form: "taur",
  33243. default: true
  33244. },
  33245. },
  33246. [
  33247. {
  33248. name: "Normal",
  33249. height: math.unit(9, "feet"),
  33250. form: "anthro",
  33251. default: true
  33252. },
  33253. {
  33254. name: "Normal",
  33255. height: math.unit(15, "feet"),
  33256. form: "taur",
  33257. default: true
  33258. }
  33259. ],
  33260. {
  33261. "anthro": {
  33262. name: "Anthro",
  33263. default: true
  33264. },
  33265. "taur": {
  33266. name: "Taur"
  33267. }
  33268. }
  33269. ))
  33270. characterMakers.push(() => makeCharacter(
  33271. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33272. {
  33273. front: {
  33274. height: math.unit(7 + 10/12, "feet"),
  33275. weight: math.unit(3.5, "tons"),
  33276. name: "Front",
  33277. image: {
  33278. source: "./media/characters/lee/front.svg",
  33279. extra: 1773/1615,
  33280. bottom: 86/1859
  33281. }
  33282. },
  33283. hand: {
  33284. height: math.unit(1.78, "feet"),
  33285. name: "Hand",
  33286. image: {
  33287. source: "./media/characters/lee/hand.svg"
  33288. }
  33289. },
  33290. maw: {
  33291. height: math.unit(1.18, "feet"),
  33292. name: "Maw",
  33293. image: {
  33294. source: "./media/characters/lee/maw.svg"
  33295. }
  33296. },
  33297. },
  33298. [
  33299. {
  33300. name: "Normal",
  33301. height: math.unit(7 + 10/12, "feet"),
  33302. default: true
  33303. },
  33304. ]
  33305. ))
  33306. characterMakers.push(() => makeCharacter(
  33307. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33308. {
  33309. front: {
  33310. height: math.unit(9, "feet"),
  33311. name: "Front",
  33312. image: {
  33313. source: "./media/characters/guti/front.svg",
  33314. extra: 4551/4355,
  33315. bottom: 123/4674
  33316. }
  33317. },
  33318. tongue: {
  33319. height: math.unit(1, "feet"),
  33320. name: "Tongue",
  33321. image: {
  33322. source: "./media/characters/guti/tongue.svg"
  33323. }
  33324. },
  33325. paw: {
  33326. height: math.unit(1.18, "feet"),
  33327. name: "Paw",
  33328. image: {
  33329. source: "./media/characters/guti/paw.svg"
  33330. }
  33331. },
  33332. },
  33333. [
  33334. {
  33335. name: "Normal",
  33336. height: math.unit(9, "feet"),
  33337. default: true
  33338. },
  33339. ]
  33340. ))
  33341. characterMakers.push(() => makeCharacter(
  33342. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33343. {
  33344. side: {
  33345. height: math.unit(5, "meters"),
  33346. name: "Side",
  33347. image: {
  33348. source: "./media/characters/vesper/side.svg",
  33349. extra: 1605/1518,
  33350. bottom: 0/1605
  33351. }
  33352. },
  33353. },
  33354. [
  33355. {
  33356. name: "Small",
  33357. height: math.unit(5, "meters")
  33358. },
  33359. {
  33360. name: "Sage",
  33361. height: math.unit(100, "meters"),
  33362. default: true
  33363. },
  33364. {
  33365. name: "Fun Size",
  33366. height: math.unit(600, "meters")
  33367. },
  33368. {
  33369. name: "Goddess",
  33370. height: math.unit(20000, "km")
  33371. },
  33372. {
  33373. name: "Maximum",
  33374. height: math.unit(5, "galaxies")
  33375. },
  33376. ]
  33377. ))
  33378. characterMakers.push(() => makeCharacter(
  33379. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33380. {
  33381. front: {
  33382. height: math.unit(6 + 3/12, "feet"),
  33383. weight: math.unit(190, "lb"),
  33384. name: "Front",
  33385. image: {
  33386. source: "./media/characters/gawain/front.svg",
  33387. extra: 2222/2139,
  33388. bottom: 90/2312
  33389. }
  33390. },
  33391. back: {
  33392. height: math.unit(6 + 3/12, "feet"),
  33393. weight: math.unit(190, "lb"),
  33394. name: "Back",
  33395. image: {
  33396. source: "./media/characters/gawain/back.svg",
  33397. extra: 2199/2111,
  33398. bottom: 73/2272
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Normal",
  33405. height: math.unit(6 + 3/12, "feet"),
  33406. default: true
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33412. {
  33413. side: {
  33414. height: math.unit(3.5, "meters"),
  33415. weight: math.unit(16000, "lb"),
  33416. name: "Side",
  33417. image: {
  33418. source: "./media/characters/dascalti/side.svg",
  33419. extra: 392/273,
  33420. bottom: 47/439
  33421. }
  33422. },
  33423. breath: {
  33424. height: math.unit(7.4, "feet"),
  33425. name: "Breath",
  33426. image: {
  33427. source: "./media/characters/dascalti/breath.svg"
  33428. }
  33429. },
  33430. fed: {
  33431. height: math.unit(3.6, "meters"),
  33432. weight: math.unit(16000, "lb"),
  33433. name: "Fed",
  33434. image: {
  33435. source: "./media/characters/dascalti/fed.svg",
  33436. extra: 1419/820,
  33437. bottom: 95/1514
  33438. }
  33439. },
  33440. },
  33441. [
  33442. {
  33443. name: "Normal",
  33444. height: math.unit(3.5, "meters"),
  33445. default: true
  33446. },
  33447. ]
  33448. ))
  33449. characterMakers.push(() => makeCharacter(
  33450. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33451. {
  33452. front: {
  33453. height: math.unit(3 + 5/12, "feet"),
  33454. name: "Front",
  33455. image: {
  33456. source: "./media/characters/mauve/front.svg",
  33457. extra: 1126/1033,
  33458. bottom: 65/1191
  33459. }
  33460. },
  33461. side: {
  33462. height: math.unit(3 + 5/12, "feet"),
  33463. name: "Side",
  33464. image: {
  33465. source: "./media/characters/mauve/side.svg",
  33466. extra: 1089/1001,
  33467. bottom: 29/1118
  33468. }
  33469. },
  33470. back: {
  33471. height: math.unit(3 + 5/12, "feet"),
  33472. name: "Back",
  33473. image: {
  33474. source: "./media/characters/mauve/back.svg",
  33475. extra: 1173/1053,
  33476. bottom: 109/1282
  33477. }
  33478. },
  33479. },
  33480. [
  33481. {
  33482. name: "Normal",
  33483. height: math.unit(3 + 5/12, "feet"),
  33484. default: true
  33485. },
  33486. ]
  33487. ))
  33488. characterMakers.push(() => makeCharacter(
  33489. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33490. {
  33491. front: {
  33492. height: math.unit(6 + 3/12, "feet"),
  33493. weight: math.unit(430, "lb"),
  33494. name: "Front",
  33495. image: {
  33496. source: "./media/characters/carlos/front.svg",
  33497. extra: 1964/1913,
  33498. bottom: 70/2034
  33499. }
  33500. },
  33501. },
  33502. [
  33503. {
  33504. name: "Normal",
  33505. height: math.unit(6 + 3/12, "feet"),
  33506. default: true
  33507. },
  33508. ]
  33509. ))
  33510. characterMakers.push(() => makeCharacter(
  33511. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33512. {
  33513. back: {
  33514. height: math.unit(5 + 10/12, "feet"),
  33515. weight: math.unit(200, "lb"),
  33516. name: "Back",
  33517. image: {
  33518. source: "./media/characters/jax/back.svg",
  33519. extra: 764/739,
  33520. bottom: 25/789
  33521. }
  33522. },
  33523. },
  33524. [
  33525. {
  33526. name: "Normal",
  33527. height: math.unit(5 + 10/12, "feet"),
  33528. default: true
  33529. },
  33530. ]
  33531. ))
  33532. characterMakers.push(() => makeCharacter(
  33533. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33534. {
  33535. front: {
  33536. height: math.unit(8, "feet"),
  33537. weight: math.unit(250, "lb"),
  33538. name: "Front",
  33539. image: {
  33540. source: "./media/characters/eikthynir/front.svg",
  33541. extra: 1332/1166,
  33542. bottom: 82/1414
  33543. }
  33544. },
  33545. back: {
  33546. height: math.unit(8, "feet"),
  33547. weight: math.unit(250, "lb"),
  33548. name: "Back",
  33549. image: {
  33550. source: "./media/characters/eikthynir/back.svg",
  33551. extra: 1342/1190,
  33552. bottom: 19/1361
  33553. }
  33554. },
  33555. dick: {
  33556. height: math.unit(2.35, "feet"),
  33557. name: "Dick",
  33558. image: {
  33559. source: "./media/characters/eikthynir/dick.svg"
  33560. }
  33561. },
  33562. },
  33563. [
  33564. {
  33565. name: "Normal",
  33566. height: math.unit(8, "feet"),
  33567. default: true
  33568. },
  33569. ]
  33570. ))
  33571. characterMakers.push(() => makeCharacter(
  33572. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33573. {
  33574. front: {
  33575. height: math.unit(99, "meters"),
  33576. weight: math.unit(13000, "tons"),
  33577. name: "Front",
  33578. image: {
  33579. source: "./media/characters/zlmos/front.svg",
  33580. extra: 2202/1992,
  33581. bottom: 315/2517
  33582. }
  33583. },
  33584. },
  33585. [
  33586. {
  33587. name: "Macro",
  33588. height: math.unit(99, "meters"),
  33589. default: true
  33590. },
  33591. ]
  33592. ))
  33593. characterMakers.push(() => makeCharacter(
  33594. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33595. {
  33596. front: {
  33597. height: math.unit(6 + 5/12, "feet"),
  33598. name: "Front",
  33599. image: {
  33600. source: "./media/characters/purri/front.svg",
  33601. extra: 1698/1610,
  33602. bottom: 32/1730
  33603. }
  33604. },
  33605. frontAlt: {
  33606. height: math.unit(6 + 5/12, "feet"),
  33607. name: "Front (Alt)",
  33608. image: {
  33609. source: "./media/characters/purri/front-alt.svg",
  33610. extra: 450/420,
  33611. bottom: 26/476
  33612. }
  33613. },
  33614. boots: {
  33615. height: math.unit(5.5, "feet"),
  33616. name: "Boots",
  33617. image: {
  33618. source: "./media/characters/purri/boots.svg",
  33619. extra: 905/853,
  33620. bottom: 18/923
  33621. }
  33622. },
  33623. lying: {
  33624. height: math.unit(2, "feet"),
  33625. name: "Lying",
  33626. image: {
  33627. source: "./media/characters/purri/lying.svg",
  33628. extra: 940/843,
  33629. bottom: 146/1086
  33630. }
  33631. },
  33632. devious: {
  33633. height: math.unit(1.77, "feet"),
  33634. name: "Devious",
  33635. image: {
  33636. source: "./media/characters/purri/devious.svg",
  33637. extra: 1440/1155,
  33638. bottom: 147/1587
  33639. }
  33640. },
  33641. bean: {
  33642. height: math.unit(1.94, "feet"),
  33643. name: "Bean",
  33644. image: {
  33645. source: "./media/characters/purri/bean.svg"
  33646. }
  33647. },
  33648. },
  33649. [
  33650. {
  33651. name: "Micro",
  33652. height: math.unit(1, "mm")
  33653. },
  33654. {
  33655. name: "Normal",
  33656. height: math.unit(6 + 5/12, "feet"),
  33657. default: true
  33658. },
  33659. {
  33660. name: "Macro :3c",
  33661. height: math.unit(2, "miles")
  33662. },
  33663. ]
  33664. ))
  33665. characterMakers.push(() => makeCharacter(
  33666. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33667. {
  33668. front: {
  33669. height: math.unit(6 + 2/12, "feet"),
  33670. weight: math.unit(250, "lb"),
  33671. name: "Front",
  33672. image: {
  33673. source: "./media/characters/moonlight/front.svg",
  33674. extra: 1044/908,
  33675. bottom: 56/1100
  33676. }
  33677. },
  33678. feral: {
  33679. height: math.unit(3 + 1/12, "feet"),
  33680. weight: math.unit(50, "kg"),
  33681. name: "Feral",
  33682. image: {
  33683. source: "./media/characters/moonlight/feral.svg",
  33684. extra: 3705/2791,
  33685. bottom: 145/3850
  33686. }
  33687. },
  33688. paw: {
  33689. height: math.unit(1, "feet"),
  33690. name: "Paw",
  33691. image: {
  33692. source: "./media/characters/moonlight/paw.svg"
  33693. }
  33694. },
  33695. paws: {
  33696. height: math.unit(0.98, "feet"),
  33697. name: "Paws",
  33698. image: {
  33699. source: "./media/characters/moonlight/paws.svg",
  33700. extra: 939/939,
  33701. bottom: 50/989
  33702. }
  33703. },
  33704. mouth: {
  33705. height: math.unit(0.48, "feet"),
  33706. name: "Mouth",
  33707. image: {
  33708. source: "./media/characters/moonlight/mouth.svg"
  33709. }
  33710. },
  33711. dick: {
  33712. height: math.unit(1.46, "feet"),
  33713. name: "Dick",
  33714. image: {
  33715. source: "./media/characters/moonlight/dick.svg"
  33716. }
  33717. },
  33718. },
  33719. [
  33720. {
  33721. name: "Normal",
  33722. height: math.unit(6 + 2/12, "feet"),
  33723. default: true
  33724. },
  33725. {
  33726. name: "Macro",
  33727. height: math.unit(300, "feet")
  33728. },
  33729. {
  33730. name: "Macro+",
  33731. height: math.unit(1, "mile")
  33732. },
  33733. {
  33734. name: "Mt. Moon",
  33735. height: math.unit(5, "miles")
  33736. },
  33737. {
  33738. name: "Megamacro",
  33739. height: math.unit(15, "miles")
  33740. },
  33741. ]
  33742. ))
  33743. characterMakers.push(() => makeCharacter(
  33744. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33745. {
  33746. back: {
  33747. height: math.unit(6, "feet"),
  33748. weight: math.unit(150, "lb"),
  33749. name: "Back",
  33750. image: {
  33751. source: "./media/characters/sylen/back.svg",
  33752. extra: 1335/1273,
  33753. bottom: 107/1442
  33754. }
  33755. },
  33756. },
  33757. [
  33758. {
  33759. name: "Normal",
  33760. height: math.unit(5 + 5/12, "feet")
  33761. },
  33762. {
  33763. name: "Megamacro",
  33764. height: math.unit(3, "miles"),
  33765. default: true
  33766. },
  33767. ]
  33768. ))
  33769. characterMakers.push(() => makeCharacter(
  33770. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33771. {
  33772. front: {
  33773. height: math.unit(6, "feet"),
  33774. weight: math.unit(190, "lb"),
  33775. name: "Front",
  33776. image: {
  33777. source: "./media/characters/huttser/front.svg",
  33778. extra: 1152/1058,
  33779. bottom: 23/1175
  33780. }
  33781. },
  33782. side: {
  33783. height: math.unit(6, "feet"),
  33784. weight: math.unit(190, "lb"),
  33785. name: "Side",
  33786. image: {
  33787. source: "./media/characters/huttser/side.svg",
  33788. extra: 1174/1065,
  33789. bottom: 18/1192
  33790. }
  33791. },
  33792. back: {
  33793. height: math.unit(6, "feet"),
  33794. weight: math.unit(190, "lb"),
  33795. name: "Back",
  33796. image: {
  33797. source: "./media/characters/huttser/back.svg",
  33798. extra: 1158/1056,
  33799. bottom: 12/1170
  33800. }
  33801. },
  33802. },
  33803. [
  33804. ]
  33805. ))
  33806. characterMakers.push(() => makeCharacter(
  33807. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33808. {
  33809. side: {
  33810. height: math.unit(12 + 9/12, "feet"),
  33811. weight: math.unit(15000, "lb"),
  33812. name: "Side",
  33813. image: {
  33814. source: "./media/characters/faan/side.svg",
  33815. extra: 2747/2697,
  33816. bottom: 0/2747
  33817. }
  33818. },
  33819. front: {
  33820. height: math.unit(12 + 9/12, "feet"),
  33821. weight: math.unit(15000, "lb"),
  33822. name: "Front",
  33823. image: {
  33824. source: "./media/characters/faan/front.svg",
  33825. extra: 607/571,
  33826. bottom: 24/631
  33827. }
  33828. },
  33829. head: {
  33830. height: math.unit(2.85, "feet"),
  33831. name: "Head",
  33832. image: {
  33833. source: "./media/characters/faan/head.svg"
  33834. }
  33835. },
  33836. headAlt: {
  33837. height: math.unit(3.13, "feet"),
  33838. name: "Head-alt",
  33839. image: {
  33840. source: "./media/characters/faan/head-alt.svg"
  33841. }
  33842. },
  33843. },
  33844. [
  33845. {
  33846. name: "Normal",
  33847. height: math.unit(12 + 9/12, "feet"),
  33848. default: true
  33849. },
  33850. ]
  33851. ))
  33852. characterMakers.push(() => makeCharacter(
  33853. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33854. {
  33855. front: {
  33856. height: math.unit(6, "feet"),
  33857. weight: math.unit(300, "lb"),
  33858. name: "Front",
  33859. image: {
  33860. source: "./media/characters/tanio/front.svg",
  33861. extra: 711/673,
  33862. bottom: 25/736
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Normal",
  33869. height: math.unit(6, "feet"),
  33870. default: true
  33871. },
  33872. ]
  33873. ))
  33874. characterMakers.push(() => makeCharacter(
  33875. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33876. {
  33877. front: {
  33878. height: math.unit(3, "inches"),
  33879. name: "Front",
  33880. image: {
  33881. source: "./media/characters/noboru/front.svg",
  33882. extra: 1039/932,
  33883. bottom: 18/1057
  33884. }
  33885. },
  33886. },
  33887. [
  33888. {
  33889. name: "Micro",
  33890. height: math.unit(3, "inches"),
  33891. default: true
  33892. },
  33893. ]
  33894. ))
  33895. characterMakers.push(() => makeCharacter(
  33896. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33897. {
  33898. front: {
  33899. height: math.unit(1.85, "meters"),
  33900. weight: math.unit(80, "kg"),
  33901. name: "Front",
  33902. image: {
  33903. source: "./media/characters/daniel-barrett/front.svg",
  33904. extra: 355/337,
  33905. bottom: 9/364
  33906. }
  33907. },
  33908. },
  33909. [
  33910. {
  33911. name: "Pico",
  33912. height: math.unit(0.0433, "mm")
  33913. },
  33914. {
  33915. name: "Nano",
  33916. height: math.unit(1.5, "mm")
  33917. },
  33918. {
  33919. name: "Micro",
  33920. height: math.unit(5.3, "cm"),
  33921. default: true
  33922. },
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(1.85, "meters")
  33926. },
  33927. {
  33928. name: "Macro",
  33929. height: math.unit(64.7, "meters")
  33930. },
  33931. {
  33932. name: "Megamacro",
  33933. height: math.unit(2.26, "km")
  33934. },
  33935. {
  33936. name: "Gigamacro",
  33937. height: math.unit(79, "km")
  33938. },
  33939. {
  33940. name: "Teramacro",
  33941. height: math.unit(2765, "km")
  33942. },
  33943. {
  33944. name: "Petamacro",
  33945. height: math.unit(96678, "km")
  33946. },
  33947. ]
  33948. ))
  33949. characterMakers.push(() => makeCharacter(
  33950. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33951. {
  33952. front: {
  33953. height: math.unit(30, "meters"),
  33954. weight: math.unit(400, "tons"),
  33955. name: "Front",
  33956. image: {
  33957. source: "./media/characters/zeel/front.svg",
  33958. extra: 2599/2599,
  33959. bottom: 226/2825
  33960. }
  33961. },
  33962. },
  33963. [
  33964. {
  33965. name: "Macro",
  33966. height: math.unit(30, "meters"),
  33967. default: true
  33968. },
  33969. ]
  33970. ))
  33971. characterMakers.push(() => makeCharacter(
  33972. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33973. {
  33974. front: {
  33975. height: math.unit(6 + 7/12, "feet"),
  33976. weight: math.unit(210, "lb"),
  33977. name: "Front",
  33978. image: {
  33979. source: "./media/characters/tarn/front.svg",
  33980. extra: 3517/3220,
  33981. bottom: 91/3608
  33982. }
  33983. },
  33984. back: {
  33985. height: math.unit(6 + 7/12, "feet"),
  33986. weight: math.unit(210, "lb"),
  33987. name: "Back",
  33988. image: {
  33989. source: "./media/characters/tarn/back.svg",
  33990. extra: 3566/3241,
  33991. bottom: 34/3600
  33992. }
  33993. },
  33994. dick: {
  33995. height: math.unit(1.65, "feet"),
  33996. name: "Dick",
  33997. image: {
  33998. source: "./media/characters/tarn/dick.svg"
  33999. }
  34000. },
  34001. paw: {
  34002. height: math.unit(1.80, "feet"),
  34003. name: "Paw",
  34004. image: {
  34005. source: "./media/characters/tarn/paw.svg"
  34006. }
  34007. },
  34008. tongue: {
  34009. height: math.unit(0.97, "feet"),
  34010. name: "Tongue",
  34011. image: {
  34012. source: "./media/characters/tarn/tongue.svg"
  34013. }
  34014. },
  34015. },
  34016. [
  34017. {
  34018. name: "Micro",
  34019. height: math.unit(4, "inches")
  34020. },
  34021. {
  34022. name: "Normal",
  34023. height: math.unit(6 + 7/12, "feet"),
  34024. default: true
  34025. },
  34026. {
  34027. name: "Macro",
  34028. height: math.unit(300, "feet")
  34029. },
  34030. ]
  34031. ))
  34032. characterMakers.push(() => makeCharacter(
  34033. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34034. {
  34035. front: {
  34036. height: math.unit(5 + 7/12, "feet"),
  34037. weight: math.unit(80, "kg"),
  34038. name: "Front",
  34039. image: {
  34040. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34041. extra: 3023/2865,
  34042. bottom: 33/3056
  34043. }
  34044. },
  34045. back: {
  34046. height: math.unit(5 + 7/12, "feet"),
  34047. weight: math.unit(80, "kg"),
  34048. name: "Back",
  34049. image: {
  34050. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34051. extra: 3020/2886,
  34052. bottom: 30/3050
  34053. }
  34054. },
  34055. dick: {
  34056. height: math.unit(0.98, "feet"),
  34057. name: "Dick",
  34058. image: {
  34059. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34060. }
  34061. },
  34062. anatomy: {
  34063. height: math.unit(2.86, "feet"),
  34064. name: "Anatomy",
  34065. image: {
  34066. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34067. }
  34068. },
  34069. },
  34070. [
  34071. {
  34072. name: "Really Small",
  34073. height: math.unit(2, "inches")
  34074. },
  34075. {
  34076. name: "Micro",
  34077. height: math.unit(5.583, "inches")
  34078. },
  34079. {
  34080. name: "Normal",
  34081. height: math.unit(5 + 7/12, "feet"),
  34082. default: true
  34083. },
  34084. {
  34085. name: "Macro",
  34086. height: math.unit(67, "feet")
  34087. },
  34088. {
  34089. name: "Megamacro",
  34090. height: math.unit(134, "feet")
  34091. },
  34092. ]
  34093. ))
  34094. characterMakers.push(() => makeCharacter(
  34095. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34096. {
  34097. front: {
  34098. height: math.unit(9, "feet"),
  34099. weight: math.unit(120, "lb"),
  34100. name: "Front",
  34101. image: {
  34102. source: "./media/characters/sally/front.svg",
  34103. extra: 1506/1349,
  34104. bottom: 66/1572
  34105. }
  34106. },
  34107. },
  34108. [
  34109. {
  34110. name: "Normal",
  34111. height: math.unit(9, "feet"),
  34112. default: true
  34113. },
  34114. ]
  34115. ))
  34116. characterMakers.push(() => makeCharacter(
  34117. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34118. {
  34119. front: {
  34120. height: math.unit(8, "feet"),
  34121. weight: math.unit(900, "lb"),
  34122. name: "Front",
  34123. image: {
  34124. source: "./media/characters/owen/front.svg",
  34125. extra: 1761/1657,
  34126. bottom: 74/1835
  34127. }
  34128. },
  34129. side: {
  34130. height: math.unit(8, "feet"),
  34131. weight: math.unit(900, "lb"),
  34132. name: "Side",
  34133. image: {
  34134. source: "./media/characters/owen/side.svg",
  34135. extra: 1797/1734,
  34136. bottom: 30/1827
  34137. }
  34138. },
  34139. back: {
  34140. height: math.unit(8, "feet"),
  34141. weight: math.unit(900, "lb"),
  34142. name: "Back",
  34143. image: {
  34144. source: "./media/characters/owen/back.svg",
  34145. extra: 1796/1706,
  34146. bottom: 59/1855
  34147. }
  34148. },
  34149. maw: {
  34150. height: math.unit(1.76, "feet"),
  34151. name: "Maw",
  34152. image: {
  34153. source: "./media/characters/owen/maw.svg"
  34154. }
  34155. },
  34156. },
  34157. [
  34158. {
  34159. name: "Normal",
  34160. height: math.unit(8, "feet"),
  34161. default: true
  34162. },
  34163. ]
  34164. ))
  34165. characterMakers.push(() => makeCharacter(
  34166. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34167. {
  34168. front: {
  34169. height: math.unit(4, "feet"),
  34170. weight: math.unit(400, "lb"),
  34171. name: "Front",
  34172. image: {
  34173. source: "./media/characters/ryth/front.svg",
  34174. extra: 1920/1748,
  34175. bottom: 42/1962
  34176. }
  34177. },
  34178. back: {
  34179. height: math.unit(4, "feet"),
  34180. weight: math.unit(400, "lb"),
  34181. name: "Back",
  34182. image: {
  34183. source: "./media/characters/ryth/back.svg",
  34184. extra: 1897/1690,
  34185. bottom: 89/1986
  34186. }
  34187. },
  34188. mouth: {
  34189. height: math.unit(1.39, "feet"),
  34190. name: "Mouth",
  34191. image: {
  34192. source: "./media/characters/ryth/mouth.svg"
  34193. }
  34194. },
  34195. tailmaw: {
  34196. height: math.unit(1.23, "feet"),
  34197. name: "Tailmaw",
  34198. image: {
  34199. source: "./media/characters/ryth/tailmaw.svg"
  34200. }
  34201. },
  34202. goia: {
  34203. height: math.unit(4, "meters"),
  34204. weight: math.unit(10800, "lb"),
  34205. name: "Goia",
  34206. image: {
  34207. source: "./media/characters/ryth/goia.svg",
  34208. extra: 745/640,
  34209. bottom: 107/852
  34210. }
  34211. },
  34212. goiaFront: {
  34213. height: math.unit(4, "meters"),
  34214. weight: math.unit(10800, "lb"),
  34215. name: "Goia (Front)",
  34216. image: {
  34217. source: "./media/characters/ryth/goia-front.svg",
  34218. extra: 750/586,
  34219. bottom: 114/864
  34220. }
  34221. },
  34222. goiaMaw: {
  34223. height: math.unit(5.55, "feet"),
  34224. name: "Goia Maw",
  34225. image: {
  34226. source: "./media/characters/ryth/goia-maw.svg"
  34227. }
  34228. },
  34229. goiaForepaw: {
  34230. height: math.unit(3.5, "feet"),
  34231. name: "Goia Forepaw",
  34232. image: {
  34233. source: "./media/characters/ryth/goia-forepaw.svg"
  34234. }
  34235. },
  34236. goiaHindpaw: {
  34237. height: math.unit(5.55, "feet"),
  34238. name: "Goia Hindpaw",
  34239. image: {
  34240. source: "./media/characters/ryth/goia-hindpaw.svg"
  34241. }
  34242. },
  34243. },
  34244. [
  34245. {
  34246. name: "Normal",
  34247. height: math.unit(4, "feet"),
  34248. default: true
  34249. },
  34250. ]
  34251. ))
  34252. characterMakers.push(() => makeCharacter(
  34253. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34254. {
  34255. front: {
  34256. height: math.unit(7, "feet"),
  34257. weight: math.unit(180, "lb"),
  34258. name: "Front",
  34259. image: {
  34260. source: "./media/characters/necrolance/front.svg",
  34261. extra: 1062/947,
  34262. bottom: 41/1103
  34263. }
  34264. },
  34265. back: {
  34266. height: math.unit(7, "feet"),
  34267. weight: math.unit(180, "lb"),
  34268. name: "Back",
  34269. image: {
  34270. source: "./media/characters/necrolance/back.svg",
  34271. extra: 1045/984,
  34272. bottom: 14/1059
  34273. }
  34274. },
  34275. wing: {
  34276. height: math.unit(2.67, "feet"),
  34277. name: "Wing",
  34278. image: {
  34279. source: "./media/characters/necrolance/wing.svg"
  34280. }
  34281. },
  34282. },
  34283. [
  34284. {
  34285. name: "Normal",
  34286. height: math.unit(7, "feet"),
  34287. default: true
  34288. },
  34289. ]
  34290. ))
  34291. characterMakers.push(() => makeCharacter(
  34292. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34293. {
  34294. front: {
  34295. height: math.unit(76, "meters"),
  34296. weight: math.unit(30000, "tons"),
  34297. name: "Front",
  34298. image: {
  34299. source: "./media/characters/tyler/front.svg",
  34300. extra: 1640/1640,
  34301. bottom: 114/1754
  34302. }
  34303. },
  34304. },
  34305. [
  34306. {
  34307. name: "Macro",
  34308. height: math.unit(76, "meters"),
  34309. default: true
  34310. },
  34311. ]
  34312. ))
  34313. characterMakers.push(() => makeCharacter(
  34314. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34315. {
  34316. front: {
  34317. height: math.unit(4 + 11/12, "feet"),
  34318. weight: math.unit(132, "lb"),
  34319. name: "Front",
  34320. image: {
  34321. source: "./media/characters/icey/front.svg",
  34322. extra: 2750/2550,
  34323. bottom: 33/2783
  34324. }
  34325. },
  34326. back: {
  34327. height: math.unit(4 + 11/12, "feet"),
  34328. weight: math.unit(132, "lb"),
  34329. name: "Back",
  34330. image: {
  34331. source: "./media/characters/icey/back.svg",
  34332. extra: 2624/2481,
  34333. bottom: 35/2659
  34334. }
  34335. },
  34336. },
  34337. [
  34338. {
  34339. name: "Normal",
  34340. height: math.unit(4 + 11/12, "feet"),
  34341. default: true
  34342. },
  34343. ]
  34344. ))
  34345. characterMakers.push(() => makeCharacter(
  34346. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34347. {
  34348. front: {
  34349. height: math.unit(100, "feet"),
  34350. weight: math.unit(0, "lb"),
  34351. name: "Front",
  34352. image: {
  34353. source: "./media/characters/smile/front.svg",
  34354. extra: 2983/2912,
  34355. bottom: 162/3145
  34356. }
  34357. },
  34358. back: {
  34359. height: math.unit(100, "feet"),
  34360. weight: math.unit(0, "lb"),
  34361. name: "Back",
  34362. image: {
  34363. source: "./media/characters/smile/back.svg",
  34364. extra: 3143/3031,
  34365. bottom: 91/3234
  34366. }
  34367. },
  34368. head: {
  34369. height: math.unit(26.3, "feet"),
  34370. weight: math.unit(0, "lb"),
  34371. name: "Head",
  34372. image: {
  34373. source: "./media/characters/smile/head.svg"
  34374. }
  34375. },
  34376. collar: {
  34377. height: math.unit(5.3, "feet"),
  34378. weight: math.unit(0, "lb"),
  34379. name: "Collar",
  34380. image: {
  34381. source: "./media/characters/smile/collar.svg"
  34382. }
  34383. },
  34384. },
  34385. [
  34386. {
  34387. name: "Macro",
  34388. height: math.unit(100, "feet"),
  34389. default: true
  34390. },
  34391. ]
  34392. ))
  34393. characterMakers.push(() => makeCharacter(
  34394. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34395. {
  34396. dragon: {
  34397. height: math.unit(26, "feet"),
  34398. weight: math.unit(36, "tons"),
  34399. name: "Dragon",
  34400. image: {
  34401. source: "./media/characters/arimphae/dragon.svg",
  34402. extra: 1574/983,
  34403. bottom: 357/1931
  34404. }
  34405. },
  34406. drake: {
  34407. height: math.unit(9, "feet"),
  34408. weight: math.unit(1.5, "tons"),
  34409. name: "Drake",
  34410. image: {
  34411. source: "./media/characters/arimphae/drake.svg",
  34412. extra: 1120/925,
  34413. bottom: 435/1555
  34414. }
  34415. },
  34416. },
  34417. [
  34418. {
  34419. name: "Small",
  34420. height: math.unit(26*5/9, "feet")
  34421. },
  34422. {
  34423. name: "Normal",
  34424. height: math.unit(26, "feet"),
  34425. default: true
  34426. },
  34427. ]
  34428. ))
  34429. characterMakers.push(() => makeCharacter(
  34430. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34431. {
  34432. front: {
  34433. height: math.unit(8 + 9/12, "feet"),
  34434. name: "Front",
  34435. image: {
  34436. source: "./media/characters/xander/front.svg",
  34437. extra: 1237/974,
  34438. bottom: 94/1331
  34439. }
  34440. },
  34441. },
  34442. [
  34443. {
  34444. name: "Normal",
  34445. height: math.unit(8 + 9/12, "feet"),
  34446. default: true
  34447. },
  34448. {
  34449. name: "Gaze Grabber",
  34450. height: math.unit(13 + 8/12, "feet")
  34451. },
  34452. {
  34453. name: "Jaw Dropper",
  34454. height: math.unit(27, "feet")
  34455. },
  34456. {
  34457. name: "Show Stopper",
  34458. height: math.unit(136, "feet")
  34459. },
  34460. {
  34461. name: "Superstar",
  34462. height: math.unit(1.9e6, "miles")
  34463. },
  34464. ]
  34465. ))
  34466. characterMakers.push(() => makeCharacter(
  34467. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34468. {
  34469. side: {
  34470. height: math.unit(2100, "feet"),
  34471. name: "Side",
  34472. image: {
  34473. source: "./media/characters/osiris/side.svg",
  34474. extra: 1105/939,
  34475. bottom: 167/1272
  34476. }
  34477. },
  34478. },
  34479. [
  34480. {
  34481. name: "Macro",
  34482. height: math.unit(2100, "feet"),
  34483. default: true
  34484. },
  34485. ]
  34486. ))
  34487. characterMakers.push(() => makeCharacter(
  34488. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34489. {
  34490. front: {
  34491. height: math.unit(6 + 8/12, "feet"),
  34492. weight: math.unit(225, "lb"),
  34493. name: "Front",
  34494. image: {
  34495. source: "./media/characters/rhys-londe/front.svg",
  34496. extra: 2258/2141,
  34497. bottom: 188/2446
  34498. }
  34499. },
  34500. back: {
  34501. height: math.unit(6 + 8/12, "feet"),
  34502. weight: math.unit(225, "lb"),
  34503. name: "Back",
  34504. image: {
  34505. source: "./media/characters/rhys-londe/back.svg",
  34506. extra: 2237/2137,
  34507. bottom: 63/2300
  34508. }
  34509. },
  34510. frontNsfw: {
  34511. height: math.unit(6 + 8/12, "feet"),
  34512. weight: math.unit(225, "lb"),
  34513. name: "Front (NSFW)",
  34514. image: {
  34515. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34516. extra: 2258/2141,
  34517. bottom: 188/2446
  34518. }
  34519. },
  34520. backNsfw: {
  34521. height: math.unit(6 + 8/12, "feet"),
  34522. weight: math.unit(225, "lb"),
  34523. name: "Back (NSFW)",
  34524. image: {
  34525. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34526. extra: 2237/2137,
  34527. bottom: 63/2300
  34528. }
  34529. },
  34530. dick: {
  34531. height: math.unit(30, "inches"),
  34532. name: "Dick",
  34533. image: {
  34534. source: "./media/characters/rhys-londe/dick.svg"
  34535. }
  34536. },
  34537. maw: {
  34538. height: math.unit(1.6, "feet"),
  34539. name: "Maw",
  34540. image: {
  34541. source: "./media/characters/rhys-londe/maw.svg"
  34542. }
  34543. },
  34544. },
  34545. [
  34546. {
  34547. name: "Normal",
  34548. height: math.unit(6 + 8/12, "feet"),
  34549. default: true
  34550. },
  34551. ]
  34552. ))
  34553. characterMakers.push(() => makeCharacter(
  34554. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34555. {
  34556. front: {
  34557. height: math.unit(3 + 10/12, "feet"),
  34558. weight: math.unit(90, "lb"),
  34559. name: "Front",
  34560. image: {
  34561. source: "./media/characters/taivas-ensim/front.svg",
  34562. extra: 1327/1216,
  34563. bottom: 96/1423
  34564. }
  34565. },
  34566. back: {
  34567. height: math.unit(3 + 10/12, "feet"),
  34568. weight: math.unit(90, "lb"),
  34569. name: "Back",
  34570. image: {
  34571. source: "./media/characters/taivas-ensim/back.svg",
  34572. extra: 1355/1247,
  34573. bottom: 11/1366
  34574. }
  34575. },
  34576. frontNsfw: {
  34577. height: math.unit(3 + 10/12, "feet"),
  34578. weight: math.unit(90, "lb"),
  34579. name: "Front (NSFW)",
  34580. image: {
  34581. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34582. extra: 1327/1216,
  34583. bottom: 96/1423
  34584. }
  34585. },
  34586. backNsfw: {
  34587. height: math.unit(3 + 10/12, "feet"),
  34588. weight: math.unit(90, "lb"),
  34589. name: "Back (NSFW)",
  34590. image: {
  34591. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34592. extra: 1355/1247,
  34593. bottom: 11/1366
  34594. }
  34595. },
  34596. },
  34597. [
  34598. {
  34599. name: "Normal",
  34600. height: math.unit(3 + 10/12, "feet"),
  34601. default: true
  34602. },
  34603. ]
  34604. ))
  34605. characterMakers.push(() => makeCharacter(
  34606. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34607. {
  34608. front: {
  34609. height: math.unit(9 + 6/12, "feet"),
  34610. weight: math.unit(940, "lb"),
  34611. name: "Front",
  34612. image: {
  34613. source: "./media/characters/byliss/front.svg",
  34614. extra: 1327/1290,
  34615. bottom: 82/1409
  34616. }
  34617. },
  34618. back: {
  34619. height: math.unit(9 + 6/12, "feet"),
  34620. weight: math.unit(940, "lb"),
  34621. name: "Back",
  34622. image: {
  34623. source: "./media/characters/byliss/back.svg",
  34624. extra: 1376/1349,
  34625. bottom: 9/1385
  34626. }
  34627. },
  34628. frontNsfw: {
  34629. height: math.unit(9 + 6/12, "feet"),
  34630. weight: math.unit(940, "lb"),
  34631. name: "Front (NSFW)",
  34632. image: {
  34633. source: "./media/characters/byliss/front-nsfw.svg",
  34634. extra: 1327/1290,
  34635. bottom: 82/1409
  34636. }
  34637. },
  34638. backNsfw: {
  34639. height: math.unit(9 + 6/12, "feet"),
  34640. weight: math.unit(940, "lb"),
  34641. name: "Back (NSFW)",
  34642. image: {
  34643. source: "./media/characters/byliss/back-nsfw.svg",
  34644. extra: 1376/1349,
  34645. bottom: 9/1385
  34646. }
  34647. },
  34648. },
  34649. [
  34650. {
  34651. name: "Normal",
  34652. height: math.unit(9 + 6/12, "feet"),
  34653. default: true
  34654. },
  34655. ]
  34656. ))
  34657. characterMakers.push(() => makeCharacter(
  34658. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34659. {
  34660. front: {
  34661. height: math.unit(5 + 2/12, "feet"),
  34662. weight: math.unit(200, "lb"),
  34663. name: "Front",
  34664. image: {
  34665. source: "./media/characters/noraly/front.svg",
  34666. extra: 4985/4773,
  34667. bottom: 150/5135
  34668. }
  34669. },
  34670. full: {
  34671. height: math.unit(5 + 2/12, "feet"),
  34672. weight: math.unit(164, "lb"),
  34673. name: "Full",
  34674. image: {
  34675. source: "./media/characters/noraly/full.svg",
  34676. extra: 1114/1059,
  34677. bottom: 35/1149
  34678. }
  34679. },
  34680. fuller: {
  34681. height: math.unit(5 + 2/12, "feet"),
  34682. weight: math.unit(230, "lb"),
  34683. name: "Fuller",
  34684. image: {
  34685. source: "./media/characters/noraly/fuller.svg",
  34686. extra: 1114/1059,
  34687. bottom: 35/1149
  34688. }
  34689. },
  34690. fullest: {
  34691. height: math.unit(5 + 2/12, "feet"),
  34692. weight: math.unit(300, "lb"),
  34693. name: "Fullest",
  34694. image: {
  34695. source: "./media/characters/noraly/fullest.svg",
  34696. extra: 1114/1059,
  34697. bottom: 35/1149
  34698. }
  34699. },
  34700. },
  34701. [
  34702. {
  34703. name: "Normal",
  34704. height: math.unit(5 + 2/12, "feet"),
  34705. default: true
  34706. },
  34707. ]
  34708. ))
  34709. characterMakers.push(() => makeCharacter(
  34710. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34711. {
  34712. front: {
  34713. height: math.unit(5 + 2/12, "feet"),
  34714. weight: math.unit(210, "lb"),
  34715. name: "Front",
  34716. image: {
  34717. source: "./media/characters/pera/front.svg",
  34718. extra: 1560/1531,
  34719. bottom: 165/1725
  34720. }
  34721. },
  34722. back: {
  34723. height: math.unit(5 + 2/12, "feet"),
  34724. weight: math.unit(210, "lb"),
  34725. name: "Back",
  34726. image: {
  34727. source: "./media/characters/pera/back.svg",
  34728. extra: 1523/1493,
  34729. bottom: 152/1675
  34730. }
  34731. },
  34732. dick: {
  34733. height: math.unit(2.4, "feet"),
  34734. name: "Dick",
  34735. image: {
  34736. source: "./media/characters/pera/dick.svg"
  34737. }
  34738. },
  34739. },
  34740. [
  34741. {
  34742. name: "Normal",
  34743. height: math.unit(5 + 2/12, "feet"),
  34744. default: true
  34745. },
  34746. ]
  34747. ))
  34748. characterMakers.push(() => makeCharacter(
  34749. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34750. {
  34751. front: {
  34752. height: math.unit(12, "feet"),
  34753. weight: math.unit(3200, "lb"),
  34754. name: "Front",
  34755. image: {
  34756. source: "./media/characters/julian/front.svg",
  34757. extra: 2962/2701,
  34758. bottom: 184/3146
  34759. }
  34760. },
  34761. maw: {
  34762. height: math.unit(5.35, "feet"),
  34763. name: "Maw",
  34764. image: {
  34765. source: "./media/characters/julian/maw.svg"
  34766. }
  34767. },
  34768. paw: {
  34769. height: math.unit(3.07, "feet"),
  34770. name: "Paw",
  34771. image: {
  34772. source: "./media/characters/julian/paw.svg"
  34773. }
  34774. },
  34775. },
  34776. [
  34777. {
  34778. name: "Default",
  34779. height: math.unit(12, "feet"),
  34780. default: true
  34781. },
  34782. {
  34783. name: "Big",
  34784. height: math.unit(50, "feet")
  34785. },
  34786. {
  34787. name: "Really Big",
  34788. height: math.unit(1, "mile")
  34789. },
  34790. {
  34791. name: "Extremely Big",
  34792. height: math.unit(100, "miles")
  34793. },
  34794. {
  34795. name: "Planet Hugger",
  34796. height: math.unit(200, "megameters")
  34797. },
  34798. {
  34799. name: "Unreasonably Big",
  34800. height: math.unit(1e300, "meters")
  34801. },
  34802. ]
  34803. ))
  34804. characterMakers.push(() => makeCharacter(
  34805. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34806. {
  34807. solgooleo: {
  34808. height: math.unit(4, "meters"),
  34809. weight: math.unit(6000*1.5, "kg"),
  34810. volume: math.unit(6000, "liters"),
  34811. name: "Solgooleo",
  34812. image: {
  34813. source: "./media/characters/pi/solgooleo.svg",
  34814. extra: 388/331,
  34815. bottom: 29/417
  34816. }
  34817. },
  34818. },
  34819. [
  34820. {
  34821. name: "Normal",
  34822. height: math.unit(4, "meters"),
  34823. default: true
  34824. },
  34825. ]
  34826. ))
  34827. characterMakers.push(() => makeCharacter(
  34828. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34829. {
  34830. front: {
  34831. height: math.unit(8, "feet"),
  34832. weight: math.unit(4, "tons"),
  34833. name: "Front",
  34834. image: {
  34835. source: "./media/characters/shaun/front.svg",
  34836. extra: 503/495,
  34837. bottom: 20/523
  34838. }
  34839. },
  34840. back: {
  34841. height: math.unit(8, "feet"),
  34842. weight: math.unit(4, "tons"),
  34843. name: "Back",
  34844. image: {
  34845. source: "./media/characters/shaun/back.svg",
  34846. extra: 487/480,
  34847. bottom: 20/507
  34848. }
  34849. },
  34850. },
  34851. [
  34852. {
  34853. name: "Lorg",
  34854. height: math.unit(8, "feet"),
  34855. default: true
  34856. },
  34857. ]
  34858. ))
  34859. characterMakers.push(() => makeCharacter(
  34860. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34861. {
  34862. frontAnthro: {
  34863. height: math.unit(7, "feet"),
  34864. name: "Front",
  34865. image: {
  34866. source: "./media/characters/sini/front-anthro.svg",
  34867. extra: 726/678,
  34868. bottom: 35/761
  34869. },
  34870. form: "anthro",
  34871. default: true
  34872. },
  34873. backAnthro: {
  34874. height: math.unit(7, "feet"),
  34875. name: "Back",
  34876. image: {
  34877. source: "./media/characters/sini/back-anthro.svg",
  34878. extra: 743/701,
  34879. bottom: 12/755
  34880. },
  34881. form: "anthro",
  34882. },
  34883. frontAnthroNsfw: {
  34884. height: math.unit(7, "feet"),
  34885. name: "Front (NSFW)",
  34886. image: {
  34887. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34888. extra: 726/678,
  34889. bottom: 35/761
  34890. },
  34891. form: "anthro"
  34892. },
  34893. backAnthroNsfw: {
  34894. height: math.unit(7, "feet"),
  34895. name: "Back (NSFW)",
  34896. image: {
  34897. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34898. extra: 743/701,
  34899. bottom: 12/755
  34900. },
  34901. form: "anthro",
  34902. },
  34903. mawAnthro: {
  34904. height: math.unit(2.14, "feet"),
  34905. name: "Maw",
  34906. image: {
  34907. source: "./media/characters/sini/maw-anthro.svg"
  34908. },
  34909. form: "anthro"
  34910. },
  34911. dick: {
  34912. height: math.unit(1.45, "feet"),
  34913. name: "Dick",
  34914. image: {
  34915. source: "./media/characters/sini/dick-anthro.svg"
  34916. },
  34917. form: "anthro"
  34918. },
  34919. feral: {
  34920. height: math.unit(16, "feet"),
  34921. name: "Feral",
  34922. image: {
  34923. source: "./media/characters/sini/feral.svg",
  34924. extra: 814/605,
  34925. bottom: 11/825
  34926. },
  34927. form: "feral",
  34928. default: true
  34929. },
  34930. feralNsfw: {
  34931. height: math.unit(16, "feet"),
  34932. name: "Feral (NSFW)",
  34933. image: {
  34934. source: "./media/characters/sini/feral-nsfw.svg",
  34935. extra: 814/605,
  34936. bottom: 11/825
  34937. },
  34938. form: "feral"
  34939. },
  34940. mawFeral: {
  34941. height: math.unit(5.66, "feet"),
  34942. name: "Maw",
  34943. image: {
  34944. source: "./media/characters/sini/maw-feral.svg"
  34945. },
  34946. form: "feral",
  34947. },
  34948. pawFeral: {
  34949. height: math.unit(5.17, "feet"),
  34950. name: "Paw",
  34951. image: {
  34952. source: "./media/characters/sini/paw-feral.svg"
  34953. },
  34954. form: "feral",
  34955. },
  34956. rumpFeral: {
  34957. height: math.unit(13.11, "feet"),
  34958. name: "Rump",
  34959. image: {
  34960. source: "./media/characters/sini/rump-feral.svg"
  34961. },
  34962. form: "feral",
  34963. },
  34964. dickFeral: {
  34965. height: math.unit(1, "feet"),
  34966. name: "Dick",
  34967. image: {
  34968. source: "./media/characters/sini/dick-feral.svg"
  34969. },
  34970. form: "feral",
  34971. },
  34972. eyeFeral: {
  34973. height: math.unit(1.23, "feet"),
  34974. name: "Eye",
  34975. image: {
  34976. source: "./media/characters/sini/eye-feral.svg"
  34977. },
  34978. form: "feral",
  34979. },
  34980. },
  34981. [
  34982. {
  34983. name: "Normal",
  34984. height: math.unit(7, "feet"),
  34985. default: true,
  34986. form: "anthro"
  34987. },
  34988. {
  34989. name: "Normal",
  34990. height: math.unit(16, "feet"),
  34991. default: true,
  34992. form: "feral"
  34993. },
  34994. ],
  34995. {
  34996. "anthro": {
  34997. name: "Anthro",
  34998. default: true
  34999. },
  35000. "feral": {
  35001. name: "Feral",
  35002. }
  35003. }
  35004. ))
  35005. characterMakers.push(() => makeCharacter(
  35006. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35007. {
  35008. side: {
  35009. height: math.unit(47.2, "meters"),
  35010. weight: math.unit(10000, "tons"),
  35011. name: "Side",
  35012. image: {
  35013. source: "./media/characters/raylldo/side.svg",
  35014. extra: 2363/642,
  35015. bottom: 221/2584
  35016. }
  35017. },
  35018. top: {
  35019. height: math.unit(240, "meters"),
  35020. weight: math.unit(10000, "tons"),
  35021. name: "Top",
  35022. image: {
  35023. source: "./media/characters/raylldo/top.svg"
  35024. }
  35025. },
  35026. bottom: {
  35027. height: math.unit(240, "meters"),
  35028. weight: math.unit(10000, "tons"),
  35029. name: "Bottom",
  35030. image: {
  35031. source: "./media/characters/raylldo/bottom.svg"
  35032. }
  35033. },
  35034. head: {
  35035. height: math.unit(38.6, "meters"),
  35036. name: "Head",
  35037. image: {
  35038. source: "./media/characters/raylldo/head.svg",
  35039. extra: 1335/1112,
  35040. bottom: 0/1335
  35041. }
  35042. },
  35043. maw: {
  35044. height: math.unit(16.37, "meters"),
  35045. name: "Maw",
  35046. image: {
  35047. source: "./media/characters/raylldo/maw.svg",
  35048. extra: 883/660,
  35049. bottom: 0/883
  35050. },
  35051. extraAttributes: {
  35052. preyCapacity: {
  35053. name: "Capacity",
  35054. power: 3,
  35055. type: "volume",
  35056. base: math.unit(1000, "people")
  35057. },
  35058. tongueSize: {
  35059. name: "Tongue Size",
  35060. power: 2,
  35061. type: "area",
  35062. base: math.unit(21, "m^2")
  35063. }
  35064. }
  35065. },
  35066. forepaw: {
  35067. height: math.unit(18, "meters"),
  35068. name: "Forepaw",
  35069. image: {
  35070. source: "./media/characters/raylldo/forepaw.svg"
  35071. }
  35072. },
  35073. hindpaw: {
  35074. height: math.unit(23, "meters"),
  35075. name: "Hindpaw",
  35076. image: {
  35077. source: "./media/characters/raylldo/hindpaw.svg"
  35078. }
  35079. },
  35080. genitals: {
  35081. height: math.unit(42, "meters"),
  35082. name: "Genitals",
  35083. image: {
  35084. source: "./media/characters/raylldo/genitals.svg"
  35085. }
  35086. },
  35087. },
  35088. [
  35089. {
  35090. name: "Normal",
  35091. height: math.unit(47.2, "meters"),
  35092. default: true
  35093. },
  35094. ]
  35095. ))
  35096. characterMakers.push(() => makeCharacter(
  35097. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35098. {
  35099. anthroFront: {
  35100. height: math.unit(9, "feet"),
  35101. weight: math.unit(600, "lb"),
  35102. name: "Anthro (Front)",
  35103. image: {
  35104. source: "./media/characters/glint/anthro-front.svg",
  35105. extra: 1097/1018,
  35106. bottom: 28/1125
  35107. }
  35108. },
  35109. anthroBack: {
  35110. height: math.unit(9, "feet"),
  35111. weight: math.unit(600, "lb"),
  35112. name: "Anthro (Back)",
  35113. image: {
  35114. source: "./media/characters/glint/anthro-back.svg",
  35115. extra: 1154/997,
  35116. bottom: 36/1190
  35117. }
  35118. },
  35119. feral: {
  35120. height: math.unit(11, "feet"),
  35121. weight: math.unit(50000, "lb"),
  35122. name: "Feral",
  35123. image: {
  35124. source: "./media/characters/glint/feral.svg",
  35125. extra: 3035/1585,
  35126. bottom: 1169/4204
  35127. }
  35128. },
  35129. dickAnthro: {
  35130. height: math.unit(0.7, "meters"),
  35131. name: "Dick (Anthro)",
  35132. image: {
  35133. source: "./media/characters/glint/dick-anthro.svg"
  35134. }
  35135. },
  35136. dickFeral: {
  35137. height: math.unit(2.65, "meters"),
  35138. name: "Dick (Feral)",
  35139. image: {
  35140. source: "./media/characters/glint/dick-feral.svg"
  35141. }
  35142. },
  35143. slitHidden: {
  35144. height: math.unit(5.85, "meters"),
  35145. name: "Slit (Hidden)",
  35146. image: {
  35147. source: "./media/characters/glint/slit-hidden.svg"
  35148. }
  35149. },
  35150. slitErect: {
  35151. height: math.unit(5.85, "meters"),
  35152. name: "Slit (Erect)",
  35153. image: {
  35154. source: "./media/characters/glint/slit-erect.svg"
  35155. }
  35156. },
  35157. mawAnthro: {
  35158. height: math.unit(0.63, "meters"),
  35159. name: "Maw (Anthro)",
  35160. image: {
  35161. source: "./media/characters/glint/maw.svg"
  35162. }
  35163. },
  35164. mawFeral: {
  35165. height: math.unit(2.89, "meters"),
  35166. name: "Maw (Feral)",
  35167. image: {
  35168. source: "./media/characters/glint/maw.svg"
  35169. }
  35170. },
  35171. },
  35172. [
  35173. {
  35174. name: "Normal",
  35175. height: math.unit(9, "feet"),
  35176. default: true
  35177. },
  35178. ]
  35179. ))
  35180. characterMakers.push(() => makeCharacter(
  35181. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35182. {
  35183. side: {
  35184. height: math.unit(15, "feet"),
  35185. weight: math.unit(5000, "kg"),
  35186. name: "Side",
  35187. image: {
  35188. source: "./media/characters/kairne/side.svg",
  35189. extra: 979/811,
  35190. bottom: 13/992
  35191. }
  35192. },
  35193. front: {
  35194. height: math.unit(15, "feet"),
  35195. weight: math.unit(5000, "kg"),
  35196. name: "Front",
  35197. image: {
  35198. source: "./media/characters/kairne/front.svg",
  35199. extra: 908/814,
  35200. bottom: 26/934
  35201. }
  35202. },
  35203. sideNsfw: {
  35204. height: math.unit(15, "feet"),
  35205. weight: math.unit(5000, "kg"),
  35206. name: "Side (NSFW)",
  35207. image: {
  35208. source: "./media/characters/kairne/side-nsfw.svg",
  35209. extra: 979/811,
  35210. bottom: 13/992
  35211. }
  35212. },
  35213. frontNsfw: {
  35214. height: math.unit(15, "feet"),
  35215. weight: math.unit(5000, "kg"),
  35216. name: "Front (NSFW)",
  35217. image: {
  35218. source: "./media/characters/kairne/front-nsfw.svg",
  35219. extra: 908/814,
  35220. bottom: 26/934
  35221. }
  35222. },
  35223. dickCaged: {
  35224. height: math.unit(0.65, "meters"),
  35225. name: "Dick-caged",
  35226. image: {
  35227. source: "./media/characters/kairne/dick-caged.svg"
  35228. }
  35229. },
  35230. dick: {
  35231. height: math.unit(0.79, "meters"),
  35232. name: "Dick",
  35233. image: {
  35234. source: "./media/characters/kairne/dick.svg"
  35235. }
  35236. },
  35237. genitals: {
  35238. height: math.unit(1.29, "meters"),
  35239. name: "Genitals",
  35240. image: {
  35241. source: "./media/characters/kairne/genitals.svg"
  35242. }
  35243. },
  35244. maw: {
  35245. height: math.unit(1.73, "meters"),
  35246. name: "Maw",
  35247. image: {
  35248. source: "./media/characters/kairne/maw.svg"
  35249. }
  35250. },
  35251. },
  35252. [
  35253. {
  35254. name: "Normal",
  35255. height: math.unit(15, "feet"),
  35256. default: true
  35257. },
  35258. ]
  35259. ))
  35260. characterMakers.push(() => makeCharacter(
  35261. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35262. {
  35263. front: {
  35264. height: math.unit(5 + 8/12, "feet"),
  35265. weight: math.unit(139, "lb"),
  35266. name: "Front",
  35267. image: {
  35268. source: "./media/characters/biscuit-jackal/front.svg",
  35269. extra: 2106/1961,
  35270. bottom: 58/2164
  35271. }
  35272. },
  35273. back: {
  35274. height: math.unit(5 + 8/12, "feet"),
  35275. weight: math.unit(139, "lb"),
  35276. name: "Back",
  35277. image: {
  35278. source: "./media/characters/biscuit-jackal/back.svg",
  35279. extra: 2132/1976,
  35280. bottom: 57/2189
  35281. }
  35282. },
  35283. werejackal: {
  35284. height: math.unit(6 + 3/12, "feet"),
  35285. weight: math.unit(188, "lb"),
  35286. name: "Werejackal",
  35287. image: {
  35288. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35289. extra: 2373/2178,
  35290. bottom: 53/2426
  35291. }
  35292. },
  35293. },
  35294. [
  35295. {
  35296. name: "Normal",
  35297. height: math.unit(5 + 8/12, "feet"),
  35298. default: true
  35299. },
  35300. ]
  35301. ))
  35302. characterMakers.push(() => makeCharacter(
  35303. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35304. {
  35305. front: {
  35306. height: math.unit(140, "cm"),
  35307. weight: math.unit(45, "kg"),
  35308. name: "Front",
  35309. image: {
  35310. source: "./media/characters/tayra-white/front.svg",
  35311. extra: 2229/2192,
  35312. bottom: 75/2304
  35313. }
  35314. },
  35315. },
  35316. [
  35317. {
  35318. name: "Normal",
  35319. height: math.unit(140, "cm"),
  35320. default: true
  35321. },
  35322. ]
  35323. ))
  35324. characterMakers.push(() => makeCharacter(
  35325. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35326. {
  35327. front: {
  35328. height: math.unit(4 + 5/12, "feet"),
  35329. name: "Front",
  35330. image: {
  35331. source: "./media/characters/scoop/front.svg",
  35332. extra: 1257/1136,
  35333. bottom: 69/1326
  35334. }
  35335. },
  35336. back: {
  35337. height: math.unit(4 + 5/12, "feet"),
  35338. name: "Back",
  35339. image: {
  35340. source: "./media/characters/scoop/back.svg",
  35341. extra: 1321/1152,
  35342. bottom: 32/1353
  35343. }
  35344. },
  35345. maw: {
  35346. height: math.unit(0.68, "feet"),
  35347. name: "Maw",
  35348. image: {
  35349. source: "./media/characters/scoop/maw.svg"
  35350. }
  35351. },
  35352. },
  35353. [
  35354. {
  35355. name: "Really Small",
  35356. height: math.unit(1, "mm")
  35357. },
  35358. {
  35359. name: "Micro",
  35360. height: math.unit(1, "inch")
  35361. },
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(4 + 5/12, "feet"),
  35365. default: true
  35366. },
  35367. {
  35368. name: "Macro",
  35369. height: math.unit(200, "feet")
  35370. },
  35371. {
  35372. name: "Megamacro",
  35373. height: math.unit(3240, "feet")
  35374. },
  35375. {
  35376. name: "Teramacro",
  35377. height: math.unit(2500, "miles")
  35378. },
  35379. ]
  35380. ))
  35381. characterMakers.push(() => makeCharacter(
  35382. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35383. {
  35384. front: {
  35385. height: math.unit(15 + 7/12, "feet"),
  35386. weight: math.unit(1150, "tons"),
  35387. name: "Front",
  35388. image: {
  35389. source: "./media/characters/saphinara/front.svg",
  35390. extra: 1837/1643,
  35391. bottom: 84/1921
  35392. },
  35393. form: "normal",
  35394. default: true
  35395. },
  35396. side: {
  35397. height: math.unit(15 + 7/12, "feet"),
  35398. weight: math.unit(1150, "tons"),
  35399. name: "Side",
  35400. image: {
  35401. source: "./media/characters/saphinara/side.svg",
  35402. extra: 605/547,
  35403. bottom: 6/611
  35404. },
  35405. form: "normal"
  35406. },
  35407. back: {
  35408. height: math.unit(15 + 7/12, "feet"),
  35409. weight: math.unit(1150, "tons"),
  35410. name: "Back",
  35411. image: {
  35412. source: "./media/characters/saphinara/back.svg",
  35413. extra: 591/531,
  35414. bottom: 13/604
  35415. },
  35416. form: "normal"
  35417. },
  35418. frontTail: {
  35419. height: math.unit(15 + 7/12, "feet"),
  35420. weight: math.unit(1150, "tons"),
  35421. name: "Front (Full Tail)",
  35422. image: {
  35423. source: "./media/characters/saphinara/front-tail.svg",
  35424. extra: 2256/1630,
  35425. bottom: 261/2517
  35426. },
  35427. form: "normal"
  35428. },
  35429. insides: {
  35430. height: math.unit(11.92, "feet"),
  35431. name: "Insides",
  35432. image: {
  35433. source: "./media/characters/saphinara/insides.svg"
  35434. },
  35435. form: "normal"
  35436. },
  35437. head: {
  35438. height: math.unit(4.17, "feet"),
  35439. name: "Head",
  35440. image: {
  35441. source: "./media/characters/saphinara/head.svg"
  35442. },
  35443. form: "normal"
  35444. },
  35445. tongue: {
  35446. height: math.unit(4.60, "feet"),
  35447. name: "Tongue",
  35448. image: {
  35449. source: "./media/characters/saphinara/tongue.svg"
  35450. },
  35451. form: "normal"
  35452. },
  35453. headEnraged: {
  35454. height: math.unit(5.55, "feet"),
  35455. name: "Head (Enraged)",
  35456. image: {
  35457. source: "./media/characters/saphinara/head-enraged.svg"
  35458. },
  35459. form: "normal"
  35460. },
  35461. wings: {
  35462. height: math.unit(11.95, "feet"),
  35463. name: "Wings",
  35464. image: {
  35465. source: "./media/characters/saphinara/wings.svg"
  35466. },
  35467. form: "normal"
  35468. },
  35469. feathers: {
  35470. height: math.unit(8.92, "feet"),
  35471. name: "Feathers",
  35472. image: {
  35473. source: "./media/characters/saphinara/feathers.svg"
  35474. },
  35475. form: "normal"
  35476. },
  35477. shackles: {
  35478. height: math.unit(2, "feet"),
  35479. name: "Shackles",
  35480. image: {
  35481. source: "./media/characters/saphinara/shackles.svg"
  35482. },
  35483. form: "normal"
  35484. },
  35485. eyes: {
  35486. height: math.unit(1.331, "feet"),
  35487. name: "Eyes",
  35488. image: {
  35489. source: "./media/characters/saphinara/eyes.svg"
  35490. },
  35491. form: "normal"
  35492. },
  35493. eyesEnraged: {
  35494. height: math.unit(1.331, "feet"),
  35495. name: "Eyes (Enraged)",
  35496. image: {
  35497. source: "./media/characters/saphinara/eyes-enraged.svg"
  35498. },
  35499. form: "normal"
  35500. },
  35501. trueFormSide: {
  35502. height: math.unit(200, "feet"),
  35503. weight: math.unit(1e7, "tons"),
  35504. name: "Side",
  35505. image: {
  35506. source: "./media/characters/saphinara/true-form-side.svg",
  35507. extra: 1399/770,
  35508. bottom: 97/1496
  35509. },
  35510. form: "true-form",
  35511. default: true
  35512. },
  35513. trueFormMaw: {
  35514. height: math.unit(71.5, "feet"),
  35515. name: "Maw",
  35516. image: {
  35517. source: "./media/characters/saphinara/true-form-maw.svg",
  35518. extra: 2302/1453,
  35519. bottom: 0/2302
  35520. },
  35521. form: "true-form"
  35522. },
  35523. meowberusSide: {
  35524. height: math.unit(75, "feet"),
  35525. weight: math.unit(180000, "kg"),
  35526. preyCapacity: math.unit(50000, "people"),
  35527. name: "Side",
  35528. image: {
  35529. source: "./media/characters/saphinara/meowberus-side.svg",
  35530. extra: 1400/711,
  35531. bottom: 126/1526
  35532. },
  35533. form: "meowberus",
  35534. extraAttributes: {
  35535. "pawArea": {
  35536. name: "Paw Size",
  35537. power: 2,
  35538. type: "area",
  35539. base: math.unit(35, "m^2")
  35540. }
  35541. }
  35542. },
  35543. },
  35544. [
  35545. {
  35546. name: "Normal",
  35547. height: math.unit(15 + 7/12, "feet"),
  35548. default: true,
  35549. form: "normal"
  35550. },
  35551. {
  35552. name: "Angry",
  35553. height: math.unit(30 + 6/12, "feet"),
  35554. form: "normal"
  35555. },
  35556. {
  35557. name: "Enraged",
  35558. height: math.unit(102 + 1/12, "feet"),
  35559. form: "normal"
  35560. },
  35561. {
  35562. name: "True",
  35563. height: math.unit(200, "feet"),
  35564. default: true,
  35565. form: "true-form"
  35566. },
  35567. {
  35568. name: "Normal",
  35569. height: math.unit(75, "feet"),
  35570. default: true,
  35571. form: "meowberus"
  35572. },
  35573. ],
  35574. {
  35575. "normal": {
  35576. name: "Normal",
  35577. default: true
  35578. },
  35579. "true-form": {
  35580. name: "True Form"
  35581. },
  35582. "meowberus": {
  35583. name: "Meowberus",
  35584. },
  35585. }
  35586. ))
  35587. characterMakers.push(() => makeCharacter(
  35588. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35589. {
  35590. front: {
  35591. height: math.unit(6 + 8/12, "feet"),
  35592. weight: math.unit(300, "lb"),
  35593. name: "Front",
  35594. image: {
  35595. source: "./media/characters/jrain/front.svg",
  35596. extra: 3039/2865,
  35597. bottom: 399/3438
  35598. }
  35599. },
  35600. back: {
  35601. height: math.unit(6 + 8/12, "feet"),
  35602. weight: math.unit(300, "lb"),
  35603. name: "Back",
  35604. image: {
  35605. source: "./media/characters/jrain/back.svg",
  35606. extra: 3089/2938,
  35607. bottom: 172/3261
  35608. }
  35609. },
  35610. head: {
  35611. height: math.unit(2.14, "feet"),
  35612. name: "Head",
  35613. image: {
  35614. source: "./media/characters/jrain/head.svg"
  35615. }
  35616. },
  35617. maw: {
  35618. height: math.unit(1.77, "feet"),
  35619. name: "Maw",
  35620. image: {
  35621. source: "./media/characters/jrain/maw.svg"
  35622. }
  35623. },
  35624. leftHand: {
  35625. height: math.unit(1.1, "feet"),
  35626. name: "Left Hand",
  35627. image: {
  35628. source: "./media/characters/jrain/left-hand.svg"
  35629. }
  35630. },
  35631. rightHand: {
  35632. height: math.unit(1.1, "feet"),
  35633. name: "Right Hand",
  35634. image: {
  35635. source: "./media/characters/jrain/right-hand.svg"
  35636. }
  35637. },
  35638. eye: {
  35639. height: math.unit(0.35, "feet"),
  35640. name: "Eye",
  35641. image: {
  35642. source: "./media/characters/jrain/eye.svg"
  35643. }
  35644. },
  35645. },
  35646. [
  35647. {
  35648. name: "Normal",
  35649. height: math.unit(6 + 8/12, "feet"),
  35650. default: true
  35651. },
  35652. {
  35653. name: "Casually Large",
  35654. height: math.unit(25, "feet")
  35655. },
  35656. {
  35657. name: "Giant",
  35658. height: math.unit(100, "feet")
  35659. },
  35660. {
  35661. name: "Kaiju",
  35662. height: math.unit(300, "feet")
  35663. },
  35664. ]
  35665. ))
  35666. characterMakers.push(() => makeCharacter(
  35667. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35668. {
  35669. dragon: {
  35670. height: math.unit(5, "meters"),
  35671. name: "Dragon",
  35672. image: {
  35673. source: "./media/characters/sabrina/dragon.svg",
  35674. extra: 3670 / 2365,
  35675. bottom: 333 / 4003
  35676. }
  35677. },
  35678. gryphon: {
  35679. height: math.unit(3, "meters"),
  35680. name: "Gryphon",
  35681. image: {
  35682. source: "./media/characters/sabrina/gryphon.svg",
  35683. extra: 1576 / 945,
  35684. bottom: 71 / 1647
  35685. }
  35686. },
  35687. snake: {
  35688. height: math.unit(12, "meters"),
  35689. name: "Snake",
  35690. image: {
  35691. source: "./media/characters/sabrina/snake.svg",
  35692. extra: 1758 / 1320,
  35693. bottom: 186 / 1944
  35694. }
  35695. },
  35696. collar: {
  35697. height: math.unit(1.86, "meters"),
  35698. name: "Collar",
  35699. image: {
  35700. source: "./media/characters/sabrina/collar.svg"
  35701. }
  35702. },
  35703. eye: {
  35704. height: math.unit(0.53, "meters"),
  35705. name: "Eye",
  35706. image: {
  35707. source: "./media/characters/sabrina/eye.svg"
  35708. }
  35709. },
  35710. foot: {
  35711. height: math.unit(1.86, "meters"),
  35712. name: "Foot",
  35713. image: {
  35714. source: "./media/characters/sabrina/foot.svg"
  35715. }
  35716. },
  35717. hand: {
  35718. height: math.unit(1.32, "meters"),
  35719. name: "Hand",
  35720. image: {
  35721. source: "./media/characters/sabrina/hand.svg"
  35722. }
  35723. },
  35724. head: {
  35725. height: math.unit(2.44, "meters"),
  35726. name: "Head",
  35727. image: {
  35728. source: "./media/characters/sabrina/head.svg"
  35729. }
  35730. },
  35731. headAngry: {
  35732. height: math.unit(2.44, "meters"),
  35733. name: "Head (Angry))",
  35734. image: {
  35735. source: "./media/characters/sabrina/head-angry.svg"
  35736. }
  35737. },
  35738. maw: {
  35739. height: math.unit(1.65, "meters"),
  35740. name: "Maw",
  35741. image: {
  35742. source: "./media/characters/sabrina/maw.svg"
  35743. }
  35744. },
  35745. spikes: {
  35746. height: math.unit(1.69, "meters"),
  35747. name: "Spikes",
  35748. image: {
  35749. source: "./media/characters/sabrina/spikes.svg"
  35750. }
  35751. },
  35752. stomach: {
  35753. height: math.unit(1.15, "meters"),
  35754. name: "Stomach",
  35755. image: {
  35756. source: "./media/characters/sabrina/stomach.svg"
  35757. }
  35758. },
  35759. tongue: {
  35760. height: math.unit(1.27, "meters"),
  35761. name: "Tongue",
  35762. image: {
  35763. source: "./media/characters/sabrina/tongue.svg"
  35764. }
  35765. },
  35766. wingDorsal: {
  35767. height: math.unit(4.85, "meters"),
  35768. name: "Wing (Dorsal)",
  35769. image: {
  35770. source: "./media/characters/sabrina/wing-dorsal.svg"
  35771. }
  35772. },
  35773. wingVentral: {
  35774. height: math.unit(4.85, "meters"),
  35775. name: "Wing (Ventral)",
  35776. image: {
  35777. source: "./media/characters/sabrina/wing-ventral.svg"
  35778. }
  35779. },
  35780. },
  35781. [
  35782. {
  35783. name: "Normal",
  35784. height: math.unit(5, "meters"),
  35785. default: true
  35786. },
  35787. ]
  35788. ))
  35789. characterMakers.push(() => makeCharacter(
  35790. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35791. {
  35792. frontMaid: {
  35793. height: math.unit(5 + 5/12, "feet"),
  35794. weight: math.unit(130, "lb"),
  35795. name: "Front (Maid)",
  35796. image: {
  35797. source: "./media/characters/midnight-tales/front-maid.svg",
  35798. extra: 489/454,
  35799. bottom: 61/550
  35800. }
  35801. },
  35802. frontFormal: {
  35803. height: math.unit(5 + 5/12, "feet"),
  35804. weight: math.unit(130, "lb"),
  35805. name: "Front (Formal)",
  35806. image: {
  35807. source: "./media/characters/midnight-tales/front-formal.svg",
  35808. extra: 489/454,
  35809. bottom: 61/550
  35810. }
  35811. },
  35812. back: {
  35813. height: math.unit(5 + 5/12, "feet"),
  35814. weight: math.unit(130, "lb"),
  35815. name: "Back",
  35816. image: {
  35817. source: "./media/characters/midnight-tales/back.svg",
  35818. extra: 498/456,
  35819. bottom: 33/531
  35820. }
  35821. },
  35822. frontBeast: {
  35823. height: math.unit(40, "feet"),
  35824. weight: math.unit(64000, "lb"),
  35825. name: "Front (Beast)",
  35826. image: {
  35827. source: "./media/characters/midnight-tales/front-beast.svg",
  35828. extra: 927/860,
  35829. bottom: 53/980
  35830. }
  35831. },
  35832. backBeast: {
  35833. height: math.unit(40, "feet"),
  35834. weight: math.unit(64000, "lb"),
  35835. name: "Back (Beast)",
  35836. image: {
  35837. source: "./media/characters/midnight-tales/back-beast.svg",
  35838. extra: 929/855,
  35839. bottom: 16/945
  35840. }
  35841. },
  35842. footBeast: {
  35843. height: math.unit(6.7, "feet"),
  35844. name: "Foot (Beast)",
  35845. image: {
  35846. source: "./media/characters/midnight-tales/foot-beast.svg"
  35847. }
  35848. },
  35849. headBeast: {
  35850. height: math.unit(8, "feet"),
  35851. name: "Head (Beast)",
  35852. image: {
  35853. source: "./media/characters/midnight-tales/head-beast.svg"
  35854. }
  35855. },
  35856. },
  35857. [
  35858. {
  35859. name: "Normal",
  35860. height: math.unit(5 + 5 / 12, "feet"),
  35861. default: true
  35862. },
  35863. {
  35864. name: "Macro",
  35865. height: math.unit(25, "feet")
  35866. },
  35867. ]
  35868. ))
  35869. characterMakers.push(() => makeCharacter(
  35870. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35871. {
  35872. front: {
  35873. height: math.unit(5 + 10/12, "feet"),
  35874. name: "Front",
  35875. image: {
  35876. source: "./media/characters/argon/front.svg",
  35877. extra: 2009/1935,
  35878. bottom: 118/2127
  35879. }
  35880. },
  35881. back: {
  35882. height: math.unit(5 + 10/12, "feet"),
  35883. name: "Back",
  35884. image: {
  35885. source: "./media/characters/argon/back.svg",
  35886. extra: 2047/1992,
  35887. bottom: 20/2067
  35888. }
  35889. },
  35890. frontDressed: {
  35891. height: math.unit(5 + 10/12, "feet"),
  35892. name: "Front (Dressed)",
  35893. image: {
  35894. source: "./media/characters/argon/front-dressed.svg",
  35895. extra: 2009/1935,
  35896. bottom: 118/2127
  35897. }
  35898. },
  35899. },
  35900. [
  35901. {
  35902. name: "Normal",
  35903. height: math.unit(5 + 10/12, "feet"),
  35904. default: true
  35905. },
  35906. ]
  35907. ))
  35908. characterMakers.push(() => makeCharacter(
  35909. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35910. {
  35911. front: {
  35912. height: math.unit(8 + 6/12, "feet"),
  35913. weight: math.unit(1150, "lb"),
  35914. name: "Front",
  35915. image: {
  35916. source: "./media/characters/kichi/front.svg",
  35917. extra: 1267/1164,
  35918. bottom: 61/1328
  35919. }
  35920. },
  35921. back: {
  35922. height: math.unit(8 + 6/12, "feet"),
  35923. weight: math.unit(1150, "lb"),
  35924. name: "Back",
  35925. image: {
  35926. source: "./media/characters/kichi/back.svg",
  35927. extra: 1273/1166,
  35928. bottom: 33/1306
  35929. }
  35930. },
  35931. },
  35932. [
  35933. {
  35934. name: "Normal",
  35935. height: math.unit(8 + 6/12, "feet"),
  35936. default: true
  35937. },
  35938. ]
  35939. ))
  35940. characterMakers.push(() => makeCharacter(
  35941. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35942. {
  35943. front: {
  35944. height: math.unit(6, "feet"),
  35945. weight: math.unit(210, "lb"),
  35946. name: "Front",
  35947. image: {
  35948. source: "./media/characters/manetel-greyscale/front.svg",
  35949. extra: 350/312,
  35950. bottom: 8/358
  35951. }
  35952. },
  35953. },
  35954. [
  35955. {
  35956. name: "Micro",
  35957. height: math.unit(2, "inches")
  35958. },
  35959. {
  35960. name: "Normal",
  35961. height: math.unit(6, "feet"),
  35962. default: true
  35963. },
  35964. {
  35965. name: "Minimacro",
  35966. height: math.unit(17, "feet")
  35967. },
  35968. {
  35969. name: "Macro",
  35970. height: math.unit(117, "feet")
  35971. },
  35972. ]
  35973. ))
  35974. characterMakers.push(() => makeCharacter(
  35975. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35976. {
  35977. side: {
  35978. height: math.unit(5 + 1/12, "feet"),
  35979. weight: math.unit(418, "lb"),
  35980. name: "Side",
  35981. image: {
  35982. source: "./media/characters/softpurr/side.svg",
  35983. extra: 1993/1945,
  35984. bottom: 134/2127
  35985. }
  35986. },
  35987. front: {
  35988. height: math.unit(5 + 1/12, "feet"),
  35989. weight: math.unit(418, "lb"),
  35990. name: "Front",
  35991. image: {
  35992. source: "./media/characters/softpurr/front.svg",
  35993. extra: 1950/1856,
  35994. bottom: 174/2124
  35995. }
  35996. },
  35997. paw: {
  35998. height: math.unit(1, "feet"),
  35999. name: "Paw",
  36000. image: {
  36001. source: "./media/characters/softpurr/paw.svg"
  36002. }
  36003. },
  36004. },
  36005. [
  36006. {
  36007. name: "Normal",
  36008. height: math.unit(5 + 1/12, "feet"),
  36009. default: true
  36010. },
  36011. ]
  36012. ))
  36013. characterMakers.push(() => makeCharacter(
  36014. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36015. {
  36016. front: {
  36017. height: math.unit(260, "meters"),
  36018. name: "Front",
  36019. image: {
  36020. source: "./media/characters/anahita/front.svg",
  36021. extra: 665/635,
  36022. bottom: 89/754
  36023. }
  36024. },
  36025. },
  36026. [
  36027. {
  36028. name: "Macro",
  36029. height: math.unit(260, "meters"),
  36030. default: true
  36031. },
  36032. ]
  36033. ))
  36034. characterMakers.push(() => makeCharacter(
  36035. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36036. {
  36037. front: {
  36038. height: math.unit(4 + 10/12, "feet"),
  36039. weight: math.unit(160, "lb"),
  36040. name: "Front",
  36041. image: {
  36042. source: "./media/characters/chip-mouse/front.svg",
  36043. extra: 3528/3408,
  36044. bottom: 0/3528
  36045. }
  36046. },
  36047. frontNsfw: {
  36048. height: math.unit(4 + 10/12, "feet"),
  36049. weight: math.unit(160, "lb"),
  36050. name: "Front (NSFW)",
  36051. image: {
  36052. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36053. extra: 3528/3408,
  36054. bottom: 0/3528
  36055. }
  36056. },
  36057. },
  36058. [
  36059. {
  36060. name: "Normal",
  36061. height: math.unit(4 + 10/12, "feet"),
  36062. default: true
  36063. },
  36064. ]
  36065. ))
  36066. characterMakers.push(() => makeCharacter(
  36067. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36068. {
  36069. side: {
  36070. height: math.unit(10, "feet"),
  36071. weight: math.unit(14000, "lb"),
  36072. name: "Side",
  36073. image: {
  36074. source: "./media/characters/kremm/side.svg",
  36075. extra: 1390/1053,
  36076. bottom: 90/1480
  36077. }
  36078. },
  36079. gut: {
  36080. height: math.unit(5.8, "feet"),
  36081. name: "Gut",
  36082. image: {
  36083. source: "./media/characters/kremm/gut.svg"
  36084. }
  36085. },
  36086. ass: {
  36087. height: math.unit(6.1, "feet"),
  36088. name: "Ass",
  36089. image: {
  36090. source: "./media/characters/kremm/ass.svg"
  36091. }
  36092. },
  36093. jaws: {
  36094. height: math.unit(2.2, "feet"),
  36095. name: "Jaws",
  36096. image: {
  36097. source: "./media/characters/kremm/jaws.svg"
  36098. }
  36099. },
  36100. dick: {
  36101. height: math.unit(4.26, "feet"),
  36102. name: "Dick",
  36103. image: {
  36104. source: "./media/characters/kremm/dick.svg"
  36105. }
  36106. },
  36107. },
  36108. [
  36109. {
  36110. name: "Normal",
  36111. height: math.unit(10, "feet"),
  36112. default: true
  36113. },
  36114. ]
  36115. ))
  36116. characterMakers.push(() => makeCharacter(
  36117. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36118. {
  36119. front: {
  36120. height: math.unit(30, "stories"),
  36121. name: "Front",
  36122. image: {
  36123. source: "./media/characters/kai/front.svg",
  36124. extra: 1892/1718,
  36125. bottom: 162/2054
  36126. }
  36127. },
  36128. },
  36129. [
  36130. {
  36131. name: "Macro",
  36132. height: math.unit(30, "stories"),
  36133. default: true
  36134. },
  36135. ]
  36136. ))
  36137. characterMakers.push(() => makeCharacter(
  36138. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36139. {
  36140. front: {
  36141. height: math.unit(6 + 4/12, "feet"),
  36142. weight: math.unit(145, "lb"),
  36143. name: "Front",
  36144. image: {
  36145. source: "./media/characters/sykes/front.svg",
  36146. extra: 1321 / 1187,
  36147. bottom: 66 / 1387
  36148. }
  36149. },
  36150. back: {
  36151. height: math.unit(6 + 4/12, "feet"),
  36152. weight: math.unit(145, "lb"),
  36153. name: "Back",
  36154. image: {
  36155. source: "./media/characters/sykes/back.svg",
  36156. extra: 1326/1181,
  36157. bottom: 31/1357
  36158. }
  36159. },
  36160. traditionalOutfit: {
  36161. height: math.unit(6 + 4/12, "feet"),
  36162. weight: math.unit(145, "lb"),
  36163. name: "Traditional Outfit",
  36164. image: {
  36165. source: "./media/characters/sykes/traditional-outfit.svg",
  36166. extra: 1321 / 1187,
  36167. bottom: 66 / 1387
  36168. }
  36169. },
  36170. adventureOutfit: {
  36171. height: math.unit(6 + 4/12, "feet"),
  36172. weight: math.unit(145, "lb"),
  36173. name: "Adventure Outfit",
  36174. image: {
  36175. source: "./media/characters/sykes/adventure-outfit.svg",
  36176. extra: 1321 / 1187,
  36177. bottom: 66 / 1387
  36178. }
  36179. },
  36180. handLeft: {
  36181. height: math.unit(0.9, "feet"),
  36182. name: "Hand (Left)",
  36183. image: {
  36184. source: "./media/characters/sykes/hand-left.svg"
  36185. }
  36186. },
  36187. handRight: {
  36188. height: math.unit(0.839, "feet"),
  36189. name: "Hand (Right)",
  36190. image: {
  36191. source: "./media/characters/sykes/hand-right.svg"
  36192. }
  36193. },
  36194. leftFoot: {
  36195. height: math.unit(1.2, "feet"),
  36196. name: "Foot (Left)",
  36197. image: {
  36198. source: "./media/characters/sykes/foot-left.svg"
  36199. }
  36200. },
  36201. rightFoot: {
  36202. height: math.unit(1.2, "feet"),
  36203. name: "Foot (Right)",
  36204. image: {
  36205. source: "./media/characters/sykes/foot-right.svg"
  36206. }
  36207. },
  36208. maw: {
  36209. height: math.unit(1.93, "feet"),
  36210. name: "Maw",
  36211. image: {
  36212. source: "./media/characters/sykes/maw.svg"
  36213. }
  36214. },
  36215. teeth: {
  36216. height: math.unit(0.51, "feet"),
  36217. name: "Teeth",
  36218. image: {
  36219. source: "./media/characters/sykes/teeth.svg"
  36220. }
  36221. },
  36222. tongue: {
  36223. height: math.unit(2.13, "feet"),
  36224. name: "Tongue",
  36225. image: {
  36226. source: "./media/characters/sykes/tongue.svg"
  36227. }
  36228. },
  36229. uvula: {
  36230. height: math.unit(0.16, "feet"),
  36231. name: "Uvula",
  36232. image: {
  36233. source: "./media/characters/sykes/uvula.svg"
  36234. }
  36235. },
  36236. collar: {
  36237. height: math.unit(0.287, "feet"),
  36238. name: "Collar",
  36239. image: {
  36240. source: "./media/characters/sykes/collar.svg"
  36241. }
  36242. },
  36243. tail: {
  36244. height: math.unit(3.8, "feet"),
  36245. name: "Tail",
  36246. image: {
  36247. source: "./media/characters/sykes/tail.svg"
  36248. }
  36249. },
  36250. },
  36251. [
  36252. {
  36253. name: "Shrunken",
  36254. height: math.unit(5, "inches")
  36255. },
  36256. {
  36257. name: "Normal",
  36258. height: math.unit(6 + 4 / 12, "feet"),
  36259. default: true
  36260. },
  36261. {
  36262. name: "Big",
  36263. height: math.unit(15, "feet")
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36269. {
  36270. front: {
  36271. height: math.unit(5 + 8/12, "feet"),
  36272. weight: math.unit(190, "lb"),
  36273. name: "Front",
  36274. image: {
  36275. source: "./media/characters/oven-otter/front.svg",
  36276. extra: 1809/1740,
  36277. bottom: 181/1990
  36278. }
  36279. },
  36280. back: {
  36281. height: math.unit(5 + 8/12, "feet"),
  36282. weight: math.unit(190, "lb"),
  36283. name: "Back",
  36284. image: {
  36285. source: "./media/characters/oven-otter/back.svg",
  36286. extra: 1709/1635,
  36287. bottom: 118/1827
  36288. }
  36289. },
  36290. hand: {
  36291. height: math.unit(1.07, "feet"),
  36292. name: "Hand",
  36293. image: {
  36294. source: "./media/characters/oven-otter/hand.svg"
  36295. }
  36296. },
  36297. beans: {
  36298. height: math.unit(1.74, "feet"),
  36299. name: "Beans",
  36300. image: {
  36301. source: "./media/characters/oven-otter/beans.svg"
  36302. }
  36303. },
  36304. },
  36305. [
  36306. {
  36307. name: "Micro",
  36308. height: math.unit(0.5, "inches")
  36309. },
  36310. {
  36311. name: "Normal",
  36312. height: math.unit(5 + 8/12, "feet"),
  36313. default: true
  36314. },
  36315. {
  36316. name: "Macro",
  36317. height: math.unit(250, "feet")
  36318. },
  36319. {
  36320. name: "Really High",
  36321. height: math.unit(420, "feet")
  36322. },
  36323. ]
  36324. ))
  36325. characterMakers.push(() => makeCharacter(
  36326. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36327. {
  36328. front: {
  36329. height: math.unit(5, "meters"),
  36330. weight: math.unit(292000000000000, "kg"),
  36331. name: "Front",
  36332. image: {
  36333. source: "./media/characters/devourer/front.svg",
  36334. extra: 1800/1733,
  36335. bottom: 211/2011
  36336. }
  36337. },
  36338. maw: {
  36339. height: math.unit(1.1, "meter"),
  36340. name: "Maw",
  36341. image: {
  36342. source: "./media/characters/devourer/maw.svg"
  36343. }
  36344. },
  36345. },
  36346. [
  36347. {
  36348. name: "Small",
  36349. height: math.unit(3, "meters")
  36350. },
  36351. {
  36352. name: "Large",
  36353. height: math.unit(5, "meters"),
  36354. default: true
  36355. },
  36356. ]
  36357. ))
  36358. characterMakers.push(() => makeCharacter(
  36359. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36360. {
  36361. front: {
  36362. height: math.unit(6, "feet"),
  36363. weight: math.unit(400, "lb"),
  36364. name: "Front",
  36365. image: {
  36366. source: "./media/characters/ellarby/front.svg",
  36367. extra: 1909/1763,
  36368. bottom: 80/1989
  36369. }
  36370. },
  36371. back: {
  36372. height: math.unit(6, "feet"),
  36373. weight: math.unit(400, "lb"),
  36374. name: "Back",
  36375. image: {
  36376. source: "./media/characters/ellarby/back.svg",
  36377. extra: 1914/1784,
  36378. bottom: 172/2086
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Mischief",
  36385. height: math.unit(18, "inches")
  36386. },
  36387. {
  36388. name: "Trouble",
  36389. height: math.unit(12, "feet")
  36390. },
  36391. {
  36392. name: "Havoc",
  36393. height: math.unit(200, "feet"),
  36394. default: true
  36395. },
  36396. {
  36397. name: "Pandemonium",
  36398. height: math.unit(1, "mile")
  36399. },
  36400. {
  36401. name: "Catastrophe",
  36402. height: math.unit(100, "miles")
  36403. },
  36404. ]
  36405. ))
  36406. characterMakers.push(() => makeCharacter(
  36407. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36408. {
  36409. front: {
  36410. height: math.unit(4.7, "meters"),
  36411. weight: math.unit(6500, "kg"),
  36412. name: "Front",
  36413. image: {
  36414. source: "./media/characters/vex/front.svg",
  36415. extra: 1288/1140,
  36416. bottom: 100/1388
  36417. }
  36418. },
  36419. },
  36420. [
  36421. {
  36422. name: "Normal",
  36423. height: math.unit(4.7, "meters"),
  36424. default: true
  36425. },
  36426. ]
  36427. ))
  36428. characterMakers.push(() => makeCharacter(
  36429. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36430. {
  36431. normal: {
  36432. height: math.unit(6, "feet"),
  36433. weight: math.unit(350, "lb"),
  36434. name: "Normal",
  36435. image: {
  36436. source: "./media/characters/teshy/normal.svg",
  36437. extra: 1795/1735,
  36438. bottom: 16/1811
  36439. }
  36440. },
  36441. monsterFront: {
  36442. height: math.unit(12, "feet"),
  36443. weight: math.unit(4700, "lb"),
  36444. name: "Monster (Front)",
  36445. image: {
  36446. source: "./media/characters/teshy/monster-front.svg",
  36447. extra: 2042/2034,
  36448. bottom: 128/2170
  36449. }
  36450. },
  36451. monsterSide: {
  36452. height: math.unit(12, "feet"),
  36453. weight: math.unit(4700, "lb"),
  36454. name: "Monster (Side)",
  36455. image: {
  36456. source: "./media/characters/teshy/monster-side.svg",
  36457. extra: 2067/2056,
  36458. bottom: 70/2137
  36459. }
  36460. },
  36461. monsterBack: {
  36462. height: math.unit(12, "feet"),
  36463. weight: math.unit(4700, "lb"),
  36464. name: "Monster (Back)",
  36465. image: {
  36466. source: "./media/characters/teshy/monster-back.svg",
  36467. extra: 1921/1914,
  36468. bottom: 171/2092
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "Normal",
  36475. height: math.unit(6, "feet"),
  36476. default: true
  36477. },
  36478. ]
  36479. ))
  36480. characterMakers.push(() => makeCharacter(
  36481. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36482. {
  36483. front: {
  36484. height: math.unit(6, "feet"),
  36485. name: "Front",
  36486. image: {
  36487. source: "./media/characters/ramey/front.svg",
  36488. extra: 790/787,
  36489. bottom: 27/817
  36490. }
  36491. },
  36492. },
  36493. [
  36494. {
  36495. name: "Normal",
  36496. height: math.unit(6, "feet"),
  36497. default: true
  36498. },
  36499. ]
  36500. ))
  36501. characterMakers.push(() => makeCharacter(
  36502. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36503. {
  36504. front: {
  36505. height: math.unit(5 + 5/12, "feet"),
  36506. weight: math.unit(120, "lb"),
  36507. name: "Front",
  36508. image: {
  36509. source: "./media/characters/phirae/front.svg",
  36510. extra: 2491/2436,
  36511. bottom: 38/2529
  36512. }
  36513. },
  36514. },
  36515. [
  36516. {
  36517. name: "Normal",
  36518. height: math.unit(5 + 5/12, "feet"),
  36519. default: true
  36520. },
  36521. ]
  36522. ))
  36523. characterMakers.push(() => makeCharacter(
  36524. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36525. {
  36526. front: {
  36527. height: math.unit(5 + 3/12, "feet"),
  36528. name: "Front",
  36529. image: {
  36530. source: "./media/characters/stagglas/front.svg",
  36531. extra: 962/882,
  36532. bottom: 53/1015
  36533. }
  36534. },
  36535. feral: {
  36536. height: math.unit(335, "cm"),
  36537. name: "Feral",
  36538. image: {
  36539. source: "./media/characters/stagglas/feral.svg",
  36540. extra: 1732/1090,
  36541. bottom: 48/1780
  36542. }
  36543. },
  36544. },
  36545. [
  36546. {
  36547. name: "Normal",
  36548. height: math.unit(5 + 3/12, "feet"),
  36549. default: true
  36550. },
  36551. ]
  36552. ))
  36553. characterMakers.push(() => makeCharacter(
  36554. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36555. {
  36556. front: {
  36557. height: math.unit(5 + 4/12, "feet"),
  36558. weight: math.unit(145, "lb"),
  36559. name: "Front",
  36560. image: {
  36561. source: "./media/characters/starra/front.svg",
  36562. extra: 1790/1691,
  36563. bottom: 91/1881
  36564. }
  36565. },
  36566. },
  36567. [
  36568. {
  36569. name: "Normal",
  36570. height: math.unit(5 + 4/12, "feet"),
  36571. default: true
  36572. },
  36573. ]
  36574. ))
  36575. characterMakers.push(() => makeCharacter(
  36576. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36577. {
  36578. front: {
  36579. height: math.unit(2.2, "meters"),
  36580. name: "Front",
  36581. image: {
  36582. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36583. extra: 1248/972,
  36584. bottom: 38/1286
  36585. }
  36586. },
  36587. },
  36588. [
  36589. {
  36590. name: "Normal",
  36591. height: math.unit(2.2, "meters"),
  36592. default: true
  36593. },
  36594. ]
  36595. ))
  36596. characterMakers.push(() => makeCharacter(
  36597. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36598. {
  36599. side: {
  36600. height: math.unit(8 + 2/12, "feet"),
  36601. weight: math.unit(1240, "lb"),
  36602. name: "Side",
  36603. image: {
  36604. source: "./media/characters/mika-valentine/side.svg",
  36605. extra: 2670/2501,
  36606. bottom: 250/2920
  36607. }
  36608. },
  36609. },
  36610. [
  36611. {
  36612. name: "Normal",
  36613. height: math.unit(8 + 2/12, "feet"),
  36614. default: true
  36615. },
  36616. ]
  36617. ))
  36618. characterMakers.push(() => makeCharacter(
  36619. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36620. {
  36621. front: {
  36622. height: math.unit(7 + 2/12, "feet"),
  36623. name: "Front",
  36624. image: {
  36625. source: "./media/characters/xoltol/front.svg",
  36626. extra: 2212/2124,
  36627. bottom: 84/2296
  36628. }
  36629. },
  36630. side: {
  36631. height: math.unit(7 + 2/12, "feet"),
  36632. name: "Side",
  36633. image: {
  36634. source: "./media/characters/xoltol/side.svg",
  36635. extra: 2273/2197,
  36636. bottom: 26/2299
  36637. }
  36638. },
  36639. hand: {
  36640. height: math.unit(2.5, "feet"),
  36641. name: "Hand",
  36642. image: {
  36643. source: "./media/characters/xoltol/hand.svg"
  36644. }
  36645. },
  36646. },
  36647. [
  36648. {
  36649. name: "Small-ish",
  36650. height: math.unit(5 + 11/12, "feet")
  36651. },
  36652. {
  36653. name: "Normal",
  36654. height: math.unit(7 + 2/12, "feet")
  36655. },
  36656. {
  36657. name: "\"Macro\"",
  36658. height: math.unit(14 + 9/12, "feet"),
  36659. default: true
  36660. },
  36661. {
  36662. name: "Alternate Height",
  36663. height: math.unit(20, "feet")
  36664. },
  36665. {
  36666. name: "Actually Macro",
  36667. height: math.unit(100, "feet")
  36668. },
  36669. ]
  36670. ))
  36671. characterMakers.push(() => makeCharacter(
  36672. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36673. {
  36674. front: {
  36675. height: math.unit(5 + 2/12, "feet"),
  36676. name: "Front",
  36677. image: {
  36678. source: "./media/characters/kotetsu-redwood/front.svg",
  36679. extra: 1053/942,
  36680. bottom: 60/1113
  36681. }
  36682. },
  36683. },
  36684. [
  36685. {
  36686. name: "Normal",
  36687. height: math.unit(5 + 2/12, "feet"),
  36688. default: true
  36689. },
  36690. ]
  36691. ))
  36692. characterMakers.push(() => makeCharacter(
  36693. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36694. {
  36695. front: {
  36696. height: math.unit(2.4, "meters"),
  36697. weight: math.unit(125, "kg"),
  36698. name: "Front",
  36699. image: {
  36700. source: "./media/characters/lilith/front.svg",
  36701. extra: 1590/1513,
  36702. bottom: 203/1793
  36703. }
  36704. },
  36705. },
  36706. [
  36707. {
  36708. name: "Humanoid",
  36709. height: math.unit(2.4, "meters")
  36710. },
  36711. {
  36712. name: "Normal",
  36713. height: math.unit(6, "meters"),
  36714. default: true
  36715. },
  36716. {
  36717. name: "Largest",
  36718. height: math.unit(55, "meters")
  36719. },
  36720. ]
  36721. ))
  36722. characterMakers.push(() => makeCharacter(
  36723. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36724. {
  36725. front: {
  36726. height: math.unit(8 + 4/12, "feet"),
  36727. weight: math.unit(535, "lb"),
  36728. name: "Front",
  36729. image: {
  36730. source: "./media/characters/beh'kah-bolger/front.svg",
  36731. extra: 1660/1603,
  36732. bottom: 37/1697
  36733. }
  36734. },
  36735. },
  36736. [
  36737. {
  36738. name: "Normal",
  36739. height: math.unit(8 + 4/12, "feet"),
  36740. default: true
  36741. },
  36742. {
  36743. name: "Kaiju",
  36744. height: math.unit(250, "feet")
  36745. },
  36746. {
  36747. name: "Still Growing",
  36748. height: math.unit(10, "miles")
  36749. },
  36750. {
  36751. name: "Continental",
  36752. height: math.unit(5000, "miles")
  36753. },
  36754. {
  36755. name: "Final Form",
  36756. height: math.unit(2500000, "miles")
  36757. },
  36758. ]
  36759. ))
  36760. characterMakers.push(() => makeCharacter(
  36761. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36762. {
  36763. front: {
  36764. height: math.unit(7 + 2/12, "feet"),
  36765. weight: math.unit(230, "kg"),
  36766. name: "Front",
  36767. image: {
  36768. source: "./media/characters/tatyana-milewska/front.svg",
  36769. extra: 1199/1150,
  36770. bottom: 86/1285
  36771. }
  36772. },
  36773. },
  36774. [
  36775. {
  36776. name: "Normal",
  36777. height: math.unit(7 + 2/12, "feet"),
  36778. default: true
  36779. },
  36780. {
  36781. name: "Big",
  36782. height: math.unit(12, "feet")
  36783. },
  36784. {
  36785. name: "Minimacro",
  36786. height: math.unit(20, "feet")
  36787. },
  36788. {
  36789. name: "Macro",
  36790. height: math.unit(120, "feet")
  36791. },
  36792. ]
  36793. ))
  36794. characterMakers.push(() => makeCharacter(
  36795. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36796. {
  36797. front: {
  36798. height: math.unit(7 + 8/12, "feet"),
  36799. weight: math.unit(152, "kg"),
  36800. name: "Front",
  36801. image: {
  36802. source: "./media/characters/helen-arri/front.svg",
  36803. extra: 440/423,
  36804. bottom: 14/454
  36805. }
  36806. },
  36807. back: {
  36808. height: math.unit(7 + 8/12, "feet"),
  36809. weight: math.unit(152, "kg"),
  36810. name: "Back",
  36811. image: {
  36812. source: "./media/characters/helen-arri/back.svg",
  36813. extra: 443/426,
  36814. bottom: 8/451
  36815. }
  36816. },
  36817. },
  36818. [
  36819. {
  36820. name: "Normal",
  36821. height: math.unit(7 + 8/12, "feet"),
  36822. default: true
  36823. },
  36824. {
  36825. name: "Big",
  36826. height: math.unit(14, "feet")
  36827. },
  36828. {
  36829. name: "Minimacro",
  36830. height: math.unit(24, "feet")
  36831. },
  36832. {
  36833. name: "Macro",
  36834. height: math.unit(140, "feet")
  36835. },
  36836. ]
  36837. ))
  36838. characterMakers.push(() => makeCharacter(
  36839. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36840. {
  36841. front: {
  36842. height: math.unit(6, "meters"),
  36843. name: "Front",
  36844. image: {
  36845. source: "./media/characters/ehanu-rehu/front.svg",
  36846. extra: 1800/1800,
  36847. bottom: 59/1859
  36848. }
  36849. },
  36850. },
  36851. [
  36852. {
  36853. name: "Normal",
  36854. height: math.unit(6, "meters"),
  36855. default: true
  36856. },
  36857. ]
  36858. ))
  36859. characterMakers.push(() => makeCharacter(
  36860. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36861. {
  36862. front: {
  36863. height: math.unit(7 + 3/12, "feet"),
  36864. name: "Front",
  36865. image: {
  36866. source: "./media/characters/renholder/front.svg",
  36867. extra: 3096/2960,
  36868. bottom: 250/3346
  36869. }
  36870. },
  36871. },
  36872. [
  36873. {
  36874. name: "Normal Bat",
  36875. height: math.unit(7 + 3/12, "feet"),
  36876. default: true
  36877. },
  36878. {
  36879. name: "Slightly Tall Bat",
  36880. height: math.unit(100, "feet")
  36881. },
  36882. {
  36883. name: "Big Bat",
  36884. height: math.unit(1000, "feet")
  36885. },
  36886. {
  36887. name: "City-Sized Bat",
  36888. height: math.unit(200000, "feet")
  36889. },
  36890. {
  36891. name: "Bigger Bat",
  36892. height: math.unit(10000, "miles")
  36893. },
  36894. {
  36895. name: "Solar Sized Bat",
  36896. height: math.unit(100, "AU")
  36897. },
  36898. {
  36899. name: "Galactic Bat",
  36900. height: math.unit(200000, "lightyears")
  36901. },
  36902. {
  36903. name: "Universally Known Bat",
  36904. height: math.unit(1, "universe")
  36905. },
  36906. ]
  36907. ))
  36908. characterMakers.push(() => makeCharacter(
  36909. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36910. {
  36911. front: {
  36912. height: math.unit(6 + 11/12, "feet"),
  36913. weight: math.unit(250, "lb"),
  36914. name: "Front",
  36915. image: {
  36916. source: "./media/characters/cookiecat/front.svg",
  36917. extra: 893/827,
  36918. bottom: 14/907
  36919. }
  36920. },
  36921. },
  36922. [
  36923. {
  36924. name: "Micro",
  36925. height: math.unit(3, "inches")
  36926. },
  36927. {
  36928. name: "Normal",
  36929. height: math.unit(6 + 11/12, "feet"),
  36930. default: true
  36931. },
  36932. {
  36933. name: "Macro",
  36934. height: math.unit(100, "feet")
  36935. },
  36936. {
  36937. name: "Macro+",
  36938. height: math.unit(404, "feet")
  36939. },
  36940. {
  36941. name: "Megamacro",
  36942. height: math.unit(165, "miles")
  36943. },
  36944. {
  36945. name: "Planetary",
  36946. height: math.unit(4600, "miles")
  36947. },
  36948. ]
  36949. ))
  36950. characterMakers.push(() => makeCharacter(
  36951. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36952. {
  36953. front: {
  36954. height: math.unit(10 + 3/12, "feet"),
  36955. weight: math.unit(1500, "lb"),
  36956. name: "Front",
  36957. image: {
  36958. source: "./media/characters/tux-kusanagi/front.svg",
  36959. extra: 944/840,
  36960. bottom: 39/983
  36961. }
  36962. },
  36963. back: {
  36964. height: math.unit(10 + 3/12, "feet"),
  36965. weight: math.unit(1500, "lb"),
  36966. name: "Back",
  36967. image: {
  36968. source: "./media/characters/tux-kusanagi/back.svg",
  36969. extra: 941/842,
  36970. bottom: 28/969
  36971. }
  36972. },
  36973. rump: {
  36974. height: math.unit(5.25, "feet"),
  36975. name: "Rump",
  36976. image: {
  36977. source: "./media/characters/tux-kusanagi/rump.svg"
  36978. }
  36979. },
  36980. beak: {
  36981. height: math.unit(1.54, "feet"),
  36982. name: "Beak",
  36983. image: {
  36984. source: "./media/characters/tux-kusanagi/beak.svg"
  36985. }
  36986. },
  36987. },
  36988. [
  36989. {
  36990. name: "Normal",
  36991. height: math.unit(10 + 3/12, "feet"),
  36992. default: true
  36993. },
  36994. ]
  36995. ))
  36996. characterMakers.push(() => makeCharacter(
  36997. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36998. {
  36999. front: {
  37000. height: math.unit(58, "feet"),
  37001. weight: math.unit(200, "tons"),
  37002. name: "Front",
  37003. image: {
  37004. source: "./media/characters/uzarmazari/front.svg",
  37005. extra: 1575/1455,
  37006. bottom: 152/1727
  37007. }
  37008. },
  37009. back: {
  37010. height: math.unit(58, "feet"),
  37011. weight: math.unit(200, "tons"),
  37012. name: "Back",
  37013. image: {
  37014. source: "./media/characters/uzarmazari/back.svg",
  37015. extra: 1585/1510,
  37016. bottom: 157/1742
  37017. }
  37018. },
  37019. head: {
  37020. height: math.unit(26, "feet"),
  37021. name: "Head",
  37022. image: {
  37023. source: "./media/characters/uzarmazari/head.svg"
  37024. }
  37025. },
  37026. },
  37027. [
  37028. {
  37029. name: "Normal",
  37030. height: math.unit(58, "feet"),
  37031. default: true
  37032. },
  37033. ]
  37034. ))
  37035. characterMakers.push(() => makeCharacter(
  37036. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37037. {
  37038. side: {
  37039. height: math.unit(15, "feet"),
  37040. name: "Side",
  37041. image: {
  37042. source: "./media/characters/akitu/side.svg",
  37043. extra: 1421/1321,
  37044. bottom: 157/1578
  37045. }
  37046. },
  37047. front: {
  37048. height: math.unit(15, "feet"),
  37049. name: "Front",
  37050. image: {
  37051. source: "./media/characters/akitu/front.svg",
  37052. extra: 1435/1326,
  37053. bottom: 232/1667
  37054. }
  37055. },
  37056. },
  37057. [
  37058. {
  37059. name: "Normal",
  37060. height: math.unit(15, "feet"),
  37061. default: true
  37062. },
  37063. ]
  37064. ))
  37065. characterMakers.push(() => makeCharacter(
  37066. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37067. {
  37068. front: {
  37069. height: math.unit(10 + 8/12, "feet"),
  37070. name: "Front",
  37071. image: {
  37072. source: "./media/characters/azalie-croixland/front.svg",
  37073. extra: 1972/1856,
  37074. bottom: 31/2003
  37075. }
  37076. },
  37077. },
  37078. [
  37079. {
  37080. name: "Original Height",
  37081. height: math.unit(5 + 4/12, "feet")
  37082. },
  37083. {
  37084. name: "Normal Height",
  37085. height: math.unit(10 + 8/12, "feet"),
  37086. default: true
  37087. },
  37088. ]
  37089. ))
  37090. characterMakers.push(() => makeCharacter(
  37091. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37092. {
  37093. side: {
  37094. height: math.unit(7 + 1/12, "feet"),
  37095. weight: math.unit(245, "lb"),
  37096. name: "Side",
  37097. image: {
  37098. source: "./media/characters/kavus-kazian/side.svg",
  37099. extra: 349/342,
  37100. bottom: 15/364
  37101. }
  37102. },
  37103. },
  37104. [
  37105. {
  37106. name: "Normal",
  37107. height: math.unit(7 + 1/12, "feet"),
  37108. default: true
  37109. },
  37110. ]
  37111. ))
  37112. characterMakers.push(() => makeCharacter(
  37113. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37114. {
  37115. normalFront: {
  37116. height: math.unit(5 + 11/12, "feet"),
  37117. name: "Front",
  37118. image: {
  37119. source: "./media/characters/moonlight-rose/normal-front.svg",
  37120. extra: 1980/1825,
  37121. bottom: 18/1998
  37122. },
  37123. form: "normal",
  37124. default: true
  37125. },
  37126. normalBack: {
  37127. height: math.unit(5 + 11/12, "feet"),
  37128. name: "Back",
  37129. image: {
  37130. source: "./media/characters/moonlight-rose/normal-back.svg",
  37131. extra: 2010/1839,
  37132. bottom: 10/2020
  37133. },
  37134. form: "normal"
  37135. },
  37136. demonFront: {
  37137. height: math.unit(1.5, "earths"),
  37138. name: "Front",
  37139. image: {
  37140. source: "./media/characters/moonlight-rose/demon.svg",
  37141. extra: 1400/1294,
  37142. bottom: 45/1445
  37143. },
  37144. form: "demon",
  37145. default: true
  37146. },
  37147. terraFront: {
  37148. height: math.unit(1.5, "earths"),
  37149. name: "Front",
  37150. image: {
  37151. source: "./media/characters/moonlight-rose/terra.svg"
  37152. },
  37153. form: "terra",
  37154. default: true
  37155. },
  37156. jupiterFront: {
  37157. height: math.unit(69911*2, "km"),
  37158. name: "Front",
  37159. image: {
  37160. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37161. extra: 1367/1286,
  37162. bottom: 55/1422
  37163. },
  37164. form: "jupiter",
  37165. default: true
  37166. },
  37167. neptuneFront: {
  37168. height: math.unit(24622*2, "feet"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37172. extra: 1851/1712,
  37173. bottom: 0/1851
  37174. },
  37175. form: "neptune",
  37176. default: true
  37177. },
  37178. },
  37179. [
  37180. {
  37181. name: "\"Natural\" Height",
  37182. height: math.unit(5 + 11/12, "feet"),
  37183. form: "normal"
  37184. },
  37185. {
  37186. name: "Smallest comfortable size",
  37187. height: math.unit(40, "meters"),
  37188. form: "normal"
  37189. },
  37190. {
  37191. name: "Common size",
  37192. height: math.unit(50, "km"),
  37193. form: "normal",
  37194. default: true
  37195. },
  37196. {
  37197. name: "Normal",
  37198. height: math.unit(1.5, "earths"),
  37199. form: "demon",
  37200. default: true
  37201. },
  37202. {
  37203. name: "Universal",
  37204. height: math.unit(15, "universes"),
  37205. form: "demon"
  37206. },
  37207. {
  37208. name: "Earth",
  37209. height: math.unit(1.5, "earths"),
  37210. form: "terra",
  37211. default: true
  37212. },
  37213. {
  37214. name: "Super Earth",
  37215. height: math.unit(67.5, "earths"),
  37216. form: "terra"
  37217. },
  37218. {
  37219. name: "Doesn't fit in a solar system...",
  37220. height: math.unit(1, "galaxy"),
  37221. form: "terra"
  37222. },
  37223. {
  37224. name: "Saturn",
  37225. height: math.unit(58232*2, "km"),
  37226. form: "jupiter"
  37227. },
  37228. {
  37229. name: "Jupiter",
  37230. height: math.unit(69911*2, "km"),
  37231. form: "jupiter",
  37232. default: true
  37233. },
  37234. {
  37235. name: "HD 100546 b",
  37236. height: math.unit(482938, "km"),
  37237. form: "jupiter"
  37238. },
  37239. {
  37240. name: "Enceladus",
  37241. height: math.unit(513*2, "km"),
  37242. form: "neptune"
  37243. },
  37244. {
  37245. name: "Europe",
  37246. height: math.unit(1560*2, "km"),
  37247. form: "neptune"
  37248. },
  37249. {
  37250. name: "Neptune",
  37251. height: math.unit(24622*2, "km"),
  37252. form: "neptune",
  37253. default: true
  37254. },
  37255. {
  37256. name: "CoRoT-9b",
  37257. height: math.unit(75067*2, "km"),
  37258. form: "neptune"
  37259. },
  37260. ],
  37261. {
  37262. "normal": {
  37263. name: "Normal",
  37264. default: true
  37265. },
  37266. "demon": {
  37267. name: "Demon"
  37268. },
  37269. "terra": {
  37270. name: "Terra"
  37271. },
  37272. "jupiter": {
  37273. name: "Jupiter"
  37274. },
  37275. "neptune": {
  37276. name: "Neptune"
  37277. }
  37278. }
  37279. ))
  37280. characterMakers.push(() => makeCharacter(
  37281. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37282. {
  37283. front: {
  37284. height: math.unit(16, "feet"),
  37285. weight: math.unit(610, "kg"),
  37286. name: "Front",
  37287. image: {
  37288. source: "./media/characters/huckle/front.svg",
  37289. extra: 1731/1625,
  37290. bottom: 33/1764
  37291. }
  37292. },
  37293. back: {
  37294. height: math.unit(16, "feet"),
  37295. weight: math.unit(610, "kg"),
  37296. name: "Back",
  37297. image: {
  37298. source: "./media/characters/huckle/back.svg",
  37299. extra: 1738/1651,
  37300. bottom: 37/1775
  37301. }
  37302. },
  37303. laughing: {
  37304. height: math.unit(3.75, "feet"),
  37305. name: "Laughing",
  37306. image: {
  37307. source: "./media/characters/huckle/laughing.svg"
  37308. }
  37309. },
  37310. angry: {
  37311. height: math.unit(4.15, "feet"),
  37312. name: "Angry",
  37313. image: {
  37314. source: "./media/characters/huckle/angry.svg"
  37315. }
  37316. },
  37317. },
  37318. [
  37319. {
  37320. name: "Normal",
  37321. height: math.unit(16, "feet"),
  37322. default: true
  37323. },
  37324. {
  37325. name: "Mini Macro",
  37326. height: math.unit(463, "feet")
  37327. },
  37328. {
  37329. name: "Macro",
  37330. height: math.unit(1680, "meters")
  37331. },
  37332. {
  37333. name: "Mega Macro",
  37334. height: math.unit(175, "km")
  37335. },
  37336. {
  37337. name: "Terra Macro",
  37338. height: math.unit(32, "gigameters")
  37339. },
  37340. {
  37341. name: "Multiverse+",
  37342. height: math.unit(2.56e23, "yottameters")
  37343. },
  37344. ]
  37345. ))
  37346. characterMakers.push(() => makeCharacter(
  37347. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37348. {
  37349. front: {
  37350. height: math.unit(6 + 9/12, "feet"),
  37351. weight: math.unit(280, "lb"),
  37352. name: "Front",
  37353. image: {
  37354. source: "./media/characters/candy/front.svg",
  37355. extra: 234/217,
  37356. bottom: 11/245
  37357. }
  37358. },
  37359. },
  37360. [
  37361. {
  37362. name: "Really Small",
  37363. height: math.unit(0.1, "nm")
  37364. },
  37365. {
  37366. name: "Micro",
  37367. height: math.unit(2, "inches")
  37368. },
  37369. {
  37370. name: "Normal",
  37371. height: math.unit(6 + 9/12, "feet"),
  37372. default: true
  37373. },
  37374. {
  37375. name: "Small Macro",
  37376. height: math.unit(69, "feet")
  37377. },
  37378. {
  37379. name: "Macro",
  37380. height: math.unit(160, "feet")
  37381. },
  37382. {
  37383. name: "Megamacro",
  37384. height: math.unit(22000, "miles")
  37385. },
  37386. {
  37387. name: "Gigamacro",
  37388. height: math.unit(50000, "miles")
  37389. },
  37390. ]
  37391. ))
  37392. characterMakers.push(() => makeCharacter(
  37393. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37394. {
  37395. front: {
  37396. height: math.unit(4, "feet"),
  37397. weight: math.unit(90, "lb"),
  37398. name: "Front",
  37399. image: {
  37400. source: "./media/characters/joey-mcdonald/front.svg",
  37401. extra: 1059/852,
  37402. bottom: 33/1092
  37403. }
  37404. },
  37405. back: {
  37406. height: math.unit(4, "feet"),
  37407. weight: math.unit(90, "lb"),
  37408. name: "Back",
  37409. image: {
  37410. source: "./media/characters/joey-mcdonald/back.svg",
  37411. extra: 1077/879,
  37412. bottom: 5/1082
  37413. }
  37414. },
  37415. frontKobold: {
  37416. height: math.unit(4, "feet"),
  37417. weight: math.unit(100, "lb"),
  37418. name: "Front-kobold",
  37419. image: {
  37420. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37421. extra: 1480/1367,
  37422. bottom: 0/1480
  37423. }
  37424. },
  37425. backKobold: {
  37426. height: math.unit(4, "feet"),
  37427. weight: math.unit(100, "lb"),
  37428. name: "Back-kobold",
  37429. image: {
  37430. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37431. extra: 1449/1361,
  37432. bottom: 0/1449
  37433. }
  37434. },
  37435. },
  37436. [
  37437. {
  37438. name: "Normal",
  37439. height: math.unit(4, "feet"),
  37440. default: true
  37441. },
  37442. ]
  37443. ))
  37444. characterMakers.push(() => makeCharacter(
  37445. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37446. {
  37447. front: {
  37448. height: math.unit(12 + 6/12, "feet"),
  37449. name: "Front",
  37450. image: {
  37451. source: "./media/characters/kass-lockheed/front.svg",
  37452. extra: 354/343,
  37453. bottom: 9/363
  37454. }
  37455. },
  37456. back: {
  37457. height: math.unit(12 + 6/12, "feet"),
  37458. name: "Back",
  37459. image: {
  37460. source: "./media/characters/kass-lockheed/back.svg",
  37461. extra: 364/352,
  37462. bottom: 3/367
  37463. }
  37464. },
  37465. dick: {
  37466. height: math.unit(3.12, "feet"),
  37467. name: "Dick",
  37468. image: {
  37469. source: "./media/characters/kass-lockheed/dick.svg"
  37470. }
  37471. },
  37472. head: {
  37473. height: math.unit(2.6, "feet"),
  37474. name: "Head",
  37475. image: {
  37476. source: "./media/characters/kass-lockheed/head.svg"
  37477. }
  37478. },
  37479. bleh: {
  37480. height: math.unit(2.85, "feet"),
  37481. name: "Bleh",
  37482. image: {
  37483. source: "./media/characters/kass-lockheed/bleh.svg"
  37484. }
  37485. },
  37486. smug: {
  37487. height: math.unit(2.85, "feet"),
  37488. name: "Smug",
  37489. image: {
  37490. source: "./media/characters/kass-lockheed/smug.svg"
  37491. }
  37492. },
  37493. },
  37494. [
  37495. {
  37496. name: "Normal",
  37497. height: math.unit(12 + 6/12, "feet"),
  37498. default: true
  37499. },
  37500. ]
  37501. ))
  37502. characterMakers.push(() => makeCharacter(
  37503. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37504. {
  37505. front: {
  37506. height: math.unit(6 + 2/12, "feet"),
  37507. name: "Front",
  37508. image: {
  37509. source: "./media/characters/taylor/front.svg",
  37510. extra: 639/495,
  37511. bottom: 12/651
  37512. }
  37513. },
  37514. },
  37515. [
  37516. {
  37517. name: "Normal",
  37518. height: math.unit(6 + 2/12, "feet"),
  37519. default: true
  37520. },
  37521. {
  37522. name: "Big",
  37523. height: math.unit(15, "feet")
  37524. },
  37525. {
  37526. name: "Lorg",
  37527. height: math.unit(80, "feet")
  37528. },
  37529. {
  37530. name: "Too Lorg",
  37531. height: math.unit(120, "feet")
  37532. },
  37533. ]
  37534. ))
  37535. characterMakers.push(() => makeCharacter(
  37536. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37537. {
  37538. front: {
  37539. height: math.unit(15, "feet"),
  37540. name: "Front",
  37541. image: {
  37542. source: "./media/characters/kaizer/front.svg",
  37543. extra: 1612/1436,
  37544. bottom: 43/1655
  37545. }
  37546. },
  37547. },
  37548. [
  37549. {
  37550. name: "Normal",
  37551. height: math.unit(15, "feet"),
  37552. default: true
  37553. },
  37554. ]
  37555. ))
  37556. characterMakers.push(() => makeCharacter(
  37557. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37558. {
  37559. front: {
  37560. height: math.unit(2, "feet"),
  37561. weight: math.unit(30, "lb"),
  37562. name: "Front",
  37563. image: {
  37564. source: "./media/characters/sandy/front.svg",
  37565. extra: 1439/1307,
  37566. bottom: 194/1633
  37567. }
  37568. },
  37569. },
  37570. [
  37571. {
  37572. name: "Normal",
  37573. height: math.unit(2, "feet"),
  37574. default: true
  37575. },
  37576. ]
  37577. ))
  37578. characterMakers.push(() => makeCharacter(
  37579. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37580. {
  37581. front: {
  37582. height: math.unit(3, "feet"),
  37583. name: "Front",
  37584. image: {
  37585. source: "./media/characters/mellvi/front.svg",
  37586. extra: 1831/1630,
  37587. bottom: 58/1889
  37588. }
  37589. },
  37590. },
  37591. [
  37592. {
  37593. name: "Normal",
  37594. height: math.unit(3, "feet"),
  37595. default: true
  37596. },
  37597. ]
  37598. ))
  37599. characterMakers.push(() => makeCharacter(
  37600. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37601. {
  37602. front: {
  37603. height: math.unit(5 + 11/12, "feet"),
  37604. weight: math.unit(200, "lb"),
  37605. name: "Front",
  37606. image: {
  37607. source: "./media/characters/shirou/front.svg",
  37608. extra: 2491/2383,
  37609. bottom: 189/2680
  37610. }
  37611. },
  37612. back: {
  37613. height: math.unit(5 + 11/12, "feet"),
  37614. weight: math.unit(200, "lb"),
  37615. name: "Back",
  37616. image: {
  37617. source: "./media/characters/shirou/back.svg",
  37618. extra: 2554/2450,
  37619. bottom: 76/2630
  37620. }
  37621. },
  37622. },
  37623. [
  37624. {
  37625. name: "Normal",
  37626. height: math.unit(5 + 11/12, "feet"),
  37627. default: true
  37628. },
  37629. ]
  37630. ))
  37631. characterMakers.push(() => makeCharacter(
  37632. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37633. {
  37634. front: {
  37635. height: math.unit(6 + 3/12, "feet"),
  37636. weight: math.unit(177, "lb"),
  37637. name: "Front",
  37638. image: {
  37639. source: "./media/characters/noryu/front.svg",
  37640. extra: 973/885,
  37641. bottom: 10/983
  37642. }
  37643. },
  37644. },
  37645. [
  37646. {
  37647. name: "Normal",
  37648. height: math.unit(6 + 3/12, "feet"),
  37649. default: true
  37650. },
  37651. ]
  37652. ))
  37653. characterMakers.push(() => makeCharacter(
  37654. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37655. {
  37656. front: {
  37657. height: math.unit(5 + 6/12, "feet"),
  37658. weight: math.unit(170, "lb"),
  37659. name: "Front",
  37660. image: {
  37661. source: "./media/characters/mevolas-rubenido/front.svg",
  37662. extra: 2109/1901,
  37663. bottom: 96/2205
  37664. }
  37665. },
  37666. },
  37667. [
  37668. {
  37669. name: "Normal",
  37670. height: math.unit(5 + 6/12, "feet"),
  37671. default: true
  37672. },
  37673. ]
  37674. ))
  37675. characterMakers.push(() => makeCharacter(
  37676. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37677. {
  37678. front: {
  37679. height: math.unit(100, "feet"),
  37680. name: "Front",
  37681. image: {
  37682. source: "./media/characters/dee/front.svg",
  37683. extra: 2153/2036,
  37684. bottom: 59/2212
  37685. }
  37686. },
  37687. back: {
  37688. height: math.unit(100, "feet"),
  37689. name: "Back",
  37690. image: {
  37691. source: "./media/characters/dee/back.svg",
  37692. extra: 2183/2058,
  37693. bottom: 75/2258
  37694. }
  37695. },
  37696. foot: {
  37697. height: math.unit(19.43, "feet"),
  37698. name: "Foot",
  37699. image: {
  37700. source: "./media/characters/dee/foot.svg"
  37701. }
  37702. },
  37703. hoof: {
  37704. height: math.unit(20.6, "feet"),
  37705. name: "Hoof",
  37706. image: {
  37707. source: "./media/characters/dee/hoof.svg"
  37708. }
  37709. },
  37710. },
  37711. [
  37712. {
  37713. name: "Macro",
  37714. height: math.unit(100, "feet"),
  37715. default: true
  37716. },
  37717. ]
  37718. ))
  37719. characterMakers.push(() => makeCharacter(
  37720. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37721. {
  37722. front: {
  37723. height: math.unit(5 + 6/12, "feet"),
  37724. name: "Front",
  37725. image: {
  37726. source: "./media/characters/teh/front.svg",
  37727. extra: 1002/847,
  37728. bottom: 62/1064
  37729. }
  37730. },
  37731. },
  37732. [
  37733. {
  37734. name: "Normal",
  37735. height: math.unit(5 + 6/12, "feet"),
  37736. default: true
  37737. },
  37738. ]
  37739. ))
  37740. characterMakers.push(() => makeCharacter(
  37741. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37742. {
  37743. side: {
  37744. height: math.unit(6 + 1/12, "feet"),
  37745. weight: math.unit(204, "lb"),
  37746. name: "Side",
  37747. image: {
  37748. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37749. extra: 974/775,
  37750. bottom: 169/1143
  37751. }
  37752. },
  37753. sitting: {
  37754. height: math.unit(6 + 2/12, "feet"),
  37755. weight: math.unit(204, "lb"),
  37756. name: "Sitting",
  37757. image: {
  37758. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37759. extra: 1175/964,
  37760. bottom: 378/1553
  37761. }
  37762. },
  37763. },
  37764. [
  37765. {
  37766. name: "Normal",
  37767. height: math.unit(6 + 1/12, "feet"),
  37768. default: true
  37769. },
  37770. ]
  37771. ))
  37772. characterMakers.push(() => makeCharacter(
  37773. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37774. {
  37775. front: {
  37776. height: math.unit(6, "inches"),
  37777. name: "Front",
  37778. image: {
  37779. source: "./media/characters/tululi/front.svg",
  37780. extra: 1997/1876,
  37781. bottom: 20/2017
  37782. }
  37783. },
  37784. },
  37785. [
  37786. {
  37787. name: "Normal",
  37788. height: math.unit(6, "inches"),
  37789. default: true
  37790. },
  37791. ]
  37792. ))
  37793. characterMakers.push(() => makeCharacter(
  37794. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37795. {
  37796. front: {
  37797. height: math.unit(4 + 1/12, "feet"),
  37798. name: "Front",
  37799. image: {
  37800. source: "./media/characters/star/front.svg",
  37801. extra: 1493/1189,
  37802. bottom: 48/1541
  37803. }
  37804. },
  37805. },
  37806. [
  37807. {
  37808. name: "Normal",
  37809. height: math.unit(4 + 1/12, "feet"),
  37810. default: true
  37811. },
  37812. ]
  37813. ))
  37814. characterMakers.push(() => makeCharacter(
  37815. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37816. {
  37817. front: {
  37818. height: math.unit(6 + 3/12, "feet"),
  37819. name: "Front",
  37820. image: {
  37821. source: "./media/characters/comet/front.svg",
  37822. extra: 1681/1462,
  37823. bottom: 26/1707
  37824. }
  37825. },
  37826. },
  37827. [
  37828. {
  37829. name: "Normal",
  37830. height: math.unit(6 + 3/12, "feet"),
  37831. default: true
  37832. },
  37833. ]
  37834. ))
  37835. characterMakers.push(() => makeCharacter(
  37836. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37837. {
  37838. front: {
  37839. height: math.unit(950, "feet"),
  37840. name: "Front",
  37841. image: {
  37842. source: "./media/characters/vortex/front.svg",
  37843. extra: 1497/1434,
  37844. bottom: 56/1553
  37845. }
  37846. },
  37847. maw: {
  37848. height: math.unit(285, "feet"),
  37849. name: "Maw",
  37850. image: {
  37851. source: "./media/characters/vortex/maw.svg"
  37852. }
  37853. },
  37854. },
  37855. [
  37856. {
  37857. name: "Macro",
  37858. height: math.unit(950, "feet"),
  37859. default: true
  37860. },
  37861. ]
  37862. ))
  37863. characterMakers.push(() => makeCharacter(
  37864. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37865. {
  37866. front: {
  37867. height: math.unit(600, "feet"),
  37868. weight: math.unit(0.02, "grams"),
  37869. name: "Front",
  37870. image: {
  37871. source: "./media/characters/doodle/front.svg",
  37872. extra: 1578/1413,
  37873. bottom: 37/1615
  37874. }
  37875. },
  37876. },
  37877. [
  37878. {
  37879. name: "Macro",
  37880. height: math.unit(600, "feet"),
  37881. default: true
  37882. },
  37883. ]
  37884. ))
  37885. characterMakers.push(() => makeCharacter(
  37886. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37887. {
  37888. front: {
  37889. height: math.unit(6 + 6/12, "feet"),
  37890. name: "Front",
  37891. image: {
  37892. source: "./media/characters/jai/front.svg",
  37893. extra: 1645/1534,
  37894. bottom: 115/1760
  37895. }
  37896. },
  37897. },
  37898. [
  37899. {
  37900. name: "Normal",
  37901. height: math.unit(6 + 6/12, "feet"),
  37902. default: true
  37903. },
  37904. ]
  37905. ))
  37906. characterMakers.push(() => makeCharacter(
  37907. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37908. {
  37909. front: {
  37910. height: math.unit(6 + 8/12, "feet"),
  37911. name: "Front",
  37912. image: {
  37913. source: "./media/characters/pixel/front.svg",
  37914. extra: 1900/1735,
  37915. bottom: 63/1963
  37916. }
  37917. },
  37918. },
  37919. [
  37920. {
  37921. name: "Normal",
  37922. height: math.unit(6 + 8/12, "feet"),
  37923. default: true
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37929. {
  37930. back: {
  37931. height: math.unit(4 + 1/12, "feet"),
  37932. weight: math.unit(75, "lb"),
  37933. name: "Back",
  37934. image: {
  37935. source: "./media/characters/rhett/back.svg",
  37936. extra: 930/878,
  37937. bottom: 25/955
  37938. }
  37939. },
  37940. front: {
  37941. height: math.unit(4 + 1/12, "feet"),
  37942. weight: math.unit(75, "lb"),
  37943. name: "Front",
  37944. image: {
  37945. source: "./media/characters/rhett/front.svg",
  37946. extra: 1682/1586,
  37947. bottom: 92/1774
  37948. }
  37949. },
  37950. },
  37951. [
  37952. {
  37953. name: "Micro",
  37954. height: math.unit(8, "inches")
  37955. },
  37956. {
  37957. name: "Tiny",
  37958. height: math.unit(2, "feet")
  37959. },
  37960. {
  37961. name: "Normal",
  37962. height: math.unit(4 + 1/12, "feet"),
  37963. default: true
  37964. },
  37965. ]
  37966. ))
  37967. characterMakers.push(() => makeCharacter(
  37968. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37969. {
  37970. front: {
  37971. height: math.unit(3 + 3/12, "feet"),
  37972. name: "Front",
  37973. image: {
  37974. source: "./media/characters/penny/front.svg",
  37975. extra: 1406/1311,
  37976. bottom: 26/1432
  37977. }
  37978. },
  37979. },
  37980. [
  37981. {
  37982. name: "Normal",
  37983. height: math.unit(3 + 3/12, "feet"),
  37984. default: true
  37985. },
  37986. ]
  37987. ))
  37988. characterMakers.push(() => makeCharacter(
  37989. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37990. {
  37991. front: {
  37992. height: math.unit(4 + 11/12, "feet"),
  37993. name: "Front",
  37994. image: {
  37995. source: "./media/characters/monty/front.svg",
  37996. extra: 1479/1209,
  37997. bottom: 0/1479
  37998. }
  37999. },
  38000. },
  38001. [
  38002. {
  38003. name: "Normal",
  38004. height: math.unit(4 + 11/12, "feet"),
  38005. default: true
  38006. },
  38007. ]
  38008. ))
  38009. characterMakers.push(() => makeCharacter(
  38010. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38011. {
  38012. front: {
  38013. height: math.unit(8 + 4/12, "feet"),
  38014. name: "Front",
  38015. image: {
  38016. source: "./media/characters/sterling/front.svg",
  38017. extra: 1420/1236,
  38018. bottom: 27/1447
  38019. }
  38020. },
  38021. },
  38022. [
  38023. {
  38024. name: "Normal",
  38025. height: math.unit(8 + 4/12, "feet"),
  38026. default: true
  38027. },
  38028. ]
  38029. ))
  38030. characterMakers.push(() => makeCharacter(
  38031. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38032. {
  38033. front: {
  38034. height: math.unit(15, "feet"),
  38035. name: "Front",
  38036. image: {
  38037. source: "./media/characters/marble/front.svg",
  38038. extra: 973/937,
  38039. bottom: 32/1005
  38040. }
  38041. },
  38042. },
  38043. [
  38044. {
  38045. name: "Normal",
  38046. height: math.unit(15, "feet"),
  38047. default: true
  38048. },
  38049. ]
  38050. ))
  38051. characterMakers.push(() => makeCharacter(
  38052. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38053. {
  38054. front: {
  38055. height: math.unit(3, "inches"),
  38056. name: "Front",
  38057. image: {
  38058. source: "./media/characters/powder/front.svg",
  38059. extra: 1504/1334,
  38060. bottom: 518/2022
  38061. }
  38062. },
  38063. },
  38064. [
  38065. {
  38066. name: "Normal",
  38067. height: math.unit(3, "inches"),
  38068. default: true
  38069. },
  38070. ]
  38071. ))
  38072. characterMakers.push(() => makeCharacter(
  38073. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38074. {
  38075. front: {
  38076. height: math.unit(4 + 5/12, "feet"),
  38077. name: "Front",
  38078. image: {
  38079. source: "./media/characters/joey-raccoon/front.svg",
  38080. extra: 1273/1197,
  38081. bottom: 0/1273
  38082. }
  38083. },
  38084. },
  38085. [
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(4 + 5/12, "feet"),
  38089. default: true
  38090. },
  38091. ]
  38092. ))
  38093. characterMakers.push(() => makeCharacter(
  38094. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38095. {
  38096. front: {
  38097. height: math.unit(8 + 4/12, "feet"),
  38098. name: "Front",
  38099. image: {
  38100. source: "./media/characters/vick/front.svg",
  38101. extra: 2187/2118,
  38102. bottom: 47/2234
  38103. }
  38104. },
  38105. },
  38106. [
  38107. {
  38108. name: "Normal",
  38109. height: math.unit(8 + 4/12, "feet"),
  38110. default: true
  38111. },
  38112. ]
  38113. ))
  38114. characterMakers.push(() => makeCharacter(
  38115. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38116. {
  38117. front: {
  38118. height: math.unit(5 + 5/12, "feet"),
  38119. name: "Front",
  38120. image: {
  38121. source: "./media/characters/mitsy/front.svg",
  38122. extra: 1842/1695,
  38123. bottom: 0/1842
  38124. }
  38125. },
  38126. },
  38127. [
  38128. {
  38129. name: "Normal",
  38130. height: math.unit(5 + 5/12, "feet"),
  38131. default: true
  38132. },
  38133. ]
  38134. ))
  38135. characterMakers.push(() => makeCharacter(
  38136. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38137. {
  38138. front: {
  38139. height: math.unit(6 + 3/12, "feet"),
  38140. name: "Front",
  38141. image: {
  38142. source: "./media/characters/silvy/front.svg",
  38143. extra: 1995/1836,
  38144. bottom: 225/2220
  38145. }
  38146. },
  38147. },
  38148. [
  38149. {
  38150. name: "Normal",
  38151. height: math.unit(6 + 3/12, "feet"),
  38152. default: true
  38153. },
  38154. ]
  38155. ))
  38156. characterMakers.push(() => makeCharacter(
  38157. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38158. {
  38159. front: {
  38160. height: math.unit(3 + 8/12, "feet"),
  38161. name: "Front",
  38162. image: {
  38163. source: "./media/characters/rodney/front.svg",
  38164. extra: 1956/1747,
  38165. bottom: 31/1987
  38166. }
  38167. },
  38168. frontDressed: {
  38169. height: math.unit(2.9, "feet"),
  38170. name: "Front (Dressed)",
  38171. image: {
  38172. source: "./media/characters/rodney/front-dressed.svg",
  38173. extra: 1382/1241,
  38174. bottom: 385/1767
  38175. }
  38176. },
  38177. },
  38178. [
  38179. {
  38180. name: "Normal",
  38181. height: math.unit(3 + 8/12, "feet"),
  38182. default: true
  38183. },
  38184. ]
  38185. ))
  38186. characterMakers.push(() => makeCharacter(
  38187. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38188. {
  38189. front: {
  38190. height: math.unit(5 + 9/12, "feet"),
  38191. weight: math.unit(194, "lbs"),
  38192. name: "Front",
  38193. image: {
  38194. source: "./media/characters/zakail-sudekai/front.svg",
  38195. extra: 2696/2533,
  38196. bottom: 248/2944
  38197. }
  38198. },
  38199. maw: {
  38200. height: math.unit(1.35, "feet"),
  38201. name: "Maw",
  38202. image: {
  38203. source: "./media/characters/zakail-sudekai/maw.svg"
  38204. }
  38205. },
  38206. },
  38207. [
  38208. {
  38209. name: "Normal",
  38210. height: math.unit(5 + 9/12, "feet"),
  38211. default: true
  38212. },
  38213. ]
  38214. ))
  38215. characterMakers.push(() => makeCharacter(
  38216. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38217. {
  38218. front: {
  38219. height: math.unit(8 + 4/12, "feet"),
  38220. weight: math.unit(1200, "lb"),
  38221. name: "Front",
  38222. image: {
  38223. source: "./media/characters/eleanor/front.svg",
  38224. extra: 1226/1192,
  38225. bottom: 52/1278
  38226. }
  38227. },
  38228. back: {
  38229. height: math.unit(8 + 4/12, "feet"),
  38230. weight: math.unit(1200, "lb"),
  38231. name: "Back",
  38232. image: {
  38233. source: "./media/characters/eleanor/back.svg",
  38234. extra: 1242/1184,
  38235. bottom: 60/1302
  38236. }
  38237. },
  38238. head: {
  38239. height: math.unit(2.62, "feet"),
  38240. name: "Head",
  38241. image: {
  38242. source: "./media/characters/eleanor/head.svg"
  38243. }
  38244. },
  38245. },
  38246. [
  38247. {
  38248. name: "Normal",
  38249. height: math.unit(8 + 4/12, "feet"),
  38250. default: true
  38251. },
  38252. ]
  38253. ))
  38254. characterMakers.push(() => makeCharacter(
  38255. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38256. {
  38257. front: {
  38258. height: math.unit(8 + 4/12, "feet"),
  38259. weight: math.unit(750, "lb"),
  38260. name: "Front",
  38261. image: {
  38262. source: "./media/characters/tanya/front.svg",
  38263. extra: 1749/1615,
  38264. bottom: 33/1782
  38265. }
  38266. },
  38267. },
  38268. [
  38269. {
  38270. name: "Normal",
  38271. height: math.unit(8 + 4/12, "feet"),
  38272. default: true
  38273. },
  38274. ]
  38275. ))
  38276. characterMakers.push(() => makeCharacter(
  38277. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38278. {
  38279. front: {
  38280. height: math.unit(5, "feet"),
  38281. weight: math.unit(225, "lb"),
  38282. name: "Front",
  38283. image: {
  38284. source: "./media/characters/cindy/front.svg",
  38285. extra: 1320/1250,
  38286. bottom: 42/1362
  38287. }
  38288. },
  38289. frontDressed: {
  38290. height: math.unit(5, "feet"),
  38291. weight: math.unit(225, "lb"),
  38292. name: "Front (Dressed)",
  38293. image: {
  38294. source: "./media/characters/cindy/front-dressed.svg",
  38295. extra: 1320/1250,
  38296. bottom: 42/1362
  38297. }
  38298. },
  38299. back: {
  38300. height: math.unit(5, "feet"),
  38301. weight: math.unit(225, "lb"),
  38302. name: "Back",
  38303. image: {
  38304. source: "./media/characters/cindy/back.svg",
  38305. extra: 1384/1346,
  38306. bottom: 14/1398
  38307. }
  38308. },
  38309. },
  38310. [
  38311. {
  38312. name: "Normal",
  38313. height: math.unit(5, "feet"),
  38314. default: true
  38315. },
  38316. ]
  38317. ))
  38318. characterMakers.push(() => makeCharacter(
  38319. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38320. {
  38321. front: {
  38322. height: math.unit(6 + 9/12, "feet"),
  38323. weight: math.unit(440, "lb"),
  38324. name: "Front",
  38325. image: {
  38326. source: "./media/characters/wilbur-owen/front.svg",
  38327. extra: 1575/1448,
  38328. bottom: 72/1647
  38329. }
  38330. },
  38331. back: {
  38332. height: math.unit(6 + 9/12, "feet"),
  38333. weight: math.unit(440, "lb"),
  38334. name: "Back",
  38335. image: {
  38336. source: "./media/characters/wilbur-owen/back.svg",
  38337. extra: 1578/1445,
  38338. bottom: 36/1614
  38339. }
  38340. },
  38341. },
  38342. [
  38343. {
  38344. name: "Normal",
  38345. height: math.unit(6 + 9/12, "feet"),
  38346. default: true
  38347. },
  38348. ]
  38349. ))
  38350. characterMakers.push(() => makeCharacter(
  38351. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38352. {
  38353. front: {
  38354. height: math.unit(6 + 5/12, "feet"),
  38355. weight: math.unit(650, "lb"),
  38356. name: "Front",
  38357. image: {
  38358. source: "./media/characters/keegan/front.svg",
  38359. extra: 2387/2198,
  38360. bottom: 33/2420
  38361. }
  38362. },
  38363. side: {
  38364. height: math.unit(6 + 5/12, "feet"),
  38365. weight: math.unit(650, "lb"),
  38366. name: "Side",
  38367. image: {
  38368. source: "./media/characters/keegan/side.svg",
  38369. extra: 2390/2202,
  38370. bottom: 47/2437
  38371. }
  38372. },
  38373. back: {
  38374. height: math.unit(6 + 5/12, "feet"),
  38375. weight: math.unit(650, "lb"),
  38376. name: "Back",
  38377. image: {
  38378. source: "./media/characters/keegan/back.svg",
  38379. extra: 2418/2268,
  38380. bottom: 15/2433
  38381. }
  38382. },
  38383. frontSfw: {
  38384. height: math.unit(6 + 5/12, "feet"),
  38385. weight: math.unit(650, "lb"),
  38386. name: "Front (SFW)",
  38387. image: {
  38388. source: "./media/characters/keegan/front-sfw.svg",
  38389. extra: 2387/2198,
  38390. bottom: 33/2420
  38391. }
  38392. },
  38393. beans: {
  38394. height: math.unit(1.85, "feet"),
  38395. name: "Beans",
  38396. image: {
  38397. source: "./media/characters/keegan/beans.svg"
  38398. }
  38399. },
  38400. },
  38401. [
  38402. {
  38403. name: "Normal",
  38404. height: math.unit(6 + 5/12, "feet"),
  38405. default: true
  38406. },
  38407. ]
  38408. ))
  38409. characterMakers.push(() => makeCharacter(
  38410. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38411. {
  38412. front: {
  38413. height: math.unit(9, "feet"),
  38414. name: "Front",
  38415. image: {
  38416. source: "./media/characters/colton/front.svg",
  38417. extra: 1589/1326,
  38418. bottom: 139/1728
  38419. }
  38420. },
  38421. },
  38422. [
  38423. {
  38424. name: "Normal",
  38425. height: math.unit(9, "feet"),
  38426. default: true
  38427. },
  38428. ]
  38429. ))
  38430. characterMakers.push(() => makeCharacter(
  38431. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38432. {
  38433. front: {
  38434. height: math.unit(2 + 9/12, "feet"),
  38435. name: "Front",
  38436. image: {
  38437. source: "./media/characters/bora/front.svg",
  38438. extra: 1265/1250,
  38439. bottom: 24/1289
  38440. }
  38441. },
  38442. },
  38443. [
  38444. {
  38445. name: "Normal",
  38446. height: math.unit(2 + 9/12, "feet"),
  38447. default: true
  38448. },
  38449. ]
  38450. ))
  38451. characterMakers.push(() => makeCharacter(
  38452. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38453. {
  38454. front: {
  38455. height: math.unit(8, "feet"),
  38456. name: "Front",
  38457. image: {
  38458. source: "./media/characters/myu-myu/front.svg",
  38459. extra: 1949/1857,
  38460. bottom: 90/2039
  38461. }
  38462. },
  38463. },
  38464. [
  38465. {
  38466. name: "Normal",
  38467. height: math.unit(8, "feet"),
  38468. default: true
  38469. },
  38470. {
  38471. name: "Big",
  38472. height: math.unit(15, "feet")
  38473. },
  38474. {
  38475. name: "BIG",
  38476. height: math.unit(25, "feet")
  38477. },
  38478. ]
  38479. ))
  38480. characterMakers.push(() => makeCharacter(
  38481. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38482. {
  38483. side: {
  38484. height: math.unit(7 + 5/12, "feet"),
  38485. weight: math.unit(2800, "lb"),
  38486. name: "Side",
  38487. image: {
  38488. source: "./media/characters/haloren/side.svg",
  38489. extra: 1793/409,
  38490. bottom: 59/1852
  38491. }
  38492. },
  38493. frontPaw: {
  38494. height: math.unit(2.36, "feet"),
  38495. name: "Front paw",
  38496. image: {
  38497. source: "./media/characters/haloren/front-paw.svg"
  38498. }
  38499. },
  38500. hindPaw: {
  38501. height: math.unit(3.18, "feet"),
  38502. name: "Hind paw",
  38503. image: {
  38504. source: "./media/characters/haloren/hind-paw.svg"
  38505. }
  38506. },
  38507. maw: {
  38508. height: math.unit(5.05, "feet"),
  38509. name: "Maw",
  38510. image: {
  38511. source: "./media/characters/haloren/maw.svg"
  38512. }
  38513. },
  38514. dick: {
  38515. height: math.unit(2.90, "feet"),
  38516. name: "Dick",
  38517. image: {
  38518. source: "./media/characters/haloren/dick.svg"
  38519. }
  38520. },
  38521. },
  38522. [
  38523. {
  38524. name: "Normal",
  38525. height: math.unit(7 + 5/12, "feet"),
  38526. default: true
  38527. },
  38528. {
  38529. name: "Enhanced",
  38530. height: math.unit(14 + 3/12, "feet")
  38531. },
  38532. ]
  38533. ))
  38534. characterMakers.push(() => makeCharacter(
  38535. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38536. {
  38537. front: {
  38538. height: math.unit(171, "cm"),
  38539. name: "Front",
  38540. image: {
  38541. source: "./media/characters/kimmy/front.svg",
  38542. extra: 1491/1435,
  38543. bottom: 53/1544
  38544. }
  38545. },
  38546. },
  38547. [
  38548. {
  38549. name: "Small",
  38550. height: math.unit(9, "cm")
  38551. },
  38552. {
  38553. name: "Normal",
  38554. height: math.unit(171, "cm"),
  38555. default: true
  38556. },
  38557. ]
  38558. ))
  38559. characterMakers.push(() => makeCharacter(
  38560. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38561. {
  38562. front: {
  38563. height: math.unit(8, "feet"),
  38564. weight: math.unit(300, "lb"),
  38565. name: "Front",
  38566. image: {
  38567. source: "./media/characters/galeboomer/front.svg",
  38568. extra: 4651/4415,
  38569. bottom: 162/4813
  38570. }
  38571. },
  38572. back: {
  38573. height: math.unit(8, "feet"),
  38574. weight: math.unit(300, "lb"),
  38575. name: "Back",
  38576. image: {
  38577. source: "./media/characters/galeboomer/back.svg",
  38578. extra: 4544/4314,
  38579. bottom: 16/4560
  38580. }
  38581. },
  38582. frontAlt: {
  38583. height: math.unit(8, "feet"),
  38584. weight: math.unit(300, "lb"),
  38585. name: "Front (Alt)",
  38586. image: {
  38587. source: "./media/characters/galeboomer/front-alt.svg",
  38588. extra: 4458/4228,
  38589. bottom: 68/4526
  38590. }
  38591. },
  38592. maw: {
  38593. height: math.unit(1.2, "feet"),
  38594. name: "Maw",
  38595. image: {
  38596. source: "./media/characters/galeboomer/maw.svg"
  38597. }
  38598. },
  38599. },
  38600. [
  38601. {
  38602. name: "Normal",
  38603. height: math.unit(8, "feet"),
  38604. default: true
  38605. },
  38606. ]
  38607. ))
  38608. characterMakers.push(() => makeCharacter(
  38609. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38610. {
  38611. front: {
  38612. height: math.unit(5 + 9/12, "feet"),
  38613. weight: math.unit(120, "lb"),
  38614. name: "Front",
  38615. image: {
  38616. source: "./media/characters/chyr/front.svg",
  38617. extra: 1323/1254,
  38618. bottom: 63/1386
  38619. }
  38620. },
  38621. back: {
  38622. height: math.unit(5 + 9/12, "feet"),
  38623. weight: math.unit(120, "lb"),
  38624. name: "Back",
  38625. image: {
  38626. source: "./media/characters/chyr/back.svg",
  38627. extra: 1323/1252,
  38628. bottom: 48/1371
  38629. }
  38630. },
  38631. },
  38632. [
  38633. {
  38634. name: "Normal",
  38635. height: math.unit(5 + 9/12, "feet"),
  38636. default: true
  38637. },
  38638. ]
  38639. ))
  38640. characterMakers.push(() => makeCharacter(
  38641. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38642. {
  38643. front: {
  38644. height: math.unit(7, "feet"),
  38645. weight: math.unit(310, "lb"),
  38646. name: "Front",
  38647. image: {
  38648. source: "./media/characters/solarus/front.svg",
  38649. extra: 2415/2021,
  38650. bottom: 103/2518
  38651. }
  38652. },
  38653. back: {
  38654. height: math.unit(7, "feet"),
  38655. weight: math.unit(310, "lb"),
  38656. name: "Back",
  38657. image: {
  38658. source: "./media/characters/solarus/back.svg",
  38659. extra: 2463/2089,
  38660. bottom: 79/2542
  38661. }
  38662. },
  38663. },
  38664. [
  38665. {
  38666. name: "Normal",
  38667. height: math.unit(7, "feet"),
  38668. default: true
  38669. },
  38670. ]
  38671. ))
  38672. characterMakers.push(() => makeCharacter(
  38673. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38674. {
  38675. front: {
  38676. height: math.unit(16, "feet"),
  38677. name: "Front",
  38678. image: {
  38679. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38680. extra: 1844/1780,
  38681. bottom: 58/1902
  38682. }
  38683. },
  38684. winterCoat: {
  38685. height: math.unit(16, "feet"),
  38686. name: "Winter Coat",
  38687. image: {
  38688. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38689. extra: 1807/1775,
  38690. bottom: 69/1876
  38691. }
  38692. },
  38693. },
  38694. [
  38695. {
  38696. name: "Normal",
  38697. height: math.unit(16, "feet"),
  38698. default: true
  38699. },
  38700. {
  38701. name: "Chicago Size",
  38702. height: math.unit(560, "feet")
  38703. },
  38704. ]
  38705. ))
  38706. characterMakers.push(() => makeCharacter(
  38707. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38708. {
  38709. front: {
  38710. height: math.unit(11 + 6/12, "feet"),
  38711. weight: math.unit(1366, "lb"),
  38712. name: "Front",
  38713. image: {
  38714. source: "./media/characters/lexor/front.svg",
  38715. extra: 1560/1481,
  38716. bottom: 211/1771
  38717. }
  38718. },
  38719. back: {
  38720. height: math.unit(11 + 6/12, "feet"),
  38721. weight: math.unit(1366, "lb"),
  38722. name: "Back",
  38723. image: {
  38724. source: "./media/characters/lexor/back.svg",
  38725. extra: 1614/1533,
  38726. bottom: 76/1690
  38727. }
  38728. },
  38729. maw: {
  38730. height: math.unit(3, "feet"),
  38731. name: "Maw",
  38732. image: {
  38733. source: "./media/characters/lexor/maw.svg"
  38734. }
  38735. },
  38736. dick: {
  38737. height: math.unit(2.59, "feet"),
  38738. name: "Dick",
  38739. image: {
  38740. source: "./media/characters/lexor/dick.svg"
  38741. }
  38742. },
  38743. },
  38744. [
  38745. {
  38746. name: "Normal",
  38747. height: math.unit(11 + 6/12, "feet"),
  38748. default: true
  38749. },
  38750. ]
  38751. ))
  38752. characterMakers.push(() => makeCharacter(
  38753. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38754. {
  38755. front: {
  38756. height: math.unit(5 + 8/12, "feet"),
  38757. name: "Front",
  38758. image: {
  38759. source: "./media/characters/magnum/front.svg",
  38760. extra: 942/855,
  38761. bottom: 26/968
  38762. }
  38763. },
  38764. },
  38765. [
  38766. {
  38767. name: "Normal",
  38768. height: math.unit(5 + 8/12, "feet"),
  38769. default: true
  38770. },
  38771. ]
  38772. ))
  38773. characterMakers.push(() => makeCharacter(
  38774. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38775. {
  38776. front: {
  38777. height: math.unit(18 + 4/12, "feet"),
  38778. weight: math.unit(1500, "kg"),
  38779. name: "Front",
  38780. image: {
  38781. source: "./media/characters/solas-sharpsman/front.svg",
  38782. extra: 1698/1589,
  38783. bottom: 0/1698
  38784. }
  38785. },
  38786. },
  38787. [
  38788. {
  38789. name: "Normal",
  38790. height: math.unit(18 + 4/12, "feet"),
  38791. default: true
  38792. },
  38793. ]
  38794. ))
  38795. characterMakers.push(() => makeCharacter(
  38796. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38797. {
  38798. front: {
  38799. height: math.unit(5 + 5/12, "feet"),
  38800. weight: math.unit(180, "lb"),
  38801. name: "Front",
  38802. image: {
  38803. source: "./media/characters/october/front.svg",
  38804. extra: 1800/1650,
  38805. bottom: 0/1800
  38806. }
  38807. },
  38808. frontNsfw: {
  38809. height: math.unit(5 + 5/12, "feet"),
  38810. weight: math.unit(180, "lb"),
  38811. name: "Front (NSFW)",
  38812. image: {
  38813. source: "./media/characters/october/front-nsfw.svg",
  38814. extra: 1392/1307,
  38815. bottom: 42/1434
  38816. }
  38817. },
  38818. },
  38819. [
  38820. {
  38821. name: "Normal",
  38822. height: math.unit(5 + 5/12, "feet"),
  38823. default: true
  38824. },
  38825. ]
  38826. ))
  38827. characterMakers.push(() => makeCharacter(
  38828. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38829. {
  38830. front: {
  38831. height: math.unit(8 + 6/12, "feet"),
  38832. name: "Front",
  38833. image: {
  38834. source: "./media/characters/essynkardi/front.svg",
  38835. extra: 1914/1846,
  38836. bottom: 22/1936
  38837. }
  38838. },
  38839. },
  38840. [
  38841. {
  38842. name: "Normal",
  38843. height: math.unit(8 + 6/12, "feet"),
  38844. default: true
  38845. },
  38846. ]
  38847. ))
  38848. characterMakers.push(() => makeCharacter(
  38849. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38850. {
  38851. front: {
  38852. height: math.unit(6 + 6/12, "feet"),
  38853. weight: math.unit(7, "lb"),
  38854. name: "Front",
  38855. image: {
  38856. source: "./media/characters/icky/front.svg",
  38857. extra: 813/782,
  38858. bottom: 66/879
  38859. }
  38860. },
  38861. back: {
  38862. height: math.unit(6 + 6/12, "feet"),
  38863. weight: math.unit(7, "lb"),
  38864. name: "Back",
  38865. image: {
  38866. source: "./media/characters/icky/back.svg",
  38867. extra: 754/735,
  38868. bottom: 56/810
  38869. }
  38870. },
  38871. },
  38872. [
  38873. {
  38874. name: "Normal",
  38875. height: math.unit(6 + 6/12, "feet"),
  38876. default: true
  38877. },
  38878. ]
  38879. ))
  38880. characterMakers.push(() => makeCharacter(
  38881. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38882. {
  38883. front: {
  38884. height: math.unit(15, "feet"),
  38885. name: "Front",
  38886. image: {
  38887. source: "./media/characters/rojas/front.svg",
  38888. extra: 1462/1408,
  38889. bottom: 95/1557
  38890. }
  38891. },
  38892. back: {
  38893. height: math.unit(15, "feet"),
  38894. name: "Back",
  38895. image: {
  38896. source: "./media/characters/rojas/back.svg",
  38897. extra: 1023/954,
  38898. bottom: 28/1051
  38899. }
  38900. },
  38901. },
  38902. [
  38903. {
  38904. name: "Normal",
  38905. height: math.unit(15, "feet"),
  38906. default: true
  38907. },
  38908. ]
  38909. ))
  38910. characterMakers.push(() => makeCharacter(
  38911. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38912. {
  38913. frontHuman: {
  38914. height: math.unit(5 + 7/12, "feet"),
  38915. name: "Front (Human)",
  38916. image: {
  38917. source: "./media/characters/alek-dryagan/front-human.svg",
  38918. extra: 1687/1667,
  38919. bottom: 69/1756
  38920. }
  38921. },
  38922. backHuman: {
  38923. height: math.unit(5 + 7/12, "feet"),
  38924. name: "Back (Human)",
  38925. image: {
  38926. source: "./media/characters/alek-dryagan/back-human.svg",
  38927. extra: 1670/1649,
  38928. bottom: 65/1735
  38929. }
  38930. },
  38931. frontDemi: {
  38932. height: math.unit(65, "feet"),
  38933. name: "Front (Demi)",
  38934. image: {
  38935. source: "./media/characters/alek-dryagan/front-demi.svg",
  38936. extra: 1669/1642,
  38937. bottom: 49/1718
  38938. }
  38939. },
  38940. backDemi: {
  38941. height: math.unit(65, "feet"),
  38942. name: "Back (Demi)",
  38943. image: {
  38944. source: "./media/characters/alek-dryagan/back-demi.svg",
  38945. extra: 1658/1637,
  38946. bottom: 40/1698
  38947. }
  38948. },
  38949. mawHuman: {
  38950. height: math.unit(0.3, "feet"),
  38951. name: "Maw (Human)",
  38952. image: {
  38953. source: "./media/characters/alek-dryagan/maw-human.svg"
  38954. }
  38955. },
  38956. mawDemi: {
  38957. height: math.unit(3.8, "feet"),
  38958. name: "Maw (Demi)",
  38959. image: {
  38960. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38961. }
  38962. },
  38963. },
  38964. [
  38965. {
  38966. name: "Normal",
  38967. height: math.unit(5 + 7/12, "feet"),
  38968. default: true
  38969. },
  38970. ]
  38971. ))
  38972. characterMakers.push(() => makeCharacter(
  38973. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38974. {
  38975. frontHuman: {
  38976. height: math.unit(5 + 2/12, "feet"),
  38977. name: "Front (Human)",
  38978. image: {
  38979. source: "./media/characters/gen/front-human.svg",
  38980. extra: 1627/1538,
  38981. bottom: 71/1698
  38982. }
  38983. },
  38984. backHuman: {
  38985. height: math.unit(5 + 2/12, "feet"),
  38986. name: "Back (Human)",
  38987. image: {
  38988. source: "./media/characters/gen/back-human.svg",
  38989. extra: 1638/1548,
  38990. bottom: 69/1707
  38991. }
  38992. },
  38993. frontDemi: {
  38994. height: math.unit(5 + 2/12, "feet"),
  38995. name: "Front (Demi)",
  38996. image: {
  38997. source: "./media/characters/gen/front-demi.svg",
  38998. extra: 1627/1538,
  38999. bottom: 71/1698
  39000. }
  39001. },
  39002. backDemi: {
  39003. height: math.unit(5 + 2/12, "feet"),
  39004. name: "Back (Demi)",
  39005. image: {
  39006. source: "./media/characters/gen/back-demi.svg",
  39007. extra: 1638/1548,
  39008. bottom: 69/1707
  39009. }
  39010. },
  39011. },
  39012. [
  39013. {
  39014. name: "Normal",
  39015. height: math.unit(5 + 2/12, "feet"),
  39016. default: true
  39017. },
  39018. ]
  39019. ))
  39020. characterMakers.push(() => makeCharacter(
  39021. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39022. {
  39023. frontImp: {
  39024. height: math.unit(1 + 11/12, "feet"),
  39025. name: "Front (Imp)",
  39026. image: {
  39027. source: "./media/characters/max-kobold/front-imp.svg",
  39028. extra: 1238/1134,
  39029. bottom: 81/1319
  39030. }
  39031. },
  39032. backImp: {
  39033. height: math.unit(1 + 11/12, "feet"),
  39034. name: "Back (Imp)",
  39035. image: {
  39036. source: "./media/characters/max-kobold/back-imp.svg",
  39037. extra: 1334/1175,
  39038. bottom: 34/1368
  39039. }
  39040. },
  39041. frontDemi: {
  39042. height: math.unit(5 + 9/12, "feet"),
  39043. name: "Front (Demi)",
  39044. image: {
  39045. source: "./media/characters/max-kobold/front-demi.svg",
  39046. extra: 1715/1685,
  39047. bottom: 54/1769
  39048. }
  39049. },
  39050. backDemi: {
  39051. height: math.unit(5 + 9/12, "feet"),
  39052. name: "Back (Demi)",
  39053. image: {
  39054. source: "./media/characters/max-kobold/back-demi.svg",
  39055. extra: 1752/1729,
  39056. bottom: 41/1793
  39057. }
  39058. },
  39059. handImp: {
  39060. height: math.unit(0.45, "feet"),
  39061. name: "Hand (Imp)",
  39062. image: {
  39063. source: "./media/characters/max-kobold/hand.svg"
  39064. }
  39065. },
  39066. pawImp: {
  39067. height: math.unit(0.46, "feet"),
  39068. name: "Paw (Imp)",
  39069. image: {
  39070. source: "./media/characters/max-kobold/paw.svg"
  39071. }
  39072. },
  39073. handDemi: {
  39074. height: math.unit(0.80, "feet"),
  39075. name: "Hand (Demi)",
  39076. image: {
  39077. source: "./media/characters/max-kobold/hand.svg"
  39078. }
  39079. },
  39080. pawDemi: {
  39081. height: math.unit(1.1, "feet"),
  39082. name: "Paw (Demi)",
  39083. image: {
  39084. source: "./media/characters/max-kobold/paw.svg"
  39085. }
  39086. },
  39087. headImp: {
  39088. height: math.unit(1.33, "feet"),
  39089. name: "Head (Imp)",
  39090. image: {
  39091. source: "./media/characters/max-kobold/head-imp.svg"
  39092. }
  39093. },
  39094. mawImp: {
  39095. height: math.unit(0.75, "feet"),
  39096. name: "Maw (Imp)",
  39097. image: {
  39098. source: "./media/characters/max-kobold/maw-imp.svg"
  39099. }
  39100. },
  39101. mawDemi: {
  39102. height: math.unit(0.42, "feet"),
  39103. name: "Maw (Demi)",
  39104. image: {
  39105. source: "./media/characters/max-kobold/maw-demi.svg"
  39106. }
  39107. },
  39108. },
  39109. [
  39110. {
  39111. name: "Normal",
  39112. height: math.unit(1 + 11/12, "feet"),
  39113. default: true
  39114. },
  39115. ]
  39116. ))
  39117. characterMakers.push(() => makeCharacter(
  39118. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39119. {
  39120. front: {
  39121. height: math.unit(7 + 5/12, "feet"),
  39122. name: "Front",
  39123. image: {
  39124. source: "./media/characters/carbon/front.svg",
  39125. extra: 1754/1689,
  39126. bottom: 65/1819
  39127. }
  39128. },
  39129. back: {
  39130. height: math.unit(7 + 5/12, "feet"),
  39131. name: "Back",
  39132. image: {
  39133. source: "./media/characters/carbon/back.svg",
  39134. extra: 1762/1695,
  39135. bottom: 24/1786
  39136. }
  39137. },
  39138. frontGigantamax: {
  39139. height: math.unit(150, "feet"),
  39140. name: "Front (Gigantamax)",
  39141. image: {
  39142. source: "./media/characters/carbon/front-gigantamax.svg",
  39143. extra: 1826/1669,
  39144. bottom: 59/1885
  39145. }
  39146. },
  39147. backGigantamax: {
  39148. height: math.unit(150, "feet"),
  39149. name: "Back (Gigantamax)",
  39150. image: {
  39151. source: "./media/characters/carbon/back-gigantamax.svg",
  39152. extra: 1796/1653,
  39153. bottom: 53/1849
  39154. }
  39155. },
  39156. maw: {
  39157. height: math.unit(0.48, "feet"),
  39158. name: "Maw",
  39159. image: {
  39160. source: "./media/characters/carbon/maw.svg"
  39161. }
  39162. },
  39163. mawGigantamax: {
  39164. height: math.unit(7.5, "feet"),
  39165. name: "Maw (Gigantamax)",
  39166. image: {
  39167. source: "./media/characters/carbon/maw-gigantamax.svg"
  39168. }
  39169. },
  39170. },
  39171. [
  39172. {
  39173. name: "Normal",
  39174. height: math.unit(7 + 5/12, "feet"),
  39175. default: true
  39176. },
  39177. ]
  39178. ))
  39179. characterMakers.push(() => makeCharacter(
  39180. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39181. {
  39182. front: {
  39183. height: math.unit(6, "feet"),
  39184. name: "Front",
  39185. image: {
  39186. source: "./media/characters/maverick/front.svg",
  39187. extra: 1672/1661,
  39188. bottom: 85/1757
  39189. }
  39190. },
  39191. back: {
  39192. height: math.unit(6, "feet"),
  39193. name: "Back",
  39194. image: {
  39195. source: "./media/characters/maverick/back.svg",
  39196. extra: 1642/1631,
  39197. bottom: 38/1680
  39198. }
  39199. },
  39200. },
  39201. [
  39202. {
  39203. name: "Normal",
  39204. height: math.unit(6, "feet"),
  39205. default: true
  39206. },
  39207. ]
  39208. ))
  39209. characterMakers.push(() => makeCharacter(
  39210. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39211. {
  39212. front: {
  39213. height: math.unit(15, "feet"),
  39214. weight: math.unit(615, "lb"),
  39215. name: "Front",
  39216. image: {
  39217. source: "./media/characters/grockle/front.svg",
  39218. extra: 1535/1427,
  39219. bottom: 56/1591
  39220. }
  39221. },
  39222. },
  39223. [
  39224. {
  39225. name: "Normal",
  39226. height: math.unit(15, "feet"),
  39227. default: true
  39228. },
  39229. {
  39230. name: "Large",
  39231. height: math.unit(150, "feet")
  39232. },
  39233. {
  39234. name: "Macro",
  39235. height: math.unit(1876, "feet")
  39236. },
  39237. {
  39238. name: "Mega Macro",
  39239. height: math.unit(121940, "feet")
  39240. },
  39241. {
  39242. name: "Giga Macro",
  39243. height: math.unit(750, "km")
  39244. },
  39245. {
  39246. name: "Tera Macro",
  39247. height: math.unit(750000, "km")
  39248. },
  39249. {
  39250. name: "Galactic",
  39251. height: math.unit(1.4e5, "km")
  39252. },
  39253. {
  39254. name: "Godlike",
  39255. height: math.unit(9.8e280, "galaxies")
  39256. },
  39257. ]
  39258. ))
  39259. characterMakers.push(() => makeCharacter(
  39260. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39261. {
  39262. front: {
  39263. height: math.unit(11, "meters"),
  39264. weight: math.unit(20, "tonnes"),
  39265. name: "Front",
  39266. image: {
  39267. source: "./media/characters/alistair/front.svg",
  39268. extra: 1265/1009,
  39269. bottom: 93/1358
  39270. }
  39271. },
  39272. },
  39273. [
  39274. {
  39275. name: "Normal",
  39276. height: math.unit(11, "meters"),
  39277. default: true
  39278. },
  39279. ]
  39280. ))
  39281. characterMakers.push(() => makeCharacter(
  39282. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39283. {
  39284. front: {
  39285. height: math.unit(5 + 8/12, "feet"),
  39286. name: "Front",
  39287. image: {
  39288. source: "./media/characters/haruka/front.svg",
  39289. extra: 2012/1952,
  39290. bottom: 0/2012
  39291. }
  39292. },
  39293. },
  39294. [
  39295. {
  39296. name: "Normal",
  39297. height: math.unit(5 + 8/12, "feet"),
  39298. default: true
  39299. },
  39300. ]
  39301. ))
  39302. characterMakers.push(() => makeCharacter(
  39303. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39304. {
  39305. back: {
  39306. height: math.unit(9, "feet"),
  39307. name: "Back",
  39308. image: {
  39309. source: "./media/characters/vivian-sylveon/back.svg",
  39310. extra: 1853/1714,
  39311. bottom: 0/1853
  39312. }
  39313. },
  39314. },
  39315. [
  39316. {
  39317. name: "Normal",
  39318. height: math.unit(9, "feet"),
  39319. default: true
  39320. },
  39321. {
  39322. name: "Macro",
  39323. height: math.unit(500, "feet")
  39324. },
  39325. {
  39326. name: "Megamacro",
  39327. height: math.unit(600, "miles")
  39328. },
  39329. {
  39330. name: "Gigamacro",
  39331. height: math.unit(30000, "miles")
  39332. },
  39333. ]
  39334. ))
  39335. characterMakers.push(() => makeCharacter(
  39336. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39337. {
  39338. anthro: {
  39339. height: math.unit(5 + 10/12, "feet"),
  39340. weight: math.unit(100, "lb"),
  39341. name: "Anthro",
  39342. image: {
  39343. source: "./media/characters/daiki/anthro.svg",
  39344. extra: 1115/1027,
  39345. bottom: 69/1184
  39346. }
  39347. },
  39348. feral: {
  39349. height: math.unit(200, "feet"),
  39350. name: "Feral",
  39351. image: {
  39352. source: "./media/characters/daiki/feral.svg",
  39353. extra: 1256/313,
  39354. bottom: 39/1295
  39355. }
  39356. },
  39357. feralHead: {
  39358. height: math.unit(171, "feet"),
  39359. name: "Feral Head",
  39360. image: {
  39361. source: "./media/characters/daiki/feral-head.svg"
  39362. }
  39363. },
  39364. manaDragon: {
  39365. height: math.unit(170, "meters"),
  39366. name: "Mana-dragon",
  39367. image: {
  39368. source: "./media/characters/daiki/mana-dragon.svg",
  39369. extra: 763/420,
  39370. bottom: 97/860
  39371. }
  39372. },
  39373. },
  39374. [
  39375. {
  39376. name: "Normal",
  39377. height: math.unit(5 + 10/12, "feet"),
  39378. default: true
  39379. },
  39380. ]
  39381. ))
  39382. characterMakers.push(() => makeCharacter(
  39383. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39384. {
  39385. fullyEquippedFront: {
  39386. height: math.unit(3 + 1/12, "feet"),
  39387. weight: math.unit(24, "lb"),
  39388. name: "Fully Equipped (Front)",
  39389. image: {
  39390. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39391. extra: 687/605,
  39392. bottom: 18/705
  39393. }
  39394. },
  39395. fullyEquippedBack: {
  39396. height: math.unit(3 + 1/12, "feet"),
  39397. weight: math.unit(24, "lb"),
  39398. name: "Fully Equipped (Back)",
  39399. image: {
  39400. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39401. extra: 689/590,
  39402. bottom: 18/707
  39403. }
  39404. },
  39405. dailyWear: {
  39406. height: math.unit(3 + 1/12, "feet"),
  39407. weight: math.unit(24, "lb"),
  39408. name: "Daily Wear",
  39409. image: {
  39410. source: "./media/characters/tea-spot/daily-wear.svg",
  39411. extra: 701/620,
  39412. bottom: 21/722
  39413. }
  39414. },
  39415. maidWork: {
  39416. height: math.unit(3 + 1/12, "feet"),
  39417. weight: math.unit(24, "lb"),
  39418. name: "Maid Work",
  39419. image: {
  39420. source: "./media/characters/tea-spot/maid-work.svg",
  39421. extra: 693/609,
  39422. bottom: 15/708
  39423. }
  39424. },
  39425. },
  39426. [
  39427. {
  39428. name: "Normal",
  39429. height: math.unit(3 + 1/12, "feet"),
  39430. default: true
  39431. },
  39432. ]
  39433. ))
  39434. characterMakers.push(() => makeCharacter(
  39435. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39436. {
  39437. front: {
  39438. height: math.unit(175, "cm"),
  39439. weight: math.unit(75, "kg"),
  39440. name: "Front",
  39441. image: {
  39442. source: "./media/characters/chee/front.svg",
  39443. extra: 1796/1740,
  39444. bottom: 40/1836
  39445. }
  39446. },
  39447. },
  39448. [
  39449. {
  39450. name: "Micro-Micro",
  39451. height: math.unit(1, "nm")
  39452. },
  39453. {
  39454. name: "Micro-erst",
  39455. height: math.unit(1, "micrometer")
  39456. },
  39457. {
  39458. name: "Micro-er",
  39459. height: math.unit(1, "cm")
  39460. },
  39461. {
  39462. name: "Normal",
  39463. height: math.unit(175, "cm"),
  39464. default: true
  39465. },
  39466. {
  39467. name: "Macro",
  39468. height: math.unit(100, "m")
  39469. },
  39470. {
  39471. name: "Macro-er",
  39472. height: math.unit(1, "km")
  39473. },
  39474. {
  39475. name: "Macro-erst",
  39476. height: math.unit(10, "km")
  39477. },
  39478. {
  39479. name: "Macro-Macro",
  39480. height: math.unit(100, "km")
  39481. },
  39482. ]
  39483. ))
  39484. characterMakers.push(() => makeCharacter(
  39485. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39486. {
  39487. front: {
  39488. height: math.unit(11 + 9/12, "feet"),
  39489. weight: math.unit(935, "lb"),
  39490. name: "Front",
  39491. image: {
  39492. source: "./media/characters/kingsley/front.svg",
  39493. extra: 1803/1674,
  39494. bottom: 127/1930
  39495. }
  39496. },
  39497. frontNude: {
  39498. height: math.unit(11 + 9/12, "feet"),
  39499. weight: math.unit(935, "lb"),
  39500. name: "Front (Nude)",
  39501. image: {
  39502. source: "./media/characters/kingsley/front-nude.svg",
  39503. extra: 1803/1674,
  39504. bottom: 127/1930
  39505. }
  39506. },
  39507. },
  39508. [
  39509. {
  39510. name: "Normal",
  39511. height: math.unit(11 + 9/12, "feet"),
  39512. default: true
  39513. },
  39514. ]
  39515. ))
  39516. characterMakers.push(() => makeCharacter(
  39517. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39518. {
  39519. side: {
  39520. height: math.unit(9, "feet"),
  39521. name: "Side",
  39522. image: {
  39523. source: "./media/characters/rymel/side.svg",
  39524. extra: 792/469,
  39525. bottom: 121/913
  39526. }
  39527. },
  39528. maw: {
  39529. height: math.unit(2.4, "meters"),
  39530. name: "Maw",
  39531. image: {
  39532. source: "./media/characters/rymel/maw.svg"
  39533. }
  39534. },
  39535. },
  39536. [
  39537. {
  39538. name: "House Drake",
  39539. height: math.unit(2, "feet")
  39540. },
  39541. {
  39542. name: "Reduced",
  39543. height: math.unit(4.5, "feet")
  39544. },
  39545. {
  39546. name: "Normal",
  39547. height: math.unit(9, "feet"),
  39548. default: true
  39549. },
  39550. ]
  39551. ))
  39552. characterMakers.push(() => makeCharacter(
  39553. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39554. {
  39555. front: {
  39556. height: math.unit(1.74, "meters"),
  39557. weight: math.unit(55, "kg"),
  39558. name: "Front",
  39559. image: {
  39560. source: "./media/characters/rubus/front.svg",
  39561. extra: 1894/1742,
  39562. bottom: 44/1938
  39563. }
  39564. },
  39565. },
  39566. [
  39567. {
  39568. name: "Normal",
  39569. height: math.unit(1.74, "meters"),
  39570. default: true
  39571. },
  39572. ]
  39573. ))
  39574. characterMakers.push(() => makeCharacter(
  39575. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39576. {
  39577. front: {
  39578. height: math.unit(5 + 2/12, "feet"),
  39579. weight: math.unit(112, "lb"),
  39580. name: "Front",
  39581. image: {
  39582. source: "./media/characters/cassie-kingston/front.svg",
  39583. extra: 1438/1390,
  39584. bottom: 47/1485
  39585. }
  39586. },
  39587. },
  39588. [
  39589. {
  39590. name: "Normal",
  39591. height: math.unit(5 + 2/12, "feet"),
  39592. default: true
  39593. },
  39594. {
  39595. name: "Macro",
  39596. height: math.unit(128, "feet")
  39597. },
  39598. {
  39599. name: "Megamacro",
  39600. height: math.unit(2.56, "miles")
  39601. },
  39602. ]
  39603. ))
  39604. characterMakers.push(() => makeCharacter(
  39605. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39606. {
  39607. front: {
  39608. height: math.unit(7, "feet"),
  39609. name: "Front",
  39610. image: {
  39611. source: "./media/characters/fox/front.svg",
  39612. extra: 1798/1703,
  39613. bottom: 55/1853
  39614. }
  39615. },
  39616. back: {
  39617. height: math.unit(7, "feet"),
  39618. name: "Back",
  39619. image: {
  39620. source: "./media/characters/fox/back.svg",
  39621. extra: 1748/1649,
  39622. bottom: 32/1780
  39623. }
  39624. },
  39625. head: {
  39626. height: math.unit(1.95, "feet"),
  39627. name: "Head",
  39628. image: {
  39629. source: "./media/characters/fox/head.svg"
  39630. }
  39631. },
  39632. dick: {
  39633. height: math.unit(1.33, "feet"),
  39634. name: "Dick",
  39635. image: {
  39636. source: "./media/characters/fox/dick.svg"
  39637. }
  39638. },
  39639. foot: {
  39640. height: math.unit(1, "feet"),
  39641. name: "Foot",
  39642. image: {
  39643. source: "./media/characters/fox/foot.svg"
  39644. }
  39645. },
  39646. paw: {
  39647. height: math.unit(0.92, "feet"),
  39648. name: "Paw",
  39649. image: {
  39650. source: "./media/characters/fox/paw.svg"
  39651. }
  39652. },
  39653. },
  39654. [
  39655. {
  39656. name: "Small",
  39657. height: math.unit(3, "inches")
  39658. },
  39659. {
  39660. name: "\"Realistic\"",
  39661. height: math.unit(7, "feet")
  39662. },
  39663. {
  39664. name: "Normal",
  39665. height: math.unit(150, "feet"),
  39666. default: true
  39667. },
  39668. {
  39669. name: "BIG",
  39670. height: math.unit(1200, "feet")
  39671. },
  39672. {
  39673. name: "👀",
  39674. height: math.unit(5, "miles")
  39675. },
  39676. {
  39677. name: "👀👀👀",
  39678. height: math.unit(64, "miles")
  39679. },
  39680. ]
  39681. ))
  39682. characterMakers.push(() => makeCharacter(
  39683. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39684. {
  39685. front: {
  39686. height: math.unit(625, "feet"),
  39687. name: "Front",
  39688. image: {
  39689. source: "./media/characters/asonja-rossa/front.svg",
  39690. extra: 1833/1686,
  39691. bottom: 24/1857
  39692. }
  39693. },
  39694. back: {
  39695. height: math.unit(625, "feet"),
  39696. name: "Back",
  39697. image: {
  39698. source: "./media/characters/asonja-rossa/back.svg",
  39699. extra: 1852/1753,
  39700. bottom: 26/1878
  39701. }
  39702. },
  39703. },
  39704. [
  39705. {
  39706. name: "Macro",
  39707. height: math.unit(625, "feet"),
  39708. default: true
  39709. },
  39710. ]
  39711. ))
  39712. characterMakers.push(() => makeCharacter(
  39713. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39714. {
  39715. side: {
  39716. height: math.unit(8, "feet"),
  39717. name: "Side",
  39718. image: {
  39719. source: "./media/characters/rezukii/side.svg",
  39720. extra: 979/542,
  39721. bottom: 87/1066
  39722. }
  39723. },
  39724. sitting: {
  39725. height: math.unit(14.6, "feet"),
  39726. name: "Sitting",
  39727. image: {
  39728. source: "./media/characters/rezukii/sitting.svg",
  39729. extra: 1023/813,
  39730. bottom: 45/1068
  39731. }
  39732. },
  39733. },
  39734. [
  39735. {
  39736. name: "Tiny",
  39737. height: math.unit(2, "feet")
  39738. },
  39739. {
  39740. name: "Smol",
  39741. height: math.unit(4, "feet")
  39742. },
  39743. {
  39744. name: "Normal",
  39745. height: math.unit(8, "feet"),
  39746. default: true
  39747. },
  39748. {
  39749. name: "Big",
  39750. height: math.unit(12, "feet")
  39751. },
  39752. {
  39753. name: "Macro",
  39754. height: math.unit(30, "feet")
  39755. },
  39756. ]
  39757. ))
  39758. characterMakers.push(() => makeCharacter(
  39759. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39760. {
  39761. front: {
  39762. height: math.unit(14, "feet"),
  39763. weight: math.unit(9.5, "tonnes"),
  39764. name: "Front",
  39765. image: {
  39766. source: "./media/characters/dawnheart/front.svg",
  39767. extra: 2792/2675,
  39768. bottom: 64/2856
  39769. }
  39770. },
  39771. },
  39772. [
  39773. {
  39774. name: "Normal",
  39775. height: math.unit(14, "feet"),
  39776. default: true
  39777. },
  39778. ]
  39779. ))
  39780. characterMakers.push(() => makeCharacter(
  39781. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39782. {
  39783. front: {
  39784. height: math.unit(1.7, "m"),
  39785. name: "Front",
  39786. image: {
  39787. source: "./media/characters/gladi/front.svg",
  39788. extra: 1460/1362,
  39789. bottom: 19/1479
  39790. }
  39791. },
  39792. back: {
  39793. height: math.unit(1.7, "m"),
  39794. name: "Back",
  39795. image: {
  39796. source: "./media/characters/gladi/back.svg",
  39797. extra: 1459/1357,
  39798. bottom: 12/1471
  39799. }
  39800. },
  39801. feral: {
  39802. height: math.unit(2.05, "m"),
  39803. name: "Feral",
  39804. image: {
  39805. source: "./media/characters/gladi/feral.svg",
  39806. extra: 821/557,
  39807. bottom: 91/912
  39808. }
  39809. },
  39810. },
  39811. [
  39812. {
  39813. name: "Shortest",
  39814. height: math.unit(70, "cm")
  39815. },
  39816. {
  39817. name: "Normal",
  39818. height: math.unit(1.7, "m")
  39819. },
  39820. {
  39821. name: "Macro",
  39822. height: math.unit(10, "m"),
  39823. default: true
  39824. },
  39825. {
  39826. name: "Tallest",
  39827. height: math.unit(200, "m")
  39828. },
  39829. ]
  39830. ))
  39831. characterMakers.push(() => makeCharacter(
  39832. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39833. {
  39834. front: {
  39835. height: math.unit(5 + 7/12, "feet"),
  39836. weight: math.unit(2, "tons"),
  39837. name: "Front",
  39838. image: {
  39839. source: "./media/characters/erdno/front.svg",
  39840. extra: 1234/1129,
  39841. bottom: 35/1269
  39842. }
  39843. },
  39844. angled: {
  39845. height: math.unit(5 + 7/12, "feet"),
  39846. weight: math.unit(2, "tons"),
  39847. name: "Angled",
  39848. image: {
  39849. source: "./media/characters/erdno/angled.svg",
  39850. extra: 1185/1139,
  39851. bottom: 36/1221
  39852. }
  39853. },
  39854. side: {
  39855. height: math.unit(5 + 7/12, "feet"),
  39856. weight: math.unit(2, "tons"),
  39857. name: "Side",
  39858. image: {
  39859. source: "./media/characters/erdno/side.svg",
  39860. extra: 1191/1144,
  39861. bottom: 40/1231
  39862. }
  39863. },
  39864. back: {
  39865. height: math.unit(5 + 7/12, "feet"),
  39866. weight: math.unit(2, "tons"),
  39867. name: "Back",
  39868. image: {
  39869. source: "./media/characters/erdno/back.svg",
  39870. extra: 1202/1146,
  39871. bottom: 17/1219
  39872. }
  39873. },
  39874. frontNsfw: {
  39875. height: math.unit(5 + 7/12, "feet"),
  39876. weight: math.unit(2, "tons"),
  39877. name: "Front (NSFW)",
  39878. image: {
  39879. source: "./media/characters/erdno/front-nsfw.svg",
  39880. extra: 1234/1129,
  39881. bottom: 35/1269
  39882. }
  39883. },
  39884. angledNsfw: {
  39885. height: math.unit(5 + 7/12, "feet"),
  39886. weight: math.unit(2, "tons"),
  39887. name: "Angled (NSFW)",
  39888. image: {
  39889. source: "./media/characters/erdno/angled-nsfw.svg",
  39890. extra: 1185/1139,
  39891. bottom: 36/1221
  39892. }
  39893. },
  39894. sideNsfw: {
  39895. height: math.unit(5 + 7/12, "feet"),
  39896. weight: math.unit(2, "tons"),
  39897. name: "Side (NSFW)",
  39898. image: {
  39899. source: "./media/characters/erdno/side-nsfw.svg",
  39900. extra: 1191/1144,
  39901. bottom: 40/1231
  39902. }
  39903. },
  39904. backNsfw: {
  39905. height: math.unit(5 + 7/12, "feet"),
  39906. weight: math.unit(2, "tons"),
  39907. name: "Back (NSFW)",
  39908. image: {
  39909. source: "./media/characters/erdno/back-nsfw.svg",
  39910. extra: 1202/1146,
  39911. bottom: 17/1219
  39912. }
  39913. },
  39914. frontHyper: {
  39915. height: math.unit(5 + 7/12, "feet"),
  39916. weight: math.unit(2, "tons"),
  39917. name: "Front (Hyper)",
  39918. image: {
  39919. source: "./media/characters/erdno/front-hyper.svg",
  39920. extra: 1298/1136,
  39921. bottom: 35/1333
  39922. }
  39923. },
  39924. },
  39925. [
  39926. {
  39927. name: "Normal",
  39928. height: math.unit(5 + 7/12, "feet"),
  39929. default: true
  39930. },
  39931. {
  39932. name: "Big",
  39933. height: math.unit(5.7, "meters")
  39934. },
  39935. {
  39936. name: "Macro",
  39937. height: math.unit(5.7, "kilometers")
  39938. },
  39939. {
  39940. name: "Megamacro",
  39941. height: math.unit(5.7, "earths")
  39942. },
  39943. ]
  39944. ))
  39945. characterMakers.push(() => makeCharacter(
  39946. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39947. {
  39948. front: {
  39949. height: math.unit(5 + 10/12, "feet"),
  39950. weight: math.unit(150, "lb"),
  39951. name: "Front",
  39952. image: {
  39953. source: "./media/characters/jamie/front.svg",
  39954. extra: 1908/1768,
  39955. bottom: 19/1927
  39956. }
  39957. },
  39958. },
  39959. [
  39960. {
  39961. name: "Minimum",
  39962. height: math.unit(2, "cm")
  39963. },
  39964. {
  39965. name: "Micro",
  39966. height: math.unit(3, "inches")
  39967. },
  39968. {
  39969. name: "Normal",
  39970. height: math.unit(5 + 10/12, "feet"),
  39971. default: true
  39972. },
  39973. {
  39974. name: "Macro",
  39975. height: math.unit(150, "feet")
  39976. },
  39977. {
  39978. name: "Megamacro",
  39979. height: math.unit(10000, "m")
  39980. },
  39981. ]
  39982. ))
  39983. characterMakers.push(() => makeCharacter(
  39984. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39985. {
  39986. front: {
  39987. height: math.unit(2, "meters"),
  39988. weight: math.unit(100, "kg"),
  39989. name: "Front",
  39990. image: {
  39991. source: "./media/characters/shiron/front.svg",
  39992. extra: 2103/1985,
  39993. bottom: 98/2201
  39994. }
  39995. },
  39996. back: {
  39997. height: math.unit(2, "meters"),
  39998. weight: math.unit(100, "kg"),
  39999. name: "Back",
  40000. image: {
  40001. source: "./media/characters/shiron/back.svg",
  40002. extra: 2110/2015,
  40003. bottom: 89/2199
  40004. }
  40005. },
  40006. hand: {
  40007. height: math.unit(0.96, "feet"),
  40008. name: "Hand",
  40009. image: {
  40010. source: "./media/characters/shiron/hand.svg"
  40011. }
  40012. },
  40013. foot: {
  40014. height: math.unit(1.464, "feet"),
  40015. name: "Foot",
  40016. image: {
  40017. source: "./media/characters/shiron/foot.svg"
  40018. }
  40019. },
  40020. },
  40021. [
  40022. {
  40023. name: "Normal",
  40024. height: math.unit(2, "meters")
  40025. },
  40026. {
  40027. name: "Macro",
  40028. height: math.unit(500, "meters"),
  40029. default: true
  40030. },
  40031. {
  40032. name: "Megamacro",
  40033. height: math.unit(20, "km")
  40034. },
  40035. ]
  40036. ))
  40037. characterMakers.push(() => makeCharacter(
  40038. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40039. {
  40040. front: {
  40041. height: math.unit(6, "feet"),
  40042. name: "Front",
  40043. image: {
  40044. source: "./media/characters/sam/front.svg",
  40045. extra: 849/826,
  40046. bottom: 19/868
  40047. }
  40048. },
  40049. },
  40050. [
  40051. {
  40052. name: "Normal",
  40053. height: math.unit(6, "feet"),
  40054. default: true
  40055. },
  40056. ]
  40057. ))
  40058. characterMakers.push(() => makeCharacter(
  40059. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40060. {
  40061. front: {
  40062. height: math.unit(8 + 4/12, "feet"),
  40063. weight: math.unit(122, "kg"),
  40064. name: "Front",
  40065. image: {
  40066. source: "./media/characters/namori-kurogawa/front.svg",
  40067. extra: 1894/1576,
  40068. bottom: 34/1928
  40069. }
  40070. },
  40071. },
  40072. [
  40073. {
  40074. name: "Normal",
  40075. height: math.unit(8 + 4/12, "feet"),
  40076. default: true
  40077. },
  40078. ]
  40079. ))
  40080. characterMakers.push(() => makeCharacter(
  40081. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40082. {
  40083. front: {
  40084. height: math.unit(9, "feet"),
  40085. weight: math.unit(621, "lb"),
  40086. name: "Front",
  40087. image: {
  40088. source: "./media/characters/unmru/front.svg",
  40089. extra: 1853/1747,
  40090. bottom: 73/1926
  40091. }
  40092. },
  40093. side: {
  40094. height: math.unit(9, "feet"),
  40095. weight: math.unit(621, "lb"),
  40096. name: "Side",
  40097. image: {
  40098. source: "./media/characters/unmru/side.svg",
  40099. extra: 1781/1671,
  40100. bottom: 127/1908
  40101. }
  40102. },
  40103. back: {
  40104. height: math.unit(9, "feet"),
  40105. weight: math.unit(621, "lb"),
  40106. name: "Back",
  40107. image: {
  40108. source: "./media/characters/unmru/back.svg",
  40109. extra: 1894/1765,
  40110. bottom: 75/1969
  40111. }
  40112. },
  40113. dick: {
  40114. height: math.unit(3, "feet"),
  40115. weight: math.unit(35, "lb"),
  40116. name: "Dick",
  40117. image: {
  40118. source: "./media/characters/unmru/dick.svg"
  40119. }
  40120. },
  40121. },
  40122. [
  40123. {
  40124. name: "Normal",
  40125. height: math.unit(9, "feet")
  40126. },
  40127. {
  40128. name: "Natural",
  40129. height: math.unit(27, "feet"),
  40130. default: true
  40131. },
  40132. {
  40133. name: "Giant",
  40134. height: math.unit(90, "feet")
  40135. },
  40136. {
  40137. name: "Kaiju",
  40138. height: math.unit(270, "feet")
  40139. },
  40140. {
  40141. name: "Macro",
  40142. height: math.unit(900, "feet")
  40143. },
  40144. {
  40145. name: "Macro+",
  40146. height: math.unit(2700, "feet")
  40147. },
  40148. {
  40149. name: "Megamacro",
  40150. height: math.unit(9000, "feet")
  40151. },
  40152. {
  40153. name: "City-Crushing",
  40154. height: math.unit(27000, "feet")
  40155. },
  40156. {
  40157. name: "Mountain-Mashing",
  40158. height: math.unit(90000, "feet")
  40159. },
  40160. {
  40161. name: "Earth-Eclipsing",
  40162. height: math.unit(2.7e8, "feet")
  40163. },
  40164. {
  40165. name: "Sol-Swallowing",
  40166. height: math.unit(9e10, "feet")
  40167. },
  40168. {
  40169. name: "Majoris-Munching",
  40170. height: math.unit(2.7e13, "feet")
  40171. },
  40172. ]
  40173. ))
  40174. characterMakers.push(() => makeCharacter(
  40175. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40176. {
  40177. front: {
  40178. height: math.unit(1, "inch"),
  40179. name: "Front",
  40180. image: {
  40181. source: "./media/characters/squeaks-mouse/front.svg",
  40182. extra: 352/308,
  40183. bottom: 25/377
  40184. }
  40185. },
  40186. },
  40187. [
  40188. {
  40189. name: "Micro",
  40190. height: math.unit(1, "inch"),
  40191. default: true
  40192. },
  40193. ]
  40194. ))
  40195. characterMakers.push(() => makeCharacter(
  40196. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40197. {
  40198. side: {
  40199. height: math.unit(35, "feet"),
  40200. name: "Side",
  40201. image: {
  40202. source: "./media/characters/sayko/side.svg",
  40203. extra: 1697/1021,
  40204. bottom: 82/1779
  40205. }
  40206. },
  40207. head: {
  40208. height: math.unit(16, "feet"),
  40209. name: "Head",
  40210. image: {
  40211. source: "./media/characters/sayko/head.svg"
  40212. }
  40213. },
  40214. forepaw: {
  40215. height: math.unit(7.85, "feet"),
  40216. name: "Forepaw",
  40217. image: {
  40218. source: "./media/characters/sayko/forepaw.svg"
  40219. }
  40220. },
  40221. hindpaw: {
  40222. height: math.unit(8.8, "feet"),
  40223. name: "Hindpaw",
  40224. image: {
  40225. source: "./media/characters/sayko/hindpaw.svg"
  40226. }
  40227. },
  40228. },
  40229. [
  40230. {
  40231. name: "Normal",
  40232. height: math.unit(35, "feet"),
  40233. default: true
  40234. },
  40235. {
  40236. name: "Colossus",
  40237. height: math.unit(100, "meters")
  40238. },
  40239. {
  40240. name: "\"Small\" Deity",
  40241. height: math.unit(1, "km")
  40242. },
  40243. {
  40244. name: "\"Large\" Deity",
  40245. height: math.unit(15, "km")
  40246. },
  40247. ]
  40248. ))
  40249. characterMakers.push(() => makeCharacter(
  40250. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40251. {
  40252. front: {
  40253. height: math.unit(6, "feet"),
  40254. weight: math.unit(250, "lb"),
  40255. name: "Front",
  40256. image: {
  40257. source: "./media/characters/mukiro/front.svg",
  40258. extra: 1368/1310,
  40259. bottom: 34/1402
  40260. }
  40261. },
  40262. },
  40263. [
  40264. {
  40265. name: "Normal",
  40266. height: math.unit(6, "feet"),
  40267. default: true
  40268. },
  40269. ]
  40270. ))
  40271. characterMakers.push(() => makeCharacter(
  40272. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40273. {
  40274. front: {
  40275. height: math.unit(12 + 4/12, "feet"),
  40276. name: "Front",
  40277. image: {
  40278. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40279. extra: 1346/1311,
  40280. bottom: 65/1411
  40281. }
  40282. },
  40283. },
  40284. [
  40285. {
  40286. name: "Base",
  40287. height: math.unit(12 + 4/12, "feet"),
  40288. default: true
  40289. },
  40290. {
  40291. name: "Macro",
  40292. height: math.unit(150, "feet")
  40293. },
  40294. {
  40295. name: "Mega",
  40296. height: math.unit(2, "miles")
  40297. },
  40298. {
  40299. name: "Demi God",
  40300. height: math.unit(4, "AU")
  40301. },
  40302. {
  40303. name: "God Size",
  40304. height: math.unit(1, "universe")
  40305. },
  40306. ]
  40307. ))
  40308. characterMakers.push(() => makeCharacter(
  40309. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40310. {
  40311. front: {
  40312. height: math.unit(3 + 3/12, "feet"),
  40313. weight: math.unit(88, "lb"),
  40314. name: "Front",
  40315. image: {
  40316. source: "./media/characters/trey/front.svg",
  40317. extra: 1815/1509,
  40318. bottom: 60/1875
  40319. }
  40320. },
  40321. },
  40322. [
  40323. {
  40324. name: "Normal",
  40325. height: math.unit(3 + 3/12, "feet"),
  40326. default: true
  40327. },
  40328. ]
  40329. ))
  40330. characterMakers.push(() => makeCharacter(
  40331. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40332. {
  40333. front: {
  40334. height: math.unit(4, "meters"),
  40335. name: "Front",
  40336. image: {
  40337. source: "./media/characters/adelonda/front.svg",
  40338. extra: 1077/982,
  40339. bottom: 39/1116
  40340. }
  40341. },
  40342. back: {
  40343. height: math.unit(4, "meters"),
  40344. name: "Back",
  40345. image: {
  40346. source: "./media/characters/adelonda/back.svg",
  40347. extra: 1105/1003,
  40348. bottom: 25/1130
  40349. }
  40350. },
  40351. feral: {
  40352. height: math.unit(40/1.5, "meters"),
  40353. name: "Feral",
  40354. image: {
  40355. source: "./media/characters/adelonda/feral.svg",
  40356. extra: 597/271,
  40357. bottom: 387/984
  40358. }
  40359. },
  40360. },
  40361. [
  40362. {
  40363. name: "Normal",
  40364. height: math.unit(4, "meters"),
  40365. default: true
  40366. },
  40367. ]
  40368. ))
  40369. characterMakers.push(() => makeCharacter(
  40370. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40371. {
  40372. front: {
  40373. height: math.unit(8 + 4/12, "feet"),
  40374. weight: math.unit(670, "lb"),
  40375. name: "Front",
  40376. image: {
  40377. source: "./media/characters/acadiel/front.svg",
  40378. extra: 1901/1595,
  40379. bottom: 142/2043
  40380. }
  40381. },
  40382. },
  40383. [
  40384. {
  40385. name: "Normal",
  40386. height: math.unit(8 + 4/12, "feet"),
  40387. default: true
  40388. },
  40389. {
  40390. name: "Macro",
  40391. height: math.unit(200, "feet")
  40392. },
  40393. ]
  40394. ))
  40395. characterMakers.push(() => makeCharacter(
  40396. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40397. {
  40398. front: {
  40399. height: math.unit(6 + 2/12, "feet"),
  40400. weight: math.unit(185, "lb"),
  40401. name: "Front",
  40402. image: {
  40403. source: "./media/characters/kayne-ein/front.svg",
  40404. extra: 1780/1560,
  40405. bottom: 81/1861
  40406. }
  40407. },
  40408. },
  40409. [
  40410. {
  40411. name: "Normal",
  40412. height: math.unit(6 + 2/12, "feet"),
  40413. default: true
  40414. },
  40415. {
  40416. name: "Transformation Stage",
  40417. height: math.unit(15, "feet")
  40418. },
  40419. {
  40420. name: "Macro",
  40421. height: math.unit(150, "feet")
  40422. },
  40423. {
  40424. name: "Earth's Shadow",
  40425. height: math.unit(6200, "miles")
  40426. },
  40427. {
  40428. name: "Universal Demon",
  40429. height: math.unit(28e9, "parsecs")
  40430. },
  40431. {
  40432. name: "Multiverse God",
  40433. height: math.unit(3, "multiverses")
  40434. },
  40435. ]
  40436. ))
  40437. characterMakers.push(() => makeCharacter(
  40438. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40439. {
  40440. front: {
  40441. height: math.unit(5 + 5/12, "feet"),
  40442. name: "Front",
  40443. image: {
  40444. source: "./media/characters/fawn/front.svg",
  40445. extra: 1873/1731,
  40446. bottom: 95/1968
  40447. }
  40448. },
  40449. back: {
  40450. height: math.unit(5 + 5/12, "feet"),
  40451. name: "Back",
  40452. image: {
  40453. source: "./media/characters/fawn/back.svg",
  40454. extra: 1813/1700,
  40455. bottom: 14/1827
  40456. }
  40457. },
  40458. hoof: {
  40459. height: math.unit(1.45, "feet"),
  40460. name: "Hoof",
  40461. image: {
  40462. source: "./media/characters/fawn/hoof.svg"
  40463. }
  40464. },
  40465. },
  40466. [
  40467. {
  40468. name: "Normal",
  40469. height: math.unit(5 + 5/12, "feet"),
  40470. default: true
  40471. },
  40472. ]
  40473. ))
  40474. characterMakers.push(() => makeCharacter(
  40475. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40476. {
  40477. front: {
  40478. height: math.unit(2 + 5/12, "feet"),
  40479. name: "Front",
  40480. image: {
  40481. source: "./media/characters/orion/front.svg",
  40482. extra: 1366/1304,
  40483. bottom: 43/1409
  40484. }
  40485. },
  40486. paw: {
  40487. height: math.unit(0.52, "feet"),
  40488. name: "Paw",
  40489. image: {
  40490. source: "./media/characters/orion/paw.svg"
  40491. }
  40492. },
  40493. },
  40494. [
  40495. {
  40496. name: "Normal",
  40497. height: math.unit(2 + 5/12, "feet"),
  40498. default: true
  40499. },
  40500. ]
  40501. ))
  40502. characterMakers.push(() => makeCharacter(
  40503. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40504. {
  40505. front: {
  40506. height: math.unit(5 + 10/12, "feet"),
  40507. name: "Front",
  40508. image: {
  40509. source: "./media/characters/vera/front.svg",
  40510. extra: 1680/1575,
  40511. bottom: 49/1729
  40512. }
  40513. },
  40514. back: {
  40515. height: math.unit(5 + 10/12, "feet"),
  40516. name: "Back",
  40517. image: {
  40518. source: "./media/characters/vera/back.svg",
  40519. extra: 1700/1588,
  40520. bottom: 18/1718
  40521. }
  40522. },
  40523. arcanine: {
  40524. height: math.unit(6 + 8/12, "feet"),
  40525. name: "Arcanine",
  40526. image: {
  40527. source: "./media/characters/vera/arcanine.svg",
  40528. extra: 1590/1511,
  40529. bottom: 71/1661
  40530. }
  40531. },
  40532. maw: {
  40533. height: math.unit(0.82, "feet"),
  40534. name: "Maw",
  40535. image: {
  40536. source: "./media/characters/vera/maw.svg"
  40537. }
  40538. },
  40539. mawArcanine: {
  40540. height: math.unit(0.97, "feet"),
  40541. name: "Maw (Arcanine)",
  40542. image: {
  40543. source: "./media/characters/vera/maw-arcanine.svg"
  40544. }
  40545. },
  40546. paw: {
  40547. height: math.unit(0.75, "feet"),
  40548. name: "Paw",
  40549. image: {
  40550. source: "./media/characters/vera/paw.svg"
  40551. }
  40552. },
  40553. pawprint: {
  40554. height: math.unit(0.52, "feet"),
  40555. name: "Pawprint",
  40556. image: {
  40557. source: "./media/characters/vera/pawprint.svg"
  40558. }
  40559. },
  40560. },
  40561. [
  40562. {
  40563. name: "Normal",
  40564. height: math.unit(5 + 10/12, "feet"),
  40565. default: true
  40566. },
  40567. {
  40568. name: "Macro",
  40569. height: math.unit(75, "feet")
  40570. },
  40571. ]
  40572. ))
  40573. characterMakers.push(() => makeCharacter(
  40574. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40575. {
  40576. front: {
  40577. height: math.unit(4, "feet"),
  40578. weight: math.unit(40, "lb"),
  40579. name: "Front",
  40580. image: {
  40581. source: "./media/characters/orvan-rabbit/front.svg",
  40582. extra: 1896/1642,
  40583. bottom: 29/1925
  40584. }
  40585. },
  40586. },
  40587. [
  40588. {
  40589. name: "Normal",
  40590. height: math.unit(4, "feet"),
  40591. default: true
  40592. },
  40593. ]
  40594. ))
  40595. characterMakers.push(() => makeCharacter(
  40596. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40597. {
  40598. front: {
  40599. height: math.unit(6, "feet"),
  40600. weight: math.unit(168, "lb"),
  40601. name: "Front",
  40602. image: {
  40603. source: "./media/characters/lisa/front.svg",
  40604. extra: 2065/1867,
  40605. bottom: 46/2111
  40606. }
  40607. },
  40608. back: {
  40609. height: math.unit(6, "feet"),
  40610. weight: math.unit(168, "lb"),
  40611. name: "Back",
  40612. image: {
  40613. source: "./media/characters/lisa/back.svg",
  40614. extra: 1982/1838,
  40615. bottom: 29/2011
  40616. }
  40617. },
  40618. maw: {
  40619. height: math.unit(0.81, "feet"),
  40620. name: "Maw",
  40621. image: {
  40622. source: "./media/characters/lisa/maw.svg"
  40623. }
  40624. },
  40625. paw: {
  40626. height: math.unit(0.9, "feet"),
  40627. name: "Paw",
  40628. image: {
  40629. source: "./media/characters/lisa/paw.svg"
  40630. }
  40631. },
  40632. caribousune: {
  40633. height: math.unit(7 + 2/12, "feet"),
  40634. weight: math.unit(268, "lb"),
  40635. name: "Caribousune",
  40636. image: {
  40637. source: "./media/characters/lisa/caribousune.svg",
  40638. extra: 1843/1633,
  40639. bottom: 29/1872
  40640. }
  40641. },
  40642. frontCaribousune: {
  40643. height: math.unit(7 + 2/12, "feet"),
  40644. weight: math.unit(268, "lb"),
  40645. name: "Front (Caribousune)",
  40646. image: {
  40647. source: "./media/characters/lisa/front-caribousune.svg",
  40648. extra: 1818/1638,
  40649. bottom: 52/1870
  40650. }
  40651. },
  40652. sideCaribousune: {
  40653. height: math.unit(7 + 2/12, "feet"),
  40654. weight: math.unit(268, "lb"),
  40655. name: "Side (Caribousune)",
  40656. image: {
  40657. source: "./media/characters/lisa/side-caribousune.svg",
  40658. extra: 1851/1635,
  40659. bottom: 16/1867
  40660. }
  40661. },
  40662. backCaribousune: {
  40663. height: math.unit(7 + 2/12, "feet"),
  40664. weight: math.unit(268, "lb"),
  40665. name: "Back (Caribousune)",
  40666. image: {
  40667. source: "./media/characters/lisa/back-caribousune.svg",
  40668. extra: 1801/1604,
  40669. bottom: 44/1845
  40670. }
  40671. },
  40672. caribou: {
  40673. height: math.unit(7 + 2/12, "feet"),
  40674. weight: math.unit(268, "lb"),
  40675. name: "Caribou",
  40676. image: {
  40677. source: "./media/characters/lisa/caribou.svg",
  40678. extra: 1843/1633,
  40679. bottom: 29/1872
  40680. }
  40681. },
  40682. frontCaribou: {
  40683. height: math.unit(7 + 2/12, "feet"),
  40684. weight: math.unit(268, "lb"),
  40685. name: "Front (Caribou)",
  40686. image: {
  40687. source: "./media/characters/lisa/front-caribou.svg",
  40688. extra: 1818/1638,
  40689. bottom: 52/1870
  40690. }
  40691. },
  40692. sideCaribou: {
  40693. height: math.unit(7 + 2/12, "feet"),
  40694. weight: math.unit(268, "lb"),
  40695. name: "Side (Caribou)",
  40696. image: {
  40697. source: "./media/characters/lisa/side-caribou.svg",
  40698. extra: 1851/1635,
  40699. bottom: 16/1867
  40700. }
  40701. },
  40702. backCaribou: {
  40703. height: math.unit(7 + 2/12, "feet"),
  40704. weight: math.unit(268, "lb"),
  40705. name: "Back (Caribou)",
  40706. image: {
  40707. source: "./media/characters/lisa/back-caribou.svg",
  40708. extra: 1801/1604,
  40709. bottom: 44/1845
  40710. }
  40711. },
  40712. mawCaribou: {
  40713. height: math.unit(1.45, "feet"),
  40714. name: "Maw (Caribou)",
  40715. image: {
  40716. source: "./media/characters/lisa/maw-caribou.svg"
  40717. }
  40718. },
  40719. mawCaribousune: {
  40720. height: math.unit(1.45, "feet"),
  40721. name: "Maw (Caribousune)",
  40722. image: {
  40723. source: "./media/characters/lisa/maw-caribousune.svg"
  40724. }
  40725. },
  40726. pawCaribousune: {
  40727. height: math.unit(1.61, "feet"),
  40728. name: "Paw (Caribou)",
  40729. image: {
  40730. source: "./media/characters/lisa/paw-caribousune.svg"
  40731. }
  40732. },
  40733. },
  40734. [
  40735. {
  40736. name: "Normal",
  40737. height: math.unit(6, "feet")
  40738. },
  40739. {
  40740. name: "God Size",
  40741. height: math.unit(72, "feet"),
  40742. default: true
  40743. },
  40744. {
  40745. name: "Towering",
  40746. height: math.unit(288, "feet")
  40747. },
  40748. {
  40749. name: "City Size",
  40750. height: math.unit(48384, "feet")
  40751. },
  40752. {
  40753. name: "Continental",
  40754. height: math.unit(4200, "miles")
  40755. },
  40756. {
  40757. name: "Planet Eater",
  40758. height: math.unit(42, "earths")
  40759. },
  40760. {
  40761. name: "Star Swallower",
  40762. height: math.unit(42, "solarradii")
  40763. },
  40764. {
  40765. name: "System Swallower",
  40766. height: math.unit(84000, "AU")
  40767. },
  40768. {
  40769. name: "Galaxy Gobbler",
  40770. height: math.unit(42, "galaxies")
  40771. },
  40772. {
  40773. name: "Universe Devourer",
  40774. height: math.unit(42, "universes")
  40775. },
  40776. {
  40777. name: "Multiverse Muncher",
  40778. height: math.unit(42, "multiverses")
  40779. },
  40780. ]
  40781. ))
  40782. characterMakers.push(() => makeCharacter(
  40783. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40784. {
  40785. front: {
  40786. height: math.unit(36, "feet"),
  40787. name: "Front",
  40788. image: {
  40789. source: "./media/characters/shadow-rat/front.svg",
  40790. extra: 1845/1758,
  40791. bottom: 83/1928
  40792. }
  40793. },
  40794. },
  40795. [
  40796. {
  40797. name: "Macro",
  40798. height: math.unit(36, "feet"),
  40799. default: true
  40800. },
  40801. ]
  40802. ))
  40803. characterMakers.push(() => makeCharacter(
  40804. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40805. {
  40806. side: {
  40807. height: math.unit(8, "feet"),
  40808. weight: math.unit(2630, "lb"),
  40809. name: "Side",
  40810. image: {
  40811. source: "./media/characters/torallia/side.svg",
  40812. extra: 2164/2021,
  40813. bottom: 371/2535
  40814. }
  40815. },
  40816. },
  40817. [
  40818. {
  40819. name: "Mortal Interaction",
  40820. height: math.unit(8, "feet")
  40821. },
  40822. {
  40823. name: "Natural",
  40824. height: math.unit(24, "feet"),
  40825. default: true
  40826. },
  40827. {
  40828. name: "Giant",
  40829. height: math.unit(80, "feet")
  40830. },
  40831. {
  40832. name: "Kaiju",
  40833. height: math.unit(240, "feet")
  40834. },
  40835. {
  40836. name: "Macro",
  40837. height: math.unit(800, "feet")
  40838. },
  40839. {
  40840. name: "Macro+",
  40841. height: math.unit(2400, "feet")
  40842. },
  40843. {
  40844. name: "Macro++",
  40845. height: math.unit(8000, "feet")
  40846. },
  40847. {
  40848. name: "City-Crushing",
  40849. height: math.unit(24000, "feet")
  40850. },
  40851. {
  40852. name: "Mountain-Mashing",
  40853. height: math.unit(80000, "feet")
  40854. },
  40855. {
  40856. name: "District Demolisher",
  40857. height: math.unit(240000, "feet")
  40858. },
  40859. {
  40860. name: "Tri-County Terror",
  40861. height: math.unit(800000, "feet")
  40862. },
  40863. {
  40864. name: "State Smasher",
  40865. height: math.unit(2.4e6, "feet")
  40866. },
  40867. {
  40868. name: "Nation Nemesis",
  40869. height: math.unit(8e6, "feet")
  40870. },
  40871. {
  40872. name: "Continent Cracker",
  40873. height: math.unit(2.4e7, "feet")
  40874. },
  40875. {
  40876. name: "Planet-Pillaging",
  40877. height: math.unit(8e7, "feet")
  40878. },
  40879. {
  40880. name: "Earth-Eclipsing",
  40881. height: math.unit(2.4e8, "feet")
  40882. },
  40883. {
  40884. name: "Jovian-Jostling",
  40885. height: math.unit(8e8, "feet")
  40886. },
  40887. {
  40888. name: "Gas Giant Gulper",
  40889. height: math.unit(2.4e9, "feet")
  40890. },
  40891. {
  40892. name: "Astral Annihilator",
  40893. height: math.unit(8e9, "feet")
  40894. },
  40895. {
  40896. name: "Celestial Conqueror",
  40897. height: math.unit(2.4e10, "feet")
  40898. },
  40899. {
  40900. name: "Sol-Swallowing",
  40901. height: math.unit(8e10, "feet")
  40902. },
  40903. {
  40904. name: "Hunter of the Heavens",
  40905. height: math.unit(2.4e13, "feet")
  40906. },
  40907. ]
  40908. ))
  40909. characterMakers.push(() => makeCharacter(
  40910. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40911. {
  40912. front: {
  40913. height: math.unit(6 + 8/12, "feet"),
  40914. weight: math.unit(250, "kilograms"),
  40915. volume: math.unit(28, "liters"),
  40916. name: "Front",
  40917. image: {
  40918. source: "./media/characters/rebecca-pawlson/front.svg",
  40919. extra: 1737/1596,
  40920. bottom: 107/1844
  40921. }
  40922. },
  40923. back: {
  40924. height: math.unit(6 + 8/12, "feet"),
  40925. weight: math.unit(250, "kilograms"),
  40926. volume: math.unit(28, "liters"),
  40927. name: "Back",
  40928. image: {
  40929. source: "./media/characters/rebecca-pawlson/back.svg",
  40930. extra: 1702/1523,
  40931. bottom: 86/1788
  40932. }
  40933. },
  40934. },
  40935. [
  40936. {
  40937. name: "Normal",
  40938. height: math.unit(6 + 8/12, "feet")
  40939. },
  40940. {
  40941. name: "Mini Macro",
  40942. height: math.unit(10, "feet"),
  40943. default: true
  40944. },
  40945. {
  40946. name: "Macro",
  40947. height: math.unit(100, "feet")
  40948. },
  40949. {
  40950. name: "Mega Macro",
  40951. height: math.unit(2500, "feet")
  40952. },
  40953. {
  40954. name: "Giga Macro",
  40955. height: math.unit(50, "miles")
  40956. },
  40957. ]
  40958. ))
  40959. characterMakers.push(() => makeCharacter(
  40960. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40961. {
  40962. front: {
  40963. height: math.unit(7 + 6/12, "feet"),
  40964. weight: math.unit(600, "lb"),
  40965. name: "Front",
  40966. image: {
  40967. source: "./media/characters/moxie-nova/front.svg",
  40968. extra: 1734/1652,
  40969. bottom: 41/1775
  40970. }
  40971. },
  40972. },
  40973. [
  40974. {
  40975. name: "Normal",
  40976. height: math.unit(7 + 6/12, "feet"),
  40977. default: true
  40978. },
  40979. ]
  40980. ))
  40981. characterMakers.push(() => makeCharacter(
  40982. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40983. {
  40984. goat: {
  40985. height: math.unit(4, "feet"),
  40986. weight: math.unit(180, "lb"),
  40987. name: "Goat",
  40988. image: {
  40989. source: "./media/characters/tiffany/goat.svg",
  40990. extra: 1845/1595,
  40991. bottom: 106/1951
  40992. }
  40993. },
  40994. front: {
  40995. height: math.unit(5, "feet"),
  40996. weight: math.unit(150, "lb"),
  40997. name: "Foxcoon",
  40998. image: {
  40999. source: "./media/characters/tiffany/foxcoon.svg",
  41000. extra: 1941/1845,
  41001. bottom: 58/1999
  41002. }
  41003. },
  41004. },
  41005. [
  41006. {
  41007. name: "Normal",
  41008. height: math.unit(5, "feet"),
  41009. default: true
  41010. },
  41011. ]
  41012. ))
  41013. characterMakers.push(() => makeCharacter(
  41014. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41015. {
  41016. front: {
  41017. height: math.unit(8, "feet"),
  41018. weight: math.unit(300, "lb"),
  41019. name: "Front",
  41020. image: {
  41021. source: "./media/characters/raxinath/front.svg",
  41022. extra: 1407/1309,
  41023. bottom: 39/1446
  41024. }
  41025. },
  41026. back: {
  41027. height: math.unit(8, "feet"),
  41028. weight: math.unit(300, "lb"),
  41029. name: "Back",
  41030. image: {
  41031. source: "./media/characters/raxinath/back.svg",
  41032. extra: 1405/1315,
  41033. bottom: 9/1414
  41034. }
  41035. },
  41036. },
  41037. [
  41038. {
  41039. name: "Speck",
  41040. height: math.unit(0.5, "nm")
  41041. },
  41042. {
  41043. name: "Micro",
  41044. height: math.unit(3, "inches")
  41045. },
  41046. {
  41047. name: "Kobold",
  41048. height: math.unit(3, "feet")
  41049. },
  41050. {
  41051. name: "Normal",
  41052. height: math.unit(8, "feet"),
  41053. default: true
  41054. },
  41055. {
  41056. name: "Giant",
  41057. height: math.unit(50, "feet")
  41058. },
  41059. {
  41060. name: "Macro",
  41061. height: math.unit(1000, "feet")
  41062. },
  41063. {
  41064. name: "Megamacro",
  41065. height: math.unit(1, "mile")
  41066. },
  41067. ]
  41068. ))
  41069. characterMakers.push(() => makeCharacter(
  41070. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41071. {
  41072. front: {
  41073. height: math.unit(10, "feet"),
  41074. weight: math.unit(1442, "lb"),
  41075. name: "Front",
  41076. image: {
  41077. source: "./media/characters/mal-dragon/front.svg",
  41078. extra: 1515/1444,
  41079. bottom: 113/1628
  41080. }
  41081. },
  41082. back: {
  41083. height: math.unit(10, "feet"),
  41084. weight: math.unit(1442, "lb"),
  41085. name: "Back",
  41086. image: {
  41087. source: "./media/characters/mal-dragon/back.svg",
  41088. extra: 1527/1434,
  41089. bottom: 25/1552
  41090. }
  41091. },
  41092. },
  41093. [
  41094. {
  41095. name: "Mortal Interaction",
  41096. height: math.unit(10, "feet"),
  41097. default: true
  41098. },
  41099. {
  41100. name: "Large",
  41101. height: math.unit(30, "feet")
  41102. },
  41103. {
  41104. name: "Kaiju",
  41105. height: math.unit(300, "feet")
  41106. },
  41107. {
  41108. name: "Megamacro",
  41109. height: math.unit(10000, "feet")
  41110. },
  41111. {
  41112. name: "Continent Cracker",
  41113. height: math.unit(30000000, "feet")
  41114. },
  41115. {
  41116. name: "Sol-Swallowing",
  41117. height: math.unit(1e11, "feet")
  41118. },
  41119. {
  41120. name: "Light Universal",
  41121. height: math.unit(5, "universes")
  41122. },
  41123. {
  41124. name: "Universe Atoms",
  41125. height: math.unit(1.829e9, "universes")
  41126. },
  41127. {
  41128. name: "Light Multiversal",
  41129. height: math.unit(5, "multiverses")
  41130. },
  41131. {
  41132. name: "Multiverse Atoms",
  41133. height: math.unit(1.829e9, "multiverses")
  41134. },
  41135. {
  41136. name: "Fabric of Time",
  41137. height: math.unit(1e262, "multiverses")
  41138. },
  41139. ]
  41140. ))
  41141. characterMakers.push(() => makeCharacter(
  41142. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41143. {
  41144. front: {
  41145. height: math.unit(9, "feet"),
  41146. weight: math.unit(1050, "lb"),
  41147. name: "Front",
  41148. image: {
  41149. source: "./media/characters/tabitha/front.svg",
  41150. extra: 2083/1994,
  41151. bottom: 68/2151
  41152. }
  41153. },
  41154. },
  41155. [
  41156. {
  41157. name: "Baseline",
  41158. height: math.unit(9, "feet"),
  41159. default: true
  41160. },
  41161. {
  41162. name: "Giant",
  41163. height: math.unit(90, "feet")
  41164. },
  41165. {
  41166. name: "Macro",
  41167. height: math.unit(900, "feet")
  41168. },
  41169. {
  41170. name: "Megamacro",
  41171. height: math.unit(9000, "feet")
  41172. },
  41173. {
  41174. name: "City-Crushing",
  41175. height: math.unit(27000, "feet")
  41176. },
  41177. {
  41178. name: "Mountain-Mashing",
  41179. height: math.unit(90000, "feet")
  41180. },
  41181. {
  41182. name: "Nation Nemesis",
  41183. height: math.unit(9e6, "feet")
  41184. },
  41185. {
  41186. name: "Continent Cracker",
  41187. height: math.unit(27e6, "feet")
  41188. },
  41189. {
  41190. name: "Earth-Eclipsing",
  41191. height: math.unit(2.7e8, "feet")
  41192. },
  41193. {
  41194. name: "Gas Giant Gulper",
  41195. height: math.unit(2.7e9, "feet")
  41196. },
  41197. {
  41198. name: "Sol-Swallowing",
  41199. height: math.unit(9e10, "feet")
  41200. },
  41201. {
  41202. name: "Galaxy Gulper",
  41203. height: math.unit(9, "galaxies")
  41204. },
  41205. {
  41206. name: "Cosmos Churner",
  41207. height: math.unit(9, "universes")
  41208. },
  41209. ]
  41210. ))
  41211. characterMakers.push(() => makeCharacter(
  41212. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41213. {
  41214. front: {
  41215. height: math.unit(160, "cm"),
  41216. weight: math.unit(55, "kg"),
  41217. name: "Front",
  41218. image: {
  41219. source: "./media/characters/tow/front.svg",
  41220. extra: 1751/1722,
  41221. bottom: 74/1825
  41222. }
  41223. },
  41224. },
  41225. [
  41226. {
  41227. name: "Norm",
  41228. height: math.unit(160, "cm")
  41229. },
  41230. {
  41231. name: "Casual",
  41232. height: math.unit(3200, "m"),
  41233. default: true
  41234. },
  41235. {
  41236. name: "Show-Off",
  41237. height: math.unit(160, "km")
  41238. },
  41239. ]
  41240. ))
  41241. characterMakers.push(() => makeCharacter(
  41242. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41243. {
  41244. front: {
  41245. height: math.unit(7 + 11/12, "feet"),
  41246. weight: math.unit(342.8, "lb"),
  41247. name: "Front",
  41248. image: {
  41249. source: "./media/characters/vivian-orca-dragon/front.svg",
  41250. extra: 1890/1865,
  41251. bottom: 28/1918
  41252. }
  41253. },
  41254. },
  41255. [
  41256. {
  41257. name: "Micro",
  41258. height: math.unit(5, "inches")
  41259. },
  41260. {
  41261. name: "Normal",
  41262. height: math.unit(7 + 11/12, "feet"),
  41263. default: true
  41264. },
  41265. {
  41266. name: "Macro",
  41267. height: math.unit(395 + 7/12, "feet")
  41268. },
  41269. ]
  41270. ))
  41271. characterMakers.push(() => makeCharacter(
  41272. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41273. {
  41274. side: {
  41275. height: math.unit(10, "feet"),
  41276. weight: math.unit(1442, "lb"),
  41277. name: "Side",
  41278. image: {
  41279. source: "./media/characters/lotherakon/side.svg",
  41280. extra: 1604/1497,
  41281. bottom: 89/1693
  41282. }
  41283. },
  41284. },
  41285. [
  41286. {
  41287. name: "Mortal Interaction",
  41288. height: math.unit(10, "feet")
  41289. },
  41290. {
  41291. name: "Large",
  41292. height: math.unit(30, "feet"),
  41293. default: true
  41294. },
  41295. {
  41296. name: "Giant",
  41297. height: math.unit(100, "feet")
  41298. },
  41299. {
  41300. name: "Kaiju",
  41301. height: math.unit(300, "feet")
  41302. },
  41303. {
  41304. name: "Macro",
  41305. height: math.unit(1000, "feet")
  41306. },
  41307. {
  41308. name: "Macro+",
  41309. height: math.unit(3000, "feet")
  41310. },
  41311. {
  41312. name: "Megamacro",
  41313. height: math.unit(10000, "feet")
  41314. },
  41315. {
  41316. name: "City-Crushing",
  41317. height: math.unit(30000, "feet")
  41318. },
  41319. {
  41320. name: "Continent Cracker",
  41321. height: math.unit(30e6, "feet")
  41322. },
  41323. {
  41324. name: "Earth Eclipsing",
  41325. height: math.unit(3e8, "feet")
  41326. },
  41327. {
  41328. name: "Gas Giant Gulper",
  41329. height: math.unit(3e9, "feet")
  41330. },
  41331. {
  41332. name: "Sol-Swallowing",
  41333. height: math.unit(1e11, "feet")
  41334. },
  41335. {
  41336. name: "System Swallower",
  41337. height: math.unit(3e14, "feet")
  41338. },
  41339. {
  41340. name: "Galaxy Gulper",
  41341. height: math.unit(10, "galaxies")
  41342. },
  41343. {
  41344. name: "Light Universal",
  41345. height: math.unit(5, "universes")
  41346. },
  41347. {
  41348. name: "Universe Palm",
  41349. height: math.unit(20, "universes")
  41350. },
  41351. {
  41352. name: "Light Multiversal",
  41353. height: math.unit(5, "multiverses")
  41354. },
  41355. {
  41356. name: "Multiverse Palm",
  41357. height: math.unit(20, "multiverses")
  41358. },
  41359. {
  41360. name: "Inferno Incarnate",
  41361. height: math.unit(1e7, "multiverses")
  41362. },
  41363. ]
  41364. ))
  41365. characterMakers.push(() => makeCharacter(
  41366. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41367. {
  41368. front: {
  41369. height: math.unit(8, "feet"),
  41370. weight: math.unit(1200, "lb"),
  41371. name: "Front",
  41372. image: {
  41373. source: "./media/characters/malithee/front.svg",
  41374. extra: 1675/1640,
  41375. bottom: 162/1837
  41376. }
  41377. },
  41378. },
  41379. [
  41380. {
  41381. name: "Mortal Interaction",
  41382. height: math.unit(8, "feet"),
  41383. default: true
  41384. },
  41385. {
  41386. name: "Large",
  41387. height: math.unit(24, "feet")
  41388. },
  41389. {
  41390. name: "Kaiju",
  41391. height: math.unit(240, "feet")
  41392. },
  41393. {
  41394. name: "Megamacro",
  41395. height: math.unit(8000, "feet")
  41396. },
  41397. {
  41398. name: "Continent Cracker",
  41399. height: math.unit(24e6, "feet")
  41400. },
  41401. {
  41402. name: "Earth-Eclipsing",
  41403. height: math.unit(2.4e8, "feet")
  41404. },
  41405. {
  41406. name: "Sol-Swallowing",
  41407. height: math.unit(8e10, "feet")
  41408. },
  41409. {
  41410. name: "Galaxy Gulper",
  41411. height: math.unit(8, "galaxies")
  41412. },
  41413. {
  41414. name: "Light Universal",
  41415. height: math.unit(4, "universes")
  41416. },
  41417. {
  41418. name: "Universe Atoms",
  41419. height: math.unit(1.829e9, "universes")
  41420. },
  41421. {
  41422. name: "Light Multiversal",
  41423. height: math.unit(4, "multiverses")
  41424. },
  41425. {
  41426. name: "Multiverse Atoms",
  41427. height: math.unit(1.829e9, "multiverses")
  41428. },
  41429. {
  41430. name: "Nigh-Omnipresence",
  41431. height: math.unit(8e261, "multiverses")
  41432. },
  41433. ]
  41434. ))
  41435. characterMakers.push(() => makeCharacter(
  41436. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41437. {
  41438. front: {
  41439. height: math.unit(10, "feet"),
  41440. weight: math.unit(1500, "lb"),
  41441. name: "Front",
  41442. image: {
  41443. source: "./media/characters/miles-thestia/front.svg",
  41444. extra: 1812/1727,
  41445. bottom: 86/1898
  41446. }
  41447. },
  41448. back: {
  41449. height: math.unit(10, "feet"),
  41450. weight: math.unit(1500, "lb"),
  41451. name: "Back",
  41452. image: {
  41453. source: "./media/characters/miles-thestia/back.svg",
  41454. extra: 1799/1690,
  41455. bottom: 47/1846
  41456. }
  41457. },
  41458. frontNsfw: {
  41459. height: math.unit(10, "feet"),
  41460. weight: math.unit(1500, "lb"),
  41461. name: "Front (NSFW)",
  41462. image: {
  41463. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41464. extra: 1812/1727,
  41465. bottom: 86/1898
  41466. }
  41467. },
  41468. },
  41469. [
  41470. {
  41471. name: "Mini-Macro",
  41472. height: math.unit(10, "feet"),
  41473. default: true
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41479. {
  41480. front: {
  41481. height: math.unit(25, "feet"),
  41482. name: "Front",
  41483. image: {
  41484. source: "./media/characters/titan-s-wulf/front.svg",
  41485. extra: 1560/1484,
  41486. bottom: 76/1636
  41487. }
  41488. },
  41489. },
  41490. [
  41491. {
  41492. name: "Smallest",
  41493. height: math.unit(25, "feet"),
  41494. default: true
  41495. },
  41496. {
  41497. name: "Normal",
  41498. height: math.unit(200, "feet")
  41499. },
  41500. {
  41501. name: "Macro",
  41502. height: math.unit(200000, "feet")
  41503. },
  41504. {
  41505. name: "Multiversal Original",
  41506. height: math.unit(10000, "multiverses")
  41507. },
  41508. ]
  41509. ))
  41510. characterMakers.push(() => makeCharacter(
  41511. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41512. {
  41513. front: {
  41514. height: math.unit(8, "feet"),
  41515. weight: math.unit(553, "lb"),
  41516. name: "Front",
  41517. image: {
  41518. source: "./media/characters/tawendeh/front.svg",
  41519. extra: 2365/2268,
  41520. bottom: 83/2448
  41521. }
  41522. },
  41523. frontClothed: {
  41524. height: math.unit(8, "feet"),
  41525. weight: math.unit(553, "lb"),
  41526. name: "Front (Clothed)",
  41527. image: {
  41528. source: "./media/characters/tawendeh/front-clothed.svg",
  41529. extra: 2365/2268,
  41530. bottom: 83/2448
  41531. }
  41532. },
  41533. back: {
  41534. height: math.unit(8, "feet"),
  41535. weight: math.unit(553, "lb"),
  41536. name: "Back",
  41537. image: {
  41538. source: "./media/characters/tawendeh/back.svg",
  41539. extra: 2397/2294,
  41540. bottom: 42/2439
  41541. }
  41542. },
  41543. },
  41544. [
  41545. {
  41546. name: "Mortal Interaction",
  41547. height: math.unit(8, "feet"),
  41548. default: true
  41549. },
  41550. {
  41551. name: "Giant",
  41552. height: math.unit(80, "feet")
  41553. },
  41554. {
  41555. name: "Macro",
  41556. height: math.unit(800, "feet")
  41557. },
  41558. {
  41559. name: "Megamacro",
  41560. height: math.unit(8000, "feet")
  41561. },
  41562. {
  41563. name: "City-Crushing",
  41564. height: math.unit(24000, "feet")
  41565. },
  41566. {
  41567. name: "Mountain-Mashing",
  41568. height: math.unit(80000, "feet")
  41569. },
  41570. {
  41571. name: "Nation Nemesis",
  41572. height: math.unit(8e6, "feet")
  41573. },
  41574. {
  41575. name: "Continent Cracker",
  41576. height: math.unit(24e6, "feet")
  41577. },
  41578. {
  41579. name: "Earth-Eclipsing",
  41580. height: math.unit(2.4e8, "feet")
  41581. },
  41582. {
  41583. name: "Gas Giant Gulper",
  41584. height: math.unit(2.4e9, "feet")
  41585. },
  41586. {
  41587. name: "Sol-Swallowing",
  41588. height: math.unit(8e10, "feet")
  41589. },
  41590. {
  41591. name: "Galaxy Gulper",
  41592. height: math.unit(8, "galaxies")
  41593. },
  41594. {
  41595. name: "Cosmos Churner",
  41596. height: math.unit(8, "universes")
  41597. },
  41598. {
  41599. name: "Omnipotent Otter",
  41600. height: math.unit(80, "universes")
  41601. },
  41602. ]
  41603. ))
  41604. characterMakers.push(() => makeCharacter(
  41605. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41606. {
  41607. front: {
  41608. height: math.unit(2.6, "meters"),
  41609. weight: math.unit(900, "kg"),
  41610. name: "Front",
  41611. image: {
  41612. source: "./media/characters/neesha/front.svg",
  41613. extra: 1803/1653,
  41614. bottom: 128/1931
  41615. }
  41616. },
  41617. },
  41618. [
  41619. {
  41620. name: "Normal",
  41621. height: math.unit(2.6, "meters"),
  41622. default: true
  41623. },
  41624. {
  41625. name: "Macro",
  41626. height: math.unit(50, "meters")
  41627. },
  41628. ]
  41629. ))
  41630. characterMakers.push(() => makeCharacter(
  41631. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41632. {
  41633. front: {
  41634. height: math.unit(5, "feet"),
  41635. weight: math.unit(185, "lb"),
  41636. name: "Front",
  41637. image: {
  41638. source: "./media/characters/kyera/front.svg",
  41639. extra: 1875/1790,
  41640. bottom: 96/1971
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "Normal",
  41647. height: math.unit(5, "feet"),
  41648. default: true
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41654. {
  41655. front: {
  41656. height: math.unit(7 + 6/12, "feet"),
  41657. weight: math.unit(540, "lb"),
  41658. name: "Front",
  41659. image: {
  41660. source: "./media/characters/yuko/front.svg",
  41661. extra: 1282/1222,
  41662. bottom: 101/1383
  41663. }
  41664. },
  41665. frontClothed: {
  41666. height: math.unit(7 + 6/12, "feet"),
  41667. weight: math.unit(540, "lb"),
  41668. name: "Front (Clothed)",
  41669. image: {
  41670. source: "./media/characters/yuko/front-clothed.svg",
  41671. extra: 1282/1222,
  41672. bottom: 101/1383
  41673. }
  41674. },
  41675. },
  41676. [
  41677. {
  41678. name: "Normal",
  41679. height: math.unit(7 + 6/12, "feet"),
  41680. default: true
  41681. },
  41682. {
  41683. name: "Macro",
  41684. height: math.unit(26 + 9/12, "feet")
  41685. },
  41686. {
  41687. name: "Megamacro",
  41688. height: math.unit(300, "feet")
  41689. },
  41690. {
  41691. name: "Gigamacro",
  41692. height: math.unit(5000, "feet")
  41693. },
  41694. {
  41695. name: "Planetary",
  41696. height: math.unit(10000, "miles")
  41697. },
  41698. ]
  41699. ))
  41700. characterMakers.push(() => makeCharacter(
  41701. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41702. {
  41703. front: {
  41704. height: math.unit(8 + 2/12, "feet"),
  41705. weight: math.unit(600, "lb"),
  41706. name: "Front",
  41707. image: {
  41708. source: "./media/characters/deam-nitrel/front.svg",
  41709. extra: 1308/1234,
  41710. bottom: 125/1433
  41711. }
  41712. },
  41713. },
  41714. [
  41715. {
  41716. name: "Normal",
  41717. height: math.unit(8 + 2/12, "feet"),
  41718. default: true
  41719. },
  41720. ]
  41721. ))
  41722. characterMakers.push(() => makeCharacter(
  41723. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41724. {
  41725. front: {
  41726. height: math.unit(6.1, "feet"),
  41727. weight: math.unit(180, "lb"),
  41728. name: "Front",
  41729. image: {
  41730. source: "./media/characters/skyress/front.svg",
  41731. extra: 1045/915,
  41732. bottom: 28/1073
  41733. }
  41734. },
  41735. maw: {
  41736. height: math.unit(1, "feet"),
  41737. name: "Maw",
  41738. image: {
  41739. source: "./media/characters/skyress/maw.svg"
  41740. }
  41741. },
  41742. },
  41743. [
  41744. {
  41745. name: "Normal",
  41746. height: math.unit(6.1, "feet"),
  41747. default: true
  41748. },
  41749. {
  41750. name: "Macro",
  41751. height: math.unit(200, "feet")
  41752. },
  41753. ]
  41754. ))
  41755. characterMakers.push(() => makeCharacter(
  41756. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41757. {
  41758. front: {
  41759. height: math.unit(4 + 2/12, "feet"),
  41760. weight: math.unit(40, "kg"),
  41761. name: "Front",
  41762. image: {
  41763. source: "./media/characters/amethyst-jones/front.svg",
  41764. extra: 1220/1150,
  41765. bottom: 101/1321
  41766. }
  41767. },
  41768. },
  41769. [
  41770. {
  41771. name: "Normal",
  41772. height: math.unit(4 + 2/12, "feet"),
  41773. default: true
  41774. },
  41775. ]
  41776. ))
  41777. characterMakers.push(() => makeCharacter(
  41778. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41779. {
  41780. front: {
  41781. height: math.unit(1.7, "m"),
  41782. weight: math.unit(135, "lb"),
  41783. name: "Front",
  41784. image: {
  41785. source: "./media/characters/jade/front.svg",
  41786. extra: 1818/1767,
  41787. bottom: 32/1850
  41788. }
  41789. },
  41790. back: {
  41791. height: math.unit(1.7, "m"),
  41792. weight: math.unit(135, "lb"),
  41793. name: "Back",
  41794. image: {
  41795. source: "./media/characters/jade/back.svg",
  41796. extra: 1869/1809,
  41797. bottom: 35/1904
  41798. }
  41799. },
  41800. hand: {
  41801. height: math.unit(0.24, "m"),
  41802. name: "Hand",
  41803. image: {
  41804. source: "./media/characters/jade/hand.svg"
  41805. }
  41806. },
  41807. foot: {
  41808. height: math.unit(0.263, "m"),
  41809. name: "Foot",
  41810. image: {
  41811. source: "./media/characters/jade/foot.svg"
  41812. }
  41813. },
  41814. dick: {
  41815. height: math.unit(0.47, "m"),
  41816. name: "Dick",
  41817. image: {
  41818. source: "./media/characters/jade/dick.svg"
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Micro",
  41825. height: math.unit(22, "cm")
  41826. },
  41827. {
  41828. name: "Normal",
  41829. height: math.unit(1.7, "m"),
  41830. default: true
  41831. },
  41832. {
  41833. name: "Macro",
  41834. height: math.unit(152, "m")
  41835. },
  41836. ]
  41837. ))
  41838. characterMakers.push(() => makeCharacter(
  41839. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41840. {
  41841. front: {
  41842. height: math.unit(100, "miles"),
  41843. weight: math.unit(20000, "tons"),
  41844. name: "Front",
  41845. image: {
  41846. source: "./media/characters/cookie/front.svg",
  41847. extra: 1125/1070,
  41848. bottom: 30/1155
  41849. }
  41850. },
  41851. },
  41852. [
  41853. {
  41854. name: "Big",
  41855. height: math.unit(50, "feet")
  41856. },
  41857. {
  41858. name: "Macro",
  41859. height: math.unit(100, "miles"),
  41860. default: true
  41861. },
  41862. {
  41863. name: "Megamacro",
  41864. height: math.unit(90000, "miles")
  41865. },
  41866. ]
  41867. ))
  41868. characterMakers.push(() => makeCharacter(
  41869. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41870. {
  41871. front: {
  41872. height: math.unit(6, "feet"),
  41873. weight: math.unit(145, "lb"),
  41874. name: "Front",
  41875. image: {
  41876. source: "./media/characters/farzian/front.svg",
  41877. extra: 1902/1693,
  41878. bottom: 108/2010
  41879. }
  41880. },
  41881. },
  41882. [
  41883. {
  41884. name: "Macro",
  41885. height: math.unit(500, "feet"),
  41886. default: true
  41887. },
  41888. ]
  41889. ))
  41890. characterMakers.push(() => makeCharacter(
  41891. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41892. {
  41893. front: {
  41894. height: math.unit(3 + 6/12, "feet"),
  41895. weight: math.unit(50, "lb"),
  41896. name: "Front",
  41897. image: {
  41898. source: "./media/characters/kimberly-tilson/front.svg",
  41899. extra: 1400/1322,
  41900. bottom: 36/1436
  41901. }
  41902. },
  41903. back: {
  41904. height: math.unit(3 + 6/12, "feet"),
  41905. weight: math.unit(50, "lb"),
  41906. name: "Back",
  41907. image: {
  41908. source: "./media/characters/kimberly-tilson/back.svg",
  41909. extra: 1370/1307,
  41910. bottom: 20/1390
  41911. }
  41912. },
  41913. },
  41914. [
  41915. {
  41916. name: "Normal",
  41917. height: math.unit(3 + 6/12, "feet"),
  41918. default: true
  41919. },
  41920. ]
  41921. ))
  41922. characterMakers.push(() => makeCharacter(
  41923. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41924. {
  41925. front: {
  41926. height: math.unit(1148, "feet"),
  41927. weight: math.unit(34057, "lb"),
  41928. name: "Front",
  41929. image: {
  41930. source: "./media/characters/harthos/front.svg",
  41931. extra: 1391/1339,
  41932. bottom: 13/1404
  41933. }
  41934. },
  41935. },
  41936. [
  41937. {
  41938. name: "Macro",
  41939. height: math.unit(1148, "feet"),
  41940. default: true
  41941. },
  41942. ]
  41943. ))
  41944. characterMakers.push(() => makeCharacter(
  41945. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41946. {
  41947. front: {
  41948. height: math.unit(15, "feet"),
  41949. name: "Front",
  41950. image: {
  41951. source: "./media/characters/hypatia/front.svg",
  41952. extra: 1653/1591,
  41953. bottom: 79/1732
  41954. }
  41955. },
  41956. },
  41957. [
  41958. {
  41959. name: "Normal",
  41960. height: math.unit(15, "feet")
  41961. },
  41962. {
  41963. name: "Small",
  41964. height: math.unit(300, "feet")
  41965. },
  41966. {
  41967. name: "Macro",
  41968. height: math.unit(2500, "feet"),
  41969. default: true
  41970. },
  41971. {
  41972. name: "Mega Macro",
  41973. height: math.unit(1500, "miles")
  41974. },
  41975. {
  41976. name: "Giga Macro",
  41977. height: math.unit(1.5e6, "miles")
  41978. },
  41979. ]
  41980. ))
  41981. characterMakers.push(() => makeCharacter(
  41982. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41983. {
  41984. front: {
  41985. height: math.unit(6, "feet"),
  41986. weight: math.unit(200, "lb"),
  41987. name: "Front",
  41988. image: {
  41989. source: "./media/characters/wulver/front.svg",
  41990. extra: 1724/1632,
  41991. bottom: 130/1854
  41992. }
  41993. },
  41994. frontNsfw: {
  41995. height: math.unit(6, "feet"),
  41996. weight: math.unit(200, "lb"),
  41997. name: "Front (NSFW)",
  41998. image: {
  41999. source: "./media/characters/wulver/front-nsfw.svg",
  42000. extra: 1724/1632,
  42001. bottom: 130/1854
  42002. }
  42003. },
  42004. },
  42005. [
  42006. {
  42007. name: "Human-Sized",
  42008. height: math.unit(6, "feet")
  42009. },
  42010. {
  42011. name: "Normal",
  42012. height: math.unit(4, "meters"),
  42013. default: true
  42014. },
  42015. {
  42016. name: "Large",
  42017. height: math.unit(6, "m")
  42018. },
  42019. ]
  42020. ))
  42021. characterMakers.push(() => makeCharacter(
  42022. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42023. {
  42024. front: {
  42025. height: math.unit(7, "feet"),
  42026. name: "Front",
  42027. image: {
  42028. source: "./media/characters/maru/front.svg",
  42029. extra: 1595/1570,
  42030. bottom: 0/1595
  42031. }
  42032. },
  42033. },
  42034. [
  42035. {
  42036. name: "Normal",
  42037. height: math.unit(7, "feet"),
  42038. default: true
  42039. },
  42040. {
  42041. name: "Macro",
  42042. height: math.unit(700, "feet")
  42043. },
  42044. {
  42045. name: "Mega Macro",
  42046. height: math.unit(25, "miles")
  42047. },
  42048. ]
  42049. ))
  42050. characterMakers.push(() => makeCharacter(
  42051. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42052. {
  42053. front: {
  42054. height: math.unit(6, "feet"),
  42055. weight: math.unit(170, "lb"),
  42056. name: "Front",
  42057. image: {
  42058. source: "./media/characters/xenon/front.svg",
  42059. extra: 1376/1305,
  42060. bottom: 56/1432
  42061. }
  42062. },
  42063. back: {
  42064. height: math.unit(6, "feet"),
  42065. weight: math.unit(170, "lb"),
  42066. name: "Back",
  42067. image: {
  42068. source: "./media/characters/xenon/back.svg",
  42069. extra: 1328/1259,
  42070. bottom: 95/1423
  42071. }
  42072. },
  42073. maw: {
  42074. height: math.unit(0.52, "feet"),
  42075. name: "Maw",
  42076. image: {
  42077. source: "./media/characters/xenon/maw.svg"
  42078. }
  42079. },
  42080. handLeft: {
  42081. height: math.unit(0.82 * 169 / 153, "feet"),
  42082. name: "Hand (Left)",
  42083. image: {
  42084. source: "./media/characters/xenon/hand-left.svg"
  42085. }
  42086. },
  42087. handRight: {
  42088. height: math.unit(0.82, "feet"),
  42089. name: "Hand (Right)",
  42090. image: {
  42091. source: "./media/characters/xenon/hand-right.svg"
  42092. }
  42093. },
  42094. footLeft: {
  42095. height: math.unit(1.13, "feet"),
  42096. name: "Foot (Left)",
  42097. image: {
  42098. source: "./media/characters/xenon/foot-left.svg"
  42099. }
  42100. },
  42101. footRight: {
  42102. height: math.unit(1.13 * 194 / 196, "feet"),
  42103. name: "Foot (Right)",
  42104. image: {
  42105. source: "./media/characters/xenon/foot-right.svg"
  42106. }
  42107. },
  42108. },
  42109. [
  42110. {
  42111. name: "Micro",
  42112. height: math.unit(0.8, "inches")
  42113. },
  42114. {
  42115. name: "Normal",
  42116. height: math.unit(6, "feet")
  42117. },
  42118. {
  42119. name: "Macro",
  42120. height: math.unit(50, "feet"),
  42121. default: true
  42122. },
  42123. {
  42124. name: "Macro+",
  42125. height: math.unit(250, "feet")
  42126. },
  42127. {
  42128. name: "Megamacro",
  42129. height: math.unit(1500, "feet")
  42130. },
  42131. ]
  42132. ))
  42133. characterMakers.push(() => makeCharacter(
  42134. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42135. {
  42136. front: {
  42137. height: math.unit(7 + 5/12, "feet"),
  42138. name: "Front",
  42139. image: {
  42140. source: "./media/characters/zane/front.svg",
  42141. extra: 1260/1203,
  42142. bottom: 94/1354
  42143. }
  42144. },
  42145. back: {
  42146. height: math.unit(5.05, "feet"),
  42147. name: "Back",
  42148. image: {
  42149. source: "./media/characters/zane/back.svg",
  42150. extra: 893/829,
  42151. bottom: 30/923
  42152. }
  42153. },
  42154. werewolf: {
  42155. height: math.unit(11, "feet"),
  42156. name: "Werewolf",
  42157. image: {
  42158. source: "./media/characters/zane/werewolf.svg",
  42159. extra: 1383/1323,
  42160. bottom: 89/1472
  42161. }
  42162. },
  42163. foot: {
  42164. height: math.unit(1.46, "feet"),
  42165. name: "Foot",
  42166. image: {
  42167. source: "./media/characters/zane/foot.svg"
  42168. }
  42169. },
  42170. footFront: {
  42171. height: math.unit(0.784, "feet"),
  42172. name: "Foot (Front)",
  42173. image: {
  42174. source: "./media/characters/zane/foot-front.svg"
  42175. }
  42176. },
  42177. dick: {
  42178. height: math.unit(1.95, "feet"),
  42179. name: "Dick",
  42180. image: {
  42181. source: "./media/characters/zane/dick.svg"
  42182. }
  42183. },
  42184. dickWerewolf: {
  42185. height: math.unit(3.77, "feet"),
  42186. name: "Dick (Werewolf)",
  42187. image: {
  42188. source: "./media/characters/zane/dick.svg"
  42189. }
  42190. },
  42191. },
  42192. [
  42193. {
  42194. name: "Normal",
  42195. height: math.unit(7 + 5/12, "feet"),
  42196. default: true
  42197. },
  42198. ]
  42199. ))
  42200. characterMakers.push(() => makeCharacter(
  42201. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42202. {
  42203. front: {
  42204. height: math.unit(6 + 2/12, "feet"),
  42205. weight: math.unit(284, "lb"),
  42206. name: "Front",
  42207. image: {
  42208. source: "./media/characters/benni-desparque/front.svg",
  42209. extra: 1353/1126,
  42210. bottom: 69/1422
  42211. }
  42212. },
  42213. },
  42214. [
  42215. {
  42216. name: "Civilian",
  42217. height: math.unit(6 + 2/12, "feet")
  42218. },
  42219. {
  42220. name: "Normal",
  42221. height: math.unit(98, "feet"),
  42222. default: true
  42223. },
  42224. {
  42225. name: "Kaiju Fighter",
  42226. height: math.unit(268, "feet")
  42227. },
  42228. ]
  42229. ))
  42230. characterMakers.push(() => makeCharacter(
  42231. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42232. {
  42233. front: {
  42234. height: math.unit(5, "feet"),
  42235. weight: math.unit(105, "lb"),
  42236. name: "Front",
  42237. image: {
  42238. source: "./media/characters/maxine/front.svg",
  42239. extra: 1386/1250,
  42240. bottom: 71/1457
  42241. }
  42242. },
  42243. },
  42244. [
  42245. {
  42246. name: "Normal",
  42247. height: math.unit(5, "feet"),
  42248. default: true
  42249. },
  42250. ]
  42251. ))
  42252. characterMakers.push(() => makeCharacter(
  42253. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42254. {
  42255. front: {
  42256. height: math.unit(11 + 7/12, "feet"),
  42257. weight: math.unit(9576, "lb"),
  42258. name: "Front",
  42259. image: {
  42260. source: "./media/characters/scaly/front.svg",
  42261. extra: 888/867,
  42262. bottom: 36/924
  42263. }
  42264. },
  42265. },
  42266. [
  42267. {
  42268. name: "Normal",
  42269. height: math.unit(11 + 7/12, "feet"),
  42270. default: true
  42271. },
  42272. ]
  42273. ))
  42274. characterMakers.push(() => makeCharacter(
  42275. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42276. {
  42277. front: {
  42278. height: math.unit(6 + 3/12, "feet"),
  42279. name: "Front",
  42280. image: {
  42281. source: "./media/characters/saelria/front.svg",
  42282. extra: 1243/1138,
  42283. bottom: 46/1289
  42284. }
  42285. },
  42286. },
  42287. [
  42288. {
  42289. name: "Micro",
  42290. height: math.unit(6, "inches"),
  42291. },
  42292. {
  42293. name: "Normal",
  42294. height: math.unit(6 + 3/12, "feet"),
  42295. default: true
  42296. },
  42297. {
  42298. name: "Macro",
  42299. height: math.unit(25, "feet")
  42300. },
  42301. ]
  42302. ))
  42303. characterMakers.push(() => makeCharacter(
  42304. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42305. {
  42306. front: {
  42307. height: math.unit(80, "meters"),
  42308. weight: math.unit(7000, "tonnes"),
  42309. name: "Front",
  42310. image: {
  42311. source: "./media/characters/tef/front.svg",
  42312. extra: 2036/1991,
  42313. bottom: 54/2090
  42314. }
  42315. },
  42316. back: {
  42317. height: math.unit(80, "meters"),
  42318. weight: math.unit(7000, "tonnes"),
  42319. name: "Back",
  42320. image: {
  42321. source: "./media/characters/tef/back.svg",
  42322. extra: 2036/1991,
  42323. bottom: 54/2090
  42324. }
  42325. },
  42326. },
  42327. [
  42328. {
  42329. name: "Macro",
  42330. height: math.unit(80, "meters"),
  42331. default: true
  42332. },
  42333. ]
  42334. ))
  42335. characterMakers.push(() => makeCharacter(
  42336. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42337. {
  42338. front: {
  42339. height: math.unit(13, "feet"),
  42340. weight: math.unit(6, "tons"),
  42341. name: "Front",
  42342. image: {
  42343. source: "./media/characters/rover/front.svg",
  42344. extra: 1233/1156,
  42345. bottom: 50/1283
  42346. }
  42347. },
  42348. back: {
  42349. height: math.unit(13, "feet"),
  42350. weight: math.unit(6, "tons"),
  42351. name: "Back",
  42352. image: {
  42353. source: "./media/characters/rover/back.svg",
  42354. extra: 1327/1258,
  42355. bottom: 39/1366
  42356. }
  42357. },
  42358. },
  42359. [
  42360. {
  42361. name: "Normal",
  42362. height: math.unit(13, "feet"),
  42363. default: true
  42364. },
  42365. {
  42366. name: "Macro",
  42367. height: math.unit(1300, "feet")
  42368. },
  42369. {
  42370. name: "Megamacro",
  42371. height: math.unit(1300, "miles")
  42372. },
  42373. {
  42374. name: "Gigamacro",
  42375. height: math.unit(1300000, "miles")
  42376. },
  42377. ]
  42378. ))
  42379. characterMakers.push(() => makeCharacter(
  42380. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42381. {
  42382. front: {
  42383. height: math.unit(6, "feet"),
  42384. weight: math.unit(150, "lb"),
  42385. name: "Front",
  42386. image: {
  42387. source: "./media/characters/ariz/front.svg",
  42388. extra: 1401/1346,
  42389. bottom: 5/1406
  42390. }
  42391. },
  42392. },
  42393. [
  42394. {
  42395. name: "Normal",
  42396. height: math.unit(10, "feet"),
  42397. default: true
  42398. },
  42399. ]
  42400. ))
  42401. characterMakers.push(() => makeCharacter(
  42402. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42403. {
  42404. front: {
  42405. height: math.unit(6, "feet"),
  42406. weight: math.unit(140, "lb"),
  42407. name: "Front",
  42408. image: {
  42409. source: "./media/characters/sigrun/front.svg",
  42410. extra: 1418/1359,
  42411. bottom: 27/1445
  42412. }
  42413. },
  42414. },
  42415. [
  42416. {
  42417. name: "Macro",
  42418. height: math.unit(35, "feet"),
  42419. default: true
  42420. },
  42421. ]
  42422. ))
  42423. characterMakers.push(() => makeCharacter(
  42424. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42425. {
  42426. front: {
  42427. height: math.unit(6, "feet"),
  42428. weight: math.unit(150, "lb"),
  42429. name: "Front",
  42430. image: {
  42431. source: "./media/characters/numin/front.svg",
  42432. extra: 1433/1388,
  42433. bottom: 12/1445
  42434. }
  42435. },
  42436. },
  42437. [
  42438. {
  42439. name: "Macro",
  42440. height: math.unit(21.5, "km"),
  42441. default: true
  42442. },
  42443. ]
  42444. ))
  42445. characterMakers.push(() => makeCharacter(
  42446. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42447. {
  42448. front: {
  42449. height: math.unit(6, "feet"),
  42450. weight: math.unit(463, "lb"),
  42451. name: "Front",
  42452. image: {
  42453. source: "./media/characters/melwa/front.svg",
  42454. extra: 1307/1248,
  42455. bottom: 93/1400
  42456. }
  42457. },
  42458. },
  42459. [
  42460. {
  42461. name: "Macro",
  42462. height: math.unit(50, "meters"),
  42463. default: true
  42464. },
  42465. ]
  42466. ))
  42467. characterMakers.push(() => makeCharacter(
  42468. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42469. {
  42470. front: {
  42471. height: math.unit(325, "feet"),
  42472. name: "Front",
  42473. image: {
  42474. source: "./media/characters/zorkaiju/front.svg",
  42475. extra: 1955/1814,
  42476. bottom: 40/1995
  42477. }
  42478. },
  42479. frontExtended: {
  42480. height: math.unit(325, "feet"),
  42481. name: "Front (Extended)",
  42482. image: {
  42483. source: "./media/characters/zorkaiju/front-extended.svg",
  42484. extra: 1955/1814,
  42485. bottom: 40/1995
  42486. }
  42487. },
  42488. side: {
  42489. height: math.unit(325, "feet"),
  42490. name: "Side",
  42491. image: {
  42492. source: "./media/characters/zorkaiju/side.svg",
  42493. extra: 1495/1396,
  42494. bottom: 17/1512
  42495. }
  42496. },
  42497. sideExtended: {
  42498. height: math.unit(325, "feet"),
  42499. name: "Side (Extended)",
  42500. image: {
  42501. source: "./media/characters/zorkaiju/side-extended.svg",
  42502. extra: 1495/1396,
  42503. bottom: 17/1512
  42504. }
  42505. },
  42506. back: {
  42507. height: math.unit(325, "feet"),
  42508. name: "Back",
  42509. image: {
  42510. source: "./media/characters/zorkaiju/back.svg",
  42511. extra: 1959/1821,
  42512. bottom: 31/1990
  42513. }
  42514. },
  42515. backExtended: {
  42516. height: math.unit(325, "feet"),
  42517. name: "Back (Extended)",
  42518. image: {
  42519. source: "./media/characters/zorkaiju/back-extended.svg",
  42520. extra: 1959/1821,
  42521. bottom: 31/1990
  42522. }
  42523. },
  42524. hand: {
  42525. height: math.unit(58.4, "feet"),
  42526. name: "Hand",
  42527. image: {
  42528. source: "./media/characters/zorkaiju/hand.svg"
  42529. }
  42530. },
  42531. handExtended: {
  42532. height: math.unit(61.4, "feet"),
  42533. name: "Hand (Extended)",
  42534. image: {
  42535. source: "./media/characters/zorkaiju/hand-extended.svg"
  42536. }
  42537. },
  42538. foot: {
  42539. height: math.unit(95, "feet"),
  42540. name: "Foot",
  42541. image: {
  42542. source: "./media/characters/zorkaiju/foot.svg"
  42543. }
  42544. },
  42545. leftArm: {
  42546. height: math.unit(59, "feet"),
  42547. name: "Left Arm",
  42548. image: {
  42549. source: "./media/characters/zorkaiju/left-arm.svg"
  42550. }
  42551. },
  42552. rightArm: {
  42553. height: math.unit(59, "feet"),
  42554. name: "Right Arm",
  42555. image: {
  42556. source: "./media/characters/zorkaiju/right-arm.svg"
  42557. }
  42558. },
  42559. leftArmExtended: {
  42560. height: math.unit(59 * 1.033546, "feet"),
  42561. name: "Left Arm (Extended)",
  42562. image: {
  42563. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42564. }
  42565. },
  42566. rightArmExtended: {
  42567. height: math.unit(59 * 1.0496, "feet"),
  42568. name: "Right Arm (Extended)",
  42569. image: {
  42570. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42571. }
  42572. },
  42573. tail: {
  42574. height: math.unit(104, "feet"),
  42575. name: "Tail",
  42576. image: {
  42577. source: "./media/characters/zorkaiju/tail.svg"
  42578. }
  42579. },
  42580. tailExtended: {
  42581. height: math.unit(104, "feet"),
  42582. name: "Tail (Extended)",
  42583. image: {
  42584. source: "./media/characters/zorkaiju/tail-extended.svg"
  42585. }
  42586. },
  42587. tailBottom: {
  42588. height: math.unit(104, "feet"),
  42589. name: "Tail Bottom",
  42590. image: {
  42591. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42592. }
  42593. },
  42594. crystal: {
  42595. height: math.unit(27.54, "feet"),
  42596. name: "Crystal",
  42597. image: {
  42598. source: "./media/characters/zorkaiju/crystal.svg"
  42599. }
  42600. },
  42601. },
  42602. [
  42603. {
  42604. name: "Kaiju",
  42605. height: math.unit(325, "feet"),
  42606. default: true
  42607. },
  42608. ]
  42609. ))
  42610. characterMakers.push(() => makeCharacter(
  42611. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42612. {
  42613. front: {
  42614. height: math.unit(6 + 1/12, "feet"),
  42615. weight: math.unit(115, "lb"),
  42616. name: "Front",
  42617. image: {
  42618. source: "./media/characters/bailey-belfry/front.svg",
  42619. extra: 1240/1121,
  42620. bottom: 101/1341
  42621. }
  42622. },
  42623. },
  42624. [
  42625. {
  42626. name: "Normal",
  42627. height: math.unit(6 + 1/12, "feet"),
  42628. default: true
  42629. },
  42630. ]
  42631. ))
  42632. characterMakers.push(() => makeCharacter(
  42633. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42634. {
  42635. side: {
  42636. height: math.unit(4, "meters"),
  42637. weight: math.unit(250, "kg"),
  42638. name: "Side",
  42639. image: {
  42640. source: "./media/characters/blacky/side.svg",
  42641. extra: 1027/919,
  42642. bottom: 43/1070
  42643. }
  42644. },
  42645. maw: {
  42646. height: math.unit(1, "meters"),
  42647. name: "Maw",
  42648. image: {
  42649. source: "./media/characters/blacky/maw.svg"
  42650. }
  42651. },
  42652. paw: {
  42653. height: math.unit(1, "meters"),
  42654. name: "Paw",
  42655. image: {
  42656. source: "./media/characters/blacky/paw.svg"
  42657. }
  42658. },
  42659. },
  42660. [
  42661. {
  42662. name: "Normal",
  42663. height: math.unit(4, "meters"),
  42664. default: true
  42665. },
  42666. ]
  42667. ))
  42668. characterMakers.push(() => makeCharacter(
  42669. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42670. {
  42671. front: {
  42672. height: math.unit(170, "cm"),
  42673. weight: math.unit(66, "kg"),
  42674. name: "Front",
  42675. image: {
  42676. source: "./media/characters/thux-ei/front.svg",
  42677. extra: 1109/1011,
  42678. bottom: 8/1117
  42679. }
  42680. },
  42681. },
  42682. [
  42683. {
  42684. name: "Normal",
  42685. height: math.unit(170, "cm"),
  42686. default: true
  42687. },
  42688. ]
  42689. ))
  42690. characterMakers.push(() => makeCharacter(
  42691. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42692. {
  42693. front: {
  42694. height: math.unit(5, "feet"),
  42695. weight: math.unit(120, "lb"),
  42696. name: "Front",
  42697. image: {
  42698. source: "./media/characters/roxanne-voltaire/front.svg",
  42699. extra: 1901/1779,
  42700. bottom: 53/1954
  42701. }
  42702. },
  42703. },
  42704. [
  42705. {
  42706. name: "Normal",
  42707. height: math.unit(5, "feet"),
  42708. default: true
  42709. },
  42710. {
  42711. name: "Giant",
  42712. height: math.unit(50, "feet")
  42713. },
  42714. {
  42715. name: "Titan",
  42716. height: math.unit(500, "feet")
  42717. },
  42718. {
  42719. name: "Macro",
  42720. height: math.unit(5000, "feet")
  42721. },
  42722. {
  42723. name: "Megamacro",
  42724. height: math.unit(50000, "feet")
  42725. },
  42726. {
  42727. name: "Gigamacro",
  42728. height: math.unit(500000, "feet")
  42729. },
  42730. {
  42731. name: "Teramacro",
  42732. height: math.unit(5e6, "feet")
  42733. },
  42734. ]
  42735. ))
  42736. characterMakers.push(() => makeCharacter(
  42737. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42738. {
  42739. front: {
  42740. height: math.unit(6 + 2/12, "feet"),
  42741. name: "Front",
  42742. image: {
  42743. source: "./media/characters/squeaks/front.svg",
  42744. extra: 1823/1768,
  42745. bottom: 138/1961
  42746. }
  42747. },
  42748. },
  42749. [
  42750. {
  42751. name: "Micro",
  42752. height: math.unit(0.5, "inches")
  42753. },
  42754. {
  42755. name: "Normal",
  42756. height: math.unit(6 + 2/12, "feet"),
  42757. default: true
  42758. },
  42759. {
  42760. name: "Macro",
  42761. height: math.unit(600, "feet")
  42762. },
  42763. ]
  42764. ))
  42765. characterMakers.push(() => makeCharacter(
  42766. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42767. {
  42768. front: {
  42769. height: math.unit(1.72, "meters"),
  42770. name: "Front",
  42771. image: {
  42772. source: "./media/characters/archinger/front.svg",
  42773. extra: 1861/1675,
  42774. bottom: 125/1986
  42775. }
  42776. },
  42777. back: {
  42778. height: math.unit(1.72, "meters"),
  42779. name: "Back",
  42780. image: {
  42781. source: "./media/characters/archinger/back.svg",
  42782. extra: 1844/1701,
  42783. bottom: 104/1948
  42784. }
  42785. },
  42786. cock: {
  42787. height: math.unit(0.59, "feet"),
  42788. name: "Cock",
  42789. image: {
  42790. source: "./media/characters/archinger/cock.svg"
  42791. }
  42792. },
  42793. },
  42794. [
  42795. {
  42796. name: "Normal",
  42797. height: math.unit(1.72, "meters"),
  42798. default: true
  42799. },
  42800. {
  42801. name: "Macro",
  42802. height: math.unit(84, "meters")
  42803. },
  42804. {
  42805. name: "Macro+",
  42806. height: math.unit(112, "meters")
  42807. },
  42808. {
  42809. name: "Macro++",
  42810. height: math.unit(960, "meters")
  42811. },
  42812. {
  42813. name: "Macro+++",
  42814. height: math.unit(4, "km")
  42815. },
  42816. {
  42817. name: "Macro++++",
  42818. height: math.unit(48, "km")
  42819. },
  42820. {
  42821. name: "Macro+++++",
  42822. height: math.unit(4500, "km")
  42823. },
  42824. ]
  42825. ))
  42826. characterMakers.push(() => makeCharacter(
  42827. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42828. {
  42829. front: {
  42830. height: math.unit(5 + 5/12, "feet"),
  42831. name: "Front",
  42832. image: {
  42833. source: "./media/characters/alsnapz/front.svg",
  42834. extra: 1157/1065,
  42835. bottom: 42/1199
  42836. }
  42837. },
  42838. },
  42839. [
  42840. {
  42841. name: "Normal",
  42842. height: math.unit(5 + 5/12, "feet"),
  42843. default: true
  42844. },
  42845. ]
  42846. ))
  42847. characterMakers.push(() => makeCharacter(
  42848. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42849. {
  42850. side: {
  42851. height: math.unit(3.2, "earths"),
  42852. name: "Side",
  42853. image: {
  42854. source: "./media/characters/mag/side.svg",
  42855. extra: 1331/1008,
  42856. bottom: 52/1383
  42857. }
  42858. },
  42859. wing: {
  42860. height: math.unit(1.94, "earths"),
  42861. name: "Wing",
  42862. image: {
  42863. source: "./media/characters/mag/wing.svg"
  42864. }
  42865. },
  42866. dick: {
  42867. height: math.unit(1.8, "earths"),
  42868. name: "Dick",
  42869. image: {
  42870. source: "./media/characters/mag/dick.svg"
  42871. }
  42872. },
  42873. ass: {
  42874. height: math.unit(1.33, "earths"),
  42875. name: "Ass",
  42876. image: {
  42877. source: "./media/characters/mag/ass.svg"
  42878. }
  42879. },
  42880. head: {
  42881. height: math.unit(1.1, "earths"),
  42882. name: "Head",
  42883. image: {
  42884. source: "./media/characters/mag/head.svg"
  42885. }
  42886. },
  42887. maw: {
  42888. height: math.unit(1.62, "earths"),
  42889. name: "Maw",
  42890. image: {
  42891. source: "./media/characters/mag/maw.svg"
  42892. }
  42893. },
  42894. },
  42895. [
  42896. {
  42897. name: "Small",
  42898. height: math.unit(162, "feet")
  42899. },
  42900. {
  42901. name: "Normal",
  42902. height: math.unit(3.2, "earths"),
  42903. default: true
  42904. },
  42905. ]
  42906. ))
  42907. characterMakers.push(() => makeCharacter(
  42908. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42909. {
  42910. front: {
  42911. height: math.unit(512, "feet"),
  42912. weight: math.unit(63509, "tonnes"),
  42913. name: "Front",
  42914. image: {
  42915. source: "./media/characters/vorrel-harroc/front.svg",
  42916. extra: 1075/1063,
  42917. bottom: 62/1137
  42918. }
  42919. },
  42920. },
  42921. [
  42922. {
  42923. name: "Normal",
  42924. height: math.unit(10, "feet")
  42925. },
  42926. {
  42927. name: "Macro",
  42928. height: math.unit(512, "feet"),
  42929. default: true
  42930. },
  42931. {
  42932. name: "Megamacro",
  42933. height: math.unit(256, "miles")
  42934. },
  42935. {
  42936. name: "Gigamacro",
  42937. height: math.unit(4096, "miles")
  42938. },
  42939. ]
  42940. ))
  42941. characterMakers.push(() => makeCharacter(
  42942. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42943. {
  42944. side: {
  42945. height: math.unit(50, "feet"),
  42946. name: "Side",
  42947. image: {
  42948. source: "./media/characters/froimar/side.svg",
  42949. extra: 855/638,
  42950. bottom: 99/954
  42951. }
  42952. },
  42953. },
  42954. [
  42955. {
  42956. name: "Macro",
  42957. height: math.unit(50, "feet"),
  42958. default: true
  42959. },
  42960. ]
  42961. ))
  42962. characterMakers.push(() => makeCharacter(
  42963. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42964. {
  42965. front: {
  42966. height: math.unit(210, "miles"),
  42967. name: "Front",
  42968. image: {
  42969. source: "./media/characters/timothy/front.svg",
  42970. extra: 1007/943,
  42971. bottom: 62/1069
  42972. }
  42973. },
  42974. frontSkirt: {
  42975. height: math.unit(210, "miles"),
  42976. name: "Front (Skirt)",
  42977. image: {
  42978. source: "./media/characters/timothy/front-skirt.svg",
  42979. extra: 1007/943,
  42980. bottom: 62/1069
  42981. }
  42982. },
  42983. frontCoat: {
  42984. height: math.unit(210, "miles"),
  42985. name: "Front (Coat)",
  42986. image: {
  42987. source: "./media/characters/timothy/front-coat.svg",
  42988. extra: 1007/943,
  42989. bottom: 62/1069
  42990. }
  42991. },
  42992. },
  42993. [
  42994. {
  42995. name: "Macro",
  42996. height: math.unit(210, "miles"),
  42997. default: true
  42998. },
  42999. {
  43000. name: "Megamacro",
  43001. height: math.unit(210000, "miles")
  43002. },
  43003. ]
  43004. ))
  43005. characterMakers.push(() => makeCharacter(
  43006. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43007. {
  43008. front: {
  43009. height: math.unit(188, "feet"),
  43010. name: "Front",
  43011. image: {
  43012. source: "./media/characters/pyotr/front.svg",
  43013. extra: 1912/1826,
  43014. bottom: 18/1930
  43015. }
  43016. },
  43017. },
  43018. [
  43019. {
  43020. name: "Macro",
  43021. height: math.unit(188, "feet"),
  43022. default: true
  43023. },
  43024. {
  43025. name: "Megamacro",
  43026. height: math.unit(8, "miles")
  43027. },
  43028. ]
  43029. ))
  43030. characterMakers.push(() => makeCharacter(
  43031. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43032. {
  43033. side: {
  43034. height: math.unit(10, "feet"),
  43035. weight: math.unit(4500, "lb"),
  43036. name: "Side",
  43037. image: {
  43038. source: "./media/characters/ackart/side.svg",
  43039. extra: 1776/1668,
  43040. bottom: 116/1892
  43041. }
  43042. },
  43043. },
  43044. [
  43045. {
  43046. name: "Normal",
  43047. height: math.unit(10, "feet"),
  43048. default: true
  43049. },
  43050. ]
  43051. ))
  43052. characterMakers.push(() => makeCharacter(
  43053. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43054. {
  43055. side: {
  43056. height: math.unit(21, "feet"),
  43057. name: "Side",
  43058. image: {
  43059. source: "./media/characters/nolow/side.svg",
  43060. extra: 1484/1434,
  43061. bottom: 85/1569
  43062. }
  43063. },
  43064. sideErect: {
  43065. height: math.unit(21, "feet"),
  43066. name: "Side-erect",
  43067. image: {
  43068. source: "./media/characters/nolow/side-erect.svg",
  43069. extra: 1484/1434,
  43070. bottom: 85/1569
  43071. }
  43072. },
  43073. },
  43074. [
  43075. {
  43076. name: "Regular",
  43077. height: math.unit(12, "feet")
  43078. },
  43079. {
  43080. name: "Big Chee",
  43081. height: math.unit(21, "feet"),
  43082. default: true
  43083. },
  43084. ]
  43085. ))
  43086. characterMakers.push(() => makeCharacter(
  43087. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43088. {
  43089. front: {
  43090. height: math.unit(7, "feet"),
  43091. weight: math.unit(250, "lb"),
  43092. name: "Front",
  43093. image: {
  43094. source: "./media/characters/nines/front.svg",
  43095. extra: 1741/1607,
  43096. bottom: 41/1782
  43097. }
  43098. },
  43099. side: {
  43100. height: math.unit(7, "feet"),
  43101. weight: math.unit(250, "lb"),
  43102. name: "Side",
  43103. image: {
  43104. source: "./media/characters/nines/side.svg",
  43105. extra: 1854/1735,
  43106. bottom: 93/1947
  43107. }
  43108. },
  43109. back: {
  43110. height: math.unit(7, "feet"),
  43111. weight: math.unit(250, "lb"),
  43112. name: "Back",
  43113. image: {
  43114. source: "./media/characters/nines/back.svg",
  43115. extra: 1748/1615,
  43116. bottom: 20/1768
  43117. }
  43118. },
  43119. },
  43120. [
  43121. {
  43122. name: "Megamacro",
  43123. height: math.unit(99, "km"),
  43124. default: true
  43125. },
  43126. ]
  43127. ))
  43128. characterMakers.push(() => makeCharacter(
  43129. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43130. {
  43131. front: {
  43132. height: math.unit(5 + 10/12, "feet"),
  43133. weight: math.unit(210, "lb"),
  43134. name: "Front",
  43135. image: {
  43136. source: "./media/characters/zenith/front.svg",
  43137. extra: 1531/1452,
  43138. bottom: 198/1729
  43139. }
  43140. },
  43141. back: {
  43142. height: math.unit(5 + 10/12, "feet"),
  43143. weight: math.unit(210, "lb"),
  43144. name: "Back",
  43145. image: {
  43146. source: "./media/characters/zenith/back.svg",
  43147. extra: 1571/1487,
  43148. bottom: 75/1646
  43149. }
  43150. },
  43151. },
  43152. [
  43153. {
  43154. name: "Normal",
  43155. height: math.unit(5 + 10/12, "feet"),
  43156. default: true
  43157. }
  43158. ]
  43159. ))
  43160. characterMakers.push(() => makeCharacter(
  43161. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43162. {
  43163. front: {
  43164. height: math.unit(4, "feet"),
  43165. weight: math.unit(60, "lb"),
  43166. name: "Front",
  43167. image: {
  43168. source: "./media/characters/jasper/front.svg",
  43169. extra: 1450/1379,
  43170. bottom: 19/1469
  43171. }
  43172. },
  43173. },
  43174. [
  43175. {
  43176. name: "Normal",
  43177. height: math.unit(4, "feet"),
  43178. default: true
  43179. },
  43180. ]
  43181. ))
  43182. characterMakers.push(() => makeCharacter(
  43183. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43184. {
  43185. front: {
  43186. height: math.unit(6 + 5/12, "feet"),
  43187. weight: math.unit(290, "lb"),
  43188. name: "Front",
  43189. image: {
  43190. source: "./media/characters/tiberius-thyben/front.svg",
  43191. extra: 757/739,
  43192. bottom: 39/796
  43193. }
  43194. },
  43195. },
  43196. [
  43197. {
  43198. name: "Micro",
  43199. height: math.unit(1.5, "inches")
  43200. },
  43201. {
  43202. name: "Normal",
  43203. height: math.unit(6 + 5/12, "feet"),
  43204. default: true
  43205. },
  43206. {
  43207. name: "Macro",
  43208. height: math.unit(300, "feet")
  43209. },
  43210. ]
  43211. ))
  43212. characterMakers.push(() => makeCharacter(
  43213. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43214. {
  43215. front: {
  43216. height: math.unit(5 + 6/12, "feet"),
  43217. weight: math.unit(60, "kg"),
  43218. name: "Front",
  43219. image: {
  43220. source: "./media/characters/sabre/front.svg",
  43221. extra: 738/671,
  43222. bottom: 27/765
  43223. }
  43224. },
  43225. },
  43226. [
  43227. {
  43228. name: "Teeny",
  43229. height: math.unit(2, "inches")
  43230. },
  43231. {
  43232. name: "Smol",
  43233. height: math.unit(8, "inches")
  43234. },
  43235. {
  43236. name: "Normal",
  43237. height: math.unit(5 + 6/12, "feet"),
  43238. default: true
  43239. },
  43240. {
  43241. name: "Mini-Macro",
  43242. height: math.unit(15, "feet")
  43243. },
  43244. {
  43245. name: "Macro",
  43246. height: math.unit(50, "feet")
  43247. },
  43248. ]
  43249. ))
  43250. characterMakers.push(() => makeCharacter(
  43251. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43252. {
  43253. front: {
  43254. height: math.unit(6 + 4/12, "feet"),
  43255. weight: math.unit(170, "lb"),
  43256. name: "Front",
  43257. image: {
  43258. source: "./media/characters/charlie/front.svg",
  43259. extra: 1348/1228,
  43260. bottom: 15/1363
  43261. }
  43262. },
  43263. },
  43264. [
  43265. {
  43266. name: "Macro",
  43267. height: math.unit(1700, "meters"),
  43268. default: true
  43269. },
  43270. {
  43271. name: "MegaMacro",
  43272. height: math.unit(20400, "meters")
  43273. },
  43274. ]
  43275. ))
  43276. characterMakers.push(() => makeCharacter(
  43277. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43278. {
  43279. front: {
  43280. height: math.unit(6 + 3/12, "feet"),
  43281. weight: math.unit(185, "lb"),
  43282. name: "Front",
  43283. image: {
  43284. source: "./media/characters/susan-grant/front.svg",
  43285. extra: 1351/1327,
  43286. bottom: 26/1377
  43287. }
  43288. },
  43289. },
  43290. [
  43291. {
  43292. name: "Normal",
  43293. height: math.unit(6 + 3/12, "feet"),
  43294. default: true
  43295. },
  43296. {
  43297. name: "Macro",
  43298. height: math.unit(225, "feet")
  43299. },
  43300. {
  43301. name: "Macro+",
  43302. height: math.unit(900, "feet")
  43303. },
  43304. {
  43305. name: "MegaMacro",
  43306. height: math.unit(14400, "feet")
  43307. },
  43308. ]
  43309. ))
  43310. characterMakers.push(() => makeCharacter(
  43311. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43312. {
  43313. front: {
  43314. height: math.unit(5 + 4/12, "feet"),
  43315. weight: math.unit(110, "lb"),
  43316. name: "Front",
  43317. image: {
  43318. source: "./media/characters/axel-isanov/front.svg",
  43319. extra: 1096/1065,
  43320. bottom: 13/1109
  43321. }
  43322. },
  43323. },
  43324. [
  43325. {
  43326. name: "Normal",
  43327. height: math.unit(5 + 4/12, "feet"),
  43328. default: true
  43329. },
  43330. ]
  43331. ))
  43332. characterMakers.push(() => makeCharacter(
  43333. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43334. {
  43335. front: {
  43336. height: math.unit(9, "feet"),
  43337. weight: math.unit(467, "lb"),
  43338. name: "Front",
  43339. image: {
  43340. source: "./media/characters/necahual/front.svg",
  43341. extra: 920/873,
  43342. bottom: 26/946
  43343. }
  43344. },
  43345. back: {
  43346. height: math.unit(9, "feet"),
  43347. weight: math.unit(467, "lb"),
  43348. name: "Back",
  43349. image: {
  43350. source: "./media/characters/necahual/back.svg",
  43351. extra: 930/884,
  43352. bottom: 16/946
  43353. }
  43354. },
  43355. frontUnderwear: {
  43356. height: math.unit(9, "feet"),
  43357. weight: math.unit(467, "lb"),
  43358. name: "Front (Underwear)",
  43359. image: {
  43360. source: "./media/characters/necahual/front-underwear.svg",
  43361. extra: 920/873,
  43362. bottom: 26/946
  43363. }
  43364. },
  43365. frontDressed: {
  43366. height: math.unit(9, "feet"),
  43367. weight: math.unit(467, "lb"),
  43368. name: "Front (Dressed)",
  43369. image: {
  43370. source: "./media/characters/necahual/front-dressed.svg",
  43371. extra: 920/873,
  43372. bottom: 26/946
  43373. }
  43374. },
  43375. },
  43376. [
  43377. {
  43378. name: "Comprsesed",
  43379. height: math.unit(9, "feet")
  43380. },
  43381. {
  43382. name: "Natural",
  43383. height: math.unit(15, "feet"),
  43384. default: true
  43385. },
  43386. {
  43387. name: "Boosted",
  43388. height: math.unit(50, "feet")
  43389. },
  43390. {
  43391. name: "Boosted+",
  43392. height: math.unit(150, "feet")
  43393. },
  43394. {
  43395. name: "Max",
  43396. height: math.unit(500, "feet")
  43397. },
  43398. ]
  43399. ))
  43400. characterMakers.push(() => makeCharacter(
  43401. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43402. {
  43403. front: {
  43404. height: math.unit(22 + 1/12, "feet"),
  43405. weight: math.unit(3200, "lb"),
  43406. name: "Front",
  43407. image: {
  43408. source: "./media/characters/theo-acacia/front.svg",
  43409. extra: 1796/1741,
  43410. bottom: 83/1879
  43411. }
  43412. },
  43413. frontUnderwear: {
  43414. height: math.unit(22 + 1/12, "feet"),
  43415. weight: math.unit(3200, "lb"),
  43416. name: "Front (Underwear)",
  43417. image: {
  43418. source: "./media/characters/theo-acacia/front-underwear.svg",
  43419. extra: 1796/1741,
  43420. bottom: 83/1879
  43421. }
  43422. },
  43423. frontNude: {
  43424. height: math.unit(22 + 1/12, "feet"),
  43425. weight: math.unit(3200, "lb"),
  43426. name: "Front (Nude)",
  43427. image: {
  43428. source: "./media/characters/theo-acacia/front-nude.svg",
  43429. extra: 1796/1741,
  43430. bottom: 83/1879
  43431. }
  43432. },
  43433. },
  43434. [
  43435. {
  43436. name: "Normal",
  43437. height: math.unit(22 + 1/12, "feet"),
  43438. default: true
  43439. },
  43440. ]
  43441. ))
  43442. characterMakers.push(() => makeCharacter(
  43443. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43444. {
  43445. front: {
  43446. height: math.unit(20, "feet"),
  43447. name: "Front",
  43448. image: {
  43449. source: "./media/characters/astra/front.svg",
  43450. extra: 1850/1714,
  43451. bottom: 106/1956
  43452. }
  43453. },
  43454. frontUndressed: {
  43455. height: math.unit(20, "feet"),
  43456. name: "Front (Undressed)",
  43457. image: {
  43458. source: "./media/characters/astra/front-undressed.svg",
  43459. extra: 1926/1749,
  43460. bottom: 0/1926
  43461. }
  43462. },
  43463. hand: {
  43464. height: math.unit(1.53, "feet"),
  43465. name: "Hand",
  43466. image: {
  43467. source: "./media/characters/astra/hand.svg"
  43468. }
  43469. },
  43470. paw: {
  43471. height: math.unit(1.53, "feet"),
  43472. name: "Paw",
  43473. image: {
  43474. source: "./media/characters/astra/paw.svg"
  43475. }
  43476. },
  43477. },
  43478. [
  43479. {
  43480. name: "Smallest",
  43481. height: math.unit(20, "feet")
  43482. },
  43483. {
  43484. name: "Normal",
  43485. height: math.unit(1e9, "miles"),
  43486. default: true
  43487. },
  43488. {
  43489. name: "Larger",
  43490. height: math.unit(5, "multiverses")
  43491. },
  43492. {
  43493. name: "Largest",
  43494. height: math.unit(1e9, "multiverses")
  43495. },
  43496. ]
  43497. ))
  43498. characterMakers.push(() => makeCharacter(
  43499. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43500. {
  43501. front: {
  43502. height: math.unit(8, "feet"),
  43503. name: "Front",
  43504. image: {
  43505. source: "./media/characters/breanna/front.svg",
  43506. extra: 1912/1632,
  43507. bottom: 33/1945
  43508. }
  43509. },
  43510. },
  43511. [
  43512. {
  43513. name: "Smallest",
  43514. height: math.unit(8, "feet")
  43515. },
  43516. {
  43517. name: "Normal",
  43518. height: math.unit(1, "mile"),
  43519. default: true
  43520. },
  43521. {
  43522. name: "Maximum",
  43523. height: math.unit(1500000000000, "lightyears")
  43524. },
  43525. ]
  43526. ))
  43527. characterMakers.push(() => makeCharacter(
  43528. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43529. {
  43530. front: {
  43531. height: math.unit(5 + 11/12, "feet"),
  43532. weight: math.unit(155, "lb"),
  43533. name: "Front",
  43534. image: {
  43535. source: "./media/characters/cai/front.svg",
  43536. extra: 1823/1702,
  43537. bottom: 32/1855
  43538. }
  43539. },
  43540. back: {
  43541. height: math.unit(5 + 11/12, "feet"),
  43542. weight: math.unit(155, "lb"),
  43543. name: "Back",
  43544. image: {
  43545. source: "./media/characters/cai/back.svg",
  43546. extra: 1809/1708,
  43547. bottom: 31/1840
  43548. }
  43549. },
  43550. },
  43551. [
  43552. {
  43553. name: "Normal",
  43554. height: math.unit(5 + 11/12, "feet"),
  43555. default: true
  43556. },
  43557. {
  43558. name: "Big",
  43559. height: math.unit(15, "feet")
  43560. },
  43561. {
  43562. name: "Macro",
  43563. height: math.unit(200, "feet")
  43564. },
  43565. ]
  43566. ))
  43567. characterMakers.push(() => makeCharacter(
  43568. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43569. {
  43570. front: {
  43571. height: math.unit(5 + 6/12, "feet"),
  43572. weight: math.unit(160, "lb"),
  43573. name: "Front",
  43574. image: {
  43575. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43576. extra: 1227/1174,
  43577. bottom: 37/1264
  43578. }
  43579. },
  43580. },
  43581. [
  43582. {
  43583. name: "Macro",
  43584. height: math.unit(444, "meters"),
  43585. default: true
  43586. },
  43587. ]
  43588. ))
  43589. characterMakers.push(() => makeCharacter(
  43590. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43591. {
  43592. front: {
  43593. height: math.unit(18 + 7/12, "feet"),
  43594. name: "Front",
  43595. image: {
  43596. source: "./media/characters/rex/front.svg",
  43597. extra: 1941/1807,
  43598. bottom: 66/2007
  43599. }
  43600. },
  43601. back: {
  43602. height: math.unit(18 + 7/12, "feet"),
  43603. name: "Back",
  43604. image: {
  43605. source: "./media/characters/rex/back.svg",
  43606. extra: 1937/1822,
  43607. bottom: 42/1979
  43608. }
  43609. },
  43610. boot: {
  43611. height: math.unit(3.45, "feet"),
  43612. name: "Boot",
  43613. image: {
  43614. source: "./media/characters/rex/boot.svg"
  43615. }
  43616. },
  43617. paw: {
  43618. height: math.unit(4.17, "feet"),
  43619. name: "Paw",
  43620. image: {
  43621. source: "./media/characters/rex/paw.svg"
  43622. }
  43623. },
  43624. head: {
  43625. height: math.unit(6.728, "feet"),
  43626. name: "Head",
  43627. image: {
  43628. source: "./media/characters/rex/head.svg"
  43629. }
  43630. },
  43631. },
  43632. [
  43633. {
  43634. name: "Nano",
  43635. height: math.unit(18 + 7/12, "feet")
  43636. },
  43637. {
  43638. name: "Micro",
  43639. height: math.unit(1.5, "megameters")
  43640. },
  43641. {
  43642. name: "Normal",
  43643. height: math.unit(440, "megameters"),
  43644. default: true
  43645. },
  43646. {
  43647. name: "Macro",
  43648. height: math.unit(2.5, "gigameters")
  43649. },
  43650. {
  43651. name: "Gigamacro",
  43652. height: math.unit(2, "galaxies")
  43653. },
  43654. ]
  43655. ))
  43656. characterMakers.push(() => makeCharacter(
  43657. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43658. {
  43659. side: {
  43660. height: math.unit(32, "feet"),
  43661. weight: math.unit(250000, "lb"),
  43662. name: "Side",
  43663. image: {
  43664. source: "./media/characters/silverwing/side.svg",
  43665. extra: 1100/1019,
  43666. bottom: 204/1304
  43667. }
  43668. },
  43669. },
  43670. [
  43671. {
  43672. name: "Normal",
  43673. height: math.unit(32, "feet"),
  43674. default: true
  43675. },
  43676. ]
  43677. ))
  43678. characterMakers.push(() => makeCharacter(
  43679. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43680. {
  43681. front: {
  43682. height: math.unit(6 + 6/12, "feet"),
  43683. weight: math.unit(350, "lb"),
  43684. name: "Front",
  43685. image: {
  43686. source: "./media/characters/tristan-hawthorne/front.svg",
  43687. extra: 1159/1124,
  43688. bottom: 37/1196
  43689. },
  43690. form: "labrador",
  43691. default: true
  43692. },
  43693. skunkFront: {
  43694. height: math.unit(4 + 6/12, "feet"),
  43695. weight: math.unit(120, "lb"),
  43696. name: "Front",
  43697. image: {
  43698. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43699. extra: 1609/1551,
  43700. bottom: 169/1778
  43701. },
  43702. form: "skunk",
  43703. default: true
  43704. },
  43705. },
  43706. [
  43707. {
  43708. name: "Normal",
  43709. height: math.unit(6 + 6/12, "feet"),
  43710. form: "labrador",
  43711. default: true
  43712. },
  43713. {
  43714. name: "Normal",
  43715. height: math.unit(4 + 6/12, "feet"),
  43716. form: "skunk",
  43717. default: true
  43718. },
  43719. ],
  43720. {
  43721. "labrador": {
  43722. name: "Labrador",
  43723. default: true
  43724. },
  43725. "skunk": {
  43726. name: "Skunk"
  43727. }
  43728. }
  43729. ))
  43730. characterMakers.push(() => makeCharacter(
  43731. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43732. {
  43733. front: {
  43734. height: math.unit(5 + 11/12, "feet"),
  43735. weight: math.unit(190, "lb"),
  43736. name: "Front",
  43737. image: {
  43738. source: "./media/characters/mizu/front.svg",
  43739. extra: 1988/1788,
  43740. bottom: 14/2002
  43741. }
  43742. },
  43743. },
  43744. [
  43745. {
  43746. name: "Normal",
  43747. height: math.unit(5 + 11/12, "feet"),
  43748. default: true
  43749. },
  43750. ]
  43751. ))
  43752. characterMakers.push(() => makeCharacter(
  43753. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43754. {
  43755. front: {
  43756. height: math.unit(1.7, "feet"),
  43757. weight: math.unit(50, "lb"),
  43758. name: "Front",
  43759. image: {
  43760. source: "./media/characters/dechroma/front.svg",
  43761. extra: 1095/859,
  43762. bottom: 64/1159
  43763. }
  43764. },
  43765. },
  43766. [
  43767. {
  43768. name: "Normal",
  43769. height: math.unit(1.7, "feet"),
  43770. default: true
  43771. },
  43772. ]
  43773. ))
  43774. characterMakers.push(() => makeCharacter(
  43775. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43776. {
  43777. side: {
  43778. height: math.unit(30, "feet"),
  43779. name: "Side",
  43780. image: {
  43781. source: "./media/characters/veluren-thanazel/side.svg",
  43782. extra: 1611/633,
  43783. bottom: 118/1729
  43784. }
  43785. },
  43786. front: {
  43787. height: math.unit(30, "feet"),
  43788. name: "Front",
  43789. image: {
  43790. source: "./media/characters/veluren-thanazel/front.svg",
  43791. extra: 1486/636,
  43792. bottom: 238/1724
  43793. }
  43794. },
  43795. head: {
  43796. height: math.unit(21.4, "feet"),
  43797. name: "Head",
  43798. image: {
  43799. source: "./media/characters/veluren-thanazel/head.svg"
  43800. }
  43801. },
  43802. genitals: {
  43803. height: math.unit(19.4, "feet"),
  43804. name: "Genitals",
  43805. image: {
  43806. source: "./media/characters/veluren-thanazel/genitals.svg"
  43807. }
  43808. },
  43809. },
  43810. [
  43811. {
  43812. name: "Social",
  43813. height: math.unit(6, "feet")
  43814. },
  43815. {
  43816. name: "Play",
  43817. height: math.unit(12, "feet")
  43818. },
  43819. {
  43820. name: "True",
  43821. height: math.unit(30, "feet"),
  43822. default: true
  43823. },
  43824. ]
  43825. ))
  43826. characterMakers.push(() => makeCharacter(
  43827. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43828. {
  43829. front: {
  43830. height: math.unit(7 + 6/12, "feet"),
  43831. weight: math.unit(500, "kg"),
  43832. name: "Front",
  43833. image: {
  43834. source: "./media/characters/arcturas/front.svg",
  43835. extra: 1700/1500,
  43836. bottom: 145/1845
  43837. }
  43838. },
  43839. },
  43840. [
  43841. {
  43842. name: "Normal",
  43843. height: math.unit(7 + 6/12, "feet"),
  43844. default: true
  43845. },
  43846. ]
  43847. ))
  43848. characterMakers.push(() => makeCharacter(
  43849. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43850. {
  43851. side: {
  43852. height: math.unit(6, "feet"),
  43853. weight: math.unit(2, "tons"),
  43854. name: "Side",
  43855. image: {
  43856. source: "./media/characters/vitaen/side.svg",
  43857. extra: 1157/617,
  43858. bottom: 122/1279
  43859. }
  43860. },
  43861. },
  43862. [
  43863. {
  43864. name: "Normal",
  43865. height: math.unit(6, "feet"),
  43866. default: true
  43867. },
  43868. ]
  43869. ))
  43870. characterMakers.push(() => makeCharacter(
  43871. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43872. {
  43873. front: {
  43874. height: math.unit(19, "feet"),
  43875. name: "Front",
  43876. image: {
  43877. source: "./media/characters/fia-dreamweaver/front.svg",
  43878. extra: 1630/1504,
  43879. bottom: 25/1655
  43880. }
  43881. },
  43882. },
  43883. [
  43884. {
  43885. name: "Normal",
  43886. height: math.unit(19, "feet"),
  43887. default: true
  43888. },
  43889. ]
  43890. ))
  43891. characterMakers.push(() => makeCharacter(
  43892. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43893. {
  43894. front: {
  43895. height: math.unit(5 + 4/12, "feet"),
  43896. name: "Front",
  43897. image: {
  43898. source: "./media/characters/artan/front.svg",
  43899. extra: 1618/1535,
  43900. bottom: 46/1664
  43901. }
  43902. },
  43903. back: {
  43904. height: math.unit(5 + 4/12, "feet"),
  43905. name: "Back",
  43906. image: {
  43907. source: "./media/characters/artan/back.svg",
  43908. extra: 1618/1543,
  43909. bottom: 31/1649
  43910. }
  43911. },
  43912. },
  43913. [
  43914. {
  43915. name: "Normal",
  43916. height: math.unit(5 + 4/12, "feet"),
  43917. default: true
  43918. },
  43919. ]
  43920. ))
  43921. characterMakers.push(() => makeCharacter(
  43922. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43923. {
  43924. side: {
  43925. height: math.unit(182, "cm"),
  43926. weight: math.unit(1000, "lb"),
  43927. name: "Side",
  43928. image: {
  43929. source: "./media/characters/silver-dragon/side.svg",
  43930. extra: 710/287,
  43931. bottom: 88/798
  43932. }
  43933. },
  43934. },
  43935. [
  43936. {
  43937. name: "Normal",
  43938. height: math.unit(182, "cm"),
  43939. default: true
  43940. },
  43941. ]
  43942. ))
  43943. characterMakers.push(() => makeCharacter(
  43944. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43945. {
  43946. side: {
  43947. height: math.unit(6 + 6/12, "feet"),
  43948. weight: math.unit(1.5, "tons"),
  43949. name: "Side",
  43950. image: {
  43951. source: "./media/characters/zephyr/side.svg",
  43952. extra: 1433/586,
  43953. bottom: 109/1542
  43954. }
  43955. },
  43956. },
  43957. [
  43958. {
  43959. name: "Normal",
  43960. height: math.unit(6 + 6/12, "feet"),
  43961. default: true
  43962. },
  43963. ]
  43964. ))
  43965. characterMakers.push(() => makeCharacter(
  43966. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43967. {
  43968. side: {
  43969. height: math.unit(1, "feet"),
  43970. name: "Side",
  43971. image: {
  43972. source: "./media/characters/vixye/side.svg",
  43973. extra: 632/541,
  43974. bottom: 0/632
  43975. }
  43976. },
  43977. },
  43978. [
  43979. {
  43980. name: "Normal",
  43981. height: math.unit(1, "feet"),
  43982. default: true
  43983. },
  43984. {
  43985. name: "True",
  43986. height: math.unit(1e15, "multiverses")
  43987. },
  43988. ]
  43989. ))
  43990. characterMakers.push(() => makeCharacter(
  43991. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43992. {
  43993. front: {
  43994. height: math.unit(8 + 2/12, "feet"),
  43995. weight: math.unit(650, "lb"),
  43996. name: "Front",
  43997. image: {
  43998. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43999. extra: 1174/1137,
  44000. bottom: 82/1256
  44001. }
  44002. },
  44003. back: {
  44004. height: math.unit(8 + 2/12, "feet"),
  44005. weight: math.unit(650, "lb"),
  44006. name: "Back",
  44007. image: {
  44008. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44009. extra: 1204/1157,
  44010. bottom: 46/1250
  44011. }
  44012. },
  44013. },
  44014. [
  44015. {
  44016. name: "Wildform",
  44017. height: math.unit(8 + 2/12, "feet"),
  44018. default: true
  44019. },
  44020. ]
  44021. ))
  44022. characterMakers.push(() => makeCharacter(
  44023. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44024. {
  44025. front: {
  44026. height: math.unit(18, "feet"),
  44027. name: "Front",
  44028. image: {
  44029. source: "./media/characters/cyphin/front.svg",
  44030. extra: 970/886,
  44031. bottom: 42/1012
  44032. }
  44033. },
  44034. back: {
  44035. height: math.unit(18, "feet"),
  44036. name: "Back",
  44037. image: {
  44038. source: "./media/characters/cyphin/back.svg",
  44039. extra: 1009/894,
  44040. bottom: 24/1033
  44041. }
  44042. },
  44043. head: {
  44044. height: math.unit(5.05, "feet"),
  44045. name: "Head",
  44046. image: {
  44047. source: "./media/characters/cyphin/head.svg"
  44048. }
  44049. },
  44050. tailbud: {
  44051. height: math.unit(5, "feet"),
  44052. name: "Tailbud",
  44053. image: {
  44054. source: "./media/characters/cyphin/tailbud.svg"
  44055. }
  44056. },
  44057. },
  44058. [
  44059. ]
  44060. ))
  44061. characterMakers.push(() => makeCharacter(
  44062. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44063. {
  44064. side: {
  44065. height: math.unit(10, "feet"),
  44066. weight: math.unit(6, "tons"),
  44067. name: "Side",
  44068. image: {
  44069. source: "./media/characters/raijin/side.svg",
  44070. extra: 1529/613,
  44071. bottom: 337/1866
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Normal",
  44078. height: math.unit(10, "feet"),
  44079. default: true
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44085. {
  44086. side: {
  44087. height: math.unit(9, "feet"),
  44088. name: "Side",
  44089. image: {
  44090. source: "./media/characters/nilghais/side.svg",
  44091. extra: 1047/744,
  44092. bottom: 91/1138
  44093. }
  44094. },
  44095. head: {
  44096. height: math.unit(3.14, "feet"),
  44097. name: "Head",
  44098. image: {
  44099. source: "./media/characters/nilghais/head.svg"
  44100. }
  44101. },
  44102. mouth: {
  44103. height: math.unit(4.6, "feet"),
  44104. name: "Mouth",
  44105. image: {
  44106. source: "./media/characters/nilghais/mouth.svg"
  44107. }
  44108. },
  44109. wings: {
  44110. height: math.unit(24, "feet"),
  44111. name: "Wings",
  44112. image: {
  44113. source: "./media/characters/nilghais/wings.svg"
  44114. }
  44115. },
  44116. ass: {
  44117. height: math.unit(6.12, "feet"),
  44118. name: "Ass",
  44119. image: {
  44120. source: "./media/characters/nilghais/ass.svg"
  44121. }
  44122. },
  44123. },
  44124. [
  44125. {
  44126. name: "Normal",
  44127. height: math.unit(9, "feet"),
  44128. default: true
  44129. },
  44130. ]
  44131. ))
  44132. characterMakers.push(() => makeCharacter(
  44133. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44134. {
  44135. regular: {
  44136. height: math.unit(16 + 2/12, "feet"),
  44137. weight: math.unit(2300, "lb"),
  44138. name: "Regular",
  44139. image: {
  44140. source: "./media/characters/zolgar/regular.svg",
  44141. extra: 1246/1004,
  44142. bottom: 124/1370
  44143. }
  44144. },
  44145. boxers: {
  44146. height: math.unit(16 + 2/12, "feet"),
  44147. weight: math.unit(2300, "lb"),
  44148. name: "Boxers",
  44149. image: {
  44150. source: "./media/characters/zolgar/boxers.svg",
  44151. extra: 1246/1004,
  44152. bottom: 124/1370
  44153. }
  44154. },
  44155. armored: {
  44156. height: math.unit(16 + 2/12, "feet"),
  44157. weight: math.unit(2300, "lb"),
  44158. name: "Armored",
  44159. image: {
  44160. source: "./media/characters/zolgar/armored.svg",
  44161. extra: 1246/1004,
  44162. bottom: 124/1370
  44163. }
  44164. },
  44165. goth: {
  44166. height: math.unit(16 + 2/12, "feet"),
  44167. weight: math.unit(2300, "lb"),
  44168. name: "Goth",
  44169. image: {
  44170. source: "./media/characters/zolgar/goth.svg",
  44171. extra: 1246/1004,
  44172. bottom: 124/1370
  44173. }
  44174. },
  44175. },
  44176. [
  44177. {
  44178. name: "Shrunken Down",
  44179. height: math.unit(9 + 2/12, "feet")
  44180. },
  44181. {
  44182. name: "Normal",
  44183. height: math.unit(16 + 2/12, "feet"),
  44184. default: true
  44185. },
  44186. ]
  44187. ))
  44188. characterMakers.push(() => makeCharacter(
  44189. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44190. {
  44191. front: {
  44192. height: math.unit(6, "feet"),
  44193. weight: math.unit(168, "lb"),
  44194. name: "Front",
  44195. image: {
  44196. source: "./media/characters/luca/front.svg",
  44197. extra: 841/667,
  44198. bottom: 102/943
  44199. }
  44200. },
  44201. },
  44202. [
  44203. {
  44204. name: "Normal",
  44205. height: math.unit(6, "feet"),
  44206. default: true
  44207. },
  44208. ]
  44209. ))
  44210. characterMakers.push(() => makeCharacter(
  44211. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44212. {
  44213. side: {
  44214. height: math.unit(7 + 3/12, "feet"),
  44215. weight: math.unit(312, "lb"),
  44216. name: "Side",
  44217. image: {
  44218. source: "./media/characters/zezo/side.svg",
  44219. extra: 1192/1067,
  44220. bottom: 63/1255
  44221. }
  44222. },
  44223. },
  44224. [
  44225. {
  44226. name: "Normal",
  44227. height: math.unit(7 + 3/12, "feet"),
  44228. default: true
  44229. },
  44230. ]
  44231. ))
  44232. characterMakers.push(() => makeCharacter(
  44233. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44234. {
  44235. front: {
  44236. height: math.unit(5 + 5/12, "feet"),
  44237. weight: math.unit(170, "lb"),
  44238. name: "Front",
  44239. image: {
  44240. source: "./media/characters/mayso/front.svg",
  44241. extra: 1215/1108,
  44242. bottom: 16/1231
  44243. }
  44244. },
  44245. },
  44246. [
  44247. {
  44248. name: "Normal",
  44249. height: math.unit(5 + 5/12, "feet"),
  44250. default: true
  44251. },
  44252. ]
  44253. ))
  44254. characterMakers.push(() => makeCharacter(
  44255. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44256. {
  44257. front: {
  44258. height: math.unit(4 + 3/12, "feet"),
  44259. weight: math.unit(80, "lb"),
  44260. name: "Front",
  44261. image: {
  44262. source: "./media/characters/hess/front.svg",
  44263. extra: 1200/1123,
  44264. bottom: 16/1216
  44265. }
  44266. },
  44267. },
  44268. [
  44269. {
  44270. name: "Normal",
  44271. height: math.unit(4 + 3/12, "feet"),
  44272. default: true
  44273. },
  44274. ]
  44275. ))
  44276. characterMakers.push(() => makeCharacter(
  44277. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44278. {
  44279. front: {
  44280. height: math.unit(1.9, "meters"),
  44281. name: "Front",
  44282. image: {
  44283. source: "./media/characters/ashgar/front.svg",
  44284. extra: 1177/1146,
  44285. bottom: 99/1276
  44286. }
  44287. },
  44288. back: {
  44289. height: math.unit(1.9, "meters"),
  44290. name: "Back",
  44291. image: {
  44292. source: "./media/characters/ashgar/back.svg",
  44293. extra: 1201/1183,
  44294. bottom: 53/1254
  44295. }
  44296. },
  44297. feral: {
  44298. height: math.unit(1.4, "meters"),
  44299. name: "Feral",
  44300. image: {
  44301. source: "./media/characters/ashgar/feral.svg",
  44302. extra: 370/345,
  44303. bottom: 45/415
  44304. }
  44305. },
  44306. },
  44307. [
  44308. {
  44309. name: "Normal",
  44310. height: math.unit(1.9, "meters"),
  44311. default: true
  44312. },
  44313. ]
  44314. ))
  44315. characterMakers.push(() => makeCharacter(
  44316. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44317. {
  44318. regular: {
  44319. height: math.unit(6, "feet"),
  44320. weight: math.unit(220, "lb"),
  44321. name: "Regular",
  44322. image: {
  44323. source: "./media/characters/phillip/regular.svg",
  44324. extra: 1373/1277,
  44325. bottom: 75/1448
  44326. }
  44327. },
  44328. dressed: {
  44329. height: math.unit(6, "feet"),
  44330. weight: math.unit(220, "lb"),
  44331. name: "Dressed",
  44332. image: {
  44333. source: "./media/characters/phillip/dressed.svg",
  44334. extra: 1373/1277,
  44335. bottom: 75/1448
  44336. }
  44337. },
  44338. paw: {
  44339. height: math.unit(1.44, "feet"),
  44340. name: "Paw",
  44341. image: {
  44342. source: "./media/characters/phillip/paw.svg"
  44343. }
  44344. },
  44345. },
  44346. [
  44347. {
  44348. name: "Normal",
  44349. height: math.unit(6, "feet"),
  44350. default: true
  44351. },
  44352. ]
  44353. ))
  44354. characterMakers.push(() => makeCharacter(
  44355. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44356. {
  44357. side: {
  44358. height: math.unit(42, "feet"),
  44359. name: "Side",
  44360. image: {
  44361. source: "./media/characters/uvula/side.svg",
  44362. extra: 683/586,
  44363. bottom: 60/743
  44364. }
  44365. },
  44366. front: {
  44367. height: math.unit(42, "feet"),
  44368. name: "Front",
  44369. image: {
  44370. source: "./media/characters/uvula/front.svg",
  44371. extra: 705/613,
  44372. bottom: 54/759
  44373. }
  44374. },
  44375. maw: {
  44376. height: math.unit(23.5, "feet"),
  44377. name: "Maw",
  44378. image: {
  44379. source: "./media/characters/uvula/maw.svg"
  44380. }
  44381. },
  44382. },
  44383. [
  44384. {
  44385. name: "Original Size",
  44386. height: math.unit(14, "inches")
  44387. },
  44388. {
  44389. name: "Human Size",
  44390. height: math.unit(6, "feet")
  44391. },
  44392. {
  44393. name: "Big",
  44394. height: math.unit(42, "feet"),
  44395. default: true
  44396. },
  44397. {
  44398. name: "Bigger",
  44399. height: math.unit(100, "feet")
  44400. },
  44401. ]
  44402. ))
  44403. characterMakers.push(() => makeCharacter(
  44404. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44405. {
  44406. front: {
  44407. height: math.unit(5 + 11/12, "feet"),
  44408. name: "Front",
  44409. image: {
  44410. source: "./media/characters/lannah/front.svg",
  44411. extra: 1208/1113,
  44412. bottom: 97/1305
  44413. }
  44414. },
  44415. },
  44416. [
  44417. {
  44418. name: "Normal",
  44419. height: math.unit(5 + 11/12, "feet"),
  44420. default: true
  44421. },
  44422. ]
  44423. ))
  44424. characterMakers.push(() => makeCharacter(
  44425. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44426. {
  44427. front: {
  44428. height: math.unit(6 + 3/12, "feet"),
  44429. weight: math.unit(3.5, "tons"),
  44430. name: "Front",
  44431. image: {
  44432. source: "./media/characters/emberflame/front.svg",
  44433. extra: 1198/672,
  44434. bottom: 82/1280
  44435. }
  44436. },
  44437. side: {
  44438. height: math.unit(6 + 3/12, "feet"),
  44439. weight: math.unit(3.5, "tons"),
  44440. name: "Side",
  44441. image: {
  44442. source: "./media/characters/emberflame/side.svg",
  44443. extra: 938/527,
  44444. bottom: 56/994
  44445. }
  44446. },
  44447. },
  44448. [
  44449. {
  44450. name: "Normal",
  44451. height: math.unit(6 + 3/12, "feet"),
  44452. default: true
  44453. },
  44454. ]
  44455. ))
  44456. characterMakers.push(() => makeCharacter(
  44457. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44458. {
  44459. side: {
  44460. height: math.unit(17.5, "feet"),
  44461. weight: math.unit(35, "tons"),
  44462. name: "Side",
  44463. image: {
  44464. source: "./media/characters/sophie-ambrose/side.svg",
  44465. extra: 1573/1242,
  44466. bottom: 71/1644
  44467. }
  44468. },
  44469. maw: {
  44470. height: math.unit(7.4, "feet"),
  44471. name: "Maw",
  44472. image: {
  44473. source: "./media/characters/sophie-ambrose/maw.svg"
  44474. }
  44475. },
  44476. },
  44477. [
  44478. {
  44479. name: "Normal",
  44480. height: math.unit(17.5, "feet"),
  44481. default: true
  44482. },
  44483. ]
  44484. ))
  44485. characterMakers.push(() => makeCharacter(
  44486. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44487. {
  44488. front: {
  44489. height: math.unit(280, "feet"),
  44490. weight: math.unit(550, "tons"),
  44491. name: "Front",
  44492. image: {
  44493. source: "./media/characters/king-mugi/front.svg",
  44494. extra: 1102/947,
  44495. bottom: 104/1206
  44496. }
  44497. },
  44498. },
  44499. [
  44500. {
  44501. name: "King Mugi",
  44502. height: math.unit(280, "feet"),
  44503. default: true
  44504. },
  44505. ]
  44506. ))
  44507. characterMakers.push(() => makeCharacter(
  44508. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44509. {
  44510. front: {
  44511. height: math.unit(64, "meters"),
  44512. name: "Front",
  44513. image: {
  44514. source: "./media/characters/nova-fox/front.svg",
  44515. extra: 1310/1246,
  44516. bottom: 65/1375
  44517. }
  44518. },
  44519. },
  44520. [
  44521. {
  44522. name: "Macro",
  44523. height: math.unit(64, "meters"),
  44524. default: true
  44525. },
  44526. ]
  44527. ))
  44528. characterMakers.push(() => makeCharacter(
  44529. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44530. {
  44531. front: {
  44532. height: math.unit(6 + 3/12, "feet"),
  44533. weight: math.unit(170, "lb"),
  44534. name: "Front",
  44535. image: {
  44536. source: "./media/characters/sam-bat/front.svg",
  44537. extra: 1601/1411,
  44538. bottom: 125/1726
  44539. }
  44540. },
  44541. back: {
  44542. height: math.unit(6 + 3/12, "feet"),
  44543. weight: math.unit(170, "lb"),
  44544. name: "Back",
  44545. image: {
  44546. source: "./media/characters/sam-bat/back.svg",
  44547. extra: 1577/1405,
  44548. bottom: 58/1635
  44549. }
  44550. },
  44551. },
  44552. [
  44553. {
  44554. name: "Normal",
  44555. height: math.unit(6 + 3/12, "feet"),
  44556. default: true
  44557. },
  44558. ]
  44559. ))
  44560. characterMakers.push(() => makeCharacter(
  44561. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44562. {
  44563. front: {
  44564. height: math.unit(59, "feet"),
  44565. weight: math.unit(40000, "lb"),
  44566. name: "Front",
  44567. image: {
  44568. source: "./media/characters/inari/front.svg",
  44569. extra: 1884/1350,
  44570. bottom: 95/1979
  44571. }
  44572. },
  44573. },
  44574. [
  44575. {
  44576. name: "Gigantamax",
  44577. height: math.unit(59, "feet"),
  44578. default: true
  44579. },
  44580. ]
  44581. ))
  44582. characterMakers.push(() => makeCharacter(
  44583. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44584. {
  44585. front: {
  44586. height: math.unit(5 + 8/12, "feet"),
  44587. name: "Front",
  44588. image: {
  44589. source: "./media/characters/elizabeth/front.svg",
  44590. extra: 1395/1298,
  44591. bottom: 54/1449
  44592. }
  44593. },
  44594. mouth: {
  44595. height: math.unit(1.97, "feet"),
  44596. name: "Mouth",
  44597. image: {
  44598. source: "./media/characters/elizabeth/mouth.svg"
  44599. }
  44600. },
  44601. foot: {
  44602. height: math.unit(1.17, "feet"),
  44603. name: "Foot",
  44604. image: {
  44605. source: "./media/characters/elizabeth/foot.svg"
  44606. }
  44607. },
  44608. },
  44609. [
  44610. {
  44611. name: "Normal",
  44612. height: math.unit(5 + 8/12, "feet"),
  44613. default: true
  44614. },
  44615. {
  44616. name: "Minimacro",
  44617. height: math.unit(18, "feet")
  44618. },
  44619. {
  44620. name: "Macro",
  44621. height: math.unit(180, "feet")
  44622. },
  44623. ]
  44624. ))
  44625. characterMakers.push(() => makeCharacter(
  44626. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44627. {
  44628. front: {
  44629. height: math.unit(5 + 2/12, "feet"),
  44630. name: "Front",
  44631. image: {
  44632. source: "./media/characters/october-gossamer/front.svg",
  44633. extra: 505/454,
  44634. bottom: 7/512
  44635. }
  44636. },
  44637. back: {
  44638. height: math.unit(5 + 2/12, "feet"),
  44639. name: "Back",
  44640. image: {
  44641. source: "./media/characters/october-gossamer/back.svg",
  44642. extra: 501/454,
  44643. bottom: 11/512
  44644. }
  44645. },
  44646. },
  44647. [
  44648. {
  44649. name: "Normal",
  44650. height: math.unit(5 + 2/12, "feet"),
  44651. default: true
  44652. },
  44653. ]
  44654. ))
  44655. characterMakers.push(() => makeCharacter(
  44656. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44657. {
  44658. front: {
  44659. height: math.unit(5, "feet"),
  44660. name: "Front",
  44661. image: {
  44662. source: "./media/characters/epiglottis/front.svg",
  44663. extra: 923/849,
  44664. bottom: 17/940
  44665. }
  44666. },
  44667. },
  44668. [
  44669. {
  44670. name: "Original Size",
  44671. height: math.unit(10, "inches")
  44672. },
  44673. {
  44674. name: "Human Size",
  44675. height: math.unit(5, "feet"),
  44676. default: true
  44677. },
  44678. {
  44679. name: "Big",
  44680. height: math.unit(25, "feet")
  44681. },
  44682. {
  44683. name: "Bigger",
  44684. height: math.unit(50, "feet")
  44685. },
  44686. {
  44687. name: "oh lawd",
  44688. height: math.unit(75, "feet")
  44689. },
  44690. ]
  44691. ))
  44692. characterMakers.push(() => makeCharacter(
  44693. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44694. {
  44695. front: {
  44696. height: math.unit(2 + 4/12, "feet"),
  44697. weight: math.unit(60, "lb"),
  44698. name: "Front",
  44699. image: {
  44700. source: "./media/characters/lerm/front.svg",
  44701. extra: 796/790,
  44702. bottom: 79/875
  44703. }
  44704. },
  44705. },
  44706. [
  44707. {
  44708. name: "Normal",
  44709. height: math.unit(2 + 4/12, "feet"),
  44710. default: true
  44711. },
  44712. ]
  44713. ))
  44714. characterMakers.push(() => makeCharacter(
  44715. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44716. {
  44717. front: {
  44718. height: math.unit(5.5, "feet"),
  44719. weight: math.unit(130, "lb"),
  44720. name: "Front",
  44721. image: {
  44722. source: "./media/characters/xena-nebadon/front.svg",
  44723. extra: 1828/1730,
  44724. bottom: 79/1907
  44725. }
  44726. },
  44727. },
  44728. [
  44729. {
  44730. name: "Tiny Puppy",
  44731. height: math.unit(3, "inches")
  44732. },
  44733. {
  44734. name: "Normal",
  44735. height: math.unit(5.5, "feet"),
  44736. default: true
  44737. },
  44738. {
  44739. name: "Lotta Lady",
  44740. height: math.unit(12, "feet")
  44741. },
  44742. {
  44743. name: "Pretty Big",
  44744. height: math.unit(100, "feet")
  44745. },
  44746. {
  44747. name: "Big",
  44748. height: math.unit(500, "feet")
  44749. },
  44750. {
  44751. name: "Skyscraper Toys",
  44752. height: math.unit(2500, "feet")
  44753. },
  44754. {
  44755. name: "Plane Catcher",
  44756. height: math.unit(8, "miles")
  44757. },
  44758. {
  44759. name: "Planet Toys",
  44760. height: math.unit(15, "earths")
  44761. },
  44762. {
  44763. name: "Stardust",
  44764. height: math.unit(0.25, "galaxies")
  44765. },
  44766. {
  44767. name: "Snacks",
  44768. height: math.unit(70, "universes")
  44769. },
  44770. ]
  44771. ))
  44772. characterMakers.push(() => makeCharacter(
  44773. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44774. {
  44775. front: {
  44776. height: math.unit(1.6, "meters"),
  44777. weight: math.unit(60, "kg"),
  44778. name: "Front",
  44779. image: {
  44780. source: "./media/characters/bounty/front.svg",
  44781. extra: 1426/1308,
  44782. bottom: 15/1441
  44783. }
  44784. },
  44785. back: {
  44786. height: math.unit(1.6, "meters"),
  44787. weight: math.unit(60, "kg"),
  44788. name: "Back",
  44789. image: {
  44790. source: "./media/characters/bounty/back.svg",
  44791. extra: 1417/1307,
  44792. bottom: 8/1425
  44793. }
  44794. },
  44795. },
  44796. [
  44797. {
  44798. name: "Normal",
  44799. height: math.unit(1.6, "meters"),
  44800. default: true
  44801. },
  44802. {
  44803. name: "Macro",
  44804. height: math.unit(300, "meters")
  44805. },
  44806. ]
  44807. ))
  44808. characterMakers.push(() => makeCharacter(
  44809. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44810. {
  44811. front: {
  44812. height: math.unit(2 + 8/12, "feet"),
  44813. weight: math.unit(15, "lb"),
  44814. name: "Front",
  44815. image: {
  44816. source: "./media/characters/mochi/front.svg",
  44817. extra: 1022/852,
  44818. bottom: 435/1457
  44819. }
  44820. },
  44821. back: {
  44822. height: math.unit(2 + 8/12, "feet"),
  44823. weight: math.unit(15, "lb"),
  44824. name: "Back",
  44825. image: {
  44826. source: "./media/characters/mochi/back.svg",
  44827. extra: 1335/1119,
  44828. bottom: 39/1374
  44829. }
  44830. },
  44831. bird: {
  44832. height: math.unit(2 + 8/12, "feet"),
  44833. weight: math.unit(15, "lb"),
  44834. name: "Bird",
  44835. image: {
  44836. source: "./media/characters/mochi/bird.svg",
  44837. extra: 1251/1113,
  44838. bottom: 178/1429
  44839. }
  44840. },
  44841. kaiju: {
  44842. height: math.unit(154, "feet"),
  44843. weight: math.unit(1e7, "lb"),
  44844. name: "Kaiju",
  44845. image: {
  44846. source: "./media/characters/mochi/kaiju.svg",
  44847. extra: 460/324,
  44848. bottom: 40/500
  44849. }
  44850. },
  44851. head: {
  44852. height: math.unit(1.21, "feet"),
  44853. name: "Head",
  44854. image: {
  44855. source: "./media/characters/mochi/head.svg"
  44856. }
  44857. },
  44858. alternateTail: {
  44859. height: math.unit(2 + 8/12, "feet"),
  44860. weight: math.unit(45, "lb"),
  44861. name: "Alternate Tail",
  44862. image: {
  44863. source: "./media/characters/mochi/alternate-tail.svg",
  44864. extra: 139/76,
  44865. bottom: 45/184
  44866. }
  44867. },
  44868. },
  44869. [
  44870. {
  44871. name: "Micro",
  44872. height: math.unit(2, "inches")
  44873. },
  44874. {
  44875. name: "Normal",
  44876. height: math.unit(2 + 8/12, "feet"),
  44877. default: true
  44878. },
  44879. {
  44880. name: "Macro",
  44881. height: math.unit(106, "feet")
  44882. },
  44883. ]
  44884. ))
  44885. characterMakers.push(() => makeCharacter(
  44886. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44887. {
  44888. front: {
  44889. height: math.unit(5.67, "feet"),
  44890. weight: math.unit(135, "lb"),
  44891. name: "Front",
  44892. image: {
  44893. source: "./media/characters/sarel/front.svg",
  44894. extra: 865/788,
  44895. bottom: 97/962
  44896. }
  44897. },
  44898. back: {
  44899. height: math.unit(5.67, "feet"),
  44900. weight: math.unit(135, "lb"),
  44901. name: "Back",
  44902. image: {
  44903. source: "./media/characters/sarel/back.svg",
  44904. extra: 857/777,
  44905. bottom: 32/889
  44906. }
  44907. },
  44908. chozoan: {
  44909. height: math.unit(5.67, "feet"),
  44910. weight: math.unit(135, "lb"),
  44911. name: "Chozoan",
  44912. image: {
  44913. source: "./media/characters/sarel/chozoan.svg",
  44914. extra: 865/788,
  44915. bottom: 97/962
  44916. }
  44917. },
  44918. current: {
  44919. height: math.unit(5.67, "feet"),
  44920. weight: math.unit(135, "lb"),
  44921. name: "Current",
  44922. image: {
  44923. source: "./media/characters/sarel/current.svg",
  44924. extra: 865/788,
  44925. bottom: 97/962
  44926. }
  44927. },
  44928. head: {
  44929. height: math.unit(1.77, "feet"),
  44930. name: "Head",
  44931. image: {
  44932. source: "./media/characters/sarel/head.svg"
  44933. }
  44934. },
  44935. claws: {
  44936. height: math.unit(1.8, "feet"),
  44937. name: "Claws",
  44938. image: {
  44939. source: "./media/characters/sarel/claws.svg"
  44940. }
  44941. },
  44942. clawsAlt: {
  44943. height: math.unit(1.8, "feet"),
  44944. name: "Claws-alt",
  44945. image: {
  44946. source: "./media/characters/sarel/claws-alt.svg"
  44947. }
  44948. },
  44949. },
  44950. [
  44951. {
  44952. name: "Normal",
  44953. height: math.unit(5.67, "feet"),
  44954. default: true
  44955. },
  44956. ]
  44957. ))
  44958. characterMakers.push(() => makeCharacter(
  44959. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44960. {
  44961. front: {
  44962. height: math.unit(5500, "feet"),
  44963. name: "Front",
  44964. image: {
  44965. source: "./media/characters/alyonia/front.svg",
  44966. extra: 1200/1135,
  44967. bottom: 29/1229
  44968. }
  44969. },
  44970. back: {
  44971. height: math.unit(5500, "feet"),
  44972. name: "Back",
  44973. image: {
  44974. source: "./media/characters/alyonia/back.svg",
  44975. extra: 1205/1138,
  44976. bottom: 10/1215
  44977. }
  44978. },
  44979. },
  44980. [
  44981. {
  44982. name: "Small",
  44983. height: math.unit(10, "feet")
  44984. },
  44985. {
  44986. name: "Macro",
  44987. height: math.unit(500, "feet")
  44988. },
  44989. {
  44990. name: "Mega Macro",
  44991. height: math.unit(5500, "feet"),
  44992. default: true
  44993. },
  44994. {
  44995. name: "Mega Macro+",
  44996. height: math.unit(500000, "feet")
  44997. },
  44998. {
  44999. name: "Giga Macro",
  45000. height: math.unit(3000, "miles")
  45001. },
  45002. {
  45003. name: "Tera Macro",
  45004. height: math.unit(2.8e6, "miles")
  45005. },
  45006. {
  45007. name: "Galactic",
  45008. height: math.unit(120000, "lightyears")
  45009. },
  45010. ]
  45011. ))
  45012. characterMakers.push(() => makeCharacter(
  45013. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45014. {
  45015. werewolf: {
  45016. height: math.unit(8, "feet"),
  45017. weight: math.unit(425, "lb"),
  45018. name: "Werewolf",
  45019. image: {
  45020. source: "./media/characters/autumn/werewolf.svg",
  45021. extra: 2154/2031,
  45022. bottom: 160/2314
  45023. }
  45024. },
  45025. human: {
  45026. height: math.unit(5 + 8/12, "feet"),
  45027. weight: math.unit(150, "lb"),
  45028. name: "Human",
  45029. image: {
  45030. source: "./media/characters/autumn/human.svg",
  45031. extra: 1200/1149,
  45032. bottom: 30/1230
  45033. }
  45034. },
  45035. },
  45036. [
  45037. {
  45038. name: "Normal",
  45039. height: math.unit(8, "feet"),
  45040. default: true
  45041. },
  45042. ]
  45043. ))
  45044. characterMakers.push(() => makeCharacter(
  45045. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45046. {
  45047. front: {
  45048. height: math.unit(8 + 5/12, "feet"),
  45049. weight: math.unit(825, "lb"),
  45050. name: "Front",
  45051. image: {
  45052. source: "./media/characters/cobalt-charizard/front.svg",
  45053. extra: 1268/1155,
  45054. bottom: 122/1390
  45055. }
  45056. },
  45057. side: {
  45058. height: math.unit(8 + 5/12, "feet"),
  45059. weight: math.unit(825, "lb"),
  45060. name: "Side",
  45061. image: {
  45062. source: "./media/characters/cobalt-charizard/side.svg",
  45063. extra: 1348/1257,
  45064. bottom: 58/1406
  45065. }
  45066. },
  45067. gMax: {
  45068. height: math.unit(134 + 11/12, "feet"),
  45069. name: "G-Max",
  45070. image: {
  45071. source: "./media/characters/cobalt-charizard/g-max.svg",
  45072. extra: 1835/1541,
  45073. bottom: 151/1986
  45074. }
  45075. },
  45076. },
  45077. [
  45078. {
  45079. name: "Normal",
  45080. height: math.unit(8 + 5/12, "feet"),
  45081. default: true
  45082. },
  45083. ]
  45084. ))
  45085. characterMakers.push(() => makeCharacter(
  45086. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45087. {
  45088. front: {
  45089. height: math.unit(6 + 3/12, "feet"),
  45090. weight: math.unit(210, "lb"),
  45091. name: "Front",
  45092. image: {
  45093. source: "./media/characters/stella/front.svg",
  45094. extra: 3549/3335,
  45095. bottom: 51/3600
  45096. }
  45097. },
  45098. },
  45099. [
  45100. {
  45101. name: "Normal",
  45102. height: math.unit(6 + 3/12, "feet"),
  45103. default: true
  45104. },
  45105. ]
  45106. ))
  45107. characterMakers.push(() => makeCharacter(
  45108. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45109. {
  45110. front: {
  45111. height: math.unit(5, "feet"),
  45112. weight: math.unit(90, "lb"),
  45113. name: "Front",
  45114. image: {
  45115. source: "./media/characters/riley-bishop/front.svg",
  45116. extra: 1450/1428,
  45117. bottom: 152/1602
  45118. }
  45119. },
  45120. },
  45121. [
  45122. {
  45123. name: "Normal",
  45124. height: math.unit(5, "feet"),
  45125. default: true
  45126. },
  45127. ]
  45128. ))
  45129. characterMakers.push(() => makeCharacter(
  45130. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45131. {
  45132. side: {
  45133. height: math.unit(8 + 2/12, "feet"),
  45134. weight: math.unit(500, "kg"),
  45135. name: "Side",
  45136. image: {
  45137. source: "./media/characters/theo-arcanine/side.svg",
  45138. extra: 1342/1074,
  45139. bottom: 111/1453
  45140. }
  45141. },
  45142. },
  45143. [
  45144. {
  45145. name: "Normal",
  45146. height: math.unit(8 + 2/12, "feet"),
  45147. default: true
  45148. },
  45149. ]
  45150. ))
  45151. characterMakers.push(() => makeCharacter(
  45152. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45153. {
  45154. front: {
  45155. height: math.unit(4, "feet"),
  45156. name: "Front",
  45157. image: {
  45158. source: "./media/characters/kali/front.svg",
  45159. extra: 1921/1357,
  45160. bottom: 70/1991
  45161. }
  45162. },
  45163. },
  45164. [
  45165. {
  45166. name: "Normal",
  45167. height: math.unit(4, "feet"),
  45168. default: true
  45169. },
  45170. {
  45171. name: "Macro",
  45172. height: math.unit(32, "meters")
  45173. },
  45174. {
  45175. name: "Macro+",
  45176. height: math.unit(150, "meters")
  45177. },
  45178. {
  45179. name: "Megamacro",
  45180. height: math.unit(7500, "meters")
  45181. },
  45182. {
  45183. name: "Megamacro+",
  45184. height: math.unit(80, "kilometers")
  45185. },
  45186. ]
  45187. ))
  45188. characterMakers.push(() => makeCharacter(
  45189. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45190. {
  45191. side: {
  45192. height: math.unit(5 + 11/12, "feet"),
  45193. weight: math.unit(236, "lb"),
  45194. name: "Side",
  45195. image: {
  45196. source: "./media/characters/gapp/side.svg",
  45197. extra: 775/340,
  45198. bottom: 58/833
  45199. }
  45200. },
  45201. mouth: {
  45202. height: math.unit(2.98, "feet"),
  45203. name: "Mouth",
  45204. image: {
  45205. source: "./media/characters/gapp/mouth.svg"
  45206. }
  45207. },
  45208. },
  45209. [
  45210. {
  45211. name: "Normal",
  45212. height: math.unit(5 + 1/12, "feet"),
  45213. default: true
  45214. },
  45215. ]
  45216. ))
  45217. characterMakers.push(() => makeCharacter(
  45218. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45219. {
  45220. front: {
  45221. height: math.unit(6, "feet"),
  45222. name: "Front",
  45223. image: {
  45224. source: "./media/characters/persephone/front.svg",
  45225. extra: 1895/1717,
  45226. bottom: 96/1991
  45227. }
  45228. },
  45229. back: {
  45230. height: math.unit(6, "feet"),
  45231. name: "Back",
  45232. image: {
  45233. source: "./media/characters/persephone/back.svg",
  45234. extra: 1868/1679,
  45235. bottom: 26/1894
  45236. }
  45237. },
  45238. casual: {
  45239. height: math.unit(6, "feet"),
  45240. name: "Casual",
  45241. image: {
  45242. source: "./media/characters/persephone/casual.svg",
  45243. extra: 1713/1541,
  45244. bottom: 76/1789
  45245. }
  45246. },
  45247. },
  45248. [
  45249. {
  45250. name: "Human Size",
  45251. height: math.unit(6, "feet")
  45252. },
  45253. {
  45254. name: "Big Steppy",
  45255. height: math.unit(600, "meters"),
  45256. default: true
  45257. },
  45258. {
  45259. name: "Galaxy Brain",
  45260. height: math.unit(1, "zettameter")
  45261. },
  45262. ]
  45263. ))
  45264. characterMakers.push(() => makeCharacter(
  45265. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45266. {
  45267. front: {
  45268. height: math.unit(1.85, "meters"),
  45269. name: "Front",
  45270. image: {
  45271. source: "./media/characters/riley-foxthing/front.svg",
  45272. extra: 1495/1354,
  45273. bottom: 122/1617
  45274. }
  45275. },
  45276. frontAlt: {
  45277. height: math.unit(1.85, "meters"),
  45278. name: "Front (Alt)",
  45279. image: {
  45280. source: "./media/characters/riley-foxthing/front-alt.svg",
  45281. extra: 1572/1389,
  45282. bottom: 116/1688
  45283. }
  45284. },
  45285. },
  45286. [
  45287. {
  45288. name: "Normal Sized",
  45289. height: math.unit(1.85, "meters"),
  45290. default: true
  45291. },
  45292. {
  45293. name: "Quite Sizable",
  45294. height: math.unit(5, "meters")
  45295. },
  45296. {
  45297. name: "Rather Large",
  45298. height: math.unit(20, "meters")
  45299. },
  45300. {
  45301. name: "Macro",
  45302. height: math.unit(450, "meters")
  45303. },
  45304. {
  45305. name: "Giga",
  45306. height: math.unit(5, "km")
  45307. },
  45308. ]
  45309. ))
  45310. characterMakers.push(() => makeCharacter(
  45311. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45312. {
  45313. front: {
  45314. height: math.unit(6, "feet"),
  45315. weight: math.unit(200, "lb"),
  45316. name: "Front",
  45317. image: {
  45318. source: "./media/characters/blizzard/front.svg",
  45319. extra: 1136/990,
  45320. bottom: 136/1272
  45321. }
  45322. },
  45323. back: {
  45324. height: math.unit(6, "feet"),
  45325. weight: math.unit(200, "lb"),
  45326. name: "Back",
  45327. image: {
  45328. source: "./media/characters/blizzard/back.svg",
  45329. extra: 1175/1034,
  45330. bottom: 97/1272
  45331. }
  45332. },
  45333. sitting: {
  45334. height: math.unit(3.725, "feet"),
  45335. weight: math.unit(200, "lb"),
  45336. name: "Sitting",
  45337. image: {
  45338. source: "./media/characters/blizzard/sitting.svg",
  45339. extra: 581/485,
  45340. bottom: 90/671
  45341. }
  45342. },
  45343. frontWizard: {
  45344. height: math.unit(7.9, "feet"),
  45345. weight: math.unit(200, "lb"),
  45346. name: "Front (Wizard)",
  45347. image: {
  45348. source: "./media/characters/blizzard/front-wizard.svg"
  45349. }
  45350. },
  45351. backWizard: {
  45352. height: math.unit(7.9, "feet"),
  45353. weight: math.unit(200, "lb"),
  45354. name: "Back (Wizard)",
  45355. image: {
  45356. source: "./media/characters/blizzard/back-wizard.svg"
  45357. }
  45358. },
  45359. frontNsfw: {
  45360. height: math.unit(6, "feet"),
  45361. weight: math.unit(200, "lb"),
  45362. name: "Front (NSFW)",
  45363. image: {
  45364. source: "./media/characters/blizzard/front-nsfw.svg",
  45365. extra: 1136/990,
  45366. bottom: 136/1272
  45367. }
  45368. },
  45369. backNsfw: {
  45370. height: math.unit(6, "feet"),
  45371. weight: math.unit(200, "lb"),
  45372. name: "Back (NSFW)",
  45373. image: {
  45374. source: "./media/characters/blizzard/back-nsfw.svg",
  45375. extra: 1175/1034,
  45376. bottom: 97/1272
  45377. }
  45378. },
  45379. sittingNsfw: {
  45380. height: math.unit(3.725, "feet"),
  45381. weight: math.unit(200, "lb"),
  45382. name: "Sitting (NSFW)",
  45383. image: {
  45384. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45385. extra: 581/485,
  45386. bottom: 90/671
  45387. }
  45388. },
  45389. wizardFrontNsfw: {
  45390. height: math.unit(7.9, "feet"),
  45391. weight: math.unit(200, "lb"),
  45392. name: "Wizard (Front, NSFW)",
  45393. image: {
  45394. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45395. }
  45396. },
  45397. },
  45398. [
  45399. {
  45400. name: "Normal",
  45401. height: math.unit(6, "feet"),
  45402. default: true
  45403. },
  45404. ]
  45405. ))
  45406. characterMakers.push(() => makeCharacter(
  45407. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45408. {
  45409. front: {
  45410. height: math.unit(5 + 2/12, "feet"),
  45411. name: "Front",
  45412. image: {
  45413. source: "./media/characters/lumi/front.svg",
  45414. extra: 1328/1268,
  45415. bottom: 103/1431
  45416. }
  45417. },
  45418. back: {
  45419. height: math.unit(5 + 2/12, "feet"),
  45420. name: "Back",
  45421. image: {
  45422. source: "./media/characters/lumi/back.svg",
  45423. extra: 1381/1327,
  45424. bottom: 43/1424
  45425. }
  45426. },
  45427. },
  45428. [
  45429. {
  45430. name: "Normal",
  45431. height: math.unit(5 + 2/12, "feet"),
  45432. default: true
  45433. },
  45434. ]
  45435. ))
  45436. characterMakers.push(() => makeCharacter(
  45437. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45438. {
  45439. front: {
  45440. height: math.unit(5 + 9/12, "feet"),
  45441. name: "Front",
  45442. image: {
  45443. source: "./media/characters/aliya-cotton/front.svg",
  45444. extra: 577/564,
  45445. bottom: 29/606
  45446. }
  45447. },
  45448. },
  45449. [
  45450. {
  45451. name: "Normal",
  45452. height: math.unit(5 + 9/12, "feet"),
  45453. default: true
  45454. },
  45455. ]
  45456. ))
  45457. characterMakers.push(() => makeCharacter(
  45458. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45459. {
  45460. front: {
  45461. height: math.unit(2.7, "meters"),
  45462. weight: math.unit(25000, "lb"),
  45463. name: "Front",
  45464. image: {
  45465. source: "./media/characters/noah-luxray/front.svg",
  45466. extra: 1644/825,
  45467. bottom: 339/1983
  45468. }
  45469. },
  45470. side: {
  45471. height: math.unit(2.97, "meters"),
  45472. weight: math.unit(25000, "lb"),
  45473. name: "Side",
  45474. image: {
  45475. source: "./media/characters/noah-luxray/side.svg",
  45476. extra: 1319/650,
  45477. bottom: 163/1482
  45478. }
  45479. },
  45480. dick: {
  45481. height: math.unit(7.4, "feet"),
  45482. weight: math.unit(2500, "lb"),
  45483. name: "Dick",
  45484. image: {
  45485. source: "./media/characters/noah-luxray/dick.svg"
  45486. }
  45487. },
  45488. dickAlt: {
  45489. height: math.unit(10.83, "feet"),
  45490. weight: math.unit(2500, "lb"),
  45491. name: "Dick-alt",
  45492. image: {
  45493. source: "./media/characters/noah-luxray/dick-alt.svg"
  45494. }
  45495. },
  45496. },
  45497. [
  45498. {
  45499. name: "BIG",
  45500. height: math.unit(2.7, "meters"),
  45501. default: true
  45502. },
  45503. ]
  45504. ))
  45505. characterMakers.push(() => makeCharacter(
  45506. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45507. {
  45508. standing: {
  45509. height: math.unit(183, "cm"),
  45510. weight: math.unit(68, "kg"),
  45511. name: "Standing",
  45512. image: {
  45513. source: "./media/characters/arion/standing.svg",
  45514. extra: 1869/1807,
  45515. bottom: 93/1962
  45516. }
  45517. },
  45518. reclining: {
  45519. height: math.unit(70.5, "cm"),
  45520. weight: math.unit(68, "lb"),
  45521. name: "Reclining",
  45522. image: {
  45523. source: "./media/characters/arion/reclining.svg",
  45524. extra: 937/870,
  45525. bottom: 63/1000
  45526. }
  45527. },
  45528. },
  45529. [
  45530. {
  45531. name: "Colossus Size, Low",
  45532. height: math.unit(33, "meters"),
  45533. default: true
  45534. },
  45535. {
  45536. name: "Colossus Size, Mid",
  45537. height: math.unit(52, "meters")
  45538. },
  45539. {
  45540. name: "Colossus Size, High",
  45541. height: math.unit(60, "meters")
  45542. },
  45543. {
  45544. name: "Titan Size, Low",
  45545. height: math.unit(91, "meters"),
  45546. },
  45547. {
  45548. name: "Titan Size, Mid",
  45549. height: math.unit(122, "meters")
  45550. },
  45551. {
  45552. name: "Titan Size, High",
  45553. height: math.unit(162, "meters")
  45554. },
  45555. ]
  45556. ))
  45557. characterMakers.push(() => makeCharacter(
  45558. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45559. {
  45560. front: {
  45561. height: math.unit(53, "meters"),
  45562. name: "Front",
  45563. image: {
  45564. source: "./media/characters/stellar-marbey/front.svg",
  45565. extra: 1913/1805,
  45566. bottom: 92/2005
  45567. }
  45568. },
  45569. back: {
  45570. height: math.unit(53, "meters"),
  45571. name: "Back",
  45572. image: {
  45573. source: "./media/characters/stellar-marbey/back.svg",
  45574. extra: 1960/1851,
  45575. bottom: 28/1988
  45576. }
  45577. },
  45578. mouth: {
  45579. height: math.unit(3.5, "meters"),
  45580. name: "Mouth",
  45581. image: {
  45582. source: "./media/characters/stellar-marbey/mouth.svg"
  45583. }
  45584. },
  45585. },
  45586. [
  45587. {
  45588. name: "Macro",
  45589. height: math.unit(53, "meters"),
  45590. default: true
  45591. },
  45592. ]
  45593. ))
  45594. characterMakers.push(() => makeCharacter(
  45595. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45596. {
  45597. front: {
  45598. height: math.unit(8 + 1/12, "feet"),
  45599. weight: math.unit(233, "lb"),
  45600. name: "Front",
  45601. image: {
  45602. source: "./media/characters/matsu/front.svg",
  45603. extra: 832/772,
  45604. bottom: 40/872
  45605. }
  45606. },
  45607. back: {
  45608. height: math.unit(8 + 1/12, "feet"),
  45609. weight: math.unit(233, "lb"),
  45610. name: "Back",
  45611. image: {
  45612. source: "./media/characters/matsu/back.svg",
  45613. extra: 839/780,
  45614. bottom: 47/886
  45615. }
  45616. },
  45617. },
  45618. [
  45619. {
  45620. name: "Normal",
  45621. height: math.unit(8 + 1/12, "feet"),
  45622. default: true
  45623. },
  45624. ]
  45625. ))
  45626. characterMakers.push(() => makeCharacter(
  45627. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45628. {
  45629. front: {
  45630. height: math.unit(4, "feet"),
  45631. weight: math.unit(148, "lb"),
  45632. name: "Front",
  45633. image: {
  45634. source: "./media/characters/thiz/front.svg",
  45635. extra: 1913/1748,
  45636. bottom: 62/1975
  45637. }
  45638. },
  45639. },
  45640. [
  45641. {
  45642. name: "Normal",
  45643. height: math.unit(4, "feet"),
  45644. default: true
  45645. },
  45646. ]
  45647. ))
  45648. characterMakers.push(() => makeCharacter(
  45649. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45650. {
  45651. front: {
  45652. height: math.unit(7 + 6/12, "feet"),
  45653. weight: math.unit(267, "lb"),
  45654. name: "Front",
  45655. image: {
  45656. source: "./media/characters/marcel/front.svg",
  45657. extra: 1221/1096,
  45658. bottom: 76/1297
  45659. }
  45660. },
  45661. },
  45662. [
  45663. {
  45664. name: "Normal",
  45665. height: math.unit(7 + 6/12, "feet"),
  45666. default: true
  45667. },
  45668. ]
  45669. ))
  45670. characterMakers.push(() => makeCharacter(
  45671. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45672. {
  45673. side: {
  45674. height: math.unit(42, "meters"),
  45675. name: "Side",
  45676. image: {
  45677. source: "./media/characters/flake/side.svg",
  45678. extra: 1525/1306,
  45679. bottom: 209/1734
  45680. }
  45681. },
  45682. },
  45683. [
  45684. {
  45685. name: "Normal",
  45686. height: math.unit(42, "meters"),
  45687. default: true
  45688. },
  45689. ]
  45690. ))
  45691. characterMakers.push(() => makeCharacter(
  45692. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45693. {
  45694. dressed: {
  45695. height: math.unit(6 + 4/12, "feet"),
  45696. weight: math.unit(520, "lb"),
  45697. name: "Dressed",
  45698. image: {
  45699. source: "./media/characters/someonne/dressed.svg",
  45700. extra: 1020/1010,
  45701. bottom: 178/1198
  45702. }
  45703. },
  45704. undressed: {
  45705. height: math.unit(6 + 4/12, "feet"),
  45706. weight: math.unit(520, "lb"),
  45707. name: "Undressed",
  45708. image: {
  45709. source: "./media/characters/someonne/undressed.svg",
  45710. extra: 1019/1014,
  45711. bottom: 169/1188
  45712. }
  45713. },
  45714. },
  45715. [
  45716. {
  45717. name: "Normal",
  45718. height: math.unit(6 + 4/12, "feet"),
  45719. default: true
  45720. },
  45721. ]
  45722. ))
  45723. characterMakers.push(() => makeCharacter(
  45724. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45725. {
  45726. front: {
  45727. height: math.unit(3, "feet"),
  45728. weight: math.unit(30, "lb"),
  45729. name: "Front",
  45730. image: {
  45731. source: "./media/characters/till/front.svg",
  45732. extra: 892/823,
  45733. bottom: 55/947
  45734. }
  45735. },
  45736. },
  45737. [
  45738. {
  45739. name: "Normal",
  45740. height: math.unit(3, "feet"),
  45741. default: true
  45742. },
  45743. ]
  45744. ))
  45745. characterMakers.push(() => makeCharacter(
  45746. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45747. {
  45748. front: {
  45749. height: math.unit(9 + 8/12, "feet"),
  45750. weight: math.unit(800, "lb"),
  45751. name: "Front",
  45752. image: {
  45753. source: "./media/characters/sydney-heki/front.svg",
  45754. extra: 1360/1300,
  45755. bottom: 22/1382
  45756. }
  45757. },
  45758. back: {
  45759. height: math.unit(9 + 8/12, "feet"),
  45760. weight: math.unit(800, "lb"),
  45761. name: "Back",
  45762. image: {
  45763. source: "./media/characters/sydney-heki/back.svg",
  45764. extra: 1356/1293,
  45765. bottom: 12/1368
  45766. }
  45767. },
  45768. frontDressed: {
  45769. height: math.unit(9 + 8/12, "feet"),
  45770. weight: math.unit(800, "lb"),
  45771. name: "Front-dressed",
  45772. image: {
  45773. source: "./media/characters/sydney-heki/front-dressed.svg",
  45774. extra: 1360/1300,
  45775. bottom: 22/1382
  45776. }
  45777. },
  45778. },
  45779. [
  45780. {
  45781. name: "Normal",
  45782. height: math.unit(9 + 8/12, "feet"),
  45783. default: true
  45784. },
  45785. {
  45786. name: "Macro",
  45787. height: math.unit(500, "feet")
  45788. },
  45789. {
  45790. name: "Megamacro",
  45791. height: math.unit(3.6, "miles")
  45792. },
  45793. ]
  45794. ))
  45795. characterMakers.push(() => makeCharacter(
  45796. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45797. {
  45798. front: {
  45799. height: math.unit(200, "cm"),
  45800. weight: math.unit(250, "lb"),
  45801. name: "Front",
  45802. image: {
  45803. source: "./media/characters/fowler-karlsson/front.svg",
  45804. extra: 897/845,
  45805. bottom: 123/1020
  45806. }
  45807. },
  45808. back: {
  45809. height: math.unit(200, "cm"),
  45810. weight: math.unit(250, "lb"),
  45811. name: "Back",
  45812. image: {
  45813. source: "./media/characters/fowler-karlsson/back.svg",
  45814. extra: 999/944,
  45815. bottom: 26/1025
  45816. }
  45817. },
  45818. dick: {
  45819. height: math.unit(1.92, "feet"),
  45820. weight: math.unit(150, "lb"),
  45821. name: "Dick",
  45822. image: {
  45823. source: "./media/characters/fowler-karlsson/dick.svg"
  45824. }
  45825. },
  45826. },
  45827. [
  45828. {
  45829. name: "Normal",
  45830. height: math.unit(200, "cm"),
  45831. default: true
  45832. },
  45833. {
  45834. name: "Smaller Macro",
  45835. height: math.unit(90, "m")
  45836. },
  45837. {
  45838. name: "Macro",
  45839. height: math.unit(150, "m")
  45840. },
  45841. {
  45842. name: "Bigger Macro",
  45843. height: math.unit(300, "m")
  45844. },
  45845. ]
  45846. ))
  45847. characterMakers.push(() => makeCharacter(
  45848. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45849. {
  45850. side: {
  45851. height: math.unit(8 + 2/12, "feet"),
  45852. weight: math.unit(1, "tonne"),
  45853. name: "Side",
  45854. image: {
  45855. source: "./media/characters/rylide/side.svg",
  45856. extra: 1318/1034,
  45857. bottom: 106/1424
  45858. }
  45859. },
  45860. sitting: {
  45861. height: math.unit(303, "cm"),
  45862. weight: math.unit(1, "tonne"),
  45863. name: "Sitting",
  45864. image: {
  45865. source: "./media/characters/rylide/sitting.svg",
  45866. extra: 1303/1103,
  45867. bottom: 36/1339
  45868. }
  45869. },
  45870. },
  45871. [
  45872. {
  45873. name: "Normal",
  45874. height: math.unit(8 + 2/12, "feet"),
  45875. default: true
  45876. },
  45877. ]
  45878. ))
  45879. characterMakers.push(() => makeCharacter(
  45880. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45881. {
  45882. front: {
  45883. height: math.unit(5 + 10/12, "feet"),
  45884. weight: math.unit(160, "lb"),
  45885. name: "Front",
  45886. image: {
  45887. source: "./media/characters/pudask/front.svg",
  45888. extra: 1616/1590,
  45889. bottom: 161/1777
  45890. }
  45891. },
  45892. },
  45893. [
  45894. {
  45895. name: "Ferret Height",
  45896. height: math.unit(2 + 5/12, "feet")
  45897. },
  45898. {
  45899. name: "Canon Height",
  45900. height: math.unit(5 + 10/12, "feet"),
  45901. default: true
  45902. },
  45903. ]
  45904. ))
  45905. characterMakers.push(() => makeCharacter(
  45906. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45907. {
  45908. front: {
  45909. height: math.unit(3 + 6/12, "feet"),
  45910. weight: math.unit(60, "lb"),
  45911. name: "Front",
  45912. image: {
  45913. source: "./media/characters/ramita/front.svg",
  45914. extra: 1402/1232,
  45915. bottom: 62/1464
  45916. }
  45917. },
  45918. dressed: {
  45919. height: math.unit(3 + 6/12, "feet"),
  45920. weight: math.unit(60, "lb"),
  45921. name: "Dressed",
  45922. image: {
  45923. source: "./media/characters/ramita/dressed.svg",
  45924. extra: 1534/1249,
  45925. bottom: 50/1584
  45926. }
  45927. },
  45928. },
  45929. [
  45930. {
  45931. name: "Normal",
  45932. height: math.unit(3 + 6/12, "feet"),
  45933. default: true
  45934. },
  45935. ]
  45936. ))
  45937. characterMakers.push(() => makeCharacter(
  45938. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45939. {
  45940. front: {
  45941. height: math.unit(8, "feet"),
  45942. name: "Front",
  45943. image: {
  45944. source: "./media/characters/ark/front.svg",
  45945. extra: 772/693,
  45946. bottom: 45/817
  45947. }
  45948. },
  45949. },
  45950. [
  45951. {
  45952. name: "Normal",
  45953. height: math.unit(8, "feet"),
  45954. default: true
  45955. },
  45956. ]
  45957. ))
  45958. characterMakers.push(() => makeCharacter(
  45959. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45960. {
  45961. front: {
  45962. height: math.unit(6, "feet"),
  45963. weight: math.unit(250, "lb"),
  45964. volume: math.unit(5/8, "gallons"),
  45965. name: "Front",
  45966. image: {
  45967. source: "./media/characters/ludwig-horn/front.svg",
  45968. extra: 1782/1635,
  45969. bottom: 96/1878
  45970. }
  45971. },
  45972. back: {
  45973. height: math.unit(6, "feet"),
  45974. weight: math.unit(250, "lb"),
  45975. volume: math.unit(5/8, "gallons"),
  45976. name: "Back",
  45977. image: {
  45978. source: "./media/characters/ludwig-horn/back.svg",
  45979. extra: 1874/1729,
  45980. bottom: 27/1901
  45981. }
  45982. },
  45983. dick: {
  45984. height: math.unit(1.05, "feet"),
  45985. weight: math.unit(15, "lb"),
  45986. volume: math.unit(5/8, "gallons"),
  45987. name: "Dick",
  45988. image: {
  45989. source: "./media/characters/ludwig-horn/dick.svg"
  45990. }
  45991. },
  45992. },
  45993. [
  45994. {
  45995. name: "Small",
  45996. height: math.unit(6, "feet")
  45997. },
  45998. {
  45999. name: "Typical",
  46000. height: math.unit(12, "feet"),
  46001. default: true
  46002. },
  46003. {
  46004. name: "Building",
  46005. height: math.unit(80, "feet")
  46006. },
  46007. {
  46008. name: "Town",
  46009. height: math.unit(800, "feet")
  46010. },
  46011. {
  46012. name: "Kingdom",
  46013. height: math.unit(80000, "feet")
  46014. },
  46015. {
  46016. name: "Planet",
  46017. height: math.unit(8000000, "feet")
  46018. },
  46019. {
  46020. name: "Universe",
  46021. height: math.unit(8000000000, "feet")
  46022. },
  46023. {
  46024. name: "Transcended",
  46025. height: math.unit(8e27, "feet")
  46026. },
  46027. ]
  46028. ))
  46029. characterMakers.push(() => makeCharacter(
  46030. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46031. {
  46032. front: {
  46033. height: math.unit(5, "feet"),
  46034. weight: math.unit(50, "kg"),
  46035. name: "Front",
  46036. image: {
  46037. source: "./media/characters/biot-avery/front.svg",
  46038. extra: 1295/1232,
  46039. bottom: 86/1381
  46040. }
  46041. },
  46042. },
  46043. [
  46044. {
  46045. name: "Normal",
  46046. height: math.unit(5, "feet"),
  46047. default: true
  46048. },
  46049. ]
  46050. ))
  46051. characterMakers.push(() => makeCharacter(
  46052. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46053. {
  46054. front: {
  46055. height: math.unit(6, "feet"),
  46056. name: "Front",
  46057. image: {
  46058. source: "./media/characters/kitsune-kiro/front.svg",
  46059. extra: 1270/1158,
  46060. bottom: 42/1312
  46061. }
  46062. },
  46063. frontAlt: {
  46064. height: math.unit(6, "feet"),
  46065. name: "Front-alt",
  46066. image: {
  46067. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46068. extra: 1130/1081,
  46069. bottom: 36/1166
  46070. }
  46071. },
  46072. },
  46073. [
  46074. {
  46075. name: "Smol",
  46076. height: math.unit(3, "feet")
  46077. },
  46078. {
  46079. name: "Normal",
  46080. height: math.unit(6, "feet"),
  46081. default: true
  46082. },
  46083. ]
  46084. ))
  46085. characterMakers.push(() => makeCharacter(
  46086. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46087. {
  46088. front: {
  46089. height: math.unit(6, "feet"),
  46090. weight: math.unit(125, "lb"),
  46091. name: "Front",
  46092. image: {
  46093. source: "./media/characters/jack-thatcher/front.svg",
  46094. extra: 1474/1370,
  46095. bottom: 26/1500
  46096. }
  46097. },
  46098. back: {
  46099. height: math.unit(6, "feet"),
  46100. weight: math.unit(125, "lb"),
  46101. name: "Back",
  46102. image: {
  46103. source: "./media/characters/jack-thatcher/back.svg",
  46104. extra: 1489/1384,
  46105. bottom: 18/1507
  46106. }
  46107. },
  46108. },
  46109. [
  46110. {
  46111. name: "Normal",
  46112. height: math.unit(6, "feet"),
  46113. default: true
  46114. },
  46115. {
  46116. name: "Macro",
  46117. height: math.unit(75, "feet")
  46118. },
  46119. {
  46120. name: "Macro-er",
  46121. height: math.unit(250, "feet")
  46122. },
  46123. ]
  46124. ))
  46125. characterMakers.push(() => makeCharacter(
  46126. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46127. {
  46128. front: {
  46129. height: math.unit(7, "feet"),
  46130. weight: math.unit(110, "kg"),
  46131. name: "Front",
  46132. image: {
  46133. source: "./media/characters/max-hyper/front.svg",
  46134. extra: 1969/1881,
  46135. bottom: 49/2018
  46136. }
  46137. },
  46138. },
  46139. [
  46140. {
  46141. name: "Normal",
  46142. height: math.unit(7, "feet"),
  46143. default: true
  46144. },
  46145. ]
  46146. ))
  46147. characterMakers.push(() => makeCharacter(
  46148. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46149. {
  46150. front: {
  46151. height: math.unit(5 + 5/12, "feet"),
  46152. weight: math.unit(160, "lb"),
  46153. name: "Front",
  46154. image: {
  46155. source: "./media/characters/spook/front.svg",
  46156. extra: 794/791,
  46157. bottom: 54/848
  46158. }
  46159. },
  46160. back: {
  46161. height: math.unit(5 + 5/12, "feet"),
  46162. weight: math.unit(160, "lb"),
  46163. name: "Back",
  46164. image: {
  46165. source: "./media/characters/spook/back.svg",
  46166. extra: 812/798,
  46167. bottom: 32/844
  46168. }
  46169. },
  46170. },
  46171. [
  46172. {
  46173. name: "Normal",
  46174. height: math.unit(5 + 5/12, "feet"),
  46175. default: true
  46176. },
  46177. ]
  46178. ))
  46179. characterMakers.push(() => makeCharacter(
  46180. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46181. {
  46182. front: {
  46183. height: math.unit(18, "feet"),
  46184. name: "Front",
  46185. image: {
  46186. source: "./media/characters/xeaduulix/front.svg",
  46187. extra: 1380/1166,
  46188. bottom: 110/1490
  46189. }
  46190. },
  46191. back: {
  46192. height: math.unit(18, "feet"),
  46193. name: "Back",
  46194. image: {
  46195. source: "./media/characters/xeaduulix/back.svg",
  46196. extra: 1592/1170,
  46197. bottom: 128/1720
  46198. }
  46199. },
  46200. frontNsfw: {
  46201. height: math.unit(18, "feet"),
  46202. name: "Front (NSFW)",
  46203. image: {
  46204. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46205. extra: 1380/1166,
  46206. bottom: 110/1490
  46207. }
  46208. },
  46209. backNsfw: {
  46210. height: math.unit(18, "feet"),
  46211. name: "Back (NSFW)",
  46212. image: {
  46213. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46214. extra: 1592/1170,
  46215. bottom: 128/1720
  46216. }
  46217. },
  46218. },
  46219. [
  46220. {
  46221. name: "Normal",
  46222. height: math.unit(18, "feet"),
  46223. default: true
  46224. },
  46225. ]
  46226. ))
  46227. characterMakers.push(() => makeCharacter(
  46228. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46229. {
  46230. spreadWings: {
  46231. height: math.unit(20, "feet"),
  46232. name: "Spread Wings",
  46233. image: {
  46234. source: "./media/characters/fledge/spread-wings.svg",
  46235. extra: 693/635,
  46236. bottom: 26/719
  46237. }
  46238. },
  46239. front: {
  46240. height: math.unit(20, "feet"),
  46241. name: "Front",
  46242. image: {
  46243. source: "./media/characters/fledge/front.svg",
  46244. extra: 684/637,
  46245. bottom: 18/702
  46246. }
  46247. },
  46248. frontAlt: {
  46249. height: math.unit(20, "feet"),
  46250. name: "Front (Alt)",
  46251. image: {
  46252. source: "./media/characters/fledge/front-alt.svg",
  46253. extra: 708/664,
  46254. bottom: 13/721
  46255. }
  46256. },
  46257. back: {
  46258. height: math.unit(20, "feet"),
  46259. name: "Back",
  46260. image: {
  46261. source: "./media/characters/fledge/back.svg",
  46262. extra: 718/634,
  46263. bottom: 22/740
  46264. }
  46265. },
  46266. head: {
  46267. height: math.unit(5.55, "feet"),
  46268. name: "Head",
  46269. image: {
  46270. source: "./media/characters/fledge/head.svg"
  46271. }
  46272. },
  46273. headAlt: {
  46274. height: math.unit(5.1, "feet"),
  46275. name: "Head (Alt)",
  46276. image: {
  46277. source: "./media/characters/fledge/head-alt.svg"
  46278. }
  46279. },
  46280. },
  46281. [
  46282. {
  46283. name: "Small",
  46284. height: math.unit(6 + 2/12, "feet")
  46285. },
  46286. {
  46287. name: "Big",
  46288. height: math.unit(20, "feet"),
  46289. default: true
  46290. },
  46291. {
  46292. name: "Giant",
  46293. height: math.unit(100, "feet")
  46294. },
  46295. {
  46296. name: "Macro",
  46297. height: math.unit(200, "feet")
  46298. },
  46299. ]
  46300. ))
  46301. characterMakers.push(() => makeCharacter(
  46302. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46303. {
  46304. front: {
  46305. height: math.unit(1, "meter"),
  46306. name: "Front",
  46307. image: {
  46308. source: "./media/characters/atlas-morenai/front.svg",
  46309. extra: 1275/1043,
  46310. bottom: 19/1294
  46311. }
  46312. },
  46313. back: {
  46314. height: math.unit(1, "meter"),
  46315. name: "Back",
  46316. image: {
  46317. source: "./media/characters/atlas-morenai/back.svg",
  46318. extra: 1141/1001,
  46319. bottom: 25/1166
  46320. }
  46321. },
  46322. },
  46323. [
  46324. {
  46325. name: "Normal",
  46326. height: math.unit(1, "meter"),
  46327. default: true
  46328. },
  46329. {
  46330. name: "Magic-Infused",
  46331. height: math.unit(5, "meters")
  46332. },
  46333. ]
  46334. ))
  46335. characterMakers.push(() => makeCharacter(
  46336. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46337. {
  46338. front: {
  46339. height: math.unit(5, "meters"),
  46340. name: "Front",
  46341. image: {
  46342. source: "./media/characters/cintia/front.svg",
  46343. extra: 1312/1228,
  46344. bottom: 38/1350
  46345. }
  46346. },
  46347. back: {
  46348. height: math.unit(5, "meters"),
  46349. name: "Back",
  46350. image: {
  46351. source: "./media/characters/cintia/back.svg",
  46352. extra: 1260/1166,
  46353. bottom: 98/1358
  46354. }
  46355. },
  46356. frontDick: {
  46357. height: math.unit(5, "meters"),
  46358. name: "Front (Dick)",
  46359. image: {
  46360. source: "./media/characters/cintia/front-dick.svg",
  46361. extra: 1312/1228,
  46362. bottom: 38/1350
  46363. }
  46364. },
  46365. backDick: {
  46366. height: math.unit(5, "meters"),
  46367. name: "Back (Dick)",
  46368. image: {
  46369. source: "./media/characters/cintia/back-dick.svg",
  46370. extra: 1260/1166,
  46371. bottom: 98/1358
  46372. }
  46373. },
  46374. bust: {
  46375. height: math.unit(1.97, "meters"),
  46376. name: "Bust",
  46377. image: {
  46378. source: "./media/characters/cintia/bust.svg",
  46379. extra: 617/565,
  46380. bottom: 0/617
  46381. }
  46382. },
  46383. },
  46384. [
  46385. {
  46386. name: "Normal",
  46387. height: math.unit(5, "meters"),
  46388. default: true
  46389. },
  46390. ]
  46391. ))
  46392. characterMakers.push(() => makeCharacter(
  46393. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46394. {
  46395. side: {
  46396. height: math.unit(100, "feet"),
  46397. name: "Side",
  46398. image: {
  46399. source: "./media/characters/denora/side.svg",
  46400. extra: 875/803,
  46401. bottom: 9/884
  46402. }
  46403. },
  46404. },
  46405. [
  46406. {
  46407. name: "Standard",
  46408. height: math.unit(100, "feet"),
  46409. default: true
  46410. },
  46411. {
  46412. name: "Grand",
  46413. height: math.unit(1000, "feet")
  46414. },
  46415. {
  46416. name: "Conquering",
  46417. height: math.unit(10000, "feet")
  46418. },
  46419. ]
  46420. ))
  46421. characterMakers.push(() => makeCharacter(
  46422. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46423. {
  46424. dressed: {
  46425. height: math.unit(8 + 5/12, "feet"),
  46426. weight: math.unit(700, "lb"),
  46427. name: "Dressed",
  46428. image: {
  46429. source: "./media/characters/kiva/dressed.svg",
  46430. extra: 1102/1055,
  46431. bottom: 60/1162
  46432. }
  46433. },
  46434. nude: {
  46435. height: math.unit(8 + 5/12, "feet"),
  46436. weight: math.unit(700, "lb"),
  46437. name: "Nude",
  46438. image: {
  46439. source: "./media/characters/kiva/nude.svg",
  46440. extra: 1102/1055,
  46441. bottom: 60/1162
  46442. }
  46443. },
  46444. },
  46445. [
  46446. {
  46447. name: "Base Height",
  46448. height: math.unit(8 + 5/12, "feet"),
  46449. default: true
  46450. },
  46451. {
  46452. name: "Macro",
  46453. height: math.unit(100, "feet")
  46454. },
  46455. {
  46456. name: "Max",
  46457. height: math.unit(3280, "feet")
  46458. },
  46459. ]
  46460. ))
  46461. characterMakers.push(() => makeCharacter(
  46462. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46463. {
  46464. front: {
  46465. height: math.unit(6 + 8/12, "feet"),
  46466. weight: math.unit(250, "lb"),
  46467. name: "Front",
  46468. image: {
  46469. source: "./media/characters/ztragon/front.svg",
  46470. extra: 1825/1684,
  46471. bottom: 98/1923
  46472. }
  46473. },
  46474. },
  46475. [
  46476. {
  46477. name: "Normal",
  46478. height: math.unit(6 + 8/12, "feet"),
  46479. default: true
  46480. },
  46481. {
  46482. name: "Macro",
  46483. height: math.unit(80, "feet")
  46484. },
  46485. ]
  46486. ))
  46487. characterMakers.push(() => makeCharacter(
  46488. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46489. {
  46490. front: {
  46491. height: math.unit(10.4, "feet"),
  46492. weight: math.unit(2, "tons"),
  46493. name: "Front",
  46494. image: {
  46495. source: "./media/characters/yesenia/front.svg",
  46496. extra: 1479/1474,
  46497. bottom: 233/1712
  46498. }
  46499. },
  46500. },
  46501. [
  46502. {
  46503. name: "Normal",
  46504. height: math.unit(10.4, "feet"),
  46505. default: true
  46506. },
  46507. ]
  46508. ))
  46509. characterMakers.push(() => makeCharacter(
  46510. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46511. {
  46512. normal: {
  46513. height: math.unit(6 + 1/12, "feet"),
  46514. weight: math.unit(180, "lb"),
  46515. name: "Normal",
  46516. image: {
  46517. source: "./media/characters/leanne-lycheborne/normal.svg",
  46518. extra: 1748/1660,
  46519. bottom: 98/1846
  46520. }
  46521. },
  46522. were: {
  46523. height: math.unit(12, "feet"),
  46524. weight: math.unit(1600, "lb"),
  46525. name: "Were",
  46526. image: {
  46527. source: "./media/characters/leanne-lycheborne/were.svg",
  46528. extra: 1485/1432,
  46529. bottom: 66/1551
  46530. }
  46531. },
  46532. },
  46533. [
  46534. {
  46535. name: "Normal",
  46536. height: math.unit(6 + 1/12, "feet"),
  46537. default: true
  46538. },
  46539. ]
  46540. ))
  46541. characterMakers.push(() => makeCharacter(
  46542. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46543. {
  46544. side: {
  46545. height: math.unit(13, "feet"),
  46546. name: "Side",
  46547. image: {
  46548. source: "./media/characters/kira-tyler/side.svg",
  46549. extra: 693/393,
  46550. bottom: 58/751
  46551. }
  46552. },
  46553. },
  46554. [
  46555. {
  46556. name: "Normal",
  46557. height: math.unit(13, "feet"),
  46558. default: true
  46559. },
  46560. ]
  46561. ))
  46562. characterMakers.push(() => makeCharacter(
  46563. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46564. {
  46565. front: {
  46566. height: math.unit(10.3, "feet"),
  46567. weight: math.unit(150, "lb"),
  46568. name: "Front",
  46569. image: {
  46570. source: "./media/characters/blaze/front.svg",
  46571. extra: 1378/1286,
  46572. bottom: 172/1550
  46573. }
  46574. },
  46575. },
  46576. [
  46577. {
  46578. name: "Normal",
  46579. height: math.unit(10.3, "feet"),
  46580. default: true
  46581. },
  46582. ]
  46583. ))
  46584. characterMakers.push(() => makeCharacter(
  46585. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46586. {
  46587. side: {
  46588. height: math.unit(2, "meters"),
  46589. weight: math.unit(400, "kg"),
  46590. name: "Side",
  46591. image: {
  46592. source: "./media/characters/anu/side.svg",
  46593. extra: 506/394,
  46594. bottom: 18/524
  46595. }
  46596. },
  46597. },
  46598. [
  46599. {
  46600. name: "Humanoid",
  46601. height: math.unit(2, "meters")
  46602. },
  46603. {
  46604. name: "Normal",
  46605. height: math.unit(5, "meters"),
  46606. default: true
  46607. },
  46608. ]
  46609. ))
  46610. characterMakers.push(() => makeCharacter(
  46611. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46612. {
  46613. front: {
  46614. height: math.unit(5 + 5/12, "feet"),
  46615. weight: math.unit(170, "lb"),
  46616. name: "Front",
  46617. image: {
  46618. source: "./media/characters/synx-the-lynx/front.svg",
  46619. extra: 1893/1745,
  46620. bottom: 17/1910
  46621. }
  46622. },
  46623. side: {
  46624. height: math.unit(5 + 5/12, "feet"),
  46625. weight: math.unit(170, "lb"),
  46626. name: "Side",
  46627. image: {
  46628. source: "./media/characters/synx-the-lynx/side.svg",
  46629. extra: 1884/1740,
  46630. bottom: 39/1923
  46631. }
  46632. },
  46633. back: {
  46634. height: math.unit(5 + 5/12, "feet"),
  46635. weight: math.unit(170, "lb"),
  46636. name: "Back",
  46637. image: {
  46638. source: "./media/characters/synx-the-lynx/back.svg",
  46639. extra: 1903/1755,
  46640. bottom: 14/1917
  46641. }
  46642. },
  46643. },
  46644. [
  46645. {
  46646. name: "Normal",
  46647. height: math.unit(5 + 5/12, "feet"),
  46648. default: true
  46649. },
  46650. ]
  46651. ))
  46652. characterMakers.push(() => makeCharacter(
  46653. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46654. {
  46655. back: {
  46656. height: math.unit(15, "feet"),
  46657. name: "Back",
  46658. image: {
  46659. source: "./media/characters/nadezda-fex/back.svg",
  46660. extra: 1695/1481,
  46661. bottom: 25/1720
  46662. }
  46663. },
  46664. },
  46665. [
  46666. {
  46667. name: "Normal",
  46668. height: math.unit(15, "feet"),
  46669. default: true
  46670. },
  46671. {
  46672. name: "Macro",
  46673. height: math.unit(2.5, "miles")
  46674. },
  46675. {
  46676. name: "Goddess",
  46677. height: math.unit(2, "multiverses")
  46678. },
  46679. ]
  46680. ))
  46681. characterMakers.push(() => makeCharacter(
  46682. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46683. {
  46684. front: {
  46685. height: math.unit(216, "cm"),
  46686. name: "Front",
  46687. image: {
  46688. source: "./media/characters/lev/front.svg",
  46689. extra: 1728/1670,
  46690. bottom: 82/1810
  46691. }
  46692. },
  46693. back: {
  46694. height: math.unit(216, "cm"),
  46695. name: "Back",
  46696. image: {
  46697. source: "./media/characters/lev/back.svg",
  46698. extra: 1738/1675,
  46699. bottom: 24/1762
  46700. }
  46701. },
  46702. dressed: {
  46703. height: math.unit(216, "cm"),
  46704. name: "Dressed",
  46705. image: {
  46706. source: "./media/characters/lev/dressed.svg",
  46707. extra: 1397/1351,
  46708. bottom: 73/1470
  46709. }
  46710. },
  46711. head: {
  46712. height: math.unit(0.51, "meter"),
  46713. name: "Head",
  46714. image: {
  46715. source: "./media/characters/lev/head.svg"
  46716. }
  46717. },
  46718. },
  46719. [
  46720. {
  46721. name: "Normal",
  46722. height: math.unit(216, "cm"),
  46723. default: true
  46724. },
  46725. {
  46726. name: "Relatively Macro",
  46727. height: math.unit(80, "meters")
  46728. },
  46729. {
  46730. name: "Megamacro",
  46731. height: math.unit(21600, "meters")
  46732. },
  46733. {
  46734. name: "Megamacro+",
  46735. height: math.unit(64800, "meters")
  46736. },
  46737. ]
  46738. ))
  46739. characterMakers.push(() => makeCharacter(
  46740. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46741. {
  46742. front: {
  46743. height: math.unit(2, "meters"),
  46744. weight: math.unit(80, "kg"),
  46745. name: "Front",
  46746. image: {
  46747. source: "./media/characters/moka/front.svg",
  46748. extra: 1337/1255,
  46749. bottom: 58/1395
  46750. }
  46751. },
  46752. },
  46753. [
  46754. {
  46755. name: "Micro",
  46756. height: math.unit(15, "cm")
  46757. },
  46758. {
  46759. name: "Normal",
  46760. height: math.unit(2, "meters"),
  46761. default: true
  46762. },
  46763. {
  46764. name: "Macro",
  46765. height: math.unit(20, "meters"),
  46766. },
  46767. ]
  46768. ))
  46769. characterMakers.push(() => makeCharacter(
  46770. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46771. {
  46772. front: {
  46773. height: math.unit(9, "feet"),
  46774. weight: math.unit(240, "lb"),
  46775. name: "Front",
  46776. image: {
  46777. source: "./media/characters/kuzco/front.svg",
  46778. extra: 1593/1487,
  46779. bottom: 32/1625
  46780. }
  46781. },
  46782. side: {
  46783. height: math.unit(9, "feet"),
  46784. weight: math.unit(240, "lb"),
  46785. name: "Side",
  46786. image: {
  46787. source: "./media/characters/kuzco/side.svg",
  46788. extra: 1575/1485,
  46789. bottom: 30/1605
  46790. }
  46791. },
  46792. back: {
  46793. height: math.unit(9, "feet"),
  46794. weight: math.unit(240, "lb"),
  46795. name: "Back",
  46796. image: {
  46797. source: "./media/characters/kuzco/back.svg",
  46798. extra: 1603/1514,
  46799. bottom: 14/1617
  46800. }
  46801. },
  46802. },
  46803. [
  46804. {
  46805. name: "Normal",
  46806. height: math.unit(9, "feet"),
  46807. default: true
  46808. },
  46809. ]
  46810. ))
  46811. characterMakers.push(() => makeCharacter(
  46812. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46813. {
  46814. side: {
  46815. height: math.unit(2, "meters"),
  46816. weight: math.unit(300, "kg"),
  46817. name: "Side",
  46818. image: {
  46819. source: "./media/characters/ceruleus/side.svg",
  46820. extra: 1068/974,
  46821. bottom: 126/1194
  46822. }
  46823. },
  46824. maw: {
  46825. height: math.unit(0.8125, "meter"),
  46826. name: "Maw",
  46827. image: {
  46828. source: "./media/characters/ceruleus/maw.svg"
  46829. }
  46830. },
  46831. },
  46832. [
  46833. {
  46834. name: "Normal",
  46835. height: math.unit(16, "meters"),
  46836. default: true
  46837. },
  46838. ]
  46839. ))
  46840. characterMakers.push(() => makeCharacter(
  46841. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46842. {
  46843. front: {
  46844. height: math.unit(9, "feet"),
  46845. weight: math.unit(500, "kg"),
  46846. name: "Front",
  46847. image: {
  46848. source: "./media/characters/acouya/front.svg",
  46849. extra: 1660/1473,
  46850. bottom: 28/1688
  46851. }
  46852. },
  46853. },
  46854. [
  46855. {
  46856. name: "Normal",
  46857. height: math.unit(9, "feet"),
  46858. default: true
  46859. },
  46860. ]
  46861. ))
  46862. characterMakers.push(() => makeCharacter(
  46863. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46864. {
  46865. front: {
  46866. height: math.unit(5 + 6/12, "feet"),
  46867. weight: math.unit(195, "lb"),
  46868. name: "Front",
  46869. image: {
  46870. source: "./media/characters/vant/front.svg",
  46871. extra: 1396/1320,
  46872. bottom: 20/1416
  46873. }
  46874. },
  46875. back: {
  46876. height: math.unit(5 + 6/12, "feet"),
  46877. weight: math.unit(195, "lb"),
  46878. name: "Back",
  46879. image: {
  46880. source: "./media/characters/vant/back.svg",
  46881. extra: 1396/1320,
  46882. bottom: 20/1416
  46883. }
  46884. },
  46885. maw: {
  46886. height: math.unit(0.75, "feet"),
  46887. name: "Maw",
  46888. image: {
  46889. source: "./media/characters/vant/maw.svg"
  46890. }
  46891. },
  46892. paw: {
  46893. height: math.unit(1.07, "feet"),
  46894. name: "Paw",
  46895. image: {
  46896. source: "./media/characters/vant/paw.svg"
  46897. }
  46898. },
  46899. },
  46900. [
  46901. {
  46902. name: "Micro",
  46903. height: math.unit(0.25, "inches")
  46904. },
  46905. {
  46906. name: "Normal",
  46907. height: math.unit(5 + 6/12, "feet"),
  46908. default: true
  46909. },
  46910. {
  46911. name: "Macro",
  46912. height: math.unit(75, "feet")
  46913. },
  46914. ]
  46915. ))
  46916. characterMakers.push(() => makeCharacter(
  46917. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46918. {
  46919. front: {
  46920. height: math.unit(30, "meters"),
  46921. weight: math.unit(363, "tons"),
  46922. name: "Front",
  46923. image: {
  46924. source: "./media/characters/ahra/front.svg",
  46925. extra: 1914/1814,
  46926. bottom: 46/1960
  46927. }
  46928. },
  46929. },
  46930. [
  46931. {
  46932. name: "Macro",
  46933. height: math.unit(30, "meters"),
  46934. default: true
  46935. },
  46936. ]
  46937. ))
  46938. characterMakers.push(() => makeCharacter(
  46939. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46940. {
  46941. undressed: {
  46942. height: math.unit(2, "m"),
  46943. weight: math.unit(250, "kg"),
  46944. name: "Undressed",
  46945. image: {
  46946. source: "./media/characters/coriander/undressed.svg",
  46947. extra: 1757/1606,
  46948. bottom: 107/1864
  46949. }
  46950. },
  46951. dressed: {
  46952. height: math.unit(2, "m"),
  46953. weight: math.unit(250, "kg"),
  46954. name: "Dressed",
  46955. image: {
  46956. source: "./media/characters/coriander/dressed.svg",
  46957. extra: 1757/1606,
  46958. bottom: 107/1864
  46959. }
  46960. },
  46961. },
  46962. [
  46963. {
  46964. name: "Normal",
  46965. height: math.unit(4, "meters"),
  46966. default: true
  46967. },
  46968. {
  46969. name: "XL",
  46970. height: math.unit(6, "meters")
  46971. },
  46972. {
  46973. name: "XXL",
  46974. height: math.unit(8, "meters")
  46975. },
  46976. ]
  46977. ))
  46978. characterMakers.push(() => makeCharacter(
  46979. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46980. {
  46981. front: {
  46982. height: math.unit(6, "feet"),
  46983. name: "Front",
  46984. image: {
  46985. source: "./media/characters/syrinx/front.svg",
  46986. extra: 1557/1259,
  46987. bottom: 171/1728
  46988. }
  46989. },
  46990. },
  46991. [
  46992. {
  46993. name: "Normal",
  46994. height: math.unit(6 + 3/12, "feet"),
  46995. default: true
  46996. },
  46997. ]
  46998. ))
  46999. characterMakers.push(() => makeCharacter(
  47000. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47001. {
  47002. front: {
  47003. height: math.unit(11 + 6/12, "feet"),
  47004. weight: math.unit(1.5, "tons"),
  47005. name: "Front",
  47006. image: {
  47007. source: "./media/characters/bor/front.svg",
  47008. extra: 1189/1109,
  47009. bottom: 170/1359
  47010. }
  47011. },
  47012. },
  47013. [
  47014. {
  47015. name: "Normal",
  47016. height: math.unit(11 + 6/12, "feet"),
  47017. default: true
  47018. },
  47019. {
  47020. name: "Macro",
  47021. height: math.unit(32 + 9/12, "feet")
  47022. },
  47023. ]
  47024. ))
  47025. characterMakers.push(() => makeCharacter(
  47026. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47027. {
  47028. anthro: {
  47029. height: math.unit(9, "feet"),
  47030. weight: math.unit(2076, "lb"),
  47031. name: "Anthro",
  47032. image: {
  47033. source: "./media/characters/abacus/anthro.svg",
  47034. extra: 1540/1494,
  47035. bottom: 233/1773
  47036. }
  47037. },
  47038. pigeon: {
  47039. height: math.unit(1, "feet"),
  47040. name: "Pigeon",
  47041. image: {
  47042. source: "./media/characters/abacus/pigeon.svg",
  47043. extra: 528/525,
  47044. bottom: 46/574
  47045. }
  47046. },
  47047. },
  47048. [
  47049. {
  47050. name: "Normal",
  47051. height: math.unit(9, "feet"),
  47052. default: true
  47053. },
  47054. ]
  47055. ))
  47056. characterMakers.push(() => makeCharacter(
  47057. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47058. {
  47059. side: {
  47060. height: math.unit(6, "feet"),
  47061. name: "Side",
  47062. image: {
  47063. source: "./media/characters/delkhan/side.svg",
  47064. extra: 1884/1786,
  47065. bottom: 308/2192
  47066. }
  47067. },
  47068. head: {
  47069. height: math.unit(3.38, "feet"),
  47070. name: "Head",
  47071. image: {
  47072. source: "./media/characters/delkhan/head.svg"
  47073. }
  47074. },
  47075. },
  47076. [
  47077. {
  47078. name: "Normal",
  47079. height: math.unit(72, "feet"),
  47080. default: true
  47081. },
  47082. {
  47083. name: "Giant",
  47084. height: math.unit(172, "feet")
  47085. },
  47086. ]
  47087. ))
  47088. characterMakers.push(() => makeCharacter(
  47089. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47090. {
  47091. standing: {
  47092. height: math.unit(6, "feet"),
  47093. name: "Standing",
  47094. image: {
  47095. source: "./media/characters/euchidat/standing.svg",
  47096. extra: 1612/1553,
  47097. bottom: 116/1728
  47098. }
  47099. },
  47100. leaning: {
  47101. height: math.unit(6, "feet"),
  47102. name: "Leaning",
  47103. image: {
  47104. source: "./media/characters/euchidat/leaning.svg",
  47105. extra: 1719/1674,
  47106. bottom: 27/1746
  47107. }
  47108. },
  47109. },
  47110. [
  47111. {
  47112. name: "Normal",
  47113. height: math.unit(175, "feet"),
  47114. default: true
  47115. },
  47116. {
  47117. name: "Megamacro",
  47118. height: math.unit(190, "miles")
  47119. },
  47120. {
  47121. name: "Gigamacro",
  47122. height: math.unit(190000, "miles")
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47128. {
  47129. front: {
  47130. height: math.unit(6, "feet"),
  47131. weight: math.unit(150, "lb"),
  47132. name: "Front",
  47133. image: {
  47134. source: "./media/characters/rebecca-stack/front.svg",
  47135. extra: 1256/1201,
  47136. bottom: 18/1274
  47137. }
  47138. },
  47139. },
  47140. [
  47141. {
  47142. name: "Normal",
  47143. height: math.unit(5 + 8/12, "feet"),
  47144. default: true
  47145. },
  47146. {
  47147. name: "Demolitionist",
  47148. height: math.unit(200, "feet")
  47149. },
  47150. {
  47151. name: "Out of Control",
  47152. height: math.unit(2, "miles")
  47153. },
  47154. {
  47155. name: "Giga",
  47156. height: math.unit(7200, "miles")
  47157. },
  47158. ]
  47159. ))
  47160. characterMakers.push(() => makeCharacter(
  47161. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47162. {
  47163. front: {
  47164. height: math.unit(6, "feet"),
  47165. weight: math.unit(150, "lb"),
  47166. name: "Front",
  47167. image: {
  47168. source: "./media/characters/jenny-cartwright/front.svg",
  47169. extra: 1384/1376,
  47170. bottom: 58/1442
  47171. }
  47172. },
  47173. },
  47174. [
  47175. {
  47176. name: "Normal",
  47177. height: math.unit(6 + 7/12, "feet"),
  47178. default: true
  47179. },
  47180. {
  47181. name: "Librarian",
  47182. height: math.unit(55, "feet")
  47183. },
  47184. {
  47185. name: "Sightseer",
  47186. height: math.unit(50, "miles")
  47187. },
  47188. {
  47189. name: "Giga",
  47190. height: math.unit(30000, "miles")
  47191. },
  47192. ]
  47193. ))
  47194. characterMakers.push(() => makeCharacter(
  47195. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47196. {
  47197. nude: {
  47198. height: math.unit(8, "feet"),
  47199. weight: math.unit(225, "lb"),
  47200. name: "Nude",
  47201. image: {
  47202. source: "./media/characters/marvy/nude.svg",
  47203. extra: 1900/1683,
  47204. bottom: 89/1989
  47205. }
  47206. },
  47207. dressed: {
  47208. height: math.unit(8, "feet"),
  47209. weight: math.unit(225, "lb"),
  47210. name: "Dressed",
  47211. image: {
  47212. source: "./media/characters/marvy/dressed.svg",
  47213. extra: 1900/1683,
  47214. bottom: 89/1989
  47215. }
  47216. },
  47217. head: {
  47218. height: math.unit(2.85, "feet"),
  47219. name: "Head",
  47220. image: {
  47221. source: "./media/characters/marvy/head.svg"
  47222. }
  47223. },
  47224. },
  47225. [
  47226. {
  47227. name: "Normal",
  47228. height: math.unit(8, "feet"),
  47229. default: true
  47230. },
  47231. ]
  47232. ))
  47233. characterMakers.push(() => makeCharacter(
  47234. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47235. {
  47236. front: {
  47237. height: math.unit(8, "feet"),
  47238. weight: math.unit(250, "lb"),
  47239. name: "Front",
  47240. image: {
  47241. source: "./media/characters/leah/front.svg",
  47242. extra: 1257/1149,
  47243. bottom: 109/1366
  47244. }
  47245. },
  47246. },
  47247. [
  47248. {
  47249. name: "Normal",
  47250. height: math.unit(8, "feet"),
  47251. default: true
  47252. },
  47253. {
  47254. name: "Minimacro",
  47255. height: math.unit(40, "feet")
  47256. },
  47257. {
  47258. name: "Macro",
  47259. height: math.unit(124, "feet")
  47260. },
  47261. {
  47262. name: "Megamacro",
  47263. height: math.unit(850, "feet")
  47264. },
  47265. ]
  47266. ))
  47267. characterMakers.push(() => makeCharacter(
  47268. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47269. {
  47270. side: {
  47271. height: math.unit(13 + 6/12, "feet"),
  47272. weight: math.unit(3200, "lb"),
  47273. name: "Side",
  47274. image: {
  47275. source: "./media/characters/alvir/side.svg",
  47276. extra: 896/589,
  47277. bottom: 26/922
  47278. }
  47279. },
  47280. },
  47281. [
  47282. {
  47283. name: "Normal",
  47284. height: math.unit(13 + 6/12, "feet"),
  47285. default: true
  47286. },
  47287. ]
  47288. ))
  47289. characterMakers.push(() => makeCharacter(
  47290. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47291. {
  47292. front: {
  47293. height: math.unit(5 + 4/12, "feet"),
  47294. weight: math.unit(236, "lb"),
  47295. name: "Front",
  47296. image: {
  47297. source: "./media/characters/zaina-khalil/front.svg",
  47298. extra: 1533/1485,
  47299. bottom: 94/1627
  47300. }
  47301. },
  47302. side: {
  47303. height: math.unit(5 + 4/12, "feet"),
  47304. weight: math.unit(236, "lb"),
  47305. name: "Side",
  47306. image: {
  47307. source: "./media/characters/zaina-khalil/side.svg",
  47308. extra: 1537/1498,
  47309. bottom: 66/1603
  47310. }
  47311. },
  47312. back: {
  47313. height: math.unit(5 + 4/12, "feet"),
  47314. weight: math.unit(236, "lb"),
  47315. name: "Back",
  47316. image: {
  47317. source: "./media/characters/zaina-khalil/back.svg",
  47318. extra: 1546/1494,
  47319. bottom: 89/1635
  47320. }
  47321. },
  47322. },
  47323. [
  47324. {
  47325. name: "Normal",
  47326. height: math.unit(5 + 4/12, "feet"),
  47327. default: true
  47328. },
  47329. ]
  47330. ))
  47331. characterMakers.push(() => makeCharacter(
  47332. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47333. {
  47334. side: {
  47335. height: math.unit(12, "feet"),
  47336. weight: math.unit(4000, "lb"),
  47337. name: "Side",
  47338. image: {
  47339. source: "./media/characters/terry/side.svg",
  47340. extra: 1518/1439,
  47341. bottom: 149/1667
  47342. }
  47343. },
  47344. },
  47345. [
  47346. {
  47347. name: "Normal",
  47348. height: math.unit(12, "feet"),
  47349. default: true
  47350. },
  47351. ]
  47352. ))
  47353. characterMakers.push(() => makeCharacter(
  47354. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47355. {
  47356. front: {
  47357. height: math.unit(12, "feet"),
  47358. weight: math.unit(1500, "lb"),
  47359. name: "Front",
  47360. image: {
  47361. source: "./media/characters/kahea/front.svg",
  47362. extra: 1722/1617,
  47363. bottom: 179/1901
  47364. }
  47365. },
  47366. },
  47367. [
  47368. {
  47369. name: "Normal",
  47370. height: math.unit(12, "feet"),
  47371. default: true
  47372. },
  47373. ]
  47374. ))
  47375. characterMakers.push(() => makeCharacter(
  47376. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47377. {
  47378. demonFront: {
  47379. height: math.unit(36, "feet"),
  47380. name: "Front",
  47381. image: {
  47382. source: "./media/characters/alex-xuria/demon-front.svg",
  47383. extra: 1705/1673,
  47384. bottom: 198/1903
  47385. },
  47386. form: "demon",
  47387. default: true
  47388. },
  47389. demonBack: {
  47390. height: math.unit(36, "feet"),
  47391. name: "Back",
  47392. image: {
  47393. source: "./media/characters/alex-xuria/demon-back.svg",
  47394. extra: 1725/1693,
  47395. bottom: 70/1795
  47396. },
  47397. form: "demon"
  47398. },
  47399. demonHead: {
  47400. height: math.unit(2.14, "meters"),
  47401. name: "Head",
  47402. image: {
  47403. source: "./media/characters/alex-xuria/demon-head.svg"
  47404. },
  47405. form: "demon"
  47406. },
  47407. demonHand: {
  47408. height: math.unit(1.61, "meters"),
  47409. name: "Hand",
  47410. image: {
  47411. source: "./media/characters/alex-xuria/demon-hand.svg"
  47412. },
  47413. form: "demon"
  47414. },
  47415. demonPaw: {
  47416. height: math.unit(1.35, "meters"),
  47417. name: "Paw",
  47418. image: {
  47419. source: "./media/characters/alex-xuria/demon-paw.svg"
  47420. },
  47421. form: "demon"
  47422. },
  47423. demonFoot: {
  47424. height: math.unit(2.2, "meters"),
  47425. name: "Foot",
  47426. image: {
  47427. source: "./media/characters/alex-xuria/demon-foot.svg"
  47428. },
  47429. form: "demon"
  47430. },
  47431. demonCock: {
  47432. height: math.unit(1.74, "meters"),
  47433. name: "Cock",
  47434. image: {
  47435. source: "./media/characters/alex-xuria/demon-cock.svg"
  47436. },
  47437. form: "demon"
  47438. },
  47439. demonTailClosed: {
  47440. height: math.unit(1.47, "meters"),
  47441. name: "Tail (Closed)",
  47442. image: {
  47443. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47444. },
  47445. form: "demon"
  47446. },
  47447. demonTailOpen: {
  47448. height: math.unit(2.85, "meters"),
  47449. name: "Tail (Open)",
  47450. image: {
  47451. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47452. },
  47453. form: "demon"
  47454. },
  47455. incubusFront: {
  47456. height: math.unit(12, "feet"),
  47457. name: "Front",
  47458. image: {
  47459. source: "./media/characters/alex-xuria/incubus-front.svg",
  47460. extra: 1754/1677,
  47461. bottom: 125/1879
  47462. },
  47463. form: "incubus",
  47464. default: true
  47465. },
  47466. incubusBack: {
  47467. height: math.unit(12, "feet"),
  47468. name: "Back",
  47469. image: {
  47470. source: "./media/characters/alex-xuria/incubus-back.svg",
  47471. extra: 1702/1647,
  47472. bottom: 30/1732
  47473. },
  47474. form: "incubus"
  47475. },
  47476. incubusHead: {
  47477. height: math.unit(3.45, "feet"),
  47478. name: "Head",
  47479. image: {
  47480. source: "./media/characters/alex-xuria/incubus-head.svg"
  47481. },
  47482. form: "incubus"
  47483. },
  47484. rabbitFront: {
  47485. height: math.unit(6, "feet"),
  47486. name: "Front",
  47487. image: {
  47488. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47489. extra: 1369/1349,
  47490. bottom: 45/1414
  47491. },
  47492. form: "rabbit",
  47493. default: true
  47494. },
  47495. rabbitSide: {
  47496. height: math.unit(6, "feet"),
  47497. name: "Side",
  47498. image: {
  47499. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47500. extra: 1370/1356,
  47501. bottom: 37/1407
  47502. },
  47503. form: "rabbit"
  47504. },
  47505. rabbitBack: {
  47506. height: math.unit(6, "feet"),
  47507. name: "Back",
  47508. image: {
  47509. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47510. extra: 1375/1358,
  47511. bottom: 43/1418
  47512. },
  47513. form: "rabbit"
  47514. },
  47515. },
  47516. [
  47517. {
  47518. name: "Normal",
  47519. height: math.unit(6, "feet"),
  47520. default: true,
  47521. form: "rabbit"
  47522. },
  47523. {
  47524. name: "Incubus",
  47525. height: math.unit(12, "feet"),
  47526. default: true,
  47527. form: "incubus"
  47528. },
  47529. {
  47530. name: "Demon",
  47531. height: math.unit(36, "feet"),
  47532. default: true,
  47533. form: "demon"
  47534. }
  47535. ],
  47536. {
  47537. "demon": {
  47538. name: "Demon",
  47539. default: true
  47540. },
  47541. "incubus": {
  47542. name: "Incubus",
  47543. },
  47544. "rabbit": {
  47545. name: "Rabbit"
  47546. }
  47547. }
  47548. ))
  47549. characterMakers.push(() => makeCharacter(
  47550. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47551. {
  47552. front: {
  47553. height: math.unit(7 + 5/12, "feet"),
  47554. weight: math.unit(510, "lb"),
  47555. name: "Front",
  47556. image: {
  47557. source: "./media/characters/syrup/front.svg",
  47558. extra: 932/916,
  47559. bottom: 26/958
  47560. }
  47561. },
  47562. },
  47563. [
  47564. {
  47565. name: "Normal",
  47566. height: math.unit(7 + 5/12, "feet"),
  47567. default: true
  47568. },
  47569. {
  47570. name: "Big",
  47571. height: math.unit(50, "feet")
  47572. },
  47573. {
  47574. name: "Macro",
  47575. height: math.unit(300, "feet")
  47576. },
  47577. {
  47578. name: "Megamacro",
  47579. height: math.unit(1, "mile")
  47580. },
  47581. ]
  47582. ))
  47583. characterMakers.push(() => makeCharacter(
  47584. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47585. {
  47586. front: {
  47587. height: math.unit(6 + 9/12, "feet"),
  47588. name: "Front",
  47589. image: {
  47590. source: "./media/characters/zeimne/front.svg",
  47591. extra: 1969/1806,
  47592. bottom: 53/2022
  47593. }
  47594. },
  47595. },
  47596. [
  47597. {
  47598. name: "Normal",
  47599. height: math.unit(6 + 9/12, "feet"),
  47600. default: true
  47601. },
  47602. {
  47603. name: "Giant",
  47604. height: math.unit(550, "feet")
  47605. },
  47606. {
  47607. name: "Mega",
  47608. height: math.unit(3, "miles")
  47609. },
  47610. {
  47611. name: "Giga",
  47612. height: math.unit(250, "miles")
  47613. },
  47614. {
  47615. name: "Tera",
  47616. height: math.unit(1, "AU")
  47617. },
  47618. ]
  47619. ))
  47620. characterMakers.push(() => makeCharacter(
  47621. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47622. {
  47623. front: {
  47624. height: math.unit(5 + 2/12, "feet"),
  47625. name: "Front",
  47626. image: {
  47627. source: "./media/characters/grar/front.svg",
  47628. extra: 1331/1119,
  47629. bottom: 60/1391
  47630. }
  47631. },
  47632. back: {
  47633. height: math.unit(5 + 2/12, "feet"),
  47634. name: "Back",
  47635. image: {
  47636. source: "./media/characters/grar/back.svg",
  47637. extra: 1385/1169,
  47638. bottom: 23/1408
  47639. }
  47640. },
  47641. },
  47642. [
  47643. {
  47644. name: "Normal",
  47645. height: math.unit(5 + 2/12, "feet"),
  47646. default: true
  47647. },
  47648. ]
  47649. ))
  47650. characterMakers.push(() => makeCharacter(
  47651. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47652. {
  47653. front: {
  47654. height: math.unit(13 + 7/12, "feet"),
  47655. weight: math.unit(2200, "lb"),
  47656. name: "Front",
  47657. image: {
  47658. source: "./media/characters/endraya/front.svg",
  47659. extra: 1289/1215,
  47660. bottom: 50/1339
  47661. }
  47662. },
  47663. nude: {
  47664. height: math.unit(13 + 7/12, "feet"),
  47665. weight: math.unit(2200, "lb"),
  47666. name: "Nude",
  47667. image: {
  47668. source: "./media/characters/endraya/nude.svg",
  47669. extra: 1247/1171,
  47670. bottom: 40/1287
  47671. }
  47672. },
  47673. head: {
  47674. height: math.unit(2.6, "feet"),
  47675. name: "Head",
  47676. image: {
  47677. source: "./media/characters/endraya/head.svg"
  47678. }
  47679. },
  47680. slit: {
  47681. height: math.unit(3.4, "feet"),
  47682. name: "Slit",
  47683. image: {
  47684. source: "./media/characters/endraya/slit.svg"
  47685. }
  47686. },
  47687. },
  47688. [
  47689. {
  47690. name: "Normal",
  47691. height: math.unit(13 + 7/12, "feet"),
  47692. default: true
  47693. },
  47694. {
  47695. name: "Macro",
  47696. height: math.unit(200, "feet")
  47697. },
  47698. ]
  47699. ))
  47700. characterMakers.push(() => makeCharacter(
  47701. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47702. {
  47703. front: {
  47704. height: math.unit(1.81, "meters"),
  47705. weight: math.unit(69, "kg"),
  47706. name: "Front",
  47707. image: {
  47708. source: "./media/characters/rodryana/front.svg",
  47709. extra: 2002/1921,
  47710. bottom: 53/2055
  47711. }
  47712. },
  47713. back: {
  47714. height: math.unit(1.81, "meters"),
  47715. weight: math.unit(69, "kg"),
  47716. name: "Back",
  47717. image: {
  47718. source: "./media/characters/rodryana/back.svg",
  47719. extra: 1993/1926,
  47720. bottom: 48/2041
  47721. }
  47722. },
  47723. maw: {
  47724. height: math.unit(0.19769417475, "meters"),
  47725. name: "Maw",
  47726. image: {
  47727. source: "./media/characters/rodryana/maw.svg"
  47728. }
  47729. },
  47730. slit: {
  47731. height: math.unit(0.31631067961, "meters"),
  47732. name: "Slit",
  47733. image: {
  47734. source: "./media/characters/rodryana/slit.svg"
  47735. }
  47736. },
  47737. },
  47738. [
  47739. {
  47740. name: "Normal",
  47741. height: math.unit(1.81, "meters")
  47742. },
  47743. {
  47744. name: "Mini Macro",
  47745. height: math.unit(181, "meters")
  47746. },
  47747. {
  47748. name: "Macro",
  47749. height: math.unit(452, "meters"),
  47750. default: true
  47751. },
  47752. {
  47753. name: "Mega Macro",
  47754. height: math.unit(1.375, "km")
  47755. },
  47756. {
  47757. name: "Giga Macro",
  47758. height: math.unit(13.575, "km")
  47759. },
  47760. ]
  47761. ))
  47762. characterMakers.push(() => makeCharacter(
  47763. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47764. {
  47765. front: {
  47766. height: math.unit(6, "feet"),
  47767. weight: math.unit(1000, "lb"),
  47768. name: "Front",
  47769. image: {
  47770. source: "./media/characters/asaya/front.svg",
  47771. extra: 1460/1200,
  47772. bottom: 71/1531
  47773. }
  47774. },
  47775. },
  47776. [
  47777. {
  47778. name: "Normal",
  47779. height: math.unit(8, "km"),
  47780. default: true
  47781. },
  47782. ]
  47783. ))
  47784. characterMakers.push(() => makeCharacter(
  47785. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47786. {
  47787. front: {
  47788. height: math.unit(3.5, "meters"),
  47789. name: "Front",
  47790. image: {
  47791. source: "./media/characters/sarzu-and-israz/front.svg",
  47792. extra: 1570/1558,
  47793. bottom: 150/1720
  47794. },
  47795. },
  47796. back: {
  47797. height: math.unit(3.5, "meters"),
  47798. name: "Back",
  47799. image: {
  47800. source: "./media/characters/sarzu-and-israz/back.svg",
  47801. extra: 1523/1509,
  47802. bottom: 132/1655
  47803. },
  47804. },
  47805. frontFemale: {
  47806. height: math.unit(3.5, "meters"),
  47807. name: "Front (Female)",
  47808. image: {
  47809. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47810. extra: 1570/1558,
  47811. bottom: 150/1720
  47812. },
  47813. },
  47814. frontHerm: {
  47815. height: math.unit(3.5, "meters"),
  47816. name: "Front (Herm)",
  47817. image: {
  47818. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47819. extra: 1570/1558,
  47820. bottom: 150/1720
  47821. },
  47822. },
  47823. },
  47824. [
  47825. {
  47826. name: "Normal",
  47827. height: math.unit(3.5, "meters"),
  47828. default: true,
  47829. },
  47830. {
  47831. name: "Macro",
  47832. height: math.unit(65.5, "meters"),
  47833. },
  47834. ],
  47835. ))
  47836. characterMakers.push(() => makeCharacter(
  47837. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47838. {
  47839. front: {
  47840. height: math.unit(6, "feet"),
  47841. weight: math.unit(250, "lb"),
  47842. name: "Front",
  47843. image: {
  47844. source: "./media/characters/zenimma/front.svg",
  47845. extra: 1346/1320,
  47846. bottom: 58/1404
  47847. }
  47848. },
  47849. back: {
  47850. height: math.unit(6, "feet"),
  47851. weight: math.unit(250, "lb"),
  47852. name: "Back",
  47853. image: {
  47854. source: "./media/characters/zenimma/back.svg",
  47855. extra: 1324/1308,
  47856. bottom: 44/1368
  47857. }
  47858. },
  47859. dick: {
  47860. height: math.unit(1.44, "feet"),
  47861. name: "Dick",
  47862. image: {
  47863. source: "./media/characters/zenimma/dick.svg"
  47864. }
  47865. },
  47866. },
  47867. [
  47868. {
  47869. name: "Canon Height",
  47870. height: math.unit(66, "miles"),
  47871. default: true
  47872. },
  47873. ]
  47874. ))
  47875. characterMakers.push(() => makeCharacter(
  47876. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47877. {
  47878. nude: {
  47879. height: math.unit(6, "feet"),
  47880. weight: math.unit(150, "lb"),
  47881. name: "Nude",
  47882. image: {
  47883. source: "./media/characters/shavon/nude.svg",
  47884. extra: 1242/1096,
  47885. bottom: 98/1340
  47886. }
  47887. },
  47888. dressed: {
  47889. height: math.unit(6, "feet"),
  47890. weight: math.unit(150, "lb"),
  47891. name: "Dressed",
  47892. image: {
  47893. source: "./media/characters/shavon/dressed.svg",
  47894. extra: 1242/1096,
  47895. bottom: 98/1340
  47896. }
  47897. },
  47898. },
  47899. [
  47900. {
  47901. name: "Macro",
  47902. height: math.unit(255, "feet"),
  47903. default: true
  47904. },
  47905. ]
  47906. ))
  47907. characterMakers.push(() => makeCharacter(
  47908. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47909. {
  47910. front: {
  47911. height: math.unit(6, "feet"),
  47912. name: "Front",
  47913. image: {
  47914. source: "./media/characters/steph/front.svg",
  47915. extra: 1430/1330,
  47916. bottom: 54/1484
  47917. }
  47918. },
  47919. },
  47920. [
  47921. {
  47922. name: "Normal",
  47923. height: math.unit(6, "feet"),
  47924. default: true
  47925. },
  47926. ]
  47927. ))
  47928. characterMakers.push(() => makeCharacter(
  47929. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47930. {
  47931. front: {
  47932. height: math.unit(9, "feet"),
  47933. weight: math.unit(400, "lb"),
  47934. name: "Front",
  47935. image: {
  47936. source: "./media/characters/kil'aman/front.svg",
  47937. extra: 1210/1159,
  47938. bottom: 109/1319
  47939. }
  47940. },
  47941. head: {
  47942. height: math.unit(2.14, "feet"),
  47943. name: "Head",
  47944. image: {
  47945. source: "./media/characters/kil'aman/head.svg"
  47946. }
  47947. },
  47948. maw: {
  47949. height: math.unit(1.21, "feet"),
  47950. name: "Maw",
  47951. image: {
  47952. source: "./media/characters/kil'aman/maw.svg"
  47953. }
  47954. },
  47955. foot: {
  47956. height: math.unit(1.7, "feet"),
  47957. name: "Foot",
  47958. image: {
  47959. source: "./media/characters/kil'aman/foot.svg"
  47960. }
  47961. },
  47962. dick: {
  47963. height: math.unit(2.1, "feet"),
  47964. name: "Dick",
  47965. image: {
  47966. source: "./media/characters/kil'aman/dick.svg"
  47967. }
  47968. },
  47969. },
  47970. [
  47971. {
  47972. name: "Normal",
  47973. height: math.unit(9, "feet")
  47974. },
  47975. {
  47976. name: "Canon Height",
  47977. height: math.unit(10, "miles"),
  47978. default: true
  47979. },
  47980. {
  47981. name: "Maximum",
  47982. height: math.unit(6e9, "miles")
  47983. },
  47984. ]
  47985. ))
  47986. characterMakers.push(() => makeCharacter(
  47987. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47988. {
  47989. front: {
  47990. height: math.unit(90, "feet"),
  47991. weight: math.unit(675000, "lb"),
  47992. name: "Front",
  47993. image: {
  47994. source: "./media/characters/qadan/front.svg",
  47995. extra: 1012/1004,
  47996. bottom: 78/1090
  47997. }
  47998. },
  47999. back: {
  48000. height: math.unit(90, "feet"),
  48001. weight: math.unit(675000, "lb"),
  48002. name: "Back",
  48003. image: {
  48004. source: "./media/characters/qadan/back.svg",
  48005. extra: 1042/1031,
  48006. bottom: 55/1097
  48007. }
  48008. },
  48009. armored: {
  48010. height: math.unit(90, "feet"),
  48011. weight: math.unit(675000, "lb"),
  48012. name: "Armored",
  48013. image: {
  48014. source: "./media/characters/qadan/armored.svg",
  48015. extra: 1047/1037,
  48016. bottom: 48/1095
  48017. }
  48018. },
  48019. },
  48020. [
  48021. {
  48022. name: "Normal",
  48023. height: math.unit(90, "feet"),
  48024. default: true
  48025. },
  48026. ]
  48027. ))
  48028. characterMakers.push(() => makeCharacter(
  48029. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48030. {
  48031. front: {
  48032. height: math.unit(6, "feet"),
  48033. weight: math.unit(225, "lb"),
  48034. name: "Front",
  48035. image: {
  48036. source: "./media/characters/brooke/front.svg",
  48037. extra: 1050/1010,
  48038. bottom: 66/1116
  48039. }
  48040. },
  48041. back: {
  48042. height: math.unit(6, "feet"),
  48043. weight: math.unit(225, "lb"),
  48044. name: "Back",
  48045. image: {
  48046. source: "./media/characters/brooke/back.svg",
  48047. extra: 1053/1013,
  48048. bottom: 41/1094
  48049. }
  48050. },
  48051. dressed: {
  48052. height: math.unit(6, "feet"),
  48053. weight: math.unit(225, "lb"),
  48054. name: "Dressed",
  48055. image: {
  48056. source: "./media/characters/brooke/dressed.svg",
  48057. extra: 1050/1010,
  48058. bottom: 66/1116
  48059. }
  48060. },
  48061. },
  48062. [
  48063. {
  48064. name: "Canon Height",
  48065. height: math.unit(500, "miles"),
  48066. default: true
  48067. },
  48068. ]
  48069. ))
  48070. characterMakers.push(() => makeCharacter(
  48071. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48072. {
  48073. front: {
  48074. height: math.unit(6 + 2/12, "feet"),
  48075. weight: math.unit(210, "lb"),
  48076. name: "Front",
  48077. image: {
  48078. source: "./media/characters/wubs/front.svg",
  48079. extra: 1345/1325,
  48080. bottom: 70/1415
  48081. }
  48082. },
  48083. back: {
  48084. height: math.unit(6 + 2/12, "feet"),
  48085. weight: math.unit(210, "lb"),
  48086. name: "Back",
  48087. image: {
  48088. source: "./media/characters/wubs/back.svg",
  48089. extra: 1296/1275,
  48090. bottom: 58/1354
  48091. }
  48092. },
  48093. },
  48094. [
  48095. {
  48096. name: "Normal",
  48097. height: math.unit(6 + 2/12, "feet"),
  48098. default: true
  48099. },
  48100. {
  48101. name: "Macro",
  48102. height: math.unit(1000, "feet")
  48103. },
  48104. {
  48105. name: "Megamacro",
  48106. height: math.unit(1, "mile")
  48107. },
  48108. ]
  48109. ))
  48110. characterMakers.push(() => makeCharacter(
  48111. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48112. {
  48113. front: {
  48114. height: math.unit(4, "feet"),
  48115. weight: math.unit(120, "lb"),
  48116. name: "Front",
  48117. image: {
  48118. source: "./media/characters/blue/front.svg",
  48119. extra: 1636/1525,
  48120. bottom: 43/1679
  48121. }
  48122. },
  48123. back: {
  48124. height: math.unit(4, "feet"),
  48125. weight: math.unit(120, "lb"),
  48126. name: "Back",
  48127. image: {
  48128. source: "./media/characters/blue/back.svg",
  48129. extra: 1660/1560,
  48130. bottom: 57/1717
  48131. }
  48132. },
  48133. paws: {
  48134. height: math.unit(0.826, "feet"),
  48135. name: "Paws",
  48136. image: {
  48137. source: "./media/characters/blue/paws.svg"
  48138. }
  48139. },
  48140. },
  48141. [
  48142. {
  48143. name: "Micro",
  48144. height: math.unit(3, "inches")
  48145. },
  48146. {
  48147. name: "Normal",
  48148. height: math.unit(4, "feet"),
  48149. default: true
  48150. },
  48151. {
  48152. name: "Femenine Form",
  48153. height: math.unit(14, "feet")
  48154. },
  48155. {
  48156. name: "Werebat Form",
  48157. height: math.unit(18, "feet")
  48158. },
  48159. ]
  48160. ))
  48161. characterMakers.push(() => makeCharacter(
  48162. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48163. {
  48164. female: {
  48165. height: math.unit(7 + 4/12, "feet"),
  48166. weight: math.unit(243, "lb"),
  48167. name: "Female",
  48168. image: {
  48169. source: "./media/characters/kaya/female.svg",
  48170. extra: 975/898,
  48171. bottom: 34/1009
  48172. }
  48173. },
  48174. herm: {
  48175. height: math.unit(7 + 4/12, "feet"),
  48176. weight: math.unit(243, "lb"),
  48177. name: "Herm",
  48178. image: {
  48179. source: "./media/characters/kaya/herm.svg",
  48180. extra: 975/898,
  48181. bottom: 34/1009
  48182. }
  48183. },
  48184. },
  48185. [
  48186. {
  48187. name: "Normal",
  48188. height: math.unit(7 + 4/12, "feet"),
  48189. default: true
  48190. },
  48191. ]
  48192. ))
  48193. characterMakers.push(() => makeCharacter(
  48194. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48195. {
  48196. female: {
  48197. height: math.unit(9 + 4/12, "feet"),
  48198. weight: math.unit(398, "lb"),
  48199. name: "Female",
  48200. image: {
  48201. source: "./media/characters/kassandra/female.svg",
  48202. extra: 908/839,
  48203. bottom: 61/969
  48204. }
  48205. },
  48206. intersex: {
  48207. height: math.unit(9 + 4/12, "feet"),
  48208. weight: math.unit(398, "lb"),
  48209. name: "Intersex",
  48210. image: {
  48211. source: "./media/characters/kassandra/intersex.svg",
  48212. extra: 908/839,
  48213. bottom: 61/969
  48214. }
  48215. },
  48216. },
  48217. [
  48218. {
  48219. name: "Normal",
  48220. height: math.unit(9 + 4/12, "feet"),
  48221. default: true
  48222. },
  48223. ]
  48224. ))
  48225. characterMakers.push(() => makeCharacter(
  48226. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48227. {
  48228. front: {
  48229. height: math.unit(3, "meters"),
  48230. name: "Front",
  48231. image: {
  48232. source: "./media/characters/amy/front.svg",
  48233. extra: 1380/1343,
  48234. bottom: 70/1450
  48235. }
  48236. },
  48237. back: {
  48238. height: math.unit(3, "meters"),
  48239. name: "Back",
  48240. image: {
  48241. source: "./media/characters/amy/back.svg",
  48242. extra: 1380/1347,
  48243. bottom: 66/1446
  48244. }
  48245. },
  48246. },
  48247. [
  48248. {
  48249. name: "Normal",
  48250. height: math.unit(3, "meters"),
  48251. default: true
  48252. },
  48253. ]
  48254. ))
  48255. characterMakers.push(() => makeCharacter(
  48256. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48257. {
  48258. side: {
  48259. height: math.unit(47, "cm"),
  48260. weight: math.unit(10.8, "kg"),
  48261. name: "Side",
  48262. image: {
  48263. source: "./media/characters/alphaschakal/side.svg",
  48264. extra: 1058/568,
  48265. bottom: 62/1120
  48266. }
  48267. },
  48268. back: {
  48269. height: math.unit(78, "cm"),
  48270. weight: math.unit(10.8, "kg"),
  48271. name: "Back",
  48272. image: {
  48273. source: "./media/characters/alphaschakal/back.svg",
  48274. extra: 1102/942,
  48275. bottom: 185/1287
  48276. }
  48277. },
  48278. head: {
  48279. height: math.unit(28, "cm"),
  48280. name: "Head",
  48281. image: {
  48282. source: "./media/characters/alphaschakal/head.svg",
  48283. extra: 696/508,
  48284. bottom: 0/696
  48285. }
  48286. },
  48287. paw: {
  48288. height: math.unit(16, "cm"),
  48289. name: "Paw",
  48290. image: {
  48291. source: "./media/characters/alphaschakal/paw.svg"
  48292. }
  48293. },
  48294. },
  48295. [
  48296. {
  48297. name: "Normal",
  48298. height: math.unit(47, "cm"),
  48299. default: true
  48300. },
  48301. {
  48302. name: "Macro",
  48303. height: math.unit(340, "cm")
  48304. },
  48305. ]
  48306. ))
  48307. characterMakers.push(() => makeCharacter(
  48308. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48309. {
  48310. front: {
  48311. height: math.unit(36, "earths"),
  48312. name: "Front",
  48313. image: {
  48314. source: "./media/characters/ecobyss/front.svg",
  48315. extra: 1282/1215,
  48316. bottom: 11/1293
  48317. }
  48318. },
  48319. back: {
  48320. height: math.unit(36, "earths"),
  48321. name: "Back",
  48322. image: {
  48323. source: "./media/characters/ecobyss/back.svg",
  48324. extra: 1291/1222,
  48325. bottom: 8/1299
  48326. }
  48327. },
  48328. },
  48329. [
  48330. {
  48331. name: "Normal",
  48332. height: math.unit(36, "earths"),
  48333. default: true
  48334. },
  48335. ]
  48336. ))
  48337. characterMakers.push(() => makeCharacter(
  48338. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48339. {
  48340. front: {
  48341. height: math.unit(12, "feet"),
  48342. name: "Front",
  48343. image: {
  48344. source: "./media/characters/vasuk/front.svg",
  48345. extra: 1326/1207,
  48346. bottom: 64/1390
  48347. }
  48348. },
  48349. },
  48350. [
  48351. {
  48352. name: "Normal",
  48353. height: math.unit(12, "feet"),
  48354. default: true
  48355. },
  48356. ]
  48357. ))
  48358. characterMakers.push(() => makeCharacter(
  48359. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48360. {
  48361. side: {
  48362. height: math.unit(100, "feet"),
  48363. name: "Side",
  48364. image: {
  48365. source: "./media/characters/linneaus/side.svg",
  48366. extra: 987/807,
  48367. bottom: 47/1034
  48368. }
  48369. },
  48370. },
  48371. [
  48372. {
  48373. name: "Macro",
  48374. height: math.unit(100, "feet"),
  48375. default: true
  48376. },
  48377. ]
  48378. ))
  48379. characterMakers.push(() => makeCharacter(
  48380. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48381. {
  48382. front: {
  48383. height: math.unit(8, "feet"),
  48384. weight: math.unit(1200, "lb"),
  48385. name: "Front",
  48386. image: {
  48387. source: "./media/characters/nyterious-daligdig/front.svg",
  48388. extra: 1284/1094,
  48389. bottom: 84/1368
  48390. }
  48391. },
  48392. back: {
  48393. height: math.unit(8, "feet"),
  48394. weight: math.unit(1200, "lb"),
  48395. name: "Back",
  48396. image: {
  48397. source: "./media/characters/nyterious-daligdig/back.svg",
  48398. extra: 1301/1121,
  48399. bottom: 129/1430
  48400. }
  48401. },
  48402. mouth: {
  48403. height: math.unit(1.464, "feet"),
  48404. name: "Mouth",
  48405. image: {
  48406. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48407. }
  48408. },
  48409. },
  48410. [
  48411. {
  48412. name: "Small",
  48413. height: math.unit(8, "feet"),
  48414. default: true
  48415. },
  48416. {
  48417. name: "Normal",
  48418. height: math.unit(15, "feet")
  48419. },
  48420. {
  48421. name: "Macro",
  48422. height: math.unit(90, "feet")
  48423. },
  48424. ]
  48425. ))
  48426. characterMakers.push(() => makeCharacter(
  48427. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48428. {
  48429. front: {
  48430. height: math.unit(7 + 4/12, "feet"),
  48431. weight: math.unit(252, "lb"),
  48432. name: "Front",
  48433. image: {
  48434. source: "./media/characters/bandel/front.svg",
  48435. extra: 1946/1775,
  48436. bottom: 26/1972
  48437. }
  48438. },
  48439. back: {
  48440. height: math.unit(7 + 4/12, "feet"),
  48441. weight: math.unit(252, "lb"),
  48442. name: "Back",
  48443. image: {
  48444. source: "./media/characters/bandel/back.svg",
  48445. extra: 1940/1770,
  48446. bottom: 25/1965
  48447. }
  48448. },
  48449. maw: {
  48450. height: math.unit(2.15, "feet"),
  48451. name: "Maw",
  48452. image: {
  48453. source: "./media/characters/bandel/maw.svg"
  48454. }
  48455. },
  48456. stomach: {
  48457. height: math.unit(1.95, "feet"),
  48458. name: "Stomach",
  48459. image: {
  48460. source: "./media/characters/bandel/stomach.svg"
  48461. }
  48462. },
  48463. },
  48464. [
  48465. {
  48466. name: "Normal",
  48467. height: math.unit(7 + 4/12, "feet"),
  48468. default: true
  48469. },
  48470. ]
  48471. ))
  48472. characterMakers.push(() => makeCharacter(
  48473. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48474. {
  48475. front: {
  48476. height: math.unit(10 + 5/12, "feet"),
  48477. weight: math.unit(773.5, "kg"),
  48478. name: "Front",
  48479. image: {
  48480. source: "./media/characters/zed/front.svg",
  48481. extra: 987/941,
  48482. bottom: 52/1039
  48483. }
  48484. },
  48485. },
  48486. [
  48487. {
  48488. name: "Short",
  48489. height: math.unit(5 + 4/12, "feet")
  48490. },
  48491. {
  48492. name: "Average",
  48493. height: math.unit(10 + 5/12, "feet"),
  48494. default: true
  48495. },
  48496. {
  48497. name: "Mini-Macro",
  48498. height: math.unit(24 + 9/12, "feet")
  48499. },
  48500. {
  48501. name: "Macro",
  48502. height: math.unit(249, "feet")
  48503. },
  48504. {
  48505. name: "Mega-Macro",
  48506. height: math.unit(12490, "feet")
  48507. },
  48508. {
  48509. name: "Giga-Macro",
  48510. height: math.unit(24.9, "miles")
  48511. },
  48512. {
  48513. name: "Tera-Macro",
  48514. height: math.unit(24900, "miles")
  48515. },
  48516. {
  48517. name: "Cosmic Scale",
  48518. height: math.unit(38.9, "lightyears")
  48519. },
  48520. {
  48521. name: "Universal Scale",
  48522. height: math.unit(138e12, "lightyears")
  48523. },
  48524. ]
  48525. ))
  48526. characterMakers.push(() => makeCharacter(
  48527. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48528. {
  48529. front: {
  48530. height: math.unit(1561, "inches"),
  48531. name: "Front",
  48532. image: {
  48533. source: "./media/characters/ivan/front.svg",
  48534. extra: 1126/1071,
  48535. bottom: 26/1152
  48536. }
  48537. },
  48538. back: {
  48539. height: math.unit(1561, "inches"),
  48540. name: "Back",
  48541. image: {
  48542. source: "./media/characters/ivan/back.svg",
  48543. extra: 1134/1079,
  48544. bottom: 30/1164
  48545. }
  48546. },
  48547. },
  48548. [
  48549. {
  48550. name: "Normal",
  48551. height: math.unit(1561, "inches"),
  48552. default: true
  48553. },
  48554. ]
  48555. ))
  48556. characterMakers.push(() => makeCharacter(
  48557. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48558. {
  48559. front: {
  48560. height: math.unit(5 + 7/12, "feet"),
  48561. weight: math.unit(150, "lb"),
  48562. name: "Front",
  48563. image: {
  48564. source: "./media/characters/robin-arctic-hare/front.svg",
  48565. extra: 1148/974,
  48566. bottom: 20/1168
  48567. }
  48568. },
  48569. },
  48570. [
  48571. {
  48572. name: "Normal",
  48573. height: math.unit(5 + 7/12, "feet"),
  48574. default: true
  48575. },
  48576. ]
  48577. ))
  48578. characterMakers.push(() => makeCharacter(
  48579. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48580. {
  48581. side: {
  48582. height: math.unit(5, "feet"),
  48583. name: "Side",
  48584. image: {
  48585. source: "./media/characters/birch/side.svg",
  48586. extra: 985/796,
  48587. bottom: 111/1096
  48588. }
  48589. },
  48590. },
  48591. [
  48592. {
  48593. name: "Normal",
  48594. height: math.unit(5, "feet"),
  48595. default: true
  48596. },
  48597. ]
  48598. ))
  48599. characterMakers.push(() => makeCharacter(
  48600. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48601. {
  48602. front: {
  48603. height: math.unit(4, "feet"),
  48604. name: "Front",
  48605. image: {
  48606. source: "./media/characters/rasp/front.svg",
  48607. extra: 561/478,
  48608. bottom: 74/635
  48609. }
  48610. },
  48611. },
  48612. [
  48613. {
  48614. name: "Normal",
  48615. height: math.unit(4, "feet"),
  48616. default: true
  48617. },
  48618. ]
  48619. ))
  48620. characterMakers.push(() => makeCharacter(
  48621. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48622. {
  48623. front: {
  48624. height: math.unit(4 + 6/12, "feet"),
  48625. name: "Front",
  48626. image: {
  48627. source: "./media/characters/agatha/front.svg",
  48628. extra: 947/933,
  48629. bottom: 42/989
  48630. }
  48631. },
  48632. back: {
  48633. height: math.unit(4 + 6/12, "feet"),
  48634. name: "Back",
  48635. image: {
  48636. source: "./media/characters/agatha/back.svg",
  48637. extra: 935/922,
  48638. bottom: 48/983
  48639. }
  48640. },
  48641. },
  48642. [
  48643. {
  48644. name: "Normal",
  48645. height: math.unit(4 + 6 /12, "feet"),
  48646. default: true
  48647. },
  48648. {
  48649. name: "Max Size",
  48650. height: math.unit(500, "feet")
  48651. },
  48652. ]
  48653. ))
  48654. characterMakers.push(() => makeCharacter(
  48655. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48656. {
  48657. side: {
  48658. height: math.unit(30, "feet"),
  48659. name: "Side",
  48660. image: {
  48661. source: "./media/characters/roggy/side.svg",
  48662. extra: 909/643,
  48663. bottom: 63/972
  48664. }
  48665. },
  48666. lounging: {
  48667. height: math.unit(20, "feet"),
  48668. name: "Lounging",
  48669. image: {
  48670. source: "./media/characters/roggy/lounging.svg",
  48671. extra: 643/479,
  48672. bottom: 145/788
  48673. }
  48674. },
  48675. handpaw: {
  48676. height: math.unit(13.1, "feet"),
  48677. name: "Handpaw",
  48678. image: {
  48679. source: "./media/characters/roggy/handpaw.svg"
  48680. }
  48681. },
  48682. footpaw: {
  48683. height: math.unit(15.8, "feet"),
  48684. name: "Footpaw",
  48685. image: {
  48686. source: "./media/characters/roggy/footpaw.svg"
  48687. }
  48688. },
  48689. },
  48690. [
  48691. {
  48692. name: "Menacing",
  48693. height: math.unit(30, "feet"),
  48694. default: true
  48695. },
  48696. ]
  48697. ))
  48698. characterMakers.push(() => makeCharacter(
  48699. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48700. {
  48701. front: {
  48702. height: math.unit(5 + 7/12, "feet"),
  48703. weight: math.unit(135, "lb"),
  48704. name: "Front",
  48705. image: {
  48706. source: "./media/characters/naomi/front.svg",
  48707. extra: 1209/1154,
  48708. bottom: 129/1338
  48709. }
  48710. },
  48711. back: {
  48712. height: math.unit(5 + 7/12, "feet"),
  48713. weight: math.unit(135, "lb"),
  48714. name: "Back",
  48715. image: {
  48716. source: "./media/characters/naomi/back.svg",
  48717. extra: 1252/1190,
  48718. bottom: 23/1275
  48719. }
  48720. },
  48721. },
  48722. [
  48723. {
  48724. name: "Normal",
  48725. height: math.unit(5 + 7 /12, "feet"),
  48726. default: true
  48727. },
  48728. ]
  48729. ))
  48730. characterMakers.push(() => makeCharacter(
  48731. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48732. {
  48733. side: {
  48734. height: math.unit(35, "meters"),
  48735. name: "Side",
  48736. image: {
  48737. source: "./media/characters/kimpi/side.svg",
  48738. extra: 419/382,
  48739. bottom: 63/482
  48740. }
  48741. },
  48742. hand: {
  48743. height: math.unit(8.96, "meters"),
  48744. name: "Hand",
  48745. image: {
  48746. source: "./media/characters/kimpi/hand.svg"
  48747. }
  48748. },
  48749. },
  48750. [
  48751. {
  48752. name: "Normal",
  48753. height: math.unit(35, "meters"),
  48754. default: true
  48755. },
  48756. ]
  48757. ))
  48758. characterMakers.push(() => makeCharacter(
  48759. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48760. {
  48761. front: {
  48762. height: math.unit(4 + 4/12, "feet"),
  48763. name: "Front",
  48764. image: {
  48765. source: "./media/characters/pepper-purrloin/front.svg",
  48766. extra: 1141/1024,
  48767. bottom: 21/1162
  48768. }
  48769. },
  48770. },
  48771. [
  48772. {
  48773. name: "Normal",
  48774. height: math.unit(4 + 4/12, "feet"),
  48775. default: true
  48776. },
  48777. ]
  48778. ))
  48779. characterMakers.push(() => makeCharacter(
  48780. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48781. {
  48782. front: {
  48783. height: math.unit(6 + 2/12, "feet"),
  48784. name: "Front",
  48785. image: {
  48786. source: "./media/characters/raphael/front.svg",
  48787. extra: 1101/962,
  48788. bottom: 59/1160
  48789. }
  48790. },
  48791. },
  48792. [
  48793. {
  48794. name: "Normal",
  48795. height: math.unit(6 + 2/12, "feet"),
  48796. default: true
  48797. },
  48798. ]
  48799. ))
  48800. characterMakers.push(() => makeCharacter(
  48801. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48802. {
  48803. front: {
  48804. height: math.unit(6, "feet"),
  48805. weight: math.unit(150, "lb"),
  48806. name: "Front",
  48807. image: {
  48808. source: "./media/characters/victor-williams/front.svg",
  48809. extra: 1894/1825,
  48810. bottom: 67/1961
  48811. }
  48812. },
  48813. },
  48814. [
  48815. {
  48816. name: "Normal",
  48817. height: math.unit(6, "feet"),
  48818. default: true
  48819. },
  48820. ]
  48821. ))
  48822. characterMakers.push(() => makeCharacter(
  48823. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48824. {
  48825. front: {
  48826. height: math.unit(5 + 8/12, "feet"),
  48827. weight: math.unit(150, "lb"),
  48828. name: "Front",
  48829. image: {
  48830. source: "./media/characters/rachel/front.svg",
  48831. extra: 1902/1787,
  48832. bottom: 46/1948
  48833. }
  48834. },
  48835. },
  48836. [
  48837. {
  48838. name: "Base Height",
  48839. height: math.unit(5 + 8/12, "feet"),
  48840. default: true
  48841. },
  48842. {
  48843. name: "Macro",
  48844. height: math.unit(200, "feet")
  48845. },
  48846. {
  48847. name: "Mega Macro",
  48848. height: math.unit(1, "mile")
  48849. },
  48850. {
  48851. name: "Giga Macro",
  48852. height: math.unit(1500, "miles")
  48853. },
  48854. {
  48855. name: "Tera Macro",
  48856. height: math.unit(8000, "miles")
  48857. },
  48858. {
  48859. name: "Tera Macro+",
  48860. height: math.unit(2e5, "miles")
  48861. },
  48862. ]
  48863. ))
  48864. characterMakers.push(() => makeCharacter(
  48865. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48866. {
  48867. front: {
  48868. height: math.unit(6.5, "feet"),
  48869. name: "Front",
  48870. image: {
  48871. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48872. extra: 860/819,
  48873. bottom: 307/1167
  48874. }
  48875. },
  48876. back: {
  48877. height: math.unit(6.5, "feet"),
  48878. name: "Back",
  48879. image: {
  48880. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48881. extra: 880/837,
  48882. bottom: 395/1275
  48883. }
  48884. },
  48885. sleeping: {
  48886. height: math.unit(2.79, "feet"),
  48887. name: "Sleeping",
  48888. image: {
  48889. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48890. extra: 465/383,
  48891. bottom: 263/728
  48892. }
  48893. },
  48894. maw: {
  48895. height: math.unit(2.52, "feet"),
  48896. name: "Maw",
  48897. image: {
  48898. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48899. }
  48900. },
  48901. },
  48902. [
  48903. {
  48904. name: "Normal",
  48905. height: math.unit(6.5, "feet"),
  48906. default: true
  48907. },
  48908. ]
  48909. ))
  48910. characterMakers.push(() => makeCharacter(
  48911. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48912. {
  48913. front: {
  48914. height: math.unit(5, "feet"),
  48915. name: "Front",
  48916. image: {
  48917. source: "./media/characters/nova-nerium/front.svg",
  48918. extra: 1548/1392,
  48919. bottom: 374/1922
  48920. }
  48921. },
  48922. back: {
  48923. height: math.unit(5, "feet"),
  48924. name: "Back",
  48925. image: {
  48926. source: "./media/characters/nova-nerium/back.svg",
  48927. extra: 1658/1468,
  48928. bottom: 257/1915
  48929. }
  48930. },
  48931. },
  48932. [
  48933. {
  48934. name: "Normal",
  48935. height: math.unit(5, "feet"),
  48936. default: true
  48937. },
  48938. ]
  48939. ))
  48940. characterMakers.push(() => makeCharacter(
  48941. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48942. {
  48943. front: {
  48944. height: math.unit(5 + 4/12, "feet"),
  48945. name: "Front",
  48946. image: {
  48947. source: "./media/characters/ashe-pyriph/front.svg",
  48948. extra: 1935/1747,
  48949. bottom: 60/1995
  48950. }
  48951. },
  48952. },
  48953. [
  48954. {
  48955. name: "Normal",
  48956. height: math.unit(5 + 4/12, "feet"),
  48957. default: true
  48958. },
  48959. ]
  48960. ))
  48961. characterMakers.push(() => makeCharacter(
  48962. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48963. {
  48964. front: {
  48965. height: math.unit(8.7, "feet"),
  48966. name: "Front",
  48967. image: {
  48968. source: "./media/characters/flicker-wisp/front.svg",
  48969. extra: 1835/1613,
  48970. bottom: 449/2284
  48971. }
  48972. },
  48973. side: {
  48974. height: math.unit(8.7, "feet"),
  48975. name: "Side",
  48976. image: {
  48977. source: "./media/characters/flicker-wisp/side.svg",
  48978. extra: 1841/1642,
  48979. bottom: 336/2177
  48980. },
  48981. default: true
  48982. },
  48983. maw: {
  48984. height: math.unit(3.35, "feet"),
  48985. name: "Maw",
  48986. image: {
  48987. source: "./media/characters/flicker-wisp/maw.svg",
  48988. extra: 2338/1506,
  48989. bottom: 0/2338
  48990. }
  48991. },
  48992. ovipositor: {
  48993. height: math.unit(4.95, "feet"),
  48994. name: "Ovipositor",
  48995. image: {
  48996. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48997. }
  48998. },
  48999. egg: {
  49000. height: math.unit(0.385, "feet"),
  49001. weight: math.unit(2, "lb"),
  49002. name: "Egg",
  49003. image: {
  49004. source: "./media/characters/flicker-wisp/egg.svg"
  49005. }
  49006. },
  49007. },
  49008. [
  49009. {
  49010. name: "Normal",
  49011. height: math.unit(8.7, "feet"),
  49012. default: true
  49013. },
  49014. ]
  49015. ))
  49016. characterMakers.push(() => makeCharacter(
  49017. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49018. {
  49019. side: {
  49020. height: math.unit(11, "feet"),
  49021. name: "Side",
  49022. image: {
  49023. source: "./media/characters/faefnul/side.svg",
  49024. extra: 1100/1007,
  49025. bottom: 0/1100
  49026. }
  49027. },
  49028. },
  49029. [
  49030. {
  49031. name: "Normal",
  49032. height: math.unit(11, "feet"),
  49033. default: true
  49034. },
  49035. ]
  49036. ))
  49037. characterMakers.push(() => makeCharacter(
  49038. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49039. {
  49040. front: {
  49041. height: math.unit(6 + 2/12, "feet"),
  49042. name: "Front",
  49043. image: {
  49044. source: "./media/characters/shady/front.svg",
  49045. extra: 502/461,
  49046. bottom: 9/511
  49047. }
  49048. },
  49049. kneeling: {
  49050. height: math.unit(4.6, "feet"),
  49051. name: "Kneeling",
  49052. image: {
  49053. source: "./media/characters/shady/kneeling.svg",
  49054. extra: 1328/1219,
  49055. bottom: 117/1445
  49056. }
  49057. },
  49058. maw: {
  49059. height: math.unit(2, "feet"),
  49060. name: "Maw",
  49061. image: {
  49062. source: "./media/characters/shady/maw.svg"
  49063. }
  49064. },
  49065. },
  49066. [
  49067. {
  49068. name: "Nano",
  49069. height: math.unit(1, "mm")
  49070. },
  49071. {
  49072. name: "Micro",
  49073. height: math.unit(12, "mm")
  49074. },
  49075. {
  49076. name: "Tiny",
  49077. height: math.unit(3, "inches")
  49078. },
  49079. {
  49080. name: "Normal",
  49081. height: math.unit(6 + 2/12, "feet"),
  49082. default: true
  49083. },
  49084. {
  49085. name: "Big",
  49086. height: math.unit(15, "feet")
  49087. },
  49088. {
  49089. name: "Macro",
  49090. height: math.unit(150, "feet")
  49091. },
  49092. {
  49093. name: "Titanic",
  49094. height: math.unit(500, "feet")
  49095. },
  49096. ]
  49097. ))
  49098. characterMakers.push(() => makeCharacter(
  49099. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49100. {
  49101. front: {
  49102. height: math.unit(12, "feet"),
  49103. name: "Front",
  49104. image: {
  49105. source: "./media/characters/fenrir/front.svg",
  49106. extra: 968/875,
  49107. bottom: 22/990
  49108. }
  49109. },
  49110. },
  49111. [
  49112. {
  49113. name: "Big",
  49114. height: math.unit(12, "feet"),
  49115. default: true
  49116. },
  49117. ]
  49118. ))
  49119. characterMakers.push(() => makeCharacter(
  49120. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49121. {
  49122. front: {
  49123. height: math.unit(5 + 4/12, "feet"),
  49124. name: "Front",
  49125. image: {
  49126. source: "./media/characters/makar/front.svg",
  49127. extra: 1181/1112,
  49128. bottom: 78/1259
  49129. }
  49130. },
  49131. },
  49132. [
  49133. {
  49134. name: "Normal",
  49135. height: math.unit(5 + 4/12, "feet"),
  49136. default: true
  49137. },
  49138. ]
  49139. ))
  49140. characterMakers.push(() => makeCharacter(
  49141. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49142. {
  49143. front: {
  49144. height: math.unit(5 + 7/12, "feet"),
  49145. name: "Front",
  49146. image: {
  49147. source: "./media/characters/callow/front.svg",
  49148. extra: 1482/1304,
  49149. bottom: 23/1505
  49150. }
  49151. },
  49152. back: {
  49153. height: math.unit(5 + 7/12, "feet"),
  49154. name: "Back",
  49155. image: {
  49156. source: "./media/characters/callow/back.svg",
  49157. extra: 1484/1296,
  49158. bottom: 25/1509
  49159. }
  49160. },
  49161. },
  49162. [
  49163. {
  49164. name: "Micro",
  49165. height: math.unit(3, "inches"),
  49166. default: true
  49167. },
  49168. {
  49169. name: "Normal",
  49170. height: math.unit(5 + 7/12, "feet")
  49171. },
  49172. ]
  49173. ))
  49174. characterMakers.push(() => makeCharacter(
  49175. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49176. {
  49177. front: {
  49178. height: math.unit(6 + 2/12, "feet"),
  49179. name: "Front",
  49180. image: {
  49181. source: "./media/characters/natel/front.svg",
  49182. extra: 1833/1692,
  49183. bottom: 166/1999
  49184. }
  49185. },
  49186. },
  49187. [
  49188. {
  49189. name: "Normal",
  49190. height: math.unit(6 + 2/12, "feet"),
  49191. default: true
  49192. },
  49193. ]
  49194. ))
  49195. characterMakers.push(() => makeCharacter(
  49196. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49197. {
  49198. front: {
  49199. height: math.unit(1.75, "meters"),
  49200. name: "Front",
  49201. image: {
  49202. source: "./media/characters/misu/front.svg",
  49203. extra: 1690/1558,
  49204. bottom: 234/1924
  49205. }
  49206. },
  49207. back: {
  49208. height: math.unit(1.75, "meters"),
  49209. name: "Back",
  49210. image: {
  49211. source: "./media/characters/misu/back.svg",
  49212. extra: 1762/1618,
  49213. bottom: 146/1908
  49214. }
  49215. },
  49216. frontNude: {
  49217. height: math.unit(1.75, "meters"),
  49218. name: "Front (Nude)",
  49219. image: {
  49220. source: "./media/characters/misu/front-nude.svg",
  49221. extra: 1690/1558,
  49222. bottom: 234/1924
  49223. }
  49224. },
  49225. backNude: {
  49226. height: math.unit(1.75, "meters"),
  49227. name: "Back (Nude)",
  49228. image: {
  49229. source: "./media/characters/misu/back-nude.svg",
  49230. extra: 1762/1618,
  49231. bottom: 146/1908
  49232. }
  49233. },
  49234. frontErect: {
  49235. height: math.unit(1.75, "meters"),
  49236. name: "Front (Erect)",
  49237. image: {
  49238. source: "./media/characters/misu/front-erect.svg",
  49239. extra: 1690/1558,
  49240. bottom: 234/1924
  49241. }
  49242. },
  49243. maw: {
  49244. height: math.unit(0.47, "meters"),
  49245. name: "Maw",
  49246. image: {
  49247. source: "./media/characters/misu/maw.svg"
  49248. }
  49249. },
  49250. head: {
  49251. height: math.unit(0.35, "meters"),
  49252. name: "Head",
  49253. image: {
  49254. source: "./media/characters/misu/head.svg"
  49255. }
  49256. },
  49257. rear: {
  49258. height: math.unit(0.47, "meters"),
  49259. name: "Rear",
  49260. image: {
  49261. source: "./media/characters/misu/rear.svg"
  49262. }
  49263. },
  49264. },
  49265. [
  49266. {
  49267. name: "Normal",
  49268. height: math.unit(1.75, "meters")
  49269. },
  49270. {
  49271. name: "Not good for the people",
  49272. height: math.unit(42, "meters")
  49273. },
  49274. {
  49275. name: "Not good for the neighborhood",
  49276. height: math.unit(135, "meters")
  49277. },
  49278. {
  49279. name: "Bit bigger problem",
  49280. height: math.unit(380, "meters"),
  49281. default: true
  49282. },
  49283. {
  49284. name: "Not good for the city",
  49285. height: math.unit(1.5, "km")
  49286. },
  49287. {
  49288. name: "Not good for the county",
  49289. height: math.unit(5.5, "km")
  49290. },
  49291. {
  49292. name: "Not good for the state",
  49293. height: math.unit(25, "km")
  49294. },
  49295. {
  49296. name: "Not good for the country",
  49297. height: math.unit(125, "km")
  49298. },
  49299. {
  49300. name: "Not good for the continent",
  49301. height: math.unit(2100, "km")
  49302. },
  49303. {
  49304. name: "Not good for the planet",
  49305. height: math.unit(35000, "km")
  49306. },
  49307. {
  49308. name: "Just no",
  49309. height: math.unit(8.5e18, "km")
  49310. },
  49311. ]
  49312. ))
  49313. characterMakers.push(() => makeCharacter(
  49314. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49315. {
  49316. front: {
  49317. height: math.unit(6.5, "feet"),
  49318. name: "Front",
  49319. image: {
  49320. source: "./media/characters/poppy/front.svg",
  49321. extra: 1878/1812,
  49322. bottom: 43/1921
  49323. }
  49324. },
  49325. feet: {
  49326. height: math.unit(1.06, "feet"),
  49327. name: "Feet",
  49328. image: {
  49329. source: "./media/characters/poppy/feet.svg",
  49330. extra: 1083/1083,
  49331. bottom: 87/1170
  49332. }
  49333. },
  49334. },
  49335. [
  49336. {
  49337. name: "Human",
  49338. height: math.unit(6.5, "feet")
  49339. },
  49340. {
  49341. name: "Default",
  49342. height: math.unit(300, "feet"),
  49343. default: true
  49344. },
  49345. {
  49346. name: "Huge",
  49347. height: math.unit(850, "feet")
  49348. },
  49349. {
  49350. name: "Mega",
  49351. height: math.unit(8000, "feet")
  49352. },
  49353. {
  49354. name: "Giga",
  49355. height: math.unit(300, "miles")
  49356. },
  49357. ]
  49358. ))
  49359. characterMakers.push(() => makeCharacter(
  49360. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49361. {
  49362. bipedal: {
  49363. height: math.unit(7, "feet"),
  49364. name: "Bipedal",
  49365. image: {
  49366. source: "./media/characters/zener/bipedal.svg",
  49367. extra: 874/805,
  49368. bottom: 109/983
  49369. }
  49370. },
  49371. quadrupedal: {
  49372. height: math.unit(4.64, "feet"),
  49373. name: "Quadrupedal",
  49374. image: {
  49375. source: "./media/characters/zener/quadrupedal.svg",
  49376. extra: 638/507,
  49377. bottom: 190/828
  49378. }
  49379. },
  49380. cock: {
  49381. height: math.unit(18, "inches"),
  49382. name: "Cock",
  49383. image: {
  49384. source: "./media/characters/zener/cock.svg"
  49385. }
  49386. },
  49387. },
  49388. [
  49389. {
  49390. name: "Normal",
  49391. height: math.unit(7, "feet"),
  49392. default: true
  49393. },
  49394. ]
  49395. ))
  49396. characterMakers.push(() => makeCharacter(
  49397. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49398. {
  49399. nude: {
  49400. height: math.unit(5 + 6/12, "feet"),
  49401. name: "Nude",
  49402. image: {
  49403. source: "./media/characters/charlie-dog/nude.svg",
  49404. extra: 768/734,
  49405. bottom: 26/794
  49406. }
  49407. },
  49408. dressed: {
  49409. height: math.unit(5 + 6/12, "feet"),
  49410. name: "Dressed",
  49411. image: {
  49412. source: "./media/characters/charlie-dog/dressed.svg",
  49413. extra: 768/734,
  49414. bottom: 26/794
  49415. }
  49416. },
  49417. },
  49418. [
  49419. {
  49420. name: "Normal",
  49421. height: math.unit(5 + 6/12, "feet"),
  49422. default: true
  49423. },
  49424. ]
  49425. ))
  49426. characterMakers.push(() => makeCharacter(
  49427. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49428. {
  49429. front: {
  49430. height: math.unit(6 + 4/12, "feet"),
  49431. name: "Front",
  49432. image: {
  49433. source: "./media/characters/ir'istrasz/front.svg",
  49434. extra: 1014/977,
  49435. bottom: 65/1079
  49436. }
  49437. },
  49438. back: {
  49439. height: math.unit(6 + 4/12, "feet"),
  49440. name: "Back",
  49441. image: {
  49442. source: "./media/characters/ir'istrasz/back.svg",
  49443. extra: 1024/992,
  49444. bottom: 34/1058
  49445. }
  49446. },
  49447. },
  49448. [
  49449. {
  49450. name: "Normal",
  49451. height: math.unit(6 + 4/12, "feet"),
  49452. default: true
  49453. },
  49454. ]
  49455. ))
  49456. characterMakers.push(() => makeCharacter(
  49457. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49458. {
  49459. front: {
  49460. height: math.unit(5 + 8/12, "feet"),
  49461. name: "Front",
  49462. image: {
  49463. source: "./media/characters/dee-ditto/front.svg",
  49464. extra: 1874/1785,
  49465. bottom: 68/1942
  49466. }
  49467. },
  49468. back: {
  49469. height: math.unit(5 + 8/12, "feet"),
  49470. name: "Back",
  49471. image: {
  49472. source: "./media/characters/dee-ditto/back.svg",
  49473. extra: 1870/1783,
  49474. bottom: 77/1947
  49475. }
  49476. },
  49477. },
  49478. [
  49479. {
  49480. name: "Normal",
  49481. height: math.unit(5 + 8/12, "feet"),
  49482. default: true
  49483. },
  49484. ]
  49485. ))
  49486. characterMakers.push(() => makeCharacter(
  49487. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49488. {
  49489. front: {
  49490. height: math.unit(7 + 6/12, "feet"),
  49491. name: "Front",
  49492. image: {
  49493. source: "./media/characters/fey/front.svg",
  49494. extra: 995/979,
  49495. bottom: 30/1025
  49496. }
  49497. },
  49498. back: {
  49499. height: math.unit(7 + 6/12, "feet"),
  49500. name: "Back",
  49501. image: {
  49502. source: "./media/characters/fey/back.svg",
  49503. extra: 1079/1008,
  49504. bottom: 5/1084
  49505. }
  49506. },
  49507. dressed: {
  49508. height: math.unit(7 + 6/12, "feet"),
  49509. name: "Dressed",
  49510. image: {
  49511. source: "./media/characters/fey/dressed.svg",
  49512. extra: 995/979,
  49513. bottom: 30/1025
  49514. }
  49515. },
  49516. },
  49517. [
  49518. {
  49519. name: "Normal",
  49520. height: math.unit(7 + 6/12, "feet"),
  49521. default: true
  49522. },
  49523. ]
  49524. ))
  49525. characterMakers.push(() => makeCharacter(
  49526. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49527. {
  49528. standing: {
  49529. height: math.unit(17, "feet"),
  49530. name: "Standing",
  49531. image: {
  49532. source: "./media/characters/aster/standing.svg",
  49533. extra: 1798/1598,
  49534. bottom: 117/1915
  49535. }
  49536. },
  49537. },
  49538. [
  49539. {
  49540. name: "Normal",
  49541. height: math.unit(17, "feet"),
  49542. default: true
  49543. },
  49544. {
  49545. name: "Homewrecker",
  49546. height: math.unit(95, "feet")
  49547. },
  49548. {
  49549. name: "Planet Devourer",
  49550. height: math.unit(1008000, "miles")
  49551. },
  49552. ]
  49553. ))
  49554. characterMakers.push(() => makeCharacter(
  49555. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49556. {
  49557. front: {
  49558. height: math.unit(6 + 5/12, "feet"),
  49559. weight: math.unit(265, "lb"),
  49560. name: "Front",
  49561. image: {
  49562. source: "./media/characters/devon-childs/front.svg",
  49563. extra: 1795/1721,
  49564. bottom: 41/1836
  49565. }
  49566. },
  49567. side: {
  49568. height: math.unit(6 + 5/12, "feet"),
  49569. weight: math.unit(265, "lb"),
  49570. name: "Side",
  49571. image: {
  49572. source: "./media/characters/devon-childs/side.svg",
  49573. extra: 1812/1738,
  49574. bottom: 30/1842
  49575. }
  49576. },
  49577. back: {
  49578. height: math.unit(6 + 5/12, "feet"),
  49579. weight: math.unit(265, "lb"),
  49580. name: "Back",
  49581. image: {
  49582. source: "./media/characters/devon-childs/back.svg",
  49583. extra: 1808/1735,
  49584. bottom: 23/1831
  49585. }
  49586. },
  49587. hand: {
  49588. height: math.unit(1.464, "feet"),
  49589. name: "Hand",
  49590. image: {
  49591. source: "./media/characters/devon-childs/hand.svg"
  49592. }
  49593. },
  49594. foot: {
  49595. height: math.unit(1.6, "feet"),
  49596. name: "Foot",
  49597. image: {
  49598. source: "./media/characters/devon-childs/foot.svg"
  49599. }
  49600. },
  49601. },
  49602. [
  49603. {
  49604. name: "Micro",
  49605. height: math.unit(7, "cm")
  49606. },
  49607. {
  49608. name: "Normal",
  49609. height: math.unit(6 + 5/12, "feet"),
  49610. default: true
  49611. },
  49612. {
  49613. name: "Macro",
  49614. height: math.unit(154, "feet")
  49615. },
  49616. ]
  49617. ))
  49618. characterMakers.push(() => makeCharacter(
  49619. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49620. {
  49621. front: {
  49622. height: math.unit(6, "feet"),
  49623. weight: math.unit(180, "lb"),
  49624. name: "Front",
  49625. image: {
  49626. source: "./media/characters/lydemox-vir/front.svg",
  49627. extra: 1632/1435,
  49628. bottom: 58/1690
  49629. }
  49630. },
  49631. frontSFW: {
  49632. height: math.unit(6, "feet"),
  49633. weight: math.unit(180, "lb"),
  49634. name: "Front (SFW)",
  49635. image: {
  49636. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49637. extra: 1632/1435,
  49638. bottom: 58/1690
  49639. }
  49640. },
  49641. back: {
  49642. height: math.unit(6, "feet"),
  49643. weight: math.unit(180, "lb"),
  49644. name: "Back",
  49645. image: {
  49646. source: "./media/characters/lydemox-vir/back.svg",
  49647. extra: 1593/1408,
  49648. bottom: 31/1624
  49649. }
  49650. },
  49651. paw: {
  49652. height: math.unit(1.85, "feet"),
  49653. name: "Paw",
  49654. image: {
  49655. source: "./media/characters/lydemox-vir/paw.svg"
  49656. }
  49657. },
  49658. dick: {
  49659. height: math.unit(1.8, "feet"),
  49660. name: "Dick",
  49661. image: {
  49662. source: "./media/characters/lydemox-vir/dick.svg"
  49663. }
  49664. },
  49665. },
  49666. [
  49667. {
  49668. name: "Macro",
  49669. height: math.unit(100, "feet"),
  49670. default: true
  49671. },
  49672. {
  49673. name: "Teramacro",
  49674. height: math.unit(1, "earth")
  49675. },
  49676. {
  49677. name: "Planetary",
  49678. height: math.unit(20, "earths")
  49679. },
  49680. ]
  49681. ))
  49682. characterMakers.push(() => makeCharacter(
  49683. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49684. {
  49685. front: {
  49686. height: math.unit(15 + 8/12, "feet"),
  49687. weight: math.unit(1237, "kg"),
  49688. name: "Front",
  49689. image: {
  49690. source: "./media/characters/mia/front.svg",
  49691. extra: 1573/1446,
  49692. bottom: 58/1631
  49693. }
  49694. },
  49695. },
  49696. [
  49697. {
  49698. name: "Small",
  49699. height: math.unit(9 + 5/12, "feet")
  49700. },
  49701. {
  49702. name: "Normal",
  49703. height: math.unit(15 + 8/12, "feet"),
  49704. default: true
  49705. },
  49706. ]
  49707. ))
  49708. characterMakers.push(() => makeCharacter(
  49709. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49710. {
  49711. front: {
  49712. height: math.unit(10 + 6/12, "feet"),
  49713. weight: math.unit(1.3, "tons"),
  49714. name: "Front",
  49715. image: {
  49716. source: "./media/characters/mr-graves/front.svg",
  49717. extra: 1779/1695,
  49718. bottom: 198/1977
  49719. }
  49720. },
  49721. },
  49722. [
  49723. {
  49724. name: "Normal",
  49725. height: math.unit(10 + 6 /12, "feet"),
  49726. default: true
  49727. },
  49728. ]
  49729. ))
  49730. characterMakers.push(() => makeCharacter(
  49731. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49732. {
  49733. dressedFront: {
  49734. height: math.unit(5 + 8/12, "feet"),
  49735. weight: math.unit(125, "lb"),
  49736. name: "Dressed (Front)",
  49737. image: {
  49738. source: "./media/characters/jess/dressed-front.svg",
  49739. extra: 1176/1152,
  49740. bottom: 42/1218
  49741. }
  49742. },
  49743. dressedSide: {
  49744. height: math.unit(5 + 8/12, "feet"),
  49745. weight: math.unit(125, "lb"),
  49746. name: "Dressed (Side)",
  49747. image: {
  49748. source: "./media/characters/jess/dressed-side.svg",
  49749. extra: 1204/1190,
  49750. bottom: 6/1210
  49751. }
  49752. },
  49753. nudeFront: {
  49754. height: math.unit(5 + 8/12, "feet"),
  49755. weight: math.unit(125, "lb"),
  49756. name: "Nude (Front)",
  49757. image: {
  49758. source: "./media/characters/jess/nude-front.svg",
  49759. extra: 1176/1152,
  49760. bottom: 42/1218
  49761. }
  49762. },
  49763. nudeSide: {
  49764. height: math.unit(5 + 8/12, "feet"),
  49765. weight: math.unit(125, "lb"),
  49766. name: "Nude (Side)",
  49767. image: {
  49768. source: "./media/characters/jess/nude-side.svg",
  49769. extra: 1204/1190,
  49770. bottom: 6/1210
  49771. }
  49772. },
  49773. organsFront: {
  49774. height: math.unit(2.83799342105, "feet"),
  49775. name: "Organs (Front)",
  49776. image: {
  49777. source: "./media/characters/jess/organs-front.svg"
  49778. }
  49779. },
  49780. organsSide: {
  49781. height: math.unit(2.64225290474, "feet"),
  49782. name: "Organs (Side)",
  49783. image: {
  49784. source: "./media/characters/jess/organs-side.svg"
  49785. }
  49786. },
  49787. digestiveTractFront: {
  49788. height: math.unit(2.8106580871, "feet"),
  49789. name: "Digestive Tract (Front)",
  49790. image: {
  49791. source: "./media/characters/jess/digestive-tract-front.svg"
  49792. }
  49793. },
  49794. digestiveTractSide: {
  49795. height: math.unit(2.54365045014, "feet"),
  49796. name: "Digestive Tract (Side)",
  49797. image: {
  49798. source: "./media/characters/jess/digestive-tract-side.svg"
  49799. }
  49800. },
  49801. respiratorySystemFront: {
  49802. height: math.unit(1.11196233456, "feet"),
  49803. name: "Respiratory System (Front)",
  49804. image: {
  49805. source: "./media/characters/jess/respiratory-system-front.svg"
  49806. }
  49807. },
  49808. respiratorySystemSide: {
  49809. height: math.unit(0.89327966297, "feet"),
  49810. name: "Respiratory System (Side)",
  49811. image: {
  49812. source: "./media/characters/jess/respiratory-system-side.svg"
  49813. }
  49814. },
  49815. urinaryTractFront: {
  49816. height: math.unit(1.16126356186, "feet"),
  49817. name: "Urinary Tract (Front)",
  49818. image: {
  49819. source: "./media/characters/jess/urinary-tract-front.svg"
  49820. }
  49821. },
  49822. urinaryTractSide: {
  49823. height: math.unit(1.20910039627, "feet"),
  49824. name: "Urinary Tract (Side)",
  49825. image: {
  49826. source: "./media/characters/jess/urinary-tract-side.svg"
  49827. }
  49828. },
  49829. reproductiveOrgansFront: {
  49830. height: math.unit(0.48422591566, "feet"),
  49831. name: "Reproductive Organs (Front)",
  49832. image: {
  49833. source: "./media/characters/jess/reproductive-organs-front.svg"
  49834. }
  49835. },
  49836. reproductiveOrgansSide: {
  49837. height: math.unit(0.61553314481, "feet"),
  49838. name: "Reproductive Organs (Side)",
  49839. image: {
  49840. source: "./media/characters/jess/reproductive-organs-side.svg"
  49841. }
  49842. },
  49843. breastsFront: {
  49844. height: math.unit(0.47690395121, "feet"),
  49845. name: "Breasts (Front)",
  49846. image: {
  49847. source: "./media/characters/jess/breasts-front.svg"
  49848. }
  49849. },
  49850. breastsSide: {
  49851. height: math.unit(0.30556998307, "feet"),
  49852. name: "Breasts (Side)",
  49853. image: {
  49854. source: "./media/characters/jess/breasts-side.svg"
  49855. }
  49856. },
  49857. heartFront: {
  49858. height: math.unit(0.53011022622, "feet"),
  49859. name: "Heart (Front)",
  49860. image: {
  49861. source: "./media/characters/jess/heart-front.svg"
  49862. }
  49863. },
  49864. heartSide: {
  49865. height: math.unit(0.51790695213, "feet"),
  49866. name: "Heart (Side)",
  49867. image: {
  49868. source: "./media/characters/jess/heart-side.svg"
  49869. }
  49870. },
  49871. earsAndNoseFront: {
  49872. height: math.unit(0.29385483995, "feet"),
  49873. name: "Ears and Nose (Front)",
  49874. image: {
  49875. source: "./media/characters/jess/ears-and-nose-front.svg"
  49876. }
  49877. },
  49878. earsAndNoseSide: {
  49879. height: math.unit(0.18109658741, "feet"),
  49880. name: "Ears and Nose (Side)",
  49881. image: {
  49882. source: "./media/characters/jess/ears-and-nose-side.svg"
  49883. }
  49884. },
  49885. },
  49886. [
  49887. {
  49888. name: "Normal",
  49889. height: math.unit(5 + 8/12, "feet"),
  49890. default: true
  49891. },
  49892. ]
  49893. ))
  49894. characterMakers.push(() => makeCharacter(
  49895. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49896. {
  49897. front: {
  49898. height: math.unit(6, "feet"),
  49899. weight: math.unit(6.64467e-7, "grams"),
  49900. name: "Front",
  49901. image: {
  49902. source: "./media/characters/wimpering/front.svg",
  49903. extra: 597/587,
  49904. bottom: 34/631
  49905. }
  49906. },
  49907. },
  49908. [
  49909. {
  49910. name: "Micro",
  49911. height: math.unit(0.4, "mm"),
  49912. default: true
  49913. },
  49914. ]
  49915. ))
  49916. characterMakers.push(() => makeCharacter(
  49917. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49918. {
  49919. front: {
  49920. height: math.unit(5 + 2/12, "feet"),
  49921. weight: math.unit(110, "lb"),
  49922. name: "Front",
  49923. image: {
  49924. source: "./media/characters/keltre/front.svg",
  49925. extra: 1099/1057,
  49926. bottom: 22/1121
  49927. }
  49928. },
  49929. back: {
  49930. height: math.unit(5 + 2/12, "feet"),
  49931. weight: math.unit(110, "lb"),
  49932. name: "Back",
  49933. image: {
  49934. source: "./media/characters/keltre/back.svg",
  49935. extra: 1095/1053,
  49936. bottom: 17/1112
  49937. }
  49938. },
  49939. dressed: {
  49940. height: math.unit(5 + 2/12, "feet"),
  49941. weight: math.unit(110, "lb"),
  49942. name: "Dressed",
  49943. image: {
  49944. source: "./media/characters/keltre/dressed.svg",
  49945. extra: 1099/1057,
  49946. bottom: 22/1121
  49947. }
  49948. },
  49949. winter: {
  49950. height: math.unit(5 + 2/12, "feet"),
  49951. weight: math.unit(110, "lb"),
  49952. name: "Winter",
  49953. image: {
  49954. source: "./media/characters/keltre/winter.svg",
  49955. extra: 1099/1057,
  49956. bottom: 22/1121
  49957. }
  49958. },
  49959. head: {
  49960. height: math.unit(1.61 * 0.86, "feet"),
  49961. name: "Head",
  49962. image: {
  49963. source: "./media/characters/keltre/head.svg",
  49964. extra: 534/421,
  49965. bottom: 0/534
  49966. }
  49967. },
  49968. hand: {
  49969. height: math.unit(1.3 * 0.86, "feet"),
  49970. name: "Hand",
  49971. image: {
  49972. source: "./media/characters/keltre/hand.svg"
  49973. }
  49974. },
  49975. foot: {
  49976. height: math.unit(1.8 * 0.86, "feet"),
  49977. name: "Foot",
  49978. image: {
  49979. source: "./media/characters/keltre/foot.svg"
  49980. }
  49981. },
  49982. },
  49983. [
  49984. {
  49985. name: "Fine",
  49986. height: math.unit(1, "inch")
  49987. },
  49988. {
  49989. name: "Dimnutive",
  49990. height: math.unit(4, "inches")
  49991. },
  49992. {
  49993. name: "Tiny",
  49994. height: math.unit(1, "foot")
  49995. },
  49996. {
  49997. name: "Small",
  49998. height: math.unit(3, "feet")
  49999. },
  50000. {
  50001. name: "Normal",
  50002. height: math.unit(5 + 2/12, "feet"),
  50003. default: true
  50004. },
  50005. ]
  50006. ))
  50007. characterMakers.push(() => makeCharacter(
  50008. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50009. {
  50010. front: {
  50011. height: math.unit(6 + 2/12, "feet"),
  50012. name: "Front",
  50013. image: {
  50014. source: "./media/characters/nox/front.svg",
  50015. extra: 1917/1830,
  50016. bottom: 74/1991
  50017. }
  50018. },
  50019. back: {
  50020. height: math.unit(6 + 2/12, "feet"),
  50021. name: "Back",
  50022. image: {
  50023. source: "./media/characters/nox/back.svg",
  50024. extra: 1896/1815,
  50025. bottom: 21/1917
  50026. }
  50027. },
  50028. head: {
  50029. height: math.unit(1.1, "feet"),
  50030. name: "Head",
  50031. image: {
  50032. source: "./media/characters/nox/head.svg",
  50033. extra: 874/704,
  50034. bottom: 0/874
  50035. }
  50036. },
  50037. tattoo: {
  50038. height: math.unit(0.729, "feet"),
  50039. name: "Tattoo",
  50040. image: {
  50041. source: "./media/characters/nox/tattoo.svg"
  50042. }
  50043. },
  50044. },
  50045. [
  50046. {
  50047. name: "Normal",
  50048. height: math.unit(6 + 2/12, "feet")
  50049. },
  50050. {
  50051. name: "Gigamacro",
  50052. height: math.unit(2, "earths"),
  50053. default: true
  50054. },
  50055. {
  50056. name: "Cosmic",
  50057. height: math.unit(867, "yottameters")
  50058. },
  50059. ]
  50060. ))
  50061. characterMakers.push(() => makeCharacter(
  50062. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50063. {
  50064. front: {
  50065. height: math.unit(6, "feet"),
  50066. weight: math.unit(150, "lb"),
  50067. name: "Front",
  50068. image: {
  50069. source: "./media/characters/caspian/front.svg",
  50070. extra: 1443/1359,
  50071. bottom: 0/1443
  50072. }
  50073. },
  50074. back: {
  50075. height: math.unit(6, "feet"),
  50076. weight: math.unit(150, "lb"),
  50077. name: "Back",
  50078. image: {
  50079. source: "./media/characters/caspian/back.svg",
  50080. extra: 1379/1309,
  50081. bottom: 0/1379
  50082. }
  50083. },
  50084. head: {
  50085. height: math.unit(0.9, "feet"),
  50086. name: "Head",
  50087. image: {
  50088. source: "./media/characters/caspian/head.svg",
  50089. extra: 692/492,
  50090. bottom: 0/692
  50091. }
  50092. },
  50093. headAlt: {
  50094. height: math.unit(0.95, "feet"),
  50095. name: "Head (Alt)",
  50096. image: {
  50097. source: "./media/characters/caspian/head-alt.svg",
  50098. extra: 668/508,
  50099. bottom: 0/668
  50100. }
  50101. },
  50102. hand: {
  50103. height: math.unit(0.8, "feet"),
  50104. name: "Hand",
  50105. image: {
  50106. source: "./media/characters/caspian/hand.svg"
  50107. }
  50108. },
  50109. paw: {
  50110. height: math.unit(0.95, "feet"),
  50111. name: "Paw",
  50112. image: {
  50113. source: "./media/characters/caspian/paw.svg"
  50114. }
  50115. },
  50116. },
  50117. [
  50118. {
  50119. name: "Normal",
  50120. height: math.unit(162, "feet"),
  50121. default: true
  50122. },
  50123. ]
  50124. ))
  50125. characterMakers.push(() => makeCharacter(
  50126. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50127. {
  50128. front: {
  50129. height: math.unit(6, "feet"),
  50130. name: "Front",
  50131. image: {
  50132. source: "./media/characters/myra-aisling/front.svg",
  50133. extra: 1268/1166,
  50134. bottom: 73/1341
  50135. }
  50136. },
  50137. back: {
  50138. height: math.unit(6, "feet"),
  50139. name: "Back",
  50140. image: {
  50141. source: "./media/characters/myra-aisling/back.svg",
  50142. extra: 1249/1149,
  50143. bottom: 79/1328
  50144. }
  50145. },
  50146. dressed: {
  50147. height: math.unit(6, "feet"),
  50148. name: "Dressed",
  50149. image: {
  50150. source: "./media/characters/myra-aisling/dressed.svg",
  50151. extra: 1290/1189,
  50152. bottom: 47/1337
  50153. }
  50154. },
  50155. hand: {
  50156. height: math.unit(1.1, "feet"),
  50157. name: "Hand",
  50158. image: {
  50159. source: "./media/characters/myra-aisling/hand.svg"
  50160. }
  50161. },
  50162. paw: {
  50163. height: math.unit(1.23, "feet"),
  50164. name: "Paw",
  50165. image: {
  50166. source: "./media/characters/myra-aisling/paw.svg"
  50167. }
  50168. },
  50169. },
  50170. [
  50171. {
  50172. name: "Normal",
  50173. height: math.unit(160, "feet"),
  50174. default: true
  50175. },
  50176. ]
  50177. ))
  50178. characterMakers.push(() => makeCharacter(
  50179. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50180. {
  50181. front: {
  50182. height: math.unit(6, "feet"),
  50183. name: "Front",
  50184. image: {
  50185. source: "./media/characters/tenley-sidero/front.svg",
  50186. extra: 1365/1276,
  50187. bottom: 47/1412
  50188. }
  50189. },
  50190. back: {
  50191. height: math.unit(6, "feet"),
  50192. name: "Back",
  50193. image: {
  50194. source: "./media/characters/tenley-sidero/back.svg",
  50195. extra: 1383/1283,
  50196. bottom: 35/1418
  50197. }
  50198. },
  50199. dressed: {
  50200. height: math.unit(6, "feet"),
  50201. name: "Dressed",
  50202. image: {
  50203. source: "./media/characters/tenley-sidero/dressed.svg",
  50204. extra: 1364/1275,
  50205. bottom: 42/1406
  50206. }
  50207. },
  50208. head: {
  50209. height: math.unit(1.47, "feet"),
  50210. name: "Head",
  50211. image: {
  50212. source: "./media/characters/tenley-sidero/head.svg",
  50213. extra: 610/490,
  50214. bottom: 0/610
  50215. }
  50216. },
  50217. },
  50218. [
  50219. {
  50220. name: "Normal",
  50221. height: math.unit(154, "feet"),
  50222. default: true
  50223. },
  50224. ]
  50225. ))
  50226. characterMakers.push(() => makeCharacter(
  50227. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50228. {
  50229. front: {
  50230. height: math.unit(5, "inches"),
  50231. name: "Front",
  50232. image: {
  50233. source: "./media/characters/mallory/front.svg",
  50234. extra: 1919/1678,
  50235. bottom: 29/1948
  50236. }
  50237. },
  50238. hand: {
  50239. height: math.unit(0.73, "inches"),
  50240. name: "Hand",
  50241. image: {
  50242. source: "./media/characters/mallory/hand.svg"
  50243. }
  50244. },
  50245. paw: {
  50246. height: math.unit(0.68, "inches"),
  50247. name: "Paw",
  50248. image: {
  50249. source: "./media/characters/mallory/paw.svg"
  50250. }
  50251. },
  50252. },
  50253. [
  50254. {
  50255. name: "Small",
  50256. height: math.unit(5, "inches"),
  50257. default: true
  50258. },
  50259. ]
  50260. ))
  50261. characterMakers.push(() => makeCharacter(
  50262. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50263. {
  50264. naked: {
  50265. height: math.unit(6, "feet"),
  50266. name: "Naked",
  50267. image: {
  50268. source: "./media/characters/mab/naked.svg",
  50269. extra: 1855/1757,
  50270. bottom: 208/2063
  50271. }
  50272. },
  50273. outside: {
  50274. height: math.unit(6, "feet"),
  50275. name: "Outside",
  50276. image: {
  50277. source: "./media/characters/mab/outside.svg",
  50278. extra: 1855/1757,
  50279. bottom: 208/2063
  50280. }
  50281. },
  50282. party: {
  50283. height: math.unit(6, "feet"),
  50284. name: "Party",
  50285. image: {
  50286. source: "./media/characters/mab/party.svg",
  50287. extra: 1855/1757,
  50288. bottom: 208/2063
  50289. }
  50290. },
  50291. },
  50292. [
  50293. {
  50294. name: "Normal",
  50295. height: math.unit(165, "feet"),
  50296. default: true
  50297. },
  50298. ]
  50299. ))
  50300. characterMakers.push(() => makeCharacter(
  50301. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50302. {
  50303. feral: {
  50304. height: math.unit(12, "feet"),
  50305. weight: math.unit(20000, "lb"),
  50306. name: "Side",
  50307. image: {
  50308. source: "./media/characters/winter/feral.svg",
  50309. extra: 1286/943,
  50310. bottom: 112/1398
  50311. },
  50312. form: "feral",
  50313. default: true
  50314. },
  50315. feralNsfw: {
  50316. height: math.unit(12, "feet"),
  50317. weight: math.unit(20000, "lb"),
  50318. name: "Side (NSFW)",
  50319. image: {
  50320. source: "./media/characters/winter/feral-nsfw.svg",
  50321. extra: 1286/943,
  50322. bottom: 112/1398
  50323. },
  50324. form: "feral"
  50325. },
  50326. dick: {
  50327. height: math.unit(3.79, "feet"),
  50328. name: "Dick",
  50329. image: {
  50330. source: "./media/characters/winter/dick.svg"
  50331. },
  50332. form: "feral"
  50333. },
  50334. anthro: {
  50335. height: math.unit(12, "feet"),
  50336. weight: math.unit(10, "tons"),
  50337. name: "Anthro",
  50338. image: {
  50339. source: "./media/characters/winter/anthro.svg",
  50340. extra: 1701/1553,
  50341. bottom: 64/1765
  50342. },
  50343. form: "anthro",
  50344. default: true
  50345. },
  50346. },
  50347. [
  50348. {
  50349. name: "Big",
  50350. height: math.unit(12, "feet"),
  50351. default: true,
  50352. form: "feral"
  50353. },
  50354. {
  50355. name: "Big",
  50356. height: math.unit(12, "feet"),
  50357. default: true,
  50358. form: "anthro"
  50359. },
  50360. ],
  50361. {
  50362. "feral": {
  50363. name: "Feral",
  50364. default: true
  50365. },
  50366. "anthro": {
  50367. name: "Anthro"
  50368. }
  50369. }
  50370. ))
  50371. characterMakers.push(() => makeCharacter(
  50372. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50373. {
  50374. front: {
  50375. height: math.unit(4.1, "inches"),
  50376. name: "Front",
  50377. image: {
  50378. source: "./media/characters/alto/front.svg",
  50379. extra: 736/627,
  50380. bottom: 90/826
  50381. }
  50382. },
  50383. },
  50384. [
  50385. {
  50386. name: "Normal",
  50387. height: math.unit(4.1, "inches"),
  50388. default: true
  50389. },
  50390. ]
  50391. ))
  50392. characterMakers.push(() => makeCharacter(
  50393. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50394. {
  50395. sitting: {
  50396. height: math.unit(3, "feet"),
  50397. name: "Sitting",
  50398. image: {
  50399. source: "./media/characters/ratstrid-v/sitting.svg",
  50400. extra: 355/310,
  50401. bottom: 136/491
  50402. }
  50403. },
  50404. },
  50405. [
  50406. {
  50407. name: "Normal",
  50408. height: math.unit(3, "feet"),
  50409. default: true
  50410. },
  50411. ]
  50412. ))
  50413. characterMakers.push(() => makeCharacter(
  50414. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50415. {
  50416. back: {
  50417. height: math.unit(6, "feet"),
  50418. weight: math.unit(450, "lb"),
  50419. name: "Back",
  50420. image: {
  50421. source: "./media/characters/siz/back.svg",
  50422. extra: 1449/1274,
  50423. bottom: 13/1462
  50424. }
  50425. },
  50426. },
  50427. [
  50428. {
  50429. name: "Smallest",
  50430. height: math.unit(18 + 3/12, "feet")
  50431. },
  50432. {
  50433. name: "Modest",
  50434. height: math.unit(56 + 8/12, "feet"),
  50435. default: true
  50436. },
  50437. {
  50438. name: "Largest",
  50439. height: math.unit(3590, "feet")
  50440. },
  50441. ]
  50442. ))
  50443. characterMakers.push(() => makeCharacter(
  50444. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50445. {
  50446. front: {
  50447. height: math.unit(5 + 9/12, "feet"),
  50448. weight: math.unit(150, "lb"),
  50449. name: "Front",
  50450. image: {
  50451. source: "./media/characters/ven/front.svg",
  50452. extra: 1372/1320,
  50453. bottom: 73/1445
  50454. }
  50455. },
  50456. side: {
  50457. height: math.unit(5 + 9/12, "feet"),
  50458. weight: math.unit(1150, "lb"),
  50459. name: "Side",
  50460. image: {
  50461. source: "./media/characters/ven/side.svg",
  50462. extra: 1119/1070,
  50463. bottom: 42/1161
  50464. },
  50465. default: true
  50466. },
  50467. },
  50468. [
  50469. {
  50470. name: "Normal",
  50471. height: math.unit(5 + 9/12, "feet"),
  50472. default: true
  50473. },
  50474. ]
  50475. ))
  50476. characterMakers.push(() => makeCharacter(
  50477. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50478. {
  50479. front: {
  50480. height: math.unit(12, "feet"),
  50481. weight: math.unit(1000, "kg"),
  50482. name: "Front",
  50483. image: {
  50484. source: "./media/characters/maple/front.svg",
  50485. extra: 1193/1081,
  50486. bottom: 22/1215
  50487. }
  50488. },
  50489. },
  50490. [
  50491. {
  50492. name: "Compressed",
  50493. height: math.unit(7, "feet")
  50494. },
  50495. {
  50496. name: "Normal",
  50497. height: math.unit(12, "feet"),
  50498. default: true
  50499. },
  50500. ]
  50501. ))
  50502. characterMakers.push(() => makeCharacter(
  50503. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50504. {
  50505. front: {
  50506. height: math.unit(9, "feet"),
  50507. weight: math.unit(1500, "lb"),
  50508. name: "Front",
  50509. image: {
  50510. source: "./media/characters/nora/front.svg",
  50511. extra: 1348/1286,
  50512. bottom: 218/1566
  50513. }
  50514. },
  50515. erect: {
  50516. height: math.unit(9, "feet"),
  50517. weight: math.unit(11500, "lb"),
  50518. name: "Erect",
  50519. image: {
  50520. source: "./media/characters/nora/erect.svg",
  50521. extra: 1488/1433,
  50522. bottom: 133/1621
  50523. }
  50524. },
  50525. },
  50526. [
  50527. {
  50528. name: "Normal",
  50529. height: math.unit(9, "feet"),
  50530. default: true
  50531. },
  50532. ]
  50533. ))
  50534. characterMakers.push(() => makeCharacter(
  50535. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50536. {
  50537. front: {
  50538. height: math.unit(25, "feet"),
  50539. weight: math.unit(27500, "lb"),
  50540. name: "Front",
  50541. image: {
  50542. source: "./media/characters/north-caudin/front.svg",
  50543. extra: 1184/1082,
  50544. bottom: 23/1207
  50545. }
  50546. },
  50547. },
  50548. [
  50549. {
  50550. name: "Compressed",
  50551. height: math.unit(10, "feet")
  50552. },
  50553. {
  50554. name: "Normal",
  50555. height: math.unit(25, "feet"),
  50556. default: true
  50557. },
  50558. ]
  50559. ))
  50560. characterMakers.push(() => makeCharacter(
  50561. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50562. {
  50563. front: {
  50564. height: math.unit(9, "feet"),
  50565. weight: math.unit(1250, "lb"),
  50566. name: "Front",
  50567. image: {
  50568. source: "./media/characters/merrian/front.svg",
  50569. extra: 2393/2304,
  50570. bottom: 40/2433
  50571. }
  50572. },
  50573. },
  50574. [
  50575. {
  50576. name: "Normal",
  50577. height: math.unit(9, "feet"),
  50578. default: true
  50579. },
  50580. ]
  50581. ))
  50582. characterMakers.push(() => makeCharacter(
  50583. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50584. {
  50585. front: {
  50586. height: math.unit(9, "feet"),
  50587. weight: math.unit(1000, "lb"),
  50588. name: "Front",
  50589. image: {
  50590. source: "./media/characters/hazel/front.svg",
  50591. extra: 2351/2298,
  50592. bottom: 38/2389
  50593. }
  50594. },
  50595. },
  50596. [
  50597. {
  50598. name: "Normal",
  50599. height: math.unit(9, "feet"),
  50600. default: true
  50601. },
  50602. ]
  50603. ))
  50604. characterMakers.push(() => makeCharacter(
  50605. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50606. {
  50607. front: {
  50608. height: math.unit(13, "feet"),
  50609. weight: math.unit(3200, "lb"),
  50610. name: "Front",
  50611. image: {
  50612. source: "./media/characters/emma/front.svg",
  50613. extra: 2263/2029,
  50614. bottom: 68/2331
  50615. }
  50616. },
  50617. },
  50618. [
  50619. {
  50620. name: "Normal",
  50621. height: math.unit(13, "feet"),
  50622. default: true
  50623. },
  50624. ]
  50625. ))
  50626. characterMakers.push(() => makeCharacter(
  50627. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50628. {
  50629. front: {
  50630. height: math.unit(11 + 9/12, "feet"),
  50631. weight: math.unit(2500, "lb"),
  50632. name: "Front",
  50633. image: {
  50634. source: "./media/characters/ilumina/front.svg",
  50635. extra: 2248/2209,
  50636. bottom: 164/2412
  50637. }
  50638. },
  50639. },
  50640. [
  50641. {
  50642. name: "Normal",
  50643. height: math.unit(11 + 9/12, "feet"),
  50644. default: true
  50645. },
  50646. ]
  50647. ))
  50648. characterMakers.push(() => makeCharacter(
  50649. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50650. {
  50651. front: {
  50652. height: math.unit(8 + 10/12, "feet"),
  50653. weight: math.unit(1350, "lb"),
  50654. name: "Front",
  50655. image: {
  50656. source: "./media/characters/moonshine/front.svg",
  50657. extra: 2395/2288,
  50658. bottom: 40/2435
  50659. }
  50660. },
  50661. },
  50662. [
  50663. {
  50664. name: "Normal",
  50665. height: math.unit(8 + 10/12, "feet"),
  50666. default: true
  50667. },
  50668. ]
  50669. ))
  50670. characterMakers.push(() => makeCharacter(
  50671. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50672. {
  50673. front: {
  50674. height: math.unit(14, "feet"),
  50675. weight: math.unit(3400, "lb"),
  50676. name: "Front",
  50677. image: {
  50678. source: "./media/characters/aletia/front.svg",
  50679. extra: 1185/1052,
  50680. bottom: 21/1206
  50681. }
  50682. },
  50683. },
  50684. [
  50685. {
  50686. name: "Compressed",
  50687. height: math.unit(8, "feet")
  50688. },
  50689. {
  50690. name: "Normal",
  50691. height: math.unit(14, "feet"),
  50692. default: true
  50693. },
  50694. ]
  50695. ))
  50696. characterMakers.push(() => makeCharacter(
  50697. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50698. {
  50699. front: {
  50700. height: math.unit(17, "feet"),
  50701. weight: math.unit(6500, "lb"),
  50702. name: "Front",
  50703. image: {
  50704. source: "./media/characters/deidra/front.svg",
  50705. extra: 1201/1081,
  50706. bottom: 16/1217
  50707. }
  50708. },
  50709. },
  50710. [
  50711. {
  50712. name: "Compressed",
  50713. height: math.unit(9 + 6/12, "feet")
  50714. },
  50715. {
  50716. name: "Normal",
  50717. height: math.unit(17, "feet"),
  50718. default: true
  50719. },
  50720. ]
  50721. ))
  50722. characterMakers.push(() => makeCharacter(
  50723. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50724. {
  50725. front: {
  50726. height: math.unit(7 + 4/12, "feet"),
  50727. weight: math.unit(280, "lb"),
  50728. name: "Front",
  50729. image: {
  50730. source: "./media/characters/freki-yrmori/front.svg",
  50731. extra: 1286/1182,
  50732. bottom: 29/1315
  50733. }
  50734. },
  50735. maw: {
  50736. height: math.unit(0.9, "feet"),
  50737. name: "Maw",
  50738. image: {
  50739. source: "./media/characters/freki-yrmori/maw.svg"
  50740. }
  50741. },
  50742. },
  50743. [
  50744. {
  50745. name: "Normal",
  50746. height: math.unit(7 + 4/12, "feet"),
  50747. default: true
  50748. },
  50749. {
  50750. name: "Macro",
  50751. height: math.unit(38.5, "meters")
  50752. },
  50753. ]
  50754. ))
  50755. characterMakers.push(() => makeCharacter(
  50756. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50757. {
  50758. side: {
  50759. height: math.unit(47.2, "meters"),
  50760. weight: math.unit(10000, "tons"),
  50761. name: "Side",
  50762. image: {
  50763. source: "./media/characters/aetherios/side.svg",
  50764. extra: 2363/642,
  50765. bottom: 221/2584
  50766. }
  50767. },
  50768. top: {
  50769. height: math.unit(240, "meters"),
  50770. weight: math.unit(10000, "tons"),
  50771. name: "Top",
  50772. image: {
  50773. source: "./media/characters/aetherios/top.svg"
  50774. }
  50775. },
  50776. bottom: {
  50777. height: math.unit(240, "meters"),
  50778. weight: math.unit(10000, "tons"),
  50779. name: "Bottom",
  50780. image: {
  50781. source: "./media/characters/aetherios/bottom.svg"
  50782. }
  50783. },
  50784. head: {
  50785. height: math.unit(38.6, "meters"),
  50786. name: "Head",
  50787. image: {
  50788. source: "./media/characters/aetherios/head.svg",
  50789. extra: 1335/1112,
  50790. bottom: 0/1335
  50791. }
  50792. },
  50793. front: {
  50794. height: math.unit(29, "meters"),
  50795. name: "Front",
  50796. image: {
  50797. source: "./media/characters/aetherios/front.svg",
  50798. extra: 1266/953,
  50799. bottom: 158/1424
  50800. }
  50801. },
  50802. maw: {
  50803. height: math.unit(16.37, "meters"),
  50804. name: "Maw",
  50805. image: {
  50806. source: "./media/characters/aetherios/maw.svg",
  50807. extra: 748/637,
  50808. bottom: 0/748
  50809. },
  50810. extraAttributes: {
  50811. preyCapacity: {
  50812. name: "Capacity",
  50813. power: 3,
  50814. type: "volume",
  50815. base: math.unit(1000, "people")
  50816. },
  50817. tongueSize: {
  50818. name: "Tongue Size",
  50819. power: 2,
  50820. type: "area",
  50821. base: math.unit(21, "m^2")
  50822. }
  50823. }
  50824. },
  50825. forepaw: {
  50826. height: math.unit(18, "meters"),
  50827. name: "Forepaw",
  50828. image: {
  50829. source: "./media/characters/aetherios/forepaw.svg"
  50830. }
  50831. },
  50832. hindpaw: {
  50833. height: math.unit(23, "meters"),
  50834. name: "Hindpaw",
  50835. image: {
  50836. source: "./media/characters/aetherios/hindpaw.svg"
  50837. }
  50838. },
  50839. genitals: {
  50840. height: math.unit(42, "meters"),
  50841. name: "Genitals",
  50842. image: {
  50843. source: "./media/characters/aetherios/genitals.svg"
  50844. }
  50845. },
  50846. },
  50847. [
  50848. {
  50849. name: "Normal",
  50850. height: math.unit(47.2, "meters"),
  50851. default: true
  50852. },
  50853. {
  50854. name: "Macro",
  50855. height: math.unit(160, "meters")
  50856. },
  50857. {
  50858. name: "Mega",
  50859. height: math.unit(1.87, "km")
  50860. },
  50861. {
  50862. name: "Giga",
  50863. height: math.unit(40000, "km")
  50864. },
  50865. {
  50866. name: "Stellar",
  50867. height: math.unit(158000000, "km")
  50868. },
  50869. {
  50870. name: "Cosmic",
  50871. height: math.unit(9.46e12, "km")
  50872. },
  50873. ]
  50874. ))
  50875. characterMakers.push(() => makeCharacter(
  50876. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50877. {
  50878. front: {
  50879. height: math.unit(5 + 4/12, "feet"),
  50880. weight: math.unit(80, "lb"),
  50881. name: "Front",
  50882. image: {
  50883. source: "./media/characters/mizu-gieeg/front.svg",
  50884. extra: 850/709,
  50885. bottom: 52/902
  50886. }
  50887. },
  50888. back: {
  50889. height: math.unit(5 + 4/12, "feet"),
  50890. weight: math.unit(80, "lb"),
  50891. name: "Back",
  50892. image: {
  50893. source: "./media/characters/mizu-gieeg/back.svg",
  50894. extra: 882/745,
  50895. bottom: 25/907
  50896. }
  50897. },
  50898. },
  50899. [
  50900. {
  50901. name: "Normal",
  50902. height: math.unit(5 + 4/12, "feet"),
  50903. default: true
  50904. },
  50905. ]
  50906. ))
  50907. characterMakers.push(() => makeCharacter(
  50908. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50909. {
  50910. front: {
  50911. height: math.unit(6, "feet"),
  50912. name: "Front",
  50913. image: {
  50914. source: "./media/characters/roselle-st-papier/front.svg",
  50915. extra: 1430/1280,
  50916. bottom: 37/1467
  50917. }
  50918. },
  50919. back: {
  50920. height: math.unit(6, "feet"),
  50921. name: "Back",
  50922. image: {
  50923. source: "./media/characters/roselle-st-papier/back.svg",
  50924. extra: 1491/1296,
  50925. bottom: 23/1514
  50926. }
  50927. },
  50928. ear: {
  50929. height: math.unit(1.26, "feet"),
  50930. name: "Ear",
  50931. image: {
  50932. source: "./media/characters/roselle-st-papier/ear.svg"
  50933. }
  50934. },
  50935. },
  50936. [
  50937. {
  50938. name: "Normal",
  50939. height: math.unit(150, "feet"),
  50940. default: true
  50941. },
  50942. ]
  50943. ))
  50944. characterMakers.push(() => makeCharacter(
  50945. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50946. {
  50947. front: {
  50948. height: math.unit(1, "inches"),
  50949. name: "Front",
  50950. image: {
  50951. source: "./media/characters/valargent/front.svg",
  50952. extra: 1825/1694,
  50953. bottom: 62/1887
  50954. }
  50955. },
  50956. back: {
  50957. height: math.unit(1, "inches"),
  50958. name: "Back",
  50959. image: {
  50960. source: "./media/characters/valargent/back.svg",
  50961. extra: 1775/1682,
  50962. bottom: 88/1863
  50963. }
  50964. },
  50965. },
  50966. [
  50967. {
  50968. name: "Micro",
  50969. height: math.unit(1, "inch"),
  50970. default: true
  50971. },
  50972. ]
  50973. ))
  50974. characterMakers.push(() => makeCharacter(
  50975. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50976. {
  50977. front: {
  50978. height: math.unit(3.4, "meters"),
  50979. name: "Front",
  50980. image: {
  50981. source: "./media/characters/zarina/front.svg",
  50982. extra: 1733/1425,
  50983. bottom: 93/1826
  50984. }
  50985. },
  50986. squatting: {
  50987. height: math.unit(2.14, "meters"),
  50988. name: "Squatting",
  50989. image: {
  50990. source: "./media/characters/zarina/squatting.svg",
  50991. extra: 1073/788,
  50992. bottom: 63/1136
  50993. }
  50994. },
  50995. back: {
  50996. height: math.unit(2.14, "meters"),
  50997. name: "Back",
  50998. image: {
  50999. source: "./media/characters/zarina/back.svg",
  51000. extra: 1128/885,
  51001. bottom: 0/1128
  51002. }
  51003. },
  51004. },
  51005. [
  51006. {
  51007. name: "Normal",
  51008. height: math.unit(3.4, "meters"),
  51009. default: true
  51010. },
  51011. {
  51012. name: "Big",
  51013. height: math.unit(5, "meters")
  51014. },
  51015. {
  51016. name: "Macro",
  51017. height: math.unit(110, "meters")
  51018. },
  51019. ]
  51020. ))
  51021. characterMakers.push(() => makeCharacter(
  51022. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51023. {
  51024. front: {
  51025. height: math.unit(7, "feet"),
  51026. name: "Front",
  51027. image: {
  51028. source: "./media/characters/ventus-astro-fox/front.svg",
  51029. extra: 1792/1623,
  51030. bottom: 28/1820
  51031. }
  51032. },
  51033. back: {
  51034. height: math.unit(7, "feet"),
  51035. name: "Back",
  51036. image: {
  51037. source: "./media/characters/ventus-astro-fox/back.svg",
  51038. extra: 1789/1620,
  51039. bottom: 31/1820
  51040. }
  51041. },
  51042. outfit: {
  51043. height: math.unit(7, "feet"),
  51044. name: "Outfit",
  51045. image: {
  51046. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51047. extra: 1054/925,
  51048. bottom: 15/1069
  51049. }
  51050. },
  51051. head: {
  51052. height: math.unit(1.12, "feet"),
  51053. name: "Head",
  51054. image: {
  51055. source: "./media/characters/ventus-astro-fox/head.svg",
  51056. extra: 866/504,
  51057. bottom: 0/866
  51058. }
  51059. },
  51060. hand: {
  51061. height: math.unit(1, "feet"),
  51062. name: "Hand",
  51063. image: {
  51064. source: "./media/characters/ventus-astro-fox/hand.svg"
  51065. }
  51066. },
  51067. paw: {
  51068. height: math.unit(1.5, "feet"),
  51069. name: "Paw",
  51070. image: {
  51071. source: "./media/characters/ventus-astro-fox/paw.svg"
  51072. }
  51073. },
  51074. },
  51075. [
  51076. {
  51077. name: "Normal",
  51078. height: math.unit(7, "feet"),
  51079. default: true
  51080. },
  51081. {
  51082. name: "Macro",
  51083. height: math.unit(200, "feet")
  51084. },
  51085. {
  51086. name: "Cosmic",
  51087. height: math.unit(3, "universes")
  51088. },
  51089. ]
  51090. ))
  51091. characterMakers.push(() => makeCharacter(
  51092. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51093. {
  51094. front: {
  51095. height: math.unit(3, "meters"),
  51096. weight: math.unit(7000, "lb"),
  51097. name: "Front",
  51098. image: {
  51099. source: "./media/characters/core-t/front.svg",
  51100. extra: 5729/4941,
  51101. bottom: 1129/6858
  51102. }
  51103. },
  51104. },
  51105. [
  51106. {
  51107. name: "Big",
  51108. height: math.unit(3, "meters"),
  51109. default: true
  51110. },
  51111. ]
  51112. ))
  51113. characterMakers.push(() => makeCharacter(
  51114. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51115. {
  51116. normal: {
  51117. height: math.unit(6 + 6/12, "feet"),
  51118. weight: math.unit(275, "lb"),
  51119. name: "Front",
  51120. image: {
  51121. source: "./media/characters/cadbunny/normal.svg",
  51122. extra: 1129/947,
  51123. bottom: 93/1222
  51124. },
  51125. default: true,
  51126. form: "normal"
  51127. },
  51128. gigantamax: {
  51129. height: math.unit(26, "feet"),
  51130. weight: math.unit(16000, "lb"),
  51131. name: "Front",
  51132. image: {
  51133. source: "./media/characters/cadbunny/gigantamax.svg",
  51134. extra: 1133/944,
  51135. bottom: 90/1223
  51136. },
  51137. default: true,
  51138. form: "gigantamax"
  51139. },
  51140. },
  51141. [
  51142. {
  51143. name: "Normal",
  51144. height: math.unit(6 + 6/12, "feet"),
  51145. default: true,
  51146. form: "normal"
  51147. },
  51148. {
  51149. name: "Small",
  51150. height: math.unit(26, "feet"),
  51151. default: true,
  51152. form: "gigantamax"
  51153. },
  51154. {
  51155. name: "Large",
  51156. height: math.unit(78, "feet"),
  51157. form: "gigantamax"
  51158. },
  51159. ],
  51160. {
  51161. "normal": {
  51162. name: "Normal",
  51163. default: true
  51164. },
  51165. "gigantamax": {
  51166. name: "Gigantamax"
  51167. }
  51168. }
  51169. ))
  51170. characterMakers.push(() => makeCharacter(
  51171. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51172. {
  51173. anthroFront: {
  51174. height: math.unit(8, "feet"),
  51175. weight: math.unit(300, "lb"),
  51176. name: "Front",
  51177. image: {
  51178. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51179. extra: 1272/1176,
  51180. bottom: 53/1325
  51181. },
  51182. form: "anthro",
  51183. default: true
  51184. },
  51185. feralSide: {
  51186. height: math.unit(4, "feet"),
  51187. weight: math.unit(250, "lb"),
  51188. name: "Side",
  51189. image: {
  51190. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51191. extra: 731/621,
  51192. bottom: 0/731
  51193. },
  51194. form: "feral",
  51195. default: true
  51196. },
  51197. },
  51198. [
  51199. {
  51200. name: "Regular",
  51201. height: math.unit(8, "feet"),
  51202. form: "anthro"
  51203. },
  51204. {
  51205. name: "Macro",
  51206. height: math.unit(250, "feet"),
  51207. form: "anthro",
  51208. default: true
  51209. },
  51210. {
  51211. name: "Regular",
  51212. height: math.unit(4, "feet"),
  51213. form: "feral"
  51214. },
  51215. {
  51216. name: "Macro",
  51217. height: math.unit(125, "feet"),
  51218. form: "feral",
  51219. default: true
  51220. },
  51221. ],
  51222. {
  51223. "anthro": {
  51224. name: "Anthro",
  51225. default: true
  51226. },
  51227. "feral": {
  51228. name: "Feral",
  51229. },
  51230. }
  51231. ))
  51232. characterMakers.push(() => makeCharacter(
  51233. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51234. {
  51235. front: {
  51236. height: math.unit(11 + 10/12, "feet"),
  51237. weight: math.unit(1587, "kg"),
  51238. name: "Front",
  51239. image: {
  51240. source: "./media/characters/maple-javira-dragon/front.svg",
  51241. extra: 1136/744,
  51242. bottom: 73/1209
  51243. }
  51244. },
  51245. side: {
  51246. height: math.unit(11 + 10/12, "feet"),
  51247. weight: math.unit(1587, "kg"),
  51248. name: "Side",
  51249. image: {
  51250. source: "./media/characters/maple-javira-dragon/side.svg",
  51251. extra: 712/505,
  51252. bottom: 17/729
  51253. }
  51254. },
  51255. head: {
  51256. height: math.unit(8.05, "feet"),
  51257. name: "Head",
  51258. image: {
  51259. source: "./media/characters/maple-javira-dragon/head.svg",
  51260. extra: 1420/1344,
  51261. bottom: 0/1420
  51262. }
  51263. },
  51264. },
  51265. [
  51266. {
  51267. name: "Normal",
  51268. height: math.unit(11 + 10/12, "feet"),
  51269. default: true
  51270. },
  51271. ]
  51272. ))
  51273. characterMakers.push(() => makeCharacter(
  51274. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51275. {
  51276. front: {
  51277. height: math.unit(117, "cm"),
  51278. weight: math.unit(50, "kg"),
  51279. name: "Front",
  51280. image: {
  51281. source: "./media/characters/sonia-wyverntail/front.svg",
  51282. extra: 708/592,
  51283. bottom: 25/733
  51284. }
  51285. },
  51286. },
  51287. [
  51288. {
  51289. name: "Normal",
  51290. height: math.unit(117, "cm"),
  51291. default: true
  51292. },
  51293. ]
  51294. ))
  51295. characterMakers.push(() => makeCharacter(
  51296. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51297. {
  51298. front: {
  51299. height: math.unit(6 + 5/12, "feet"),
  51300. name: "Front",
  51301. image: {
  51302. source: "./media/characters/micah/front.svg",
  51303. extra: 1758/1546,
  51304. bottom: 214/1972
  51305. }
  51306. },
  51307. },
  51308. [
  51309. {
  51310. name: "Normal",
  51311. height: math.unit(6 + 5/12, "feet"),
  51312. default: true
  51313. },
  51314. ]
  51315. ))
  51316. characterMakers.push(() => makeCharacter(
  51317. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51318. {
  51319. front: {
  51320. height: math.unit(1.75, "meters"),
  51321. weight: math.unit(100, "kg"),
  51322. name: "Front",
  51323. image: {
  51324. source: "./media/characters/zarya/front.svg",
  51325. extra: 741/735,
  51326. bottom: 44/785
  51327. },
  51328. extraAttributes: {
  51329. "tailLength": {
  51330. name: "Tail Length",
  51331. power: 1,
  51332. type: "length",
  51333. base: math.unit(180, "cm")
  51334. },
  51335. "pawLength": {
  51336. name: "Paw Length",
  51337. power: 1,
  51338. type: "length",
  51339. base: math.unit(31, "cm")
  51340. },
  51341. }
  51342. },
  51343. side: {
  51344. height: math.unit(1.75, "meters"),
  51345. weight: math.unit(100, "kg"),
  51346. name: "Side",
  51347. image: {
  51348. source: "./media/characters/zarya/side.svg",
  51349. extra: 776/770,
  51350. bottom: 17/793
  51351. },
  51352. extraAttributes: {
  51353. "tailLength": {
  51354. name: "Tail Length",
  51355. power: 1,
  51356. type: "length",
  51357. base: math.unit(180, "cm")
  51358. },
  51359. "pawLength": {
  51360. name: "Paw Length",
  51361. power: 1,
  51362. type: "length",
  51363. base: math.unit(31, "cm")
  51364. },
  51365. }
  51366. },
  51367. back: {
  51368. height: math.unit(1.75, "meters"),
  51369. weight: math.unit(100, "kg"),
  51370. name: "Back",
  51371. image: {
  51372. source: "./media/characters/zarya/back.svg",
  51373. extra: 741/735,
  51374. bottom: 44/785
  51375. },
  51376. extraAttributes: {
  51377. "tailLength": {
  51378. name: "Tail Length",
  51379. power: 1,
  51380. type: "length",
  51381. base: math.unit(180, "cm")
  51382. },
  51383. "pawLength": {
  51384. name: "Paw Length",
  51385. power: 1,
  51386. type: "length",
  51387. base: math.unit(31, "cm")
  51388. },
  51389. }
  51390. },
  51391. frontNoTail: {
  51392. height: math.unit(1.75, "meters"),
  51393. weight: math.unit(100, "kg"),
  51394. name: "Front (No Tail)",
  51395. image: {
  51396. source: "./media/characters/zarya/front-no-tail.svg",
  51397. extra: 741/735,
  51398. bottom: 44/785
  51399. },
  51400. extraAttributes: {
  51401. "tailLength": {
  51402. name: "Tail Length",
  51403. power: 1,
  51404. type: "length",
  51405. base: math.unit(180, "cm")
  51406. },
  51407. "pawLength": {
  51408. name: "Paw Length",
  51409. power: 1,
  51410. type: "length",
  51411. base: math.unit(31, "cm")
  51412. },
  51413. }
  51414. },
  51415. dressed: {
  51416. height: math.unit(1.75, "meters"),
  51417. weight: math.unit(100, "kg"),
  51418. name: "Dressed",
  51419. image: {
  51420. source: "./media/characters/zarya/dressed.svg",
  51421. extra: 683/672,
  51422. bottom: 79/762
  51423. },
  51424. extraAttributes: {
  51425. "tailLength": {
  51426. name: "Tail Length",
  51427. power: 1,
  51428. type: "length",
  51429. base: math.unit(180, "cm")
  51430. },
  51431. "pawLength": {
  51432. name: "Paw Length",
  51433. power: 1,
  51434. type: "length",
  51435. base: math.unit(31, "cm")
  51436. },
  51437. }
  51438. },
  51439. },
  51440. [
  51441. {
  51442. name: "Micro",
  51443. height: math.unit(5, "cm")
  51444. },
  51445. {
  51446. name: "Normal",
  51447. height: math.unit(1.75, "meters"),
  51448. default: true
  51449. },
  51450. {
  51451. name: "Macro",
  51452. height: math.unit(122, "meters")
  51453. },
  51454. ]
  51455. ))
  51456. characterMakers.push(() => makeCharacter(
  51457. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51458. {
  51459. front: {
  51460. height: math.unit(7.5, "feet"),
  51461. name: "Front",
  51462. image: {
  51463. source: "./media/characters/sven-hatisson/front.svg",
  51464. extra: 917/857,
  51465. bottom: 42/959
  51466. }
  51467. },
  51468. back: {
  51469. height: math.unit(7.5, "feet"),
  51470. name: "Back",
  51471. image: {
  51472. source: "./media/characters/sven-hatisson/back.svg",
  51473. extra: 903/856,
  51474. bottom: 15/918
  51475. }
  51476. },
  51477. },
  51478. [
  51479. {
  51480. name: "Base Height",
  51481. height: math.unit(7.5, "feet")
  51482. },
  51483. {
  51484. name: "Usual Height",
  51485. height: math.unit(13.5, "feet"),
  51486. default: true
  51487. },
  51488. {
  51489. name: "Smaller Macro",
  51490. height: math.unit(85, "feet")
  51491. },
  51492. {
  51493. name: "Moderate Macro",
  51494. height: math.unit(320, "feet")
  51495. },
  51496. {
  51497. name: "Large Macro",
  51498. height: math.unit(1000, "feet")
  51499. },
  51500. {
  51501. name: "Largest Size",
  51502. height: math.unit(2, "miles")
  51503. },
  51504. ]
  51505. ))
  51506. characterMakers.push(() => makeCharacter(
  51507. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51508. {
  51509. side: {
  51510. height: math.unit(1.8, "meters"),
  51511. weight: math.unit(275, "kg"),
  51512. name: "Side",
  51513. image: {
  51514. source: "./media/characters/terra/side.svg",
  51515. extra: 1273/1147,
  51516. bottom: 0/1273
  51517. }
  51518. },
  51519. },
  51520. [
  51521. {
  51522. name: "Normal",
  51523. height: math.unit(16.2, "meters"),
  51524. default: true
  51525. },
  51526. ]
  51527. ))
  51528. characterMakers.push(() => makeCharacter(
  51529. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51530. {
  51531. borzoiFront: {
  51532. height: math.unit(6 + 9/12, "feet"),
  51533. name: "Front",
  51534. image: {
  51535. source: "./media/characters/rae/borzoi-front.svg",
  51536. extra: 1161/1098,
  51537. bottom: 31/1192
  51538. },
  51539. form: "borzoi",
  51540. default: true
  51541. },
  51542. werewolfFront: {
  51543. height: math.unit(8 + 7/12, "feet"),
  51544. name: "Front",
  51545. image: {
  51546. source: "./media/characters/rae/werewolf-front.svg",
  51547. extra: 1411/1334,
  51548. bottom: 127/1538
  51549. },
  51550. form: "werewolf",
  51551. default: true
  51552. },
  51553. },
  51554. [
  51555. {
  51556. name: "Normal",
  51557. height: math.unit(6 + 9/12, "feet"),
  51558. default: true,
  51559. form: "borzoi"
  51560. },
  51561. {
  51562. name: "Normal",
  51563. height: math.unit(8 + 7/12, "feet"),
  51564. default: true,
  51565. form: "werewolf"
  51566. },
  51567. ],
  51568. {
  51569. "borzoi": {
  51570. name: "Borzoi",
  51571. default: true
  51572. },
  51573. "werewolf": {
  51574. name: "Werewolf",
  51575. },
  51576. }
  51577. ))
  51578. characterMakers.push(() => makeCharacter(
  51579. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51580. {
  51581. front: {
  51582. height: math.unit(8 + 7/12, "feet"),
  51583. weight: math.unit(482, "lb"),
  51584. name: "Front",
  51585. image: {
  51586. source: "./media/characters/kit/front.svg",
  51587. extra: 1247/1103,
  51588. bottom: 41/1288
  51589. }
  51590. },
  51591. back: {
  51592. height: math.unit(8 + 7/12, "feet"),
  51593. weight: math.unit(482, "lb"),
  51594. name: "Back",
  51595. image: {
  51596. source: "./media/characters/kit/back.svg",
  51597. extra: 1252/1123,
  51598. bottom: 21/1273
  51599. }
  51600. },
  51601. paw: {
  51602. height: math.unit(1.46, "feet"),
  51603. name: "Paw",
  51604. image: {
  51605. source: "./media/characters/kit/paw.svg"
  51606. }
  51607. },
  51608. },
  51609. [
  51610. {
  51611. name: "Normal",
  51612. height: math.unit(2.61, "meters"),
  51613. default: true
  51614. },
  51615. {
  51616. name: "\"Tall\"",
  51617. height: math.unit(8.21, "meters")
  51618. },
  51619. {
  51620. name: "Tall",
  51621. height: math.unit(19.6, "meters")
  51622. },
  51623. {
  51624. name: "Very Tall",
  51625. height: math.unit(57.91, "meters")
  51626. },
  51627. {
  51628. name: "Semi-Macro",
  51629. height: math.unit(138.64, "meters")
  51630. },
  51631. {
  51632. name: "Macro",
  51633. height: math.unit(831.99, "meters")
  51634. },
  51635. {
  51636. name: "EX-Macro",
  51637. height: math.unit(96451121, "meters")
  51638. },
  51639. {
  51640. name: "S1-Omnipotent",
  51641. height: math.unit(4.42074e+9, "meters")
  51642. },
  51643. {
  51644. name: "S2-Omnipotent",
  51645. height: math.unit(9.42074e+17, "meters")
  51646. },
  51647. {
  51648. name: "Omnipotent",
  51649. height: math.unit(4.23112e+24, "meters")
  51650. },
  51651. {
  51652. name: "Hypergod",
  51653. height: math.unit(5.05176e+27, "meters")
  51654. },
  51655. {
  51656. name: "Hypergod-EX",
  51657. height: math.unit(9.45532e+49, "meters")
  51658. },
  51659. {
  51660. name: "Hypergod-SP",
  51661. height: math.unit(9.45532e+195, "meters")
  51662. },
  51663. ]
  51664. ))
  51665. characterMakers.push(() => makeCharacter(
  51666. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51667. {
  51668. side: {
  51669. height: math.unit(0.6, "meters"),
  51670. weight: math.unit(24, "kg"),
  51671. name: "Side",
  51672. image: {
  51673. source: "./media/characters/celeste/side.svg",
  51674. extra: 810/517,
  51675. bottom: 53/863
  51676. }
  51677. },
  51678. },
  51679. [
  51680. {
  51681. name: "Velociraptor",
  51682. height: math.unit(0.6, "meters"),
  51683. default: true
  51684. },
  51685. {
  51686. name: "Utahraptor",
  51687. height: math.unit(1.8, "meters")
  51688. },
  51689. {
  51690. name: "Gallimimus",
  51691. height: math.unit(4.0, "meters")
  51692. },
  51693. {
  51694. name: "Large",
  51695. height: math.unit(20, "meters")
  51696. },
  51697. {
  51698. name: "Planetary",
  51699. height: math.unit(50, "megameters")
  51700. },
  51701. {
  51702. name: "Stellar",
  51703. height: math.unit(1.5, "gigameters")
  51704. },
  51705. {
  51706. name: "Galactic",
  51707. height: math.unit(100, "exameters")
  51708. },
  51709. ]
  51710. ))
  51711. characterMakers.push(() => makeCharacter(
  51712. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51713. {
  51714. front: {
  51715. height: math.unit(6, "feet"),
  51716. weight: math.unit(210, "lb"),
  51717. name: "Front",
  51718. image: {
  51719. source: "./media/characters/glacia/front.svg",
  51720. extra: 958/901,
  51721. bottom: 45/1003
  51722. }
  51723. },
  51724. },
  51725. [
  51726. {
  51727. name: "Macro",
  51728. height: math.unit(1000, "meters"),
  51729. default: true
  51730. },
  51731. ]
  51732. ))
  51733. characterMakers.push(() => makeCharacter(
  51734. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51735. {
  51736. front: {
  51737. height: math.unit(4, "meters"),
  51738. name: "Front",
  51739. image: {
  51740. source: "./media/characters/giri/front.svg",
  51741. extra: 966/894,
  51742. bottom: 21/987
  51743. }
  51744. },
  51745. },
  51746. [
  51747. {
  51748. name: "Normal",
  51749. height: math.unit(4, "meters"),
  51750. default: true
  51751. },
  51752. ]
  51753. ))
  51754. characterMakers.push(() => makeCharacter(
  51755. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51756. {
  51757. back: {
  51758. height: math.unit(4, "feet"),
  51759. weight: math.unit(37, "lb"),
  51760. name: "Back",
  51761. image: {
  51762. source: "./media/characters/tin/back.svg",
  51763. extra: 845/780,
  51764. bottom: 28/873
  51765. }
  51766. },
  51767. },
  51768. [
  51769. {
  51770. name: "Normal",
  51771. height: math.unit(4, "feet"),
  51772. default: true
  51773. },
  51774. ]
  51775. ))
  51776. characterMakers.push(() => makeCharacter(
  51777. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51778. {
  51779. front: {
  51780. height: math.unit(25, "feet"),
  51781. name: "Front",
  51782. image: {
  51783. source: "./media/characters/cadenza-vivace/front.svg",
  51784. extra: 1842/1578,
  51785. bottom: 30/1872
  51786. }
  51787. },
  51788. },
  51789. [
  51790. {
  51791. name: "Macro",
  51792. height: math.unit(25, "feet"),
  51793. default: true
  51794. },
  51795. ]
  51796. ))
  51797. characterMakers.push(() => makeCharacter(
  51798. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51799. {
  51800. front: {
  51801. height: math.unit(10, "feet"),
  51802. weight: math.unit(625, "kg"),
  51803. name: "Front",
  51804. image: {
  51805. source: "./media/characters/zain/front.svg",
  51806. extra: 1682/1498,
  51807. bottom: 223/1905
  51808. }
  51809. },
  51810. back: {
  51811. height: math.unit(10, "feet"),
  51812. weight: math.unit(625, "kg"),
  51813. name: "Back",
  51814. image: {
  51815. source: "./media/characters/zain/back.svg",
  51816. extra: 1814/1657,
  51817. bottom: 152/1966
  51818. }
  51819. },
  51820. head: {
  51821. height: math.unit(10, "feet"),
  51822. weight: math.unit(625, "kg"),
  51823. name: "Head",
  51824. image: {
  51825. source: "./media/characters/zain/head.svg",
  51826. extra: 1059/762,
  51827. bottom: 0/1059
  51828. }
  51829. },
  51830. },
  51831. [
  51832. {
  51833. name: "Normal",
  51834. height: math.unit(10, "feet"),
  51835. default: true
  51836. },
  51837. ]
  51838. ))
  51839. characterMakers.push(() => makeCharacter(
  51840. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51841. {
  51842. front: {
  51843. height: math.unit(6 + 5/12, "feet"),
  51844. weight: math.unit(750, "lb"),
  51845. name: "Front",
  51846. image: {
  51847. source: "./media/characters/ruchex/front.svg",
  51848. extra: 877/820,
  51849. bottom: 17/894
  51850. },
  51851. extraAttributes: {
  51852. "width": {
  51853. name: "Width",
  51854. power: 1,
  51855. type: "length",
  51856. base: math.unit(4.757, "feet")
  51857. },
  51858. }
  51859. },
  51860. },
  51861. [
  51862. {
  51863. name: "Normal",
  51864. height: math.unit(6 + 5/12, "feet"),
  51865. default: true
  51866. },
  51867. ]
  51868. ))
  51869. characterMakers.push(() => makeCharacter(
  51870. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51871. {
  51872. dressedFront: {
  51873. height: math.unit(191, "cm"),
  51874. weight: math.unit(80, "kg"),
  51875. name: "Front",
  51876. image: {
  51877. source: "./media/characters/buster/dressed-front.svg",
  51878. extra: 1022/973,
  51879. bottom: 69/1091
  51880. }
  51881. },
  51882. dressedBack: {
  51883. height: math.unit(191, "cm"),
  51884. weight: math.unit(80, "kg"),
  51885. name: "Back",
  51886. image: {
  51887. source: "./media/characters/buster/dressed-back.svg",
  51888. extra: 1018/970,
  51889. bottom: 55/1073
  51890. }
  51891. },
  51892. nudeFront: {
  51893. height: math.unit(191, "cm"),
  51894. weight: math.unit(80, "kg"),
  51895. name: "Front (Nude)",
  51896. image: {
  51897. source: "./media/characters/buster/nude-front.svg",
  51898. extra: 1022/973,
  51899. bottom: 69/1091
  51900. }
  51901. },
  51902. nudeBack: {
  51903. height: math.unit(191, "cm"),
  51904. weight: math.unit(80, "kg"),
  51905. name: "Back (Nude)",
  51906. image: {
  51907. source: "./media/characters/buster/nude-back.svg",
  51908. extra: 1018/970,
  51909. bottom: 55/1073
  51910. }
  51911. },
  51912. dick: {
  51913. height: math.unit(2.59, "feet"),
  51914. name: "Dick",
  51915. image: {
  51916. source: "./media/characters/buster/dick.svg"
  51917. }
  51918. },
  51919. ass: {
  51920. height: math.unit(1.2, "feet"),
  51921. name: "Ass",
  51922. image: {
  51923. source: "./media/characters/buster/ass.svg"
  51924. }
  51925. },
  51926. },
  51927. [
  51928. {
  51929. name: "Normal",
  51930. height: math.unit(191, "cm"),
  51931. default: true
  51932. },
  51933. ]
  51934. ))
  51935. characterMakers.push(() => makeCharacter(
  51936. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51937. {
  51938. side: {
  51939. height: math.unit(8.1, "feet"),
  51940. weight: math.unit(3500, "lb"),
  51941. name: "Side",
  51942. image: {
  51943. source: "./media/characters/sonya/side.svg",
  51944. extra: 1730/1317,
  51945. bottom: 86/1816
  51946. }
  51947. },
  51948. },
  51949. [
  51950. {
  51951. name: "Normal",
  51952. height: math.unit(8.1, "feet"),
  51953. default: true
  51954. },
  51955. ]
  51956. ))
  51957. characterMakers.push(() => makeCharacter(
  51958. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51959. {
  51960. front: {
  51961. height: math.unit(6, "feet"),
  51962. weight: math.unit(150, "lb"),
  51963. name: "Front",
  51964. image: {
  51965. source: "./media/characters/cadence-andrysiak/front.svg",
  51966. extra: 1164/1121,
  51967. bottom: 60/1224
  51968. }
  51969. },
  51970. back: {
  51971. height: math.unit(6, "feet"),
  51972. weight: math.unit(150, "lb"),
  51973. name: "Back",
  51974. image: {
  51975. source: "./media/characters/cadence-andrysiak/back.svg",
  51976. extra: 1200/1165,
  51977. bottom: 9/1209
  51978. }
  51979. },
  51980. dressed: {
  51981. height: math.unit(6, "feet"),
  51982. weight: math.unit(150, "lb"),
  51983. name: "Dressed",
  51984. image: {
  51985. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51986. extra: 1164/1121,
  51987. bottom: 60/1224
  51988. }
  51989. },
  51990. },
  51991. [
  51992. {
  51993. name: "Micro",
  51994. height: math.unit(1, "mm")
  51995. },
  51996. {
  51997. name: "Normal",
  51998. height: math.unit(6, "feet"),
  51999. default: true
  52000. },
  52001. ]
  52002. ))
  52003. characterMakers.push(() => makeCharacter(
  52004. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52005. {
  52006. front: {
  52007. height: math.unit(60, "inches"),
  52008. weight: math.unit(16, "lb"),
  52009. preyCapacity: math.unit(80, "liters"),
  52010. name: "Front",
  52011. image: {
  52012. source: "./media/characters/penny-lynx/front.svg",
  52013. extra: 1959/1769,
  52014. bottom: 49/2008
  52015. }
  52016. },
  52017. },
  52018. [
  52019. {
  52020. name: "Nokia",
  52021. height: math.unit(2, "inches")
  52022. },
  52023. {
  52024. name: "Desktop",
  52025. height: math.unit(24, "inches")
  52026. },
  52027. {
  52028. name: "TV",
  52029. height: math.unit(60, "inches")
  52030. },
  52031. {
  52032. name: "Jumbotron",
  52033. height: math.unit(12, "feet")
  52034. },
  52035. {
  52036. name: "Billboard",
  52037. height: math.unit(48, "feet"),
  52038. default: true
  52039. },
  52040. {
  52041. name: "IMAX",
  52042. height: math.unit(96, "feet")
  52043. },
  52044. {
  52045. name: "SINGULARITY",
  52046. height: math.unit(864938, "miles")
  52047. },
  52048. ]
  52049. ))
  52050. characterMakers.push(() => makeCharacter(
  52051. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52052. {
  52053. front: {
  52054. height: math.unit(5 + 4/12, "feet"),
  52055. weight: math.unit(230, "lb"),
  52056. name: "Front",
  52057. image: {
  52058. source: "./media/characters/sukebe/front.svg",
  52059. extra: 2130/2038,
  52060. bottom: 90/2220
  52061. }
  52062. },
  52063. back: {
  52064. height: math.unit(3.48, "feet"),
  52065. weight: math.unit(230, "lb"),
  52066. name: "Back",
  52067. image: {
  52068. source: "./media/characters/sukebe/back.svg",
  52069. extra: 1670/1604,
  52070. bottom: 0/1670
  52071. }
  52072. },
  52073. },
  52074. [
  52075. {
  52076. name: "Normal",
  52077. height: math.unit(5 + 4/12, "feet"),
  52078. default: true
  52079. },
  52080. ]
  52081. ))
  52082. characterMakers.push(() => makeCharacter(
  52083. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52084. {
  52085. front: {
  52086. height: math.unit(6, "feet"),
  52087. name: "Front",
  52088. image: {
  52089. source: "./media/characters/nylla/front.svg",
  52090. extra: 1868/1699,
  52091. bottom: 97/1965
  52092. }
  52093. },
  52094. back: {
  52095. height: math.unit(6, "feet"),
  52096. name: "Back",
  52097. image: {
  52098. source: "./media/characters/nylla/back.svg",
  52099. extra: 1889/1712,
  52100. bottom: 93/1982
  52101. }
  52102. },
  52103. frontNsfw: {
  52104. height: math.unit(6, "feet"),
  52105. name: "Front (NSFW)",
  52106. image: {
  52107. source: "./media/characters/nylla/front-nsfw.svg",
  52108. extra: 1868/1699,
  52109. bottom: 97/1965
  52110. },
  52111. extraAttributes: {
  52112. "dickLength": {
  52113. name: "Dick Length",
  52114. power: 1,
  52115. type: "length",
  52116. base: math.unit(1.4, "feet")
  52117. },
  52118. "cumVolume": {
  52119. name: "Cum Volume",
  52120. power: 3,
  52121. type: "volume",
  52122. base: math.unit(100, "mL")
  52123. },
  52124. }
  52125. },
  52126. backNsfw: {
  52127. height: math.unit(6, "feet"),
  52128. name: "Back (NSFW)",
  52129. image: {
  52130. source: "./media/characters/nylla/back-nsfw.svg",
  52131. extra: 1889/1712,
  52132. bottom: 93/1982
  52133. }
  52134. },
  52135. maw: {
  52136. height: math.unit(2.10, "feet"),
  52137. name: "Maw",
  52138. image: {
  52139. source: "./media/characters/nylla/maw.svg"
  52140. }
  52141. },
  52142. paws: {
  52143. height: math.unit(2.06, "feet"),
  52144. name: "Paws",
  52145. image: {
  52146. source: "./media/characters/nylla/paws.svg"
  52147. }
  52148. },
  52149. muzzle: {
  52150. height: math.unit(0.61, "feet"),
  52151. name: "Muzzle",
  52152. image: {
  52153. source: "./media/characters/nylla/muzzle.svg"
  52154. }
  52155. },
  52156. sheath: {
  52157. height: math.unit(1.305, "feet"),
  52158. name: "Sheath",
  52159. image: {
  52160. source: "./media/characters/nylla/sheath.svg"
  52161. }
  52162. },
  52163. },
  52164. [
  52165. {
  52166. name: "Micro",
  52167. height: math.unit(7.5, "inches")
  52168. },
  52169. {
  52170. name: "Normal",
  52171. height: math.unit(7, "feet"),
  52172. default: true
  52173. },
  52174. {
  52175. name: "Macro",
  52176. height: math.unit(60, "feet")
  52177. },
  52178. {
  52179. name: "Mega",
  52180. height: math.unit(200, "feet")
  52181. },
  52182. ]
  52183. ))
  52184. characterMakers.push(() => makeCharacter(
  52185. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52186. {
  52187. front: {
  52188. height: math.unit(10, "feet"),
  52189. weight: math.unit(2300, "lb"),
  52190. name: "Front",
  52191. image: {
  52192. source: "./media/characters/hunt3r/front.svg",
  52193. extra: 1909/1742,
  52194. bottom: 46/1955
  52195. }
  52196. },
  52197. },
  52198. [
  52199. {
  52200. name: "Normal",
  52201. height: math.unit(10, "feet"),
  52202. default: true
  52203. },
  52204. ]
  52205. ))
  52206. characterMakers.push(() => makeCharacter(
  52207. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52208. {
  52209. dressed: {
  52210. height: math.unit(11, "feet"),
  52211. weight: math.unit(18500, "lb"),
  52212. preyCapacity: math.unit(9, "people"),
  52213. name: "Dressed",
  52214. image: {
  52215. source: "./media/characters/cylphis/dressed.svg",
  52216. extra: 1028/1003,
  52217. bottom: 75/1103
  52218. },
  52219. },
  52220. undressed: {
  52221. height: math.unit(11, "feet"),
  52222. weight: math.unit(18500, "lb"),
  52223. preyCapacity: math.unit(9, "people"),
  52224. name: "Undressed",
  52225. image: {
  52226. source: "./media/characters/cylphis/undressed.svg",
  52227. extra: 1028/1003,
  52228. bottom: 75/1103
  52229. }
  52230. },
  52231. full: {
  52232. height: math.unit(11, "feet"),
  52233. weight: math.unit(18500 + 150*9, "lb"),
  52234. preyCapacity: math.unit(9, "people"),
  52235. name: "Full",
  52236. image: {
  52237. source: "./media/characters/cylphis/full.svg",
  52238. extra: 1028/1003,
  52239. bottom: 75/1103
  52240. }
  52241. },
  52242. },
  52243. [
  52244. {
  52245. name: "Small",
  52246. height: math.unit(8, "feet")
  52247. },
  52248. {
  52249. name: "Normal",
  52250. height: math.unit(11, "feet"),
  52251. default: true
  52252. },
  52253. ]
  52254. ))
  52255. characterMakers.push(() => makeCharacter(
  52256. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52257. {
  52258. front: {
  52259. height: math.unit(2 + 7/12, "feet"),
  52260. name: "Front",
  52261. image: {
  52262. source: "./media/characters/orishan/front.svg",
  52263. extra: 1058/1023,
  52264. bottom: 23/1081
  52265. }
  52266. },
  52267. back: {
  52268. height: math.unit(2 + 7/12, "feet"),
  52269. name: "Back",
  52270. image: {
  52271. source: "./media/characters/orishan/back.svg",
  52272. extra: 1058/1023,
  52273. bottom: 23/1081
  52274. }
  52275. },
  52276. },
  52277. [
  52278. {
  52279. name: "Micro",
  52280. height: math.unit(2, "cm")
  52281. },
  52282. {
  52283. name: "Normal",
  52284. height: math.unit(2 + 7/12, "feet"),
  52285. default: true
  52286. },
  52287. ]
  52288. ))
  52289. characterMakers.push(() => makeCharacter(
  52290. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52291. {
  52292. front: {
  52293. height: math.unit(3, "meters"),
  52294. weight: math.unit(508, "kg"),
  52295. name: "Front",
  52296. image: {
  52297. source: "./media/characters/seranis/front.svg",
  52298. extra: 1478/1454,
  52299. bottom: 41/1519
  52300. }
  52301. },
  52302. },
  52303. [
  52304. {
  52305. name: "Normal",
  52306. height: math.unit(3, "meters"),
  52307. default: true
  52308. },
  52309. {
  52310. name: "Macro",
  52311. height: math.unit(108, "meters")
  52312. },
  52313. {
  52314. name: "Megamacro",
  52315. height: math.unit(1250, "meters")
  52316. },
  52317. ]
  52318. ))
  52319. characterMakers.push(() => makeCharacter(
  52320. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52321. {
  52322. undressed: {
  52323. height: math.unit(5 + 3/12, "feet"),
  52324. name: "Undressed",
  52325. image: {
  52326. source: "./media/characters/ankou/undressed.svg",
  52327. extra: 1301/1213,
  52328. bottom: 87/1388
  52329. }
  52330. },
  52331. dressed: {
  52332. height: math.unit(5 + 3/12, "feet"),
  52333. name: "Dressed",
  52334. image: {
  52335. source: "./media/characters/ankou/dressed.svg",
  52336. extra: 1301/1213,
  52337. bottom: 87/1388
  52338. }
  52339. },
  52340. head: {
  52341. height: math.unit(1.61, "feet"),
  52342. name: "Head",
  52343. image: {
  52344. source: "./media/characters/ankou/head.svg"
  52345. }
  52346. },
  52347. },
  52348. [
  52349. {
  52350. name: "Normal",
  52351. height: math.unit(5 + 3/12, "feet"),
  52352. default: true
  52353. },
  52354. ]
  52355. ))
  52356. characterMakers.push(() => makeCharacter(
  52357. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52358. {
  52359. side: {
  52360. height: math.unit(6 + 3/12, "feet"),
  52361. weight: math.unit(200, "kg"),
  52362. name: "Side",
  52363. image: {
  52364. source: "./media/characters/juniper-skunktaur/side.svg",
  52365. extra: 1574/1229,
  52366. bottom: 38/1612
  52367. }
  52368. },
  52369. front: {
  52370. height: math.unit(6 + 3/12, "feet"),
  52371. weight: math.unit(200, "kg"),
  52372. name: "Front",
  52373. image: {
  52374. source: "./media/characters/juniper-skunktaur/front.svg",
  52375. extra: 1337/1278,
  52376. bottom: 22/1359
  52377. }
  52378. },
  52379. back: {
  52380. height: math.unit(6 + 3/12, "feet"),
  52381. weight: math.unit(200, "kg"),
  52382. name: "Back",
  52383. image: {
  52384. source: "./media/characters/juniper-skunktaur/back.svg",
  52385. extra: 1618/1273,
  52386. bottom: 13/1631
  52387. }
  52388. },
  52389. top: {
  52390. height: math.unit(2.62, "feet"),
  52391. weight: math.unit(200, "kg"),
  52392. name: "Top",
  52393. image: {
  52394. source: "./media/characters/juniper-skunktaur/top.svg"
  52395. }
  52396. },
  52397. },
  52398. [
  52399. {
  52400. name: "Normal",
  52401. height: math.unit(6 + 3/12, "feet"),
  52402. default: true
  52403. },
  52404. ]
  52405. ))
  52406. characterMakers.push(() => makeCharacter(
  52407. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52408. {
  52409. front: {
  52410. height: math.unit(20.5, "feet"),
  52411. name: "Front",
  52412. image: {
  52413. source: "./media/characters/rei/front.svg",
  52414. extra: 1349/1195,
  52415. bottom: 31/1380
  52416. }
  52417. },
  52418. back: {
  52419. height: math.unit(20.5, "feet"),
  52420. name: "Back",
  52421. image: {
  52422. source: "./media/characters/rei/back.svg",
  52423. extra: 1358/1204,
  52424. bottom: 22/1380
  52425. }
  52426. },
  52427. pawsDigi: {
  52428. height: math.unit(3.45, "feet"),
  52429. name: "Paws (Digi)",
  52430. image: {
  52431. source: "./media/characters/rei/paws-digi.svg"
  52432. }
  52433. },
  52434. pawsPlanti: {
  52435. height: math.unit(3.45, "feet"),
  52436. name: "Paws (Planti)",
  52437. image: {
  52438. source: "./media/characters/rei/paws-planti.svg"
  52439. }
  52440. },
  52441. },
  52442. [
  52443. {
  52444. name: "Normal",
  52445. height: math.unit(20.5, "feet"),
  52446. default: true
  52447. },
  52448. ]
  52449. ))
  52450. characterMakers.push(() => makeCharacter(
  52451. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52452. {
  52453. front: {
  52454. height: math.unit(5 + 11/12, "feet"),
  52455. name: "Front",
  52456. image: {
  52457. source: "./media/characters/carina/front.svg",
  52458. extra: 1720/1449,
  52459. bottom: 14/1734
  52460. }
  52461. },
  52462. back: {
  52463. height: math.unit(5 + 11/12, "feet"),
  52464. name: "Back",
  52465. image: {
  52466. source: "./media/characters/carina/back.svg",
  52467. extra: 1493/1445,
  52468. bottom: 17/1510
  52469. }
  52470. },
  52471. paw: {
  52472. height: math.unit(0.92, "feet"),
  52473. name: "Paw",
  52474. image: {
  52475. source: "./media/characters/carina/paw.svg"
  52476. }
  52477. },
  52478. },
  52479. [
  52480. {
  52481. name: "Normal",
  52482. height: math.unit(5 + 11/12, "feet"),
  52483. default: true
  52484. },
  52485. ]
  52486. ))
  52487. characterMakers.push(() => makeCharacter(
  52488. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52489. {
  52490. front: {
  52491. height: math.unit(4.88, "meters"),
  52492. name: "Front",
  52493. image: {
  52494. source: "./media/characters/maya/front.svg",
  52495. extra: 1222/1145,
  52496. bottom: 57/1279
  52497. }
  52498. },
  52499. },
  52500. [
  52501. {
  52502. name: "Normal",
  52503. height: math.unit(4.88, "meters"),
  52504. default: true
  52505. },
  52506. {
  52507. name: "Macro",
  52508. height: math.unit(38.1, "meters")
  52509. },
  52510. {
  52511. name: "Macro+",
  52512. height: math.unit(152.4, "meters")
  52513. },
  52514. {
  52515. name: "Macro++",
  52516. height: math.unit(16.09, "km")
  52517. },
  52518. {
  52519. name: "Mega-macro",
  52520. height: math.unit(700, "megameters")
  52521. },
  52522. ]
  52523. ))
  52524. characterMakers.push(() => makeCharacter(
  52525. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52526. {
  52527. front: {
  52528. height: math.unit(6 + 2/12, "feet"),
  52529. weight: math.unit(500, "lb"),
  52530. preyCapacity: math.unit(4, "people"),
  52531. name: "Front",
  52532. image: {
  52533. source: "./media/characters/yepir/front.svg"
  52534. }
  52535. },
  52536. side: {
  52537. height: math.unit(6 + 2/12, "feet"),
  52538. weight: math.unit(500, "lb"),
  52539. preyCapacity: math.unit(4, "people"),
  52540. name: "Side",
  52541. image: {
  52542. source: "./media/characters/yepir/side.svg"
  52543. }
  52544. },
  52545. paw: {
  52546. height: math.unit(1.05, "feet"),
  52547. name: "Paw",
  52548. image: {
  52549. source: "./media/characters/yepir/paw.svg"
  52550. }
  52551. },
  52552. },
  52553. [
  52554. {
  52555. name: "Normal",
  52556. height: math.unit(6 + 2/12, "feet"),
  52557. default: true
  52558. },
  52559. ]
  52560. ))
  52561. characterMakers.push(() => makeCharacter(
  52562. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52563. {
  52564. front: {
  52565. height: math.unit(5 + 4/12, "feet"),
  52566. name: "Front",
  52567. image: {
  52568. source: "./media/characters/russec/front.svg",
  52569. extra: 1926/1626,
  52570. bottom: 72/1998
  52571. }
  52572. },
  52573. back: {
  52574. height: math.unit(5 + 4/12, "feet"),
  52575. name: "Back",
  52576. image: {
  52577. source: "./media/characters/russec/back.svg",
  52578. extra: 1910/1591,
  52579. bottom: 48/1958
  52580. }
  52581. },
  52582. },
  52583. [
  52584. {
  52585. name: "Small",
  52586. height: math.unit(5 + 4/12, "feet")
  52587. },
  52588. {
  52589. name: "Normal",
  52590. height: math.unit(72, "feet"),
  52591. default: true
  52592. },
  52593. ]
  52594. ))
  52595. characterMakers.push(() => makeCharacter(
  52596. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52597. {
  52598. side: {
  52599. height: math.unit(12, "feet"),
  52600. name: "Side",
  52601. image: {
  52602. source: "./media/characters/cianus/side.svg",
  52603. extra: 808/526,
  52604. bottom: 61/869
  52605. }
  52606. },
  52607. },
  52608. [
  52609. {
  52610. name: "Normal",
  52611. height: math.unit(12, "feet"),
  52612. default: true
  52613. },
  52614. ]
  52615. ))
  52616. characterMakers.push(() => makeCharacter(
  52617. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52618. {
  52619. front: {
  52620. height: math.unit(9 + 6/12, "feet"),
  52621. weight: math.unit(300, "lb"),
  52622. name: "Front",
  52623. image: {
  52624. source: "./media/characters/ahab/front.svg",
  52625. extra: 1897/1868,
  52626. bottom: 121/2018
  52627. }
  52628. },
  52629. frontNsfw: {
  52630. height: math.unit(9 + 6/12, "feet"),
  52631. weight: math.unit(300, "lb"),
  52632. name: "Front-nsfw",
  52633. image: {
  52634. source: "./media/characters/ahab/front-nsfw.svg",
  52635. extra: 1897/1868,
  52636. bottom: 121/2018
  52637. }
  52638. },
  52639. },
  52640. [
  52641. {
  52642. name: "Normal",
  52643. height: math.unit(9 + 6/12, "feet")
  52644. },
  52645. {
  52646. name: "Macro",
  52647. height: math.unit(657, "feet"),
  52648. default: true
  52649. },
  52650. ]
  52651. ))
  52652. characterMakers.push(() => makeCharacter(
  52653. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52654. {
  52655. front: {
  52656. height: math.unit(2.69, "meters"),
  52657. weight: math.unit(132, "kg"),
  52658. name: "Front",
  52659. image: {
  52660. source: "./media/characters/aarkus/front.svg",
  52661. extra: 1400/1231,
  52662. bottom: 34/1434
  52663. }
  52664. },
  52665. back: {
  52666. height: math.unit(2.69, "meters"),
  52667. weight: math.unit(132, "kg"),
  52668. name: "Back",
  52669. image: {
  52670. source: "./media/characters/aarkus/back.svg",
  52671. extra: 1381/1218,
  52672. bottom: 30/1411
  52673. }
  52674. },
  52675. frontNsfw: {
  52676. height: math.unit(2.69, "meters"),
  52677. weight: math.unit(132, "kg"),
  52678. name: "Front (NSFW)",
  52679. image: {
  52680. source: "./media/characters/aarkus/front-nsfw.svg",
  52681. extra: 1400/1231,
  52682. bottom: 34/1434
  52683. }
  52684. },
  52685. foot: {
  52686. height: math.unit(1.45, "feet"),
  52687. name: "Foot",
  52688. image: {
  52689. source: "./media/characters/aarkus/foot.svg"
  52690. }
  52691. },
  52692. head: {
  52693. height: math.unit(2.85, "feet"),
  52694. name: "Head",
  52695. image: {
  52696. source: "./media/characters/aarkus/head.svg"
  52697. }
  52698. },
  52699. headAlt: {
  52700. height: math.unit(3.07, "feet"),
  52701. name: "Head (Alt)",
  52702. image: {
  52703. source: "./media/characters/aarkus/head-alt.svg"
  52704. }
  52705. },
  52706. mouth: {
  52707. height: math.unit(1.25, "feet"),
  52708. name: "Mouth",
  52709. image: {
  52710. source: "./media/characters/aarkus/mouth.svg"
  52711. }
  52712. },
  52713. dick: {
  52714. height: math.unit(1.77, "feet"),
  52715. name: "Dick",
  52716. image: {
  52717. source: "./media/characters/aarkus/dick.svg"
  52718. }
  52719. },
  52720. },
  52721. [
  52722. {
  52723. name: "Normal",
  52724. height: math.unit(2.69, "meters"),
  52725. default: true
  52726. },
  52727. {
  52728. name: "Macro",
  52729. height: math.unit(269, "meters")
  52730. },
  52731. {
  52732. name: "Macro+",
  52733. height: math.unit(672.5, "meters")
  52734. },
  52735. {
  52736. name: "Megamacro",
  52737. height: math.unit(2.017, "km")
  52738. },
  52739. ]
  52740. ))
  52741. characterMakers.push(() => makeCharacter(
  52742. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52743. {
  52744. front: {
  52745. height: math.unit(23.47, "cm"),
  52746. weight: math.unit(600, "grams"),
  52747. name: "Front",
  52748. image: {
  52749. source: "./media/characters/diode/front.svg",
  52750. extra: 1778/1396,
  52751. bottom: 95/1873
  52752. }
  52753. },
  52754. side: {
  52755. height: math.unit(23.47, "cm"),
  52756. weight: math.unit(600, "grams"),
  52757. name: "Side",
  52758. image: {
  52759. source: "./media/characters/diode/side.svg",
  52760. extra: 1831/1404,
  52761. bottom: 86/1917
  52762. }
  52763. },
  52764. wings: {
  52765. height: math.unit(0.683, "feet"),
  52766. name: "Wings",
  52767. image: {
  52768. source: "./media/characters/diode/wings.svg"
  52769. }
  52770. },
  52771. },
  52772. [
  52773. {
  52774. name: "Normal",
  52775. height: math.unit(23.47, "cm"),
  52776. default: true
  52777. },
  52778. ]
  52779. ))
  52780. characterMakers.push(() => makeCharacter(
  52781. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52782. {
  52783. front: {
  52784. height: math.unit(6 + 3/12, "feet"),
  52785. weight: math.unit(250, "lb"),
  52786. name: "Front",
  52787. image: {
  52788. source: "./media/characters/reika/front.svg",
  52789. extra: 1120/1078,
  52790. bottom: 86/1206
  52791. }
  52792. },
  52793. },
  52794. [
  52795. {
  52796. name: "Normal",
  52797. height: math.unit(6 + 3/12, "feet"),
  52798. default: true
  52799. },
  52800. ]
  52801. ))
  52802. characterMakers.push(() => makeCharacter(
  52803. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52804. {
  52805. front: {
  52806. height: math.unit(16 + 8/12, "feet"),
  52807. weight: math.unit(9000, "lb"),
  52808. name: "Front",
  52809. image: {
  52810. source: "./media/characters/lokuto-takama/front.svg",
  52811. extra: 1774/1632,
  52812. bottom: 147/1921
  52813. },
  52814. extraAttributes: {
  52815. "bustWidth": {
  52816. name: "Bust Width",
  52817. power: 1,
  52818. type: "length",
  52819. base: math.unit(2.4, "meters")
  52820. },
  52821. "breastWeight": {
  52822. name: "Breast Weight",
  52823. power: 3,
  52824. type: "mass",
  52825. base: math.unit(1000, "kg")
  52826. },
  52827. }
  52828. },
  52829. },
  52830. [
  52831. {
  52832. name: "Normal",
  52833. height: math.unit(16 + 8/12, "feet"),
  52834. default: true
  52835. },
  52836. ]
  52837. ))
  52838. characterMakers.push(() => makeCharacter(
  52839. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52840. {
  52841. front: {
  52842. height: math.unit(10, "cm"),
  52843. weight: math.unit(850, "grams"),
  52844. name: "Front",
  52845. image: {
  52846. source: "./media/characters/owak-bone/front.svg",
  52847. extra: 1965/1801,
  52848. bottom: 31/1996
  52849. }
  52850. },
  52851. },
  52852. [
  52853. {
  52854. name: "Normal",
  52855. height: math.unit(10, "cm"),
  52856. default: true
  52857. },
  52858. ]
  52859. ))
  52860. characterMakers.push(() => makeCharacter(
  52861. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52862. {
  52863. front: {
  52864. height: math.unit(2 + 6/12, "feet"),
  52865. weight: math.unit(9, "lb"),
  52866. name: "Front",
  52867. image: {
  52868. source: "./media/characters/muffin/front.svg",
  52869. extra: 1220/1195,
  52870. bottom: 84/1304
  52871. }
  52872. },
  52873. },
  52874. [
  52875. {
  52876. name: "Normal",
  52877. height: math.unit(2 + 6/12, "feet"),
  52878. default: true
  52879. },
  52880. ]
  52881. ))
  52882. characterMakers.push(() => makeCharacter(
  52883. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52884. {
  52885. front: {
  52886. height: math.unit(7, "feet"),
  52887. name: "Front",
  52888. image: {
  52889. source: "./media/characters/chimera/front.svg",
  52890. extra: 1752/1614,
  52891. bottom: 68/1820
  52892. }
  52893. },
  52894. },
  52895. [
  52896. {
  52897. name: "Normal",
  52898. height: math.unit(7, "feet")
  52899. },
  52900. {
  52901. name: "Gigamacro",
  52902. height: math.unit(2.9, "gigameters"),
  52903. default: true
  52904. },
  52905. {
  52906. name: "Universal",
  52907. height: math.unit(1.56e26, "yottameters")
  52908. },
  52909. ]
  52910. ))
  52911. characterMakers.push(() => makeCharacter(
  52912. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52913. {
  52914. front: {
  52915. height: math.unit(3, "feet"),
  52916. weight: math.unit(20, "lb"),
  52917. name: "Front",
  52918. image: {
  52919. source: "./media/characters/kit-fennec-fox/front.svg",
  52920. extra: 1027/932,
  52921. bottom: 16/1043
  52922. }
  52923. },
  52924. back: {
  52925. height: math.unit(3, "feet"),
  52926. weight: math.unit(20, "lb"),
  52927. name: "Back",
  52928. image: {
  52929. source: "./media/characters/kit-fennec-fox/back.svg",
  52930. extra: 1027/932,
  52931. bottom: 16/1043
  52932. }
  52933. },
  52934. },
  52935. [
  52936. {
  52937. name: "Normal",
  52938. height: math.unit(3, "feet"),
  52939. default: true
  52940. },
  52941. ]
  52942. ))
  52943. characterMakers.push(() => makeCharacter(
  52944. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52945. {
  52946. front: {
  52947. height: math.unit(167, "cm"),
  52948. name: "Front",
  52949. image: {
  52950. source: "./media/characters/blue-otter/front.svg",
  52951. extra: 1951/1920,
  52952. bottom: 31/1982
  52953. }
  52954. },
  52955. },
  52956. [
  52957. {
  52958. name: "Otter-Sized",
  52959. height: math.unit(100, "cm")
  52960. },
  52961. {
  52962. name: "Normal",
  52963. height: math.unit(167, "cm"),
  52964. default: true
  52965. },
  52966. ]
  52967. ))
  52968. characterMakers.push(() => makeCharacter(
  52969. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52970. {
  52971. front: {
  52972. height: math.unit(4 + 4/12, "feet"),
  52973. name: "Front",
  52974. image: {
  52975. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52976. extra: 1072/1067,
  52977. bottom: 117/1189
  52978. }
  52979. },
  52980. back: {
  52981. height: math.unit(4 + 4/12, "feet"),
  52982. name: "Back",
  52983. image: {
  52984. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52985. extra: 1135/1129,
  52986. bottom: 57/1192
  52987. }
  52988. },
  52989. head: {
  52990. height: math.unit(1.77, "feet"),
  52991. name: "Head",
  52992. image: {
  52993. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52994. }
  52995. },
  52996. },
  52997. [
  52998. {
  52999. name: "Normal",
  53000. height: math.unit(4 + 4/12, "feet"),
  53001. default: true
  53002. },
  53003. ]
  53004. ))
  53005. characterMakers.push(() => makeCharacter(
  53006. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53007. {
  53008. front: {
  53009. height: math.unit(2, "inches"),
  53010. name: "Front",
  53011. image: {
  53012. source: "./media/characters/carley-hartford/front.svg",
  53013. extra: 1035/988,
  53014. bottom: 23/1058
  53015. }
  53016. },
  53017. back: {
  53018. height: math.unit(2, "inches"),
  53019. name: "Back",
  53020. image: {
  53021. source: "./media/characters/carley-hartford/back.svg",
  53022. extra: 1035/988,
  53023. bottom: 23/1058
  53024. }
  53025. },
  53026. dressed: {
  53027. height: math.unit(2, "inches"),
  53028. name: "Dressed",
  53029. image: {
  53030. source: "./media/characters/carley-hartford/dressed.svg",
  53031. extra: 651/620,
  53032. bottom: 0/651
  53033. }
  53034. },
  53035. },
  53036. [
  53037. {
  53038. name: "Micro",
  53039. height: math.unit(2, "inches"),
  53040. default: true
  53041. },
  53042. {
  53043. name: "Macro",
  53044. height: math.unit(6 + 3/12, "feet")
  53045. },
  53046. ]
  53047. ))
  53048. characterMakers.push(() => makeCharacter(
  53049. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53050. {
  53051. front: {
  53052. height: math.unit(2 + 3/12, "feet"),
  53053. weight: math.unit(15 + 7/16, "lb"),
  53054. name: "Front",
  53055. image: {
  53056. source: "./media/characters/duke/front.svg",
  53057. extra: 910/815,
  53058. bottom: 30/940
  53059. }
  53060. },
  53061. },
  53062. [
  53063. {
  53064. name: "Normal",
  53065. height: math.unit(2 + 3/12, "feet"),
  53066. default: true
  53067. },
  53068. ]
  53069. ))
  53070. characterMakers.push(() => makeCharacter(
  53071. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53072. {
  53073. front: {
  53074. height: math.unit(5 + 4/12, "feet"),
  53075. weight: math.unit(156, "lb"),
  53076. name: "Front",
  53077. image: {
  53078. source: "./media/characters/dein/front.svg",
  53079. extra: 855/815,
  53080. bottom: 48/903
  53081. }
  53082. },
  53083. side: {
  53084. height: math.unit(5 + 4/12, "feet"),
  53085. weight: math.unit(156, "lb"),
  53086. name: "side",
  53087. image: {
  53088. source: "./media/characters/dein/side.svg",
  53089. extra: 846/803,
  53090. bottom: 25/871
  53091. }
  53092. },
  53093. maw: {
  53094. height: math.unit(1.45, "feet"),
  53095. name: "Maw",
  53096. image: {
  53097. source: "./media/characters/dein/maw.svg"
  53098. }
  53099. },
  53100. },
  53101. [
  53102. {
  53103. name: "Ferret Sized",
  53104. height: math.unit(2 + 5/12, "feet")
  53105. },
  53106. {
  53107. name: "Normal",
  53108. height: math.unit(5 + 4/12, "feet"),
  53109. default: true
  53110. },
  53111. ]
  53112. ))
  53113. characterMakers.push(() => makeCharacter(
  53114. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53115. {
  53116. front: {
  53117. height: math.unit(84 + 8/12, "feet"),
  53118. weight: math.unit(942180, "lb"),
  53119. name: "Front",
  53120. image: {
  53121. source: "./media/characters/daurine-arima/front.svg",
  53122. extra: 1989/1782,
  53123. bottom: 37/2026
  53124. }
  53125. },
  53126. side: {
  53127. height: math.unit(84 + 8/12, "feet"),
  53128. weight: math.unit(942180, "lb"),
  53129. name: "Side",
  53130. image: {
  53131. source: "./media/characters/daurine-arima/side.svg",
  53132. extra: 1997/1790,
  53133. bottom: 21/2018
  53134. }
  53135. },
  53136. back: {
  53137. height: math.unit(84 + 8/12, "feet"),
  53138. weight: math.unit(942180, "lb"),
  53139. name: "Back",
  53140. image: {
  53141. source: "./media/characters/daurine-arima/back.svg",
  53142. extra: 1992/1800,
  53143. bottom: 12/2004
  53144. }
  53145. },
  53146. head: {
  53147. height: math.unit(15.5, "feet"),
  53148. name: "Head",
  53149. image: {
  53150. source: "./media/characters/daurine-arima/head.svg"
  53151. }
  53152. },
  53153. headAlt: {
  53154. height: math.unit(19.19, "feet"),
  53155. name: "Head (Alt)",
  53156. image: {
  53157. source: "./media/characters/daurine-arima/head-alt.svg"
  53158. }
  53159. },
  53160. },
  53161. [
  53162. {
  53163. name: "Minimum height",
  53164. height: math.unit(8 + 10/12, "feet")
  53165. },
  53166. {
  53167. name: "Comfort height",
  53168. height: math.unit(19 + 6 /12, "feet")
  53169. },
  53170. {
  53171. name: "\"Normal\" height",
  53172. height: math.unit(28 + 10/12, "feet")
  53173. },
  53174. {
  53175. name: "Base height",
  53176. height: math.unit(84 + 8/12, "feet"),
  53177. default: true
  53178. },
  53179. {
  53180. name: "Mini-macro",
  53181. height: math.unit(2360, "feet")
  53182. },
  53183. {
  53184. name: "Macro",
  53185. height: math.unit(10, "miles")
  53186. },
  53187. {
  53188. name: "Goddess",
  53189. height: math.unit(9.99e40, "yottameters")
  53190. },
  53191. ]
  53192. ))
  53193. characterMakers.push(() => makeCharacter(
  53194. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53195. {
  53196. front: {
  53197. height: math.unit(2.3, "meters"),
  53198. name: "Front",
  53199. image: {
  53200. source: "./media/characters/cilenomon/front.svg",
  53201. extra: 1963/1778,
  53202. bottom: 54/2017
  53203. }
  53204. },
  53205. },
  53206. [
  53207. {
  53208. name: "Normal",
  53209. height: math.unit(2.3, "meters"),
  53210. default: true
  53211. },
  53212. {
  53213. name: "Big",
  53214. height: math.unit(5, "meters")
  53215. },
  53216. {
  53217. name: "Macro",
  53218. height: math.unit(30, "meters")
  53219. },
  53220. {
  53221. name: "True",
  53222. height: math.unit(1, "universe")
  53223. },
  53224. ]
  53225. ))
  53226. characterMakers.push(() => makeCharacter(
  53227. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53228. {
  53229. front: {
  53230. height: math.unit(5, "feet"),
  53231. name: "Front",
  53232. image: {
  53233. source: "./media/characters/sen-mink/front.svg",
  53234. extra: 1727/1675,
  53235. bottom: 35/1762
  53236. }
  53237. },
  53238. },
  53239. [
  53240. {
  53241. name: "Normal",
  53242. height: math.unit(5, "feet"),
  53243. default: true
  53244. },
  53245. ]
  53246. ))
  53247. characterMakers.push(() => makeCharacter(
  53248. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53249. {
  53250. front: {
  53251. height: math.unit(5.42999, "feet"),
  53252. weight: math.unit(100, "lb"),
  53253. name: "Front",
  53254. image: {
  53255. source: "./media/characters/ophois/front.svg",
  53256. extra: 1429/1286,
  53257. bottom: 60/1489
  53258. }
  53259. },
  53260. },
  53261. [
  53262. {
  53263. name: "Normal",
  53264. height: math.unit(5.42999, "feet"),
  53265. default: true
  53266. },
  53267. ]
  53268. ))
  53269. characterMakers.push(() => makeCharacter(
  53270. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53271. {
  53272. front: {
  53273. height: math.unit(2, "meters"),
  53274. name: "Front",
  53275. image: {
  53276. source: "./media/characters/riley/front.svg",
  53277. extra: 1779/1754,
  53278. bottom: 139/1918
  53279. }
  53280. },
  53281. },
  53282. [
  53283. {
  53284. name: "Normal",
  53285. height: math.unit(2, "meters"),
  53286. default: true
  53287. },
  53288. ]
  53289. ))
  53290. characterMakers.push(() => makeCharacter(
  53291. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53292. {
  53293. front: {
  53294. height: math.unit(6 + 2/12, "feet"),
  53295. weight: math.unit(195, "lb"),
  53296. preyCapacity: math.unit(6, "people"),
  53297. name: "Front",
  53298. image: {
  53299. source: "./media/characters/shuken-flash/front.svg",
  53300. extra: 1905/1739,
  53301. bottom: 65/1970
  53302. }
  53303. },
  53304. back: {
  53305. height: math.unit(6 + 2/12, "feet"),
  53306. weight: math.unit(195, "lb"),
  53307. preyCapacity: math.unit(6, "people"),
  53308. name: "Back",
  53309. image: {
  53310. source: "./media/characters/shuken-flash/back.svg",
  53311. extra: 1912/1751,
  53312. bottom: 13/1925
  53313. }
  53314. },
  53315. },
  53316. [
  53317. {
  53318. name: "Normal",
  53319. height: math.unit(6 + 2/12, "feet"),
  53320. default: true
  53321. },
  53322. ]
  53323. ))
  53324. characterMakers.push(() => makeCharacter(
  53325. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53326. {
  53327. front: {
  53328. height: math.unit(5 + 9/12, "feet"),
  53329. weight: math.unit(150, "lb"),
  53330. name: "Front",
  53331. image: {
  53332. source: "./media/characters/plat/front.svg",
  53333. extra: 1816/1703,
  53334. bottom: 43/1859
  53335. }
  53336. },
  53337. side: {
  53338. height: math.unit(5 + 9/12, "feet"),
  53339. weight: math.unit(300, "lb"),
  53340. name: "Side",
  53341. image: {
  53342. source: "./media/characters/plat/side.svg",
  53343. extra: 1824/1699,
  53344. bottom: 18/1842
  53345. }
  53346. },
  53347. },
  53348. [
  53349. {
  53350. name: "Normal",
  53351. height: math.unit(5 + 9/12, "feet"),
  53352. default: true
  53353. },
  53354. ]
  53355. ))
  53356. characterMakers.push(() => makeCharacter(
  53357. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53358. {
  53359. front: {
  53360. height: math.unit(9, "feet"),
  53361. weight: math.unit(1800, "lb"),
  53362. name: "Front",
  53363. image: {
  53364. source: "./media/characters/elaine/front.svg",
  53365. extra: 1833/1354,
  53366. bottom: 25/1858
  53367. }
  53368. },
  53369. back: {
  53370. height: math.unit(8.8, "feet"),
  53371. weight: math.unit(1800, "lb"),
  53372. name: "Back",
  53373. image: {
  53374. source: "./media/characters/elaine/back.svg",
  53375. extra: 1641/1233,
  53376. bottom: 53/1694
  53377. }
  53378. },
  53379. },
  53380. [
  53381. {
  53382. name: "Normal",
  53383. height: math.unit(9, "feet"),
  53384. default: true
  53385. },
  53386. ]
  53387. ))
  53388. characterMakers.push(() => makeCharacter(
  53389. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53390. {
  53391. front: {
  53392. height: math.unit(17 + 9/12, "feet"),
  53393. weight: math.unit(8000, "lb"),
  53394. name: "Front",
  53395. image: {
  53396. source: "./media/characters/vera-raven/front.svg",
  53397. extra: 1457/1412,
  53398. bottom: 121/1578
  53399. }
  53400. },
  53401. side: {
  53402. height: math.unit(17 + 9/12, "feet"),
  53403. weight: math.unit(8000, "lb"),
  53404. name: "Side",
  53405. image: {
  53406. source: "./media/characters/vera-raven/side.svg",
  53407. extra: 1510/1464,
  53408. bottom: 54/1564
  53409. }
  53410. },
  53411. },
  53412. [
  53413. {
  53414. name: "Normal",
  53415. height: math.unit(17 + 9/12, "feet"),
  53416. default: true
  53417. },
  53418. ]
  53419. ))
  53420. characterMakers.push(() => makeCharacter(
  53421. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53422. {
  53423. dressed: {
  53424. height: math.unit(6 + 9/12, "feet"),
  53425. name: "Dressed",
  53426. image: {
  53427. source: "./media/characters/nakisha/dressed.svg",
  53428. extra: 1909/1757,
  53429. bottom: 48/1957
  53430. }
  53431. },
  53432. nude: {
  53433. height: math.unit(6 + 9/12, "feet"),
  53434. name: "Nude",
  53435. image: {
  53436. source: "./media/characters/nakisha/nude.svg",
  53437. extra: 1917/1765,
  53438. bottom: 34/1951
  53439. }
  53440. },
  53441. },
  53442. [
  53443. {
  53444. name: "Normal",
  53445. height: math.unit(6 + 9/12, "feet"),
  53446. default: true
  53447. },
  53448. ]
  53449. ))
  53450. characterMakers.push(() => makeCharacter(
  53451. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53452. {
  53453. front: {
  53454. height: math.unit(87, "meters"),
  53455. name: "Front",
  53456. image: {
  53457. source: "./media/characters/serafin/front.svg",
  53458. extra: 1919/1776,
  53459. bottom: 65/1984
  53460. }
  53461. },
  53462. },
  53463. [
  53464. {
  53465. name: "Normal",
  53466. height: math.unit(87, "meters"),
  53467. default: true
  53468. },
  53469. ]
  53470. ))
  53471. characterMakers.push(() => makeCharacter(
  53472. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53473. {
  53474. front: {
  53475. height: math.unit(6, "feet"),
  53476. weight: math.unit(200, "lb"),
  53477. name: "Front",
  53478. image: {
  53479. source: "./media/characters/poptart/front.svg",
  53480. extra: 615/583,
  53481. bottom: 23/638
  53482. }
  53483. },
  53484. back: {
  53485. height: math.unit(6, "feet"),
  53486. weight: math.unit(200, "lb"),
  53487. name: "Back",
  53488. image: {
  53489. source: "./media/characters/poptart/back.svg",
  53490. extra: 617/584,
  53491. bottom: 22/639
  53492. }
  53493. },
  53494. frontNsfw: {
  53495. height: math.unit(6, "feet"),
  53496. weight: math.unit(200, "lb"),
  53497. name: "Front (NSFW)",
  53498. image: {
  53499. source: "./media/characters/poptart/front-nsfw.svg",
  53500. extra: 615/583,
  53501. bottom: 23/638
  53502. }
  53503. },
  53504. backNsfw: {
  53505. height: math.unit(6, "feet"),
  53506. weight: math.unit(200, "lb"),
  53507. name: "Back (NSFW)",
  53508. image: {
  53509. source: "./media/characters/poptart/back-nsfw.svg",
  53510. extra: 617/584,
  53511. bottom: 22/639
  53512. }
  53513. },
  53514. hand: {
  53515. height: math.unit(1.14, "feet"),
  53516. name: "Hand",
  53517. image: {
  53518. source: "./media/characters/poptart/hand.svg"
  53519. }
  53520. },
  53521. foot: {
  53522. height: math.unit(1.5, "feet"),
  53523. name: "Foot",
  53524. image: {
  53525. source: "./media/characters/poptart/foot.svg"
  53526. }
  53527. },
  53528. },
  53529. [
  53530. {
  53531. name: "Normal",
  53532. height: math.unit(6, "feet"),
  53533. default: true
  53534. },
  53535. {
  53536. name: "Grande",
  53537. height: math.unit(350, "feet")
  53538. },
  53539. {
  53540. name: "Massif",
  53541. height: math.unit(967, "feet")
  53542. },
  53543. ]
  53544. ))
  53545. characterMakers.push(() => makeCharacter(
  53546. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53547. {
  53548. hyenaSide: {
  53549. height: math.unit(120, "cm"),
  53550. weight: math.unit(120, "lb"),
  53551. name: "Side",
  53552. image: {
  53553. source: "./media/characters/trance/hyena-side.svg",
  53554. extra: 998/904,
  53555. bottom: 76/1074
  53556. }
  53557. },
  53558. },
  53559. [
  53560. {
  53561. name: "Normal",
  53562. height: math.unit(120, "cm"),
  53563. default: true
  53564. },
  53565. {
  53566. name: "Dire",
  53567. height: math.unit(230, "cm")
  53568. },
  53569. {
  53570. name: "Macro",
  53571. height: math.unit(37, "feet")
  53572. },
  53573. ]
  53574. ))
  53575. characterMakers.push(() => makeCharacter(
  53576. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53577. {
  53578. front: {
  53579. height: math.unit(6 + 3/12, "feet"),
  53580. name: "Front",
  53581. image: {
  53582. source: "./media/characters/michael-berretta/front.svg",
  53583. extra: 515/494,
  53584. bottom: 20/535
  53585. }
  53586. },
  53587. back: {
  53588. height: math.unit(6 + 3/12, "feet"),
  53589. name: "Back",
  53590. image: {
  53591. source: "./media/characters/michael-berretta/back.svg",
  53592. extra: 520/497,
  53593. bottom: 21/541
  53594. }
  53595. },
  53596. frontNsfw: {
  53597. height: math.unit(6 + 3/12, "feet"),
  53598. name: "Front (NSFW)",
  53599. image: {
  53600. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53601. extra: 515/494,
  53602. bottom: 20/535
  53603. }
  53604. },
  53605. dick: {
  53606. height: math.unit(1, "feet"),
  53607. name: "Dick",
  53608. image: {
  53609. source: "./media/characters/michael-berretta/dick.svg"
  53610. }
  53611. },
  53612. },
  53613. [
  53614. {
  53615. name: "Normal",
  53616. height: math.unit(6 + 3/12, "feet"),
  53617. default: true
  53618. },
  53619. {
  53620. name: "Big",
  53621. height: math.unit(12, "feet")
  53622. },
  53623. {
  53624. name: "Macro",
  53625. height: math.unit(187.5, "feet")
  53626. },
  53627. ]
  53628. ))
  53629. characterMakers.push(() => makeCharacter(
  53630. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53631. {
  53632. front: {
  53633. height: math.unit(9 + 9/12, "feet"),
  53634. weight: math.unit(1244, "lb"),
  53635. name: "Front",
  53636. image: {
  53637. source: "./media/characters/stella-edgecomb/front.svg",
  53638. extra: 1835/1706,
  53639. bottom: 49/1884
  53640. }
  53641. },
  53642. pen: {
  53643. height: math.unit(0.95, "feet"),
  53644. name: "Pen",
  53645. image: {
  53646. source: "./media/characters/stella-edgecomb/pen.svg"
  53647. }
  53648. },
  53649. },
  53650. [
  53651. {
  53652. name: "Cozy Bear",
  53653. height: math.unit(0.5, "inches")
  53654. },
  53655. {
  53656. name: "Normal",
  53657. height: math.unit(9 + 9/12, "feet"),
  53658. default: true
  53659. },
  53660. {
  53661. name: "Giga Bear",
  53662. height: math.unit(1, "mile")
  53663. },
  53664. {
  53665. name: "Great Bear",
  53666. height: math.unit(53, "miles")
  53667. },
  53668. {
  53669. name: "Goddess Bear",
  53670. height: math.unit(40000, "miles")
  53671. },
  53672. {
  53673. name: "Sun Bear",
  53674. height: math.unit(900000, "miles")
  53675. },
  53676. ]
  53677. ))
  53678. characterMakers.push(() => makeCharacter(
  53679. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53680. {
  53681. anthroFront: {
  53682. height: math.unit(556, "cm"),
  53683. weight: math.unit(2650, "kg"),
  53684. preyCapacity: math.unit(3, "people"),
  53685. name: "Front",
  53686. image: {
  53687. source: "./media/characters/ash´iika/front.svg",
  53688. extra: 710/673,
  53689. bottom: 15/725
  53690. },
  53691. form: "anthro",
  53692. default: true
  53693. },
  53694. anthroSide: {
  53695. height: math.unit(556, "cm"),
  53696. weight: math.unit(2650, "kg"),
  53697. preyCapacity: math.unit(3, "people"),
  53698. name: "Side",
  53699. image: {
  53700. source: "./media/characters/ash´iika/side.svg",
  53701. extra: 696/676,
  53702. bottom: 13/709
  53703. },
  53704. form: "anthro"
  53705. },
  53706. anthroDressed: {
  53707. height: math.unit(556, "cm"),
  53708. weight: math.unit(2650, "kg"),
  53709. preyCapacity: math.unit(3, "people"),
  53710. name: "Dressed",
  53711. image: {
  53712. source: "./media/characters/ash´iika/dressed.svg",
  53713. extra: 710/673,
  53714. bottom: 15/725
  53715. },
  53716. form: "anthro"
  53717. },
  53718. anthroHead: {
  53719. height: math.unit(3.5, "feet"),
  53720. name: "Head",
  53721. image: {
  53722. source: "./media/characters/ash´iika/head.svg",
  53723. extra: 348/291,
  53724. bottom: 45/393
  53725. },
  53726. form: "anthro"
  53727. },
  53728. feralSide: {
  53729. height: math.unit(870, "cm"),
  53730. weight: math.unit(17500, "kg"),
  53731. preyCapacity: math.unit(15, "people"),
  53732. name: "Side",
  53733. image: {
  53734. source: "./media/characters/ash´iika/feral.svg",
  53735. extra: 595/199,
  53736. bottom: 7/602
  53737. },
  53738. form: "feral",
  53739. default: true,
  53740. },
  53741. },
  53742. [
  53743. {
  53744. name: "Normal",
  53745. height: math.unit(556, "cm"),
  53746. default: true,
  53747. form: "anthro"
  53748. },
  53749. {
  53750. name: "Macro",
  53751. height: math.unit(88, "meters"),
  53752. form: "anthro"
  53753. },
  53754. {
  53755. name: "Normal",
  53756. height: math.unit(870, "cm"),
  53757. default: true,
  53758. form: "feral"
  53759. },
  53760. {
  53761. name: "Large",
  53762. height: math.unit(25, "meters"),
  53763. form: "feral"
  53764. },
  53765. ],
  53766. {
  53767. "anthro": {
  53768. name: "Anthro",
  53769. default: true
  53770. },
  53771. "feral": {
  53772. name: "Feral",
  53773. },
  53774. }
  53775. ))
  53776. characterMakers.push(() => makeCharacter(
  53777. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53778. {
  53779. front: {
  53780. height: math.unit(10, "feet"),
  53781. weight: math.unit(800, "lb"),
  53782. name: "Front",
  53783. image: {
  53784. source: "./media/characters/yen/front.svg",
  53785. extra: 443/411,
  53786. bottom: 6/449
  53787. }
  53788. },
  53789. sleeping: {
  53790. height: math.unit(10, "feet"),
  53791. weight: math.unit(800, "lb"),
  53792. name: "Sleeping",
  53793. image: {
  53794. source: "./media/characters/yen/sleeping.svg",
  53795. extra: 470/422,
  53796. bottom: 0/470
  53797. }
  53798. },
  53799. head: {
  53800. height: math.unit(2.2, "feet"),
  53801. name: "Head",
  53802. image: {
  53803. source: "./media/characters/yen/head.svg"
  53804. }
  53805. },
  53806. headAlt: {
  53807. height: math.unit(2.1, "feet"),
  53808. name: "Head (Alt)",
  53809. image: {
  53810. source: "./media/characters/yen/head-alt.svg"
  53811. }
  53812. },
  53813. },
  53814. [
  53815. {
  53816. name: "Normal",
  53817. height: math.unit(10, "feet"),
  53818. default: true
  53819. },
  53820. ]
  53821. ))
  53822. characterMakers.push(() => makeCharacter(
  53823. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53824. {
  53825. front: {
  53826. height: math.unit(12, "feet"),
  53827. name: "Front",
  53828. image: {
  53829. source: "./media/characters/citra/front.svg",
  53830. extra: 1950/1710,
  53831. bottom: 47/1997
  53832. }
  53833. },
  53834. },
  53835. [
  53836. {
  53837. name: "Normal",
  53838. height: math.unit(12, "feet"),
  53839. default: true
  53840. },
  53841. ]
  53842. ))
  53843. characterMakers.push(() => makeCharacter(
  53844. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53845. {
  53846. side: {
  53847. height: math.unit(7 + 10/12, "feet"),
  53848. name: "Side",
  53849. image: {
  53850. source: "./media/characters/sholstim/side.svg",
  53851. extra: 786/682,
  53852. bottom: 40/826
  53853. }
  53854. },
  53855. },
  53856. [
  53857. {
  53858. name: "Normal",
  53859. height: math.unit(7 + 10/12, "feet"),
  53860. default: true
  53861. },
  53862. ]
  53863. ))
  53864. characterMakers.push(() => makeCharacter(
  53865. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53866. {
  53867. front: {
  53868. height: math.unit(3.10, "meters"),
  53869. name: "Front",
  53870. image: {
  53871. source: "./media/characters/aggyn/front.svg",
  53872. extra: 1188/963,
  53873. bottom: 24/1212
  53874. }
  53875. },
  53876. },
  53877. [
  53878. {
  53879. name: "Normal",
  53880. height: math.unit(3.10, "meters"),
  53881. default: true
  53882. },
  53883. ]
  53884. ))
  53885. characterMakers.push(() => makeCharacter(
  53886. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53887. {
  53888. front: {
  53889. height: math.unit(7 + 5/12, "feet"),
  53890. weight: math.unit(687, "lb"),
  53891. name: "Front",
  53892. image: {
  53893. source: "./media/characters/alsandair-hergenroether/front.svg",
  53894. extra: 1251/1186,
  53895. bottom: 75/1326
  53896. }
  53897. },
  53898. back: {
  53899. height: math.unit(7 + 5/12, "feet"),
  53900. weight: math.unit(687, "lb"),
  53901. name: "Back",
  53902. image: {
  53903. source: "./media/characters/alsandair-hergenroether/back.svg",
  53904. extra: 1290/1229,
  53905. bottom: 17/1307
  53906. }
  53907. },
  53908. },
  53909. [
  53910. {
  53911. name: "Max Compression",
  53912. height: math.unit(7 + 5/12, "feet"),
  53913. default: true
  53914. },
  53915. {
  53916. name: "\"Normal\"",
  53917. height: math.unit(2, "universes")
  53918. },
  53919. ]
  53920. ))
  53921. characterMakers.push(() => makeCharacter(
  53922. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53923. {
  53924. front: {
  53925. height: math.unit(4 + 1/12, "feet"),
  53926. weight: math.unit(92, "lb"),
  53927. name: "Front",
  53928. image: {
  53929. source: "./media/characters/ie/front.svg",
  53930. extra: 1585/1352,
  53931. bottom: 91/1676
  53932. }
  53933. },
  53934. },
  53935. [
  53936. {
  53937. name: "Normal",
  53938. height: math.unit(4 + 1/12, "feet"),
  53939. default: true
  53940. },
  53941. ]
  53942. ))
  53943. characterMakers.push(() => makeCharacter(
  53944. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53945. {
  53946. anthro: {
  53947. height: math.unit(6, "feet"),
  53948. weight: math.unit(150, "lb"),
  53949. name: "Front",
  53950. image: {
  53951. source: "./media/characters/willow/anthro.svg",
  53952. extra: 1073/986,
  53953. bottom: 34/1107
  53954. },
  53955. form: "anthro",
  53956. default: true
  53957. },
  53958. taur: {
  53959. height: math.unit(6, "feet"),
  53960. weight: math.unit(150, "lb"),
  53961. name: "Side",
  53962. image: {
  53963. source: "./media/characters/willow/taur.svg",
  53964. extra: 647/512,
  53965. bottom: 136/783
  53966. },
  53967. form: "taur",
  53968. default: true
  53969. },
  53970. },
  53971. [
  53972. {
  53973. name: "Humanoid",
  53974. height: math.unit(2.7, "meters"),
  53975. form: "anthro"
  53976. },
  53977. {
  53978. name: "Normal",
  53979. height: math.unit(9, "meters"),
  53980. form: "anthro",
  53981. default: true
  53982. },
  53983. {
  53984. name: "Humanoid",
  53985. height: math.unit(2.1, "meters"),
  53986. form: "taur"
  53987. },
  53988. {
  53989. name: "Normal",
  53990. height: math.unit(7, "meters"),
  53991. form: "taur",
  53992. default: true
  53993. },
  53994. ],
  53995. {
  53996. "anthro": {
  53997. name: "Anthro",
  53998. default: true
  53999. },
  54000. "taur": {
  54001. name: "Taur",
  54002. },
  54003. }
  54004. ))
  54005. characterMakers.push(() => makeCharacter(
  54006. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54007. {
  54008. front: {
  54009. height: math.unit(2 + 5/12, "feet"),
  54010. name: "Front",
  54011. image: {
  54012. source: "./media/characters/kyan/front.svg",
  54013. extra: 460/334,
  54014. bottom: 23/483
  54015. },
  54016. extraAttributes: {
  54017. "toeLength": {
  54018. name: "Toe Length",
  54019. power: 1,
  54020. type: "length",
  54021. base: math.unit(7, "cm")
  54022. },
  54023. "toeclawLength": {
  54024. name: "Toeclaw Length",
  54025. power: 1,
  54026. type: "length",
  54027. base: math.unit(4.7, "cm")
  54028. },
  54029. "earHeight": {
  54030. name: "Ear Height",
  54031. power: 1,
  54032. type: "length",
  54033. base: math.unit(14.1, "cm")
  54034. },
  54035. }
  54036. },
  54037. paws: {
  54038. height: math.unit(0.45, "feet"),
  54039. name: "Paws",
  54040. image: {
  54041. source: "./media/characters/kyan/paws.svg",
  54042. extra: 581/581,
  54043. bottom: 114/695
  54044. }
  54045. },
  54046. },
  54047. [
  54048. {
  54049. name: "Normal",
  54050. height: math.unit(2 + 5/12, "feet"),
  54051. default: true
  54052. },
  54053. ]
  54054. ))
  54055. characterMakers.push(() => makeCharacter(
  54056. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54057. {
  54058. front: {
  54059. height: math.unit(2 + 2/3, "feet"),
  54060. name: "Front",
  54061. image: {
  54062. source: "./media/characters/xazzon/front.svg",
  54063. extra: 1109/984,
  54064. bottom: 42/1151
  54065. }
  54066. },
  54067. back: {
  54068. height: math.unit(2 + 2/3, "feet"),
  54069. name: "Back",
  54070. image: {
  54071. source: "./media/characters/xazzon/back.svg",
  54072. extra: 1095/971,
  54073. bottom: 23/1118
  54074. }
  54075. },
  54076. },
  54077. [
  54078. {
  54079. name: "Normal",
  54080. height: math.unit(2 + 2/3, "feet"),
  54081. default: true
  54082. },
  54083. ]
  54084. ))
  54085. characterMakers.push(() => makeCharacter(
  54086. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54087. {
  54088. dressed: {
  54089. height: math.unit(5 + 7/12, "feet"),
  54090. weight: math.unit(173, "lb"),
  54091. name: "Dressed",
  54092. image: {
  54093. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54094. extra: 3262/2862,
  54095. bottom: 188/3450
  54096. }
  54097. },
  54098. undressed: {
  54099. height: math.unit(5 + 7/12, "feet"),
  54100. weight: math.unit(173, "lb"),
  54101. name: "Undressed",
  54102. image: {
  54103. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54104. extra: 3262/2862,
  54105. bottom: 188/3450
  54106. }
  54107. },
  54108. },
  54109. [
  54110. {
  54111. name: "The void",
  54112. height: math.unit(7.29193e-34, "angstroms")
  54113. },
  54114. {
  54115. name: "Uh-Oh.",
  54116. height: math.unit(5.734e-7, "angstroms")
  54117. },
  54118. {
  54119. name: "Pico",
  54120. height: math.unit(0.876, "angstroms")
  54121. },
  54122. {
  54123. name: "Nano",
  54124. height: math.unit(0.000134200, "mm")
  54125. },
  54126. {
  54127. name: "Micro",
  54128. height: math.unit(0.0673020, "mm")
  54129. },
  54130. {
  54131. name: "Tiny",
  54132. height: math.unit(2.4, "mm")
  54133. },
  54134. {
  54135. name: "Actual Normal",
  54136. height: math.unit(3, "inches"),
  54137. default: true
  54138. },
  54139. {
  54140. name: "Normal",
  54141. height: math.unit(5 + 8/12, "feet")
  54142. },
  54143. {
  54144. name: "Giant",
  54145. height: math.unit(12, "feet")
  54146. },
  54147. {
  54148. name: "City Ruler",
  54149. height: math.unit(270, "meters")
  54150. },
  54151. {
  54152. name: "Giga",
  54153. height: math.unit(1117.6, "km")
  54154. },
  54155. {
  54156. name: "All-Powerful Queen",
  54157. height: math.unit(70.8, "gigameters")
  54158. },
  54159. {
  54160. name: "'Goddess'",
  54161. height: math.unit(600, "yottameters")
  54162. },
  54163. {
  54164. name: "Biggest!",
  54165. height: math.unit(4.23e5, "yottameters")
  54166. },
  54167. ]
  54168. ))
  54169. characterMakers.push(() => makeCharacter(
  54170. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54171. {
  54172. front: {
  54173. height: math.unit(8, "feet"),
  54174. weight: math.unit(300, "lb"),
  54175. name: "Front",
  54176. image: {
  54177. source: "./media/characters/khyla-shadowsong/front.svg",
  54178. extra: 861/798,
  54179. bottom: 32/893
  54180. }
  54181. },
  54182. side: {
  54183. height: math.unit(8, "feet"),
  54184. weight: math.unit(300, "lb"),
  54185. name: "Side",
  54186. image: {
  54187. source: "./media/characters/khyla-shadowsong/side.svg",
  54188. extra: 790/750,
  54189. bottom: 87/877
  54190. }
  54191. },
  54192. back: {
  54193. height: math.unit(8, "feet"),
  54194. weight: math.unit(300, "lb"),
  54195. name: "Back",
  54196. image: {
  54197. source: "./media/characters/khyla-shadowsong/back.svg",
  54198. extra: 855/808,
  54199. bottom: 14/869
  54200. }
  54201. },
  54202. head: {
  54203. height: math.unit(2.7, "feet"),
  54204. name: "Head",
  54205. image: {
  54206. source: "./media/characters/khyla-shadowsong/head.svg"
  54207. }
  54208. },
  54209. },
  54210. [
  54211. {
  54212. name: "Micro",
  54213. height: math.unit(6, "inches")
  54214. },
  54215. {
  54216. name: "Normal",
  54217. height: math.unit(8, "feet"),
  54218. default: true
  54219. },
  54220. ]
  54221. ))
  54222. characterMakers.push(() => makeCharacter(
  54223. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54224. {
  54225. hyperFront: {
  54226. height: math.unit(9 + 4/12, "feet"),
  54227. weight: math.unit(2000, "lb"),
  54228. name: "Front",
  54229. image: {
  54230. source: "./media/characters/tiden/hyper-front.svg",
  54231. extra: 400/382,
  54232. bottom: 6/406
  54233. },
  54234. form: "hyper",
  54235. },
  54236. regularFront: {
  54237. height: math.unit(7 + 10/12, "feet"),
  54238. weight: math.unit(470, "lb"),
  54239. name: "Front",
  54240. image: {
  54241. source: "./media/characters/tiden/regular-front.svg",
  54242. extra: 468/442,
  54243. bottom: 6/474
  54244. },
  54245. form: "regular",
  54246. },
  54247. },
  54248. [
  54249. {
  54250. name: "Normal",
  54251. height: math.unit(9 + 4/12, "feet"),
  54252. default: true,
  54253. form: "hyper"
  54254. },
  54255. {
  54256. name: "Normal",
  54257. height: math.unit(7 + 10/12, "feet"),
  54258. default: true,
  54259. form: "regular"
  54260. },
  54261. ],
  54262. {
  54263. "hyper": {
  54264. name: "Hyper",
  54265. default: true
  54266. },
  54267. "regular": {
  54268. name: "Regular",
  54269. },
  54270. }
  54271. ))
  54272. characterMakers.push(() => makeCharacter(
  54273. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54274. {
  54275. side: {
  54276. height: math.unit(6, "feet"),
  54277. weight: math.unit(150, "lb"),
  54278. name: "Side",
  54279. image: {
  54280. source: "./media/characters/jason-crowe/side.svg",
  54281. extra: 1771/766,
  54282. bottom: 219/1990
  54283. }
  54284. },
  54285. },
  54286. [
  54287. {
  54288. name: "Pocket Gryphon",
  54289. height: math.unit(6, "cm")
  54290. },
  54291. {
  54292. name: "Raven",
  54293. height: math.unit(60, "cm")
  54294. },
  54295. {
  54296. name: "Normal",
  54297. height: math.unit(1, "meter"),
  54298. default: true
  54299. },
  54300. ]
  54301. ))
  54302. characterMakers.push(() => makeCharacter(
  54303. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54304. {
  54305. front: {
  54306. height: math.unit(9 + 6/12, "feet"),
  54307. weight: math.unit(1100, "lb"),
  54308. name: "Front",
  54309. image: {
  54310. source: "./media/characters/django/front.svg",
  54311. extra: 1231/1136,
  54312. bottom: 34/1265
  54313. }
  54314. },
  54315. side: {
  54316. height: math.unit(9 + 6/12, "feet"),
  54317. weight: math.unit(1100, "lb"),
  54318. name: "Side",
  54319. image: {
  54320. source: "./media/characters/django/side.svg",
  54321. extra: 1267/1174,
  54322. bottom: 9/1276
  54323. }
  54324. },
  54325. },
  54326. [
  54327. {
  54328. name: "Normal",
  54329. height: math.unit(9 + 6/12, "feet"),
  54330. default: true
  54331. },
  54332. {
  54333. name: "Macro 1",
  54334. height: math.unit(50, "feet")
  54335. },
  54336. {
  54337. name: "Macro 2",
  54338. height: math.unit(500, "feet")
  54339. },
  54340. {
  54341. name: "Mega Macro",
  54342. height: math.unit(5300, "feet")
  54343. },
  54344. ]
  54345. ))
  54346. characterMakers.push(() => makeCharacter(
  54347. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54348. {
  54349. frontSfw: {
  54350. height: math.unit(120, "cm"),
  54351. weight: math.unit(15, "kg"),
  54352. name: "Front (SFW)",
  54353. image: {
  54354. source: "./media/characters/eri/front-sfw.svg",
  54355. extra: 1014/939,
  54356. bottom: 37/1051
  54357. },
  54358. form: "moth",
  54359. },
  54360. frontNsfw: {
  54361. height: math.unit(120, "cm"),
  54362. weight: math.unit(15, "kg"),
  54363. name: "Front (NSFW)",
  54364. image: {
  54365. source: "./media/characters/eri/front-nsfw.svg",
  54366. extra: 1014/939,
  54367. bottom: 37/1051
  54368. },
  54369. form: "moth",
  54370. default: true
  54371. },
  54372. egg: {
  54373. height: math.unit(10, "cm"),
  54374. name: "Egg",
  54375. image: {
  54376. source: "./media/characters/eri/egg.svg"
  54377. },
  54378. form: "egg",
  54379. default: true
  54380. },
  54381. },
  54382. [
  54383. {
  54384. name: "Normal",
  54385. height: math.unit(120, "cm"),
  54386. default: true,
  54387. form: "moth"
  54388. },
  54389. {
  54390. name: "Normal",
  54391. height: math.unit(10, "cm"),
  54392. default: true,
  54393. form: "egg"
  54394. },
  54395. ],
  54396. {
  54397. "moth": {
  54398. name: "Moth",
  54399. default: true
  54400. },
  54401. "egg": {
  54402. name: "Egg",
  54403. },
  54404. }
  54405. ))
  54406. characterMakers.push(() => makeCharacter(
  54407. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54408. {
  54409. front: {
  54410. height: math.unit(200, "feet"),
  54411. name: "Front",
  54412. image: {
  54413. source: "./media/characters/bishop-dowser/front.svg",
  54414. extra: 933/868,
  54415. bottom: 106/1039
  54416. }
  54417. },
  54418. },
  54419. [
  54420. {
  54421. name: "Giant",
  54422. height: math.unit(200, "feet"),
  54423. default: true
  54424. },
  54425. ]
  54426. ))
  54427. characterMakers.push(() => makeCharacter(
  54428. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54429. {
  54430. front: {
  54431. height: math.unit(2, "meters"),
  54432. preyCapacity: math.unit(3, "people"),
  54433. name: "Front",
  54434. image: {
  54435. source: "./media/characters/fryra/front.svg",
  54436. extra: 1025/948,
  54437. bottom: 30/1055
  54438. },
  54439. extraAttributes: {
  54440. "breastVolume": {
  54441. name: "Breast Volume",
  54442. power: 3,
  54443. type: "volume",
  54444. base: math.unit(8, "liters")
  54445. },
  54446. }
  54447. },
  54448. back: {
  54449. height: math.unit(2, "meters"),
  54450. preyCapacity: math.unit(3, "people"),
  54451. name: "Back",
  54452. image: {
  54453. source: "./media/characters/fryra/back.svg",
  54454. extra: 993/938,
  54455. bottom: 38/1031
  54456. },
  54457. extraAttributes: {
  54458. "breastVolume": {
  54459. name: "Breast Volume",
  54460. power: 3,
  54461. type: "volume",
  54462. base: math.unit(8, "liters")
  54463. },
  54464. }
  54465. },
  54466. head: {
  54467. height: math.unit(1.33, "feet"),
  54468. name: "Head",
  54469. image: {
  54470. source: "./media/characters/fryra/head.svg"
  54471. }
  54472. },
  54473. maw: {
  54474. height: math.unit(0.56, "feet"),
  54475. name: "Maw",
  54476. image: {
  54477. source: "./media/characters/fryra/maw.svg"
  54478. }
  54479. },
  54480. },
  54481. [
  54482. {
  54483. name: "Micro",
  54484. height: math.unit(5, "cm")
  54485. },
  54486. {
  54487. name: "Normal",
  54488. height: math.unit(2, "meters"),
  54489. default: true
  54490. },
  54491. {
  54492. name: "Small Macro",
  54493. height: math.unit(8, "meters")
  54494. },
  54495. {
  54496. name: "Macro",
  54497. height: math.unit(50, "meters")
  54498. },
  54499. {
  54500. name: "Megamacro",
  54501. height: math.unit(1, "km")
  54502. },
  54503. {
  54504. name: "Planetary",
  54505. height: math.unit(300000, "km")
  54506. },
  54507. {
  54508. name: "Universal",
  54509. height: math.unit(250, "lightyears")
  54510. },
  54511. {
  54512. name: "Fabric of Reality",
  54513. height: math.unit(1000, "multiverses")
  54514. },
  54515. ]
  54516. ))
  54517. characterMakers.push(() => makeCharacter(
  54518. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54519. {
  54520. frontDressed: {
  54521. height: math.unit(6 + 2/12, "feet"),
  54522. name: "Front (Dressed)",
  54523. image: {
  54524. source: "./media/characters/fiera/front-dressed.svg",
  54525. extra: 1883/1793,
  54526. bottom: 70/1953
  54527. }
  54528. },
  54529. backDressed: {
  54530. height: math.unit(6 + 2/12, "feet"),
  54531. name: "Back (Dressed)",
  54532. image: {
  54533. source: "./media/characters/fiera/back-dressed.svg",
  54534. extra: 1847/1780,
  54535. bottom: 70/1917
  54536. }
  54537. },
  54538. frontNude: {
  54539. height: math.unit(6 + 2/12, "feet"),
  54540. name: "Front (Nude)",
  54541. image: {
  54542. source: "./media/characters/fiera/front-nude.svg",
  54543. extra: 1875/1785,
  54544. bottom: 66/1941
  54545. }
  54546. },
  54547. backNude: {
  54548. height: math.unit(6 + 2/12, "feet"),
  54549. name: "Back (Nude)",
  54550. image: {
  54551. source: "./media/characters/fiera/back-nude.svg",
  54552. extra: 1855/1788,
  54553. bottom: 44/1899
  54554. }
  54555. },
  54556. maw: {
  54557. height: math.unit(1.3, "feet"),
  54558. name: "Maw",
  54559. image: {
  54560. source: "./media/characters/fiera/maw.svg"
  54561. }
  54562. },
  54563. paw: {
  54564. height: math.unit(1, "feet"),
  54565. name: "Paw",
  54566. image: {
  54567. source: "./media/characters/fiera/paw.svg"
  54568. }
  54569. },
  54570. shoe: {
  54571. height: math.unit(1.05, "feet"),
  54572. name: "Shoe",
  54573. image: {
  54574. source: "./media/characters/fiera/shoe.svg"
  54575. }
  54576. },
  54577. },
  54578. [
  54579. {
  54580. name: "Normal",
  54581. height: math.unit(6 + 2/12, "feet"),
  54582. default: true
  54583. },
  54584. {
  54585. name: "Size Difference",
  54586. height: math.unit(13, "feet")
  54587. },
  54588. {
  54589. name: "Macro",
  54590. height: math.unit(60, "feet")
  54591. },
  54592. {
  54593. name: "Mega Macro",
  54594. height: math.unit(200, "feet")
  54595. },
  54596. ]
  54597. ))
  54598. characterMakers.push(() => makeCharacter(
  54599. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54600. {
  54601. back: {
  54602. height: math.unit(6, "feet"),
  54603. name: "Back",
  54604. image: {
  54605. source: "./media/characters/flare/back.svg",
  54606. extra: 1883/1765,
  54607. bottom: 32/1915
  54608. }
  54609. },
  54610. },
  54611. [
  54612. {
  54613. name: "Normal",
  54614. height: math.unit(6 + 2/12, "feet"),
  54615. default: true
  54616. },
  54617. {
  54618. name: "Size Difference",
  54619. height: math.unit(13, "feet")
  54620. },
  54621. {
  54622. name: "Macro",
  54623. height: math.unit(60, "feet")
  54624. },
  54625. {
  54626. name: "Macro 2",
  54627. height: math.unit(100, "feet")
  54628. },
  54629. {
  54630. name: "Mega Macro",
  54631. height: math.unit(200, "feet")
  54632. },
  54633. ]
  54634. ))
  54635. characterMakers.push(() => makeCharacter(
  54636. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54637. {
  54638. front: {
  54639. height: math.unit(2.2, "m"),
  54640. weight: math.unit(300, "kg"),
  54641. name: "Front",
  54642. image: {
  54643. source: "./media/characters/hanna/front.svg",
  54644. extra: 1696/1502,
  54645. bottom: 206/1902
  54646. }
  54647. },
  54648. },
  54649. [
  54650. {
  54651. name: "Humanoid",
  54652. height: math.unit(2.2, "meters")
  54653. },
  54654. {
  54655. name: "Normal",
  54656. height: math.unit(4.8, "meters"),
  54657. default: true
  54658. },
  54659. ]
  54660. ))
  54661. characterMakers.push(() => makeCharacter(
  54662. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54663. {
  54664. front: {
  54665. height: math.unit(2.8, "meters"),
  54666. name: "Front",
  54667. image: {
  54668. source: "./media/characters/argo/front.svg",
  54669. extra: 731/518,
  54670. bottom: 84/815
  54671. }
  54672. },
  54673. },
  54674. [
  54675. {
  54676. name: "Normal",
  54677. height: math.unit(3, "meters"),
  54678. default: true
  54679. },
  54680. ]
  54681. ))
  54682. characterMakers.push(() => makeCharacter(
  54683. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54684. {
  54685. side: {
  54686. height: math.unit(3.8, "meters"),
  54687. name: "Side",
  54688. image: {
  54689. source: "./media/characters/sybil/side.svg",
  54690. extra: 382/361,
  54691. bottom: 25/407
  54692. }
  54693. },
  54694. },
  54695. [
  54696. {
  54697. name: "Normal",
  54698. height: math.unit(3.8, "meters"),
  54699. default: true
  54700. },
  54701. ]
  54702. ))
  54703. characterMakers.push(() => makeCharacter(
  54704. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54705. {
  54706. side: {
  54707. height: math.unit(6, "meters"),
  54708. name: "Side",
  54709. image: {
  54710. source: "./media/characters/plum/side.svg",
  54711. extra: 858/755,
  54712. bottom: 45/903
  54713. },
  54714. form: "taur",
  54715. default: true
  54716. },
  54717. back: {
  54718. height: math.unit(6.3, "meters"),
  54719. name: "Back",
  54720. image: {
  54721. source: "./media/characters/plum/back.svg",
  54722. extra: 887/813,
  54723. bottom: 32/919
  54724. },
  54725. form: "taur",
  54726. },
  54727. feral: {
  54728. height: math.unit(5.5, "meter"),
  54729. name: "Front",
  54730. image: {
  54731. source: "./media/characters/plum/feral.svg",
  54732. extra: 568/403,
  54733. bottom: 51/619
  54734. },
  54735. form: "feral",
  54736. default: true
  54737. },
  54738. head: {
  54739. height: math.unit(1.46, "meter"),
  54740. name: "Head",
  54741. image: {
  54742. source: "./media/characters/plum/head.svg"
  54743. },
  54744. form: "taur"
  54745. },
  54746. tailTop: {
  54747. height: math.unit(5.6, "meter"),
  54748. name: "Tail (Top)",
  54749. image: {
  54750. source: "./media/characters/plum/tail-top.svg"
  54751. },
  54752. form: "taur",
  54753. },
  54754. tailBottom: {
  54755. height: math.unit(5.6, "meter"),
  54756. name: "Tail (Bottom)",
  54757. image: {
  54758. source: "./media/characters/plum/tail-bottom.svg"
  54759. },
  54760. form: "taur",
  54761. },
  54762. feralHead: {
  54763. height: math.unit(2.56549521, "meter"),
  54764. name: "Head",
  54765. image: {
  54766. source: "./media/characters/plum/head.svg"
  54767. },
  54768. form: "feral"
  54769. },
  54770. feralTailTop: {
  54771. height: math.unit(5.44728435, "meter"),
  54772. name: "Tail (Top)",
  54773. image: {
  54774. source: "./media/characters/plum/tail-top.svg"
  54775. },
  54776. form: "feral",
  54777. },
  54778. feralTailBottom: {
  54779. height: math.unit(5.44728435, "meter"),
  54780. name: "Tail (Bottom)",
  54781. image: {
  54782. source: "./media/characters/plum/tail-bottom.svg"
  54783. },
  54784. form: "feral",
  54785. },
  54786. },
  54787. [
  54788. {
  54789. name: "Normal",
  54790. height: math.unit(6, "meters"),
  54791. default: true,
  54792. form: "taur"
  54793. },
  54794. {
  54795. name: "Normal",
  54796. height: math.unit(5.5, "meters"),
  54797. default: true,
  54798. form: "feral"
  54799. },
  54800. ],
  54801. {
  54802. "taur": {
  54803. name: "Taur",
  54804. default: true
  54805. },
  54806. "feral": {
  54807. name: "Feral",
  54808. },
  54809. }
  54810. ))
  54811. characterMakers.push(() => makeCharacter(
  54812. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54813. {
  54814. front: {
  54815. height: math.unit(6, "feet"),
  54816. weight: math.unit(115, "lb"),
  54817. name: "Front",
  54818. image: {
  54819. source: "./media/characters/celeste-kitsune/front.svg",
  54820. extra: 393/366,
  54821. bottom: 7/400
  54822. }
  54823. },
  54824. side: {
  54825. height: math.unit(6, "feet"),
  54826. weight: math.unit(115, "lb"),
  54827. name: "Side",
  54828. image: {
  54829. source: "./media/characters/celeste-kitsune/side.svg",
  54830. extra: 818/765,
  54831. bottom: 40/858
  54832. }
  54833. },
  54834. },
  54835. [
  54836. {
  54837. name: "Megamacro",
  54838. height: math.unit(1500, "miles"),
  54839. default: true
  54840. },
  54841. ]
  54842. ))
  54843. characterMakers.push(() => makeCharacter(
  54844. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54845. {
  54846. front: {
  54847. height: math.unit(8, "meters"),
  54848. name: "Front",
  54849. image: {
  54850. source: "./media/characters/io/front.svg",
  54851. extra: 865/722,
  54852. bottom: 58/923
  54853. }
  54854. },
  54855. back: {
  54856. height: math.unit(8, "meters"),
  54857. name: "Back",
  54858. image: {
  54859. source: "./media/characters/io/back.svg",
  54860. extra: 920/776,
  54861. bottom: 42/962
  54862. }
  54863. },
  54864. head: {
  54865. height: math.unit(5.09, "meters"),
  54866. name: "Head",
  54867. image: {
  54868. source: "./media/characters/io/head.svg"
  54869. }
  54870. },
  54871. hand: {
  54872. height: math.unit(1.6, "meters"),
  54873. name: "Hand",
  54874. image: {
  54875. source: "./media/characters/io/hand.svg"
  54876. }
  54877. },
  54878. foot: {
  54879. height: math.unit(2.4, "meters"),
  54880. name: "Foot",
  54881. image: {
  54882. source: "./media/characters/io/foot.svg"
  54883. }
  54884. },
  54885. },
  54886. [
  54887. {
  54888. name: "Normal",
  54889. height: math.unit(8, "meters"),
  54890. default: true
  54891. },
  54892. ]
  54893. ))
  54894. characterMakers.push(() => makeCharacter(
  54895. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54896. {
  54897. side: {
  54898. height: math.unit(6 + 3/12, "feet"),
  54899. weight: math.unit(225, "lb"),
  54900. name: "Side",
  54901. image: {
  54902. source: "./media/characters/silas/side.svg",
  54903. extra: 703/653,
  54904. bottom: 23/726
  54905. },
  54906. extraAttributes: {
  54907. "pawLength": {
  54908. name: "Paw Length",
  54909. power: 1,
  54910. type: "length",
  54911. base: math.unit(12, "inches")
  54912. },
  54913. "pawWidth": {
  54914. name: "Paw Width",
  54915. power: 1,
  54916. type: "length",
  54917. base: math.unit(4.5, "inches")
  54918. },
  54919. "pawArea": {
  54920. name: "Paw Area",
  54921. power: 2,
  54922. type: "area",
  54923. base: math.unit(12 * 4.5, "inches^2")
  54924. },
  54925. }
  54926. },
  54927. },
  54928. [
  54929. {
  54930. name: "Normal",
  54931. height: math.unit(6 + 3/12, "feet"),
  54932. default: true
  54933. },
  54934. ]
  54935. ))
  54936. characterMakers.push(() => makeCharacter(
  54937. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54938. {
  54939. back: {
  54940. height: math.unit(1.6, "meters"),
  54941. weight: math.unit(150, "lb"),
  54942. name: "Back",
  54943. image: {
  54944. source: "./media/characters/zari/back.svg",
  54945. extra: 424/411,
  54946. bottom: 32/456
  54947. },
  54948. extraAttributes: {
  54949. "bladderCapacity": {
  54950. name: "Bladder Size",
  54951. power: 3,
  54952. type: "volume",
  54953. base: math.unit(500, "mL")
  54954. },
  54955. "bladderFlow": {
  54956. name: "Flow Rate",
  54957. power: 3,
  54958. type: "volume",
  54959. base: math.unit(25, "mL")
  54960. },
  54961. }
  54962. },
  54963. },
  54964. [
  54965. {
  54966. name: "Normal",
  54967. height: math.unit(1.6, "meters"),
  54968. default: true
  54969. },
  54970. ]
  54971. ))
  54972. characterMakers.push(() => makeCharacter(
  54973. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54974. {
  54975. front: {
  54976. height: math.unit(25, "feet"),
  54977. weight: math.unit(5, "tons"),
  54978. name: "Front",
  54979. image: {
  54980. source: "./media/characters/charlie-human/front.svg",
  54981. extra: 1870/1740,
  54982. bottom: 102/1972
  54983. },
  54984. extraAttributes: {
  54985. "dickLength": {
  54986. name: "Dick Length",
  54987. power: 1,
  54988. type: "length",
  54989. base: math.unit(9, "feet")
  54990. },
  54991. }
  54992. },
  54993. back: {
  54994. height: math.unit(25, "feet"),
  54995. weight: math.unit(5, "tons"),
  54996. name: "Back",
  54997. image: {
  54998. source: "./media/characters/charlie-human/back.svg",
  54999. extra: 1858/1733,
  55000. bottom: 105/1963
  55001. },
  55002. extraAttributes: {
  55003. "dickLength": {
  55004. name: "Dick Length",
  55005. power: 1,
  55006. type: "length",
  55007. base: math.unit(9, "feet")
  55008. },
  55009. }
  55010. },
  55011. },
  55012. [
  55013. {
  55014. name: "\"Normal\"",
  55015. height: math.unit(6 + 4/12, "feet")
  55016. },
  55017. {
  55018. name: "Big",
  55019. height: math.unit(25, "feet"),
  55020. default: true
  55021. },
  55022. ]
  55023. ))
  55024. characterMakers.push(() => makeCharacter(
  55025. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55026. {
  55027. front: {
  55028. height: math.unit(6 + 4/12, "feet"),
  55029. weight: math.unit(320, "lb"),
  55030. name: "Front",
  55031. image: {
  55032. source: "./media/characters/ookitsu/front.svg",
  55033. extra: 1160/976,
  55034. bottom: 38/1198
  55035. }
  55036. },
  55037. frontNsfw: {
  55038. height: math.unit(6 + 4/12, "feet"),
  55039. weight: math.unit(320, "lb"),
  55040. name: "Front (NSFW)",
  55041. image: {
  55042. source: "./media/characters/ookitsu/front-nsfw.svg",
  55043. extra: 1160/976,
  55044. bottom: 38/1198
  55045. }
  55046. },
  55047. back: {
  55048. height: math.unit(6 + 4/12, "feet"),
  55049. weight: math.unit(320, "lb"),
  55050. name: "Back",
  55051. image: {
  55052. source: "./media/characters/ookitsu/back.svg",
  55053. extra: 1030/975,
  55054. bottom: 70/1100
  55055. }
  55056. },
  55057. head: {
  55058. height: math.unit(1.79, "feet"),
  55059. name: "Head",
  55060. image: {
  55061. source: "./media/characters/ookitsu/head.svg"
  55062. }
  55063. },
  55064. hand: {
  55065. height: math.unit(0.92, "feet"),
  55066. name: "Hand",
  55067. image: {
  55068. source: "./media/characters/ookitsu/hand.svg"
  55069. }
  55070. },
  55071. tails: {
  55072. height: math.unit(3.3, "feet"),
  55073. name: "Tails",
  55074. image: {
  55075. source: "./media/characters/ookitsu/tails.svg"
  55076. }
  55077. },
  55078. dick: {
  55079. height: math.unit(1.10833, "feet"),
  55080. name: "Dick",
  55081. image: {
  55082. source: "./media/characters/ookitsu/dick.svg"
  55083. }
  55084. },
  55085. },
  55086. [
  55087. {
  55088. name: "Normal",
  55089. height: math.unit(6 + 4/12, "feet"),
  55090. default: true
  55091. },
  55092. {
  55093. name: "Macro",
  55094. height: math.unit(30, "feet")
  55095. },
  55096. ]
  55097. ))
  55098. characterMakers.push(() => makeCharacter(
  55099. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55100. {
  55101. anthroFront: {
  55102. height: math.unit(6, "feet"),
  55103. weight: math.unit(250, "lb"),
  55104. name: "Front",
  55105. image: {
  55106. source: "./media/characters/jhusky/anthro-front.svg",
  55107. extra: 474/439,
  55108. bottom: 7/481
  55109. },
  55110. form: "anthro",
  55111. default: true
  55112. },
  55113. taurSideSfw: {
  55114. height: math.unit(6 + 4/12, "feet"),
  55115. weight: math.unit(500, "lb"),
  55116. name: "Side (SFW)",
  55117. image: {
  55118. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55119. extra: 1741/1629,
  55120. bottom: 196/1937
  55121. },
  55122. form: "taur",
  55123. default: true
  55124. },
  55125. taurSideNsfw: {
  55126. height: math.unit(6 + 4/12, "feet"),
  55127. weight: math.unit(500, "lb"),
  55128. name: "Taur (NSFW)",
  55129. image: {
  55130. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55131. extra: 1741/1629,
  55132. bottom: 196/1937
  55133. },
  55134. form: "taur",
  55135. },
  55136. },
  55137. [
  55138. {
  55139. name: "Huge",
  55140. height: math.unit(500, "feet"),
  55141. form: "anthro"
  55142. },
  55143. {
  55144. name: "Macro",
  55145. height: math.unit(1000, "feet"),
  55146. default: true,
  55147. form: "anthro"
  55148. },
  55149. {
  55150. name: "Megamacro",
  55151. height: math.unit(10000, "feet"),
  55152. form: "anthro"
  55153. },
  55154. {
  55155. name: "Huge",
  55156. height: math.unit(528, "feet"),
  55157. form: "taur"
  55158. },
  55159. {
  55160. name: "Macro",
  55161. height: math.unit(1056, "feet"),
  55162. default: true,
  55163. form: "taur"
  55164. },
  55165. {
  55166. name: "Megamacro",
  55167. height: math.unit(10556, "feet"),
  55168. form: "taur"
  55169. },
  55170. ],
  55171. {
  55172. "anthro": {
  55173. name: "Anthro",
  55174. default: true
  55175. },
  55176. "taur": {
  55177. name: "Taur",
  55178. },
  55179. }
  55180. ))
  55181. characterMakers.push(() => makeCharacter(
  55182. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55183. {
  55184. front: {
  55185. height: math.unit(8, "feet"),
  55186. weight: math.unit(500, "lb"),
  55187. name: "Front",
  55188. image: {
  55189. source: "./media/characters/armail/front.svg",
  55190. extra: 1753/1669,
  55191. bottom: 155/1908
  55192. }
  55193. },
  55194. back: {
  55195. height: math.unit(8, "feet"),
  55196. weight: math.unit(500, "lb"),
  55197. name: "Back",
  55198. image: {
  55199. source: "./media/characters/armail/back.svg",
  55200. extra: 1872/1803,
  55201. bottom: 63/1935
  55202. }
  55203. },
  55204. },
  55205. [
  55206. {
  55207. name: "Micro",
  55208. height: math.unit(0.25, "feet")
  55209. },
  55210. {
  55211. name: "Normal",
  55212. height: math.unit(8, "feet"),
  55213. default: true
  55214. },
  55215. {
  55216. name: "Mini-macro",
  55217. height: math.unit(30, "feet")
  55218. },
  55219. {
  55220. name: "Macro",
  55221. height: math.unit(400, "feet")
  55222. },
  55223. {
  55224. name: "Mega-macro",
  55225. height: math.unit(6000, "feet")
  55226. },
  55227. ]
  55228. ))
  55229. characterMakers.push(() => makeCharacter(
  55230. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55231. {
  55232. front: {
  55233. height: math.unit(6 + 7/12, "feet"),
  55234. weight: math.unit(210, "lb"),
  55235. name: "Front",
  55236. image: {
  55237. source: "./media/characters/wilfred-t-buxton/front.svg",
  55238. extra: 1068/882,
  55239. bottom: 28/1096
  55240. }
  55241. },
  55242. },
  55243. [
  55244. {
  55245. name: "Normal",
  55246. height: math.unit(6 + 7/12, "feet"),
  55247. default: true
  55248. },
  55249. ]
  55250. ))
  55251. characterMakers.push(() => makeCharacter(
  55252. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55253. {
  55254. front: {
  55255. height: math.unit(5 + 2/12, "feet"),
  55256. weight: math.unit(120, "lb"),
  55257. name: "Front",
  55258. image: {
  55259. source: "./media/characters/leighton-marrow/front.svg",
  55260. extra: 441/409,
  55261. bottom: 37/478
  55262. }
  55263. },
  55264. },
  55265. [
  55266. {
  55267. name: "Normal",
  55268. height: math.unit(5 + 2/12, "feet"),
  55269. default: true
  55270. },
  55271. ]
  55272. ))
  55273. characterMakers.push(() => makeCharacter(
  55274. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55275. {
  55276. front: {
  55277. height: math.unit(4, "meters"),
  55278. weight: math.unit(1200, "kg"),
  55279. name: "Front",
  55280. image: {
  55281. source: "./media/characters/licos/front.svg",
  55282. extra: 1727/1604,
  55283. bottom: 101/1828
  55284. },
  55285. form: "anthro",
  55286. default: true
  55287. },
  55288. taur_side: {
  55289. height: math.unit(20, "meters"),
  55290. weight: math.unit(1100000, "kg"),
  55291. name: "Side",
  55292. image: {
  55293. source: "./media/characters/licos/taur.svg",
  55294. extra: 1158/1091,
  55295. bottom: 80/1238
  55296. },
  55297. form: "taur",
  55298. default: true
  55299. },
  55300. },
  55301. [
  55302. {
  55303. name: "Normal",
  55304. height: math.unit(4, "meters"),
  55305. default: true,
  55306. form: "anthro"
  55307. },
  55308. {
  55309. name: "Normal",
  55310. height: math.unit(20, "meters"),
  55311. default: true,
  55312. form: "taur"
  55313. },
  55314. ],
  55315. {
  55316. "anthro": {
  55317. name: "Anthro",
  55318. default: true
  55319. },
  55320. "taur": {
  55321. name: "Taur",
  55322. },
  55323. }
  55324. ))
  55325. characterMakers.push(() => makeCharacter(
  55326. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55327. {
  55328. front: {
  55329. height: math.unit(10 + 3/12, "feet"),
  55330. name: "Front",
  55331. image: {
  55332. source: "./media/characters/theo-monkey/front.svg",
  55333. extra: 1735/1658,
  55334. bottom: 73/1808
  55335. }
  55336. },
  55337. back: {
  55338. height: math.unit(10 + 3/12, "feet"),
  55339. name: "Back",
  55340. image: {
  55341. source: "./media/characters/theo-monkey/back.svg",
  55342. extra: 1742/1664,
  55343. bottom: 33/1775
  55344. }
  55345. },
  55346. head: {
  55347. height: math.unit(2.29, "feet"),
  55348. name: "Head",
  55349. image: {
  55350. source: "./media/characters/theo-monkey/head.svg"
  55351. }
  55352. },
  55353. handPalm: {
  55354. height: math.unit(1.73, "feet"),
  55355. name: "Hand (Palm)",
  55356. image: {
  55357. source: "./media/characters/theo-monkey/hand-palm.svg"
  55358. }
  55359. },
  55360. handBack: {
  55361. height: math.unit(1.63, "feet"),
  55362. name: "Hand (Back)",
  55363. image: {
  55364. source: "./media/characters/theo-monkey/hand-back.svg"
  55365. }
  55366. },
  55367. footSole: {
  55368. height: math.unit(2.15, "feet"),
  55369. name: "Foot (Sole)",
  55370. image: {
  55371. source: "./media/characters/theo-monkey/foot-sole.svg"
  55372. }
  55373. },
  55374. footSide: {
  55375. height: math.unit(1.6, "feet"),
  55376. name: "Foot (Side)",
  55377. image: {
  55378. source: "./media/characters/theo-monkey/foot-side.svg"
  55379. }
  55380. },
  55381. },
  55382. [
  55383. {
  55384. name: "Normal",
  55385. height: math.unit(10 + 3/12, "feet"),
  55386. default: true
  55387. },
  55388. ]
  55389. ))
  55390. characterMakers.push(() => makeCharacter(
  55391. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55392. {
  55393. front: {
  55394. height: math.unit(11, "feet"),
  55395. weight: math.unit(3000, "lb"),
  55396. preyCapacity: math.unit(10, "people"),
  55397. name: "Front",
  55398. image: {
  55399. source: "./media/characters/brook/front.svg",
  55400. extra: 909/835,
  55401. bottom: 108/1017
  55402. }
  55403. },
  55404. back: {
  55405. height: math.unit(11, "feet"),
  55406. weight: math.unit(3000, "lb"),
  55407. preyCapacity: math.unit(10, "people"),
  55408. name: "Back",
  55409. image: {
  55410. source: "./media/characters/brook/back.svg",
  55411. extra: 976/916,
  55412. bottom: 34/1010
  55413. }
  55414. },
  55415. backAlt: {
  55416. height: math.unit(11, "feet"),
  55417. weight: math.unit(3000, "lb"),
  55418. preyCapacity: math.unit(10, "people"),
  55419. name: "Back (Alt)",
  55420. image: {
  55421. source: "./media/characters/brook/back-alt.svg",
  55422. extra: 1283/1213,
  55423. bottom: 35/1318
  55424. }
  55425. },
  55426. bust: {
  55427. height: math.unit(9.0859030837, "feet"),
  55428. weight: math.unit(3000, "lb"),
  55429. preyCapacity: math.unit(10, "people"),
  55430. name: "Bust",
  55431. image: {
  55432. source: "./media/characters/brook/bust.svg",
  55433. extra: 2043/1923,
  55434. bottom: 0/2043
  55435. }
  55436. },
  55437. },
  55438. [
  55439. {
  55440. name: "Small",
  55441. height: math.unit(11, "feet"),
  55442. default: true
  55443. },
  55444. {
  55445. name: "Towering",
  55446. height: math.unit(5, "km")
  55447. },
  55448. {
  55449. name: "Enormous",
  55450. height: math.unit(25, "earths")
  55451. },
  55452. ]
  55453. ))
  55454. characterMakers.push(() => makeCharacter(
  55455. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55456. {
  55457. front: {
  55458. height: math.unit(4, "feet"),
  55459. weight: math.unit(150, "lb"),
  55460. name: "Front",
  55461. image: {
  55462. source: "./media/characters/squishi/front.svg",
  55463. extra: 1428/1271,
  55464. bottom: 30/1458
  55465. },
  55466. extraAttributes: {
  55467. "pawSize": {
  55468. name: "Paw Size",
  55469. power: 1,
  55470. type: "length",
  55471. base: math.unit(14, "ShoeSizeMensUS"),
  55472. defaultUnit: "ShoeSizeMensUS"
  55473. },
  55474. }
  55475. },
  55476. side: {
  55477. height: math.unit(4, "feet"),
  55478. weight: math.unit(150, "lb"),
  55479. name: "Side",
  55480. image: {
  55481. source: "./media/characters/squishi/side.svg",
  55482. extra: 1428/1271,
  55483. bottom: 30/1458
  55484. },
  55485. extraAttributes: {
  55486. "pawSize": {
  55487. name: "Paw Size",
  55488. power: 1,
  55489. type: "length",
  55490. base: math.unit(14, "ShoeSizeMensUS"),
  55491. defaultUnit: "ShoeSizeMensUS"
  55492. },
  55493. }
  55494. },
  55495. back: {
  55496. height: math.unit(4, "feet"),
  55497. weight: math.unit(150, "lb"),
  55498. name: "Back",
  55499. image: {
  55500. source: "./media/characters/squishi/back.svg",
  55501. extra: 1428/1271,
  55502. bottom: 30/1458
  55503. },
  55504. extraAttributes: {
  55505. "pawSize": {
  55506. name: "Paw Size",
  55507. power: 1,
  55508. type: "length",
  55509. base: math.unit(14, "ShoeSizeMensUS"),
  55510. defaultUnit: "ShoeSizeMensUS"
  55511. },
  55512. }
  55513. },
  55514. },
  55515. [
  55516. {
  55517. name: "Normal",
  55518. height: math.unit(4, "feet"),
  55519. default: true
  55520. },
  55521. ]
  55522. ))
  55523. characterMakers.push(() => makeCharacter(
  55524. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55525. {
  55526. front: {
  55527. height: math.unit(7 + 8/12, "feet"),
  55528. weight: math.unit(333, "lb"),
  55529. name: "Front",
  55530. image: {
  55531. source: "./media/characters/vincent-vasroc/front.svg",
  55532. extra: 1962/1860,
  55533. bottom: 41/2003
  55534. }
  55535. },
  55536. back: {
  55537. height: math.unit(7 + 8/12, "feet"),
  55538. weight: math.unit(333, "lb"),
  55539. name: "Back",
  55540. image: {
  55541. source: "./media/characters/vincent-vasroc/back.svg",
  55542. extra: 1952/1815,
  55543. bottom: 33/1985
  55544. }
  55545. },
  55546. paw: {
  55547. height: math.unit(1.24, "feet"),
  55548. name: "Paw",
  55549. image: {
  55550. source: "./media/characters/vincent-vasroc/paw.svg"
  55551. }
  55552. },
  55553. ear: {
  55554. height: math.unit(0.75, "feet"),
  55555. name: "Ear",
  55556. image: {
  55557. source: "./media/characters/vincent-vasroc/ear.svg"
  55558. }
  55559. },
  55560. },
  55561. [
  55562. {
  55563. name: "Nano",
  55564. height: math.unit(92, "micrometers")
  55565. },
  55566. {
  55567. name: "Normal",
  55568. height: math.unit(7 + 8/12, "feet"),
  55569. default: true
  55570. },
  55571. ]
  55572. ))
  55573. characterMakers.push(() => makeCharacter(
  55574. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55575. {
  55576. frontNsfw: {
  55577. height: math.unit(40, "feet"),
  55578. weight: math.unit(58, "tons"),
  55579. name: "Front (NSFW)",
  55580. image: {
  55581. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55582. extra: 1265/965,
  55583. bottom: 155/1420
  55584. }
  55585. },
  55586. frontSfw: {
  55587. height: math.unit(40, "feet"),
  55588. weight: math.unit(58, "tons"),
  55589. name: "Front (SFW)",
  55590. image: {
  55591. source: "./media/characters/ru-kahn/front-sfw.svg",
  55592. extra: 1265/965,
  55593. bottom: 80/1345
  55594. }
  55595. },
  55596. },
  55597. [
  55598. {
  55599. name: "Small",
  55600. height: math.unit(4, "feet")
  55601. },
  55602. {
  55603. name: "Normal",
  55604. height: math.unit(40, "feet"),
  55605. default: true
  55606. },
  55607. {
  55608. name: "Macro",
  55609. height: math.unit(400, "feet")
  55610. },
  55611. ]
  55612. ))
  55613. characterMakers.push(() => makeCharacter(
  55614. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55615. {
  55616. frontNude: {
  55617. height: math.unit(6 + 5/12, "feet"),
  55618. name: "Front (Nude)",
  55619. image: {
  55620. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55621. extra: 1369/1366,
  55622. bottom: 68/1437
  55623. }
  55624. },
  55625. frontDressed: {
  55626. height: math.unit(6 + 5/12, "feet"),
  55627. name: "Front (Dressed)",
  55628. image: {
  55629. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55630. extra: 1369/1366,
  55631. bottom: 68/1437
  55632. }
  55633. },
  55634. },
  55635. [
  55636. {
  55637. name: "Normal",
  55638. height: math.unit(6 + 5/12, "feet"),
  55639. default: true
  55640. },
  55641. {
  55642. name: "Maximum",
  55643. height: math.unit(1930, "feet")
  55644. },
  55645. ]
  55646. ))
  55647. characterMakers.push(() => makeCharacter(
  55648. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55649. {
  55650. front: {
  55651. height: math.unit(5 + 6/12, "feet"),
  55652. name: "Front",
  55653. image: {
  55654. source: "./media/characters/kaja/front.svg",
  55655. extra: 1874/1514,
  55656. bottom: 117/1991
  55657. }
  55658. },
  55659. },
  55660. [
  55661. {
  55662. name: "Normal",
  55663. height: math.unit(5 + 6/12, "feet"),
  55664. default: true
  55665. },
  55666. ]
  55667. ))
  55668. characterMakers.push(() => makeCharacter(
  55669. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55670. {
  55671. front: {
  55672. height: math.unit(5 + 9/12, "feet"),
  55673. weight: math.unit(200, "lb"),
  55674. name: "Front",
  55675. image: {
  55676. source: "./media/characters/mark-smith/front.svg",
  55677. extra: 1004/943,
  55678. bottom: 58/1062
  55679. }
  55680. },
  55681. back: {
  55682. height: math.unit(5 + 9/12, "feet"),
  55683. weight: math.unit(200, "lb"),
  55684. name: "Back",
  55685. image: {
  55686. source: "./media/characters/mark-smith/back.svg",
  55687. extra: 1023/953,
  55688. bottom: 24/1047
  55689. }
  55690. },
  55691. head: {
  55692. height: math.unit(1.82, "feet"),
  55693. name: "Head",
  55694. image: {
  55695. source: "./media/characters/mark-smith/head.svg"
  55696. }
  55697. },
  55698. hand: {
  55699. height: math.unit(1.4, "feet"),
  55700. name: "Hand",
  55701. image: {
  55702. source: "./media/characters/mark-smith/hand.svg"
  55703. }
  55704. },
  55705. paw: {
  55706. height: math.unit(1.69, "feet"),
  55707. name: "Paw",
  55708. image: {
  55709. source: "./media/characters/mark-smith/paw.svg"
  55710. }
  55711. },
  55712. },
  55713. [
  55714. {
  55715. name: "Micro",
  55716. height: math.unit(0.25, "inches")
  55717. },
  55718. {
  55719. name: "Normal",
  55720. height: math.unit(5 + 9/12, "feet"),
  55721. default: true
  55722. },
  55723. {
  55724. name: "Macro",
  55725. height: math.unit(500, "feet")
  55726. },
  55727. ]
  55728. ))
  55729. characterMakers.push(() => makeCharacter(
  55730. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55731. {
  55732. frontNude: {
  55733. height: math.unit(6, "feet"),
  55734. name: "Front (Nude)",
  55735. image: {
  55736. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55737. extra: 1384/1321,
  55738. bottom: 57/1441
  55739. }
  55740. },
  55741. frontDressed: {
  55742. height: math.unit(6, "feet"),
  55743. name: "Front (Dressed)",
  55744. image: {
  55745. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55746. extra: 1384/1321,
  55747. bottom: 57/1441
  55748. }
  55749. },
  55750. },
  55751. [
  55752. {
  55753. name: "Normal",
  55754. height: math.unit(6, "feet"),
  55755. default: true
  55756. },
  55757. {
  55758. name: "Maximum",
  55759. height: math.unit(1776, "feet")
  55760. },
  55761. ]
  55762. ))
  55763. characterMakers.push(() => makeCharacter(
  55764. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55765. {
  55766. front: {
  55767. height: math.unit(2 + 4/12, "feet"),
  55768. weight: math.unit(350, "lb"),
  55769. name: "Front",
  55770. image: {
  55771. source: "./media/characters/devos/front.svg",
  55772. extra: 958/852,
  55773. bottom: 143/1101
  55774. }
  55775. },
  55776. },
  55777. [
  55778. {
  55779. name: "Base",
  55780. height: math.unit(2 + 4/12, "feet"),
  55781. default: true
  55782. },
  55783. ]
  55784. ))
  55785. characterMakers.push(() => makeCharacter(
  55786. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55787. {
  55788. front: {
  55789. height: math.unit(9 + 2/12, "feet"),
  55790. name: "Front",
  55791. image: {
  55792. source: "./media/characters/hiveheart/front.svg",
  55793. extra: 394/364,
  55794. bottom: 65/459
  55795. }
  55796. },
  55797. back: {
  55798. height: math.unit(9 + 2/12, "feet"),
  55799. name: "Back",
  55800. image: {
  55801. source: "./media/characters/hiveheart/back.svg",
  55802. extra: 374/357,
  55803. bottom: 63/437
  55804. }
  55805. },
  55806. },
  55807. [
  55808. {
  55809. name: "Base",
  55810. height: math.unit(9 + 2/12, "feet"),
  55811. default: true
  55812. },
  55813. ]
  55814. ))
  55815. characterMakers.push(() => makeCharacter(
  55816. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55817. {
  55818. front: {
  55819. height: math.unit(2.5, "inches"),
  55820. weight: math.unit(0.6, "oz"),
  55821. name: "Front",
  55822. image: {
  55823. source: "./media/characters/bryn/front.svg",
  55824. extra: 1480/1205,
  55825. bottom: 27/1507
  55826. }
  55827. },
  55828. back: {
  55829. height: math.unit(2.5, "inches"),
  55830. weight: math.unit(0.6, "oz"),
  55831. name: "Back",
  55832. image: {
  55833. source: "./media/characters/bryn/back.svg",
  55834. extra: 1475/1201,
  55835. bottom: 39/1514
  55836. }
  55837. },
  55838. foot: {
  55839. height: math.unit(0.4, "inches"),
  55840. name: "Foot",
  55841. image: {
  55842. source: "./media/characters/bryn/foot.svg"
  55843. }
  55844. },
  55845. },
  55846. [
  55847. {
  55848. name: "Normal",
  55849. height: math.unit(2.5, "inches"),
  55850. default: true
  55851. },
  55852. ]
  55853. ))
  55854. characterMakers.push(() => makeCharacter(
  55855. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55856. {
  55857. side: {
  55858. height: math.unit(7, "feet"),
  55859. weight: math.unit(657, "kg"),
  55860. name: "Side",
  55861. image: {
  55862. source: "./media/characters/delta/side.svg",
  55863. extra: 781/212,
  55864. bottom: 7/788
  55865. },
  55866. extraAttributes: {
  55867. "wingspan": {
  55868. name: "Wingspan",
  55869. power: 1,
  55870. type: "length",
  55871. base: math.unit(48, "feet")
  55872. },
  55873. "length": {
  55874. name: "Length",
  55875. power: 1,
  55876. type: "length",
  55877. base: math.unit(21, "feet")
  55878. },
  55879. "pawSize": {
  55880. name: "Paw Size",
  55881. power: 2,
  55882. type: "area",
  55883. base: math.unit(1.5*1.4, "feet^2")
  55884. },
  55885. }
  55886. },
  55887. },
  55888. [
  55889. {
  55890. name: "Normal",
  55891. height: math.unit(6, "feet"),
  55892. default: true
  55893. },
  55894. ]
  55895. ))
  55896. characterMakers.push(() => makeCharacter(
  55897. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55898. {
  55899. front: {
  55900. height: math.unit(6, "feet"),
  55901. name: "Front",
  55902. image: {
  55903. source: "./media/characters/pyrow/front.svg",
  55904. extra: 513/486,
  55905. bottom: 14/527
  55906. }
  55907. },
  55908. frontWing: {
  55909. height: math.unit(6, "feet"),
  55910. name: "Front (Wing)",
  55911. image: {
  55912. source: "./media/characters/pyrow/front-wing.svg",
  55913. extra: 539/383,
  55914. bottom: 20/559
  55915. }
  55916. },
  55917. back: {
  55918. height: math.unit(6, "feet"),
  55919. name: "Back",
  55920. image: {
  55921. source: "./media/characters/pyrow/back.svg",
  55922. extra: 500/473,
  55923. bottom: 9/509
  55924. }
  55925. },
  55926. },
  55927. [
  55928. {
  55929. name: "Normal",
  55930. height: math.unit(6, "feet"),
  55931. default: true
  55932. },
  55933. ]
  55934. ))
  55935. characterMakers.push(() => makeCharacter(
  55936. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55937. {
  55938. front: {
  55939. height: math.unit(5, "meters"),
  55940. weight: math.unit(3, "tonnes"),
  55941. name: "Front",
  55942. image: {
  55943. source: "./media/characters/velikan/front.svg",
  55944. extra: 867/744,
  55945. bottom: 71/938
  55946. },
  55947. extraAttributes: {
  55948. "shoeSize": {
  55949. name: "Shoe Size",
  55950. power: 1,
  55951. type: "length",
  55952. base: math.unit(135, "ShoeSizeUK"),
  55953. defaultUnit: "ShoeSizeUK"
  55954. },
  55955. }
  55956. },
  55957. },
  55958. [
  55959. {
  55960. name: "Normal",
  55961. height: math.unit(5, "meters"),
  55962. default: true
  55963. },
  55964. {
  55965. name: "Macro",
  55966. height: math.unit(1, "km")
  55967. },
  55968. {
  55969. name: "Mega Macro",
  55970. height: math.unit(100, "km")
  55971. },
  55972. {
  55973. name: "Giga Macro",
  55974. height: math.unit(2, "megameters")
  55975. },
  55976. {
  55977. name: "Planetary",
  55978. height: math.unit(22, "megameters")
  55979. },
  55980. {
  55981. name: "Solar",
  55982. height: math.unit(8, "gigameters")
  55983. },
  55984. {
  55985. name: "Cosmic",
  55986. height: math.unit(10, "zettameters")
  55987. },
  55988. {
  55989. name: "Omni",
  55990. height: math.unit(9e260, "multiverses")
  55991. },
  55992. ]
  55993. ))
  55994. characterMakers.push(() => makeCharacter(
  55995. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55996. {
  55997. front: {
  55998. height: math.unit(4 + 3/12, "feet"),
  55999. weight: math.unit(90, "lb"),
  56000. name: "Front",
  56001. image: {
  56002. source: "./media/characters/sabiki/front.svg",
  56003. extra: 1662/1423,
  56004. bottom: 65/1727
  56005. }
  56006. },
  56007. },
  56008. [
  56009. {
  56010. name: "Normal",
  56011. height: math.unit(4 + 3/12, "feet"),
  56012. default: true
  56013. },
  56014. ]
  56015. ))
  56016. characterMakers.push(() => makeCharacter(
  56017. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56018. {
  56019. frontSfw: {
  56020. height: math.unit(2, "mm"),
  56021. name: "Front (SFW)",
  56022. image: {
  56023. source: "./media/characters/carmel/front-sfw.svg",
  56024. extra: 1131/1006,
  56025. bottom: 66/1197
  56026. }
  56027. },
  56028. frontNsfw: {
  56029. height: math.unit(2, "mm"),
  56030. name: "Front (NSFW)",
  56031. image: {
  56032. source: "./media/characters/carmel/front-nsfw.svg",
  56033. extra: 1131/1006,
  56034. bottom: 66/1197
  56035. }
  56036. },
  56037. foot: {
  56038. height: math.unit(0.3, "mm"),
  56039. name: "Foot",
  56040. image: {
  56041. source: "./media/characters/carmel/foot.svg"
  56042. }
  56043. },
  56044. tongue: {
  56045. height: math.unit(0.71, "mm"),
  56046. name: "Tongue",
  56047. image: {
  56048. source: "./media/characters/carmel/tongue.svg"
  56049. }
  56050. },
  56051. dick: {
  56052. height: math.unit(0.085, "mm"),
  56053. name: "Dick",
  56054. image: {
  56055. source: "./media/characters/carmel/dick.svg"
  56056. }
  56057. },
  56058. },
  56059. [
  56060. {
  56061. name: "Micro",
  56062. height: math.unit(2, "mm"),
  56063. default: true
  56064. },
  56065. {
  56066. name: "Normal",
  56067. height: math.unit(4 + 8/12, "feet")
  56068. },
  56069. {
  56070. name: "Mega Macro",
  56071. height: math.unit(250, "feet")
  56072. },
  56073. {
  56074. name: "BIGGER",
  56075. height: math.unit(1000, "feet")
  56076. },
  56077. {
  56078. name: "BIGGEST",
  56079. height: math.unit(2, "miles")
  56080. },
  56081. ]
  56082. ))
  56083. characterMakers.push(() => makeCharacter(
  56084. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56085. {
  56086. front: {
  56087. height: math.unit(6.5, "feet"),
  56088. weight: math.unit(198, "lb"),
  56089. name: "Front",
  56090. image: {
  56091. source: "./media/characters/tamani/anthro.svg",
  56092. extra: 930/890,
  56093. bottom: 34/964
  56094. },
  56095. form: "anthro",
  56096. default: true
  56097. },
  56098. side: {
  56099. height: math.unit(6, "feet"),
  56100. weight: math.unit(198*2, "lb"),
  56101. name: "Side",
  56102. image: {
  56103. source: "./media/characters/tamani/feral.svg",
  56104. extra: 559/519,
  56105. bottom: 43/602
  56106. },
  56107. form: "feral"
  56108. },
  56109. },
  56110. [
  56111. {
  56112. name: "Normal",
  56113. height: math.unit(6.5, "feet"),
  56114. default: true,
  56115. form: "anthro"
  56116. },
  56117. {
  56118. name: "Normal",
  56119. height: math.unit(6, "feet"),
  56120. default: true,
  56121. form: "feral"
  56122. },
  56123. ],
  56124. {
  56125. "anthro": {
  56126. name: "Anthro",
  56127. default: true
  56128. },
  56129. "feral": {
  56130. name: "Feral",
  56131. },
  56132. }
  56133. ))
  56134. characterMakers.push(() => makeCharacter(
  56135. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56136. {
  56137. front: {
  56138. height: math.unit(4 + 1/12, "feet"),
  56139. weight: math.unit(114, "lb"),
  56140. name: "Front",
  56141. image: {
  56142. source: "./media/characters/dex/front.svg",
  56143. extra: 787/680,
  56144. bottom: 18/805
  56145. }
  56146. },
  56147. side: {
  56148. height: math.unit(4 + 1/12, "feet"),
  56149. weight: math.unit(114, "lb"),
  56150. name: "Side",
  56151. image: {
  56152. source: "./media/characters/dex/side.svg",
  56153. extra: 785/680,
  56154. bottom: 12/797
  56155. }
  56156. },
  56157. back: {
  56158. height: math.unit(4 + 1/12, "feet"),
  56159. weight: math.unit(114, "lb"),
  56160. name: "Back",
  56161. image: {
  56162. source: "./media/characters/dex/back.svg",
  56163. extra: 785/681,
  56164. bottom: 17/802
  56165. }
  56166. },
  56167. loungewear: {
  56168. height: math.unit(4 + 1/12, "feet"),
  56169. weight: math.unit(114, "lb"),
  56170. name: "Loungewear",
  56171. image: {
  56172. source: "./media/characters/dex/loungewear.svg",
  56173. extra: 787/680,
  56174. bottom: 18/805
  56175. }
  56176. },
  56177. workout: {
  56178. height: math.unit(4 + 1/12, "feet"),
  56179. weight: math.unit(114, "lb"),
  56180. name: "Workout",
  56181. image: {
  56182. source: "./media/characters/dex/workout.svg",
  56183. extra: 787/680,
  56184. bottom: 18/805
  56185. }
  56186. },
  56187. schoolUniform: {
  56188. height: math.unit(4 + 1/12, "feet"),
  56189. weight: math.unit(114, "lb"),
  56190. name: "School-uniform",
  56191. image: {
  56192. source: "./media/characters/dex/school-uniform.svg",
  56193. extra: 787/680,
  56194. bottom: 18/805
  56195. }
  56196. },
  56197. maw: {
  56198. height: math.unit(0.55, "feet"),
  56199. name: "Maw",
  56200. image: {
  56201. source: "./media/characters/dex/maw.svg"
  56202. }
  56203. },
  56204. paw: {
  56205. height: math.unit(0.87, "feet"),
  56206. name: "Paw",
  56207. image: {
  56208. source: "./media/characters/dex/paw.svg"
  56209. }
  56210. },
  56211. bust: {
  56212. height: math.unit(1.67, "feet"),
  56213. name: "Bust",
  56214. image: {
  56215. source: "./media/characters/dex/bust.svg"
  56216. }
  56217. },
  56218. },
  56219. [
  56220. {
  56221. name: "Normal",
  56222. height: math.unit(4 + 1/12, "feet"),
  56223. default: true
  56224. },
  56225. ]
  56226. ))
  56227. characterMakers.push(() => makeCharacter(
  56228. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56229. {
  56230. front: {
  56231. height: math.unit(4 + 3/12, "feet"),
  56232. weight: math.unit(60, "lb"),
  56233. name: "Front",
  56234. image: {
  56235. source: "./media/characters/silke/front.svg",
  56236. extra: 1334/1122,
  56237. bottom: 21/1355
  56238. }
  56239. },
  56240. back: {
  56241. height: math.unit(4 + 3/12, "feet"),
  56242. weight: math.unit(60, "lb"),
  56243. name: "Back",
  56244. image: {
  56245. source: "./media/characters/silke/back.svg",
  56246. extra: 1328/1092,
  56247. bottom: 16/1344
  56248. }
  56249. },
  56250. dressed: {
  56251. height: math.unit(4 + 3/12, "feet"),
  56252. weight: math.unit(60, "lb"),
  56253. name: "Dressed",
  56254. image: {
  56255. source: "./media/characters/silke/dressed.svg",
  56256. extra: 1334/1122,
  56257. bottom: 43/1377
  56258. }
  56259. },
  56260. },
  56261. [
  56262. {
  56263. name: "Normal",
  56264. height: math.unit(4 + 3/12, "feet"),
  56265. default: true
  56266. },
  56267. ]
  56268. ))
  56269. characterMakers.push(() => makeCharacter(
  56270. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56271. {
  56272. front: {
  56273. height: math.unit(1.58, "meters"),
  56274. weight: math.unit(47, "kg"),
  56275. name: "Front",
  56276. image: {
  56277. source: "./media/characters/wireshark/front.svg",
  56278. extra: 883/838,
  56279. bottom: 66/949
  56280. }
  56281. },
  56282. },
  56283. [
  56284. {
  56285. name: "Normal",
  56286. height: math.unit(1.58, "meters"),
  56287. default: true
  56288. },
  56289. ]
  56290. ))
  56291. characterMakers.push(() => makeCharacter(
  56292. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56293. {
  56294. front: {
  56295. height: math.unit(6, "meters"),
  56296. weight: math.unit(15000, "kg"),
  56297. name: "Front",
  56298. image: {
  56299. source: "./media/characters/gallagher/front.svg",
  56300. extra: 532/493,
  56301. bottom: 0/532
  56302. }
  56303. },
  56304. },
  56305. [
  56306. {
  56307. name: "Normal",
  56308. height: math.unit(6, "meters"),
  56309. default: true
  56310. },
  56311. ]
  56312. ))
  56313. characterMakers.push(() => makeCharacter(
  56314. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56315. {
  56316. front: {
  56317. height: math.unit(2.4, "meters"),
  56318. weight: math.unit(270, "kg"),
  56319. name: "Front",
  56320. image: {
  56321. source: "./media/characters/alice/front.svg",
  56322. extra: 950/900,
  56323. bottom: 36/986
  56324. }
  56325. },
  56326. side: {
  56327. height: math.unit(2.4, "meters"),
  56328. weight: math.unit(270, "kg"),
  56329. name: "Side",
  56330. image: {
  56331. source: "./media/characters/alice/side.svg",
  56332. extra: 921/876,
  56333. bottom: 19/940
  56334. }
  56335. },
  56336. dressed: {
  56337. height: math.unit(2.4, "meters"),
  56338. weight: math.unit(270, "kg"),
  56339. name: "Dressed",
  56340. image: {
  56341. source: "./media/characters/alice/dressed.svg",
  56342. extra: 905/850,
  56343. bottom: 81/986
  56344. }
  56345. },
  56346. fishnet: {
  56347. height: math.unit(2.4, "meters"),
  56348. weight: math.unit(270, "kg"),
  56349. name: "Fishnet",
  56350. image: {
  56351. source: "./media/characters/alice/fishnet.svg",
  56352. extra: 905/850,
  56353. bottom: 81/986
  56354. }
  56355. },
  56356. },
  56357. [
  56358. {
  56359. name: "Normal",
  56360. height: math.unit(2.4, "meters"),
  56361. default: true
  56362. },
  56363. ]
  56364. ))
  56365. characterMakers.push(() => makeCharacter(
  56366. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56367. {
  56368. front: {
  56369. height: math.unit(175.25, "feet"),
  56370. name: "Front",
  56371. image: {
  56372. source: "./media/characters/fio/front.svg",
  56373. extra: 1883/1591,
  56374. bottom: 34/1917
  56375. }
  56376. },
  56377. },
  56378. [
  56379. {
  56380. name: "Normal",
  56381. height: math.unit(175.25, "cm"),
  56382. default: true
  56383. },
  56384. ]
  56385. ))
  56386. characterMakers.push(() => makeCharacter(
  56387. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56388. {
  56389. side: {
  56390. height: math.unit(6, "meters"),
  56391. weight: math.unit(3400, "kg"),
  56392. preyCapacity: math.unit(1700, "liters"),
  56393. name: "Side",
  56394. image: {
  56395. source: "./media/characters/hass/side.svg",
  56396. extra: 1058/997,
  56397. bottom: 177/1235
  56398. }
  56399. },
  56400. feeding: {
  56401. height: math.unit(6*0.63, "meters"),
  56402. weight: math.unit(3400, "kg"),
  56403. preyCapacity: math.unit(1700, "liters"),
  56404. name: "Feeding",
  56405. image: {
  56406. source: "./media/characters/hass/feeding.svg",
  56407. extra: 689/579,
  56408. bottom: 146/835
  56409. }
  56410. },
  56411. guts: {
  56412. height: math.unit(6, "meters"),
  56413. weight: math.unit(3400, "kg"),
  56414. name: "Guts",
  56415. image: {
  56416. source: "./media/characters/hass/guts.svg",
  56417. extra: 1223/1198,
  56418. bottom: 182/1405
  56419. }
  56420. },
  56421. dickFront: {
  56422. height: math.unit(1.4, "meters"),
  56423. name: "Dick (Front)",
  56424. image: {
  56425. source: "./media/characters/hass/dick-front.svg"
  56426. }
  56427. },
  56428. dickSide: {
  56429. height: math.unit(1.3, "meters"),
  56430. name: "Dick (Side)",
  56431. image: {
  56432. source: "./media/characters/hass/dick-side.svg"
  56433. }
  56434. },
  56435. dickBack: {
  56436. height: math.unit(1.4, "meters"),
  56437. name: "Dick (Back)",
  56438. image: {
  56439. source: "./media/characters/hass/dick-back.svg"
  56440. }
  56441. },
  56442. },
  56443. [
  56444. {
  56445. name: "Normal",
  56446. height: math.unit(6, "meters"),
  56447. default: true
  56448. },
  56449. ]
  56450. ))
  56451. characterMakers.push(() => makeCharacter(
  56452. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56453. {
  56454. front: {
  56455. height: math.unit(4, "feet"),
  56456. weight: math.unit(60, "lb"),
  56457. name: "Front",
  56458. image: {
  56459. source: "./media/characters/hickory-finnegan/front.svg",
  56460. extra: 444/411,
  56461. bottom: 10/454
  56462. }
  56463. },
  56464. side: {
  56465. height: math.unit(4, "feet"),
  56466. weight: math.unit(60, "lb"),
  56467. name: "Side",
  56468. image: {
  56469. source: "./media/characters/hickory-finnegan/side.svg",
  56470. extra: 444/411,
  56471. bottom: 10/454
  56472. }
  56473. },
  56474. back: {
  56475. height: math.unit(4, "feet"),
  56476. weight: math.unit(60, "lb"),
  56477. name: "Back",
  56478. image: {
  56479. source: "./media/characters/hickory-finnegan/back.svg",
  56480. extra: 444/411,
  56481. bottom: 10/454
  56482. }
  56483. },
  56484. },
  56485. [
  56486. {
  56487. name: "Normal",
  56488. height: math.unit(4, "feet"),
  56489. default: true
  56490. },
  56491. ]
  56492. ))
  56493. characterMakers.push(() => makeCharacter(
  56494. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56495. {
  56496. snivy_front: {
  56497. height: math.unit(2, "feet"),
  56498. weight: math.unit(17.9, "lb"),
  56499. name: "Front",
  56500. image: {
  56501. source: "./media/characters/robin-phox/snivy-front.svg",
  56502. extra: 569/504,
  56503. bottom: 33/602
  56504. },
  56505. form: "snivy",
  56506. default: true
  56507. },
  56508. snivy_frontNsfw: {
  56509. height: math.unit(2, "feet"),
  56510. weight: math.unit(17.9, "lb"),
  56511. name: "Front (NSFW)",
  56512. image: {
  56513. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56514. extra: 569/504,
  56515. bottom: 33/602
  56516. },
  56517. form: "snivy",
  56518. },
  56519. snivy_back: {
  56520. height: math.unit(2, "feet"),
  56521. weight: math.unit(17.9, "lb"),
  56522. name: "Back",
  56523. image: {
  56524. source: "./media/characters/robin-phox/snivy-back.svg",
  56525. extra: 577/508,
  56526. bottom: 21/598
  56527. },
  56528. form: "snivy",
  56529. },
  56530. snivy_foot: {
  56531. height: math.unit(0.68, "feet"),
  56532. name: "Foot",
  56533. image: {
  56534. source: "./media/characters/robin-phox/snivy-foot.svg"
  56535. },
  56536. form: "snivy",
  56537. },
  56538. snivy_sole: {
  56539. height: math.unit(0.68, "feet"),
  56540. name: "Sole",
  56541. image: {
  56542. source: "./media/characters/robin-phox/snivy-sole.svg"
  56543. },
  56544. form: "snivy",
  56545. },
  56546. yoshi_front: {
  56547. height: math.unit(6, "feet"),
  56548. weight: math.unit(150, "lb"),
  56549. name: "Front",
  56550. image: {
  56551. source: "./media/characters/robin-phox/yoshi-front.svg",
  56552. extra: 890/792,
  56553. bottom: 29/919
  56554. },
  56555. form: "yoshi",
  56556. default: true
  56557. },
  56558. yoshi_frontNsfw: {
  56559. height: math.unit(6, "feet"),
  56560. weight: math.unit(150, "lb"),
  56561. name: "Front (NSFW)",
  56562. image: {
  56563. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56564. extra: 890/792,
  56565. bottom: 29/919
  56566. },
  56567. form: "yoshi",
  56568. },
  56569. yoshi_back: {
  56570. height: math.unit(6, "feet"),
  56571. weight: math.unit(150, "lb"),
  56572. name: "Back",
  56573. image: {
  56574. source: "./media/characters/robin-phox/yoshi-back.svg",
  56575. extra: 890/792,
  56576. bottom: 29/919
  56577. },
  56578. form: "yoshi",
  56579. },
  56580. yoshi_foot: {
  56581. height: math.unit(1.5, "feet"),
  56582. name: "Foot",
  56583. image: {
  56584. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56585. },
  56586. form: "yoshi",
  56587. },
  56588. delphox_front: {
  56589. height: math.unit(4 + 11/12, "feet"),
  56590. weight: math.unit(86, "lb"),
  56591. name: "Front",
  56592. image: {
  56593. source: "./media/characters/robin-phox/delphox-front.svg",
  56594. extra: 1266/1069,
  56595. bottom: 32/1298
  56596. },
  56597. form: "delphox",
  56598. default: true
  56599. },
  56600. delphox_frontNsfw: {
  56601. height: math.unit(4 + 11/12, "feet"),
  56602. weight: math.unit(86, "lb"),
  56603. name: "Front (NSFW)",
  56604. image: {
  56605. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56606. extra: 1266/1069,
  56607. bottom: 32/1298
  56608. },
  56609. form: "delphox",
  56610. },
  56611. delphox_back: {
  56612. height: math.unit(4 + 11/12, "feet"),
  56613. weight: math.unit(86, "lb"),
  56614. name: "Back",
  56615. image: {
  56616. source: "./media/characters/robin-phox/delphox-back.svg",
  56617. extra: 1269/1083,
  56618. bottom: 15/1284
  56619. },
  56620. form: "delphox",
  56621. },
  56622. mienshao_front: {
  56623. height: math.unit(4 + 7/12, "feet"),
  56624. weight: math.unit(78.3, "lb"),
  56625. name: "Front",
  56626. image: {
  56627. source: "./media/characters/robin-phox/mienshao-front.svg",
  56628. extra: 1052/970,
  56629. bottom: 108/1160
  56630. },
  56631. form: "mienshao",
  56632. default: true
  56633. },
  56634. mienshao_frontNsfw: {
  56635. height: math.unit(4 + 7/12, "feet"),
  56636. weight: math.unit(78.3, "lb"),
  56637. name: "Front (NSFW)",
  56638. image: {
  56639. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56640. extra: 1052/970,
  56641. bottom: 108/1160
  56642. },
  56643. form: "mienshao",
  56644. },
  56645. mienshao_back: {
  56646. height: math.unit(4 + 7/12, "feet"),
  56647. weight: math.unit(78.3, "lb"),
  56648. name: "Back",
  56649. image: {
  56650. source: "./media/characters/robin-phox/mienshao-back.svg",
  56651. extra: 1102/982,
  56652. bottom: 32/1134
  56653. },
  56654. form: "mienshao",
  56655. },
  56656. inteleon_front: {
  56657. height: math.unit(6 + 3/12, "feet"),
  56658. weight: math.unit(99.6, "lb"),
  56659. name: "Front",
  56660. image: {
  56661. source: "./media/characters/robin-phox/inteleon-front.svg",
  56662. extra: 910/799,
  56663. bottom: 76/986
  56664. },
  56665. form: "inteleon",
  56666. default: true
  56667. },
  56668. inteleon_frontNsfw: {
  56669. height: math.unit(6 + 3/12, "feet"),
  56670. weight: math.unit(99.6, "lb"),
  56671. name: "Front (NSFW)",
  56672. image: {
  56673. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56674. extra: 910/799,
  56675. bottom: 76/986
  56676. },
  56677. form: "inteleon",
  56678. },
  56679. inteleon_back: {
  56680. height: math.unit(6 + 3/12, "feet"),
  56681. weight: math.unit(99.6, "lb"),
  56682. name: "Back",
  56683. image: {
  56684. source: "./media/characters/robin-phox/inteleon-back.svg",
  56685. extra: 907/796,
  56686. bottom: 25/932
  56687. },
  56688. form: "inteleon",
  56689. },
  56690. reshiram_front: {
  56691. height: math.unit(10 + 6/12, "feet"),
  56692. weight: math.unit(727.5, "lb"),
  56693. name: "Front",
  56694. image: {
  56695. source: "./media/characters/robin-phox/reshiram-front.svg",
  56696. extra: 1198/940,
  56697. bottom: 123/1321
  56698. },
  56699. form: "reshiram",
  56700. },
  56701. reshiram_frontNsfw: {
  56702. height: math.unit(10 + 6/12, "feet"),
  56703. weight: math.unit(727.5, "lb"),
  56704. name: "Front-nsfw",
  56705. image: {
  56706. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56707. extra: 1198/940,
  56708. bottom: 123/1321
  56709. },
  56710. form: "reshiram",
  56711. },
  56712. reshiram_back: {
  56713. height: math.unit(10 + 6/12, "feet"),
  56714. weight: math.unit(727.5, "lb"),
  56715. name: "Back",
  56716. image: {
  56717. source: "./media/characters/robin-phox/reshiram-back.svg",
  56718. extra: 1024/904,
  56719. bottom: 85/1109
  56720. },
  56721. form: "reshiram",
  56722. },
  56723. samurott_front: {
  56724. height: math.unit(8, "feet"),
  56725. weight: math.unit(208.6, "lb"),
  56726. name: "Front",
  56727. image: {
  56728. source: "./media/characters/robin-phox/samurott-front.svg",
  56729. extra: 1048/984,
  56730. bottom: 100/1148
  56731. },
  56732. form: "samurott",
  56733. },
  56734. samurott_frontNsfw: {
  56735. height: math.unit(8, "feet"),
  56736. weight: math.unit(208.6, "lb"),
  56737. name: "Front-nsfw",
  56738. image: {
  56739. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56740. extra: 1048/984,
  56741. bottom: 100/1148
  56742. },
  56743. form: "samurott",
  56744. },
  56745. samurott_back: {
  56746. height: math.unit(8, "feet"),
  56747. weight: math.unit(208.6, "lb"),
  56748. name: "Back",
  56749. image: {
  56750. source: "./media/characters/robin-phox/samurott-back.svg",
  56751. extra: 1110/1042,
  56752. bottom: 12/1122
  56753. },
  56754. form: "samurott",
  56755. },
  56756. samurott_feral: {
  56757. height: math.unit(4 + 11/12, "feet"),
  56758. weight: math.unit(208.6, "lb"),
  56759. name: "Feral",
  56760. image: {
  56761. source: "./media/characters/robin-phox/samurott-feral.svg",
  56762. extra: 766/681,
  56763. bottom: 108/874
  56764. },
  56765. form: "samurott",
  56766. },
  56767. },
  56768. [
  56769. {
  56770. name: "Normal",
  56771. height: math.unit(2, "feet"),
  56772. default: true,
  56773. form: "snivy"
  56774. },
  56775. {
  56776. name: "Normal",
  56777. height: math.unit(6, "feet"),
  56778. default: true,
  56779. form: "yoshi"
  56780. },
  56781. {
  56782. name: "Normal",
  56783. height: math.unit(4 + 11/12, "feet"),
  56784. default: true,
  56785. form: "delphox"
  56786. },
  56787. {
  56788. name: "Normal",
  56789. height: math.unit(4 + 7/12, "feet"),
  56790. default: true,
  56791. form: "mienshao"
  56792. },
  56793. {
  56794. name: "Normal",
  56795. height: math.unit(6 + 3/12, "feet"),
  56796. default: true,
  56797. form: "inteleon"
  56798. },
  56799. {
  56800. name: "Normal",
  56801. height: math.unit(10 + 6/12, "feet"),
  56802. default: true,
  56803. form: "reshiram"
  56804. },
  56805. {
  56806. name: "Normal",
  56807. height: math.unit(8, "feet"),
  56808. default: true,
  56809. form: "samurott"
  56810. },
  56811. {
  56812. name: "Macro",
  56813. height: math.unit(500, "feet"),
  56814. allForms: true
  56815. },
  56816. {
  56817. name: "Mega Macro",
  56818. height: math.unit(10, "earths"),
  56819. allForms: true
  56820. },
  56821. {
  56822. name: "Giga Macro",
  56823. height: math.unit(1, "galaxy"),
  56824. allForms: true
  56825. },
  56826. {
  56827. name: "Godly Macro",
  56828. height: math.unit(1e10, "multiverses"),
  56829. allForms: true
  56830. },
  56831. ],
  56832. {
  56833. "snivy": {
  56834. name: "Snivy",
  56835. default: true
  56836. },
  56837. "yoshi": {
  56838. name: "Yoshi",
  56839. },
  56840. "delphox": {
  56841. name: "Delphox",
  56842. },
  56843. "mienshao": {
  56844. name: "Mienshao",
  56845. },
  56846. "inteleon": {
  56847. name: "Inteleon",
  56848. },
  56849. "reshiram": {
  56850. name: "Reshiram",
  56851. },
  56852. "samurott": {
  56853. name: "Samurott",
  56854. },
  56855. }
  56856. ))
  56857. characterMakers.push(() => makeCharacter(
  56858. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56859. {
  56860. front: {
  56861. height: math.unit(4, "feet"),
  56862. name: "Front",
  56863. image: {
  56864. source: "./media/characters/ash-leung/front.svg",
  56865. extra: 1916/1792,
  56866. bottom: 50/1966
  56867. }
  56868. },
  56869. },
  56870. [
  56871. {
  56872. name: "Atomic",
  56873. height: math.unit(1, "angstrom")
  56874. },
  56875. {
  56876. name: "Microscopic",
  56877. height: math.unit(4000, "angstroms")
  56878. },
  56879. {
  56880. name: "Speck",
  56881. height: math.unit(1, "mm")
  56882. },
  56883. {
  56884. name: "Small",
  56885. height: math.unit(1, "inch")
  56886. },
  56887. {
  56888. name: "Normal",
  56889. height: math.unit(4, "feet"),
  56890. default: true
  56891. },
  56892. ]
  56893. ))
  56894. characterMakers.push(() => makeCharacter(
  56895. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56896. {
  56897. frontDressed: {
  56898. height: math.unit(2.08, "meters"),
  56899. weight: math.unit(175, "lb"),
  56900. name: "Front (Dressed)",
  56901. image: {
  56902. source: "./media/characters/carie/front-dressed.svg",
  56903. extra: 456/417,
  56904. bottom: 7/463
  56905. }
  56906. },
  56907. backDressed: {
  56908. height: math.unit(2.08, "meters"),
  56909. weight: math.unit(175, "lb"),
  56910. name: "Back (Dressed)",
  56911. image: {
  56912. source: "./media/characters/carie/back-dressed.svg",
  56913. extra: 455/414,
  56914. bottom: 11/466
  56915. }
  56916. },
  56917. front: {
  56918. height: math.unit(2, "meters"),
  56919. weight: math.unit(175, "lb"),
  56920. name: "Front",
  56921. image: {
  56922. source: "./media/characters/carie/front.svg",
  56923. extra: 438/399,
  56924. bottom: 12/450
  56925. }
  56926. },
  56927. back: {
  56928. height: math.unit(2, "meters"),
  56929. weight: math.unit(175, "lb"),
  56930. name: "Back",
  56931. image: {
  56932. source: "./media/characters/carie/back.svg",
  56933. extra: 438/397,
  56934. bottom: 7/445
  56935. }
  56936. },
  56937. },
  56938. [
  56939. {
  56940. name: "Normal",
  56941. height: math.unit(2.08, "meters"),
  56942. default: true
  56943. },
  56944. {
  56945. name: "Macro",
  56946. height: math.unit(2.08e3, "meters")
  56947. },
  56948. {
  56949. name: "Mega Macro",
  56950. height: math.unit(2.08e6, "meters")
  56951. },
  56952. {
  56953. name: "Giga Macro",
  56954. height: math.unit(2.08e9, "meters")
  56955. },
  56956. {
  56957. name: "Tera Macro",
  56958. height: math.unit(2.08e12, "meters")
  56959. },
  56960. {
  56961. name: "Peta Macro",
  56962. height: math.unit(2.08e15, "meters")
  56963. },
  56964. {
  56965. name: "Exa Macro",
  56966. height: math.unit(2.08e18, "meters")
  56967. },
  56968. {
  56969. name: "Zetta Macro",
  56970. height: math.unit(2.08e21, "meters")
  56971. },
  56972. {
  56973. name: "Yotta Macro",
  56974. height: math.unit(2.08e24, "meters")
  56975. },
  56976. ]
  56977. ))
  56978. characterMakers.push(() => makeCharacter(
  56979. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  56980. {
  56981. front: {
  56982. height: math.unit(5 + 2/12, "feet"),
  56983. weight: math.unit(120, "lb"),
  56984. name: "Front",
  56985. image: {
  56986. source: "./media/characters/sai-bree/front.svg",
  56987. extra: 1843/1702,
  56988. bottom: 91/1934
  56989. }
  56990. },
  56991. back: {
  56992. height: math.unit(5 + 2/12, "feet"),
  56993. weight: math.unit(120, "lb"),
  56994. name: "Back",
  56995. image: {
  56996. source: "./media/characters/sai-bree/back.svg",
  56997. extra: 1809/1637,
  56998. bottom: 56/1865
  56999. }
  57000. },
  57001. },
  57002. [
  57003. {
  57004. name: "Normal",
  57005. height: math.unit(5 + 2/12, "feet"),
  57006. default: true
  57007. },
  57008. {
  57009. name: "Macro",
  57010. height: math.unit(500, "feet")
  57011. },
  57012. ]
  57013. ))
  57014. characterMakers.push(() => makeCharacter(
  57015. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57016. {
  57017. side: {
  57018. height: math.unit(0.77, "meters"),
  57019. weight: math.unit(120, "lb"),
  57020. name: "Side",
  57021. image: {
  57022. source: "./media/characters/davwyn/side.svg",
  57023. extra: 1557/1225,
  57024. bottom: 131/1688
  57025. }
  57026. },
  57027. front: {
  57028. height: math.unit(0.835410, "meters"),
  57029. weight: math.unit(120, "lb"),
  57030. name: "Front",
  57031. image: {
  57032. source: "./media/characters/davwyn/front.svg",
  57033. extra: 870/843,
  57034. bottom: 175/1045
  57035. }
  57036. },
  57037. },
  57038. [
  57039. {
  57040. name: "Minidrake",
  57041. height: math.unit(0.77/4, "meters")
  57042. },
  57043. {
  57044. name: "Normal",
  57045. height: math.unit(0.77, "meters"),
  57046. default: true
  57047. },
  57048. ]
  57049. ))
  57050. characterMakers.push(() => makeCharacter(
  57051. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57052. {
  57053. front: {
  57054. height: math.unit(10 + 3/12, "feet"),
  57055. weight: math.unit(2857, "lb"),
  57056. name: "Front",
  57057. image: {
  57058. source: "./media/characters/balans/front.svg",
  57059. extra: 427/402,
  57060. bottom: 26/453
  57061. }
  57062. },
  57063. side: {
  57064. height: math.unit(10 + 3/12, "feet"),
  57065. weight: math.unit(2857, "lb"),
  57066. name: "Side",
  57067. image: {
  57068. source: "./media/characters/balans/side.svg",
  57069. extra: 397/371,
  57070. bottom: 17/414
  57071. }
  57072. },
  57073. back: {
  57074. height: math.unit(10 + 3/12, "feet"),
  57075. weight: math.unit(2857, "lb"),
  57076. name: "Back",
  57077. image: {
  57078. source: "./media/characters/balans/back.svg",
  57079. extra: 408/381,
  57080. bottom: 14/422
  57081. }
  57082. },
  57083. hand: {
  57084. height: math.unit(1.15, "feet"),
  57085. name: "Hand",
  57086. image: {
  57087. source: "./media/characters/balans/hand.svg"
  57088. }
  57089. },
  57090. footRest: {
  57091. height: math.unit(3.1, "feet"),
  57092. name: "Foot (Rest)",
  57093. image: {
  57094. source: "./media/characters/balans/foot-rest.svg"
  57095. }
  57096. },
  57097. footActive: {
  57098. height: math.unit(3.5, "feet"),
  57099. name: "Foot (Active)",
  57100. image: {
  57101. source: "./media/characters/balans/foot-active.svg"
  57102. }
  57103. },
  57104. },
  57105. [
  57106. {
  57107. name: "Normal",
  57108. height: math.unit(10 + 3/12, "feet"),
  57109. default: true
  57110. },
  57111. ]
  57112. ))
  57113. characterMakers.push(() => makeCharacter(
  57114. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57115. {
  57116. side: {
  57117. height: math.unit(9, "meters"),
  57118. weight: math.unit(114, "tonnes"),
  57119. name: "Side",
  57120. image: {
  57121. source: "./media/characters/eldkveikir/side.svg",
  57122. extra: 1927/338,
  57123. bottom: 42/1969
  57124. }
  57125. },
  57126. sitting: {
  57127. height: math.unit(13.4, "meters"),
  57128. weight: math.unit(114, "tonnes"),
  57129. name: "Sitting",
  57130. image: {
  57131. source: "./media/characters/eldkveikir/sitting.svg",
  57132. extra: 1108/963,
  57133. bottom: 610/1718
  57134. }
  57135. },
  57136. maw: {
  57137. height: math.unit(8.36, "meters"),
  57138. name: "Maw",
  57139. image: {
  57140. source: "./media/characters/eldkveikir/maw.svg"
  57141. }
  57142. },
  57143. hand: {
  57144. height: math.unit(4.84, "meters"),
  57145. name: "Hand",
  57146. image: {
  57147. source: "./media/characters/eldkveikir/hand.svg"
  57148. }
  57149. },
  57150. foot: {
  57151. height: math.unit(6.9, "meters"),
  57152. name: "Foot",
  57153. image: {
  57154. source: "./media/characters/eldkveikir/foot.svg"
  57155. }
  57156. },
  57157. genitals: {
  57158. height: math.unit(9.6, "meters"),
  57159. name: "Genitals",
  57160. image: {
  57161. source: "./media/characters/eldkveikir/genitals.svg"
  57162. }
  57163. },
  57164. },
  57165. [
  57166. {
  57167. name: "Normal",
  57168. height: math.unit(9, "meters"),
  57169. default: true
  57170. },
  57171. ]
  57172. ))
  57173. characterMakers.push(() => makeCharacter(
  57174. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57175. {
  57176. front: {
  57177. height: math.unit(14, "feet"),
  57178. weight: math.unit(4100, "lb"),
  57179. name: "Front",
  57180. image: {
  57181. source: "./media/characters/arrow/front.svg",
  57182. extra: 330/318,
  57183. bottom: 56/386
  57184. }
  57185. },
  57186. },
  57187. [
  57188. {
  57189. name: "Normal",
  57190. height: math.unit(14, "feet"),
  57191. default: true
  57192. },
  57193. {
  57194. name: "Minimacro",
  57195. height: math.unit(63, "feet")
  57196. },
  57197. {
  57198. name: "Macro",
  57199. height: math.unit(630, "feet")
  57200. },
  57201. {
  57202. name: "Megamacro",
  57203. height: math.unit(12600, "feet")
  57204. },
  57205. {
  57206. name: "Gigamacro",
  57207. height: math.unit(18000, "miles")
  57208. },
  57209. ]
  57210. ))
  57211. characterMakers.push(() => makeCharacter(
  57212. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57213. {
  57214. front: {
  57215. height: math.unit(10, "feet"),
  57216. weight: math.unit(2.4, "tons"),
  57217. name: "Front",
  57218. image: {
  57219. source: "./media/characters/3yk-k0-unit/front.svg",
  57220. extra: 573/561,
  57221. bottom: 33/606
  57222. }
  57223. },
  57224. back: {
  57225. height: math.unit(10, "feet"),
  57226. weight: math.unit(2.4, "tons"),
  57227. name: "Back",
  57228. image: {
  57229. source: "./media/characters/3yk-k0-unit/back.svg",
  57230. extra: 614/573,
  57231. bottom: 32/646
  57232. }
  57233. },
  57234. maw: {
  57235. height: math.unit(2.15, "feet"),
  57236. name: "Maw",
  57237. image: {
  57238. source: "./media/characters/3yk-k0-unit/maw.svg"
  57239. }
  57240. },
  57241. },
  57242. [
  57243. {
  57244. name: "Normal",
  57245. height: math.unit(10, "feet"),
  57246. default: true
  57247. },
  57248. ]
  57249. ))
  57250. characterMakers.push(() => makeCharacter(
  57251. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57252. {
  57253. front: {
  57254. height: math.unit(8 + 8/12, "feet"),
  57255. name: "Front",
  57256. image: {
  57257. source: "./media/characters/nemo/front.svg",
  57258. extra: 1308/1217,
  57259. bottom: 57/1365
  57260. }
  57261. },
  57262. },
  57263. [
  57264. {
  57265. name: "Normal",
  57266. height: math.unit(8 + 8/12, "feet"),
  57267. default: true
  57268. },
  57269. ]
  57270. ))
  57271. characterMakers.push(() => makeCharacter(
  57272. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57273. {
  57274. front: {
  57275. height: math.unit(8, "feet"),
  57276. weight: math.unit(760, "lb"),
  57277. name: "Front",
  57278. image: {
  57279. source: "./media/characters/rexx/front.svg",
  57280. extra: 786/750,
  57281. bottom: 17/803
  57282. },
  57283. extraAttributes: {
  57284. "pawLength": {
  57285. name: "Paw Length",
  57286. power: 1,
  57287. type: "length",
  57288. base: math.unit(27, "inches")
  57289. },
  57290. }
  57291. },
  57292. },
  57293. [
  57294. {
  57295. name: "Micro",
  57296. height: math.unit(2, "inches")
  57297. },
  57298. {
  57299. name: "Normal",
  57300. height: math.unit(8, "feet"),
  57301. default: true
  57302. },
  57303. {
  57304. name: "Macro",
  57305. height: math.unit(150, "feet")
  57306. },
  57307. ]
  57308. ))
  57309. characterMakers.push(() => makeCharacter(
  57310. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57311. {
  57312. front: {
  57313. height: math.unit(18, "feet"),
  57314. weight: math.unit(1975, "lb"),
  57315. name: "Front",
  57316. image: {
  57317. source: "./media/characters/draco/front.svg",
  57318. extra: 1325/1241,
  57319. bottom: 83/1408
  57320. }
  57321. },
  57322. back: {
  57323. height: math.unit(18, "feet"),
  57324. weight: math.unit(1975, "lb"),
  57325. name: "Back",
  57326. image: {
  57327. source: "./media/characters/draco/back.svg",
  57328. extra: 1332/1250,
  57329. bottom: 43/1375
  57330. }
  57331. },
  57332. dick: {
  57333. height: math.unit(7.5, "feet"),
  57334. name: "Dick",
  57335. image: {
  57336. source: "./media/characters/draco/dick.svg"
  57337. }
  57338. },
  57339. },
  57340. [
  57341. {
  57342. name: "Normal",
  57343. height: math.unit(18, "feet"),
  57344. default: true
  57345. },
  57346. ]
  57347. ))
  57348. characterMakers.push(() => makeCharacter(
  57349. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57350. {
  57351. front: {
  57352. height: math.unit(3.2, "meters"),
  57353. name: "Front",
  57354. image: {
  57355. source: "./media/characters/harriett/front.svg",
  57356. extra: 1966/1915,
  57357. bottom: 9/1975
  57358. }
  57359. },
  57360. },
  57361. [
  57362. {
  57363. name: "Normal",
  57364. height: math.unit(3.2, "meters"),
  57365. default: true
  57366. },
  57367. ]
  57368. ))
  57369. characterMakers.push(() => makeCharacter(
  57370. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57371. {
  57372. sitting: {
  57373. height: math.unit(0.8, "meter"),
  57374. name: "Sitting",
  57375. image: {
  57376. source: "./media/characters/serpentus/sitting.svg",
  57377. extra: 293/290,
  57378. bottom: 140/433
  57379. }
  57380. },
  57381. },
  57382. [
  57383. {
  57384. name: "Normal",
  57385. height: math.unit(0.8, "meter"),
  57386. default: true
  57387. },
  57388. ]
  57389. ))
  57390. characterMakers.push(() => makeCharacter(
  57391. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57392. {
  57393. front: {
  57394. height: math.unit(5.7174385736, "feet"),
  57395. name: "Front",
  57396. image: {
  57397. source: "./media/characters/nova-polecat/front.svg",
  57398. extra: 1317/1216,
  57399. bottom: 92/1409
  57400. }
  57401. },
  57402. },
  57403. [
  57404. {
  57405. name: "Normal",
  57406. height: math.unit(5.7174385736, "feet"),
  57407. default: true
  57408. },
  57409. ]
  57410. ))
  57411. characterMakers.push(() => makeCharacter(
  57412. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57413. {
  57414. front: {
  57415. height: math.unit(5 + 4/12, "feet"),
  57416. weight: math.unit(250, "lb"),
  57417. name: "Front",
  57418. image: {
  57419. source: "./media/characters/mook/front.svg",
  57420. extra: 1088/1037,
  57421. bottom: 132/1220
  57422. }
  57423. },
  57424. back: {
  57425. height: math.unit(5 + 1/12, "feet"),
  57426. weight: math.unit(250, "lb"),
  57427. name: "Back",
  57428. image: {
  57429. source: "./media/characters/mook/back.svg",
  57430. extra: 1184/905,
  57431. bottom: 96/1280
  57432. }
  57433. },
  57434. head: {
  57435. height: math.unit(1.85, "feet"),
  57436. name: "Head",
  57437. image: {
  57438. source: "./media/characters/mook/head.svg"
  57439. }
  57440. },
  57441. hand: {
  57442. height: math.unit(1.9, "feet"),
  57443. name: "Hand",
  57444. image: {
  57445. source: "./media/characters/mook/hand.svg"
  57446. }
  57447. },
  57448. palm: {
  57449. height: math.unit(1.84, "feet"),
  57450. name: "Palm",
  57451. image: {
  57452. source: "./media/characters/mook/palm.svg"
  57453. }
  57454. },
  57455. foot: {
  57456. height: math.unit(1.44, "feet"),
  57457. name: "Foot",
  57458. image: {
  57459. source: "./media/characters/mook/foot.svg"
  57460. }
  57461. },
  57462. sole: {
  57463. height: math.unit(1.44, "feet"),
  57464. name: "Sole",
  57465. image: {
  57466. source: "./media/characters/mook/sole.svg"
  57467. }
  57468. },
  57469. },
  57470. [
  57471. {
  57472. name: "Normal",
  57473. height: math.unit(5 + 4/12, "feet"),
  57474. default: true
  57475. },
  57476. {
  57477. name: "Big",
  57478. height: math.unit(12, "feet")
  57479. },
  57480. ]
  57481. ))
  57482. characterMakers.push(() => makeCharacter(
  57483. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57484. {
  57485. front: {
  57486. height: math.unit(6 + 10/12, "feet"),
  57487. weight: math.unit(233, "lb"),
  57488. name: "Front",
  57489. image: {
  57490. source: "./media/characters/kayla/front.svg",
  57491. extra: 1850/1775,
  57492. bottom: 65/1915
  57493. }
  57494. },
  57495. },
  57496. [
  57497. {
  57498. name: "Normal",
  57499. height: math.unit(6 + 10/12, "feet"),
  57500. default: true
  57501. },
  57502. {
  57503. name: "Amazonian",
  57504. height: math.unit(12 + 5/12, "feet")
  57505. },
  57506. {
  57507. name: "Mini Giantess",
  57508. height: math.unit(26, "feet")
  57509. },
  57510. {
  57511. name: "Giantess",
  57512. height: math.unit(200, "feet")
  57513. },
  57514. {
  57515. name: "Mega Giantess",
  57516. height: math.unit(2500, "feet")
  57517. },
  57518. {
  57519. name: "City Sized",
  57520. height: math.unit(50, "miles")
  57521. },
  57522. {
  57523. name: "Country Sized",
  57524. height: math.unit(500, "miles")
  57525. },
  57526. {
  57527. name: "Continent Sized",
  57528. height: math.unit(2500, "miles")
  57529. },
  57530. {
  57531. name: "Planet Sized",
  57532. height: math.unit(10000, "miles")
  57533. },
  57534. {
  57535. name: "Star Sized",
  57536. height: math.unit(5e6, "miles")
  57537. },
  57538. {
  57539. name: "Solar System Sized",
  57540. height: math.unit(125, "AU")
  57541. },
  57542. {
  57543. name: "Galaxy Sized",
  57544. height: math.unit(300e3, "lightyears")
  57545. },
  57546. {
  57547. name: "Universe Sized",
  57548. height: math.unit(200e9, "lightyears")
  57549. },
  57550. {
  57551. name: "Multiverse Sized",
  57552. height: math.unit(20, "exauniverses")
  57553. },
  57554. {
  57555. name: "Mother of Existence",
  57556. height: math.unit(1e6, "yottauniverses")
  57557. },
  57558. ]
  57559. ))
  57560. characterMakers.push(() => makeCharacter(
  57561. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57562. {
  57563. side: {
  57564. height: math.unit(9.5, "meters"),
  57565. name: "Side",
  57566. image: {
  57567. source: "./media/characters/kulve-ragnarok/side.svg",
  57568. extra: 364/326,
  57569. bottom: 50/414
  57570. }
  57571. },
  57572. },
  57573. [
  57574. {
  57575. name: "Normal",
  57576. height: math.unit(9.5, "meters"),
  57577. default: true
  57578. },
  57579. ]
  57580. ))
  57581. characterMakers.push(() => makeCharacter(
  57582. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57583. {
  57584. front: {
  57585. height: math.unit(8 + 9/12, "feet"),
  57586. name: "Front",
  57587. image: {
  57588. source: "./media/characters/atlas-goat/front.svg",
  57589. extra: 1462/1323,
  57590. bottom: 12/1474
  57591. }
  57592. },
  57593. },
  57594. [
  57595. {
  57596. name: "Normal",
  57597. height: math.unit(8 + 9/12, "feet"),
  57598. default: true
  57599. },
  57600. {
  57601. name: "Skyline",
  57602. height: math.unit(845, "feet")
  57603. },
  57604. {
  57605. name: "Orbital",
  57606. height: math.unit(93000, "miles")
  57607. },
  57608. {
  57609. name: "Constellation",
  57610. height: math.unit(27000, "lightyears")
  57611. },
  57612. ]
  57613. ))
  57614. //characters
  57615. function makeCharacters() {
  57616. const results = [];
  57617. characterMakers.forEach(character => {
  57618. results.push(character());
  57619. });
  57620. return results;
  57621. }