less copy protection, more size visualization
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

57318 lines
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["lizard"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["mustelid"]
  1800. },
  1801. "teshari": {
  1802. name: "Teshari",
  1803. parents: ["avian", "raptor"]
  1804. },
  1805. "alicorn": {
  1806. name: "Alicorn",
  1807. parents: ["horse"]
  1808. },
  1809. "atlas-moth": {
  1810. name: "Atlas Moth",
  1811. parents: ["moth"]
  1812. },
  1813. "owlbear": {
  1814. name: "Owlbear",
  1815. parents: ["owl", "bear", "monster"]
  1816. },
  1817. "owl": {
  1818. name: "Owl",
  1819. parents: ["avian"]
  1820. },
  1821. "silvertongue": {
  1822. name: "Silvertongue",
  1823. parents: ["reptile"]
  1824. },
  1825. "ahuizotl": {
  1826. name: "Ahuizotl",
  1827. parents: ["monster"]
  1828. },
  1829. "ender-dragon": {
  1830. name: "Ender Dragon",
  1831. parents: ["dragon"]
  1832. },
  1833. "bruhathkayosaurus": {
  1834. name: "Bruhathkayosaurus",
  1835. parents: ["sauropod"]
  1836. },
  1837. "sauropod": {
  1838. name: "Sauropod",
  1839. parents: ["dinosaur"]
  1840. },
  1841. "black-sable-antelope": {
  1842. name: "Black Sable Antelope",
  1843. parents: ["antelope"]
  1844. },
  1845. "slime": {
  1846. name: "Slime",
  1847. parents: ["goo"]
  1848. },
  1849. "utahraptor": {
  1850. name: "Utahraptor",
  1851. parents: ["raptor"]
  1852. },
  1853. "indian-giant-squirrel": {
  1854. name: "Indian Giant Squirrel",
  1855. parents: ["squirrel"]
  1856. },
  1857. "golden-retriever": {
  1858. name: "Golden Retriever",
  1859. parents: ["dog"]
  1860. },
  1861. "triceratops": {
  1862. name: "Triceratops",
  1863. parents: ["dinosaur"]
  1864. },
  1865. "drake": {
  1866. name: "Drake",
  1867. parents: ["dragon"]
  1868. },
  1869. "okapi": {
  1870. name: "Okapi",
  1871. parents: ["giraffe"]
  1872. },
  1873. "arctic-hare": {
  1874. name: "Arctic Hare",
  1875. parents: ["hare"]
  1876. },
  1877. "hare": {
  1878. name: "Hare",
  1879. parents: ["leporidae"]
  1880. },
  1881. "leporidae": {
  1882. name: "Leporidae",
  1883. parents: ["mammal"]
  1884. },
  1885. "leopard-gecko": {
  1886. name: "Leopard Gecko",
  1887. parents: ["gecko"]
  1888. },
  1889. "dreamspawn": {
  1890. name: "Dreamspawn",
  1891. parents: ["illusion"]
  1892. },
  1893. "illusion": {
  1894. name: "Illusion",
  1895. parents: []
  1896. },
  1897. "purrloin": {
  1898. name: "Purrloin",
  1899. parents: ["cat", "pokemon"]
  1900. },
  1901. "noivern": {
  1902. name: "Noivern",
  1903. parents: ["bat", "dragon", "pokemon"]
  1904. },
  1905. "hedgehog": {
  1906. name: "Hedgehog",
  1907. parents: ["mammal"]
  1908. },
  1909. "liger": {
  1910. name: "Liger",
  1911. parents: ["lion", "tiger", "hybrid"]
  1912. },
  1913. "hybrid": {
  1914. name: "Hybrid",
  1915. parents: []
  1916. },
  1917. "drider": {
  1918. name: "Drider",
  1919. parents: ["spider"]
  1920. },
  1921. "sabresune": {
  1922. name: "Sabresune",
  1923. parents: ["kitsune", "sabertooth-tiger"]
  1924. },
  1925. "ditto": {
  1926. name: "Ditto",
  1927. parents: ["pokemon", "goo"]
  1928. },
  1929. "amogus": {
  1930. name: "Amogus",
  1931. parents: ["deity"]
  1932. },
  1933. "ferret": {
  1934. name: "Ferret",
  1935. parents: ["mustelid"]
  1936. },
  1937. "guinea-pig": {
  1938. name: "Guinea Pig",
  1939. parents: ["rodent"]
  1940. },
  1941. "viper": {
  1942. name: "Viper",
  1943. parents: ["snake"]
  1944. },
  1945. "cinderace": {
  1946. name: "Cinderace",
  1947. parents: ["pokemon", "rabbit"]
  1948. },
  1949. "caudin": {
  1950. name: "Caudin",
  1951. parents: ["dragon"]
  1952. },
  1953. "red-winged-blackbird": {
  1954. name: "Red-Winged Blackbird",
  1955. parents: ["avian"]
  1956. },
  1957. "hooded-wheater": {
  1958. name: "Hooded Wheater",
  1959. parents: ["passerine"]
  1960. },
  1961. "passerine": {
  1962. name: "Passerine",
  1963. parents: ["avian"]
  1964. },
  1965. "gieeg": {
  1966. name: "Gieeg",
  1967. parents: ["alien"]
  1968. },
  1969. "ringtail": {
  1970. name: "Ringtail",
  1971. parents: ["raccoon"]
  1972. },
  1973. "hisuian-zoroark": {
  1974. name: "Hisuian Zoroark",
  1975. parents: ["zoroark", "hisuian"]
  1976. },
  1977. "hisuian": {
  1978. name: "Hisuian",
  1979. parents: ["regional-pokemon"]
  1980. },
  1981. "regional-pokemon": {
  1982. name: "Regional Pokemon",
  1983. parents: ["pokemon"]
  1984. },
  1985. "cybeast": {
  1986. name: "Cybeast",
  1987. parents: ["computer-virus"]
  1988. },
  1989. "javira-dragon": {
  1990. name: "Javira Dragon",
  1991. parents: ["dragon"]
  1992. },
  1993. "koopew": {
  1994. name: "Koopew",
  1995. parents: ["dragon", "alien"]
  1996. },
  1997. "nevrean": {
  1998. name: "Nevrean",
  1999. parents: ["avian", "vilous"]
  2000. },
  2001. "vilous": {
  2002. name: "Vilous Species",
  2003. parents: []
  2004. },
  2005. "titanoboa": {
  2006. name: "Titanoboa",
  2007. parents: ["snake"]
  2008. },
  2009. "raichu": {
  2010. name: "Raichu",
  2011. parents: ["pikachu"]
  2012. },
  2013. "taur": {
  2014. name: "Taur",
  2015. parents: []
  2016. },
  2017. "continental-giant-rabbit": {
  2018. name: "Continental Giant Rabbit",
  2019. parents: ["rabbit"]
  2020. },
  2021. "demigryph": {
  2022. name: "Demigryph",
  2023. parents: ["lion", "eagle"]
  2024. },
  2025. "bald-eagle": {
  2026. name: "Bald Eagle",
  2027. parents: ["eagle"]
  2028. },
  2029. "kestrel": {
  2030. name: "Kestrel",
  2031. parents: ["falcon"]
  2032. },
  2033. "mockingbird": {
  2034. name: "Mockingbird",
  2035. parents: ["songbird"]
  2036. },
  2037. "songbird": {
  2038. name: "Songbird",
  2039. parents: ["avian"]
  2040. },
  2041. "bird-of-prey": {
  2042. name: "Bird of Prey",
  2043. parents: ["avian"]
  2044. },
  2045. "marowak": {
  2046. name: "Marowak",
  2047. parents: ["pokemon", "reptile"]
  2048. },
  2049. "joltik": {
  2050. name: "Joltik",
  2051. parents: ["pokemon", "insect"]
  2052. },
  2053. "mink": {
  2054. name: "Mink",
  2055. parents: ["mustelid"]
  2056. },
  2057. "sandcat": {
  2058. name: "Sandcat",
  2059. parents: ["cat"]
  2060. },
  2061. "hrothgar": {
  2062. name: "Hrothgar",
  2063. parents: ["cat"]
  2064. },
  2065. "garchomp": {
  2066. name: "Garchomp",
  2067. parents: ["dragon", "pokemon"]
  2068. },
  2069. "nargacuga": {
  2070. name: "Nargacuga",
  2071. parents: ["monster-hunter"]
  2072. },
  2073. "sable": {
  2074. name: "Sable",
  2075. parents: ["marten"]
  2076. },
  2077. "deino": {
  2078. name: "Deino",
  2079. parents: ["pokemon", "dinosaur"]
  2080. },
  2081. "housecat": {
  2082. name: "Housecat",
  2083. parents: ["cat"]
  2084. },
  2085. "bombay-cat": {
  2086. name: "Bombay Cat",
  2087. parents: ["housecat"]
  2088. },
  2089. "maine-coon": {
  2090. name: "Maine Coon",
  2091. parents: ["housecat"]
  2092. },
  2093. "coelacanth": {
  2094. name: "Coelacanth",
  2095. parents: ["fish"]
  2096. },
  2097. "silvally": {
  2098. name: "Silvally",
  2099. parents: ["legendary-pokemon"]
  2100. },
  2101. "legendary-pokemon": {
  2102. name: "Legendary Pokemon",
  2103. parents: ["pokemon"]
  2104. },
  2105. "great-maccao": {
  2106. name: "Great Maccao",
  2107. parents: ["monster-hunter", "raptor"]
  2108. },
  2109. "shapeshifter": {
  2110. name: "shapeshifter",
  2111. parents: []
  2112. },
  2113. "obstagoon": {
  2114. name: "Obstagoon",
  2115. parents: ["zigzagoon"]
  2116. },
  2117. "thomsons-gazelle": {
  2118. name: "Thomsons Gazelle",
  2119. parents: ["gazelle"]
  2120. },
  2121. "gazelle": {
  2122. name: "Gazelle",
  2123. parents: ["antelope"]
  2124. },
  2125. "monkey": {
  2126. name: "Monkey",
  2127. parents: ["mammal"]
  2128. },
  2129. "serval": {
  2130. name: "Serval",
  2131. parents: ["cat"]
  2132. },
  2133. "swampert": {
  2134. name: "Swampert",
  2135. parents: ["pokemon"]
  2136. },
  2137. "red-fox": {
  2138. name: "Red Fox",
  2139. parents: ["fox"]
  2140. },
  2141. "sliver": {
  2142. name: "Sliver",
  2143. parents: ["alien"]
  2144. },
  2145. "sergix": {
  2146. name: "Sergix",
  2147. parents: ["demon", "sergal", "phoenix"]
  2148. },
  2149. "behemoth": {
  2150. name: "Behemoth",
  2151. parents: ["monster", "dragon", "final-fantasy"]
  2152. },
  2153. "final-fantasy": {
  2154. name: "Final Fantasy",
  2155. parents: ["video-games"]
  2156. },
  2157. "video-games": {
  2158. name: "Video Games",
  2159. parents: []
  2160. },
  2161. "eastern-cottontail-rabbit": {
  2162. name: "Eastern Cottontail Rabbit",
  2163. parents: ["rabbit"]
  2164. },
  2165. }
  2166. //species
  2167. function getSpeciesInfo(speciesList) {
  2168. let result = new Set();
  2169. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2170. result.add(entry)
  2171. });
  2172. return Array.from(result);
  2173. };
  2174. function getSpeciesInfoHelper(species) {
  2175. if (!speciesData[species]) {
  2176. console.warn(species + " doesn't exist");
  2177. return [];
  2178. }
  2179. if (speciesData[species].parents) {
  2180. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2181. } else {
  2182. return [species];
  2183. }
  2184. }
  2185. characterMakers.push(() => makeCharacter(
  2186. {
  2187. name: "Fen",
  2188. species: ["crux"],
  2189. description: {
  2190. title: "Bio",
  2191. text: "Very furry. Sheds on everything."
  2192. },
  2193. tags: [
  2194. "anthro",
  2195. "goo"
  2196. ]
  2197. },
  2198. {
  2199. front: {
  2200. height: math.unit(12, "feet"),
  2201. weight: math.unit(2400, "lb"),
  2202. preyCapacity: math.unit(1, "people"),
  2203. name: "Front",
  2204. image: {
  2205. source: "./media/characters/fen/front.svg",
  2206. extra: 1804/1562,
  2207. bottom: 205/2009
  2208. },
  2209. extraAttributes: {
  2210. pawSize: {
  2211. name: "Paw Size",
  2212. power: 2,
  2213. type: "area",
  2214. base: math.unit(0.35, "m^2")
  2215. }
  2216. }
  2217. },
  2218. diving: {
  2219. height: math.unit(4.9, "meters"),
  2220. weight: math.unit(2400, "lb"),
  2221. name: "Diving",
  2222. image: {
  2223. source: "./media/characters/fen/diving.svg"
  2224. }
  2225. },
  2226. sleeby: {
  2227. height: math.unit(3.45, "meters"),
  2228. weight: math.unit(2400, "lb"),
  2229. name: "Sleeby",
  2230. image: {
  2231. source: "./media/characters/fen/sleeby.svg"
  2232. }
  2233. },
  2234. goo: {
  2235. height: math.unit(12, "feet"),
  2236. weight: math.unit(3600, "lb"),
  2237. volume: math.unit(1000, "liters"),
  2238. preyCapacity: math.unit(6, "people"),
  2239. name: "Goo",
  2240. image: {
  2241. source: "./media/characters/fen/goo.svg",
  2242. extra: 1307/1071,
  2243. bottom: 134/1441
  2244. }
  2245. },
  2246. gooNsfw: {
  2247. height: math.unit(12, "feet"),
  2248. weight: math.unit(3750, "lb"),
  2249. volume: math.unit(1000, "liters"),
  2250. preyCapacity: math.unit(6, "people"),
  2251. name: "Goo (NSFW)",
  2252. image: {
  2253. source: "./media/characters/fen/goo-nsfw.svg",
  2254. extra: 1875/1734,
  2255. bottom: 122/1997
  2256. }
  2257. },
  2258. maw: {
  2259. height: math.unit(5.03, "feet"),
  2260. name: "Maw",
  2261. image: {
  2262. source: "./media/characters/fen/maw.svg"
  2263. }
  2264. },
  2265. gooCeiling: {
  2266. height: math.unit(6.6, "feet"),
  2267. weight: math.unit(3000, "lb"),
  2268. volume: math.unit(1000, "liters"),
  2269. preyCapacity: math.unit(6, "people"),
  2270. name: "Goo (Ceiling)",
  2271. image: {
  2272. source: "./media/characters/fen/goo-ceiling.svg"
  2273. }
  2274. },
  2275. paw: {
  2276. height: math.unit(3.77, "feet"),
  2277. name: "Paw",
  2278. image: {
  2279. source: "./media/characters/fen/paw.svg"
  2280. },
  2281. extraAttributes: {
  2282. "toeSize": {
  2283. name: "Toe Size",
  2284. power: 2,
  2285. type: "area",
  2286. base: math.unit(0.02875, "m^2")
  2287. },
  2288. "pawSize": {
  2289. name: "Paw Size",
  2290. power: 2,
  2291. type: "area",
  2292. base: math.unit(0.378, "m^2")
  2293. },
  2294. }
  2295. },
  2296. tail: {
  2297. height: math.unit(12.1, "feet"),
  2298. name: "Tail",
  2299. image: {
  2300. source: "./media/characters/fen/tail.svg"
  2301. }
  2302. },
  2303. tailFull: {
  2304. height: math.unit(12.1, "feet"),
  2305. name: "Full Tail",
  2306. image: {
  2307. source: "./media/characters/fen/tail-full.svg"
  2308. }
  2309. },
  2310. back: {
  2311. height: math.unit(12, "feet"),
  2312. weight: math.unit(2400, "lb"),
  2313. name: "Back",
  2314. image: {
  2315. source: "./media/characters/fen/back.svg",
  2316. },
  2317. info: {
  2318. description: {
  2319. mode: "append",
  2320. text: "\n\nHe is not currently looking at you."
  2321. }
  2322. }
  2323. },
  2324. full: {
  2325. height: math.unit(1.85, "meter"),
  2326. weight: math.unit(3200, "lb"),
  2327. name: "Full",
  2328. image: {
  2329. source: "./media/characters/fen/full.svg",
  2330. extra: 1133/859,
  2331. bottom: 145/1278
  2332. },
  2333. info: {
  2334. description: {
  2335. mode: "append",
  2336. text: "\n\nMunch."
  2337. }
  2338. }
  2339. },
  2340. gooLounging: {
  2341. height: math.unit(4.53, "feet"),
  2342. weight: math.unit(3000, "lb"),
  2343. preyCapacity: math.unit(6, "people"),
  2344. name: "Goo (Lounging)",
  2345. image: {
  2346. source: "./media/characters/fen/goo-lounging.svg",
  2347. bottom: 116 / 613
  2348. }
  2349. },
  2350. lounging: {
  2351. height: math.unit(10.52, "feet"),
  2352. weight: math.unit(2400, "lb"),
  2353. name: "Lounging",
  2354. image: {
  2355. source: "./media/characters/fen/lounging.svg"
  2356. }
  2357. },
  2358. },
  2359. [
  2360. {
  2361. name: "Small",
  2362. height: math.unit(2.2428, "meter")
  2363. },
  2364. {
  2365. name: "Normal",
  2366. height: math.unit(12, "feet"),
  2367. default: true,
  2368. },
  2369. {
  2370. name: "Big",
  2371. height: math.unit(20, "feet")
  2372. },
  2373. {
  2374. name: "Minimacro",
  2375. height: math.unit(40, "feet"),
  2376. info: {
  2377. description: {
  2378. mode: "append",
  2379. text: "\n\nTOO DAMN BIG"
  2380. }
  2381. }
  2382. },
  2383. {
  2384. name: "Macro",
  2385. height: math.unit(100, "feet"),
  2386. info: {
  2387. description: {
  2388. mode: "append",
  2389. text: "\n\nTOO DAMN BIG"
  2390. }
  2391. }
  2392. },
  2393. {
  2394. name: "Megamacro",
  2395. height: math.unit(2, "miles")
  2396. },
  2397. {
  2398. name: "Gigamacro",
  2399. height: math.unit(10, "earths")
  2400. },
  2401. ]
  2402. ))
  2403. characterMakers.push(() => makeCharacter(
  2404. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2405. {
  2406. front: {
  2407. height: math.unit(183, "cm"),
  2408. weight: math.unit(80, "kg"),
  2409. name: "Front",
  2410. image: {
  2411. source: "./media/characters/sofia-fluttertail/front.svg",
  2412. bottom: 0.01,
  2413. extra: 2154 / 2081
  2414. }
  2415. },
  2416. frontAlt: {
  2417. height: math.unit(183, "cm"),
  2418. weight: math.unit(80, "kg"),
  2419. name: "Front (alt)",
  2420. image: {
  2421. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2422. }
  2423. },
  2424. back: {
  2425. height: math.unit(183, "cm"),
  2426. weight: math.unit(80, "kg"),
  2427. name: "Back",
  2428. image: {
  2429. source: "./media/characters/sofia-fluttertail/back.svg"
  2430. }
  2431. },
  2432. kneeling: {
  2433. height: math.unit(125, "cm"),
  2434. weight: math.unit(80, "kg"),
  2435. name: "Kneeling",
  2436. image: {
  2437. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2438. extra: 1033 / 977,
  2439. bottom: 23.7 / 1057
  2440. }
  2441. },
  2442. maw: {
  2443. height: math.unit(183 / 5, "cm"),
  2444. name: "Maw",
  2445. image: {
  2446. source: "./media/characters/sofia-fluttertail/maw.svg"
  2447. }
  2448. },
  2449. mawcloseup: {
  2450. height: math.unit(183 / 5 * 0.41, "cm"),
  2451. name: "Maw (Closeup)",
  2452. image: {
  2453. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2454. }
  2455. },
  2456. paws: {
  2457. height: math.unit(1.17, "feet"),
  2458. name: "Paws",
  2459. image: {
  2460. source: "./media/characters/sofia-fluttertail/paws.svg",
  2461. extra: 851 / 851,
  2462. bottom: 17 / 868
  2463. }
  2464. },
  2465. },
  2466. [
  2467. {
  2468. name: "Normal",
  2469. height: math.unit(1.83, "meter")
  2470. },
  2471. {
  2472. name: "Size Thief",
  2473. height: math.unit(18, "feet")
  2474. },
  2475. {
  2476. name: "50 Foot Collie",
  2477. height: math.unit(50, "feet")
  2478. },
  2479. {
  2480. name: "Macro",
  2481. height: math.unit(96, "feet"),
  2482. default: true
  2483. },
  2484. {
  2485. name: "Megamerger",
  2486. height: math.unit(650, "feet")
  2487. },
  2488. ]
  2489. ))
  2490. characterMakers.push(() => makeCharacter(
  2491. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2492. {
  2493. front: {
  2494. height: math.unit(7, "feet"),
  2495. weight: math.unit(100, "kg"),
  2496. name: "Front",
  2497. image: {
  2498. source: "./media/characters/march/front.svg",
  2499. extra: 1992/1851,
  2500. bottom: 39/2031
  2501. }
  2502. },
  2503. foot: {
  2504. height: math.unit(0.9, "feet"),
  2505. name: "Foot",
  2506. image: {
  2507. source: "./media/characters/march/foot.svg"
  2508. }
  2509. },
  2510. },
  2511. [
  2512. {
  2513. name: "Normal",
  2514. height: math.unit(7.9, "feet")
  2515. },
  2516. {
  2517. name: "Macro",
  2518. height: math.unit(220, "meters")
  2519. },
  2520. {
  2521. name: "Megamacro",
  2522. height: math.unit(2.98, "km"),
  2523. default: true
  2524. },
  2525. {
  2526. name: "Gigamacro",
  2527. height: math.unit(15963, "km")
  2528. },
  2529. {
  2530. name: "Teramacro",
  2531. height: math.unit(2980000000, "km")
  2532. },
  2533. {
  2534. name: "Examacro",
  2535. height: math.unit(250, "parsecs")
  2536. },
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2541. {
  2542. front: {
  2543. height: math.unit(6, "feet"),
  2544. weight: math.unit(60, "kg"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/noir/front.svg",
  2548. extra: 1,
  2549. bottom: 0.032
  2550. }
  2551. },
  2552. },
  2553. [
  2554. {
  2555. name: "Normal",
  2556. height: math.unit(6.6, "feet")
  2557. },
  2558. {
  2559. name: "Macro",
  2560. height: math.unit(500, "feet")
  2561. },
  2562. {
  2563. name: "Megamacro",
  2564. height: math.unit(2.5, "km"),
  2565. default: true
  2566. },
  2567. {
  2568. name: "Gigamacro",
  2569. height: math.unit(22500, "km")
  2570. },
  2571. {
  2572. name: "Teramacro",
  2573. height: math.unit(2500000000, "km")
  2574. },
  2575. {
  2576. name: "Examacro",
  2577. height: math.unit(200, "parsecs")
  2578. },
  2579. ]
  2580. ))
  2581. characterMakers.push(() => makeCharacter(
  2582. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2583. {
  2584. front: {
  2585. height: math.unit(7, "feet"),
  2586. weight: math.unit(100, "kg"),
  2587. name: "Front",
  2588. image: {
  2589. source: "./media/characters/okuri/front.svg",
  2590. extra: 739/665,
  2591. bottom: 39/778
  2592. }
  2593. },
  2594. back: {
  2595. height: math.unit(7, "feet"),
  2596. weight: math.unit(100, "kg"),
  2597. name: "Back",
  2598. image: {
  2599. source: "./media/characters/okuri/back.svg",
  2600. extra: 734/653,
  2601. bottom: 13/747
  2602. }
  2603. },
  2604. sitting: {
  2605. height: math.unit(2.95, "feet"),
  2606. weight: math.unit(100, "kg"),
  2607. name: "Sitting",
  2608. image: {
  2609. source: "./media/characters/okuri/sitting.svg",
  2610. extra: 370/318,
  2611. bottom: 99/469
  2612. }
  2613. },
  2614. },
  2615. [
  2616. {
  2617. name: "Smallest",
  2618. height: math.unit(5 + 2/12, "feet")
  2619. },
  2620. {
  2621. name: "Smaller",
  2622. height: math.unit(300, "feet")
  2623. },
  2624. {
  2625. name: "Small",
  2626. height: math.unit(1000, "feet")
  2627. },
  2628. {
  2629. name: "Macro",
  2630. height: math.unit(1, "mile")
  2631. },
  2632. {
  2633. name: "Mega Macro (Small)",
  2634. height: math.unit(20, "km")
  2635. },
  2636. {
  2637. name: "Mega Macro (Large)",
  2638. height: math.unit(600, "km")
  2639. },
  2640. {
  2641. name: "Giga Macro",
  2642. height: math.unit(10000, "km")
  2643. },
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(577560, "km"),
  2647. default: true
  2648. },
  2649. {
  2650. name: "Large",
  2651. height: math.unit(4, "galaxies")
  2652. },
  2653. {
  2654. name: "Largest",
  2655. height: math.unit(15, "multiverses")
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2661. {
  2662. front: {
  2663. height: math.unit(7, "feet"),
  2664. weight: math.unit(100, "kg"),
  2665. name: "Front",
  2666. image: {
  2667. source: "./media/characters/manny/front.svg",
  2668. extra: 1,
  2669. bottom: 0.06
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(7, "feet"),
  2674. weight: math.unit(100, "kg"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/manny/back.svg",
  2678. extra: 1,
  2679. bottom: 0.014
  2680. }
  2681. },
  2682. },
  2683. [
  2684. {
  2685. name: "Normal",
  2686. height: math.unit(7, "feet"),
  2687. },
  2688. {
  2689. name: "Macro",
  2690. height: math.unit(78, "feet"),
  2691. default: true
  2692. },
  2693. {
  2694. name: "Macro+",
  2695. height: math.unit(300, "meters")
  2696. },
  2697. {
  2698. name: "Macro++",
  2699. height: math.unit(2400, "meters")
  2700. },
  2701. {
  2702. name: "Megamacro",
  2703. height: math.unit(5167, "meters")
  2704. },
  2705. {
  2706. name: "Gigamacro",
  2707. height: math.unit(41769, "miles")
  2708. },
  2709. ]
  2710. ))
  2711. characterMakers.push(() => makeCharacter(
  2712. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2713. {
  2714. front: {
  2715. height: math.unit(7, "feet"),
  2716. weight: math.unit(100, "kg"),
  2717. name: "Front",
  2718. image: {
  2719. source: "./media/characters/adake/front-1.svg"
  2720. }
  2721. },
  2722. frontAlt: {
  2723. height: math.unit(7, "feet"),
  2724. weight: math.unit(100, "kg"),
  2725. name: "Front (Alt)",
  2726. image: {
  2727. source: "./media/characters/adake/front-2.svg",
  2728. extra: 1,
  2729. bottom: 0.01
  2730. }
  2731. },
  2732. back: {
  2733. height: math.unit(7, "feet"),
  2734. weight: math.unit(100, "kg"),
  2735. name: "Back",
  2736. image: {
  2737. source: "./media/characters/adake/back.svg",
  2738. }
  2739. },
  2740. kneel: {
  2741. height: math.unit(5.385, "feet"),
  2742. weight: math.unit(100, "kg"),
  2743. name: "Kneeling",
  2744. image: {
  2745. source: "./media/characters/adake/kneel.svg",
  2746. bottom: 0.052
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(7, "feet"),
  2754. },
  2755. {
  2756. name: "Macro",
  2757. height: math.unit(78, "feet"),
  2758. default: true
  2759. },
  2760. {
  2761. name: "Macro+",
  2762. height: math.unit(300, "meters")
  2763. },
  2764. {
  2765. name: "Macro++",
  2766. height: math.unit(2400, "meters")
  2767. },
  2768. {
  2769. name: "Megamacro",
  2770. height: math.unit(5167, "meters")
  2771. },
  2772. {
  2773. name: "Gigamacro",
  2774. height: math.unit(41769, "miles")
  2775. },
  2776. ]
  2777. ))
  2778. characterMakers.push(() => makeCharacter(
  2779. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2780. {
  2781. front: {
  2782. height: math.unit(1.65, "meters"),
  2783. weight: math.unit(50, "kg"),
  2784. name: "Front",
  2785. image: {
  2786. source: "./media/characters/elijah/front.svg",
  2787. extra: 858 / 830,
  2788. bottom: 95.5 / 953.8559
  2789. }
  2790. },
  2791. back: {
  2792. height: math.unit(1.65, "meters"),
  2793. weight: math.unit(50, "kg"),
  2794. name: "Back",
  2795. image: {
  2796. source: "./media/characters/elijah/back.svg",
  2797. extra: 895 / 850,
  2798. bottom: 5.3 / 897.956
  2799. }
  2800. },
  2801. frontNsfw: {
  2802. height: math.unit(1.65, "meters"),
  2803. weight: math.unit(50, "kg"),
  2804. name: "Front (NSFW)",
  2805. image: {
  2806. source: "./media/characters/elijah/front-nsfw.svg",
  2807. extra: 858 / 830,
  2808. bottom: 95.5 / 953.8559
  2809. }
  2810. },
  2811. backNsfw: {
  2812. height: math.unit(1.65, "meters"),
  2813. weight: math.unit(50, "kg"),
  2814. name: "Back (NSFW)",
  2815. image: {
  2816. source: "./media/characters/elijah/back-nsfw.svg",
  2817. extra: 895 / 850,
  2818. bottom: 5.3 / 897.956
  2819. }
  2820. },
  2821. dick: {
  2822. height: math.unit(1, "feet"),
  2823. name: "Dick",
  2824. image: {
  2825. source: "./media/characters/elijah/dick.svg"
  2826. }
  2827. },
  2828. beakOpen: {
  2829. height: math.unit(1.25, "feet"),
  2830. name: "Beak (Open)",
  2831. image: {
  2832. source: "./media/characters/elijah/beak-open.svg"
  2833. }
  2834. },
  2835. beakShut: {
  2836. height: math.unit(1.25, "feet"),
  2837. name: "Beak (Shut)",
  2838. image: {
  2839. source: "./media/characters/elijah/beak-shut.svg"
  2840. }
  2841. },
  2842. footFlexing: {
  2843. height: math.unit(1.61, "feet"),
  2844. name: "Foot (Flexing)",
  2845. image: {
  2846. source: "./media/characters/elijah/foot-flexing.svg"
  2847. }
  2848. },
  2849. footStepping: {
  2850. height: math.unit(1.44, "feet"),
  2851. name: "Foot (Stepping)",
  2852. image: {
  2853. source: "./media/characters/elijah/foot-stepping.svg"
  2854. }
  2855. },
  2856. plantigradeLeg: {
  2857. height: math.unit(2.34, "feet"),
  2858. name: "Plantigrade Leg",
  2859. image: {
  2860. source: "./media/characters/elijah/plantigrade-leg.svg"
  2861. }
  2862. },
  2863. plantigradeFootLeft: {
  2864. height: math.unit(0.9, "feet"),
  2865. name: "Plantigrade Foot (Left)",
  2866. image: {
  2867. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2868. }
  2869. },
  2870. plantigradeFootRight: {
  2871. height: math.unit(0.9, "feet"),
  2872. name: "Plantigrade Foot (Right)",
  2873. image: {
  2874. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2875. }
  2876. },
  2877. },
  2878. [
  2879. {
  2880. name: "Normal",
  2881. height: math.unit(1.65, "meters")
  2882. },
  2883. {
  2884. name: "Macro",
  2885. height: math.unit(55, "meters"),
  2886. default: true
  2887. },
  2888. {
  2889. name: "Macro+",
  2890. height: math.unit(105, "meters")
  2891. },
  2892. ]
  2893. ))
  2894. characterMakers.push(() => makeCharacter(
  2895. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2896. {
  2897. front: {
  2898. height: math.unit(7 + 2/12, "feet"),
  2899. weight: math.unit(320, "kg"),
  2900. preyCapacity: math.unit(0.276549935, "people"),
  2901. name: "Front",
  2902. image: {
  2903. source: "./media/characters/rai/front.svg",
  2904. extra: 1802/1696,
  2905. bottom: 68/1870
  2906. },
  2907. form: "anthro",
  2908. default: true
  2909. },
  2910. frontDressed: {
  2911. height: math.unit(7 + 2/12, "feet"),
  2912. weight: math.unit(320, "kg"),
  2913. preyCapacity: math.unit(0.276549935, "people"),
  2914. name: "Front (Dressed)",
  2915. image: {
  2916. source: "./media/characters/rai/front-dressed.svg",
  2917. extra: 1802/1696,
  2918. bottom: 68/1870
  2919. },
  2920. form: "anthro"
  2921. },
  2922. side: {
  2923. height: math.unit(7 + 2/12, "feet"),
  2924. weight: math.unit(320, "kg"),
  2925. preyCapacity: math.unit(0.276549935, "people"),
  2926. name: "Side",
  2927. image: {
  2928. source: "./media/characters/rai/side.svg",
  2929. extra: 1789/1710,
  2930. bottom: 115/1904
  2931. },
  2932. form: "anthro"
  2933. },
  2934. back: {
  2935. height: math.unit(7 + 2/12, "feet"),
  2936. weight: math.unit(320, "kg"),
  2937. preyCapacity: math.unit(0.276549935, "people"),
  2938. name: "Back",
  2939. image: {
  2940. source: "./media/characters/rai/back.svg",
  2941. extra: 1770/1707,
  2942. bottom: 28/1798
  2943. },
  2944. form: "anthro"
  2945. },
  2946. feral: {
  2947. height: math.unit(9.5, "feet"),
  2948. weight: math.unit(640, "kg"),
  2949. preyCapacity: math.unit(4, "people"),
  2950. name: "Feral",
  2951. image: {
  2952. source: "./media/characters/rai/feral.svg",
  2953. extra: 945/553,
  2954. bottom: 176/1121
  2955. },
  2956. form: "feral",
  2957. default: true
  2958. },
  2959. dragon: {
  2960. height: math.unit(23, "feet"),
  2961. weight: math.unit(50000, "lb"),
  2962. name: "Dragon",
  2963. image: {
  2964. source: "./media/characters/rai/dragon.svg",
  2965. extra: 2498 / 2030,
  2966. bottom: 85.2 / 2584
  2967. },
  2968. form: "dragon",
  2969. default: true
  2970. },
  2971. maw: {
  2972. height: math.unit(1.69, "feet"),
  2973. name: "Maw",
  2974. image: {
  2975. source: "./media/characters/rai/maw.svg"
  2976. },
  2977. form: "anthro"
  2978. },
  2979. },
  2980. [
  2981. {
  2982. name: "Normal",
  2983. height: math.unit(7 + 2/12, "feet"),
  2984. form: "anthro"
  2985. },
  2986. {
  2987. name: "Big",
  2988. height: math.unit(11, "feet"),
  2989. form: "anthro"
  2990. },
  2991. {
  2992. name: "Minimacro",
  2993. height: math.unit(77, "feet"),
  2994. form: "anthro"
  2995. },
  2996. {
  2997. name: "Macro",
  2998. height: math.unit(302, "feet"),
  2999. default: true,
  3000. form: "anthro"
  3001. },
  3002. {
  3003. name: "Normal",
  3004. height: math.unit(9.5, "feet"),
  3005. form: "feral",
  3006. default: true
  3007. },
  3008. {
  3009. name: "Normal",
  3010. height: math.unit(23, "feet"),
  3011. form: "dragon",
  3012. default: true
  3013. }
  3014. ],
  3015. {
  3016. "anthro": {
  3017. name: "Anthro",
  3018. default: true
  3019. },
  3020. "feral": {
  3021. name: "Feral",
  3022. },
  3023. "dragon": {
  3024. name: "Dragon",
  3025. },
  3026. }
  3027. ))
  3028. characterMakers.push(() => makeCharacter(
  3029. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3030. {
  3031. frontDressed: {
  3032. height: math.unit(216, "feet"),
  3033. weight: math.unit(7000000, "lb"),
  3034. preyCapacity: math.unit(1321, "people"),
  3035. name: "Front (Dressed)",
  3036. image: {
  3037. source: "./media/characters/jazzy/front-dressed.svg",
  3038. extra: 2738 / 2651,
  3039. bottom: 41.8 / 2786
  3040. }
  3041. },
  3042. backDressed: {
  3043. height: math.unit(216, "feet"),
  3044. weight: math.unit(7000000, "lb"),
  3045. preyCapacity: math.unit(1321, "people"),
  3046. name: "Back (Dressed)",
  3047. image: {
  3048. source: "./media/characters/jazzy/back-dressed.svg",
  3049. extra: 2775 / 2673,
  3050. bottom: 36.8 / 2817
  3051. }
  3052. },
  3053. front: {
  3054. height: math.unit(216, "feet"),
  3055. weight: math.unit(7000000, "lb"),
  3056. preyCapacity: math.unit(1321, "people"),
  3057. name: "Front",
  3058. image: {
  3059. source: "./media/characters/jazzy/front.svg",
  3060. extra: 2738 / 2651,
  3061. bottom: 41.8 / 2786
  3062. }
  3063. },
  3064. back: {
  3065. height: math.unit(216, "feet"),
  3066. weight: math.unit(7000000, "lb"),
  3067. preyCapacity: math.unit(1321, "people"),
  3068. name: "Back",
  3069. image: {
  3070. source: "./media/characters/jazzy/back.svg",
  3071. extra: 2775 / 2673,
  3072. bottom: 36.8 / 2817
  3073. }
  3074. },
  3075. maw: {
  3076. height: math.unit(20, "feet"),
  3077. name: "Maw",
  3078. image: {
  3079. source: "./media/characters/jazzy/maw.svg"
  3080. }
  3081. },
  3082. paws: {
  3083. height: math.unit(27.5, "feet"),
  3084. name: "Paws",
  3085. image: {
  3086. source: "./media/characters/jazzy/paws.svg"
  3087. }
  3088. },
  3089. eye: {
  3090. height: math.unit(4.4, "feet"),
  3091. name: "Eye",
  3092. image: {
  3093. source: "./media/characters/jazzy/eye.svg"
  3094. }
  3095. },
  3096. droneOffense: {
  3097. height: math.unit(9.5, "inches"),
  3098. name: "Drone (Offense)",
  3099. image: {
  3100. source: "./media/characters/jazzy/drone-offense.svg"
  3101. }
  3102. },
  3103. droneRecon: {
  3104. height: math.unit(9.5, "inches"),
  3105. name: "Drone (Recon)",
  3106. image: {
  3107. source: "./media/characters/jazzy/drone-recon.svg"
  3108. }
  3109. },
  3110. droneDefense: {
  3111. height: math.unit(9.5, "inches"),
  3112. name: "Drone (Defense)",
  3113. image: {
  3114. source: "./media/characters/jazzy/drone-defense.svg"
  3115. }
  3116. },
  3117. },
  3118. [
  3119. {
  3120. name: "Macro",
  3121. height: math.unit(216, "feet"),
  3122. default: true
  3123. },
  3124. ]
  3125. ))
  3126. characterMakers.push(() => makeCharacter(
  3127. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3128. {
  3129. front: {
  3130. height: math.unit(9 + 6/12, "feet"),
  3131. weight: math.unit(700, "lb"),
  3132. name: "Front",
  3133. image: {
  3134. source: "./media/characters/flamm/front.svg",
  3135. extra: 1736/1596,
  3136. bottom: 93/1829
  3137. }
  3138. },
  3139. buff: {
  3140. height: math.unit(9 + 6/12, "feet"),
  3141. weight: math.unit(950, "lb"),
  3142. name: "Buff",
  3143. image: {
  3144. source: "./media/characters/flamm/buff.svg",
  3145. extra: 3018/2874,
  3146. bottom: 221/3239
  3147. }
  3148. },
  3149. },
  3150. [
  3151. {
  3152. name: "Normal",
  3153. height: math.unit(9.5, "feet")
  3154. },
  3155. {
  3156. name: "Macro",
  3157. height: math.unit(200, "feet"),
  3158. default: true
  3159. },
  3160. ]
  3161. ))
  3162. characterMakers.push(() => makeCharacter(
  3163. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3164. {
  3165. front: {
  3166. height: math.unit(5 + 3/12, "feet"),
  3167. weight: math.unit(60, "kg"),
  3168. name: "Front",
  3169. image: {
  3170. source: "./media/characters/zephiro/front.svg",
  3171. extra: 1873/1761,
  3172. bottom: 147/2020
  3173. }
  3174. },
  3175. side: {
  3176. height: math.unit(5 + 3/12, "feet"),
  3177. weight: math.unit(60, "kg"),
  3178. name: "Side",
  3179. image: {
  3180. source: "./media/characters/zephiro/side.svg",
  3181. extra: 1929/1827,
  3182. bottom: 65/1994
  3183. }
  3184. },
  3185. back: {
  3186. height: math.unit(5 + 3/12, "feet"),
  3187. weight: math.unit(60, "kg"),
  3188. name: "Back",
  3189. image: {
  3190. source: "./media/characters/zephiro/back.svg",
  3191. extra: 1926/1816,
  3192. bottom: 41/1967
  3193. }
  3194. },
  3195. hand: {
  3196. height: math.unit(0.68, "feet"),
  3197. name: "Hand",
  3198. image: {
  3199. source: "./media/characters/zephiro/hand.svg"
  3200. }
  3201. },
  3202. paw: {
  3203. height: math.unit(1, "feet"),
  3204. name: "Paw",
  3205. image: {
  3206. source: "./media/characters/zephiro/paw.svg"
  3207. }
  3208. },
  3209. beans: {
  3210. height: math.unit(0.93, "feet"),
  3211. name: "Beans",
  3212. image: {
  3213. source: "./media/characters/zephiro/beans.svg"
  3214. }
  3215. },
  3216. },
  3217. [
  3218. {
  3219. name: "Micro",
  3220. height: math.unit(3, "inches")
  3221. },
  3222. {
  3223. name: "Normal",
  3224. height: math.unit(5 + 3 / 12, "feet"),
  3225. default: true
  3226. },
  3227. {
  3228. name: "Macro",
  3229. height: math.unit(118, "feet")
  3230. },
  3231. ]
  3232. ))
  3233. characterMakers.push(() => makeCharacter(
  3234. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3235. {
  3236. front: {
  3237. height: math.unit(5, "feet"),
  3238. weight: math.unit(90, "kg"),
  3239. preyCapacity: math.unit(14, "people"),
  3240. name: "Front",
  3241. image: {
  3242. source: "./media/characters/fory/front.svg",
  3243. extra: 2862 / 2674,
  3244. bottom: 180 / 3043.8
  3245. },
  3246. form: "weaselbun",
  3247. default: true,
  3248. extraAttributes: {
  3249. "pawSize": {
  3250. name: "Paw Size",
  3251. power: 2,
  3252. type: "area",
  3253. base: math.unit(0.1596, "m^2")
  3254. },
  3255. "pawLength": {
  3256. name: "Paw Length",
  3257. power: 1,
  3258. type: "length",
  3259. base: math.unit(0.7, "m")
  3260. }
  3261. }
  3262. },
  3263. back: {
  3264. height: math.unit(5, "feet"),
  3265. weight: math.unit(90, "kg"),
  3266. preyCapacity: math.unit(14, "people"),
  3267. name: "Back",
  3268. image: {
  3269. source: "./media/characters/fory/back.svg",
  3270. extra: 1790/1672,
  3271. bottom: 84/1874
  3272. },
  3273. form: "weaselbun",
  3274. extraAttributes: {
  3275. "pawSize": {
  3276. name: "Paw Size",
  3277. power: 2,
  3278. type: "area",
  3279. base: math.unit(0.1596, "m^2")
  3280. },
  3281. "pawLength": {
  3282. name: "Paw Length",
  3283. power: 1,
  3284. type: "length",
  3285. base: math.unit(0.7, "m")
  3286. }
  3287. }
  3288. },
  3289. paw: {
  3290. height: math.unit(2.14, "feet"),
  3291. name: "Paw",
  3292. image: {
  3293. source: "./media/characters/fory/paw.svg"
  3294. },
  3295. form: "weaselbun",
  3296. extraAttributes: {
  3297. "pawSize": {
  3298. name: "Paw Size",
  3299. power: 2,
  3300. type: "area",
  3301. base: math.unit(0.1596, "m^2")
  3302. },
  3303. "pawLength": {
  3304. name: "Paw Length",
  3305. power: 1,
  3306. type: "length",
  3307. base: math.unit(0.48, "m")
  3308. }
  3309. }
  3310. },
  3311. bunBack: {
  3312. height: math.unit(3, "feet"),
  3313. weight: math.unit(20, "kg"),
  3314. preyCapacity: math.unit(3, "people"),
  3315. name: "Back",
  3316. image: {
  3317. source: "./media/characters/fory/bun-back.svg",
  3318. extra: 1749/1564,
  3319. bottom: 246/1995
  3320. },
  3321. form: "bun",
  3322. default: true,
  3323. extraAttributes: {
  3324. "pawSize": {
  3325. name: "Paw Size",
  3326. power: 2,
  3327. type: "area",
  3328. base: math.unit(0.072, "m^2")
  3329. },
  3330. "pawLength": {
  3331. name: "Paw Length",
  3332. power: 1,
  3333. type: "length",
  3334. base: math.unit(0.45, "m")
  3335. }
  3336. }
  3337. },
  3338. },
  3339. [
  3340. {
  3341. name: "Normal",
  3342. height: math.unit(5, "feet"),
  3343. form: "weaselbun"
  3344. },
  3345. {
  3346. name: "Macro",
  3347. height: math.unit(50, "feet"),
  3348. default: true,
  3349. form: "weaselbun"
  3350. },
  3351. {
  3352. name: "Megamacro",
  3353. height: math.unit(10, "miles"),
  3354. form: "weaselbun"
  3355. },
  3356. {
  3357. name: "Gigamacro",
  3358. height: math.unit(5, "earths"),
  3359. form: "weaselbun"
  3360. },
  3361. {
  3362. name: "Normal",
  3363. height: math.unit(3, "feet"),
  3364. default: true,
  3365. form: "bun"
  3366. },
  3367. {
  3368. name: "Fun-Size",
  3369. height: math.unit(12, "feet"),
  3370. form: "bun"
  3371. },
  3372. {
  3373. name: "Macro",
  3374. height: math.unit(100, "feet"),
  3375. form: "bun"
  3376. },
  3377. {
  3378. name: "Planetary",
  3379. height: math.unit(3, "earths"),
  3380. form: "bun"
  3381. },
  3382. ],
  3383. {
  3384. "weaselbun": {
  3385. name: "Weaselbun",
  3386. default: true
  3387. },
  3388. "bun": {
  3389. name: "Bun",
  3390. },
  3391. }
  3392. ))
  3393. characterMakers.push(() => makeCharacter(
  3394. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3395. {
  3396. front: {
  3397. height: math.unit(7, "feet"),
  3398. weight: math.unit(90, "kg"),
  3399. name: "Front",
  3400. image: {
  3401. source: "./media/characters/kurrikage/front.svg",
  3402. extra: 1845/1733,
  3403. bottom: 119/1964
  3404. }
  3405. },
  3406. back: {
  3407. height: math.unit(7, "feet"),
  3408. weight: math.unit(90, "kg"),
  3409. name: "Back",
  3410. image: {
  3411. source: "./media/characters/kurrikage/back.svg",
  3412. extra: 1790/1677,
  3413. bottom: 61/1851
  3414. }
  3415. },
  3416. dressed: {
  3417. height: math.unit(7, "feet"),
  3418. weight: math.unit(90, "kg"),
  3419. name: "Dressed",
  3420. image: {
  3421. source: "./media/characters/kurrikage/dressed.svg",
  3422. extra: 1845/1733,
  3423. bottom: 119/1964
  3424. }
  3425. },
  3426. foot: {
  3427. height: math.unit(1.5, "feet"),
  3428. name: "Foot",
  3429. image: {
  3430. source: "./media/characters/kurrikage/foot.svg"
  3431. }
  3432. },
  3433. staff: {
  3434. height: math.unit(6.7, "feet"),
  3435. name: "Staff",
  3436. image: {
  3437. source: "./media/characters/kurrikage/staff.svg"
  3438. }
  3439. },
  3440. peek: {
  3441. height: math.unit(1.05, "feet"),
  3442. name: "Peeking",
  3443. image: {
  3444. source: "./media/characters/kurrikage/peek.svg",
  3445. bottom: 0.08
  3446. }
  3447. },
  3448. },
  3449. [
  3450. {
  3451. name: "Normal",
  3452. height: math.unit(12, "feet"),
  3453. default: true
  3454. },
  3455. {
  3456. name: "Big",
  3457. height: math.unit(20, "feet")
  3458. },
  3459. {
  3460. name: "Macro",
  3461. height: math.unit(500, "feet")
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(20, "miles")
  3466. },
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3471. {
  3472. front: {
  3473. height: math.unit(6, "feet"),
  3474. weight: math.unit(75, "kg"),
  3475. name: "Front",
  3476. image: {
  3477. source: "./media/characters/shingo/front.svg",
  3478. extra: 1900/1825,
  3479. bottom: 82/1982
  3480. }
  3481. },
  3482. side: {
  3483. height: math.unit(6, "feet"),
  3484. weight: math.unit(75, "kg"),
  3485. name: "Side",
  3486. image: {
  3487. source: "./media/characters/shingo/side.svg",
  3488. extra: 1930/1865,
  3489. bottom: 16/1946
  3490. }
  3491. },
  3492. back: {
  3493. height: math.unit(6, "feet"),
  3494. weight: math.unit(75, "kg"),
  3495. name: "Back",
  3496. image: {
  3497. source: "./media/characters/shingo/back.svg",
  3498. extra: 1922/1852,
  3499. bottom: 16/1938
  3500. }
  3501. },
  3502. frontDressed: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(150, "lb"),
  3505. name: "Front-dressed",
  3506. image: {
  3507. source: "./media/characters/shingo/front-dressed.svg",
  3508. extra: 1900/1825,
  3509. bottom: 82/1982
  3510. }
  3511. },
  3512. paw: {
  3513. height: math.unit(1.29, "feet"),
  3514. name: "Paw",
  3515. image: {
  3516. source: "./media/characters/shingo/paw.svg"
  3517. }
  3518. },
  3519. hand: {
  3520. height: math.unit(1.07, "feet"),
  3521. name: "Hand",
  3522. image: {
  3523. source: "./media/characters/shingo/hand.svg"
  3524. }
  3525. },
  3526. frontAlt: {
  3527. height: math.unit(6, "feet"),
  3528. weight: math.unit(75, "kg"),
  3529. name: "Front (Alt)",
  3530. image: {
  3531. source: "./media/characters/shingo/front-alt.svg",
  3532. extra: 3511 / 3338,
  3533. bottom: 0.005
  3534. }
  3535. },
  3536. frontAlt2: {
  3537. height: math.unit(6, "feet"),
  3538. weight: math.unit(75, "kg"),
  3539. name: "Front (Alt 2)",
  3540. image: {
  3541. source: "./media/characters/shingo/front-alt-2.svg",
  3542. extra: 706/681,
  3543. bottom: 11/717
  3544. }
  3545. },
  3546. pawAlt: {
  3547. height: math.unit(1, "feet"),
  3548. name: "Paw (Alt)",
  3549. image: {
  3550. source: "./media/characters/shingo/paw-alt.svg"
  3551. }
  3552. },
  3553. },
  3554. [
  3555. {
  3556. name: "Micro",
  3557. height: math.unit(4, "inches")
  3558. },
  3559. {
  3560. name: "Normal",
  3561. height: math.unit(6, "feet"),
  3562. default: true
  3563. },
  3564. {
  3565. name: "Macro",
  3566. height: math.unit(108, "feet")
  3567. },
  3568. {
  3569. name: "Macro+",
  3570. height: math.unit(1500, "feet")
  3571. },
  3572. ]
  3573. ))
  3574. characterMakers.push(() => makeCharacter(
  3575. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3576. {
  3577. side: {
  3578. height: math.unit(6, "feet"),
  3579. weight: math.unit(75, "kg"),
  3580. name: "Side",
  3581. image: {
  3582. source: "./media/characters/aigey/side.svg"
  3583. }
  3584. },
  3585. },
  3586. [
  3587. {
  3588. name: "Macro",
  3589. height: math.unit(200, "feet"),
  3590. default: true
  3591. },
  3592. {
  3593. name: "Megamacro",
  3594. height: math.unit(100, "miles")
  3595. },
  3596. ]
  3597. )
  3598. )
  3599. characterMakers.push(() => makeCharacter(
  3600. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3601. {
  3602. front: {
  3603. height: math.unit(5 + 5 / 12, "feet"),
  3604. weight: math.unit(75, "kg"),
  3605. name: "Front",
  3606. image: {
  3607. source: "./media/characters/natasha/front.svg",
  3608. extra: 859 / 824,
  3609. bottom: 23 / 879.6
  3610. }
  3611. },
  3612. frontNsfw: {
  3613. height: math.unit(5 + 5 / 12, "feet"),
  3614. weight: math.unit(75, "kg"),
  3615. name: "Front (NSFW)",
  3616. image: {
  3617. source: "./media/characters/natasha/front-nsfw.svg",
  3618. extra: 859 / 824,
  3619. bottom: 23 / 879.6
  3620. }
  3621. },
  3622. frontErect: {
  3623. height: math.unit(5 + 5 / 12, "feet"),
  3624. weight: math.unit(75, "kg"),
  3625. name: "Front (Erect)",
  3626. image: {
  3627. source: "./media/characters/natasha/front-erect.svg",
  3628. extra: 859 / 824,
  3629. bottom: 23 / 879.6
  3630. }
  3631. },
  3632. back: {
  3633. height: math.unit(5 + 5 / 12, "feet"),
  3634. weight: math.unit(75, "kg"),
  3635. name: "Back",
  3636. image: {
  3637. source: "./media/characters/natasha/back.svg",
  3638. extra: 887.9 / 852.6,
  3639. bottom: 9.7 / 896.4
  3640. }
  3641. },
  3642. backAlt: {
  3643. height: math.unit(5 + 5 / 12, "feet"),
  3644. weight: math.unit(75, "kg"),
  3645. name: "Back (Alt)",
  3646. image: {
  3647. source: "./media/characters/natasha/back-alt.svg",
  3648. extra: 1236.7 / 1192,
  3649. bottom: 22.3 / 1258.2
  3650. }
  3651. },
  3652. dick: {
  3653. height: math.unit(1.772, "feet"),
  3654. name: "Dick",
  3655. image: {
  3656. source: "./media/characters/natasha/dick.svg"
  3657. }
  3658. },
  3659. paw: {
  3660. height: math.unit(0.250, "meters"),
  3661. name: "Paw",
  3662. image: {
  3663. source: "./media/characters/natasha/paw.svg"
  3664. },
  3665. extraAttributes: {
  3666. "toeSize": {
  3667. name: "Toe Size",
  3668. power: 2,
  3669. type: "area",
  3670. base: math.unit(0.0024, "m^2")
  3671. },
  3672. "padSize": {
  3673. name: "Pad Size",
  3674. power: 2,
  3675. type: "area",
  3676. base: math.unit(0.00889, "m^2")
  3677. },
  3678. "pawSize": {
  3679. name: "Paw Size",
  3680. power: 2,
  3681. type: "area",
  3682. base: math.unit(0.023667, "m^2")
  3683. },
  3684. }
  3685. },
  3686. },
  3687. [
  3688. {
  3689. name: "Shortstack",
  3690. height: math.unit(3, "feet"),
  3691. default: true
  3692. },
  3693. {
  3694. name: "Normal",
  3695. height: math.unit(5 + 5 / 12, "feet")
  3696. },
  3697. {
  3698. name: "Large",
  3699. height: math.unit(12, "feet")
  3700. },
  3701. {
  3702. name: "Macro",
  3703. height: math.unit(100, "feet")
  3704. },
  3705. {
  3706. name: "Macro+",
  3707. height: math.unit(260, "feet")
  3708. },
  3709. {
  3710. name: "Macro++",
  3711. height: math.unit(1, "mile")
  3712. },
  3713. ]
  3714. ))
  3715. characterMakers.push(() => makeCharacter(
  3716. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3717. {
  3718. front: {
  3719. height: math.unit(6, "feet"),
  3720. weight: math.unit(75, "kg"),
  3721. name: "Front",
  3722. image: {
  3723. source: "./media/characters/malik/front.svg",
  3724. extra: 1750/1561,
  3725. bottom: 80/1830
  3726. },
  3727. extraAttributes: {
  3728. "toeSize": {
  3729. name: "Toe Size",
  3730. power: 2,
  3731. type: "area",
  3732. base: math.unit(0.0159, "m^2")
  3733. },
  3734. "pawSize": {
  3735. name: "Paw Size",
  3736. power: 2,
  3737. type: "area",
  3738. base: math.unit(0.09834, "m^2")
  3739. },
  3740. }
  3741. },
  3742. side: {
  3743. height: math.unit(6, "feet"),
  3744. weight: math.unit(75, "kg"),
  3745. name: "Side",
  3746. image: {
  3747. source: "./media/characters/malik/side.svg",
  3748. extra: 1802/1685,
  3749. bottom: 42/1844
  3750. },
  3751. extraAttributes: {
  3752. "toeSize": {
  3753. name: "Toe Size",
  3754. power: 2,
  3755. type: "area",
  3756. base: math.unit(0.0159, "m^2")
  3757. },
  3758. "pawSize": {
  3759. name: "Paw Size",
  3760. power: 2,
  3761. type: "area",
  3762. base: math.unit(0.09834, "m^2")
  3763. },
  3764. }
  3765. },
  3766. back: {
  3767. height: math.unit(6, "feet"),
  3768. weight: math.unit(75, "kg"),
  3769. name: "Back",
  3770. image: {
  3771. source: "./media/characters/malik/back.svg",
  3772. extra: 1803/1607,
  3773. bottom: 33/1836
  3774. },
  3775. extraAttributes: {
  3776. "toeSize": {
  3777. name: "Toe Size",
  3778. power: 2,
  3779. type: "area",
  3780. base: math.unit(0.0159, "m^2")
  3781. },
  3782. "pawSize": {
  3783. name: "Paw Size",
  3784. power: 2,
  3785. type: "area",
  3786. base: math.unit(0.09834, "m^2")
  3787. },
  3788. }
  3789. },
  3790. },
  3791. [
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(156, "feet"),
  3795. default: true
  3796. },
  3797. {
  3798. name: "Macro+",
  3799. height: math.unit(1188, "feet")
  3800. },
  3801. ]
  3802. ))
  3803. characterMakers.push(() => makeCharacter(
  3804. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3805. {
  3806. front: {
  3807. height: math.unit(6, "feet"),
  3808. weight: math.unit(75, "kg"),
  3809. name: "Front",
  3810. image: {
  3811. source: "./media/characters/sefer/front.svg",
  3812. extra: 848 / 659,
  3813. bottom: 28.3 / 876.442
  3814. }
  3815. },
  3816. back: {
  3817. height: math.unit(6, "feet"),
  3818. weight: math.unit(75, "kg"),
  3819. name: "Back",
  3820. image: {
  3821. source: "./media/characters/sefer/back.svg",
  3822. extra: 864 / 695,
  3823. bottom: 10 / 871
  3824. }
  3825. },
  3826. frontDressed: {
  3827. height: math.unit(6, "feet"),
  3828. weight: math.unit(75, "kg"),
  3829. name: "Dressed",
  3830. image: {
  3831. source: "./media/characters/sefer/dressed.svg",
  3832. extra: 839 / 653,
  3833. bottom: 37.6 / 878
  3834. }
  3835. },
  3836. },
  3837. [
  3838. {
  3839. name: "Normal",
  3840. height: math.unit(6, "feet"),
  3841. default: true
  3842. },
  3843. {
  3844. name: "Big",
  3845. height: math.unit(8, "meters")
  3846. },
  3847. ]
  3848. ))
  3849. characterMakers.push(() => makeCharacter(
  3850. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3851. {
  3852. body: {
  3853. height: math.unit(2.2428, "meter"),
  3854. weight: math.unit(124.738, "kg"),
  3855. name: "Body",
  3856. image: {
  3857. extra: 1225 / 1050,
  3858. source: "./media/characters/north/front.svg"
  3859. }
  3860. }
  3861. },
  3862. [
  3863. {
  3864. name: "Micro",
  3865. height: math.unit(4, "inches")
  3866. },
  3867. {
  3868. name: "Macro",
  3869. height: math.unit(63, "meters")
  3870. },
  3871. {
  3872. name: "Megamacro",
  3873. height: math.unit(101, "miles"),
  3874. default: true
  3875. }
  3876. ]
  3877. ))
  3878. characterMakers.push(() => makeCharacter(
  3879. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3880. {
  3881. angled: {
  3882. height: math.unit(4, "meter"),
  3883. weight: math.unit(150, "kg"),
  3884. name: "Angled",
  3885. image: {
  3886. source: "./media/characters/talan/angled-sfw.svg",
  3887. bottom: 29 / 3734
  3888. }
  3889. },
  3890. angledNsfw: {
  3891. height: math.unit(4, "meter"),
  3892. weight: math.unit(150, "kg"),
  3893. name: "Angled (NSFW)",
  3894. image: {
  3895. source: "./media/characters/talan/angled-nsfw.svg",
  3896. bottom: 29 / 3734
  3897. }
  3898. },
  3899. frontNsfw: {
  3900. height: math.unit(4, "meter"),
  3901. weight: math.unit(150, "kg"),
  3902. name: "Front (NSFW)",
  3903. image: {
  3904. source: "./media/characters/talan/front-nsfw.svg",
  3905. bottom: 29 / 3734
  3906. }
  3907. },
  3908. sideNsfw: {
  3909. height: math.unit(4, "meter"),
  3910. weight: math.unit(150, "kg"),
  3911. name: "Side (NSFW)",
  3912. image: {
  3913. source: "./media/characters/talan/side-nsfw.svg",
  3914. bottom: 29 / 3734
  3915. }
  3916. },
  3917. back: {
  3918. height: math.unit(4, "meter"),
  3919. weight: math.unit(150, "kg"),
  3920. name: "Back",
  3921. image: {
  3922. source: "./media/characters/talan/back.svg"
  3923. }
  3924. },
  3925. dickBottom: {
  3926. height: math.unit(0.621, "meter"),
  3927. name: "Dick (Bottom)",
  3928. image: {
  3929. source: "./media/characters/talan/dick-bottom.svg"
  3930. }
  3931. },
  3932. dickTop: {
  3933. height: math.unit(0.621, "meter"),
  3934. name: "Dick (Top)",
  3935. image: {
  3936. source: "./media/characters/talan/dick-top.svg"
  3937. }
  3938. },
  3939. dickSide: {
  3940. height: math.unit(0.305, "meter"),
  3941. name: "Dick (Side)",
  3942. image: {
  3943. source: "./media/characters/talan/dick-side.svg"
  3944. }
  3945. },
  3946. dickFront: {
  3947. height: math.unit(0.305, "meter"),
  3948. name: "Dick (Front)",
  3949. image: {
  3950. source: "./media/characters/talan/dick-front.svg"
  3951. }
  3952. },
  3953. },
  3954. [
  3955. {
  3956. name: "Normal",
  3957. height: math.unit(4, "meters")
  3958. },
  3959. {
  3960. name: "Macro",
  3961. height: math.unit(100, "meters")
  3962. },
  3963. {
  3964. name: "Megamacro",
  3965. height: math.unit(2, "miles"),
  3966. default: true
  3967. },
  3968. {
  3969. name: "Gigamacro",
  3970. height: math.unit(5000, "miles")
  3971. },
  3972. {
  3973. name: "Teramacro",
  3974. height: math.unit(100, "parsecs")
  3975. }
  3976. ]
  3977. ))
  3978. characterMakers.push(() => makeCharacter(
  3979. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3980. {
  3981. front: {
  3982. height: math.unit(2, "meter"),
  3983. weight: math.unit(90, "kg"),
  3984. name: "Front",
  3985. image: {
  3986. source: "./media/characters/gael'rathus/front.svg"
  3987. }
  3988. },
  3989. frontAlt: {
  3990. height: math.unit(2, "meter"),
  3991. weight: math.unit(90, "kg"),
  3992. name: "Front (alt)",
  3993. image: {
  3994. source: "./media/characters/gael'rathus/front-alt.svg"
  3995. }
  3996. },
  3997. frontAlt2: {
  3998. height: math.unit(2, "meter"),
  3999. weight: math.unit(90, "kg"),
  4000. name: "Front (alt 2)",
  4001. image: {
  4002. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4003. }
  4004. }
  4005. },
  4006. [
  4007. {
  4008. name: "Normal",
  4009. height: math.unit(9, "feet"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Large",
  4014. height: math.unit(25, "feet")
  4015. },
  4016. {
  4017. name: "Macro",
  4018. height: math.unit(0.25, "miles")
  4019. },
  4020. {
  4021. name: "Megamacro",
  4022. height: math.unit(10, "miles")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4028. {
  4029. side: {
  4030. height: math.unit(2, "meter"),
  4031. weight: math.unit(140, "kg"),
  4032. name: "Side",
  4033. image: {
  4034. source: "./media/characters/sosha/side.svg",
  4035. extra: 1170/1006,
  4036. bottom: 94/1264
  4037. }
  4038. },
  4039. maw: {
  4040. height: math.unit(2.87, "feet"),
  4041. name: "Maw",
  4042. image: {
  4043. source: "./media/characters/sosha/maw.svg",
  4044. extra: 966/865,
  4045. bottom: 0/966
  4046. }
  4047. },
  4048. cooch: {
  4049. height: math.unit(5.6, "feet"),
  4050. name: "Cooch",
  4051. image: {
  4052. source: "./media/characters/sosha/cooch.svg"
  4053. }
  4054. },
  4055. },
  4056. [
  4057. {
  4058. name: "Normal",
  4059. height: math.unit(12, "feet"),
  4060. default: true
  4061. }
  4062. ]
  4063. ))
  4064. characterMakers.push(() => makeCharacter(
  4065. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4066. {
  4067. side: {
  4068. height: math.unit(5 + 5 / 12, "feet"),
  4069. weight: math.unit(170, "kg"),
  4070. name: "Side",
  4071. image: {
  4072. source: "./media/characters/runnola/side.svg",
  4073. extra: 741 / 448,
  4074. bottom: 0.05
  4075. }
  4076. },
  4077. },
  4078. [
  4079. {
  4080. name: "Small",
  4081. height: math.unit(3, "feet")
  4082. },
  4083. {
  4084. name: "Normal",
  4085. height: math.unit(5 + 5 / 12, "feet"),
  4086. default: true
  4087. },
  4088. {
  4089. name: "Big",
  4090. height: math.unit(10, "feet")
  4091. },
  4092. ]
  4093. ))
  4094. characterMakers.push(() => makeCharacter(
  4095. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4096. {
  4097. front: {
  4098. height: math.unit(2, "meter"),
  4099. weight: math.unit(50, "kg"),
  4100. name: "Front",
  4101. image: {
  4102. source: "./media/characters/kurribird/front.svg",
  4103. bottom: 0.015
  4104. }
  4105. },
  4106. frontAlt: {
  4107. height: math.unit(1.5, "meter"),
  4108. weight: math.unit(50, "kg"),
  4109. name: "Front (Alt)",
  4110. image: {
  4111. source: "./media/characters/kurribird/front-alt.svg",
  4112. extra: 1.45
  4113. }
  4114. },
  4115. },
  4116. [
  4117. {
  4118. name: "Normal",
  4119. height: math.unit(7, "feet")
  4120. },
  4121. {
  4122. name: "Big",
  4123. height: math.unit(12, "feet"),
  4124. default: true
  4125. },
  4126. {
  4127. name: "Macro",
  4128. height: math.unit(1500, "feet")
  4129. },
  4130. {
  4131. name: "Megamacro",
  4132. height: math.unit(2, "miles")
  4133. }
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4138. {
  4139. front: {
  4140. height: math.unit(2, "meter"),
  4141. weight: math.unit(80, "kg"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/elbial/front.svg",
  4145. extra: 1643 / 1556,
  4146. bottom: 60.2 / 1696
  4147. }
  4148. },
  4149. side: {
  4150. height: math.unit(2, "meter"),
  4151. weight: math.unit(80, "kg"),
  4152. name: "Side",
  4153. image: {
  4154. source: "./media/characters/elbial/side.svg",
  4155. extra: 1601/1528,
  4156. bottom: 97/1698
  4157. }
  4158. },
  4159. back: {
  4160. height: math.unit(2, "meter"),
  4161. weight: math.unit(80, "kg"),
  4162. name: "Back",
  4163. image: {
  4164. source: "./media/characters/elbial/back.svg",
  4165. extra: 1653/1569,
  4166. bottom: 20/1673
  4167. }
  4168. },
  4169. frontDressed: {
  4170. height: math.unit(2, "meter"),
  4171. weight: math.unit(80, "kg"),
  4172. name: "Front (Dressed)",
  4173. image: {
  4174. source: "./media/characters/elbial/front-dressed.svg",
  4175. extra: 1638/1569,
  4176. bottom: 70/1708
  4177. }
  4178. },
  4179. genitals: {
  4180. height: math.unit(2 / 3.367, "meter"),
  4181. name: "Genitals",
  4182. image: {
  4183. source: "./media/characters/elbial/genitals.svg"
  4184. }
  4185. },
  4186. },
  4187. [
  4188. {
  4189. name: "Large",
  4190. height: math.unit(100, "feet")
  4191. },
  4192. {
  4193. name: "Macro",
  4194. height: math.unit(500, "feet"),
  4195. default: true
  4196. },
  4197. {
  4198. name: "Megamacro",
  4199. height: math.unit(10, "miles")
  4200. },
  4201. {
  4202. name: "Gigamacro",
  4203. height: math.unit(25000, "miles")
  4204. },
  4205. {
  4206. name: "Full-Size",
  4207. height: math.unit(8000000, "gigaparsecs")
  4208. }
  4209. ]
  4210. ))
  4211. characterMakers.push(() => makeCharacter(
  4212. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4213. {
  4214. front: {
  4215. height: math.unit(2, "meter"),
  4216. weight: math.unit(60, "kg"),
  4217. name: "Front",
  4218. image: {
  4219. source: "./media/characters/noah/front.svg"
  4220. }
  4221. },
  4222. talons: {
  4223. height: math.unit(0.315, "meter"),
  4224. name: "Talons",
  4225. image: {
  4226. source: "./media/characters/noah/talons.svg"
  4227. }
  4228. }
  4229. },
  4230. [
  4231. {
  4232. name: "Large",
  4233. height: math.unit(50, "feet")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(750, "feet"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Megamacro",
  4242. height: math.unit(50, "miles")
  4243. },
  4244. {
  4245. name: "Gigamacro",
  4246. height: math.unit(100000, "miles")
  4247. },
  4248. {
  4249. name: "Full-Size",
  4250. height: math.unit(3000000000, "miles")
  4251. }
  4252. ]
  4253. ))
  4254. characterMakers.push(() => makeCharacter(
  4255. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4256. {
  4257. front: {
  4258. height: math.unit(2, "meter"),
  4259. weight: math.unit(80, "kg"),
  4260. name: "Front",
  4261. image: {
  4262. source: "./media/characters/natalya/front.svg"
  4263. }
  4264. },
  4265. back: {
  4266. height: math.unit(2, "meter"),
  4267. weight: math.unit(80, "kg"),
  4268. name: "Back",
  4269. image: {
  4270. source: "./media/characters/natalya/back.svg"
  4271. }
  4272. }
  4273. },
  4274. [
  4275. {
  4276. name: "Normal",
  4277. height: math.unit(150, "feet"),
  4278. default: true
  4279. },
  4280. {
  4281. name: "Megamacro",
  4282. height: math.unit(5, "miles")
  4283. },
  4284. {
  4285. name: "Full-Size",
  4286. height: math.unit(600, "kiloparsecs")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(2, "meter"),
  4295. weight: math.unit(50, "kg"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/erestrebah/front.svg",
  4299. extra: 1262/1162,
  4300. bottom: 96/1358
  4301. }
  4302. },
  4303. back: {
  4304. height: math.unit(2, "meter"),
  4305. weight: math.unit(50, "kg"),
  4306. name: "Back",
  4307. image: {
  4308. source: "./media/characters/erestrebah/back.svg",
  4309. extra: 1257/1139,
  4310. bottom: 13/1270
  4311. }
  4312. },
  4313. wing: {
  4314. height: math.unit(2, "meter"),
  4315. weight: math.unit(50, "kg"),
  4316. name: "Wing",
  4317. image: {
  4318. source: "./media/characters/erestrebah/wing.svg",
  4319. extra: 1262/1162,
  4320. bottom: 96/1358
  4321. }
  4322. },
  4323. mouth: {
  4324. height: math.unit(0.39, "feet"),
  4325. name: "Mouth",
  4326. image: {
  4327. source: "./media/characters/erestrebah/mouth.svg"
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Normal",
  4334. height: math.unit(10, "feet")
  4335. },
  4336. {
  4337. name: "Large",
  4338. height: math.unit(50, "feet"),
  4339. default: true
  4340. },
  4341. {
  4342. name: "Macro",
  4343. height: math.unit(300, "feet")
  4344. },
  4345. {
  4346. name: "Macro+",
  4347. height: math.unit(750, "feet")
  4348. },
  4349. {
  4350. name: "Megamacro",
  4351. height: math.unit(3, "miles")
  4352. }
  4353. ]
  4354. ))
  4355. characterMakers.push(() => makeCharacter(
  4356. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4357. {
  4358. front: {
  4359. height: math.unit(2, "meter"),
  4360. weight: math.unit(80, "kg"),
  4361. name: "Front",
  4362. image: {
  4363. source: "./media/characters/jennifer/front.svg",
  4364. bottom: 0.11,
  4365. extra: 1.16
  4366. }
  4367. },
  4368. frontAlt: {
  4369. height: math.unit(2, "meter"),
  4370. weight: math.unit(80, "kg"),
  4371. name: "Front (Alt)",
  4372. image: {
  4373. source: "./media/characters/jennifer/front-alt.svg"
  4374. }
  4375. }
  4376. },
  4377. [
  4378. {
  4379. name: "Canon Height",
  4380. height: math.unit(120, "feet"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Macro+",
  4385. height: math.unit(300, "feet")
  4386. },
  4387. {
  4388. name: "Megamacro",
  4389. height: math.unit(20000, "feet")
  4390. }
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4395. {
  4396. front: {
  4397. height: math.unit(2, "meter"),
  4398. weight: math.unit(50, "kg"),
  4399. name: "Front",
  4400. image: {
  4401. source: "./media/characters/kalista/front.svg",
  4402. extra: 1314/1145,
  4403. bottom: 101/1415
  4404. }
  4405. },
  4406. back: {
  4407. height: math.unit(2, "meter"),
  4408. weight: math.unit(50, "kg"),
  4409. name: "Back",
  4410. image: {
  4411. source: "./media/characters/kalista/back.svg",
  4412. extra: 1366 / 1156,
  4413. bottom: 33.9 / 1362.78
  4414. }
  4415. }
  4416. },
  4417. [
  4418. {
  4419. name: "Uncomfortably Small",
  4420. height: math.unit(10, "feet")
  4421. },
  4422. {
  4423. name: "Small",
  4424. height: math.unit(30, "feet")
  4425. },
  4426. {
  4427. name: "Macro",
  4428. height: math.unit(100, "feet"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Macro+",
  4433. height: math.unit(2000, "feet")
  4434. },
  4435. {
  4436. name: "True Form",
  4437. height: math.unit(8924, "miles")
  4438. }
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4443. {
  4444. front: {
  4445. height: math.unit(2, "meter"),
  4446. weight: math.unit(120, "kg"),
  4447. name: "Front",
  4448. image: {
  4449. source: "./media/characters/ggv/front.svg"
  4450. }
  4451. },
  4452. side: {
  4453. height: math.unit(2, "meter"),
  4454. weight: math.unit(120, "kg"),
  4455. name: "Side",
  4456. image: {
  4457. source: "./media/characters/ggv/side.svg"
  4458. }
  4459. }
  4460. },
  4461. [
  4462. {
  4463. name: "Extremely Puny",
  4464. height: math.unit(9 + 5 / 12, "feet")
  4465. },
  4466. {
  4467. name: "Horribly Small",
  4468. height: math.unit(47.7, "miles"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "Reasonably Sized",
  4473. height: math.unit(25000, "parsecs")
  4474. },
  4475. {
  4476. name: "Slightly Uncompressed",
  4477. height: math.unit(7.77e31, "parsecs")
  4478. },
  4479. {
  4480. name: "Omniversal",
  4481. height: math.unit(1e300, "meters")
  4482. },
  4483. ]
  4484. ))
  4485. characterMakers.push(() => makeCharacter(
  4486. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4487. {
  4488. front: {
  4489. height: math.unit(2, "meter"),
  4490. weight: math.unit(75, "lb"),
  4491. name: "Front",
  4492. image: {
  4493. source: "./media/characters/napalm/front.svg"
  4494. }
  4495. },
  4496. back: {
  4497. height: math.unit(2, "meter"),
  4498. weight: math.unit(75, "lb"),
  4499. name: "Back",
  4500. image: {
  4501. source: "./media/characters/napalm/back.svg"
  4502. }
  4503. }
  4504. },
  4505. [
  4506. {
  4507. name: "Standard",
  4508. height: math.unit(55, "feet"),
  4509. default: true
  4510. }
  4511. ]
  4512. ))
  4513. characterMakers.push(() => makeCharacter(
  4514. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4515. {
  4516. front: {
  4517. height: math.unit(7 + 5 / 6, "feet"),
  4518. weight: math.unit(325, "lb"),
  4519. name: "Front",
  4520. image: {
  4521. source: "./media/characters/asana/front.svg",
  4522. extra: 1133 / 1060,
  4523. bottom: 15.2 / 1148.6
  4524. }
  4525. },
  4526. back: {
  4527. height: math.unit(7 + 5 / 6, "feet"),
  4528. weight: math.unit(325, "lb"),
  4529. name: "Back",
  4530. image: {
  4531. source: "./media/characters/asana/back.svg",
  4532. extra: 1114 / 1043,
  4533. bottom: 5 / 1120
  4534. }
  4535. },
  4536. dressedDark: {
  4537. height: math.unit(7 + 5 / 6, "feet"),
  4538. weight: math.unit(325, "lb"),
  4539. name: "Dressed (Dark)",
  4540. image: {
  4541. source: "./media/characters/asana/dressed-dark.svg",
  4542. extra: 1133 / 1060,
  4543. bottom: 15.2 / 1148.6
  4544. }
  4545. },
  4546. dressedLight: {
  4547. height: math.unit(7 + 5 / 6, "feet"),
  4548. weight: math.unit(325, "lb"),
  4549. name: "Dressed (Light)",
  4550. image: {
  4551. source: "./media/characters/asana/dressed-light.svg",
  4552. extra: 1133 / 1060,
  4553. bottom: 15.2 / 1148.6
  4554. }
  4555. },
  4556. },
  4557. [
  4558. {
  4559. name: "Standard",
  4560. height: math.unit(7 + 5 / 6, "feet"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Large",
  4565. height: math.unit(10, "meters")
  4566. },
  4567. {
  4568. name: "Macro",
  4569. height: math.unit(2500, "meters")
  4570. },
  4571. {
  4572. name: "Megamacro",
  4573. height: math.unit(5e6, "meters")
  4574. },
  4575. {
  4576. name: "Examacro",
  4577. height: math.unit(5e12, "lightyears")
  4578. },
  4579. {
  4580. name: "Max Size",
  4581. height: math.unit(1e31, "lightyears")
  4582. }
  4583. ]
  4584. ))
  4585. characterMakers.push(() => makeCharacter(
  4586. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4587. {
  4588. front: {
  4589. height: math.unit(2, "meter"),
  4590. weight: math.unit(60, "kg"),
  4591. name: "Front",
  4592. image: {
  4593. source: "./media/characters/ebony/front.svg",
  4594. bottom: 0.03,
  4595. extra: 1045 / 810 + 0.03
  4596. }
  4597. },
  4598. side: {
  4599. height: math.unit(2, "meter"),
  4600. weight: math.unit(60, "kg"),
  4601. name: "Side",
  4602. image: {
  4603. source: "./media/characters/ebony/side.svg",
  4604. bottom: 0.03,
  4605. extra: 1045 / 810 + 0.03
  4606. }
  4607. },
  4608. back: {
  4609. height: math.unit(2, "meter"),
  4610. weight: math.unit(60, "kg"),
  4611. name: "Back",
  4612. image: {
  4613. source: "./media/characters/ebony/back.svg",
  4614. bottom: 0.01,
  4615. extra: 1045 / 810 + 0.01
  4616. }
  4617. },
  4618. },
  4619. [
  4620. // TODO check why I did this lol
  4621. {
  4622. name: "Standard",
  4623. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4624. default: true
  4625. },
  4626. {
  4627. name: "Macro",
  4628. height: math.unit(200, "feet")
  4629. },
  4630. {
  4631. name: "Gigamacro",
  4632. height: math.unit(13000, "km")
  4633. }
  4634. ]
  4635. ))
  4636. characterMakers.push(() => makeCharacter(
  4637. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4638. {
  4639. front: {
  4640. height: math.unit(6, "feet"),
  4641. weight: math.unit(175, "lb"),
  4642. name: "Front",
  4643. image: {
  4644. source: "./media/characters/mountain/front.svg",
  4645. extra: 972 / 955,
  4646. bottom: 64 / 1036.6
  4647. }
  4648. },
  4649. back: {
  4650. height: math.unit(6, "feet"),
  4651. weight: math.unit(175, "lb"),
  4652. name: "Back",
  4653. image: {
  4654. source: "./media/characters/mountain/back.svg",
  4655. extra: 970 / 950,
  4656. bottom: 28.25 / 999
  4657. }
  4658. },
  4659. },
  4660. [
  4661. {
  4662. name: "Large",
  4663. height: math.unit(20, "meters")
  4664. },
  4665. {
  4666. name: "Macro",
  4667. height: math.unit(300, "meters")
  4668. },
  4669. {
  4670. name: "Gigamacro",
  4671. height: math.unit(10000, "km"),
  4672. default: true
  4673. },
  4674. {
  4675. name: "Examacro",
  4676. height: math.unit(10e9, "lightyears")
  4677. }
  4678. ]
  4679. ))
  4680. characterMakers.push(() => makeCharacter(
  4681. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4682. {
  4683. front: {
  4684. height: math.unit(8, "feet"),
  4685. weight: math.unit(500, "lb"),
  4686. name: "Front",
  4687. image: {
  4688. source: "./media/characters/rick/front.svg"
  4689. }
  4690. }
  4691. },
  4692. [
  4693. {
  4694. name: "Normal",
  4695. height: math.unit(8, "feet"),
  4696. default: true
  4697. },
  4698. {
  4699. name: "Macro",
  4700. height: math.unit(5, "km")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(8, "feet"),
  4709. weight: math.unit(120, "lb"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/ona/front.svg"
  4713. }
  4714. },
  4715. frontAlt: {
  4716. height: math.unit(8, "feet"),
  4717. weight: math.unit(120, "lb"),
  4718. name: "Front (Alt)",
  4719. image: {
  4720. source: "./media/characters/ona/front-alt.svg"
  4721. }
  4722. },
  4723. back: {
  4724. height: math.unit(8, "feet"),
  4725. weight: math.unit(120, "lb"),
  4726. name: "Back",
  4727. image: {
  4728. source: "./media/characters/ona/back.svg"
  4729. }
  4730. },
  4731. foot: {
  4732. height: math.unit(1.1, "feet"),
  4733. name: "Foot",
  4734. image: {
  4735. source: "./media/characters/ona/foot.svg"
  4736. }
  4737. }
  4738. },
  4739. [
  4740. {
  4741. name: "Megamacro",
  4742. height: math.unit(70, "km"),
  4743. default: true
  4744. },
  4745. {
  4746. name: "Gigamacro",
  4747. height: math.unit(681818, "miles")
  4748. },
  4749. {
  4750. name: "Examacro",
  4751. height: math.unit(3800000, "lightyears")
  4752. },
  4753. ]
  4754. ))
  4755. characterMakers.push(() => makeCharacter(
  4756. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4757. {
  4758. front: {
  4759. height: math.unit(12, "feet"),
  4760. weight: math.unit(3000, "lb"),
  4761. name: "Front",
  4762. image: {
  4763. source: "./media/characters/mech/front.svg",
  4764. extra: 2900 / 2770,
  4765. bottom: 110 / 3010
  4766. }
  4767. },
  4768. back: {
  4769. height: math.unit(12, "feet"),
  4770. weight: math.unit(3000, "lb"),
  4771. name: "Back",
  4772. image: {
  4773. source: "./media/characters/mech/back.svg",
  4774. extra: 3011 / 2890,
  4775. bottom: 94 / 3105
  4776. }
  4777. },
  4778. maw: {
  4779. height: math.unit(3.07, "feet"),
  4780. name: "Maw",
  4781. image: {
  4782. source: "./media/characters/mech/maw.svg"
  4783. }
  4784. },
  4785. head: {
  4786. height: math.unit(3.07, "feet"),
  4787. name: "Head",
  4788. image: {
  4789. source: "./media/characters/mech/head.svg"
  4790. }
  4791. },
  4792. dick: {
  4793. height: math.unit(1.43, "feet"),
  4794. name: "Dick",
  4795. image: {
  4796. source: "./media/characters/mech/dick.svg"
  4797. }
  4798. },
  4799. },
  4800. [
  4801. {
  4802. name: "Normal",
  4803. height: math.unit(12, "feet")
  4804. },
  4805. {
  4806. name: "Macro",
  4807. height: math.unit(300, "feet"),
  4808. default: true
  4809. },
  4810. {
  4811. name: "Macro+",
  4812. height: math.unit(1500, "feet")
  4813. },
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4818. {
  4819. front: {
  4820. height: math.unit(1.3, "meter"),
  4821. weight: math.unit(30, "kg"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/gregory/front.svg",
  4825. }
  4826. }
  4827. },
  4828. [
  4829. {
  4830. name: "Normal",
  4831. height: math.unit(1.3, "meter"),
  4832. default: true
  4833. },
  4834. {
  4835. name: "Macro",
  4836. height: math.unit(20, "meter")
  4837. }
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(2.8, "meter"),
  4845. weight: math.unit(200, "kg"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/elory/front.svg",
  4849. }
  4850. }
  4851. },
  4852. [
  4853. {
  4854. name: "Normal",
  4855. height: math.unit(2.8, "meter"),
  4856. default: true
  4857. },
  4858. {
  4859. name: "Macro",
  4860. height: math.unit(38, "meter")
  4861. }
  4862. ]
  4863. ))
  4864. characterMakers.push(() => makeCharacter(
  4865. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4866. {
  4867. front: {
  4868. height: math.unit(470, "feet"),
  4869. weight: math.unit(924, "tons"),
  4870. name: "Front",
  4871. image: {
  4872. source: "./media/characters/angelpatamon/front.svg",
  4873. }
  4874. }
  4875. },
  4876. [
  4877. {
  4878. name: "Normal",
  4879. height: math.unit(470, "feet"),
  4880. default: true
  4881. },
  4882. {
  4883. name: "Deity Size I",
  4884. height: math.unit(28651.2, "km")
  4885. },
  4886. {
  4887. name: "Deity Size II",
  4888. height: math.unit(171907.2, "km")
  4889. }
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4894. {
  4895. side: {
  4896. height: math.unit(7.2, "meter"),
  4897. weight: math.unit(8.2, "tons"),
  4898. name: "Side",
  4899. image: {
  4900. source: "./media/characters/cryae/side.svg",
  4901. extra: 3500 / 1500
  4902. }
  4903. }
  4904. },
  4905. [
  4906. {
  4907. name: "Normal",
  4908. height: math.unit(7.2, "meter"),
  4909. default: true
  4910. }
  4911. ]
  4912. ))
  4913. characterMakers.push(() => makeCharacter(
  4914. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4915. {
  4916. front: {
  4917. height: math.unit(6, "feet"),
  4918. weight: math.unit(175, "lb"),
  4919. name: "Front",
  4920. image: {
  4921. source: "./media/characters/xera/front.svg",
  4922. extra: 2377 / 1972,
  4923. bottom: 75.5 / 2452
  4924. }
  4925. },
  4926. side: {
  4927. height: math.unit(6, "feet"),
  4928. weight: math.unit(175, "lb"),
  4929. name: "Side",
  4930. image: {
  4931. source: "./media/characters/xera/side.svg",
  4932. extra: 2345 / 2019,
  4933. bottom: 39.7 / 2384
  4934. }
  4935. },
  4936. back: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(175, "lb"),
  4939. name: "Back",
  4940. image: {
  4941. source: "./media/characters/xera/back.svg",
  4942. extra: 2095 / 1984,
  4943. bottom: 67 / 2166
  4944. }
  4945. },
  4946. },
  4947. [
  4948. {
  4949. name: "Small",
  4950. height: math.unit(10, "feet")
  4951. },
  4952. {
  4953. name: "Macro",
  4954. height: math.unit(500, "meters"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Macro+",
  4959. height: math.unit(10, "km")
  4960. },
  4961. {
  4962. name: "Gigamacro",
  4963. height: math.unit(25000, "km")
  4964. },
  4965. {
  4966. name: "Teramacro",
  4967. height: math.unit(3e6, "km")
  4968. }
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(6, "feet"),
  4976. weight: math.unit(175, "lb"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/nebula/front.svg",
  4980. extra: 2566 / 2362,
  4981. bottom: 81 / 2644
  4982. }
  4983. }
  4984. },
  4985. [
  4986. {
  4987. name: "Small",
  4988. height: math.unit(4.5, "meters")
  4989. },
  4990. {
  4991. name: "Macro",
  4992. height: math.unit(1500, "meters"),
  4993. default: true
  4994. },
  4995. {
  4996. name: "Megamacro",
  4997. height: math.unit(150, "km")
  4998. },
  4999. {
  5000. name: "Gigamacro",
  5001. height: math.unit(27000, "km")
  5002. }
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5007. {
  5008. front: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(225, "lb"),
  5011. name: "Front",
  5012. image: {
  5013. source: "./media/characters/abysgar/front.svg",
  5014. extra: 1739/1614,
  5015. bottom: 71/1810
  5016. }
  5017. },
  5018. frontNsfw: {
  5019. height: math.unit(6, "feet"),
  5020. weight: math.unit(225, "lb"),
  5021. name: "Front (NSFW)",
  5022. image: {
  5023. source: "./media/characters/abysgar/front-nsfw.svg",
  5024. extra: 1739/1614,
  5025. bottom: 71/1810
  5026. }
  5027. },
  5028. back: {
  5029. height: math.unit(4.6, "feet"),
  5030. weight: math.unit(225, "lb"),
  5031. name: "Back",
  5032. image: {
  5033. source: "./media/characters/abysgar/back.svg",
  5034. extra: 1384/1327,
  5035. bottom: 0/1384
  5036. }
  5037. },
  5038. head: {
  5039. height: math.unit(1.25, "feet"),
  5040. name: "Head",
  5041. image: {
  5042. source: "./media/characters/abysgar/head.svg",
  5043. extra: 669/569,
  5044. bottom: 0/669
  5045. }
  5046. },
  5047. },
  5048. [
  5049. {
  5050. name: "Small",
  5051. height: math.unit(4.5, "meters")
  5052. },
  5053. {
  5054. name: "Macro",
  5055. height: math.unit(1250, "meters"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Megamacro",
  5060. height: math.unit(125, "km")
  5061. },
  5062. {
  5063. name: "Gigamacro",
  5064. height: math.unit(26000, "km")
  5065. }
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5070. {
  5071. front: {
  5072. height: math.unit(6, "feet"),
  5073. weight: math.unit(180, "lb"),
  5074. name: "Front",
  5075. image: {
  5076. source: "./media/characters/yakuz/front.svg"
  5077. }
  5078. }
  5079. },
  5080. [
  5081. {
  5082. name: "Small",
  5083. height: math.unit(5, "meters")
  5084. },
  5085. {
  5086. name: "Macro",
  5087. height: math.unit(1500, "meters"),
  5088. default: true
  5089. },
  5090. {
  5091. name: "Megamacro",
  5092. height: math.unit(200, "km")
  5093. },
  5094. {
  5095. name: "Gigamacro",
  5096. height: math.unit(100000, "km")
  5097. }
  5098. ]
  5099. ))
  5100. characterMakers.push(() => makeCharacter(
  5101. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5102. {
  5103. front: {
  5104. height: math.unit(6, "feet"),
  5105. weight: math.unit(175, "lb"),
  5106. name: "Front",
  5107. image: {
  5108. source: "./media/characters/mirova/front.svg",
  5109. extra: 3334 / 3071,
  5110. bottom: 42 / 3375.6
  5111. }
  5112. }
  5113. },
  5114. [
  5115. {
  5116. name: "Small",
  5117. height: math.unit(5, "meters")
  5118. },
  5119. {
  5120. name: "Macro",
  5121. height: math.unit(900, "meters"),
  5122. default: true
  5123. },
  5124. {
  5125. name: "Megamacro",
  5126. height: math.unit(135, "km")
  5127. },
  5128. {
  5129. name: "Gigamacro",
  5130. height: math.unit(20000, "km")
  5131. }
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5136. {
  5137. side: {
  5138. height: math.unit(28.35, "feet"),
  5139. weight: math.unit(99.75, "tons"),
  5140. name: "Side",
  5141. image: {
  5142. source: "./media/characters/asana-mech/side.svg",
  5143. extra: 923 / 699,
  5144. bottom: 50 / 975
  5145. }
  5146. },
  5147. chaingun: {
  5148. height: math.unit(7, "feet"),
  5149. weight: math.unit(2400, "lb"),
  5150. name: "Chaingun",
  5151. image: {
  5152. source: "./media/characters/asana-mech/chaingun.svg"
  5153. }
  5154. },
  5155. laser: {
  5156. height: math.unit(7.12, "feet"),
  5157. weight: math.unit(2000, "lb"),
  5158. name: "Laser",
  5159. image: {
  5160. source: "./media/characters/asana-mech/laser.svg"
  5161. }
  5162. },
  5163. },
  5164. [
  5165. {
  5166. name: "Normal",
  5167. height: math.unit(28.35, "feet"),
  5168. default: true
  5169. },
  5170. {
  5171. name: "Macro",
  5172. height: math.unit(2500, "feet")
  5173. },
  5174. {
  5175. name: "Megamacro",
  5176. height: math.unit(25, "miles")
  5177. },
  5178. {
  5179. name: "Examacro",
  5180. height: math.unit(6e8, "lightyears")
  5181. },
  5182. ]
  5183. ))
  5184. characterMakers.push(() => makeCharacter(
  5185. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5186. {
  5187. front: {
  5188. height: math.unit(5, "meters"),
  5189. weight: math.unit(1000, "kg"),
  5190. name: "Front",
  5191. image: {
  5192. source: "./media/characters/asche/front.svg",
  5193. extra: 1258 / 1190,
  5194. bottom: 47 / 1305
  5195. }
  5196. },
  5197. frontUnderwear: {
  5198. height: math.unit(5, "meters"),
  5199. weight: math.unit(1000, "kg"),
  5200. name: "Front (Underwear)",
  5201. image: {
  5202. source: "./media/characters/asche/front-underwear.svg",
  5203. extra: 1258 / 1190,
  5204. bottom: 47 / 1305
  5205. }
  5206. },
  5207. frontDressed: {
  5208. height: math.unit(5, "meters"),
  5209. weight: math.unit(1000, "kg"),
  5210. name: "Front (Dressed)",
  5211. image: {
  5212. source: "./media/characters/asche/front-dressed.svg",
  5213. extra: 1258 / 1190,
  5214. bottom: 47 / 1305
  5215. }
  5216. },
  5217. frontArmor: {
  5218. height: math.unit(5, "meters"),
  5219. weight: math.unit(1000, "kg"),
  5220. name: "Front (Armored)",
  5221. image: {
  5222. source: "./media/characters/asche/front-armored.svg",
  5223. extra: 1374 / 1308,
  5224. bottom: 23 / 1397
  5225. }
  5226. },
  5227. mp724: {
  5228. height: math.unit(0.96, "meters"),
  5229. weight: math.unit(38, "kg"),
  5230. name: "H&K MP724",
  5231. image: {
  5232. source: "./media/characters/asche/h&k-mp724.svg"
  5233. }
  5234. },
  5235. side: {
  5236. height: math.unit(5, "meters"),
  5237. weight: math.unit(1000, "kg"),
  5238. name: "Side",
  5239. image: {
  5240. source: "./media/characters/asche/side.svg",
  5241. extra: 1717 / 1609,
  5242. bottom: 0.005
  5243. }
  5244. },
  5245. back: {
  5246. height: math.unit(5, "meters"),
  5247. weight: math.unit(1000, "kg"),
  5248. name: "Back",
  5249. image: {
  5250. source: "./media/characters/asche/back.svg",
  5251. extra: 1570 / 1501
  5252. }
  5253. },
  5254. },
  5255. [
  5256. {
  5257. name: "DEFCON 5",
  5258. height: math.unit(5, "meters")
  5259. },
  5260. {
  5261. name: "DEFCON 4",
  5262. height: math.unit(500, "meters"),
  5263. default: true
  5264. },
  5265. {
  5266. name: "DEFCON 3",
  5267. height: math.unit(5, "km")
  5268. },
  5269. {
  5270. name: "DEFCON 2",
  5271. height: math.unit(500, "km")
  5272. },
  5273. {
  5274. name: "DEFCON 1",
  5275. height: math.unit(500000, "km")
  5276. },
  5277. {
  5278. name: "DEFCON 0",
  5279. height: math.unit(3, "gigaparsecs")
  5280. },
  5281. ]
  5282. ))
  5283. characterMakers.push(() => makeCharacter(
  5284. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5285. {
  5286. front: {
  5287. height: math.unit(2, "meters"),
  5288. weight: math.unit(76, "kg"),
  5289. name: "Front",
  5290. image: {
  5291. source: "./media/characters/gale/front.svg"
  5292. }
  5293. },
  5294. frontAlt1: {
  5295. height: math.unit(2, "meters"),
  5296. weight: math.unit(76, "kg"),
  5297. name: "Front (Alt 1)",
  5298. image: {
  5299. source: "./media/characters/gale/front-alt-1.svg"
  5300. }
  5301. },
  5302. frontAlt2: {
  5303. height: math.unit(2, "meters"),
  5304. weight: math.unit(76, "kg"),
  5305. name: "Front (Alt 2)",
  5306. image: {
  5307. source: "./media/characters/gale/front-alt-2.svg"
  5308. }
  5309. },
  5310. },
  5311. [
  5312. {
  5313. name: "Normal",
  5314. height: math.unit(7, "feet")
  5315. },
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(150, "feet"),
  5319. default: true
  5320. },
  5321. {
  5322. name: "Macro+",
  5323. height: math.unit(300, "feet")
  5324. },
  5325. ]
  5326. ))
  5327. characterMakers.push(() => makeCharacter(
  5328. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5329. {
  5330. front: {
  5331. height: math.unit(5 + 10/12, "feet"),
  5332. weight: math.unit(67, "kg"),
  5333. name: "Front",
  5334. image: {
  5335. source: "./media/characters/draylen/front.svg",
  5336. extra: 832/777,
  5337. bottom: 85/917
  5338. }
  5339. }
  5340. },
  5341. [
  5342. {
  5343. name: "Normal",
  5344. height: math.unit(5 + 10/12, "feet")
  5345. },
  5346. {
  5347. name: "Macro",
  5348. height: math.unit(150, "feet"),
  5349. default: true
  5350. }
  5351. ]
  5352. ))
  5353. characterMakers.push(() => makeCharacter(
  5354. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5355. {
  5356. front: {
  5357. height: math.unit(7 + 9 / 12, "feet"),
  5358. weight: math.unit(379, "lbs"),
  5359. name: "Front",
  5360. image: {
  5361. source: "./media/characters/chez/front.svg"
  5362. }
  5363. },
  5364. side: {
  5365. height: math.unit(7 + 9 / 12, "feet"),
  5366. weight: math.unit(379, "lbs"),
  5367. name: "Side",
  5368. image: {
  5369. source: "./media/characters/chez/side.svg"
  5370. }
  5371. }
  5372. },
  5373. [
  5374. {
  5375. name: "Normal",
  5376. height: math.unit(7 + 9 / 12, "feet"),
  5377. default: true
  5378. },
  5379. {
  5380. name: "God King",
  5381. height: math.unit(9750000, "meters")
  5382. }
  5383. ]
  5384. ))
  5385. characterMakers.push(() => makeCharacter(
  5386. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5387. {
  5388. front: {
  5389. height: math.unit(6, "feet"),
  5390. weight: math.unit(275, "lbs"),
  5391. name: "Front",
  5392. image: {
  5393. source: "./media/characters/kaylum/front.svg",
  5394. bottom: 0.01,
  5395. extra: 1166 / 1031
  5396. }
  5397. },
  5398. frontWingless: {
  5399. height: math.unit(6, "feet"),
  5400. weight: math.unit(275, "lbs"),
  5401. name: "Front (Wingless)",
  5402. image: {
  5403. source: "./media/characters/kaylum/front-wingless.svg",
  5404. bottom: 0.01,
  5405. extra: 1117 / 1031
  5406. }
  5407. }
  5408. },
  5409. [
  5410. {
  5411. name: "Normal",
  5412. height: math.unit(3.05, "meters")
  5413. },
  5414. {
  5415. name: "Master",
  5416. height: math.unit(5.5, "meters")
  5417. },
  5418. {
  5419. name: "Rampage",
  5420. height: math.unit(19, "meters")
  5421. },
  5422. {
  5423. name: "Macro Lite",
  5424. height: math.unit(37, "meters")
  5425. },
  5426. {
  5427. name: "Hyper Predator",
  5428. height: math.unit(61, "meters")
  5429. },
  5430. {
  5431. name: "Macro",
  5432. height: math.unit(138, "meters"),
  5433. default: true
  5434. }
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5439. {
  5440. front: {
  5441. height: math.unit(5 + 5 / 12, "feet"),
  5442. weight: math.unit(120, "lbs"),
  5443. name: "Front",
  5444. image: {
  5445. source: "./media/characters/geta/front.svg",
  5446. extra: 1003/933,
  5447. bottom: 21/1024
  5448. }
  5449. },
  5450. paw: {
  5451. height: math.unit(0.35, "feet"),
  5452. name: "Paw",
  5453. image: {
  5454. source: "./media/characters/geta/paw.svg"
  5455. }
  5456. },
  5457. },
  5458. [
  5459. {
  5460. name: "Micro",
  5461. height: math.unit(3, "inches"),
  5462. default: true
  5463. },
  5464. {
  5465. name: "Normal",
  5466. height: math.unit(5 + 5 / 12, "feet")
  5467. }
  5468. ]
  5469. ))
  5470. characterMakers.push(() => makeCharacter(
  5471. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5472. {
  5473. front: {
  5474. height: math.unit(6, "feet"),
  5475. weight: math.unit(300, "lbs"),
  5476. name: "Front",
  5477. image: {
  5478. source: "./media/characters/tyrnn/front.svg"
  5479. }
  5480. }
  5481. },
  5482. [
  5483. {
  5484. name: "Main Height",
  5485. height: math.unit(355, "feet"),
  5486. default: true
  5487. },
  5488. {
  5489. name: "Fave. Height",
  5490. height: math.unit(2400, "feet")
  5491. }
  5492. ]
  5493. ))
  5494. characterMakers.push(() => makeCharacter(
  5495. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5496. {
  5497. front: {
  5498. height: math.unit(6, "feet"),
  5499. weight: math.unit(300, "lbs"),
  5500. name: "Front",
  5501. image: {
  5502. source: "./media/characters/appledectomy/front.svg"
  5503. }
  5504. }
  5505. },
  5506. [
  5507. {
  5508. name: "Macro",
  5509. height: math.unit(2500, "feet")
  5510. },
  5511. {
  5512. name: "Megamacro",
  5513. height: math.unit(50, "miles"),
  5514. default: true
  5515. },
  5516. {
  5517. name: "Gigamacro",
  5518. height: math.unit(5000, "miles")
  5519. },
  5520. {
  5521. name: "Teramacro",
  5522. height: math.unit(250000, "miles")
  5523. },
  5524. ]
  5525. ))
  5526. characterMakers.push(() => makeCharacter(
  5527. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5528. {
  5529. front: {
  5530. height: math.unit(6, "feet"),
  5531. weight: math.unit(200, "lbs"),
  5532. name: "Front",
  5533. image: {
  5534. source: "./media/characters/vulpes/front.svg",
  5535. extra: 573 / 543,
  5536. bottom: 0.033
  5537. }
  5538. },
  5539. side: {
  5540. height: math.unit(6, "feet"),
  5541. weight: math.unit(200, "lbs"),
  5542. name: "Side",
  5543. image: {
  5544. source: "./media/characters/vulpes/side.svg",
  5545. extra: 577 / 549,
  5546. bottom: 11 / 588
  5547. }
  5548. },
  5549. back: {
  5550. height: math.unit(6, "feet"),
  5551. weight: math.unit(200, "lbs"),
  5552. name: "Back",
  5553. image: {
  5554. source: "./media/characters/vulpes/back.svg",
  5555. extra: 573 / 549,
  5556. bottom: 20 / 593
  5557. }
  5558. },
  5559. feet: {
  5560. height: math.unit(1.276, "feet"),
  5561. name: "Feet",
  5562. image: {
  5563. source: "./media/characters/vulpes/feet.svg"
  5564. }
  5565. },
  5566. maw: {
  5567. height: math.unit(1.18, "feet"),
  5568. name: "Maw",
  5569. image: {
  5570. source: "./media/characters/vulpes/maw.svg"
  5571. }
  5572. },
  5573. },
  5574. [
  5575. {
  5576. name: "Micro",
  5577. height: math.unit(2, "inches")
  5578. },
  5579. {
  5580. name: "Normal",
  5581. height: math.unit(6.3, "feet")
  5582. },
  5583. {
  5584. name: "Macro",
  5585. height: math.unit(850, "feet")
  5586. },
  5587. {
  5588. name: "Megamacro",
  5589. height: math.unit(7500, "feet"),
  5590. default: true
  5591. },
  5592. {
  5593. name: "Gigamacro",
  5594. height: math.unit(570000, "miles")
  5595. }
  5596. ]
  5597. ))
  5598. characterMakers.push(() => makeCharacter(
  5599. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5600. {
  5601. front: {
  5602. height: math.unit(6, "feet"),
  5603. weight: math.unit(210, "lbs"),
  5604. name: "Front",
  5605. image: {
  5606. source: "./media/characters/rain-fallen/front.svg"
  5607. }
  5608. },
  5609. side: {
  5610. height: math.unit(6, "feet"),
  5611. weight: math.unit(210, "lbs"),
  5612. name: "Side",
  5613. image: {
  5614. source: "./media/characters/rain-fallen/side.svg"
  5615. }
  5616. },
  5617. back: {
  5618. height: math.unit(6, "feet"),
  5619. weight: math.unit(210, "lbs"),
  5620. name: "Back",
  5621. image: {
  5622. source: "./media/characters/rain-fallen/back.svg"
  5623. }
  5624. },
  5625. feral: {
  5626. height: math.unit(9, "feet"),
  5627. weight: math.unit(700, "lbs"),
  5628. name: "Feral",
  5629. image: {
  5630. source: "./media/characters/rain-fallen/feral.svg"
  5631. }
  5632. },
  5633. },
  5634. [
  5635. {
  5636. name: "Meddling with Mortals",
  5637. height: math.unit(8 + 8/12, "feet")
  5638. },
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(5, "meter")
  5642. },
  5643. {
  5644. name: "Macro",
  5645. height: math.unit(150, "meter"),
  5646. default: true
  5647. },
  5648. {
  5649. name: "Megamacro",
  5650. height: math.unit(278e6, "meter")
  5651. },
  5652. {
  5653. name: "Gigamacro",
  5654. height: math.unit(2e9, "meter")
  5655. },
  5656. {
  5657. name: "Teramacro",
  5658. height: math.unit(8e12, "meter")
  5659. },
  5660. {
  5661. name: "Devourer",
  5662. height: math.unit(14, "zettameters")
  5663. },
  5664. {
  5665. name: "Scarlet King",
  5666. height: math.unit(18, "yottameters")
  5667. },
  5668. {
  5669. name: "Void",
  5670. height: math.unit(1e88, "yottameters")
  5671. }
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5676. {
  5677. standing: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(180, "lbs"),
  5680. name: "Standing",
  5681. image: {
  5682. source: "./media/characters/zaakira/standing.svg",
  5683. extra: 1599/1504,
  5684. bottom: 39/1638
  5685. }
  5686. },
  5687. laying: {
  5688. height: math.unit(3.3, "feet"),
  5689. weight: math.unit(180, "lbs"),
  5690. name: "Laying",
  5691. image: {
  5692. source: "./media/characters/zaakira/laying.svg"
  5693. }
  5694. },
  5695. },
  5696. [
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(12, "feet")
  5700. },
  5701. {
  5702. name: "Macro",
  5703. height: math.unit(279, "feet"),
  5704. default: true
  5705. }
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5710. {
  5711. femSfw: {
  5712. height: math.unit(8, "feet"),
  5713. weight: math.unit(350, "lb"),
  5714. name: "Fem",
  5715. image: {
  5716. source: "./media/characters/sigvald/fem-sfw.svg",
  5717. extra: 182 / 164,
  5718. bottom: 8.7 / 190.5
  5719. }
  5720. },
  5721. femNsfw: {
  5722. height: math.unit(8, "feet"),
  5723. weight: math.unit(350, "lb"),
  5724. name: "Fem (NSFW)",
  5725. image: {
  5726. source: "./media/characters/sigvald/fem-nsfw.svg",
  5727. extra: 182 / 164,
  5728. bottom: 8.7 / 190.5
  5729. }
  5730. },
  5731. maleNsfw: {
  5732. height: math.unit(8, "feet"),
  5733. weight: math.unit(350, "lb"),
  5734. name: "Male (NSFW)",
  5735. image: {
  5736. source: "./media/characters/sigvald/male-nsfw.svg",
  5737. extra: 182 / 164,
  5738. bottom: 8.7 / 190.5
  5739. }
  5740. },
  5741. hermNsfw: {
  5742. height: math.unit(8, "feet"),
  5743. weight: math.unit(350, "lb"),
  5744. name: "Herm (NSFW)",
  5745. image: {
  5746. source: "./media/characters/sigvald/herm-nsfw.svg",
  5747. extra: 182 / 164,
  5748. bottom: 8.7 / 190.5
  5749. }
  5750. },
  5751. dick: {
  5752. height: math.unit(2.36, "feet"),
  5753. name: "Dick",
  5754. image: {
  5755. source: "./media/characters/sigvald/dick.svg"
  5756. }
  5757. },
  5758. eye: {
  5759. height: math.unit(0.31, "feet"),
  5760. name: "Eye",
  5761. image: {
  5762. source: "./media/characters/sigvald/eye.svg"
  5763. }
  5764. },
  5765. mouth: {
  5766. height: math.unit(0.92, "feet"),
  5767. name: "Mouth",
  5768. image: {
  5769. source: "./media/characters/sigvald/mouth.svg"
  5770. }
  5771. },
  5772. paws: {
  5773. height: math.unit(2.2, "feet"),
  5774. name: "Paws",
  5775. image: {
  5776. source: "./media/characters/sigvald/paws.svg"
  5777. }
  5778. }
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(8, "feet")
  5784. },
  5785. {
  5786. name: "Large",
  5787. height: math.unit(12, "feet")
  5788. },
  5789. {
  5790. name: "Larger",
  5791. height: math.unit(20, "feet")
  5792. },
  5793. {
  5794. name: "Macro",
  5795. height: math.unit(150, "feet")
  5796. },
  5797. {
  5798. name: "Macro+",
  5799. height: math.unit(200, "feet"),
  5800. default: true
  5801. },
  5802. ]
  5803. ))
  5804. characterMakers.push(() => makeCharacter(
  5805. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5806. {
  5807. side: {
  5808. height: math.unit(12, "feet"),
  5809. weight: math.unit(2000, "kg"),
  5810. name: "Side",
  5811. image: {
  5812. source: "./media/characters/scott/side.svg",
  5813. extra: 754 / 724,
  5814. bottom: 0.069
  5815. }
  5816. },
  5817. upright: {
  5818. height: math.unit(12, "feet"),
  5819. weight: math.unit(2000, "kg"),
  5820. name: "Upright",
  5821. image: {
  5822. source: "./media/characters/scott/upright.svg",
  5823. extra: 3881 / 3722,
  5824. bottom: 0.05
  5825. }
  5826. },
  5827. },
  5828. [
  5829. {
  5830. name: "Normal",
  5831. height: math.unit(12, "feet"),
  5832. default: true
  5833. },
  5834. ]
  5835. ))
  5836. characterMakers.push(() => makeCharacter(
  5837. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5838. {
  5839. side: {
  5840. height: math.unit(8, "meters"),
  5841. weight: math.unit(84755, "lbs"),
  5842. name: "Side",
  5843. image: {
  5844. source: "./media/characters/tobias/side.svg",
  5845. extra: 1474 / 1096,
  5846. bottom: 38.9 / 1513.1235
  5847. }
  5848. },
  5849. },
  5850. [
  5851. {
  5852. name: "Normal",
  5853. height: math.unit(8, "meters"),
  5854. default: true
  5855. },
  5856. ]
  5857. ))
  5858. characterMakers.push(() => makeCharacter(
  5859. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5860. {
  5861. front: {
  5862. height: math.unit(5.5, "feet"),
  5863. weight: math.unit(400, "lbs"),
  5864. name: "Front",
  5865. image: {
  5866. source: "./media/characters/kieran/front.svg",
  5867. extra: 2694 / 2364,
  5868. bottom: 217 / 2908
  5869. }
  5870. },
  5871. side: {
  5872. height: math.unit(5.5, "feet"),
  5873. weight: math.unit(400, "lbs"),
  5874. name: "Side",
  5875. image: {
  5876. source: "./media/characters/kieran/side.svg",
  5877. extra: 875 / 777,
  5878. bottom: 84.6 / 959
  5879. }
  5880. },
  5881. },
  5882. [
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(5.5, "feet"),
  5886. default: true
  5887. },
  5888. ]
  5889. ))
  5890. characterMakers.push(() => makeCharacter(
  5891. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5892. {
  5893. side: {
  5894. height: math.unit(2, "meters"),
  5895. weight: math.unit(70, "kg"),
  5896. name: "Side",
  5897. image: {
  5898. source: "./media/characters/sanya/side.svg",
  5899. bottom: 0.02,
  5900. extra: 1.02
  5901. }
  5902. },
  5903. },
  5904. [
  5905. {
  5906. name: "Small",
  5907. height: math.unit(2, "meters")
  5908. },
  5909. {
  5910. name: "Normal",
  5911. height: math.unit(3, "meters")
  5912. },
  5913. {
  5914. name: "Macro",
  5915. height: math.unit(16, "meters"),
  5916. default: true
  5917. },
  5918. ]
  5919. ))
  5920. characterMakers.push(() => makeCharacter(
  5921. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5922. {
  5923. front: {
  5924. height: math.unit(2, "meters"),
  5925. weight: math.unit(120, "kg"),
  5926. name: "Front",
  5927. image: {
  5928. source: "./media/characters/miranda/front.svg",
  5929. extra: 195 / 185,
  5930. bottom: 10.9 / 206.5
  5931. }
  5932. },
  5933. back: {
  5934. height: math.unit(2, "meters"),
  5935. weight: math.unit(120, "kg"),
  5936. name: "Back",
  5937. image: {
  5938. source: "./media/characters/miranda/back.svg",
  5939. extra: 201 / 193,
  5940. bottom: 2.3 / 203.7
  5941. }
  5942. },
  5943. },
  5944. [
  5945. {
  5946. name: "Normal",
  5947. height: math.unit(10, "feet"),
  5948. default: true
  5949. }
  5950. ]
  5951. ))
  5952. characterMakers.push(() => makeCharacter(
  5953. { name: "James", species: ["deer"], tags: ["anthro"] },
  5954. {
  5955. side: {
  5956. height: math.unit(2, "meters"),
  5957. weight: math.unit(100, "kg"),
  5958. name: "Front",
  5959. image: {
  5960. source: "./media/characters/james/front.svg",
  5961. extra: 10 / 8.5
  5962. }
  5963. },
  5964. },
  5965. [
  5966. {
  5967. name: "Normal",
  5968. height: math.unit(8.5, "feet"),
  5969. default: true
  5970. }
  5971. ]
  5972. ))
  5973. characterMakers.push(() => makeCharacter(
  5974. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5975. {
  5976. side: {
  5977. height: math.unit(9.5, "feet"),
  5978. weight: math.unit(2500, "lbs"),
  5979. name: "Side",
  5980. image: {
  5981. source: "./media/characters/heather/side.svg"
  5982. }
  5983. },
  5984. },
  5985. [
  5986. {
  5987. name: "Normal",
  5988. height: math.unit(9.5, "feet"),
  5989. default: true
  5990. }
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5995. {
  5996. side: {
  5997. height: math.unit(6.5, "feet"),
  5998. weight: math.unit(400, "lbs"),
  5999. name: "Side",
  6000. image: {
  6001. source: "./media/characters/lukas/side.svg",
  6002. extra: 7.25 / 6.5
  6003. }
  6004. },
  6005. },
  6006. [
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(6.5, "feet"),
  6010. default: true
  6011. }
  6012. ]
  6013. ))
  6014. characterMakers.push(() => makeCharacter(
  6015. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6016. {
  6017. side: {
  6018. height: math.unit(5, "feet"),
  6019. weight: math.unit(3000, "lbs"),
  6020. name: "Side",
  6021. image: {
  6022. source: "./media/characters/louise/side.svg"
  6023. }
  6024. },
  6025. },
  6026. [
  6027. {
  6028. name: "Normal",
  6029. height: math.unit(5, "feet"),
  6030. default: true
  6031. }
  6032. ]
  6033. ))
  6034. characterMakers.push(() => makeCharacter(
  6035. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6036. {
  6037. side: {
  6038. height: math.unit(6, "feet"),
  6039. weight: math.unit(150, "lbs"),
  6040. name: "Side",
  6041. image: {
  6042. source: "./media/characters/ramona/side.svg",
  6043. extra: 871/854,
  6044. bottom: 41/912
  6045. }
  6046. },
  6047. },
  6048. [
  6049. {
  6050. name: "Normal",
  6051. height: math.unit(6 + 4/12, "feet")
  6052. },
  6053. {
  6054. name: "Minimacro",
  6055. height: math.unit(5.3, "meters"),
  6056. default: true
  6057. },
  6058. {
  6059. name: "Macro",
  6060. height: math.unit(20, "stories")
  6061. },
  6062. {
  6063. name: "Macro+",
  6064. height: math.unit(50, "stories")
  6065. },
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6070. {
  6071. standing: {
  6072. height: math.unit(5.75, "feet"),
  6073. weight: math.unit(160, "lbs"),
  6074. name: "Standing",
  6075. image: {
  6076. source: "./media/characters/deerpuff/standing.svg",
  6077. extra: 682 / 624
  6078. }
  6079. },
  6080. sitting: {
  6081. height: math.unit(5.75 / 1.79, "feet"),
  6082. weight: math.unit(160, "lbs"),
  6083. name: "Sitting",
  6084. image: {
  6085. source: "./media/characters/deerpuff/sitting.svg",
  6086. bottom: 44 / 400,
  6087. extra: 1
  6088. }
  6089. },
  6090. taurLaying: {
  6091. height: math.unit(6, "feet"),
  6092. weight: math.unit(400, "lbs"),
  6093. name: "Taur (Laying)",
  6094. image: {
  6095. source: "./media/characters/deerpuff/taur-laying.svg"
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Puffball",
  6102. height: math.unit(6, "inches")
  6103. },
  6104. {
  6105. name: "Normalpuff",
  6106. height: math.unit(5.75, "feet")
  6107. },
  6108. {
  6109. name: "Macropuff",
  6110. height: math.unit(1500, "feet"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Megapuff",
  6115. height: math.unit(500, "miles")
  6116. },
  6117. {
  6118. name: "Gigapuff",
  6119. height: math.unit(250000, "miles")
  6120. },
  6121. {
  6122. name: "Omegapuff",
  6123. height: math.unit(1000, "lightyears")
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6129. {
  6130. stomping: {
  6131. height: math.unit(6, "feet"),
  6132. weight: math.unit(170, "lbs"),
  6133. name: "Stomping",
  6134. image: {
  6135. source: "./media/characters/vivian/stomping.svg"
  6136. }
  6137. },
  6138. sitting: {
  6139. height: math.unit(6 / 1.75, "feet"),
  6140. weight: math.unit(170, "lbs"),
  6141. name: "Sitting",
  6142. image: {
  6143. source: "./media/characters/vivian/sitting.svg",
  6144. bottom: 1 / 6.4,
  6145. extra: 1,
  6146. }
  6147. },
  6148. },
  6149. [
  6150. {
  6151. name: "Normal",
  6152. height: math.unit(7, "feet"),
  6153. default: true
  6154. },
  6155. {
  6156. name: "Macro",
  6157. height: math.unit(10, "stories")
  6158. },
  6159. {
  6160. name: "Macro+",
  6161. height: math.unit(30, "stories")
  6162. },
  6163. {
  6164. name: "Megamacro",
  6165. height: math.unit(10, "miles")
  6166. },
  6167. {
  6168. name: "Megamacro+",
  6169. height: math.unit(2750000, "meters")
  6170. },
  6171. ]
  6172. ))
  6173. characterMakers.push(() => makeCharacter(
  6174. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6175. {
  6176. front: {
  6177. height: math.unit(6, "feet"),
  6178. weight: math.unit(160, "lbs"),
  6179. name: "Front",
  6180. image: {
  6181. source: "./media/characters/prince/front.svg",
  6182. extra: 1938/1682,
  6183. bottom: 45/1983
  6184. }
  6185. },
  6186. back: {
  6187. height: math.unit(6, "feet"),
  6188. weight: math.unit(160, "lbs"),
  6189. name: "Back",
  6190. image: {
  6191. source: "./media/characters/prince/back.svg",
  6192. extra: 1955/1726,
  6193. bottom: 6/1961
  6194. }
  6195. },
  6196. },
  6197. [
  6198. {
  6199. name: "Normal",
  6200. height: math.unit(7.75, "feet"),
  6201. default: true
  6202. },
  6203. {
  6204. name: "Not cute",
  6205. height: math.unit(17, "feet")
  6206. },
  6207. {
  6208. name: "I said NOT",
  6209. height: math.unit(91, "feet")
  6210. },
  6211. {
  6212. name: "Please stop",
  6213. height: math.unit(560, "feet")
  6214. },
  6215. {
  6216. name: "What have you done",
  6217. height: math.unit(2200, "feet")
  6218. },
  6219. {
  6220. name: "Deer God",
  6221. height: math.unit(3.6, "miles")
  6222. },
  6223. ]
  6224. ))
  6225. characterMakers.push(() => makeCharacter(
  6226. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6227. {
  6228. standing: {
  6229. height: math.unit(6, "feet"),
  6230. weight: math.unit(300, "lbs"),
  6231. name: "Standing",
  6232. image: {
  6233. source: "./media/characters/psymon/standing.svg",
  6234. extra: 1888 / 1810,
  6235. bottom: 0.05
  6236. }
  6237. },
  6238. slithering: {
  6239. height: math.unit(6, "feet"),
  6240. weight: math.unit(300, "lbs"),
  6241. name: "Slithering",
  6242. image: {
  6243. source: "./media/characters/psymon/slithering.svg",
  6244. extra: 1330 / 1224
  6245. }
  6246. },
  6247. slitheringAlt: {
  6248. height: math.unit(6, "feet"),
  6249. weight: math.unit(300, "lbs"),
  6250. name: "Slithering (Alt)",
  6251. image: {
  6252. source: "./media/characters/psymon/slithering-alt.svg",
  6253. extra: 1330 / 1224
  6254. }
  6255. },
  6256. },
  6257. [
  6258. {
  6259. name: "Normal",
  6260. height: math.unit(11.25, "feet"),
  6261. default: true
  6262. },
  6263. {
  6264. name: "Large",
  6265. height: math.unit(27, "feet")
  6266. },
  6267. {
  6268. name: "Giant",
  6269. height: math.unit(87, "feet")
  6270. },
  6271. {
  6272. name: "Macro",
  6273. height: math.unit(365, "feet")
  6274. },
  6275. {
  6276. name: "Megamacro",
  6277. height: math.unit(3, "miles")
  6278. },
  6279. {
  6280. name: "World Serpent",
  6281. height: math.unit(8000, "miles")
  6282. },
  6283. ]
  6284. ))
  6285. characterMakers.push(() => makeCharacter(
  6286. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6287. {
  6288. front: {
  6289. height: math.unit(6, "feet"),
  6290. weight: math.unit(180, "lbs"),
  6291. name: "Front",
  6292. image: {
  6293. source: "./media/characters/daimos/front.svg",
  6294. extra: 4160 / 3897,
  6295. bottom: 0.021
  6296. }
  6297. }
  6298. },
  6299. [
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(8, "feet"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Big Dog",
  6307. height: math.unit(22, "feet")
  6308. },
  6309. {
  6310. name: "Macro",
  6311. height: math.unit(127, "feet")
  6312. },
  6313. {
  6314. name: "Megamacro",
  6315. height: math.unit(3600, "feet")
  6316. },
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6321. {
  6322. side: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(180, "lbs"),
  6325. name: "Side",
  6326. image: {
  6327. source: "./media/characters/blake/side.svg",
  6328. extra: 1212 / 1120,
  6329. bottom: 0.05
  6330. }
  6331. },
  6332. crouched: {
  6333. height: math.unit(6 * 0.57, "feet"),
  6334. weight: math.unit(180, "lbs"),
  6335. name: "Crouched",
  6336. image: {
  6337. source: "./media/characters/blake/crouched.svg",
  6338. extra: 840 / 587,
  6339. bottom: 0.04
  6340. }
  6341. },
  6342. bent: {
  6343. height: math.unit(6 * 0.75, "feet"),
  6344. weight: math.unit(180, "lbs"),
  6345. name: "Bent",
  6346. image: {
  6347. source: "./media/characters/blake/bent.svg",
  6348. extra: 592 / 544,
  6349. bottom: 0.035
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(8 + 1 / 6, "feet"),
  6357. default: true
  6358. },
  6359. {
  6360. name: "Big Backside",
  6361. height: math.unit(37, "feet")
  6362. },
  6363. {
  6364. name: "Subway Shredder",
  6365. height: math.unit(72, "feet")
  6366. },
  6367. {
  6368. name: "City Carver",
  6369. height: math.unit(1675, "feet")
  6370. },
  6371. {
  6372. name: "Tectonic Tweaker",
  6373. height: math.unit(2300, "miles")
  6374. },
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6379. {
  6380. front: {
  6381. height: math.unit(6, "feet"),
  6382. weight: math.unit(180, "lbs"),
  6383. name: "Front",
  6384. image: {
  6385. source: "./media/characters/guisetto/front.svg",
  6386. extra: 856 / 817,
  6387. bottom: 0.06
  6388. }
  6389. },
  6390. airborne: {
  6391. height: math.unit(6, "feet"),
  6392. weight: math.unit(180, "lbs"),
  6393. name: "Airborne",
  6394. image: {
  6395. source: "./media/characters/guisetto/airborne.svg",
  6396. extra: 584 / 525
  6397. }
  6398. },
  6399. },
  6400. [
  6401. {
  6402. name: "Normal",
  6403. height: math.unit(10 + 11 / 12, "feet"),
  6404. default: true
  6405. },
  6406. {
  6407. name: "Large",
  6408. height: math.unit(35, "feet")
  6409. },
  6410. {
  6411. name: "Macro",
  6412. height: math.unit(475, "feet")
  6413. },
  6414. ]
  6415. ))
  6416. characterMakers.push(() => makeCharacter(
  6417. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6418. {
  6419. front: {
  6420. height: math.unit(6, "feet"),
  6421. weight: math.unit(180, "lbs"),
  6422. name: "Front",
  6423. image: {
  6424. source: "./media/characters/luxor/front.svg",
  6425. extra: 2940 / 2152
  6426. }
  6427. },
  6428. back: {
  6429. height: math.unit(6, "feet"),
  6430. weight: math.unit(180, "lbs"),
  6431. name: "Back",
  6432. image: {
  6433. source: "./media/characters/luxor/back.svg",
  6434. extra: 1083 / 960
  6435. }
  6436. },
  6437. },
  6438. [
  6439. {
  6440. name: "Normal",
  6441. height: math.unit(5 + 5 / 6, "feet"),
  6442. default: true
  6443. },
  6444. {
  6445. name: "Lamp",
  6446. height: math.unit(50, "feet")
  6447. },
  6448. {
  6449. name: "Lämp",
  6450. height: math.unit(300, "feet")
  6451. },
  6452. {
  6453. name: "The sun is a lamp",
  6454. height: math.unit(250000, "miles")
  6455. },
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6460. {
  6461. front: {
  6462. height: math.unit(6, "feet"),
  6463. weight: math.unit(50, "lbs"),
  6464. name: "Front",
  6465. image: {
  6466. source: "./media/characters/huoyan/front.svg"
  6467. }
  6468. },
  6469. side: {
  6470. height: math.unit(6, "feet"),
  6471. weight: math.unit(180, "lbs"),
  6472. name: "Side",
  6473. image: {
  6474. source: "./media/characters/huoyan/side.svg"
  6475. }
  6476. },
  6477. },
  6478. [
  6479. {
  6480. name: "Chef",
  6481. height: math.unit(9, "feet")
  6482. },
  6483. {
  6484. name: "Normal",
  6485. height: math.unit(65, "feet"),
  6486. default: true
  6487. },
  6488. {
  6489. name: "Macro",
  6490. height: math.unit(780, "feet")
  6491. },
  6492. {
  6493. name: "Flaming Mountain",
  6494. height: math.unit(4.8, "miles")
  6495. },
  6496. {
  6497. name: "Celestial",
  6498. height: math.unit(765000, "miles")
  6499. },
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6504. {
  6505. front: {
  6506. height: math.unit(5 + 3 / 4, "feet"),
  6507. weight: math.unit(120, "lbs"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/tails/front.svg"
  6511. }
  6512. }
  6513. },
  6514. [
  6515. {
  6516. name: "Normal",
  6517. height: math.unit(5 + 3 / 4, "feet"),
  6518. default: true
  6519. }
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6524. {
  6525. front: {
  6526. height: math.unit(4, "feet"),
  6527. weight: math.unit(50, "lbs"),
  6528. name: "Front",
  6529. image: {
  6530. source: "./media/characters/rainy/front.svg"
  6531. }
  6532. }
  6533. },
  6534. [
  6535. {
  6536. name: "Macro",
  6537. height: math.unit(800, "feet"),
  6538. default: true
  6539. }
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(150, "lbs"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/rainier/front.svg"
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Micro",
  6557. height: math.unit(2, "mm"),
  6558. default: true
  6559. }
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(8 + 4/12, "feet"),
  6567. weight: math.unit(450, "kilograms"),
  6568. volume: math.unit(5, "cups"),
  6569. name: "Front",
  6570. image: {
  6571. source: "./media/characters/andy-renard/front.svg",
  6572. extra: 1839/1726,
  6573. bottom: 134/1973
  6574. }
  6575. },
  6576. back: {
  6577. height: math.unit(8 + 4/12, "feet"),
  6578. weight: math.unit(450, "kilograms"),
  6579. volume: math.unit(5, "cups"),
  6580. name: "Back",
  6581. image: {
  6582. source: "./media/characters/andy-renard/back.svg",
  6583. extra: 1838/1710,
  6584. bottom: 105/1943
  6585. }
  6586. },
  6587. },
  6588. [
  6589. {
  6590. name: "Tall",
  6591. height: math.unit(8 + 4/12, "feet")
  6592. },
  6593. {
  6594. name: "Mini Macro",
  6595. height: math.unit(15, "feet"),
  6596. default: true
  6597. },
  6598. {
  6599. name: "Macro",
  6600. height: math.unit(100, "feet")
  6601. },
  6602. {
  6603. name: "Mega Macro",
  6604. height: math.unit(1000, "feet")
  6605. },
  6606. {
  6607. name: "Giga Macro",
  6608. height: math.unit(10, "miles")
  6609. },
  6610. {
  6611. name: "God Macro",
  6612. height: math.unit(1, "multiverse")
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6618. {
  6619. front: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(210, "lbs"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/cimmaron/front-sfw.svg",
  6625. extra: 701 / 676,
  6626. bottom: 0.046
  6627. }
  6628. },
  6629. back: {
  6630. height: math.unit(6, "feet"),
  6631. weight: math.unit(210, "lbs"),
  6632. name: "Back",
  6633. image: {
  6634. source: "./media/characters/cimmaron/back-sfw.svg",
  6635. extra: 701 / 676,
  6636. bottom: 0.046
  6637. }
  6638. },
  6639. frontNsfw: {
  6640. height: math.unit(6, "feet"),
  6641. weight: math.unit(210, "lbs"),
  6642. name: "Front (NSFW)",
  6643. image: {
  6644. source: "./media/characters/cimmaron/front-nsfw.svg",
  6645. extra: 701 / 676,
  6646. bottom: 0.046
  6647. }
  6648. },
  6649. backNsfw: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(210, "lbs"),
  6652. name: "Back (NSFW)",
  6653. image: {
  6654. source: "./media/characters/cimmaron/back-nsfw.svg",
  6655. extra: 701 / 676,
  6656. bottom: 0.046
  6657. }
  6658. },
  6659. dick: {
  6660. height: math.unit(1.714, "feet"),
  6661. name: "Dick",
  6662. image: {
  6663. source: "./media/characters/cimmaron/dick.svg"
  6664. }
  6665. },
  6666. },
  6667. [
  6668. {
  6669. name: "Normal",
  6670. height: math.unit(6, "feet"),
  6671. default: true
  6672. },
  6673. {
  6674. name: "Macro Mayor",
  6675. height: math.unit(350, "meters")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(6, "feet"),
  6684. weight: math.unit(200, "lbs"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/akari/front.svg",
  6688. extra: 962 / 901,
  6689. bottom: 0.04
  6690. }
  6691. }
  6692. },
  6693. [
  6694. {
  6695. name: "Micro",
  6696. height: math.unit(5, "inches"),
  6697. default: true
  6698. },
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(7, "feet")
  6702. },
  6703. ]
  6704. ))
  6705. characterMakers.push(() => makeCharacter(
  6706. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6707. {
  6708. front: {
  6709. height: math.unit(6, "feet"),
  6710. weight: math.unit(140, "lbs"),
  6711. name: "Front",
  6712. image: {
  6713. source: "./media/characters/cynosura/front.svg",
  6714. extra: 437/410,
  6715. bottom: 9/446
  6716. }
  6717. },
  6718. back: {
  6719. height: math.unit(6, "feet"),
  6720. weight: math.unit(140, "lbs"),
  6721. name: "Back",
  6722. image: {
  6723. source: "./media/characters/cynosura/back.svg",
  6724. extra: 1304/1160,
  6725. bottom: 71/1375
  6726. }
  6727. },
  6728. },
  6729. [
  6730. {
  6731. name: "Micro",
  6732. height: math.unit(4, "inches")
  6733. },
  6734. {
  6735. name: "Normal",
  6736. height: math.unit(5.75, "feet"),
  6737. default: true
  6738. },
  6739. {
  6740. name: "Tall",
  6741. height: math.unit(10, "feet")
  6742. },
  6743. {
  6744. name: "Big",
  6745. height: math.unit(20, "feet")
  6746. },
  6747. {
  6748. name: "Macro",
  6749. height: math.unit(50, "feet")
  6750. },
  6751. ]
  6752. ))
  6753. characterMakers.push(() => makeCharacter(
  6754. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6755. {
  6756. front: {
  6757. height: math.unit(13 + 2/12, "feet"),
  6758. weight: math.unit(800, "kg"),
  6759. name: "Front",
  6760. image: {
  6761. source: "./media/characters/gin/front.svg",
  6762. extra: 1312/1191,
  6763. bottom: 45/1357
  6764. }
  6765. },
  6766. mouth: {
  6767. height: math.unit(2.39 * 1.8, "feet"),
  6768. name: "Mouth",
  6769. image: {
  6770. source: "./media/characters/gin/mouth.svg"
  6771. }
  6772. },
  6773. hand: {
  6774. height: math.unit(1.57 * 2.19, "feet"),
  6775. name: "Hand",
  6776. image: {
  6777. source: "./media/characters/gin/hand.svg"
  6778. }
  6779. },
  6780. foot: {
  6781. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6782. name: "Foot",
  6783. image: {
  6784. source: "./media/characters/gin/foot.svg"
  6785. }
  6786. },
  6787. sole: {
  6788. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6789. name: "Sole",
  6790. image: {
  6791. source: "./media/characters/gin/sole.svg"
  6792. }
  6793. },
  6794. },
  6795. [
  6796. {
  6797. name: "Very Small",
  6798. height: math.unit(13 + 2 / 12, "feet")
  6799. },
  6800. {
  6801. name: "Micro",
  6802. height: math.unit(600, "miles")
  6803. },
  6804. {
  6805. name: "Regular",
  6806. height: math.unit(20, "earths"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Macro",
  6811. height: math.unit(2.2, "solarradii")
  6812. },
  6813. {
  6814. name: "Teramacro",
  6815. height: math.unit(1.2, "galaxies")
  6816. },
  6817. {
  6818. name: "Omegamacro",
  6819. height: math.unit(200, "universes")
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6825. {
  6826. front: {
  6827. height: math.unit(6 + 1 / 6, "feet"),
  6828. weight: math.unit(178, "lbs"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/guy/front.svg"
  6832. }
  6833. }
  6834. },
  6835. [
  6836. {
  6837. name: "Normal",
  6838. height: math.unit(6 + 1 / 6, "feet"),
  6839. default: true
  6840. },
  6841. {
  6842. name: "Large",
  6843. height: math.unit(25 + 7 / 12, "feet")
  6844. },
  6845. {
  6846. name: "Macro",
  6847. height: math.unit(60 + 9 / 12, "feet")
  6848. },
  6849. {
  6850. name: "Macro+",
  6851. height: math.unit(246, "feet")
  6852. },
  6853. {
  6854. name: "Macro++",
  6855. height: math.unit(878, "feet")
  6856. }
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(9, "feet"),
  6864. weight: math.unit(800, "lbs"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/tiberius/front.svg",
  6868. extra: 2295 / 2071
  6869. }
  6870. },
  6871. back: {
  6872. height: math.unit(9, "feet"),
  6873. weight: math.unit(800, "lbs"),
  6874. name: "Back",
  6875. image: {
  6876. source: "./media/characters/tiberius/back.svg",
  6877. extra: 2373 / 2160
  6878. }
  6879. },
  6880. },
  6881. [
  6882. {
  6883. name: "Normal",
  6884. height: math.unit(9, "feet"),
  6885. default: true
  6886. }
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6891. {
  6892. front: {
  6893. height: math.unit(6, "feet"),
  6894. weight: math.unit(600, "lbs"),
  6895. name: "Front",
  6896. image: {
  6897. source: "./media/characters/surgo/front.svg",
  6898. extra: 3591 / 2227
  6899. }
  6900. },
  6901. back: {
  6902. height: math.unit(6, "feet"),
  6903. weight: math.unit(600, "lbs"),
  6904. name: "Back",
  6905. image: {
  6906. source: "./media/characters/surgo/back.svg",
  6907. extra: 3557 / 2228
  6908. }
  6909. },
  6910. laying: {
  6911. height: math.unit(6 * 0.85, "feet"),
  6912. weight: math.unit(600, "lbs"),
  6913. name: "Laying",
  6914. image: {
  6915. source: "./media/characters/surgo/laying.svg"
  6916. }
  6917. },
  6918. },
  6919. [
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(6, "feet"),
  6923. default: true
  6924. }
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6929. {
  6930. side: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(150, "lbs"),
  6933. name: "Side",
  6934. image: {
  6935. source: "./media/characters/cibus/side.svg",
  6936. extra: 800 / 400
  6937. }
  6938. },
  6939. },
  6940. [
  6941. {
  6942. name: "Normal",
  6943. height: math.unit(6, "feet"),
  6944. default: true
  6945. }
  6946. ]
  6947. ))
  6948. characterMakers.push(() => makeCharacter(
  6949. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6950. {
  6951. front: {
  6952. height: math.unit(6, "feet"),
  6953. weight: math.unit(240, "lbs"),
  6954. name: "Front",
  6955. image: {
  6956. source: "./media/characters/nibbles/front.svg"
  6957. }
  6958. },
  6959. side: {
  6960. height: math.unit(6, "feet"),
  6961. weight: math.unit(240, "lbs"),
  6962. name: "Side",
  6963. image: {
  6964. source: "./media/characters/nibbles/side.svg"
  6965. }
  6966. },
  6967. },
  6968. [
  6969. {
  6970. name: "Normal",
  6971. height: math.unit(9, "feet"),
  6972. default: true
  6973. }
  6974. ]
  6975. ))
  6976. characterMakers.push(() => makeCharacter(
  6977. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6978. {
  6979. side: {
  6980. height: math.unit(5 + 1 / 6, "feet"),
  6981. weight: math.unit(130, "lbs"),
  6982. name: "Side",
  6983. image: {
  6984. source: "./media/characters/rikky/side.svg",
  6985. extra: 851 / 801
  6986. }
  6987. },
  6988. },
  6989. [
  6990. {
  6991. name: "Normal",
  6992. height: math.unit(5 + 1 / 6, "feet")
  6993. },
  6994. {
  6995. name: "Macro",
  6996. height: math.unit(152, "feet"),
  6997. default: true
  6998. },
  6999. {
  7000. name: "Megamacro",
  7001. height: math.unit(7, "miles")
  7002. }
  7003. ]
  7004. ))
  7005. characterMakers.push(() => makeCharacter(
  7006. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7007. {
  7008. side: {
  7009. height: math.unit(370, "cm"),
  7010. weight: math.unit(350, "lbs"),
  7011. name: "Side",
  7012. image: {
  7013. source: "./media/characters/malfressa/side.svg"
  7014. }
  7015. },
  7016. walking: {
  7017. height: math.unit(370, "cm"),
  7018. weight: math.unit(350, "lbs"),
  7019. name: "Walking",
  7020. image: {
  7021. source: "./media/characters/malfressa/walking.svg"
  7022. }
  7023. },
  7024. feral: {
  7025. height: math.unit(2500, "cm"),
  7026. weight: math.unit(100000, "lbs"),
  7027. name: "Feral",
  7028. image: {
  7029. source: "./media/characters/malfressa/feral.svg",
  7030. extra: 2108 / 837,
  7031. bottom: 0.02
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(370, "cm")
  7039. },
  7040. {
  7041. name: "Macro",
  7042. height: math.unit(300, "meters"),
  7043. default: true
  7044. }
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(60, "kg"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/jaro/front.svg",
  7056. extra: 845/817,
  7057. bottom: 45/890
  7058. }
  7059. },
  7060. back: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(60, "kg"),
  7063. name: "Back",
  7064. image: {
  7065. source: "./media/characters/jaro/back.svg",
  7066. extra: 847/817,
  7067. bottom: 34/881
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "Micro",
  7074. height: math.unit(7, "inches")
  7075. },
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(5.5, "feet"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Minimacro",
  7083. height: math.unit(20, "feet")
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(200, "meters")
  7088. }
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7093. {
  7094. front: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(195, "lb"),
  7097. name: "Front",
  7098. image: {
  7099. source: "./media/characters/rogue/front.svg"
  7100. }
  7101. },
  7102. },
  7103. [
  7104. {
  7105. name: "Macro",
  7106. height: math.unit(90, "feet"),
  7107. default: true
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7113. {
  7114. standing: {
  7115. height: math.unit(5 + 8 / 12, "feet"),
  7116. weight: math.unit(140, "lb"),
  7117. name: "Standing",
  7118. image: {
  7119. source: "./media/characters/piper/standing.svg",
  7120. extra: 1440/1284,
  7121. bottom: 66/1506
  7122. }
  7123. },
  7124. running: {
  7125. height: math.unit(5 + 8 / 12, "feet"),
  7126. weight: math.unit(140, "lb"),
  7127. name: "Running",
  7128. image: {
  7129. source: "./media/characters/piper/running.svg",
  7130. extra: 3948/3655,
  7131. bottom: 0/3948
  7132. }
  7133. },
  7134. sole: {
  7135. height: math.unit(0.81, "feet"),
  7136. weight: math.unit(2, "kg"),
  7137. name: "Sole",
  7138. image: {
  7139. source: "./media/characters/piper/sole.svg"
  7140. }
  7141. },
  7142. nipple: {
  7143. height: math.unit(0.25, "feet"),
  7144. weight: math.unit(1.5, "lb"),
  7145. name: "Nipple",
  7146. image: {
  7147. source: "./media/characters/piper/nipple.svg"
  7148. }
  7149. },
  7150. head: {
  7151. height: math.unit(1.1, "feet"),
  7152. name: "Head",
  7153. image: {
  7154. source: "./media/characters/piper/head.svg"
  7155. }
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "Micro",
  7161. height: math.unit(2, "inches")
  7162. },
  7163. {
  7164. name: "Normal",
  7165. height: math.unit(5 + 8 / 12, "feet")
  7166. },
  7167. {
  7168. name: "Macro",
  7169. height: math.unit(250, "feet"),
  7170. default: true
  7171. },
  7172. {
  7173. name: "Megamacro",
  7174. height: math.unit(7, "miles")
  7175. },
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7180. {
  7181. front: {
  7182. height: math.unit(6, "feet"),
  7183. weight: math.unit(220, "lb"),
  7184. name: "Front",
  7185. image: {
  7186. source: "./media/characters/gemini/front.svg"
  7187. }
  7188. },
  7189. back: {
  7190. height: math.unit(6, "feet"),
  7191. weight: math.unit(220, "lb"),
  7192. name: "Back",
  7193. image: {
  7194. source: "./media/characters/gemini/back.svg"
  7195. }
  7196. },
  7197. kneeling: {
  7198. height: math.unit(6 / 1.5, "feet"),
  7199. weight: math.unit(220, "lb"),
  7200. name: "Kneeling",
  7201. image: {
  7202. source: "./media/characters/gemini/kneeling.svg",
  7203. bottom: 0.02
  7204. }
  7205. },
  7206. },
  7207. [
  7208. {
  7209. name: "Macro",
  7210. height: math.unit(300, "meters"),
  7211. default: true
  7212. },
  7213. {
  7214. name: "Megamacro",
  7215. height: math.unit(6900, "meters")
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7221. {
  7222. anthro: {
  7223. height: math.unit(2.35, "meters"),
  7224. weight: math.unit(73, "kg"),
  7225. name: "Anthro",
  7226. image: {
  7227. source: "./media/characters/alicia/anthro.svg",
  7228. extra: 2571 / 2385,
  7229. bottom: 75 / 2648
  7230. }
  7231. },
  7232. paw: {
  7233. height: math.unit(1.32, "feet"),
  7234. name: "Paw",
  7235. image: {
  7236. source: "./media/characters/alicia/paw.svg"
  7237. }
  7238. },
  7239. feral: {
  7240. height: math.unit(1.69, "meters"),
  7241. weight: math.unit(73, "kg"),
  7242. name: "Feral",
  7243. image: {
  7244. source: "./media/characters/alicia/feral.svg",
  7245. extra: 2123 / 1715,
  7246. bottom: 222 / 2349
  7247. }
  7248. },
  7249. },
  7250. [
  7251. {
  7252. name: "Normal",
  7253. height: math.unit(2.35, "meters")
  7254. },
  7255. {
  7256. name: "Macro",
  7257. height: math.unit(60, "meters"),
  7258. default: true
  7259. },
  7260. {
  7261. name: "Megamacro",
  7262. height: math.unit(10000, "kilometers")
  7263. },
  7264. ]
  7265. ))
  7266. characterMakers.push(() => makeCharacter(
  7267. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7268. {
  7269. front: {
  7270. height: math.unit(7, "feet"),
  7271. weight: math.unit(250, "lbs"),
  7272. name: "Front",
  7273. image: {
  7274. source: "./media/characters/archy/front.svg"
  7275. }
  7276. }
  7277. },
  7278. [
  7279. {
  7280. name: "Micro",
  7281. height: math.unit(1, "inch")
  7282. },
  7283. {
  7284. name: "Shorty",
  7285. height: math.unit(5, "feet")
  7286. },
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(7, "feet")
  7290. },
  7291. {
  7292. name: "Macro",
  7293. height: math.unit(600, "meters"),
  7294. default: true
  7295. },
  7296. {
  7297. name: "Megamacro",
  7298. height: math.unit(1, "mile")
  7299. },
  7300. ]
  7301. ))
  7302. characterMakers.push(() => makeCharacter(
  7303. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7304. {
  7305. front: {
  7306. height: math.unit(1.65, "meters"),
  7307. weight: math.unit(74, "kg"),
  7308. name: "Front",
  7309. image: {
  7310. source: "./media/characters/berri/front.svg",
  7311. extra: 857 / 837,
  7312. bottom: 18 / 877
  7313. }
  7314. },
  7315. bum: {
  7316. height: math.unit(1.46, "feet"),
  7317. name: "Bum",
  7318. image: {
  7319. source: "./media/characters/berri/bum.svg"
  7320. }
  7321. },
  7322. mouth: {
  7323. height: math.unit(0.44, "feet"),
  7324. name: "Mouth",
  7325. image: {
  7326. source: "./media/characters/berri/mouth.svg"
  7327. }
  7328. },
  7329. paw: {
  7330. height: math.unit(0.826, "feet"),
  7331. name: "Paw",
  7332. image: {
  7333. source: "./media/characters/berri/paw.svg"
  7334. }
  7335. },
  7336. },
  7337. [
  7338. {
  7339. name: "Normal",
  7340. height: math.unit(1.65, "meters")
  7341. },
  7342. {
  7343. name: "Macro",
  7344. height: math.unit(60, "m"),
  7345. default: true
  7346. },
  7347. {
  7348. name: "Megamacro",
  7349. height: math.unit(9.213, "km")
  7350. },
  7351. {
  7352. name: "Planet Eater",
  7353. height: math.unit(489, "megameters")
  7354. },
  7355. {
  7356. name: "Teramacro",
  7357. height: math.unit(2471635000000, "meters")
  7358. },
  7359. {
  7360. name: "Examacro",
  7361. height: math.unit(8.0624e+26, "meters")
  7362. }
  7363. ]
  7364. ))
  7365. characterMakers.push(() => makeCharacter(
  7366. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7367. {
  7368. front: {
  7369. height: math.unit(1.72, "meters"),
  7370. weight: math.unit(68, "kg"),
  7371. name: "Front",
  7372. image: {
  7373. source: "./media/characters/lexi/front.svg"
  7374. }
  7375. }
  7376. },
  7377. [
  7378. {
  7379. name: "Very Smol",
  7380. height: math.unit(10, "mm")
  7381. },
  7382. {
  7383. name: "Micro",
  7384. height: math.unit(6.8, "cm"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Normal",
  7389. height: math.unit(1.72, "m")
  7390. }
  7391. ]
  7392. ))
  7393. characterMakers.push(() => makeCharacter(
  7394. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7395. {
  7396. front: {
  7397. height: math.unit(1.69, "meters"),
  7398. weight: math.unit(68, "kg"),
  7399. name: "Front",
  7400. image: {
  7401. source: "./media/characters/martin/front.svg",
  7402. extra: 596 / 581
  7403. }
  7404. }
  7405. },
  7406. [
  7407. {
  7408. name: "Micro",
  7409. height: math.unit(6.85, "cm"),
  7410. default: true
  7411. },
  7412. {
  7413. name: "Normal",
  7414. height: math.unit(1.69, "m")
  7415. }
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7420. {
  7421. front: {
  7422. height: math.unit(1.69, "meters"),
  7423. weight: math.unit(68, "kg"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/juno/front.svg"
  7427. }
  7428. }
  7429. },
  7430. [
  7431. {
  7432. name: "Micro",
  7433. height: math.unit(7, "cm")
  7434. },
  7435. {
  7436. name: "Normal",
  7437. height: math.unit(1.89, "m")
  7438. },
  7439. {
  7440. name: "Macro",
  7441. height: math.unit(353, "meters"),
  7442. default: true
  7443. }
  7444. ]
  7445. ))
  7446. characterMakers.push(() => makeCharacter(
  7447. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7448. {
  7449. front: {
  7450. height: math.unit(1.93, "meters"),
  7451. weight: math.unit(83, "kg"),
  7452. name: "Front",
  7453. image: {
  7454. source: "./media/characters/samantha/front.svg"
  7455. }
  7456. },
  7457. frontClothed: {
  7458. height: math.unit(1.93, "meters"),
  7459. weight: math.unit(83, "kg"),
  7460. name: "Front (Clothed)",
  7461. image: {
  7462. source: "./media/characters/samantha/front-clothed.svg"
  7463. }
  7464. },
  7465. back: {
  7466. height: math.unit(1.93, "meters"),
  7467. weight: math.unit(83, "kg"),
  7468. name: "Back",
  7469. image: {
  7470. source: "./media/characters/samantha/back.svg"
  7471. }
  7472. },
  7473. },
  7474. [
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(1.93, "m")
  7478. },
  7479. {
  7480. name: "Macro",
  7481. height: math.unit(74, "meters"),
  7482. default: true
  7483. },
  7484. {
  7485. name: "Macro+",
  7486. height: math.unit(223, "meters"),
  7487. },
  7488. {
  7489. name: "Megamacro",
  7490. height: math.unit(8381, "meters"),
  7491. },
  7492. {
  7493. name: "Megamacro+",
  7494. height: math.unit(12000, "kilometers")
  7495. },
  7496. ]
  7497. ))
  7498. characterMakers.push(() => makeCharacter(
  7499. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7500. {
  7501. front: {
  7502. height: math.unit(1.92, "meters"),
  7503. weight: math.unit(80, "kg"),
  7504. name: "Front",
  7505. image: {
  7506. source: "./media/characters/dr-clay/front.svg"
  7507. }
  7508. },
  7509. frontClothed: {
  7510. height: math.unit(1.92, "meters"),
  7511. weight: math.unit(80, "kg"),
  7512. name: "Front (Clothed)",
  7513. image: {
  7514. source: "./media/characters/dr-clay/front-clothed.svg"
  7515. }
  7516. }
  7517. },
  7518. [
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(1.92, "m")
  7522. },
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(214, "meters"),
  7526. default: true
  7527. },
  7528. {
  7529. name: "Macro+",
  7530. height: math.unit(12.237, "meters"),
  7531. },
  7532. {
  7533. name: "Megamacro",
  7534. height: math.unit(557, "megameters"),
  7535. },
  7536. {
  7537. name: "Unimaginable",
  7538. height: math.unit(120e9, "lightyears")
  7539. },
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(2, "meters"),
  7547. weight: math.unit(80, "kg"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7551. }
  7552. }
  7553. },
  7554. [
  7555. {
  7556. name: "Teramacro",
  7557. height: math.unit(500000, "lightyears"),
  7558. default: true
  7559. },
  7560. ]
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7564. {
  7565. crux: {
  7566. height: math.unit(2, "meters"),
  7567. weight: math.unit(150, "kg"),
  7568. name: "Crux",
  7569. image: {
  7570. source: "./media/characters/vemus/crux.svg",
  7571. extra: 1074/936,
  7572. bottom: 23/1097
  7573. }
  7574. },
  7575. skunkTanuki: {
  7576. height: math.unit(2, "meters"),
  7577. weight: math.unit(150, "kg"),
  7578. name: "Skunk-Tanuki",
  7579. image: {
  7580. source: "./media/characters/vemus/skunk-tanuki.svg",
  7581. extra: 926/893,
  7582. bottom: 20/946
  7583. }
  7584. },
  7585. },
  7586. [
  7587. {
  7588. name: "Normal",
  7589. height: math.unit(4, "meters"),
  7590. default: true
  7591. },
  7592. {
  7593. name: "Big",
  7594. height: math.unit(8, "meters")
  7595. },
  7596. {
  7597. name: "Macro",
  7598. height: math.unit(100, "meters")
  7599. },
  7600. {
  7601. name: "Macro+",
  7602. height: math.unit(1500, "meters")
  7603. },
  7604. {
  7605. name: "Stellar",
  7606. height: math.unit(14e8, "meters")
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7612. {
  7613. front: {
  7614. height: math.unit(2, "meters"),
  7615. weight: math.unit(70, "kg"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/beherit/front.svg",
  7619. extra: 1234/1109,
  7620. bottom: 55/1289
  7621. }
  7622. }
  7623. },
  7624. [
  7625. {
  7626. name: "Normal",
  7627. height: math.unit(6, "feet")
  7628. },
  7629. {
  7630. name: "Lorg",
  7631. height: math.unit(25, "feet"),
  7632. default: true
  7633. },
  7634. {
  7635. name: "Lorger",
  7636. height: math.unit(75, "feet")
  7637. },
  7638. {
  7639. name: "Macro",
  7640. height: math.unit(200, "meters")
  7641. },
  7642. ]
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7646. {
  7647. front: {
  7648. height: math.unit(2, "meters"),
  7649. weight: math.unit(150, "kg"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/everett/front.svg",
  7653. extra: 1017/866,
  7654. bottom: 86/1103
  7655. }
  7656. },
  7657. paw: {
  7658. height: math.unit(2 / 3.6, "meters"),
  7659. name: "Paw",
  7660. image: {
  7661. source: "./media/characters/everett/paw.svg"
  7662. }
  7663. },
  7664. },
  7665. [
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(15, "feet"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Lorg",
  7673. height: math.unit(70, "feet"),
  7674. default: true
  7675. },
  7676. {
  7677. name: "Lorger",
  7678. height: math.unit(250, "feet")
  7679. },
  7680. {
  7681. name: "Macro",
  7682. height: math.unit(500, "meters")
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(2, "meters"),
  7691. weight: math.unit(86, "kg"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/rose/front.svg",
  7695. extra: 1785/1636,
  7696. bottom: 30/1815
  7697. },
  7698. form: "liom",
  7699. default: true
  7700. },
  7701. frontSporty: {
  7702. height: math.unit(2, "meters"),
  7703. weight: math.unit(86, "kg"),
  7704. name: "Front (Sporty)",
  7705. image: {
  7706. source: "./media/characters/rose/front-sporty.svg",
  7707. extra: 350/335,
  7708. bottom: 10/360
  7709. },
  7710. form: "liom"
  7711. },
  7712. frontAlt: {
  7713. height: math.unit(1.6, "meters"),
  7714. weight: math.unit(86, "kg"),
  7715. name: "Front (Alt)",
  7716. image: {
  7717. source: "./media/characters/rose/front-alt.svg",
  7718. extra: 299/283,
  7719. bottom: 3/302
  7720. },
  7721. form: "liom"
  7722. },
  7723. plush: {
  7724. height: math.unit(2, "meters"),
  7725. weight: math.unit(86/3, "kg"),
  7726. name: "Plush",
  7727. image: {
  7728. source: "./media/characters/rose/plush.svg",
  7729. extra: 361/337,
  7730. bottom: 11/372
  7731. },
  7732. form: "plush",
  7733. default: true
  7734. },
  7735. faeStanding: {
  7736. height: math.unit(10, "cm"),
  7737. weight: math.unit(10, "grams"),
  7738. name: "Standing",
  7739. image: {
  7740. source: "./media/characters/rose/fae-standing.svg",
  7741. extra: 1189/1060,
  7742. bottom: 27/1216
  7743. },
  7744. form: "fae",
  7745. default: true
  7746. },
  7747. faeSitting: {
  7748. height: math.unit(5, "cm"),
  7749. weight: math.unit(10, "grams"),
  7750. name: "Sitting",
  7751. image: {
  7752. source: "./media/characters/rose/fae-sitting.svg",
  7753. extra: 737/577,
  7754. bottom: 356/1093
  7755. },
  7756. form: "fae"
  7757. },
  7758. faePaw: {
  7759. height: math.unit(1.35, "cm"),
  7760. name: "Paw",
  7761. image: {
  7762. source: "./media/characters/rose/fae-paw.svg"
  7763. },
  7764. form: "fae"
  7765. },
  7766. },
  7767. [
  7768. {
  7769. name: "True Micro",
  7770. height: math.unit(9, "cm"),
  7771. form: "liom"
  7772. },
  7773. {
  7774. name: "Micro",
  7775. height: math.unit(16, "cm"),
  7776. form: "liom"
  7777. },
  7778. {
  7779. name: "Normal",
  7780. height: math.unit(1.85, "meters"),
  7781. default: true,
  7782. form: "liom"
  7783. },
  7784. {
  7785. name: "Mini-Macro",
  7786. height: math.unit(5, "meters"),
  7787. form: "liom"
  7788. },
  7789. {
  7790. name: "Macro",
  7791. height: math.unit(15, "meters"),
  7792. form: "liom"
  7793. },
  7794. {
  7795. name: "True Macro",
  7796. height: math.unit(40, "meters"),
  7797. form: "liom"
  7798. },
  7799. {
  7800. name: "City Scale",
  7801. height: math.unit(1, "km"),
  7802. form: "liom"
  7803. },
  7804. {
  7805. name: "Plushie",
  7806. height: math.unit(9, "cm"),
  7807. form: "plush",
  7808. default: true
  7809. },
  7810. {
  7811. name: "Fae",
  7812. height: math.unit(10, "cm"),
  7813. form: "fae",
  7814. default: true
  7815. },
  7816. ],
  7817. {
  7818. "liom": {
  7819. name: "Liom"
  7820. },
  7821. "plush": {
  7822. name: "Plush"
  7823. },
  7824. "fae": {
  7825. name: "Fae Fox",
  7826. default: true
  7827. }
  7828. }
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7832. {
  7833. front: {
  7834. height: math.unit(2, "meters"),
  7835. weight: math.unit(350, "lbs"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/regal/front.svg"
  7839. }
  7840. },
  7841. back: {
  7842. height: math.unit(2, "meters"),
  7843. weight: math.unit(350, "lbs"),
  7844. name: "Back",
  7845. image: {
  7846. source: "./media/characters/regal/back.svg"
  7847. }
  7848. },
  7849. },
  7850. [
  7851. {
  7852. name: "Macro",
  7853. height: math.unit(350, "feet"),
  7854. default: true
  7855. }
  7856. ]
  7857. ))
  7858. characterMakers.push(() => makeCharacter(
  7859. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7860. {
  7861. front: {
  7862. height: math.unit(4 + 11 / 12, "feet"),
  7863. weight: math.unit(100, "lbs"),
  7864. name: "Front",
  7865. image: {
  7866. source: "./media/characters/opal/front.svg"
  7867. }
  7868. },
  7869. frontAlt: {
  7870. height: math.unit(4 + 11 / 12, "feet"),
  7871. weight: math.unit(100, "lbs"),
  7872. name: "Front (Alt)",
  7873. image: {
  7874. source: "./media/characters/opal/front-alt.svg"
  7875. }
  7876. },
  7877. },
  7878. [
  7879. {
  7880. name: "Small",
  7881. height: math.unit(4 + 11 / 12, "feet")
  7882. },
  7883. {
  7884. name: "Normal",
  7885. height: math.unit(20, "feet"),
  7886. default: true
  7887. },
  7888. {
  7889. name: "Macro",
  7890. height: math.unit(120, "feet")
  7891. },
  7892. {
  7893. name: "Megamacro",
  7894. height: math.unit(80, "miles")
  7895. },
  7896. {
  7897. name: "True Size",
  7898. height: math.unit(100000, "lightyears")
  7899. },
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(200, "lbs"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/vector-wuff/front.svg"
  7911. }
  7912. }
  7913. },
  7914. [
  7915. {
  7916. name: "Normal",
  7917. height: math.unit(2.8, "meters")
  7918. },
  7919. {
  7920. name: "Macro",
  7921. height: math.unit(450, "meters"),
  7922. default: true
  7923. },
  7924. {
  7925. name: "Megamacro",
  7926. height: math.unit(15, "kilometers")
  7927. }
  7928. ]
  7929. ))
  7930. characterMakers.push(() => makeCharacter(
  7931. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7932. {
  7933. front: {
  7934. height: math.unit(6, "feet"),
  7935. weight: math.unit(256, "lbs"),
  7936. name: "Front",
  7937. image: {
  7938. source: "./media/characters/dannik/front.svg"
  7939. }
  7940. }
  7941. },
  7942. [
  7943. {
  7944. name: "Macro",
  7945. height: math.unit(69.57, "meters"),
  7946. default: true
  7947. },
  7948. ]
  7949. ))
  7950. characterMakers.push(() => makeCharacter(
  7951. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7952. {
  7953. front: {
  7954. height: math.unit(6, "feet"),
  7955. weight: math.unit(120, "lbs"),
  7956. name: "Front",
  7957. image: {
  7958. source: "./media/characters/azura-saharah/front.svg"
  7959. }
  7960. },
  7961. back: {
  7962. height: math.unit(6, "feet"),
  7963. weight: math.unit(120, "lbs"),
  7964. name: "Back",
  7965. image: {
  7966. source: "./media/characters/azura-saharah/back.svg"
  7967. }
  7968. },
  7969. },
  7970. [
  7971. {
  7972. name: "Macro",
  7973. height: math.unit(100, "feet"),
  7974. default: true
  7975. },
  7976. ]
  7977. ))
  7978. characterMakers.push(() => makeCharacter(
  7979. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7980. {
  7981. side: {
  7982. height: math.unit(5 + 4 / 12, "feet"),
  7983. weight: math.unit(163, "lbs"),
  7984. name: "Side",
  7985. image: {
  7986. source: "./media/characters/kennedy/side.svg"
  7987. }
  7988. }
  7989. },
  7990. [
  7991. {
  7992. name: "Standard Doggo",
  7993. height: math.unit(5 + 4 / 12, "feet")
  7994. },
  7995. {
  7996. name: "Big Doggo",
  7997. height: math.unit(25 + 3 / 12, "feet"),
  7998. default: true
  7999. },
  8000. ]
  8001. ))
  8002. characterMakers.push(() => makeCharacter(
  8003. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8004. {
  8005. front: {
  8006. height: math.unit(5 + 5/12, "feet"),
  8007. weight: math.unit(100, "lbs"),
  8008. name: "Front",
  8009. image: {
  8010. source: "./media/characters/odios-de-lunar/front.svg",
  8011. extra: 1468/1323,
  8012. bottom: 22/1490
  8013. }
  8014. }
  8015. },
  8016. [
  8017. {
  8018. name: "Micro",
  8019. height: math.unit(3, "inches")
  8020. },
  8021. {
  8022. name: "Normal",
  8023. height: math.unit(5.5, "feet"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(100, "feet")
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8034. {
  8035. back: {
  8036. height: math.unit(6, "feet"),
  8037. weight: math.unit(220, "lbs"),
  8038. name: "Back",
  8039. image: {
  8040. source: "./media/characters/mandake/back.svg"
  8041. }
  8042. }
  8043. },
  8044. [
  8045. {
  8046. name: "Normal",
  8047. height: math.unit(7, "feet"),
  8048. default: true
  8049. },
  8050. {
  8051. name: "Macro",
  8052. height: math.unit(78, "feet")
  8053. },
  8054. {
  8055. name: "Macro+",
  8056. height: math.unit(300, "meters")
  8057. },
  8058. {
  8059. name: "Macro++",
  8060. height: math.unit(2400, "feet")
  8061. },
  8062. {
  8063. name: "Megamacro",
  8064. height: math.unit(5167, "meters")
  8065. },
  8066. {
  8067. name: "Gigamacro",
  8068. height: math.unit(41769, "miles")
  8069. },
  8070. ]
  8071. ))
  8072. characterMakers.push(() => makeCharacter(
  8073. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8074. {
  8075. front: {
  8076. height: math.unit(6, "feet"),
  8077. weight: math.unit(120, "lbs"),
  8078. name: "Front",
  8079. image: {
  8080. source: "./media/characters/yozey/front.svg"
  8081. }
  8082. },
  8083. frontAlt: {
  8084. height: math.unit(6, "feet"),
  8085. weight: math.unit(120, "lbs"),
  8086. name: "Front (Alt)",
  8087. image: {
  8088. source: "./media/characters/yozey/front-alt.svg"
  8089. }
  8090. },
  8091. side: {
  8092. height: math.unit(6, "feet"),
  8093. weight: math.unit(120, "lbs"),
  8094. name: "Side",
  8095. image: {
  8096. source: "./media/characters/yozey/side.svg"
  8097. }
  8098. },
  8099. },
  8100. [
  8101. {
  8102. name: "Micro",
  8103. height: math.unit(3, "inches"),
  8104. default: true
  8105. },
  8106. {
  8107. name: "Normal",
  8108. height: math.unit(6, "feet")
  8109. }
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(103, "lbs"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/valeska-voss/front.svg"
  8121. }
  8122. }
  8123. },
  8124. [
  8125. {
  8126. name: "Mini-Sized Sub",
  8127. height: math.unit(3.1, "inches")
  8128. },
  8129. {
  8130. name: "Mid-Sized Sub",
  8131. height: math.unit(6.2, "inches")
  8132. },
  8133. {
  8134. name: "Full-Sized Sub",
  8135. height: math.unit(9.3, "inches")
  8136. },
  8137. {
  8138. name: "Normal",
  8139. height: math.unit(5 + 2 / 12, "foot"),
  8140. default: true
  8141. },
  8142. ]
  8143. ))
  8144. characterMakers.push(() => makeCharacter(
  8145. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8146. {
  8147. front: {
  8148. height: math.unit(6, "feet"),
  8149. weight: math.unit(160, "lbs"),
  8150. name: "Front",
  8151. image: {
  8152. source: "./media/characters/gene-zeta/front.svg",
  8153. extra: 3006 / 2826,
  8154. bottom: 182 / 3188
  8155. }
  8156. }
  8157. },
  8158. [
  8159. {
  8160. name: "Micro",
  8161. height: math.unit(6, "inches")
  8162. },
  8163. {
  8164. name: "Normal",
  8165. height: math.unit(5 + 11 / 12, "foot"),
  8166. default: true
  8167. },
  8168. {
  8169. name: "Macro",
  8170. height: math.unit(140, "feet")
  8171. },
  8172. {
  8173. name: "Supercharged",
  8174. height: math.unit(2500, "feet")
  8175. },
  8176. ]
  8177. ))
  8178. characterMakers.push(() => makeCharacter(
  8179. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8180. {
  8181. front: {
  8182. height: math.unit(6, "feet"),
  8183. weight: math.unit(350, "lbs"),
  8184. name: "Front",
  8185. image: {
  8186. source: "./media/characters/razinox/front.svg",
  8187. extra: 1686 / 1548,
  8188. bottom: 28.2 / 1868
  8189. }
  8190. },
  8191. back: {
  8192. height: math.unit(6, "feet"),
  8193. weight: math.unit(350, "lbs"),
  8194. name: "Back",
  8195. image: {
  8196. source: "./media/characters/razinox/back.svg",
  8197. extra: 1660 / 1590,
  8198. bottom: 15 / 1665
  8199. }
  8200. },
  8201. },
  8202. [
  8203. {
  8204. name: "Normal",
  8205. height: math.unit(10 + 8 / 12, "foot")
  8206. },
  8207. {
  8208. name: "Minimacro",
  8209. height: math.unit(15, "foot")
  8210. },
  8211. {
  8212. name: "Macro",
  8213. height: math.unit(60, "foot"),
  8214. default: true
  8215. },
  8216. {
  8217. name: "Megamacro",
  8218. height: math.unit(5, "miles")
  8219. },
  8220. {
  8221. name: "Gigamacro",
  8222. height: math.unit(6000, "miles")
  8223. },
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(6, "feet"),
  8231. weight: math.unit(150, "lbs"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/cobalt/front.svg"
  8235. }
  8236. }
  8237. },
  8238. [
  8239. {
  8240. name: "Normal",
  8241. height: math.unit(8 + 1 / 12, "foot")
  8242. },
  8243. {
  8244. name: "Macro",
  8245. height: math.unit(111, "foot"),
  8246. default: true
  8247. },
  8248. {
  8249. name: "Supracosmic",
  8250. height: math.unit(1e42, "feet")
  8251. },
  8252. ]
  8253. ))
  8254. characterMakers.push(() => makeCharacter(
  8255. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8256. {
  8257. front: {
  8258. height: math.unit(5, "inches"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/amanda/front.svg",
  8262. extra: 926/791,
  8263. bottom: 38/964
  8264. }
  8265. },
  8266. back: {
  8267. height: math.unit(5, "inches"),
  8268. name: "Back",
  8269. image: {
  8270. source: "./media/characters/amanda/back.svg",
  8271. extra: 909/805,
  8272. bottom: 43/952
  8273. }
  8274. },
  8275. },
  8276. [
  8277. {
  8278. name: "Micro",
  8279. height: math.unit(5, "inches"),
  8280. default: true
  8281. },
  8282. ]
  8283. ))
  8284. characterMakers.push(() => makeCharacter(
  8285. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8286. {
  8287. front: {
  8288. height: math.unit(2.75, "meters"),
  8289. weight: math.unit(1200, "lb"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/teal/front.svg",
  8293. extra: 2463 / 2320,
  8294. bottom: 166 / 2629
  8295. }
  8296. },
  8297. back: {
  8298. height: math.unit(2.75, "meters"),
  8299. weight: math.unit(1200, "lb"),
  8300. name: "Back",
  8301. image: {
  8302. source: "./media/characters/teal/back.svg",
  8303. extra: 2580 / 2489,
  8304. bottom: 151 / 2731
  8305. }
  8306. },
  8307. sitting: {
  8308. height: math.unit(1.9, "meters"),
  8309. weight: math.unit(1200, "lb"),
  8310. name: "Sitting",
  8311. image: {
  8312. source: "./media/characters/teal/sitting.svg",
  8313. extra: 623 / 590,
  8314. bottom: 121 / 744
  8315. }
  8316. },
  8317. standing: {
  8318. height: math.unit(2.75, "meters"),
  8319. weight: math.unit(1200, "lb"),
  8320. name: "Standing",
  8321. image: {
  8322. source: "./media/characters/teal/standing.svg",
  8323. extra: 923 / 893,
  8324. bottom: 60 / 983
  8325. }
  8326. },
  8327. stretching: {
  8328. height: math.unit(3.65, "meters"),
  8329. weight: math.unit(1200, "lb"),
  8330. name: "Stretching",
  8331. image: {
  8332. source: "./media/characters/teal/stretching.svg",
  8333. extra: 1276 / 1244,
  8334. bottom: 0 / 1276
  8335. }
  8336. },
  8337. legged: {
  8338. height: math.unit(1.3, "meters"),
  8339. weight: math.unit(100, "lb"),
  8340. name: "Legged",
  8341. image: {
  8342. source: "./media/characters/teal/legged.svg",
  8343. extra: 462 / 437,
  8344. bottom: 24 / 486
  8345. }
  8346. },
  8347. naga: {
  8348. height: math.unit(5.4, "meters"),
  8349. weight: math.unit(4000, "lb"),
  8350. name: "Naga",
  8351. image: {
  8352. source: "./media/characters/teal/naga.svg",
  8353. extra: 1902 / 1858,
  8354. bottom: 0 / 1902
  8355. }
  8356. },
  8357. hand: {
  8358. height: math.unit(0.52, "meters"),
  8359. name: "Hand",
  8360. image: {
  8361. source: "./media/characters/teal/hand.svg"
  8362. }
  8363. },
  8364. maw: {
  8365. height: math.unit(0.43, "meters"),
  8366. name: "Maw",
  8367. image: {
  8368. source: "./media/characters/teal/maw.svg"
  8369. }
  8370. },
  8371. slit: {
  8372. height: math.unit(0.25, "meters"),
  8373. name: "Slit",
  8374. image: {
  8375. source: "./media/characters/teal/slit.svg"
  8376. }
  8377. },
  8378. },
  8379. [
  8380. {
  8381. name: "Normal",
  8382. height: math.unit(2.75, "meters"),
  8383. default: true
  8384. },
  8385. {
  8386. name: "Macro",
  8387. height: math.unit(300, "feet")
  8388. },
  8389. {
  8390. name: "Macro+",
  8391. height: math.unit(2000, "feet")
  8392. },
  8393. ]
  8394. ))
  8395. characterMakers.push(() => makeCharacter(
  8396. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8397. {
  8398. frontCat: {
  8399. height: math.unit(6, "feet"),
  8400. weight: math.unit(180, "lbs"),
  8401. name: "Front (Cat)",
  8402. image: {
  8403. source: "./media/characters/ravin-amulet/front-cat.svg"
  8404. }
  8405. },
  8406. frontCatAlt: {
  8407. height: math.unit(6, "feet"),
  8408. weight: math.unit(180, "lbs"),
  8409. name: "Front (Alt, Cat)",
  8410. image: {
  8411. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8412. }
  8413. },
  8414. frontWerewolf: {
  8415. height: math.unit(6 * 1.2, "feet"),
  8416. weight: math.unit(225, "lbs"),
  8417. name: "Front (Werewolf)",
  8418. image: {
  8419. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8420. }
  8421. },
  8422. backWerewolf: {
  8423. height: math.unit(6 * 1.2, "feet"),
  8424. weight: math.unit(225, "lbs"),
  8425. name: "Back (Werewolf)",
  8426. image: {
  8427. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Nano",
  8434. height: math.unit(1, "micrometer")
  8435. },
  8436. {
  8437. name: "Micro",
  8438. height: math.unit(1, "inch")
  8439. },
  8440. {
  8441. name: "Normal",
  8442. height: math.unit(6, "feet"),
  8443. default: true
  8444. },
  8445. {
  8446. name: "Macro",
  8447. height: math.unit(60, "feet")
  8448. }
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(6, "feet"),
  8456. weight: math.unit(165, "lbs"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/fluoresce/front.svg"
  8460. }
  8461. }
  8462. },
  8463. [
  8464. {
  8465. name: "Micro",
  8466. height: math.unit(6, "cm")
  8467. },
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(5 + 7 / 12, "feet"),
  8471. default: true
  8472. },
  8473. {
  8474. name: "Macro",
  8475. height: math.unit(56, "feet")
  8476. },
  8477. {
  8478. name: "Megamacro",
  8479. height: math.unit(1.9, "miles")
  8480. },
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8485. {
  8486. front: {
  8487. height: math.unit(9 + 6 / 12, "feet"),
  8488. weight: math.unit(523, "lbs"),
  8489. name: "Side",
  8490. image: {
  8491. source: "./media/characters/aurora/side.svg",
  8492. extra: 474/393,
  8493. bottom: 5/479
  8494. }
  8495. }
  8496. },
  8497. [
  8498. {
  8499. name: "Normal",
  8500. height: math.unit(9 + 6 / 12, "feet")
  8501. },
  8502. {
  8503. name: "Macro",
  8504. height: math.unit(96, "feet"),
  8505. default: true
  8506. },
  8507. {
  8508. name: "Macro+",
  8509. height: math.unit(243, "feet")
  8510. },
  8511. ]
  8512. ))
  8513. characterMakers.push(() => makeCharacter(
  8514. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8515. {
  8516. front: {
  8517. height: math.unit(194, "cm"),
  8518. weight: math.unit(90, "kg"),
  8519. name: "Front",
  8520. image: {
  8521. source: "./media/characters/ranek/front.svg",
  8522. extra: 1862/1791,
  8523. bottom: 80/1942
  8524. }
  8525. },
  8526. back: {
  8527. height: math.unit(194, "cm"),
  8528. weight: math.unit(90, "kg"),
  8529. name: "Back",
  8530. image: {
  8531. source: "./media/characters/ranek/back.svg",
  8532. extra: 1853/1787,
  8533. bottom: 74/1927
  8534. }
  8535. },
  8536. feral: {
  8537. height: math.unit(30, "cm"),
  8538. weight: math.unit(1.6, "lbs"),
  8539. name: "Feral",
  8540. image: {
  8541. source: "./media/characters/ranek/feral.svg",
  8542. extra: 990/631,
  8543. bottom: 29/1019
  8544. }
  8545. },
  8546. },
  8547. [
  8548. {
  8549. name: "Normal",
  8550. height: math.unit(194, "cm"),
  8551. default: true
  8552. },
  8553. {
  8554. name: "Macro",
  8555. height: math.unit(100, "meters")
  8556. },
  8557. ]
  8558. ))
  8559. characterMakers.push(() => makeCharacter(
  8560. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8561. {
  8562. front: {
  8563. height: math.unit(5 + 6 / 12, "feet"),
  8564. weight: math.unit(153, "lbs"),
  8565. name: "Front",
  8566. image: {
  8567. source: "./media/characters/andrew-cooper/front.svg"
  8568. }
  8569. },
  8570. },
  8571. [
  8572. {
  8573. name: "Nano",
  8574. height: math.unit(1, "mm")
  8575. },
  8576. {
  8577. name: "Micro",
  8578. height: math.unit(2, "inches")
  8579. },
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(5 + 6 / 12, "feet"),
  8583. default: true
  8584. }
  8585. ]
  8586. ))
  8587. characterMakers.push(() => makeCharacter(
  8588. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8589. {
  8590. front: {
  8591. height: math.unit(6, "feet"),
  8592. weight: math.unit(180, "lbs"),
  8593. name: "Front",
  8594. image: {
  8595. source: "./media/characters/akane-sato/front.svg",
  8596. extra: 1219 / 1140
  8597. }
  8598. },
  8599. back: {
  8600. height: math.unit(6, "feet"),
  8601. weight: math.unit(180, "lbs"),
  8602. name: "Back",
  8603. image: {
  8604. source: "./media/characters/akane-sato/back.svg",
  8605. extra: 1219 / 1170
  8606. }
  8607. },
  8608. },
  8609. [
  8610. {
  8611. name: "Normal",
  8612. height: math.unit(2.5, "meters")
  8613. },
  8614. {
  8615. name: "Macro",
  8616. height: math.unit(250, "meters"),
  8617. default: true
  8618. },
  8619. {
  8620. name: "Megamacro",
  8621. height: math.unit(25, "km")
  8622. },
  8623. ]
  8624. ))
  8625. characterMakers.push(() => makeCharacter(
  8626. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8627. {
  8628. front: {
  8629. height: math.unit(6, "feet"),
  8630. weight: math.unit(65, "kg"),
  8631. name: "Front",
  8632. image: {
  8633. source: "./media/characters/rook/front.svg",
  8634. extra: 960 / 950
  8635. }
  8636. }
  8637. },
  8638. [
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(8.8, "feet")
  8642. },
  8643. {
  8644. name: "Macro",
  8645. height: math.unit(88, "feet"),
  8646. default: true
  8647. },
  8648. {
  8649. name: "Megamacro",
  8650. height: math.unit(8, "miles")
  8651. },
  8652. ]
  8653. ))
  8654. characterMakers.push(() => makeCharacter(
  8655. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8656. {
  8657. front: {
  8658. height: math.unit(12 + 2 / 12, "feet"),
  8659. weight: math.unit(808, "lbs"),
  8660. name: "Front",
  8661. image: {
  8662. source: "./media/characters/prodigy/front.svg"
  8663. }
  8664. }
  8665. },
  8666. [
  8667. {
  8668. name: "Normal",
  8669. height: math.unit(12 + 2 / 12, "feet"),
  8670. default: true
  8671. },
  8672. {
  8673. name: "Macro",
  8674. height: math.unit(143, "feet")
  8675. },
  8676. {
  8677. name: "Macro+",
  8678. height: math.unit(400, "feet")
  8679. },
  8680. ]
  8681. ))
  8682. characterMakers.push(() => makeCharacter(
  8683. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8684. {
  8685. front: {
  8686. height: math.unit(6, "feet"),
  8687. weight: math.unit(225, "lbs"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/daniel/front.svg"
  8691. }
  8692. },
  8693. leaning: {
  8694. height: math.unit(6, "feet"),
  8695. weight: math.unit(225, "lbs"),
  8696. name: "Leaning",
  8697. image: {
  8698. source: "./media/characters/daniel/leaning.svg"
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Macro",
  8705. height: math.unit(1000, "feet"),
  8706. default: true
  8707. },
  8708. ]
  8709. ))
  8710. characterMakers.push(() => makeCharacter(
  8711. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8712. {
  8713. front: {
  8714. height: math.unit(6, "feet"),
  8715. weight: math.unit(88, "lbs"),
  8716. name: "Front",
  8717. image: {
  8718. source: "./media/characters/chiros/front.svg",
  8719. extra: 306 / 226
  8720. }
  8721. },
  8722. side: {
  8723. height: math.unit(6, "feet"),
  8724. weight: math.unit(88, "lbs"),
  8725. name: "Side",
  8726. image: {
  8727. source: "./media/characters/chiros/side.svg",
  8728. extra: 306 / 226
  8729. }
  8730. },
  8731. },
  8732. [
  8733. {
  8734. name: "Normal",
  8735. height: math.unit(6, "cm"),
  8736. default: true
  8737. },
  8738. ]
  8739. ))
  8740. characterMakers.push(() => makeCharacter(
  8741. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8742. {
  8743. front: {
  8744. height: math.unit(6, "feet"),
  8745. weight: math.unit(100, "lbs"),
  8746. name: "Front",
  8747. image: {
  8748. source: "./media/characters/selka/front.svg",
  8749. extra: 947 / 887
  8750. }
  8751. }
  8752. },
  8753. [
  8754. {
  8755. name: "Normal",
  8756. height: math.unit(5, "cm"),
  8757. default: true
  8758. },
  8759. ]
  8760. ))
  8761. characterMakers.push(() => makeCharacter(
  8762. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8763. {
  8764. front: {
  8765. height: math.unit(8 + 3 / 12, "feet"),
  8766. weight: math.unit(424, "lbs"),
  8767. name: "Front",
  8768. image: {
  8769. source: "./media/characters/verin/front.svg",
  8770. extra: 1845 / 1550
  8771. }
  8772. },
  8773. frontArmored: {
  8774. height: math.unit(8 + 3 / 12, "feet"),
  8775. weight: math.unit(424, "lbs"),
  8776. name: "Front (Armored)",
  8777. image: {
  8778. source: "./media/characters/verin/front-armor.svg",
  8779. extra: 1845 / 1550,
  8780. bottom: 0.01
  8781. }
  8782. },
  8783. back: {
  8784. height: math.unit(8 + 3 / 12, "feet"),
  8785. weight: math.unit(424, "lbs"),
  8786. name: "Back",
  8787. image: {
  8788. source: "./media/characters/verin/back.svg",
  8789. bottom: 0.1,
  8790. extra: 1
  8791. }
  8792. },
  8793. foot: {
  8794. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8795. name: "Foot",
  8796. image: {
  8797. source: "./media/characters/verin/foot.svg"
  8798. }
  8799. },
  8800. },
  8801. [
  8802. {
  8803. name: "Normal",
  8804. height: math.unit(8 + 3 / 12, "feet")
  8805. },
  8806. {
  8807. name: "Minimacro",
  8808. height: math.unit(21, "feet"),
  8809. default: true
  8810. },
  8811. {
  8812. name: "Macro",
  8813. height: math.unit(626, "feet")
  8814. },
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8819. {
  8820. front: {
  8821. height: math.unit(2.718, "meters"),
  8822. weight: math.unit(150, "lbs"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/sovrim-terraquian/front.svg",
  8826. extra: 1752/1689,
  8827. bottom: 36/1788
  8828. }
  8829. },
  8830. back: {
  8831. height: math.unit(2.718, "meters"),
  8832. weight: math.unit(150, "lbs"),
  8833. name: "Back",
  8834. image: {
  8835. source: "./media/characters/sovrim-terraquian/back.svg",
  8836. extra: 1698/1657,
  8837. bottom: 58/1756
  8838. }
  8839. },
  8840. tongue: {
  8841. height: math.unit(2.865, "feet"),
  8842. name: "Tongue",
  8843. image: {
  8844. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8845. }
  8846. },
  8847. hand: {
  8848. height: math.unit(1.61, "feet"),
  8849. name: "Hand",
  8850. image: {
  8851. source: "./media/characters/sovrim-terraquian/hand.svg"
  8852. }
  8853. },
  8854. foot: {
  8855. height: math.unit(1.05, "feet"),
  8856. name: "Foot",
  8857. image: {
  8858. source: "./media/characters/sovrim-terraquian/foot.svg"
  8859. }
  8860. },
  8861. footAlt: {
  8862. height: math.unit(0.88, "feet"),
  8863. name: "Foot (Alt)",
  8864. image: {
  8865. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8866. }
  8867. },
  8868. },
  8869. [
  8870. {
  8871. name: "Micro",
  8872. height: math.unit(2, "inches")
  8873. },
  8874. {
  8875. name: "Small",
  8876. height: math.unit(1, "meter")
  8877. },
  8878. {
  8879. name: "Normal",
  8880. height: math.unit(Math.E, "meters"),
  8881. default: true
  8882. },
  8883. {
  8884. name: "Macro",
  8885. height: math.unit(20, "meters")
  8886. },
  8887. {
  8888. name: "Macro+",
  8889. height: math.unit(400, "meters")
  8890. },
  8891. ]
  8892. ))
  8893. characterMakers.push(() => makeCharacter(
  8894. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8895. {
  8896. front: {
  8897. height: math.unit(7, "feet"),
  8898. weight: math.unit(489, "lbs"),
  8899. name: "Front",
  8900. image: {
  8901. source: "./media/characters/reece-silvermane/front.svg",
  8902. bottom: 0.02,
  8903. extra: 1
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Macro",
  8910. height: math.unit(1.5, "miles"),
  8911. default: true
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8917. {
  8918. front: {
  8919. height: math.unit(6, "feet"),
  8920. weight: math.unit(78, "kg"),
  8921. name: "Front",
  8922. image: {
  8923. source: "./media/characters/kane/front.svg",
  8924. extra: 978 / 899
  8925. }
  8926. },
  8927. },
  8928. [
  8929. {
  8930. name: "Normal",
  8931. height: math.unit(2.1, "m"),
  8932. },
  8933. {
  8934. name: "Macro",
  8935. height: math.unit(1, "km"),
  8936. default: true
  8937. },
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8942. {
  8943. front: {
  8944. height: math.unit(6, "feet"),
  8945. weight: math.unit(200, "kg"),
  8946. name: "Front",
  8947. image: {
  8948. source: "./media/characters/tegon/front.svg",
  8949. bottom: 0.01,
  8950. extra: 1
  8951. }
  8952. },
  8953. },
  8954. [
  8955. {
  8956. name: "Micro",
  8957. height: math.unit(1, "inch")
  8958. },
  8959. {
  8960. name: "Normal",
  8961. height: math.unit(6 + 3 / 12, "feet"),
  8962. default: true
  8963. },
  8964. {
  8965. name: "Macro",
  8966. height: math.unit(300, "feet")
  8967. },
  8968. {
  8969. name: "Megamacro",
  8970. height: math.unit(69, "miles")
  8971. },
  8972. ]
  8973. ))
  8974. characterMakers.push(() => makeCharacter(
  8975. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8976. {
  8977. side: {
  8978. height: math.unit(6, "feet"),
  8979. weight: math.unit(2304, "lbs"),
  8980. name: "Side",
  8981. image: {
  8982. source: "./media/characters/arcturax/side.svg",
  8983. extra: 790 / 376,
  8984. bottom: 0.01
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Micro",
  8991. height: math.unit(2, "inch")
  8992. },
  8993. {
  8994. name: "Normal",
  8995. height: math.unit(6, "feet")
  8996. },
  8997. {
  8998. name: "Macro",
  8999. height: math.unit(39, "feet"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Megamacro",
  9004. height: math.unit(7, "miles")
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9010. {
  9011. front: {
  9012. height: math.unit(6, "feet"),
  9013. weight: math.unit(50, "lbs"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/sentri/front.svg",
  9017. extra: 1750 / 1570,
  9018. bottom: 0.025
  9019. }
  9020. },
  9021. frontAlt: {
  9022. height: math.unit(6, "feet"),
  9023. weight: math.unit(50, "lbs"),
  9024. name: "Front (Alt)",
  9025. image: {
  9026. source: "./media/characters/sentri/front-alt.svg",
  9027. extra: 1750 / 1570,
  9028. bottom: 0.025
  9029. }
  9030. },
  9031. },
  9032. [
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(15, "feet"),
  9036. default: true
  9037. },
  9038. {
  9039. name: "Macro",
  9040. height: math.unit(2500, "feet")
  9041. }
  9042. ]
  9043. ))
  9044. characterMakers.push(() => makeCharacter(
  9045. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9046. {
  9047. front: {
  9048. height: math.unit(5 + 8 / 12, "feet"),
  9049. weight: math.unit(130, "lbs"),
  9050. name: "Front",
  9051. image: {
  9052. source: "./media/characters/corvin/front.svg",
  9053. extra: 1803 / 1629
  9054. }
  9055. },
  9056. frontShirt: {
  9057. height: math.unit(5 + 8 / 12, "feet"),
  9058. weight: math.unit(130, "lbs"),
  9059. name: "Front (Shirt)",
  9060. image: {
  9061. source: "./media/characters/corvin/front-shirt.svg",
  9062. extra: 1803 / 1629
  9063. }
  9064. },
  9065. frontPoncho: {
  9066. height: math.unit(5 + 8 / 12, "feet"),
  9067. weight: math.unit(130, "lbs"),
  9068. name: "Front (Poncho)",
  9069. image: {
  9070. source: "./media/characters/corvin/front-poncho.svg",
  9071. extra: 1803 / 1629
  9072. }
  9073. },
  9074. side: {
  9075. height: math.unit(5 + 8 / 12, "feet"),
  9076. weight: math.unit(130, "lbs"),
  9077. name: "Side",
  9078. image: {
  9079. source: "./media/characters/corvin/side.svg",
  9080. extra: 1012 / 945
  9081. }
  9082. },
  9083. back: {
  9084. height: math.unit(5 + 8 / 12, "feet"),
  9085. weight: math.unit(130, "lbs"),
  9086. name: "Back",
  9087. image: {
  9088. source: "./media/characters/corvin/back.svg",
  9089. extra: 1803 / 1629
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Micro",
  9096. height: math.unit(3, "inches")
  9097. },
  9098. {
  9099. name: "Normal",
  9100. height: math.unit(5 + 8 / 12, "feet")
  9101. },
  9102. {
  9103. name: "Macro",
  9104. height: math.unit(300, "feet"),
  9105. default: true
  9106. },
  9107. {
  9108. name: "Megamacro",
  9109. height: math.unit(500, "miles")
  9110. }
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9115. {
  9116. front: {
  9117. height: math.unit(6, "feet"),
  9118. weight: math.unit(135, "lbs"),
  9119. name: "Front",
  9120. image: {
  9121. source: "./media/characters/q/front.svg",
  9122. extra: 854 / 752,
  9123. bottom: 0.005
  9124. }
  9125. },
  9126. back: {
  9127. height: math.unit(6, "feet"),
  9128. weight: math.unit(130, "lbs"),
  9129. name: "Back",
  9130. image: {
  9131. source: "./media/characters/q/back.svg",
  9132. extra: 854 / 752
  9133. }
  9134. },
  9135. },
  9136. [
  9137. {
  9138. name: "Macro",
  9139. height: math.unit(90, "feet"),
  9140. default: true
  9141. },
  9142. {
  9143. name: "Extra Macro",
  9144. height: math.unit(300, "feet"),
  9145. },
  9146. {
  9147. name: "BIG WALF",
  9148. height: math.unit(750, "feet"),
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(3, "feet"),
  9157. weight: math.unit(28, "lbs"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/citrine/front.svg"
  9161. }
  9162. }
  9163. },
  9164. [
  9165. {
  9166. name: "Normal",
  9167. height: math.unit(3, "feet"),
  9168. default: true
  9169. }
  9170. ]
  9171. ))
  9172. characterMakers.push(() => makeCharacter(
  9173. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9174. {
  9175. front: {
  9176. height: math.unit(14, "feet"),
  9177. weight: math.unit(1450, "kg"),
  9178. preyCapacity: math.unit(15, "people"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/aura-starwind/front.svg",
  9182. extra: 1440/1327,
  9183. bottom: 11/1451
  9184. }
  9185. },
  9186. side: {
  9187. height: math.unit(14, "feet"),
  9188. weight: math.unit(1450, "kg"),
  9189. preyCapacity: math.unit(15, "people"),
  9190. name: "Side",
  9191. image: {
  9192. source: "./media/characters/aura-starwind/side.svg",
  9193. extra: 1654 / 1497
  9194. }
  9195. },
  9196. taur: {
  9197. height: math.unit(18, "feet"),
  9198. weight: math.unit(5500, "kg"),
  9199. preyCapacity: math.unit(50, "people"),
  9200. name: "Taur",
  9201. image: {
  9202. source: "./media/characters/aura-starwind/taur.svg",
  9203. extra: 1760 / 1650
  9204. }
  9205. },
  9206. feral: {
  9207. height: math.unit(46, "feet"),
  9208. weight: math.unit(25000, "kg"),
  9209. preyCapacity: math.unit(120, "people"),
  9210. name: "Feral",
  9211. image: {
  9212. source: "./media/characters/aura-starwind/feral.svg"
  9213. }
  9214. },
  9215. },
  9216. [
  9217. {
  9218. name: "Normal",
  9219. height: math.unit(14, "feet"),
  9220. default: true
  9221. },
  9222. {
  9223. name: "Macro",
  9224. height: math.unit(50, "meters")
  9225. },
  9226. {
  9227. name: "Megamacro",
  9228. height: math.unit(5000, "meters")
  9229. },
  9230. {
  9231. name: "Gigamacro",
  9232. height: math.unit(100000, "kilometers")
  9233. },
  9234. ]
  9235. ))
  9236. characterMakers.push(() => makeCharacter(
  9237. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9238. {
  9239. front: {
  9240. height: math.unit(2 + 7 / 12, "feet"),
  9241. weight: math.unit(32, "lbs"),
  9242. name: "Front",
  9243. image: {
  9244. source: "./media/characters/rivet/front.svg",
  9245. extra: 1716 / 1658,
  9246. bottom: 0.03
  9247. }
  9248. },
  9249. foot: {
  9250. height: math.unit(0.551, "feet"),
  9251. name: "Rivet's Foot",
  9252. image: {
  9253. source: "./media/characters/rivet/foot.svg"
  9254. },
  9255. rename: true
  9256. }
  9257. },
  9258. [
  9259. {
  9260. name: "Micro",
  9261. height: math.unit(1.5, "inches"),
  9262. },
  9263. {
  9264. name: "Normal",
  9265. height: math.unit(2 + 7 / 12, "feet"),
  9266. default: true
  9267. },
  9268. {
  9269. name: "Macro",
  9270. height: math.unit(85, "feet")
  9271. },
  9272. {
  9273. name: "Megamacro",
  9274. height: math.unit(2.2, "km")
  9275. }
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(5 + 9 / 12, "feet"),
  9283. weight: math.unit(150, "lbs"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/coffee/front.svg",
  9287. extra: 946/880,
  9288. bottom: 66/1012
  9289. }
  9290. },
  9291. foot: {
  9292. height: math.unit(1.29, "feet"),
  9293. name: "Foot",
  9294. image: {
  9295. source: "./media/characters/coffee/foot.svg"
  9296. }
  9297. },
  9298. },
  9299. [
  9300. {
  9301. name: "Micro",
  9302. height: math.unit(2, "inches"),
  9303. },
  9304. {
  9305. name: "Normal",
  9306. height: math.unit(5 + 9 / 12, "feet"),
  9307. default: true
  9308. },
  9309. {
  9310. name: "Macro",
  9311. height: math.unit(800, "feet")
  9312. },
  9313. {
  9314. name: "Megamacro",
  9315. height: math.unit(25, "miles")
  9316. }
  9317. ]
  9318. ))
  9319. characterMakers.push(() => makeCharacter(
  9320. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9321. {
  9322. front: {
  9323. height: math.unit(6, "feet"),
  9324. weight: math.unit(200, "lbs"),
  9325. name: "Front",
  9326. image: {
  9327. source: "./media/characters/chari-gal/front.svg",
  9328. extra: 1568 / 1385,
  9329. bottom: 0.047
  9330. }
  9331. },
  9332. gigantamax: {
  9333. height: math.unit(6 * 16, "feet"),
  9334. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9335. name: "Gigantamax",
  9336. image: {
  9337. source: "./media/characters/chari-gal/gigantamax.svg",
  9338. extra: 1124 / 888,
  9339. bottom: 0.03
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Normal",
  9346. height: math.unit(5 + 7 / 12, "feet")
  9347. },
  9348. {
  9349. name: "Macro",
  9350. height: math.unit(200, "feet"),
  9351. default: true
  9352. }
  9353. ]
  9354. ))
  9355. characterMakers.push(() => makeCharacter(
  9356. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9357. {
  9358. front: {
  9359. height: math.unit(6, "feet"),
  9360. weight: math.unit(150, "lbs"),
  9361. name: "Front",
  9362. image: {
  9363. source: "./media/characters/nova/front.svg",
  9364. extra: 5000 / 4722,
  9365. bottom: 0.02
  9366. }
  9367. }
  9368. },
  9369. [
  9370. {
  9371. name: "Micro-",
  9372. height: math.unit(0.8, "inches")
  9373. },
  9374. {
  9375. name: "Micro",
  9376. height: math.unit(2, "inches"),
  9377. default: true
  9378. },
  9379. ]
  9380. ))
  9381. characterMakers.push(() => makeCharacter(
  9382. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9383. {
  9384. koboldFront: {
  9385. height: math.unit(3 + 1 / 12, "feet"),
  9386. weight: math.unit(21.7, "lbs"),
  9387. name: "Front",
  9388. image: {
  9389. source: "./media/characters/argent/kobold-front.svg",
  9390. extra: 1471 / 1331,
  9391. bottom: 100.8 / 1575.5
  9392. },
  9393. form: "kobold",
  9394. default: true
  9395. },
  9396. dragonFront: {
  9397. height: math.unit(75, "inches"),
  9398. name: "Front",
  9399. image: {
  9400. source: "./media/characters/argent/dragon-front.svg",
  9401. extra: 1389/1248,
  9402. bottom: 54/1443
  9403. },
  9404. form: "dragon",
  9405. },
  9406. dragonBack: {
  9407. height: math.unit(75, "inches"),
  9408. name: "Back",
  9409. image: {
  9410. source: "./media/characters/argent/dragon-back.svg",
  9411. extra: 1399/1271,
  9412. bottom: 23/1422
  9413. },
  9414. form: "dragon",
  9415. },
  9416. dragonDressed: {
  9417. height: math.unit(75, "inches"),
  9418. name: "Dressed",
  9419. image: {
  9420. source: "./media/characters/argent/dragon-dressed.svg",
  9421. extra: 1350/1215,
  9422. bottom: 26/1376
  9423. },
  9424. form: "dragon"
  9425. },
  9426. dragonHead: {
  9427. height: math.unit(23.5, "inches"),
  9428. name: "Head",
  9429. image: {
  9430. source: "./media/characters/argent/dragon-head.svg"
  9431. },
  9432. form: "dragon",
  9433. },
  9434. },
  9435. [
  9436. {
  9437. name: "Micro",
  9438. height: math.unit(2, "inches"),
  9439. form: "kobold",
  9440. },
  9441. {
  9442. name: "Normal",
  9443. height: math.unit(3 + 1 / 12, "feet"),
  9444. form: "kobold",
  9445. default: true
  9446. },
  9447. {
  9448. name: "Macro",
  9449. height: math.unit(120, "feet"),
  9450. form: "kobold",
  9451. },
  9452. {
  9453. name: "Speck",
  9454. height: math.unit(1, "mm"),
  9455. form: "dragon",
  9456. },
  9457. {
  9458. name: "Tiny",
  9459. height: math.unit(1, "cm"),
  9460. form: "dragon",
  9461. },
  9462. {
  9463. name: "Micro",
  9464. height: math.unit(5, "cm"),
  9465. form: "dragon",
  9466. },
  9467. {
  9468. name: "Normal",
  9469. height: math.unit(75, "inches"),
  9470. form: "dragon",
  9471. default: true
  9472. },
  9473. {
  9474. name: "Extra Tall",
  9475. height: math.unit(9, "feet"),
  9476. form: "dragon",
  9477. },
  9478. {
  9479. name: "Inconvenient",
  9480. height: math.unit(5, "meters"),
  9481. form: "dragon",
  9482. },
  9483. {
  9484. name: "Macro",
  9485. height: math.unit(70, "meters"),
  9486. form: "dragon",
  9487. },
  9488. {
  9489. name: "Macro+",
  9490. height: math.unit(250, "meters"),
  9491. form: "dragon",
  9492. },
  9493. {
  9494. name: "Megamacro",
  9495. height: math.unit(20, "km"),
  9496. form: "dragon",
  9497. },
  9498. {
  9499. name: "Mountainous",
  9500. height: math.unit(100, "km"),
  9501. form: "dragon",
  9502. },
  9503. {
  9504. name: "Continental",
  9505. height: math.unit(2, "megameters"),
  9506. form: "dragon",
  9507. },
  9508. {
  9509. name: "Too Big",
  9510. height: math.unit(900, "megameters"),
  9511. form: "dragon",
  9512. },
  9513. ],
  9514. {
  9515. "kobold": {
  9516. name: "Kobold",
  9517. default: true
  9518. },
  9519. "dragon": {
  9520. name: "Dragon",
  9521. },
  9522. }
  9523. ))
  9524. characterMakers.push(() => makeCharacter(
  9525. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9526. {
  9527. lamp: {
  9528. height: math.unit(7 * 1559 / 989, "feet"),
  9529. name: "Magic Lamp",
  9530. image: {
  9531. source: "./media/characters/mira-al-cul/lamp.svg",
  9532. extra: 1617 / 1559
  9533. }
  9534. },
  9535. front: {
  9536. height: math.unit(7, "feet"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/mira-al-cul/front.svg",
  9540. extra: 1044 / 990
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Heavily Restricted",
  9547. height: math.unit(7 * 1559 / 989, "feet")
  9548. },
  9549. {
  9550. name: "Freshly Freed",
  9551. height: math.unit(50 * 1559 / 989, "feet")
  9552. },
  9553. {
  9554. name: "World Encompassing",
  9555. height: math.unit(10000 * 1559 / 989, "miles")
  9556. },
  9557. {
  9558. name: "Galactic",
  9559. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9560. },
  9561. {
  9562. name: "Palmed Universe",
  9563. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9564. default: true
  9565. },
  9566. {
  9567. name: "Multiversal Matriarch",
  9568. height: math.unit(8.87e10, "yottameters")
  9569. },
  9570. {
  9571. name: "Void Mother",
  9572. height: math.unit(3.14e110, "yottaparsecs")
  9573. },
  9574. {
  9575. name: "Toying with Transcendence",
  9576. height: math.unit(1e307, "meters")
  9577. },
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9582. {
  9583. front: {
  9584. height: math.unit(17 + 1 / 12, "feet"),
  9585. weight: math.unit(476.2 * 5, "lbs"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/kuro-shi-uchū/front.svg",
  9589. extra: 2329 / 1835,
  9590. bottom: 0.02
  9591. }
  9592. },
  9593. },
  9594. [
  9595. {
  9596. name: "Micro",
  9597. height: math.unit(2, "inches")
  9598. },
  9599. {
  9600. name: "Normal",
  9601. height: math.unit(12, "meters")
  9602. },
  9603. {
  9604. name: "Planetary",
  9605. height: math.unit(0.00929, "AU"),
  9606. default: true
  9607. },
  9608. {
  9609. name: "Universal",
  9610. height: math.unit(20, "gigaparsecs")
  9611. },
  9612. ]
  9613. ))
  9614. characterMakers.push(() => makeCharacter(
  9615. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9616. {
  9617. front: {
  9618. height: math.unit(5 + 2 / 12, "feet"),
  9619. weight: math.unit(120, "lbs"),
  9620. name: "Front",
  9621. image: {
  9622. source: "./media/characters/katherine/front.svg",
  9623. extra: 2075 / 1969
  9624. }
  9625. },
  9626. dress: {
  9627. height: math.unit(5 + 2 / 12, "feet"),
  9628. weight: math.unit(120, "lbs"),
  9629. name: "Dress",
  9630. image: {
  9631. source: "./media/characters/katherine/dress.svg",
  9632. extra: 2258 / 2064
  9633. }
  9634. },
  9635. },
  9636. [
  9637. {
  9638. name: "Micro",
  9639. height: math.unit(1, "inches"),
  9640. default: true
  9641. },
  9642. {
  9643. name: "Normal",
  9644. height: math.unit(5 + 2 / 12, "feet")
  9645. },
  9646. {
  9647. name: "Macro",
  9648. height: math.unit(100, "meters")
  9649. },
  9650. {
  9651. name: "Megamacro",
  9652. height: math.unit(80, "miles")
  9653. },
  9654. ]
  9655. ))
  9656. characterMakers.push(() => makeCharacter(
  9657. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9658. {
  9659. front: {
  9660. height: math.unit(7 + 8 / 12, "feet"),
  9661. weight: math.unit(250, "lbs"),
  9662. name: "Front",
  9663. image: {
  9664. source: "./media/characters/yevis/front.svg",
  9665. extra: 1938 / 1755
  9666. }
  9667. }
  9668. },
  9669. [
  9670. {
  9671. name: "Mortal",
  9672. height: math.unit(7 + 8 / 12, "feet")
  9673. },
  9674. {
  9675. name: "Battle",
  9676. height: math.unit(25 + 11 / 12, "feet")
  9677. },
  9678. {
  9679. name: "Wrath",
  9680. height: math.unit(1654 + 11 / 12, "feet")
  9681. },
  9682. {
  9683. name: "Planet Destroyer",
  9684. height: math.unit(12000, "miles")
  9685. },
  9686. {
  9687. name: "Galaxy Conqueror",
  9688. height: math.unit(1.45, "zettameters"),
  9689. default: true
  9690. },
  9691. {
  9692. name: "Universal War",
  9693. height: math.unit(184, "gigaparsecs")
  9694. },
  9695. {
  9696. name: "Eternity War",
  9697. height: math.unit(1.98e55, "yottaparsecs")
  9698. },
  9699. ]
  9700. ))
  9701. characterMakers.push(() => makeCharacter(
  9702. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9703. {
  9704. front: {
  9705. height: math.unit(5 + 8 / 12, "feet"),
  9706. weight: math.unit(63, "kg"),
  9707. name: "Front",
  9708. image: {
  9709. source: "./media/characters/xavier/front.svg",
  9710. extra: 944 / 883
  9711. }
  9712. },
  9713. frontStretch: {
  9714. height: math.unit(5 + 8 / 12, "feet"),
  9715. weight: math.unit(63, "kg"),
  9716. name: "Stretching",
  9717. image: {
  9718. source: "./media/characters/xavier/front-stretch.svg",
  9719. extra: 962 / 820
  9720. }
  9721. },
  9722. },
  9723. [
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(5 + 8 / 12, "feet")
  9727. },
  9728. {
  9729. name: "Macro",
  9730. height: math.unit(100, "meters"),
  9731. default: true
  9732. },
  9733. {
  9734. name: "McLargeHuge",
  9735. height: math.unit(10, "miles")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(5 + 5 / 12, "feet"),
  9744. weight: math.unit(150, "lb"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/joshii/front.svg",
  9748. extra: 765 / 653,
  9749. bottom: 51 / 816
  9750. }
  9751. },
  9752. foot: {
  9753. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9754. name: "Foot",
  9755. image: {
  9756. source: "./media/characters/joshii/foot.svg"
  9757. }
  9758. },
  9759. },
  9760. [
  9761. {
  9762. name: "Micro",
  9763. height: math.unit(2, "inches")
  9764. },
  9765. {
  9766. name: "Normal",
  9767. height: math.unit(5 + 5 / 12, "feet")
  9768. },
  9769. {
  9770. name: "Macro",
  9771. height: math.unit(785, "feet"),
  9772. default: true
  9773. },
  9774. {
  9775. name: "Megamacro",
  9776. height: math.unit(24.5, "miles")
  9777. },
  9778. ]
  9779. ))
  9780. characterMakers.push(() => makeCharacter(
  9781. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9782. {
  9783. front: {
  9784. height: math.unit(6, "feet"),
  9785. weight: math.unit(150, "lb"),
  9786. name: "Front",
  9787. image: {
  9788. source: "./media/characters/goddess-elizabeth/front.svg",
  9789. extra: 1800 / 1525,
  9790. bottom: 0.005
  9791. }
  9792. },
  9793. foot: {
  9794. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9795. name: "Foot",
  9796. image: {
  9797. source: "./media/characters/goddess-elizabeth/foot.svg"
  9798. }
  9799. },
  9800. mouth: {
  9801. height: math.unit(6, "feet"),
  9802. name: "Mouth",
  9803. image: {
  9804. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9805. }
  9806. },
  9807. },
  9808. [
  9809. {
  9810. name: "Micro",
  9811. height: math.unit(12, "feet")
  9812. },
  9813. {
  9814. name: "Normal",
  9815. height: math.unit(80, "miles"),
  9816. default: true
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(15000, "parsecs")
  9821. },
  9822. ]
  9823. ))
  9824. characterMakers.push(() => makeCharacter(
  9825. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9826. {
  9827. front: {
  9828. height: math.unit(5 + 9 / 12, "feet"),
  9829. weight: math.unit(144, "lb"),
  9830. name: "Front",
  9831. image: {
  9832. source: "./media/characters/kara/front.svg"
  9833. }
  9834. },
  9835. feet: {
  9836. height: math.unit(6 / 6.765, "feet"),
  9837. name: "Kara's Feet",
  9838. rename: true,
  9839. image: {
  9840. source: "./media/characters/kara/feet.svg"
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(5 + 9 / 12, "feet")
  9848. },
  9849. {
  9850. name: "Macro",
  9851. height: math.unit(174, "feet"),
  9852. default: true
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9858. {
  9859. front: {
  9860. height: math.unit(18, "feet"),
  9861. weight: math.unit(4050, "lb"),
  9862. name: "Front",
  9863. image: {
  9864. source: "./media/characters/tyrone/front.svg",
  9865. extra: 2405 / 2270,
  9866. bottom: 182 / 2587
  9867. }
  9868. },
  9869. },
  9870. [
  9871. {
  9872. name: "Normal",
  9873. height: math.unit(18, "feet"),
  9874. default: true
  9875. },
  9876. {
  9877. name: "Macro",
  9878. height: math.unit(300, "feet")
  9879. },
  9880. {
  9881. name: "Megamacro",
  9882. height: math.unit(15, "km")
  9883. },
  9884. {
  9885. name: "Gigamacro",
  9886. height: math.unit(500, "km")
  9887. },
  9888. {
  9889. name: "Teramacro",
  9890. height: math.unit(0.5, "gigameters")
  9891. },
  9892. {
  9893. name: "Omnimacro",
  9894. height: math.unit(1e252, "yottauniverse")
  9895. },
  9896. ]
  9897. ))
  9898. characterMakers.push(() => makeCharacter(
  9899. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9900. {
  9901. front: {
  9902. height: math.unit(7 + 8 / 12, "feet"),
  9903. weight: math.unit(120, "lb"),
  9904. name: "Front",
  9905. image: {
  9906. source: "./media/characters/danny/front.svg",
  9907. extra: 1490 / 1350
  9908. }
  9909. },
  9910. back: {
  9911. height: math.unit(7 + 8 / 12, "feet"),
  9912. weight: math.unit(120, "lb"),
  9913. name: "Back",
  9914. image: {
  9915. source: "./media/characters/danny/back.svg",
  9916. extra: 1490 / 1350
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(7 + 8 / 12, "feet"),
  9924. default: true
  9925. },
  9926. ]
  9927. ))
  9928. characterMakers.push(() => makeCharacter(
  9929. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9930. {
  9931. front: {
  9932. height: math.unit(3.5, "inches"),
  9933. weight: math.unit(19, "grams"),
  9934. name: "Front",
  9935. image: {
  9936. source: "./media/characters/mallow/front.svg",
  9937. extra: 471 / 431
  9938. }
  9939. },
  9940. back: {
  9941. height: math.unit(3.5, "inches"),
  9942. weight: math.unit(19, "grams"),
  9943. name: "Back",
  9944. image: {
  9945. source: "./media/characters/mallow/back.svg",
  9946. extra: 471 / 431
  9947. }
  9948. },
  9949. },
  9950. [
  9951. {
  9952. name: "Normal",
  9953. height: math.unit(3.5, "inches"),
  9954. default: true
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9960. {
  9961. front: {
  9962. height: math.unit(9, "feet"),
  9963. weight: math.unit(230, "kg"),
  9964. name: "Front",
  9965. image: {
  9966. source: "./media/characters/starry-aqua/front.svg"
  9967. }
  9968. },
  9969. back: {
  9970. height: math.unit(9, "feet"),
  9971. weight: math.unit(230, "kg"),
  9972. name: "Back",
  9973. image: {
  9974. source: "./media/characters/starry-aqua/back.svg"
  9975. }
  9976. },
  9977. hand: {
  9978. height: math.unit(9 * 0.1168, "feet"),
  9979. name: "Hand",
  9980. image: {
  9981. source: "./media/characters/starry-aqua/hand.svg"
  9982. }
  9983. },
  9984. foot: {
  9985. height: math.unit(9 * 0.18, "feet"),
  9986. name: "Foot",
  9987. image: {
  9988. source: "./media/characters/starry-aqua/foot.svg"
  9989. }
  9990. }
  9991. },
  9992. [
  9993. {
  9994. name: "Micro",
  9995. height: math.unit(3, "inches")
  9996. },
  9997. {
  9998. name: "Normal",
  9999. height: math.unit(9, "feet")
  10000. },
  10001. {
  10002. name: "Macro",
  10003. height: math.unit(300, "feet"),
  10004. default: true
  10005. },
  10006. {
  10007. name: "Megamacro",
  10008. height: math.unit(3200, "feet")
  10009. }
  10010. ]
  10011. ))
  10012. characterMakers.push(() => makeCharacter(
  10013. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10014. {
  10015. front: {
  10016. height: math.unit(15, "feet"),
  10017. weight: math.unit(5026, "lb"),
  10018. name: "Front",
  10019. image: {
  10020. source: "./media/characters/luka-towers/front.svg",
  10021. extra: 1269/1133,
  10022. bottom: 51/1320
  10023. }
  10024. },
  10025. },
  10026. [
  10027. {
  10028. name: "Normal",
  10029. height: math.unit(15, "feet"),
  10030. default: true
  10031. },
  10032. {
  10033. name: "Minimacro",
  10034. height: math.unit(25, "feet")
  10035. },
  10036. {
  10037. name: "Macro",
  10038. height: math.unit(320, "feet")
  10039. },
  10040. {
  10041. name: "Megamacro",
  10042. height: math.unit(35000, "feet")
  10043. },
  10044. {
  10045. name: "Gigamacro",
  10046. height: math.unit(4000, "miles")
  10047. },
  10048. {
  10049. name: "Teramacro",
  10050. height: math.unit(15000, "miles")
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10056. {
  10057. front: {
  10058. height: math.unit(6, "feet"),
  10059. weight: math.unit(150, "lb"),
  10060. name: "Front",
  10061. image: {
  10062. source: "./media/characters/natalie-nightring/front.svg",
  10063. extra: 1,
  10064. bottom: 0.06
  10065. }
  10066. },
  10067. },
  10068. [
  10069. {
  10070. name: "Uh Oh",
  10071. height: math.unit(0.1, "mm")
  10072. },
  10073. {
  10074. name: "Small",
  10075. height: math.unit(3, "inches")
  10076. },
  10077. {
  10078. name: "Human Scale",
  10079. height: math.unit(6, "feet")
  10080. },
  10081. {
  10082. name: "Librarian",
  10083. height: math.unit(50, "feet"),
  10084. default: true
  10085. },
  10086. {
  10087. name: "Immense",
  10088. height: math.unit(200, "miles")
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(6, "feet"),
  10097. weight: math.unit(180, "lbs"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/danni-rosie/front.svg",
  10101. extra: 1260 / 1128,
  10102. bottom: 0.022
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Micro",
  10109. height: math.unit(2, "inches"),
  10110. default: true
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(5 + 9 / 12, "feet"),
  10119. weight: math.unit(220, "lb"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/samantha-kruse/front.svg",
  10123. extra: (985 / 935),
  10124. bottom: 0.03
  10125. }
  10126. },
  10127. frontUndressed: {
  10128. height: math.unit(5 + 9 / 12, "feet"),
  10129. weight: math.unit(220, "lb"),
  10130. name: "Front (Undressed)",
  10131. image: {
  10132. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10133. extra: (973 / 923),
  10134. bottom: 0.025
  10135. }
  10136. },
  10137. fat: {
  10138. height: math.unit(5 + 9 / 12, "feet"),
  10139. weight: math.unit(900, "lb"),
  10140. name: "Front (Fat)",
  10141. image: {
  10142. source: "./media/characters/samantha-kruse/fat.svg",
  10143. extra: 2688 / 2561
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Normal",
  10150. height: math.unit(5 + 9 / 12, "feet"),
  10151. default: true
  10152. }
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10157. {
  10158. back: {
  10159. height: math.unit(5 + 4 / 12, "feet"),
  10160. weight: math.unit(4963, "lb"),
  10161. name: "Back",
  10162. image: {
  10163. source: "./media/characters/amelia-rosie/back.svg",
  10164. extra: 1113 / 963,
  10165. bottom: 0.01
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Level 0",
  10172. height: math.unit(5 + 4 / 12, "feet")
  10173. },
  10174. {
  10175. name: "Level 1",
  10176. height: math.unit(164597, "feet"),
  10177. default: true
  10178. },
  10179. {
  10180. name: "Level 2",
  10181. height: math.unit(956243, "miles")
  10182. },
  10183. {
  10184. name: "Level 3",
  10185. height: math.unit(29421709423, "miles")
  10186. },
  10187. {
  10188. name: "Level 4",
  10189. height: math.unit(154, "lightyears")
  10190. },
  10191. {
  10192. name: "Level 5",
  10193. height: math.unit(4738272, "lightyears")
  10194. },
  10195. {
  10196. name: "Level 6",
  10197. height: math.unit(145787152896, "lightyears")
  10198. },
  10199. ]
  10200. ))
  10201. characterMakers.push(() => makeCharacter(
  10202. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10203. {
  10204. front: {
  10205. height: math.unit(5 + 11 / 12, "feet"),
  10206. weight: math.unit(65, "kg"),
  10207. name: "Front",
  10208. image: {
  10209. source: "./media/characters/rook-kitara/front.svg",
  10210. extra: 1347 / 1274,
  10211. bottom: 0.005
  10212. }
  10213. },
  10214. },
  10215. [
  10216. {
  10217. name: "Totally Unfair",
  10218. height: math.unit(1.8, "mm")
  10219. },
  10220. {
  10221. name: "Lap Rookie",
  10222. height: math.unit(1.4, "feet")
  10223. },
  10224. {
  10225. name: "Normal",
  10226. height: math.unit(5 + 11 / 12, "feet"),
  10227. default: true
  10228. },
  10229. {
  10230. name: "How Did This Happen",
  10231. height: math.unit(80, "miles")
  10232. }
  10233. ]
  10234. ))
  10235. characterMakers.push(() => makeCharacter(
  10236. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10237. {
  10238. front: {
  10239. height: math.unit(7, "feet"),
  10240. weight: math.unit(300, "lb"),
  10241. name: "Front",
  10242. image: {
  10243. source: "./media/characters/pisces/front.svg",
  10244. extra: 2255 / 2115,
  10245. bottom: 0.03
  10246. }
  10247. },
  10248. back: {
  10249. height: math.unit(7, "feet"),
  10250. weight: math.unit(300, "lb"),
  10251. name: "Back",
  10252. image: {
  10253. source: "./media/characters/pisces/back.svg",
  10254. extra: 2146 / 2055,
  10255. bottom: 0.04
  10256. }
  10257. },
  10258. },
  10259. [
  10260. {
  10261. name: "Normal",
  10262. height: math.unit(7, "feet"),
  10263. default: true
  10264. },
  10265. {
  10266. name: "Swimming Pool",
  10267. height: math.unit(12.2, "meters")
  10268. },
  10269. {
  10270. name: "Olympic Swimming Pool",
  10271. height: math.unit(56.3, "meters")
  10272. },
  10273. {
  10274. name: "Lake Superior",
  10275. height: math.unit(93900, "meters")
  10276. },
  10277. {
  10278. name: "Mediterranean Sea",
  10279. height: math.unit(644457, "meters")
  10280. },
  10281. {
  10282. name: "World's Oceans",
  10283. height: math.unit(4567491, "meters")
  10284. },
  10285. ]
  10286. ))
  10287. characterMakers.push(() => makeCharacter(
  10288. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10289. {
  10290. front: {
  10291. height: math.unit(2.3, "meters"),
  10292. weight: math.unit(120, "kg"),
  10293. name: "Front",
  10294. image: {
  10295. source: "./media/characters/zelas/front.svg"
  10296. }
  10297. },
  10298. side: {
  10299. height: math.unit(2.3, "meters"),
  10300. weight: math.unit(120, "kg"),
  10301. name: "Side",
  10302. image: {
  10303. source: "./media/characters/zelas/side.svg"
  10304. }
  10305. },
  10306. back: {
  10307. height: math.unit(2.3, "meters"),
  10308. weight: math.unit(120, "kg"),
  10309. name: "Back",
  10310. image: {
  10311. source: "./media/characters/zelas/back.svg"
  10312. }
  10313. },
  10314. foot: {
  10315. height: math.unit(1.116, "feet"),
  10316. name: "Foot",
  10317. image: {
  10318. source: "./media/characters/zelas/foot.svg"
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Normal",
  10325. height: math.unit(2.3, "meters")
  10326. },
  10327. {
  10328. name: "Macro",
  10329. height: math.unit(30, "meters"),
  10330. default: true
  10331. },
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10336. {
  10337. front: {
  10338. height: math.unit(1, "inch"),
  10339. weight: math.unit(0.21, "grams"),
  10340. name: "Front",
  10341. image: {
  10342. source: "./media/characters/talbot/front.svg",
  10343. extra: 594 / 544
  10344. }
  10345. },
  10346. },
  10347. [
  10348. {
  10349. name: "Micro",
  10350. height: math.unit(1, "inch"),
  10351. default: true
  10352. },
  10353. ]
  10354. ))
  10355. characterMakers.push(() => makeCharacter(
  10356. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10357. {
  10358. front: {
  10359. height: math.unit(3 + 3 / 12, "feet"),
  10360. weight: math.unit(51.8, "lb"),
  10361. name: "Front",
  10362. image: {
  10363. source: "./media/characters/fliss/front.svg",
  10364. extra: 840 / 640
  10365. }
  10366. },
  10367. },
  10368. [
  10369. {
  10370. name: "Teeny Tiny",
  10371. height: math.unit(1, "mm")
  10372. },
  10373. {
  10374. name: "Small",
  10375. height: math.unit(1, "inch"),
  10376. default: true
  10377. },
  10378. {
  10379. name: "Standard Sylveon",
  10380. height: math.unit(3 + 3 / 12, "feet")
  10381. },
  10382. {
  10383. name: "Large Nuisance",
  10384. height: math.unit(33, "feet")
  10385. },
  10386. {
  10387. name: "City Filler",
  10388. height: math.unit(3000, "feet")
  10389. },
  10390. {
  10391. name: "New Horizon",
  10392. height: math.unit(6000, "miles")
  10393. },
  10394. ]
  10395. ))
  10396. characterMakers.push(() => makeCharacter(
  10397. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10398. {
  10399. front: {
  10400. height: math.unit(5, "cm"),
  10401. weight: math.unit(1.94, "g"),
  10402. name: "Front",
  10403. image: {
  10404. source: "./media/characters/fleta/front.svg",
  10405. extra: 835 / 803
  10406. }
  10407. },
  10408. back: {
  10409. height: math.unit(5, "cm"),
  10410. weight: math.unit(1.94, "g"),
  10411. name: "Back",
  10412. image: {
  10413. source: "./media/characters/fleta/back.svg",
  10414. extra: 835 / 803
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Micro",
  10421. height: math.unit(5, "cm"),
  10422. default: true
  10423. },
  10424. ]
  10425. ))
  10426. characterMakers.push(() => makeCharacter(
  10427. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10428. {
  10429. front: {
  10430. height: math.unit(6, "feet"),
  10431. weight: math.unit(225, "lb"),
  10432. name: "Front",
  10433. image: {
  10434. source: "./media/characters/dominic/front.svg",
  10435. extra: 1770 / 1620,
  10436. bottom: 0.025
  10437. }
  10438. },
  10439. back: {
  10440. height: math.unit(6, "feet"),
  10441. weight: math.unit(225, "lb"),
  10442. name: "Back",
  10443. image: {
  10444. source: "./media/characters/dominic/back.svg",
  10445. extra: 1745 / 1620,
  10446. bottom: 0.065
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Nano",
  10453. height: math.unit(0.1, "mm")
  10454. },
  10455. {
  10456. name: "Micro-",
  10457. height: math.unit(1, "mm")
  10458. },
  10459. {
  10460. name: "Micro",
  10461. height: math.unit(4, "inches")
  10462. },
  10463. {
  10464. name: "Normal",
  10465. height: math.unit(6 + 4 / 12, "feet"),
  10466. default: true
  10467. },
  10468. {
  10469. name: "Macro",
  10470. height: math.unit(115, "feet")
  10471. },
  10472. {
  10473. name: "Macro+",
  10474. height: math.unit(955, "feet")
  10475. },
  10476. {
  10477. name: "Megamacro",
  10478. height: math.unit(8990, "feet")
  10479. },
  10480. {
  10481. name: "Gigmacro",
  10482. height: math.unit(9310, "miles")
  10483. },
  10484. {
  10485. name: "Teramacro",
  10486. height: math.unit(1567005010, "miles")
  10487. },
  10488. {
  10489. name: "Examacro",
  10490. height: math.unit(1425, "parsecs")
  10491. },
  10492. ]
  10493. ))
  10494. characterMakers.push(() => makeCharacter(
  10495. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10496. {
  10497. front: {
  10498. height: math.unit(400, "feet"),
  10499. weight: math.unit(44444444, "lb"),
  10500. name: "Front",
  10501. image: {
  10502. source: "./media/characters/major-colonel/front.svg"
  10503. }
  10504. },
  10505. back: {
  10506. height: math.unit(400, "feet"),
  10507. weight: math.unit(44444444, "lb"),
  10508. name: "Back",
  10509. image: {
  10510. source: "./media/characters/major-colonel/back.svg"
  10511. }
  10512. },
  10513. },
  10514. [
  10515. {
  10516. name: "Macro",
  10517. height: math.unit(400, "feet"),
  10518. default: true
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10524. {
  10525. catFront: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(120, "lb"),
  10528. name: "Front (Cat Side)",
  10529. image: {
  10530. source: "./media/characters/axel-lycan/cat-front.svg",
  10531. extra: 430 / 402,
  10532. bottom: 43 / 472.35
  10533. }
  10534. },
  10535. catBack: {
  10536. height: math.unit(6, "feet"),
  10537. weight: math.unit(120, "lb"),
  10538. name: "Back (Cat Side)",
  10539. image: {
  10540. source: "./media/characters/axel-lycan/cat-back.svg",
  10541. extra: 447 / 419,
  10542. bottom: 23.3 / 469
  10543. }
  10544. },
  10545. wolfFront: {
  10546. height: math.unit(6, "feet"),
  10547. weight: math.unit(120, "lb"),
  10548. name: "Front (Wolf Side)",
  10549. image: {
  10550. source: "./media/characters/axel-lycan/wolf-front.svg",
  10551. extra: 485 / 456,
  10552. bottom: 19 / 504
  10553. }
  10554. },
  10555. wolfBack: {
  10556. height: math.unit(6, "feet"),
  10557. weight: math.unit(120, "lb"),
  10558. name: "Back (Wolf Side)",
  10559. image: {
  10560. source: "./media/characters/axel-lycan/wolf-back.svg",
  10561. extra: 475 / 438,
  10562. bottom: 39.2 / 514
  10563. }
  10564. },
  10565. },
  10566. [
  10567. {
  10568. name: "Macro",
  10569. height: math.unit(1, "km"),
  10570. default: true
  10571. },
  10572. ]
  10573. ))
  10574. characterMakers.push(() => makeCharacter(
  10575. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10576. {
  10577. front: {
  10578. height: math.unit(5 + 9 / 12, "feet"),
  10579. weight: math.unit(175, "lb"),
  10580. name: "Front",
  10581. image: {
  10582. source: "./media/characters/vanrel-hyena/front.svg",
  10583. extra: 1086 / 1010,
  10584. bottom: 0.04
  10585. }
  10586. },
  10587. },
  10588. [
  10589. {
  10590. name: "Normal",
  10591. height: math.unit(5 + 9 / 12, "feet"),
  10592. default: true
  10593. },
  10594. ]
  10595. ))
  10596. characterMakers.push(() => makeCharacter(
  10597. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10598. {
  10599. front: {
  10600. height: math.unit(6, "feet"),
  10601. weight: math.unit(103, "lb"),
  10602. name: "Front",
  10603. image: {
  10604. source: "./media/characters/abbott-absol/front.svg",
  10605. extra: 2010 / 1842
  10606. }
  10607. },
  10608. },
  10609. [
  10610. {
  10611. name: "Megamicro",
  10612. height: math.unit(0.1, "mm")
  10613. },
  10614. {
  10615. name: "Micro",
  10616. height: math.unit(1, "inch")
  10617. },
  10618. {
  10619. name: "Normal",
  10620. height: math.unit(6, "feet"),
  10621. default: true
  10622. },
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10627. {
  10628. front: {
  10629. height: math.unit(6, "feet"),
  10630. weight: math.unit(264, "lb"),
  10631. name: "Front",
  10632. image: {
  10633. source: "./media/characters/hector/front.svg",
  10634. extra: 2280 / 2130,
  10635. bottom: 0.07
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Normal",
  10642. height: math.unit(12.25, "foot"),
  10643. default: true
  10644. },
  10645. {
  10646. name: "Macro",
  10647. height: math.unit(160, "feet")
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10653. {
  10654. front: {
  10655. height: math.unit(6, "feet"),
  10656. weight: math.unit(150, "lb"),
  10657. name: "Front",
  10658. image: {
  10659. source: "./media/characters/sal/front.svg",
  10660. extra: 1846 / 1699,
  10661. bottom: 0.04
  10662. }
  10663. },
  10664. },
  10665. [
  10666. {
  10667. name: "Megamacro",
  10668. height: math.unit(10, "miles"),
  10669. default: true
  10670. },
  10671. ]
  10672. ))
  10673. characterMakers.push(() => makeCharacter(
  10674. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10675. {
  10676. front: {
  10677. height: math.unit(3, "meters"),
  10678. weight: math.unit(450, "kg"),
  10679. name: "front",
  10680. image: {
  10681. source: "./media/characters/ranger/front.svg",
  10682. extra: 2401 / 2243,
  10683. bottom: 0.05
  10684. }
  10685. },
  10686. },
  10687. [
  10688. {
  10689. name: "Normal",
  10690. height: math.unit(3, "meters"),
  10691. default: true
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(14, "feet"),
  10700. weight: math.unit(800, "kg"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/theresa/front.svg",
  10704. extra: 3575 / 3346,
  10705. bottom: 0.03
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Normal",
  10712. height: math.unit(14, "feet"),
  10713. default: true
  10714. },
  10715. ]
  10716. ))
  10717. characterMakers.push(() => makeCharacter(
  10718. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10719. {
  10720. front: {
  10721. height: math.unit(6, "feet"),
  10722. weight: math.unit(3, "kg"),
  10723. name: "Front",
  10724. image: {
  10725. source: "./media/characters/ine/front.svg",
  10726. extra: 678 / 539,
  10727. bottom: 0.023
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Normal",
  10734. height: math.unit(2.265, "feet"),
  10735. default: true
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10741. {
  10742. front: {
  10743. height: math.unit(5, "feet"),
  10744. weight: math.unit(30, "kg"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/vial/front.svg",
  10748. extra: 1365 / 1277,
  10749. bottom: 0.04
  10750. }
  10751. },
  10752. },
  10753. [
  10754. {
  10755. name: "Normal",
  10756. height: math.unit(5, "feet"),
  10757. default: true
  10758. },
  10759. ]
  10760. ))
  10761. characterMakers.push(() => makeCharacter(
  10762. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10763. {
  10764. side: {
  10765. height: math.unit(3.4, "meters"),
  10766. weight: math.unit(1000, "lb"),
  10767. name: "Side",
  10768. image: {
  10769. source: "./media/characters/rovoska/side.svg",
  10770. extra: 4403 / 1515
  10771. }
  10772. },
  10773. },
  10774. [
  10775. {
  10776. name: "Normal",
  10777. height: math.unit(3.4, "meters"),
  10778. default: true
  10779. },
  10780. ]
  10781. ))
  10782. characterMakers.push(() => makeCharacter(
  10783. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10784. {
  10785. front: {
  10786. height: math.unit(8, "feet"),
  10787. weight: math.unit(315, "lb"),
  10788. name: "Front",
  10789. image: {
  10790. source: "./media/characters/gunner-rotthbauer/front.svg"
  10791. }
  10792. },
  10793. back: {
  10794. height: math.unit(8, "feet"),
  10795. weight: math.unit(315, "lb"),
  10796. name: "Back",
  10797. image: {
  10798. source: "./media/characters/gunner-rotthbauer/back.svg"
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Micro",
  10805. height: math.unit(3.5, "inches")
  10806. },
  10807. {
  10808. name: "Normal",
  10809. height: math.unit(8, "feet"),
  10810. default: true
  10811. },
  10812. {
  10813. name: "Macro",
  10814. height: math.unit(250, "feet")
  10815. },
  10816. {
  10817. name: "Megamacro",
  10818. height: math.unit(1, "AU")
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(5 + 5 / 12, "feet"),
  10827. weight: math.unit(140, "lb"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/allatia/front.svg",
  10831. extra: 1227 / 1180,
  10832. bottom: 0.027
  10833. }
  10834. },
  10835. },
  10836. [
  10837. {
  10838. name: "Normal",
  10839. height: math.unit(5 + 5 / 12, "feet")
  10840. },
  10841. {
  10842. name: "Macro",
  10843. height: math.unit(250, "feet"),
  10844. default: true
  10845. },
  10846. {
  10847. name: "Megamacro",
  10848. height: math.unit(8, "miles")
  10849. }
  10850. ]
  10851. ))
  10852. characterMakers.push(() => makeCharacter(
  10853. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10854. {
  10855. front: {
  10856. height: math.unit(6, "feet"),
  10857. weight: math.unit(120, "lb"),
  10858. name: "Front",
  10859. image: {
  10860. source: "./media/characters/tene/front.svg",
  10861. extra: 814/750,
  10862. bottom: 36/850
  10863. }
  10864. },
  10865. stomping: {
  10866. height: math.unit(2.025, "meters"),
  10867. weight: math.unit(120, "lb"),
  10868. name: "Stomping",
  10869. image: {
  10870. source: "./media/characters/tene/stomping.svg",
  10871. extra: 885/821,
  10872. bottom: 15/900
  10873. }
  10874. },
  10875. sitting: {
  10876. height: math.unit(1, "meter"),
  10877. weight: math.unit(120, "lb"),
  10878. name: "Sitting",
  10879. image: {
  10880. source: "./media/characters/tene/sitting.svg",
  10881. extra: 396/366,
  10882. bottom: 79/475
  10883. }
  10884. },
  10885. smiling: {
  10886. height: math.unit(1.2, "feet"),
  10887. name: "Smiling",
  10888. image: {
  10889. source: "./media/characters/tene/smiling.svg",
  10890. extra: 1364/1071,
  10891. bottom: 0/1364
  10892. }
  10893. },
  10894. smug: {
  10895. height: math.unit(1.3, "feet"),
  10896. name: "Smug",
  10897. image: {
  10898. source: "./media/characters/tene/smug.svg",
  10899. extra: 1323/1082,
  10900. bottom: 0/1323
  10901. }
  10902. },
  10903. feral: {
  10904. height: math.unit(3.9, "feet"),
  10905. weight: math.unit(250, "lb"),
  10906. name: "Feral",
  10907. image: {
  10908. source: "./media/characters/tene/feral.svg",
  10909. extra: 717 / 458,
  10910. bottom: 0.179
  10911. }
  10912. },
  10913. },
  10914. [
  10915. {
  10916. name: "Normal",
  10917. height: math.unit(6, "feet")
  10918. },
  10919. {
  10920. name: "Macro",
  10921. height: math.unit(300, "feet"),
  10922. default: true
  10923. },
  10924. {
  10925. name: "Megamacro",
  10926. height: math.unit(5, "miles")
  10927. },
  10928. ]
  10929. ))
  10930. characterMakers.push(() => makeCharacter(
  10931. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10932. {
  10933. side: {
  10934. height: math.unit(6, "feet"),
  10935. name: "Side",
  10936. image: {
  10937. source: "./media/characters/evander/side.svg",
  10938. extra: 877 / 477
  10939. }
  10940. },
  10941. },
  10942. [
  10943. {
  10944. name: "Normal",
  10945. height: math.unit(0.83, "meters"),
  10946. default: true
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10952. {
  10953. front: {
  10954. height: math.unit(12, "feet"),
  10955. weight: math.unit(1000, "lb"),
  10956. name: "Front",
  10957. image: {
  10958. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10959. extra: 1762 / 1611
  10960. }
  10961. },
  10962. back: {
  10963. height: math.unit(12, "feet"),
  10964. weight: math.unit(1000, "lb"),
  10965. name: "Back",
  10966. image: {
  10967. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10968. extra: 1762 / 1611
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Normal",
  10975. height: math.unit(12, "feet"),
  10976. default: true
  10977. },
  10978. {
  10979. name: "Kaiju",
  10980. height: math.unit(150, "feet")
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10986. {
  10987. front: {
  10988. height: math.unit(6, "feet"),
  10989. weight: math.unit(150, "lb"),
  10990. name: "Front",
  10991. image: {
  10992. source: "./media/characters/zero-alurus/front.svg"
  10993. }
  10994. },
  10995. back: {
  10996. height: math.unit(6, "feet"),
  10997. weight: math.unit(150, "lb"),
  10998. name: "Back",
  10999. image: {
  11000. source: "./media/characters/zero-alurus/back.svg"
  11001. }
  11002. },
  11003. },
  11004. [
  11005. {
  11006. name: "Normal",
  11007. height: math.unit(5 + 10 / 12, "feet")
  11008. },
  11009. {
  11010. name: "Macro",
  11011. height: math.unit(60, "feet"),
  11012. default: true
  11013. },
  11014. {
  11015. name: "Macro+",
  11016. height: math.unit(450, "feet")
  11017. },
  11018. ]
  11019. ))
  11020. characterMakers.push(() => makeCharacter(
  11021. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11022. {
  11023. front: {
  11024. height: math.unit(6, "feet"),
  11025. weight: math.unit(200, "lb"),
  11026. name: "Front",
  11027. image: {
  11028. source: "./media/characters/mega-shi/front.svg",
  11029. extra: 1279 / 1250,
  11030. bottom: 0.02
  11031. }
  11032. },
  11033. back: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(200, "lb"),
  11036. name: "Back",
  11037. image: {
  11038. source: "./media/characters/mega-shi/back.svg",
  11039. extra: 1279 / 1250,
  11040. bottom: 0.02
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Micro",
  11047. height: math.unit(16 + 6 / 12, "feet")
  11048. },
  11049. {
  11050. name: "Third Dimension",
  11051. height: math.unit(40, "meters")
  11052. },
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(660, "feet"),
  11056. default: true
  11057. },
  11058. {
  11059. name: "Megamacro",
  11060. height: math.unit(10, "miles")
  11061. },
  11062. {
  11063. name: "Planetary Launch",
  11064. height: math.unit(500, "miles")
  11065. },
  11066. {
  11067. name: "Interstellar",
  11068. height: math.unit(1e9, "miles")
  11069. },
  11070. {
  11071. name: "Leaving the Universe",
  11072. height: math.unit(1, "gigaparsec")
  11073. },
  11074. {
  11075. name: "Travelling Universes",
  11076. height: math.unit(30e15, "parsecs")
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(5 + 4/12, "feet"),
  11085. weight: math.unit(120, "lb"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/odyssey/front.svg",
  11089. extra: 1747/1571,
  11090. bottom: 47/1794
  11091. }
  11092. },
  11093. side: {
  11094. height: math.unit(5.1, "feet"),
  11095. weight: math.unit(120, "lb"),
  11096. name: "Side",
  11097. image: {
  11098. source: "./media/characters/odyssey/side.svg",
  11099. extra: 1847/1619,
  11100. bottom: 47/1894
  11101. }
  11102. },
  11103. lounging: {
  11104. height: math.unit(1.464, "feet"),
  11105. weight: math.unit(120, "lb"),
  11106. name: "Lounging",
  11107. image: {
  11108. source: "./media/characters/odyssey/lounging.svg",
  11109. extra: 1235/837,
  11110. bottom: 551/1786
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(5 + 4 / 12, "feet")
  11118. },
  11119. {
  11120. name: "Macro",
  11121. height: math.unit(1, "km")
  11122. },
  11123. {
  11124. name: "Megamacro",
  11125. height: math.unit(3000, "km")
  11126. },
  11127. {
  11128. name: "Gigamacro",
  11129. height: math.unit(1, "AU"),
  11130. default: true
  11131. },
  11132. {
  11133. name: "Omniversal",
  11134. height: math.unit(100e14, "lightyears")
  11135. },
  11136. ]
  11137. ))
  11138. characterMakers.push(() => makeCharacter(
  11139. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11140. {
  11141. front: {
  11142. height: math.unit(6, "feet"),
  11143. weight: math.unit(300, "lb"),
  11144. name: "Front",
  11145. image: {
  11146. source: "./media/characters/mekuto/front.svg",
  11147. extra: 921 / 832,
  11148. bottom: 0.03
  11149. }
  11150. },
  11151. hand: {
  11152. height: math.unit(6 / 10.24, "feet"),
  11153. name: "Hand",
  11154. image: {
  11155. source: "./media/characters/mekuto/hand.svg"
  11156. }
  11157. },
  11158. foot: {
  11159. height: math.unit(6 / 5.05, "feet"),
  11160. name: "Foot",
  11161. image: {
  11162. source: "./media/characters/mekuto/foot.svg"
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Minimicro",
  11169. height: math.unit(0.2, "inches")
  11170. },
  11171. {
  11172. name: "Micro",
  11173. height: math.unit(1.5, "inches")
  11174. },
  11175. {
  11176. name: "Normal",
  11177. height: math.unit(5 + 11 / 12, "feet"),
  11178. default: true
  11179. },
  11180. {
  11181. name: "Minimacro",
  11182. height: math.unit(17 + 9 / 12, "feet")
  11183. },
  11184. {
  11185. name: "Macro",
  11186. height: math.unit(177.5, "feet")
  11187. },
  11188. {
  11189. name: "Megamacro",
  11190. height: math.unit(152, "miles")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(6.5, "inches"),
  11199. weight: math.unit(13, "oz"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/dafydd-tomos/front.svg",
  11203. extra: 2990 / 2603,
  11204. bottom: 0.03
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Micro",
  11211. height: math.unit(6.5, "inches"),
  11212. default: true
  11213. },
  11214. ]
  11215. ))
  11216. characterMakers.push(() => makeCharacter(
  11217. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11218. {
  11219. front: {
  11220. height: math.unit(6, "feet"),
  11221. weight: math.unit(150, "lb"),
  11222. name: "Front",
  11223. image: {
  11224. source: "./media/characters/splinter/front.svg",
  11225. extra: 2990 / 2882,
  11226. bottom: 0.04
  11227. }
  11228. },
  11229. back: {
  11230. height: math.unit(6, "feet"),
  11231. weight: math.unit(150, "lb"),
  11232. name: "Back",
  11233. image: {
  11234. source: "./media/characters/splinter/back.svg",
  11235. extra: 2990 / 2882,
  11236. bottom: 0.04
  11237. }
  11238. },
  11239. },
  11240. [
  11241. {
  11242. name: "Normal",
  11243. height: math.unit(6, "feet")
  11244. },
  11245. {
  11246. name: "Macro",
  11247. height: math.unit(230, "meters"),
  11248. default: true
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(4 + 10 / 12, "feet"),
  11257. weight: math.unit(480, "lb"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/snow-gabumon/front.svg",
  11261. extra: 1140 / 963,
  11262. bottom: 0.058
  11263. }
  11264. },
  11265. back: {
  11266. height: math.unit(4 + 10 / 12, "feet"),
  11267. weight: math.unit(480, "lb"),
  11268. name: "Back",
  11269. image: {
  11270. source: "./media/characters/snow-gabumon/back.svg",
  11271. extra: 1115 / 962,
  11272. bottom: 0.041
  11273. }
  11274. },
  11275. frontUndresed: {
  11276. height: math.unit(4 + 10 / 12, "feet"),
  11277. weight: math.unit(480, "lb"),
  11278. name: "Front (Undressed)",
  11279. image: {
  11280. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11281. extra: 1061 / 960,
  11282. bottom: 0.045
  11283. }
  11284. },
  11285. },
  11286. [
  11287. {
  11288. name: "Micro",
  11289. height: math.unit(1, "inch")
  11290. },
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(4 + 10 / 12, "feet"),
  11294. default: true
  11295. },
  11296. {
  11297. name: "Macro",
  11298. height: math.unit(200, "feet")
  11299. },
  11300. {
  11301. name: "Megamacro",
  11302. height: math.unit(120, "miles")
  11303. },
  11304. {
  11305. name: "Gigamacro",
  11306. height: math.unit(9800, "miles")
  11307. },
  11308. ]
  11309. ))
  11310. characterMakers.push(() => makeCharacter(
  11311. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11312. {
  11313. front: {
  11314. height: math.unit(1.7, "meters"),
  11315. weight: math.unit(140, "lb"),
  11316. name: "Front",
  11317. image: {
  11318. source: "./media/characters/moody/front.svg",
  11319. extra: 3226 / 3007,
  11320. bottom: 0.087
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Micro",
  11327. height: math.unit(1, "mm")
  11328. },
  11329. {
  11330. name: "Normal",
  11331. height: math.unit(1.7, "meters"),
  11332. default: true
  11333. },
  11334. {
  11335. name: "Macro",
  11336. height: math.unit(80, "meters")
  11337. },
  11338. {
  11339. name: "Macro+",
  11340. height: math.unit(500, "meters")
  11341. },
  11342. ]
  11343. ))
  11344. characterMakers.push(() => makeCharacter(
  11345. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11346. {
  11347. front: {
  11348. height: math.unit(6, "feet"),
  11349. weight: math.unit(150, "lb"),
  11350. name: "Front",
  11351. image: {
  11352. source: "./media/characters/zyas/front.svg",
  11353. extra: 1180 / 1120,
  11354. bottom: 0.045
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Normal",
  11361. height: math.unit(10, "feet"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Macro",
  11366. height: math.unit(500, "feet")
  11367. },
  11368. {
  11369. name: "Megamacro",
  11370. height: math.unit(5, "miles")
  11371. },
  11372. {
  11373. name: "Teramacro",
  11374. height: math.unit(150000, "miles")
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11380. {
  11381. front: {
  11382. height: math.unit(6, "feet"),
  11383. weight: math.unit(150, "lb"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/cuon/front.svg",
  11387. extra: 1390 / 1320,
  11388. bottom: 0.008
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Micro",
  11395. height: math.unit(3, "inches")
  11396. },
  11397. {
  11398. name: "Normal",
  11399. height: math.unit(18 + 9 / 12, "feet"),
  11400. default: true
  11401. },
  11402. {
  11403. name: "Macro",
  11404. height: math.unit(360, "feet")
  11405. },
  11406. {
  11407. name: "Megamacro",
  11408. height: math.unit(360, "miles")
  11409. },
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11414. {
  11415. front: {
  11416. height: math.unit(2.4, "meters"),
  11417. weight: math.unit(70, "kg"),
  11418. name: "Front",
  11419. image: {
  11420. source: "./media/characters/nyanuxk/front.svg",
  11421. extra: 1172 / 1084,
  11422. bottom: 0.065
  11423. }
  11424. },
  11425. side: {
  11426. height: math.unit(2.4, "meters"),
  11427. weight: math.unit(70, "kg"),
  11428. name: "Side",
  11429. image: {
  11430. source: "./media/characters/nyanuxk/side.svg",
  11431. extra: 1190 / 1132,
  11432. bottom: 0.007
  11433. }
  11434. },
  11435. back: {
  11436. height: math.unit(2.4, "meters"),
  11437. weight: math.unit(70, "kg"),
  11438. name: "Back",
  11439. image: {
  11440. source: "./media/characters/nyanuxk/back.svg",
  11441. extra: 1200 / 1141,
  11442. bottom: 0.015
  11443. }
  11444. },
  11445. foot: {
  11446. height: math.unit(0.52, "meters"),
  11447. name: "Foot",
  11448. image: {
  11449. source: "./media/characters/nyanuxk/foot.svg"
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Micro",
  11456. height: math.unit(2, "cm")
  11457. },
  11458. {
  11459. name: "Normal",
  11460. height: math.unit(2.4, "meters"),
  11461. default: true
  11462. },
  11463. {
  11464. name: "Smaller Macro",
  11465. height: math.unit(120, "meters")
  11466. },
  11467. {
  11468. name: "Bigger Macro",
  11469. height: math.unit(1.2, "km")
  11470. },
  11471. {
  11472. name: "Megamacro",
  11473. height: math.unit(15, "kilometers")
  11474. },
  11475. {
  11476. name: "Gigamacro",
  11477. height: math.unit(2000, "km")
  11478. },
  11479. {
  11480. name: "Teramacro",
  11481. height: math.unit(500000, "km")
  11482. },
  11483. ]
  11484. ))
  11485. characterMakers.push(() => makeCharacter(
  11486. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11487. {
  11488. side: {
  11489. height: math.unit(6, "feet"),
  11490. name: "Side",
  11491. image: {
  11492. source: "./media/characters/ailbhe/side.svg",
  11493. extra: 757 / 464,
  11494. bottom: 0.041
  11495. }
  11496. },
  11497. },
  11498. [
  11499. {
  11500. name: "Normal",
  11501. height: math.unit(1.07, "meters"),
  11502. default: true
  11503. },
  11504. ]
  11505. ))
  11506. characterMakers.push(() => makeCharacter(
  11507. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11508. {
  11509. front: {
  11510. height: math.unit(6, "feet"),
  11511. weight: math.unit(120, "kg"),
  11512. name: "Front",
  11513. image: {
  11514. source: "./media/characters/zevulfius/front.svg",
  11515. extra: 965 / 903
  11516. }
  11517. },
  11518. side: {
  11519. height: math.unit(6, "feet"),
  11520. weight: math.unit(120, "kg"),
  11521. name: "Side",
  11522. image: {
  11523. source: "./media/characters/zevulfius/side.svg",
  11524. extra: 939 / 900
  11525. }
  11526. },
  11527. back: {
  11528. height: math.unit(6, "feet"),
  11529. weight: math.unit(120, "kg"),
  11530. name: "Back",
  11531. image: {
  11532. source: "./media/characters/zevulfius/back.svg",
  11533. extra: 918 / 854,
  11534. bottom: 0.005
  11535. }
  11536. },
  11537. foot: {
  11538. height: math.unit(6 / 3.72, "feet"),
  11539. name: "Foot",
  11540. image: {
  11541. source: "./media/characters/zevulfius/foot.svg"
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Macro",
  11548. height: math.unit(750, "meters")
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(20, "km"),
  11553. default: true
  11554. },
  11555. {
  11556. name: "Gigamacro",
  11557. height: math.unit(2000, "km")
  11558. },
  11559. {
  11560. name: "Teramacro",
  11561. height: math.unit(250000, "km")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(100, "feet"),
  11570. weight: math.unit(350, "kg"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/rikes/front.svg",
  11574. extra: 1565 / 1483,
  11575. bottom: 0.017
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Macro",
  11582. height: math.unit(100, "feet"),
  11583. default: true
  11584. },
  11585. ]
  11586. ))
  11587. characterMakers.push(() => makeCharacter(
  11588. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11589. {
  11590. front: {
  11591. height: math.unit(8, "feet"),
  11592. weight: math.unit(356, "lb"),
  11593. name: "Front",
  11594. image: {
  11595. source: "./media/characters/adam-silver-mane/front.svg",
  11596. extra: 1036/937,
  11597. bottom: 63/1099
  11598. }
  11599. },
  11600. side: {
  11601. height: math.unit(8, "feet"),
  11602. weight: math.unit(356, "lb"),
  11603. name: "Side",
  11604. image: {
  11605. source: "./media/characters/adam-silver-mane/side.svg",
  11606. extra: 997/901,
  11607. bottom: 59/1056
  11608. }
  11609. },
  11610. frontNsfw: {
  11611. height: math.unit(8, "feet"),
  11612. weight: math.unit(356, "lb"),
  11613. name: "Front (NSFW)",
  11614. image: {
  11615. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11616. extra: 1036/937,
  11617. bottom: 63/1099
  11618. }
  11619. },
  11620. sideNsfw: {
  11621. height: math.unit(8, "feet"),
  11622. weight: math.unit(356, "lb"),
  11623. name: "Side (NSFW)",
  11624. image: {
  11625. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11626. extra: 997/901,
  11627. bottom: 59/1056
  11628. }
  11629. },
  11630. dick: {
  11631. height: math.unit(2.1, "feet"),
  11632. name: "Dick",
  11633. image: {
  11634. source: "./media/characters/adam-silver-mane/dick.svg"
  11635. }
  11636. },
  11637. taur: {
  11638. height: math.unit(16, "feet"),
  11639. weight: math.unit(1500, "kg"),
  11640. name: "Taur",
  11641. image: {
  11642. source: "./media/characters/adam-silver-mane/taur.svg",
  11643. extra: 1713 / 1571,
  11644. bottom: 0.01
  11645. }
  11646. },
  11647. },
  11648. [
  11649. {
  11650. name: "Normal",
  11651. height: math.unit(8, "feet")
  11652. },
  11653. {
  11654. name: "Minimacro",
  11655. height: math.unit(80, "feet")
  11656. },
  11657. {
  11658. name: "MDA",
  11659. height: math.unit(80, "meters")
  11660. },
  11661. {
  11662. name: "Macro",
  11663. height: math.unit(800, "feet"),
  11664. default: true
  11665. },
  11666. {
  11667. name: "Megamacro",
  11668. height: math.unit(8000, "feet")
  11669. },
  11670. {
  11671. name: "Gigamacro",
  11672. height: math.unit(800, "miles")
  11673. },
  11674. {
  11675. name: "Teramacro",
  11676. height: math.unit(80000, "miles")
  11677. },
  11678. {
  11679. name: "Celestial",
  11680. height: math.unit(8e6, "miles")
  11681. },
  11682. {
  11683. name: "Star Dragon",
  11684. height: math.unit(800000, "parsecs")
  11685. },
  11686. {
  11687. name: "Godly",
  11688. height: math.unit(800, "teraparsecs")
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11694. {
  11695. front: {
  11696. height: math.unit(6, "feet"),
  11697. weight: math.unit(150, "lb"),
  11698. name: "Front",
  11699. image: {
  11700. source: "./media/characters/ky'owin/front.svg",
  11701. extra: 3862/3053,
  11702. bottom: 74/3936
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Normal",
  11709. height: math.unit(6 + 8 / 12, "feet")
  11710. },
  11711. {
  11712. name: "Large",
  11713. height: math.unit(68, "feet")
  11714. },
  11715. {
  11716. name: "Macro",
  11717. height: math.unit(132, "feet")
  11718. },
  11719. {
  11720. name: "Macro+",
  11721. height: math.unit(340, "feet")
  11722. },
  11723. {
  11724. name: "Macro++",
  11725. height: math.unit(680, "feet"),
  11726. default: true
  11727. },
  11728. {
  11729. name: "Megamacro",
  11730. height: math.unit(1, "mile")
  11731. },
  11732. {
  11733. name: "Megamacro+",
  11734. height: math.unit(10, "miles")
  11735. },
  11736. ]
  11737. ))
  11738. characterMakers.push(() => makeCharacter(
  11739. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11740. {
  11741. front: {
  11742. height: math.unit(4, "feet"),
  11743. weight: math.unit(50, "lb"),
  11744. name: "Front",
  11745. image: {
  11746. source: "./media/characters/mal/front.svg",
  11747. extra: 785 / 724,
  11748. bottom: 0.07
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Micro",
  11755. height: math.unit(4, "inches")
  11756. },
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(4, "feet"),
  11760. default: true
  11761. },
  11762. {
  11763. name: "Macro",
  11764. height: math.unit(200, "feet")
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11770. {
  11771. front: {
  11772. height: math.unit(6, "feet"),
  11773. weight: math.unit(150, "lb"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/jordan-deware/front.svg",
  11777. extra: 1191 / 1012
  11778. }
  11779. },
  11780. },
  11781. [
  11782. {
  11783. name: "Nano",
  11784. height: math.unit(0.01, "mm")
  11785. },
  11786. {
  11787. name: "Minimicro",
  11788. height: math.unit(1, "mm")
  11789. },
  11790. {
  11791. name: "Micro",
  11792. height: math.unit(0.5, "inches")
  11793. },
  11794. {
  11795. name: "Normal",
  11796. height: math.unit(4, "feet"),
  11797. default: true
  11798. },
  11799. {
  11800. name: "Minimacro",
  11801. height: math.unit(40, "meters")
  11802. },
  11803. {
  11804. name: "Small Macro",
  11805. height: math.unit(400, "meters")
  11806. },
  11807. {
  11808. name: "Macro",
  11809. height: math.unit(4, "miles")
  11810. },
  11811. {
  11812. name: "Megamacro",
  11813. height: math.unit(40, "miles")
  11814. },
  11815. {
  11816. name: "Megamacro+",
  11817. height: math.unit(400, "miles")
  11818. },
  11819. {
  11820. name: "Gigamacro",
  11821. height: math.unit(400000, "miles")
  11822. },
  11823. ]
  11824. ))
  11825. characterMakers.push(() => makeCharacter(
  11826. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11827. {
  11828. side: {
  11829. height: math.unit(6, "feet"),
  11830. weight: math.unit(150, "lb"),
  11831. name: "Side",
  11832. image: {
  11833. source: "./media/characters/kimiko/side.svg",
  11834. extra: 600 / 358
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Normal",
  11841. height: math.unit(15, "feet"),
  11842. default: true
  11843. },
  11844. {
  11845. name: "Macro",
  11846. height: math.unit(220, "feet")
  11847. },
  11848. {
  11849. name: "Macro+",
  11850. height: math.unit(1450, "feet")
  11851. },
  11852. {
  11853. name: "Megamacro",
  11854. height: math.unit(11500, "feet")
  11855. },
  11856. {
  11857. name: "Gigamacro",
  11858. height: math.unit(9500, "miles")
  11859. },
  11860. {
  11861. name: "Teramacro",
  11862. height: math.unit(2208005005, "miles")
  11863. },
  11864. {
  11865. name: "Examacro",
  11866. height: math.unit(2750, "parsecs")
  11867. },
  11868. {
  11869. name: "Zettamacro",
  11870. height: math.unit(101500, "parsecs")
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11876. {
  11877. front: {
  11878. height: math.unit(6, "feet"),
  11879. weight: math.unit(70, "kg"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/andrew-sleepy/front.svg"
  11883. }
  11884. },
  11885. side: {
  11886. height: math.unit(6, "feet"),
  11887. weight: math.unit(70, "kg"),
  11888. name: "Side",
  11889. image: {
  11890. source: "./media/characters/andrew-sleepy/side.svg"
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Micro",
  11897. height: math.unit(1, "mm"),
  11898. default: true
  11899. },
  11900. ]
  11901. ))
  11902. characterMakers.push(() => makeCharacter(
  11903. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11904. {
  11905. front: {
  11906. height: math.unit(6, "feet"),
  11907. weight: math.unit(150, "lb"),
  11908. name: "Front",
  11909. image: {
  11910. source: "./media/characters/judio/front.svg",
  11911. extra: 1258 / 1110
  11912. }
  11913. },
  11914. },
  11915. [
  11916. {
  11917. name: "Normal",
  11918. height: math.unit(5 + 6 / 12, "feet")
  11919. },
  11920. {
  11921. name: "Macro",
  11922. height: math.unit(1000, "feet"),
  11923. default: true
  11924. },
  11925. {
  11926. name: "Megamacro",
  11927. height: math.unit(10, "miles")
  11928. },
  11929. ]
  11930. ))
  11931. characterMakers.push(() => makeCharacter(
  11932. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11933. {
  11934. frontDressed: {
  11935. height: math.unit(6, "feet"),
  11936. weight: math.unit(68, "kg"),
  11937. name: "Front (Dressed)",
  11938. image: {
  11939. source: "./media/characters/nomaxice/front-dressed.svg",
  11940. extra: 1137/824,
  11941. bottom: 74/1211
  11942. }
  11943. },
  11944. frontShorts: {
  11945. height: math.unit(6, "feet"),
  11946. weight: math.unit(68, "kg"),
  11947. name: "Front (Shorts)",
  11948. image: {
  11949. source: "./media/characters/nomaxice/front-shorts.svg",
  11950. extra: 1137/824,
  11951. bottom: 74/1211
  11952. }
  11953. },
  11954. back: {
  11955. height: math.unit(6, "feet"),
  11956. weight: math.unit(68, "kg"),
  11957. name: "Back",
  11958. image: {
  11959. source: "./media/characters/nomaxice/back.svg",
  11960. extra: 822/786,
  11961. bottom: 39/861
  11962. }
  11963. },
  11964. hand: {
  11965. height: math.unit(0.565, "feet"),
  11966. name: "Hand",
  11967. image: {
  11968. source: "./media/characters/nomaxice/hand.svg"
  11969. }
  11970. },
  11971. foot: {
  11972. height: math.unit(1, "feet"),
  11973. name: "Foot",
  11974. image: {
  11975. source: "./media/characters/nomaxice/foot.svg"
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Micro",
  11982. height: math.unit(8, "cm")
  11983. },
  11984. {
  11985. name: "Norm",
  11986. height: math.unit(1.82, "m")
  11987. },
  11988. {
  11989. name: "Norm+",
  11990. height: math.unit(8.8, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Big",
  11995. height: math.unit(8, "meters")
  11996. },
  11997. {
  11998. name: "Macro",
  11999. height: math.unit(18, "meters")
  12000. },
  12001. {
  12002. name: "Macro+",
  12003. height: math.unit(88, "meters")
  12004. },
  12005. ]
  12006. ))
  12007. characterMakers.push(() => makeCharacter(
  12008. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12009. {
  12010. front: {
  12011. height: math.unit(12, "feet"),
  12012. weight: math.unit(1.5, "tons"),
  12013. name: "Front",
  12014. image: {
  12015. source: "./media/characters/dydros/front.svg",
  12016. extra: 863 / 800,
  12017. bottom: 0.015
  12018. }
  12019. },
  12020. back: {
  12021. height: math.unit(12, "feet"),
  12022. weight: math.unit(1.5, "tons"),
  12023. name: "Back",
  12024. image: {
  12025. source: "./media/characters/dydros/back.svg",
  12026. extra: 900 / 843,
  12027. bottom: 0.005
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Normal",
  12034. height: math.unit(12, "feet"),
  12035. default: true
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(6, "feet"),
  12044. weight: math.unit(100, "kg"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/riggi/front.svg",
  12048. extra: 5787 / 5303
  12049. }
  12050. },
  12051. hyper: {
  12052. height: math.unit(6 * 5 / 3, "feet"),
  12053. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12054. name: "Hyper",
  12055. image: {
  12056. source: "./media/characters/riggi/hyper.svg",
  12057. extra: 3595 / 3485
  12058. }
  12059. },
  12060. },
  12061. [
  12062. {
  12063. name: "Small Macro",
  12064. height: math.unit(50, "feet")
  12065. },
  12066. {
  12067. name: "Default",
  12068. height: math.unit(200, "feet"),
  12069. default: true
  12070. },
  12071. {
  12072. name: "Loom",
  12073. height: math.unit(10000, "feet")
  12074. },
  12075. {
  12076. name: "Cruising Altitude",
  12077. height: math.unit(30000, "feet")
  12078. },
  12079. {
  12080. name: "Megamacro",
  12081. height: math.unit(100, "miles")
  12082. },
  12083. {
  12084. name: "Continent Sized",
  12085. height: math.unit(2800, "miles")
  12086. },
  12087. {
  12088. name: "Earth Sized",
  12089. height: math.unit(8000, "miles")
  12090. },
  12091. ]
  12092. ))
  12093. characterMakers.push(() => makeCharacter(
  12094. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12095. {
  12096. front: {
  12097. height: math.unit(6, "feet"),
  12098. weight: math.unit(250, "lb"),
  12099. name: "Front",
  12100. image: {
  12101. source: "./media/characters/alexi/front.svg",
  12102. extra: 3483 / 3291,
  12103. bottom: 0.04
  12104. }
  12105. },
  12106. back: {
  12107. height: math.unit(6, "feet"),
  12108. weight: math.unit(250, "lb"),
  12109. name: "Back",
  12110. image: {
  12111. source: "./media/characters/alexi/back.svg",
  12112. extra: 3533 / 3356,
  12113. bottom: 0.021
  12114. }
  12115. },
  12116. frontTransforming: {
  12117. height: math.unit(8.58, "feet"),
  12118. weight: math.unit(1300, "lb"),
  12119. name: "Transforming",
  12120. image: {
  12121. source: "./media/characters/alexi/front-transforming.svg",
  12122. extra: 437 / 409,
  12123. bottom: 19 / 458.66
  12124. }
  12125. },
  12126. frontTransformed: {
  12127. height: math.unit(12.5, "feet"),
  12128. weight: math.unit(4000, "lb"),
  12129. name: "Transformed",
  12130. image: {
  12131. source: "./media/characters/alexi/front-transformed.svg",
  12132. extra: 639 / 614,
  12133. bottom: 30.55 / 671
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Normal",
  12140. height: math.unit(14, "feet"),
  12141. default: true
  12142. },
  12143. {
  12144. name: "Minimacro",
  12145. height: math.unit(30, "meters")
  12146. },
  12147. {
  12148. name: "Macro",
  12149. height: math.unit(500, "meters")
  12150. },
  12151. {
  12152. name: "Megamacro",
  12153. height: math.unit(9000, "km")
  12154. },
  12155. {
  12156. name: "Teramacro",
  12157. height: math.unit(384000, "km")
  12158. },
  12159. ]
  12160. ))
  12161. characterMakers.push(() => makeCharacter(
  12162. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12163. {
  12164. front: {
  12165. height: math.unit(6, "feet"),
  12166. weight: math.unit(150, "lb"),
  12167. name: "Front",
  12168. image: {
  12169. source: "./media/characters/kayroo/front.svg",
  12170. extra: 1153 / 1038,
  12171. bottom: 0.06
  12172. }
  12173. },
  12174. foot: {
  12175. height: math.unit(6, "feet"),
  12176. weight: math.unit(150, "lb"),
  12177. name: "Foot",
  12178. image: {
  12179. source: "./media/characters/kayroo/foot.svg"
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Normal",
  12186. height: math.unit(8, "feet"),
  12187. default: true
  12188. },
  12189. {
  12190. name: "Minimacro",
  12191. height: math.unit(250, "feet")
  12192. },
  12193. {
  12194. name: "Macro",
  12195. height: math.unit(2800, "feet")
  12196. },
  12197. {
  12198. name: "Megamacro",
  12199. height: math.unit(5200, "feet")
  12200. },
  12201. {
  12202. name: "Gigamacro",
  12203. height: math.unit(27000, "feet")
  12204. },
  12205. {
  12206. name: "Omega",
  12207. height: math.unit(45000, "feet")
  12208. },
  12209. ]
  12210. ))
  12211. characterMakers.push(() => makeCharacter(
  12212. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12213. {
  12214. front: {
  12215. height: math.unit(18, "feet"),
  12216. weight: math.unit(5800, "lb"),
  12217. name: "Front",
  12218. image: {
  12219. source: "./media/characters/rhys/front.svg",
  12220. extra: 3386 / 3090,
  12221. bottom: 0.07
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(18, "feet"),
  12229. default: true
  12230. },
  12231. {
  12232. name: "Working Size",
  12233. height: math.unit(200, "feet")
  12234. },
  12235. {
  12236. name: "Demolition Size",
  12237. height: math.unit(2000, "feet")
  12238. },
  12239. {
  12240. name: "Maximum Licensed Size",
  12241. height: math.unit(5, "miles")
  12242. },
  12243. {
  12244. name: "Maximum Observed Size",
  12245. height: math.unit(10, "yottameters")
  12246. },
  12247. ]
  12248. ))
  12249. characterMakers.push(() => makeCharacter(
  12250. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12251. {
  12252. front: {
  12253. height: math.unit(6, "feet"),
  12254. weight: math.unit(250, "lb"),
  12255. name: "Front",
  12256. image: {
  12257. source: "./media/characters/toto/front.svg",
  12258. extra: 527 / 479,
  12259. bottom: 0.05
  12260. }
  12261. },
  12262. },
  12263. [
  12264. {
  12265. name: "Micro",
  12266. height: math.unit(3, "feet")
  12267. },
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(10, "feet")
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(150, "feet"),
  12275. default: true
  12276. },
  12277. {
  12278. name: "Megamacro",
  12279. height: math.unit(1200, "feet")
  12280. },
  12281. ]
  12282. ))
  12283. characterMakers.push(() => makeCharacter(
  12284. { name: "King", species: ["lion"], tags: ["anthro"] },
  12285. {
  12286. back: {
  12287. height: math.unit(6, "feet"),
  12288. weight: math.unit(150, "lb"),
  12289. name: "Back",
  12290. image: {
  12291. source: "./media/characters/king/back.svg"
  12292. }
  12293. },
  12294. },
  12295. [
  12296. {
  12297. name: "Micro",
  12298. height: math.unit(2, "inches")
  12299. },
  12300. {
  12301. name: "Normal",
  12302. height: math.unit(8, "feet")
  12303. },
  12304. {
  12305. name: "Macro",
  12306. height: math.unit(200, "feet"),
  12307. default: true
  12308. },
  12309. {
  12310. name: "Megamacro",
  12311. height: math.unit(50, "miles")
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12317. {
  12318. front: {
  12319. height: math.unit(11, "feet"),
  12320. weight: math.unit(1400, "lb"),
  12321. name: "Front",
  12322. image: {
  12323. source: "./media/characters/cordite/front.svg",
  12324. extra: 1919/1827,
  12325. bottom: 40/1959
  12326. }
  12327. },
  12328. side: {
  12329. height: math.unit(11, "feet"),
  12330. weight: math.unit(1400, "lb"),
  12331. name: "Side",
  12332. image: {
  12333. source: "./media/characters/cordite/side.svg",
  12334. extra: 1908/1793,
  12335. bottom: 38/1946
  12336. }
  12337. },
  12338. back: {
  12339. height: math.unit(11, "feet"),
  12340. weight: math.unit(1400, "lb"),
  12341. name: "Back",
  12342. image: {
  12343. source: "./media/characters/cordite/back.svg",
  12344. extra: 1938/1837,
  12345. bottom: 10/1948
  12346. }
  12347. },
  12348. feral: {
  12349. height: math.unit(2, "feet"),
  12350. weight: math.unit(90, "lb"),
  12351. name: "Feral",
  12352. image: {
  12353. source: "./media/characters/cordite/feral.svg",
  12354. extra: 1260 / 755,
  12355. bottom: 0.05
  12356. }
  12357. },
  12358. },
  12359. [
  12360. {
  12361. name: "Normal",
  12362. height: math.unit(11, "feet"),
  12363. default: true
  12364. },
  12365. ]
  12366. ))
  12367. characterMakers.push(() => makeCharacter(
  12368. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12369. {
  12370. front: {
  12371. height: math.unit(6, "feet"),
  12372. weight: math.unit(150, "lb"),
  12373. name: "Front",
  12374. image: {
  12375. source: "./media/characters/pianostrong/front.svg",
  12376. extra: 6577 / 6254,
  12377. bottom: 0.02
  12378. }
  12379. },
  12380. side: {
  12381. height: math.unit(6, "feet"),
  12382. weight: math.unit(150, "lb"),
  12383. name: "Side",
  12384. image: {
  12385. source: "./media/characters/pianostrong/side.svg",
  12386. extra: 6106 / 5730
  12387. }
  12388. },
  12389. back: {
  12390. height: math.unit(6, "feet"),
  12391. weight: math.unit(150, "lb"),
  12392. name: "Back",
  12393. image: {
  12394. source: "./media/characters/pianostrong/back.svg",
  12395. extra: 6085 / 5733,
  12396. bottom: 0.01
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Macro",
  12403. height: math.unit(100, "feet")
  12404. },
  12405. {
  12406. name: "Macro+",
  12407. height: math.unit(300, "feet"),
  12408. default: true
  12409. },
  12410. {
  12411. name: "Macro++",
  12412. height: math.unit(1000, "feet")
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(150, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/kona/front.svg",
  12425. extra: 2960 / 2629,
  12426. bottom: 0.005
  12427. }
  12428. },
  12429. },
  12430. [
  12431. {
  12432. name: "Normal",
  12433. height: math.unit(11 + 8 / 12, "feet")
  12434. },
  12435. {
  12436. name: "Macro",
  12437. height: math.unit(850, "feet"),
  12438. default: true
  12439. },
  12440. {
  12441. name: "Macro+",
  12442. height: math.unit(1.5, "km"),
  12443. default: true
  12444. },
  12445. {
  12446. name: "Megamacro",
  12447. height: math.unit(80, "miles")
  12448. },
  12449. {
  12450. name: "Gigamacro",
  12451. height: math.unit(3500, "miles")
  12452. },
  12453. ]
  12454. ))
  12455. characterMakers.push(() => makeCharacter(
  12456. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12457. {
  12458. side: {
  12459. height: math.unit(1.9, "meters"),
  12460. weight: math.unit(326, "kg"),
  12461. name: "Side",
  12462. image: {
  12463. source: "./media/characters/levi/side.svg",
  12464. extra: 1704 / 1334,
  12465. bottom: 0.02
  12466. }
  12467. },
  12468. },
  12469. [
  12470. {
  12471. name: "Normal",
  12472. height: math.unit(1.9, "meters"),
  12473. default: true
  12474. },
  12475. {
  12476. name: "Macro",
  12477. height: math.unit(20, "meters")
  12478. },
  12479. {
  12480. name: "Macro+",
  12481. height: math.unit(200, "meters")
  12482. },
  12483. {
  12484. name: "Megamacro",
  12485. height: math.unit(2, "km")
  12486. },
  12487. {
  12488. name: "Megamacro+",
  12489. height: math.unit(20, "km")
  12490. },
  12491. {
  12492. name: "Gigamacro",
  12493. height: math.unit(2500, "km")
  12494. },
  12495. {
  12496. name: "Gigamacro+",
  12497. height: math.unit(120000, "km")
  12498. },
  12499. {
  12500. name: "Teramacro",
  12501. height: math.unit(7.77e6, "km")
  12502. },
  12503. ]
  12504. ))
  12505. characterMakers.push(() => makeCharacter(
  12506. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12507. {
  12508. front: {
  12509. height: math.unit(6 + 4/12, "feet"),
  12510. weight: math.unit(190, "lb"),
  12511. name: "Front",
  12512. image: {
  12513. source: "./media/characters/bmc/front.svg",
  12514. extra: 1626/1472,
  12515. bottom: 79/1705
  12516. }
  12517. },
  12518. back: {
  12519. height: math.unit(6 + 4/12, "feet"),
  12520. weight: math.unit(190, "lb"),
  12521. name: "Back",
  12522. image: {
  12523. source: "./media/characters/bmc/back.svg",
  12524. extra: 1640/1479,
  12525. bottom: 45/1685
  12526. }
  12527. },
  12528. frontArmor: {
  12529. height: math.unit(6 + 4/12, "feet"),
  12530. weight: math.unit(190, "lb"),
  12531. name: "Front-armor",
  12532. image: {
  12533. source: "./media/characters/bmc/front-armor.svg",
  12534. extra: 1538/1468,
  12535. bottom: 79/1617
  12536. }
  12537. },
  12538. },
  12539. [
  12540. {
  12541. name: "Human-sized",
  12542. height: math.unit(6 + 4 / 12, "feet")
  12543. },
  12544. {
  12545. name: "Interactive Size",
  12546. height: math.unit(25, "feet")
  12547. },
  12548. {
  12549. name: "Small",
  12550. height: math.unit(250, "feet")
  12551. },
  12552. {
  12553. name: "Normal",
  12554. height: math.unit(1250, "feet"),
  12555. default: true
  12556. },
  12557. {
  12558. name: "Good Day",
  12559. height: math.unit(88, "miles")
  12560. },
  12561. {
  12562. name: "Largest Measured Size",
  12563. height: math.unit(105.960, "galaxies")
  12564. },
  12565. ]
  12566. ))
  12567. characterMakers.push(() => makeCharacter(
  12568. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12569. {
  12570. front: {
  12571. height: math.unit(20, "feet"),
  12572. weight: math.unit(2016, "kg"),
  12573. name: "Front",
  12574. image: {
  12575. source: "./media/characters/sven-the-kaiju/front.svg",
  12576. extra: 1277/1250,
  12577. bottom: 35/1312
  12578. }
  12579. },
  12580. mouth: {
  12581. height: math.unit(1.85, "feet"),
  12582. name: "Mouth",
  12583. image: {
  12584. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12585. }
  12586. },
  12587. },
  12588. [
  12589. {
  12590. name: "Fairy",
  12591. height: math.unit(6, "inches")
  12592. },
  12593. {
  12594. name: "Normal",
  12595. height: math.unit(20, "feet"),
  12596. default: true
  12597. },
  12598. {
  12599. name: "Rampage",
  12600. height: math.unit(200, "feet")
  12601. },
  12602. {
  12603. name: "Archfey Forest Guardian",
  12604. height: math.unit(1, "mile")
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(4, "meters"),
  12613. weight: math.unit(2, "tons"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/marik/front.svg",
  12617. extra: 1057 / 1003,
  12618. bottom: 0.08
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Normal",
  12625. height: math.unit(4, "meters"),
  12626. default: true
  12627. },
  12628. {
  12629. name: "Macro",
  12630. height: math.unit(20, "meters")
  12631. },
  12632. {
  12633. name: "Megamacro",
  12634. height: math.unit(50, "km")
  12635. },
  12636. {
  12637. name: "Gigamacro",
  12638. height: math.unit(100, "km")
  12639. },
  12640. {
  12641. name: "Alpha Macro",
  12642. height: math.unit(7.88e7, "yottameters")
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12648. {
  12649. front: {
  12650. height: math.unit(6, "feet"),
  12651. weight: math.unit(110, "lb"),
  12652. name: "Front",
  12653. image: {
  12654. source: "./media/characters/mel/front.svg",
  12655. extra: 736 / 617,
  12656. bottom: 0.017
  12657. }
  12658. },
  12659. },
  12660. [
  12661. {
  12662. name: "Pico",
  12663. height: math.unit(3, "pm")
  12664. },
  12665. {
  12666. name: "Nano",
  12667. height: math.unit(3, "nm")
  12668. },
  12669. {
  12670. name: "Micro",
  12671. height: math.unit(0.3, "mm"),
  12672. default: true
  12673. },
  12674. {
  12675. name: "Micro+",
  12676. height: math.unit(3, "mm")
  12677. },
  12678. {
  12679. name: "Normal",
  12680. height: math.unit(5 + 10.5 / 12, "feet")
  12681. },
  12682. ]
  12683. ))
  12684. characterMakers.push(() => makeCharacter(
  12685. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12686. {
  12687. kaiju: {
  12688. height: math.unit(1.75, "meters"),
  12689. weight: math.unit(55, "kg"),
  12690. name: "Kaiju",
  12691. image: {
  12692. source: "./media/characters/lykonous/kaiju.svg",
  12693. extra: 1055 / 946,
  12694. bottom: 0.135
  12695. }
  12696. },
  12697. },
  12698. [
  12699. {
  12700. name: "Normal",
  12701. height: math.unit(2.5, "meters"),
  12702. default: true
  12703. },
  12704. {
  12705. name: "Kaiju Dragon",
  12706. height: math.unit(60, "meters")
  12707. },
  12708. {
  12709. name: "Mega Kaiju",
  12710. height: math.unit(120, "km")
  12711. },
  12712. {
  12713. name: "Giga Kaiju",
  12714. height: math.unit(200, "megameters")
  12715. },
  12716. {
  12717. name: "Terra Kaiju",
  12718. height: math.unit(400, "gigameters")
  12719. },
  12720. {
  12721. name: "Kaiju Dragon God",
  12722. height: math.unit(13000, "exaparsecs")
  12723. },
  12724. ]
  12725. ))
  12726. characterMakers.push(() => makeCharacter(
  12727. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12728. {
  12729. front: {
  12730. height: math.unit(6, "feet"),
  12731. weight: math.unit(150, "lb"),
  12732. name: "Front",
  12733. image: {
  12734. source: "./media/characters/blü/front.svg",
  12735. extra: 1883 / 1564,
  12736. bottom: 0.031
  12737. }
  12738. },
  12739. },
  12740. [
  12741. {
  12742. name: "Normal",
  12743. height: math.unit(13, "feet"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Big Boi",
  12748. height: math.unit(150, "meters")
  12749. },
  12750. {
  12751. name: "Mini Stomper",
  12752. height: math.unit(300, "meters")
  12753. },
  12754. {
  12755. name: "Macro",
  12756. height: math.unit(1000, "meters")
  12757. },
  12758. {
  12759. name: "Megamacro",
  12760. height: math.unit(11000, "meters")
  12761. },
  12762. {
  12763. name: "Gigamacro",
  12764. height: math.unit(11000, "km")
  12765. },
  12766. {
  12767. name: "Teramacro",
  12768. height: math.unit(420000, "km")
  12769. },
  12770. {
  12771. name: "Examacro",
  12772. height: math.unit(120, "parsecs")
  12773. },
  12774. {
  12775. name: "God Tho",
  12776. height: math.unit(98000000000, "parsecs")
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12782. {
  12783. taurFront: {
  12784. height: math.unit(6, "feet"),
  12785. weight: math.unit(200, "lb"),
  12786. name: "Taur (Front)",
  12787. image: {
  12788. source: "./media/characters/scales/taur-front.svg",
  12789. extra: 1,
  12790. bottom: 0.05
  12791. }
  12792. },
  12793. taurBack: {
  12794. height: math.unit(6, "feet"),
  12795. weight: math.unit(200, "lb"),
  12796. name: "Taur (Back)",
  12797. image: {
  12798. source: "./media/characters/scales/taur-back.svg",
  12799. extra: 1,
  12800. bottom: 0.08
  12801. }
  12802. },
  12803. anthro: {
  12804. height: math.unit(6 * 7 / 12, "feet"),
  12805. weight: math.unit(100, "lb"),
  12806. name: "Anthro",
  12807. image: {
  12808. source: "./media/characters/scales/anthro.svg",
  12809. extra: 1,
  12810. bottom: 0.06
  12811. }
  12812. },
  12813. },
  12814. [
  12815. {
  12816. name: "Normal",
  12817. height: math.unit(12, "feet"),
  12818. default: true
  12819. },
  12820. ]
  12821. ))
  12822. characterMakers.push(() => makeCharacter(
  12823. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12824. {
  12825. front: {
  12826. height: math.unit(6, "feet"),
  12827. weight: math.unit(150, "lb"),
  12828. name: "Front",
  12829. image: {
  12830. source: "./media/characters/koragos/front.svg",
  12831. extra: 841 / 794,
  12832. bottom: 0.035
  12833. }
  12834. },
  12835. back: {
  12836. height: math.unit(6, "feet"),
  12837. weight: math.unit(150, "lb"),
  12838. name: "Back",
  12839. image: {
  12840. source: "./media/characters/koragos/back.svg",
  12841. extra: 841 / 810,
  12842. bottom: 0.022
  12843. }
  12844. },
  12845. },
  12846. [
  12847. {
  12848. name: "Normal",
  12849. height: math.unit(6 + 11 / 12, "feet"),
  12850. default: true
  12851. },
  12852. {
  12853. name: "Macro",
  12854. height: math.unit(490, "feet")
  12855. },
  12856. {
  12857. name: "Megamacro",
  12858. height: math.unit(10, "miles")
  12859. },
  12860. {
  12861. name: "Gigamacro",
  12862. height: math.unit(50, "miles")
  12863. },
  12864. ]
  12865. ))
  12866. characterMakers.push(() => makeCharacter(
  12867. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12868. {
  12869. front: {
  12870. height: math.unit(6, "feet"),
  12871. weight: math.unit(250, "lb"),
  12872. name: "Front",
  12873. image: {
  12874. source: "./media/characters/xylrem/front.svg",
  12875. extra: 3323 / 3050,
  12876. bottom: 0.065
  12877. }
  12878. },
  12879. },
  12880. [
  12881. {
  12882. name: "Micro",
  12883. height: math.unit(4, "feet")
  12884. },
  12885. {
  12886. name: "Normal",
  12887. height: math.unit(16, "feet"),
  12888. default: true
  12889. },
  12890. {
  12891. name: "Macro",
  12892. height: math.unit(2720, "feet")
  12893. },
  12894. {
  12895. name: "Megamacro",
  12896. height: math.unit(25000, "miles")
  12897. },
  12898. ]
  12899. ))
  12900. characterMakers.push(() => makeCharacter(
  12901. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12902. {
  12903. front: {
  12904. height: math.unit(8, "feet"),
  12905. weight: math.unit(250, "kg"),
  12906. name: "Front",
  12907. image: {
  12908. source: "./media/characters/ikideru/front.svg",
  12909. extra: 930 / 870,
  12910. bottom: 0.087
  12911. }
  12912. },
  12913. back: {
  12914. height: math.unit(8, "feet"),
  12915. weight: math.unit(250, "kg"),
  12916. name: "Back",
  12917. image: {
  12918. source: "./media/characters/ikideru/back.svg",
  12919. extra: 919 / 852,
  12920. bottom: 0.055
  12921. }
  12922. },
  12923. },
  12924. [
  12925. {
  12926. name: "Rare",
  12927. height: math.unit(8, "feet"),
  12928. default: true
  12929. },
  12930. {
  12931. name: "Playful Loom",
  12932. height: math.unit(80, "feet")
  12933. },
  12934. {
  12935. name: "City Leaner",
  12936. height: math.unit(230, "feet")
  12937. },
  12938. {
  12939. name: "Megamacro",
  12940. height: math.unit(2500, "feet")
  12941. },
  12942. {
  12943. name: "Gigamacro",
  12944. height: math.unit(26400, "feet")
  12945. },
  12946. {
  12947. name: "Tectonic Shifter",
  12948. height: math.unit(1.7, "megameters")
  12949. },
  12950. {
  12951. name: "Planet Carer",
  12952. height: math.unit(21, "megameters")
  12953. },
  12954. {
  12955. name: "God",
  12956. height: math.unit(11157.22, "parsecs")
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12962. {
  12963. front: {
  12964. height: math.unit(6, "feet"),
  12965. weight: math.unit(120, "lb"),
  12966. name: "Front",
  12967. image: {
  12968. source: "./media/characters/neo/front.svg"
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Micro",
  12975. height: math.unit(2, "inches"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Human Size",
  12980. height: math.unit(5 + 8 / 12, "feet")
  12981. },
  12982. ]
  12983. ))
  12984. characterMakers.push(() => makeCharacter(
  12985. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12986. {
  12987. front: {
  12988. height: math.unit(13 + 10 / 12, "feet"),
  12989. weight: math.unit(5320, "lb"),
  12990. name: "Front",
  12991. image: {
  12992. source: "./media/characters/chauncey-chantz/front.svg",
  12993. extra: 1587 / 1435,
  12994. bottom: 0.02
  12995. }
  12996. },
  12997. },
  12998. [
  12999. {
  13000. name: "Normal",
  13001. height: math.unit(13 + 10 / 12, "feet"),
  13002. default: true
  13003. },
  13004. {
  13005. name: "Macro",
  13006. height: math.unit(45, "feet")
  13007. },
  13008. {
  13009. name: "Megamacro",
  13010. height: math.unit(250, "miles")
  13011. },
  13012. {
  13013. name: "Planetary",
  13014. height: math.unit(10000, "miles")
  13015. },
  13016. {
  13017. name: "Galactic",
  13018. height: math.unit(40000, "parsecs")
  13019. },
  13020. {
  13021. name: "Universal",
  13022. height: math.unit(1, "yottameter")
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13028. {
  13029. front: {
  13030. height: math.unit(6, "feet"),
  13031. weight: math.unit(150, "lb"),
  13032. name: "Front",
  13033. image: {
  13034. source: "./media/characters/epifox/front.svg",
  13035. extra: 1,
  13036. bottom: 0.075
  13037. }
  13038. },
  13039. },
  13040. [
  13041. {
  13042. name: "Micro",
  13043. height: math.unit(6, "inches")
  13044. },
  13045. {
  13046. name: "Normal",
  13047. height: math.unit(12, "feet"),
  13048. default: true
  13049. },
  13050. {
  13051. name: "Macro",
  13052. height: math.unit(3810, "feet")
  13053. },
  13054. {
  13055. name: "Megamacro",
  13056. height: math.unit(500, "miles")
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13062. {
  13063. front: {
  13064. height: math.unit(1.8796, "m"),
  13065. weight: math.unit(230, "lb"),
  13066. name: "Front",
  13067. image: {
  13068. source: "./media/characters/colin-t/front.svg",
  13069. extra: 1272 / 1193,
  13070. bottom: 0.07
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Micro",
  13077. height: math.unit(0.571, "meters")
  13078. },
  13079. {
  13080. name: "Normal",
  13081. height: math.unit(1.8796, "meters"),
  13082. default: true
  13083. },
  13084. {
  13085. name: "Tall",
  13086. height: math.unit(4, "meters")
  13087. },
  13088. {
  13089. name: "Macro",
  13090. height: math.unit(67.241, "meters")
  13091. },
  13092. {
  13093. name: "Megamacro",
  13094. height: math.unit(371.856, "meters")
  13095. },
  13096. {
  13097. name: "Planetary",
  13098. height: math.unit(12631.5689, "km")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13104. {
  13105. front: {
  13106. height: math.unit(1.85, "meters"),
  13107. weight: math.unit(80, "kg"),
  13108. name: "Front",
  13109. image: {
  13110. source: "./media/characters/matvei/front.svg",
  13111. extra: 456/447,
  13112. bottom: 8/464
  13113. }
  13114. },
  13115. back: {
  13116. height: math.unit(1.85, "meters"),
  13117. weight: math.unit(80, "kg"),
  13118. name: "Back",
  13119. image: {
  13120. source: "./media/characters/matvei/back.svg",
  13121. extra: 434/427,
  13122. bottom: 11/445
  13123. }
  13124. },
  13125. },
  13126. [
  13127. {
  13128. name: "Normal",
  13129. height: math.unit(1.85, "meters"),
  13130. default: true
  13131. },
  13132. ]
  13133. ))
  13134. characterMakers.push(() => makeCharacter(
  13135. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13136. {
  13137. front: {
  13138. height: math.unit(5 + 9 / 12, "feet"),
  13139. weight: math.unit(70, "lb"),
  13140. name: "Front",
  13141. image: {
  13142. source: "./media/characters/quincy/front.svg",
  13143. extra: 3041 / 2751
  13144. }
  13145. },
  13146. back: {
  13147. height: math.unit(5 + 9 / 12, "feet"),
  13148. weight: math.unit(70, "lb"),
  13149. name: "Back",
  13150. image: {
  13151. source: "./media/characters/quincy/back.svg",
  13152. extra: 3041 / 2751
  13153. }
  13154. },
  13155. flying: {
  13156. height: math.unit(5 + 4 / 12, "feet"),
  13157. weight: math.unit(70, "lb"),
  13158. name: "Flying",
  13159. image: {
  13160. source: "./media/characters/quincy/flying.svg",
  13161. extra: 1044 / 930
  13162. }
  13163. },
  13164. },
  13165. [
  13166. {
  13167. name: "Micro",
  13168. height: math.unit(3, "cm")
  13169. },
  13170. {
  13171. name: "Normal",
  13172. height: math.unit(5 + 9 / 12, "feet")
  13173. },
  13174. {
  13175. name: "Macro",
  13176. height: math.unit(200, "meters"),
  13177. default: true
  13178. },
  13179. {
  13180. name: "Megamacro",
  13181. height: math.unit(1000, "meters")
  13182. },
  13183. ]
  13184. ))
  13185. characterMakers.push(() => makeCharacter(
  13186. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13187. {
  13188. front: {
  13189. height: math.unit(3 + 11/12, "feet"),
  13190. weight: math.unit(50, "lb"),
  13191. name: "Front",
  13192. image: {
  13193. source: "./media/characters/vanrel/front.svg",
  13194. extra: 1104/949,
  13195. bottom: 52/1156
  13196. }
  13197. },
  13198. back: {
  13199. height: math.unit(3 + 11/12, "feet"),
  13200. weight: math.unit(50, "lb"),
  13201. name: "Back",
  13202. image: {
  13203. source: "./media/characters/vanrel/back.svg",
  13204. extra: 1119/976,
  13205. bottom: 37/1156
  13206. }
  13207. },
  13208. tome: {
  13209. height: math.unit(1.35, "feet"),
  13210. weight: math.unit(10, "lb"),
  13211. name: "Vanrel's Tome",
  13212. rename: true,
  13213. image: {
  13214. source: "./media/characters/vanrel/tome.svg"
  13215. }
  13216. },
  13217. beans: {
  13218. height: math.unit(0.89, "feet"),
  13219. name: "Beans",
  13220. image: {
  13221. source: "./media/characters/vanrel/beans.svg"
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Normal",
  13228. height: math.unit(3 + 11/12, "feet"),
  13229. default: true
  13230. },
  13231. ]
  13232. ))
  13233. characterMakers.push(() => makeCharacter(
  13234. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13235. {
  13236. front: {
  13237. height: math.unit(7 + 5 / 12, "feet"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/kuiper-vanrel/front.svg",
  13241. extra: 1219/1169,
  13242. bottom: 69/1288
  13243. }
  13244. },
  13245. back: {
  13246. height: math.unit(7 + 5 / 12, "feet"),
  13247. name: "Back",
  13248. image: {
  13249. source: "./media/characters/kuiper-vanrel/back.svg",
  13250. extra: 1236/1193,
  13251. bottom: 27/1263
  13252. }
  13253. },
  13254. foot: {
  13255. height: math.unit(0.55, "meters"),
  13256. name: "Foot",
  13257. image: {
  13258. source: "./media/characters/kuiper-vanrel/foot.svg",
  13259. }
  13260. },
  13261. battle: {
  13262. height: math.unit(6.824, "feet"),
  13263. name: "Battle",
  13264. image: {
  13265. source: "./media/characters/kuiper-vanrel/battle.svg",
  13266. extra: 1466 / 1327,
  13267. bottom: 29 / 1492.5
  13268. }
  13269. },
  13270. meerkui: {
  13271. height: math.unit(18, "inches"),
  13272. name: "Meerkui",
  13273. image: {
  13274. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13275. extra: 1354/1289,
  13276. bottom: 69/1423
  13277. }
  13278. },
  13279. },
  13280. [
  13281. {
  13282. name: "Normal",
  13283. height: math.unit(7 + 5 / 12, "feet"),
  13284. default: true
  13285. },
  13286. ]
  13287. ))
  13288. characterMakers.push(() => makeCharacter(
  13289. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13290. {
  13291. front: {
  13292. height: math.unit(8 + 5 / 12, "feet"),
  13293. name: "Front",
  13294. image: {
  13295. source: "./media/characters/keset-vanrel/front.svg",
  13296. extra: 1231/1148,
  13297. bottom: 82/1313
  13298. }
  13299. },
  13300. back: {
  13301. height: math.unit(8 + 5 / 12, "feet"),
  13302. name: "Back",
  13303. image: {
  13304. source: "./media/characters/keset-vanrel/back.svg",
  13305. extra: 1240/1174,
  13306. bottom: 33/1273
  13307. }
  13308. },
  13309. hand: {
  13310. height: math.unit(0.6, "meters"),
  13311. name: "Hand",
  13312. image: {
  13313. source: "./media/characters/keset-vanrel/hand.svg"
  13314. }
  13315. },
  13316. foot: {
  13317. height: math.unit(0.94978, "meters"),
  13318. name: "Foot",
  13319. image: {
  13320. source: "./media/characters/keset-vanrel/foot.svg"
  13321. }
  13322. },
  13323. battle: {
  13324. height: math.unit(7.408, "feet"),
  13325. name: "Battle",
  13326. image: {
  13327. source: "./media/characters/keset-vanrel/battle.svg",
  13328. extra: 1890 / 1386,
  13329. bottom: 73.28 / 1970
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Normal",
  13336. height: math.unit(8 + 5 / 12, "feet"),
  13337. default: true
  13338. },
  13339. ]
  13340. ))
  13341. characterMakers.push(() => makeCharacter(
  13342. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13343. {
  13344. front: {
  13345. height: math.unit(6, "feet"),
  13346. weight: math.unit(150, "lb"),
  13347. name: "Front",
  13348. image: {
  13349. source: "./media/characters/neos/front.svg",
  13350. extra: 1696 / 992,
  13351. bottom: 0.14
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Normal",
  13358. height: math.unit(54, "cm"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Macro",
  13363. height: math.unit(100, "m")
  13364. },
  13365. {
  13366. name: "Megamacro",
  13367. height: math.unit(10, "km")
  13368. },
  13369. {
  13370. name: "Megamacro+",
  13371. height: math.unit(100, "km")
  13372. },
  13373. {
  13374. name: "Gigamacro",
  13375. height: math.unit(100, "Mm")
  13376. },
  13377. {
  13378. name: "Teramacro",
  13379. height: math.unit(100, "Gm")
  13380. },
  13381. {
  13382. name: "Examacro",
  13383. height: math.unit(100, "Em")
  13384. },
  13385. {
  13386. name: "Godly",
  13387. height: math.unit(10000, "Ym")
  13388. },
  13389. {
  13390. name: "Beyond Godly",
  13391. height: math.unit(25, "multiverses")
  13392. },
  13393. ]
  13394. ))
  13395. characterMakers.push(() => makeCharacter(
  13396. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13397. {
  13398. feminine: {
  13399. height: math.unit(5, "feet"),
  13400. weight: math.unit(100, "lb"),
  13401. name: "Feminine",
  13402. image: {
  13403. source: "./media/characters/sammy-mouse/feminine.svg",
  13404. extra: 2526 / 2425,
  13405. bottom: 0.123
  13406. }
  13407. },
  13408. masculine: {
  13409. height: math.unit(5, "feet"),
  13410. weight: math.unit(100, "lb"),
  13411. name: "Masculine",
  13412. image: {
  13413. source: "./media/characters/sammy-mouse/masculine.svg",
  13414. extra: 2526 / 2425,
  13415. bottom: 0.123
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Micro",
  13422. height: math.unit(5, "inches")
  13423. },
  13424. {
  13425. name: "Normal",
  13426. height: math.unit(5, "feet"),
  13427. default: true
  13428. },
  13429. {
  13430. name: "Macro",
  13431. height: math.unit(60, "feet")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(4, "feet"),
  13440. weight: math.unit(50, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/kole/front.svg",
  13444. extra: 1423 / 1303,
  13445. bottom: 0.025
  13446. }
  13447. },
  13448. back: {
  13449. height: math.unit(4, "feet"),
  13450. weight: math.unit(50, "lb"),
  13451. name: "Back",
  13452. image: {
  13453. source: "./media/characters/kole/back.svg",
  13454. extra: 1426 / 1280,
  13455. bottom: 0.02
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Normal",
  13462. height: math.unit(4, "feet"),
  13463. default: true
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(2.5, "feet"),
  13472. weight: math.unit(32, "lb"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/rufran/front.svg",
  13476. extra: 1313/885,
  13477. bottom: 94/1407
  13478. }
  13479. },
  13480. side: {
  13481. height: math.unit(2.5, "feet"),
  13482. weight: math.unit(32, "lb"),
  13483. name: "Side",
  13484. image: {
  13485. source: "./media/characters/rufran/side.svg",
  13486. extra: 1109/852,
  13487. bottom: 118/1227
  13488. }
  13489. },
  13490. back: {
  13491. height: math.unit(2.5, "feet"),
  13492. weight: math.unit(32, "lb"),
  13493. name: "Back",
  13494. image: {
  13495. source: "./media/characters/rufran/back.svg",
  13496. extra: 1280/878,
  13497. bottom: 131/1411
  13498. }
  13499. },
  13500. mouth: {
  13501. height: math.unit(1.13, "feet"),
  13502. name: "Mouth",
  13503. image: {
  13504. source: "./media/characters/rufran/mouth.svg"
  13505. }
  13506. },
  13507. foot: {
  13508. height: math.unit(1.33, "feet"),
  13509. name: "Foot",
  13510. image: {
  13511. source: "./media/characters/rufran/foot.svg"
  13512. }
  13513. },
  13514. koboldFront: {
  13515. height: math.unit(2 + 6 / 12, "feet"),
  13516. weight: math.unit(20, "lb"),
  13517. name: "Front (Kobold)",
  13518. image: {
  13519. source: "./media/characters/rufran/kobold-front.svg",
  13520. extra: 2041 / 1839,
  13521. bottom: 0.055
  13522. }
  13523. },
  13524. koboldBack: {
  13525. height: math.unit(2 + 6 / 12, "feet"),
  13526. weight: math.unit(20, "lb"),
  13527. name: "Back (Kobold)",
  13528. image: {
  13529. source: "./media/characters/rufran/kobold-back.svg",
  13530. extra: 2054 / 1839,
  13531. bottom: 0.01
  13532. }
  13533. },
  13534. koboldHand: {
  13535. height: math.unit(0.2166, "meters"),
  13536. name: "Hand (Kobold)",
  13537. image: {
  13538. source: "./media/characters/rufran/kobold-hand.svg"
  13539. }
  13540. },
  13541. koboldFoot: {
  13542. height: math.unit(0.185, "meters"),
  13543. name: "Foot (Kobold)",
  13544. image: {
  13545. source: "./media/characters/rufran/kobold-foot.svg"
  13546. }
  13547. },
  13548. },
  13549. [
  13550. {
  13551. name: "Micro",
  13552. height: math.unit(1, "inch")
  13553. },
  13554. {
  13555. name: "Normal",
  13556. height: math.unit(2 + 6 / 12, "feet"),
  13557. default: true
  13558. },
  13559. {
  13560. name: "Big",
  13561. height: math.unit(60, "feet")
  13562. },
  13563. {
  13564. name: "Macro",
  13565. height: math.unit(325, "feet")
  13566. },
  13567. ]
  13568. ))
  13569. characterMakers.push(() => makeCharacter(
  13570. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13571. {
  13572. front: {
  13573. height: math.unit(0.3, "meters"),
  13574. weight: math.unit(3.5, "kg"),
  13575. name: "Front",
  13576. image: {
  13577. source: "./media/characters/chip/front.svg",
  13578. extra: 748 / 674
  13579. }
  13580. },
  13581. },
  13582. [
  13583. {
  13584. name: "Micro",
  13585. height: math.unit(1, "inch"),
  13586. default: true
  13587. },
  13588. ]
  13589. ))
  13590. characterMakers.push(() => makeCharacter(
  13591. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13592. {
  13593. side: {
  13594. height: math.unit(2.3, "meters"),
  13595. weight: math.unit(3500, "lb"),
  13596. name: "Side",
  13597. image: {
  13598. source: "./media/characters/torvid/side.svg",
  13599. extra: 1972 / 722,
  13600. bottom: 0.035
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Normal",
  13607. height: math.unit(2.3, "meters"),
  13608. default: true
  13609. },
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13614. {
  13615. front: {
  13616. height: math.unit(2, "meters"),
  13617. weight: math.unit(150.5, "kg"),
  13618. name: "Front",
  13619. image: {
  13620. source: "./media/characters/susan/front.svg",
  13621. extra: 693 / 635,
  13622. bottom: 0.05
  13623. }
  13624. },
  13625. },
  13626. [
  13627. {
  13628. name: "Megamacro",
  13629. height: math.unit(505, "miles"),
  13630. default: true
  13631. },
  13632. ]
  13633. ))
  13634. characterMakers.push(() => makeCharacter(
  13635. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13636. {
  13637. front: {
  13638. height: math.unit(6, "feet"),
  13639. weight: math.unit(150, "lb"),
  13640. name: "Front",
  13641. image: {
  13642. source: "./media/characters/raindrops/front.svg",
  13643. extra: 2655 / 2461,
  13644. bottom: 49 / 2705
  13645. }
  13646. },
  13647. back: {
  13648. height: math.unit(6, "feet"),
  13649. weight: math.unit(150, "lb"),
  13650. name: "Back",
  13651. image: {
  13652. source: "./media/characters/raindrops/back.svg",
  13653. extra: 2574 / 2400,
  13654. bottom: 65 / 2634
  13655. }
  13656. },
  13657. },
  13658. [
  13659. {
  13660. name: "Micro",
  13661. height: math.unit(6, "inches")
  13662. },
  13663. {
  13664. name: "Normal",
  13665. height: math.unit(6 + 2 / 12, "feet")
  13666. },
  13667. {
  13668. name: "Macro",
  13669. height: math.unit(131, "feet"),
  13670. default: true
  13671. },
  13672. {
  13673. name: "Megamacro",
  13674. height: math.unit(15, "miles")
  13675. },
  13676. {
  13677. name: "Gigamacro",
  13678. height: math.unit(4000, "miles")
  13679. },
  13680. {
  13681. name: "Teramacro",
  13682. height: math.unit(315000, "miles")
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13688. {
  13689. front: {
  13690. height: math.unit(2.794, "meters"),
  13691. weight: math.unit(325, "kg"),
  13692. name: "Front",
  13693. image: {
  13694. source: "./media/characters/tezwa/front.svg",
  13695. extra: 2083 / 1906,
  13696. bottom: 0.031
  13697. }
  13698. },
  13699. foot: {
  13700. height: math.unit(0.687, "meters"),
  13701. name: "Foot",
  13702. image: {
  13703. source: "./media/characters/tezwa/foot.svg"
  13704. }
  13705. },
  13706. },
  13707. [
  13708. {
  13709. name: "Normal",
  13710. height: math.unit(9 + 2 / 12, "feet"),
  13711. default: true
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13717. {
  13718. front: {
  13719. height: math.unit(58, "feet"),
  13720. weight: math.unit(89000, "lb"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/typhus/front.svg",
  13724. extra: 816 / 800,
  13725. bottom: 0.065
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Macro",
  13732. height: math.unit(58, "feet"),
  13733. default: true
  13734. },
  13735. ]
  13736. ))
  13737. characterMakers.push(() => makeCharacter(
  13738. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13739. {
  13740. front: {
  13741. height: math.unit(12, "feet"),
  13742. weight: math.unit(6, "tonnes"),
  13743. name: "Front",
  13744. image: {
  13745. source: "./media/characters/lyra-von-wulf/front.svg",
  13746. extra: 1,
  13747. bottom: 0.10
  13748. }
  13749. },
  13750. frontMecha: {
  13751. height: math.unit(12, "feet"),
  13752. weight: math.unit(12, "tonnes"),
  13753. name: "Front (Mecha)",
  13754. image: {
  13755. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13756. extra: 1,
  13757. bottom: 0.042
  13758. }
  13759. },
  13760. maw: {
  13761. height: math.unit(2.2, "feet"),
  13762. name: "Maw",
  13763. image: {
  13764. source: "./media/characters/lyra-von-wulf/maw.svg"
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Normal",
  13771. height: math.unit(12, "feet"),
  13772. default: true
  13773. },
  13774. {
  13775. name: "Classic",
  13776. height: math.unit(50, "feet")
  13777. },
  13778. {
  13779. name: "Macro",
  13780. height: math.unit(500, "feet")
  13781. },
  13782. {
  13783. name: "Megamacro",
  13784. height: math.unit(1, "mile")
  13785. },
  13786. {
  13787. name: "Gigamacro",
  13788. height: math.unit(400, "miles")
  13789. },
  13790. {
  13791. name: "Teramacro",
  13792. height: math.unit(22000, "miles")
  13793. },
  13794. {
  13795. name: "Solarmacro",
  13796. height: math.unit(8600000, "miles")
  13797. },
  13798. {
  13799. name: "Galactic",
  13800. height: math.unit(1057000, "lightyears")
  13801. },
  13802. ]
  13803. ))
  13804. characterMakers.push(() => makeCharacter(
  13805. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13806. {
  13807. front: {
  13808. height: math.unit(6 + 10 / 12, "feet"),
  13809. weight: math.unit(150, "lb"),
  13810. name: "Front",
  13811. image: {
  13812. source: "./media/characters/dixon/front.svg",
  13813. extra: 3361 / 3209,
  13814. bottom: 0.01
  13815. }
  13816. },
  13817. },
  13818. [
  13819. {
  13820. name: "Normal",
  13821. height: math.unit(6 + 10 / 12, "feet"),
  13822. default: true
  13823. },
  13824. {
  13825. name: "Big",
  13826. height: math.unit(12, "meters")
  13827. },
  13828. {
  13829. name: "Macro",
  13830. height: math.unit(500, "meters")
  13831. },
  13832. {
  13833. name: "Megamacro",
  13834. height: math.unit(2, "km")
  13835. },
  13836. ]
  13837. ))
  13838. characterMakers.push(() => makeCharacter(
  13839. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13840. {
  13841. front: {
  13842. height: math.unit(185, "cm"),
  13843. weight: math.unit(68, "kg"),
  13844. name: "Front",
  13845. image: {
  13846. source: "./media/characters/kauko/front.svg",
  13847. extra: 1455 / 1421,
  13848. bottom: 0.03
  13849. }
  13850. },
  13851. back: {
  13852. height: math.unit(185, "cm"),
  13853. weight: math.unit(68, "kg"),
  13854. name: "Back",
  13855. image: {
  13856. source: "./media/characters/kauko/back.svg",
  13857. extra: 1455 / 1421,
  13858. bottom: 0.004
  13859. }
  13860. },
  13861. },
  13862. [
  13863. {
  13864. name: "Normal",
  13865. height: math.unit(185, "cm"),
  13866. default: true
  13867. },
  13868. ]
  13869. ))
  13870. characterMakers.push(() => makeCharacter(
  13871. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13872. {
  13873. frontSfw: {
  13874. height: math.unit(5, "meters"),
  13875. weight: math.unit(4250, "lb"),
  13876. name: "Front",
  13877. image: {
  13878. source: "./media/characters/varg/front-sfw.svg",
  13879. extra: 1103/1010,
  13880. bottom: 50/1153
  13881. },
  13882. form: "anthro",
  13883. default: true
  13884. },
  13885. backSfw: {
  13886. height: math.unit(5, "meters"),
  13887. weight: math.unit(4250, "lb"),
  13888. name: "Back",
  13889. image: {
  13890. source: "./media/characters/varg/back-sfw.svg",
  13891. extra: 1038/1022,
  13892. bottom: 36/1074
  13893. },
  13894. form: "anthro"
  13895. },
  13896. frontNsfw: {
  13897. height: math.unit(5, "meters"),
  13898. weight: math.unit(4250, "lb"),
  13899. name: "Front (NSFW)",
  13900. image: {
  13901. source: "./media/characters/varg/front-nsfw.svg",
  13902. extra: 1103/1010,
  13903. bottom: 50/1153
  13904. },
  13905. form: "anthro"
  13906. },
  13907. sheath: {
  13908. height: math.unit(3.8, "feet"),
  13909. weight: math.unit(90, "kilograms"),
  13910. name: "Sheath",
  13911. image: {
  13912. source: "./media/characters/varg/sheath.svg"
  13913. },
  13914. form: "anthro"
  13915. },
  13916. dick: {
  13917. height: math.unit(4.6, "feet"),
  13918. weight: math.unit(451, "kilograms"),
  13919. name: "Dick",
  13920. image: {
  13921. source: "./media/characters/varg/dick.svg"
  13922. },
  13923. form: "anthro"
  13924. },
  13925. feralSfw: {
  13926. height: math.unit(5, "meters"),
  13927. weight: math.unit(100000, "lb"),
  13928. name: "Side",
  13929. image: {
  13930. source: "./media/characters/varg/feral-sfw.svg",
  13931. extra: 1065/511,
  13932. bottom: 211/1276
  13933. },
  13934. form: "feral",
  13935. default: true
  13936. },
  13937. feralNsfw: {
  13938. height: math.unit(5, "meters"),
  13939. weight: math.unit(100000, "lb"),
  13940. name: "Side (NSFW)",
  13941. image: {
  13942. source: "./media/characters/varg/feral-nsfw.svg",
  13943. extra: 1065/511,
  13944. bottom: 211/1276
  13945. },
  13946. form: "feral",
  13947. },
  13948. feralSheath: {
  13949. height: math.unit(9.8, "feet"),
  13950. weight: math.unit(2000, "kilograms"),
  13951. name: "Sheath",
  13952. image: {
  13953. source: "./media/characters/varg/sheath.svg"
  13954. },
  13955. form: "feral"
  13956. },
  13957. feralDick: {
  13958. height: math.unit(13.11, "feet"),
  13959. weight: math.unit(10440, "kilograms"),
  13960. name: "Dick",
  13961. image: {
  13962. source: "./media/characters/varg/dick.svg"
  13963. },
  13964. form: "feral"
  13965. },
  13966. },
  13967. [
  13968. {
  13969. name: "Normal",
  13970. height: math.unit(5, "meters"),
  13971. form: "anthro"
  13972. },
  13973. {
  13974. name: "Macro",
  13975. height: math.unit(200, "meters"),
  13976. form: "anthro"
  13977. },
  13978. {
  13979. name: "Megamacro",
  13980. height: math.unit(20, "kilometers"),
  13981. form: "anthro"
  13982. },
  13983. {
  13984. name: "True Size",
  13985. height: math.unit(211, "km"),
  13986. form: "anthro",
  13987. default: true
  13988. },
  13989. {
  13990. name: "Gigamacro",
  13991. height: math.unit(1000, "km"),
  13992. form: "anthro"
  13993. },
  13994. {
  13995. name: "Gigamacro+",
  13996. height: math.unit(8000, "km"),
  13997. form: "anthro"
  13998. },
  13999. {
  14000. name: "Teramacro",
  14001. height: math.unit(1000000, "km"),
  14002. form: "anthro"
  14003. },
  14004. {
  14005. name: "Normal",
  14006. height: math.unit(5, "meters"),
  14007. form: "feral"
  14008. },
  14009. {
  14010. name: "Macro",
  14011. height: math.unit(200, "meters"),
  14012. form: "feral"
  14013. },
  14014. {
  14015. name: "Megamacro",
  14016. height: math.unit(20, "kilometers"),
  14017. form: "feral"
  14018. },
  14019. {
  14020. name: "True Size",
  14021. height: math.unit(211, "km"),
  14022. form: "feral",
  14023. default: true
  14024. },
  14025. {
  14026. name: "Gigamacro",
  14027. height: math.unit(1000, "km"),
  14028. form: "feral"
  14029. },
  14030. {
  14031. name: "Gigamacro+",
  14032. height: math.unit(8000, "km"),
  14033. form: "feral"
  14034. },
  14035. {
  14036. name: "Teramacro",
  14037. height: math.unit(1000000, "km"),
  14038. form: "feral"
  14039. },
  14040. ],
  14041. {
  14042. "anthro": {
  14043. name: "Anthro",
  14044. default: true
  14045. },
  14046. "feral": {
  14047. name: "Feral",
  14048. },
  14049. }
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14053. {
  14054. front: {
  14055. height: math.unit(7 + 7 / 12, "feet"),
  14056. weight: math.unit(267, "lb"),
  14057. name: "Front",
  14058. image: {
  14059. source: "./media/characters/dayza/front.svg",
  14060. extra: 1262 / 1200,
  14061. bottom: 0.035
  14062. }
  14063. },
  14064. side: {
  14065. height: math.unit(7 + 7 / 12, "feet"),
  14066. weight: math.unit(267, "lb"),
  14067. name: "Side",
  14068. image: {
  14069. source: "./media/characters/dayza/side.svg",
  14070. extra: 1295 / 1245,
  14071. bottom: 0.05
  14072. }
  14073. },
  14074. back: {
  14075. height: math.unit(7 + 7 / 12, "feet"),
  14076. weight: math.unit(267, "lb"),
  14077. name: "Back",
  14078. image: {
  14079. source: "./media/characters/dayza/back.svg",
  14080. extra: 1241 / 1170
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Normal",
  14087. height: math.unit(7 + 7 / 12, "feet"),
  14088. default: true
  14089. },
  14090. {
  14091. name: "Macro",
  14092. height: math.unit(155, "feet")
  14093. },
  14094. ]
  14095. ))
  14096. characterMakers.push(() => makeCharacter(
  14097. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14098. {
  14099. front: {
  14100. height: math.unit(6 + 5 / 12, "feet"),
  14101. weight: math.unit(160, "lb"),
  14102. name: "Front",
  14103. image: {
  14104. source: "./media/characters/xanthos/front.svg",
  14105. extra: 1,
  14106. bottom: 0.04
  14107. }
  14108. },
  14109. back: {
  14110. height: math.unit(6 + 5 / 12, "feet"),
  14111. weight: math.unit(160, "lb"),
  14112. name: "Back",
  14113. image: {
  14114. source: "./media/characters/xanthos/back.svg",
  14115. extra: 1,
  14116. bottom: 0.03
  14117. }
  14118. },
  14119. hand: {
  14120. height: math.unit(0.928, "feet"),
  14121. name: "Hand",
  14122. image: {
  14123. source: "./media/characters/xanthos/hand.svg"
  14124. }
  14125. },
  14126. foot: {
  14127. height: math.unit(1.286, "feet"),
  14128. name: "Foot",
  14129. image: {
  14130. source: "./media/characters/xanthos/foot.svg"
  14131. }
  14132. },
  14133. },
  14134. [
  14135. {
  14136. name: "Normal",
  14137. height: math.unit(6 + 5 / 12, "feet"),
  14138. default: true
  14139. },
  14140. {
  14141. name: "Normal+",
  14142. height: math.unit(6, "meters")
  14143. },
  14144. {
  14145. name: "Macro",
  14146. height: math.unit(40, "feet")
  14147. },
  14148. {
  14149. name: "Macro+",
  14150. height: math.unit(200, "meters")
  14151. },
  14152. {
  14153. name: "Megamacro",
  14154. height: math.unit(20, "km")
  14155. },
  14156. {
  14157. name: "Megamacro+",
  14158. height: math.unit(100, "km")
  14159. },
  14160. {
  14161. name: "Gigamacro",
  14162. height: math.unit(200, "megameters")
  14163. },
  14164. {
  14165. name: "Gigamacro+",
  14166. height: math.unit(1.5, "gigameters")
  14167. },
  14168. ]
  14169. ))
  14170. characterMakers.push(() => makeCharacter(
  14171. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14172. {
  14173. front: {
  14174. height: math.unit(6 + 3 / 12, "feet"),
  14175. weight: math.unit(215, "lb"),
  14176. name: "Front",
  14177. image: {
  14178. source: "./media/characters/grynn/front.svg",
  14179. extra: 4627 / 4209,
  14180. bottom: 0.047
  14181. }
  14182. },
  14183. },
  14184. [
  14185. {
  14186. name: "Micro",
  14187. height: math.unit(6, "inches")
  14188. },
  14189. {
  14190. name: "Normal",
  14191. height: math.unit(6 + 3 / 12, "feet"),
  14192. default: true
  14193. },
  14194. {
  14195. name: "Big",
  14196. height: math.unit(104, "feet")
  14197. },
  14198. {
  14199. name: "Macro",
  14200. height: math.unit(944, "feet")
  14201. },
  14202. {
  14203. name: "Macro+",
  14204. height: math.unit(9480, "feet")
  14205. },
  14206. {
  14207. name: "Megamacro",
  14208. height: math.unit(78752, "feet")
  14209. },
  14210. {
  14211. name: "Megamacro+",
  14212. height: math.unit(630128, "feet")
  14213. },
  14214. {
  14215. name: "Megamacro++",
  14216. height: math.unit(3150695, "feet")
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14222. {
  14223. front: {
  14224. height: math.unit(7 + 5 / 12, "feet"),
  14225. weight: math.unit(450, "lb"),
  14226. name: "Front",
  14227. image: {
  14228. source: "./media/characters/mocha-aura/front.svg",
  14229. extra: 1907 / 1817,
  14230. bottom: 0.04
  14231. }
  14232. },
  14233. back: {
  14234. height: math.unit(7 + 5 / 12, "feet"),
  14235. weight: math.unit(450, "lb"),
  14236. name: "Back",
  14237. image: {
  14238. source: "./media/characters/mocha-aura/back.svg",
  14239. extra: 1900 / 1825,
  14240. bottom: 0.045
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Nano",
  14247. height: math.unit(1, "nm")
  14248. },
  14249. {
  14250. name: "Megamicro",
  14251. height: math.unit(1, "mm")
  14252. },
  14253. {
  14254. name: "Micro",
  14255. height: math.unit(3, "inches")
  14256. },
  14257. {
  14258. name: "Normal",
  14259. height: math.unit(7 + 5 / 12, "feet"),
  14260. default: true
  14261. },
  14262. {
  14263. name: "Macro",
  14264. height: math.unit(30, "feet")
  14265. },
  14266. {
  14267. name: "Megamacro",
  14268. height: math.unit(3500, "feet")
  14269. },
  14270. {
  14271. name: "Teramacro",
  14272. height: math.unit(500000, "miles")
  14273. },
  14274. {
  14275. name: "Petamacro",
  14276. height: math.unit(50000000000000000, "parsecs")
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14282. {
  14283. front: {
  14284. height: math.unit(6, "feet"),
  14285. weight: math.unit(150, "lb"),
  14286. name: "Front",
  14287. image: {
  14288. source: "./media/characters/ilisha-devya/front.svg",
  14289. extra: 1053/1049,
  14290. bottom: 270/1323
  14291. }
  14292. },
  14293. back: {
  14294. height: math.unit(6, "feet"),
  14295. weight: math.unit(150, "lb"),
  14296. name: "Back",
  14297. image: {
  14298. source: "./media/characters/ilisha-devya/back.svg",
  14299. extra: 1131/1128,
  14300. bottom: 39/1170
  14301. }
  14302. },
  14303. },
  14304. [
  14305. {
  14306. name: "Macro",
  14307. height: math.unit(500, "feet"),
  14308. default: true
  14309. },
  14310. {
  14311. name: "Megamacro",
  14312. height: math.unit(10, "miles")
  14313. },
  14314. {
  14315. name: "Gigamacro",
  14316. height: math.unit(100000, "miles")
  14317. },
  14318. {
  14319. name: "Examacro",
  14320. height: math.unit(1e9, "lightyears")
  14321. },
  14322. {
  14323. name: "Omniversal",
  14324. height: math.unit(1e33, "lightyears")
  14325. },
  14326. {
  14327. name: "Beyond Infinite",
  14328. height: math.unit(1e100, "lightyears")
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14334. {
  14335. Side: {
  14336. height: math.unit(6, "feet"),
  14337. weight: math.unit(150, "lb"),
  14338. name: "Side",
  14339. image: {
  14340. source: "./media/characters/mira/side.svg",
  14341. extra: 900 / 799,
  14342. bottom: 0.02
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Human Size",
  14349. height: math.unit(6, "feet")
  14350. },
  14351. {
  14352. name: "Macro",
  14353. height: math.unit(100, "feet"),
  14354. default: true
  14355. },
  14356. {
  14357. name: "Megamacro",
  14358. height: math.unit(10, "miles")
  14359. },
  14360. {
  14361. name: "Gigamacro",
  14362. height: math.unit(25000, "miles")
  14363. },
  14364. {
  14365. name: "Teramacro",
  14366. height: math.unit(300, "AU")
  14367. },
  14368. {
  14369. name: "Full Size",
  14370. height: math.unit(4.5e10, "lightyears")
  14371. },
  14372. ]
  14373. ))
  14374. characterMakers.push(() => makeCharacter(
  14375. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14376. {
  14377. front: {
  14378. height: math.unit(6, "feet"),
  14379. weight: math.unit(150, "lb"),
  14380. name: "Front",
  14381. image: {
  14382. source: "./media/characters/holly/front.svg",
  14383. extra: 639 / 606
  14384. }
  14385. },
  14386. back: {
  14387. height: math.unit(6, "feet"),
  14388. weight: math.unit(150, "lb"),
  14389. name: "Back",
  14390. image: {
  14391. source: "./media/characters/holly/back.svg",
  14392. extra: 623 / 598
  14393. }
  14394. },
  14395. frontWorking: {
  14396. height: math.unit(6, "feet"),
  14397. weight: math.unit(150, "lb"),
  14398. name: "Front (Working)",
  14399. image: {
  14400. source: "./media/characters/holly/front-working.svg",
  14401. extra: 607 / 577,
  14402. bottom: 0.048
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Normal",
  14409. height: math.unit(12 + 3 / 12, "feet"),
  14410. default: true
  14411. },
  14412. ]
  14413. ))
  14414. characterMakers.push(() => makeCharacter(
  14415. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14416. {
  14417. front: {
  14418. height: math.unit(6, "feet"),
  14419. weight: math.unit(150, "lb"),
  14420. name: "Front",
  14421. image: {
  14422. source: "./media/characters/porter/front.svg",
  14423. extra: 1,
  14424. bottom: 0.01
  14425. }
  14426. },
  14427. frontRobes: {
  14428. height: math.unit(6, "feet"),
  14429. weight: math.unit(150, "lb"),
  14430. name: "Front (Robes)",
  14431. image: {
  14432. source: "./media/characters/porter/front-robes.svg",
  14433. extra: 1.01,
  14434. bottom: 0.01
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Normal",
  14441. height: math.unit(11 + 9 / 12, "feet"),
  14442. default: true
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14448. {
  14449. legendary: {
  14450. height: math.unit(6, "feet"),
  14451. weight: math.unit(150, "lb"),
  14452. name: "Legendary",
  14453. image: {
  14454. source: "./media/characters/lucy/legendary.svg",
  14455. extra: 1355 / 1100,
  14456. bottom: 0.045
  14457. }
  14458. },
  14459. },
  14460. [
  14461. {
  14462. name: "Legendary",
  14463. height: math.unit(86882 * 2, "miles"),
  14464. default: true
  14465. },
  14466. ]
  14467. ))
  14468. characterMakers.push(() => makeCharacter(
  14469. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14470. {
  14471. front: {
  14472. height: math.unit(6, "feet"),
  14473. weight: math.unit(150, "lb"),
  14474. name: "Front",
  14475. image: {
  14476. source: "./media/characters/drusilla/front.svg",
  14477. extra: 678 / 635,
  14478. bottom: 0.03
  14479. }
  14480. },
  14481. back: {
  14482. height: math.unit(6, "feet"),
  14483. weight: math.unit(150, "lb"),
  14484. name: "Back",
  14485. image: {
  14486. source: "./media/characters/drusilla/back.svg",
  14487. extra: 678 / 635,
  14488. bottom: 0.005
  14489. }
  14490. },
  14491. },
  14492. [
  14493. {
  14494. name: "Macro",
  14495. height: math.unit(100, "feet")
  14496. },
  14497. {
  14498. name: "Canon Height",
  14499. height: math.unit(2000, "feet"),
  14500. default: true
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14506. {
  14507. front: {
  14508. height: math.unit(6, "feet"),
  14509. weight: math.unit(180, "lb"),
  14510. name: "Front",
  14511. image: {
  14512. source: "./media/characters/renard-thatch/front.svg",
  14513. extra: 2411 / 2275,
  14514. bottom: 0.01
  14515. }
  14516. },
  14517. frontPosing: {
  14518. height: math.unit(6, "feet"),
  14519. weight: math.unit(180, "lb"),
  14520. name: "Front (Posing)",
  14521. image: {
  14522. source: "./media/characters/renard-thatch/front-posing.svg",
  14523. extra: 2381 / 2261,
  14524. bottom: 0.01
  14525. }
  14526. },
  14527. back: {
  14528. height: math.unit(6, "feet"),
  14529. weight: math.unit(180, "lb"),
  14530. name: "Back",
  14531. image: {
  14532. source: "./media/characters/renard-thatch/back.svg",
  14533. extra: 2428 / 2288
  14534. }
  14535. },
  14536. },
  14537. [
  14538. {
  14539. name: "Micro",
  14540. height: math.unit(3, "inches")
  14541. },
  14542. {
  14543. name: "Default",
  14544. height: math.unit(6, "feet"),
  14545. default: true
  14546. },
  14547. {
  14548. name: "Macro",
  14549. height: math.unit(75, "feet")
  14550. },
  14551. ]
  14552. ))
  14553. characterMakers.push(() => makeCharacter(
  14554. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14555. {
  14556. front: {
  14557. height: math.unit(1450, "feet"),
  14558. weight: math.unit(1.21e6, "tons"),
  14559. name: "Front",
  14560. image: {
  14561. source: "./media/characters/sekvra/front.svg",
  14562. extra: 1193/1190,
  14563. bottom: 78/1271
  14564. }
  14565. },
  14566. side: {
  14567. height: math.unit(1450, "feet"),
  14568. weight: math.unit(1.21e6, "tons"),
  14569. name: "Side",
  14570. image: {
  14571. source: "./media/characters/sekvra/side.svg",
  14572. extra: 1193/1190,
  14573. bottom: 52/1245
  14574. }
  14575. },
  14576. back: {
  14577. height: math.unit(1450, "feet"),
  14578. weight: math.unit(1.21e6, "tons"),
  14579. name: "Back",
  14580. image: {
  14581. source: "./media/characters/sekvra/back.svg",
  14582. extra: 1219/1216,
  14583. bottom: 21/1240
  14584. }
  14585. },
  14586. frontClothed: {
  14587. height: math.unit(1450, "feet"),
  14588. weight: math.unit(1.21e6, "tons"),
  14589. name: "Front (Clothed)",
  14590. image: {
  14591. source: "./media/characters/sekvra/front-clothed.svg",
  14592. extra: 1192/1189,
  14593. bottom: 79/1271
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Macro",
  14600. height: math.unit(1450, "feet"),
  14601. default: true
  14602. },
  14603. {
  14604. name: "Megamacro",
  14605. height: math.unit(15000, "feet")
  14606. },
  14607. ]
  14608. ))
  14609. characterMakers.push(() => makeCharacter(
  14610. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14611. {
  14612. front: {
  14613. height: math.unit(6, "feet"),
  14614. weight: math.unit(150, "lb"),
  14615. name: "Front",
  14616. image: {
  14617. source: "./media/characters/carmine/front.svg",
  14618. extra: 1,
  14619. bottom: 0.035
  14620. }
  14621. },
  14622. frontArmor: {
  14623. height: math.unit(6, "feet"),
  14624. weight: math.unit(150, "lb"),
  14625. name: "Front (Armor)",
  14626. image: {
  14627. source: "./media/characters/carmine/front-armor.svg",
  14628. extra: 1,
  14629. bottom: 0.035
  14630. }
  14631. },
  14632. },
  14633. [
  14634. {
  14635. name: "Large",
  14636. height: math.unit(1, "mile")
  14637. },
  14638. {
  14639. name: "Huge",
  14640. height: math.unit(40, "miles"),
  14641. default: true
  14642. },
  14643. {
  14644. name: "Colossal",
  14645. height: math.unit(2500, "miles")
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14651. {
  14652. front: {
  14653. height: math.unit(6, "feet"),
  14654. weight: math.unit(150, "lb"),
  14655. name: "Front",
  14656. image: {
  14657. source: "./media/characters/elyssia/front.svg",
  14658. extra: 2201 / 2035,
  14659. bottom: 0.05
  14660. }
  14661. },
  14662. frontClothed: {
  14663. height: math.unit(6, "feet"),
  14664. weight: math.unit(150, "lb"),
  14665. name: "Front (Clothed)",
  14666. image: {
  14667. source: "./media/characters/elyssia/front-clothed.svg",
  14668. extra: 2201 / 2035,
  14669. bottom: 0.05
  14670. }
  14671. },
  14672. back: {
  14673. height: math.unit(6, "feet"),
  14674. weight: math.unit(150, "lb"),
  14675. name: "Back",
  14676. image: {
  14677. source: "./media/characters/elyssia/back.svg",
  14678. extra: 2201 / 2035,
  14679. bottom: 0.013
  14680. }
  14681. },
  14682. },
  14683. [
  14684. {
  14685. name: "Smaller",
  14686. height: math.unit(150, "feet")
  14687. },
  14688. {
  14689. name: "Standard",
  14690. height: math.unit(1400, "feet"),
  14691. default: true
  14692. },
  14693. {
  14694. name: "Distracted",
  14695. height: math.unit(15000, "feet")
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(7 + 4/12, "feet"),
  14704. weight: math.unit(690, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/geno-maxwell/front.svg",
  14708. extra: 984/856,
  14709. bottom: 87/1071
  14710. }
  14711. },
  14712. back: {
  14713. height: math.unit(7 + 4/12, "feet"),
  14714. weight: math.unit(690, "lb"),
  14715. name: "Back",
  14716. image: {
  14717. source: "./media/characters/geno-maxwell/back.svg",
  14718. extra: 981/854,
  14719. bottom: 57/1038
  14720. }
  14721. },
  14722. frontCostume: {
  14723. height: math.unit(7 + 4/12, "feet"),
  14724. weight: math.unit(690, "lb"),
  14725. name: "Front (Costume)",
  14726. image: {
  14727. source: "./media/characters/geno-maxwell/front-costume.svg",
  14728. extra: 984/856,
  14729. bottom: 87/1071
  14730. }
  14731. },
  14732. backcostume: {
  14733. height: math.unit(7 + 4/12, "feet"),
  14734. weight: math.unit(690, "lb"),
  14735. name: "Back (Costume)",
  14736. image: {
  14737. source: "./media/characters/geno-maxwell/back-costume.svg",
  14738. extra: 981/854,
  14739. bottom: 57/1038
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Micro",
  14746. height: math.unit(3, "inches")
  14747. },
  14748. {
  14749. name: "Normal",
  14750. height: math.unit(7 + 4 / 12, "feet"),
  14751. default: true
  14752. },
  14753. {
  14754. name: "Macro",
  14755. height: math.unit(220, "feet")
  14756. },
  14757. {
  14758. name: "Megamacro",
  14759. height: math.unit(11, "miles")
  14760. },
  14761. ]
  14762. ))
  14763. characterMakers.push(() => makeCharacter(
  14764. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14765. {
  14766. front: {
  14767. height: math.unit(7 + 4/12, "feet"),
  14768. weight: math.unit(750, "lb"),
  14769. name: "Front",
  14770. image: {
  14771. source: "./media/characters/regena-maxwell/front.svg",
  14772. extra: 984/856,
  14773. bottom: 87/1071
  14774. }
  14775. },
  14776. back: {
  14777. height: math.unit(7 + 4/12, "feet"),
  14778. weight: math.unit(750, "lb"),
  14779. name: "Back",
  14780. image: {
  14781. source: "./media/characters/regena-maxwell/back.svg",
  14782. extra: 981/854,
  14783. bottom: 57/1038
  14784. }
  14785. },
  14786. frontCostume: {
  14787. height: math.unit(7 + 4/12, "feet"),
  14788. weight: math.unit(750, "lb"),
  14789. name: "Front (Costume)",
  14790. image: {
  14791. source: "./media/characters/regena-maxwell/front-costume.svg",
  14792. extra: 984/856,
  14793. bottom: 87/1071
  14794. }
  14795. },
  14796. backcostume: {
  14797. height: math.unit(7 + 4/12, "feet"),
  14798. weight: math.unit(750, "lb"),
  14799. name: "Back (Costume)",
  14800. image: {
  14801. source: "./media/characters/regena-maxwell/back-costume.svg",
  14802. extra: 981/854,
  14803. bottom: 57/1038
  14804. }
  14805. },
  14806. },
  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: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14825. {
  14826. front: {
  14827. height: math.unit(6, "feet"),
  14828. weight: math.unit(150, "lb"),
  14829. name: "Front",
  14830. image: {
  14831. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14832. extra: 860 / 690,
  14833. bottom: 0.03
  14834. }
  14835. },
  14836. },
  14837. [
  14838. {
  14839. name: "Normal",
  14840. height: math.unit(1.7, "meters"),
  14841. default: true
  14842. },
  14843. ]
  14844. ))
  14845. characterMakers.push(() => makeCharacter(
  14846. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14847. {
  14848. front: {
  14849. height: math.unit(6, "feet"),
  14850. weight: math.unit(150, "lb"),
  14851. name: "Front",
  14852. image: {
  14853. source: "./media/characters/quilly/front.svg",
  14854. extra: 890 / 776
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Gigamacro",
  14861. height: math.unit(404090, "miles"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(7 + 8 / 12, "feet"),
  14871. weight: math.unit(350, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/tempest/front.svg",
  14875. extra: 1175 / 1086,
  14876. bottom: 0.02
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(7 + 8 / 12, "feet"),
  14884. default: true
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14890. {
  14891. side: {
  14892. height: math.unit(4 + 5 / 12, "feet"),
  14893. weight: math.unit(80, "lb"),
  14894. name: "Side",
  14895. image: {
  14896. source: "./media/characters/rodger/side.svg",
  14897. extra: 1235 / 1118
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Micro",
  14904. height: math.unit(1, "inch")
  14905. },
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(4 + 5 / 12, "feet"),
  14909. default: true
  14910. },
  14911. {
  14912. name: "Macro",
  14913. height: math.unit(120, "feet")
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14919. {
  14920. front: {
  14921. height: math.unit(6, "feet"),
  14922. weight: math.unit(150, "lb"),
  14923. name: "Front",
  14924. image: {
  14925. source: "./media/characters/danyel/front.svg",
  14926. extra: 1185 / 1123,
  14927. bottom: 0.05
  14928. }
  14929. },
  14930. },
  14931. [
  14932. {
  14933. name: "Shrunken",
  14934. height: math.unit(0.5, "mm")
  14935. },
  14936. {
  14937. name: "Micro",
  14938. height: math.unit(1, "mm"),
  14939. default: true
  14940. },
  14941. {
  14942. name: "Upsized",
  14943. height: math.unit(5 + 5 / 12, "feet")
  14944. },
  14945. ]
  14946. ))
  14947. characterMakers.push(() => makeCharacter(
  14948. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14949. {
  14950. front: {
  14951. height: math.unit(5 + 6 / 12, "feet"),
  14952. weight: math.unit(200, "lb"),
  14953. name: "Front",
  14954. image: {
  14955. source: "./media/characters/vivian-bijoux/front.svg",
  14956. extra: 1217/1209,
  14957. bottom: 76/1293
  14958. }
  14959. },
  14960. back: {
  14961. height: math.unit(5 + 6 / 12, "feet"),
  14962. weight: math.unit(200, "lb"),
  14963. name: "Back",
  14964. image: {
  14965. source: "./media/characters/vivian-bijoux/back.svg",
  14966. extra: 1214/1208,
  14967. bottom: 51/1265
  14968. }
  14969. },
  14970. dressed: {
  14971. height: math.unit(5 + 6 / 12, "feet"),
  14972. weight: math.unit(200, "lb"),
  14973. name: "Dressed",
  14974. image: {
  14975. source: "./media/characters/vivian-bijoux/dressed.svg",
  14976. extra: 1217/1209,
  14977. bottom: 76/1293
  14978. }
  14979. },
  14980. },
  14981. [
  14982. {
  14983. name: "Normal",
  14984. height: math.unit(5 + 6 / 12, "feet"),
  14985. default: true
  14986. },
  14987. {
  14988. name: "Bad Dream",
  14989. height: math.unit(500, "feet")
  14990. },
  14991. {
  14992. name: "Nightmare",
  14993. height: math.unit(500, "miles")
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14999. {
  15000. front: {
  15001. height: math.unit(6 + 1 / 12, "feet"),
  15002. weight: math.unit(260, "lb"),
  15003. name: "Front",
  15004. image: {
  15005. source: "./media/characters/zeta/front.svg",
  15006. extra: 1968 / 1889,
  15007. bottom: 0.06
  15008. }
  15009. },
  15010. back: {
  15011. height: math.unit(6 + 1 / 12, "feet"),
  15012. weight: math.unit(260, "lb"),
  15013. name: "Back",
  15014. image: {
  15015. source: "./media/characters/zeta/back.svg",
  15016. extra: 1944 / 1858,
  15017. bottom: 0.03
  15018. }
  15019. },
  15020. hand: {
  15021. height: math.unit(1.112, "feet"),
  15022. name: "Hand",
  15023. image: {
  15024. source: "./media/characters/zeta/hand.svg"
  15025. }
  15026. },
  15027. foot: {
  15028. height: math.unit(1.48, "feet"),
  15029. name: "Foot",
  15030. image: {
  15031. source: "./media/characters/zeta/foot.svg"
  15032. }
  15033. },
  15034. },
  15035. [
  15036. {
  15037. name: "Micro",
  15038. height: math.unit(6, "inches")
  15039. },
  15040. {
  15041. name: "Normal",
  15042. height: math.unit(6 + 1 / 12, "feet"),
  15043. default: true
  15044. },
  15045. {
  15046. name: "Macro",
  15047. height: math.unit(20, "feet")
  15048. },
  15049. ]
  15050. ))
  15051. characterMakers.push(() => makeCharacter(
  15052. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15053. {
  15054. front: {
  15055. height: math.unit(6, "feet"),
  15056. weight: math.unit(150, "lb"),
  15057. name: "Front",
  15058. image: {
  15059. source: "./media/characters/jamie-larsen/front.svg",
  15060. extra: 962 / 933,
  15061. bottom: 0.02
  15062. }
  15063. },
  15064. back: {
  15065. height: math.unit(6, "feet"),
  15066. weight: math.unit(150, "lb"),
  15067. name: "Back",
  15068. image: {
  15069. source: "./media/characters/jamie-larsen/back.svg",
  15070. extra: 997 / 946
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Macro",
  15077. height: math.unit(28 + 7 / 12, "feet"),
  15078. default: true
  15079. },
  15080. {
  15081. name: "Macro+",
  15082. height: math.unit(180, "feet")
  15083. },
  15084. {
  15085. name: "Megamacro",
  15086. height: math.unit(10, "miles")
  15087. },
  15088. {
  15089. name: "Gigamacro",
  15090. height: math.unit(200000, "miles")
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15096. {
  15097. front: {
  15098. height: math.unit(6, "feet"),
  15099. weight: math.unit(120, "lb"),
  15100. name: "Front",
  15101. image: {
  15102. source: "./media/characters/vance/front.svg",
  15103. extra: 1980 / 1890,
  15104. bottom: 0.09
  15105. }
  15106. },
  15107. back: {
  15108. height: math.unit(6, "feet"),
  15109. weight: math.unit(120, "lb"),
  15110. name: "Back",
  15111. image: {
  15112. source: "./media/characters/vance/back.svg",
  15113. extra: 2081 / 1994,
  15114. bottom: 0.014
  15115. }
  15116. },
  15117. hand: {
  15118. height: math.unit(0.88, "feet"),
  15119. name: "Hand",
  15120. image: {
  15121. source: "./media/characters/vance/hand.svg"
  15122. }
  15123. },
  15124. foot: {
  15125. height: math.unit(0.64, "feet"),
  15126. name: "Foot",
  15127. image: {
  15128. source: "./media/characters/vance/foot.svg"
  15129. }
  15130. },
  15131. },
  15132. [
  15133. {
  15134. name: "Small",
  15135. height: math.unit(90, "feet"),
  15136. default: true
  15137. },
  15138. {
  15139. name: "Macro",
  15140. height: math.unit(100, "meters")
  15141. },
  15142. {
  15143. name: "Megamacro",
  15144. height: math.unit(15, "miles")
  15145. },
  15146. ]
  15147. ))
  15148. characterMakers.push(() => makeCharacter(
  15149. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15150. {
  15151. front: {
  15152. height: math.unit(6, "feet"),
  15153. weight: math.unit(180, "lb"),
  15154. name: "Front",
  15155. image: {
  15156. source: "./media/characters/xochitl/front.svg",
  15157. extra: 2297 / 2261,
  15158. bottom: 0.065
  15159. }
  15160. },
  15161. back: {
  15162. height: math.unit(6, "feet"),
  15163. weight: math.unit(180, "lb"),
  15164. name: "Back",
  15165. image: {
  15166. source: "./media/characters/xochitl/back.svg",
  15167. extra: 2386 / 2354,
  15168. bottom: 0.01
  15169. }
  15170. },
  15171. foot: {
  15172. height: math.unit(6 / 5 * 1.15, "feet"),
  15173. weight: math.unit(150, "lb"),
  15174. name: "Foot",
  15175. image: {
  15176. source: "./media/characters/xochitl/foot.svg"
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Macro",
  15183. height: math.unit(80, "feet")
  15184. },
  15185. {
  15186. name: "Macro+",
  15187. height: math.unit(400, "feet"),
  15188. default: true
  15189. },
  15190. {
  15191. name: "Gigamacro",
  15192. height: math.unit(80000, "miles")
  15193. },
  15194. {
  15195. name: "Gigamacro+",
  15196. height: math.unit(400000, "miles")
  15197. },
  15198. {
  15199. name: "Teramacro",
  15200. height: math.unit(300, "AU")
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15206. {
  15207. front: {
  15208. height: math.unit(6, "feet"),
  15209. weight: math.unit(150, "lb"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/vincent/front.svg",
  15213. extra: 1130 / 1080,
  15214. bottom: 0.055
  15215. }
  15216. },
  15217. beak: {
  15218. height: math.unit(6 * 0.1, "feet"),
  15219. name: "Beak",
  15220. image: {
  15221. source: "./media/characters/vincent/beak.svg"
  15222. }
  15223. },
  15224. hand: {
  15225. height: math.unit(6 * 0.85, "feet"),
  15226. weight: math.unit(150, "lb"),
  15227. name: "Hand",
  15228. image: {
  15229. source: "./media/characters/vincent/hand.svg"
  15230. }
  15231. },
  15232. foot: {
  15233. height: math.unit(6 * 0.19, "feet"),
  15234. weight: math.unit(150, "lb"),
  15235. name: "Foot",
  15236. image: {
  15237. source: "./media/characters/vincent/foot.svg"
  15238. }
  15239. },
  15240. },
  15241. [
  15242. {
  15243. name: "Base",
  15244. height: math.unit(6 + 5 / 12, "feet"),
  15245. default: true
  15246. },
  15247. {
  15248. name: "Macro",
  15249. height: math.unit(300, "feet")
  15250. },
  15251. {
  15252. name: "Megamacro",
  15253. height: math.unit(2, "miles")
  15254. },
  15255. {
  15256. name: "Gigamacro",
  15257. height: math.unit(1000, "miles")
  15258. },
  15259. ]
  15260. ))
  15261. characterMakers.push(() => makeCharacter(
  15262. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15263. {
  15264. front: {
  15265. height: math.unit(2, "meters"),
  15266. weight: math.unit(500, "kg"),
  15267. name: "Front",
  15268. image: {
  15269. source: "./media/characters/coatl/front.svg",
  15270. extra: 3948 / 3500,
  15271. bottom: 0.082
  15272. }
  15273. },
  15274. },
  15275. [
  15276. {
  15277. name: "Normal",
  15278. height: math.unit(4, "meters")
  15279. },
  15280. {
  15281. name: "Macro",
  15282. height: math.unit(100, "meters"),
  15283. default: true
  15284. },
  15285. {
  15286. name: "Macro+",
  15287. height: math.unit(300, "meters")
  15288. },
  15289. {
  15290. name: "Megamacro",
  15291. height: math.unit(3, "gigameters")
  15292. },
  15293. {
  15294. name: "Megamacro+",
  15295. height: math.unit(300, "terameters")
  15296. },
  15297. {
  15298. name: "Megamacro++",
  15299. height: math.unit(3, "lightyears")
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15305. {
  15306. front: {
  15307. height: math.unit(6, "feet"),
  15308. weight: math.unit(50, "kg"),
  15309. name: "front",
  15310. image: {
  15311. source: "./media/characters/shiroryu/front.svg",
  15312. extra: 1990 / 1935
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Mortal Mingling",
  15319. height: math.unit(3, "meters")
  15320. },
  15321. {
  15322. name: "Kaiju-ish",
  15323. height: math.unit(250, "meters")
  15324. },
  15325. {
  15326. name: "Somewhat Godly",
  15327. height: math.unit(400, "km"),
  15328. default: true
  15329. },
  15330. {
  15331. name: "Planetary",
  15332. height: math.unit(300, "megameters")
  15333. },
  15334. {
  15335. name: "Galaxy-dwarfing",
  15336. height: math.unit(450, "kiloparsecs")
  15337. },
  15338. {
  15339. name: "Universe Eater",
  15340. height: math.unit(150, "gigaparsecs")
  15341. },
  15342. {
  15343. name: "Almost Immeasurable",
  15344. height: math.unit(1.3e266, "yottaparsecs")
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15350. {
  15351. front: {
  15352. height: math.unit(6, "feet"),
  15353. weight: math.unit(150, "lb"),
  15354. name: "Front",
  15355. image: {
  15356. source: "./media/characters/umeko/front.svg",
  15357. extra: 1,
  15358. bottom: 0.019
  15359. }
  15360. },
  15361. frontArmored: {
  15362. height: math.unit(6, "feet"),
  15363. weight: math.unit(150, "lb"),
  15364. name: "Front (Armored)",
  15365. image: {
  15366. source: "./media/characters/umeko/front-armored.svg",
  15367. extra: 1,
  15368. bottom: 0.021
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Macro",
  15375. height: math.unit(220, "feet"),
  15376. default: true
  15377. },
  15378. {
  15379. name: "Guardian Dragon",
  15380. height: math.unit(50, "miles")
  15381. },
  15382. {
  15383. name: "Cosmic",
  15384. height: math.unit(800000, "miles")
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15390. {
  15391. front: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(150, "lb"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/cassidy/front.svg",
  15397. extra: 810/808,
  15398. bottom: 41/851
  15399. }
  15400. },
  15401. },
  15402. [
  15403. {
  15404. name: "Canon Height",
  15405. height: math.unit(120, "feet"),
  15406. default: true
  15407. },
  15408. {
  15409. name: "Macro+",
  15410. height: math.unit(400, "feet")
  15411. },
  15412. {
  15413. name: "Macro++",
  15414. height: math.unit(4000, "feet")
  15415. },
  15416. {
  15417. name: "Megamacro",
  15418. height: math.unit(3, "miles")
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(6, "feet"),
  15427. weight: math.unit(150, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/isaac/front.svg",
  15431. extra: 896 / 815,
  15432. bottom: 0.11
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Human Size",
  15439. height: math.unit(8, "feet"),
  15440. default: true
  15441. },
  15442. {
  15443. name: "Macro",
  15444. height: math.unit(400, "feet")
  15445. },
  15446. {
  15447. name: "Megamacro",
  15448. height: math.unit(50, "miles")
  15449. },
  15450. {
  15451. name: "Canon Height",
  15452. height: math.unit(200, "AU")
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(6, "feet"),
  15461. weight: math.unit(72, "kg"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/sleekit/front.svg",
  15465. extra: 4693 / 4487,
  15466. bottom: 0.012
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Minimum Height",
  15473. height: math.unit(10, "meters")
  15474. },
  15475. {
  15476. name: "Smaller",
  15477. height: math.unit(25, "meters")
  15478. },
  15479. {
  15480. name: "Larger",
  15481. height: math.unit(38, "meters"),
  15482. default: true
  15483. },
  15484. {
  15485. name: "Maximum height",
  15486. height: math.unit(100, "meters")
  15487. },
  15488. ]
  15489. ))
  15490. characterMakers.push(() => makeCharacter(
  15491. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15492. {
  15493. front: {
  15494. height: math.unit(6, "feet"),
  15495. weight: math.unit(150, "lb"),
  15496. name: "Front",
  15497. image: {
  15498. source: "./media/characters/nillia/front.svg",
  15499. extra: 2195 / 2037,
  15500. bottom: 0.005
  15501. }
  15502. },
  15503. back: {
  15504. height: math.unit(6, "feet"),
  15505. weight: math.unit(150, "lb"),
  15506. name: "Back",
  15507. image: {
  15508. source: "./media/characters/nillia/back.svg",
  15509. extra: 2195 / 2037,
  15510. bottom: 0.005
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Canon Height",
  15517. height: math.unit(489, "feet"),
  15518. default: true
  15519. }
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15524. {
  15525. front: {
  15526. height: math.unit(6, "feet"),
  15527. weight: math.unit(150, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/mesmyriza/front.svg",
  15531. extra: 2067 / 1784,
  15532. bottom: 0.035
  15533. }
  15534. },
  15535. foot: {
  15536. height: math.unit(6 / (250 / 35), "feet"),
  15537. name: "Foot",
  15538. image: {
  15539. source: "./media/characters/mesmyriza/foot.svg"
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Macro",
  15546. height: math.unit(457, "meters"),
  15547. default: true
  15548. },
  15549. {
  15550. name: "Megamacro",
  15551. height: math.unit(8, "megameters")
  15552. },
  15553. ]
  15554. ))
  15555. characterMakers.push(() => makeCharacter(
  15556. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15557. {
  15558. front: {
  15559. height: math.unit(6, "feet"),
  15560. weight: math.unit(250, "lb"),
  15561. name: "Front",
  15562. image: {
  15563. source: "./media/characters/saudade/front.svg",
  15564. extra: 1172 / 1139,
  15565. bottom: 0.035
  15566. }
  15567. },
  15568. },
  15569. [
  15570. {
  15571. name: "Micro",
  15572. height: math.unit(3, "inches")
  15573. },
  15574. {
  15575. name: "Normal",
  15576. height: math.unit(6, "feet"),
  15577. default: true
  15578. },
  15579. {
  15580. name: "Macro",
  15581. height: math.unit(50, "feet")
  15582. },
  15583. {
  15584. name: "Megamacro",
  15585. height: math.unit(2800, "feet")
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(5 + 4 / 12, "feet"),
  15594. weight: math.unit(100, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/keireer/front.svg",
  15598. extra: 716 / 666,
  15599. bottom: 0.05
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Normal",
  15606. height: math.unit(5 + 4 / 12, "feet"),
  15607. default: true
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15613. {
  15614. front: {
  15615. height: math.unit(5.5, "feet"),
  15616. weight: math.unit(90, "kg"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/mirja/front.svg",
  15620. extra: 1452/1262,
  15621. bottom: 67/1519
  15622. }
  15623. },
  15624. frontDressed: {
  15625. height: math.unit(5.5, "feet"),
  15626. weight: math.unit(90, "lb"),
  15627. name: "Front (Dressed)",
  15628. image: {
  15629. source: "./media/characters/mirja/dressed.svg",
  15630. extra: 1452/1262,
  15631. bottom: 67/1519
  15632. }
  15633. },
  15634. back: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(90, "lb"),
  15637. name: "Back",
  15638. image: {
  15639. source: "./media/characters/mirja/back.svg",
  15640. extra: 1892/1795,
  15641. bottom: 48/1940
  15642. }
  15643. },
  15644. maw: {
  15645. height: math.unit(1.312, "feet"),
  15646. name: "Maw",
  15647. image: {
  15648. source: "./media/characters/mirja/maw.svg"
  15649. }
  15650. },
  15651. paw: {
  15652. height: math.unit(1.15, "feet"),
  15653. name: "Paw",
  15654. image: {
  15655. source: "./media/characters/mirja/paw.svg"
  15656. }
  15657. },
  15658. },
  15659. [
  15660. {
  15661. name: "\"Incognito\"",
  15662. height: math.unit(3, "meters")
  15663. },
  15664. {
  15665. name: "Strolling Size",
  15666. height: math.unit(15, "km")
  15667. },
  15668. {
  15669. name: "Larger Strolling Size",
  15670. height: math.unit(400, "km")
  15671. },
  15672. {
  15673. name: "Preferred Size",
  15674. height: math.unit(5000, "km"),
  15675. default: true
  15676. },
  15677. {
  15678. name: "True Size",
  15679. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15685. {
  15686. front: {
  15687. height: math.unit(15, "feet"),
  15688. weight: math.unit(880, "kg"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/nightraver/front.svg",
  15692. extra: 2444 / 2160,
  15693. bottom: 0.027
  15694. }
  15695. },
  15696. back: {
  15697. height: math.unit(15, "feet"),
  15698. weight: math.unit(880, "kg"),
  15699. name: "Back",
  15700. image: {
  15701. source: "./media/characters/nightraver/back.svg",
  15702. extra: 2309 / 2180,
  15703. bottom: 0.005
  15704. }
  15705. },
  15706. sole: {
  15707. height: math.unit(2.878, "feet"),
  15708. name: "Sole",
  15709. image: {
  15710. source: "./media/characters/nightraver/sole.svg"
  15711. }
  15712. },
  15713. foot: {
  15714. height: math.unit(2.285, "feet"),
  15715. name: "Foot",
  15716. image: {
  15717. source: "./media/characters/nightraver/foot.svg"
  15718. }
  15719. },
  15720. maw: {
  15721. height: math.unit(2.67, "feet"),
  15722. name: "Maw",
  15723. image: {
  15724. source: "./media/characters/nightraver/maw.svg"
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Micro",
  15731. height: math.unit(1, "cm")
  15732. },
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(15, "feet"),
  15736. default: true
  15737. },
  15738. {
  15739. name: "Macro",
  15740. height: math.unit(300, "feet")
  15741. },
  15742. {
  15743. name: "Megamacro",
  15744. height: math.unit(300, "miles")
  15745. },
  15746. {
  15747. name: "Gigamacro",
  15748. height: math.unit(10000, "miles")
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15754. {
  15755. side: {
  15756. height: math.unit(2, "inches"),
  15757. weight: math.unit(5, "grams"),
  15758. name: "Side",
  15759. image: {
  15760. source: "./media/characters/arc/side.svg"
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Micro",
  15767. height: math.unit(2, "inches"),
  15768. default: true
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15774. {
  15775. front: {
  15776. height: math.unit(1.1938, "meters"),
  15777. weight: math.unit(54, "kg"),
  15778. name: "Front",
  15779. image: {
  15780. source: "./media/characters/nebula-shahar/front.svg",
  15781. extra: 1642 / 1436,
  15782. bottom: 0.06
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Megamicro",
  15789. height: math.unit(0.3, "mm")
  15790. },
  15791. {
  15792. name: "Micro",
  15793. height: math.unit(3, "cm")
  15794. },
  15795. {
  15796. name: "Normal",
  15797. height: math.unit(138, "cm"),
  15798. default: true
  15799. },
  15800. {
  15801. name: "Macro",
  15802. height: math.unit(30, "m")
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15808. {
  15809. front: {
  15810. height: math.unit(5.24, "feet"),
  15811. weight: math.unit(150, "lb"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/shayla/front.svg",
  15815. extra: 1512 / 1414,
  15816. bottom: 0.01
  15817. }
  15818. },
  15819. back: {
  15820. height: math.unit(5.24, "feet"),
  15821. weight: math.unit(150, "lb"),
  15822. name: "Back",
  15823. image: {
  15824. source: "./media/characters/shayla/back.svg",
  15825. extra: 1512 / 1414
  15826. }
  15827. },
  15828. hand: {
  15829. height: math.unit(0.7781496062992126, "feet"),
  15830. name: "Hand",
  15831. image: {
  15832. source: "./media/characters/shayla/hand.svg"
  15833. }
  15834. },
  15835. foot: {
  15836. height: math.unit(1.4206036745406823, "feet"),
  15837. name: "Foot",
  15838. image: {
  15839. source: "./media/characters/shayla/foot.svg"
  15840. }
  15841. },
  15842. },
  15843. [
  15844. {
  15845. name: "Micro",
  15846. height: math.unit(0.32, "feet")
  15847. },
  15848. {
  15849. name: "Normal",
  15850. height: math.unit(5.24, "feet"),
  15851. default: true
  15852. },
  15853. {
  15854. name: "Macro",
  15855. height: math.unit(492.12, "feet")
  15856. },
  15857. {
  15858. name: "Megamacro",
  15859. height: math.unit(186.41, "miles")
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(2.2, "m"),
  15868. weight: math.unit(120, "kg"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/pia-jr/front.svg",
  15872. extra: 1000 / 970,
  15873. bottom: 0.035
  15874. }
  15875. },
  15876. hand: {
  15877. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15878. name: "Hand",
  15879. image: {
  15880. source: "./media/characters/pia-jr/hand.svg"
  15881. }
  15882. },
  15883. paw: {
  15884. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15885. name: "Paw",
  15886. image: {
  15887. source: "./media/characters/pia-jr/paw.svg"
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Micro",
  15894. height: math.unit(1.2, "cm")
  15895. },
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(2.2, "m"),
  15899. default: true
  15900. },
  15901. {
  15902. name: "Macro",
  15903. height: math.unit(180, "m")
  15904. },
  15905. {
  15906. name: "Megamacro",
  15907. height: math.unit(420, "km")
  15908. },
  15909. ]
  15910. ))
  15911. characterMakers.push(() => makeCharacter(
  15912. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15913. {
  15914. front: {
  15915. height: math.unit(2, "m"),
  15916. weight: math.unit(115, "kg"),
  15917. name: "Front",
  15918. image: {
  15919. source: "./media/characters/pia-sr/front.svg",
  15920. extra: 760 / 730,
  15921. bottom: 0.015
  15922. }
  15923. },
  15924. back: {
  15925. height: math.unit(2, "m"),
  15926. weight: math.unit(115, "kg"),
  15927. name: "Back",
  15928. image: {
  15929. source: "./media/characters/pia-sr/back.svg",
  15930. extra: 760 / 730,
  15931. bottom: 0.01
  15932. }
  15933. },
  15934. hand: {
  15935. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15936. name: "Hand",
  15937. image: {
  15938. source: "./media/characters/pia-sr/hand.svg"
  15939. }
  15940. },
  15941. foot: {
  15942. height: math.unit(1.83, "feet"),
  15943. name: "Foot",
  15944. image: {
  15945. source: "./media/characters/pia-sr/foot.svg"
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Micro",
  15952. height: math.unit(88, "mm")
  15953. },
  15954. {
  15955. name: "Normal",
  15956. height: math.unit(2, "m"),
  15957. default: true
  15958. },
  15959. {
  15960. name: "Macro",
  15961. height: math.unit(200, "m")
  15962. },
  15963. {
  15964. name: "Megamacro",
  15965. height: math.unit(420, "km")
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(8 + 2 / 12, "feet"),
  15974. weight: math.unit(300, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/kibibyte/front.svg",
  15978. extra: 2221 / 2098,
  15979. bottom: 0.04
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(8 + 2 / 12, "feet"),
  15987. default: true
  15988. },
  15989. {
  15990. name: "Socialable Macro",
  15991. height: math.unit(50, "feet")
  15992. },
  15993. {
  15994. name: "Macro",
  15995. height: math.unit(300, "feet")
  15996. },
  15997. {
  15998. name: "Megamacro",
  15999. height: math.unit(500, "miles")
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(6, "feet"),
  16008. weight: math.unit(150, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/felix/front.svg",
  16012. extra: 762 / 722,
  16013. bottom: 0.02
  16014. }
  16015. },
  16016. frontClothed: {
  16017. height: math.unit(6, "feet"),
  16018. weight: math.unit(150, "lb"),
  16019. name: "Front (Clothed)",
  16020. image: {
  16021. source: "./media/characters/felix/front-clothed.svg",
  16022. extra: 762 / 722,
  16023. bottom: 0.02
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Normal",
  16030. height: math.unit(6 + 8 / 12, "feet"),
  16031. default: true
  16032. },
  16033. {
  16034. name: "Macro",
  16035. height: math.unit(2600, "feet")
  16036. },
  16037. {
  16038. name: "Megamacro",
  16039. height: math.unit(450, "miles")
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16045. {
  16046. front: {
  16047. height: math.unit(6 + 1 / 12, "feet"),
  16048. weight: math.unit(250, "lb"),
  16049. name: "Front",
  16050. image: {
  16051. source: "./media/characters/tobo/front.svg",
  16052. extra: 608 / 586,
  16053. bottom: 0.023
  16054. }
  16055. },
  16056. back: {
  16057. height: math.unit(6 + 1 / 12, "feet"),
  16058. weight: math.unit(250, "lb"),
  16059. name: "Back",
  16060. image: {
  16061. source: "./media/characters/tobo/back.svg",
  16062. extra: 608 / 586
  16063. }
  16064. },
  16065. },
  16066. [
  16067. {
  16068. name: "Nano",
  16069. height: math.unit(2, "nm")
  16070. },
  16071. {
  16072. name: "Megamicro",
  16073. height: math.unit(0.1, "mm")
  16074. },
  16075. {
  16076. name: "Micro",
  16077. height: math.unit(1, "inch"),
  16078. default: true
  16079. },
  16080. {
  16081. name: "Human-sized",
  16082. height: math.unit(6 + 1 / 12, "feet")
  16083. },
  16084. {
  16085. name: "Macro",
  16086. height: math.unit(250, "feet")
  16087. },
  16088. {
  16089. name: "Megamacro",
  16090. height: math.unit(75, "miles")
  16091. },
  16092. {
  16093. name: "Texas-sized",
  16094. height: math.unit(750, "miles")
  16095. },
  16096. {
  16097. name: "Teramacro",
  16098. height: math.unit(50000, "miles")
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(6, "feet"),
  16107. weight: math.unit(269, "lb"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/danny-kapowsky/front.svg",
  16111. extra: 766 / 736,
  16112. bottom: 0.044
  16113. }
  16114. },
  16115. back: {
  16116. height: math.unit(6, "feet"),
  16117. weight: math.unit(269, "lb"),
  16118. name: "Back",
  16119. image: {
  16120. source: "./media/characters/danny-kapowsky/back.svg",
  16121. extra: 797 / 760,
  16122. bottom: 0.025
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Macro",
  16129. height: math.unit(150, "feet"),
  16130. default: true
  16131. },
  16132. {
  16133. name: "Macro+",
  16134. height: math.unit(200, "feet")
  16135. },
  16136. {
  16137. name: "Macro++",
  16138. height: math.unit(300, "feet")
  16139. },
  16140. {
  16141. name: "Macro+++",
  16142. height: math.unit(400, "feet")
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16148. {
  16149. side: {
  16150. height: math.unit(6, "feet"),
  16151. weight: math.unit(170, "lb"),
  16152. name: "Side",
  16153. image: {
  16154. source: "./media/characters/finn/side.svg",
  16155. extra: 1953 / 1807,
  16156. bottom: 0.057
  16157. }
  16158. },
  16159. },
  16160. [
  16161. {
  16162. name: "Megamacro",
  16163. height: math.unit(14445, "feet"),
  16164. default: true
  16165. },
  16166. ]
  16167. ))
  16168. characterMakers.push(() => makeCharacter(
  16169. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16170. {
  16171. front: {
  16172. height: math.unit(5 + 6 / 12, "feet"),
  16173. weight: math.unit(125, "lb"),
  16174. name: "Front",
  16175. image: {
  16176. source: "./media/characters/roy/front.svg",
  16177. extra: 1,
  16178. bottom: 0.11
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Micro",
  16185. height: math.unit(3, "inches"),
  16186. default: true
  16187. },
  16188. {
  16189. name: "Normal",
  16190. height: math.unit(5 + 6 / 12, "feet")
  16191. },
  16192. {
  16193. name: "Lesser Macro",
  16194. height: math.unit(60, "feet")
  16195. },
  16196. {
  16197. name: "Greater Macro",
  16198. height: math.unit(120, "feet")
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(6, "feet"),
  16207. weight: math.unit(100, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/aevsivs/front.svg",
  16211. extra: 1,
  16212. bottom: 0.03
  16213. }
  16214. },
  16215. back: {
  16216. height: math.unit(6, "feet"),
  16217. weight: math.unit(100, "lb"),
  16218. name: "Back",
  16219. image: {
  16220. source: "./media/characters/aevsivs/back.svg"
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Micro",
  16227. height: math.unit(2, "inches"),
  16228. default: true
  16229. },
  16230. {
  16231. name: "Normal",
  16232. height: math.unit(5, "feet")
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(5 + 7 / 12, "feet"),
  16241. weight: math.unit(159, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/hildegard/front.svg",
  16245. extra: 289 / 269,
  16246. bottom: 7.63 / 297.8
  16247. }
  16248. },
  16249. back: {
  16250. height: math.unit(5 + 7 / 12, "feet"),
  16251. weight: math.unit(159, "lb"),
  16252. name: "Back",
  16253. image: {
  16254. source: "./media/characters/hildegard/back.svg",
  16255. extra: 280 / 260,
  16256. bottom: 2.3 / 282
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(5 + 7 / 12, "feet"),
  16264. default: true
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16270. {
  16271. bernard: {
  16272. height: math.unit(2 + 7 / 12, "feet"),
  16273. weight: math.unit(66, "lb"),
  16274. name: "Bernard",
  16275. rename: true,
  16276. image: {
  16277. source: "./media/characters/bernard-wilder/bernard.svg",
  16278. extra: 192 / 128,
  16279. bottom: 0.05
  16280. }
  16281. },
  16282. wilder: {
  16283. height: math.unit(5 + 8 / 12, "feet"),
  16284. weight: math.unit(143, "lb"),
  16285. name: "Wilder",
  16286. rename: true,
  16287. image: {
  16288. source: "./media/characters/bernard-wilder/wilder.svg",
  16289. extra: 361 / 312,
  16290. bottom: 0.02
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(2 + 7 / 12, "feet"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16304. {
  16305. anthro: {
  16306. height: math.unit(6 + 1 / 12, "feet"),
  16307. weight: math.unit(155, "lb"),
  16308. name: "Anthro",
  16309. image: {
  16310. source: "./media/characters/hearth/anthro.svg",
  16311. extra: 1178/1136,
  16312. bottom: 28/1206
  16313. }
  16314. },
  16315. feral: {
  16316. height: math.unit(3.78, "feet"),
  16317. weight: math.unit(35, "kg"),
  16318. name: "Feral",
  16319. image: {
  16320. source: "./media/characters/hearth/feral.svg",
  16321. extra: 153 / 135,
  16322. bottom: 0.03
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(6 + 1 / 12, "feet"),
  16330. default: true
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16336. {
  16337. front: {
  16338. height: math.unit(6, "feet"),
  16339. weight: math.unit(182, "lb"),
  16340. name: "Front",
  16341. image: {
  16342. source: "./media/characters/ingrid/front.svg",
  16343. extra: 294 / 268,
  16344. bottom: 0.027
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Normal",
  16351. height: math.unit(6, "feet"),
  16352. default: true
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16358. {
  16359. eevee: {
  16360. height: math.unit(2 + 10 / 12, "feet"),
  16361. weight: math.unit(86, "lb"),
  16362. name: "Malgam",
  16363. image: {
  16364. source: "./media/characters/malgam/eevee.svg",
  16365. extra: 952/784,
  16366. bottom: 38/990
  16367. }
  16368. },
  16369. sylveon: {
  16370. height: math.unit(4, "feet"),
  16371. weight: math.unit(101, "lb"),
  16372. name: "Future Malgam",
  16373. rename: true,
  16374. image: {
  16375. source: "./media/characters/malgam/sylveon.svg",
  16376. extra: 371 / 325,
  16377. bottom: 0.015
  16378. }
  16379. },
  16380. gigantamax: {
  16381. height: math.unit(50, "feet"),
  16382. name: "Gigantamax Malgam",
  16383. rename: true,
  16384. image: {
  16385. source: "./media/characters/malgam/gigantamax.svg"
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Normal",
  16392. height: math.unit(2 + 10 / 12, "feet"),
  16393. default: true
  16394. },
  16395. ]
  16396. ))
  16397. characterMakers.push(() => makeCharacter(
  16398. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16399. {
  16400. front: {
  16401. height: math.unit(5 + 11 / 12, "feet"),
  16402. weight: math.unit(188, "lb"),
  16403. name: "Front",
  16404. image: {
  16405. source: "./media/characters/fleur/front.svg",
  16406. extra: 309 / 283,
  16407. bottom: 0.007
  16408. }
  16409. },
  16410. },
  16411. [
  16412. {
  16413. name: "Normal",
  16414. height: math.unit(5 + 11 / 12, "feet"),
  16415. default: true
  16416. },
  16417. ]
  16418. ))
  16419. characterMakers.push(() => makeCharacter(
  16420. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16421. {
  16422. front: {
  16423. height: math.unit(5 + 4 / 12, "feet"),
  16424. weight: math.unit(122, "lb"),
  16425. name: "Front",
  16426. image: {
  16427. source: "./media/characters/jude/front.svg",
  16428. extra: 288 / 273,
  16429. bottom: 0.03
  16430. }
  16431. },
  16432. },
  16433. [
  16434. {
  16435. name: "Normal",
  16436. height: math.unit(5 + 4 / 12, "feet"),
  16437. default: true
  16438. },
  16439. ]
  16440. ))
  16441. characterMakers.push(() => makeCharacter(
  16442. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16443. {
  16444. front: {
  16445. height: math.unit(5 + 11 / 12, "feet"),
  16446. weight: math.unit(190, "lb"),
  16447. name: "Front",
  16448. image: {
  16449. source: "./media/characters/seara/front.svg",
  16450. extra: 1,
  16451. bottom: 0.05
  16452. }
  16453. },
  16454. },
  16455. [
  16456. {
  16457. name: "Normal",
  16458. height: math.unit(5 + 11 / 12, "feet"),
  16459. default: true
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16465. {
  16466. front: {
  16467. height: math.unit(16 + 5 / 12, "feet"),
  16468. weight: math.unit(524, "lb"),
  16469. name: "Front",
  16470. image: {
  16471. source: "./media/characters/caspian-lugia/front.svg",
  16472. extra: 1,
  16473. bottom: 0.04
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Normal",
  16480. height: math.unit(16 + 5 / 12, "feet"),
  16481. default: true
  16482. },
  16483. ]
  16484. ))
  16485. characterMakers.push(() => makeCharacter(
  16486. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16487. {
  16488. front: {
  16489. height: math.unit(5 + 7 / 12, "feet"),
  16490. weight: math.unit(170, "lb"),
  16491. name: "Front",
  16492. image: {
  16493. source: "./media/characters/mika/front.svg",
  16494. extra: 1,
  16495. bottom: 0.016
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Normal",
  16502. height: math.unit(5 + 7 / 12, "feet"),
  16503. default: true
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(6 + 2 / 12, "feet"),
  16512. weight: math.unit(268, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/sol/front.svg",
  16516. extra: 247 / 231,
  16517. bottom: 0.05
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Normal",
  16524. height: math.unit(6 + 2 / 12, "feet"),
  16525. default: true
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16531. {
  16532. buizel: {
  16533. height: math.unit(2 + 5 / 12, "feet"),
  16534. weight: math.unit(87, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/umiko/buizel.svg",
  16538. extra: 172 / 157,
  16539. bottom: 0.01
  16540. },
  16541. form: "buizel",
  16542. default: true
  16543. },
  16544. floatzel: {
  16545. height: math.unit(5 + 9 / 12, "feet"),
  16546. weight: math.unit(250, "lb"),
  16547. name: "Front",
  16548. image: {
  16549. source: "./media/characters/umiko/floatzel.svg",
  16550. extra: 1076/1006,
  16551. bottom: 15/1091
  16552. },
  16553. form: "floatzel",
  16554. default: true
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Normal",
  16560. height: math.unit(2 + 5 / 12, "feet"),
  16561. form: "buizel",
  16562. default: true
  16563. },
  16564. {
  16565. name: "Normal",
  16566. height: math.unit(5 + 9 / 12, "feet"),
  16567. form: "floatzel",
  16568. default: true
  16569. },
  16570. ],
  16571. {
  16572. "buizel": {
  16573. name: "Buizel"
  16574. },
  16575. "floatzel": {
  16576. name: "Floatzel",
  16577. default: true
  16578. }
  16579. }
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16583. {
  16584. front: {
  16585. height: math.unit(6 + 2 / 12, "feet"),
  16586. weight: math.unit(146, "lb"),
  16587. name: "Front",
  16588. image: {
  16589. source: "./media/characters/iliac/front.svg",
  16590. extra: 389 / 365,
  16591. bottom: 0.035
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(6 + 2 / 12, "feet"),
  16599. default: true
  16600. },
  16601. ]
  16602. ))
  16603. characterMakers.push(() => makeCharacter(
  16604. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16605. {
  16606. front: {
  16607. height: math.unit(6, "feet"),
  16608. weight: math.unit(170, "lb"),
  16609. name: "Front",
  16610. image: {
  16611. source: "./media/characters/topaz/front.svg",
  16612. extra: 317 / 303,
  16613. bottom: 0.055
  16614. }
  16615. },
  16616. },
  16617. [
  16618. {
  16619. name: "Normal",
  16620. height: math.unit(6, "feet"),
  16621. default: true
  16622. },
  16623. ]
  16624. ))
  16625. characterMakers.push(() => makeCharacter(
  16626. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16627. {
  16628. front: {
  16629. height: math.unit(5 + 11 / 12, "feet"),
  16630. weight: math.unit(144, "lb"),
  16631. name: "Front",
  16632. image: {
  16633. source: "./media/characters/gabriel/front.svg",
  16634. extra: 285 / 262,
  16635. bottom: 0.004
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Normal",
  16642. height: math.unit(5 + 11 / 12, "feet"),
  16643. default: true
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16649. {
  16650. side: {
  16651. height: math.unit(6 + 5 / 12, "feet"),
  16652. weight: math.unit(300, "lb"),
  16653. name: "Side",
  16654. image: {
  16655. source: "./media/characters/tempest-suicune/side.svg",
  16656. extra: 195 / 154,
  16657. bottom: 0.04
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Normal",
  16664. height: math.unit(6 + 5 / 12, "feet"),
  16665. default: true
  16666. },
  16667. ]
  16668. ))
  16669. characterMakers.push(() => makeCharacter(
  16670. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16671. {
  16672. front: {
  16673. height: math.unit(7 + 2 / 12, "feet"),
  16674. weight: math.unit(322, "lb"),
  16675. name: "Front",
  16676. image: {
  16677. source: "./media/characters/vulcan/front.svg",
  16678. extra: 154 / 147,
  16679. bottom: 0.04
  16680. }
  16681. },
  16682. },
  16683. [
  16684. {
  16685. name: "Normal",
  16686. height: math.unit(7 + 2 / 12, "feet"),
  16687. default: true
  16688. },
  16689. ]
  16690. ))
  16691. characterMakers.push(() => makeCharacter(
  16692. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16693. {
  16694. front: {
  16695. height: math.unit(5 + 10 / 12, "feet"),
  16696. weight: math.unit(264, "lb"),
  16697. name: "Front",
  16698. image: {
  16699. source: "./media/characters/gault/front.svg",
  16700. extra: 161 / 140,
  16701. bottom: 0.028
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Normal",
  16708. height: math.unit(5 + 10 / 12, "feet"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(6, "feet"),
  16718. weight: math.unit(150, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/shard/front.svg",
  16722. extra: 273 / 238,
  16723. bottom: 0.02
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(3 + 6 / 12, "feet"),
  16731. default: true
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16737. {
  16738. front: {
  16739. height: math.unit(5 + 11 / 12, "feet"),
  16740. weight: math.unit(146, "lb"),
  16741. name: "Front",
  16742. image: {
  16743. source: "./media/characters/ashe/front.svg",
  16744. extra: 400 / 373,
  16745. bottom: 0.01
  16746. }
  16747. },
  16748. },
  16749. [
  16750. {
  16751. name: "Normal",
  16752. height: math.unit(5 + 11 / 12, "feet"),
  16753. default: true
  16754. },
  16755. ]
  16756. ))
  16757. characterMakers.push(() => makeCharacter(
  16758. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16759. {
  16760. front: {
  16761. height: math.unit(5 + 5 / 12, "feet"),
  16762. weight: math.unit(135, "lb"),
  16763. name: "Front",
  16764. image: {
  16765. source: "./media/characters/beatrix/front.svg",
  16766. extra: 392 / 379,
  16767. bottom: 0.01
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Normal",
  16774. height: math.unit(6, "feet"),
  16775. default: true
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(6 + 2/12, "feet"),
  16784. weight: math.unit(135, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/ignatius/front.svg",
  16788. extra: 1380/1259,
  16789. bottom: 27/1407
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Normal",
  16796. height: math.unit(6 + 2/12, "feet"),
  16797. default: true
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(6 + 2 / 12, "feet"),
  16806. weight: math.unit(138, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/mei-li/front.svg",
  16810. extra: 237 / 229,
  16811. bottom: 0.03
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(6 + 2 / 12, "feet"),
  16819. default: true
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(2 + 4 / 12, "feet"),
  16828. weight: math.unit(62, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/puru/front.svg",
  16832. extra: 206 / 149,
  16833. bottom: 0.06
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Normal",
  16840. height: math.unit(2 + 4 / 12, "feet"),
  16841. default: true
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16847. {
  16848. anthro: {
  16849. height: math.unit(5 + 8/12, "feet"),
  16850. weight: math.unit(200, "lb"),
  16851. energyNeed: math.unit(2000, "kcal"),
  16852. name: "Anthro",
  16853. image: {
  16854. source: "./media/characters/kee/anthro.svg",
  16855. extra: 3251/3184,
  16856. bottom: 250/3501
  16857. }
  16858. },
  16859. taur: {
  16860. height: math.unit(11, "feet"),
  16861. weight: math.unit(500, "lb"),
  16862. energyNeed: math.unit(5000, "kcal"),
  16863. name: "Taur",
  16864. image: {
  16865. source: "./media/characters/kee/taur.svg",
  16866. extra: 1362/1320,
  16867. bottom: 83/1445
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(5 + 8/12, "feet"),
  16875. default: true
  16876. },
  16877. {
  16878. name: "Macro",
  16879. height: math.unit(35, "feet")
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16885. {
  16886. anthro: {
  16887. height: math.unit(7, "feet"),
  16888. weight: math.unit(190, "lb"),
  16889. name: "Anthro",
  16890. image: {
  16891. source: "./media/characters/cobalt-dracha/anthro.svg",
  16892. extra: 231 / 225,
  16893. bottom: 0.04
  16894. }
  16895. },
  16896. feral: {
  16897. height: math.unit(9 + 7 / 12, "feet"),
  16898. weight: math.unit(294, "lb"),
  16899. name: "Feral",
  16900. image: {
  16901. source: "./media/characters/cobalt-dracha/feral.svg",
  16902. extra: 692 / 633,
  16903. bottom: 0.05
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(7, "feet"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16917. {
  16918. fallen: {
  16919. height: math.unit(11 + 8 / 12, "feet"),
  16920. weight: math.unit(485, "lb"),
  16921. name: "Java (Fallen)",
  16922. rename: true,
  16923. image: {
  16924. source: "./media/characters/java/fallen.svg",
  16925. extra: 226 / 208,
  16926. bottom: 0.005
  16927. }
  16928. },
  16929. godkin: {
  16930. height: math.unit(10 + 6 / 12, "feet"),
  16931. weight: math.unit(328, "lb"),
  16932. name: "Java (Godkin)",
  16933. rename: true,
  16934. image: {
  16935. source: "./media/characters/java/godkin.svg",
  16936. extra: 1104/1068,
  16937. bottom: 36/1140
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(11 + 8 / 12, "feet"),
  16945. default: true
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16951. {
  16952. front: {
  16953. height: math.unit(5 + 9 / 12, "feet"),
  16954. weight: math.unit(170, "lb"),
  16955. name: "Front",
  16956. image: {
  16957. source: "./media/characters/purna/front.svg",
  16958. extra: 239 / 229,
  16959. bottom: 0.01
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(5 + 9 / 12, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(5 + 9 / 12, "feet"),
  16976. weight: math.unit(142, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/kuva/front.svg",
  16980. extra: 281 / 271,
  16981. bottom: 0.006
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Normal",
  16988. height: math.unit(5 + 9 / 12, "feet"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16995. {
  16996. anthro: {
  16997. height: math.unit(9 + 2 / 12, "feet"),
  16998. weight: math.unit(270, "lb"),
  16999. name: "Anthro",
  17000. image: {
  17001. source: "./media/characters/embra/anthro.svg",
  17002. extra: 200 / 187,
  17003. bottom: 0.02
  17004. }
  17005. },
  17006. feral: {
  17007. height: math.unit(18 + 8 / 12, "feet"),
  17008. weight: math.unit(576, "lb"),
  17009. name: "Feral",
  17010. image: {
  17011. source: "./media/characters/embra/feral.svg",
  17012. extra: 152 / 137,
  17013. bottom: 0.037
  17014. }
  17015. },
  17016. },
  17017. [
  17018. {
  17019. name: "Normal",
  17020. height: math.unit(9 + 2 / 12, "feet"),
  17021. default: true
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17027. {
  17028. anthro: {
  17029. height: math.unit(10 + 9 / 12, "feet"),
  17030. weight: math.unit(224, "lb"),
  17031. name: "Anthro",
  17032. image: {
  17033. source: "./media/characters/grottos/anthro.svg",
  17034. extra: 350 / 332,
  17035. bottom: 0.045
  17036. }
  17037. },
  17038. feral: {
  17039. height: math.unit(20 + 7 / 12, "feet"),
  17040. weight: math.unit(629, "lb"),
  17041. name: "Feral",
  17042. image: {
  17043. source: "./media/characters/grottos/feral.svg",
  17044. extra: 207 / 190,
  17045. bottom: 0.05
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Normal",
  17052. height: math.unit(10 + 9 / 12, "feet"),
  17053. default: true
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17059. {
  17060. anthro: {
  17061. height: math.unit(9 + 6 / 12, "feet"),
  17062. weight: math.unit(298, "lb"),
  17063. name: "Anthro",
  17064. image: {
  17065. source: "./media/characters/frifna/anthro.svg",
  17066. extra: 282 / 269,
  17067. bottom: 0.015
  17068. }
  17069. },
  17070. feral: {
  17071. height: math.unit(16 + 2 / 12, "feet"),
  17072. weight: math.unit(624, "lb"),
  17073. name: "Feral",
  17074. image: {
  17075. source: "./media/characters/frifna/feral.svg"
  17076. }
  17077. },
  17078. },
  17079. [
  17080. {
  17081. name: "Normal",
  17082. height: math.unit(9 + 6 / 12, "feet"),
  17083. default: true
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17089. {
  17090. front: {
  17091. height: math.unit(6 + 2 / 12, "feet"),
  17092. weight: math.unit(168, "lb"),
  17093. name: "Front",
  17094. image: {
  17095. source: "./media/characters/elise/front.svg",
  17096. extra: 276 / 271
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(6 + 2 / 12, "feet"),
  17104. default: true
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17110. {
  17111. front: {
  17112. height: math.unit(5 + 10 / 12, "feet"),
  17113. weight: math.unit(210, "lb"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/glade/front.svg",
  17117. extra: 258 / 247,
  17118. bottom: 0.008
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Normal",
  17125. height: math.unit(5 + 10 / 12, "feet"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(5 + 10 / 12, "feet"),
  17135. weight: math.unit(129, "lb"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/rina/front.svg",
  17139. extra: 266 / 255,
  17140. bottom: 0.005
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(5 + 10 / 12, "feet"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(6 + 1 / 12, "feet"),
  17157. weight: math.unit(192, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/veronica/front.svg",
  17161. extra: 319 / 309,
  17162. bottom: 0.005
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(6 + 1 / 12, "feet"),
  17170. default: true
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17176. {
  17177. front: {
  17178. height: math.unit(9 + 3 / 12, "feet"),
  17179. weight: math.unit(1100, "lb"),
  17180. name: "Front",
  17181. image: {
  17182. source: "./media/characters/braxton/front.svg",
  17183. extra: 1057 / 984,
  17184. bottom: 0.05
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(9 + 3 / 12, "feet")
  17192. },
  17193. {
  17194. name: "Giant",
  17195. height: math.unit(300, "feet"),
  17196. default: true
  17197. },
  17198. {
  17199. name: "Macro",
  17200. height: math.unit(700, "feet")
  17201. },
  17202. {
  17203. name: "Megamacro",
  17204. height: math.unit(6000, "feet")
  17205. },
  17206. ]
  17207. ))
  17208. characterMakers.push(() => makeCharacter(
  17209. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17210. {
  17211. front: {
  17212. height: math.unit(6 + 7 / 12, "feet"),
  17213. weight: math.unit(150, "lb"),
  17214. name: "Front",
  17215. image: {
  17216. source: "./media/characters/blue-feyonics/front.svg",
  17217. extra: 1403 / 1306,
  17218. bottom: 0.047
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(6 + 7 / 12, "feet"),
  17226. default: true
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17232. {
  17233. front: {
  17234. height: math.unit(1.8, "meters"),
  17235. weight: math.unit(60, "kg"),
  17236. name: "Front",
  17237. image: {
  17238. source: "./media/characters/maxwell/front.svg",
  17239. extra: 2060 / 1873
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Micro",
  17246. height: math.unit(1, "mm")
  17247. },
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(1.8, "meter"),
  17251. default: true
  17252. },
  17253. {
  17254. name: "Macro",
  17255. height: math.unit(30, "meters")
  17256. },
  17257. {
  17258. name: "Megamacro",
  17259. height: math.unit(10, "km")
  17260. },
  17261. ]
  17262. ))
  17263. characterMakers.push(() => makeCharacter(
  17264. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17265. {
  17266. front: {
  17267. height: math.unit(6, "feet"),
  17268. weight: math.unit(150, "lb"),
  17269. name: "Front",
  17270. image: {
  17271. source: "./media/characters/jack/front.svg",
  17272. extra: 1754 / 1640,
  17273. bottom: 0.01
  17274. }
  17275. },
  17276. },
  17277. [
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(80000, "feet"),
  17281. default: true
  17282. },
  17283. {
  17284. name: "Max size",
  17285. height: math.unit(10, "lightyears")
  17286. },
  17287. ]
  17288. ))
  17289. characterMakers.push(() => makeCharacter(
  17290. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17291. {
  17292. urban: {
  17293. height: math.unit(5, "feet"),
  17294. weight: math.unit(240, "lb"),
  17295. name: "Urban",
  17296. image: {
  17297. source: "./media/characters/cafat/urban.svg",
  17298. extra: 1223/1126,
  17299. bottom: 205/1428
  17300. }
  17301. },
  17302. summer: {
  17303. height: math.unit(5, "feet"),
  17304. weight: math.unit(240, "lb"),
  17305. name: "Summer",
  17306. image: {
  17307. source: "./media/characters/cafat/summer.svg",
  17308. extra: 1223/1126,
  17309. bottom: 205/1428
  17310. }
  17311. },
  17312. winter: {
  17313. height: math.unit(5, "feet"),
  17314. weight: math.unit(240, "lb"),
  17315. name: "Winter",
  17316. image: {
  17317. source: "./media/characters/cafat/winter.svg",
  17318. extra: 1223/1126,
  17319. bottom: 205/1428
  17320. }
  17321. },
  17322. lingerie: {
  17323. height: math.unit(5, "feet"),
  17324. weight: math.unit(240, "lb"),
  17325. name: "Lingerie",
  17326. image: {
  17327. source: "./media/characters/cafat/lingerie.svg",
  17328. extra: 1223/1126,
  17329. bottom: 205/1428
  17330. }
  17331. },
  17332. upright: {
  17333. height: math.unit(6.3, "feet"),
  17334. weight: math.unit(240, "lb"),
  17335. name: "Upright",
  17336. image: {
  17337. source: "./media/characters/cafat/upright.svg",
  17338. bottom: 0.01
  17339. }
  17340. },
  17341. uprightFull: {
  17342. height: math.unit(6.3, "feet"),
  17343. weight: math.unit(240, "lb"),
  17344. name: "Upright (Full)",
  17345. image: {
  17346. source: "./media/characters/cafat/upright-full.svg",
  17347. bottom: 0.01
  17348. }
  17349. },
  17350. },
  17351. [
  17352. {
  17353. name: "Small",
  17354. height: math.unit(5, "feet"),
  17355. default: true
  17356. },
  17357. {
  17358. name: "Large",
  17359. height: math.unit(13, "feet")
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17365. {
  17366. front: {
  17367. height: math.unit(6, "feet"),
  17368. weight: math.unit(150, "lb"),
  17369. name: "Front",
  17370. image: {
  17371. source: "./media/characters/verin-raharra/front.svg",
  17372. extra: 5019 / 4835,
  17373. bottom: 0.023
  17374. }
  17375. },
  17376. },
  17377. [
  17378. {
  17379. name: "Normal",
  17380. height: math.unit(7 + 5 / 12, "feet"),
  17381. default: true
  17382. },
  17383. {
  17384. name: "Upsized",
  17385. height: math.unit(20, "feet")
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17391. {
  17392. front: {
  17393. height: math.unit(7, "feet"),
  17394. weight: math.unit(230, "lb"),
  17395. name: "Front",
  17396. image: {
  17397. source: "./media/characters/nakata/front.svg",
  17398. extra: 1.005,
  17399. bottom: 0.01
  17400. }
  17401. },
  17402. },
  17403. [
  17404. {
  17405. name: "Normal",
  17406. height: math.unit(7, "feet"),
  17407. default: true
  17408. },
  17409. {
  17410. name: "Big",
  17411. height: math.unit(14, "feet")
  17412. },
  17413. {
  17414. name: "Macro",
  17415. height: math.unit(400, "feet")
  17416. },
  17417. ]
  17418. ))
  17419. characterMakers.push(() => makeCharacter(
  17420. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17421. {
  17422. front: {
  17423. height: math.unit(4.91, "feet"),
  17424. weight: math.unit(100, "lb"),
  17425. name: "Front",
  17426. image: {
  17427. source: "./media/characters/lily/front.svg",
  17428. extra: 1585 / 1415,
  17429. bottom: 0.02
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(4.91, "feet"),
  17437. default: true
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17443. {
  17444. laying: {
  17445. height: math.unit(4 + 4 / 12, "feet"),
  17446. weight: math.unit(600, "lb"),
  17447. name: "Laying",
  17448. image: {
  17449. source: "./media/characters/sheila/laying.svg",
  17450. extra: 1333 / 1265,
  17451. bottom: 0.16
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(4 + 4 / 12, "feet"),
  17459. default: true
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17465. {
  17466. front: {
  17467. height: math.unit(6, "feet"),
  17468. weight: math.unit(190, "lb"),
  17469. name: "Front",
  17470. image: {
  17471. source: "./media/characters/sax/front.svg",
  17472. extra: 1187 / 973,
  17473. bottom: 0.042
  17474. }
  17475. },
  17476. },
  17477. [
  17478. {
  17479. name: "Micro",
  17480. height: math.unit(4, "inches"),
  17481. default: true
  17482. },
  17483. ]
  17484. ))
  17485. characterMakers.push(() => makeCharacter(
  17486. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17487. {
  17488. front: {
  17489. height: math.unit(6, "feet"),
  17490. weight: math.unit(150, "lb"),
  17491. name: "Front",
  17492. image: {
  17493. source: "./media/characters/pandora/front.svg",
  17494. extra: 2720 / 2556,
  17495. bottom: 0.015
  17496. }
  17497. },
  17498. back: {
  17499. height: math.unit(6, "feet"),
  17500. weight: math.unit(150, "lb"),
  17501. name: "Back",
  17502. image: {
  17503. source: "./media/characters/pandora/back.svg",
  17504. extra: 2720 / 2556,
  17505. bottom: 0.01
  17506. }
  17507. },
  17508. beans: {
  17509. height: math.unit(6 / 8, "feet"),
  17510. name: "Beans",
  17511. image: {
  17512. source: "./media/characters/pandora/beans.svg"
  17513. }
  17514. },
  17515. collar: {
  17516. height: math.unit(0.31, "feet"),
  17517. name: "Collar",
  17518. image: {
  17519. source: "./media/characters/pandora/collar.svg"
  17520. }
  17521. },
  17522. skirt: {
  17523. height: math.unit(6, "feet"),
  17524. weight: math.unit(150, "lb"),
  17525. name: "Skirt",
  17526. image: {
  17527. source: "./media/characters/pandora/skirt.svg",
  17528. extra: 1622 / 1525,
  17529. bottom: 0.015
  17530. }
  17531. },
  17532. hoodie: {
  17533. height: math.unit(6, "feet"),
  17534. weight: math.unit(150, "lb"),
  17535. name: "Hoodie",
  17536. image: {
  17537. source: "./media/characters/pandora/hoodie.svg",
  17538. extra: 1622 / 1525,
  17539. bottom: 0.015
  17540. }
  17541. },
  17542. casual: {
  17543. height: math.unit(6, "feet"),
  17544. weight: math.unit(150, "lb"),
  17545. name: "Casual",
  17546. image: {
  17547. source: "./media/characters/pandora/casual.svg",
  17548. extra: 1622 / 1525,
  17549. bottom: 0.015
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(6, "feet")
  17557. },
  17558. {
  17559. name: "Big Steppy",
  17560. height: math.unit(1, "km"),
  17561. default: true
  17562. },
  17563. {
  17564. name: "Galactic Steppy",
  17565. height: math.unit(2, "gigameters")
  17566. },
  17567. ]
  17568. ))
  17569. characterMakers.push(() => makeCharacter(
  17570. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17571. {
  17572. side: {
  17573. height: math.unit(10, "feet"),
  17574. weight: math.unit(800, "kg"),
  17575. name: "Side",
  17576. image: {
  17577. source: "./media/characters/venio-darcony/side.svg",
  17578. extra: 1373 / 1003,
  17579. bottom: 0.037
  17580. }
  17581. },
  17582. front: {
  17583. height: math.unit(19, "feet"),
  17584. weight: math.unit(800, "kg"),
  17585. name: "Front",
  17586. image: {
  17587. source: "./media/characters/venio-darcony/front.svg"
  17588. }
  17589. },
  17590. back: {
  17591. height: math.unit(19, "feet"),
  17592. weight: math.unit(800, "kg"),
  17593. name: "Back",
  17594. image: {
  17595. source: "./media/characters/venio-darcony/back.svg"
  17596. }
  17597. },
  17598. sideNsfw: {
  17599. height: math.unit(10, "feet"),
  17600. weight: math.unit(800, "kg"),
  17601. name: "Side (NSFW)",
  17602. image: {
  17603. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17604. extra: 1373 / 1003,
  17605. bottom: 0.037
  17606. }
  17607. },
  17608. frontNsfw: {
  17609. height: math.unit(19, "feet"),
  17610. weight: math.unit(800, "kg"),
  17611. name: "Front (NSFW)",
  17612. image: {
  17613. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17614. }
  17615. },
  17616. backNsfw: {
  17617. height: math.unit(19, "feet"),
  17618. weight: math.unit(800, "kg"),
  17619. name: "Back (NSFW)",
  17620. image: {
  17621. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17622. }
  17623. },
  17624. sideArmored: {
  17625. height: math.unit(10, "feet"),
  17626. weight: math.unit(800, "kg"),
  17627. name: "Side (Armored)",
  17628. image: {
  17629. source: "./media/characters/venio-darcony/side-armored.svg",
  17630. extra: 1373 / 1003,
  17631. bottom: 0.037
  17632. }
  17633. },
  17634. frontArmored: {
  17635. height: math.unit(19, "feet"),
  17636. weight: math.unit(900, "kg"),
  17637. name: "Front (Armored)",
  17638. image: {
  17639. source: "./media/characters/venio-darcony/front-armored.svg"
  17640. }
  17641. },
  17642. backArmored: {
  17643. height: math.unit(19, "feet"),
  17644. weight: math.unit(900, "kg"),
  17645. name: "Back (Armored)",
  17646. image: {
  17647. source: "./media/characters/venio-darcony/back-armored.svg"
  17648. }
  17649. },
  17650. sword: {
  17651. height: math.unit(10, "feet"),
  17652. weight: math.unit(50, "lb"),
  17653. name: "Sword",
  17654. image: {
  17655. source: "./media/characters/venio-darcony/sword.svg"
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Normal",
  17662. height: math.unit(10, "feet")
  17663. },
  17664. {
  17665. name: "Macro",
  17666. height: math.unit(130, "feet"),
  17667. default: true
  17668. },
  17669. {
  17670. name: "Macro+",
  17671. height: math.unit(240, "feet")
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17677. {
  17678. front: {
  17679. height: math.unit(6, "feet"),
  17680. weight: math.unit(150, "lb"),
  17681. name: "Front",
  17682. image: {
  17683. source: "./media/characters/veski/front.svg",
  17684. extra: 1299 / 1225,
  17685. bottom: 0.04
  17686. }
  17687. },
  17688. back: {
  17689. height: math.unit(6, "feet"),
  17690. weight: math.unit(150, "lb"),
  17691. name: "Back",
  17692. image: {
  17693. source: "./media/characters/veski/back.svg",
  17694. extra: 1299 / 1225,
  17695. bottom: 0.008
  17696. }
  17697. },
  17698. maw: {
  17699. height: math.unit(1.5 * 1.21, "feet"),
  17700. name: "Maw",
  17701. image: {
  17702. source: "./media/characters/veski/maw.svg"
  17703. }
  17704. },
  17705. },
  17706. [
  17707. {
  17708. name: "Macro",
  17709. height: math.unit(2, "km"),
  17710. default: true
  17711. },
  17712. ]
  17713. ))
  17714. characterMakers.push(() => makeCharacter(
  17715. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17716. {
  17717. front: {
  17718. height: math.unit(5 + 7 / 12, "feet"),
  17719. name: "Front",
  17720. image: {
  17721. source: "./media/characters/isabelle/front.svg",
  17722. extra: 2130 / 1976,
  17723. bottom: 0.05
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Supermicro",
  17730. height: math.unit(10, "micrometers")
  17731. },
  17732. {
  17733. name: "Micro",
  17734. height: math.unit(1, "inch")
  17735. },
  17736. {
  17737. name: "Tiny",
  17738. height: math.unit(5, "inches")
  17739. },
  17740. {
  17741. name: "Standard",
  17742. height: math.unit(5 + 7 / 12, "inches")
  17743. },
  17744. {
  17745. name: "Macro",
  17746. height: math.unit(80, "meters"),
  17747. default: true
  17748. },
  17749. {
  17750. name: "Megamacro",
  17751. height: math.unit(250, "meters")
  17752. },
  17753. {
  17754. name: "Gigamacro",
  17755. height: math.unit(5, "km")
  17756. },
  17757. {
  17758. name: "Cosmic",
  17759. height: math.unit(2.5e6, "miles")
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17765. {
  17766. front: {
  17767. height: math.unit(6, "feet"),
  17768. weight: math.unit(150, "lb"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/hanzo/front.svg",
  17772. extra: 374 / 344,
  17773. bottom: 0.02
  17774. }
  17775. },
  17776. },
  17777. [
  17778. {
  17779. name: "Normal",
  17780. height: math.unit(8, "feet"),
  17781. default: true
  17782. },
  17783. ]
  17784. ))
  17785. characterMakers.push(() => makeCharacter(
  17786. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17787. {
  17788. front: {
  17789. height: math.unit(7, "feet"),
  17790. weight: math.unit(130, "lb"),
  17791. name: "Front",
  17792. image: {
  17793. source: "./media/characters/anna/front.svg",
  17794. extra: 169 / 145,
  17795. bottom: 0.06
  17796. }
  17797. },
  17798. full: {
  17799. height: math.unit(4.96, "feet"),
  17800. weight: math.unit(220, "lb"),
  17801. name: "Full",
  17802. image: {
  17803. source: "./media/characters/anna/full.svg",
  17804. extra: 138 / 114,
  17805. bottom: 0.15
  17806. }
  17807. },
  17808. tongue: {
  17809. height: math.unit(2.53, "feet"),
  17810. name: "Tongue",
  17811. image: {
  17812. source: "./media/characters/anna/tongue.svg"
  17813. }
  17814. },
  17815. },
  17816. [
  17817. {
  17818. name: "Normal",
  17819. height: math.unit(7, "feet"),
  17820. default: true
  17821. },
  17822. ]
  17823. ))
  17824. characterMakers.push(() => makeCharacter(
  17825. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17826. {
  17827. front: {
  17828. height: math.unit(7, "feet"),
  17829. weight: math.unit(150, "lb"),
  17830. name: "Front",
  17831. image: {
  17832. source: "./media/characters/ian-corvid/front.svg",
  17833. extra: 150 / 142,
  17834. bottom: 0.02
  17835. }
  17836. },
  17837. back: {
  17838. height: math.unit(7, "feet"),
  17839. weight: math.unit(150, "lb"),
  17840. name: "Back",
  17841. image: {
  17842. source: "./media/characters/ian-corvid/back.svg",
  17843. extra: 150 / 143,
  17844. bottom: 0.01
  17845. }
  17846. },
  17847. stomping: {
  17848. height: math.unit(7, "feet"),
  17849. weight: math.unit(150, "lb"),
  17850. name: "Stomping",
  17851. image: {
  17852. source: "./media/characters/ian-corvid/stomping.svg",
  17853. extra: 76 / 72
  17854. }
  17855. },
  17856. sitting: {
  17857. height: math.unit(7 / 1.8, "feet"),
  17858. weight: math.unit(150, "lb"),
  17859. name: "Sitting",
  17860. image: {
  17861. source: "./media/characters/ian-corvid/sitting.svg",
  17862. extra: 1400 / 1269,
  17863. bottom: 0.15
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Tiny Microw",
  17870. height: math.unit(1, "inch")
  17871. },
  17872. {
  17873. name: "Microw",
  17874. height: math.unit(6, "inches")
  17875. },
  17876. {
  17877. name: "Crow",
  17878. height: math.unit(7 + 1 / 12, "feet"),
  17879. default: true
  17880. },
  17881. {
  17882. name: "Macrow",
  17883. height: math.unit(176, "feet")
  17884. },
  17885. ]
  17886. ))
  17887. characterMakers.push(() => makeCharacter(
  17888. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17889. {
  17890. front: {
  17891. height: math.unit(5 + 7 / 12, "feet"),
  17892. weight: math.unit(147, "lb"),
  17893. name: "Front",
  17894. image: {
  17895. source: "./media/characters/natalie-kellon/front.svg",
  17896. extra: 1214 / 1141,
  17897. bottom: 0.02
  17898. }
  17899. },
  17900. },
  17901. [
  17902. {
  17903. name: "Micro",
  17904. height: math.unit(1 / 16, "inch")
  17905. },
  17906. {
  17907. name: "Tiny",
  17908. height: math.unit(4, "inches")
  17909. },
  17910. {
  17911. name: "Normal",
  17912. height: math.unit(5 + 7 / 12, "feet"),
  17913. default: true
  17914. },
  17915. {
  17916. name: "Amazon",
  17917. height: math.unit(12, "feet")
  17918. },
  17919. {
  17920. name: "Giantess",
  17921. height: math.unit(160, "meters")
  17922. },
  17923. {
  17924. name: "Titaness",
  17925. height: math.unit(800, "meters")
  17926. },
  17927. ]
  17928. ))
  17929. characterMakers.push(() => makeCharacter(
  17930. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17931. {
  17932. front: {
  17933. height: math.unit(6, "feet"),
  17934. weight: math.unit(150, "lb"),
  17935. name: "Front",
  17936. image: {
  17937. source: "./media/characters/alluria/front.svg",
  17938. extra: 806 / 738,
  17939. bottom: 0.01
  17940. }
  17941. },
  17942. side: {
  17943. height: math.unit(6, "feet"),
  17944. weight: math.unit(150, "lb"),
  17945. name: "Side",
  17946. image: {
  17947. source: "./media/characters/alluria/side.svg",
  17948. extra: 800 / 750,
  17949. }
  17950. },
  17951. back: {
  17952. height: math.unit(6, "feet"),
  17953. weight: math.unit(150, "lb"),
  17954. name: "Back",
  17955. image: {
  17956. source: "./media/characters/alluria/back.svg",
  17957. extra: 806 / 738,
  17958. }
  17959. },
  17960. frontMaid: {
  17961. height: math.unit(6, "feet"),
  17962. weight: math.unit(150, "lb"),
  17963. name: "Front (Maid)",
  17964. image: {
  17965. source: "./media/characters/alluria/front-maid.svg",
  17966. extra: 806 / 738,
  17967. bottom: 0.01
  17968. }
  17969. },
  17970. sideMaid: {
  17971. height: math.unit(6, "feet"),
  17972. weight: math.unit(150, "lb"),
  17973. name: "Side (Maid)",
  17974. image: {
  17975. source: "./media/characters/alluria/side-maid.svg",
  17976. extra: 800 / 750,
  17977. bottom: 0.005
  17978. }
  17979. },
  17980. backMaid: {
  17981. height: math.unit(6, "feet"),
  17982. weight: math.unit(150, "lb"),
  17983. name: "Back (Maid)",
  17984. image: {
  17985. source: "./media/characters/alluria/back-maid.svg",
  17986. extra: 806 / 738,
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Micro",
  17993. height: math.unit(6, "inches"),
  17994. default: true
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18000. {
  18001. front: {
  18002. height: math.unit(6, "feet"),
  18003. weight: math.unit(150, "lb"),
  18004. name: "Front",
  18005. image: {
  18006. source: "./media/characters/kyle/front.svg",
  18007. extra: 1069 / 962,
  18008. bottom: 77.228 / 1727.45
  18009. }
  18010. },
  18011. },
  18012. [
  18013. {
  18014. name: "Macro",
  18015. height: math.unit(150, "feet"),
  18016. default: true
  18017. },
  18018. ]
  18019. ))
  18020. characterMakers.push(() => makeCharacter(
  18021. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18022. {
  18023. front: {
  18024. height: math.unit(6, "feet"),
  18025. weight: math.unit(300, "lb"),
  18026. name: "Front",
  18027. image: {
  18028. source: "./media/characters/duncan/front.svg",
  18029. extra: 1650 / 1482,
  18030. bottom: 0.05
  18031. }
  18032. },
  18033. },
  18034. [
  18035. {
  18036. name: "Macro",
  18037. height: math.unit(100, "feet"),
  18038. default: true
  18039. },
  18040. ]
  18041. ))
  18042. characterMakers.push(() => makeCharacter(
  18043. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18044. {
  18045. front: {
  18046. height: math.unit(5 + 4 / 12, "feet"),
  18047. weight: math.unit(220, "lb"),
  18048. name: "Front",
  18049. image: {
  18050. source: "./media/characters/memory/front.svg",
  18051. extra: 3641 / 3545,
  18052. bottom: 0.03
  18053. }
  18054. },
  18055. back: {
  18056. height: math.unit(5 + 4 / 12, "feet"),
  18057. weight: math.unit(220, "lb"),
  18058. name: "Back",
  18059. image: {
  18060. source: "./media/characters/memory/back.svg",
  18061. extra: 3641 / 3545,
  18062. bottom: 0.025
  18063. }
  18064. },
  18065. frontSkirt: {
  18066. height: math.unit(5 + 4 / 12, "feet"),
  18067. weight: math.unit(220, "lb"),
  18068. name: "Front (Skirt)",
  18069. image: {
  18070. source: "./media/characters/memory/front-skirt.svg",
  18071. extra: 3641 / 3545,
  18072. bottom: 0.03
  18073. }
  18074. },
  18075. frontDress: {
  18076. height: math.unit(5 + 4 / 12, "feet"),
  18077. weight: math.unit(220, "lb"),
  18078. name: "Front (Dress)",
  18079. image: {
  18080. source: "./media/characters/memory/front-dress.svg",
  18081. extra: 3641 / 3545,
  18082. bottom: 0.03
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Micro",
  18089. height: math.unit(6, "inches"),
  18090. default: true
  18091. },
  18092. {
  18093. name: "Normal",
  18094. height: math.unit(5 + 4 / 12, "feet")
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(4 + 11 / 12, "feet"),
  18103. weight: math.unit(100, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/luno/front.svg",
  18107. extra: 1535 / 1487,
  18108. bottom: 0.03
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Micro",
  18115. height: math.unit(3, "inches")
  18116. },
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(4 + 11 / 12, "feet"),
  18120. default: true
  18121. },
  18122. {
  18123. name: "Macro",
  18124. height: math.unit(300, "feet")
  18125. },
  18126. {
  18127. name: "Megamacro",
  18128. height: math.unit(700, "miles")
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18134. {
  18135. front: {
  18136. height: math.unit(6 + 2 / 12, "feet"),
  18137. weight: math.unit(170, "lb"),
  18138. name: "Front",
  18139. image: {
  18140. source: "./media/characters/jamesy/front.svg",
  18141. extra: 440 / 382,
  18142. bottom: 0.005
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Micro",
  18149. height: math.unit(3, "inches")
  18150. },
  18151. {
  18152. name: "Normal",
  18153. height: math.unit(6 + 2 / 12, "feet"),
  18154. default: true
  18155. },
  18156. {
  18157. name: "Macro",
  18158. height: math.unit(300, "feet")
  18159. },
  18160. {
  18161. name: "Megamacro",
  18162. height: math.unit(700, "miles")
  18163. },
  18164. ]
  18165. ))
  18166. characterMakers.push(() => makeCharacter(
  18167. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18168. {
  18169. front: {
  18170. height: math.unit(6, "feet"),
  18171. weight: math.unit(160, "lb"),
  18172. name: "Front",
  18173. image: {
  18174. source: "./media/characters/mark/front.svg",
  18175. extra: 3300 / 3100,
  18176. bottom: 136.42 / 3440.47
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(120, "meters")
  18184. },
  18185. {
  18186. name: "Bigger Macro",
  18187. height: math.unit(350, "meters")
  18188. },
  18189. {
  18190. name: "Megamacro",
  18191. height: math.unit(8, "km"),
  18192. default: true
  18193. },
  18194. {
  18195. name: "Continental",
  18196. height: math.unit(4550, "km")
  18197. },
  18198. {
  18199. name: "Planetary",
  18200. height: math.unit(65000, "km")
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18206. {
  18207. front: {
  18208. height: math.unit(6, "feet"),
  18209. weight: math.unit(400, "lb"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/mac/front.svg",
  18213. extra: 1048 / 987.7,
  18214. bottom: 60 / 1107.6,
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Macro",
  18221. height: math.unit(500, "feet"),
  18222. default: true
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(5 + 2 / 12, "feet"),
  18231. weight: math.unit(190, "lb"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/bari/front.svg",
  18235. extra: 3156 / 2880,
  18236. bottom: 0.03
  18237. }
  18238. },
  18239. back: {
  18240. height: math.unit(5 + 2 / 12, "feet"),
  18241. weight: math.unit(190, "lb"),
  18242. name: "Back",
  18243. image: {
  18244. source: "./media/characters/bari/back.svg",
  18245. extra: 3260 / 2834,
  18246. bottom: 0.025
  18247. }
  18248. },
  18249. frontPlush: {
  18250. height: math.unit(5 + 2 / 12, "feet"),
  18251. weight: math.unit(190, "lb"),
  18252. name: "Front (Plush)",
  18253. image: {
  18254. source: "./media/characters/bari/front-plush.svg",
  18255. extra: 1112 / 1061,
  18256. bottom: 0.002
  18257. }
  18258. },
  18259. },
  18260. [
  18261. {
  18262. name: "Micro",
  18263. height: math.unit(3, "inches")
  18264. },
  18265. {
  18266. name: "Normal",
  18267. height: math.unit(5 + 2 / 12, "feet"),
  18268. default: true
  18269. },
  18270. {
  18271. name: "Macro",
  18272. height: math.unit(20, "feet")
  18273. },
  18274. ]
  18275. ))
  18276. characterMakers.push(() => makeCharacter(
  18277. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18278. {
  18279. front: {
  18280. height: math.unit(6 + 1 / 12, "feet"),
  18281. weight: math.unit(275, "lb"),
  18282. name: "Front",
  18283. image: {
  18284. source: "./media/characters/hunter-misha-raven/front.svg"
  18285. }
  18286. },
  18287. },
  18288. [
  18289. {
  18290. name: "Mortal",
  18291. height: math.unit(6 + 1 / 12, "feet")
  18292. },
  18293. {
  18294. name: "Divine",
  18295. height: math.unit(1.12134e34, "parsecs"),
  18296. default: true
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(6 + 3 / 12, "feet"),
  18305. weight: math.unit(220, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/max-calore/front.svg",
  18309. extra: 1700 / 1648,
  18310. bottom: 0.01
  18311. }
  18312. },
  18313. back: {
  18314. height: math.unit(6 + 3 / 12, "feet"),
  18315. weight: math.unit(220, "lb"),
  18316. name: "Back",
  18317. image: {
  18318. source: "./media/characters/max-calore/back.svg",
  18319. extra: 1700 / 1648,
  18320. bottom: 0.01
  18321. }
  18322. },
  18323. },
  18324. [
  18325. {
  18326. name: "Normal",
  18327. height: math.unit(6 + 3 / 12, "feet"),
  18328. default: true
  18329. },
  18330. ]
  18331. ))
  18332. characterMakers.push(() => makeCharacter(
  18333. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18334. {
  18335. side: {
  18336. height: math.unit(2 + 8 / 12, "feet"),
  18337. weight: math.unit(99, "lb"),
  18338. name: "Side",
  18339. image: {
  18340. source: "./media/characters/aspen/side.svg",
  18341. extra: 152 / 138,
  18342. bottom: 0.032
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Normal",
  18349. height: math.unit(2 + 8 / 12, "feet"),
  18350. default: true
  18351. },
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18356. {
  18357. side: {
  18358. height: math.unit(3 + 2 / 12, "feet"),
  18359. weight: math.unit(224, "lb"),
  18360. name: "Side",
  18361. image: {
  18362. source: "./media/characters/sheila-feral-wolf/side.svg",
  18363. extra: 179 / 166,
  18364. bottom: 0.03
  18365. }
  18366. },
  18367. },
  18368. [
  18369. {
  18370. name: "Normal",
  18371. height: math.unit(3 + 2 / 12, "feet"),
  18372. default: true
  18373. },
  18374. ]
  18375. ))
  18376. characterMakers.push(() => makeCharacter(
  18377. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18378. {
  18379. side: {
  18380. height: math.unit(1 + 9 / 12, "feet"),
  18381. weight: math.unit(38, "lb"),
  18382. name: "Side",
  18383. image: {
  18384. source: "./media/characters/michelle/side.svg",
  18385. extra: 147 / 136.7,
  18386. bottom: 0.03
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(1 + 9 / 12, "feet"),
  18394. default: true
  18395. },
  18396. ]
  18397. ))
  18398. characterMakers.push(() => makeCharacter(
  18399. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18400. {
  18401. front: {
  18402. height: math.unit(1.54, "feet"),
  18403. weight: math.unit(50, "lb"),
  18404. name: "Front",
  18405. image: {
  18406. source: "./media/characters/nino/front.svg"
  18407. }
  18408. },
  18409. },
  18410. [
  18411. {
  18412. name: "Normal",
  18413. height: math.unit(1.54, "feet"),
  18414. default: true
  18415. },
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18420. {
  18421. front: {
  18422. height: math.unit(1.49, "feet"),
  18423. weight: math.unit(45, "lb"),
  18424. name: "Front",
  18425. image: {
  18426. source: "./media/characters/viola/front.svg"
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(1.49, "feet"),
  18434. default: true
  18435. },
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18440. {
  18441. front: {
  18442. height: math.unit(6 + 5 / 12, "feet"),
  18443. weight: math.unit(580, "lb"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/atlas/front.svg",
  18447. extra: 298.5 / 290,
  18448. bottom: 0.015
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(6 + 5 / 12, "feet"),
  18456. default: true
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18462. {
  18463. side: {
  18464. height: math.unit(15.6, "inches"),
  18465. weight: math.unit(10, "lb"),
  18466. name: "Side",
  18467. image: {
  18468. source: "./media/characters/davy/side.svg",
  18469. extra: 200 / 170,
  18470. bottom: 0.01
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Normal",
  18477. height: math.unit(15.6, "inches"),
  18478. default: true
  18479. },
  18480. ]
  18481. ))
  18482. characterMakers.push(() => makeCharacter(
  18483. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18484. {
  18485. side: {
  18486. height: math.unit(4 + 8 / 12, "feet"),
  18487. weight: math.unit(166, "lb"),
  18488. name: "Side",
  18489. image: {
  18490. source: "./media/characters/fiona/side.svg",
  18491. extra: 232 / 220,
  18492. bottom: 0.03
  18493. }
  18494. },
  18495. },
  18496. [
  18497. {
  18498. name: "Normal",
  18499. height: math.unit(4 + 8 / 12, "feet"),
  18500. default: true
  18501. },
  18502. ]
  18503. ))
  18504. characterMakers.push(() => makeCharacter(
  18505. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18506. {
  18507. front: {
  18508. height: math.unit(26, "inches"),
  18509. weight: math.unit(35, "lb"),
  18510. name: "Front",
  18511. image: {
  18512. source: "./media/characters/lyla/front.svg",
  18513. bottom: 0.1
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Normal",
  18520. height: math.unit(3, "feet"),
  18521. default: true
  18522. },
  18523. ]
  18524. ))
  18525. characterMakers.push(() => makeCharacter(
  18526. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18527. {
  18528. side: {
  18529. height: math.unit(1.8, "feet"),
  18530. weight: math.unit(44, "lb"),
  18531. name: "Side",
  18532. image: {
  18533. source: "./media/characters/perseus/side.svg",
  18534. bottom: 0.21
  18535. }
  18536. },
  18537. },
  18538. [
  18539. {
  18540. name: "Normal",
  18541. height: math.unit(1.8, "feet"),
  18542. default: true
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18548. {
  18549. side: {
  18550. height: math.unit(4 + 2 / 12, "feet"),
  18551. weight: math.unit(20, "lb"),
  18552. name: "Side",
  18553. image: {
  18554. source: "./media/characters/remus/side.svg"
  18555. }
  18556. },
  18557. },
  18558. [
  18559. {
  18560. name: "Normal",
  18561. height: math.unit(4 + 2 / 12, "feet"),
  18562. default: true
  18563. },
  18564. ]
  18565. ))
  18566. characterMakers.push(() => makeCharacter(
  18567. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18568. {
  18569. front: {
  18570. height: math.unit(4 + 11 / 12, "feet"),
  18571. weight: math.unit(114, "lb"),
  18572. name: "Front",
  18573. image: {
  18574. source: "./media/characters/raf/front.svg",
  18575. extra: 1504/1339,
  18576. bottom: 26/1530
  18577. }
  18578. },
  18579. side: {
  18580. height: math.unit(4 + 11 / 12, "feet"),
  18581. weight: math.unit(114, "lb"),
  18582. name: "Side",
  18583. image: {
  18584. source: "./media/characters/raf/side.svg",
  18585. extra: 1466/1316,
  18586. bottom: 29/1495
  18587. }
  18588. },
  18589. paw: {
  18590. height: math.unit(1.45, "feet"),
  18591. name: "Paw",
  18592. image: {
  18593. source: "./media/characters/raf/paw.svg"
  18594. },
  18595. extraAttributes: {
  18596. "toeSize": {
  18597. name: "Toe Size",
  18598. power: 2,
  18599. type: "area",
  18600. base: math.unit(0.004, "m^2")
  18601. },
  18602. "padSize": {
  18603. name: "Pad Size",
  18604. power: 2,
  18605. type: "area",
  18606. base: math.unit(0.04, "m^2")
  18607. },
  18608. "footSize": {
  18609. name: "Foot Size",
  18610. power: 2,
  18611. type: "area",
  18612. base: math.unit(0.08, "m^2")
  18613. },
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Micro",
  18620. height: math.unit(2, "inches")
  18621. },
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(4 + 11 / 12, "feet"),
  18625. default: true
  18626. },
  18627. {
  18628. name: "Macro",
  18629. height: math.unit(70, "feet")
  18630. },
  18631. ]
  18632. ))
  18633. characterMakers.push(() => makeCharacter(
  18634. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18635. {
  18636. front: {
  18637. height: math.unit(1.5, "meters"),
  18638. weight: math.unit(68, "kg"),
  18639. name: "Front",
  18640. image: {
  18641. source: "./media/characters/liam-einarr/front.svg",
  18642. extra: 2822 / 2666
  18643. }
  18644. },
  18645. back: {
  18646. height: math.unit(1.5, "meters"),
  18647. weight: math.unit(68, "kg"),
  18648. name: "Back",
  18649. image: {
  18650. source: "./media/characters/liam-einarr/back.svg",
  18651. extra: 2822 / 2666,
  18652. bottom: 0.015
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Normal",
  18659. height: math.unit(1.5, "meters"),
  18660. default: true
  18661. },
  18662. {
  18663. name: "Macro",
  18664. height: math.unit(150, "meters")
  18665. },
  18666. {
  18667. name: "Megamacro",
  18668. height: math.unit(35, "km")
  18669. },
  18670. ]
  18671. ))
  18672. characterMakers.push(() => makeCharacter(
  18673. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18674. {
  18675. front: {
  18676. height: math.unit(6, "feet"),
  18677. weight: math.unit(75, "kg"),
  18678. name: "Front",
  18679. image: {
  18680. source: "./media/characters/linda/front.svg",
  18681. extra: 930 / 874,
  18682. bottom: 0.004
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(6, "feet"),
  18690. default: true
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18696. {
  18697. front: {
  18698. height: math.unit(6 + 8 / 12, "feet"),
  18699. weight: math.unit(220, "lb"),
  18700. name: "Front",
  18701. image: {
  18702. source: "./media/characters/caylex/front.svg",
  18703. extra: 821 / 772,
  18704. bottom: 0.07
  18705. }
  18706. },
  18707. back: {
  18708. height: math.unit(6 + 8 / 12, "feet"),
  18709. weight: math.unit(220, "lb"),
  18710. name: "Back",
  18711. image: {
  18712. source: "./media/characters/caylex/back.svg",
  18713. extra: 821 / 772,
  18714. bottom: 0.022
  18715. }
  18716. },
  18717. hand: {
  18718. height: math.unit(1.25, "feet"),
  18719. name: "Hand",
  18720. image: {
  18721. source: "./media/characters/caylex/hand.svg"
  18722. }
  18723. },
  18724. foot: {
  18725. height: math.unit(1.6, "feet"),
  18726. name: "Foot",
  18727. image: {
  18728. source: "./media/characters/caylex/foot.svg"
  18729. }
  18730. },
  18731. armored: {
  18732. height: math.unit(6 + 8 / 12, "feet"),
  18733. weight: math.unit(250, "lb"),
  18734. name: "Armored",
  18735. image: {
  18736. source: "./media/characters/caylex/armored.svg",
  18737. extra: 1420 / 1310,
  18738. bottom: 0.045
  18739. }
  18740. },
  18741. },
  18742. [
  18743. {
  18744. name: "Normal",
  18745. height: math.unit(6 + 8 / 12, "feet"),
  18746. default: true
  18747. },
  18748. {
  18749. name: "Normal+",
  18750. height: math.unit(12, "feet")
  18751. },
  18752. ]
  18753. ))
  18754. characterMakers.push(() => makeCharacter(
  18755. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18756. {
  18757. front: {
  18758. height: math.unit(7 + 6 / 12, "feet"),
  18759. weight: math.unit(288, "lb"),
  18760. name: "Front",
  18761. image: {
  18762. source: "./media/characters/alana/front.svg",
  18763. extra: 679 / 653,
  18764. bottom: 22.5 / 701
  18765. }
  18766. },
  18767. },
  18768. [
  18769. {
  18770. name: "Normal",
  18771. height: math.unit(7 + 6 / 12, "feet")
  18772. },
  18773. {
  18774. name: "Large",
  18775. height: math.unit(50, "feet")
  18776. },
  18777. {
  18778. name: "Macro",
  18779. height: math.unit(100, "feet"),
  18780. default: true
  18781. },
  18782. {
  18783. name: "Macro+",
  18784. height: math.unit(200, "feet")
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18790. {
  18791. front: {
  18792. height: math.unit(6 + 1 / 12, "feet"),
  18793. weight: math.unit(210, "lb"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/hasani/front.svg",
  18797. extra: 244 / 232,
  18798. bottom: 0.01
  18799. }
  18800. },
  18801. back: {
  18802. height: math.unit(6 + 1 / 12, "feet"),
  18803. weight: math.unit(210, "lb"),
  18804. name: "Back",
  18805. image: {
  18806. source: "./media/characters/hasani/back.svg",
  18807. extra: 244 / 232,
  18808. bottom: 0.01
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Normal",
  18815. height: math.unit(6 + 1 / 12, "feet")
  18816. },
  18817. {
  18818. name: "Macro",
  18819. height: math.unit(175, "feet"),
  18820. default: true
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18826. {
  18827. front: {
  18828. height: math.unit(1.82, "meters"),
  18829. weight: math.unit(140, "lb"),
  18830. name: "Front",
  18831. image: {
  18832. source: "./media/characters/nita/front.svg",
  18833. extra: 2473 / 2363,
  18834. bottom: 0.01
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Normal",
  18841. height: math.unit(1.82, "m")
  18842. },
  18843. {
  18844. name: "Macro",
  18845. height: math.unit(300, "m")
  18846. },
  18847. {
  18848. name: "Mistake Canon",
  18849. height: math.unit(0.5, "miles"),
  18850. default: true
  18851. },
  18852. {
  18853. name: "Big Mistake",
  18854. height: math.unit(13, "miles")
  18855. },
  18856. {
  18857. name: "Playing God",
  18858. height: math.unit(2450, "miles")
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18864. {
  18865. front: {
  18866. height: math.unit(4, "feet"),
  18867. weight: math.unit(120, "lb"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/shiriko/front.svg",
  18871. extra: 970/934,
  18872. bottom: 5/975
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Normal",
  18879. height: math.unit(4, "feet"),
  18880. default: true
  18881. },
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18886. {
  18887. front: {
  18888. height: math.unit(6, "feet"),
  18889. name: "front",
  18890. image: {
  18891. source: "./media/characters/deja/front.svg",
  18892. extra: 926 / 840,
  18893. bottom: 0.07
  18894. }
  18895. },
  18896. },
  18897. [
  18898. {
  18899. name: "Planck Length",
  18900. height: math.unit(1.6e-35, "meters")
  18901. },
  18902. {
  18903. name: "Normal",
  18904. height: math.unit(30.48, "meters"),
  18905. default: true
  18906. },
  18907. {
  18908. name: "Universal",
  18909. height: math.unit(8.8e26, "meters")
  18910. },
  18911. ]
  18912. ))
  18913. characterMakers.push(() => makeCharacter(
  18914. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18915. {
  18916. side: {
  18917. height: math.unit(8, "feet"),
  18918. weight: math.unit(6300, "lb"),
  18919. name: "Side",
  18920. image: {
  18921. source: "./media/characters/anima/side.svg",
  18922. bottom: 0.035
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(8, "feet"),
  18930. default: true
  18931. },
  18932. ]
  18933. ))
  18934. characterMakers.push(() => makeCharacter(
  18935. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18936. {
  18937. front: {
  18938. height: math.unit(8, "feet"),
  18939. weight: math.unit(350, "lb"),
  18940. name: "Front",
  18941. image: {
  18942. source: "./media/characters/bianca/front.svg",
  18943. extra: 234 / 225,
  18944. bottom: 0.03
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(8, "feet"),
  18952. default: true
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(11 + 5/12, "feet"),
  18961. weight: math.unit(1200, "lb"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/adinia/front.svg",
  18965. extra: 1767/1641,
  18966. bottom: 44/1811
  18967. },
  18968. extraAttributes: {
  18969. "energyIntake": {
  18970. name: "Energy Intake",
  18971. power: 3,
  18972. type: "energy",
  18973. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18974. },
  18975. }
  18976. },
  18977. back: {
  18978. height: math.unit(11 + 5/12, "feet"),
  18979. weight: math.unit(1200, "lb"),
  18980. name: "Back",
  18981. image: {
  18982. source: "./media/characters/adinia/back.svg",
  18983. extra: 1834/1684,
  18984. bottom: 14/1848
  18985. },
  18986. extraAttributes: {
  18987. "energyIntake": {
  18988. name: "Energy Intake",
  18989. power: 3,
  18990. type: "energy",
  18991. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18992. },
  18993. }
  18994. },
  18995. maw: {
  18996. height: math.unit(3.79, "feet"),
  18997. name: "Maw",
  18998. image: {
  18999. source: "./media/characters/adinia/maw.svg"
  19000. }
  19001. },
  19002. rump: {
  19003. height: math.unit(4.6, "feet"),
  19004. name: "Rump",
  19005. image: {
  19006. source: "./media/characters/adinia/rump.svg"
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(11 + 5 / 12, "feet"),
  19014. default: true
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(3, "meters"),
  19023. weight: math.unit(200, "kg"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/lykasa/front.svg",
  19027. extra: 1076 / 976,
  19028. bottom: 0.06
  19029. }
  19030. },
  19031. },
  19032. [
  19033. {
  19034. name: "Normal",
  19035. height: math.unit(3, "meters")
  19036. },
  19037. {
  19038. name: "Kaiju",
  19039. height: math.unit(120, "meters"),
  19040. default: true
  19041. },
  19042. {
  19043. name: "Mega Kaiju",
  19044. height: math.unit(240, "km")
  19045. },
  19046. {
  19047. name: "Giga Kaiju",
  19048. height: math.unit(400, "megameters")
  19049. },
  19050. {
  19051. name: "Tera Kaiju",
  19052. height: math.unit(800, "gigameters")
  19053. },
  19054. {
  19055. name: "Kaiju Dragon Goddess",
  19056. height: math.unit(26, "zettaparsecs")
  19057. },
  19058. ]
  19059. ))
  19060. characterMakers.push(() => makeCharacter(
  19061. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19062. {
  19063. side: {
  19064. height: math.unit(283 / 124 * 6, "feet"),
  19065. weight: math.unit(35000, "lb"),
  19066. name: "Side",
  19067. image: {
  19068. source: "./media/characters/malfaren/side.svg",
  19069. extra: 1310/529,
  19070. bottom: 24/1334
  19071. }
  19072. },
  19073. front: {
  19074. height: math.unit(22.36, "feet"),
  19075. weight: math.unit(35000, "lb"),
  19076. name: "Front",
  19077. image: {
  19078. source: "./media/characters/malfaren/front.svg",
  19079. extra: 1237/1115,
  19080. bottom: 32/1269
  19081. }
  19082. },
  19083. maw: {
  19084. height: math.unit(6.9, "feet"),
  19085. name: "Maw",
  19086. image: {
  19087. source: "./media/characters/malfaren/maw.svg"
  19088. }
  19089. },
  19090. dick: {
  19091. height: math.unit(6.19, "feet"),
  19092. name: "Dick",
  19093. image: {
  19094. source: "./media/characters/malfaren/dick.svg"
  19095. }
  19096. },
  19097. eye: {
  19098. height: math.unit(0.69, "feet"),
  19099. name: "Eye",
  19100. image: {
  19101. source: "./media/characters/malfaren/eye.svg"
  19102. }
  19103. },
  19104. },
  19105. [
  19106. {
  19107. name: "Big",
  19108. height: math.unit(283 / 162 * 6, "feet"),
  19109. },
  19110. {
  19111. name: "Bigger",
  19112. height: math.unit(283 / 124 * 6, "feet")
  19113. },
  19114. {
  19115. name: "Massive",
  19116. height: math.unit(283 / 92 * 6, "feet"),
  19117. default: true
  19118. },
  19119. {
  19120. name: "👀💦",
  19121. height: math.unit(283 / 73 * 6, "feet"),
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19127. {
  19128. front: {
  19129. height: math.unit(1.7, "m"),
  19130. weight: math.unit(70, "kg"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/kernel/front.svg",
  19134. extra: 222 / 210,
  19135. bottom: 0.007
  19136. }
  19137. },
  19138. },
  19139. [
  19140. {
  19141. name: "Nano",
  19142. height: math.unit(17, "micrometers")
  19143. },
  19144. {
  19145. name: "Micro",
  19146. height: math.unit(1.7, "mm")
  19147. },
  19148. {
  19149. name: "Small",
  19150. height: math.unit(1.7, "cm")
  19151. },
  19152. {
  19153. name: "Normal",
  19154. height: math.unit(1.7, "m"),
  19155. default: true
  19156. },
  19157. ]
  19158. ))
  19159. characterMakers.push(() => makeCharacter(
  19160. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19161. {
  19162. front: {
  19163. height: math.unit(1.75, "meters"),
  19164. weight: math.unit(65, "kg"),
  19165. name: "Front",
  19166. image: {
  19167. source: "./media/characters/jayne-folest/front.svg",
  19168. extra: 2115 / 2007,
  19169. bottom: 0.02
  19170. }
  19171. },
  19172. back: {
  19173. height: math.unit(1.75, "meters"),
  19174. weight: math.unit(65, "kg"),
  19175. name: "Back",
  19176. image: {
  19177. source: "./media/characters/jayne-folest/back.svg",
  19178. extra: 2115 / 2007,
  19179. bottom: 0.005
  19180. }
  19181. },
  19182. frontClothed: {
  19183. height: math.unit(1.75, "meters"),
  19184. weight: math.unit(65, "kg"),
  19185. name: "Front (Clothed)",
  19186. image: {
  19187. source: "./media/characters/jayne-folest/front-clothed.svg",
  19188. extra: 2115 / 2007,
  19189. bottom: 0.035
  19190. }
  19191. },
  19192. hand: {
  19193. height: math.unit(1 / 1.260, "feet"),
  19194. name: "Hand",
  19195. image: {
  19196. source: "./media/characters/jayne-folest/hand.svg"
  19197. }
  19198. },
  19199. foot: {
  19200. height: math.unit(1 / 0.918, "feet"),
  19201. name: "Foot",
  19202. image: {
  19203. source: "./media/characters/jayne-folest/foot.svg"
  19204. }
  19205. },
  19206. },
  19207. [
  19208. {
  19209. name: "Micro",
  19210. height: math.unit(4, "cm")
  19211. },
  19212. {
  19213. name: "Normal",
  19214. height: math.unit(1.75, "meters")
  19215. },
  19216. {
  19217. name: "Macro",
  19218. height: math.unit(47.5, "meters"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19225. {
  19226. front: {
  19227. height: math.unit(180, "cm"),
  19228. weight: math.unit(70, "kg"),
  19229. name: "Front",
  19230. image: {
  19231. source: "./media/characters/algier/front.svg",
  19232. extra: 596 / 572,
  19233. bottom: 0.04
  19234. }
  19235. },
  19236. back: {
  19237. height: math.unit(180, "cm"),
  19238. weight: math.unit(70, "kg"),
  19239. name: "Back",
  19240. image: {
  19241. source: "./media/characters/algier/back.svg",
  19242. extra: 596 / 572,
  19243. bottom: 0.025
  19244. }
  19245. },
  19246. frontdressed: {
  19247. height: math.unit(180, "cm"),
  19248. weight: math.unit(150, "kg"),
  19249. name: "Front-dressed",
  19250. image: {
  19251. source: "./media/characters/algier/front-dressed.svg",
  19252. extra: 596 / 572,
  19253. bottom: 0.038
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Micro",
  19260. height: math.unit(5, "cm")
  19261. },
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(180, "cm"),
  19265. default: true
  19266. },
  19267. {
  19268. name: "Macro",
  19269. height: math.unit(64, "m")
  19270. },
  19271. ]
  19272. ))
  19273. characterMakers.push(() => makeCharacter(
  19274. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19275. {
  19276. upright: {
  19277. height: math.unit(7, "feet"),
  19278. weight: math.unit(300, "lb"),
  19279. name: "Upright",
  19280. image: {
  19281. source: "./media/characters/pretzel/upright.svg",
  19282. extra: 534 / 522,
  19283. bottom: 0.065
  19284. }
  19285. },
  19286. sprawling: {
  19287. height: math.unit(3.75, "feet"),
  19288. weight: math.unit(300, "lb"),
  19289. name: "Sprawling",
  19290. image: {
  19291. source: "./media/characters/pretzel/sprawling.svg",
  19292. extra: 314 / 281,
  19293. bottom: 0.1
  19294. }
  19295. },
  19296. tongue: {
  19297. height: math.unit(2, "feet"),
  19298. name: "Tongue",
  19299. image: {
  19300. source: "./media/characters/pretzel/tongue.svg"
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(7, "feet"),
  19308. default: true
  19309. },
  19310. {
  19311. name: "Oversized",
  19312. height: math.unit(15, "feet")
  19313. },
  19314. {
  19315. name: "Huge",
  19316. height: math.unit(30, "feet")
  19317. },
  19318. {
  19319. name: "Macro",
  19320. height: math.unit(250, "feet")
  19321. },
  19322. ]
  19323. ))
  19324. characterMakers.push(() => makeCharacter(
  19325. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19326. {
  19327. sideFront: {
  19328. height: math.unit(5 + 2 / 12, "feet"),
  19329. weight: math.unit(120, "lb"),
  19330. name: "Front Side",
  19331. image: {
  19332. source: "./media/characters/roxi/side-front.svg",
  19333. extra: 2924 / 2717,
  19334. bottom: 0.08
  19335. }
  19336. },
  19337. sideBack: {
  19338. height: math.unit(5 + 2 / 12, "feet"),
  19339. weight: math.unit(120, "lb"),
  19340. name: "Back Side",
  19341. image: {
  19342. source: "./media/characters/roxi/side-back.svg",
  19343. extra: 2904 / 2693,
  19344. bottom: 0.06
  19345. }
  19346. },
  19347. front: {
  19348. height: math.unit(5 + 2 / 12, "feet"),
  19349. weight: math.unit(120, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/roxi/front.svg",
  19353. extra: 2028 / 1907,
  19354. bottom: 0.01
  19355. }
  19356. },
  19357. frontAlt: {
  19358. height: math.unit(5 + 2 / 12, "feet"),
  19359. weight: math.unit(120, "lb"),
  19360. name: "Front (Alt)",
  19361. image: {
  19362. source: "./media/characters/roxi/front-alt.svg",
  19363. extra: 1828 / 1798,
  19364. bottom: 0.01
  19365. }
  19366. },
  19367. sitting: {
  19368. height: math.unit(2.8, "feet"),
  19369. weight: math.unit(120, "lb"),
  19370. name: "Sitting",
  19371. image: {
  19372. source: "./media/characters/roxi/sitting.svg",
  19373. extra: 2660 / 2462,
  19374. bottom: 0.1
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Normal",
  19381. height: math.unit(5 + 2 / 12, "feet"),
  19382. default: true
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19388. {
  19389. side: {
  19390. height: math.unit(55, "feet"),
  19391. weight: math.unit(153, "tons"),
  19392. name: "Side",
  19393. image: {
  19394. source: "./media/characters/shadow/side.svg",
  19395. extra: 701 / 628,
  19396. bottom: 0.02
  19397. }
  19398. },
  19399. flying: {
  19400. height: math.unit(145, "feet"),
  19401. weight: math.unit(153, "tons"),
  19402. name: "Flying",
  19403. image: {
  19404. source: "./media/characters/shadow/flying.svg"
  19405. }
  19406. },
  19407. },
  19408. [
  19409. {
  19410. name: "Normal",
  19411. height: math.unit(55, "feet"),
  19412. default: true
  19413. },
  19414. ]
  19415. ))
  19416. characterMakers.push(() => makeCharacter(
  19417. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19418. {
  19419. front: {
  19420. height: math.unit(6, "feet"),
  19421. weight: math.unit(200, "lb"),
  19422. name: "Front",
  19423. image: {
  19424. source: "./media/characters/marcie/front.svg",
  19425. extra: 960 / 876,
  19426. bottom: 58 / 1017.87
  19427. }
  19428. },
  19429. },
  19430. [
  19431. {
  19432. name: "Macro",
  19433. height: math.unit(1, "mile"),
  19434. default: true
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19440. {
  19441. front: {
  19442. height: math.unit(7, "feet"),
  19443. weight: math.unit(200, "lb"),
  19444. name: "Front",
  19445. image: {
  19446. source: "./media/characters/kachina/front.svg",
  19447. extra: 1290.68 / 1119,
  19448. bottom: 36.5 / 1327.18
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Normal",
  19455. height: math.unit(7, "feet"),
  19456. default: true
  19457. },
  19458. ]
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19462. {
  19463. looking: {
  19464. height: math.unit(2, "meters"),
  19465. weight: math.unit(300, "kg"),
  19466. name: "Looking",
  19467. image: {
  19468. source: "./media/characters/kash/looking.svg",
  19469. extra: 474 / 344,
  19470. bottom: 0.03
  19471. }
  19472. },
  19473. side: {
  19474. height: math.unit(2, "meters"),
  19475. weight: math.unit(300, "kg"),
  19476. name: "Side",
  19477. image: {
  19478. source: "./media/characters/kash/side.svg",
  19479. extra: 302 / 251,
  19480. bottom: 0.03
  19481. }
  19482. },
  19483. front: {
  19484. height: math.unit(2, "meters"),
  19485. weight: math.unit(300, "kg"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/kash/front.svg",
  19489. extra: 495 / 360,
  19490. bottom: 0.015
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(2, "meters"),
  19498. default: true
  19499. },
  19500. {
  19501. name: "Big",
  19502. height: math.unit(3, "meters")
  19503. },
  19504. {
  19505. name: "Large",
  19506. height: math.unit(5, "meters")
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19512. {
  19513. feeding: {
  19514. height: math.unit(6.7, "feet"),
  19515. weight: math.unit(350, "lb"),
  19516. name: "Feeding",
  19517. image: {
  19518. source: "./media/characters/lalim/feeding.svg",
  19519. }
  19520. },
  19521. },
  19522. [
  19523. {
  19524. name: "Normal",
  19525. height: math.unit(6.7, "feet"),
  19526. default: true
  19527. },
  19528. ]
  19529. ))
  19530. characterMakers.push(() => makeCharacter(
  19531. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19532. {
  19533. front: {
  19534. height: math.unit(9.5, "feet"),
  19535. weight: math.unit(600, "lb"),
  19536. name: "Front",
  19537. image: {
  19538. source: "./media/characters/de'vout/front.svg",
  19539. extra: 1443 / 1328,
  19540. bottom: 0.025
  19541. }
  19542. },
  19543. back: {
  19544. height: math.unit(9.5, "feet"),
  19545. weight: math.unit(600, "lb"),
  19546. name: "Back",
  19547. image: {
  19548. source: "./media/characters/de'vout/back.svg",
  19549. extra: 1443 / 1328
  19550. }
  19551. },
  19552. frontDressed: {
  19553. height: math.unit(9.5, "feet"),
  19554. weight: math.unit(600, "lb"),
  19555. name: "Front (Dressed",
  19556. image: {
  19557. source: "./media/characters/de'vout/front-dressed.svg",
  19558. extra: 1443 / 1328,
  19559. bottom: 0.025
  19560. }
  19561. },
  19562. backDressed: {
  19563. height: math.unit(9.5, "feet"),
  19564. weight: math.unit(600, "lb"),
  19565. name: "Back (Dressed",
  19566. image: {
  19567. source: "./media/characters/de'vout/back-dressed.svg",
  19568. extra: 1443 / 1328
  19569. }
  19570. },
  19571. },
  19572. [
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(9.5, "feet"),
  19576. default: true
  19577. },
  19578. ]
  19579. ))
  19580. characterMakers.push(() => makeCharacter(
  19581. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19582. {
  19583. front: {
  19584. height: math.unit(8, "feet"),
  19585. weight: math.unit(225, "lb"),
  19586. name: "Front",
  19587. image: {
  19588. source: "./media/characters/talana/front.svg",
  19589. extra: 1410 / 1300,
  19590. bottom: 0.015
  19591. }
  19592. },
  19593. frontDressed: {
  19594. height: math.unit(8, "feet"),
  19595. weight: math.unit(225, "lb"),
  19596. name: "Front (Dressed",
  19597. image: {
  19598. source: "./media/characters/talana/front-dressed.svg",
  19599. extra: 1410 / 1300,
  19600. bottom: 0.015
  19601. }
  19602. },
  19603. },
  19604. [
  19605. {
  19606. name: "Normal",
  19607. height: math.unit(8, "feet"),
  19608. default: true
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19614. {
  19615. side: {
  19616. height: math.unit(7.2, "feet"),
  19617. weight: math.unit(150, "lb"),
  19618. name: "Side",
  19619. image: {
  19620. source: "./media/characters/xeauvok/side.svg",
  19621. extra: 1975 / 1523,
  19622. bottom: 0.07
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(7.2, "feet"),
  19630. default: true
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19636. {
  19637. side: {
  19638. height: math.unit(4, "meters"),
  19639. weight: math.unit(2200, "kg"),
  19640. name: "Side",
  19641. image: {
  19642. source: "./media/characters/zara/side.svg",
  19643. extra: 765/744,
  19644. bottom: 156/921
  19645. }
  19646. },
  19647. },
  19648. [
  19649. {
  19650. name: "Normal",
  19651. height: math.unit(4, "meters"),
  19652. default: true
  19653. },
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19658. {
  19659. side: {
  19660. height: math.unit(6, "feet"),
  19661. weight: math.unit(150, "lb"),
  19662. name: "Side",
  19663. image: {
  19664. source: "./media/characters/richard-dragon/side.svg",
  19665. extra: 845 / 340,
  19666. bottom: 0.017
  19667. }
  19668. },
  19669. maw: {
  19670. height: math.unit(2.97, "feet"),
  19671. name: "Maw",
  19672. image: {
  19673. source: "./media/characters/richard-dragon/maw.svg"
  19674. }
  19675. },
  19676. },
  19677. [
  19678. ]
  19679. ))
  19680. characterMakers.push(() => makeCharacter(
  19681. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19682. {
  19683. front: {
  19684. height: math.unit(4, "feet"),
  19685. weight: math.unit(100, "lb"),
  19686. name: "Front",
  19687. image: {
  19688. source: "./media/characters/richard-smeargle/front.svg",
  19689. extra: 2952 / 2820,
  19690. bottom: 0.028
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(4, "feet"),
  19698. default: true
  19699. },
  19700. {
  19701. name: "Dynamax",
  19702. height: math.unit(20, "meters")
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(6, "feet"),
  19711. weight: math.unit(110, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/klay/front.svg",
  19715. extra: 962 / 883,
  19716. bottom: 0.04
  19717. }
  19718. },
  19719. back: {
  19720. height: math.unit(6, "feet"),
  19721. weight: math.unit(110, "lb"),
  19722. name: "Back",
  19723. image: {
  19724. source: "./media/characters/klay/back.svg",
  19725. extra: 962 / 883
  19726. }
  19727. },
  19728. beans: {
  19729. height: math.unit(1.15, "feet"),
  19730. name: "Beans",
  19731. image: {
  19732. source: "./media/characters/klay/beans.svg"
  19733. }
  19734. },
  19735. },
  19736. [
  19737. {
  19738. name: "Micro",
  19739. height: math.unit(6, "inches")
  19740. },
  19741. {
  19742. name: "Mini",
  19743. height: math.unit(3, "feet")
  19744. },
  19745. {
  19746. name: "Normal",
  19747. height: math.unit(6, "feet"),
  19748. default: true
  19749. },
  19750. {
  19751. name: "Big",
  19752. height: math.unit(25, "feet")
  19753. },
  19754. {
  19755. name: "Macro",
  19756. height: math.unit(100, "feet")
  19757. },
  19758. {
  19759. name: "Megamacro",
  19760. height: math.unit(400, "feet")
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19766. {
  19767. front: {
  19768. height: math.unit(6, "feet"),
  19769. weight: math.unit(160, "lb"),
  19770. name: "Front",
  19771. image: {
  19772. source: "./media/characters/marcus/front.svg",
  19773. extra: 734 / 676,
  19774. bottom: 0.03
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Little",
  19781. height: math.unit(6, "feet")
  19782. },
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(110, "feet"),
  19786. default: true
  19787. },
  19788. {
  19789. name: "Macro",
  19790. height: math.unit(250, "feet")
  19791. },
  19792. {
  19793. name: "Megamacro",
  19794. height: math.unit(1000, "feet")
  19795. },
  19796. ]
  19797. ))
  19798. characterMakers.push(() => makeCharacter(
  19799. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19800. {
  19801. front: {
  19802. height: math.unit(7, "feet"),
  19803. weight: math.unit(275, "lb"),
  19804. name: "Front",
  19805. image: {
  19806. source: "./media/characters/claude-delroute/front.svg",
  19807. extra: 902/827,
  19808. bottom: 26/928
  19809. }
  19810. },
  19811. side: {
  19812. height: math.unit(7, "feet"),
  19813. weight: math.unit(275, "lb"),
  19814. name: "Side",
  19815. image: {
  19816. source: "./media/characters/claude-delroute/side.svg",
  19817. extra: 908/853,
  19818. bottom: 16/924
  19819. }
  19820. },
  19821. back: {
  19822. height: math.unit(7, "feet"),
  19823. weight: math.unit(275, "lb"),
  19824. name: "Back",
  19825. image: {
  19826. source: "./media/characters/claude-delroute/back.svg",
  19827. extra: 911/829,
  19828. bottom: 18/929
  19829. }
  19830. },
  19831. maw: {
  19832. height: math.unit(0.6407, "meters"),
  19833. name: "Maw",
  19834. image: {
  19835. source: "./media/characters/claude-delroute/maw.svg"
  19836. }
  19837. },
  19838. },
  19839. [
  19840. {
  19841. name: "Normal",
  19842. height: math.unit(7, "feet"),
  19843. default: true
  19844. },
  19845. {
  19846. name: "Lorge",
  19847. height: math.unit(20, "feet")
  19848. },
  19849. ]
  19850. ))
  19851. characterMakers.push(() => makeCharacter(
  19852. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19853. {
  19854. front: {
  19855. height: math.unit(8 + 4 / 12, "feet"),
  19856. weight: math.unit(600, "lb"),
  19857. name: "Front",
  19858. image: {
  19859. source: "./media/characters/dragonien/front.svg",
  19860. extra: 100 / 94,
  19861. bottom: 3.3 / 103.3445
  19862. }
  19863. },
  19864. back: {
  19865. height: math.unit(8 + 4 / 12, "feet"),
  19866. weight: math.unit(600, "lb"),
  19867. name: "Back",
  19868. image: {
  19869. source: "./media/characters/dragonien/back.svg",
  19870. extra: 776 / 746,
  19871. bottom: 6.4 / 782.0616
  19872. }
  19873. },
  19874. foot: {
  19875. height: math.unit(1.54, "feet"),
  19876. name: "Foot",
  19877. image: {
  19878. source: "./media/characters/dragonien/foot.svg",
  19879. }
  19880. },
  19881. },
  19882. [
  19883. {
  19884. name: "Normal",
  19885. height: math.unit(8 + 4 / 12, "feet"),
  19886. default: true
  19887. },
  19888. {
  19889. name: "Macro",
  19890. height: math.unit(200, "feet")
  19891. },
  19892. {
  19893. name: "Megamacro",
  19894. height: math.unit(1, "mile")
  19895. },
  19896. {
  19897. name: "Gigamacro",
  19898. height: math.unit(1000, "miles")
  19899. },
  19900. ]
  19901. ))
  19902. characterMakers.push(() => makeCharacter(
  19903. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19904. {
  19905. front: {
  19906. height: math.unit(5 + 2 / 12, "feet"),
  19907. weight: math.unit(110, "lb"),
  19908. name: "Front",
  19909. image: {
  19910. source: "./media/characters/desta/front.svg",
  19911. extra: 767 / 726,
  19912. bottom: 11.7 / 779
  19913. }
  19914. },
  19915. back: {
  19916. height: math.unit(5 + 2 / 12, "feet"),
  19917. weight: math.unit(110, "lb"),
  19918. name: "Back",
  19919. image: {
  19920. source: "./media/characters/desta/back.svg",
  19921. extra: 777 / 728,
  19922. bottom: 6 / 784
  19923. }
  19924. },
  19925. frontAlt: {
  19926. height: math.unit(5 + 2 / 12, "feet"),
  19927. weight: math.unit(110, "lb"),
  19928. name: "Front",
  19929. image: {
  19930. source: "./media/characters/desta/front-alt.svg",
  19931. extra: 1482 / 1417
  19932. }
  19933. },
  19934. side: {
  19935. height: math.unit(5 + 2 / 12, "feet"),
  19936. weight: math.unit(110, "lb"),
  19937. name: "Side",
  19938. image: {
  19939. source: "./media/characters/desta/side.svg",
  19940. extra: 2579 / 2491,
  19941. bottom: 0.053
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Micro",
  19948. height: math.unit(6, "inches")
  19949. },
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(5 + 2 / 12, "feet"),
  19953. default: true
  19954. },
  19955. {
  19956. name: "Macro",
  19957. height: math.unit(62, "feet")
  19958. },
  19959. {
  19960. name: "Megamacro",
  19961. height: math.unit(1800, "feet")
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19967. {
  19968. front: {
  19969. height: math.unit(10, "feet"),
  19970. weight: math.unit(700, "lb"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/storm-alystar/front.svg",
  19974. extra: 2112 / 1898,
  19975. bottom: 0.034
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Micro",
  19982. height: math.unit(3.5, "inches")
  19983. },
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(10, "feet"),
  19987. default: true
  19988. },
  19989. {
  19990. name: "Macro",
  19991. height: math.unit(400, "feet")
  19992. },
  19993. {
  19994. name: "Deific",
  19995. height: math.unit(60, "miles")
  19996. },
  19997. ]
  19998. ))
  19999. characterMakers.push(() => makeCharacter(
  20000. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20001. {
  20002. front: {
  20003. height: math.unit(2.35, "meters"),
  20004. weight: math.unit(119, "kg"),
  20005. name: "Front",
  20006. image: {
  20007. source: "./media/characters/ilia/front.svg",
  20008. extra: 1285 / 1255,
  20009. bottom: 0.06
  20010. }
  20011. },
  20012. },
  20013. [
  20014. {
  20015. name: "Normal",
  20016. height: math.unit(2.35, "meters")
  20017. },
  20018. {
  20019. name: "Macro",
  20020. height: math.unit(140, "meters"),
  20021. default: true
  20022. },
  20023. {
  20024. name: "Megamacro",
  20025. height: math.unit(100, "miles")
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(6 + 5 / 12, "feet"),
  20034. weight: math.unit(190, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/kingdead/front.svg",
  20038. extra: 1228 / 1177
  20039. }
  20040. },
  20041. },
  20042. [
  20043. {
  20044. name: "Micro",
  20045. height: math.unit(7, "inches")
  20046. },
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(6 + 5 / 12, "feet")
  20050. },
  20051. {
  20052. name: "Macro",
  20053. height: math.unit(150, "feet"),
  20054. default: true
  20055. },
  20056. {
  20057. name: "Megamacro",
  20058. height: math.unit(200, "miles")
  20059. },
  20060. ]
  20061. ))
  20062. characterMakers.push(() => makeCharacter(
  20063. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20064. {
  20065. front: {
  20066. height: math.unit(8, "feet"),
  20067. weight: math.unit(600, "lb"),
  20068. name: "Front",
  20069. image: {
  20070. source: "./media/characters/kyrehx/front.svg",
  20071. extra: 1195 / 1095,
  20072. bottom: 0.034
  20073. }
  20074. },
  20075. },
  20076. [
  20077. {
  20078. name: "Micro",
  20079. height: math.unit(2, "inches")
  20080. },
  20081. {
  20082. name: "Normal",
  20083. height: math.unit(8, "feet"),
  20084. default: true
  20085. },
  20086. {
  20087. name: "Macro",
  20088. height: math.unit(255, "feet")
  20089. },
  20090. ]
  20091. ))
  20092. characterMakers.push(() => makeCharacter(
  20093. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20094. {
  20095. front: {
  20096. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20097. weight: math.unit(184, "lb"),
  20098. name: "Front",
  20099. image: {
  20100. source: "./media/characters/xang/front.svg",
  20101. extra: 845 / 755
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20109. default: true
  20110. },
  20111. {
  20112. name: "Macro",
  20113. height: math.unit(0.935 * 146, "feet")
  20114. },
  20115. {
  20116. name: "Megamacro",
  20117. height: math.unit(0.935 * 3, "miles")
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20123. {
  20124. frontDressed: {
  20125. height: math.unit(5 + 7 / 12, "feet"),
  20126. weight: math.unit(140, "lb"),
  20127. name: "Front (Dressed)",
  20128. image: {
  20129. source: "./media/characters/doc-weardno/front-dressed.svg",
  20130. extra: 263 / 234
  20131. }
  20132. },
  20133. backDressed: {
  20134. height: math.unit(5 + 7 / 12, "feet"),
  20135. weight: math.unit(140, "lb"),
  20136. name: "Back (Dressed)",
  20137. image: {
  20138. source: "./media/characters/doc-weardno/back-dressed.svg",
  20139. extra: 266 / 238
  20140. }
  20141. },
  20142. front: {
  20143. height: math.unit(5 + 7 / 12, "feet"),
  20144. weight: math.unit(140, "lb"),
  20145. name: "Front",
  20146. image: {
  20147. source: "./media/characters/doc-weardno/front.svg",
  20148. extra: 254 / 233
  20149. }
  20150. },
  20151. },
  20152. [
  20153. {
  20154. name: "Micro",
  20155. height: math.unit(3, "inches")
  20156. },
  20157. {
  20158. name: "Normal",
  20159. height: math.unit(5 + 7 / 12, "feet"),
  20160. default: true
  20161. },
  20162. {
  20163. name: "Macro",
  20164. height: math.unit(25, "feet")
  20165. },
  20166. {
  20167. name: "Megamacro",
  20168. height: math.unit(2, "miles")
  20169. },
  20170. ]
  20171. ))
  20172. characterMakers.push(() => makeCharacter(
  20173. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20174. {
  20175. front: {
  20176. height: math.unit(6 + 2 / 12, "feet"),
  20177. weight: math.unit(153, "lb"),
  20178. name: "Front",
  20179. image: {
  20180. source: "./media/characters/seth-whilst/front.svg",
  20181. bottom: 0.07
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Micro",
  20188. height: math.unit(5, "inches")
  20189. },
  20190. {
  20191. name: "Normal",
  20192. height: math.unit(6 + 2 / 12, "feet"),
  20193. default: true
  20194. },
  20195. ]
  20196. ))
  20197. characterMakers.push(() => makeCharacter(
  20198. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20199. {
  20200. front: {
  20201. height: math.unit(3, "inches"),
  20202. weight: math.unit(8, "grams"),
  20203. name: "Front",
  20204. image: {
  20205. source: "./media/characters/pocket-jabari/front.svg",
  20206. extra: 1024 / 974,
  20207. bottom: 0.039
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Minimicro",
  20214. height: math.unit(8, "mm")
  20215. },
  20216. {
  20217. name: "Micro",
  20218. height: math.unit(3, "inches"),
  20219. default: true
  20220. },
  20221. {
  20222. name: "Normal",
  20223. height: math.unit(3, "feet")
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20229. {
  20230. frontDressed: {
  20231. height: math.unit(15, "feet"),
  20232. weight: math.unit(3280, "lb"),
  20233. name: "Front (Dressed)",
  20234. image: {
  20235. source: "./media/characters/sapphy/front-dressed.svg",
  20236. extra: 1951/1654,
  20237. bottom: 194/2145
  20238. },
  20239. form: "anthro",
  20240. default: true
  20241. },
  20242. backDressed: {
  20243. height: math.unit(15, "feet"),
  20244. weight: math.unit(3280, "lb"),
  20245. name: "Back (Dressed)",
  20246. image: {
  20247. source: "./media/characters/sapphy/back-dressed.svg",
  20248. extra: 2058/1918,
  20249. bottom: 125/2183
  20250. },
  20251. form: "anthro"
  20252. },
  20253. frontNude: {
  20254. height: math.unit(15, "feet"),
  20255. weight: math.unit(3280, "lb"),
  20256. name: "Front (Nude)",
  20257. image: {
  20258. source: "./media/characters/sapphy/front-nude.svg",
  20259. extra: 1951/1654,
  20260. bottom: 194/2145
  20261. },
  20262. form: "anthro"
  20263. },
  20264. backNude: {
  20265. height: math.unit(15, "feet"),
  20266. weight: math.unit(3280, "lb"),
  20267. name: "Back (Nude)",
  20268. image: {
  20269. source: "./media/characters/sapphy/back-nude.svg",
  20270. extra: 2058/1918,
  20271. bottom: 125/2183
  20272. },
  20273. form: "anthro"
  20274. },
  20275. full: {
  20276. height: math.unit(15, "feet"),
  20277. weight: math.unit(3280, "lb"),
  20278. name: "Full",
  20279. image: {
  20280. source: "./media/characters/sapphy/full.svg",
  20281. extra: 1396/1317,
  20282. bottom: 44/1440
  20283. },
  20284. form: "anthro"
  20285. },
  20286. dick: {
  20287. height: math.unit(3.8, "feet"),
  20288. name: "Dick",
  20289. image: {
  20290. source: "./media/characters/sapphy/dick.svg"
  20291. },
  20292. form: "anthro"
  20293. },
  20294. feral: {
  20295. height: math.unit(35, "feet"),
  20296. weight: math.unit(160, "tons"),
  20297. name: "Feral",
  20298. image: {
  20299. source: "./media/characters/sapphy/feral.svg",
  20300. extra: 1050/573,
  20301. bottom: 60/1110
  20302. },
  20303. form: "feral",
  20304. default: true
  20305. },
  20306. },
  20307. [
  20308. {
  20309. name: "Normal",
  20310. height: math.unit(15, "feet"),
  20311. form: "anthro"
  20312. },
  20313. {
  20314. name: "Casual Macro",
  20315. height: math.unit(120, "feet"),
  20316. form: "anthro"
  20317. },
  20318. {
  20319. name: "Macro",
  20320. height: math.unit(2150, "feet"),
  20321. default: true,
  20322. form: "anthro"
  20323. },
  20324. {
  20325. name: "Megamacro",
  20326. height: math.unit(8, "miles"),
  20327. form: "anthro"
  20328. },
  20329. {
  20330. name: "Galaxy Mom",
  20331. height: math.unit(6, "megalightyears"),
  20332. form: "anthro"
  20333. },
  20334. {
  20335. name: "Normal",
  20336. height: math.unit(35, "feet"),
  20337. form: "feral",
  20338. default: true
  20339. },
  20340. {
  20341. name: "Macro",
  20342. height: math.unit(300, "feet"),
  20343. form: "feral"
  20344. },
  20345. {
  20346. name: "Galaxy Mom",
  20347. height: math.unit(10, "megalightyears"),
  20348. form: "feral"
  20349. },
  20350. ],
  20351. {
  20352. "anthro": {
  20353. name: "Anthro",
  20354. default: true
  20355. },
  20356. "feral": {
  20357. name: "Feral"
  20358. }
  20359. }
  20360. ))
  20361. characterMakers.push(() => makeCharacter(
  20362. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20363. {
  20364. hyenaFront: {
  20365. height: math.unit(6, "feet"),
  20366. weight: math.unit(190, "lb"),
  20367. name: "Front",
  20368. image: {
  20369. source: "./media/characters/kiro/hyena-front.svg",
  20370. extra: 927/839,
  20371. bottom: 91/1018
  20372. },
  20373. form: "hyena",
  20374. default: true
  20375. },
  20376. front: {
  20377. height: math.unit(6, "feet"),
  20378. weight: math.unit(170, "lb"),
  20379. name: "Front",
  20380. image: {
  20381. source: "./media/characters/kiro/front.svg",
  20382. extra: 1064 / 1012,
  20383. bottom: 0.052
  20384. },
  20385. form: "folf",
  20386. default: true
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Micro",
  20392. height: math.unit(6, "inches"),
  20393. form: "folf"
  20394. },
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(6, "feet"),
  20398. form: "folf",
  20399. default: true
  20400. },
  20401. {
  20402. name: "Macro",
  20403. height: math.unit(72, "feet"),
  20404. form: "folf"
  20405. },
  20406. {
  20407. name: "Micro",
  20408. height: math.unit(6, "inches"),
  20409. form: "hyena"
  20410. },
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(6, "feet"),
  20414. form: "hyena",
  20415. default: true
  20416. },
  20417. {
  20418. name: "Macro",
  20419. height: math.unit(72, "feet"),
  20420. form: "hyena"
  20421. },
  20422. ],
  20423. {
  20424. "hyena": {
  20425. name: "Hyena",
  20426. default: true
  20427. },
  20428. "folf": {
  20429. name: "Folf",
  20430. },
  20431. }
  20432. ))
  20433. characterMakers.push(() => makeCharacter(
  20434. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20435. {
  20436. front: {
  20437. height: math.unit(5 + 9 / 12, "feet"),
  20438. weight: math.unit(175, "lb"),
  20439. name: "Front",
  20440. image: {
  20441. source: "./media/characters/irishfox/front.svg",
  20442. extra: 1912 / 1680,
  20443. bottom: 0.02
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Nano",
  20450. height: math.unit(1, "mm")
  20451. },
  20452. {
  20453. name: "Micro",
  20454. height: math.unit(2, "inches")
  20455. },
  20456. {
  20457. name: "Normal",
  20458. height: math.unit(5 + 9 / 12, "feet"),
  20459. default: true
  20460. },
  20461. {
  20462. name: "Macro",
  20463. height: math.unit(45, "feet")
  20464. },
  20465. ]
  20466. ))
  20467. characterMakers.push(() => makeCharacter(
  20468. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20469. {
  20470. front: {
  20471. height: math.unit(6 + 1 / 12, "feet"),
  20472. weight: math.unit(75, "lb"),
  20473. name: "Front",
  20474. image: {
  20475. source: "./media/characters/aronai-sieyes/front.svg",
  20476. extra: 1532/1450,
  20477. bottom: 42/1574
  20478. }
  20479. },
  20480. side: {
  20481. height: math.unit(6 + 1 / 12, "feet"),
  20482. weight: math.unit(75, "lb"),
  20483. name: "Side",
  20484. image: {
  20485. source: "./media/characters/aronai-sieyes/side.svg",
  20486. extra: 1422/1365,
  20487. bottom: 148/1570
  20488. }
  20489. },
  20490. back: {
  20491. height: math.unit(6 + 1 / 12, "feet"),
  20492. weight: math.unit(75, "lb"),
  20493. name: "Back",
  20494. image: {
  20495. source: "./media/characters/aronai-sieyes/back.svg",
  20496. extra: 1526/1464,
  20497. bottom: 51/1577
  20498. }
  20499. },
  20500. dressed: {
  20501. height: math.unit(6 + 1 / 12, "feet"),
  20502. weight: math.unit(75, "lb"),
  20503. name: "Dressed",
  20504. image: {
  20505. source: "./media/characters/aronai-sieyes/dressed.svg",
  20506. extra: 1559/1483,
  20507. bottom: 39/1598
  20508. }
  20509. },
  20510. slit: {
  20511. height: math.unit(1.3, "feet"),
  20512. name: "Slit",
  20513. image: {
  20514. source: "./media/characters/aronai-sieyes/slit.svg"
  20515. }
  20516. },
  20517. slitSpread: {
  20518. height: math.unit(0.9, "feet"),
  20519. name: "Slit (Spread)",
  20520. image: {
  20521. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20522. }
  20523. },
  20524. rump: {
  20525. height: math.unit(1.3, "feet"),
  20526. name: "Rump",
  20527. image: {
  20528. source: "./media/characters/aronai-sieyes/rump.svg"
  20529. }
  20530. },
  20531. maw: {
  20532. height: math.unit(1.25, "feet"),
  20533. name: "Maw",
  20534. image: {
  20535. source: "./media/characters/aronai-sieyes/maw.svg"
  20536. }
  20537. },
  20538. feral: {
  20539. height: math.unit(18, "feet"),
  20540. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20541. name: "Feral",
  20542. image: {
  20543. source: "./media/characters/aronai-sieyes/feral.svg",
  20544. extra: 1530 / 1240,
  20545. bottom: 0.035
  20546. }
  20547. },
  20548. },
  20549. [
  20550. {
  20551. name: "Micro",
  20552. height: math.unit(2, "inches")
  20553. },
  20554. {
  20555. name: "Normal",
  20556. height: math.unit(6 + 1 / 12, "feet"),
  20557. default: true
  20558. }
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(12, "feet"),
  20566. weight: math.unit(410, "kg"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/xuna/front.svg",
  20570. extra: 2184 / 1980
  20571. }
  20572. },
  20573. side: {
  20574. height: math.unit(12, "feet"),
  20575. weight: math.unit(410, "kg"),
  20576. name: "Side",
  20577. image: {
  20578. source: "./media/characters/xuna/side.svg",
  20579. extra: 2184 / 1980
  20580. }
  20581. },
  20582. back: {
  20583. height: math.unit(12, "feet"),
  20584. weight: math.unit(410, "kg"),
  20585. name: "Back",
  20586. image: {
  20587. source: "./media/characters/xuna/back.svg",
  20588. extra: 2184 / 1980
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Nano glow",
  20595. height: math.unit(10, "nm")
  20596. },
  20597. {
  20598. name: "Micro floof",
  20599. height: math.unit(0.3, "m")
  20600. },
  20601. {
  20602. name: "Huggable softy boi",
  20603. height: math.unit(3.6576, "m"),
  20604. default: true
  20605. },
  20606. {
  20607. name: "Admirable floof",
  20608. height: math.unit(80, "meters")
  20609. },
  20610. {
  20611. name: "Gentle macro",
  20612. height: math.unit(300, "meters")
  20613. },
  20614. {
  20615. name: "Very careful floof",
  20616. height: math.unit(3200, "meters")
  20617. },
  20618. {
  20619. name: "The mega floof",
  20620. height: math.unit(36000, "meters")
  20621. },
  20622. {
  20623. name: "Giga-fur-Wicker",
  20624. height: math.unit(4800000, "meters")
  20625. },
  20626. {
  20627. name: "Licky world",
  20628. height: math.unit(20000000, "meters")
  20629. },
  20630. {
  20631. name: "Floofy cyan sun",
  20632. height: math.unit(1500000000, "meters")
  20633. },
  20634. {
  20635. name: "Milky Wicker",
  20636. height: math.unit(1000000000000000000000, "meters")
  20637. },
  20638. {
  20639. name: "The observing Wicker",
  20640. height: math.unit(999999999999999999999999999, "meters")
  20641. },
  20642. ]
  20643. ))
  20644. characterMakers.push(() => makeCharacter(
  20645. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20646. {
  20647. front: {
  20648. height: math.unit(5 + 9 / 12, "feet"),
  20649. weight: math.unit(150, "lb"),
  20650. name: "Front",
  20651. image: {
  20652. source: "./media/characters/arokha-sieyes/front.svg",
  20653. extra: 1425 / 1284,
  20654. bottom: 0.05
  20655. }
  20656. },
  20657. },
  20658. [
  20659. {
  20660. name: "Normal",
  20661. height: math.unit(5 + 9 / 12, "feet")
  20662. },
  20663. {
  20664. name: "Macro",
  20665. height: math.unit(30, "meters"),
  20666. default: true
  20667. },
  20668. ]
  20669. ))
  20670. characterMakers.push(() => makeCharacter(
  20671. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20672. {
  20673. front: {
  20674. height: math.unit(6, "feet"),
  20675. weight: math.unit(180, "lb"),
  20676. name: "Front",
  20677. image: {
  20678. source: "./media/characters/arokh-sieyes/front.svg",
  20679. extra: 1830 / 1769,
  20680. bottom: 0.01
  20681. }
  20682. },
  20683. },
  20684. [
  20685. {
  20686. name: "Normal",
  20687. height: math.unit(6, "feet")
  20688. },
  20689. {
  20690. name: "Macro",
  20691. height: math.unit(30, "meters"),
  20692. default: true
  20693. },
  20694. ]
  20695. ))
  20696. characterMakers.push(() => makeCharacter(
  20697. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20698. {
  20699. side: {
  20700. height: math.unit(13 + 1 / 12, "feet"),
  20701. weight: math.unit(8.5, "tonnes"),
  20702. preyCapacity: math.unit(36, "people"),
  20703. name: "Side",
  20704. image: {
  20705. source: "./media/characters/goldeneye/side.svg",
  20706. extra: 1139/741,
  20707. bottom: 98/1237
  20708. }
  20709. },
  20710. front: {
  20711. height: math.unit(5.1, "feet"),
  20712. weight: math.unit(8.5, "tonnes"),
  20713. preyCapacity: math.unit(36, "people"),
  20714. name: "Front",
  20715. image: {
  20716. source: "./media/characters/goldeneye/front.svg",
  20717. extra: 635/365,
  20718. bottom: 598/1233
  20719. }
  20720. },
  20721. maw: {
  20722. height: math.unit(6.6, "feet"),
  20723. name: "Maw",
  20724. image: {
  20725. source: "./media/characters/goldeneye/maw.svg"
  20726. }
  20727. },
  20728. headFront: {
  20729. height: math.unit(8, "feet"),
  20730. name: "Head (Front)",
  20731. image: {
  20732. source: "./media/characters/goldeneye/head-front.svg"
  20733. }
  20734. },
  20735. headSide: {
  20736. height: math.unit(6, "feet"),
  20737. name: "Head (Side)",
  20738. image: {
  20739. source: "./media/characters/goldeneye/head-side.svg"
  20740. }
  20741. },
  20742. headBack: {
  20743. height: math.unit(8, "feet"),
  20744. name: "Head (Back)",
  20745. image: {
  20746. source: "./media/characters/goldeneye/head-back.svg"
  20747. }
  20748. },
  20749. paw: {
  20750. height: math.unit(3.4, "feet"),
  20751. name: "Paw",
  20752. image: {
  20753. source: "./media/characters/goldeneye/paw.svg"
  20754. }
  20755. },
  20756. toering: {
  20757. height: math.unit(0.45, "feet"),
  20758. name: "Toering",
  20759. image: {
  20760. source: "./media/characters/goldeneye/toering.svg"
  20761. }
  20762. },
  20763. eyes: {
  20764. height: math.unit(0.5, "feet"),
  20765. name: "Eyes",
  20766. image: {
  20767. source: "./media/characters/goldeneye/eyes.svg"
  20768. }
  20769. },
  20770. },
  20771. [
  20772. {
  20773. name: "Normal",
  20774. height: math.unit(13 + 1 / 12, "feet"),
  20775. default: true
  20776. },
  20777. ]
  20778. ))
  20779. characterMakers.push(() => makeCharacter(
  20780. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20781. {
  20782. front: {
  20783. height: math.unit(6 + 1 / 12, "feet"),
  20784. weight: math.unit(210, "lb"),
  20785. name: "Front",
  20786. image: {
  20787. source: "./media/characters/leonardo-lycheborne/front.svg",
  20788. extra: 776/723,
  20789. bottom: 34/810
  20790. }
  20791. },
  20792. side: {
  20793. height: math.unit(6 + 1 / 12, "feet"),
  20794. weight: math.unit(210, "lb"),
  20795. name: "Side",
  20796. image: {
  20797. source: "./media/characters/leonardo-lycheborne/side.svg",
  20798. extra: 780/728,
  20799. bottom: 12/792
  20800. }
  20801. },
  20802. back: {
  20803. height: math.unit(6 + 1 / 12, "feet"),
  20804. weight: math.unit(210, "lb"),
  20805. name: "Back",
  20806. image: {
  20807. source: "./media/characters/leonardo-lycheborne/back.svg",
  20808. extra: 775/721,
  20809. bottom: 17/792
  20810. }
  20811. },
  20812. hand: {
  20813. height: math.unit(1.08, "feet"),
  20814. name: "Hand",
  20815. image: {
  20816. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20817. }
  20818. },
  20819. foot: {
  20820. height: math.unit(1.32, "feet"),
  20821. name: "Foot",
  20822. image: {
  20823. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20824. }
  20825. },
  20826. maw: {
  20827. height: math.unit(1, "feet"),
  20828. name: "Maw",
  20829. image: {
  20830. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20831. }
  20832. },
  20833. were: {
  20834. height: math.unit(20, "feet"),
  20835. weight: math.unit(7800, "lb"),
  20836. name: "Were",
  20837. image: {
  20838. source: "./media/characters/leonardo-lycheborne/were.svg",
  20839. extra: 1224/1165,
  20840. bottom: 72/1296
  20841. }
  20842. },
  20843. feral: {
  20844. height: math.unit(7.5, "feet"),
  20845. weight: math.unit(600, "lb"),
  20846. name: "Feral",
  20847. image: {
  20848. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20849. extra: 797/702,
  20850. bottom: 139/936
  20851. }
  20852. },
  20853. taur: {
  20854. height: math.unit(11, "feet"),
  20855. weight: math.unit(3300, "lb"),
  20856. name: "Taur",
  20857. image: {
  20858. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20859. extra: 1271/1197,
  20860. bottom: 47/1318
  20861. }
  20862. },
  20863. barghest: {
  20864. height: math.unit(11, "feet"),
  20865. weight: math.unit(1300, "lb"),
  20866. name: "Barghest",
  20867. image: {
  20868. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20869. extra: 1291/1204,
  20870. bottom: 37/1328
  20871. }
  20872. },
  20873. dick: {
  20874. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20875. name: "Dick",
  20876. image: {
  20877. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20878. }
  20879. },
  20880. dickWere: {
  20881. height: math.unit((20) / 3.8, "feet"),
  20882. name: "Dick (Were)",
  20883. image: {
  20884. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(6 + 1 / 12, "feet"),
  20892. default: true
  20893. },
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20898. {
  20899. front: {
  20900. height: math.unit(10, "feet"),
  20901. weight: math.unit(350, "lb"),
  20902. name: "Front",
  20903. image: {
  20904. source: "./media/characters/jet/front.svg",
  20905. extra: 2050 / 1980,
  20906. bottom: 0.013
  20907. }
  20908. },
  20909. back: {
  20910. height: math.unit(10, "feet"),
  20911. weight: math.unit(350, "lb"),
  20912. name: "Back",
  20913. image: {
  20914. source: "./media/characters/jet/back.svg",
  20915. extra: 2050 / 1980,
  20916. bottom: 0.013
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Micro",
  20923. height: math.unit(6, "inches")
  20924. },
  20925. {
  20926. name: "Normal",
  20927. height: math.unit(10, "feet"),
  20928. default: true
  20929. },
  20930. {
  20931. name: "Macro",
  20932. height: math.unit(100, "feet")
  20933. },
  20934. ]
  20935. ))
  20936. characterMakers.push(() => makeCharacter(
  20937. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20938. {
  20939. front: {
  20940. height: math.unit(15, "feet"),
  20941. weight: math.unit(2800, "lb"),
  20942. name: "Front",
  20943. image: {
  20944. source: "./media/characters/tanarath/front.svg",
  20945. extra: 2392 / 2220,
  20946. bottom: 0.03
  20947. }
  20948. },
  20949. back: {
  20950. height: math.unit(15, "feet"),
  20951. weight: math.unit(2800, "lb"),
  20952. name: "Back",
  20953. image: {
  20954. source: "./media/characters/tanarath/back.svg",
  20955. extra: 2392 / 2220,
  20956. bottom: 0.03
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(15, "feet"),
  20964. default: true
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20970. {
  20971. front: {
  20972. height: math.unit(7 + 1 / 12, "feet"),
  20973. weight: math.unit(175, "lb"),
  20974. name: "Front",
  20975. image: {
  20976. source: "./media/characters/patty-cattybatty/front.svg",
  20977. extra: 908 / 874,
  20978. bottom: 0.025
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Micro",
  20985. height: math.unit(1, "inch")
  20986. },
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(7 + 1 / 12, "feet")
  20990. },
  20991. {
  20992. name: "Mini Macro",
  20993. height: math.unit(155, "feet")
  20994. },
  20995. {
  20996. name: "Macro",
  20997. height: math.unit(1077, "feet")
  20998. },
  20999. {
  21000. name: "Mega Macro",
  21001. height: math.unit(47650, "feet"),
  21002. default: true
  21003. },
  21004. {
  21005. name: "Giga Macro",
  21006. height: math.unit(440, "miles")
  21007. },
  21008. {
  21009. name: "Tera Macro",
  21010. height: math.unit(8700, "miles")
  21011. },
  21012. {
  21013. name: "Planetary Macro",
  21014. height: math.unit(32700, "miles")
  21015. },
  21016. {
  21017. name: "Solar Macro",
  21018. height: math.unit(550000, "miles")
  21019. },
  21020. {
  21021. name: "Celestial Macro",
  21022. height: math.unit(2.5, "AU")
  21023. },
  21024. ]
  21025. ))
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21028. {
  21029. front: {
  21030. height: math.unit(4 + 5 / 12, "feet"),
  21031. weight: math.unit(90, "lb"),
  21032. name: "Front",
  21033. image: {
  21034. source: "./media/characters/cappu/front.svg",
  21035. extra: 1247 / 1152,
  21036. bottom: 0.012
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(4 + 5 / 12, "feet"),
  21044. default: true
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21050. {
  21051. frontDressed: {
  21052. height: math.unit(70, "cm"),
  21053. weight: math.unit(6, "kg"),
  21054. name: "Front (Dressed)",
  21055. image: {
  21056. source: "./media/characters/sebi/front-dressed.svg",
  21057. extra: 713.5 / 686.5,
  21058. bottom: 0.003
  21059. }
  21060. },
  21061. front: {
  21062. height: math.unit(70, "cm"),
  21063. weight: math.unit(5, "kg"),
  21064. name: "Front",
  21065. image: {
  21066. source: "./media/characters/sebi/front.svg",
  21067. extra: 713.5 / 686.5,
  21068. bottom: 0.003
  21069. }
  21070. }
  21071. },
  21072. [
  21073. {
  21074. name: "Normal",
  21075. height: math.unit(70, "cm"),
  21076. default: true
  21077. },
  21078. {
  21079. name: "Macro",
  21080. height: math.unit(8, "meters")
  21081. },
  21082. ]
  21083. ))
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21086. {
  21087. front: {
  21088. height: math.unit(6, "feet"),
  21089. weight: math.unit(150, "lb"),
  21090. name: "Front",
  21091. image: {
  21092. source: "./media/characters/typhek/front.svg",
  21093. extra: 1948 / 1929,
  21094. bottom: 0.025
  21095. }
  21096. },
  21097. side: {
  21098. height: math.unit(6, "feet"),
  21099. weight: math.unit(150, "lb"),
  21100. name: "Side",
  21101. image: {
  21102. source: "./media/characters/typhek/side.svg",
  21103. extra: 2034 / 2010,
  21104. bottom: 0.003
  21105. }
  21106. },
  21107. back: {
  21108. height: math.unit(6, "feet"),
  21109. weight: math.unit(150, "lb"),
  21110. name: "Back",
  21111. image: {
  21112. source: "./media/characters/typhek/back.svg",
  21113. extra: 2005 / 1978,
  21114. bottom: 0.004
  21115. }
  21116. },
  21117. palm: {
  21118. height: math.unit(1.2, "feet"),
  21119. name: "Palm",
  21120. image: {
  21121. source: "./media/characters/typhek/palm.svg"
  21122. }
  21123. },
  21124. fist: {
  21125. height: math.unit(1.1, "feet"),
  21126. name: "Fist",
  21127. image: {
  21128. source: "./media/characters/typhek/fist.svg"
  21129. }
  21130. },
  21131. foot: {
  21132. height: math.unit(1.57, "feet"),
  21133. name: "Foot",
  21134. image: {
  21135. source: "./media/characters/typhek/foot.svg"
  21136. }
  21137. },
  21138. sole: {
  21139. height: math.unit(2.05, "feet"),
  21140. name: "Sole",
  21141. image: {
  21142. source: "./media/characters/typhek/sole.svg"
  21143. }
  21144. },
  21145. },
  21146. [
  21147. {
  21148. name: "Macro",
  21149. height: math.unit(40, "stories"),
  21150. default: true
  21151. },
  21152. {
  21153. name: "Megamacro",
  21154. height: math.unit(1, "mile")
  21155. },
  21156. {
  21157. name: "Gigamacro",
  21158. height: math.unit(4000, "solarradii")
  21159. },
  21160. {
  21161. name: "Universal",
  21162. height: math.unit(1.1, "universes")
  21163. }
  21164. ]
  21165. ))
  21166. characterMakers.push(() => makeCharacter(
  21167. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21168. {
  21169. side: {
  21170. height: math.unit(5 + 7 / 12, "feet"),
  21171. weight: math.unit(150, "lb"),
  21172. name: "Side",
  21173. image: {
  21174. source: "./media/characters/kassy/side.svg",
  21175. extra: 1280 / 1225,
  21176. bottom: 0.002
  21177. }
  21178. },
  21179. front: {
  21180. height: math.unit(5 + 7 / 12, "feet"),
  21181. weight: math.unit(150, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/kassy/front.svg",
  21185. extra: 1280 / 1225,
  21186. bottom: 0.025
  21187. }
  21188. },
  21189. back: {
  21190. height: math.unit(5 + 7 / 12, "feet"),
  21191. weight: math.unit(150, "lb"),
  21192. name: "Back",
  21193. image: {
  21194. source: "./media/characters/kassy/back.svg",
  21195. extra: 1280 / 1225,
  21196. bottom: 0.002
  21197. }
  21198. },
  21199. foot: {
  21200. height: math.unit(1.266, "feet"),
  21201. name: "Foot",
  21202. image: {
  21203. source: "./media/characters/kassy/foot.svg"
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(5 + 7 / 12, "feet")
  21211. },
  21212. {
  21213. name: "Macro",
  21214. height: math.unit(137, "feet"),
  21215. default: true
  21216. },
  21217. {
  21218. name: "Megamacro",
  21219. height: math.unit(1, "mile")
  21220. },
  21221. ]
  21222. ))
  21223. characterMakers.push(() => makeCharacter(
  21224. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21225. {
  21226. front: {
  21227. height: math.unit(6 + 1 / 12, "feet"),
  21228. weight: math.unit(200, "lb"),
  21229. name: "Front",
  21230. image: {
  21231. source: "./media/characters/neil/front.svg",
  21232. extra: 1326 / 1250,
  21233. bottom: 0.023
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(6 + 1 / 12, "feet"),
  21241. default: true
  21242. },
  21243. {
  21244. name: "Macro",
  21245. height: math.unit(200, "feet")
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21251. {
  21252. front: {
  21253. height: math.unit(5 + 9 / 12, "feet"),
  21254. weight: math.unit(190, "lb"),
  21255. name: "Front",
  21256. image: {
  21257. source: "./media/characters/atticus/front.svg",
  21258. extra: 2934 / 2785,
  21259. bottom: 0.025
  21260. }
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(5 + 9 / 12, "feet"),
  21267. default: true
  21268. },
  21269. {
  21270. name: "Macro",
  21271. height: math.unit(180, "feet")
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21277. {
  21278. side: {
  21279. height: math.unit(9, "feet"),
  21280. weight: math.unit(650, "lb"),
  21281. name: "Side",
  21282. image: {
  21283. source: "./media/characters/milo/side.svg",
  21284. extra: 2644 / 2310,
  21285. bottom: 0.032
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Normal",
  21292. height: math.unit(9, "feet"),
  21293. default: true
  21294. },
  21295. {
  21296. name: "Macro",
  21297. height: math.unit(300, "feet")
  21298. },
  21299. ]
  21300. ))
  21301. characterMakers.push(() => makeCharacter(
  21302. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21303. {
  21304. side: {
  21305. height: math.unit(8, "meters"),
  21306. weight: math.unit(90000, "kg"),
  21307. name: "Side",
  21308. image: {
  21309. source: "./media/characters/ijzer/side.svg",
  21310. extra: 2756 / 1600,
  21311. bottom: 0.01
  21312. }
  21313. },
  21314. },
  21315. [
  21316. {
  21317. name: "Small",
  21318. height: math.unit(3, "meters")
  21319. },
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(8, "meters"),
  21323. default: true
  21324. },
  21325. {
  21326. name: "Normal+",
  21327. height: math.unit(10, "meters")
  21328. },
  21329. {
  21330. name: "Bigger",
  21331. height: math.unit(24, "meters")
  21332. },
  21333. {
  21334. name: "Huge",
  21335. height: math.unit(80, "meters")
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21341. {
  21342. front: {
  21343. height: math.unit(6 + 2 / 12, "feet"),
  21344. weight: math.unit(153, "lb"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/luca-cervicum/front.svg",
  21348. extra: 370 / 327,
  21349. bottom: 0.015
  21350. }
  21351. },
  21352. back: {
  21353. height: math.unit(6 + 2 / 12, "feet"),
  21354. weight: math.unit(153, "lb"),
  21355. name: "Back",
  21356. image: {
  21357. source: "./media/characters/luca-cervicum/back.svg",
  21358. extra: 367 / 333,
  21359. bottom: 0.005
  21360. }
  21361. },
  21362. frontGear: {
  21363. height: math.unit(6 + 2 / 12, "feet"),
  21364. weight: math.unit(173, "lb"),
  21365. name: "Front (Gear)",
  21366. image: {
  21367. source: "./media/characters/luca-cervicum/front-gear.svg",
  21368. extra: 377 / 333,
  21369. bottom: 0.006
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Normal",
  21376. height: math.unit(6 + 2 / 12, "feet"),
  21377. default: true
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21383. {
  21384. front: {
  21385. height: math.unit(6 + 1 / 12, "feet"),
  21386. weight: math.unit(304, "lb"),
  21387. name: "Front",
  21388. image: {
  21389. source: "./media/characters/oliver/front.svg",
  21390. extra: 157 / 143,
  21391. bottom: 0.08
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(6 + 1 / 12, "feet"),
  21399. default: true
  21400. },
  21401. ]
  21402. ))
  21403. characterMakers.push(() => makeCharacter(
  21404. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21405. {
  21406. front: {
  21407. height: math.unit(5 + 7 / 12, "feet"),
  21408. weight: math.unit(140, "lb"),
  21409. name: "Front",
  21410. image: {
  21411. source: "./media/characters/shane/front.svg",
  21412. extra: 304 / 289,
  21413. bottom: 0.005
  21414. }
  21415. },
  21416. },
  21417. [
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(5 + 7 / 12, "feet"),
  21421. default: true
  21422. },
  21423. ]
  21424. ))
  21425. characterMakers.push(() => makeCharacter(
  21426. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21427. {
  21428. front: {
  21429. height: math.unit(5 + 9 / 12, "feet"),
  21430. weight: math.unit(178, "lb"),
  21431. name: "Front",
  21432. image: {
  21433. source: "./media/characters/shin/front.svg",
  21434. extra: 159 / 151,
  21435. bottom: 0.015
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(5 + 9 / 12, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(5 + 10 / 12, "feet"),
  21452. weight: math.unit(168, "lb"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/xerxes/front.svg",
  21456. extra: 282 / 260,
  21457. bottom: 0.045
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Normal",
  21464. height: math.unit(5 + 10 / 12, "feet"),
  21465. default: true
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21471. {
  21472. front: {
  21473. height: math.unit(6 + 7 / 12, "feet"),
  21474. weight: math.unit(208, "lb"),
  21475. name: "Front",
  21476. image: {
  21477. source: "./media/characters/chaska/front.svg",
  21478. extra: 332 / 319,
  21479. bottom: 0.015
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(6 + 7 / 12, "feet"),
  21487. default: true
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(5 + 8 / 12, "feet"),
  21496. weight: math.unit(208, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/enuk/front.svg",
  21500. extra: 437 / 406,
  21501. bottom: 0.02
  21502. }
  21503. },
  21504. },
  21505. [
  21506. {
  21507. name: "Normal",
  21508. height: math.unit(5 + 8 / 12, "feet"),
  21509. default: true
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(5 + 10 / 12, "feet"),
  21518. weight: math.unit(252, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/bruun/front.svg",
  21522. extra: 197 / 187,
  21523. bottom: 0.012
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(5 + 10 / 12, "feet"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21537. {
  21538. front: {
  21539. height: math.unit(6 + 10 / 12, "feet"),
  21540. weight: math.unit(255, "lb"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/alexeev/front.svg",
  21544. extra: 213 / 200,
  21545. bottom: 0.05
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Normal",
  21552. height: math.unit(6 + 10 / 12, "feet"),
  21553. default: true
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21559. {
  21560. front: {
  21561. height: math.unit(2 + 8 / 12, "feet"),
  21562. weight: math.unit(22, "lb"),
  21563. name: "Front",
  21564. image: {
  21565. source: "./media/characters/evelyn/front.svg",
  21566. extra: 208 / 180
  21567. }
  21568. },
  21569. },
  21570. [
  21571. {
  21572. name: "Normal",
  21573. height: math.unit(2 + 8 / 12, "feet"),
  21574. default: true
  21575. },
  21576. ]
  21577. ))
  21578. characterMakers.push(() => makeCharacter(
  21579. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21580. {
  21581. front: {
  21582. height: math.unit(5 + 9 / 12, "feet"),
  21583. weight: math.unit(139, "lb"),
  21584. name: "Front",
  21585. image: {
  21586. source: "./media/characters/inca/front.svg",
  21587. extra: 294 / 291,
  21588. bottom: 0.03
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Normal",
  21595. height: math.unit(5 + 9 / 12, "feet"),
  21596. default: true
  21597. },
  21598. ]
  21599. ))
  21600. characterMakers.push(() => makeCharacter(
  21601. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21602. {
  21603. front: {
  21604. height: math.unit(6 + 3 / 12, "feet"),
  21605. weight: math.unit(185, "lb"),
  21606. name: "Front",
  21607. image: {
  21608. source: "./media/characters/mera/front.svg",
  21609. extra: 291 / 277,
  21610. bottom: 0.03
  21611. }
  21612. },
  21613. },
  21614. [
  21615. {
  21616. name: "Normal",
  21617. height: math.unit(6 + 3 / 12, "feet"),
  21618. default: true
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21624. {
  21625. front: {
  21626. height: math.unit(6 + 7 / 12, "feet"),
  21627. weight: math.unit(160, "lb"),
  21628. name: "Front",
  21629. image: {
  21630. source: "./media/characters/ceres/front.svg",
  21631. extra: 1023 / 950,
  21632. bottom: 0.027
  21633. }
  21634. },
  21635. back: {
  21636. height: math.unit(6 + 7 / 12, "feet"),
  21637. weight: math.unit(160, "lb"),
  21638. name: "Back",
  21639. image: {
  21640. source: "./media/characters/ceres/back.svg",
  21641. extra: 1023 / 950
  21642. }
  21643. },
  21644. },
  21645. [
  21646. {
  21647. name: "Normal",
  21648. height: math.unit(6 + 7 / 12, "feet"),
  21649. default: true
  21650. },
  21651. ]
  21652. ))
  21653. characterMakers.push(() => makeCharacter(
  21654. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21655. {
  21656. front: {
  21657. height: math.unit(5 + 10 / 12, "feet"),
  21658. weight: math.unit(150, "lb"),
  21659. name: "Front",
  21660. image: {
  21661. source: "./media/characters/kris/front.svg",
  21662. extra: 885 / 803,
  21663. bottom: 0.03
  21664. }
  21665. },
  21666. },
  21667. [
  21668. {
  21669. name: "Normal",
  21670. height: math.unit(5 + 10 / 12, "feet"),
  21671. default: true
  21672. },
  21673. ]
  21674. ))
  21675. characterMakers.push(() => makeCharacter(
  21676. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21677. {
  21678. front: {
  21679. height: math.unit(7, "feet"),
  21680. weight: math.unit(120, "kg"),
  21681. name: "Front",
  21682. image: {
  21683. source: "./media/characters/taluthus/front.svg",
  21684. extra: 903 / 833,
  21685. bottom: 0.015
  21686. }
  21687. },
  21688. },
  21689. [
  21690. {
  21691. name: "Normal",
  21692. height: math.unit(7, "feet"),
  21693. default: true
  21694. },
  21695. {
  21696. name: "Macro",
  21697. height: math.unit(300, "feet")
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21703. {
  21704. front: {
  21705. height: math.unit(5 + 9 / 12, "feet"),
  21706. weight: math.unit(145, "lb"),
  21707. name: "Front",
  21708. image: {
  21709. source: "./media/characters/dawn/front.svg",
  21710. extra: 2094 / 2016,
  21711. bottom: 0.025
  21712. }
  21713. },
  21714. back: {
  21715. height: math.unit(5 + 9 / 12, "feet"),
  21716. weight: math.unit(160, "lb"),
  21717. name: "Back",
  21718. image: {
  21719. source: "./media/characters/dawn/back.svg",
  21720. extra: 2112 / 2080,
  21721. bottom: 0.005
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Normal",
  21728. height: math.unit(6 + 7 / 12, "feet"),
  21729. default: true
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21735. {
  21736. anthro: {
  21737. height: math.unit(8 + 3 / 12, "feet"),
  21738. weight: math.unit(450, "lb"),
  21739. name: "Anthro",
  21740. image: {
  21741. source: "./media/characters/arador/anthro.svg",
  21742. extra: 1835 / 1718,
  21743. bottom: 0.025
  21744. }
  21745. },
  21746. feral: {
  21747. height: math.unit(4, "feet"),
  21748. weight: math.unit(200, "lb"),
  21749. name: "Feral",
  21750. image: {
  21751. source: "./media/characters/arador/feral.svg",
  21752. extra: 1683 / 1514,
  21753. bottom: 0.07
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Normal",
  21760. height: math.unit(8 + 3 / 12, "feet")
  21761. },
  21762. {
  21763. name: "Macro",
  21764. height: math.unit(82.5, "feet"),
  21765. default: true
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(5 + 10 / 12, "feet"),
  21774. weight: math.unit(125, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/dharsi/front.svg",
  21778. extra: 716 / 630,
  21779. bottom: 0.035
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Nano",
  21786. height: math.unit(100, "nm")
  21787. },
  21788. {
  21789. name: "Micro",
  21790. height: math.unit(2, "inches")
  21791. },
  21792. {
  21793. name: "Normal",
  21794. height: math.unit(5 + 10 / 12, "feet"),
  21795. default: true
  21796. },
  21797. {
  21798. name: "Macro",
  21799. height: math.unit(1000, "feet")
  21800. },
  21801. {
  21802. name: "Megamacro",
  21803. height: math.unit(10, "miles")
  21804. },
  21805. {
  21806. name: "Gigamacro",
  21807. height: math.unit(3000, "miles")
  21808. },
  21809. {
  21810. name: "Teramacro",
  21811. height: math.unit(500000, "miles")
  21812. },
  21813. {
  21814. name: "Teramacro+",
  21815. height: math.unit(30, "galaxies")
  21816. },
  21817. ]
  21818. ))
  21819. characterMakers.push(() => makeCharacter(
  21820. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21821. {
  21822. front: {
  21823. height: math.unit(6, "feet"),
  21824. weight: math.unit(150, "lb"),
  21825. name: "Front",
  21826. image: {
  21827. source: "./media/characters/deathy/front.svg",
  21828. extra: 1552 / 1463,
  21829. bottom: 0.025
  21830. }
  21831. },
  21832. side: {
  21833. height: math.unit(6, "feet"),
  21834. weight: math.unit(150, "lb"),
  21835. name: "Side",
  21836. image: {
  21837. source: "./media/characters/deathy/side.svg",
  21838. extra: 1604 / 1455,
  21839. bottom: 0.025
  21840. }
  21841. },
  21842. back: {
  21843. height: math.unit(6, "feet"),
  21844. weight: math.unit(150, "lb"),
  21845. name: "Back",
  21846. image: {
  21847. source: "./media/characters/deathy/back.svg",
  21848. extra: 1580 / 1463,
  21849. bottom: 0.005
  21850. }
  21851. },
  21852. },
  21853. [
  21854. {
  21855. name: "Micro",
  21856. height: math.unit(5, "millimeters")
  21857. },
  21858. {
  21859. name: "Normal",
  21860. height: math.unit(6 + 5 / 12, "feet"),
  21861. default: true
  21862. },
  21863. ]
  21864. ))
  21865. characterMakers.push(() => makeCharacter(
  21866. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21867. {
  21868. front: {
  21869. height: math.unit(16, "feet"),
  21870. weight: math.unit(4000, "lb"),
  21871. name: "Front",
  21872. image: {
  21873. source: "./media/characters/juniper/front.svg",
  21874. bottom: 0.04
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Normal",
  21881. height: math.unit(16, "feet"),
  21882. default: true
  21883. },
  21884. ]
  21885. ))
  21886. characterMakers.push(() => makeCharacter(
  21887. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21888. {
  21889. front: {
  21890. height: math.unit(6, "feet"),
  21891. weight: math.unit(150, "lb"),
  21892. name: "Front",
  21893. image: {
  21894. source: "./media/characters/hipster/front.svg",
  21895. extra: 1312 / 1209,
  21896. bottom: 0.025
  21897. }
  21898. },
  21899. back: {
  21900. height: math.unit(6, "feet"),
  21901. weight: math.unit(150, "lb"),
  21902. name: "Back",
  21903. image: {
  21904. source: "./media/characters/hipster/back.svg",
  21905. extra: 1281 / 1196,
  21906. bottom: 0.01
  21907. }
  21908. },
  21909. },
  21910. [
  21911. {
  21912. name: "Micro",
  21913. height: math.unit(1, "mm")
  21914. },
  21915. {
  21916. name: "Normal",
  21917. height: math.unit(4, "inches"),
  21918. default: true
  21919. },
  21920. {
  21921. name: "Macro",
  21922. height: math.unit(500, "feet")
  21923. },
  21924. {
  21925. name: "Megamacro",
  21926. height: math.unit(1000, "miles")
  21927. },
  21928. ]
  21929. ))
  21930. characterMakers.push(() => makeCharacter(
  21931. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21932. {
  21933. front: {
  21934. height: math.unit(6, "feet"),
  21935. weight: math.unit(150, "lb"),
  21936. name: "Front",
  21937. image: {
  21938. source: "./media/characters/tendirmuldr/front.svg",
  21939. extra: 1878 / 1772,
  21940. bottom: 0.015
  21941. }
  21942. },
  21943. },
  21944. [
  21945. {
  21946. name: "Megamacro",
  21947. height: math.unit(1500, "miles"),
  21948. default: true
  21949. },
  21950. ]
  21951. ))
  21952. characterMakers.push(() => makeCharacter(
  21953. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21954. {
  21955. front: {
  21956. height: math.unit(14, "feet"),
  21957. weight: math.unit(12000, "lb"),
  21958. name: "Front",
  21959. image: {
  21960. source: "./media/characters/mort/front.svg",
  21961. extra: 365 / 318,
  21962. bottom: 0.01
  21963. }
  21964. },
  21965. side: {
  21966. height: math.unit(14, "feet"),
  21967. weight: math.unit(12000, "lb"),
  21968. name: "Side",
  21969. image: {
  21970. source: "./media/characters/mort/side.svg",
  21971. extra: 365 / 318,
  21972. bottom: 0.052
  21973. },
  21974. default: true
  21975. },
  21976. back: {
  21977. height: math.unit(14, "feet"),
  21978. weight: math.unit(12000, "lb"),
  21979. name: "Back",
  21980. image: {
  21981. source: "./media/characters/mort/back.svg",
  21982. extra: 371 / 332,
  21983. bottom: 0.18
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(14, "feet"),
  21991. default: true
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21997. {
  21998. front: {
  21999. height: math.unit(8, "feet"),
  22000. weight: math.unit(1, "ton"),
  22001. name: "Front",
  22002. image: {
  22003. source: "./media/characters/lycoa/front.svg",
  22004. extra: 1836/1728,
  22005. bottom: 81/1917
  22006. }
  22007. },
  22008. back: {
  22009. height: math.unit(8, "feet"),
  22010. weight: math.unit(1, "ton"),
  22011. name: "Back",
  22012. image: {
  22013. source: "./media/characters/lycoa/back.svg",
  22014. extra: 1785/1720,
  22015. bottom: 91/1876
  22016. }
  22017. },
  22018. head: {
  22019. height: math.unit(1.6243, "feet"),
  22020. name: "Head",
  22021. image: {
  22022. source: "./media/characters/lycoa/head.svg",
  22023. extra: 1011/782,
  22024. bottom: 0/1011
  22025. }
  22026. },
  22027. tailmaw: {
  22028. height: math.unit(1.9, "feet"),
  22029. name: "Tailmaw",
  22030. image: {
  22031. source: "./media/characters/lycoa/tailmaw.svg"
  22032. }
  22033. },
  22034. tentacles: {
  22035. height: math.unit(2.1, "feet"),
  22036. name: "Tentacles",
  22037. image: {
  22038. source: "./media/characters/lycoa/tentacles.svg"
  22039. }
  22040. },
  22041. dick: {
  22042. height: math.unit(1.73, "feet"),
  22043. name: "Dick",
  22044. image: {
  22045. source: "./media/characters/lycoa/dick.svg"
  22046. }
  22047. },
  22048. },
  22049. [
  22050. {
  22051. name: "Normal",
  22052. height: math.unit(8, "feet"),
  22053. default: true
  22054. },
  22055. {
  22056. name: "Macro",
  22057. height: math.unit(30, "feet")
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22063. {
  22064. front: {
  22065. height: math.unit(4 + 2 / 12, "feet"),
  22066. weight: math.unit(70, "lb"),
  22067. name: "Front",
  22068. image: {
  22069. source: "./media/characters/naldara/front.svg",
  22070. extra: 1664/1387,
  22071. bottom: 81/1745
  22072. },
  22073. form: "anthro",
  22074. default: true
  22075. },
  22076. naga: {
  22077. height: math.unit(20, "feet"),
  22078. weight: math.unit(15000, "kg"),
  22079. name: "Front",
  22080. image: {
  22081. source: "./media/characters/naldara/naga.svg",
  22082. extra: 1590/1396,
  22083. bottom: 285/1875
  22084. },
  22085. form: "naga",
  22086. default: true
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Normal",
  22092. height: math.unit(4 + 2 / 12, "feet"),
  22093. form: "anthro",
  22094. default: true
  22095. },
  22096. {
  22097. name: "Normal",
  22098. height: math.unit(20, "feet"),
  22099. form: "naga",
  22100. default: true
  22101. },
  22102. ],
  22103. {
  22104. "anthro": {
  22105. name: "Anthro",
  22106. default: true
  22107. },
  22108. "naga": {
  22109. name: "Naga"
  22110. }
  22111. }
  22112. ))
  22113. characterMakers.push(() => makeCharacter(
  22114. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22115. {
  22116. front: {
  22117. height: math.unit(13 + 7 / 12, "feet"),
  22118. weight: math.unit(1500, "lb"),
  22119. name: "Front",
  22120. image: {
  22121. source: "./media/characters/briar/front.svg",
  22122. extra: 1223/1157,
  22123. bottom: 123/1346
  22124. }
  22125. },
  22126. },
  22127. [
  22128. {
  22129. name: "Normal",
  22130. height: math.unit(13 + 7 / 12, "feet"),
  22131. default: true
  22132. },
  22133. ]
  22134. ))
  22135. characterMakers.push(() => makeCharacter(
  22136. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22137. {
  22138. side: {
  22139. height: math.unit(16, "feet"),
  22140. weight: math.unit(500, "lb"),
  22141. name: "Side",
  22142. image: {
  22143. source: "./media/characters/vanguard/side.svg",
  22144. extra: 1022/914,
  22145. bottom: 30/1052
  22146. }
  22147. },
  22148. sideAlt: {
  22149. height: math.unit(10, "feet"),
  22150. weight: math.unit(500, "lb"),
  22151. name: "Side (Alt)",
  22152. image: {
  22153. source: "./media/characters/vanguard/side-alt.svg",
  22154. extra: 502 / 425,
  22155. bottom: 0.087
  22156. }
  22157. },
  22158. },
  22159. [
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(17.71, "feet"),
  22163. default: true
  22164. },
  22165. ]
  22166. ))
  22167. characterMakers.push(() => makeCharacter(
  22168. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22169. {
  22170. front: {
  22171. height: math.unit(7.5, "feet"),
  22172. weight: math.unit(2, "lb"),
  22173. name: "Front",
  22174. image: {
  22175. source: "./media/characters/artemis/work-safe-front.svg",
  22176. extra: 1192 / 1075,
  22177. bottom: 0.07
  22178. },
  22179. form: "work-safe",
  22180. default: true
  22181. },
  22182. frontNsfw: {
  22183. height: math.unit(7.5, "feet"),
  22184. weight: math.unit(2, "lb"),
  22185. name: "Front",
  22186. image: {
  22187. source: "./media/characters/artemis/calibrating-front.svg",
  22188. extra: 1192 / 1075,
  22189. bottom: 0.07
  22190. },
  22191. form: "calibrating",
  22192. default: true
  22193. },
  22194. frontNsfwer: {
  22195. height: math.unit(7.5, "feet"),
  22196. weight: math.unit(2, "lb"),
  22197. name: "Front",
  22198. image: {
  22199. source: "./media/characters/artemis/oversize-load-front.svg",
  22200. extra: 1192 / 1075,
  22201. bottom: 0.07
  22202. },
  22203. form: "oversize-load",
  22204. default: true
  22205. },
  22206. side: {
  22207. height: math.unit(7.5, "feet"),
  22208. weight: math.unit(2, "lb"),
  22209. name: "Side",
  22210. image: {
  22211. source: "./media/characters/artemis/work-safe-side.svg",
  22212. extra: 1192 / 1075,
  22213. bottom: 0.07
  22214. },
  22215. form: "work-safe"
  22216. },
  22217. sideNsfw: {
  22218. height: math.unit(7.5, "feet"),
  22219. weight: math.unit(2, "lb"),
  22220. name: "Side",
  22221. image: {
  22222. source: "./media/characters/artemis/calibrating-side.svg",
  22223. extra: 1192 / 1075,
  22224. bottom: 0.07
  22225. },
  22226. form: "calibrating"
  22227. },
  22228. sideNsfwer: {
  22229. height: math.unit(7.5, "feet"),
  22230. weight: math.unit(2, "lb"),
  22231. name: "Side",
  22232. image: {
  22233. source: "./media/characters/artemis/oversize-load-side.svg",
  22234. extra: 1192 / 1075,
  22235. bottom: 0.07
  22236. },
  22237. form: "oversize-load"
  22238. },
  22239. maw: {
  22240. height: math.unit(1.1, "feet"),
  22241. name: "Maw",
  22242. image: {
  22243. source: "./media/characters/artemis/maw.svg"
  22244. },
  22245. form: "work-safe"
  22246. },
  22247. stomach: {
  22248. height: math.unit(0.95, "feet"),
  22249. name: "Stomach",
  22250. image: {
  22251. source: "./media/characters/artemis/stomach.svg"
  22252. },
  22253. form: "work-safe"
  22254. },
  22255. dickCanine: {
  22256. height: math.unit(1, "feet"),
  22257. name: "Dick (Canine)",
  22258. image: {
  22259. source: "./media/characters/artemis/dick-canine.svg"
  22260. },
  22261. form: "calibrating"
  22262. },
  22263. dickEquine: {
  22264. height: math.unit(0.85, "feet"),
  22265. name: "Dick (Equine)",
  22266. image: {
  22267. source: "./media/characters/artemis/dick-equine.svg"
  22268. },
  22269. form: "calibrating"
  22270. },
  22271. dickExotic: {
  22272. height: math.unit(0.85, "feet"),
  22273. name: "Dick (Exotic)",
  22274. image: {
  22275. source: "./media/characters/artemis/dick-exotic.svg"
  22276. },
  22277. form: "calibrating"
  22278. },
  22279. dickCanineBigger: {
  22280. height: math.unit(1 * 1.33, "feet"),
  22281. name: "Dick (Canine)",
  22282. image: {
  22283. source: "./media/characters/artemis/dick-canine.svg"
  22284. },
  22285. form: "oversize-load"
  22286. },
  22287. dickEquineBigger: {
  22288. height: math.unit(0.85 * 1.33, "feet"),
  22289. name: "Dick (Equine)",
  22290. image: {
  22291. source: "./media/characters/artemis/dick-equine.svg"
  22292. },
  22293. form: "oversize-load"
  22294. },
  22295. dickExoticBigger: {
  22296. height: math.unit(0.85 * 1.33, "feet"),
  22297. name: "Dick (Exotic)",
  22298. image: {
  22299. source: "./media/characters/artemis/dick-exotic.svg"
  22300. },
  22301. form: "oversize-load"
  22302. },
  22303. },
  22304. [
  22305. {
  22306. name: "Normal",
  22307. height: math.unit(7.5, "feet"),
  22308. form: "work-safe",
  22309. default: true
  22310. },
  22311. {
  22312. name: "Normal",
  22313. height: math.unit(7.5, "feet"),
  22314. form: "calibrating",
  22315. default: true
  22316. },
  22317. {
  22318. name: "Normal",
  22319. height: math.unit(7.5, "feet"),
  22320. form: "oversize-load",
  22321. default: true
  22322. },
  22323. {
  22324. name: "Enlarged",
  22325. height: math.unit(12, "feet"),
  22326. form: "work-safe",
  22327. },
  22328. {
  22329. name: "Enlarged",
  22330. height: math.unit(12, "feet"),
  22331. form: "calibrating",
  22332. },
  22333. {
  22334. name: "Enlarged",
  22335. height: math.unit(12, "feet"),
  22336. form: "oversize-load",
  22337. },
  22338. ],
  22339. {
  22340. "work-safe": {
  22341. name: "Work-Safe",
  22342. default: true
  22343. },
  22344. "calibrating": {
  22345. name: "Calibrating"
  22346. },
  22347. "oversize-load": {
  22348. name: "Oversize Load"
  22349. }
  22350. }
  22351. ))
  22352. characterMakers.push(() => makeCharacter(
  22353. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22354. {
  22355. front: {
  22356. height: math.unit(5 + 3 / 12, "feet"),
  22357. weight: math.unit(160, "lb"),
  22358. name: "Front",
  22359. image: {
  22360. source: "./media/characters/kira/front.svg",
  22361. extra: 906 / 786,
  22362. bottom: 0.01
  22363. }
  22364. },
  22365. back: {
  22366. height: math.unit(5 + 3 / 12, "feet"),
  22367. weight: math.unit(160, "lb"),
  22368. name: "Back",
  22369. image: {
  22370. source: "./media/characters/kira/back.svg",
  22371. extra: 882 / 757,
  22372. bottom: 0.005
  22373. }
  22374. },
  22375. frontDressed: {
  22376. height: math.unit(5 + 3 / 12, "feet"),
  22377. weight: math.unit(160, "lb"),
  22378. name: "Front (Dressed)",
  22379. image: {
  22380. source: "./media/characters/kira/front-dressed.svg",
  22381. extra: 906 / 786,
  22382. bottom: 0.01
  22383. }
  22384. },
  22385. beans: {
  22386. height: math.unit(0.92, "feet"),
  22387. name: "Beans",
  22388. image: {
  22389. source: "./media/characters/kira/beans.svg"
  22390. }
  22391. },
  22392. },
  22393. [
  22394. {
  22395. name: "Normal",
  22396. height: math.unit(5 + 3 / 12, "feet"),
  22397. default: true
  22398. },
  22399. ]
  22400. ))
  22401. characterMakers.push(() => makeCharacter(
  22402. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22403. {
  22404. front: {
  22405. height: math.unit(5 + 4 / 12, "feet"),
  22406. weight: math.unit(145, "lb"),
  22407. name: "Front",
  22408. image: {
  22409. source: "./media/characters/scramble/front.svg",
  22410. extra: 763 / 727,
  22411. bottom: 0.05
  22412. }
  22413. },
  22414. back: {
  22415. height: math.unit(5 + 4 / 12, "feet"),
  22416. weight: math.unit(145, "lb"),
  22417. name: "Back",
  22418. image: {
  22419. source: "./media/characters/scramble/back.svg",
  22420. extra: 826 / 737,
  22421. bottom: 0.002
  22422. }
  22423. },
  22424. },
  22425. [
  22426. {
  22427. name: "Normal",
  22428. height: math.unit(5 + 4 / 12, "feet"),
  22429. default: true
  22430. },
  22431. ]
  22432. ))
  22433. characterMakers.push(() => makeCharacter(
  22434. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22435. {
  22436. side: {
  22437. height: math.unit(6 + 2 / 12, "feet"),
  22438. weight: math.unit(190, "lb"),
  22439. name: "Side",
  22440. image: {
  22441. source: "./media/characters/biscuit/side.svg",
  22442. extra: 858 / 791,
  22443. bottom: 0.044
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Normal",
  22450. height: math.unit(6 + 2 / 12, "feet"),
  22451. default: true
  22452. },
  22453. ]
  22454. ))
  22455. characterMakers.push(() => makeCharacter(
  22456. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22457. {
  22458. front: {
  22459. height: math.unit(5 + 2 / 12, "feet"),
  22460. weight: math.unit(120, "lb"),
  22461. name: "Front",
  22462. image: {
  22463. source: "./media/characters/poffin/front.svg",
  22464. extra: 786 / 680,
  22465. bottom: 0.005
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(5 + 2 / 12, "feet"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22479. {
  22480. front: {
  22481. height: math.unit(6 + 3 / 12, "feet"),
  22482. weight: math.unit(519, "lb"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/dhari/front.svg",
  22486. extra: 1048 / 946,
  22487. bottom: 0.015
  22488. }
  22489. },
  22490. back: {
  22491. height: math.unit(6 + 3 / 12, "feet"),
  22492. weight: math.unit(519, "lb"),
  22493. name: "Back",
  22494. image: {
  22495. source: "./media/characters/dhari/back.svg",
  22496. extra: 1048 / 931,
  22497. bottom: 0.005
  22498. }
  22499. },
  22500. frontDressed: {
  22501. height: math.unit(6 + 3 / 12, "feet"),
  22502. weight: math.unit(519, "lb"),
  22503. name: "Front (Dressed)",
  22504. image: {
  22505. source: "./media/characters/dhari/front-dressed.svg",
  22506. extra: 1713 / 1546,
  22507. bottom: 0.02
  22508. }
  22509. },
  22510. backDressed: {
  22511. height: math.unit(6 + 3 / 12, "feet"),
  22512. weight: math.unit(519, "lb"),
  22513. name: "Back (Dressed)",
  22514. image: {
  22515. source: "./media/characters/dhari/back-dressed.svg",
  22516. extra: 1699 / 1537,
  22517. bottom: 0.01
  22518. }
  22519. },
  22520. maw: {
  22521. height: math.unit(0.95, "feet"),
  22522. name: "Maw",
  22523. image: {
  22524. source: "./media/characters/dhari/maw.svg"
  22525. }
  22526. },
  22527. wereFront: {
  22528. height: math.unit(12 + 8 / 12, "feet"),
  22529. weight: math.unit(4000, "lb"),
  22530. name: "Front (Were)",
  22531. image: {
  22532. source: "./media/characters/dhari/were-front.svg",
  22533. extra: 1065 / 969,
  22534. bottom: 0.015
  22535. }
  22536. },
  22537. wereBack: {
  22538. height: math.unit(12 + 8 / 12, "feet"),
  22539. weight: math.unit(4000, "lb"),
  22540. name: "Back (Were)",
  22541. image: {
  22542. source: "./media/characters/dhari/were-back.svg",
  22543. extra: 1065 / 969,
  22544. bottom: 0.012
  22545. }
  22546. },
  22547. wereMaw: {
  22548. height: math.unit(0.625, "meters"),
  22549. name: "Maw (Were)",
  22550. image: {
  22551. source: "./media/characters/dhari/were-maw.svg"
  22552. }
  22553. },
  22554. },
  22555. [
  22556. {
  22557. name: "Normal",
  22558. height: math.unit(6 + 3 / 12, "feet"),
  22559. default: true
  22560. },
  22561. ]
  22562. ))
  22563. characterMakers.push(() => makeCharacter(
  22564. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22565. {
  22566. anthro: {
  22567. height: math.unit(5 + 7 / 12, "feet"),
  22568. weight: math.unit(175, "lb"),
  22569. name: "Anthro",
  22570. image: {
  22571. source: "./media/characters/rena-dyne/anthro.svg",
  22572. extra: 1849 / 1785,
  22573. bottom: 0.005
  22574. }
  22575. },
  22576. taur: {
  22577. height: math.unit(15 + 6 / 12, "feet"),
  22578. weight: math.unit(8000, "lb"),
  22579. name: "Taur",
  22580. image: {
  22581. source: "./media/characters/rena-dyne/taur.svg",
  22582. extra: 2315 / 2234,
  22583. bottom: 0.033
  22584. }
  22585. },
  22586. },
  22587. [
  22588. {
  22589. name: "Normal",
  22590. height: math.unit(5 + 7 / 12, "feet"),
  22591. default: true
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22597. {
  22598. front: {
  22599. height: math.unit(8, "feet"),
  22600. weight: math.unit(600, "lb"),
  22601. name: "Front",
  22602. image: {
  22603. source: "./media/characters/weremeep/front.svg",
  22604. extra: 970/849,
  22605. bottom: 7/977
  22606. }
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Normal",
  22612. height: math.unit(8, "feet"),
  22613. default: true
  22614. },
  22615. {
  22616. name: "Lorg",
  22617. height: math.unit(12, "feet")
  22618. },
  22619. {
  22620. name: "Oh Lawd She Comin'",
  22621. height: math.unit(20, "feet")
  22622. },
  22623. ]
  22624. ))
  22625. characterMakers.push(() => makeCharacter(
  22626. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22627. {
  22628. front: {
  22629. height: math.unit(4, "feet"),
  22630. weight: math.unit(90, "lb"),
  22631. name: "Front",
  22632. image: {
  22633. source: "./media/characters/reza/front.svg",
  22634. extra: 1183 / 1111,
  22635. bottom: 0.017
  22636. }
  22637. },
  22638. back: {
  22639. height: math.unit(4, "feet"),
  22640. weight: math.unit(90, "lb"),
  22641. name: "Back",
  22642. image: {
  22643. source: "./media/characters/reza/back.svg",
  22644. extra: 1183 / 1111,
  22645. bottom: 0.01
  22646. }
  22647. },
  22648. drake: {
  22649. height: math.unit(30, "feet"),
  22650. weight: math.unit(246960, "lb"),
  22651. name: "Drake",
  22652. image: {
  22653. source: "./media/characters/reza/drake.svg",
  22654. extra: 2350 / 2024,
  22655. bottom: 60.7 / 2403
  22656. }
  22657. },
  22658. },
  22659. [
  22660. {
  22661. name: "Normal",
  22662. height: math.unit(4, "feet"),
  22663. default: true
  22664. },
  22665. ]
  22666. ))
  22667. characterMakers.push(() => makeCharacter(
  22668. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22669. {
  22670. side: {
  22671. height: math.unit(15, "feet"),
  22672. weight: math.unit(14, "tons"),
  22673. name: "Side",
  22674. image: {
  22675. source: "./media/characters/athea/side.svg",
  22676. extra: 960 / 540,
  22677. bottom: 0.003
  22678. }
  22679. },
  22680. sitting: {
  22681. height: math.unit(6 * 2.85, "feet"),
  22682. weight: math.unit(14, "tons"),
  22683. name: "Sitting",
  22684. image: {
  22685. source: "./media/characters/athea/sitting.svg",
  22686. extra: 621 / 581,
  22687. bottom: 0.075
  22688. }
  22689. },
  22690. maw: {
  22691. height: math.unit(7.59498031496063, "feet"),
  22692. name: "Maw",
  22693. image: {
  22694. source: "./media/characters/athea/maw.svg"
  22695. }
  22696. },
  22697. },
  22698. [
  22699. {
  22700. name: "Lap Cat",
  22701. height: math.unit(2.5, "feet")
  22702. },
  22703. {
  22704. name: "Minimacro",
  22705. height: math.unit(15, "feet"),
  22706. default: true
  22707. },
  22708. {
  22709. name: "Macro",
  22710. height: math.unit(120, "feet")
  22711. },
  22712. {
  22713. name: "Macro+",
  22714. height: math.unit(640, "feet")
  22715. },
  22716. {
  22717. name: "Colossus",
  22718. height: math.unit(2.2, "miles")
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22724. {
  22725. front: {
  22726. height: math.unit(8 + 8 / 12, "feet"),
  22727. weight: math.unit(130, "kg"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/seroko/front.svg",
  22731. extra: 1385 / 1280,
  22732. bottom: 0.025
  22733. }
  22734. },
  22735. back: {
  22736. height: math.unit(8 + 8 / 12, "feet"),
  22737. weight: math.unit(130, "kg"),
  22738. name: "Back",
  22739. image: {
  22740. source: "./media/characters/seroko/back.svg",
  22741. extra: 1369 / 1238,
  22742. bottom: 0.018
  22743. }
  22744. },
  22745. frontDressed: {
  22746. height: math.unit(8 + 8 / 12, "feet"),
  22747. weight: math.unit(130, "kg"),
  22748. name: "Front (Dressed)",
  22749. image: {
  22750. source: "./media/characters/seroko/front-dressed.svg",
  22751. extra: 1366 / 1275,
  22752. bottom: 0.03
  22753. }
  22754. },
  22755. },
  22756. [
  22757. {
  22758. name: "Normal",
  22759. height: math.unit(8 + 8 / 12, "feet"),
  22760. default: true
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(5.5, "feet"),
  22769. weight: math.unit(160, "lb"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/quatzi/front.svg",
  22773. extra: 2346 / 2242,
  22774. bottom: 0.015
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Normal",
  22781. height: math.unit(5.5, "feet"),
  22782. default: true
  22783. },
  22784. {
  22785. name: "Big",
  22786. height: math.unit(7.7, "feet")
  22787. },
  22788. ]
  22789. ))
  22790. characterMakers.push(() => makeCharacter(
  22791. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22792. {
  22793. front: {
  22794. height: math.unit(5 + 11 / 12, "feet"),
  22795. weight: math.unit(180, "lb"),
  22796. name: "Front",
  22797. image: {
  22798. source: "./media/characters/sen/front.svg",
  22799. extra: 1321 / 1254,
  22800. bottom: 0.015
  22801. }
  22802. },
  22803. side: {
  22804. height: math.unit(5 + 11 / 12, "feet"),
  22805. weight: math.unit(180, "lb"),
  22806. name: "Side",
  22807. image: {
  22808. source: "./media/characters/sen/side.svg",
  22809. extra: 1321 / 1254,
  22810. bottom: 0.007
  22811. }
  22812. },
  22813. back: {
  22814. height: math.unit(5 + 11 / 12, "feet"),
  22815. weight: math.unit(180, "lb"),
  22816. name: "Back",
  22817. image: {
  22818. source: "./media/characters/sen/back.svg",
  22819. extra: 1321 / 1254
  22820. }
  22821. },
  22822. },
  22823. [
  22824. {
  22825. name: "Normal",
  22826. height: math.unit(5 + 11 / 12, "feet"),
  22827. default: true
  22828. },
  22829. ]
  22830. ))
  22831. characterMakers.push(() => makeCharacter(
  22832. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22833. {
  22834. front: {
  22835. height: math.unit(166.6, "cm"),
  22836. weight: math.unit(66.6, "kg"),
  22837. name: "Front",
  22838. image: {
  22839. source: "./media/characters/fruity/front.svg",
  22840. extra: 1510 / 1386,
  22841. bottom: 0.04
  22842. }
  22843. },
  22844. back: {
  22845. height: math.unit(166.6, "cm"),
  22846. weight: math.unit(66.6, "lb"),
  22847. name: "Back",
  22848. image: {
  22849. source: "./media/characters/fruity/back.svg",
  22850. extra: 1563 / 1435,
  22851. bottom: 0.005
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Normal",
  22858. height: math.unit(166.6, "cm"),
  22859. default: true
  22860. },
  22861. {
  22862. name: "Demonic",
  22863. height: math.unit(166.6, "feet")
  22864. },
  22865. ]
  22866. ))
  22867. characterMakers.push(() => makeCharacter(
  22868. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22869. {
  22870. side: {
  22871. height: math.unit(10, "feet"),
  22872. weight: math.unit(500, "lb"),
  22873. name: "Side",
  22874. image: {
  22875. source: "./media/characters/zost/side.svg",
  22876. extra: 2870/2533,
  22877. bottom: 252/3122
  22878. }
  22879. },
  22880. mawFront: {
  22881. height: math.unit(1.08, "meters"),
  22882. name: "Maw (Front)",
  22883. image: {
  22884. source: "./media/characters/zost/maw-front.svg"
  22885. }
  22886. },
  22887. mawSide: {
  22888. height: math.unit(2.66, "feet"),
  22889. name: "Maw (Side)",
  22890. image: {
  22891. source: "./media/characters/zost/maw-side.svg"
  22892. }
  22893. },
  22894. wingspan: {
  22895. height: math.unit(7.4, "feet"),
  22896. name: "Wingspan",
  22897. image: {
  22898. source: "./media/characters/zost/wingspan.svg"
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Normal",
  22905. height: math.unit(10, "feet"),
  22906. default: true
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(5 + 4 / 12, "feet"),
  22915. weight: math.unit(120, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/luci/front.svg",
  22919. extra: 1985 / 1884,
  22920. bottom: 0.04
  22921. }
  22922. },
  22923. back: {
  22924. height: math.unit(5 + 4 / 12, "feet"),
  22925. weight: math.unit(120, "lb"),
  22926. name: "Back",
  22927. image: {
  22928. source: "./media/characters/luci/back.svg",
  22929. extra: 1892 / 1791,
  22930. bottom: 0.002
  22931. }
  22932. },
  22933. },
  22934. [
  22935. {
  22936. name: "Normal",
  22937. height: math.unit(5 + 4 / 12, "feet"),
  22938. default: true
  22939. },
  22940. ]
  22941. ))
  22942. characterMakers.push(() => makeCharacter(
  22943. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22944. {
  22945. front: {
  22946. height: math.unit(1500, "feet"),
  22947. weight: math.unit(3.8e6, "tons"),
  22948. name: "Front",
  22949. image: {
  22950. source: "./media/characters/2th/front.svg",
  22951. extra: 3489 / 3350,
  22952. bottom: 0.1
  22953. }
  22954. },
  22955. foot: {
  22956. height: math.unit(461, "feet"),
  22957. name: "Foot",
  22958. image: {
  22959. source: "./media/characters/2th/foot.svg"
  22960. }
  22961. },
  22962. },
  22963. [
  22964. {
  22965. name: "\"Micro\"",
  22966. height: math.unit(15 + 7 / 12, "feet")
  22967. },
  22968. {
  22969. name: "Normal",
  22970. height: math.unit(1500, "feet"),
  22971. default: true
  22972. },
  22973. {
  22974. name: "Macro",
  22975. height: math.unit(5000, "feet")
  22976. },
  22977. {
  22978. name: "Megamacro",
  22979. height: math.unit(15, "miles")
  22980. },
  22981. {
  22982. name: "Gigamacro",
  22983. height: math.unit(4000, "miles")
  22984. },
  22985. {
  22986. name: "Galactic",
  22987. height: math.unit(50, "AU")
  22988. },
  22989. ]
  22990. ))
  22991. characterMakers.push(() => makeCharacter(
  22992. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22993. {
  22994. front: {
  22995. height: math.unit(5 + 6 / 12, "feet"),
  22996. weight: math.unit(220, "lb"),
  22997. name: "Front",
  22998. image: {
  22999. source: "./media/characters/amethyst/front.svg",
  23000. extra: 2078 / 2040,
  23001. bottom: 0.045
  23002. }
  23003. },
  23004. back: {
  23005. height: math.unit(5 + 6 / 12, "feet"),
  23006. weight: math.unit(220, "lb"),
  23007. name: "Back",
  23008. image: {
  23009. source: "./media/characters/amethyst/back.svg",
  23010. extra: 2021 / 1989,
  23011. bottom: 0.02
  23012. }
  23013. },
  23014. },
  23015. [
  23016. {
  23017. name: "Normal",
  23018. height: math.unit(5 + 6 / 12, "feet"),
  23019. default: true
  23020. },
  23021. ]
  23022. ))
  23023. characterMakers.push(() => makeCharacter(
  23024. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23025. {
  23026. front: {
  23027. height: math.unit(4 + 11 / 12, "feet"),
  23028. weight: math.unit(120, "lb"),
  23029. name: "Front",
  23030. image: {
  23031. source: "./media/characters/yumi-akiyama/front.svg",
  23032. extra: 1327 / 1235,
  23033. bottom: 0.02
  23034. }
  23035. },
  23036. back: {
  23037. height: math.unit(4 + 11 / 12, "feet"),
  23038. weight: math.unit(120, "lb"),
  23039. name: "Back",
  23040. image: {
  23041. source: "./media/characters/yumi-akiyama/back.svg",
  23042. extra: 1287 / 1245,
  23043. bottom: 0.002
  23044. }
  23045. },
  23046. },
  23047. [
  23048. {
  23049. name: "Galactic",
  23050. height: math.unit(50, "galaxies"),
  23051. default: true
  23052. },
  23053. {
  23054. name: "Universal",
  23055. height: math.unit(100, "universes")
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(8, "feet"),
  23064. weight: math.unit(500, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/rifter-yrmori/front.svg",
  23068. extra: 1180 / 1125,
  23069. bottom: 0.02
  23070. }
  23071. },
  23072. back: {
  23073. height: math.unit(8, "feet"),
  23074. weight: math.unit(500, "lb"),
  23075. name: "Back",
  23076. image: {
  23077. source: "./media/characters/rifter-yrmori/back.svg",
  23078. extra: 1190 / 1145,
  23079. bottom: 0.001
  23080. }
  23081. },
  23082. wings: {
  23083. height: math.unit(7.75, "feet"),
  23084. weight: math.unit(500, "lb"),
  23085. name: "Wings",
  23086. image: {
  23087. source: "./media/characters/rifter-yrmori/wings.svg",
  23088. extra: 1357 / 1285
  23089. }
  23090. },
  23091. maw: {
  23092. height: math.unit(0.8, "feet"),
  23093. name: "Maw",
  23094. image: {
  23095. source: "./media/characters/rifter-yrmori/maw.svg"
  23096. }
  23097. },
  23098. mawfront: {
  23099. height: math.unit(1.45, "feet"),
  23100. name: "Maw (Front)",
  23101. image: {
  23102. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23103. }
  23104. },
  23105. },
  23106. [
  23107. {
  23108. name: "Normal",
  23109. height: math.unit(8, "feet"),
  23110. default: true
  23111. },
  23112. {
  23113. name: "Macro",
  23114. height: math.unit(42, "meters")
  23115. },
  23116. ]
  23117. ))
  23118. characterMakers.push(() => makeCharacter(
  23119. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23120. {
  23121. were: {
  23122. height: math.unit(25 + 6 / 12, "feet"),
  23123. weight: math.unit(10000, "lb"),
  23124. name: "Were",
  23125. image: {
  23126. source: "./media/characters/tahajin/were.svg",
  23127. extra: 801 / 770,
  23128. bottom: 0.042
  23129. }
  23130. },
  23131. aquatic: {
  23132. height: math.unit(6 + 4 / 12, "feet"),
  23133. weight: math.unit(160, "lb"),
  23134. name: "Aquatic",
  23135. image: {
  23136. source: "./media/characters/tahajin/aquatic.svg",
  23137. extra: 572 / 542,
  23138. bottom: 0.04
  23139. }
  23140. },
  23141. chow: {
  23142. height: math.unit(8 + 11 / 12, "feet"),
  23143. weight: math.unit(450, "lb"),
  23144. name: "Chow",
  23145. image: {
  23146. source: "./media/characters/tahajin/chow.svg",
  23147. extra: 660 / 640,
  23148. bottom: 0.015
  23149. }
  23150. },
  23151. demiNaga: {
  23152. height: math.unit(6 + 8 / 12, "feet"),
  23153. weight: math.unit(300, "lb"),
  23154. name: "Demi Naga",
  23155. image: {
  23156. source: "./media/characters/tahajin/demi-naga.svg",
  23157. extra: 643 / 615,
  23158. bottom: 0.1
  23159. }
  23160. },
  23161. data: {
  23162. height: math.unit(5, "inches"),
  23163. weight: math.unit(0.1, "lb"),
  23164. name: "Data",
  23165. image: {
  23166. source: "./media/characters/tahajin/data.svg"
  23167. }
  23168. },
  23169. fluu: {
  23170. height: math.unit(5 + 7 / 12, "feet"),
  23171. weight: math.unit(140, "lb"),
  23172. name: "Fluu",
  23173. image: {
  23174. source: "./media/characters/tahajin/fluu.svg",
  23175. extra: 628 / 592,
  23176. bottom: 0.02
  23177. }
  23178. },
  23179. starWarrior: {
  23180. height: math.unit(4 + 5 / 12, "feet"),
  23181. weight: math.unit(50, "lb"),
  23182. name: "Star Warrior",
  23183. image: {
  23184. source: "./media/characters/tahajin/star-warrior.svg"
  23185. }
  23186. },
  23187. },
  23188. [
  23189. {
  23190. name: "Normal",
  23191. height: math.unit(25 + 6 / 12, "feet"),
  23192. default: true
  23193. },
  23194. ]
  23195. ))
  23196. characterMakers.push(() => makeCharacter(
  23197. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23198. {
  23199. front: {
  23200. height: math.unit(8, "feet"),
  23201. weight: math.unit(350, "lb"),
  23202. name: "Front",
  23203. image: {
  23204. source: "./media/characters/gabira/front.svg",
  23205. extra: 1261/1154,
  23206. bottom: 51/1312
  23207. }
  23208. },
  23209. back: {
  23210. height: math.unit(8, "feet"),
  23211. weight: math.unit(350, "lb"),
  23212. name: "Back",
  23213. image: {
  23214. source: "./media/characters/gabira/back.svg",
  23215. extra: 1265/1163,
  23216. bottom: 46/1311
  23217. }
  23218. },
  23219. head: {
  23220. height: math.unit(2.85, "feet"),
  23221. name: "Head",
  23222. image: {
  23223. source: "./media/characters/gabira/head.svg"
  23224. }
  23225. },
  23226. },
  23227. [
  23228. {
  23229. name: "Normal",
  23230. height: math.unit(8, "feet"),
  23231. default: true
  23232. },
  23233. ]
  23234. ))
  23235. characterMakers.push(() => makeCharacter(
  23236. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23237. {
  23238. front: {
  23239. height: math.unit(5 + 3 / 12, "feet"),
  23240. weight: math.unit(137, "lb"),
  23241. name: "Front",
  23242. image: {
  23243. source: "./media/characters/sasha-katraine/front.svg",
  23244. extra: 1745/1694,
  23245. bottom: 37/1782
  23246. }
  23247. },
  23248. back: {
  23249. height: math.unit(5 + 3 / 12, "feet"),
  23250. weight: math.unit(137, "lb"),
  23251. name: "Back",
  23252. image: {
  23253. source: "./media/characters/sasha-katraine/back.svg",
  23254. extra: 1776/1699,
  23255. bottom: 26/1802
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Micro",
  23262. height: math.unit(5, "inches")
  23263. },
  23264. {
  23265. name: "Normal",
  23266. height: math.unit(5 + 3 / 12, "feet"),
  23267. default: true
  23268. },
  23269. ]
  23270. ))
  23271. characterMakers.push(() => makeCharacter(
  23272. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23273. {
  23274. side: {
  23275. height: math.unit(4, "inches"),
  23276. weight: math.unit(200, "grams"),
  23277. name: "Side",
  23278. image: {
  23279. source: "./media/characters/der/side.svg",
  23280. extra: 719 / 400,
  23281. bottom: 30.6 / 749.9187
  23282. }
  23283. },
  23284. },
  23285. [
  23286. {
  23287. name: "Micro",
  23288. height: math.unit(4, "inches"),
  23289. default: true
  23290. },
  23291. ]
  23292. ))
  23293. characterMakers.push(() => makeCharacter(
  23294. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23295. {
  23296. side: {
  23297. height: math.unit(30, "meters"),
  23298. weight: math.unit(700, "tonnes"),
  23299. name: "Side",
  23300. image: {
  23301. source: "./media/characters/fixerdragon/side.svg",
  23302. extra: (1293.0514 - 116.03) / 1106.86,
  23303. bottom: 116.03 / 1293.0514
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Planck",
  23310. height: math.unit(1.6e-35, "meters")
  23311. },
  23312. {
  23313. name: "Micro",
  23314. height: math.unit(0.4, "meters")
  23315. },
  23316. {
  23317. name: "Normal",
  23318. height: math.unit(30, "meters"),
  23319. default: true
  23320. },
  23321. {
  23322. name: "Megamacro",
  23323. height: math.unit(1.2, "megameters")
  23324. },
  23325. {
  23326. name: "Teramacro",
  23327. height: math.unit(130, "terameters")
  23328. },
  23329. {
  23330. name: "Yottamacro",
  23331. height: math.unit(6200, "yottameters")
  23332. },
  23333. ]
  23334. ));
  23335. characterMakers.push(() => makeCharacter(
  23336. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23337. {
  23338. front: {
  23339. height: math.unit(8, "feet"),
  23340. weight: math.unit(250, "lb"),
  23341. name: "Front",
  23342. image: {
  23343. source: "./media/characters/kite/front.svg",
  23344. extra: 2796 / 2659,
  23345. bottom: 0.002
  23346. }
  23347. },
  23348. },
  23349. [
  23350. {
  23351. name: "Normal",
  23352. height: math.unit(8, "feet"),
  23353. default: true
  23354. },
  23355. {
  23356. name: "Macro",
  23357. height: math.unit(360, "feet")
  23358. },
  23359. {
  23360. name: "Megamacro",
  23361. height: math.unit(1500, "feet")
  23362. },
  23363. ]
  23364. ))
  23365. characterMakers.push(() => makeCharacter(
  23366. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23367. {
  23368. front: {
  23369. height: math.unit(5 + 11/12, "feet"),
  23370. weight: math.unit(170, "lb"),
  23371. name: "Front",
  23372. image: {
  23373. source: "./media/characters/poojawa-vynar/front.svg",
  23374. extra: 1735/1585,
  23375. bottom: 96/1831
  23376. }
  23377. },
  23378. back: {
  23379. height: math.unit(5 + 11/12, "feet"),
  23380. weight: math.unit(170, "lb"),
  23381. name: "Back",
  23382. image: {
  23383. source: "./media/characters/poojawa-vynar/back.svg",
  23384. extra: 1749/1607,
  23385. bottom: 28/1777
  23386. }
  23387. },
  23388. male: {
  23389. height: math.unit(5 + 11/12, "feet"),
  23390. weight: math.unit(170, "lb"),
  23391. name: "Male",
  23392. image: {
  23393. source: "./media/characters/poojawa-vynar/male.svg",
  23394. extra: 1855/1713,
  23395. bottom: 63/1918
  23396. }
  23397. },
  23398. taur: {
  23399. height: math.unit(5 + 11/12, "feet"),
  23400. weight: math.unit(170, "lb"),
  23401. name: "Taur",
  23402. image: {
  23403. source: "./media/characters/poojawa-vynar/taur.svg",
  23404. extra: 1151/1059,
  23405. bottom: 356/1507
  23406. }
  23407. },
  23408. frontDressed: {
  23409. height: math.unit(5 + 11/12, "feet"),
  23410. weight: math.unit(170, "lb"),
  23411. name: "Front (Dressed)",
  23412. image: {
  23413. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23414. extra: 1735/1585,
  23415. bottom: 96/1831
  23416. }
  23417. },
  23418. backDressed: {
  23419. height: math.unit(5 + 11/12, "feet"),
  23420. weight: math.unit(170, "lb"),
  23421. name: "Back (Dressed)",
  23422. image: {
  23423. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23424. extra: 1749/1607,
  23425. bottom: 28/1777
  23426. }
  23427. },
  23428. maleDressed: {
  23429. height: math.unit(5 + 11/12, "feet"),
  23430. weight: math.unit(170, "lb"),
  23431. name: "Male (Dressed)",
  23432. image: {
  23433. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23434. extra: 1855/1713,
  23435. bottom: 63/1918
  23436. }
  23437. },
  23438. taurDressed: {
  23439. height: math.unit(5 + 11/12, "feet"),
  23440. weight: math.unit(170, "lb"),
  23441. name: "Taur (Dressed)",
  23442. image: {
  23443. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23444. extra: 1151/1059,
  23445. bottom: 356/1507
  23446. }
  23447. },
  23448. maw: {
  23449. height: math.unit(1.46, "feet"),
  23450. name: "Maw",
  23451. image: {
  23452. source: "./media/characters/poojawa-vynar/maw.svg"
  23453. }
  23454. },
  23455. head: {
  23456. height: math.unit(2.34, "feet"),
  23457. name: "Head",
  23458. image: {
  23459. source: "./media/characters/poojawa-vynar/head.svg"
  23460. }
  23461. },
  23462. paw: {
  23463. height: math.unit(1.61, "feet"),
  23464. name: "Paw",
  23465. image: {
  23466. source: "./media/characters/poojawa-vynar/paw.svg"
  23467. }
  23468. },
  23469. pawToering: {
  23470. height: math.unit(1.72, "feet"),
  23471. name: "Paw (Toering)",
  23472. image: {
  23473. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23474. }
  23475. },
  23476. toering: {
  23477. height: math.unit(2.9, "inches"),
  23478. name: "Toering",
  23479. image: {
  23480. source: "./media/characters/poojawa-vynar/toering.svg"
  23481. }
  23482. },
  23483. shaft: {
  23484. height: math.unit(0.625, "feet"),
  23485. name: "Shaft",
  23486. image: {
  23487. source: "./media/characters/poojawa-vynar/shaft.svg"
  23488. }
  23489. },
  23490. spade: {
  23491. height: math.unit(0.42, "feet"),
  23492. name: "Spade",
  23493. image: {
  23494. source: "./media/characters/poojawa-vynar/spade.svg"
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Shortstack",
  23501. height: math.unit(4, "feet")
  23502. },
  23503. {
  23504. name: "Normal",
  23505. height: math.unit(5 + 11 / 12, "feet"),
  23506. default: true
  23507. },
  23508. {
  23509. name: "Tauric",
  23510. height: math.unit(4, "meters")
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23516. {
  23517. front: {
  23518. height: math.unit(293, "meters"),
  23519. weight: math.unit(70400, "tons"),
  23520. name: "Front",
  23521. image: {
  23522. source: "./media/characters/violette/front.svg",
  23523. extra: 1227 / 1180,
  23524. bottom: 0.005
  23525. }
  23526. },
  23527. back: {
  23528. height: math.unit(293, "meters"),
  23529. weight: math.unit(70400, "tons"),
  23530. name: "Back",
  23531. image: {
  23532. source: "./media/characters/violette/back.svg",
  23533. extra: 1227 / 1180,
  23534. bottom: 0.005
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Macro",
  23541. height: math.unit(293, "meters"),
  23542. default: true
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23548. {
  23549. front: {
  23550. height: math.unit(1050, "feet"),
  23551. weight: math.unit(200000, "tons"),
  23552. name: "Front",
  23553. image: {
  23554. source: "./media/characters/alessandra/front.svg",
  23555. extra: 960 / 912,
  23556. bottom: 0.06
  23557. }
  23558. },
  23559. },
  23560. [
  23561. {
  23562. name: "Macro",
  23563. height: math.unit(1050, "feet")
  23564. },
  23565. {
  23566. name: "Macro+",
  23567. height: math.unit(900, "meters"),
  23568. default: true
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23574. {
  23575. front: {
  23576. height: math.unit(5, "feet"),
  23577. weight: math.unit(187, "lb"),
  23578. name: "Front",
  23579. image: {
  23580. source: "./media/characters/person/front.svg",
  23581. extra: 3087 / 2945,
  23582. bottom: 91 / 3181
  23583. }
  23584. },
  23585. },
  23586. [
  23587. {
  23588. name: "Micro",
  23589. height: math.unit(3, "inches")
  23590. },
  23591. {
  23592. name: "Normal",
  23593. height: math.unit(5, "feet"),
  23594. default: true
  23595. },
  23596. {
  23597. name: "Macro",
  23598. height: math.unit(90, "feet")
  23599. },
  23600. {
  23601. name: "Max Size",
  23602. height: math.unit(280, "feet")
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23608. {
  23609. front: {
  23610. height: math.unit(4.5, "meters"),
  23611. weight: math.unit(3200, "lb"),
  23612. name: "Front",
  23613. image: {
  23614. source: "./media/characters/ty/front.svg",
  23615. extra: 1038 / 960,
  23616. bottom: 31.156 / 1068
  23617. }
  23618. },
  23619. back: {
  23620. height: math.unit(4.5, "meters"),
  23621. weight: math.unit(3200, "lb"),
  23622. name: "Back",
  23623. image: {
  23624. source: "./media/characters/ty/back.svg",
  23625. extra: 1044 / 966,
  23626. bottom: 7.48 / 1049
  23627. }
  23628. },
  23629. },
  23630. [
  23631. {
  23632. name: "Normal",
  23633. height: math.unit(4.5, "meters"),
  23634. default: true
  23635. },
  23636. ]
  23637. ))
  23638. characterMakers.push(() => makeCharacter(
  23639. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23640. {
  23641. front: {
  23642. height: math.unit(5 + 4 / 12, "feet"),
  23643. weight: math.unit(115, "lb"),
  23644. name: "Front",
  23645. image: {
  23646. source: "./media/characters/rocky/front.svg",
  23647. extra: 1012 / 975,
  23648. bottom: 54 / 1066
  23649. }
  23650. },
  23651. },
  23652. [
  23653. {
  23654. name: "Normal",
  23655. height: math.unit(5 + 4 / 12, "feet"),
  23656. default: true
  23657. },
  23658. ]
  23659. ))
  23660. characterMakers.push(() => makeCharacter(
  23661. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23662. {
  23663. upright: {
  23664. height: math.unit(6, "meters"),
  23665. weight: math.unit(4000, "kg"),
  23666. name: "Upright",
  23667. image: {
  23668. source: "./media/characters/ruin/upright.svg",
  23669. extra: 668 / 661,
  23670. bottom: 42 / 799.8396
  23671. }
  23672. },
  23673. },
  23674. [
  23675. {
  23676. name: "Normal",
  23677. height: math.unit(6, "meters"),
  23678. default: true
  23679. },
  23680. ]
  23681. ))
  23682. characterMakers.push(() => makeCharacter(
  23683. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23684. {
  23685. front: {
  23686. height: math.unit(5, "feet"),
  23687. weight: math.unit(106, "lb"),
  23688. name: "Front",
  23689. image: {
  23690. source: "./media/characters/robin/front.svg",
  23691. extra: 862 / 799,
  23692. bottom: 42.4 / 914.8856
  23693. }
  23694. },
  23695. },
  23696. [
  23697. {
  23698. name: "Normal",
  23699. height: math.unit(5, "feet"),
  23700. default: true
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23706. {
  23707. side: {
  23708. height: math.unit(3, "feet"),
  23709. weight: math.unit(225, "lb"),
  23710. name: "Side",
  23711. image: {
  23712. source: "./media/characters/saian/side.svg",
  23713. extra: 566 / 356,
  23714. bottom: 79.7 / 643
  23715. }
  23716. },
  23717. maw: {
  23718. height: math.unit(2.85, "feet"),
  23719. name: "Maw",
  23720. image: {
  23721. source: "./media/characters/saian/maw.svg"
  23722. }
  23723. },
  23724. },
  23725. [
  23726. {
  23727. name: "Normal",
  23728. height: math.unit(3, "feet"),
  23729. default: true
  23730. },
  23731. ]
  23732. ))
  23733. characterMakers.push(() => makeCharacter(
  23734. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23735. {
  23736. side: {
  23737. height: math.unit(8, "feet"),
  23738. weight: math.unit(300, "lb"),
  23739. name: "Side",
  23740. image: {
  23741. source: "./media/characters/equus-silvermane/side.svg",
  23742. extra: 2176 / 2050,
  23743. bottom: 65.7 / 2245
  23744. }
  23745. },
  23746. front: {
  23747. height: math.unit(8, "feet"),
  23748. weight: math.unit(300, "lb"),
  23749. name: "Front",
  23750. image: {
  23751. source: "./media/characters/equus-silvermane/front.svg",
  23752. extra: 4633 / 4400,
  23753. bottom: 71.3 / 4706.915
  23754. }
  23755. },
  23756. sideStepping: {
  23757. height: math.unit(8, "feet"),
  23758. weight: math.unit(300, "lb"),
  23759. name: "Side (Stepping)",
  23760. image: {
  23761. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23762. extra: 1968 / 1860,
  23763. bottom: 16.4 / 1989
  23764. }
  23765. },
  23766. },
  23767. [
  23768. {
  23769. name: "Normal",
  23770. height: math.unit(8, "feet")
  23771. },
  23772. {
  23773. name: "Minimacro",
  23774. height: math.unit(75, "feet"),
  23775. default: true
  23776. },
  23777. {
  23778. name: "Macro",
  23779. height: math.unit(150, "feet")
  23780. },
  23781. {
  23782. name: "Macro+",
  23783. height: math.unit(1000, "feet")
  23784. },
  23785. {
  23786. name: "Megamacro",
  23787. height: math.unit(1, "mile")
  23788. },
  23789. ]
  23790. ))
  23791. characterMakers.push(() => makeCharacter(
  23792. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23793. {
  23794. side: {
  23795. height: math.unit(20, "feet"),
  23796. weight: math.unit(30000, "kg"),
  23797. name: "Side",
  23798. image: {
  23799. source: "./media/characters/windar/side.svg",
  23800. extra: 1491 / 1248,
  23801. bottom: 82.56 / 1568
  23802. }
  23803. },
  23804. },
  23805. [
  23806. {
  23807. name: "Normal",
  23808. height: math.unit(20, "feet"),
  23809. default: true
  23810. },
  23811. ]
  23812. ))
  23813. characterMakers.push(() => makeCharacter(
  23814. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23815. {
  23816. side: {
  23817. height: math.unit(15.66, "feet"),
  23818. weight: math.unit(150, "lb"),
  23819. name: "Side",
  23820. image: {
  23821. source: "./media/characters/melody/side.svg",
  23822. extra: 1097 / 944,
  23823. bottom: 11.8 / 1109
  23824. }
  23825. },
  23826. sideOutfit: {
  23827. height: math.unit(15.66, "feet"),
  23828. weight: math.unit(150, "lb"),
  23829. name: "Side (Outfit)",
  23830. image: {
  23831. source: "./media/characters/melody/side-outfit.svg",
  23832. extra: 1097 / 944,
  23833. bottom: 11.8 / 1109
  23834. }
  23835. },
  23836. },
  23837. [
  23838. {
  23839. name: "Normal",
  23840. height: math.unit(15.66, "feet"),
  23841. default: true
  23842. },
  23843. ]
  23844. ))
  23845. characterMakers.push(() => makeCharacter(
  23846. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23847. {
  23848. armoredFront: {
  23849. height: math.unit(8, "feet"),
  23850. weight: math.unit(325, "lb"),
  23851. name: "Front",
  23852. image: {
  23853. source: "./media/characters/windera/armored-front.svg",
  23854. extra: 1830/1598,
  23855. bottom: 151/1981
  23856. },
  23857. form: "armored",
  23858. default: true
  23859. },
  23860. macroFront: {
  23861. height: math.unit(70, "feet"),
  23862. weight: math.unit(315453, "lb"),
  23863. name: "Front",
  23864. image: {
  23865. source: "./media/characters/windera/macro-front.svg",
  23866. extra: 963/883,
  23867. bottom: 23/986
  23868. },
  23869. form: "macro",
  23870. default: true
  23871. },
  23872. },
  23873. [
  23874. {
  23875. name: "Normal",
  23876. height: math.unit(8, "feet"),
  23877. default: true,
  23878. form: "armored"
  23879. },
  23880. {
  23881. name: "Normal",
  23882. height: math.unit(70, "feet"),
  23883. default: true,
  23884. form: "macro"
  23885. },
  23886. ],
  23887. {
  23888. "armored": {
  23889. name: "Armored",
  23890. default: true
  23891. },
  23892. "macro": {
  23893. name: "Macro",
  23894. },
  23895. }
  23896. ))
  23897. characterMakers.push(() => makeCharacter(
  23898. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23899. {
  23900. front: {
  23901. height: math.unit(28.75, "feet"),
  23902. weight: math.unit(2000, "kg"),
  23903. name: "Front",
  23904. image: {
  23905. source: "./media/characters/sonear/front.svg",
  23906. extra: 1041.1 / 964.9,
  23907. bottom: 53.7 / 1096.6
  23908. }
  23909. },
  23910. },
  23911. [
  23912. {
  23913. name: "Normal",
  23914. height: math.unit(28.75, "feet"),
  23915. default: true
  23916. },
  23917. ]
  23918. ))
  23919. characterMakers.push(() => makeCharacter(
  23920. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23921. {
  23922. side: {
  23923. height: math.unit(25.5, "feet"),
  23924. weight: math.unit(23000, "kg"),
  23925. name: "Side",
  23926. image: {
  23927. source: "./media/characters/kanara/side.svg"
  23928. }
  23929. },
  23930. },
  23931. [
  23932. {
  23933. name: "Normal",
  23934. height: math.unit(25.5, "feet"),
  23935. default: true
  23936. },
  23937. ]
  23938. ))
  23939. characterMakers.push(() => makeCharacter(
  23940. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23941. {
  23942. side: {
  23943. height: math.unit(10, "feet"),
  23944. weight: math.unit(1000, "kg"),
  23945. name: "Side",
  23946. image: {
  23947. source: "./media/characters/ereus/side.svg",
  23948. extra: 1157 / 959,
  23949. bottom: 153 / 1312.5
  23950. }
  23951. },
  23952. },
  23953. [
  23954. {
  23955. name: "Normal",
  23956. height: math.unit(10, "feet"),
  23957. default: true
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23963. {
  23964. side: {
  23965. height: math.unit(4.5, "feet"),
  23966. weight: math.unit(500, "lb"),
  23967. name: "Side",
  23968. image: {
  23969. source: "./media/characters/e-ter/side.svg",
  23970. extra: 1550 / 1248,
  23971. bottom: 146 / 1694
  23972. }
  23973. },
  23974. },
  23975. [
  23976. {
  23977. name: "Normal",
  23978. height: math.unit(4.5, "feet"),
  23979. default: true
  23980. },
  23981. ]
  23982. ))
  23983. characterMakers.push(() => makeCharacter(
  23984. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23985. {
  23986. side: {
  23987. height: math.unit(9.7, "feet"),
  23988. weight: math.unit(4000, "kg"),
  23989. name: "Side",
  23990. image: {
  23991. source: "./media/characters/yamie/side.svg"
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Normal",
  23998. height: math.unit(9.7, "feet"),
  23999. default: true
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24005. {
  24006. front: {
  24007. height: math.unit(50, "feet"),
  24008. weight: math.unit(50000, "kg"),
  24009. name: "Front",
  24010. image: {
  24011. source: "./media/characters/anders/front.svg",
  24012. extra: 570 / 539,
  24013. bottom: 14.7 / 586.7
  24014. }
  24015. },
  24016. },
  24017. [
  24018. {
  24019. name: "Large",
  24020. height: math.unit(50, "feet")
  24021. },
  24022. {
  24023. name: "Macro",
  24024. height: math.unit(2000, "feet"),
  24025. default: true
  24026. },
  24027. {
  24028. name: "Megamacro",
  24029. height: math.unit(12, "miles")
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24035. {
  24036. front: {
  24037. height: math.unit(7 + 2 / 12, "feet"),
  24038. weight: math.unit(300, "lb"),
  24039. name: "Front",
  24040. image: {
  24041. source: "./media/characters/reban/front.svg",
  24042. extra: 1287/1212,
  24043. bottom: 148/1435
  24044. }
  24045. },
  24046. head: {
  24047. height: math.unit(1.95, "feet"),
  24048. name: "Head",
  24049. image: {
  24050. source: "./media/characters/reban/head.svg"
  24051. }
  24052. },
  24053. maw: {
  24054. height: math.unit(0.95, "feet"),
  24055. name: "Maw",
  24056. image: {
  24057. source: "./media/characters/reban/maw.svg"
  24058. }
  24059. },
  24060. foot: {
  24061. height: math.unit(1.65, "feet"),
  24062. name: "Foot",
  24063. image: {
  24064. source: "./media/characters/reban/foot.svg"
  24065. }
  24066. },
  24067. dick: {
  24068. height: math.unit(7 / 5, "feet"),
  24069. name: "Dick",
  24070. image: {
  24071. source: "./media/characters/reban/dick.svg"
  24072. }
  24073. },
  24074. },
  24075. [
  24076. {
  24077. name: "Natural Height",
  24078. height: math.unit(7 + 2 / 12, "feet")
  24079. },
  24080. {
  24081. name: "Macro",
  24082. height: math.unit(500, "feet"),
  24083. default: true
  24084. },
  24085. {
  24086. name: "Canon Height",
  24087. height: math.unit(50, "AU")
  24088. },
  24089. ]
  24090. ))
  24091. characterMakers.push(() => makeCharacter(
  24092. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24093. {
  24094. front: {
  24095. height: math.unit(6, "feet"),
  24096. weight: math.unit(150, "lb"),
  24097. name: "Front",
  24098. image: {
  24099. source: "./media/characters/terrance-keayes/front.svg",
  24100. extra: 1.005,
  24101. bottom: 151 / 1615
  24102. }
  24103. },
  24104. side: {
  24105. height: math.unit(6, "feet"),
  24106. weight: math.unit(150, "lb"),
  24107. name: "Side",
  24108. image: {
  24109. source: "./media/characters/terrance-keayes/side.svg",
  24110. extra: 1.005,
  24111. bottom: 129.4 / 1544
  24112. }
  24113. },
  24114. back: {
  24115. height: math.unit(6, "feet"),
  24116. weight: math.unit(150, "lb"),
  24117. name: "Back",
  24118. image: {
  24119. source: "./media/characters/terrance-keayes/back.svg",
  24120. extra: 1.005,
  24121. bottom: 58.4 / 1557.3
  24122. }
  24123. },
  24124. dick: {
  24125. height: math.unit(6 * 0.208, "feet"),
  24126. name: "Dick",
  24127. image: {
  24128. source: "./media/characters/terrance-keayes/dick.svg"
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Canon Height",
  24135. height: math.unit(35, "miles"),
  24136. default: true
  24137. },
  24138. ]
  24139. ))
  24140. characterMakers.push(() => makeCharacter(
  24141. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24142. {
  24143. front: {
  24144. height: math.unit(6, "feet"),
  24145. weight: math.unit(150, "lb"),
  24146. name: "Front",
  24147. image: {
  24148. source: "./media/characters/ofelia/front.svg",
  24149. extra: 1130/1117,
  24150. bottom: 91/1221
  24151. }
  24152. },
  24153. back: {
  24154. height: math.unit(6, "feet"),
  24155. weight: math.unit(150, "lb"),
  24156. name: "Back",
  24157. image: {
  24158. source: "./media/characters/ofelia/back.svg",
  24159. extra: 1172/1159,
  24160. bottom: 28/1200
  24161. }
  24162. },
  24163. maw: {
  24164. height: math.unit(1, "feet"),
  24165. name: "Maw",
  24166. image: {
  24167. source: "./media/characters/ofelia/maw.svg"
  24168. }
  24169. },
  24170. foot: {
  24171. height: math.unit(1.949, "feet"),
  24172. name: "Foot",
  24173. image: {
  24174. source: "./media/characters/ofelia/foot.svg"
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Canon Height",
  24181. height: math.unit(2000, "miles"),
  24182. default: true
  24183. },
  24184. ]
  24185. ))
  24186. characterMakers.push(() => makeCharacter(
  24187. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24188. {
  24189. front: {
  24190. height: math.unit(6, "feet"),
  24191. weight: math.unit(150, "lb"),
  24192. name: "Front",
  24193. image: {
  24194. source: "./media/characters/samuel/front.svg",
  24195. extra: 265 / 258,
  24196. bottom: 2 / 266.1566
  24197. }
  24198. },
  24199. },
  24200. [
  24201. {
  24202. name: "Macro",
  24203. height: math.unit(100, "feet"),
  24204. default: true
  24205. },
  24206. {
  24207. name: "Full Size",
  24208. height: math.unit(1000, "miles")
  24209. },
  24210. ]
  24211. ))
  24212. characterMakers.push(() => makeCharacter(
  24213. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24214. {
  24215. front: {
  24216. height: math.unit(6, "feet"),
  24217. weight: math.unit(300, "lb"),
  24218. name: "Front",
  24219. image: {
  24220. source: "./media/characters/beishir-kiel/front.svg",
  24221. extra: 569 / 547,
  24222. bottom: 41.9 / 609
  24223. }
  24224. },
  24225. maw: {
  24226. height: math.unit(6 * 0.202, "feet"),
  24227. name: "Maw",
  24228. image: {
  24229. source: "./media/characters/beishir-kiel/maw.svg"
  24230. }
  24231. },
  24232. },
  24233. [
  24234. {
  24235. name: "Macro",
  24236. height: math.unit(300, "feet"),
  24237. default: true
  24238. },
  24239. ]
  24240. ))
  24241. characterMakers.push(() => makeCharacter(
  24242. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24243. {
  24244. front: {
  24245. height: math.unit(5 + 7/12, "feet"),
  24246. weight: math.unit(120, "lb"),
  24247. name: "Front",
  24248. image: {
  24249. source: "./media/characters/logan-grey/front.svg",
  24250. extra: 1836/1738,
  24251. bottom: 108/1944
  24252. }
  24253. },
  24254. back: {
  24255. height: math.unit(5 + 7/12, "feet"),
  24256. weight: math.unit(120, "lb"),
  24257. name: "Back",
  24258. image: {
  24259. source: "./media/characters/logan-grey/back.svg",
  24260. extra: 1880/1794,
  24261. bottom: 24/1904
  24262. }
  24263. },
  24264. frontSfw: {
  24265. height: math.unit(5 + 7/12, "feet"),
  24266. weight: math.unit(120, "lb"),
  24267. name: "Front (SFW)",
  24268. image: {
  24269. source: "./media/characters/logan-grey/front-sfw.svg",
  24270. extra: 1836/1738,
  24271. bottom: 108/1944
  24272. }
  24273. },
  24274. backSfw: {
  24275. height: math.unit(5 + 7/12, "feet"),
  24276. weight: math.unit(120, "lb"),
  24277. name: "Back (SFW)",
  24278. image: {
  24279. source: "./media/characters/logan-grey/back-sfw.svg",
  24280. extra: 1880/1794,
  24281. bottom: 24/1904
  24282. }
  24283. },
  24284. hands: {
  24285. height: math.unit(0.84, "feet"),
  24286. name: "Hands",
  24287. image: {
  24288. source: "./media/characters/logan-grey/hands.svg"
  24289. }
  24290. },
  24291. paws: {
  24292. height: math.unit(0.72, "feet"),
  24293. name: "Paws",
  24294. image: {
  24295. source: "./media/characters/logan-grey/paws.svg"
  24296. }
  24297. },
  24298. cock: {
  24299. height: math.unit(1.45, "feet"),
  24300. name: "Cock",
  24301. image: {
  24302. source: "./media/characters/logan-grey/cock.svg"
  24303. }
  24304. },
  24305. cockAlt: {
  24306. height: math.unit(1.437, "feet"),
  24307. name: "Cock (alt)",
  24308. image: {
  24309. source: "./media/characters/logan-grey/cock-alt.svg"
  24310. }
  24311. },
  24312. },
  24313. [
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(5 + 8 / 12, "feet")
  24317. },
  24318. {
  24319. name: "The 500 Foot Femboy",
  24320. height: math.unit(500, "feet"),
  24321. default: true
  24322. },
  24323. {
  24324. name: "Megmacro",
  24325. height: math.unit(20, "miles")
  24326. },
  24327. ]
  24328. ))
  24329. characterMakers.push(() => makeCharacter(
  24330. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24331. {
  24332. front: {
  24333. height: math.unit(8 + 2 / 12, "feet"),
  24334. weight: math.unit(275, "lb"),
  24335. name: "Front",
  24336. image: {
  24337. source: "./media/characters/draganta/front.svg",
  24338. extra: 1177 / 1135,
  24339. bottom: 33.46 / 1212.1
  24340. }
  24341. },
  24342. },
  24343. [
  24344. {
  24345. name: "Normal",
  24346. height: math.unit(8 + 6 / 12, "feet"),
  24347. default: true
  24348. },
  24349. {
  24350. name: "Macro",
  24351. height: math.unit(150, "feet")
  24352. },
  24353. {
  24354. name: "Megamacro",
  24355. height: math.unit(1000, "miles")
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24361. {
  24362. front: {
  24363. height: math.unit(1.72, "m"),
  24364. weight: math.unit(80, "lb"),
  24365. name: "Front",
  24366. image: {
  24367. source: "./media/characters/voski/front.svg",
  24368. extra: 2076.22 / 2022.4,
  24369. bottom: 102.7 / 2177.3866
  24370. }
  24371. },
  24372. frontFlaccid: {
  24373. height: math.unit(1.72, "m"),
  24374. weight: math.unit(80, "lb"),
  24375. name: "Front (Flaccid)",
  24376. image: {
  24377. source: "./media/characters/voski/front-flaccid.svg",
  24378. extra: 2076.22 / 2022.4,
  24379. bottom: 102.7 / 2177.3866
  24380. }
  24381. },
  24382. frontErect: {
  24383. height: math.unit(1.72, "m"),
  24384. weight: math.unit(80, "lb"),
  24385. name: "Front (Erect)",
  24386. image: {
  24387. source: "./media/characters/voski/front-erect.svg",
  24388. extra: 2076.22 / 2022.4,
  24389. bottom: 102.7 / 2177.3866
  24390. }
  24391. },
  24392. back: {
  24393. height: math.unit(1.72, "m"),
  24394. weight: math.unit(80, "lb"),
  24395. name: "Back",
  24396. image: {
  24397. source: "./media/characters/voski/back.svg",
  24398. extra: 2104 / 2051,
  24399. bottom: 10.45 / 2113.63
  24400. }
  24401. },
  24402. },
  24403. [
  24404. {
  24405. name: "Normal",
  24406. height: math.unit(1.72, "m")
  24407. },
  24408. {
  24409. name: "Macro",
  24410. height: math.unit(55, "m"),
  24411. default: true
  24412. },
  24413. {
  24414. name: "Macro+",
  24415. height: math.unit(300, "m")
  24416. },
  24417. {
  24418. name: "Macro++",
  24419. height: math.unit(700, "m")
  24420. },
  24421. {
  24422. name: "Macro+++",
  24423. height: math.unit(4500, "m")
  24424. },
  24425. {
  24426. name: "Macro++++",
  24427. height: math.unit(45, "km")
  24428. },
  24429. {
  24430. name: "Macro+++++",
  24431. height: math.unit(1220, "km")
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24437. {
  24438. front: {
  24439. height: math.unit(2.3, "m"),
  24440. weight: math.unit(304, "kg"),
  24441. name: "Front",
  24442. image: {
  24443. source: "./media/characters/icowom-lee/front.svg",
  24444. extra: 985 / 955,
  24445. bottom: 25.4 / 1012
  24446. }
  24447. },
  24448. fronttentacles: {
  24449. height: math.unit(2.3, "m"),
  24450. weight: math.unit(304, "kg"),
  24451. name: "Front-tentacles",
  24452. image: {
  24453. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24454. extra: 985 / 955,
  24455. bottom: 25.4 / 1012
  24456. }
  24457. },
  24458. back: {
  24459. height: math.unit(2.3, "m"),
  24460. weight: math.unit(304, "kg"),
  24461. name: "Back",
  24462. image: {
  24463. source: "./media/characters/icowom-lee/back.svg",
  24464. extra: 975 / 954,
  24465. bottom: 9.5 / 985
  24466. }
  24467. },
  24468. backtentacles: {
  24469. height: math.unit(2.3, "m"),
  24470. weight: math.unit(304, "kg"),
  24471. name: "Back-tentacles",
  24472. image: {
  24473. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24474. extra: 975 / 954,
  24475. bottom: 9.5 / 985
  24476. }
  24477. },
  24478. frontDressed: {
  24479. height: math.unit(2.3, "m"),
  24480. weight: math.unit(304, "kg"),
  24481. name: "Front (Dressed)",
  24482. image: {
  24483. source: "./media/characters/icowom-lee/front-dressed.svg",
  24484. extra: 3076 / 2933,
  24485. bottom: 51.4 / 3125.1889
  24486. }
  24487. },
  24488. rump: {
  24489. height: math.unit(0.776, "meters"),
  24490. name: "Rump",
  24491. image: {
  24492. source: "./media/characters/icowom-lee/rump.svg"
  24493. }
  24494. },
  24495. genitals: {
  24496. height: math.unit(0.78, "meters"),
  24497. name: "Genitals",
  24498. image: {
  24499. source: "./media/characters/icowom-lee/genitals.svg"
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Normal",
  24506. height: math.unit(2.3, "meters"),
  24507. default: true
  24508. },
  24509. {
  24510. name: "Macro",
  24511. height: math.unit(94, "meters"),
  24512. default: true
  24513. },
  24514. ]
  24515. ))
  24516. characterMakers.push(() => makeCharacter(
  24517. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24518. {
  24519. front: {
  24520. height: math.unit(22, "meters"),
  24521. weight: math.unit(21000, "kg"),
  24522. name: "Front",
  24523. image: {
  24524. source: "./media/characters/shock-diamond/front.svg",
  24525. extra: 2204 / 2053,
  24526. bottom: 65 / 2239.47
  24527. }
  24528. },
  24529. frontNude: {
  24530. height: math.unit(22, "meters"),
  24531. weight: math.unit(21000, "kg"),
  24532. name: "Front (Nude)",
  24533. image: {
  24534. source: "./media/characters/shock-diamond/front-nude.svg",
  24535. extra: 2514 / 2285,
  24536. bottom: 13 / 2527.56
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "Normal",
  24543. height: math.unit(3, "meters")
  24544. },
  24545. {
  24546. name: "Macro",
  24547. height: math.unit(22, "meters"),
  24548. default: true
  24549. },
  24550. ]
  24551. ))
  24552. characterMakers.push(() => makeCharacter(
  24553. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24554. {
  24555. front: {
  24556. height: math.unit(5 + 4/12, "feet"),
  24557. weight: math.unit(125, "lb"),
  24558. name: "Front",
  24559. image: {
  24560. source: "./media/characters/rory/front.svg",
  24561. extra: 1790/1681,
  24562. bottom: 66/1856
  24563. }
  24564. },
  24565. back: {
  24566. height: math.unit(5 + 4/12, "feet"),
  24567. weight: math.unit(125, "lb"),
  24568. name: "Back",
  24569. image: {
  24570. source: "./media/characters/rory/back.svg",
  24571. extra: 1805/1690,
  24572. bottom: 56/1861
  24573. }
  24574. },
  24575. frontDressed: {
  24576. height: math.unit(5 + 4/12, "feet"),
  24577. weight: math.unit(125, "lb"),
  24578. name: "Front (Dressed)",
  24579. image: {
  24580. source: "./media/characters/rory/front-dressed.svg",
  24581. extra: 1790/1681,
  24582. bottom: 66/1856
  24583. }
  24584. },
  24585. backDressed: {
  24586. height: math.unit(5 + 4/12, "feet"),
  24587. weight: math.unit(125, "lb"),
  24588. name: "Back (Dressed)",
  24589. image: {
  24590. source: "./media/characters/rory/back-dressed.svg",
  24591. extra: 1805/1690,
  24592. bottom: 56/1861
  24593. }
  24594. },
  24595. frontNsfw: {
  24596. height: math.unit(5 + 4/12, "feet"),
  24597. weight: math.unit(125, "lb"),
  24598. name: "Front (NSFW)",
  24599. image: {
  24600. source: "./media/characters/rory/front-nsfw.svg",
  24601. extra: 1790/1681,
  24602. bottom: 66/1856
  24603. }
  24604. },
  24605. backNsfw: {
  24606. height: math.unit(5 + 4/12, "feet"),
  24607. weight: math.unit(125, "lb"),
  24608. name: "Back (NSFW)",
  24609. image: {
  24610. source: "./media/characters/rory/back-nsfw.svg",
  24611. extra: 1805/1690,
  24612. bottom: 56/1861
  24613. }
  24614. },
  24615. dick: {
  24616. height: math.unit(0.8, "feet"),
  24617. name: "Dick",
  24618. image: {
  24619. source: "./media/characters/rory/dick.svg"
  24620. }
  24621. },
  24622. },
  24623. [
  24624. {
  24625. name: "Micro",
  24626. height: math.unit(3, "inches")
  24627. },
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(5 + 4/12, "feet"),
  24631. default: true
  24632. },
  24633. {
  24634. name: "Macro",
  24635. height: math.unit(90, "feet")
  24636. },
  24637. {
  24638. name: "Supercharged",
  24639. height: math.unit(270, "feet")
  24640. },
  24641. ]
  24642. ))
  24643. characterMakers.push(() => makeCharacter(
  24644. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24645. {
  24646. front: {
  24647. height: math.unit(5 + 9 / 12, "feet"),
  24648. weight: math.unit(190, "lb"),
  24649. name: "Front",
  24650. image: {
  24651. source: "./media/characters/sprisk/front.svg",
  24652. extra: 1225 / 1180,
  24653. bottom: 42.7 / 1266.4
  24654. }
  24655. },
  24656. frontNsfw: {
  24657. height: math.unit(5 + 9 / 12, "feet"),
  24658. weight: math.unit(190, "lb"),
  24659. name: "Front (NSFW)",
  24660. image: {
  24661. source: "./media/characters/sprisk/front-nsfw.svg",
  24662. extra: 1225 / 1180,
  24663. bottom: 42.7 / 1266.4
  24664. }
  24665. },
  24666. back: {
  24667. height: math.unit(5 + 9 / 12, "feet"),
  24668. weight: math.unit(190, "lb"),
  24669. name: "Back",
  24670. image: {
  24671. source: "./media/characters/sprisk/back.svg",
  24672. extra: 1247 / 1200,
  24673. bottom: 5.6 / 1253.04
  24674. }
  24675. },
  24676. },
  24677. [
  24678. {
  24679. name: "Tiny",
  24680. height: math.unit(2, "inches")
  24681. },
  24682. {
  24683. name: "Normal",
  24684. height: math.unit(5 + 9 / 12, "feet"),
  24685. default: true
  24686. },
  24687. {
  24688. name: "Mini Macro",
  24689. height: math.unit(18, "feet")
  24690. },
  24691. {
  24692. name: "Macro",
  24693. height: math.unit(100, "feet")
  24694. },
  24695. {
  24696. name: "MACRO",
  24697. height: math.unit(50, "miles")
  24698. },
  24699. {
  24700. name: "M A C R O",
  24701. height: math.unit(300, "miles")
  24702. },
  24703. ]
  24704. ))
  24705. characterMakers.push(() => makeCharacter(
  24706. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24707. {
  24708. side: {
  24709. height: math.unit(15.6, "meters"),
  24710. weight: math.unit(700000, "kg"),
  24711. name: "Side",
  24712. image: {
  24713. source: "./media/characters/bunsen/side.svg",
  24714. extra: 1644 / 358
  24715. }
  24716. },
  24717. foot: {
  24718. height: math.unit(1.611 * 1644 / 358, "meter"),
  24719. name: "Foot",
  24720. image: {
  24721. source: "./media/characters/bunsen/foot.svg"
  24722. }
  24723. },
  24724. },
  24725. [
  24726. {
  24727. name: "Small",
  24728. height: math.unit(10, "feet")
  24729. },
  24730. {
  24731. name: "Normal",
  24732. height: math.unit(15.6, "meters"),
  24733. default: true
  24734. },
  24735. ]
  24736. ))
  24737. characterMakers.push(() => makeCharacter(
  24738. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24739. {
  24740. front: {
  24741. height: math.unit(4 + 11 / 12, "feet"),
  24742. weight: math.unit(140, "lb"),
  24743. name: "Front",
  24744. image: {
  24745. source: "./media/characters/sesh/front.svg",
  24746. extra: 3420 / 3231,
  24747. bottom: 72 / 3949.5
  24748. }
  24749. },
  24750. },
  24751. [
  24752. {
  24753. name: "Normal",
  24754. height: math.unit(4 + 11 / 12, "feet")
  24755. },
  24756. {
  24757. name: "Grown",
  24758. height: math.unit(15, "feet"),
  24759. default: true
  24760. },
  24761. {
  24762. name: "Macro",
  24763. height: math.unit(1500, "feet")
  24764. },
  24765. {
  24766. name: "Megamacro",
  24767. height: math.unit(30, "miles")
  24768. },
  24769. {
  24770. name: "Continental",
  24771. height: math.unit(3000, "miles")
  24772. },
  24773. {
  24774. name: "Gravity Mass",
  24775. height: math.unit(300000, "miles")
  24776. },
  24777. {
  24778. name: "Planet Buster",
  24779. height: math.unit(30000000, "miles")
  24780. },
  24781. {
  24782. name: "Big",
  24783. height: math.unit(3000000000, "miles")
  24784. },
  24785. ]
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24789. {
  24790. front: {
  24791. height: math.unit(9, "feet"),
  24792. weight: math.unit(350, "lb"),
  24793. name: "Front",
  24794. image: {
  24795. source: "./media/characters/pepper/front.svg",
  24796. extra: 1448 / 1312,
  24797. bottom: 9.4 / 1457.88
  24798. }
  24799. },
  24800. back: {
  24801. height: math.unit(9, "feet"),
  24802. weight: math.unit(350, "lb"),
  24803. name: "Back",
  24804. image: {
  24805. source: "./media/characters/pepper/back.svg",
  24806. extra: 1423 / 1300,
  24807. bottom: 4.6 / 1429
  24808. }
  24809. },
  24810. maw: {
  24811. height: math.unit(0.932, "feet"),
  24812. name: "Maw",
  24813. image: {
  24814. source: "./media/characters/pepper/maw.svg"
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "Normal",
  24821. height: math.unit(9, "feet"),
  24822. default: true
  24823. },
  24824. ]
  24825. ))
  24826. characterMakers.push(() => makeCharacter(
  24827. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24828. {
  24829. front: {
  24830. height: math.unit(6, "feet"),
  24831. weight: math.unit(150, "lb"),
  24832. name: "Front",
  24833. image: {
  24834. source: "./media/characters/maelstrom/front.svg",
  24835. extra: 2100 / 1883,
  24836. bottom: 94 / 2196.7
  24837. }
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Less Kaiju",
  24843. height: math.unit(200, "feet")
  24844. },
  24845. {
  24846. name: "Kaiju",
  24847. height: math.unit(400, "feet"),
  24848. default: true
  24849. },
  24850. {
  24851. name: "Kaiju-er",
  24852. height: math.unit(600, "feet")
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24858. {
  24859. front: {
  24860. height: math.unit(6 + 5 / 12, "feet"),
  24861. weight: math.unit(180, "lb"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/lexir/front.svg",
  24865. extra: 180 / 172,
  24866. bottom: 12 / 192
  24867. }
  24868. },
  24869. back: {
  24870. height: math.unit(6 + 5 / 12, "feet"),
  24871. weight: math.unit(180, "lb"),
  24872. name: "Back",
  24873. image: {
  24874. source: "./media/characters/lexir/back.svg",
  24875. extra: 1273/1201,
  24876. bottom: 39/1312
  24877. }
  24878. },
  24879. },
  24880. [
  24881. {
  24882. name: "Very Smal",
  24883. height: math.unit(1, "nm")
  24884. },
  24885. {
  24886. name: "Normal",
  24887. height: math.unit(6 + 5 / 12, "feet"),
  24888. default: true
  24889. },
  24890. {
  24891. name: "Macro",
  24892. height: math.unit(1, "mile")
  24893. },
  24894. {
  24895. name: "Megamacro",
  24896. height: math.unit(50, "miles")
  24897. },
  24898. ]
  24899. ))
  24900. characterMakers.push(() => makeCharacter(
  24901. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24902. {
  24903. front: {
  24904. height: math.unit(1.5, "meters"),
  24905. weight: math.unit(100, "lb"),
  24906. name: "Front",
  24907. image: {
  24908. source: "./media/characters/maksio/front.svg",
  24909. extra: 1549 / 1531,
  24910. bottom: 123.7 / 1674.5429
  24911. }
  24912. },
  24913. back: {
  24914. height: math.unit(1.5, "meters"),
  24915. weight: math.unit(100, "lb"),
  24916. name: "Back",
  24917. image: {
  24918. source: "./media/characters/maksio/back.svg",
  24919. extra: 1541 / 1509,
  24920. bottom: 97 / 1639
  24921. }
  24922. },
  24923. hand: {
  24924. height: math.unit(0.621, "feet"),
  24925. name: "Hand",
  24926. image: {
  24927. source: "./media/characters/maksio/hand.svg"
  24928. }
  24929. },
  24930. foot: {
  24931. height: math.unit(1.611, "feet"),
  24932. name: "Foot",
  24933. image: {
  24934. source: "./media/characters/maksio/foot.svg"
  24935. }
  24936. },
  24937. },
  24938. [
  24939. {
  24940. name: "Shrunken",
  24941. height: math.unit(10, "cm")
  24942. },
  24943. {
  24944. name: "Normal",
  24945. height: math.unit(150, "cm"),
  24946. default: true
  24947. },
  24948. ]
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24952. {
  24953. front: {
  24954. height: math.unit(100, "feet"),
  24955. name: "Front",
  24956. image: {
  24957. source: "./media/characters/erza-bear/front.svg",
  24958. extra: 2449 / 2390,
  24959. bottom: 46 / 2494
  24960. }
  24961. },
  24962. back: {
  24963. height: math.unit(100, "feet"),
  24964. name: "Back",
  24965. image: {
  24966. source: "./media/characters/erza-bear/back.svg",
  24967. extra: 2489 / 2430,
  24968. bottom: 85.4 / 2480
  24969. }
  24970. },
  24971. tail: {
  24972. height: math.unit(42, "feet"),
  24973. name: "Tail",
  24974. image: {
  24975. source: "./media/characters/erza-bear/tail.svg"
  24976. }
  24977. },
  24978. tongue: {
  24979. height: math.unit(8, "feet"),
  24980. name: "Tongue",
  24981. image: {
  24982. source: "./media/characters/erza-bear/tongue.svg"
  24983. }
  24984. },
  24985. dick: {
  24986. height: math.unit(10.5, "feet"),
  24987. name: "Dick",
  24988. image: {
  24989. source: "./media/characters/erza-bear/dick.svg"
  24990. }
  24991. },
  24992. dickVertical: {
  24993. height: math.unit(16.9, "feet"),
  24994. name: "Dick (Vertical)",
  24995. image: {
  24996. source: "./media/characters/erza-bear/dick-vertical.svg"
  24997. }
  24998. },
  24999. },
  25000. [
  25001. {
  25002. name: "Macro",
  25003. height: math.unit(100, "feet"),
  25004. default: true
  25005. },
  25006. ]
  25007. ))
  25008. characterMakers.push(() => makeCharacter(
  25009. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25010. {
  25011. front: {
  25012. height: math.unit(172, "cm"),
  25013. weight: math.unit(73, "kg"),
  25014. name: "Front",
  25015. image: {
  25016. source: "./media/characters/violet-flor/front.svg",
  25017. extra: 1530 / 1442,
  25018. bottom: 61.9 / 1588.8
  25019. }
  25020. },
  25021. back: {
  25022. height: math.unit(180, "cm"),
  25023. weight: math.unit(73, "kg"),
  25024. name: "Back",
  25025. image: {
  25026. source: "./media/characters/violet-flor/back.svg",
  25027. extra: 1692 / 1630,
  25028. bottom: 20 / 1712
  25029. }
  25030. },
  25031. },
  25032. [
  25033. {
  25034. name: "Normal",
  25035. height: math.unit(172, "cm"),
  25036. default: true
  25037. },
  25038. ]
  25039. ))
  25040. characterMakers.push(() => makeCharacter(
  25041. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25042. {
  25043. front: {
  25044. height: math.unit(6, "feet"),
  25045. weight: math.unit(220, "lb"),
  25046. name: "Front",
  25047. image: {
  25048. source: "./media/characters/lynn-rhea/front.svg",
  25049. extra: 310 / 273
  25050. }
  25051. },
  25052. back: {
  25053. height: math.unit(6, "feet"),
  25054. weight: math.unit(220, "lb"),
  25055. name: "Back",
  25056. image: {
  25057. source: "./media/characters/lynn-rhea/back.svg",
  25058. extra: 310 / 273
  25059. }
  25060. },
  25061. dicks: {
  25062. height: math.unit(0.9, "feet"),
  25063. name: "Dicks",
  25064. image: {
  25065. source: "./media/characters/lynn-rhea/dicks.svg"
  25066. }
  25067. },
  25068. slit: {
  25069. height: math.unit(0.4, "feet"),
  25070. name: "Slit",
  25071. image: {
  25072. source: "./media/characters/lynn-rhea/slit.svg"
  25073. }
  25074. },
  25075. },
  25076. [
  25077. {
  25078. name: "Micro",
  25079. height: math.unit(1, "inch")
  25080. },
  25081. {
  25082. name: "Macro",
  25083. height: math.unit(60, "feet"),
  25084. default: true
  25085. },
  25086. {
  25087. name: "Megamacro",
  25088. height: math.unit(2, "miles")
  25089. },
  25090. {
  25091. name: "Gigamacro",
  25092. height: math.unit(3, "earths")
  25093. },
  25094. {
  25095. name: "Galactic",
  25096. height: math.unit(0.8, "galaxies")
  25097. },
  25098. ]
  25099. ))
  25100. characterMakers.push(() => makeCharacter(
  25101. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25102. {
  25103. front: {
  25104. height: math.unit(1600, "feet"),
  25105. weight: math.unit(85758785169, "kg"),
  25106. name: "Front",
  25107. image: {
  25108. source: "./media/characters/valathos/front.svg",
  25109. extra: 1451 / 1339
  25110. }
  25111. },
  25112. },
  25113. [
  25114. {
  25115. name: "Macro",
  25116. height: math.unit(1600, "feet"),
  25117. default: true
  25118. },
  25119. ]
  25120. ))
  25121. characterMakers.push(() => makeCharacter(
  25122. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25123. {
  25124. front: {
  25125. height: math.unit(7 + 5 / 12, "feet"),
  25126. weight: math.unit(300, "lb"),
  25127. name: "Front",
  25128. image: {
  25129. source: "./media/characters/azula/front.svg",
  25130. extra: 3208 / 2880,
  25131. bottom: 80.2 / 3277
  25132. }
  25133. },
  25134. back: {
  25135. height: math.unit(7 + 5 / 12, "feet"),
  25136. weight: math.unit(300, "lb"),
  25137. name: "Back",
  25138. image: {
  25139. source: "./media/characters/azula/back.svg",
  25140. extra: 3169 / 2822,
  25141. bottom: 150.6 / 3321
  25142. }
  25143. },
  25144. },
  25145. [
  25146. {
  25147. name: "Normal",
  25148. height: math.unit(7 + 5 / 12, "feet"),
  25149. default: true
  25150. },
  25151. {
  25152. name: "Big",
  25153. height: math.unit(20, "feet")
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25159. {
  25160. front: {
  25161. height: math.unit(5 + 1 / 12, "feet"),
  25162. weight: math.unit(110, "lb"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/rupert/front.svg",
  25166. extra: 1549 / 1495,
  25167. bottom: 54.2 / 1604.4
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Normal",
  25174. height: math.unit(5 + 1 / 12, "feet"),
  25175. default: true
  25176. },
  25177. ]
  25178. ))
  25179. characterMakers.push(() => makeCharacter(
  25180. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25181. {
  25182. front: {
  25183. height: math.unit(8 + 4 / 12, "feet"),
  25184. weight: math.unit(350, "lb"),
  25185. name: "Front",
  25186. image: {
  25187. source: "./media/characters/sheera-castellar/front.svg",
  25188. extra: 1957 / 1894,
  25189. bottom: 26.97 / 1975.017
  25190. }
  25191. },
  25192. side: {
  25193. height: math.unit(8 + 4 / 12, "feet"),
  25194. weight: math.unit(350, "lb"),
  25195. name: "Side",
  25196. image: {
  25197. source: "./media/characters/sheera-castellar/side.svg",
  25198. extra: 1957 / 1894
  25199. }
  25200. },
  25201. back: {
  25202. height: math.unit(8 + 4 / 12, "feet"),
  25203. weight: math.unit(350, "lb"),
  25204. name: "Back",
  25205. image: {
  25206. source: "./media/characters/sheera-castellar/back.svg",
  25207. extra: 1957 / 1894
  25208. }
  25209. },
  25210. angled: {
  25211. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25212. weight: math.unit(350, "lb"),
  25213. name: "Angled",
  25214. image: {
  25215. source: "./media/characters/sheera-castellar/angled.svg",
  25216. extra: 1807 / 1707,
  25217. bottom: 68 / 1875
  25218. }
  25219. },
  25220. genitals: {
  25221. height: math.unit(2.2, "feet"),
  25222. name: "Genitals",
  25223. image: {
  25224. source: "./media/characters/sheera-castellar/genitals.svg"
  25225. }
  25226. },
  25227. taur: {
  25228. height: math.unit(10 + 6/12, "feet"),
  25229. name: "Taur",
  25230. image: {
  25231. source: "./media/characters/sheera-castellar/taur.svg",
  25232. extra: 2017/1909,
  25233. bottom: 185/2202
  25234. }
  25235. },
  25236. },
  25237. [
  25238. {
  25239. name: "Normal",
  25240. height: math.unit(8 + 4 / 12, "feet")
  25241. },
  25242. {
  25243. name: "Macro",
  25244. height: math.unit(150, "feet"),
  25245. default: true
  25246. },
  25247. {
  25248. name: "Macro+",
  25249. height: math.unit(800, "feet")
  25250. },
  25251. ]
  25252. ))
  25253. characterMakers.push(() => makeCharacter(
  25254. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25255. {
  25256. front: {
  25257. height: math.unit(6, "feet"),
  25258. weight: math.unit(150, "lb"),
  25259. name: "Front",
  25260. image: {
  25261. source: "./media/characters/jaipur/front.svg",
  25262. extra: 3860 / 3731,
  25263. bottom: 287 / 4140
  25264. }
  25265. },
  25266. back: {
  25267. height: math.unit(6, "feet"),
  25268. weight: math.unit(150, "lb"),
  25269. name: "Back",
  25270. image: {
  25271. source: "./media/characters/jaipur/back.svg",
  25272. extra: 1637/1561,
  25273. bottom: 154/1791
  25274. }
  25275. },
  25276. },
  25277. [
  25278. {
  25279. name: "Normal",
  25280. height: math.unit(1.85, "meters"),
  25281. default: true
  25282. },
  25283. {
  25284. name: "Macro",
  25285. height: math.unit(150, "meters")
  25286. },
  25287. {
  25288. name: "Macro+",
  25289. height: math.unit(0.5, "miles")
  25290. },
  25291. {
  25292. name: "Macro++",
  25293. height: math.unit(2.5, "miles")
  25294. },
  25295. {
  25296. name: "Macro+++",
  25297. height: math.unit(12, "miles")
  25298. },
  25299. {
  25300. name: "Macro++++",
  25301. height: math.unit(120, "miles")
  25302. },
  25303. {
  25304. name: "Macro+++++",
  25305. height: math.unit(1200, "miles")
  25306. },
  25307. ]
  25308. ))
  25309. characterMakers.push(() => makeCharacter(
  25310. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25311. {
  25312. front: {
  25313. height: math.unit(6, "feet"),
  25314. weight: math.unit(150, "lb"),
  25315. name: "Front",
  25316. image: {
  25317. source: "./media/characters/sheila-wolf/front.svg",
  25318. extra: 1931 / 1808,
  25319. bottom: 29.5 / 1960
  25320. }
  25321. },
  25322. dick: {
  25323. height: math.unit(1.464, "feet"),
  25324. name: "Dick",
  25325. image: {
  25326. source: "./media/characters/sheila-wolf/dick.svg"
  25327. }
  25328. },
  25329. muzzle: {
  25330. height: math.unit(0.513, "feet"),
  25331. name: "Muzzle",
  25332. image: {
  25333. source: "./media/characters/sheila-wolf/muzzle.svg"
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Macro",
  25340. height: math.unit(70, "feet"),
  25341. default: true
  25342. },
  25343. ]
  25344. ))
  25345. characterMakers.push(() => makeCharacter(
  25346. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25347. {
  25348. front: {
  25349. height: math.unit(32, "meters"),
  25350. weight: math.unit(300000, "kg"),
  25351. name: "Front",
  25352. image: {
  25353. source: "./media/characters/almor/front.svg",
  25354. extra: 1408 / 1322,
  25355. bottom: 94.6 / 1506.5
  25356. }
  25357. },
  25358. },
  25359. [
  25360. {
  25361. name: "Macro",
  25362. height: math.unit(32, "meters"),
  25363. default: true
  25364. },
  25365. ]
  25366. ))
  25367. characterMakers.push(() => makeCharacter(
  25368. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25369. {
  25370. front: {
  25371. height: math.unit(7, "feet"),
  25372. weight: math.unit(200, "lb"),
  25373. name: "Front",
  25374. image: {
  25375. source: "./media/characters/silver/front.svg",
  25376. extra: 472.1 / 450.5,
  25377. bottom: 26.5 / 499.424
  25378. }
  25379. },
  25380. },
  25381. [
  25382. {
  25383. name: "Normal",
  25384. height: math.unit(7, "feet"),
  25385. default: true
  25386. },
  25387. {
  25388. name: "Macro",
  25389. height: math.unit(800, "feet")
  25390. },
  25391. {
  25392. name: "Megamacro",
  25393. height: math.unit(250, "miles")
  25394. },
  25395. ]
  25396. ))
  25397. characterMakers.push(() => makeCharacter(
  25398. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25399. {
  25400. front: {
  25401. height: math.unit(6, "feet"),
  25402. weight: math.unit(150, "lb"),
  25403. name: "Front",
  25404. image: {
  25405. source: "./media/characters/pliskin/front.svg",
  25406. extra: 1469 / 1359,
  25407. bottom: 70 / 1540
  25408. }
  25409. },
  25410. },
  25411. [
  25412. {
  25413. name: "Micro",
  25414. height: math.unit(3, "inches")
  25415. },
  25416. {
  25417. name: "Normal",
  25418. height: math.unit(5 + 11 / 12, "feet"),
  25419. default: true
  25420. },
  25421. {
  25422. name: "Macro",
  25423. height: math.unit(120, "feet")
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25429. {
  25430. front: {
  25431. height: math.unit(6, "feet"),
  25432. weight: math.unit(150, "lb"),
  25433. name: "Front",
  25434. image: {
  25435. source: "./media/characters/sammy/front.svg",
  25436. extra: 1193 / 1089,
  25437. bottom: 30.5 / 1226
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Macro",
  25444. height: math.unit(1700, "feet"),
  25445. default: true
  25446. },
  25447. {
  25448. name: "Examacro",
  25449. height: math.unit(2.5e9, "lightyears")
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25455. {
  25456. front: {
  25457. height: math.unit(21, "meters"),
  25458. weight: math.unit(12, "tonnes"),
  25459. name: "Front",
  25460. image: {
  25461. source: "./media/characters/kuru/front.svg",
  25462. extra: 4301 / 3785,
  25463. bottom: 371.3 / 4691
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Macro",
  25470. height: math.unit(21, "meters"),
  25471. default: true
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25477. {
  25478. front: {
  25479. height: math.unit(23, "meters"),
  25480. weight: math.unit(12.2, "tonnes"),
  25481. name: "Front",
  25482. image: {
  25483. source: "./media/characters/rakka/front.svg",
  25484. extra: 4670 / 4169,
  25485. bottom: 301 / 4968.7
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Macro",
  25492. height: math.unit(23, "meters"),
  25493. default: true
  25494. },
  25495. ]
  25496. ))
  25497. characterMakers.push(() => makeCharacter(
  25498. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25499. {
  25500. front: {
  25501. height: math.unit(6, "feet"),
  25502. weight: math.unit(150, "lb"),
  25503. name: "Front",
  25504. image: {
  25505. source: "./media/characters/rhys-feline/front.svg",
  25506. extra: 2488 / 2308,
  25507. bottom: 35.67 / 2519.19
  25508. }
  25509. },
  25510. },
  25511. [
  25512. {
  25513. name: "Really Small",
  25514. height: math.unit(1, "nm")
  25515. },
  25516. {
  25517. name: "Micro",
  25518. height: math.unit(4, "inches")
  25519. },
  25520. {
  25521. name: "Normal",
  25522. height: math.unit(4 + 10 / 12, "feet"),
  25523. default: true
  25524. },
  25525. {
  25526. name: "Macro",
  25527. height: math.unit(100, "feet")
  25528. },
  25529. {
  25530. name: "Megamacto",
  25531. height: math.unit(50, "miles")
  25532. },
  25533. ]
  25534. ))
  25535. characterMakers.push(() => makeCharacter(
  25536. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25537. {
  25538. side: {
  25539. height: math.unit(30, "feet"),
  25540. weight: math.unit(35000, "kg"),
  25541. name: "Side",
  25542. image: {
  25543. source: "./media/characters/alydar/side.svg",
  25544. extra: 234 / 222,
  25545. bottom: 6.5 / 241
  25546. }
  25547. },
  25548. front: {
  25549. height: math.unit(30, "feet"),
  25550. weight: math.unit(35000, "kg"),
  25551. name: "Front",
  25552. image: {
  25553. source: "./media/characters/alydar/front.svg",
  25554. extra: 223.37 / 210.2,
  25555. bottom: 22.3 / 246.76
  25556. }
  25557. },
  25558. top: {
  25559. height: math.unit(64.54, "feet"),
  25560. weight: math.unit(35000, "kg"),
  25561. name: "Top",
  25562. image: {
  25563. source: "./media/characters/alydar/top.svg"
  25564. }
  25565. },
  25566. anthro: {
  25567. height: math.unit(30, "feet"),
  25568. weight: math.unit(9000, "kg"),
  25569. name: "Anthro",
  25570. image: {
  25571. source: "./media/characters/alydar/anthro.svg",
  25572. extra: 432 / 421,
  25573. bottom: 7.18 / 440
  25574. }
  25575. },
  25576. maw: {
  25577. height: math.unit(11.693, "feet"),
  25578. name: "Maw",
  25579. image: {
  25580. source: "./media/characters/alydar/maw.svg"
  25581. }
  25582. },
  25583. head: {
  25584. height: math.unit(11.693, "feet"),
  25585. name: "Head",
  25586. image: {
  25587. source: "./media/characters/alydar/head.svg"
  25588. }
  25589. },
  25590. headAlt: {
  25591. height: math.unit(12.861, "feet"),
  25592. name: "Head (Alt)",
  25593. image: {
  25594. source: "./media/characters/alydar/head-alt.svg"
  25595. }
  25596. },
  25597. wing: {
  25598. height: math.unit(20.712, "feet"),
  25599. name: "Wing",
  25600. image: {
  25601. source: "./media/characters/alydar/wing.svg"
  25602. }
  25603. },
  25604. wingFeather: {
  25605. height: math.unit(9.662, "feet"),
  25606. name: "Wing Feather",
  25607. image: {
  25608. source: "./media/characters/alydar/wing-feather.svg"
  25609. }
  25610. },
  25611. countourFeather: {
  25612. height: math.unit(4.154, "feet"),
  25613. name: "Contour Feather",
  25614. image: {
  25615. source: "./media/characters/alydar/contour-feather.svg"
  25616. }
  25617. },
  25618. },
  25619. [
  25620. {
  25621. name: "Diplomatic",
  25622. height: math.unit(13, "feet"),
  25623. default: true
  25624. },
  25625. {
  25626. name: "Small",
  25627. height: math.unit(30, "feet")
  25628. },
  25629. {
  25630. name: "Normal",
  25631. height: math.unit(95, "feet"),
  25632. default: true
  25633. },
  25634. {
  25635. name: "Large",
  25636. height: math.unit(285, "feet")
  25637. },
  25638. {
  25639. name: "Incomprehensible",
  25640. height: math.unit(450, "megameters")
  25641. },
  25642. ]
  25643. ))
  25644. characterMakers.push(() => makeCharacter(
  25645. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25646. {
  25647. side: {
  25648. height: math.unit(11, "feet"),
  25649. weight: math.unit(1750, "kg"),
  25650. name: "Side",
  25651. image: {
  25652. source: "./media/characters/selicia/side.svg",
  25653. extra: 440 / 396,
  25654. bottom: 24.8 / 465.979
  25655. }
  25656. },
  25657. maw: {
  25658. height: math.unit(4.665, "feet"),
  25659. name: "Maw",
  25660. image: {
  25661. source: "./media/characters/selicia/maw.svg"
  25662. }
  25663. },
  25664. },
  25665. [
  25666. {
  25667. name: "Normal",
  25668. height: math.unit(11, "feet"),
  25669. default: true
  25670. },
  25671. ]
  25672. ))
  25673. characterMakers.push(() => makeCharacter(
  25674. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25675. {
  25676. side: {
  25677. height: math.unit(2 + 6 / 12, "feet"),
  25678. weight: math.unit(30, "lb"),
  25679. name: "Side",
  25680. image: {
  25681. source: "./media/characters/layla/side.svg",
  25682. extra: 244 / 188,
  25683. bottom: 18.2 / 262.1
  25684. }
  25685. },
  25686. back: {
  25687. height: math.unit(2 + 6 / 12, "feet"),
  25688. weight: math.unit(30, "lb"),
  25689. name: "Back",
  25690. image: {
  25691. source: "./media/characters/layla/back.svg",
  25692. extra: 308 / 241.5,
  25693. bottom: 8.9 / 316.8
  25694. }
  25695. },
  25696. cumming: {
  25697. height: math.unit(2 + 6 / 12, "feet"),
  25698. weight: math.unit(30, "lb"),
  25699. name: "Cumming",
  25700. image: {
  25701. source: "./media/characters/layla/cumming.svg",
  25702. extra: 342 / 279,
  25703. bottom: 595 / 938
  25704. }
  25705. },
  25706. dickFlaccid: {
  25707. height: math.unit(2.595, "feet"),
  25708. name: "Flaccid Genitals",
  25709. image: {
  25710. source: "./media/characters/layla/dick-flaccid.svg"
  25711. }
  25712. },
  25713. dickErect: {
  25714. height: math.unit(2.359, "feet"),
  25715. name: "Erect Genitals",
  25716. image: {
  25717. source: "./media/characters/layla/dick-erect.svg"
  25718. }
  25719. },
  25720. dragon: {
  25721. height: math.unit(40, "feet"),
  25722. name: "Dragon",
  25723. image: {
  25724. source: "./media/characters/layla/dragon.svg",
  25725. extra: 610/535,
  25726. bottom: 367/977
  25727. }
  25728. },
  25729. taur: {
  25730. height: math.unit(30, "feet"),
  25731. name: "Taur",
  25732. image: {
  25733. source: "./media/characters/layla/taur.svg",
  25734. extra: 1268/1199,
  25735. bottom: 112/1380
  25736. }
  25737. },
  25738. },
  25739. [
  25740. {
  25741. name: "Micro",
  25742. height: math.unit(1, "inch")
  25743. },
  25744. {
  25745. name: "Small",
  25746. height: math.unit(1, "foot")
  25747. },
  25748. {
  25749. name: "Normal",
  25750. height: math.unit(2 + 6 / 12, "feet"),
  25751. default: true
  25752. },
  25753. {
  25754. name: "Macro",
  25755. height: math.unit(200, "feet")
  25756. },
  25757. {
  25758. name: "Megamacro",
  25759. height: math.unit(1000, "miles")
  25760. },
  25761. {
  25762. name: "Planetary",
  25763. height: math.unit(8000, "miles")
  25764. },
  25765. {
  25766. name: "True Layla",
  25767. height: math.unit(200000 * 7, "multiverses")
  25768. },
  25769. ]
  25770. ))
  25771. characterMakers.push(() => makeCharacter(
  25772. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25773. {
  25774. back: {
  25775. height: math.unit(10.5, "feet"),
  25776. weight: math.unit(800, "lb"),
  25777. name: "Back",
  25778. image: {
  25779. source: "./media/characters/knox/back.svg",
  25780. extra: 1486 / 1089,
  25781. bottom: 107 / 1601.4
  25782. }
  25783. },
  25784. side: {
  25785. height: math.unit(10.5, "feet"),
  25786. weight: math.unit(800, "lb"),
  25787. name: "Side",
  25788. image: {
  25789. source: "./media/characters/knox/side.svg",
  25790. extra: 244 / 218,
  25791. bottom: 14 / 260
  25792. }
  25793. },
  25794. },
  25795. [
  25796. {
  25797. name: "Compact",
  25798. height: math.unit(10.5, "feet"),
  25799. default: true
  25800. },
  25801. {
  25802. name: "Dynamax",
  25803. height: math.unit(210, "feet")
  25804. },
  25805. {
  25806. name: "Full Macro",
  25807. height: math.unit(850, "feet")
  25808. },
  25809. ]
  25810. ))
  25811. characterMakers.push(() => makeCharacter(
  25812. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25813. {
  25814. front: {
  25815. height: math.unit(28, "feet"),
  25816. weight: math.unit(10500, "lb"),
  25817. name: "Front",
  25818. image: {
  25819. source: "./media/characters/kayda/front.svg",
  25820. extra: 1536 / 1428,
  25821. bottom: 68.7 / 1603
  25822. }
  25823. },
  25824. back: {
  25825. height: math.unit(28, "feet"),
  25826. weight: math.unit(10500, "lb"),
  25827. name: "Back",
  25828. image: {
  25829. source: "./media/characters/kayda/back.svg",
  25830. extra: 1557 / 1464,
  25831. bottom: 39.5 / 1597.49
  25832. }
  25833. },
  25834. dick: {
  25835. height: math.unit(3.858, "feet"),
  25836. name: "Dick",
  25837. image: {
  25838. source: "./media/characters/kayda/dick.svg"
  25839. }
  25840. },
  25841. },
  25842. [
  25843. {
  25844. name: "Macro",
  25845. height: math.unit(28, "feet"),
  25846. default: true
  25847. },
  25848. ]
  25849. ))
  25850. characterMakers.push(() => makeCharacter(
  25851. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25852. {
  25853. front: {
  25854. height: math.unit(10 + 11 / 12, "feet"),
  25855. weight: math.unit(1400, "lb"),
  25856. name: "Front",
  25857. image: {
  25858. source: "./media/characters/brian/front.svg",
  25859. extra: 737 / 692,
  25860. bottom: 55.4 / 785
  25861. }
  25862. },
  25863. },
  25864. [
  25865. {
  25866. name: "Normal",
  25867. height: math.unit(10 + 11 / 12, "feet"),
  25868. default: true
  25869. },
  25870. ]
  25871. ))
  25872. characterMakers.push(() => makeCharacter(
  25873. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25874. {
  25875. front: {
  25876. height: math.unit(5 + 8 / 12, "feet"),
  25877. weight: math.unit(140, "lb"),
  25878. name: "Front",
  25879. image: {
  25880. source: "./media/characters/khemri/front.svg",
  25881. extra: 4780 / 4059,
  25882. bottom: 80.1 / 4859.25
  25883. }
  25884. },
  25885. },
  25886. [
  25887. {
  25888. name: "Micro",
  25889. height: math.unit(6, "inches")
  25890. },
  25891. {
  25892. name: "Normal",
  25893. height: math.unit(5 + 8 / 12, "feet"),
  25894. default: true
  25895. },
  25896. ]
  25897. ))
  25898. characterMakers.push(() => makeCharacter(
  25899. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25900. {
  25901. front: {
  25902. height: math.unit(13, "feet"),
  25903. weight: math.unit(1700, "lb"),
  25904. name: "Front",
  25905. image: {
  25906. source: "./media/characters/felix-braveheart/front.svg",
  25907. extra: 1222 / 1157,
  25908. bottom: 53.2 / 1280
  25909. }
  25910. },
  25911. back: {
  25912. height: math.unit(13, "feet"),
  25913. weight: math.unit(1700, "lb"),
  25914. name: "Back",
  25915. image: {
  25916. source: "./media/characters/felix-braveheart/back.svg",
  25917. extra: 1277 / 1203,
  25918. bottom: 50.2 / 1327
  25919. }
  25920. },
  25921. feral: {
  25922. height: math.unit(6, "feet"),
  25923. weight: math.unit(400, "lb"),
  25924. name: "Feral",
  25925. image: {
  25926. source: "./media/characters/felix-braveheart/feral.svg",
  25927. extra: 682 / 625,
  25928. bottom: 6.9 / 688
  25929. }
  25930. },
  25931. },
  25932. [
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(13, "feet"),
  25936. default: true
  25937. },
  25938. ]
  25939. ))
  25940. characterMakers.push(() => makeCharacter(
  25941. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25942. {
  25943. side: {
  25944. height: math.unit(5 + 11 / 12, "feet"),
  25945. weight: math.unit(1400, "lb"),
  25946. name: "Side",
  25947. image: {
  25948. source: "./media/characters/shadow-blade/side.svg",
  25949. extra: 1726 / 1267,
  25950. bottom: 58.4 / 1785
  25951. }
  25952. },
  25953. },
  25954. [
  25955. {
  25956. name: "Normal",
  25957. height: math.unit(5 + 11 / 12, "feet"),
  25958. default: true
  25959. },
  25960. ]
  25961. ))
  25962. characterMakers.push(() => makeCharacter(
  25963. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25964. {
  25965. front: {
  25966. height: math.unit(1 + 6 / 12, "feet"),
  25967. weight: math.unit(25, "lb"),
  25968. name: "Front",
  25969. image: {
  25970. source: "./media/characters/karla-halldor/front.svg",
  25971. extra: 1459 / 1383,
  25972. bottom: 12 / 1472
  25973. }
  25974. },
  25975. },
  25976. [
  25977. {
  25978. name: "Normal",
  25979. height: math.unit(1 + 6 / 12, "feet"),
  25980. default: true
  25981. },
  25982. ]
  25983. ))
  25984. characterMakers.push(() => makeCharacter(
  25985. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25986. {
  25987. front: {
  25988. height: math.unit(6 + 2 / 12, "feet"),
  25989. weight: math.unit(160, "lb"),
  25990. name: "Front",
  25991. image: {
  25992. source: "./media/characters/ariam/front.svg",
  25993. extra: 1073/976,
  25994. bottom: 52/1125
  25995. }
  25996. },
  25997. back: {
  25998. height: math.unit(6 + 2/12, "feet"),
  25999. weight: math.unit(160, "lb"),
  26000. name: "Back",
  26001. image: {
  26002. source: "./media/characters/ariam/back.svg",
  26003. extra: 1103/1023,
  26004. bottom: 9/1112
  26005. }
  26006. },
  26007. dressed: {
  26008. height: math.unit(6 + 2/12, "feet"),
  26009. weight: math.unit(160, "lb"),
  26010. name: "Dressed",
  26011. image: {
  26012. source: "./media/characters/ariam/dressed.svg",
  26013. extra: 1099/1009,
  26014. bottom: 25/1124
  26015. }
  26016. },
  26017. squatting: {
  26018. height: math.unit(4.1, "feet"),
  26019. weight: math.unit(160, "lb"),
  26020. name: "Squatting",
  26021. image: {
  26022. source: "./media/characters/ariam/squatting.svg",
  26023. extra: 2617 / 2112,
  26024. bottom: 61.2 / 2681,
  26025. }
  26026. },
  26027. },
  26028. [
  26029. {
  26030. name: "Normal",
  26031. height: math.unit(6 + 2 / 12, "feet"),
  26032. default: true
  26033. },
  26034. {
  26035. name: "Normal+",
  26036. height: math.unit(4, "meters")
  26037. },
  26038. {
  26039. name: "Macro",
  26040. height: math.unit(50, "meters")
  26041. },
  26042. {
  26043. name: "Macro+",
  26044. height: math.unit(100, "meters")
  26045. },
  26046. {
  26047. name: "Megamacro",
  26048. height: math.unit(20, "km")
  26049. },
  26050. {
  26051. name: "Caretaker",
  26052. height: math.unit(444, "megameters")
  26053. },
  26054. ]
  26055. ))
  26056. characterMakers.push(() => makeCharacter(
  26057. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26058. {
  26059. front: {
  26060. height: math.unit(1.67, "meters"),
  26061. weight: math.unit(140, "lb"),
  26062. name: "Front",
  26063. image: {
  26064. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26065. extra: 438 / 410,
  26066. bottom: 0.75 / 439
  26067. }
  26068. },
  26069. },
  26070. [
  26071. {
  26072. name: "Shrunken",
  26073. height: math.unit(7.6, "cm")
  26074. },
  26075. {
  26076. name: "Human Scale",
  26077. height: math.unit(1.67, "meters")
  26078. },
  26079. {
  26080. name: "Wolxi Scale",
  26081. height: math.unit(36.7, "meters"),
  26082. default: true
  26083. },
  26084. ]
  26085. ))
  26086. characterMakers.push(() => makeCharacter(
  26087. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26088. {
  26089. front: {
  26090. height: math.unit(1.73, "meters"),
  26091. weight: math.unit(240, "lb"),
  26092. name: "Front",
  26093. image: {
  26094. source: "./media/characters/izue-two-mothers/front.svg",
  26095. extra: 469 / 437,
  26096. bottom: 1.24 / 470.6
  26097. }
  26098. },
  26099. },
  26100. [
  26101. {
  26102. name: "Shrunken",
  26103. height: math.unit(7.86, "cm")
  26104. },
  26105. {
  26106. name: "Human Scale",
  26107. height: math.unit(1.73, "meters")
  26108. },
  26109. {
  26110. name: "Wolxi Scale",
  26111. height: math.unit(38, "meters"),
  26112. default: true
  26113. },
  26114. ]
  26115. ))
  26116. characterMakers.push(() => makeCharacter(
  26117. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26118. {
  26119. front: {
  26120. height: math.unit(1.55, "meters"),
  26121. weight: math.unit(120, "lb"),
  26122. name: "Front",
  26123. image: {
  26124. source: "./media/characters/teeku-love-shack/front.svg",
  26125. extra: 387 / 362,
  26126. bottom: 1.51 / 388
  26127. }
  26128. },
  26129. },
  26130. [
  26131. {
  26132. name: "Shrunken",
  26133. height: math.unit(7, "cm")
  26134. },
  26135. {
  26136. name: "Human Scale",
  26137. height: math.unit(1.55, "meters")
  26138. },
  26139. {
  26140. name: "Wolxi Scale",
  26141. height: math.unit(34.1, "meters"),
  26142. default: true
  26143. },
  26144. ]
  26145. ))
  26146. characterMakers.push(() => makeCharacter(
  26147. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26148. {
  26149. front: {
  26150. height: math.unit(1.83, "meters"),
  26151. weight: math.unit(135, "lb"),
  26152. name: "Front",
  26153. image: {
  26154. source: "./media/characters/dejma-the-red/front.svg",
  26155. extra: 480 / 458,
  26156. bottom: 1.8 / 482
  26157. }
  26158. },
  26159. },
  26160. [
  26161. {
  26162. name: "Shrunken",
  26163. height: math.unit(8.3, "cm")
  26164. },
  26165. {
  26166. name: "Human Scale",
  26167. height: math.unit(1.83, "meters")
  26168. },
  26169. {
  26170. name: "Wolxi Scale",
  26171. height: math.unit(40, "meters"),
  26172. default: true
  26173. },
  26174. ]
  26175. ))
  26176. characterMakers.push(() => makeCharacter(
  26177. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26178. {
  26179. front: {
  26180. height: math.unit(1.78, "meters"),
  26181. weight: math.unit(65, "kg"),
  26182. name: "Front",
  26183. image: {
  26184. source: "./media/characters/aki/front.svg",
  26185. extra: 452 / 415
  26186. }
  26187. },
  26188. frontNsfw: {
  26189. height: math.unit(1.78, "meters"),
  26190. weight: math.unit(65, "kg"),
  26191. name: "Front (NSFW)",
  26192. image: {
  26193. source: "./media/characters/aki/front-nsfw.svg",
  26194. extra: 452 / 415
  26195. }
  26196. },
  26197. back: {
  26198. height: math.unit(1.78, "meters"),
  26199. weight: math.unit(65, "kg"),
  26200. name: "Back",
  26201. image: {
  26202. source: "./media/characters/aki/back.svg",
  26203. extra: 452 / 415
  26204. }
  26205. },
  26206. rump: {
  26207. height: math.unit(2.05, "feet"),
  26208. name: "Rump",
  26209. image: {
  26210. source: "./media/characters/aki/rump.svg"
  26211. }
  26212. },
  26213. dick: {
  26214. height: math.unit(0.95, "feet"),
  26215. name: "Dick",
  26216. image: {
  26217. source: "./media/characters/aki/dick.svg"
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Micro",
  26224. height: math.unit(15, "cm")
  26225. },
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(178, "cm"),
  26229. default: true
  26230. },
  26231. {
  26232. name: "Macro",
  26233. height: math.unit(214, "m")
  26234. },
  26235. {
  26236. name: "Macro+",
  26237. height: math.unit(534, "m")
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(5 + 5 / 12, "feet"),
  26246. weight: math.unit(120, "lb"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/ari/front.svg",
  26250. extra: 1550/1471,
  26251. bottom: 39/1589
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(5 + 5 / 12, "feet")
  26259. },
  26260. {
  26261. name: "Macro",
  26262. height: math.unit(100, "feet"),
  26263. default: true
  26264. },
  26265. {
  26266. name: "Megamacro",
  26267. height: math.unit(100, "miles")
  26268. },
  26269. {
  26270. name: "Gigamacro",
  26271. height: math.unit(80000, "miles")
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26277. {
  26278. side: {
  26279. height: math.unit(9, "feet"),
  26280. weight: math.unit(400, "kg"),
  26281. name: "Side",
  26282. image: {
  26283. source: "./media/characters/bolt/side.svg",
  26284. extra: 1126 / 896,
  26285. bottom: 60 / 1187.3,
  26286. }
  26287. },
  26288. },
  26289. [
  26290. {
  26291. name: "Micro",
  26292. height: math.unit(5, "inches")
  26293. },
  26294. {
  26295. name: "Normal",
  26296. height: math.unit(9, "feet"),
  26297. default: true
  26298. },
  26299. {
  26300. name: "Macro",
  26301. height: math.unit(700, "feet")
  26302. },
  26303. {
  26304. name: "Max Size",
  26305. height: math.unit(1.52e22, "yottameters")
  26306. },
  26307. ]
  26308. ))
  26309. characterMakers.push(() => makeCharacter(
  26310. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26311. {
  26312. front: {
  26313. height: math.unit(4.3, "meters"),
  26314. weight: math.unit(3, "tons"),
  26315. name: "Front",
  26316. image: {
  26317. source: "./media/characters/draekon-sylviar/front.svg",
  26318. extra: 2072/1512,
  26319. bottom: 74/2146
  26320. }
  26321. },
  26322. back: {
  26323. height: math.unit(4.3, "meters"),
  26324. weight: math.unit(3, "tons"),
  26325. name: "Back",
  26326. image: {
  26327. source: "./media/characters/draekon-sylviar/back.svg",
  26328. extra: 1639/1483,
  26329. bottom: 41/1680
  26330. }
  26331. },
  26332. feral: {
  26333. height: math.unit(1.15, "meters"),
  26334. weight: math.unit(3, "tons"),
  26335. name: "Feral",
  26336. image: {
  26337. source: "./media/characters/draekon-sylviar/feral.svg",
  26338. extra: 1033/395,
  26339. bottom: 130/1163
  26340. }
  26341. },
  26342. maw: {
  26343. height: math.unit(1.3, "meters"),
  26344. name: "Maw",
  26345. image: {
  26346. source: "./media/characters/draekon-sylviar/maw.svg"
  26347. }
  26348. },
  26349. mawSeparated: {
  26350. height: math.unit(1.53, "meters"),
  26351. name: "Separated Maw",
  26352. image: {
  26353. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26354. }
  26355. },
  26356. tail: {
  26357. height: math.unit(1.15, "meters"),
  26358. name: "Tail",
  26359. image: {
  26360. source: "./media/characters/draekon-sylviar/tail.svg"
  26361. }
  26362. },
  26363. tailDick: {
  26364. height: math.unit(1.15, "meters"),
  26365. name: "Tail (Dick)",
  26366. image: {
  26367. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26368. }
  26369. },
  26370. tailDickSeparated: {
  26371. height: math.unit(1.19, "meters"),
  26372. name: "Tail (Separated Dick)",
  26373. image: {
  26374. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26375. }
  26376. },
  26377. slit: {
  26378. height: math.unit(1, "meters"),
  26379. name: "Slit",
  26380. image: {
  26381. source: "./media/characters/draekon-sylviar/slit.svg"
  26382. }
  26383. },
  26384. dick: {
  26385. height: math.unit(1.15, "meters"),
  26386. name: "Dick",
  26387. image: {
  26388. source: "./media/characters/draekon-sylviar/dick.svg"
  26389. }
  26390. },
  26391. dickSeparated: {
  26392. height: math.unit(1.1, "meters"),
  26393. name: "Separated Dick",
  26394. image: {
  26395. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26396. }
  26397. },
  26398. sheath: {
  26399. height: math.unit(1.15, "meters"),
  26400. name: "Sheath",
  26401. image: {
  26402. source: "./media/characters/draekon-sylviar/sheath.svg"
  26403. }
  26404. },
  26405. },
  26406. [
  26407. {
  26408. name: "Small",
  26409. height: math.unit(4.53 / 2, "meters"),
  26410. default: true
  26411. },
  26412. {
  26413. name: "Normal",
  26414. height: math.unit(4.53, "meters"),
  26415. default: true
  26416. },
  26417. {
  26418. name: "Large",
  26419. height: math.unit(4.53 * 2, "meters"),
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26425. {
  26426. front: {
  26427. height: math.unit(6 + 2 / 12, "feet"),
  26428. weight: math.unit(180, "lb"),
  26429. name: "Front",
  26430. image: {
  26431. source: "./media/characters/brawler/front.svg",
  26432. extra: 3301 / 3027,
  26433. bottom: 138 / 3439
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Normal",
  26440. height: math.unit(6 + 2 / 12, "feet"),
  26441. default: true
  26442. },
  26443. ]
  26444. ))
  26445. characterMakers.push(() => makeCharacter(
  26446. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26447. {
  26448. front: {
  26449. height: math.unit(11, "feet"),
  26450. weight: math.unit(1000, "lb"),
  26451. name: "Front",
  26452. image: {
  26453. source: "./media/characters/alex/front.svg",
  26454. bottom: 44.5 / 620
  26455. }
  26456. },
  26457. },
  26458. [
  26459. {
  26460. name: "Micro",
  26461. height: math.unit(5, "inches")
  26462. },
  26463. {
  26464. name: "Normal",
  26465. height: math.unit(11, "feet"),
  26466. default: true
  26467. },
  26468. {
  26469. name: "Macro",
  26470. height: math.unit(9.5e9, "feet")
  26471. },
  26472. {
  26473. name: "Max Size",
  26474. height: math.unit(1.4e283, "yottameters")
  26475. },
  26476. ]
  26477. ))
  26478. characterMakers.push(() => makeCharacter(
  26479. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26480. {
  26481. female: {
  26482. height: math.unit(29.9, "m"),
  26483. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26484. name: "Female",
  26485. image: {
  26486. source: "./media/characters/zenari/female.svg",
  26487. extra: 3281.6 / 3217,
  26488. bottom: 72.2 / 3353
  26489. }
  26490. },
  26491. male: {
  26492. height: math.unit(27.7, "m"),
  26493. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26494. name: "Male",
  26495. image: {
  26496. source: "./media/characters/zenari/male.svg",
  26497. extra: 3008 / 2991,
  26498. bottom: 54.6 / 3069
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "Macro",
  26505. height: math.unit(29.7, "meters"),
  26506. default: true
  26507. },
  26508. ]
  26509. ))
  26510. characterMakers.push(() => makeCharacter(
  26511. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26512. {
  26513. female: {
  26514. height: math.unit(23.8, "m"),
  26515. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26516. name: "Female",
  26517. image: {
  26518. source: "./media/characters/mactarian/female.svg",
  26519. extra: 2662 / 2569,
  26520. bottom: 73 / 2736
  26521. }
  26522. },
  26523. male: {
  26524. height: math.unit(23.8, "m"),
  26525. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26526. name: "Male",
  26527. image: {
  26528. source: "./media/characters/mactarian/male.svg",
  26529. extra: 2673 / 2600,
  26530. bottom: 76 / 2750
  26531. }
  26532. },
  26533. },
  26534. [
  26535. {
  26536. name: "Macro",
  26537. height: math.unit(23.8, "meters"),
  26538. default: true
  26539. },
  26540. ]
  26541. ))
  26542. characterMakers.push(() => makeCharacter(
  26543. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26544. {
  26545. female: {
  26546. height: math.unit(19.3, "m"),
  26547. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26548. name: "Female",
  26549. image: {
  26550. source: "./media/characters/umok/female.svg",
  26551. extra: 2186 / 2078,
  26552. bottom: 87 / 2277
  26553. }
  26554. },
  26555. male: {
  26556. height: math.unit(19.5, "m"),
  26557. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26558. name: "Male",
  26559. image: {
  26560. source: "./media/characters/umok/male.svg",
  26561. extra: 2233 / 2140,
  26562. bottom: 24.4 / 2258
  26563. }
  26564. },
  26565. },
  26566. [
  26567. {
  26568. name: "Macro",
  26569. height: math.unit(19.3, "meters"),
  26570. default: true
  26571. },
  26572. ]
  26573. ))
  26574. characterMakers.push(() => makeCharacter(
  26575. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26576. {
  26577. female: {
  26578. height: math.unit(26.15, "m"),
  26579. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26580. name: "Female",
  26581. image: {
  26582. source: "./media/characters/joraxian/female.svg",
  26583. extra: 2912 / 2824,
  26584. bottom: 36 / 2956
  26585. }
  26586. },
  26587. male: {
  26588. height: math.unit(25.4, "m"),
  26589. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26590. name: "Male",
  26591. image: {
  26592. source: "./media/characters/joraxian/male.svg",
  26593. extra: 2877 / 2721,
  26594. bottom: 82 / 2967
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Macro",
  26601. height: math.unit(26.15, "meters"),
  26602. default: true
  26603. },
  26604. ]
  26605. ))
  26606. characterMakers.push(() => makeCharacter(
  26607. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26608. {
  26609. female: {
  26610. height: math.unit(21.6, "m"),
  26611. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26612. name: "Female",
  26613. image: {
  26614. source: "./media/characters/sthara/female.svg",
  26615. extra: 2516 / 2347,
  26616. bottom: 21.5 / 2537
  26617. }
  26618. },
  26619. male: {
  26620. height: math.unit(24, "m"),
  26621. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26622. name: "Male",
  26623. image: {
  26624. source: "./media/characters/sthara/male.svg",
  26625. extra: 2732 / 2607,
  26626. bottom: 23 / 2732
  26627. }
  26628. },
  26629. },
  26630. [
  26631. {
  26632. name: "Macro",
  26633. height: math.unit(21.6, "meters"),
  26634. default: true
  26635. },
  26636. ]
  26637. ))
  26638. characterMakers.push(() => makeCharacter(
  26639. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26640. {
  26641. front: {
  26642. height: math.unit(6 + 4 / 12, "feet"),
  26643. weight: math.unit(175, "lb"),
  26644. name: "Front",
  26645. image: {
  26646. source: "./media/characters/luka-bryzant/front.svg",
  26647. extra: 311 / 289,
  26648. bottom: 4 / 315
  26649. }
  26650. },
  26651. back: {
  26652. height: math.unit(6 + 4 / 12, "feet"),
  26653. weight: math.unit(175, "lb"),
  26654. name: "Back",
  26655. image: {
  26656. source: "./media/characters/luka-bryzant/back.svg",
  26657. extra: 311 / 289,
  26658. bottom: 3.8 / 313.7
  26659. }
  26660. },
  26661. },
  26662. [
  26663. {
  26664. name: "Micro",
  26665. height: math.unit(10, "inches")
  26666. },
  26667. {
  26668. name: "Normal",
  26669. height: math.unit(6 + 4 / 12, "feet"),
  26670. default: true
  26671. },
  26672. {
  26673. name: "Large",
  26674. height: math.unit(12, "feet")
  26675. },
  26676. ]
  26677. ))
  26678. characterMakers.push(() => makeCharacter(
  26679. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26680. {
  26681. front: {
  26682. height: math.unit(5 + 7 / 12, "feet"),
  26683. weight: math.unit(185, "lb"),
  26684. name: "Front",
  26685. image: {
  26686. source: "./media/characters/aman-aquila/front.svg",
  26687. extra: 1013 / 976,
  26688. bottom: 45.6 / 1057
  26689. }
  26690. },
  26691. side: {
  26692. height: math.unit(5 + 7 / 12, "feet"),
  26693. weight: math.unit(185, "lb"),
  26694. name: "Side",
  26695. image: {
  26696. source: "./media/characters/aman-aquila/side.svg",
  26697. extra: 1054 / 1011,
  26698. bottom: 15 / 1070
  26699. }
  26700. },
  26701. back: {
  26702. height: math.unit(5 + 7 / 12, "feet"),
  26703. weight: math.unit(185, "lb"),
  26704. name: "Back",
  26705. image: {
  26706. source: "./media/characters/aman-aquila/back.svg",
  26707. extra: 1026 / 970,
  26708. bottom: 12 / 1039
  26709. }
  26710. },
  26711. head: {
  26712. height: math.unit(1.211, "feet"),
  26713. name: "Head",
  26714. image: {
  26715. source: "./media/characters/aman-aquila/head.svg",
  26716. }
  26717. },
  26718. },
  26719. [
  26720. {
  26721. name: "Minimicro",
  26722. height: math.unit(0.057, "inches")
  26723. },
  26724. {
  26725. name: "Micro",
  26726. height: math.unit(7, "inches")
  26727. },
  26728. {
  26729. name: "Mini",
  26730. height: math.unit(3 + 7 / 12, "feet")
  26731. },
  26732. {
  26733. name: "Normal",
  26734. height: math.unit(5 + 7 / 12, "feet"),
  26735. default: true
  26736. },
  26737. {
  26738. name: "Macro",
  26739. height: math.unit(157 + 7 / 12, "feet")
  26740. },
  26741. {
  26742. name: "Megamacro",
  26743. height: math.unit(1557 + 7 / 12, "feet")
  26744. },
  26745. {
  26746. name: "Gigamacro",
  26747. height: math.unit(15557 + 7 / 12, "feet")
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(3 + 2 / 12, "inches"),
  26756. weight: math.unit(0.3, "ounces"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/hiphae/front.svg",
  26760. extra: 1931 / 1683,
  26761. bottom: 24 / 1955
  26762. }
  26763. },
  26764. },
  26765. [
  26766. {
  26767. name: "Normal",
  26768. height: math.unit(3 + 1 / 2, "inches"),
  26769. default: true
  26770. },
  26771. ]
  26772. ))
  26773. characterMakers.push(() => makeCharacter(
  26774. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26775. {
  26776. front: {
  26777. height: math.unit(5 + 10 / 12, "feet"),
  26778. weight: math.unit(165, "lb"),
  26779. name: "Front",
  26780. image: {
  26781. source: "./media/characters/nicky/front.svg",
  26782. extra: 3144 / 2886,
  26783. bottom: 45.6 / 3192
  26784. }
  26785. },
  26786. back: {
  26787. height: math.unit(5 + 10 / 12, "feet"),
  26788. weight: math.unit(165, "lb"),
  26789. name: "Back",
  26790. image: {
  26791. source: "./media/characters/nicky/back.svg",
  26792. extra: 3055 / 2804,
  26793. bottom: 28.4 / 3087
  26794. }
  26795. },
  26796. frontclothed: {
  26797. height: math.unit(5 + 10 / 12, "feet"),
  26798. weight: math.unit(165, "lb"),
  26799. name: "Front-clothed",
  26800. image: {
  26801. source: "./media/characters/nicky/front-clothed.svg",
  26802. extra: 3184.9 / 2926.9,
  26803. bottom: 86.5 / 3239.9
  26804. }
  26805. },
  26806. foot: {
  26807. height: math.unit(1.16, "feet"),
  26808. name: "Foot",
  26809. image: {
  26810. source: "./media/characters/nicky/foot.svg"
  26811. }
  26812. },
  26813. feet: {
  26814. height: math.unit(1.34, "feet"),
  26815. name: "Feet",
  26816. image: {
  26817. source: "./media/characters/nicky/feet.svg"
  26818. }
  26819. },
  26820. maw: {
  26821. height: math.unit(0.9, "feet"),
  26822. name: "Maw",
  26823. image: {
  26824. source: "./media/characters/nicky/maw.svg"
  26825. }
  26826. },
  26827. },
  26828. [
  26829. {
  26830. name: "Normal",
  26831. height: math.unit(5 + 10 / 12, "feet"),
  26832. default: true
  26833. },
  26834. {
  26835. name: "Macro",
  26836. height: math.unit(60, "feet")
  26837. },
  26838. {
  26839. name: "Megamacro",
  26840. height: math.unit(1, "mile")
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26846. {
  26847. side: {
  26848. height: math.unit(10, "feet"),
  26849. weight: math.unit(600, "lb"),
  26850. name: "Side",
  26851. image: {
  26852. source: "./media/characters/blair/side.svg",
  26853. bottom: 16.6 / 475,
  26854. extra: 458 / 431
  26855. }
  26856. },
  26857. },
  26858. [
  26859. {
  26860. name: "Micro",
  26861. height: math.unit(8, "inches")
  26862. },
  26863. {
  26864. name: "Normal",
  26865. height: math.unit(10, "feet"),
  26866. default: true
  26867. },
  26868. {
  26869. name: "Macro",
  26870. height: math.unit(180, "feet")
  26871. },
  26872. ]
  26873. ))
  26874. characterMakers.push(() => makeCharacter(
  26875. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26876. {
  26877. front: {
  26878. height: math.unit(5 + 4 / 12, "feet"),
  26879. weight: math.unit(125, "lb"),
  26880. name: "Front",
  26881. image: {
  26882. source: "./media/characters/fisher/front.svg",
  26883. extra: 444 / 390,
  26884. bottom: 2 / 444.8
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Micro",
  26891. height: math.unit(4, "inches")
  26892. },
  26893. {
  26894. name: "Normal",
  26895. height: math.unit(5 + 4 / 12, "feet"),
  26896. default: true
  26897. },
  26898. {
  26899. name: "Macro",
  26900. height: math.unit(100, "feet")
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26906. {
  26907. front: {
  26908. height: math.unit(6.71, "feet"),
  26909. weight: math.unit(200, "lb"),
  26910. preyCapacity: math.unit(1000000, "people"),
  26911. name: "Front",
  26912. image: {
  26913. source: "./media/characters/gliss/front.svg",
  26914. extra: 2347 / 2231,
  26915. bottom: 113 / 2462
  26916. }
  26917. },
  26918. hammerspaceSize: {
  26919. height: math.unit(6.71 * 717, "feet"),
  26920. weight: math.unit(200, "lb"),
  26921. preyCapacity: math.unit(1000000, "people"),
  26922. name: "Hammerspace Size",
  26923. image: {
  26924. source: "./media/characters/gliss/front.svg",
  26925. extra: 2347 / 2231,
  26926. bottom: 113 / 2462
  26927. }
  26928. },
  26929. },
  26930. [
  26931. {
  26932. name: "Normal",
  26933. height: math.unit(6.71, "feet"),
  26934. default: true
  26935. },
  26936. ]
  26937. ))
  26938. characterMakers.push(() => makeCharacter(
  26939. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26940. {
  26941. side: {
  26942. height: math.unit(1.44, "m"),
  26943. weight: math.unit(80, "kg"),
  26944. name: "Side",
  26945. image: {
  26946. source: "./media/characters/dune-anderson/side.svg",
  26947. bottom: 49 / 1426
  26948. }
  26949. },
  26950. },
  26951. [
  26952. {
  26953. name: "Wolf-sized",
  26954. height: math.unit(1.44, "meters")
  26955. },
  26956. {
  26957. name: "Normal",
  26958. height: math.unit(5.05, "meters"),
  26959. default: true
  26960. },
  26961. {
  26962. name: "Big",
  26963. height: math.unit(14.4, "meters")
  26964. },
  26965. {
  26966. name: "Huge",
  26967. height: math.unit(144, "meters")
  26968. },
  26969. ]
  26970. ))
  26971. characterMakers.push(() => makeCharacter(
  26972. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26973. {
  26974. front: {
  26975. height: math.unit(7, "feet"),
  26976. weight: math.unit(425, "lb"),
  26977. name: "Front",
  26978. image: {
  26979. source: "./media/characters/hind/front.svg",
  26980. extra: 2091 / 1860,
  26981. bottom: 129 / 2220
  26982. }
  26983. },
  26984. back: {
  26985. height: math.unit(7, "feet"),
  26986. weight: math.unit(425, "lb"),
  26987. name: "Back",
  26988. image: {
  26989. source: "./media/characters/hind/back.svg",
  26990. extra: 2091 / 1860,
  26991. bottom: 24.6 / 2309
  26992. }
  26993. },
  26994. tail: {
  26995. height: math.unit(2.8, "feet"),
  26996. name: "Tail",
  26997. image: {
  26998. source: "./media/characters/hind/tail.svg"
  26999. }
  27000. },
  27001. head: {
  27002. height: math.unit(2.55, "feet"),
  27003. name: "Head",
  27004. image: {
  27005. source: "./media/characters/hind/head.svg"
  27006. }
  27007. },
  27008. },
  27009. [
  27010. {
  27011. name: "XS",
  27012. height: math.unit(0.7, "feet")
  27013. },
  27014. {
  27015. name: "Normal",
  27016. height: math.unit(7, "feet"),
  27017. default: true
  27018. },
  27019. {
  27020. name: "XL",
  27021. height: math.unit(70, "feet")
  27022. },
  27023. ]
  27024. ))
  27025. characterMakers.push(() => makeCharacter(
  27026. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27027. {
  27028. front: {
  27029. height: math.unit(2.1, "meters"),
  27030. weight: math.unit(150, "lb"),
  27031. name: "Front",
  27032. image: {
  27033. source: "./media/characters/tharquench-sizestealer/front.svg",
  27034. extra: 1605/1470,
  27035. bottom: 36/1641
  27036. }
  27037. },
  27038. frontAlt: {
  27039. height: math.unit(2.1, "meters"),
  27040. weight: math.unit(150, "lb"),
  27041. name: "Front (Alt)",
  27042. image: {
  27043. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27044. extra: 2318 / 2063,
  27045. bottom: 93.4 / 2410
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Nano",
  27052. height: math.unit(1, "mm")
  27053. },
  27054. {
  27055. name: "Micro",
  27056. height: math.unit(1, "cm")
  27057. },
  27058. {
  27059. name: "Normal",
  27060. height: math.unit(2.1, "meters"),
  27061. default: true
  27062. },
  27063. ]
  27064. ))
  27065. characterMakers.push(() => makeCharacter(
  27066. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27067. {
  27068. front: {
  27069. height: math.unit(7 + 5 / 12, "feet"),
  27070. weight: math.unit(357, "lb"),
  27071. name: "Front",
  27072. image: {
  27073. source: "./media/characters/solex-draconov/front.svg",
  27074. extra: 1993 / 1865,
  27075. bottom: 117 / 2111
  27076. }
  27077. },
  27078. },
  27079. [
  27080. {
  27081. name: "Natural Height",
  27082. height: math.unit(7 + 5 / 12, "feet"),
  27083. default: true
  27084. },
  27085. {
  27086. name: "Macro",
  27087. height: math.unit(350, "feet")
  27088. },
  27089. {
  27090. name: "Macro+",
  27091. height: math.unit(1000, "feet")
  27092. },
  27093. {
  27094. name: "Megamacro",
  27095. height: math.unit(20, "km")
  27096. },
  27097. {
  27098. name: "Megamacro+",
  27099. height: math.unit(1000, "km")
  27100. },
  27101. {
  27102. name: "Gigamacro",
  27103. height: math.unit(2.5, "Gm")
  27104. },
  27105. {
  27106. name: "Teramacro",
  27107. height: math.unit(15, "Tm")
  27108. },
  27109. {
  27110. name: "Galactic",
  27111. height: math.unit(30, "Zm")
  27112. },
  27113. {
  27114. name: "Universal",
  27115. height: math.unit(21000, "Ym")
  27116. },
  27117. {
  27118. name: "Omniversal",
  27119. height: math.unit(9.861e50, "Ym")
  27120. },
  27121. {
  27122. name: "Existential",
  27123. height: math.unit(1e300, "meters")
  27124. },
  27125. ]
  27126. ))
  27127. characterMakers.push(() => makeCharacter(
  27128. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27129. {
  27130. side: {
  27131. height: math.unit(25, "feet"),
  27132. weight: math.unit(90000, "lb"),
  27133. name: "Side",
  27134. image: {
  27135. source: "./media/characters/mandarax/side.svg",
  27136. extra: 614 / 332,
  27137. bottom: 55 / 630
  27138. }
  27139. },
  27140. lounging: {
  27141. height: math.unit(15.4, "feet"),
  27142. weight: math.unit(90000, "lb"),
  27143. name: "Lounging",
  27144. image: {
  27145. source: "./media/characters/mandarax/lounging.svg",
  27146. extra: 817/609,
  27147. bottom: 685/1502
  27148. }
  27149. },
  27150. head: {
  27151. height: math.unit(11.4, "feet"),
  27152. name: "Head",
  27153. image: {
  27154. source: "./media/characters/mandarax/head.svg"
  27155. }
  27156. },
  27157. belly: {
  27158. height: math.unit(33, "feet"),
  27159. name: "Belly",
  27160. preyCapacity: math.unit(500, "people"),
  27161. image: {
  27162. source: "./media/characters/mandarax/belly.svg"
  27163. }
  27164. },
  27165. dick: {
  27166. height: math.unit(8.46, "feet"),
  27167. name: "Dick",
  27168. image: {
  27169. source: "./media/characters/mandarax/dick.svg"
  27170. }
  27171. },
  27172. top: {
  27173. height: math.unit(28, "meters"),
  27174. name: "Top",
  27175. image: {
  27176. source: "./media/characters/mandarax/top.svg"
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Normal",
  27183. height: math.unit(25, "feet"),
  27184. default: true
  27185. },
  27186. ]
  27187. ))
  27188. characterMakers.push(() => makeCharacter(
  27189. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27190. {
  27191. front: {
  27192. height: math.unit(5, "feet"),
  27193. weight: math.unit(90, "lb"),
  27194. name: "Front",
  27195. image: {
  27196. source: "./media/characters/pixil/front.svg",
  27197. extra: 2000 / 1618,
  27198. bottom: 12.3 / 2011
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Normal",
  27205. height: math.unit(5, "feet"),
  27206. default: true
  27207. },
  27208. {
  27209. name: "Megamacro",
  27210. height: math.unit(10, "miles"),
  27211. },
  27212. ]
  27213. ))
  27214. characterMakers.push(() => makeCharacter(
  27215. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27216. {
  27217. front: {
  27218. height: math.unit(7 + 2 / 12, "feet"),
  27219. weight: math.unit(200, "lb"),
  27220. name: "Front",
  27221. image: {
  27222. source: "./media/characters/angel/front.svg",
  27223. extra: 1830 / 1737,
  27224. bottom: 22.6 / 1854,
  27225. }
  27226. },
  27227. },
  27228. [
  27229. {
  27230. name: "Normal",
  27231. height: math.unit(7 + 2 / 12, "feet"),
  27232. default: true
  27233. },
  27234. {
  27235. name: "Macro",
  27236. height: math.unit(1000, "feet")
  27237. },
  27238. {
  27239. name: "Megamacro",
  27240. height: math.unit(2, "miles")
  27241. },
  27242. {
  27243. name: "Gigamacro",
  27244. height: math.unit(20, "earths")
  27245. },
  27246. ]
  27247. ))
  27248. characterMakers.push(() => makeCharacter(
  27249. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27250. {
  27251. front: {
  27252. height: math.unit(5, "feet"),
  27253. weight: math.unit(180, "lb"),
  27254. name: "Front",
  27255. image: {
  27256. source: "./media/characters/mekana/front.svg",
  27257. extra: 1671 / 1605,
  27258. bottom: 3.5 / 1691
  27259. }
  27260. },
  27261. side: {
  27262. height: math.unit(5, "feet"),
  27263. weight: math.unit(180, "lb"),
  27264. name: "Side",
  27265. image: {
  27266. source: "./media/characters/mekana/side.svg",
  27267. extra: 1671 / 1605,
  27268. bottom: 3.5 / 1691
  27269. }
  27270. },
  27271. back: {
  27272. height: math.unit(5, "feet"),
  27273. weight: math.unit(180, "lb"),
  27274. name: "Back",
  27275. image: {
  27276. source: "./media/characters/mekana/back.svg",
  27277. extra: 1671 / 1605,
  27278. bottom: 3.5 / 1691
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(5, "feet"),
  27286. default: true
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27292. {
  27293. front: {
  27294. height: math.unit(4 + 6 / 12, "feet"),
  27295. weight: math.unit(80, "lb"),
  27296. name: "Front",
  27297. image: {
  27298. source: "./media/characters/pixie/front.svg",
  27299. extra: 1924 / 1825,
  27300. bottom: 22.4 / 1946
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Normal",
  27307. height: math.unit(4 + 6 / 12, "feet"),
  27308. default: true
  27309. },
  27310. {
  27311. name: "Macro",
  27312. height: math.unit(40, "feet")
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27318. {
  27319. front: {
  27320. height: math.unit(2.1, "meters"),
  27321. weight: math.unit(200, "lb"),
  27322. name: "Front",
  27323. image: {
  27324. source: "./media/characters/the-lascivious/front.svg",
  27325. extra: 1 / 0.893,
  27326. bottom: 3.5 / 573.7
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Human Scale",
  27333. height: math.unit(2.1, "meters")
  27334. },
  27335. {
  27336. name: "Wolxi Scale",
  27337. height: math.unit(46.2, "m"),
  27338. default: true
  27339. },
  27340. {
  27341. name: "Boinker of Buildings",
  27342. height: math.unit(10, "km")
  27343. },
  27344. {
  27345. name: "Shagger of Skyscrapers",
  27346. height: math.unit(40, "km")
  27347. },
  27348. {
  27349. name: "Banger of Boroughs",
  27350. height: math.unit(4000, "km")
  27351. },
  27352. {
  27353. name: "Screwer of States",
  27354. height: math.unit(100000, "km")
  27355. },
  27356. {
  27357. name: "Pounder of Planets",
  27358. height: math.unit(2000000, "km")
  27359. },
  27360. ]
  27361. ))
  27362. characterMakers.push(() => makeCharacter(
  27363. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27364. {
  27365. front: {
  27366. height: math.unit(6, "feet"),
  27367. weight: math.unit(150, "lb"),
  27368. name: "Front",
  27369. image: {
  27370. source: "./media/characters/aj/front.svg",
  27371. extra: 2039 / 1562,
  27372. bottom: 40 / 2079
  27373. }
  27374. },
  27375. },
  27376. [
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(11 + 6 / 12, "feet"),
  27380. default: true
  27381. },
  27382. {
  27383. name: "Megamacro",
  27384. height: math.unit(60, "megameters")
  27385. },
  27386. ]
  27387. ))
  27388. characterMakers.push(() => makeCharacter(
  27389. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27390. {
  27391. side: {
  27392. height: math.unit(31 + 8 / 12, "feet"),
  27393. weight: math.unit(75000, "kg"),
  27394. name: "Side",
  27395. image: {
  27396. source: "./media/characters/koros/side.svg",
  27397. extra: 1442 / 1297,
  27398. bottom: 122.7 / 1562
  27399. }
  27400. },
  27401. dicksKingsCrown: {
  27402. height: math.unit(6, "feet"),
  27403. name: "Dicks (King's Crown)",
  27404. image: {
  27405. source: "./media/characters/koros/dicks-kings-crown.svg"
  27406. }
  27407. },
  27408. dicksTailSet: {
  27409. height: math.unit(3, "feet"),
  27410. name: "Dicks (Tail Set)",
  27411. image: {
  27412. source: "./media/characters/koros/dicks-tail-set.svg"
  27413. }
  27414. },
  27415. dickCumming: {
  27416. height: math.unit(7.98, "feet"),
  27417. name: "Dick (Cumming)",
  27418. image: {
  27419. source: "./media/characters/koros/dick-cumming.svg"
  27420. }
  27421. },
  27422. dicksBack: {
  27423. height: math.unit(5.9, "feet"),
  27424. name: "Dicks (Back)",
  27425. image: {
  27426. source: "./media/characters/koros/dicks-back.svg"
  27427. }
  27428. },
  27429. dicksFront: {
  27430. height: math.unit(3.72, "feet"),
  27431. name: "Dicks (Front)",
  27432. image: {
  27433. source: "./media/characters/koros/dicks-front.svg"
  27434. }
  27435. },
  27436. dicksPeeking: {
  27437. height: math.unit(3.0, "feet"),
  27438. name: "Dicks (Peeking)",
  27439. image: {
  27440. source: "./media/characters/koros/dicks-peeking.svg"
  27441. }
  27442. },
  27443. eye: {
  27444. height: math.unit(1.7, "feet"),
  27445. name: "Eye",
  27446. image: {
  27447. source: "./media/characters/koros/eye.svg"
  27448. }
  27449. },
  27450. headFront: {
  27451. height: math.unit(11.69, "feet"),
  27452. name: "Head (Front)",
  27453. image: {
  27454. source: "./media/characters/koros/head-front.svg"
  27455. }
  27456. },
  27457. headSide: {
  27458. height: math.unit(14, "feet"),
  27459. name: "Head (Side)",
  27460. image: {
  27461. source: "./media/characters/koros/head-side.svg"
  27462. }
  27463. },
  27464. leg: {
  27465. height: math.unit(17, "feet"),
  27466. name: "Leg",
  27467. image: {
  27468. source: "./media/characters/koros/leg.svg"
  27469. }
  27470. },
  27471. mawSide: {
  27472. height: math.unit(12.8, "feet"),
  27473. name: "Maw (Side)",
  27474. image: {
  27475. source: "./media/characters/koros/maw-side.svg"
  27476. }
  27477. },
  27478. mawSpitting: {
  27479. height: math.unit(17, "feet"),
  27480. name: "Maw (Spitting)",
  27481. image: {
  27482. source: "./media/characters/koros/maw-spitting.svg"
  27483. }
  27484. },
  27485. slit: {
  27486. height: math.unit(2.8, "feet"),
  27487. name: "Slit",
  27488. image: {
  27489. source: "./media/characters/koros/slit.svg"
  27490. }
  27491. },
  27492. stomach: {
  27493. height: math.unit(6.8, "feet"),
  27494. preyCapacity: math.unit(20, "people"),
  27495. name: "Stomach",
  27496. image: {
  27497. source: "./media/characters/koros/stomach.svg"
  27498. }
  27499. },
  27500. wingspanBottom: {
  27501. height: math.unit(114, "feet"),
  27502. name: "Wingspan (Bottom)",
  27503. image: {
  27504. source: "./media/characters/koros/wingspan-bottom.svg"
  27505. }
  27506. },
  27507. wingspanTop: {
  27508. height: math.unit(104, "feet"),
  27509. name: "Wingspan (Top)",
  27510. image: {
  27511. source: "./media/characters/koros/wingspan-top.svg"
  27512. }
  27513. },
  27514. },
  27515. [
  27516. {
  27517. name: "Normal",
  27518. height: math.unit(31 + 8 / 12, "feet"),
  27519. default: true
  27520. },
  27521. ]
  27522. ))
  27523. characterMakers.push(() => makeCharacter(
  27524. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27525. {
  27526. front: {
  27527. height: math.unit(18 + 5 / 12, "feet"),
  27528. weight: math.unit(3750, "kg"),
  27529. name: "Front",
  27530. image: {
  27531. source: "./media/characters/vexx/front.svg",
  27532. extra: 426 / 396,
  27533. bottom: 31.5 / 458
  27534. }
  27535. },
  27536. maw: {
  27537. height: math.unit(6, "feet"),
  27538. name: "Maw",
  27539. image: {
  27540. source: "./media/characters/vexx/maw.svg"
  27541. }
  27542. },
  27543. },
  27544. [
  27545. {
  27546. name: "Normal",
  27547. height: math.unit(18 + 5 / 12, "feet"),
  27548. default: true
  27549. },
  27550. ]
  27551. ))
  27552. characterMakers.push(() => makeCharacter(
  27553. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27554. {
  27555. front: {
  27556. height: math.unit(17 + 6 / 12, "feet"),
  27557. weight: math.unit(150, "lb"),
  27558. name: "Front",
  27559. image: {
  27560. source: "./media/characters/baadra/front.svg",
  27561. extra: 1694/1553,
  27562. bottom: 179/1873
  27563. }
  27564. },
  27565. frontAlt: {
  27566. height: math.unit(17 + 6 / 12, "feet"),
  27567. weight: math.unit(150, "lb"),
  27568. name: "Front (Alt)",
  27569. image: {
  27570. source: "./media/characters/baadra/front-alt.svg",
  27571. extra: 3137 / 2890,
  27572. bottom: 168.4 / 3305
  27573. }
  27574. },
  27575. back: {
  27576. height: math.unit(17 + 6 / 12, "feet"),
  27577. weight: math.unit(150, "lb"),
  27578. name: "Back",
  27579. image: {
  27580. source: "./media/characters/baadra/back.svg",
  27581. extra: 3142 / 2890,
  27582. bottom: 220 / 3371
  27583. }
  27584. },
  27585. head: {
  27586. height: math.unit(5.45, "feet"),
  27587. name: "Head",
  27588. image: {
  27589. source: "./media/characters/baadra/head.svg"
  27590. }
  27591. },
  27592. headAngry: {
  27593. height: math.unit(4.95, "feet"),
  27594. name: "Head (Angry)",
  27595. image: {
  27596. source: "./media/characters/baadra/head-angry.svg"
  27597. }
  27598. },
  27599. headOpen: {
  27600. height: math.unit(6, "feet"),
  27601. name: "Head (Open)",
  27602. image: {
  27603. source: "./media/characters/baadra/head-open.svg"
  27604. }
  27605. },
  27606. },
  27607. [
  27608. {
  27609. name: "Normal",
  27610. height: math.unit(17 + 6 / 12, "feet"),
  27611. default: true
  27612. },
  27613. ]
  27614. ))
  27615. characterMakers.push(() => makeCharacter(
  27616. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27617. {
  27618. front: {
  27619. height: math.unit(7 + 3 / 12, "feet"),
  27620. weight: math.unit(180, "lb"),
  27621. name: "Front",
  27622. image: {
  27623. source: "./media/characters/juri/front.svg",
  27624. extra: 1401 / 1237,
  27625. bottom: 18.5 / 1418
  27626. }
  27627. },
  27628. side: {
  27629. height: math.unit(7 + 3 / 12, "feet"),
  27630. weight: math.unit(180, "lb"),
  27631. name: "Side",
  27632. image: {
  27633. source: "./media/characters/juri/side.svg",
  27634. extra: 1424 / 1242,
  27635. bottom: 18.5 / 1447
  27636. }
  27637. },
  27638. sitting: {
  27639. height: math.unit(6, "feet"),
  27640. weight: math.unit(180, "lb"),
  27641. name: "Sitting",
  27642. image: {
  27643. source: "./media/characters/juri/sitting.svg",
  27644. extra: 1270 / 1143,
  27645. bottom: 100 / 1343
  27646. }
  27647. },
  27648. back: {
  27649. height: math.unit(7 + 3 / 12, "feet"),
  27650. weight: math.unit(180, "lb"),
  27651. name: "Back",
  27652. image: {
  27653. source: "./media/characters/juri/back.svg",
  27654. extra: 1377 / 1240,
  27655. bottom: 23.7 / 1405
  27656. }
  27657. },
  27658. maw: {
  27659. height: math.unit(2.8, "feet"),
  27660. name: "Maw",
  27661. image: {
  27662. source: "./media/characters/juri/maw.svg"
  27663. }
  27664. },
  27665. stomach: {
  27666. height: math.unit(0.89, "feet"),
  27667. preyCapacity: math.unit(4, "liters"),
  27668. name: "Stomach",
  27669. image: {
  27670. source: "./media/characters/juri/stomach.svg"
  27671. }
  27672. },
  27673. },
  27674. [
  27675. {
  27676. name: "Normal",
  27677. height: math.unit(7 + 3 / 12, "feet"),
  27678. default: true
  27679. },
  27680. ]
  27681. ))
  27682. characterMakers.push(() => makeCharacter(
  27683. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27684. {
  27685. fox: {
  27686. height: math.unit(5 + 6 / 12, "feet"),
  27687. weight: math.unit(140, "lb"),
  27688. name: "Fox",
  27689. image: {
  27690. source: "./media/characters/maxene-sita/fox.svg",
  27691. extra: 146 / 138,
  27692. bottom: 2.1 / 148.19
  27693. }
  27694. },
  27695. foxLaying: {
  27696. height: math.unit(1.70, "feet"),
  27697. weight: math.unit(140, "lb"),
  27698. name: "Fox (Laying)",
  27699. image: {
  27700. source: "./media/characters/maxene-sita/fox-laying.svg",
  27701. extra: 910 / 572,
  27702. bottom: 71 / 981
  27703. }
  27704. },
  27705. kitsune: {
  27706. height: math.unit(10, "feet"),
  27707. weight: math.unit(800, "lb"),
  27708. name: "Kitsune",
  27709. image: {
  27710. source: "./media/characters/maxene-sita/kitsune.svg",
  27711. extra: 185 / 176,
  27712. bottom: 4.7 / 189.9
  27713. }
  27714. },
  27715. hellhound: {
  27716. height: math.unit(10, "feet"),
  27717. weight: math.unit(700, "lb"),
  27718. name: "Hellhound",
  27719. image: {
  27720. source: "./media/characters/maxene-sita/hellhound.svg",
  27721. extra: 1600 / 1545,
  27722. bottom: 81 / 1681
  27723. }
  27724. },
  27725. },
  27726. [
  27727. {
  27728. name: "Normal",
  27729. height: math.unit(5 + 6 / 12, "feet"),
  27730. default: true
  27731. },
  27732. ]
  27733. ))
  27734. characterMakers.push(() => makeCharacter(
  27735. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27736. {
  27737. front: {
  27738. height: math.unit(3 + 4 / 12, "feet"),
  27739. weight: math.unit(70, "lb"),
  27740. name: "Front",
  27741. image: {
  27742. source: "./media/characters/maia/front.svg",
  27743. extra: 227 / 219.5,
  27744. bottom: 40 / 267
  27745. }
  27746. },
  27747. back: {
  27748. height: math.unit(3 + 4 / 12, "feet"),
  27749. weight: math.unit(70, "lb"),
  27750. name: "Back",
  27751. image: {
  27752. source: "./media/characters/maia/back.svg",
  27753. extra: 237 / 225
  27754. }
  27755. },
  27756. },
  27757. [
  27758. {
  27759. name: "Normal",
  27760. height: math.unit(3 + 4 / 12, "feet"),
  27761. default: true
  27762. },
  27763. ]
  27764. ))
  27765. characterMakers.push(() => makeCharacter(
  27766. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27767. {
  27768. front: {
  27769. height: math.unit(5 + 10 / 12, "feet"),
  27770. weight: math.unit(197, "lb"),
  27771. name: "Front",
  27772. image: {
  27773. source: "./media/characters/jabaro/front.svg",
  27774. extra: 225 / 216,
  27775. bottom: 5.06 / 230
  27776. }
  27777. },
  27778. back: {
  27779. height: math.unit(5 + 10 / 12, "feet"),
  27780. weight: math.unit(197, "lb"),
  27781. name: "Back",
  27782. image: {
  27783. source: "./media/characters/jabaro/back.svg",
  27784. extra: 225 / 219,
  27785. bottom: 1.9 / 227
  27786. }
  27787. },
  27788. },
  27789. [
  27790. {
  27791. name: "Normal",
  27792. height: math.unit(5 + 10 / 12, "feet"),
  27793. default: true
  27794. },
  27795. ]
  27796. ))
  27797. characterMakers.push(() => makeCharacter(
  27798. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27799. {
  27800. front: {
  27801. height: math.unit(5 + 8 / 12, "feet"),
  27802. weight: math.unit(139, "lb"),
  27803. name: "Front",
  27804. image: {
  27805. source: "./media/characters/risa/front.svg",
  27806. extra: 270 / 260,
  27807. bottom: 11.2 / 282
  27808. }
  27809. },
  27810. back: {
  27811. height: math.unit(5 + 8 / 12, "feet"),
  27812. weight: math.unit(139, "lb"),
  27813. name: "Back",
  27814. image: {
  27815. source: "./media/characters/risa/back.svg",
  27816. extra: 264 / 255,
  27817. bottom: 4 / 268
  27818. }
  27819. },
  27820. },
  27821. [
  27822. {
  27823. name: "Normal",
  27824. height: math.unit(5 + 8 / 12, "feet"),
  27825. default: true
  27826. },
  27827. ]
  27828. ))
  27829. characterMakers.push(() => makeCharacter(
  27830. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27831. {
  27832. front: {
  27833. height: math.unit(2 + 11 / 12, "feet"),
  27834. weight: math.unit(30, "lb"),
  27835. name: "Front",
  27836. image: {
  27837. source: "./media/characters/weatley/front.svg",
  27838. bottom: 10.7 / 414,
  27839. extra: 403.5 / 362
  27840. }
  27841. },
  27842. back: {
  27843. height: math.unit(2 + 11 / 12, "feet"),
  27844. weight: math.unit(30, "lb"),
  27845. name: "Back",
  27846. image: {
  27847. source: "./media/characters/weatley/back.svg",
  27848. bottom: 10.7 / 414,
  27849. extra: 403.5 / 362
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(2 + 11 / 12, "feet"),
  27857. default: true
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(5 + 2 / 12, "feet"),
  27866. weight: math.unit(50, "kg"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/mercury-crescent/front.svg",
  27870. extra: 1088 / 1033,
  27871. bottom: 18.9 / 1109
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(5 + 2 / 12, "feet"),
  27879. default: true
  27880. },
  27881. ]
  27882. ))
  27883. characterMakers.push(() => makeCharacter(
  27884. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27885. {
  27886. front: {
  27887. height: math.unit(2, "feet"),
  27888. weight: math.unit(15, "kg"),
  27889. name: "Front",
  27890. image: {
  27891. source: "./media/characters/diamond-jones/front.svg",
  27892. extra: 727/723,
  27893. bottom: 46/773
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Normal",
  27900. height: math.unit(2, "feet"),
  27901. default: true
  27902. },
  27903. ]
  27904. ))
  27905. characterMakers.push(() => makeCharacter(
  27906. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27907. {
  27908. front: {
  27909. height: math.unit(3, "feet"),
  27910. weight: math.unit(30, "kg"),
  27911. name: "Front",
  27912. image: {
  27913. source: "./media/characters/sweet-bit/front.svg",
  27914. extra: 675 / 567,
  27915. bottom: 27.7 / 703
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Normal",
  27922. height: math.unit(3, "feet"),
  27923. default: true
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27929. {
  27930. side: {
  27931. height: math.unit(9.178, "feet"),
  27932. weight: math.unit(500, "lb"),
  27933. name: "Side",
  27934. image: {
  27935. source: "./media/characters/umbrazen/side.svg",
  27936. extra: 1730 / 1473,
  27937. bottom: 34.6 / 1765
  27938. }
  27939. },
  27940. },
  27941. [
  27942. {
  27943. name: "Normal",
  27944. height: math.unit(9.178, "feet"),
  27945. default: true
  27946. },
  27947. ]
  27948. ))
  27949. characterMakers.push(() => makeCharacter(
  27950. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27951. {
  27952. front: {
  27953. height: math.unit(10, "feet"),
  27954. weight: math.unit(750, "lb"),
  27955. name: "Front",
  27956. image: {
  27957. source: "./media/characters/arlist/front.svg",
  27958. extra: 961 / 778,
  27959. bottom: 6.2 / 986
  27960. }
  27961. },
  27962. },
  27963. [
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(10, "feet"),
  27967. default: true
  27968. },
  27969. ]
  27970. ))
  27971. characterMakers.push(() => makeCharacter(
  27972. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27973. {
  27974. front: {
  27975. height: math.unit(5 + 1 / 12, "feet"),
  27976. weight: math.unit(110, "lb"),
  27977. name: "Front",
  27978. image: {
  27979. source: "./media/characters/aradel/front.svg",
  27980. extra: 324 / 303,
  27981. bottom: 3.6 / 329.4
  27982. }
  27983. },
  27984. },
  27985. [
  27986. {
  27987. name: "Normal",
  27988. height: math.unit(5 + 1 / 12, "feet"),
  27989. default: true
  27990. },
  27991. ]
  27992. ))
  27993. characterMakers.push(() => makeCharacter(
  27994. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27995. {
  27996. dressed: {
  27997. height: math.unit(3 + 8 / 12, "feet"),
  27998. weight: math.unit(50, "lb"),
  27999. name: "Dressed",
  28000. image: {
  28001. source: "./media/characters/serryn/dressed.svg",
  28002. extra: 1792 / 1656,
  28003. bottom: 43.5 / 1840
  28004. }
  28005. },
  28006. nude: {
  28007. height: math.unit(3 + 8 / 12, "feet"),
  28008. weight: math.unit(50, "lb"),
  28009. name: "Nude",
  28010. image: {
  28011. source: "./media/characters/serryn/nude.svg",
  28012. extra: 1792 / 1656,
  28013. bottom: 43.5 / 1840
  28014. }
  28015. },
  28016. },
  28017. [
  28018. {
  28019. name: "Normal",
  28020. height: math.unit(3 + 8 / 12, "feet"),
  28021. default: true
  28022. },
  28023. ]
  28024. ))
  28025. characterMakers.push(() => makeCharacter(
  28026. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28027. {
  28028. front: {
  28029. height: math.unit(7 + 10 / 12, "feet"),
  28030. weight: math.unit(255, "lb"),
  28031. name: "Front",
  28032. image: {
  28033. source: "./media/characters/xavier-thyme/front.svg",
  28034. extra: 3733 / 3642,
  28035. bottom: 131 / 3869
  28036. }
  28037. },
  28038. frontRaven: {
  28039. height: math.unit(7 + 10 / 12, "feet"),
  28040. weight: math.unit(255, "lb"),
  28041. name: "Front (Raven)",
  28042. image: {
  28043. source: "./media/characters/xavier-thyme/front-raven.svg",
  28044. extra: 4385 / 3642,
  28045. bottom: 131 / 4517
  28046. }
  28047. },
  28048. },
  28049. [
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(7 + 10 / 12, "feet"),
  28053. default: true
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(1.6, "m"),
  28062. weight: math.unit(50, "kg"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/kiki/front.svg",
  28066. extra: 4682 / 3610,
  28067. bottom: 115 / 4777
  28068. }
  28069. },
  28070. },
  28071. [
  28072. {
  28073. name: "Normal",
  28074. height: math.unit(1.6, "meters"),
  28075. default: true
  28076. },
  28077. ]
  28078. ))
  28079. characterMakers.push(() => makeCharacter(
  28080. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28081. {
  28082. front: {
  28083. height: math.unit(50, "m"),
  28084. weight: math.unit(500, "tonnes"),
  28085. name: "Front",
  28086. image: {
  28087. source: "./media/characters/ryoko/front.svg",
  28088. extra: 4632 / 3926,
  28089. bottom: 193 / 4823
  28090. }
  28091. },
  28092. },
  28093. [
  28094. {
  28095. name: "Normal",
  28096. height: math.unit(50, "meters"),
  28097. default: true
  28098. },
  28099. ]
  28100. ))
  28101. characterMakers.push(() => makeCharacter(
  28102. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28103. {
  28104. front: {
  28105. height: math.unit(30, "m"),
  28106. weight: math.unit(22, "tonnes"),
  28107. name: "Front",
  28108. image: {
  28109. source: "./media/characters/elio/front.svg",
  28110. extra: 4582 / 3720,
  28111. bottom: 236 / 4828
  28112. }
  28113. },
  28114. },
  28115. [
  28116. {
  28117. name: "Normal",
  28118. height: math.unit(30, "meters"),
  28119. default: true
  28120. },
  28121. ]
  28122. ))
  28123. characterMakers.push(() => makeCharacter(
  28124. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28125. {
  28126. front: {
  28127. height: math.unit(6 + 3 / 12, "feet"),
  28128. weight: math.unit(120, "lb"),
  28129. name: "Front",
  28130. image: {
  28131. source: "./media/characters/azura/front.svg",
  28132. extra: 1149 / 1135,
  28133. bottom: 45 / 1194
  28134. }
  28135. },
  28136. frontClothed: {
  28137. height: math.unit(6 + 3 / 12, "feet"),
  28138. weight: math.unit(120, "lb"),
  28139. name: "Front (Clothed)",
  28140. image: {
  28141. source: "./media/characters/azura/front-clothed.svg",
  28142. extra: 1149 / 1135,
  28143. bottom: 45 / 1194
  28144. }
  28145. },
  28146. },
  28147. [
  28148. {
  28149. name: "Normal",
  28150. height: math.unit(6 + 3 / 12, "feet"),
  28151. default: true
  28152. },
  28153. {
  28154. name: "Macro",
  28155. height: math.unit(20 + 6 / 12, "feet")
  28156. },
  28157. {
  28158. name: "Megamacro",
  28159. height: math.unit(12, "miles")
  28160. },
  28161. {
  28162. name: "Gigamacro",
  28163. height: math.unit(10000, "miles")
  28164. },
  28165. {
  28166. name: "Teramacro",
  28167. height: math.unit(900000, "miles")
  28168. },
  28169. ]
  28170. ))
  28171. characterMakers.push(() => makeCharacter(
  28172. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28173. {
  28174. front: {
  28175. height: math.unit(12, "feet"),
  28176. weight: math.unit(1, "ton"),
  28177. capacity: math.unit(660000, "gallons"),
  28178. name: "Front",
  28179. image: {
  28180. source: "./media/characters/zeus/front.svg",
  28181. extra: 5005 / 4717,
  28182. bottom: 363 / 5388
  28183. }
  28184. },
  28185. },
  28186. [
  28187. {
  28188. name: "Normal",
  28189. height: math.unit(12, "feet")
  28190. },
  28191. {
  28192. name: "Preferred Size",
  28193. height: math.unit(0.5, "miles"),
  28194. default: true
  28195. },
  28196. {
  28197. name: "Giga Horse",
  28198. height: math.unit(300, "miles")
  28199. },
  28200. {
  28201. name: "Riding Planets",
  28202. height: math.unit(30, "megameters")
  28203. },
  28204. {
  28205. name: "Cosmic Giant",
  28206. height: math.unit(3, "zettameters")
  28207. },
  28208. {
  28209. name: "Breeding God",
  28210. height: math.unit(9.92e22, "yottameters")
  28211. },
  28212. ]
  28213. ))
  28214. characterMakers.push(() => makeCharacter(
  28215. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28216. {
  28217. side: {
  28218. height: math.unit(9, "feet"),
  28219. weight: math.unit(1500, "kg"),
  28220. name: "Side",
  28221. image: {
  28222. source: "./media/characters/fang/side.svg",
  28223. extra: 924 / 866,
  28224. bottom: 47.5 / 972.3
  28225. }
  28226. },
  28227. },
  28228. [
  28229. {
  28230. name: "Normal",
  28231. height: math.unit(9, "feet"),
  28232. default: true
  28233. },
  28234. {
  28235. name: "Macro",
  28236. height: math.unit(75 + 6 / 12, "feet")
  28237. },
  28238. {
  28239. name: "Teramacro",
  28240. height: math.unit(50000, "miles")
  28241. },
  28242. ]
  28243. ))
  28244. characterMakers.push(() => makeCharacter(
  28245. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28246. {
  28247. front: {
  28248. height: math.unit(10, "feet"),
  28249. weight: math.unit(2, "tons"),
  28250. name: "Front",
  28251. image: {
  28252. source: "./media/characters/rekhit/front.svg",
  28253. extra: 2796 / 2590,
  28254. bottom: 225 / 3022
  28255. }
  28256. },
  28257. },
  28258. [
  28259. {
  28260. name: "Normal",
  28261. height: math.unit(10, "feet"),
  28262. default: true
  28263. },
  28264. {
  28265. name: "Macro",
  28266. height: math.unit(500, "feet")
  28267. },
  28268. ]
  28269. ))
  28270. characterMakers.push(() => makeCharacter(
  28271. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28272. {
  28273. front: {
  28274. height: math.unit(7 + 6.451 / 12, "feet"),
  28275. weight: math.unit(310, "lb"),
  28276. name: "Front",
  28277. image: {
  28278. source: "./media/characters/dahlia-verrick/front.svg",
  28279. extra: 1488 / 1365,
  28280. bottom: 6.2 / 1495
  28281. }
  28282. },
  28283. back: {
  28284. height: math.unit(7 + 6.451 / 12, "feet"),
  28285. weight: math.unit(310, "lb"),
  28286. name: "Back",
  28287. image: {
  28288. source: "./media/characters/dahlia-verrick/back.svg",
  28289. extra: 1472 / 1351,
  28290. bottom: 5.28 / 1477
  28291. }
  28292. },
  28293. frontBusiness: {
  28294. height: math.unit(7 + 6.451 / 12, "feet"),
  28295. weight: math.unit(200, "lb"),
  28296. name: "Front (Business)",
  28297. image: {
  28298. source: "./media/characters/dahlia-verrick/front-business.svg",
  28299. extra: 1478 / 1381,
  28300. bottom: 5.5 / 1484
  28301. }
  28302. },
  28303. frontCasual: {
  28304. height: math.unit(7 + 6.451 / 12, "feet"),
  28305. weight: math.unit(200, "lb"),
  28306. name: "Front (Casual)",
  28307. image: {
  28308. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28309. extra: 1478 / 1381,
  28310. bottom: 5.5 / 1484
  28311. }
  28312. },
  28313. },
  28314. [
  28315. {
  28316. name: "Travel-Sized",
  28317. height: math.unit(7.45, "inches")
  28318. },
  28319. {
  28320. name: "Normal",
  28321. height: math.unit(7 + 6.451 / 12, "feet"),
  28322. default: true
  28323. },
  28324. {
  28325. name: "Hitting the Town",
  28326. height: math.unit(37 + 8 / 12, "feet")
  28327. },
  28328. {
  28329. name: "Stomp in the Suburbs",
  28330. height: math.unit(964 + 9.728 / 12, "feet")
  28331. },
  28332. {
  28333. name: "Sit on the City",
  28334. height: math.unit(61747 + 10.592 / 12, "feet")
  28335. },
  28336. {
  28337. name: "Glomp the Globe",
  28338. height: math.unit(252919327 + 4.832 / 12, "feet")
  28339. },
  28340. ]
  28341. ))
  28342. characterMakers.push(() => makeCharacter(
  28343. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28344. {
  28345. front: {
  28346. height: math.unit(6 + 4 / 12, "feet"),
  28347. weight: math.unit(320, "lb"),
  28348. name: "Front",
  28349. image: {
  28350. source: "./media/characters/balina-mahigan/front.svg",
  28351. extra: 447 / 428,
  28352. bottom: 18 / 466
  28353. }
  28354. },
  28355. back: {
  28356. height: math.unit(6 + 4 / 12, "feet"),
  28357. weight: math.unit(320, "lb"),
  28358. name: "Back",
  28359. image: {
  28360. source: "./media/characters/balina-mahigan/back.svg",
  28361. extra: 445 / 428,
  28362. bottom: 4.07 / 448
  28363. }
  28364. },
  28365. arm: {
  28366. height: math.unit(1.88, "feet"),
  28367. name: "Arm",
  28368. image: {
  28369. source: "./media/characters/balina-mahigan/arm.svg"
  28370. }
  28371. },
  28372. backPort: {
  28373. height: math.unit(0.685, "feet"),
  28374. name: "Back Port",
  28375. image: {
  28376. source: "./media/characters/balina-mahigan/back-port.svg"
  28377. }
  28378. },
  28379. hoofpaw: {
  28380. height: math.unit(1.41, "feet"),
  28381. name: "Hoofpaw",
  28382. image: {
  28383. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28384. }
  28385. },
  28386. leftHandBack: {
  28387. height: math.unit(0.938, "feet"),
  28388. name: "Left Hand (Back)",
  28389. image: {
  28390. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28391. }
  28392. },
  28393. leftHandFront: {
  28394. height: math.unit(0.938, "feet"),
  28395. name: "Left Hand (Front)",
  28396. image: {
  28397. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28398. }
  28399. },
  28400. rightHandBack: {
  28401. height: math.unit(0.95, "feet"),
  28402. name: "Right Hand (Back)",
  28403. image: {
  28404. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28405. }
  28406. },
  28407. rightHandFront: {
  28408. height: math.unit(0.95, "feet"),
  28409. name: "Right Hand (Front)",
  28410. image: {
  28411. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Normal",
  28418. height: math.unit(6 + 4 / 12, "feet"),
  28419. default: true
  28420. },
  28421. ]
  28422. ))
  28423. characterMakers.push(() => makeCharacter(
  28424. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28425. {
  28426. front: {
  28427. height: math.unit(6, "feet"),
  28428. weight: math.unit(320, "lb"),
  28429. name: "Front",
  28430. image: {
  28431. source: "./media/characters/balina-mejeri/front.svg",
  28432. extra: 517 / 488,
  28433. bottom: 44.2 / 561
  28434. }
  28435. },
  28436. },
  28437. [
  28438. {
  28439. name: "Normal",
  28440. height: math.unit(6 + 4 / 12, "feet")
  28441. },
  28442. {
  28443. name: "Business",
  28444. height: math.unit(155, "feet"),
  28445. default: true
  28446. },
  28447. ]
  28448. ))
  28449. characterMakers.push(() => makeCharacter(
  28450. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28451. {
  28452. kneeling: {
  28453. height: math.unit(6 + 4 / 12, "feet"),
  28454. weight: math.unit(300 * 20, "lb"),
  28455. name: "Kneeling",
  28456. image: {
  28457. source: "./media/characters/balbarian/kneeling.svg",
  28458. extra: 922 / 862,
  28459. bottom: 42.4 / 965
  28460. }
  28461. },
  28462. },
  28463. [
  28464. {
  28465. name: "Normal",
  28466. height: math.unit(6 + 4 / 12, "feet")
  28467. },
  28468. {
  28469. name: "Treasured",
  28470. height: math.unit(18 + 9 / 12, "feet"),
  28471. default: true
  28472. },
  28473. {
  28474. name: "Macro",
  28475. height: math.unit(900, "feet")
  28476. },
  28477. ]
  28478. ))
  28479. characterMakers.push(() => makeCharacter(
  28480. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28481. {
  28482. front: {
  28483. height: math.unit(6 + 4 / 12, "feet"),
  28484. weight: math.unit(325, "lb"),
  28485. name: "Front",
  28486. image: {
  28487. source: "./media/characters/balina-amarini/front.svg",
  28488. extra: 415 / 403,
  28489. bottom: 19 / 433.4
  28490. }
  28491. },
  28492. back: {
  28493. height: math.unit(6 + 4 / 12, "feet"),
  28494. weight: math.unit(325, "lb"),
  28495. name: "Back",
  28496. image: {
  28497. source: "./media/characters/balina-amarini/back.svg",
  28498. extra: 415 / 403,
  28499. bottom: 13.5 / 432
  28500. }
  28501. },
  28502. overdrive: {
  28503. height: math.unit(6 + 4 / 12, "feet"),
  28504. weight: math.unit(400, "lb"),
  28505. name: "Overdrive",
  28506. image: {
  28507. source: "./media/characters/balina-amarini/overdrive.svg",
  28508. extra: 269 / 259,
  28509. bottom: 12 / 282
  28510. }
  28511. },
  28512. },
  28513. [
  28514. {
  28515. name: "Boom",
  28516. height: math.unit(9 + 10 / 12, "feet"),
  28517. default: true
  28518. },
  28519. {
  28520. name: "Macro",
  28521. height: math.unit(280, "feet")
  28522. },
  28523. ]
  28524. ))
  28525. characterMakers.push(() => makeCharacter(
  28526. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28527. {
  28528. goddess: {
  28529. height: math.unit(600, "feet"),
  28530. weight: math.unit(2000000, "tons"),
  28531. name: "Goddess",
  28532. image: {
  28533. source: "./media/characters/lady-kubwa/goddess.svg",
  28534. extra: 1240.5 / 1223,
  28535. bottom: 22 / 1263
  28536. }
  28537. },
  28538. goddesser: {
  28539. height: math.unit(900, "feet"),
  28540. weight: math.unit(20000000, "lb"),
  28541. name: "Goddess-er",
  28542. image: {
  28543. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28544. extra: 899 / 888,
  28545. bottom: 12.6 / 912
  28546. }
  28547. },
  28548. },
  28549. [
  28550. {
  28551. name: "Macro",
  28552. height: math.unit(600, "feet"),
  28553. default: true
  28554. },
  28555. {
  28556. name: "Megamacro",
  28557. height: math.unit(250, "miles")
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28563. {
  28564. front: {
  28565. height: math.unit(7 + 7 / 12, "feet"),
  28566. weight: math.unit(250, "lb"),
  28567. name: "Front",
  28568. image: {
  28569. source: "./media/characters/tala-grovehorn/front.svg",
  28570. extra: 2636 / 2525,
  28571. bottom: 147 / 2781
  28572. }
  28573. },
  28574. back: {
  28575. height: math.unit(7 + 7 / 12, "feet"),
  28576. weight: math.unit(250, "lb"),
  28577. name: "Back",
  28578. image: {
  28579. source: "./media/characters/tala-grovehorn/back.svg",
  28580. extra: 2635 / 2539,
  28581. bottom: 100 / 2732.8
  28582. }
  28583. },
  28584. mouth: {
  28585. height: math.unit(1.15, "feet"),
  28586. name: "Mouth",
  28587. image: {
  28588. source: "./media/characters/tala-grovehorn/mouth.svg"
  28589. }
  28590. },
  28591. dick: {
  28592. height: math.unit(2.36, "feet"),
  28593. name: "Dick",
  28594. image: {
  28595. source: "./media/characters/tala-grovehorn/dick.svg"
  28596. }
  28597. },
  28598. slit: {
  28599. height: math.unit(0.61, "feet"),
  28600. name: "Slit",
  28601. image: {
  28602. source: "./media/characters/tala-grovehorn/slit.svg"
  28603. }
  28604. },
  28605. },
  28606. [
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28611. {
  28612. front: {
  28613. height: math.unit(7 + 7 / 12, "feet"),
  28614. weight: math.unit(225, "lb"),
  28615. name: "Front",
  28616. image: {
  28617. source: "./media/characters/epona/front.svg",
  28618. extra: 2445 / 2290,
  28619. bottom: 251 / 2696
  28620. }
  28621. },
  28622. back: {
  28623. height: math.unit(7 + 7 / 12, "feet"),
  28624. weight: math.unit(225, "lb"),
  28625. name: "Back",
  28626. image: {
  28627. source: "./media/characters/epona/back.svg",
  28628. extra: 2546 / 2408,
  28629. bottom: 44 / 2589
  28630. }
  28631. },
  28632. genitals: {
  28633. height: math.unit(1.5, "feet"),
  28634. name: "Genitals",
  28635. image: {
  28636. source: "./media/characters/epona/genitals.svg"
  28637. }
  28638. },
  28639. },
  28640. [
  28641. {
  28642. name: "Normal",
  28643. height: math.unit(7 + 7 / 12, "feet"),
  28644. default: true
  28645. },
  28646. ]
  28647. ))
  28648. characterMakers.push(() => makeCharacter(
  28649. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28650. {
  28651. front: {
  28652. height: math.unit(7, "feet"),
  28653. weight: math.unit(518, "lb"),
  28654. name: "Front",
  28655. image: {
  28656. source: "./media/characters/avia-bloodbourn/front.svg",
  28657. extra: 1466 / 1350,
  28658. bottom: 65 / 1527
  28659. }
  28660. },
  28661. },
  28662. [
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28667. {
  28668. front: {
  28669. height: math.unit(9.35, "feet"),
  28670. weight: math.unit(600, "lb"),
  28671. name: "Front",
  28672. image: {
  28673. source: "./media/characters/amera/front.svg",
  28674. extra: 891 / 818,
  28675. bottom: 30 / 922.7
  28676. }
  28677. },
  28678. back: {
  28679. height: math.unit(9.35, "feet"),
  28680. weight: math.unit(600, "lb"),
  28681. name: "Back",
  28682. image: {
  28683. source: "./media/characters/amera/back.svg",
  28684. extra: 876 / 824,
  28685. bottom: 6.8 / 884
  28686. }
  28687. },
  28688. dick: {
  28689. height: math.unit(2.14, "feet"),
  28690. name: "Dick",
  28691. image: {
  28692. source: "./media/characters/amera/dick.svg"
  28693. }
  28694. },
  28695. },
  28696. [
  28697. {
  28698. name: "Normal",
  28699. height: math.unit(9.35, "feet"),
  28700. default: true
  28701. },
  28702. ]
  28703. ))
  28704. characterMakers.push(() => makeCharacter(
  28705. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28706. {
  28707. kneeling: {
  28708. height: math.unit(3 + 4 / 12, "feet"),
  28709. weight: math.unit(90, "lb"),
  28710. name: "Kneeling",
  28711. image: {
  28712. source: "./media/characters/rosewen/kneeling.svg",
  28713. extra: 1835 / 1571,
  28714. bottom: 27.7 / 1862
  28715. }
  28716. },
  28717. },
  28718. [
  28719. {
  28720. name: "Normal",
  28721. height: math.unit(3 + 4 / 12, "feet"),
  28722. default: true
  28723. },
  28724. ]
  28725. ))
  28726. characterMakers.push(() => makeCharacter(
  28727. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28728. {
  28729. front: {
  28730. height: math.unit(5 + 10 / 12, "feet"),
  28731. weight: math.unit(200, "lb"),
  28732. name: "Front",
  28733. image: {
  28734. source: "./media/characters/sabah/front.svg",
  28735. extra: 849 / 763,
  28736. bottom: 33.9 / 881
  28737. }
  28738. },
  28739. },
  28740. [
  28741. {
  28742. name: "Normal",
  28743. height: math.unit(5 + 10 / 12, "feet"),
  28744. default: true
  28745. },
  28746. ]
  28747. ))
  28748. characterMakers.push(() => makeCharacter(
  28749. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28750. {
  28751. front: {
  28752. height: math.unit(3 + 5 / 12, "feet"),
  28753. weight: math.unit(40, "kg"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/purple-flame/front.svg",
  28757. extra: 1577 / 1412,
  28758. bottom: 97 / 1694
  28759. }
  28760. },
  28761. frontDressed: {
  28762. height: math.unit(3 + 5 / 12, "feet"),
  28763. weight: math.unit(40, "kg"),
  28764. name: "Front (Dressed)",
  28765. image: {
  28766. source: "./media/characters/purple-flame/front-dressed.svg",
  28767. extra: 1577 / 1412,
  28768. bottom: 97 / 1694
  28769. }
  28770. },
  28771. headphones: {
  28772. height: math.unit(0.85, "feet"),
  28773. name: "Headphones",
  28774. image: {
  28775. source: "./media/characters/purple-flame/headphones.svg"
  28776. }
  28777. },
  28778. },
  28779. [
  28780. {
  28781. name: "Really Small",
  28782. height: math.unit(5, "cm")
  28783. },
  28784. {
  28785. name: "Micro",
  28786. height: math.unit(1 + 5 / 12, "feet")
  28787. },
  28788. {
  28789. name: "Normal",
  28790. height: math.unit(3 + 5 / 12, "feet"),
  28791. default: true
  28792. },
  28793. {
  28794. name: "Minimacro",
  28795. height: math.unit(125, "feet")
  28796. },
  28797. {
  28798. name: "Macro",
  28799. height: math.unit(0.5, "miles")
  28800. },
  28801. {
  28802. name: "Megamacro",
  28803. height: math.unit(50, "miles")
  28804. },
  28805. {
  28806. name: "Gigantic",
  28807. height: math.unit(750, "miles")
  28808. },
  28809. {
  28810. name: "Planetary",
  28811. height: math.unit(15000, "miles")
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28817. {
  28818. front: {
  28819. height: math.unit(14, "feet"),
  28820. weight: math.unit(959, "lb"),
  28821. name: "Front",
  28822. image: {
  28823. source: "./media/characters/arsenal/front.svg",
  28824. extra: 2357 / 2157,
  28825. bottom: 93 / 2458
  28826. }
  28827. },
  28828. },
  28829. [
  28830. {
  28831. name: "Normal",
  28832. height: math.unit(14, "feet"),
  28833. default: true
  28834. },
  28835. ]
  28836. ))
  28837. characterMakers.push(() => makeCharacter(
  28838. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28839. {
  28840. front: {
  28841. height: math.unit(6, "feet"),
  28842. weight: math.unit(150, "lb"),
  28843. name: "Front",
  28844. image: {
  28845. source: "./media/characters/adira/front.svg",
  28846. extra: 1078 / 1029,
  28847. bottom: 87 / 1166
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Micro",
  28854. height: math.unit(4, "inches"),
  28855. default: true
  28856. },
  28857. {
  28858. name: "Macro",
  28859. height: math.unit(50, "feet")
  28860. },
  28861. ]
  28862. ))
  28863. characterMakers.push(() => makeCharacter(
  28864. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28865. {
  28866. front: {
  28867. height: math.unit(16, "feet"),
  28868. weight: math.unit(1000, "lb"),
  28869. name: "Front",
  28870. image: {
  28871. source: "./media/characters/grim/front.svg",
  28872. extra: 622 / 614,
  28873. bottom: 18.1 / 642
  28874. }
  28875. },
  28876. back: {
  28877. height: math.unit(16, "feet"),
  28878. weight: math.unit(1000, "lb"),
  28879. name: "Back",
  28880. image: {
  28881. source: "./media/characters/grim/back.svg",
  28882. extra: 610.6 / 602,
  28883. bottom: 40.8 / 652
  28884. }
  28885. },
  28886. hunched: {
  28887. height: math.unit(9.75, "feet"),
  28888. weight: math.unit(1000, "lb"),
  28889. name: "Hunched",
  28890. image: {
  28891. source: "./media/characters/grim/hunched.svg",
  28892. extra: 304 / 297,
  28893. bottom: 35.4 / 394
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Normal",
  28900. height: math.unit(16, "feet"),
  28901. default: true
  28902. },
  28903. ]
  28904. ))
  28905. characterMakers.push(() => makeCharacter(
  28906. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28907. {
  28908. front: {
  28909. height: math.unit(2.3, "meters"),
  28910. weight: math.unit(300, "lb"),
  28911. name: "Front",
  28912. image: {
  28913. source: "./media/characters/sinja/front-sfw.svg",
  28914. extra: 1393 / 1294,
  28915. bottom: 70 / 1463
  28916. }
  28917. },
  28918. frontNsfw: {
  28919. height: math.unit(2.3, "meters"),
  28920. weight: math.unit(300, "lb"),
  28921. name: "Front (NSFW)",
  28922. image: {
  28923. source: "./media/characters/sinja/front-nsfw.svg",
  28924. extra: 1393 / 1294,
  28925. bottom: 70 / 1463
  28926. }
  28927. },
  28928. back: {
  28929. height: math.unit(2.3, "meters"),
  28930. weight: math.unit(300, "lb"),
  28931. name: "Back",
  28932. image: {
  28933. source: "./media/characters/sinja/back.svg",
  28934. extra: 1393 / 1294,
  28935. bottom: 70 / 1463
  28936. }
  28937. },
  28938. head: {
  28939. height: math.unit(1.771, "feet"),
  28940. name: "Head",
  28941. image: {
  28942. source: "./media/characters/sinja/head.svg"
  28943. }
  28944. },
  28945. slit: {
  28946. height: math.unit(0.8, "feet"),
  28947. name: "Slit",
  28948. image: {
  28949. source: "./media/characters/sinja/slit.svg"
  28950. }
  28951. },
  28952. },
  28953. [
  28954. {
  28955. name: "Normal",
  28956. height: math.unit(2.3, "meters")
  28957. },
  28958. {
  28959. name: "Macro",
  28960. height: math.unit(91, "meters"),
  28961. default: true
  28962. },
  28963. {
  28964. name: "Megamacro",
  28965. height: math.unit(91440, "meters")
  28966. },
  28967. {
  28968. name: "Gigamacro",
  28969. height: math.unit(60960000, "meters")
  28970. },
  28971. {
  28972. name: "Teramacro",
  28973. height: math.unit(9144000000, "meters")
  28974. },
  28975. ]
  28976. ))
  28977. characterMakers.push(() => makeCharacter(
  28978. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28979. {
  28980. front: {
  28981. height: math.unit(1.7, "meters"),
  28982. weight: math.unit(130, "lb"),
  28983. name: "Front",
  28984. image: {
  28985. source: "./media/characters/kyu/front.svg",
  28986. extra: 415 / 395,
  28987. bottom: 5 / 420
  28988. }
  28989. },
  28990. head: {
  28991. height: math.unit(1.75, "feet"),
  28992. name: "Head",
  28993. image: {
  28994. source: "./media/characters/kyu/head.svg"
  28995. }
  28996. },
  28997. foot: {
  28998. height: math.unit(0.81, "feet"),
  28999. name: "Foot",
  29000. image: {
  29001. source: "./media/characters/kyu/foot.svg"
  29002. }
  29003. },
  29004. },
  29005. [
  29006. {
  29007. name: "Normal",
  29008. height: math.unit(1.7, "meters")
  29009. },
  29010. {
  29011. name: "Macro",
  29012. height: math.unit(131, "feet"),
  29013. default: true
  29014. },
  29015. {
  29016. name: "Megamacro",
  29017. height: math.unit(91440, "meters")
  29018. },
  29019. {
  29020. name: "Gigamacro",
  29021. height: math.unit(60960000, "meters")
  29022. },
  29023. {
  29024. name: "Teramacro",
  29025. height: math.unit(9144000000, "meters")
  29026. },
  29027. ]
  29028. ))
  29029. characterMakers.push(() => makeCharacter(
  29030. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29031. {
  29032. front: {
  29033. height: math.unit(7 + 1 / 12, "feet"),
  29034. weight: math.unit(250, "lb"),
  29035. name: "Front",
  29036. image: {
  29037. source: "./media/characters/joey/front.svg",
  29038. extra: 1791 / 1537,
  29039. bottom: 28 / 1816
  29040. }
  29041. },
  29042. },
  29043. [
  29044. {
  29045. name: "Micro",
  29046. height: math.unit(3, "inches")
  29047. },
  29048. {
  29049. name: "Normal",
  29050. height: math.unit(7 + 1 / 12, "feet"),
  29051. default: true
  29052. },
  29053. ]
  29054. ))
  29055. characterMakers.push(() => makeCharacter(
  29056. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29057. {
  29058. front: {
  29059. height: math.unit(165, "cm"),
  29060. weight: math.unit(140, "lb"),
  29061. name: "Front",
  29062. image: {
  29063. source: "./media/characters/sam-evans/front.svg",
  29064. extra: 3417 / 3230,
  29065. bottom: 41.3 / 3417
  29066. }
  29067. },
  29068. frontSixTails: {
  29069. height: math.unit(165, "cm"),
  29070. weight: math.unit(140, "lb"),
  29071. name: "Front-six-tails",
  29072. image: {
  29073. source: "./media/characters/sam-evans/front-six-tails.svg",
  29074. extra: 3417 / 3230,
  29075. bottom: 41.3 / 3417
  29076. }
  29077. },
  29078. back: {
  29079. height: math.unit(165, "cm"),
  29080. weight: math.unit(140, "lb"),
  29081. name: "Back",
  29082. image: {
  29083. source: "./media/characters/sam-evans/back.svg",
  29084. extra: 3227 / 3032,
  29085. bottom: 6.8 / 3234
  29086. }
  29087. },
  29088. face: {
  29089. height: math.unit(0.68, "feet"),
  29090. name: "Face",
  29091. image: {
  29092. source: "./media/characters/sam-evans/face.svg"
  29093. }
  29094. },
  29095. },
  29096. [
  29097. {
  29098. name: "Normal",
  29099. height: math.unit(165, "cm"),
  29100. default: true
  29101. },
  29102. {
  29103. name: "Macro",
  29104. height: math.unit(100, "meters")
  29105. },
  29106. {
  29107. name: "Macro+",
  29108. height: math.unit(800, "meters")
  29109. },
  29110. {
  29111. name: "Macro++",
  29112. height: math.unit(3, "km")
  29113. },
  29114. {
  29115. name: "Macro+++",
  29116. height: math.unit(30, "km")
  29117. },
  29118. ]
  29119. ))
  29120. characterMakers.push(() => makeCharacter(
  29121. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29122. {
  29123. front: {
  29124. height: math.unit(10, "feet"),
  29125. weight: math.unit(750, "lb"),
  29126. name: "Front",
  29127. image: {
  29128. source: "./media/characters/juliet-a/front.svg",
  29129. extra: 1766 / 1720,
  29130. bottom: 43 / 1809
  29131. }
  29132. },
  29133. back: {
  29134. height: math.unit(10, "feet"),
  29135. weight: math.unit(750, "lb"),
  29136. name: "Back",
  29137. image: {
  29138. source: "./media/characters/juliet-a/back.svg",
  29139. extra: 1781 / 1734,
  29140. bottom: 35 / 1810,
  29141. }
  29142. },
  29143. },
  29144. [
  29145. {
  29146. name: "Normal",
  29147. height: math.unit(10, "feet"),
  29148. default: true
  29149. },
  29150. {
  29151. name: "Dragon Form",
  29152. height: math.unit(250, "feet")
  29153. },
  29154. {
  29155. name: "Macro",
  29156. height: math.unit(1000, "feet")
  29157. },
  29158. {
  29159. name: "Megamacro",
  29160. height: math.unit(10000, "feet")
  29161. }
  29162. ]
  29163. ))
  29164. characterMakers.push(() => makeCharacter(
  29165. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29166. {
  29167. regular: {
  29168. height: math.unit(7 + 3 / 12, "feet"),
  29169. weight: math.unit(260, "lb"),
  29170. name: "Regular",
  29171. image: {
  29172. source: "./media/characters/wild/regular.svg",
  29173. extra: 97.45 / 92,
  29174. bottom: 6.8 / 104.3
  29175. }
  29176. },
  29177. biggums: {
  29178. height: math.unit(8 + 6 / 12, "feet"),
  29179. weight: math.unit(425, "lb"),
  29180. name: "Biggums",
  29181. image: {
  29182. source: "./media/characters/wild/biggums.svg",
  29183. extra: 97.45 / 92,
  29184. bottom: 7.5 / 132.34
  29185. }
  29186. },
  29187. mawRegular: {
  29188. height: math.unit(1.24, "feet"),
  29189. name: "Maw (Regular)",
  29190. image: {
  29191. source: "./media/characters/wild/maw.svg"
  29192. }
  29193. },
  29194. mawBiggums: {
  29195. height: math.unit(1.47, "feet"),
  29196. name: "Maw (Biggums)",
  29197. image: {
  29198. source: "./media/characters/wild/maw.svg"
  29199. }
  29200. },
  29201. },
  29202. [
  29203. {
  29204. name: "Normal",
  29205. height: math.unit(7 + 3 / 12, "feet"),
  29206. default: true
  29207. },
  29208. ]
  29209. ))
  29210. characterMakers.push(() => makeCharacter(
  29211. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29212. {
  29213. front: {
  29214. height: math.unit(2.5, "meters"),
  29215. weight: math.unit(200, "kg"),
  29216. name: "Front",
  29217. image: {
  29218. source: "./media/characters/vidar/front.svg",
  29219. extra: 2994 / 2795,
  29220. bottom: 56 / 3061
  29221. }
  29222. },
  29223. back: {
  29224. height: math.unit(2.5, "meters"),
  29225. weight: math.unit(200, "kg"),
  29226. name: "Back",
  29227. image: {
  29228. source: "./media/characters/vidar/back.svg",
  29229. extra: 3131 / 2928,
  29230. bottom: 13.5 / 3141.5
  29231. }
  29232. },
  29233. feral: {
  29234. height: math.unit(2.5, "meters"),
  29235. weight: math.unit(2000, "kg"),
  29236. name: "Feral",
  29237. image: {
  29238. source: "./media/characters/vidar/feral.svg",
  29239. extra: 2790 / 1765,
  29240. bottom: 6 / 2796
  29241. }
  29242. },
  29243. },
  29244. [
  29245. {
  29246. name: "Normal",
  29247. height: math.unit(2.5, "meters"),
  29248. default: true
  29249. },
  29250. {
  29251. name: "Macro",
  29252. height: math.unit(100, "meters")
  29253. },
  29254. ]
  29255. ))
  29256. characterMakers.push(() => makeCharacter(
  29257. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29258. {
  29259. front: {
  29260. height: math.unit(5 + 9 / 12, "feet"),
  29261. weight: math.unit(120, "lb"),
  29262. name: "Front",
  29263. image: {
  29264. source: "./media/characters/ash/front.svg",
  29265. extra: 2189 / 1961,
  29266. bottom: 5.2 / 2194
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Normal",
  29273. height: math.unit(5 + 9 / 12, "feet"),
  29274. default: true
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(9, "feet"),
  29283. weight: math.unit(10000, "lb"),
  29284. name: "Front",
  29285. image: {
  29286. source: "./media/characters/gygabite/front.svg",
  29287. bottom: 31.7 / 537.8,
  29288. extra: 505 / 370
  29289. }
  29290. },
  29291. },
  29292. [
  29293. {
  29294. name: "Normal",
  29295. height: math.unit(9, "feet"),
  29296. default: true
  29297. },
  29298. ]
  29299. ))
  29300. characterMakers.push(() => makeCharacter(
  29301. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29302. {
  29303. front: {
  29304. height: math.unit(12, "feet"),
  29305. weight: math.unit(4000, "lb"),
  29306. name: "Front",
  29307. image: {
  29308. source: "./media/characters/p0tat0/front.svg",
  29309. extra: 1065 / 921,
  29310. bottom: 55.7 / 1121.25
  29311. }
  29312. },
  29313. },
  29314. [
  29315. {
  29316. name: "Normal",
  29317. height: math.unit(12, "feet"),
  29318. default: true
  29319. },
  29320. ]
  29321. ))
  29322. characterMakers.push(() => makeCharacter(
  29323. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29324. {
  29325. side: {
  29326. height: math.unit(6.5, "feet"),
  29327. weight: math.unit(800, "lb"),
  29328. name: "Side",
  29329. image: {
  29330. source: "./media/characters/dusk/side.svg",
  29331. extra: 615 / 373,
  29332. bottom: 53 / 664
  29333. }
  29334. },
  29335. sitting: {
  29336. height: math.unit(7, "feet"),
  29337. weight: math.unit(800, "lb"),
  29338. name: "Sitting",
  29339. image: {
  29340. source: "./media/characters/dusk/sitting.svg",
  29341. extra: 753 / 425,
  29342. bottom: 33 / 774
  29343. }
  29344. },
  29345. head: {
  29346. height: math.unit(6.1, "feet"),
  29347. name: "Head",
  29348. image: {
  29349. source: "./media/characters/dusk/head.svg"
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(7, "feet"),
  29357. default: true
  29358. },
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29363. {
  29364. front: {
  29365. height: math.unit(15, "feet"),
  29366. weight: math.unit(7000, "lb"),
  29367. name: "Front",
  29368. image: {
  29369. source: "./media/characters/jay-direwolf/front.svg",
  29370. extra: 1810 / 1732,
  29371. bottom: 66 / 1892
  29372. }
  29373. },
  29374. },
  29375. [
  29376. {
  29377. name: "Normal",
  29378. height: math.unit(15, "feet"),
  29379. default: true
  29380. },
  29381. ]
  29382. ))
  29383. characterMakers.push(() => makeCharacter(
  29384. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29385. {
  29386. front: {
  29387. height: math.unit(4 + 9 / 12, "feet"),
  29388. weight: math.unit(130, "lb"),
  29389. name: "Front",
  29390. image: {
  29391. source: "./media/characters/anchovie/front.svg",
  29392. extra: 382 / 350,
  29393. bottom: 25 / 409
  29394. }
  29395. },
  29396. back: {
  29397. height: math.unit(4 + 9 / 12, "feet"),
  29398. weight: math.unit(130, "lb"),
  29399. name: "Back",
  29400. image: {
  29401. source: "./media/characters/anchovie/back.svg",
  29402. extra: 385 / 352,
  29403. bottom: 16.6 / 402
  29404. }
  29405. },
  29406. frontDressed: {
  29407. height: math.unit(4 + 9 / 12, "feet"),
  29408. weight: math.unit(130, "lb"),
  29409. name: "Front (Dressed)",
  29410. image: {
  29411. source: "./media/characters/anchovie/front-dressed.svg",
  29412. extra: 382 / 350,
  29413. bottom: 25 / 409
  29414. }
  29415. },
  29416. backDressed: {
  29417. height: math.unit(4 + 9 / 12, "feet"),
  29418. weight: math.unit(130, "lb"),
  29419. name: "Back (Dressed)",
  29420. image: {
  29421. source: "./media/characters/anchovie/back-dressed.svg",
  29422. extra: 385 / 352,
  29423. bottom: 16.6 / 402
  29424. }
  29425. },
  29426. },
  29427. [
  29428. {
  29429. name: "Micro",
  29430. height: math.unit(6.4, "inches")
  29431. },
  29432. {
  29433. name: "Normal",
  29434. height: math.unit(4 + 9 / 12, "feet"),
  29435. default: true
  29436. },
  29437. ]
  29438. ))
  29439. characterMakers.push(() => makeCharacter(
  29440. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29441. {
  29442. front: {
  29443. height: math.unit(2, "meters"),
  29444. weight: math.unit(180, "lb"),
  29445. name: "Front",
  29446. image: {
  29447. source: "./media/characters/acidrenamon/front.svg",
  29448. extra: 987 / 890,
  29449. bottom: 22.8 / 1009
  29450. }
  29451. },
  29452. back: {
  29453. height: math.unit(2, "meters"),
  29454. weight: math.unit(180, "lb"),
  29455. name: "Back",
  29456. image: {
  29457. source: "./media/characters/acidrenamon/back.svg",
  29458. extra: 983 / 891,
  29459. bottom: 8.4 / 992
  29460. }
  29461. },
  29462. head: {
  29463. height: math.unit(1.92, "feet"),
  29464. name: "Head",
  29465. image: {
  29466. source: "./media/characters/acidrenamon/head.svg"
  29467. }
  29468. },
  29469. rump: {
  29470. height: math.unit(1.72, "feet"),
  29471. name: "Rump",
  29472. image: {
  29473. source: "./media/characters/acidrenamon/rump.svg"
  29474. }
  29475. },
  29476. tail: {
  29477. height: math.unit(4.2, "feet"),
  29478. name: "Tail",
  29479. image: {
  29480. source: "./media/characters/acidrenamon/tail.svg"
  29481. }
  29482. },
  29483. },
  29484. [
  29485. {
  29486. name: "Normal",
  29487. height: math.unit(2, "meters"),
  29488. default: true
  29489. },
  29490. {
  29491. name: "Minimacro",
  29492. height: math.unit(7, "meters")
  29493. },
  29494. {
  29495. name: "Macro",
  29496. height: math.unit(200, "meters")
  29497. },
  29498. {
  29499. name: "Gigamacro",
  29500. height: math.unit(0.2, "earths")
  29501. },
  29502. ]
  29503. ))
  29504. characterMakers.push(() => makeCharacter(
  29505. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29506. {
  29507. front: {
  29508. height: math.unit(152, "feet"),
  29509. name: "Front",
  29510. image: {
  29511. source: "./media/characters/kenzie-lee/front.svg",
  29512. extra: 1869/1774,
  29513. bottom: 128/1997
  29514. }
  29515. },
  29516. side: {
  29517. height: math.unit(86, "feet"),
  29518. name: "Side",
  29519. image: {
  29520. source: "./media/characters/kenzie-lee/side.svg",
  29521. extra: 930/815,
  29522. bottom: 177/1107
  29523. }
  29524. },
  29525. paw: {
  29526. height: math.unit(15, "feet"),
  29527. name: "Paw",
  29528. image: {
  29529. source: "./media/characters/kenzie-lee/paw.svg"
  29530. }
  29531. },
  29532. },
  29533. [
  29534. {
  29535. name: "Kenzie Flea",
  29536. height: math.unit(2, "mm"),
  29537. default: true
  29538. },
  29539. {
  29540. name: "Micro",
  29541. height: math.unit(2, "inches")
  29542. },
  29543. {
  29544. name: "Normal",
  29545. height: math.unit(152, "feet")
  29546. },
  29547. {
  29548. name: "Megamacro",
  29549. height: math.unit(7, "miles")
  29550. },
  29551. {
  29552. name: "Gigamacro",
  29553. height: math.unit(8000, "miles")
  29554. },
  29555. ]
  29556. ))
  29557. characterMakers.push(() => makeCharacter(
  29558. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29559. {
  29560. front: {
  29561. height: math.unit(6, "feet"),
  29562. name: "Front",
  29563. image: {
  29564. source: "./media/characters/withers/front.svg",
  29565. extra: 1935/1760,
  29566. bottom: 72/2007
  29567. }
  29568. },
  29569. back: {
  29570. height: math.unit(6, "feet"),
  29571. name: "Back",
  29572. image: {
  29573. source: "./media/characters/withers/back.svg",
  29574. extra: 1944/1792,
  29575. bottom: 12/1956
  29576. }
  29577. },
  29578. dressed: {
  29579. height: math.unit(6, "feet"),
  29580. name: "Dressed",
  29581. image: {
  29582. source: "./media/characters/withers/dressed.svg",
  29583. extra: 1937/1765,
  29584. bottom: 73/2010
  29585. }
  29586. },
  29587. phase1: {
  29588. height: math.unit(1.1, "feet"),
  29589. name: "Phase 1",
  29590. image: {
  29591. source: "./media/characters/withers/phase-1.svg",
  29592. extra: 1885/1232,
  29593. bottom: 0/1885
  29594. }
  29595. },
  29596. phase2: {
  29597. height: math.unit(1.05, "feet"),
  29598. name: "Phase 2",
  29599. image: {
  29600. source: "./media/characters/withers/phase-2.svg",
  29601. extra: 1792/1090,
  29602. bottom: 0/1792
  29603. }
  29604. },
  29605. partyWipe: {
  29606. height: math.unit(1.1, "feet"),
  29607. name: "Party Wipe",
  29608. image: {
  29609. source: "./media/characters/withers/party-wipe.svg",
  29610. extra: 1864/1207,
  29611. bottom: 0/1864
  29612. }
  29613. },
  29614. },
  29615. [
  29616. {
  29617. name: "Macro",
  29618. height: math.unit(167, "feet"),
  29619. default: true
  29620. },
  29621. {
  29622. name: "Megamacro",
  29623. height: math.unit(15, "miles")
  29624. }
  29625. ]
  29626. ))
  29627. characterMakers.push(() => makeCharacter(
  29628. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29629. {
  29630. front: {
  29631. height: math.unit(6 + 7 / 12, "feet"),
  29632. weight: math.unit(250, "lb"),
  29633. name: "Front",
  29634. image: {
  29635. source: "./media/characters/nemoskii/front.svg",
  29636. extra: 2270 / 1734,
  29637. bottom: 86 / 2354
  29638. }
  29639. },
  29640. back: {
  29641. height: math.unit(6 + 7 / 12, "feet"),
  29642. weight: math.unit(250, "lb"),
  29643. name: "Back",
  29644. image: {
  29645. source: "./media/characters/nemoskii/back.svg",
  29646. extra: 1845 / 1788,
  29647. bottom: 10.5 / 1852
  29648. }
  29649. },
  29650. head: {
  29651. height: math.unit(1.31, "feet"),
  29652. name: "Head",
  29653. image: {
  29654. source: "./media/characters/nemoskii/head.svg"
  29655. }
  29656. },
  29657. },
  29658. [
  29659. {
  29660. name: "Micro",
  29661. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29662. },
  29663. {
  29664. name: "Normal",
  29665. height: math.unit(6 + 7 / 12, "feet"),
  29666. default: true
  29667. },
  29668. {
  29669. name: "Macro",
  29670. height: math.unit((6 + 7 / 12) * 150, "feet")
  29671. },
  29672. {
  29673. name: "Macro+",
  29674. height: math.unit((6 + 7 / 12) * 500, "feet")
  29675. },
  29676. {
  29677. name: "Megamacro",
  29678. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29679. },
  29680. ]
  29681. ))
  29682. characterMakers.push(() => makeCharacter(
  29683. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29684. {
  29685. front: {
  29686. height: math.unit(1, "mile"),
  29687. weight: math.unit(265261.9, "lb"),
  29688. name: "Front",
  29689. image: {
  29690. source: "./media/characters/shui/front.svg",
  29691. extra: 1633 / 1564,
  29692. bottom: 91.5 / 1726
  29693. }
  29694. },
  29695. },
  29696. [
  29697. {
  29698. name: "Macro",
  29699. height: math.unit(1, "mile"),
  29700. default: true
  29701. },
  29702. ]
  29703. ))
  29704. characterMakers.push(() => makeCharacter(
  29705. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29706. {
  29707. front: {
  29708. height: math.unit(12 + 6 / 12, "feet"),
  29709. weight: math.unit(1342, "lb"),
  29710. name: "Front",
  29711. image: {
  29712. source: "./media/characters/arokh-takakura/front.svg",
  29713. extra: 1089 / 1043,
  29714. bottom: 77.4 / 1176.7
  29715. }
  29716. },
  29717. back: {
  29718. height: math.unit(12 + 6 / 12, "feet"),
  29719. weight: math.unit(1342, "lb"),
  29720. name: "Back",
  29721. image: {
  29722. source: "./media/characters/arokh-takakura/back.svg",
  29723. extra: 1046 / 1019,
  29724. bottom: 102 / 1150
  29725. }
  29726. },
  29727. },
  29728. [
  29729. {
  29730. name: "Big",
  29731. height: math.unit(12 + 6 / 12, "feet"),
  29732. default: true
  29733. },
  29734. ]
  29735. ))
  29736. characterMakers.push(() => makeCharacter(
  29737. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29738. {
  29739. front: {
  29740. height: math.unit(5 + 6 / 12, "feet"),
  29741. weight: math.unit(150, "lb"),
  29742. name: "Front",
  29743. image: {
  29744. source: "./media/characters/theo/front.svg",
  29745. extra: 1184 / 1131,
  29746. bottom: 7.4 / 1191
  29747. }
  29748. },
  29749. },
  29750. [
  29751. {
  29752. name: "Micro",
  29753. height: math.unit(5, "inches")
  29754. },
  29755. {
  29756. name: "Normal",
  29757. height: math.unit(5 + 6 / 12, "feet"),
  29758. default: true
  29759. },
  29760. ]
  29761. ))
  29762. characterMakers.push(() => makeCharacter(
  29763. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29764. {
  29765. front: {
  29766. height: math.unit(5 + 9 / 12, "feet"),
  29767. weight: math.unit(130, "lb"),
  29768. name: "Front",
  29769. image: {
  29770. source: "./media/characters/cecelia-swift/front.svg",
  29771. extra: 502 / 484,
  29772. bottom: 23 / 523
  29773. }
  29774. },
  29775. back: {
  29776. height: math.unit(5 + 9 / 12, "feet"),
  29777. weight: math.unit(130, "lb"),
  29778. name: "Back",
  29779. image: {
  29780. source: "./media/characters/cecelia-swift/back.svg",
  29781. extra: 499 / 485,
  29782. bottom: 12 / 511
  29783. }
  29784. },
  29785. head: {
  29786. height: math.unit(0.90, "feet"),
  29787. name: "Head",
  29788. image: {
  29789. source: "./media/characters/cecelia-swift/head.svg"
  29790. }
  29791. },
  29792. rump: {
  29793. height: math.unit(1.75, "feet"),
  29794. name: "Rump",
  29795. image: {
  29796. source: "./media/characters/cecelia-swift/rump.svg"
  29797. }
  29798. },
  29799. },
  29800. [
  29801. {
  29802. name: "Normal",
  29803. height: math.unit(5 + 9 / 12, "feet"),
  29804. default: true
  29805. },
  29806. {
  29807. name: "Big",
  29808. height: math.unit(50, "feet")
  29809. },
  29810. {
  29811. name: "Macro",
  29812. height: math.unit(100, "feet")
  29813. },
  29814. {
  29815. name: "Macro+",
  29816. height: math.unit(500, "feet")
  29817. },
  29818. {
  29819. name: "Macro++",
  29820. height: math.unit(1000, "feet")
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29826. {
  29827. front: {
  29828. height: math.unit(6, "feet"),
  29829. weight: math.unit(150, "lb"),
  29830. name: "Front",
  29831. image: {
  29832. source: "./media/characters/kaunan/front.svg",
  29833. extra: 2890 / 2523,
  29834. bottom: 49 / 2939
  29835. }
  29836. },
  29837. },
  29838. [
  29839. {
  29840. name: "Macro",
  29841. height: math.unit(150, "feet"),
  29842. default: true
  29843. },
  29844. ]
  29845. ))
  29846. characterMakers.push(() => makeCharacter(
  29847. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29848. {
  29849. dressed: {
  29850. height: math.unit(175, "cm"),
  29851. weight: math.unit(60, "kg"),
  29852. name: "Dressed",
  29853. image: {
  29854. source: "./media/characters/fei/dressed.svg",
  29855. extra: 1402/1278,
  29856. bottom: 27/1429
  29857. }
  29858. },
  29859. nude: {
  29860. height: math.unit(175, "cm"),
  29861. weight: math.unit(60, "kg"),
  29862. name: "Nude",
  29863. image: {
  29864. source: "./media/characters/fei/nude.svg",
  29865. extra: 1402/1278,
  29866. bottom: 27/1429
  29867. }
  29868. },
  29869. heels: {
  29870. height: math.unit(0.466, "feet"),
  29871. name: "Heels",
  29872. image: {
  29873. source: "./media/characters/fei/heels.svg",
  29874. extra: 156/152,
  29875. bottom: 28/184
  29876. }
  29877. },
  29878. },
  29879. [
  29880. {
  29881. name: "Mortal",
  29882. height: math.unit(175, "cm")
  29883. },
  29884. {
  29885. name: "Normal",
  29886. height: math.unit(3500, "m")
  29887. },
  29888. {
  29889. name: "Stroll",
  29890. height: math.unit(18.4, "km"),
  29891. default: true
  29892. },
  29893. {
  29894. name: "Showoff",
  29895. height: math.unit(175, "km")
  29896. },
  29897. ]
  29898. ))
  29899. characterMakers.push(() => makeCharacter(
  29900. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29901. {
  29902. front: {
  29903. height: math.unit(7, "feet"),
  29904. weight: math.unit(1000, "kg"),
  29905. name: "Front",
  29906. image: {
  29907. source: "./media/characters/edrax/front.svg",
  29908. extra: 2838 / 2550,
  29909. bottom: 130 / 2968
  29910. }
  29911. },
  29912. },
  29913. [
  29914. {
  29915. name: "Small",
  29916. height: math.unit(7, "feet")
  29917. },
  29918. {
  29919. name: "Normal",
  29920. height: math.unit(1500, "meters")
  29921. },
  29922. {
  29923. name: "Mega",
  29924. height: math.unit(12000000, "km"),
  29925. default: true
  29926. },
  29927. {
  29928. name: "Megamacro",
  29929. height: math.unit(10600000, "lightyears")
  29930. },
  29931. {
  29932. name: "Hypermacro",
  29933. height: math.unit(256, "yottameters")
  29934. },
  29935. ]
  29936. ))
  29937. characterMakers.push(() => makeCharacter(
  29938. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29939. {
  29940. front: {
  29941. height: math.unit(10, "feet"),
  29942. weight: math.unit(750, "lb"),
  29943. name: "Front",
  29944. image: {
  29945. source: "./media/characters/clove/front.svg",
  29946. extra: 1918/1751,
  29947. bottom: 52/1970
  29948. }
  29949. },
  29950. back: {
  29951. height: math.unit(10, "feet"),
  29952. weight: math.unit(750, "lb"),
  29953. name: "Back",
  29954. image: {
  29955. source: "./media/characters/clove/back.svg",
  29956. extra: 1912/1747,
  29957. bottom: 50/1962
  29958. }
  29959. },
  29960. },
  29961. [
  29962. {
  29963. name: "Normal",
  29964. height: math.unit(10, "feet"),
  29965. default: true
  29966. },
  29967. ]
  29968. ))
  29969. characterMakers.push(() => makeCharacter(
  29970. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29971. {
  29972. front: {
  29973. height: math.unit(4, "feet"),
  29974. weight: math.unit(50, "lb"),
  29975. name: "Front",
  29976. image: {
  29977. source: "./media/characters/alex-rabbit/front.svg",
  29978. extra: 507 / 458,
  29979. bottom: 18.5 / 527
  29980. }
  29981. },
  29982. back: {
  29983. height: math.unit(4, "feet"),
  29984. weight: math.unit(50, "lb"),
  29985. name: "Back",
  29986. image: {
  29987. source: "./media/characters/alex-rabbit/back.svg",
  29988. extra: 502 / 460,
  29989. bottom: 18.9 / 521
  29990. }
  29991. },
  29992. },
  29993. [
  29994. {
  29995. name: "Normal",
  29996. height: math.unit(4, "feet"),
  29997. default: true
  29998. },
  29999. ]
  30000. ))
  30001. characterMakers.push(() => makeCharacter(
  30002. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30003. {
  30004. front: {
  30005. height: math.unit(1 + 3 / 12, "feet"),
  30006. weight: math.unit(80, "lb"),
  30007. name: "Front",
  30008. image: {
  30009. source: "./media/characters/zander-rose/front.svg",
  30010. extra: 916 / 797,
  30011. bottom: 17 / 933
  30012. }
  30013. },
  30014. back: {
  30015. height: math.unit(1 + 3 / 12, "feet"),
  30016. weight: math.unit(80, "lb"),
  30017. name: "Back",
  30018. image: {
  30019. source: "./media/characters/zander-rose/back.svg",
  30020. extra: 903 / 779,
  30021. bottom: 31 / 934
  30022. }
  30023. },
  30024. },
  30025. [
  30026. {
  30027. name: "Normal",
  30028. height: math.unit(1 + 3 / 12, "feet"),
  30029. default: true
  30030. },
  30031. ]
  30032. ))
  30033. characterMakers.push(() => makeCharacter(
  30034. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30035. {
  30036. anthro: {
  30037. height: math.unit(6, "feet"),
  30038. weight: math.unit(150, "lb"),
  30039. name: "Anthro",
  30040. image: {
  30041. source: "./media/characters/razz/anthro.svg",
  30042. extra: 1437 / 1343,
  30043. bottom: 48 / 1485
  30044. }
  30045. },
  30046. feral: {
  30047. height: math.unit(6, "feet"),
  30048. weight: math.unit(150, "lb"),
  30049. name: "Feral",
  30050. image: {
  30051. source: "./media/characters/razz/feral.svg",
  30052. extra: 2569 / 1385,
  30053. bottom: 95 / 2664
  30054. }
  30055. },
  30056. },
  30057. [
  30058. {
  30059. name: "Normal",
  30060. height: math.unit(6, "feet"),
  30061. default: true
  30062. },
  30063. ]
  30064. ))
  30065. characterMakers.push(() => makeCharacter(
  30066. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30067. {
  30068. front: {
  30069. height: math.unit(9 + 4 / 12, "feet"),
  30070. weight: math.unit(500, "lb"),
  30071. name: "Front",
  30072. image: {
  30073. source: "./media/characters/morrigan/front.svg",
  30074. extra: 2707 / 2579,
  30075. bottom: 156 / 2863
  30076. }
  30077. },
  30078. },
  30079. [
  30080. {
  30081. name: "Normal",
  30082. height: math.unit(9 + 4 / 12, "feet"),
  30083. default: true
  30084. },
  30085. ]
  30086. ))
  30087. characterMakers.push(() => makeCharacter(
  30088. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30089. {
  30090. front: {
  30091. height: math.unit(5, "stories"),
  30092. weight: math.unit(4000, "lb"),
  30093. name: "Front",
  30094. image: {
  30095. source: "./media/characters/jenene/front.svg",
  30096. extra: 1780 / 1710,
  30097. bottom: 57 / 1837
  30098. }
  30099. },
  30100. },
  30101. [
  30102. {
  30103. name: "Normal",
  30104. height: math.unit(5, "stories"),
  30105. default: true
  30106. },
  30107. ]
  30108. ))
  30109. characterMakers.push(() => makeCharacter(
  30110. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30111. {
  30112. taurSfw: {
  30113. height: math.unit(10, "meters"),
  30114. weight: math.unit(17500, "kg"),
  30115. name: "Taur",
  30116. image: {
  30117. source: "./media/characters/faey/taur-sfw.svg",
  30118. extra: 1200 / 968,
  30119. bottom: 41 / 1241
  30120. }
  30121. },
  30122. chestmaw: {
  30123. height: math.unit(2.01, "meters"),
  30124. name: "Chestmaw",
  30125. image: {
  30126. source: "./media/characters/faey/chestmaw.svg"
  30127. }
  30128. },
  30129. foot: {
  30130. height: math.unit(2.43, "meters"),
  30131. name: "Foot",
  30132. image: {
  30133. source: "./media/characters/faey/foot.svg"
  30134. }
  30135. },
  30136. jaws: {
  30137. height: math.unit(1.66, "meters"),
  30138. name: "Jaws",
  30139. image: {
  30140. source: "./media/characters/faey/jaws.svg"
  30141. }
  30142. },
  30143. tongues: {
  30144. height: math.unit(2.01, "meters"),
  30145. name: "Tongues",
  30146. image: {
  30147. source: "./media/characters/faey/tongues.svg"
  30148. }
  30149. },
  30150. },
  30151. [
  30152. {
  30153. name: "Small",
  30154. height: math.unit(10, "meters"),
  30155. default: true
  30156. },
  30157. {
  30158. name: "Big",
  30159. height: math.unit(500000, "km")
  30160. },
  30161. ]
  30162. ))
  30163. characterMakers.push(() => makeCharacter(
  30164. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30165. {
  30166. front: {
  30167. height: math.unit(7, "feet"),
  30168. weight: math.unit(275, "lb"),
  30169. name: "Front",
  30170. image: {
  30171. source: "./media/characters/roku/front.svg",
  30172. extra: 903 / 878,
  30173. bottom: 37 / 940
  30174. }
  30175. },
  30176. },
  30177. [
  30178. {
  30179. name: "Normal",
  30180. height: math.unit(7, "feet"),
  30181. default: true
  30182. },
  30183. {
  30184. name: "Macro",
  30185. height: math.unit(500, "feet")
  30186. },
  30187. {
  30188. name: "Megamacro",
  30189. height: math.unit(200, "miles")
  30190. },
  30191. ]
  30192. ))
  30193. characterMakers.push(() => makeCharacter(
  30194. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30195. {
  30196. front: {
  30197. height: math.unit(6 + 2 / 12, "feet"),
  30198. weight: math.unit(150, "lb"),
  30199. name: "Front",
  30200. image: {
  30201. source: "./media/characters/lira/front.svg",
  30202. extra: 1727 / 1605,
  30203. bottom: 26 / 1753
  30204. }
  30205. },
  30206. back: {
  30207. height: math.unit(6 + 2 / 12, "feet"),
  30208. weight: math.unit(150, "lb"),
  30209. name: "Back",
  30210. image: {
  30211. source: "./media/characters/lira/back.svg",
  30212. extra: 1713/1621,
  30213. bottom: 20/1733
  30214. }
  30215. },
  30216. hand: {
  30217. height: math.unit(0.75, "feet"),
  30218. name: "Hand",
  30219. image: {
  30220. source: "./media/characters/lira/hand.svg"
  30221. }
  30222. },
  30223. maw: {
  30224. height: math.unit(0.65, "feet"),
  30225. name: "Maw",
  30226. image: {
  30227. source: "./media/characters/lira/maw.svg"
  30228. }
  30229. },
  30230. pawDigi: {
  30231. height: math.unit(1.6, "feet"),
  30232. name: "Paw Digi",
  30233. image: {
  30234. source: "./media/characters/lira/paw-digi.svg"
  30235. }
  30236. },
  30237. pawPlanti: {
  30238. height: math.unit(1.4, "feet"),
  30239. name: "Paw Planti",
  30240. image: {
  30241. source: "./media/characters/lira/paw-planti.svg"
  30242. }
  30243. },
  30244. },
  30245. [
  30246. {
  30247. name: "Normal",
  30248. height: math.unit(6 + 2 / 12, "feet"),
  30249. default: true
  30250. },
  30251. {
  30252. name: "Macro",
  30253. height: math.unit(100, "feet")
  30254. },
  30255. {
  30256. name: "Macro²",
  30257. height: math.unit(1600, "feet")
  30258. },
  30259. {
  30260. name: "Planetary",
  30261. height: math.unit(20, "earths")
  30262. },
  30263. ]
  30264. ))
  30265. characterMakers.push(() => makeCharacter(
  30266. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30267. {
  30268. front: {
  30269. height: math.unit(6, "feet"),
  30270. weight: math.unit(150, "lb"),
  30271. name: "Front",
  30272. image: {
  30273. source: "./media/characters/hadjet/front.svg",
  30274. extra: 1480 / 1346,
  30275. bottom: 26 / 1506
  30276. }
  30277. },
  30278. frontNsfw: {
  30279. height: math.unit(6, "feet"),
  30280. weight: math.unit(150, "lb"),
  30281. name: "Front (NSFW)",
  30282. image: {
  30283. source: "./media/characters/hadjet/front-nsfw.svg",
  30284. extra: 1440 / 1358,
  30285. bottom: 52 / 1492
  30286. }
  30287. },
  30288. },
  30289. [
  30290. {
  30291. name: "Macro",
  30292. height: math.unit(10, "stories"),
  30293. default: true
  30294. },
  30295. {
  30296. name: "Megamacro",
  30297. height: math.unit(1.5, "miles")
  30298. },
  30299. {
  30300. name: "Megamacro+",
  30301. height: math.unit(5, "miles")
  30302. },
  30303. ]
  30304. ))
  30305. characterMakers.push(() => makeCharacter(
  30306. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30307. {
  30308. side: {
  30309. height: math.unit(106, "feet"),
  30310. weight: math.unit(500, "tonnes"),
  30311. name: "Side",
  30312. image: {
  30313. source: "./media/characters/kodran/side.svg",
  30314. extra: 553 / 480,
  30315. bottom: 33 / 586
  30316. }
  30317. },
  30318. front: {
  30319. height: math.unit(132, "feet"),
  30320. weight: math.unit(500, "tonnes"),
  30321. name: "Front",
  30322. image: {
  30323. source: "./media/characters/kodran/front.svg",
  30324. extra: 667 / 643,
  30325. bottom: 42 / 709
  30326. }
  30327. },
  30328. flying: {
  30329. height: math.unit(350, "feet"),
  30330. weight: math.unit(500, "tonnes"),
  30331. name: "Flying",
  30332. image: {
  30333. source: "./media/characters/kodran/flying.svg"
  30334. }
  30335. },
  30336. foot: {
  30337. height: math.unit(33, "feet"),
  30338. name: "Foot",
  30339. image: {
  30340. source: "./media/characters/kodran/foot.svg"
  30341. }
  30342. },
  30343. footFront: {
  30344. height: math.unit(19, "feet"),
  30345. name: "Foot (Front)",
  30346. image: {
  30347. source: "./media/characters/kodran/foot-front.svg",
  30348. extra: 261 / 261,
  30349. bottom: 91 / 352
  30350. }
  30351. },
  30352. headFront: {
  30353. height: math.unit(53, "feet"),
  30354. name: "Head (Front)",
  30355. image: {
  30356. source: "./media/characters/kodran/head-front.svg"
  30357. }
  30358. },
  30359. headSide: {
  30360. height: math.unit(65, "feet"),
  30361. name: "Head (Side)",
  30362. image: {
  30363. source: "./media/characters/kodran/head-side.svg"
  30364. }
  30365. },
  30366. throat: {
  30367. height: math.unit(79, "feet"),
  30368. name: "Throat",
  30369. image: {
  30370. source: "./media/characters/kodran/throat.svg"
  30371. }
  30372. },
  30373. },
  30374. [
  30375. {
  30376. name: "Large",
  30377. height: math.unit(106, "feet"),
  30378. default: true
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30384. {
  30385. side: {
  30386. height: math.unit(11, "feet"),
  30387. weight: math.unit(150, "lb"),
  30388. name: "Side",
  30389. image: {
  30390. source: "./media/characters/pyxaron/side.svg",
  30391. extra: 305 / 195,
  30392. bottom: 17 / 322
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Normal",
  30399. height: math.unit(11, "feet"),
  30400. default: true
  30401. },
  30402. ]
  30403. ))
  30404. characterMakers.push(() => makeCharacter(
  30405. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30406. {
  30407. front: {
  30408. height: math.unit(6, "feet"),
  30409. weight: math.unit(150, "lb"),
  30410. name: "Front",
  30411. image: {
  30412. source: "./media/characters/meep/front.svg",
  30413. extra: 88 / 80,
  30414. bottom: 6 / 94
  30415. }
  30416. },
  30417. },
  30418. [
  30419. {
  30420. name: "Fun Sized",
  30421. height: math.unit(2, "inches"),
  30422. default: true
  30423. },
  30424. {
  30425. name: "Friend Sized",
  30426. height: math.unit(8, "inches")
  30427. },
  30428. ]
  30429. ))
  30430. characterMakers.push(() => makeCharacter(
  30431. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30432. {
  30433. front: {
  30434. height: math.unit(15, "feet"),
  30435. weight: math.unit(2500, "lb"),
  30436. name: "Front",
  30437. image: {
  30438. source: "./media/characters/holly-rabbit/front.svg",
  30439. extra: 1433 / 1233,
  30440. bottom: 125 / 1558
  30441. }
  30442. },
  30443. dick: {
  30444. height: math.unit(4.6, "feet"),
  30445. name: "Dick",
  30446. image: {
  30447. source: "./media/characters/holly-rabbit/dick.svg"
  30448. }
  30449. },
  30450. },
  30451. [
  30452. {
  30453. name: "Normal",
  30454. height: math.unit(15, "feet"),
  30455. default: true
  30456. },
  30457. {
  30458. name: "Macro",
  30459. height: math.unit(250, "feet")
  30460. },
  30461. {
  30462. name: "Macro+",
  30463. height: math.unit(2500, "feet")
  30464. },
  30465. ]
  30466. ))
  30467. characterMakers.push(() => makeCharacter(
  30468. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30469. {
  30470. front: {
  30471. height: math.unit(3.02, "meters"),
  30472. weight: math.unit(500, "kg"),
  30473. name: "Front",
  30474. image: {
  30475. source: "./media/characters/drena/front.svg",
  30476. extra: 282 / 243,
  30477. bottom: 8 / 290
  30478. }
  30479. },
  30480. side: {
  30481. height: math.unit(3.02, "meters"),
  30482. weight: math.unit(500, "kg"),
  30483. name: "Side",
  30484. image: {
  30485. source: "./media/characters/drena/side.svg",
  30486. extra: 280 / 245,
  30487. bottom: 10 / 290
  30488. }
  30489. },
  30490. back: {
  30491. height: math.unit(3.02, "meters"),
  30492. weight: math.unit(500, "kg"),
  30493. name: "Back",
  30494. image: {
  30495. source: "./media/characters/drena/back.svg",
  30496. extra: 278 / 243,
  30497. bottom: 2 / 280
  30498. }
  30499. },
  30500. foot: {
  30501. height: math.unit(0.75, "meters"),
  30502. name: "Foot",
  30503. image: {
  30504. source: "./media/characters/drena/foot.svg"
  30505. }
  30506. },
  30507. maw: {
  30508. height: math.unit(0.82, "meters"),
  30509. name: "Maw",
  30510. image: {
  30511. source: "./media/characters/drena/maw.svg"
  30512. }
  30513. },
  30514. eating: {
  30515. height: math.unit(0.75, "meters"),
  30516. name: "Eating",
  30517. image: {
  30518. source: "./media/characters/drena/eating.svg"
  30519. }
  30520. },
  30521. rump: {
  30522. height: math.unit(0.93, "meters"),
  30523. name: "Rump",
  30524. image: {
  30525. source: "./media/characters/drena/rump.svg"
  30526. }
  30527. },
  30528. },
  30529. [
  30530. {
  30531. name: "Normal",
  30532. height: math.unit(3.02, "meters"),
  30533. default: true
  30534. },
  30535. ]
  30536. ))
  30537. characterMakers.push(() => makeCharacter(
  30538. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30539. {
  30540. front: {
  30541. height: math.unit(6 + 4 / 12, "feet"),
  30542. weight: math.unit(250, "lb"),
  30543. name: "Front",
  30544. image: {
  30545. source: "./media/characters/remmyzilla/front.svg",
  30546. extra: 4033 / 3588,
  30547. bottom: 123 / 4156
  30548. }
  30549. },
  30550. back: {
  30551. height: math.unit(6 + 4 / 12, "feet"),
  30552. weight: math.unit(250, "lb"),
  30553. name: "Back",
  30554. image: {
  30555. source: "./media/characters/remmyzilla/back.svg",
  30556. extra: 2687 / 2555,
  30557. bottom: 48 / 2735
  30558. }
  30559. },
  30560. paw: {
  30561. height: math.unit(1.73, "feet"),
  30562. name: "Paw",
  30563. image: {
  30564. source: "./media/characters/remmyzilla/paw.svg"
  30565. },
  30566. extraAttributes: {
  30567. "toeSize": {
  30568. name: "Toe Size",
  30569. power: 2,
  30570. type: "area",
  30571. base: math.unit(0.0035, "m^2")
  30572. },
  30573. "padSize": {
  30574. name: "Pad Size",
  30575. power: 2,
  30576. type: "area",
  30577. base: math.unit(0.015, "m^2")
  30578. },
  30579. "pawsize": {
  30580. name: "Paw Size",
  30581. power: 2,
  30582. type: "area",
  30583. base: math.unit(0.072, "m^2")
  30584. },
  30585. }
  30586. },
  30587. maw: {
  30588. height: math.unit(1.73, "feet"),
  30589. name: "Maw",
  30590. image: {
  30591. source: "./media/characters/remmyzilla/maw.svg"
  30592. }
  30593. },
  30594. },
  30595. [
  30596. {
  30597. name: "Normal",
  30598. height: math.unit(6 + 4 / 12, "feet")
  30599. },
  30600. {
  30601. name: "Minimacro",
  30602. height: math.unit(12 + 8 / 12, "feet")
  30603. },
  30604. {
  30605. name: "Normal",
  30606. height: math.unit(640, "feet"),
  30607. default: true
  30608. },
  30609. {
  30610. name: "Megamacro",
  30611. height: math.unit(6400, "feet")
  30612. },
  30613. {
  30614. name: "Gigamacro",
  30615. height: math.unit(64000, "miles")
  30616. },
  30617. ]
  30618. ))
  30619. characterMakers.push(() => makeCharacter(
  30620. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30621. {
  30622. front: {
  30623. height: math.unit(2.5, "meters"),
  30624. weight: math.unit(300, "lb"),
  30625. name: "Front",
  30626. image: {
  30627. source: "./media/characters/lawrence/front.svg",
  30628. extra: 357 / 335,
  30629. bottom: 30 / 387
  30630. }
  30631. },
  30632. back: {
  30633. height: math.unit(2.5, "meters"),
  30634. weight: math.unit(300, "lb"),
  30635. name: "Back",
  30636. image: {
  30637. source: "./media/characters/lawrence/back.svg",
  30638. extra: 357 / 338,
  30639. bottom: 16 / 373
  30640. }
  30641. },
  30642. head: {
  30643. height: math.unit(0.9, "meter"),
  30644. name: "Head",
  30645. image: {
  30646. source: "./media/characters/lawrence/head.svg"
  30647. }
  30648. },
  30649. maw: {
  30650. height: math.unit(0.7, "meter"),
  30651. name: "Maw",
  30652. image: {
  30653. source: "./media/characters/lawrence/maw.svg"
  30654. }
  30655. },
  30656. footBottom: {
  30657. height: math.unit(0.5, "meter"),
  30658. name: "Foot (Bottom)",
  30659. image: {
  30660. source: "./media/characters/lawrence/foot-bottom.svg"
  30661. }
  30662. },
  30663. footTop: {
  30664. height: math.unit(0.5, "meter"),
  30665. name: "Foot (Top)",
  30666. image: {
  30667. source: "./media/characters/lawrence/foot-top.svg"
  30668. }
  30669. },
  30670. },
  30671. [
  30672. {
  30673. name: "Normal",
  30674. height: math.unit(2.5, "meters"),
  30675. default: true
  30676. },
  30677. {
  30678. name: "Macro",
  30679. height: math.unit(95, "meters")
  30680. },
  30681. {
  30682. name: "Megamacro",
  30683. height: math.unit(150, "km")
  30684. },
  30685. ]
  30686. ))
  30687. characterMakers.push(() => makeCharacter(
  30688. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30689. {
  30690. front: {
  30691. height: math.unit(4.2, "meters"),
  30692. name: "Front",
  30693. image: {
  30694. source: "./media/characters/sydney/front.svg",
  30695. extra: 1323 / 1277,
  30696. bottom: 111 / 1434
  30697. }
  30698. },
  30699. },
  30700. [
  30701. {
  30702. name: "Normal",
  30703. height: math.unit(4.2, "meters"),
  30704. default: true
  30705. },
  30706. ]
  30707. ))
  30708. characterMakers.push(() => makeCharacter(
  30709. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30710. {
  30711. back: {
  30712. height: math.unit(201, "feet"),
  30713. name: "Back",
  30714. image: {
  30715. source: "./media/characters/jessica/back.svg",
  30716. extra: 273 / 259,
  30717. bottom: 7 / 280
  30718. }
  30719. },
  30720. },
  30721. [
  30722. {
  30723. name: "Normal",
  30724. height: math.unit(201, "feet"),
  30725. default: true
  30726. },
  30727. {
  30728. name: "Megamacro",
  30729. height: math.unit(8, "miles")
  30730. },
  30731. ]
  30732. ))
  30733. characterMakers.push(() => makeCharacter(
  30734. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30735. {
  30736. side: {
  30737. height: math.unit(5.6, "m"),
  30738. weight: math.unit(8000, "kg"),
  30739. name: "Side",
  30740. image: {
  30741. source: "./media/characters/victoria/side.svg",
  30742. extra: 1542/1229,
  30743. bottom: 124/1666
  30744. }
  30745. },
  30746. maw: {
  30747. height: math.unit(7.14, "feet"),
  30748. name: "Maw",
  30749. image: {
  30750. source: "./media/characters/victoria/maw.svg"
  30751. }
  30752. },
  30753. },
  30754. [
  30755. {
  30756. name: "Normal",
  30757. height: math.unit(5.6, "m"),
  30758. default: true
  30759. },
  30760. ]
  30761. ))
  30762. characterMakers.push(() => makeCharacter(
  30763. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30764. {
  30765. front: {
  30766. height: math.unit(5 + 6 / 12, "feet"),
  30767. name: "Front",
  30768. image: {
  30769. source: "./media/characters/cat/front.svg",
  30770. extra: 1449/1295,
  30771. bottom: 34/1483
  30772. },
  30773. form: "cat",
  30774. default: true
  30775. },
  30776. back: {
  30777. height: math.unit(5 + 6 / 12, "feet"),
  30778. name: "Back",
  30779. image: {
  30780. source: "./media/characters/cat/back.svg",
  30781. extra: 1466/1301,
  30782. bottom: 19/1485
  30783. },
  30784. form: "cat"
  30785. },
  30786. taur: {
  30787. height: math.unit(7, "feet"),
  30788. name: "Taur",
  30789. image: {
  30790. source: "./media/characters/cat/taur.svg",
  30791. extra: 1389/1233,
  30792. bottom: 83/1472
  30793. },
  30794. form: "taur",
  30795. default: true
  30796. },
  30797. lucarioFront: {
  30798. height: math.unit(4, "feet"),
  30799. name: "Lucario (Front)",
  30800. image: {
  30801. source: "./media/characters/cat/lucario-front.svg",
  30802. extra: 1149/1019,
  30803. bottom: 84/1233
  30804. },
  30805. form: "lucario",
  30806. default: true
  30807. },
  30808. lucarioBack: {
  30809. height: math.unit(4, "feet"),
  30810. name: "Lucario (Back)",
  30811. image: {
  30812. source: "./media/characters/cat/lucario-back.svg",
  30813. extra: 1190/1059,
  30814. bottom: 33/1223
  30815. },
  30816. form: "lucario"
  30817. },
  30818. megaLucario: {
  30819. height: math.unit(4, "feet"),
  30820. name: "Mega Lucario",
  30821. image: {
  30822. source: "./media/characters/cat/mega-lucario.svg",
  30823. extra: 1515 / 1319,
  30824. bottom: 63 / 1578
  30825. },
  30826. form: "lucario"
  30827. },
  30828. nickit: {
  30829. height: math.unit(2, "feet"),
  30830. name: "Nickit",
  30831. image: {
  30832. source: "./media/characters/cat/nickit.svg",
  30833. extra: 1980 / 1585,
  30834. bottom: 102 / 2082
  30835. },
  30836. form: "nickit",
  30837. default: true
  30838. },
  30839. lopunnyFront: {
  30840. height: math.unit(5, "feet"),
  30841. name: "Lopunny (Front)",
  30842. image: {
  30843. source: "./media/characters/cat/lopunny-front.svg",
  30844. extra: 1782 / 1469,
  30845. bottom: 38 / 1820
  30846. },
  30847. form: "lopunny",
  30848. default: true
  30849. },
  30850. lopunnyBack: {
  30851. height: math.unit(5, "feet"),
  30852. name: "Lopunny (Back)",
  30853. image: {
  30854. source: "./media/characters/cat/lopunny-back.svg",
  30855. extra: 1660 / 1490,
  30856. bottom: 25 / 1685
  30857. },
  30858. form: "lopunny"
  30859. },
  30860. },
  30861. [
  30862. {
  30863. name: "Really small",
  30864. height: math.unit(1, "nm")
  30865. },
  30866. {
  30867. name: "Micro",
  30868. height: math.unit(5, "inches")
  30869. },
  30870. {
  30871. name: "Normal",
  30872. height: math.unit(5 + 6 / 12, "feet"),
  30873. default: true
  30874. },
  30875. {
  30876. name: "Macro",
  30877. height: math.unit(50, "feet")
  30878. },
  30879. {
  30880. name: "Macro+",
  30881. height: math.unit(150, "feet")
  30882. },
  30883. {
  30884. name: "Megamacro",
  30885. height: math.unit(100, "miles")
  30886. },
  30887. ]
  30888. ))
  30889. characterMakers.push(() => makeCharacter(
  30890. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30891. {
  30892. front: {
  30893. height: math.unit(63.4, "meters"),
  30894. weight: math.unit(3.28349e+6, "kilograms"),
  30895. name: "Front",
  30896. image: {
  30897. source: "./media/characters/kirina-violet/front.svg",
  30898. extra: 2812 / 2725,
  30899. bottom: 0 / 2812
  30900. }
  30901. },
  30902. back: {
  30903. height: math.unit(63.4, "meters"),
  30904. weight: math.unit(3.28349e+6, "kilograms"),
  30905. name: "Back",
  30906. image: {
  30907. source: "./media/characters/kirina-violet/back.svg",
  30908. extra: 2812 / 2725,
  30909. bottom: 0 / 2812
  30910. }
  30911. },
  30912. mouth: {
  30913. height: math.unit(4.35, "meters"),
  30914. name: "Mouth",
  30915. image: {
  30916. source: "./media/characters/kirina-violet/mouth.svg"
  30917. }
  30918. },
  30919. paw: {
  30920. height: math.unit(5.6, "meters"),
  30921. name: "Paw",
  30922. image: {
  30923. source: "./media/characters/kirina-violet/paw.svg"
  30924. }
  30925. },
  30926. tail: {
  30927. height: math.unit(18, "meters"),
  30928. name: "Tail",
  30929. image: {
  30930. source: "./media/characters/kirina-violet/tail.svg"
  30931. }
  30932. },
  30933. },
  30934. [
  30935. {
  30936. name: "Macro",
  30937. height: math.unit(63.4, "meters"),
  30938. default: true
  30939. },
  30940. ]
  30941. ))
  30942. characterMakers.push(() => makeCharacter(
  30943. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30944. {
  30945. front: {
  30946. height: math.unit(75, "feet"),
  30947. name: "Front",
  30948. image: {
  30949. source: "./media/characters/cat-gigachu/front.svg",
  30950. extra: 1239/1027,
  30951. bottom: 32/1271
  30952. }
  30953. },
  30954. back: {
  30955. height: math.unit(75, "feet"),
  30956. name: "Back",
  30957. image: {
  30958. source: "./media/characters/cat-gigachu/back.svg",
  30959. extra: 1229/1030,
  30960. bottom: 9/1238
  30961. }
  30962. },
  30963. },
  30964. [
  30965. {
  30966. name: "Dynamax",
  30967. height: math.unit(75, "feet"),
  30968. default: true
  30969. },
  30970. ]
  30971. ))
  30972. characterMakers.push(() => makeCharacter(
  30973. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30974. {
  30975. front: {
  30976. height: math.unit(6, "feet"),
  30977. weight: math.unit(150, "lb"),
  30978. name: "Front",
  30979. image: {
  30980. source: "./media/characters/sfaiyan/front.svg",
  30981. extra: 999 / 978,
  30982. bottom: 5 / 1004
  30983. }
  30984. },
  30985. },
  30986. [
  30987. {
  30988. name: "Normal",
  30989. height: math.unit(1.82, "meters")
  30990. },
  30991. {
  30992. name: "Giant",
  30993. height: math.unit(2.27, "km"),
  30994. default: true
  30995. },
  30996. ]
  30997. ))
  30998. characterMakers.push(() => makeCharacter(
  30999. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31000. {
  31001. front: {
  31002. height: math.unit(179, "cm"),
  31003. weight: math.unit(100, "kg"),
  31004. name: "Front",
  31005. image: {
  31006. source: "./media/characters/raunehkeli/front.svg",
  31007. extra: 1934 / 1926,
  31008. bottom: 0 / 1934
  31009. }
  31010. },
  31011. },
  31012. [
  31013. {
  31014. name: "Normal",
  31015. height: math.unit(179, "cm")
  31016. },
  31017. {
  31018. name: "Maximum",
  31019. height: math.unit(575, "meters"),
  31020. default: true
  31021. },
  31022. ]
  31023. ))
  31024. characterMakers.push(() => makeCharacter(
  31025. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31026. {
  31027. front: {
  31028. height: math.unit(6, "feet"),
  31029. weight: math.unit(150, "lb"),
  31030. name: "Front",
  31031. image: {
  31032. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31033. extra: 2625 / 2518,
  31034. bottom: 60 / 2685
  31035. }
  31036. },
  31037. },
  31038. [
  31039. {
  31040. name: "Normal",
  31041. height: math.unit(6 + 2 / 12, "feet")
  31042. },
  31043. {
  31044. name: "Macro",
  31045. height: math.unit(1180, "feet"),
  31046. default: true
  31047. },
  31048. ]
  31049. ))
  31050. characterMakers.push(() => makeCharacter(
  31051. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31052. {
  31053. front: {
  31054. height: math.unit(5 + 6 / 12, "feet"),
  31055. weight: math.unit(108, "lb"),
  31056. name: "Front",
  31057. image: {
  31058. source: "./media/characters/lilith-zott/front.svg",
  31059. extra: 2510 / 2238,
  31060. bottom: 100 / 2610
  31061. }
  31062. },
  31063. frontDressed: {
  31064. height: math.unit(5 + 6 / 12, "feet"),
  31065. weight: math.unit(108, "lb"),
  31066. name: "Front (Dressed)",
  31067. image: {
  31068. source: "./media/characters/lilith-zott/front-dressed.svg",
  31069. extra: 2510 / 2238,
  31070. bottom: 100 / 2610
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Normal",
  31077. height: math.unit(5 + 6 / 12, "feet")
  31078. },
  31079. {
  31080. name: "Macro",
  31081. height: math.unit(1030, "feet"),
  31082. default: true
  31083. },
  31084. ]
  31085. ))
  31086. characterMakers.push(() => makeCharacter(
  31087. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], 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/holly-the-mega-mousky-heathers/front.svg",
  31095. extra: 2567 / 2435,
  31096. bottom: 39 / 2606
  31097. }
  31098. },
  31099. frontSuper: {
  31100. height: math.unit(6, "feet"),
  31101. name: "Front (Super)",
  31102. image: {
  31103. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31104. extra: 2567 / 2435,
  31105. bottom: 39 / 2606
  31106. }
  31107. },
  31108. },
  31109. [
  31110. {
  31111. name: "Normal",
  31112. height: math.unit(5 + 10 / 12, "feet")
  31113. },
  31114. {
  31115. name: "Macro",
  31116. height: math.unit(1100, "feet"),
  31117. default: true
  31118. },
  31119. ]
  31120. ))
  31121. characterMakers.push(() => makeCharacter(
  31122. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31123. {
  31124. front: {
  31125. height: math.unit(100, "miles"),
  31126. name: "Front",
  31127. image: {
  31128. source: "./media/characters/sona/front.svg",
  31129. extra: 2433 / 2201,
  31130. bottom: 53 / 2486
  31131. }
  31132. },
  31133. foot: {
  31134. height: math.unit(16.1, "miles"),
  31135. name: "Foot",
  31136. image: {
  31137. source: "./media/characters/sona/foot.svg"
  31138. }
  31139. },
  31140. },
  31141. [
  31142. {
  31143. name: "Macro",
  31144. height: math.unit(100, "miles"),
  31145. default: true
  31146. },
  31147. ]
  31148. ))
  31149. characterMakers.push(() => makeCharacter(
  31150. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31151. {
  31152. front: {
  31153. height: math.unit(6, "feet"),
  31154. weight: math.unit(150, "lb"),
  31155. name: "Front",
  31156. image: {
  31157. source: "./media/characters/bailey/front.svg",
  31158. extra: 1778 / 1724,
  31159. bottom: 30 / 1808
  31160. }
  31161. },
  31162. },
  31163. [
  31164. {
  31165. name: "Micro",
  31166. height: math.unit(4, "inches")
  31167. },
  31168. {
  31169. name: "Normal",
  31170. height: math.unit(5 + 5 / 12, "feet"),
  31171. default: true
  31172. },
  31173. {
  31174. name: "Macro",
  31175. height: math.unit(250, "feet")
  31176. },
  31177. {
  31178. name: "Megamacro",
  31179. height: math.unit(100, "miles")
  31180. },
  31181. ]
  31182. ))
  31183. characterMakers.push(() => makeCharacter(
  31184. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31185. {
  31186. front: {
  31187. height: math.unit(5 + 2 / 12, "feet"),
  31188. weight: math.unit(120, "lb"),
  31189. name: "Front",
  31190. image: {
  31191. source: "./media/characters/snaps/front.svg",
  31192. extra: 2370 / 2177,
  31193. bottom: 48 / 2418
  31194. }
  31195. },
  31196. back: {
  31197. height: math.unit(5 + 2 / 12, "feet"),
  31198. weight: math.unit(120, "lb"),
  31199. name: "Back",
  31200. image: {
  31201. source: "./media/characters/snaps/back.svg",
  31202. extra: 2408 / 2258,
  31203. bottom: 15 / 2423
  31204. }
  31205. },
  31206. },
  31207. [
  31208. {
  31209. name: "Micro",
  31210. height: math.unit(9, "inches")
  31211. },
  31212. {
  31213. name: "Normal",
  31214. height: math.unit(5 + 2 / 12, "feet"),
  31215. default: true
  31216. },
  31217. {
  31218. name: "Mini Macro",
  31219. height: math.unit(10, "feet")
  31220. },
  31221. ]
  31222. ))
  31223. characterMakers.push(() => makeCharacter(
  31224. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31225. {
  31226. front: {
  31227. height: math.unit(1.8, "meters"),
  31228. weight: math.unit(85, "kg"),
  31229. name: "Front",
  31230. image: {
  31231. source: "./media/characters/azteck/front.svg",
  31232. extra: 2815 / 2625,
  31233. bottom: 89 / 2904
  31234. }
  31235. },
  31236. back: {
  31237. height: math.unit(1.8, "meters"),
  31238. weight: math.unit(85, "kg"),
  31239. name: "Back",
  31240. image: {
  31241. source: "./media/characters/azteck/back.svg",
  31242. extra: 2856 / 2648,
  31243. bottom: 85 / 2941
  31244. }
  31245. },
  31246. frontDressed: {
  31247. height: math.unit(1.8, "meters"),
  31248. weight: math.unit(85, "kg"),
  31249. name: "Front (Dressed)",
  31250. image: {
  31251. source: "./media/characters/azteck/front-dressed.svg",
  31252. extra: 2147 / 2003,
  31253. bottom: 68 / 2215
  31254. }
  31255. },
  31256. head: {
  31257. height: math.unit(0.47, "meters"),
  31258. weight: math.unit(85, "kg"),
  31259. name: "Head",
  31260. image: {
  31261. source: "./media/characters/azteck/head.svg"
  31262. }
  31263. },
  31264. },
  31265. [
  31266. {
  31267. name: "Bite sized",
  31268. height: math.unit(16, "cm")
  31269. },
  31270. {
  31271. name: "Normal",
  31272. height: math.unit(1.8, "meters"),
  31273. default: true
  31274. },
  31275. ]
  31276. ))
  31277. characterMakers.push(() => makeCharacter(
  31278. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31279. {
  31280. front: {
  31281. height: math.unit(6, "feet"),
  31282. weight: math.unit(150, "lb"),
  31283. name: "Front",
  31284. image: {
  31285. source: "./media/characters/pidge/front.svg",
  31286. extra: 1936/1820,
  31287. bottom: 0/1936
  31288. }
  31289. },
  31290. back: {
  31291. height: math.unit(6, "feet"),
  31292. weight: math.unit(150, "lb"),
  31293. name: "Back",
  31294. image: {
  31295. source: "./media/characters/pidge/back.svg",
  31296. extra: 1938/1843,
  31297. bottom: 0/1938
  31298. }
  31299. },
  31300. casual: {
  31301. height: math.unit(6, "feet"),
  31302. weight: math.unit(150, "lb"),
  31303. name: "Casual",
  31304. image: {
  31305. source: "./media/characters/pidge/casual.svg",
  31306. extra: 1936/1820,
  31307. bottom: 0/1936
  31308. }
  31309. },
  31310. tech: {
  31311. height: math.unit(6, "feet"),
  31312. weight: math.unit(150, "lb"),
  31313. name: "Tech",
  31314. image: {
  31315. source: "./media/characters/pidge/tech.svg",
  31316. extra: 1802/1682,
  31317. bottom: 0/1802
  31318. }
  31319. },
  31320. head: {
  31321. height: math.unit(1.61, "feet"),
  31322. name: "Head",
  31323. image: {
  31324. source: "./media/characters/pidge/head.svg"
  31325. }
  31326. },
  31327. collar: {
  31328. height: math.unit(0.82, "feet"),
  31329. name: "Collar",
  31330. image: {
  31331. source: "./media/characters/pidge/collar.svg"
  31332. }
  31333. },
  31334. },
  31335. [
  31336. {
  31337. name: "Macro",
  31338. height: math.unit(2, "mile"),
  31339. default: true
  31340. },
  31341. {
  31342. name: "PUPPY",
  31343. height: math.unit(20, "miles")
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31349. {
  31350. front: {
  31351. height: math.unit(6, "feet"),
  31352. weight: math.unit(150, "lb"),
  31353. name: "Front",
  31354. image: {
  31355. source: "./media/characters/en/front.svg",
  31356. extra: 1697 / 1563,
  31357. bottom: 103 / 1800
  31358. }
  31359. },
  31360. back: {
  31361. height: math.unit(6, "feet"),
  31362. weight: math.unit(150, "lb"),
  31363. name: "Back",
  31364. image: {
  31365. source: "./media/characters/en/back.svg",
  31366. extra: 1700 / 1570,
  31367. bottom: 51 / 1751
  31368. }
  31369. },
  31370. frontDressed: {
  31371. height: math.unit(6, "feet"),
  31372. weight: math.unit(150, "lb"),
  31373. name: "Front (Dressed)",
  31374. image: {
  31375. source: "./media/characters/en/front-dressed.svg",
  31376. extra: 1697 / 1563,
  31377. bottom: 103 / 1800
  31378. }
  31379. },
  31380. backDressed: {
  31381. height: math.unit(6, "feet"),
  31382. weight: math.unit(150, "lb"),
  31383. name: "Back (Dressed)",
  31384. image: {
  31385. source: "./media/characters/en/back-dressed.svg",
  31386. extra: 1700 / 1570,
  31387. bottom: 51 / 1751
  31388. }
  31389. },
  31390. },
  31391. [
  31392. {
  31393. name: "Macro",
  31394. height: math.unit(210, "feet"),
  31395. default: true
  31396. },
  31397. ]
  31398. ))
  31399. characterMakers.push(() => makeCharacter(
  31400. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31401. {
  31402. front: {
  31403. height: math.unit(6, "feet"),
  31404. weight: math.unit(150, "lb"),
  31405. name: "Front",
  31406. image: {
  31407. source: "./media/characters/haze-orris/front.svg",
  31408. extra: 3975 / 3525,
  31409. bottom: 137 / 4112
  31410. }
  31411. },
  31412. },
  31413. [
  31414. {
  31415. name: "Micro",
  31416. height: math.unit(150, "mm"),
  31417. default: true
  31418. },
  31419. ]
  31420. ))
  31421. characterMakers.push(() => makeCharacter(
  31422. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31423. {
  31424. front: {
  31425. height: math.unit(6, "feet"),
  31426. weight: math.unit(150, "lb"),
  31427. name: "Front",
  31428. image: {
  31429. source: "./media/characters/casselene-yaro/front.svg",
  31430. extra: 4721 / 4541,
  31431. bottom: 82 / 4803
  31432. }
  31433. },
  31434. back: {
  31435. height: math.unit(6, "feet"),
  31436. weight: math.unit(150, "lb"),
  31437. name: "Back",
  31438. image: {
  31439. source: "./media/characters/casselene-yaro/back.svg",
  31440. extra: 4569 / 4377,
  31441. bottom: 69 / 4638
  31442. }
  31443. },
  31444. dressed: {
  31445. height: math.unit(6, "feet"),
  31446. weight: math.unit(150, "lb"),
  31447. name: "Dressed",
  31448. image: {
  31449. source: "./media/characters/casselene-yaro/dressed.svg",
  31450. extra: 4721 / 4541,
  31451. bottom: 82 / 4803
  31452. }
  31453. },
  31454. maw: {
  31455. height: math.unit(1, "feet"),
  31456. name: "Maw",
  31457. image: {
  31458. source: "./media/characters/casselene-yaro/maw.svg"
  31459. }
  31460. },
  31461. },
  31462. [
  31463. {
  31464. name: "Macro",
  31465. height: math.unit(190, "feet"),
  31466. default: true
  31467. },
  31468. ]
  31469. ))
  31470. characterMakers.push(() => makeCharacter(
  31471. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31472. {
  31473. front: {
  31474. height: math.unit(10, "feet"),
  31475. weight: math.unit(15015, "lb"),
  31476. name: "Front",
  31477. image: {
  31478. source: "./media/characters/platine/front.svg",
  31479. extra: 1741/1650,
  31480. bottom: 84/1825
  31481. }
  31482. },
  31483. side: {
  31484. height: math.unit(10, "feet"),
  31485. weight: math.unit(15015, "lb"),
  31486. name: "Side",
  31487. image: {
  31488. source: "./media/characters/platine/side.svg",
  31489. extra: 1790/1705,
  31490. bottom: 29/1819
  31491. }
  31492. },
  31493. },
  31494. [
  31495. {
  31496. name: "Normal",
  31497. height: math.unit(10, "feet"),
  31498. default: true
  31499. },
  31500. {
  31501. name: "Macro",
  31502. height: math.unit(100, "feet")
  31503. },
  31504. {
  31505. name: "Megamacro",
  31506. height: math.unit(1000, "feet")
  31507. },
  31508. ]
  31509. ))
  31510. characterMakers.push(() => makeCharacter(
  31511. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31512. {
  31513. front: {
  31514. height: math.unit(15 + 5 / 12, "feet"),
  31515. weight: math.unit(4600, "lb"),
  31516. name: "Front",
  31517. image: {
  31518. source: "./media/characters/neapolitan-ananassa/front.svg",
  31519. extra: 2903 / 2736,
  31520. bottom: 0 / 2903
  31521. }
  31522. },
  31523. side: {
  31524. height: math.unit(15 + 5 / 12, "feet"),
  31525. weight: math.unit(4600, "lb"),
  31526. name: "Side",
  31527. image: {
  31528. source: "./media/characters/neapolitan-ananassa/side.svg",
  31529. extra: 2925 / 2719,
  31530. bottom: 0 / 2925
  31531. }
  31532. },
  31533. back: {
  31534. height: math.unit(15 + 5 / 12, "feet"),
  31535. weight: math.unit(4600, "lb"),
  31536. name: "Back",
  31537. image: {
  31538. source: "./media/characters/neapolitan-ananassa/back.svg",
  31539. extra: 2903 / 2736,
  31540. bottom: 0 / 2903
  31541. }
  31542. },
  31543. },
  31544. [
  31545. {
  31546. name: "Normal",
  31547. height: math.unit(15 + 5 / 12, "feet"),
  31548. default: true
  31549. },
  31550. {
  31551. name: "Post-Millenium",
  31552. height: math.unit(35 + 5 / 12, "feet")
  31553. },
  31554. {
  31555. name: "Post-Era",
  31556. height: math.unit(450 + 5 / 12, "feet")
  31557. },
  31558. ]
  31559. ))
  31560. characterMakers.push(() => makeCharacter(
  31561. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31562. {
  31563. front: {
  31564. height: math.unit(300, "meters"),
  31565. weight: math.unit(125000, "tonnes"),
  31566. name: "Front",
  31567. image: {
  31568. source: "./media/characters/pazuzu/front.svg",
  31569. extra: 877 / 794,
  31570. bottom: 47 / 924
  31571. }
  31572. },
  31573. },
  31574. [
  31575. {
  31576. name: "Macro",
  31577. height: math.unit(300, "meters"),
  31578. default: true
  31579. },
  31580. ]
  31581. ))
  31582. characterMakers.push(() => makeCharacter(
  31583. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31584. {
  31585. side: {
  31586. height: math.unit(10 + 7 / 12, "feet"),
  31587. weight: math.unit(2.5, "tons"),
  31588. name: "Side",
  31589. image: {
  31590. source: "./media/characters/aasha/side.svg",
  31591. extra: 1345 / 1245,
  31592. bottom: 111 / 1456
  31593. }
  31594. },
  31595. back: {
  31596. height: math.unit(10 + 7 / 12, "feet"),
  31597. weight: math.unit(2.5, "tons"),
  31598. name: "Back",
  31599. image: {
  31600. source: "./media/characters/aasha/back.svg",
  31601. extra: 1133 / 1057,
  31602. bottom: 257 / 1390
  31603. }
  31604. },
  31605. },
  31606. [
  31607. {
  31608. name: "Normal",
  31609. height: math.unit(10 + 7 / 12, "feet"),
  31610. default: true
  31611. },
  31612. ]
  31613. ))
  31614. characterMakers.push(() => makeCharacter(
  31615. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31616. {
  31617. front: {
  31618. height: math.unit(6 + 3 / 12, "feet"),
  31619. name: "Front",
  31620. image: {
  31621. source: "./media/characters/nevan/front.svg",
  31622. extra: 704 / 704,
  31623. bottom: 28 / 732
  31624. }
  31625. },
  31626. back: {
  31627. height: math.unit(6 + 3 / 12, "feet"),
  31628. name: "Back",
  31629. image: {
  31630. source: "./media/characters/nevan/back.svg",
  31631. extra: 714 / 714,
  31632. bottom: 21 / 735
  31633. }
  31634. },
  31635. frontFlaccid: {
  31636. height: math.unit(6 + 3 / 12, "feet"),
  31637. name: "Front (Flaccid)",
  31638. image: {
  31639. source: "./media/characters/nevan/front-flaccid.svg",
  31640. extra: 704 / 704,
  31641. bottom: 28 / 732
  31642. }
  31643. },
  31644. frontErect: {
  31645. height: math.unit(6 + 3 / 12, "feet"),
  31646. name: "Front (Erect)",
  31647. image: {
  31648. source: "./media/characters/nevan/front-erect.svg",
  31649. extra: 704 / 704,
  31650. bottom: 28 / 732
  31651. }
  31652. },
  31653. backFlaccid: {
  31654. height: math.unit(6 + 3 / 12, "feet"),
  31655. name: "Back (Flaccid)",
  31656. image: {
  31657. source: "./media/characters/nevan/back-flaccid.svg",
  31658. extra: 714 / 714,
  31659. bottom: 21 / 735
  31660. }
  31661. },
  31662. },
  31663. [
  31664. {
  31665. name: "Normal",
  31666. height: math.unit(6 + 3 / 12, "feet"),
  31667. default: true
  31668. },
  31669. ]
  31670. ))
  31671. characterMakers.push(() => makeCharacter(
  31672. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31673. {
  31674. front: {
  31675. height: math.unit(4, "feet"),
  31676. name: "Front",
  31677. image: {
  31678. source: "./media/characters/arhan/front.svg",
  31679. extra: 3368 / 3133,
  31680. bottom: 0 / 3368
  31681. }
  31682. },
  31683. side: {
  31684. height: math.unit(4, "feet"),
  31685. name: "Side",
  31686. image: {
  31687. source: "./media/characters/arhan/side.svg",
  31688. extra: 3347 / 3105,
  31689. bottom: 0 / 3347
  31690. }
  31691. },
  31692. tongue: {
  31693. height: math.unit(1.42, "feet"),
  31694. name: "Tongue",
  31695. image: {
  31696. source: "./media/characters/arhan/tongue.svg"
  31697. }
  31698. },
  31699. head: {
  31700. height: math.unit(0.85, "feet"),
  31701. name: "Head",
  31702. image: {
  31703. source: "./media/characters/arhan/head.svg"
  31704. }
  31705. },
  31706. },
  31707. [
  31708. {
  31709. name: "Normal",
  31710. height: math.unit(4, "feet"),
  31711. default: true
  31712. },
  31713. ]
  31714. ))
  31715. characterMakers.push(() => makeCharacter(
  31716. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31717. {
  31718. front: {
  31719. height: math.unit(5 + 7.5 / 12, "feet"),
  31720. weight: math.unit(120, "lb"),
  31721. name: "Front",
  31722. image: {
  31723. source: "./media/characters/digi-duncan/front.svg",
  31724. extra: 330 / 326,
  31725. bottom: 16 / 346
  31726. }
  31727. },
  31728. side: {
  31729. height: math.unit(5 + 7.5 / 12, "feet"),
  31730. weight: math.unit(120, "lb"),
  31731. name: "Side",
  31732. image: {
  31733. source: "./media/characters/digi-duncan/side.svg",
  31734. extra: 341 / 337,
  31735. bottom: 1 / 342
  31736. }
  31737. },
  31738. back: {
  31739. height: math.unit(5 + 7.5 / 12, "feet"),
  31740. weight: math.unit(120, "lb"),
  31741. name: "Back",
  31742. image: {
  31743. source: "./media/characters/digi-duncan/back.svg",
  31744. extra: 330 / 326,
  31745. bottom: 12 / 342
  31746. }
  31747. },
  31748. },
  31749. [
  31750. {
  31751. name: "Speck",
  31752. height: math.unit(0.25, "mm")
  31753. },
  31754. {
  31755. name: "Micro",
  31756. height: math.unit(5, "mm")
  31757. },
  31758. {
  31759. name: "Tiny",
  31760. height: math.unit(0.5, "inches"),
  31761. default: true
  31762. },
  31763. {
  31764. name: "Human",
  31765. height: math.unit(5 + 7.5 / 12, "feet")
  31766. },
  31767. {
  31768. name: "Minigiant",
  31769. height: math.unit(8 + 5.25, "feet")
  31770. },
  31771. {
  31772. name: "Giant",
  31773. height: math.unit(2000, "feet")
  31774. },
  31775. {
  31776. name: "Mega",
  31777. height: math.unit(371.1, "miles")
  31778. },
  31779. ]
  31780. ))
  31781. characterMakers.push(() => makeCharacter(
  31782. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31783. {
  31784. front: {
  31785. height: math.unit(2, "meters"),
  31786. weight: math.unit(350, "kg"),
  31787. name: "Front",
  31788. image: {
  31789. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31790. extra: 898 / 838,
  31791. bottom: 9 / 907
  31792. }
  31793. },
  31794. },
  31795. [
  31796. {
  31797. name: "Micro",
  31798. height: math.unit(8, "meters")
  31799. },
  31800. {
  31801. name: "Normal",
  31802. height: math.unit(50, "meters"),
  31803. default: true
  31804. },
  31805. {
  31806. name: "Macro",
  31807. height: math.unit(500, "meters")
  31808. },
  31809. ]
  31810. ))
  31811. characterMakers.push(() => makeCharacter(
  31812. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31813. {
  31814. front: {
  31815. height: math.unit(6 + 6 / 12, "feet"),
  31816. name: "Front",
  31817. image: {
  31818. source: "./media/characters/khardesh/front.svg",
  31819. extra: 1788/1596,
  31820. bottom: 66/1854
  31821. }
  31822. },
  31823. back: {
  31824. height: math.unit(6 + 6 / 12, "feet"),
  31825. name: "Back",
  31826. image: {
  31827. source: "./media/characters/khardesh/back.svg",
  31828. extra: 1781/1584,
  31829. bottom: 68/1849
  31830. }
  31831. },
  31832. },
  31833. [
  31834. {
  31835. name: "Normal",
  31836. height: math.unit(6 + 6 / 12, "feet"),
  31837. default: true
  31838. },
  31839. {
  31840. name: "Normal+",
  31841. height: math.unit(4, "meters")
  31842. },
  31843. {
  31844. name: "Macro",
  31845. height: math.unit(50, "meters")
  31846. },
  31847. {
  31848. name: "Macro+",
  31849. height: math.unit(100, "meters")
  31850. },
  31851. {
  31852. name: "Megamacro",
  31853. height: math.unit(20, "km")
  31854. },
  31855. ]
  31856. ))
  31857. characterMakers.push(() => makeCharacter(
  31858. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31859. {
  31860. front: {
  31861. height: math.unit(6, "feet"),
  31862. weight: math.unit(150, "lb"),
  31863. name: "Front",
  31864. image: {
  31865. source: "./media/characters/kosho/front.svg",
  31866. extra: 1847 / 1847,
  31867. bottom: 86 / 1933
  31868. }
  31869. },
  31870. },
  31871. [
  31872. {
  31873. name: "Second-stage micro",
  31874. height: math.unit(0.5, "inches")
  31875. },
  31876. {
  31877. name: "First-stage micro",
  31878. height: math.unit(6, "inches")
  31879. },
  31880. {
  31881. name: "Normal",
  31882. height: math.unit(6, "feet"),
  31883. default: true
  31884. },
  31885. {
  31886. name: "First-stage macro",
  31887. height: math.unit(72, "feet")
  31888. },
  31889. {
  31890. name: "Second-stage macro",
  31891. height: math.unit(864, "feet")
  31892. },
  31893. ]
  31894. ))
  31895. characterMakers.push(() => makeCharacter(
  31896. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31897. {
  31898. normal: {
  31899. height: math.unit(4 + 6 / 12, "feet"),
  31900. name: "Normal",
  31901. image: {
  31902. source: "./media/characters/hydra/normal.svg",
  31903. extra: 2833 / 2634,
  31904. bottom: 68 / 2901
  31905. }
  31906. },
  31907. smol: {
  31908. height: math.unit(0.705, "inches"),
  31909. name: "Smol",
  31910. image: {
  31911. source: "./media/characters/hydra/smol.svg",
  31912. extra: 2715 / 2540,
  31913. bottom: 0 / 2715
  31914. }
  31915. },
  31916. },
  31917. [
  31918. {
  31919. name: "Normal",
  31920. height: math.unit(4 + 6 / 12, "feet"),
  31921. default: true
  31922. }
  31923. ]
  31924. ))
  31925. characterMakers.push(() => makeCharacter(
  31926. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31927. {
  31928. front: {
  31929. height: math.unit(0.6, "cm"),
  31930. name: "Front",
  31931. image: {
  31932. source: "./media/characters/daz/front.svg",
  31933. extra: 1682 / 1164,
  31934. bottom: 42 / 1724
  31935. }
  31936. },
  31937. },
  31938. [
  31939. {
  31940. name: "Normal",
  31941. height: math.unit(0.6, "cm"),
  31942. default: true
  31943. },
  31944. ]
  31945. ))
  31946. characterMakers.push(() => makeCharacter(
  31947. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31948. {
  31949. front: {
  31950. height: math.unit(6, "feet"),
  31951. weight: math.unit(235, "lb"),
  31952. name: "Front",
  31953. image: {
  31954. source: "./media/characters/theo-pangolin/front.svg",
  31955. extra: 1996 / 1969,
  31956. bottom: 115 / 2111
  31957. }
  31958. },
  31959. back: {
  31960. height: math.unit(6, "feet"),
  31961. weight: math.unit(235, "lb"),
  31962. name: "Back",
  31963. image: {
  31964. source: "./media/characters/theo-pangolin/back.svg",
  31965. extra: 1979 / 1979,
  31966. bottom: 40 / 2019
  31967. }
  31968. },
  31969. feral: {
  31970. height: math.unit(2, "feet"),
  31971. weight: math.unit(30, "lb"),
  31972. name: "Feral",
  31973. image: {
  31974. source: "./media/characters/theo-pangolin/feral.svg",
  31975. extra: 803 / 791,
  31976. bottom: 181 / 984
  31977. }
  31978. },
  31979. footFive: {
  31980. height: math.unit(1.43, "feet"),
  31981. name: "Foot (Five Toes)",
  31982. image: {
  31983. source: "./media/characters/theo-pangolin/foot-five.svg"
  31984. }
  31985. },
  31986. footFour: {
  31987. height: math.unit(1.43, "feet"),
  31988. name: "Foot (Four Toes)",
  31989. image: {
  31990. source: "./media/characters/theo-pangolin/foot-four.svg"
  31991. }
  31992. },
  31993. handFour: {
  31994. height: math.unit(0.81, "feet"),
  31995. name: "Hand (Four Fingers)",
  31996. image: {
  31997. source: "./media/characters/theo-pangolin/hand-four.svg"
  31998. }
  31999. },
  32000. handThree: {
  32001. height: math.unit(0.81, "feet"),
  32002. name: "Hand (Three Fingers)",
  32003. image: {
  32004. source: "./media/characters/theo-pangolin/hand-three.svg"
  32005. }
  32006. },
  32007. headFront: {
  32008. height: math.unit(1.37, "feet"),
  32009. name: "Head (Front)",
  32010. image: {
  32011. source: "./media/characters/theo-pangolin/head-front.svg"
  32012. }
  32013. },
  32014. headSide: {
  32015. height: math.unit(1.43, "feet"),
  32016. name: "Head (Side)",
  32017. image: {
  32018. source: "./media/characters/theo-pangolin/head-side.svg"
  32019. }
  32020. },
  32021. tongue: {
  32022. height: math.unit(2.29, "feet"),
  32023. name: "Tongue",
  32024. image: {
  32025. source: "./media/characters/theo-pangolin/tongue.svg"
  32026. }
  32027. },
  32028. },
  32029. [
  32030. {
  32031. name: "Normal",
  32032. height: math.unit(6, "feet")
  32033. },
  32034. {
  32035. name: "Macro",
  32036. height: math.unit(400, "feet"),
  32037. default: true
  32038. },
  32039. ]
  32040. ))
  32041. characterMakers.push(() => makeCharacter(
  32042. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32043. {
  32044. front: {
  32045. height: math.unit(6, "inches"),
  32046. weight: math.unit(0.036, "kg"),
  32047. name: "Front",
  32048. image: {
  32049. source: "./media/characters/renée/front.svg",
  32050. extra: 900 / 886,
  32051. bottom: 8 / 908
  32052. }
  32053. },
  32054. },
  32055. [
  32056. {
  32057. name: "Nano",
  32058. height: math.unit(1, "nm")
  32059. },
  32060. {
  32061. name: "Micro",
  32062. height: math.unit(1, "mm")
  32063. },
  32064. {
  32065. name: "Normal",
  32066. height: math.unit(6, "inches")
  32067. },
  32068. {
  32069. name: "Macro",
  32070. height: math.unit(2000, "feet"),
  32071. default: true
  32072. },
  32073. {
  32074. name: "Megamacro",
  32075. height: math.unit(2, "km")
  32076. },
  32077. {
  32078. name: "Gigamacro",
  32079. height: math.unit(2000, "km")
  32080. },
  32081. {
  32082. name: "Teramacro",
  32083. height: math.unit(250000, "km")
  32084. },
  32085. ]
  32086. ))
  32087. characterMakers.push(() => makeCharacter(
  32088. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32089. {
  32090. front: {
  32091. height: math.unit(4, "meters"),
  32092. weight: math.unit(150, "kg"),
  32093. name: "Front",
  32094. image: {
  32095. source: "./media/characters/caledvwlch/front.svg",
  32096. extra: 1757/1537,
  32097. bottom: 31/1788
  32098. }
  32099. },
  32100. side: {
  32101. height: math.unit(4, "meters"),
  32102. weight: math.unit(150, "kg"),
  32103. name: "Side",
  32104. image: {
  32105. source: "./media/characters/caledvwlch/side.svg",
  32106. extra: 1605 / 1536,
  32107. bottom: 31 / 1636
  32108. }
  32109. },
  32110. back: {
  32111. height: math.unit(4, "meters"),
  32112. weight: math.unit(150, "kg"),
  32113. name: "Back",
  32114. image: {
  32115. source: "./media/characters/caledvwlch/back.svg",
  32116. extra: 1635 / 1565,
  32117. bottom: 27 / 1662
  32118. }
  32119. },
  32120. },
  32121. [
  32122. {
  32123. name: "\"Incognito\"",
  32124. height: math.unit(4, "meters")
  32125. },
  32126. {
  32127. name: "Small rampage",
  32128. height: math.unit(600, "meters")
  32129. },
  32130. {
  32131. name: "Mega",
  32132. height: math.unit(30, "km")
  32133. },
  32134. {
  32135. name: "Home-size",
  32136. height: math.unit(50, "km"),
  32137. default: true
  32138. },
  32139. {
  32140. name: "Giga",
  32141. height: math.unit(300, "km")
  32142. },
  32143. {
  32144. name: "Lounging",
  32145. height: math.unit(11000, "km")
  32146. },
  32147. {
  32148. name: "Planet snacking",
  32149. height: math.unit(2000000, "km")
  32150. },
  32151. ]
  32152. ))
  32153. characterMakers.push(() => makeCharacter(
  32154. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32155. {
  32156. front: {
  32157. height: math.unit(6, "feet"),
  32158. weight: math.unit(215, "lb"),
  32159. name: "Front",
  32160. image: {
  32161. source: "./media/characters/sapphire-svell/front.svg",
  32162. extra: 495 / 455,
  32163. bottom: 20 / 515
  32164. }
  32165. },
  32166. back: {
  32167. height: math.unit(6, "feet"),
  32168. weight: math.unit(216, "lb"),
  32169. name: "Back",
  32170. image: {
  32171. source: "./media/characters/sapphire-svell/back.svg",
  32172. extra: 497 / 477,
  32173. bottom: 7 / 504
  32174. }
  32175. },
  32176. maw: {
  32177. height: math.unit(1.57, "feet"),
  32178. name: "Maw",
  32179. image: {
  32180. source: "./media/characters/sapphire-svell/maw.svg"
  32181. }
  32182. },
  32183. foot: {
  32184. height: math.unit(1.07, "feet"),
  32185. name: "Foot",
  32186. image: {
  32187. source: "./media/characters/sapphire-svell/foot.svg"
  32188. }
  32189. },
  32190. toering: {
  32191. height: math.unit(1.7, "inch"),
  32192. name: "Toering",
  32193. image: {
  32194. source: "./media/characters/sapphire-svell/toering.svg"
  32195. }
  32196. },
  32197. },
  32198. [
  32199. {
  32200. name: "Normal",
  32201. height: math.unit(300, "feet"),
  32202. default: true
  32203. },
  32204. {
  32205. name: "Augmented",
  32206. height: math.unit(1250, "feet")
  32207. },
  32208. {
  32209. name: "Unleashed",
  32210. height: math.unit(3000, "feet")
  32211. },
  32212. ]
  32213. ))
  32214. characterMakers.push(() => makeCharacter(
  32215. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32216. {
  32217. side: {
  32218. height: math.unit(2 + 3 / 12, "feet"),
  32219. weight: math.unit(110, "lb"),
  32220. name: "Side",
  32221. image: {
  32222. source: "./media/characters/glitch-flux/side.svg",
  32223. extra: 997 / 805,
  32224. bottom: 20 / 1017
  32225. }
  32226. },
  32227. },
  32228. [
  32229. {
  32230. name: "Normal",
  32231. height: math.unit(2 + 3 / 12, "feet"),
  32232. default: true
  32233. },
  32234. ]
  32235. ))
  32236. characterMakers.push(() => makeCharacter(
  32237. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32238. {
  32239. front: {
  32240. height: math.unit(4, "meters"),
  32241. name: "Front",
  32242. image: {
  32243. source: "./media/characters/mid/front.svg",
  32244. extra: 507 / 476,
  32245. bottom: 17 / 524
  32246. }
  32247. },
  32248. back: {
  32249. height: math.unit(4, "meters"),
  32250. name: "Back",
  32251. image: {
  32252. source: "./media/characters/mid/back.svg",
  32253. extra: 519 / 487,
  32254. bottom: 7 / 526
  32255. }
  32256. },
  32257. stuck: {
  32258. height: math.unit(2.2, "meters"),
  32259. name: "Stuck",
  32260. image: {
  32261. source: "./media/characters/mid/stuck.svg",
  32262. extra: 1951 / 1869,
  32263. bottom: 88 / 2039
  32264. }
  32265. }
  32266. },
  32267. [
  32268. {
  32269. name: "Normal",
  32270. height: math.unit(4, "meters"),
  32271. default: true
  32272. },
  32273. {
  32274. name: "Big",
  32275. height: math.unit(10, "meters")
  32276. },
  32277. {
  32278. name: "Macro",
  32279. height: math.unit(800, "meters")
  32280. },
  32281. {
  32282. name: "Megamacro",
  32283. height: math.unit(100, "km")
  32284. },
  32285. {
  32286. name: "Overgrown",
  32287. height: math.unit(1, "parsec")
  32288. },
  32289. ]
  32290. ))
  32291. characterMakers.push(() => makeCharacter(
  32292. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32293. {
  32294. front: {
  32295. height: math.unit(2.5, "meters"),
  32296. weight: math.unit(225, "kg"),
  32297. name: "Front",
  32298. image: {
  32299. source: "./media/characters/iris/front.svg",
  32300. extra: 3348 / 3251,
  32301. bottom: 205 / 3553
  32302. }
  32303. },
  32304. maw: {
  32305. height: math.unit(0.56, "meter"),
  32306. name: "Maw",
  32307. image: {
  32308. source: "./media/characters/iris/maw.svg"
  32309. }
  32310. },
  32311. },
  32312. [
  32313. {
  32314. name: "Mewter cat",
  32315. height: math.unit(1.2, "meters")
  32316. },
  32317. {
  32318. name: "Normal",
  32319. height: math.unit(2.5, "meters"),
  32320. default: true
  32321. },
  32322. {
  32323. name: "Minimacro",
  32324. height: math.unit(18, "feet")
  32325. },
  32326. {
  32327. name: "Macro",
  32328. height: math.unit(140, "feet")
  32329. },
  32330. {
  32331. name: "Macro+",
  32332. height: math.unit(180, "meters")
  32333. },
  32334. {
  32335. name: "Megamacro",
  32336. height: math.unit(2746, "meters")
  32337. },
  32338. ]
  32339. ))
  32340. characterMakers.push(() => makeCharacter(
  32341. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32342. {
  32343. front: {
  32344. height: math.unit(6, "feet"),
  32345. weight: math.unit(135, "lb"),
  32346. name: "Front",
  32347. image: {
  32348. source: "./media/characters/axel/front.svg",
  32349. extra: 908 / 908,
  32350. bottom: 58 / 966
  32351. }
  32352. },
  32353. side: {
  32354. height: math.unit(6, "feet"),
  32355. weight: math.unit(135, "lb"),
  32356. name: "Side",
  32357. image: {
  32358. source: "./media/characters/axel/side.svg",
  32359. extra: 958 / 958,
  32360. bottom: 11 / 969
  32361. }
  32362. },
  32363. back: {
  32364. height: math.unit(6, "feet"),
  32365. weight: math.unit(135, "lb"),
  32366. name: "Back",
  32367. image: {
  32368. source: "./media/characters/axel/back.svg",
  32369. extra: 887 / 887,
  32370. bottom: 34 / 921
  32371. }
  32372. },
  32373. head: {
  32374. height: math.unit(1.07, "feet"),
  32375. name: "Head",
  32376. image: {
  32377. source: "./media/characters/axel/head.svg"
  32378. }
  32379. },
  32380. beak: {
  32381. height: math.unit(1.4, "feet"),
  32382. name: "Beak",
  32383. image: {
  32384. source: "./media/characters/axel/beak.svg"
  32385. }
  32386. },
  32387. beakSide: {
  32388. height: math.unit(1.4, "feet"),
  32389. name: "Beak Side",
  32390. image: {
  32391. source: "./media/characters/axel/beak-side.svg"
  32392. }
  32393. },
  32394. sheath: {
  32395. height: math.unit(0.5, "feet"),
  32396. name: "Sheath",
  32397. image: {
  32398. source: "./media/characters/axel/sheath.svg"
  32399. }
  32400. },
  32401. dick: {
  32402. height: math.unit(0.98, "feet"),
  32403. name: "Dick",
  32404. image: {
  32405. source: "./media/characters/axel/dick.svg"
  32406. }
  32407. },
  32408. },
  32409. [
  32410. {
  32411. name: "Macro",
  32412. height: math.unit(68, "meters"),
  32413. default: true
  32414. },
  32415. ]
  32416. ))
  32417. characterMakers.push(() => makeCharacter(
  32418. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32419. {
  32420. front: {
  32421. height: math.unit(3.5, "meters"),
  32422. weight: math.unit(1200, "kg"),
  32423. name: "Front",
  32424. image: {
  32425. source: "./media/characters/joanna/front.svg",
  32426. extra: 1596 / 1488,
  32427. bottom: 29 / 1625
  32428. }
  32429. },
  32430. back: {
  32431. height: math.unit(3.5, "meters"),
  32432. weight: math.unit(1200, "kg"),
  32433. name: "Back",
  32434. image: {
  32435. source: "./media/characters/joanna/back.svg",
  32436. extra: 1594 / 1495,
  32437. bottom: 26 / 1620
  32438. }
  32439. },
  32440. frontShorts: {
  32441. height: math.unit(3.5, "meters"),
  32442. weight: math.unit(1200, "kg"),
  32443. name: "Front (Shorts)",
  32444. image: {
  32445. source: "./media/characters/joanna/front-shorts.svg",
  32446. extra: 1596 / 1488,
  32447. bottom: 29 / 1625
  32448. }
  32449. },
  32450. frontBiker: {
  32451. height: math.unit(3.5, "meters"),
  32452. weight: math.unit(1200, "kg"),
  32453. name: "Front (Biker)",
  32454. image: {
  32455. source: "./media/characters/joanna/front-biker.svg",
  32456. extra: 1596 / 1488,
  32457. bottom: 29 / 1625
  32458. }
  32459. },
  32460. backBiker: {
  32461. height: math.unit(3.5, "meters"),
  32462. weight: math.unit(1200, "kg"),
  32463. name: "Back (Biker)",
  32464. image: {
  32465. source: "./media/characters/joanna/back-biker.svg",
  32466. extra: 1594 / 1495,
  32467. bottom: 88 / 1682
  32468. }
  32469. },
  32470. bikeLeft: {
  32471. height: math.unit(2.4, "meters"),
  32472. weight: math.unit(1600, "kg"),
  32473. name: "Bike (Left)",
  32474. image: {
  32475. source: "./media/characters/joanna/bike-left.svg",
  32476. extra: 720 / 720,
  32477. bottom: 8 / 728
  32478. }
  32479. },
  32480. bikeRight: {
  32481. height: math.unit(2.4, "meters"),
  32482. weight: math.unit(1600, "kg"),
  32483. name: "Bike (Right)",
  32484. image: {
  32485. source: "./media/characters/joanna/bike-right.svg",
  32486. extra: 720 / 720,
  32487. bottom: 8 / 728
  32488. }
  32489. },
  32490. },
  32491. [
  32492. {
  32493. name: "Incognito",
  32494. height: math.unit(3.5, "meters")
  32495. },
  32496. {
  32497. name: "Casual Big",
  32498. height: math.unit(200, "meters")
  32499. },
  32500. {
  32501. name: "Macro",
  32502. height: math.unit(600, "meters")
  32503. },
  32504. {
  32505. name: "Original",
  32506. height: math.unit(20, "km"),
  32507. default: true
  32508. },
  32509. {
  32510. name: "Giga",
  32511. height: math.unit(400, "km")
  32512. },
  32513. {
  32514. name: "Lounging",
  32515. height: math.unit(1500, "km")
  32516. },
  32517. {
  32518. name: "Planetary",
  32519. height: math.unit(200000, "km")
  32520. },
  32521. ]
  32522. ))
  32523. characterMakers.push(() => makeCharacter(
  32524. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32525. {
  32526. front: {
  32527. height: math.unit(6, "feet"),
  32528. weight: math.unit(150, "lb"),
  32529. name: "Front",
  32530. image: {
  32531. source: "./media/characters/hugo-sigil/front.svg",
  32532. extra: 522 / 500,
  32533. bottom: 2 / 524
  32534. }
  32535. },
  32536. back: {
  32537. height: math.unit(6, "feet"),
  32538. weight: math.unit(150, "lb"),
  32539. name: "Back",
  32540. image: {
  32541. source: "./media/characters/hugo-sigil/back.svg",
  32542. extra: 519 / 495,
  32543. bottom: 5 / 524
  32544. }
  32545. },
  32546. maw: {
  32547. height: math.unit(1.4, "feet"),
  32548. weight: math.unit(150, "lb"),
  32549. name: "Maw",
  32550. image: {
  32551. source: "./media/characters/hugo-sigil/maw.svg"
  32552. }
  32553. },
  32554. feet: {
  32555. height: math.unit(1.56, "feet"),
  32556. weight: math.unit(150, "lb"),
  32557. name: "Feet",
  32558. image: {
  32559. source: "./media/characters/hugo-sigil/feet.svg",
  32560. extra: 177 / 177,
  32561. bottom: 12 / 189
  32562. }
  32563. },
  32564. },
  32565. [
  32566. {
  32567. name: "Normal",
  32568. height: math.unit(6, "feet")
  32569. },
  32570. {
  32571. name: "Macro",
  32572. height: math.unit(200, "feet"),
  32573. default: true
  32574. },
  32575. ]
  32576. ))
  32577. characterMakers.push(() => makeCharacter(
  32578. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32579. {
  32580. front: {
  32581. height: math.unit(6, "feet"),
  32582. weight: math.unit(150, "lb"),
  32583. name: "Front",
  32584. image: {
  32585. source: "./media/characters/peri/front.svg",
  32586. extra: 2354 / 2233,
  32587. bottom: 49 / 2403
  32588. }
  32589. },
  32590. },
  32591. [
  32592. {
  32593. name: "Really Small",
  32594. height: math.unit(1, "nm")
  32595. },
  32596. {
  32597. name: "Micro",
  32598. height: math.unit(4, "inches")
  32599. },
  32600. {
  32601. name: "Normal",
  32602. height: math.unit(7, "inches"),
  32603. default: true
  32604. },
  32605. {
  32606. name: "Macro",
  32607. height: math.unit(400, "feet")
  32608. },
  32609. {
  32610. name: "Megamacro",
  32611. height: math.unit(100, "miles")
  32612. },
  32613. ]
  32614. ))
  32615. characterMakers.push(() => makeCharacter(
  32616. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32617. {
  32618. frontSlim: {
  32619. height: math.unit(7, "feet"),
  32620. name: "Front (Slim)",
  32621. image: {
  32622. source: "./media/characters/issilora/front-slim.svg",
  32623. extra: 529 / 449,
  32624. bottom: 53 / 582
  32625. }
  32626. },
  32627. sideSlim: {
  32628. height: math.unit(7, "feet"),
  32629. name: "Side (Slim)",
  32630. image: {
  32631. source: "./media/characters/issilora/side-slim.svg",
  32632. extra: 570 / 480,
  32633. bottom: 30 / 600
  32634. }
  32635. },
  32636. backSlim: {
  32637. height: math.unit(7, "feet"),
  32638. name: "Back (Slim)",
  32639. image: {
  32640. source: "./media/characters/issilora/back-slim.svg",
  32641. extra: 537 / 455,
  32642. bottom: 46 / 583
  32643. }
  32644. },
  32645. frontBuff: {
  32646. height: math.unit(7, "feet"),
  32647. name: "Front (Buff)",
  32648. image: {
  32649. source: "./media/characters/issilora/front-buff.svg",
  32650. extra: 2310 / 2035,
  32651. bottom: 335 / 2645
  32652. }
  32653. },
  32654. head: {
  32655. height: math.unit(1.94, "feet"),
  32656. name: "Head",
  32657. image: {
  32658. source: "./media/characters/issilora/head.svg"
  32659. }
  32660. },
  32661. },
  32662. [
  32663. {
  32664. name: "Minimum",
  32665. height: math.unit(7, "feet")
  32666. },
  32667. {
  32668. name: "Comfortable",
  32669. height: math.unit(17, "feet")
  32670. },
  32671. {
  32672. name: "Fun Size",
  32673. height: math.unit(47, "feet")
  32674. },
  32675. {
  32676. name: "Natural Macro",
  32677. height: math.unit(137, "feet"),
  32678. default: true
  32679. },
  32680. {
  32681. name: "Maximum Kaiju",
  32682. height: math.unit(397, "feet")
  32683. },
  32684. ]
  32685. ))
  32686. characterMakers.push(() => makeCharacter(
  32687. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32688. {
  32689. front: {
  32690. height: math.unit(50 + 9/12, "feet"),
  32691. weight: math.unit(32.8, "tons"),
  32692. name: "Front",
  32693. image: {
  32694. source: "./media/characters/irb'iiritaahn/front.svg",
  32695. extra: 1878/1826,
  32696. bottom: 326/2204
  32697. }
  32698. },
  32699. back: {
  32700. height: math.unit(50 + 9/12, "feet"),
  32701. weight: math.unit(32.8, "tons"),
  32702. name: "Back",
  32703. image: {
  32704. source: "./media/characters/irb'iiritaahn/back.svg",
  32705. extra: 2052/2018,
  32706. bottom: 152/2204
  32707. }
  32708. },
  32709. head: {
  32710. height: math.unit(12.86, "feet"),
  32711. name: "Head",
  32712. image: {
  32713. source: "./media/characters/irb'iiritaahn/head.svg"
  32714. }
  32715. },
  32716. maw: {
  32717. height: math.unit(9.66, "feet"),
  32718. name: "Maw",
  32719. image: {
  32720. source: "./media/characters/irb'iiritaahn/maw.svg"
  32721. }
  32722. },
  32723. frontDick: {
  32724. height: math.unit(8.78461, "feet"),
  32725. name: "Front Dick",
  32726. image: {
  32727. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32728. }
  32729. },
  32730. rearDick: {
  32731. height: math.unit(8.78461, "feet"),
  32732. name: "Rear Dick",
  32733. image: {
  32734. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32735. }
  32736. },
  32737. rearDickUnfolded: {
  32738. height: math.unit(8.78, "feet"),
  32739. name: "Rear Dick (Unfolded)",
  32740. image: {
  32741. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32742. }
  32743. },
  32744. wings: {
  32745. height: math.unit(43, "feet"),
  32746. name: "Wings",
  32747. image: {
  32748. source: "./media/characters/irb'iiritaahn/wings.svg"
  32749. }
  32750. },
  32751. },
  32752. [
  32753. {
  32754. name: "Macro",
  32755. height: math.unit(50 + 9/12, "feet"),
  32756. default: true
  32757. },
  32758. ]
  32759. ))
  32760. characterMakers.push(() => makeCharacter(
  32761. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32762. {
  32763. front: {
  32764. height: math.unit(205, "cm"),
  32765. weight: math.unit(102, "kg"),
  32766. name: "Front",
  32767. image: {
  32768. source: "./media/characters/irbisgreif/front.svg",
  32769. extra: 785/706,
  32770. bottom: 13/798
  32771. }
  32772. },
  32773. back: {
  32774. height: math.unit(205, "cm"),
  32775. weight: math.unit(102, "kg"),
  32776. name: "Back",
  32777. image: {
  32778. source: "./media/characters/irbisgreif/back.svg",
  32779. extra: 713/701,
  32780. bottom: 26/739
  32781. }
  32782. },
  32783. frontDressed: {
  32784. height: math.unit(216, "cm"),
  32785. weight: math.unit(102, "kg"),
  32786. name: "Front-dressed",
  32787. image: {
  32788. source: "./media/characters/irbisgreif/front-dressed.svg",
  32789. extra: 902/776,
  32790. bottom: 14/916
  32791. }
  32792. },
  32793. sideDressed: {
  32794. height: math.unit(195, "cm"),
  32795. weight: math.unit(102, "kg"),
  32796. name: "Side-dressed",
  32797. image: {
  32798. source: "./media/characters/irbisgreif/side-dressed.svg",
  32799. extra: 788/688,
  32800. bottom: 21/809
  32801. }
  32802. },
  32803. backDressed: {
  32804. height: math.unit(216, "cm"),
  32805. weight: math.unit(102, "kg"),
  32806. name: "Back-dressed",
  32807. image: {
  32808. source: "./media/characters/irbisgreif/back-dressed.svg",
  32809. extra: 901/783,
  32810. bottom: 10/911
  32811. }
  32812. },
  32813. dick: {
  32814. height: math.unit(0.49, "feet"),
  32815. name: "Dick",
  32816. image: {
  32817. source: "./media/characters/irbisgreif/dick.svg"
  32818. }
  32819. },
  32820. wingTop: {
  32821. height: math.unit(1.93 , "feet"),
  32822. name: "Wing-top",
  32823. image: {
  32824. source: "./media/characters/irbisgreif/wing-top.svg"
  32825. }
  32826. },
  32827. wingBottom: {
  32828. height: math.unit(1.93 , "feet"),
  32829. name: "Wing-bottom",
  32830. image: {
  32831. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32832. }
  32833. },
  32834. },
  32835. [
  32836. {
  32837. name: "Normal",
  32838. height: math.unit(216, "cm"),
  32839. default: true
  32840. },
  32841. ]
  32842. ))
  32843. characterMakers.push(() => makeCharacter(
  32844. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32845. {
  32846. front: {
  32847. height: math.unit(6, "feet"),
  32848. weight: math.unit(150, "lb"),
  32849. name: "Front",
  32850. image: {
  32851. source: "./media/characters/pride/front.svg",
  32852. extra: 1299/1230,
  32853. bottom: 18/1317
  32854. }
  32855. },
  32856. },
  32857. [
  32858. {
  32859. name: "Normal",
  32860. height: math.unit(7, "feet")
  32861. },
  32862. {
  32863. name: "Mini-macro",
  32864. height: math.unit(11, "feet")
  32865. },
  32866. {
  32867. name: "Macro",
  32868. height: math.unit(15, "meters"),
  32869. default: true
  32870. },
  32871. {
  32872. name: "Macro+",
  32873. height: math.unit(40, "meters")
  32874. },
  32875. ]
  32876. ))
  32877. characterMakers.push(() => makeCharacter(
  32878. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32879. {
  32880. front: {
  32881. height: math.unit(4 + 2 / 12, "feet"),
  32882. weight: math.unit(95, "lb"),
  32883. name: "Front",
  32884. image: {
  32885. source: "./media/characters/vaelophis-nyx/front.svg",
  32886. extra: 2532/2330,
  32887. bottom: 0/2532
  32888. }
  32889. },
  32890. back: {
  32891. height: math.unit(4 + 2 / 12, "feet"),
  32892. weight: math.unit(95, "lb"),
  32893. name: "Back",
  32894. image: {
  32895. source: "./media/characters/vaelophis-nyx/back.svg",
  32896. extra: 2484/2361,
  32897. bottom: 0/2484
  32898. }
  32899. },
  32900. feralSide: {
  32901. height: math.unit(2 + 1/12, "feet"),
  32902. weight: math.unit(20, "lb"),
  32903. name: "Feral (Side)",
  32904. image: {
  32905. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32906. extra: 1721/1581,
  32907. bottom: 70/1791
  32908. }
  32909. },
  32910. feralLazing: {
  32911. height: math.unit(1.08, "feet"),
  32912. weight: math.unit(20, "lb"),
  32913. name: "Feral (Lazing)",
  32914. image: {
  32915. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32916. extra: 822/822,
  32917. bottom: 248/1070
  32918. }
  32919. },
  32920. ear: {
  32921. height: math.unit(0.416, "feet"),
  32922. name: "Ear",
  32923. image: {
  32924. source: "./media/characters/vaelophis-nyx/ear.svg"
  32925. }
  32926. },
  32927. eye: {
  32928. height: math.unit(0.0748, "feet"),
  32929. name: "Eye",
  32930. image: {
  32931. source: "./media/characters/vaelophis-nyx/eye.svg"
  32932. }
  32933. },
  32934. mouth: {
  32935. height: math.unit(0.378, "feet"),
  32936. name: "Mouth",
  32937. image: {
  32938. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32939. }
  32940. },
  32941. spade: {
  32942. height: math.unit(0.55, "feet"),
  32943. name: "Spade",
  32944. image: {
  32945. source: "./media/characters/vaelophis-nyx/spade.svg"
  32946. }
  32947. },
  32948. },
  32949. [
  32950. {
  32951. name: "Normal",
  32952. height: math.unit(4 + 2/12, "feet"),
  32953. default: true
  32954. },
  32955. ]
  32956. ))
  32957. characterMakers.push(() => makeCharacter(
  32958. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32959. {
  32960. front: {
  32961. height: math.unit(7, "feet"),
  32962. weight: math.unit(231, "lb"),
  32963. name: "Front",
  32964. image: {
  32965. source: "./media/characters/flux/front.svg",
  32966. extra: 919/871,
  32967. bottom: 0/919
  32968. }
  32969. },
  32970. back: {
  32971. height: math.unit(7, "feet"),
  32972. weight: math.unit(231, "lb"),
  32973. name: "Back",
  32974. image: {
  32975. source: "./media/characters/flux/back.svg",
  32976. extra: 1040/992,
  32977. bottom: 0/1040
  32978. }
  32979. },
  32980. frontDressed: {
  32981. height: math.unit(7, "feet"),
  32982. weight: math.unit(231, "lb"),
  32983. name: "Front (Dressed)",
  32984. image: {
  32985. source: "./media/characters/flux/front-dressed.svg",
  32986. extra: 919/871,
  32987. bottom: 0/919
  32988. }
  32989. },
  32990. feralSide: {
  32991. height: math.unit(5, "feet"),
  32992. weight: math.unit(150, "lb"),
  32993. name: "Feral (Side)",
  32994. image: {
  32995. source: "./media/characters/flux/feral-side.svg",
  32996. extra: 598/528,
  32997. bottom: 28/626
  32998. }
  32999. },
  33000. head: {
  33001. height: math.unit(1.585, "feet"),
  33002. name: "Head",
  33003. image: {
  33004. source: "./media/characters/flux/head.svg"
  33005. }
  33006. },
  33007. headSide: {
  33008. height: math.unit(1.74, "feet"),
  33009. name: "Head (Side)",
  33010. image: {
  33011. source: "./media/characters/flux/head-side.svg"
  33012. }
  33013. },
  33014. headSideFire: {
  33015. height: math.unit(1.76, "feet"),
  33016. name: "Head (Side, Fire)",
  33017. image: {
  33018. source: "./media/characters/flux/head-side-fire.svg"
  33019. }
  33020. },
  33021. },
  33022. [
  33023. {
  33024. name: "Normal",
  33025. height: math.unit(7, "feet"),
  33026. default: true
  33027. },
  33028. ]
  33029. ))
  33030. characterMakers.push(() => makeCharacter(
  33031. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33032. {
  33033. front: {
  33034. height: math.unit(9, "feet"),
  33035. weight: math.unit(1012, "lb"),
  33036. name: "Front",
  33037. image: {
  33038. source: "./media/characters/ulfra-lupae/front.svg",
  33039. extra: 1083/1011,
  33040. bottom: 67/1150
  33041. }
  33042. },
  33043. },
  33044. [
  33045. {
  33046. name: "Micro",
  33047. height: math.unit(6, "inches")
  33048. },
  33049. {
  33050. name: "Socializing",
  33051. height: math.unit(6 + 5/12, "feet")
  33052. },
  33053. {
  33054. name: "Normal",
  33055. height: math.unit(9, "feet"),
  33056. default: true
  33057. },
  33058. {
  33059. name: "Macro",
  33060. height: math.unit(150, "feet")
  33061. },
  33062. ]
  33063. ))
  33064. characterMakers.push(() => makeCharacter(
  33065. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33066. {
  33067. front: {
  33068. height: math.unit(5 + 2/12, "feet"),
  33069. weight: math.unit(120, "lb"),
  33070. name: "Front",
  33071. image: {
  33072. source: "./media/characters/timber/front.svg",
  33073. extra: 2814/2705,
  33074. bottom: 181/2995
  33075. }
  33076. },
  33077. },
  33078. [
  33079. {
  33080. name: "Normal",
  33081. height: math.unit(5 + 2/12, "feet"),
  33082. default: true
  33083. },
  33084. ]
  33085. ))
  33086. characterMakers.push(() => makeCharacter(
  33087. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33088. {
  33089. front: {
  33090. height: math.unit(9, "feet"),
  33091. name: "Front",
  33092. image: {
  33093. source: "./media/characters/nicki/front.svg",
  33094. extra: 1240/990,
  33095. bottom: 45/1285
  33096. },
  33097. form: "anthro",
  33098. default: true
  33099. },
  33100. side: {
  33101. height: math.unit(9, "feet"),
  33102. name: "Side",
  33103. image: {
  33104. source: "./media/characters/nicki/side.svg",
  33105. extra: 1047/973,
  33106. bottom: 61/1108
  33107. },
  33108. form: "anthro"
  33109. },
  33110. back: {
  33111. height: math.unit(9, "feet"),
  33112. name: "Back",
  33113. image: {
  33114. source: "./media/characters/nicki/back.svg",
  33115. extra: 1006/965,
  33116. bottom: 39/1045
  33117. },
  33118. form: "anthro"
  33119. },
  33120. taur: {
  33121. height: math.unit(15, "feet"),
  33122. name: "Taur",
  33123. image: {
  33124. source: "./media/characters/nicki/taur.svg",
  33125. extra: 1592/1347,
  33126. bottom: 0/1592
  33127. },
  33128. form: "taur",
  33129. default: true
  33130. },
  33131. },
  33132. [
  33133. {
  33134. name: "Normal",
  33135. height: math.unit(9, "feet"),
  33136. form: "anthro",
  33137. default: true
  33138. },
  33139. {
  33140. name: "Normal",
  33141. height: math.unit(15, "feet"),
  33142. form: "taur",
  33143. default: true
  33144. }
  33145. ],
  33146. {
  33147. "anthro": {
  33148. name: "Anthro",
  33149. default: true
  33150. },
  33151. "taur": {
  33152. name: "Taur"
  33153. }
  33154. }
  33155. ))
  33156. characterMakers.push(() => makeCharacter(
  33157. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33158. {
  33159. front: {
  33160. height: math.unit(7 + 10/12, "feet"),
  33161. weight: math.unit(3.5, "tons"),
  33162. name: "Front",
  33163. image: {
  33164. source: "./media/characters/lee/front.svg",
  33165. extra: 1773/1615,
  33166. bottom: 86/1859
  33167. }
  33168. },
  33169. hand: {
  33170. height: math.unit(1.78, "feet"),
  33171. name: "Hand",
  33172. image: {
  33173. source: "./media/characters/lee/hand.svg"
  33174. }
  33175. },
  33176. maw: {
  33177. height: math.unit(1.18, "feet"),
  33178. name: "Maw",
  33179. image: {
  33180. source: "./media/characters/lee/maw.svg"
  33181. }
  33182. },
  33183. },
  33184. [
  33185. {
  33186. name: "Normal",
  33187. height: math.unit(7 + 10/12, "feet"),
  33188. default: true
  33189. },
  33190. ]
  33191. ))
  33192. characterMakers.push(() => makeCharacter(
  33193. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33194. {
  33195. front: {
  33196. height: math.unit(9, "feet"),
  33197. name: "Front",
  33198. image: {
  33199. source: "./media/characters/guti/front.svg",
  33200. extra: 4551/4355,
  33201. bottom: 123/4674
  33202. }
  33203. },
  33204. tongue: {
  33205. height: math.unit(1, "feet"),
  33206. name: "Tongue",
  33207. image: {
  33208. source: "./media/characters/guti/tongue.svg"
  33209. }
  33210. },
  33211. paw: {
  33212. height: math.unit(1.18, "feet"),
  33213. name: "Paw",
  33214. image: {
  33215. source: "./media/characters/guti/paw.svg"
  33216. }
  33217. },
  33218. },
  33219. [
  33220. {
  33221. name: "Normal",
  33222. height: math.unit(9, "feet"),
  33223. default: true
  33224. },
  33225. ]
  33226. ))
  33227. characterMakers.push(() => makeCharacter(
  33228. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33229. {
  33230. side: {
  33231. height: math.unit(5, "meters"),
  33232. name: "Side",
  33233. image: {
  33234. source: "./media/characters/vesper/side.svg",
  33235. extra: 1605/1518,
  33236. bottom: 0/1605
  33237. }
  33238. },
  33239. },
  33240. [
  33241. {
  33242. name: "Small",
  33243. height: math.unit(5, "meters")
  33244. },
  33245. {
  33246. name: "Sage",
  33247. height: math.unit(100, "meters"),
  33248. default: true
  33249. },
  33250. {
  33251. name: "Fun Size",
  33252. height: math.unit(600, "meters")
  33253. },
  33254. {
  33255. name: "Goddess",
  33256. height: math.unit(20000, "km")
  33257. },
  33258. {
  33259. name: "Maximum",
  33260. height: math.unit(5, "galaxies")
  33261. },
  33262. ]
  33263. ))
  33264. characterMakers.push(() => makeCharacter(
  33265. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33266. {
  33267. front: {
  33268. height: math.unit(6 + 3/12, "feet"),
  33269. weight: math.unit(190, "lb"),
  33270. name: "Front",
  33271. image: {
  33272. source: "./media/characters/gawain/front.svg",
  33273. extra: 2222/2139,
  33274. bottom: 90/2312
  33275. }
  33276. },
  33277. back: {
  33278. height: math.unit(6 + 3/12, "feet"),
  33279. weight: math.unit(190, "lb"),
  33280. name: "Back",
  33281. image: {
  33282. source: "./media/characters/gawain/back.svg",
  33283. extra: 2199/2111,
  33284. bottom: 73/2272
  33285. }
  33286. },
  33287. },
  33288. [
  33289. {
  33290. name: "Normal",
  33291. height: math.unit(6 + 3/12, "feet"),
  33292. default: true
  33293. },
  33294. ]
  33295. ))
  33296. characterMakers.push(() => makeCharacter(
  33297. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33298. {
  33299. side: {
  33300. height: math.unit(3.5, "meters"),
  33301. weight: math.unit(16000, "lb"),
  33302. name: "Side",
  33303. image: {
  33304. source: "./media/characters/dascalti/side.svg",
  33305. extra: 392/273,
  33306. bottom: 47/439
  33307. }
  33308. },
  33309. breath: {
  33310. height: math.unit(7.4, "feet"),
  33311. name: "Breath",
  33312. image: {
  33313. source: "./media/characters/dascalti/breath.svg"
  33314. }
  33315. },
  33316. fed: {
  33317. height: math.unit(3.6, "meters"),
  33318. weight: math.unit(16000, "lb"),
  33319. name: "Fed",
  33320. image: {
  33321. source: "./media/characters/dascalti/fed.svg",
  33322. extra: 1419/820,
  33323. bottom: 95/1514
  33324. }
  33325. },
  33326. },
  33327. [
  33328. {
  33329. name: "Normal",
  33330. height: math.unit(3.5, "meters"),
  33331. default: true
  33332. },
  33333. ]
  33334. ))
  33335. characterMakers.push(() => makeCharacter(
  33336. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33337. {
  33338. front: {
  33339. height: math.unit(3 + 5/12, "feet"),
  33340. name: "Front",
  33341. image: {
  33342. source: "./media/characters/mauve/front.svg",
  33343. extra: 1126/1033,
  33344. bottom: 65/1191
  33345. }
  33346. },
  33347. side: {
  33348. height: math.unit(3 + 5/12, "feet"),
  33349. name: "Side",
  33350. image: {
  33351. source: "./media/characters/mauve/side.svg",
  33352. extra: 1089/1001,
  33353. bottom: 29/1118
  33354. }
  33355. },
  33356. back: {
  33357. height: math.unit(3 + 5/12, "feet"),
  33358. name: "Back",
  33359. image: {
  33360. source: "./media/characters/mauve/back.svg",
  33361. extra: 1173/1053,
  33362. bottom: 109/1282
  33363. }
  33364. },
  33365. },
  33366. [
  33367. {
  33368. name: "Normal",
  33369. height: math.unit(3 + 5/12, "feet"),
  33370. default: true
  33371. },
  33372. ]
  33373. ))
  33374. characterMakers.push(() => makeCharacter(
  33375. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33376. {
  33377. front: {
  33378. height: math.unit(6 + 3/12, "feet"),
  33379. weight: math.unit(430, "lb"),
  33380. name: "Front",
  33381. image: {
  33382. source: "./media/characters/carlos/front.svg",
  33383. extra: 1964/1913,
  33384. bottom: 70/2034
  33385. }
  33386. },
  33387. },
  33388. [
  33389. {
  33390. name: "Normal",
  33391. height: math.unit(6 + 3/12, "feet"),
  33392. default: true
  33393. },
  33394. ]
  33395. ))
  33396. characterMakers.push(() => makeCharacter(
  33397. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33398. {
  33399. back: {
  33400. height: math.unit(5 + 10/12, "feet"),
  33401. weight: math.unit(200, "lb"),
  33402. name: "Back",
  33403. image: {
  33404. source: "./media/characters/jax/back.svg",
  33405. extra: 764/739,
  33406. bottom: 25/789
  33407. }
  33408. },
  33409. },
  33410. [
  33411. {
  33412. name: "Normal",
  33413. height: math.unit(5 + 10/12, "feet"),
  33414. default: true
  33415. },
  33416. ]
  33417. ))
  33418. characterMakers.push(() => makeCharacter(
  33419. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33420. {
  33421. front: {
  33422. height: math.unit(8, "feet"),
  33423. weight: math.unit(250, "lb"),
  33424. name: "Front",
  33425. image: {
  33426. source: "./media/characters/eikthynir/front.svg",
  33427. extra: 1332/1166,
  33428. bottom: 82/1414
  33429. }
  33430. },
  33431. back: {
  33432. height: math.unit(8, "feet"),
  33433. weight: math.unit(250, "lb"),
  33434. name: "Back",
  33435. image: {
  33436. source: "./media/characters/eikthynir/back.svg",
  33437. extra: 1342/1190,
  33438. bottom: 19/1361
  33439. }
  33440. },
  33441. dick: {
  33442. height: math.unit(2.35, "feet"),
  33443. name: "Dick",
  33444. image: {
  33445. source: "./media/characters/eikthynir/dick.svg"
  33446. }
  33447. },
  33448. },
  33449. [
  33450. {
  33451. name: "Normal",
  33452. height: math.unit(8, "feet"),
  33453. default: true
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(99, "meters"),
  33462. weight: math.unit(13000, "tons"),
  33463. name: "Front",
  33464. image: {
  33465. source: "./media/characters/zlmos/front.svg",
  33466. extra: 2202/1992,
  33467. bottom: 315/2517
  33468. }
  33469. },
  33470. },
  33471. [
  33472. {
  33473. name: "Macro",
  33474. height: math.unit(99, "meters"),
  33475. default: true
  33476. },
  33477. ]
  33478. ))
  33479. characterMakers.push(() => makeCharacter(
  33480. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33481. {
  33482. front: {
  33483. height: math.unit(6 + 5/12, "feet"),
  33484. name: "Front",
  33485. image: {
  33486. source: "./media/characters/purri/front.svg",
  33487. extra: 1698/1610,
  33488. bottom: 32/1730
  33489. }
  33490. },
  33491. frontAlt: {
  33492. height: math.unit(6 + 5/12, "feet"),
  33493. name: "Front (Alt)",
  33494. image: {
  33495. source: "./media/characters/purri/front-alt.svg",
  33496. extra: 450/420,
  33497. bottom: 26/476
  33498. }
  33499. },
  33500. boots: {
  33501. height: math.unit(5.5, "feet"),
  33502. name: "Boots",
  33503. image: {
  33504. source: "./media/characters/purri/boots.svg",
  33505. extra: 905/853,
  33506. bottom: 18/923
  33507. }
  33508. },
  33509. lying: {
  33510. height: math.unit(2, "feet"),
  33511. name: "Lying",
  33512. image: {
  33513. source: "./media/characters/purri/lying.svg",
  33514. extra: 940/843,
  33515. bottom: 146/1086
  33516. }
  33517. },
  33518. devious: {
  33519. height: math.unit(1.77, "feet"),
  33520. name: "Devious",
  33521. image: {
  33522. source: "./media/characters/purri/devious.svg",
  33523. extra: 1440/1155,
  33524. bottom: 147/1587
  33525. }
  33526. },
  33527. bean: {
  33528. height: math.unit(1.94, "feet"),
  33529. name: "Bean",
  33530. image: {
  33531. source: "./media/characters/purri/bean.svg"
  33532. }
  33533. },
  33534. },
  33535. [
  33536. {
  33537. name: "Micro",
  33538. height: math.unit(1, "mm")
  33539. },
  33540. {
  33541. name: "Normal",
  33542. height: math.unit(6 + 5/12, "feet"),
  33543. default: true
  33544. },
  33545. {
  33546. name: "Macro :3c",
  33547. height: math.unit(2, "miles")
  33548. },
  33549. ]
  33550. ))
  33551. characterMakers.push(() => makeCharacter(
  33552. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33553. {
  33554. front: {
  33555. height: math.unit(6 + 2/12, "feet"),
  33556. weight: math.unit(250, "lb"),
  33557. name: "Front",
  33558. image: {
  33559. source: "./media/characters/moonlight/front.svg",
  33560. extra: 1044/908,
  33561. bottom: 56/1100
  33562. }
  33563. },
  33564. feral: {
  33565. height: math.unit(3 + 1/12, "feet"),
  33566. weight: math.unit(50, "kg"),
  33567. name: "Feral",
  33568. image: {
  33569. source: "./media/characters/moonlight/feral.svg",
  33570. extra: 3705/2791,
  33571. bottom: 145/3850
  33572. }
  33573. },
  33574. paw: {
  33575. height: math.unit(1, "feet"),
  33576. name: "Paw",
  33577. image: {
  33578. source: "./media/characters/moonlight/paw.svg"
  33579. }
  33580. },
  33581. paws: {
  33582. height: math.unit(0.98, "feet"),
  33583. name: "Paws",
  33584. image: {
  33585. source: "./media/characters/moonlight/paws.svg",
  33586. extra: 939/939,
  33587. bottom: 50/989
  33588. }
  33589. },
  33590. mouth: {
  33591. height: math.unit(0.48, "feet"),
  33592. name: "Mouth",
  33593. image: {
  33594. source: "./media/characters/moonlight/mouth.svg"
  33595. }
  33596. },
  33597. dick: {
  33598. height: math.unit(1.46, "feet"),
  33599. name: "Dick",
  33600. image: {
  33601. source: "./media/characters/moonlight/dick.svg"
  33602. }
  33603. },
  33604. },
  33605. [
  33606. {
  33607. name: "Normal",
  33608. height: math.unit(6 + 2/12, "feet"),
  33609. default: true
  33610. },
  33611. {
  33612. name: "Macro",
  33613. height: math.unit(300, "feet")
  33614. },
  33615. {
  33616. name: "Macro+",
  33617. height: math.unit(1, "mile")
  33618. },
  33619. {
  33620. name: "Mt. Moon",
  33621. height: math.unit(5, "miles")
  33622. },
  33623. {
  33624. name: "Megamacro",
  33625. height: math.unit(15, "miles")
  33626. },
  33627. ]
  33628. ))
  33629. characterMakers.push(() => makeCharacter(
  33630. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33631. {
  33632. back: {
  33633. height: math.unit(6, "feet"),
  33634. weight: math.unit(150, "lb"),
  33635. name: "Back",
  33636. image: {
  33637. source: "./media/characters/sylen/back.svg",
  33638. extra: 1335/1273,
  33639. bottom: 107/1442
  33640. }
  33641. },
  33642. },
  33643. [
  33644. {
  33645. name: "Normal",
  33646. height: math.unit(5 + 5/12, "feet")
  33647. },
  33648. {
  33649. name: "Megamacro",
  33650. height: math.unit(3, "miles"),
  33651. default: true
  33652. },
  33653. ]
  33654. ))
  33655. characterMakers.push(() => makeCharacter(
  33656. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33657. {
  33658. front: {
  33659. height: math.unit(6, "feet"),
  33660. weight: math.unit(190, "lb"),
  33661. name: "Front",
  33662. image: {
  33663. source: "./media/characters/huttser/front.svg",
  33664. extra: 1152/1058,
  33665. bottom: 23/1175
  33666. }
  33667. },
  33668. side: {
  33669. height: math.unit(6, "feet"),
  33670. weight: math.unit(190, "lb"),
  33671. name: "Side",
  33672. image: {
  33673. source: "./media/characters/huttser/side.svg",
  33674. extra: 1174/1065,
  33675. bottom: 18/1192
  33676. }
  33677. },
  33678. back: {
  33679. height: math.unit(6, "feet"),
  33680. weight: math.unit(190, "lb"),
  33681. name: "Back",
  33682. image: {
  33683. source: "./media/characters/huttser/back.svg",
  33684. extra: 1158/1056,
  33685. bottom: 12/1170
  33686. }
  33687. },
  33688. },
  33689. [
  33690. ]
  33691. ))
  33692. characterMakers.push(() => makeCharacter(
  33693. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33694. {
  33695. side: {
  33696. height: math.unit(12 + 9/12, "feet"),
  33697. weight: math.unit(15000, "lb"),
  33698. name: "Side",
  33699. image: {
  33700. source: "./media/characters/faan/side.svg",
  33701. extra: 2747/2697,
  33702. bottom: 0/2747
  33703. }
  33704. },
  33705. front: {
  33706. height: math.unit(12 + 9/12, "feet"),
  33707. weight: math.unit(15000, "lb"),
  33708. name: "Front",
  33709. image: {
  33710. source: "./media/characters/faan/front.svg",
  33711. extra: 607/571,
  33712. bottom: 24/631
  33713. }
  33714. },
  33715. head: {
  33716. height: math.unit(2.85, "feet"),
  33717. name: "Head",
  33718. image: {
  33719. source: "./media/characters/faan/head.svg"
  33720. }
  33721. },
  33722. headAlt: {
  33723. height: math.unit(3.13, "feet"),
  33724. name: "Head-alt",
  33725. image: {
  33726. source: "./media/characters/faan/head-alt.svg"
  33727. }
  33728. },
  33729. },
  33730. [
  33731. {
  33732. name: "Normal",
  33733. height: math.unit(12 + 9/12, "feet"),
  33734. default: true
  33735. },
  33736. ]
  33737. ))
  33738. characterMakers.push(() => makeCharacter(
  33739. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33740. {
  33741. front: {
  33742. height: math.unit(6, "feet"),
  33743. weight: math.unit(300, "lb"),
  33744. name: "Front",
  33745. image: {
  33746. source: "./media/characters/tanio/front.svg",
  33747. extra: 711/673,
  33748. bottom: 25/736
  33749. }
  33750. },
  33751. },
  33752. [
  33753. {
  33754. name: "Normal",
  33755. height: math.unit(6, "feet"),
  33756. default: true
  33757. },
  33758. ]
  33759. ))
  33760. characterMakers.push(() => makeCharacter(
  33761. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33762. {
  33763. front: {
  33764. height: math.unit(3, "inches"),
  33765. name: "Front",
  33766. image: {
  33767. source: "./media/characters/noboru/front.svg",
  33768. extra: 1039/932,
  33769. bottom: 18/1057
  33770. }
  33771. },
  33772. },
  33773. [
  33774. {
  33775. name: "Micro",
  33776. height: math.unit(3, "inches"),
  33777. default: true
  33778. },
  33779. ]
  33780. ))
  33781. characterMakers.push(() => makeCharacter(
  33782. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33783. {
  33784. front: {
  33785. height: math.unit(1.85, "meters"),
  33786. weight: math.unit(80, "kg"),
  33787. name: "Front",
  33788. image: {
  33789. source: "./media/characters/daniel-barrett/front.svg",
  33790. extra: 355/337,
  33791. bottom: 9/364
  33792. }
  33793. },
  33794. },
  33795. [
  33796. {
  33797. name: "Pico",
  33798. height: math.unit(0.0433, "mm")
  33799. },
  33800. {
  33801. name: "Nano",
  33802. height: math.unit(1.5, "mm")
  33803. },
  33804. {
  33805. name: "Micro",
  33806. height: math.unit(5.3, "cm"),
  33807. default: true
  33808. },
  33809. {
  33810. name: "Normal",
  33811. height: math.unit(1.85, "meters")
  33812. },
  33813. {
  33814. name: "Macro",
  33815. height: math.unit(64.7, "meters")
  33816. },
  33817. {
  33818. name: "Megamacro",
  33819. height: math.unit(2.26, "km")
  33820. },
  33821. {
  33822. name: "Gigamacro",
  33823. height: math.unit(79, "km")
  33824. },
  33825. {
  33826. name: "Teramacro",
  33827. height: math.unit(2765, "km")
  33828. },
  33829. {
  33830. name: "Petamacro",
  33831. height: math.unit(96678, "km")
  33832. },
  33833. ]
  33834. ))
  33835. characterMakers.push(() => makeCharacter(
  33836. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33837. {
  33838. front: {
  33839. height: math.unit(30, "meters"),
  33840. weight: math.unit(400, "tons"),
  33841. name: "Front",
  33842. image: {
  33843. source: "./media/characters/zeel/front.svg",
  33844. extra: 2599/2599,
  33845. bottom: 226/2825
  33846. }
  33847. },
  33848. },
  33849. [
  33850. {
  33851. name: "Macro",
  33852. height: math.unit(30, "meters"),
  33853. default: true
  33854. },
  33855. ]
  33856. ))
  33857. characterMakers.push(() => makeCharacter(
  33858. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33859. {
  33860. front: {
  33861. height: math.unit(6 + 7/12, "feet"),
  33862. weight: math.unit(210, "lb"),
  33863. name: "Front",
  33864. image: {
  33865. source: "./media/characters/tarn/front.svg",
  33866. extra: 3517/3220,
  33867. bottom: 91/3608
  33868. }
  33869. },
  33870. back: {
  33871. height: math.unit(6 + 7/12, "feet"),
  33872. weight: math.unit(210, "lb"),
  33873. name: "Back",
  33874. image: {
  33875. source: "./media/characters/tarn/back.svg",
  33876. extra: 3566/3241,
  33877. bottom: 34/3600
  33878. }
  33879. },
  33880. dick: {
  33881. height: math.unit(1.65, "feet"),
  33882. name: "Dick",
  33883. image: {
  33884. source: "./media/characters/tarn/dick.svg"
  33885. }
  33886. },
  33887. paw: {
  33888. height: math.unit(1.80, "feet"),
  33889. name: "Paw",
  33890. image: {
  33891. source: "./media/characters/tarn/paw.svg"
  33892. }
  33893. },
  33894. tongue: {
  33895. height: math.unit(0.97, "feet"),
  33896. name: "Tongue",
  33897. image: {
  33898. source: "./media/characters/tarn/tongue.svg"
  33899. }
  33900. },
  33901. },
  33902. [
  33903. {
  33904. name: "Micro",
  33905. height: math.unit(4, "inches")
  33906. },
  33907. {
  33908. name: "Normal",
  33909. height: math.unit(6 + 7/12, "feet"),
  33910. default: true
  33911. },
  33912. {
  33913. name: "Macro",
  33914. height: math.unit(300, "feet")
  33915. },
  33916. ]
  33917. ))
  33918. characterMakers.push(() => makeCharacter(
  33919. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33920. {
  33921. front: {
  33922. height: math.unit(5 + 7/12, "feet"),
  33923. weight: math.unit(80, "kg"),
  33924. name: "Front",
  33925. image: {
  33926. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33927. extra: 3023/2865,
  33928. bottom: 33/3056
  33929. }
  33930. },
  33931. back: {
  33932. height: math.unit(5 + 7/12, "feet"),
  33933. weight: math.unit(80, "kg"),
  33934. name: "Back",
  33935. image: {
  33936. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33937. extra: 3020/2886,
  33938. bottom: 30/3050
  33939. }
  33940. },
  33941. dick: {
  33942. height: math.unit(0.98, "feet"),
  33943. name: "Dick",
  33944. image: {
  33945. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33946. }
  33947. },
  33948. anatomy: {
  33949. height: math.unit(2.86, "feet"),
  33950. name: "Anatomy",
  33951. image: {
  33952. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33953. }
  33954. },
  33955. },
  33956. [
  33957. {
  33958. name: "Really Small",
  33959. height: math.unit(2, "inches")
  33960. },
  33961. {
  33962. name: "Micro",
  33963. height: math.unit(5.583, "inches")
  33964. },
  33965. {
  33966. name: "Normal",
  33967. height: math.unit(5 + 7/12, "feet"),
  33968. default: true
  33969. },
  33970. {
  33971. name: "Macro",
  33972. height: math.unit(67, "feet")
  33973. },
  33974. {
  33975. name: "Megamacro",
  33976. height: math.unit(134, "feet")
  33977. },
  33978. ]
  33979. ))
  33980. characterMakers.push(() => makeCharacter(
  33981. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33982. {
  33983. front: {
  33984. height: math.unit(9, "feet"),
  33985. weight: math.unit(120, "lb"),
  33986. name: "Front",
  33987. image: {
  33988. source: "./media/characters/sally/front.svg",
  33989. extra: 1506/1349,
  33990. bottom: 66/1572
  33991. }
  33992. },
  33993. },
  33994. [
  33995. {
  33996. name: "Normal",
  33997. height: math.unit(9, "feet"),
  33998. default: true
  33999. },
  34000. ]
  34001. ))
  34002. characterMakers.push(() => makeCharacter(
  34003. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34004. {
  34005. front: {
  34006. height: math.unit(8, "feet"),
  34007. weight: math.unit(900, "lb"),
  34008. name: "Front",
  34009. image: {
  34010. source: "./media/characters/owen/front.svg",
  34011. extra: 1761/1657,
  34012. bottom: 74/1835
  34013. }
  34014. },
  34015. side: {
  34016. height: math.unit(8, "feet"),
  34017. weight: math.unit(900, "lb"),
  34018. name: "Side",
  34019. image: {
  34020. source: "./media/characters/owen/side.svg",
  34021. extra: 1797/1734,
  34022. bottom: 30/1827
  34023. }
  34024. },
  34025. back: {
  34026. height: math.unit(8, "feet"),
  34027. weight: math.unit(900, "lb"),
  34028. name: "Back",
  34029. image: {
  34030. source: "./media/characters/owen/back.svg",
  34031. extra: 1796/1706,
  34032. bottom: 59/1855
  34033. }
  34034. },
  34035. maw: {
  34036. height: math.unit(1.76, "feet"),
  34037. name: "Maw",
  34038. image: {
  34039. source: "./media/characters/owen/maw.svg"
  34040. }
  34041. },
  34042. },
  34043. [
  34044. {
  34045. name: "Normal",
  34046. height: math.unit(8, "feet"),
  34047. default: true
  34048. },
  34049. ]
  34050. ))
  34051. characterMakers.push(() => makeCharacter(
  34052. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34053. {
  34054. front: {
  34055. height: math.unit(4, "feet"),
  34056. weight: math.unit(400, "lb"),
  34057. name: "Front",
  34058. image: {
  34059. source: "./media/characters/ryth/front.svg",
  34060. extra: 1920/1748,
  34061. bottom: 42/1962
  34062. }
  34063. },
  34064. back: {
  34065. height: math.unit(4, "feet"),
  34066. weight: math.unit(400, "lb"),
  34067. name: "Back",
  34068. image: {
  34069. source: "./media/characters/ryth/back.svg",
  34070. extra: 1897/1690,
  34071. bottom: 89/1986
  34072. }
  34073. },
  34074. mouth: {
  34075. height: math.unit(1.39, "feet"),
  34076. name: "Mouth",
  34077. image: {
  34078. source: "./media/characters/ryth/mouth.svg"
  34079. }
  34080. },
  34081. tailmaw: {
  34082. height: math.unit(1.23, "feet"),
  34083. name: "Tailmaw",
  34084. image: {
  34085. source: "./media/characters/ryth/tailmaw.svg"
  34086. }
  34087. },
  34088. goia: {
  34089. height: math.unit(4, "meters"),
  34090. weight: math.unit(10800, "lb"),
  34091. name: "Goia",
  34092. image: {
  34093. source: "./media/characters/ryth/goia.svg",
  34094. extra: 745/640,
  34095. bottom: 107/852
  34096. }
  34097. },
  34098. goiaFront: {
  34099. height: math.unit(4, "meters"),
  34100. weight: math.unit(10800, "lb"),
  34101. name: "Goia (Front)",
  34102. image: {
  34103. source: "./media/characters/ryth/goia-front.svg",
  34104. extra: 750/586,
  34105. bottom: 114/864
  34106. }
  34107. },
  34108. goiaMaw: {
  34109. height: math.unit(5.55, "feet"),
  34110. name: "Goia Maw",
  34111. image: {
  34112. source: "./media/characters/ryth/goia-maw.svg"
  34113. }
  34114. },
  34115. goiaForepaw: {
  34116. height: math.unit(3.5, "feet"),
  34117. name: "Goia Forepaw",
  34118. image: {
  34119. source: "./media/characters/ryth/goia-forepaw.svg"
  34120. }
  34121. },
  34122. goiaHindpaw: {
  34123. height: math.unit(5.55, "feet"),
  34124. name: "Goia Hindpaw",
  34125. image: {
  34126. source: "./media/characters/ryth/goia-hindpaw.svg"
  34127. }
  34128. },
  34129. },
  34130. [
  34131. {
  34132. name: "Normal",
  34133. height: math.unit(4, "feet"),
  34134. default: true
  34135. },
  34136. ]
  34137. ))
  34138. characterMakers.push(() => makeCharacter(
  34139. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34140. {
  34141. front: {
  34142. height: math.unit(7, "feet"),
  34143. weight: math.unit(180, "lb"),
  34144. name: "Front",
  34145. image: {
  34146. source: "./media/characters/necrolance/front.svg",
  34147. extra: 1062/947,
  34148. bottom: 41/1103
  34149. }
  34150. },
  34151. back: {
  34152. height: math.unit(7, "feet"),
  34153. weight: math.unit(180, "lb"),
  34154. name: "Back",
  34155. image: {
  34156. source: "./media/characters/necrolance/back.svg",
  34157. extra: 1045/984,
  34158. bottom: 14/1059
  34159. }
  34160. },
  34161. wing: {
  34162. height: math.unit(2.67, "feet"),
  34163. name: "Wing",
  34164. image: {
  34165. source: "./media/characters/necrolance/wing.svg"
  34166. }
  34167. },
  34168. },
  34169. [
  34170. {
  34171. name: "Normal",
  34172. height: math.unit(7, "feet"),
  34173. default: true
  34174. },
  34175. ]
  34176. ))
  34177. characterMakers.push(() => makeCharacter(
  34178. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34179. {
  34180. front: {
  34181. height: math.unit(76, "meters"),
  34182. weight: math.unit(30000, "tons"),
  34183. name: "Front",
  34184. image: {
  34185. source: "./media/characters/tyler/front.svg",
  34186. extra: 1640/1640,
  34187. bottom: 114/1754
  34188. }
  34189. },
  34190. },
  34191. [
  34192. {
  34193. name: "Macro",
  34194. height: math.unit(76, "meters"),
  34195. default: true
  34196. },
  34197. ]
  34198. ))
  34199. characterMakers.push(() => makeCharacter(
  34200. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34201. {
  34202. front: {
  34203. height: math.unit(4 + 11/12, "feet"),
  34204. weight: math.unit(132, "lb"),
  34205. name: "Front",
  34206. image: {
  34207. source: "./media/characters/icey/front.svg",
  34208. extra: 2750/2550,
  34209. bottom: 33/2783
  34210. }
  34211. },
  34212. back: {
  34213. height: math.unit(4 + 11/12, "feet"),
  34214. weight: math.unit(132, "lb"),
  34215. name: "Back",
  34216. image: {
  34217. source: "./media/characters/icey/back.svg",
  34218. extra: 2624/2481,
  34219. bottom: 35/2659
  34220. }
  34221. },
  34222. },
  34223. [
  34224. {
  34225. name: "Normal",
  34226. height: math.unit(4 + 11/12, "feet"),
  34227. default: true
  34228. },
  34229. ]
  34230. ))
  34231. characterMakers.push(() => makeCharacter(
  34232. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34233. {
  34234. front: {
  34235. height: math.unit(100, "feet"),
  34236. weight: math.unit(0, "lb"),
  34237. name: "Front",
  34238. image: {
  34239. source: "./media/characters/smile/front.svg",
  34240. extra: 2983/2912,
  34241. bottom: 162/3145
  34242. }
  34243. },
  34244. back: {
  34245. height: math.unit(100, "feet"),
  34246. weight: math.unit(0, "lb"),
  34247. name: "Back",
  34248. image: {
  34249. source: "./media/characters/smile/back.svg",
  34250. extra: 3143/3031,
  34251. bottom: 91/3234
  34252. }
  34253. },
  34254. head: {
  34255. height: math.unit(26.3, "feet"),
  34256. weight: math.unit(0, "lb"),
  34257. name: "Head",
  34258. image: {
  34259. source: "./media/characters/smile/head.svg"
  34260. }
  34261. },
  34262. collar: {
  34263. height: math.unit(5.3, "feet"),
  34264. weight: math.unit(0, "lb"),
  34265. name: "Collar",
  34266. image: {
  34267. source: "./media/characters/smile/collar.svg"
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "Macro",
  34274. height: math.unit(100, "feet"),
  34275. default: true
  34276. },
  34277. ]
  34278. ))
  34279. characterMakers.push(() => makeCharacter(
  34280. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34281. {
  34282. dragon: {
  34283. height: math.unit(26, "feet"),
  34284. weight: math.unit(36, "tons"),
  34285. name: "Dragon",
  34286. image: {
  34287. source: "./media/characters/arimphae/dragon.svg",
  34288. extra: 1574/983,
  34289. bottom: 357/1931
  34290. }
  34291. },
  34292. drake: {
  34293. height: math.unit(9, "feet"),
  34294. weight: math.unit(1.5, "tons"),
  34295. name: "Drake",
  34296. image: {
  34297. source: "./media/characters/arimphae/drake.svg",
  34298. extra: 1120/925,
  34299. bottom: 435/1555
  34300. }
  34301. },
  34302. },
  34303. [
  34304. {
  34305. name: "Small",
  34306. height: math.unit(26*5/9, "feet")
  34307. },
  34308. {
  34309. name: "Normal",
  34310. height: math.unit(26, "feet"),
  34311. default: true
  34312. },
  34313. ]
  34314. ))
  34315. characterMakers.push(() => makeCharacter(
  34316. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34317. {
  34318. front: {
  34319. height: math.unit(8 + 9/12, "feet"),
  34320. name: "Front",
  34321. image: {
  34322. source: "./media/characters/xander/front.svg",
  34323. extra: 1237/974,
  34324. bottom: 94/1331
  34325. }
  34326. },
  34327. },
  34328. [
  34329. {
  34330. name: "Normal",
  34331. height: math.unit(8 + 9/12, "feet"),
  34332. default: true
  34333. },
  34334. {
  34335. name: "Gaze Grabber",
  34336. height: math.unit(13 + 8/12, "feet")
  34337. },
  34338. {
  34339. name: "Jaw Dropper",
  34340. height: math.unit(27, "feet")
  34341. },
  34342. {
  34343. name: "Show Stopper",
  34344. height: math.unit(136, "feet")
  34345. },
  34346. {
  34347. name: "Superstar",
  34348. height: math.unit(1.9e6, "miles")
  34349. },
  34350. ]
  34351. ))
  34352. characterMakers.push(() => makeCharacter(
  34353. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34354. {
  34355. side: {
  34356. height: math.unit(2100, "feet"),
  34357. name: "Side",
  34358. image: {
  34359. source: "./media/characters/osiris/side.svg",
  34360. extra: 1105/939,
  34361. bottom: 167/1272
  34362. }
  34363. },
  34364. },
  34365. [
  34366. {
  34367. name: "Macro",
  34368. height: math.unit(2100, "feet"),
  34369. default: true
  34370. },
  34371. ]
  34372. ))
  34373. characterMakers.push(() => makeCharacter(
  34374. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34375. {
  34376. front: {
  34377. height: math.unit(6 + 8/12, "feet"),
  34378. weight: math.unit(225, "lb"),
  34379. name: "Front",
  34380. image: {
  34381. source: "./media/characters/rhys-londe/front.svg",
  34382. extra: 2258/2141,
  34383. bottom: 188/2446
  34384. }
  34385. },
  34386. back: {
  34387. height: math.unit(6 + 8/12, "feet"),
  34388. weight: math.unit(225, "lb"),
  34389. name: "Back",
  34390. image: {
  34391. source: "./media/characters/rhys-londe/back.svg",
  34392. extra: 2237/2137,
  34393. bottom: 63/2300
  34394. }
  34395. },
  34396. frontNsfw: {
  34397. height: math.unit(6 + 8/12, "feet"),
  34398. weight: math.unit(225, "lb"),
  34399. name: "Front (NSFW)",
  34400. image: {
  34401. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34402. extra: 2258/2141,
  34403. bottom: 188/2446
  34404. }
  34405. },
  34406. backNsfw: {
  34407. height: math.unit(6 + 8/12, "feet"),
  34408. weight: math.unit(225, "lb"),
  34409. name: "Back (NSFW)",
  34410. image: {
  34411. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34412. extra: 2237/2137,
  34413. bottom: 63/2300
  34414. }
  34415. },
  34416. dick: {
  34417. height: math.unit(30, "inches"),
  34418. name: "Dick",
  34419. image: {
  34420. source: "./media/characters/rhys-londe/dick.svg"
  34421. }
  34422. },
  34423. maw: {
  34424. height: math.unit(1.6, "feet"),
  34425. name: "Maw",
  34426. image: {
  34427. source: "./media/characters/rhys-londe/maw.svg"
  34428. }
  34429. },
  34430. },
  34431. [
  34432. {
  34433. name: "Normal",
  34434. height: math.unit(6 + 8/12, "feet"),
  34435. default: true
  34436. },
  34437. ]
  34438. ))
  34439. characterMakers.push(() => makeCharacter(
  34440. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34441. {
  34442. front: {
  34443. height: math.unit(3 + 10/12, "feet"),
  34444. weight: math.unit(90, "lb"),
  34445. name: "Front",
  34446. image: {
  34447. source: "./media/characters/taivas-ensim/front.svg",
  34448. extra: 1327/1216,
  34449. bottom: 96/1423
  34450. }
  34451. },
  34452. back: {
  34453. height: math.unit(3 + 10/12, "feet"),
  34454. weight: math.unit(90, "lb"),
  34455. name: "Back",
  34456. image: {
  34457. source: "./media/characters/taivas-ensim/back.svg",
  34458. extra: 1355/1247,
  34459. bottom: 11/1366
  34460. }
  34461. },
  34462. frontNsfw: {
  34463. height: math.unit(3 + 10/12, "feet"),
  34464. weight: math.unit(90, "lb"),
  34465. name: "Front (NSFW)",
  34466. image: {
  34467. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34468. extra: 1327/1216,
  34469. bottom: 96/1423
  34470. }
  34471. },
  34472. backNsfw: {
  34473. height: math.unit(3 + 10/12, "feet"),
  34474. weight: math.unit(90, "lb"),
  34475. name: "Back (NSFW)",
  34476. image: {
  34477. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34478. extra: 1355/1247,
  34479. bottom: 11/1366
  34480. }
  34481. },
  34482. },
  34483. [
  34484. {
  34485. name: "Normal",
  34486. height: math.unit(3 + 10/12, "feet"),
  34487. default: true
  34488. },
  34489. ]
  34490. ))
  34491. characterMakers.push(() => makeCharacter(
  34492. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34493. {
  34494. front: {
  34495. height: math.unit(9 + 6/12, "feet"),
  34496. weight: math.unit(940, "lb"),
  34497. name: "Front",
  34498. image: {
  34499. source: "./media/characters/byliss/front.svg",
  34500. extra: 1327/1290,
  34501. bottom: 82/1409
  34502. }
  34503. },
  34504. back: {
  34505. height: math.unit(9 + 6/12, "feet"),
  34506. weight: math.unit(940, "lb"),
  34507. name: "Back",
  34508. image: {
  34509. source: "./media/characters/byliss/back.svg",
  34510. extra: 1376/1349,
  34511. bottom: 9/1385
  34512. }
  34513. },
  34514. frontNsfw: {
  34515. height: math.unit(9 + 6/12, "feet"),
  34516. weight: math.unit(940, "lb"),
  34517. name: "Front (NSFW)",
  34518. image: {
  34519. source: "./media/characters/byliss/front-nsfw.svg",
  34520. extra: 1327/1290,
  34521. bottom: 82/1409
  34522. }
  34523. },
  34524. backNsfw: {
  34525. height: math.unit(9 + 6/12, "feet"),
  34526. weight: math.unit(940, "lb"),
  34527. name: "Back (NSFW)",
  34528. image: {
  34529. source: "./media/characters/byliss/back-nsfw.svg",
  34530. extra: 1376/1349,
  34531. bottom: 9/1385
  34532. }
  34533. },
  34534. },
  34535. [
  34536. {
  34537. name: "Normal",
  34538. height: math.unit(9 + 6/12, "feet"),
  34539. default: true
  34540. },
  34541. ]
  34542. ))
  34543. characterMakers.push(() => makeCharacter(
  34544. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34545. {
  34546. front: {
  34547. height: math.unit(5 + 2/12, "feet"),
  34548. weight: math.unit(200, "lb"),
  34549. name: "Front",
  34550. image: {
  34551. source: "./media/characters/noraly/front.svg",
  34552. extra: 4985/4773,
  34553. bottom: 150/5135
  34554. }
  34555. },
  34556. full: {
  34557. height: math.unit(5 + 2/12, "feet"),
  34558. weight: math.unit(164, "lb"),
  34559. name: "Full",
  34560. image: {
  34561. source: "./media/characters/noraly/full.svg",
  34562. extra: 1114/1059,
  34563. bottom: 35/1149
  34564. }
  34565. },
  34566. fuller: {
  34567. height: math.unit(5 + 2/12, "feet"),
  34568. weight: math.unit(230, "lb"),
  34569. name: "Fuller",
  34570. image: {
  34571. source: "./media/characters/noraly/fuller.svg",
  34572. extra: 1114/1059,
  34573. bottom: 35/1149
  34574. }
  34575. },
  34576. fullest: {
  34577. height: math.unit(5 + 2/12, "feet"),
  34578. weight: math.unit(300, "lb"),
  34579. name: "Fullest",
  34580. image: {
  34581. source: "./media/characters/noraly/fullest.svg",
  34582. extra: 1114/1059,
  34583. bottom: 35/1149
  34584. }
  34585. },
  34586. },
  34587. [
  34588. {
  34589. name: "Normal",
  34590. height: math.unit(5 + 2/12, "feet"),
  34591. default: true
  34592. },
  34593. ]
  34594. ))
  34595. characterMakers.push(() => makeCharacter(
  34596. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34597. {
  34598. front: {
  34599. height: math.unit(5 + 2/12, "feet"),
  34600. weight: math.unit(210, "lb"),
  34601. name: "Front",
  34602. image: {
  34603. source: "./media/characters/pera/front.svg",
  34604. extra: 1560/1531,
  34605. bottom: 165/1725
  34606. }
  34607. },
  34608. back: {
  34609. height: math.unit(5 + 2/12, "feet"),
  34610. weight: math.unit(210, "lb"),
  34611. name: "Back",
  34612. image: {
  34613. source: "./media/characters/pera/back.svg",
  34614. extra: 1523/1493,
  34615. bottom: 152/1675
  34616. }
  34617. },
  34618. dick: {
  34619. height: math.unit(2.4, "feet"),
  34620. name: "Dick",
  34621. image: {
  34622. source: "./media/characters/pera/dick.svg"
  34623. }
  34624. },
  34625. },
  34626. [
  34627. {
  34628. name: "Normal",
  34629. height: math.unit(5 + 2/12, "feet"),
  34630. default: true
  34631. },
  34632. ]
  34633. ))
  34634. characterMakers.push(() => makeCharacter(
  34635. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34636. {
  34637. front: {
  34638. height: math.unit(12, "feet"),
  34639. weight: math.unit(3200, "lb"),
  34640. name: "Front",
  34641. image: {
  34642. source: "./media/characters/julian/front.svg",
  34643. extra: 2962/2701,
  34644. bottom: 184/3146
  34645. }
  34646. },
  34647. maw: {
  34648. height: math.unit(5.35, "feet"),
  34649. name: "Maw",
  34650. image: {
  34651. source: "./media/characters/julian/maw.svg"
  34652. }
  34653. },
  34654. paw: {
  34655. height: math.unit(3.07, "feet"),
  34656. name: "Paw",
  34657. image: {
  34658. source: "./media/characters/julian/paw.svg"
  34659. }
  34660. },
  34661. },
  34662. [
  34663. {
  34664. name: "Default",
  34665. height: math.unit(12, "feet"),
  34666. default: true
  34667. },
  34668. {
  34669. name: "Big",
  34670. height: math.unit(50, "feet")
  34671. },
  34672. {
  34673. name: "Really Big",
  34674. height: math.unit(1, "mile")
  34675. },
  34676. {
  34677. name: "Extremely Big",
  34678. height: math.unit(100, "miles")
  34679. },
  34680. {
  34681. name: "Planet Hugger",
  34682. height: math.unit(200, "megameters")
  34683. },
  34684. {
  34685. name: "Unreasonably Big",
  34686. height: math.unit(1e300, "meters")
  34687. },
  34688. ]
  34689. ))
  34690. characterMakers.push(() => makeCharacter(
  34691. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34692. {
  34693. solgooleo: {
  34694. height: math.unit(4, "meters"),
  34695. weight: math.unit(6000*1.5, "kg"),
  34696. volume: math.unit(6000, "liters"),
  34697. name: "Solgooleo",
  34698. image: {
  34699. source: "./media/characters/pi/solgooleo.svg",
  34700. extra: 388/331,
  34701. bottom: 29/417
  34702. }
  34703. },
  34704. },
  34705. [
  34706. {
  34707. name: "Normal",
  34708. height: math.unit(4, "meters"),
  34709. default: true
  34710. },
  34711. ]
  34712. ))
  34713. characterMakers.push(() => makeCharacter(
  34714. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34715. {
  34716. front: {
  34717. height: math.unit(8, "feet"),
  34718. weight: math.unit(4, "tons"),
  34719. name: "Front",
  34720. image: {
  34721. source: "./media/characters/shaun/front.svg",
  34722. extra: 503/495,
  34723. bottom: 20/523
  34724. }
  34725. },
  34726. back: {
  34727. height: math.unit(8, "feet"),
  34728. weight: math.unit(4, "tons"),
  34729. name: "Back",
  34730. image: {
  34731. source: "./media/characters/shaun/back.svg",
  34732. extra: 487/480,
  34733. bottom: 20/507
  34734. }
  34735. },
  34736. },
  34737. [
  34738. {
  34739. name: "Lorg",
  34740. height: math.unit(8, "feet"),
  34741. default: true
  34742. },
  34743. ]
  34744. ))
  34745. characterMakers.push(() => makeCharacter(
  34746. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34747. {
  34748. frontAnthro: {
  34749. height: math.unit(7, "feet"),
  34750. name: "Front",
  34751. image: {
  34752. source: "./media/characters/sini/front-anthro.svg",
  34753. extra: 726/678,
  34754. bottom: 35/761
  34755. },
  34756. form: "anthro",
  34757. default: true
  34758. },
  34759. backAnthro: {
  34760. height: math.unit(7, "feet"),
  34761. name: "Back",
  34762. image: {
  34763. source: "./media/characters/sini/back-anthro.svg",
  34764. extra: 743/701,
  34765. bottom: 12/755
  34766. },
  34767. form: "anthro",
  34768. },
  34769. frontAnthroNsfw: {
  34770. height: math.unit(7, "feet"),
  34771. name: "Front (NSFW)",
  34772. image: {
  34773. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34774. extra: 726/678,
  34775. bottom: 35/761
  34776. },
  34777. form: "anthro"
  34778. },
  34779. backAnthroNsfw: {
  34780. height: math.unit(7, "feet"),
  34781. name: "Back (NSFW)",
  34782. image: {
  34783. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34784. extra: 743/701,
  34785. bottom: 12/755
  34786. },
  34787. form: "anthro",
  34788. },
  34789. mawAnthro: {
  34790. height: math.unit(2.14, "feet"),
  34791. name: "Maw",
  34792. image: {
  34793. source: "./media/characters/sini/maw-anthro.svg"
  34794. },
  34795. form: "anthro"
  34796. },
  34797. dick: {
  34798. height: math.unit(1.45, "feet"),
  34799. name: "Dick",
  34800. image: {
  34801. source: "./media/characters/sini/dick-anthro.svg"
  34802. },
  34803. form: "anthro"
  34804. },
  34805. feral: {
  34806. height: math.unit(16, "feet"),
  34807. name: "Feral",
  34808. image: {
  34809. source: "./media/characters/sini/feral.svg",
  34810. extra: 814/605,
  34811. bottom: 11/825
  34812. },
  34813. form: "feral",
  34814. default: true
  34815. },
  34816. feralNsfw: {
  34817. height: math.unit(16, "feet"),
  34818. name: "Feral (NSFW)",
  34819. image: {
  34820. source: "./media/characters/sini/feral-nsfw.svg",
  34821. extra: 814/605,
  34822. bottom: 11/825
  34823. },
  34824. form: "feral"
  34825. },
  34826. mawFeral: {
  34827. height: math.unit(5.66, "feet"),
  34828. name: "Maw",
  34829. image: {
  34830. source: "./media/characters/sini/maw-feral.svg"
  34831. },
  34832. form: "feral",
  34833. },
  34834. pawFeral: {
  34835. height: math.unit(5.17, "feet"),
  34836. name: "Paw",
  34837. image: {
  34838. source: "./media/characters/sini/paw-feral.svg"
  34839. },
  34840. form: "feral",
  34841. },
  34842. rumpFeral: {
  34843. height: math.unit(13.11, "feet"),
  34844. name: "Rump",
  34845. image: {
  34846. source: "./media/characters/sini/rump-feral.svg"
  34847. },
  34848. form: "feral",
  34849. },
  34850. dickFeral: {
  34851. height: math.unit(1, "feet"),
  34852. name: "Dick",
  34853. image: {
  34854. source: "./media/characters/sini/dick-feral.svg"
  34855. },
  34856. form: "feral",
  34857. },
  34858. eyeFeral: {
  34859. height: math.unit(1.23, "feet"),
  34860. name: "Eye",
  34861. image: {
  34862. source: "./media/characters/sini/eye-feral.svg"
  34863. },
  34864. form: "feral",
  34865. },
  34866. },
  34867. [
  34868. {
  34869. name: "Normal",
  34870. height: math.unit(7, "feet"),
  34871. default: true,
  34872. form: "anthro"
  34873. },
  34874. {
  34875. name: "Normal",
  34876. height: math.unit(16, "feet"),
  34877. default: true,
  34878. form: "feral"
  34879. },
  34880. ],
  34881. {
  34882. "anthro": {
  34883. name: "Anthro",
  34884. default: true
  34885. },
  34886. "feral": {
  34887. name: "Feral",
  34888. }
  34889. }
  34890. ))
  34891. characterMakers.push(() => makeCharacter(
  34892. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34893. {
  34894. side: {
  34895. height: math.unit(47.2, "meters"),
  34896. weight: math.unit(10000, "tons"),
  34897. name: "Side",
  34898. image: {
  34899. source: "./media/characters/raylldo/side.svg",
  34900. extra: 2363/642,
  34901. bottom: 221/2584
  34902. }
  34903. },
  34904. top: {
  34905. height: math.unit(240, "meters"),
  34906. weight: math.unit(10000, "tons"),
  34907. name: "Top",
  34908. image: {
  34909. source: "./media/characters/raylldo/top.svg"
  34910. }
  34911. },
  34912. bottom: {
  34913. height: math.unit(240, "meters"),
  34914. weight: math.unit(10000, "tons"),
  34915. name: "Bottom",
  34916. image: {
  34917. source: "./media/characters/raylldo/bottom.svg"
  34918. }
  34919. },
  34920. head: {
  34921. height: math.unit(38.6, "meters"),
  34922. name: "Head",
  34923. image: {
  34924. source: "./media/characters/raylldo/head.svg",
  34925. extra: 1335/1112,
  34926. bottom: 0/1335
  34927. }
  34928. },
  34929. maw: {
  34930. height: math.unit(16.37, "meters"),
  34931. name: "Maw",
  34932. image: {
  34933. source: "./media/characters/raylldo/maw.svg",
  34934. extra: 883/660,
  34935. bottom: 0/883
  34936. },
  34937. extraAttributes: {
  34938. preyCapacity: {
  34939. name: "Capacity",
  34940. power: 3,
  34941. type: "volume",
  34942. base: math.unit(1000, "people")
  34943. },
  34944. tongueSize: {
  34945. name: "Tongue Size",
  34946. power: 2,
  34947. type: "area",
  34948. base: math.unit(21, "m^2")
  34949. }
  34950. }
  34951. },
  34952. forepaw: {
  34953. height: math.unit(18, "meters"),
  34954. name: "Forepaw",
  34955. image: {
  34956. source: "./media/characters/raylldo/forepaw.svg"
  34957. }
  34958. },
  34959. hindpaw: {
  34960. height: math.unit(23, "meters"),
  34961. name: "Hindpaw",
  34962. image: {
  34963. source: "./media/characters/raylldo/hindpaw.svg"
  34964. }
  34965. },
  34966. genitals: {
  34967. height: math.unit(42, "meters"),
  34968. name: "Genitals",
  34969. image: {
  34970. source: "./media/characters/raylldo/genitals.svg"
  34971. }
  34972. },
  34973. },
  34974. [
  34975. {
  34976. name: "Normal",
  34977. height: math.unit(47.2, "meters"),
  34978. default: true
  34979. },
  34980. ]
  34981. ))
  34982. characterMakers.push(() => makeCharacter(
  34983. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34984. {
  34985. anthroFront: {
  34986. height: math.unit(9, "feet"),
  34987. weight: math.unit(600, "lb"),
  34988. name: "Anthro (Front)",
  34989. image: {
  34990. source: "./media/characters/glint/anthro-front.svg",
  34991. extra: 1097/1018,
  34992. bottom: 28/1125
  34993. }
  34994. },
  34995. anthroBack: {
  34996. height: math.unit(9, "feet"),
  34997. weight: math.unit(600, "lb"),
  34998. name: "Anthro (Back)",
  34999. image: {
  35000. source: "./media/characters/glint/anthro-back.svg",
  35001. extra: 1154/997,
  35002. bottom: 36/1190
  35003. }
  35004. },
  35005. feral: {
  35006. height: math.unit(11, "feet"),
  35007. weight: math.unit(50000, "lb"),
  35008. name: "Feral",
  35009. image: {
  35010. source: "./media/characters/glint/feral.svg",
  35011. extra: 3035/1585,
  35012. bottom: 1169/4204
  35013. }
  35014. },
  35015. dickAnthro: {
  35016. height: math.unit(0.7, "meters"),
  35017. name: "Dick (Anthro)",
  35018. image: {
  35019. source: "./media/characters/glint/dick-anthro.svg"
  35020. }
  35021. },
  35022. dickFeral: {
  35023. height: math.unit(2.65, "meters"),
  35024. name: "Dick (Feral)",
  35025. image: {
  35026. source: "./media/characters/glint/dick-feral.svg"
  35027. }
  35028. },
  35029. slitHidden: {
  35030. height: math.unit(5.85, "meters"),
  35031. name: "Slit (Hidden)",
  35032. image: {
  35033. source: "./media/characters/glint/slit-hidden.svg"
  35034. }
  35035. },
  35036. slitErect: {
  35037. height: math.unit(5.85, "meters"),
  35038. name: "Slit (Erect)",
  35039. image: {
  35040. source: "./media/characters/glint/slit-erect.svg"
  35041. }
  35042. },
  35043. mawAnthro: {
  35044. height: math.unit(0.63, "meters"),
  35045. name: "Maw (Anthro)",
  35046. image: {
  35047. source: "./media/characters/glint/maw.svg"
  35048. }
  35049. },
  35050. mawFeral: {
  35051. height: math.unit(2.89, "meters"),
  35052. name: "Maw (Feral)",
  35053. image: {
  35054. source: "./media/characters/glint/maw.svg"
  35055. }
  35056. },
  35057. },
  35058. [
  35059. {
  35060. name: "Normal",
  35061. height: math.unit(9, "feet"),
  35062. default: true
  35063. },
  35064. ]
  35065. ))
  35066. characterMakers.push(() => makeCharacter(
  35067. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35068. {
  35069. side: {
  35070. height: math.unit(15, "feet"),
  35071. weight: math.unit(5000, "kg"),
  35072. name: "Side",
  35073. image: {
  35074. source: "./media/characters/kairne/side.svg",
  35075. extra: 979/811,
  35076. bottom: 13/992
  35077. }
  35078. },
  35079. front: {
  35080. height: math.unit(15, "feet"),
  35081. weight: math.unit(5000, "kg"),
  35082. name: "Front",
  35083. image: {
  35084. source: "./media/characters/kairne/front.svg",
  35085. extra: 908/814,
  35086. bottom: 26/934
  35087. }
  35088. },
  35089. sideNsfw: {
  35090. height: math.unit(15, "feet"),
  35091. weight: math.unit(5000, "kg"),
  35092. name: "Side (NSFW)",
  35093. image: {
  35094. source: "./media/characters/kairne/side-nsfw.svg",
  35095. extra: 979/811,
  35096. bottom: 13/992
  35097. }
  35098. },
  35099. frontNsfw: {
  35100. height: math.unit(15, "feet"),
  35101. weight: math.unit(5000, "kg"),
  35102. name: "Front (NSFW)",
  35103. image: {
  35104. source: "./media/characters/kairne/front-nsfw.svg",
  35105. extra: 908/814,
  35106. bottom: 26/934
  35107. }
  35108. },
  35109. dickCaged: {
  35110. height: math.unit(0.65, "meters"),
  35111. name: "Dick-caged",
  35112. image: {
  35113. source: "./media/characters/kairne/dick-caged.svg"
  35114. }
  35115. },
  35116. dick: {
  35117. height: math.unit(0.79, "meters"),
  35118. name: "Dick",
  35119. image: {
  35120. source: "./media/characters/kairne/dick.svg"
  35121. }
  35122. },
  35123. genitals: {
  35124. height: math.unit(1.29, "meters"),
  35125. name: "Genitals",
  35126. image: {
  35127. source: "./media/characters/kairne/genitals.svg"
  35128. }
  35129. },
  35130. maw: {
  35131. height: math.unit(1.73, "meters"),
  35132. name: "Maw",
  35133. image: {
  35134. source: "./media/characters/kairne/maw.svg"
  35135. }
  35136. },
  35137. },
  35138. [
  35139. {
  35140. name: "Normal",
  35141. height: math.unit(15, "feet"),
  35142. default: true
  35143. },
  35144. ]
  35145. ))
  35146. characterMakers.push(() => makeCharacter(
  35147. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35148. {
  35149. front: {
  35150. height: math.unit(5 + 8/12, "feet"),
  35151. weight: math.unit(139, "lb"),
  35152. name: "Front",
  35153. image: {
  35154. source: "./media/characters/biscuit-jackal/front.svg",
  35155. extra: 2106/1961,
  35156. bottom: 58/2164
  35157. }
  35158. },
  35159. back: {
  35160. height: math.unit(5 + 8/12, "feet"),
  35161. weight: math.unit(139, "lb"),
  35162. name: "Back",
  35163. image: {
  35164. source: "./media/characters/biscuit-jackal/back.svg",
  35165. extra: 2132/1976,
  35166. bottom: 57/2189
  35167. }
  35168. },
  35169. werejackal: {
  35170. height: math.unit(6 + 3/12, "feet"),
  35171. weight: math.unit(188, "lb"),
  35172. name: "Werejackal",
  35173. image: {
  35174. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35175. extra: 2373/2178,
  35176. bottom: 53/2426
  35177. }
  35178. },
  35179. },
  35180. [
  35181. {
  35182. name: "Normal",
  35183. height: math.unit(5 + 8/12, "feet"),
  35184. default: true
  35185. },
  35186. ]
  35187. ))
  35188. characterMakers.push(() => makeCharacter(
  35189. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35190. {
  35191. front: {
  35192. height: math.unit(140, "cm"),
  35193. weight: math.unit(45, "kg"),
  35194. name: "Front",
  35195. image: {
  35196. source: "./media/characters/tayra-white/front.svg",
  35197. extra: 2229/2192,
  35198. bottom: 75/2304
  35199. }
  35200. },
  35201. },
  35202. [
  35203. {
  35204. name: "Normal",
  35205. height: math.unit(140, "cm"),
  35206. default: true
  35207. },
  35208. ]
  35209. ))
  35210. characterMakers.push(() => makeCharacter(
  35211. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35212. {
  35213. front: {
  35214. height: math.unit(4 + 5/12, "feet"),
  35215. name: "Front",
  35216. image: {
  35217. source: "./media/characters/scoop/front.svg",
  35218. extra: 1257/1136,
  35219. bottom: 69/1326
  35220. }
  35221. },
  35222. back: {
  35223. height: math.unit(4 + 5/12, "feet"),
  35224. name: "Back",
  35225. image: {
  35226. source: "./media/characters/scoop/back.svg",
  35227. extra: 1321/1152,
  35228. bottom: 32/1353
  35229. }
  35230. },
  35231. maw: {
  35232. height: math.unit(0.68, "feet"),
  35233. name: "Maw",
  35234. image: {
  35235. source: "./media/characters/scoop/maw.svg"
  35236. }
  35237. },
  35238. },
  35239. [
  35240. {
  35241. name: "Really Small",
  35242. height: math.unit(1, "mm")
  35243. },
  35244. {
  35245. name: "Micro",
  35246. height: math.unit(1, "inch")
  35247. },
  35248. {
  35249. name: "Normal",
  35250. height: math.unit(4 + 5/12, "feet"),
  35251. default: true
  35252. },
  35253. {
  35254. name: "Macro",
  35255. height: math.unit(200, "feet")
  35256. },
  35257. {
  35258. name: "Megamacro",
  35259. height: math.unit(3240, "feet")
  35260. },
  35261. {
  35262. name: "Teramacro",
  35263. height: math.unit(2500, "miles")
  35264. },
  35265. ]
  35266. ))
  35267. characterMakers.push(() => makeCharacter(
  35268. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35269. {
  35270. front: {
  35271. height: math.unit(15 + 7/12, "feet"),
  35272. weight: math.unit(1150, "tons"),
  35273. name: "Front",
  35274. image: {
  35275. source: "./media/characters/saphinara/front.svg",
  35276. extra: 1837/1643,
  35277. bottom: 84/1921
  35278. },
  35279. form: "normal",
  35280. default: true
  35281. },
  35282. side: {
  35283. height: math.unit(15 + 7/12, "feet"),
  35284. weight: math.unit(1150, "tons"),
  35285. name: "Side",
  35286. image: {
  35287. source: "./media/characters/saphinara/side.svg",
  35288. extra: 605/547,
  35289. bottom: 6/611
  35290. },
  35291. form: "normal"
  35292. },
  35293. back: {
  35294. height: math.unit(15 + 7/12, "feet"),
  35295. weight: math.unit(1150, "tons"),
  35296. name: "Back",
  35297. image: {
  35298. source: "./media/characters/saphinara/back.svg",
  35299. extra: 591/531,
  35300. bottom: 13/604
  35301. },
  35302. form: "normal"
  35303. },
  35304. frontTail: {
  35305. height: math.unit(15 + 7/12, "feet"),
  35306. weight: math.unit(1150, "tons"),
  35307. name: "Front (Full Tail)",
  35308. image: {
  35309. source: "./media/characters/saphinara/front-tail.svg",
  35310. extra: 2256/1630,
  35311. bottom: 261/2517
  35312. },
  35313. form: "normal"
  35314. },
  35315. insides: {
  35316. height: math.unit(11.92, "feet"),
  35317. name: "Insides",
  35318. image: {
  35319. source: "./media/characters/saphinara/insides.svg"
  35320. },
  35321. form: "normal"
  35322. },
  35323. head: {
  35324. height: math.unit(4.17, "feet"),
  35325. name: "Head",
  35326. image: {
  35327. source: "./media/characters/saphinara/head.svg"
  35328. },
  35329. form: "normal"
  35330. },
  35331. tongue: {
  35332. height: math.unit(4.60, "feet"),
  35333. name: "Tongue",
  35334. image: {
  35335. source: "./media/characters/saphinara/tongue.svg"
  35336. },
  35337. form: "normal"
  35338. },
  35339. headEnraged: {
  35340. height: math.unit(5.55, "feet"),
  35341. name: "Head (Enraged)",
  35342. image: {
  35343. source: "./media/characters/saphinara/head-enraged.svg"
  35344. },
  35345. form: "normal"
  35346. },
  35347. wings: {
  35348. height: math.unit(11.95, "feet"),
  35349. name: "Wings",
  35350. image: {
  35351. source: "./media/characters/saphinara/wings.svg"
  35352. },
  35353. form: "normal"
  35354. },
  35355. feathers: {
  35356. height: math.unit(8.92, "feet"),
  35357. name: "Feathers",
  35358. image: {
  35359. source: "./media/characters/saphinara/feathers.svg"
  35360. },
  35361. form: "normal"
  35362. },
  35363. shackles: {
  35364. height: math.unit(2, "feet"),
  35365. name: "Shackles",
  35366. image: {
  35367. source: "./media/characters/saphinara/shackles.svg"
  35368. },
  35369. form: "normal"
  35370. },
  35371. eyes: {
  35372. height: math.unit(1.331, "feet"),
  35373. name: "Eyes",
  35374. image: {
  35375. source: "./media/characters/saphinara/eyes.svg"
  35376. },
  35377. form: "normal"
  35378. },
  35379. eyesEnraged: {
  35380. height: math.unit(1.331, "feet"),
  35381. name: "Eyes (Enraged)",
  35382. image: {
  35383. source: "./media/characters/saphinara/eyes-enraged.svg"
  35384. },
  35385. form: "normal"
  35386. },
  35387. trueFormSide: {
  35388. height: math.unit(200, "feet"),
  35389. weight: math.unit(1e7, "tons"),
  35390. name: "Side",
  35391. image: {
  35392. source: "./media/characters/saphinara/true-form-side.svg",
  35393. extra: 1399/770,
  35394. bottom: 97/1496
  35395. },
  35396. form: "true-form",
  35397. default: true
  35398. },
  35399. trueFormMaw: {
  35400. height: math.unit(71.5, "feet"),
  35401. name: "Maw",
  35402. image: {
  35403. source: "./media/characters/saphinara/true-form-maw.svg",
  35404. extra: 2302/1453,
  35405. bottom: 0/2302
  35406. },
  35407. form: "true-form"
  35408. },
  35409. meowberusSide: {
  35410. height: math.unit(75, "feet"),
  35411. weight: math.unit(180000, "kg"),
  35412. preyCapacity: math.unit(50000, "people"),
  35413. name: "Side",
  35414. image: {
  35415. source: "./media/characters/saphinara/meowberus-side.svg",
  35416. extra: 1400/711,
  35417. bottom: 126/1526
  35418. },
  35419. form: "meowberus",
  35420. extraAttributes: {
  35421. "pawArea": {
  35422. name: "Paw Size",
  35423. power: 2,
  35424. type: "area",
  35425. base: math.unit(35, "m^2")
  35426. }
  35427. }
  35428. },
  35429. },
  35430. [
  35431. {
  35432. name: "Normal",
  35433. height: math.unit(15 + 7/12, "feet"),
  35434. default: true,
  35435. form: "normal"
  35436. },
  35437. {
  35438. name: "Angry",
  35439. height: math.unit(30 + 6/12, "feet"),
  35440. form: "normal"
  35441. },
  35442. {
  35443. name: "Enraged",
  35444. height: math.unit(102 + 1/12, "feet"),
  35445. form: "normal"
  35446. },
  35447. {
  35448. name: "True",
  35449. height: math.unit(200, "feet"),
  35450. default: true,
  35451. form: "true-form"
  35452. },
  35453. {
  35454. name: "Normal",
  35455. height: math.unit(75, "feet"),
  35456. default: true,
  35457. form: "meowberus"
  35458. },
  35459. ],
  35460. {
  35461. "normal": {
  35462. name: "Normal",
  35463. default: true
  35464. },
  35465. "true-form": {
  35466. name: "True Form"
  35467. },
  35468. "meowberus": {
  35469. name: "Meowberus",
  35470. },
  35471. }
  35472. ))
  35473. characterMakers.push(() => makeCharacter(
  35474. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35475. {
  35476. front: {
  35477. height: math.unit(6 + 8/12, "feet"),
  35478. weight: math.unit(300, "lb"),
  35479. name: "Front",
  35480. image: {
  35481. source: "./media/characters/jrain/front.svg",
  35482. extra: 3039/2865,
  35483. bottom: 399/3438
  35484. }
  35485. },
  35486. back: {
  35487. height: math.unit(6 + 8/12, "feet"),
  35488. weight: math.unit(300, "lb"),
  35489. name: "Back",
  35490. image: {
  35491. source: "./media/characters/jrain/back.svg",
  35492. extra: 3089/2938,
  35493. bottom: 172/3261
  35494. }
  35495. },
  35496. head: {
  35497. height: math.unit(2.14, "feet"),
  35498. name: "Head",
  35499. image: {
  35500. source: "./media/characters/jrain/head.svg"
  35501. }
  35502. },
  35503. maw: {
  35504. height: math.unit(1.77, "feet"),
  35505. name: "Maw",
  35506. image: {
  35507. source: "./media/characters/jrain/maw.svg"
  35508. }
  35509. },
  35510. leftHand: {
  35511. height: math.unit(1.1, "feet"),
  35512. name: "Left Hand",
  35513. image: {
  35514. source: "./media/characters/jrain/left-hand.svg"
  35515. }
  35516. },
  35517. rightHand: {
  35518. height: math.unit(1.1, "feet"),
  35519. name: "Right Hand",
  35520. image: {
  35521. source: "./media/characters/jrain/right-hand.svg"
  35522. }
  35523. },
  35524. eye: {
  35525. height: math.unit(0.35, "feet"),
  35526. name: "Eye",
  35527. image: {
  35528. source: "./media/characters/jrain/eye.svg"
  35529. }
  35530. },
  35531. },
  35532. [
  35533. {
  35534. name: "Normal",
  35535. height: math.unit(6 + 8/12, "feet"),
  35536. default: true
  35537. },
  35538. {
  35539. name: "Casually Large",
  35540. height: math.unit(25, "feet")
  35541. },
  35542. {
  35543. name: "Giant",
  35544. height: math.unit(100, "feet")
  35545. },
  35546. {
  35547. name: "Kaiju",
  35548. height: math.unit(300, "feet")
  35549. },
  35550. ]
  35551. ))
  35552. characterMakers.push(() => makeCharacter(
  35553. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35554. {
  35555. dragon: {
  35556. height: math.unit(5, "meters"),
  35557. name: "Dragon",
  35558. image: {
  35559. source: "./media/characters/sabrina/dragon.svg",
  35560. extra: 3670 / 2365,
  35561. bottom: 333 / 4003
  35562. }
  35563. },
  35564. gryphon: {
  35565. height: math.unit(3, "meters"),
  35566. name: "Gryphon",
  35567. image: {
  35568. source: "./media/characters/sabrina/gryphon.svg",
  35569. extra: 1576 / 945,
  35570. bottom: 71 / 1647
  35571. }
  35572. },
  35573. snake: {
  35574. height: math.unit(12, "meters"),
  35575. name: "Snake",
  35576. image: {
  35577. source: "./media/characters/sabrina/snake.svg",
  35578. extra: 1758 / 1320,
  35579. bottom: 186 / 1944
  35580. }
  35581. },
  35582. collar: {
  35583. height: math.unit(1.86, "meters"),
  35584. name: "Collar",
  35585. image: {
  35586. source: "./media/characters/sabrina/collar.svg"
  35587. }
  35588. },
  35589. eye: {
  35590. height: math.unit(0.53, "meters"),
  35591. name: "Eye",
  35592. image: {
  35593. source: "./media/characters/sabrina/eye.svg"
  35594. }
  35595. },
  35596. foot: {
  35597. height: math.unit(1.86, "meters"),
  35598. name: "Foot",
  35599. image: {
  35600. source: "./media/characters/sabrina/foot.svg"
  35601. }
  35602. },
  35603. hand: {
  35604. height: math.unit(1.32, "meters"),
  35605. name: "Hand",
  35606. image: {
  35607. source: "./media/characters/sabrina/hand.svg"
  35608. }
  35609. },
  35610. head: {
  35611. height: math.unit(2.44, "meters"),
  35612. name: "Head",
  35613. image: {
  35614. source: "./media/characters/sabrina/head.svg"
  35615. }
  35616. },
  35617. headAngry: {
  35618. height: math.unit(2.44, "meters"),
  35619. name: "Head (Angry))",
  35620. image: {
  35621. source: "./media/characters/sabrina/head-angry.svg"
  35622. }
  35623. },
  35624. maw: {
  35625. height: math.unit(1.65, "meters"),
  35626. name: "Maw",
  35627. image: {
  35628. source: "./media/characters/sabrina/maw.svg"
  35629. }
  35630. },
  35631. spikes: {
  35632. height: math.unit(1.69, "meters"),
  35633. name: "Spikes",
  35634. image: {
  35635. source: "./media/characters/sabrina/spikes.svg"
  35636. }
  35637. },
  35638. stomach: {
  35639. height: math.unit(1.15, "meters"),
  35640. name: "Stomach",
  35641. image: {
  35642. source: "./media/characters/sabrina/stomach.svg"
  35643. }
  35644. },
  35645. tongue: {
  35646. height: math.unit(1.27, "meters"),
  35647. name: "Tongue",
  35648. image: {
  35649. source: "./media/characters/sabrina/tongue.svg"
  35650. }
  35651. },
  35652. wingDorsal: {
  35653. height: math.unit(4.85, "meters"),
  35654. name: "Wing (Dorsal)",
  35655. image: {
  35656. source: "./media/characters/sabrina/wing-dorsal.svg"
  35657. }
  35658. },
  35659. wingVentral: {
  35660. height: math.unit(4.85, "meters"),
  35661. name: "Wing (Ventral)",
  35662. image: {
  35663. source: "./media/characters/sabrina/wing-ventral.svg"
  35664. }
  35665. },
  35666. },
  35667. [
  35668. {
  35669. name: "Normal",
  35670. height: math.unit(5, "meters"),
  35671. default: true
  35672. },
  35673. ]
  35674. ))
  35675. characterMakers.push(() => makeCharacter(
  35676. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35677. {
  35678. frontMaid: {
  35679. height: math.unit(5 + 5/12, "feet"),
  35680. weight: math.unit(130, "lb"),
  35681. name: "Front (Maid)",
  35682. image: {
  35683. source: "./media/characters/midnight-tales/front-maid.svg",
  35684. extra: 489/454,
  35685. bottom: 61/550
  35686. }
  35687. },
  35688. frontFormal: {
  35689. height: math.unit(5 + 5/12, "feet"),
  35690. weight: math.unit(130, "lb"),
  35691. name: "Front (Formal)",
  35692. image: {
  35693. source: "./media/characters/midnight-tales/front-formal.svg",
  35694. extra: 489/454,
  35695. bottom: 61/550
  35696. }
  35697. },
  35698. back: {
  35699. height: math.unit(5 + 5/12, "feet"),
  35700. weight: math.unit(130, "lb"),
  35701. name: "Back",
  35702. image: {
  35703. source: "./media/characters/midnight-tales/back.svg",
  35704. extra: 498/456,
  35705. bottom: 33/531
  35706. }
  35707. },
  35708. frontBeast: {
  35709. height: math.unit(40, "feet"),
  35710. weight: math.unit(64000, "lb"),
  35711. name: "Front (Beast)",
  35712. image: {
  35713. source: "./media/characters/midnight-tales/front-beast.svg",
  35714. extra: 927/860,
  35715. bottom: 53/980
  35716. }
  35717. },
  35718. backBeast: {
  35719. height: math.unit(40, "feet"),
  35720. weight: math.unit(64000, "lb"),
  35721. name: "Back (Beast)",
  35722. image: {
  35723. source: "./media/characters/midnight-tales/back-beast.svg",
  35724. extra: 929/855,
  35725. bottom: 16/945
  35726. }
  35727. },
  35728. footBeast: {
  35729. height: math.unit(6.7, "feet"),
  35730. name: "Foot (Beast)",
  35731. image: {
  35732. source: "./media/characters/midnight-tales/foot-beast.svg"
  35733. }
  35734. },
  35735. headBeast: {
  35736. height: math.unit(8, "feet"),
  35737. name: "Head (Beast)",
  35738. image: {
  35739. source: "./media/characters/midnight-tales/head-beast.svg"
  35740. }
  35741. },
  35742. },
  35743. [
  35744. {
  35745. name: "Normal",
  35746. height: math.unit(5 + 5 / 12, "feet"),
  35747. default: true
  35748. },
  35749. {
  35750. name: "Macro",
  35751. height: math.unit(25, "feet")
  35752. },
  35753. ]
  35754. ))
  35755. characterMakers.push(() => makeCharacter(
  35756. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35757. {
  35758. front: {
  35759. height: math.unit(5 + 10/12, "feet"),
  35760. name: "Front",
  35761. image: {
  35762. source: "./media/characters/argon/front.svg",
  35763. extra: 2009/1935,
  35764. bottom: 118/2127
  35765. }
  35766. },
  35767. back: {
  35768. height: math.unit(5 + 10/12, "feet"),
  35769. name: "Back",
  35770. image: {
  35771. source: "./media/characters/argon/back.svg",
  35772. extra: 2047/1992,
  35773. bottom: 20/2067
  35774. }
  35775. },
  35776. frontDressed: {
  35777. height: math.unit(5 + 10/12, "feet"),
  35778. name: "Front (Dressed)",
  35779. image: {
  35780. source: "./media/characters/argon/front-dressed.svg",
  35781. extra: 2009/1935,
  35782. bottom: 118/2127
  35783. }
  35784. },
  35785. },
  35786. [
  35787. {
  35788. name: "Normal",
  35789. height: math.unit(5 + 10/12, "feet"),
  35790. default: true
  35791. },
  35792. ]
  35793. ))
  35794. characterMakers.push(() => makeCharacter(
  35795. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35796. {
  35797. front: {
  35798. height: math.unit(8 + 6/12, "feet"),
  35799. weight: math.unit(1150, "lb"),
  35800. name: "Front",
  35801. image: {
  35802. source: "./media/characters/kichi/front.svg",
  35803. extra: 1267/1164,
  35804. bottom: 61/1328
  35805. }
  35806. },
  35807. back: {
  35808. height: math.unit(8 + 6/12, "feet"),
  35809. weight: math.unit(1150, "lb"),
  35810. name: "Back",
  35811. image: {
  35812. source: "./media/characters/kichi/back.svg",
  35813. extra: 1273/1166,
  35814. bottom: 33/1306
  35815. }
  35816. },
  35817. },
  35818. [
  35819. {
  35820. name: "Normal",
  35821. height: math.unit(8 + 6/12, "feet"),
  35822. default: true
  35823. },
  35824. ]
  35825. ))
  35826. characterMakers.push(() => makeCharacter(
  35827. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35828. {
  35829. front: {
  35830. height: math.unit(6, "feet"),
  35831. weight: math.unit(210, "lb"),
  35832. name: "Front",
  35833. image: {
  35834. source: "./media/characters/manetel-greyscale/front.svg",
  35835. extra: 350/312,
  35836. bottom: 8/358
  35837. }
  35838. },
  35839. },
  35840. [
  35841. {
  35842. name: "Micro",
  35843. height: math.unit(2, "inches")
  35844. },
  35845. {
  35846. name: "Normal",
  35847. height: math.unit(6, "feet"),
  35848. default: true
  35849. },
  35850. {
  35851. name: "Minimacro",
  35852. height: math.unit(17, "feet")
  35853. },
  35854. {
  35855. name: "Macro",
  35856. height: math.unit(117, "feet")
  35857. },
  35858. ]
  35859. ))
  35860. characterMakers.push(() => makeCharacter(
  35861. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35862. {
  35863. side: {
  35864. height: math.unit(5 + 1/12, "feet"),
  35865. weight: math.unit(418, "lb"),
  35866. name: "Side",
  35867. image: {
  35868. source: "./media/characters/softpurr/side.svg",
  35869. extra: 1993/1945,
  35870. bottom: 134/2127
  35871. }
  35872. },
  35873. front: {
  35874. height: math.unit(5 + 1/12, "feet"),
  35875. weight: math.unit(418, "lb"),
  35876. name: "Front",
  35877. image: {
  35878. source: "./media/characters/softpurr/front.svg",
  35879. extra: 1950/1856,
  35880. bottom: 174/2124
  35881. }
  35882. },
  35883. paw: {
  35884. height: math.unit(1, "feet"),
  35885. name: "Paw",
  35886. image: {
  35887. source: "./media/characters/softpurr/paw.svg"
  35888. }
  35889. },
  35890. },
  35891. [
  35892. {
  35893. name: "Normal",
  35894. height: math.unit(5 + 1/12, "feet"),
  35895. default: true
  35896. },
  35897. ]
  35898. ))
  35899. characterMakers.push(() => makeCharacter(
  35900. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35901. {
  35902. front: {
  35903. height: math.unit(260, "meters"),
  35904. name: "Front",
  35905. image: {
  35906. source: "./media/characters/anahita/front.svg",
  35907. extra: 665/635,
  35908. bottom: 89/754
  35909. }
  35910. },
  35911. },
  35912. [
  35913. {
  35914. name: "Macro",
  35915. height: math.unit(260, "meters"),
  35916. default: true
  35917. },
  35918. ]
  35919. ))
  35920. characterMakers.push(() => makeCharacter(
  35921. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35922. {
  35923. front: {
  35924. height: math.unit(4 + 10/12, "feet"),
  35925. weight: math.unit(160, "lb"),
  35926. name: "Front",
  35927. image: {
  35928. source: "./media/characters/chip-mouse/front.svg",
  35929. extra: 3528/3408,
  35930. bottom: 0/3528
  35931. }
  35932. },
  35933. frontNsfw: {
  35934. height: math.unit(4 + 10/12, "feet"),
  35935. weight: math.unit(160, "lb"),
  35936. name: "Front (NSFW)",
  35937. image: {
  35938. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35939. extra: 3528/3408,
  35940. bottom: 0/3528
  35941. }
  35942. },
  35943. },
  35944. [
  35945. {
  35946. name: "Normal",
  35947. height: math.unit(4 + 10/12, "feet"),
  35948. default: true
  35949. },
  35950. ]
  35951. ))
  35952. characterMakers.push(() => makeCharacter(
  35953. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35954. {
  35955. side: {
  35956. height: math.unit(10, "feet"),
  35957. weight: math.unit(14000, "lb"),
  35958. name: "Side",
  35959. image: {
  35960. source: "./media/characters/kremm/side.svg",
  35961. extra: 1390/1053,
  35962. bottom: 90/1480
  35963. }
  35964. },
  35965. gut: {
  35966. height: math.unit(5.8, "feet"),
  35967. name: "Gut",
  35968. image: {
  35969. source: "./media/characters/kremm/gut.svg"
  35970. }
  35971. },
  35972. ass: {
  35973. height: math.unit(6.1, "feet"),
  35974. name: "Ass",
  35975. image: {
  35976. source: "./media/characters/kremm/ass.svg"
  35977. }
  35978. },
  35979. jaws: {
  35980. height: math.unit(2.2, "feet"),
  35981. name: "Jaws",
  35982. image: {
  35983. source: "./media/characters/kremm/jaws.svg"
  35984. }
  35985. },
  35986. dick: {
  35987. height: math.unit(4.26, "feet"),
  35988. name: "Dick",
  35989. image: {
  35990. source: "./media/characters/kremm/dick.svg"
  35991. }
  35992. },
  35993. },
  35994. [
  35995. {
  35996. name: "Normal",
  35997. height: math.unit(10, "feet"),
  35998. default: true
  35999. },
  36000. ]
  36001. ))
  36002. characterMakers.push(() => makeCharacter(
  36003. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36004. {
  36005. front: {
  36006. height: math.unit(30, "stories"),
  36007. name: "Front",
  36008. image: {
  36009. source: "./media/characters/kai/front.svg",
  36010. extra: 1892/1718,
  36011. bottom: 162/2054
  36012. }
  36013. },
  36014. },
  36015. [
  36016. {
  36017. name: "Macro",
  36018. height: math.unit(30, "stories"),
  36019. default: true
  36020. },
  36021. ]
  36022. ))
  36023. characterMakers.push(() => makeCharacter(
  36024. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36025. {
  36026. front: {
  36027. height: math.unit(6 + 4/12, "feet"),
  36028. weight: math.unit(145, "lb"),
  36029. name: "Front",
  36030. image: {
  36031. source: "./media/characters/sykes/front.svg",
  36032. extra: 1321 / 1187,
  36033. bottom: 66 / 1387
  36034. }
  36035. },
  36036. back: {
  36037. height: math.unit(6 + 4/12, "feet"),
  36038. weight: math.unit(145, "lb"),
  36039. name: "Back",
  36040. image: {
  36041. source: "./media/characters/sykes/back.svg",
  36042. extra: 1326/1181,
  36043. bottom: 31/1357
  36044. }
  36045. },
  36046. traditionalOutfit: {
  36047. height: math.unit(6 + 4/12, "feet"),
  36048. weight: math.unit(145, "lb"),
  36049. name: "Traditional Outfit",
  36050. image: {
  36051. source: "./media/characters/sykes/traditional-outfit.svg",
  36052. extra: 1321 / 1187,
  36053. bottom: 66 / 1387
  36054. }
  36055. },
  36056. adventureOutfit: {
  36057. height: math.unit(6 + 4/12, "feet"),
  36058. weight: math.unit(145, "lb"),
  36059. name: "Adventure Outfit",
  36060. image: {
  36061. source: "./media/characters/sykes/adventure-outfit.svg",
  36062. extra: 1321 / 1187,
  36063. bottom: 66 / 1387
  36064. }
  36065. },
  36066. handLeft: {
  36067. height: math.unit(0.9, "feet"),
  36068. name: "Hand (Left)",
  36069. image: {
  36070. source: "./media/characters/sykes/hand-left.svg"
  36071. }
  36072. },
  36073. handRight: {
  36074. height: math.unit(0.839, "feet"),
  36075. name: "Hand (Right)",
  36076. image: {
  36077. source: "./media/characters/sykes/hand-right.svg"
  36078. }
  36079. },
  36080. leftFoot: {
  36081. height: math.unit(1.2, "feet"),
  36082. name: "Foot (Left)",
  36083. image: {
  36084. source: "./media/characters/sykes/foot-left.svg"
  36085. }
  36086. },
  36087. rightFoot: {
  36088. height: math.unit(1.2, "feet"),
  36089. name: "Foot (Right)",
  36090. image: {
  36091. source: "./media/characters/sykes/foot-right.svg"
  36092. }
  36093. },
  36094. maw: {
  36095. height: math.unit(1.93, "feet"),
  36096. name: "Maw",
  36097. image: {
  36098. source: "./media/characters/sykes/maw.svg"
  36099. }
  36100. },
  36101. teeth: {
  36102. height: math.unit(0.51, "feet"),
  36103. name: "Teeth",
  36104. image: {
  36105. source: "./media/characters/sykes/teeth.svg"
  36106. }
  36107. },
  36108. tongue: {
  36109. height: math.unit(2.13, "feet"),
  36110. name: "Tongue",
  36111. image: {
  36112. source: "./media/characters/sykes/tongue.svg"
  36113. }
  36114. },
  36115. uvula: {
  36116. height: math.unit(0.16, "feet"),
  36117. name: "Uvula",
  36118. image: {
  36119. source: "./media/characters/sykes/uvula.svg"
  36120. }
  36121. },
  36122. collar: {
  36123. height: math.unit(0.287, "feet"),
  36124. name: "Collar",
  36125. image: {
  36126. source: "./media/characters/sykes/collar.svg"
  36127. }
  36128. },
  36129. tail: {
  36130. height: math.unit(3.8, "feet"),
  36131. name: "Tail",
  36132. image: {
  36133. source: "./media/characters/sykes/tail.svg"
  36134. }
  36135. },
  36136. },
  36137. [
  36138. {
  36139. name: "Shrunken",
  36140. height: math.unit(5, "inches")
  36141. },
  36142. {
  36143. name: "Normal",
  36144. height: math.unit(6 + 4 / 12, "feet"),
  36145. default: true
  36146. },
  36147. {
  36148. name: "Big",
  36149. height: math.unit(15, "feet")
  36150. },
  36151. ]
  36152. ))
  36153. characterMakers.push(() => makeCharacter(
  36154. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36155. {
  36156. front: {
  36157. height: math.unit(5 + 8/12, "feet"),
  36158. weight: math.unit(190, "lb"),
  36159. name: "Front",
  36160. image: {
  36161. source: "./media/characters/oven-otter/front.svg",
  36162. extra: 1809/1740,
  36163. bottom: 181/1990
  36164. }
  36165. },
  36166. back: {
  36167. height: math.unit(5 + 8/12, "feet"),
  36168. weight: math.unit(190, "lb"),
  36169. name: "Back",
  36170. image: {
  36171. source: "./media/characters/oven-otter/back.svg",
  36172. extra: 1709/1635,
  36173. bottom: 118/1827
  36174. }
  36175. },
  36176. hand: {
  36177. height: math.unit(1.07, "feet"),
  36178. name: "Hand",
  36179. image: {
  36180. source: "./media/characters/oven-otter/hand.svg"
  36181. }
  36182. },
  36183. beans: {
  36184. height: math.unit(1.74, "feet"),
  36185. name: "Beans",
  36186. image: {
  36187. source: "./media/characters/oven-otter/beans.svg"
  36188. }
  36189. },
  36190. },
  36191. [
  36192. {
  36193. name: "Micro",
  36194. height: math.unit(0.5, "inches")
  36195. },
  36196. {
  36197. name: "Normal",
  36198. height: math.unit(5 + 8/12, "feet"),
  36199. default: true
  36200. },
  36201. {
  36202. name: "Macro",
  36203. height: math.unit(250, "feet")
  36204. },
  36205. {
  36206. name: "Really High",
  36207. height: math.unit(420, "feet")
  36208. },
  36209. ]
  36210. ))
  36211. characterMakers.push(() => makeCharacter(
  36212. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36213. {
  36214. front: {
  36215. height: math.unit(5, "meters"),
  36216. weight: math.unit(292000000000000, "kg"),
  36217. name: "Front",
  36218. image: {
  36219. source: "./media/characters/devourer/front.svg",
  36220. extra: 1800/1733,
  36221. bottom: 211/2011
  36222. }
  36223. },
  36224. maw: {
  36225. height: math.unit(1.1, "meter"),
  36226. name: "Maw",
  36227. image: {
  36228. source: "./media/characters/devourer/maw.svg"
  36229. }
  36230. },
  36231. },
  36232. [
  36233. {
  36234. name: "Small",
  36235. height: math.unit(3, "meters")
  36236. },
  36237. {
  36238. name: "Large",
  36239. height: math.unit(5, "meters"),
  36240. default: true
  36241. },
  36242. ]
  36243. ))
  36244. characterMakers.push(() => makeCharacter(
  36245. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36246. {
  36247. front: {
  36248. height: math.unit(6, "feet"),
  36249. weight: math.unit(400, "lb"),
  36250. name: "Front",
  36251. image: {
  36252. source: "./media/characters/ellarby/front.svg",
  36253. extra: 1909/1763,
  36254. bottom: 80/1989
  36255. }
  36256. },
  36257. back: {
  36258. height: math.unit(6, "feet"),
  36259. weight: math.unit(400, "lb"),
  36260. name: "Back",
  36261. image: {
  36262. source: "./media/characters/ellarby/back.svg",
  36263. extra: 1914/1784,
  36264. bottom: 172/2086
  36265. }
  36266. },
  36267. },
  36268. [
  36269. {
  36270. name: "Mischief",
  36271. height: math.unit(18, "inches")
  36272. },
  36273. {
  36274. name: "Trouble",
  36275. height: math.unit(12, "feet")
  36276. },
  36277. {
  36278. name: "Havoc",
  36279. height: math.unit(200, "feet"),
  36280. default: true
  36281. },
  36282. {
  36283. name: "Pandemonium",
  36284. height: math.unit(1, "mile")
  36285. },
  36286. {
  36287. name: "Catastrophe",
  36288. height: math.unit(100, "miles")
  36289. },
  36290. ]
  36291. ))
  36292. characterMakers.push(() => makeCharacter(
  36293. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36294. {
  36295. front: {
  36296. height: math.unit(4.7, "meters"),
  36297. weight: math.unit(6500, "kg"),
  36298. name: "Front",
  36299. image: {
  36300. source: "./media/characters/vex/front.svg",
  36301. extra: 1288/1140,
  36302. bottom: 100/1388
  36303. }
  36304. },
  36305. },
  36306. [
  36307. {
  36308. name: "Normal",
  36309. height: math.unit(4.7, "meters"),
  36310. default: true
  36311. },
  36312. ]
  36313. ))
  36314. characterMakers.push(() => makeCharacter(
  36315. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36316. {
  36317. normal: {
  36318. height: math.unit(6, "feet"),
  36319. weight: math.unit(350, "lb"),
  36320. name: "Normal",
  36321. image: {
  36322. source: "./media/characters/teshy/normal.svg",
  36323. extra: 1795/1735,
  36324. bottom: 16/1811
  36325. }
  36326. },
  36327. monsterFront: {
  36328. height: math.unit(12, "feet"),
  36329. weight: math.unit(4700, "lb"),
  36330. name: "Monster (Front)",
  36331. image: {
  36332. source: "./media/characters/teshy/monster-front.svg",
  36333. extra: 2042/2034,
  36334. bottom: 128/2170
  36335. }
  36336. },
  36337. monsterSide: {
  36338. height: math.unit(12, "feet"),
  36339. weight: math.unit(4700, "lb"),
  36340. name: "Monster (Side)",
  36341. image: {
  36342. source: "./media/characters/teshy/monster-side.svg",
  36343. extra: 2067/2056,
  36344. bottom: 70/2137
  36345. }
  36346. },
  36347. monsterBack: {
  36348. height: math.unit(12, "feet"),
  36349. weight: math.unit(4700, "lb"),
  36350. name: "Monster (Back)",
  36351. image: {
  36352. source: "./media/characters/teshy/monster-back.svg",
  36353. extra: 1921/1914,
  36354. bottom: 171/2092
  36355. }
  36356. },
  36357. },
  36358. [
  36359. {
  36360. name: "Normal",
  36361. height: math.unit(6, "feet"),
  36362. default: true
  36363. },
  36364. ]
  36365. ))
  36366. characterMakers.push(() => makeCharacter(
  36367. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36368. {
  36369. front: {
  36370. height: math.unit(6, "feet"),
  36371. name: "Front",
  36372. image: {
  36373. source: "./media/characters/ramey/front.svg",
  36374. extra: 790/787,
  36375. bottom: 27/817
  36376. }
  36377. },
  36378. },
  36379. [
  36380. {
  36381. name: "Normal",
  36382. height: math.unit(6, "feet"),
  36383. default: true
  36384. },
  36385. ]
  36386. ))
  36387. characterMakers.push(() => makeCharacter(
  36388. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36389. {
  36390. front: {
  36391. height: math.unit(5 + 5/12, "feet"),
  36392. weight: math.unit(120, "lb"),
  36393. name: "Front",
  36394. image: {
  36395. source: "./media/characters/phirae/front.svg",
  36396. extra: 2491/2436,
  36397. bottom: 38/2529
  36398. }
  36399. },
  36400. },
  36401. [
  36402. {
  36403. name: "Normal",
  36404. height: math.unit(5 + 5/12, "feet"),
  36405. default: true
  36406. },
  36407. ]
  36408. ))
  36409. characterMakers.push(() => makeCharacter(
  36410. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36411. {
  36412. front: {
  36413. height: math.unit(5 + 3/12, "feet"),
  36414. name: "Front",
  36415. image: {
  36416. source: "./media/characters/stagglas/front.svg",
  36417. extra: 962/882,
  36418. bottom: 53/1015
  36419. }
  36420. },
  36421. feral: {
  36422. height: math.unit(335, "cm"),
  36423. name: "Feral",
  36424. image: {
  36425. source: "./media/characters/stagglas/feral.svg",
  36426. extra: 1732/1090,
  36427. bottom: 48/1780
  36428. }
  36429. },
  36430. },
  36431. [
  36432. {
  36433. name: "Normal",
  36434. height: math.unit(5 + 3/12, "feet"),
  36435. default: true
  36436. },
  36437. ]
  36438. ))
  36439. characterMakers.push(() => makeCharacter(
  36440. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36441. {
  36442. front: {
  36443. height: math.unit(5 + 4/12, "feet"),
  36444. weight: math.unit(145, "lb"),
  36445. name: "Front",
  36446. image: {
  36447. source: "./media/characters/starra/front.svg",
  36448. extra: 1790/1691,
  36449. bottom: 91/1881
  36450. }
  36451. },
  36452. },
  36453. [
  36454. {
  36455. name: "Normal",
  36456. height: math.unit(5 + 4/12, "feet"),
  36457. default: true
  36458. },
  36459. ]
  36460. ))
  36461. characterMakers.push(() => makeCharacter(
  36462. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36463. {
  36464. front: {
  36465. height: math.unit(2.2, "meters"),
  36466. name: "Front",
  36467. image: {
  36468. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36469. extra: 1248/972,
  36470. bottom: 38/1286
  36471. }
  36472. },
  36473. },
  36474. [
  36475. {
  36476. name: "Normal",
  36477. height: math.unit(2.2, "meters"),
  36478. default: true
  36479. },
  36480. ]
  36481. ))
  36482. characterMakers.push(() => makeCharacter(
  36483. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36484. {
  36485. side: {
  36486. height: math.unit(8 + 2/12, "feet"),
  36487. weight: math.unit(1240, "lb"),
  36488. name: "Side",
  36489. image: {
  36490. source: "./media/characters/mika-valentine/side.svg",
  36491. extra: 2670/2501,
  36492. bottom: 250/2920
  36493. }
  36494. },
  36495. },
  36496. [
  36497. {
  36498. name: "Normal",
  36499. height: math.unit(8 + 2/12, "feet"),
  36500. default: true
  36501. },
  36502. ]
  36503. ))
  36504. characterMakers.push(() => makeCharacter(
  36505. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36506. {
  36507. front: {
  36508. height: math.unit(7 + 2/12, "feet"),
  36509. name: "Front",
  36510. image: {
  36511. source: "./media/characters/xoltol/front.svg",
  36512. extra: 2212/2124,
  36513. bottom: 84/2296
  36514. }
  36515. },
  36516. side: {
  36517. height: math.unit(7 + 2/12, "feet"),
  36518. name: "Side",
  36519. image: {
  36520. source: "./media/characters/xoltol/side.svg",
  36521. extra: 2273/2197,
  36522. bottom: 26/2299
  36523. }
  36524. },
  36525. hand: {
  36526. height: math.unit(2.5, "feet"),
  36527. name: "Hand",
  36528. image: {
  36529. source: "./media/characters/xoltol/hand.svg"
  36530. }
  36531. },
  36532. },
  36533. [
  36534. {
  36535. name: "Small-ish",
  36536. height: math.unit(5 + 11/12, "feet")
  36537. },
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(7 + 2/12, "feet")
  36541. },
  36542. {
  36543. name: "\"Macro\"",
  36544. height: math.unit(14 + 9/12, "feet"),
  36545. default: true
  36546. },
  36547. {
  36548. name: "Alternate Height",
  36549. height: math.unit(20, "feet")
  36550. },
  36551. {
  36552. name: "Actually Macro",
  36553. height: math.unit(100, "feet")
  36554. },
  36555. ]
  36556. ))
  36557. characterMakers.push(() => makeCharacter(
  36558. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36559. {
  36560. front: {
  36561. height: math.unit(5 + 2/12, "feet"),
  36562. name: "Front",
  36563. image: {
  36564. source: "./media/characters/kotetsu-redwood/front.svg",
  36565. extra: 1053/942,
  36566. bottom: 60/1113
  36567. }
  36568. },
  36569. },
  36570. [
  36571. {
  36572. name: "Normal",
  36573. height: math.unit(5 + 2/12, "feet"),
  36574. default: true
  36575. },
  36576. ]
  36577. ))
  36578. characterMakers.push(() => makeCharacter(
  36579. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36580. {
  36581. front: {
  36582. height: math.unit(2.4, "meters"),
  36583. weight: math.unit(125, "kg"),
  36584. name: "Front",
  36585. image: {
  36586. source: "./media/characters/lilith/front.svg",
  36587. extra: 1590/1513,
  36588. bottom: 203/1793
  36589. }
  36590. },
  36591. },
  36592. [
  36593. {
  36594. name: "Humanoid",
  36595. height: math.unit(2.4, "meters")
  36596. },
  36597. {
  36598. name: "Normal",
  36599. height: math.unit(6, "meters"),
  36600. default: true
  36601. },
  36602. {
  36603. name: "Largest",
  36604. height: math.unit(55, "meters")
  36605. },
  36606. ]
  36607. ))
  36608. characterMakers.push(() => makeCharacter(
  36609. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36610. {
  36611. front: {
  36612. height: math.unit(8 + 4/12, "feet"),
  36613. weight: math.unit(535, "lb"),
  36614. name: "Front",
  36615. image: {
  36616. source: "./media/characters/beh'kah-bolger/front.svg",
  36617. extra: 1660/1603,
  36618. bottom: 37/1697
  36619. }
  36620. },
  36621. },
  36622. [
  36623. {
  36624. name: "Normal",
  36625. height: math.unit(8 + 4/12, "feet"),
  36626. default: true
  36627. },
  36628. {
  36629. name: "Kaiju",
  36630. height: math.unit(250, "feet")
  36631. },
  36632. {
  36633. name: "Still Growing",
  36634. height: math.unit(10, "miles")
  36635. },
  36636. {
  36637. name: "Continental",
  36638. height: math.unit(5000, "miles")
  36639. },
  36640. {
  36641. name: "Final Form",
  36642. height: math.unit(2500000, "miles")
  36643. },
  36644. ]
  36645. ))
  36646. characterMakers.push(() => makeCharacter(
  36647. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36648. {
  36649. front: {
  36650. height: math.unit(7 + 2/12, "feet"),
  36651. weight: math.unit(230, "kg"),
  36652. name: "Front",
  36653. image: {
  36654. source: "./media/characters/tatyana-milewska/front.svg",
  36655. extra: 1199/1150,
  36656. bottom: 86/1285
  36657. }
  36658. },
  36659. },
  36660. [
  36661. {
  36662. name: "Normal",
  36663. height: math.unit(7 + 2/12, "feet"),
  36664. default: true
  36665. },
  36666. {
  36667. name: "Big",
  36668. height: math.unit(12, "feet")
  36669. },
  36670. {
  36671. name: "Minimacro",
  36672. height: math.unit(20, "feet")
  36673. },
  36674. {
  36675. name: "Macro",
  36676. height: math.unit(120, "feet")
  36677. },
  36678. ]
  36679. ))
  36680. characterMakers.push(() => makeCharacter(
  36681. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36682. {
  36683. front: {
  36684. height: math.unit(7 + 8/12, "feet"),
  36685. weight: math.unit(152, "kg"),
  36686. name: "Front",
  36687. image: {
  36688. source: "./media/characters/helen-arri/front.svg",
  36689. extra: 440/423,
  36690. bottom: 14/454
  36691. }
  36692. },
  36693. back: {
  36694. height: math.unit(7 + 8/12, "feet"),
  36695. weight: math.unit(152, "kg"),
  36696. name: "Back",
  36697. image: {
  36698. source: "./media/characters/helen-arri/back.svg",
  36699. extra: 443/426,
  36700. bottom: 8/451
  36701. }
  36702. },
  36703. },
  36704. [
  36705. {
  36706. name: "Normal",
  36707. height: math.unit(7 + 8/12, "feet"),
  36708. default: true
  36709. },
  36710. {
  36711. name: "Big",
  36712. height: math.unit(14, "feet")
  36713. },
  36714. {
  36715. name: "Minimacro",
  36716. height: math.unit(24, "feet")
  36717. },
  36718. {
  36719. name: "Macro",
  36720. height: math.unit(140, "feet")
  36721. },
  36722. ]
  36723. ))
  36724. characterMakers.push(() => makeCharacter(
  36725. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36726. {
  36727. front: {
  36728. height: math.unit(6, "meters"),
  36729. name: "Front",
  36730. image: {
  36731. source: "./media/characters/ehanu-rehu/front.svg",
  36732. extra: 1800/1800,
  36733. bottom: 59/1859
  36734. }
  36735. },
  36736. },
  36737. [
  36738. {
  36739. name: "Normal",
  36740. height: math.unit(6, "meters"),
  36741. default: true
  36742. },
  36743. ]
  36744. ))
  36745. characterMakers.push(() => makeCharacter(
  36746. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36747. {
  36748. front: {
  36749. height: math.unit(7 + 3/12, "feet"),
  36750. name: "Front",
  36751. image: {
  36752. source: "./media/characters/renholder/front.svg",
  36753. extra: 3096/2960,
  36754. bottom: 250/3346
  36755. }
  36756. },
  36757. },
  36758. [
  36759. {
  36760. name: "Normal Bat",
  36761. height: math.unit(7 + 3/12, "feet"),
  36762. default: true
  36763. },
  36764. {
  36765. name: "Slightly Tall Bat",
  36766. height: math.unit(100, "feet")
  36767. },
  36768. {
  36769. name: "Big Bat",
  36770. height: math.unit(1000, "feet")
  36771. },
  36772. {
  36773. name: "City-Sized Bat",
  36774. height: math.unit(200000, "feet")
  36775. },
  36776. {
  36777. name: "Bigger Bat",
  36778. height: math.unit(10000, "miles")
  36779. },
  36780. {
  36781. name: "Solar Sized Bat",
  36782. height: math.unit(100, "AU")
  36783. },
  36784. {
  36785. name: "Galactic Bat",
  36786. height: math.unit(200000, "lightyears")
  36787. },
  36788. {
  36789. name: "Universally Known Bat",
  36790. height: math.unit(1, "universe")
  36791. },
  36792. ]
  36793. ))
  36794. characterMakers.push(() => makeCharacter(
  36795. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36796. {
  36797. front: {
  36798. height: math.unit(6 + 11/12, "feet"),
  36799. weight: math.unit(250, "lb"),
  36800. name: "Front",
  36801. image: {
  36802. source: "./media/characters/cookiecat/front.svg",
  36803. extra: 893/827,
  36804. bottom: 14/907
  36805. }
  36806. },
  36807. },
  36808. [
  36809. {
  36810. name: "Micro",
  36811. height: math.unit(3, "inches")
  36812. },
  36813. {
  36814. name: "Normal",
  36815. height: math.unit(6 + 11/12, "feet"),
  36816. default: true
  36817. },
  36818. {
  36819. name: "Macro",
  36820. height: math.unit(100, "feet")
  36821. },
  36822. {
  36823. name: "Macro+",
  36824. height: math.unit(404, "feet")
  36825. },
  36826. {
  36827. name: "Megamacro",
  36828. height: math.unit(165, "miles")
  36829. },
  36830. {
  36831. name: "Planetary",
  36832. height: math.unit(4600, "miles")
  36833. },
  36834. ]
  36835. ))
  36836. characterMakers.push(() => makeCharacter(
  36837. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36838. {
  36839. front: {
  36840. height: math.unit(10 + 3/12, "feet"),
  36841. weight: math.unit(1500, "lb"),
  36842. name: "Front",
  36843. image: {
  36844. source: "./media/characters/tux-kusanagi/front.svg",
  36845. extra: 944/840,
  36846. bottom: 39/983
  36847. }
  36848. },
  36849. back: {
  36850. height: math.unit(10 + 3/12, "feet"),
  36851. weight: math.unit(1500, "lb"),
  36852. name: "Back",
  36853. image: {
  36854. source: "./media/characters/tux-kusanagi/back.svg",
  36855. extra: 941/842,
  36856. bottom: 28/969
  36857. }
  36858. },
  36859. rump: {
  36860. height: math.unit(5.25, "feet"),
  36861. name: "Rump",
  36862. image: {
  36863. source: "./media/characters/tux-kusanagi/rump.svg"
  36864. }
  36865. },
  36866. beak: {
  36867. height: math.unit(1.54, "feet"),
  36868. name: "Beak",
  36869. image: {
  36870. source: "./media/characters/tux-kusanagi/beak.svg"
  36871. }
  36872. },
  36873. },
  36874. [
  36875. {
  36876. name: "Normal",
  36877. height: math.unit(10 + 3/12, "feet"),
  36878. default: true
  36879. },
  36880. ]
  36881. ))
  36882. characterMakers.push(() => makeCharacter(
  36883. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36884. {
  36885. front: {
  36886. height: math.unit(58, "feet"),
  36887. weight: math.unit(200, "tons"),
  36888. name: "Front",
  36889. image: {
  36890. source: "./media/characters/uzarmazari/front.svg",
  36891. extra: 1575/1455,
  36892. bottom: 152/1727
  36893. }
  36894. },
  36895. back: {
  36896. height: math.unit(58, "feet"),
  36897. weight: math.unit(200, "tons"),
  36898. name: "Back",
  36899. image: {
  36900. source: "./media/characters/uzarmazari/back.svg",
  36901. extra: 1585/1510,
  36902. bottom: 157/1742
  36903. }
  36904. },
  36905. head: {
  36906. height: math.unit(26, "feet"),
  36907. name: "Head",
  36908. image: {
  36909. source: "./media/characters/uzarmazari/head.svg"
  36910. }
  36911. },
  36912. },
  36913. [
  36914. {
  36915. name: "Normal",
  36916. height: math.unit(58, "feet"),
  36917. default: true
  36918. },
  36919. ]
  36920. ))
  36921. characterMakers.push(() => makeCharacter(
  36922. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36923. {
  36924. side: {
  36925. height: math.unit(15, "feet"),
  36926. name: "Side",
  36927. image: {
  36928. source: "./media/characters/akitu/side.svg",
  36929. extra: 1421/1321,
  36930. bottom: 157/1578
  36931. }
  36932. },
  36933. front: {
  36934. height: math.unit(15, "feet"),
  36935. name: "Front",
  36936. image: {
  36937. source: "./media/characters/akitu/front.svg",
  36938. extra: 1435/1326,
  36939. bottom: 232/1667
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Normal",
  36946. height: math.unit(15, "feet"),
  36947. default: true
  36948. },
  36949. ]
  36950. ))
  36951. characterMakers.push(() => makeCharacter(
  36952. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36953. {
  36954. front: {
  36955. height: math.unit(10 + 8/12, "feet"),
  36956. name: "Front",
  36957. image: {
  36958. source: "./media/characters/azalie-croixland/front.svg",
  36959. extra: 1972/1856,
  36960. bottom: 31/2003
  36961. }
  36962. },
  36963. },
  36964. [
  36965. {
  36966. name: "Original Height",
  36967. height: math.unit(5 + 4/12, "feet")
  36968. },
  36969. {
  36970. name: "Normal Height",
  36971. height: math.unit(10 + 8/12, "feet"),
  36972. default: true
  36973. },
  36974. ]
  36975. ))
  36976. characterMakers.push(() => makeCharacter(
  36977. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36978. {
  36979. side: {
  36980. height: math.unit(7 + 1/12, "feet"),
  36981. weight: math.unit(245, "lb"),
  36982. name: "Side",
  36983. image: {
  36984. source: "./media/characters/kavus-kazian/side.svg",
  36985. extra: 349/342,
  36986. bottom: 15/364
  36987. }
  36988. },
  36989. },
  36990. [
  36991. {
  36992. name: "Normal",
  36993. height: math.unit(7 + 1/12, "feet"),
  36994. default: true
  36995. },
  36996. ]
  36997. ))
  36998. characterMakers.push(() => makeCharacter(
  36999. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37000. {
  37001. normalFront: {
  37002. height: math.unit(5 + 11/12, "feet"),
  37003. name: "Front",
  37004. image: {
  37005. source: "./media/characters/moonlight-rose/normal-front.svg",
  37006. extra: 1980/1825,
  37007. bottom: 18/1998
  37008. },
  37009. form: "normal",
  37010. default: true
  37011. },
  37012. normalBack: {
  37013. height: math.unit(5 + 11/12, "feet"),
  37014. name: "Back",
  37015. image: {
  37016. source: "./media/characters/moonlight-rose/normal-back.svg",
  37017. extra: 2010/1839,
  37018. bottom: 10/2020
  37019. },
  37020. form: "normal"
  37021. },
  37022. demonFront: {
  37023. height: math.unit(1.5, "earths"),
  37024. name: "Front",
  37025. image: {
  37026. source: "./media/characters/moonlight-rose/demon.svg",
  37027. extra: 1400/1294,
  37028. bottom: 45/1445
  37029. },
  37030. form: "demon",
  37031. default: true
  37032. },
  37033. terraFront: {
  37034. height: math.unit(1.5, "earths"),
  37035. name: "Front",
  37036. image: {
  37037. source: "./media/characters/moonlight-rose/terra.svg"
  37038. },
  37039. form: "terra",
  37040. default: true
  37041. },
  37042. jupiterFront: {
  37043. height: math.unit(69911*2, "km"),
  37044. name: "Front",
  37045. image: {
  37046. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37047. extra: 1367/1286,
  37048. bottom: 55/1422
  37049. },
  37050. form: "jupiter",
  37051. default: true
  37052. },
  37053. neptuneFront: {
  37054. height: math.unit(24622*2, "feet"),
  37055. name: "Front",
  37056. image: {
  37057. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37058. extra: 1851/1712,
  37059. bottom: 0/1851
  37060. },
  37061. form: "neptune",
  37062. default: true
  37063. },
  37064. },
  37065. [
  37066. {
  37067. name: "\"Natural\" Height",
  37068. height: math.unit(5 + 11/12, "feet"),
  37069. form: "normal"
  37070. },
  37071. {
  37072. name: "Smallest comfortable size",
  37073. height: math.unit(40, "meters"),
  37074. form: "normal"
  37075. },
  37076. {
  37077. name: "Common size",
  37078. height: math.unit(50, "km"),
  37079. form: "normal",
  37080. default: true
  37081. },
  37082. {
  37083. name: "Normal",
  37084. height: math.unit(1.5, "earths"),
  37085. form: "demon",
  37086. default: true
  37087. },
  37088. {
  37089. name: "Universal",
  37090. height: math.unit(15, "universes"),
  37091. form: "demon"
  37092. },
  37093. {
  37094. name: "Earth",
  37095. height: math.unit(1.5, "earths"),
  37096. form: "terra",
  37097. default: true
  37098. },
  37099. {
  37100. name: "Super Earth",
  37101. height: math.unit(67.5, "earths"),
  37102. form: "terra"
  37103. },
  37104. {
  37105. name: "Doesn't fit in a solar system...",
  37106. height: math.unit(1, "galaxy"),
  37107. form: "terra"
  37108. },
  37109. {
  37110. name: "Saturn",
  37111. height: math.unit(58232*2, "km"),
  37112. form: "jupiter"
  37113. },
  37114. {
  37115. name: "Jupiter",
  37116. height: math.unit(69911*2, "km"),
  37117. form: "jupiter",
  37118. default: true
  37119. },
  37120. {
  37121. name: "HD 100546 b",
  37122. height: math.unit(482938, "km"),
  37123. form: "jupiter"
  37124. },
  37125. {
  37126. name: "Enceladus",
  37127. height: math.unit(513*2, "km"),
  37128. form: "neptune"
  37129. },
  37130. {
  37131. name: "Europe",
  37132. height: math.unit(1560*2, "km"),
  37133. form: "neptune"
  37134. },
  37135. {
  37136. name: "Neptune",
  37137. height: math.unit(24622*2, "km"),
  37138. form: "neptune",
  37139. default: true
  37140. },
  37141. {
  37142. name: "CoRoT-9b",
  37143. height: math.unit(75067*2, "km"),
  37144. form: "neptune"
  37145. },
  37146. ],
  37147. {
  37148. "normal": {
  37149. name: "Normal",
  37150. default: true
  37151. },
  37152. "demon": {
  37153. name: "Demon"
  37154. },
  37155. "terra": {
  37156. name: "Terra"
  37157. },
  37158. "jupiter": {
  37159. name: "Jupiter"
  37160. },
  37161. "neptune": {
  37162. name: "Neptune"
  37163. }
  37164. }
  37165. ))
  37166. characterMakers.push(() => makeCharacter(
  37167. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37168. {
  37169. front: {
  37170. height: math.unit(16, "feet"),
  37171. weight: math.unit(610, "kg"),
  37172. name: "Front",
  37173. image: {
  37174. source: "./media/characters/huckle/front.svg",
  37175. extra: 1731/1625,
  37176. bottom: 33/1764
  37177. }
  37178. },
  37179. back: {
  37180. height: math.unit(16, "feet"),
  37181. weight: math.unit(610, "kg"),
  37182. name: "Back",
  37183. image: {
  37184. source: "./media/characters/huckle/back.svg",
  37185. extra: 1738/1651,
  37186. bottom: 37/1775
  37187. }
  37188. },
  37189. laughing: {
  37190. height: math.unit(3.75, "feet"),
  37191. name: "Laughing",
  37192. image: {
  37193. source: "./media/characters/huckle/laughing.svg"
  37194. }
  37195. },
  37196. angry: {
  37197. height: math.unit(4.15, "feet"),
  37198. name: "Angry",
  37199. image: {
  37200. source: "./media/characters/huckle/angry.svg"
  37201. }
  37202. },
  37203. },
  37204. [
  37205. {
  37206. name: "Normal",
  37207. height: math.unit(16, "feet"),
  37208. default: true
  37209. },
  37210. {
  37211. name: "Mini Macro",
  37212. height: math.unit(463, "feet")
  37213. },
  37214. {
  37215. name: "Macro",
  37216. height: math.unit(1680, "meters")
  37217. },
  37218. {
  37219. name: "Mega Macro",
  37220. height: math.unit(175, "km")
  37221. },
  37222. {
  37223. name: "Terra Macro",
  37224. height: math.unit(32, "gigameters")
  37225. },
  37226. {
  37227. name: "Multiverse+",
  37228. height: math.unit(2.56e23, "yottameters")
  37229. },
  37230. ]
  37231. ))
  37232. characterMakers.push(() => makeCharacter(
  37233. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37234. {
  37235. front: {
  37236. height: math.unit(6 + 9/12, "feet"),
  37237. weight: math.unit(280, "lb"),
  37238. name: "Front",
  37239. image: {
  37240. source: "./media/characters/candy/front.svg",
  37241. extra: 234/217,
  37242. bottom: 11/245
  37243. }
  37244. },
  37245. },
  37246. [
  37247. {
  37248. name: "Really Small",
  37249. height: math.unit(0.1, "nm")
  37250. },
  37251. {
  37252. name: "Micro",
  37253. height: math.unit(2, "inches")
  37254. },
  37255. {
  37256. name: "Normal",
  37257. height: math.unit(6 + 9/12, "feet"),
  37258. default: true
  37259. },
  37260. {
  37261. name: "Small Macro",
  37262. height: math.unit(69, "feet")
  37263. },
  37264. {
  37265. name: "Macro",
  37266. height: math.unit(160, "feet")
  37267. },
  37268. {
  37269. name: "Megamacro",
  37270. height: math.unit(22000, "miles")
  37271. },
  37272. {
  37273. name: "Gigamacro",
  37274. height: math.unit(50000, "miles")
  37275. },
  37276. ]
  37277. ))
  37278. characterMakers.push(() => makeCharacter(
  37279. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37280. {
  37281. front: {
  37282. height: math.unit(4, "feet"),
  37283. weight: math.unit(90, "lb"),
  37284. name: "Front",
  37285. image: {
  37286. source: "./media/characters/joey-mcdonald/front.svg",
  37287. extra: 1059/852,
  37288. bottom: 33/1092
  37289. }
  37290. },
  37291. back: {
  37292. height: math.unit(4, "feet"),
  37293. weight: math.unit(90, "lb"),
  37294. name: "Back",
  37295. image: {
  37296. source: "./media/characters/joey-mcdonald/back.svg",
  37297. extra: 1077/879,
  37298. bottom: 5/1082
  37299. }
  37300. },
  37301. frontKobold: {
  37302. height: math.unit(4, "feet"),
  37303. weight: math.unit(100, "lb"),
  37304. name: "Front-kobold",
  37305. image: {
  37306. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37307. extra: 1480/1367,
  37308. bottom: 0/1480
  37309. }
  37310. },
  37311. backKobold: {
  37312. height: math.unit(4, "feet"),
  37313. weight: math.unit(100, "lb"),
  37314. name: "Back-kobold",
  37315. image: {
  37316. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37317. extra: 1449/1361,
  37318. bottom: 0/1449
  37319. }
  37320. },
  37321. },
  37322. [
  37323. {
  37324. name: "Normal",
  37325. height: math.unit(4, "feet"),
  37326. default: true
  37327. },
  37328. ]
  37329. ))
  37330. characterMakers.push(() => makeCharacter(
  37331. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37332. {
  37333. front: {
  37334. height: math.unit(12 + 6/12, "feet"),
  37335. name: "Front",
  37336. image: {
  37337. source: "./media/characters/kass-lockheed/front.svg",
  37338. extra: 354/343,
  37339. bottom: 9/363
  37340. }
  37341. },
  37342. back: {
  37343. height: math.unit(12 + 6/12, "feet"),
  37344. name: "Back",
  37345. image: {
  37346. source: "./media/characters/kass-lockheed/back.svg",
  37347. extra: 364/352,
  37348. bottom: 3/367
  37349. }
  37350. },
  37351. dick: {
  37352. height: math.unit(3.12, "feet"),
  37353. name: "Dick",
  37354. image: {
  37355. source: "./media/characters/kass-lockheed/dick.svg"
  37356. }
  37357. },
  37358. head: {
  37359. height: math.unit(2.6, "feet"),
  37360. name: "Head",
  37361. image: {
  37362. source: "./media/characters/kass-lockheed/head.svg"
  37363. }
  37364. },
  37365. bleh: {
  37366. height: math.unit(2.85, "feet"),
  37367. name: "Bleh",
  37368. image: {
  37369. source: "./media/characters/kass-lockheed/bleh.svg"
  37370. }
  37371. },
  37372. smug: {
  37373. height: math.unit(2.85, "feet"),
  37374. name: "Smug",
  37375. image: {
  37376. source: "./media/characters/kass-lockheed/smug.svg"
  37377. }
  37378. },
  37379. },
  37380. [
  37381. {
  37382. name: "Normal",
  37383. height: math.unit(12 + 6/12, "feet"),
  37384. default: true
  37385. },
  37386. ]
  37387. ))
  37388. characterMakers.push(() => makeCharacter(
  37389. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37390. {
  37391. front: {
  37392. height: math.unit(6 + 2/12, "feet"),
  37393. name: "Front",
  37394. image: {
  37395. source: "./media/characters/taylor/front.svg",
  37396. extra: 639/495,
  37397. bottom: 12/651
  37398. }
  37399. },
  37400. },
  37401. [
  37402. {
  37403. name: "Normal",
  37404. height: math.unit(6 + 2/12, "feet"),
  37405. default: true
  37406. },
  37407. {
  37408. name: "Big",
  37409. height: math.unit(15, "feet")
  37410. },
  37411. {
  37412. name: "Lorg",
  37413. height: math.unit(80, "feet")
  37414. },
  37415. {
  37416. name: "Too Lorg",
  37417. height: math.unit(120, "feet")
  37418. },
  37419. ]
  37420. ))
  37421. characterMakers.push(() => makeCharacter(
  37422. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37423. {
  37424. front: {
  37425. height: math.unit(15, "feet"),
  37426. name: "Front",
  37427. image: {
  37428. source: "./media/characters/kaizer/front.svg",
  37429. extra: 1612/1436,
  37430. bottom: 43/1655
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Normal",
  37437. height: math.unit(15, "feet"),
  37438. default: true
  37439. },
  37440. ]
  37441. ))
  37442. characterMakers.push(() => makeCharacter(
  37443. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37444. {
  37445. front: {
  37446. height: math.unit(2, "feet"),
  37447. weight: math.unit(30, "lb"),
  37448. name: "Front",
  37449. image: {
  37450. source: "./media/characters/sandy/front.svg",
  37451. extra: 1439/1307,
  37452. bottom: 194/1633
  37453. }
  37454. },
  37455. },
  37456. [
  37457. {
  37458. name: "Normal",
  37459. height: math.unit(2, "feet"),
  37460. default: true
  37461. },
  37462. ]
  37463. ))
  37464. characterMakers.push(() => makeCharacter(
  37465. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37466. {
  37467. front: {
  37468. height: math.unit(3, "feet"),
  37469. name: "Front",
  37470. image: {
  37471. source: "./media/characters/mellvi/front.svg",
  37472. extra: 1831/1630,
  37473. bottom: 58/1889
  37474. }
  37475. },
  37476. },
  37477. [
  37478. {
  37479. name: "Normal",
  37480. height: math.unit(3, "feet"),
  37481. default: true
  37482. },
  37483. ]
  37484. ))
  37485. characterMakers.push(() => makeCharacter(
  37486. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37487. {
  37488. front: {
  37489. height: math.unit(5 + 11/12, "feet"),
  37490. weight: math.unit(200, "lb"),
  37491. name: "Front",
  37492. image: {
  37493. source: "./media/characters/shirou/front.svg",
  37494. extra: 2491/2383,
  37495. bottom: 189/2680
  37496. }
  37497. },
  37498. back: {
  37499. height: math.unit(5 + 11/12, "feet"),
  37500. weight: math.unit(200, "lb"),
  37501. name: "Back",
  37502. image: {
  37503. source: "./media/characters/shirou/back.svg",
  37504. extra: 2554/2450,
  37505. bottom: 76/2630
  37506. }
  37507. },
  37508. },
  37509. [
  37510. {
  37511. name: "Normal",
  37512. height: math.unit(5 + 11/12, "feet"),
  37513. default: true
  37514. },
  37515. ]
  37516. ))
  37517. characterMakers.push(() => makeCharacter(
  37518. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37519. {
  37520. front: {
  37521. height: math.unit(6 + 3/12, "feet"),
  37522. weight: math.unit(177, "lb"),
  37523. name: "Front",
  37524. image: {
  37525. source: "./media/characters/noryu/front.svg",
  37526. extra: 973/885,
  37527. bottom: 10/983
  37528. }
  37529. },
  37530. },
  37531. [
  37532. {
  37533. name: "Normal",
  37534. height: math.unit(6 + 3/12, "feet"),
  37535. default: true
  37536. },
  37537. ]
  37538. ))
  37539. characterMakers.push(() => makeCharacter(
  37540. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37541. {
  37542. front: {
  37543. height: math.unit(5 + 6/12, "feet"),
  37544. weight: math.unit(170, "lb"),
  37545. name: "Front",
  37546. image: {
  37547. source: "./media/characters/mevolas-rubenido/front.svg",
  37548. extra: 2109/1901,
  37549. bottom: 96/2205
  37550. }
  37551. },
  37552. },
  37553. [
  37554. {
  37555. name: "Normal",
  37556. height: math.unit(5 + 6/12, "feet"),
  37557. default: true
  37558. },
  37559. ]
  37560. ))
  37561. characterMakers.push(() => makeCharacter(
  37562. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37563. {
  37564. front: {
  37565. height: math.unit(100, "feet"),
  37566. name: "Front",
  37567. image: {
  37568. source: "./media/characters/dee/front.svg",
  37569. extra: 2153/2036,
  37570. bottom: 59/2212
  37571. }
  37572. },
  37573. back: {
  37574. height: math.unit(100, "feet"),
  37575. name: "Back",
  37576. image: {
  37577. source: "./media/characters/dee/back.svg",
  37578. extra: 2183/2058,
  37579. bottom: 75/2258
  37580. }
  37581. },
  37582. foot: {
  37583. height: math.unit(19.43, "feet"),
  37584. name: "Foot",
  37585. image: {
  37586. source: "./media/characters/dee/foot.svg"
  37587. }
  37588. },
  37589. hoof: {
  37590. height: math.unit(20.6, "feet"),
  37591. name: "Hoof",
  37592. image: {
  37593. source: "./media/characters/dee/hoof.svg"
  37594. }
  37595. },
  37596. },
  37597. [
  37598. {
  37599. name: "Macro",
  37600. height: math.unit(100, "feet"),
  37601. default: true
  37602. },
  37603. ]
  37604. ))
  37605. characterMakers.push(() => makeCharacter(
  37606. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37607. {
  37608. front: {
  37609. height: math.unit(5 + 6/12, "feet"),
  37610. name: "Front",
  37611. image: {
  37612. source: "./media/characters/teh/front.svg",
  37613. extra: 1002/847,
  37614. bottom: 62/1064
  37615. }
  37616. },
  37617. },
  37618. [
  37619. {
  37620. name: "Normal",
  37621. height: math.unit(5 + 6/12, "feet"),
  37622. default: true
  37623. },
  37624. ]
  37625. ))
  37626. characterMakers.push(() => makeCharacter(
  37627. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37628. {
  37629. side: {
  37630. height: math.unit(6 + 1/12, "feet"),
  37631. weight: math.unit(204, "lb"),
  37632. name: "Side",
  37633. image: {
  37634. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37635. extra: 974/775,
  37636. bottom: 169/1143
  37637. }
  37638. },
  37639. sitting: {
  37640. height: math.unit(6 + 2/12, "feet"),
  37641. weight: math.unit(204, "lb"),
  37642. name: "Sitting",
  37643. image: {
  37644. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37645. extra: 1175/964,
  37646. bottom: 378/1553
  37647. }
  37648. },
  37649. },
  37650. [
  37651. {
  37652. name: "Normal",
  37653. height: math.unit(6 + 1/12, "feet"),
  37654. default: true
  37655. },
  37656. ]
  37657. ))
  37658. characterMakers.push(() => makeCharacter(
  37659. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37660. {
  37661. front: {
  37662. height: math.unit(6, "inches"),
  37663. name: "Front",
  37664. image: {
  37665. source: "./media/characters/tululi/front.svg",
  37666. extra: 1997/1876,
  37667. bottom: 20/2017
  37668. }
  37669. },
  37670. },
  37671. [
  37672. {
  37673. name: "Normal",
  37674. height: math.unit(6, "inches"),
  37675. default: true
  37676. },
  37677. ]
  37678. ))
  37679. characterMakers.push(() => makeCharacter(
  37680. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37681. {
  37682. front: {
  37683. height: math.unit(4 + 1/12, "feet"),
  37684. name: "Front",
  37685. image: {
  37686. source: "./media/characters/star/front.svg",
  37687. extra: 1493/1189,
  37688. bottom: 48/1541
  37689. }
  37690. },
  37691. },
  37692. [
  37693. {
  37694. name: "Normal",
  37695. height: math.unit(4 + 1/12, "feet"),
  37696. default: true
  37697. },
  37698. ]
  37699. ))
  37700. characterMakers.push(() => makeCharacter(
  37701. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37702. {
  37703. front: {
  37704. height: math.unit(6 + 3/12, "feet"),
  37705. name: "Front",
  37706. image: {
  37707. source: "./media/characters/comet/front.svg",
  37708. extra: 1681/1462,
  37709. bottom: 26/1707
  37710. }
  37711. },
  37712. },
  37713. [
  37714. {
  37715. name: "Normal",
  37716. height: math.unit(6 + 3/12, "feet"),
  37717. default: true
  37718. },
  37719. ]
  37720. ))
  37721. characterMakers.push(() => makeCharacter(
  37722. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37723. {
  37724. front: {
  37725. height: math.unit(950, "feet"),
  37726. name: "Front",
  37727. image: {
  37728. source: "./media/characters/vortex/front.svg",
  37729. extra: 1497/1434,
  37730. bottom: 56/1553
  37731. }
  37732. },
  37733. maw: {
  37734. height: math.unit(285, "feet"),
  37735. name: "Maw",
  37736. image: {
  37737. source: "./media/characters/vortex/maw.svg"
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Macro",
  37744. height: math.unit(950, "feet"),
  37745. default: true
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37751. {
  37752. front: {
  37753. height: math.unit(600, "feet"),
  37754. weight: math.unit(0.02, "grams"),
  37755. name: "Front",
  37756. image: {
  37757. source: "./media/characters/doodle/front.svg",
  37758. extra: 1578/1413,
  37759. bottom: 37/1615
  37760. }
  37761. },
  37762. },
  37763. [
  37764. {
  37765. name: "Macro",
  37766. height: math.unit(600, "feet"),
  37767. default: true
  37768. },
  37769. ]
  37770. ))
  37771. characterMakers.push(() => makeCharacter(
  37772. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37773. {
  37774. front: {
  37775. height: math.unit(6 + 6/12, "feet"),
  37776. name: "Front",
  37777. image: {
  37778. source: "./media/characters/jai/front.svg",
  37779. extra: 1645/1534,
  37780. bottom: 115/1760
  37781. }
  37782. },
  37783. },
  37784. [
  37785. {
  37786. name: "Normal",
  37787. height: math.unit(6 + 6/12, "feet"),
  37788. default: true
  37789. },
  37790. ]
  37791. ))
  37792. characterMakers.push(() => makeCharacter(
  37793. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37794. {
  37795. front: {
  37796. height: math.unit(6 + 8/12, "feet"),
  37797. name: "Front",
  37798. image: {
  37799. source: "./media/characters/pixel/front.svg",
  37800. extra: 1900/1735,
  37801. bottom: 63/1963
  37802. }
  37803. },
  37804. },
  37805. [
  37806. {
  37807. name: "Normal",
  37808. height: math.unit(6 + 8/12, "feet"),
  37809. default: true
  37810. },
  37811. ]
  37812. ))
  37813. characterMakers.push(() => makeCharacter(
  37814. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37815. {
  37816. back: {
  37817. height: math.unit(4 + 1/12, "feet"),
  37818. weight: math.unit(75, "lb"),
  37819. name: "Back",
  37820. image: {
  37821. source: "./media/characters/rhett/back.svg",
  37822. extra: 930/878,
  37823. bottom: 25/955
  37824. }
  37825. },
  37826. front: {
  37827. height: math.unit(4 + 1/12, "feet"),
  37828. weight: math.unit(75, "lb"),
  37829. name: "Front",
  37830. image: {
  37831. source: "./media/characters/rhett/front.svg",
  37832. extra: 1682/1586,
  37833. bottom: 92/1774
  37834. }
  37835. },
  37836. },
  37837. [
  37838. {
  37839. name: "Micro",
  37840. height: math.unit(8, "inches")
  37841. },
  37842. {
  37843. name: "Tiny",
  37844. height: math.unit(2, "feet")
  37845. },
  37846. {
  37847. name: "Normal",
  37848. height: math.unit(4 + 1/12, "feet"),
  37849. default: true
  37850. },
  37851. ]
  37852. ))
  37853. characterMakers.push(() => makeCharacter(
  37854. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37855. {
  37856. front: {
  37857. height: math.unit(3 + 3/12, "feet"),
  37858. name: "Front",
  37859. image: {
  37860. source: "./media/characters/penny/front.svg",
  37861. extra: 1406/1311,
  37862. bottom: 26/1432
  37863. }
  37864. },
  37865. },
  37866. [
  37867. {
  37868. name: "Normal",
  37869. height: math.unit(3 + 3/12, "feet"),
  37870. default: true
  37871. },
  37872. ]
  37873. ))
  37874. characterMakers.push(() => makeCharacter(
  37875. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37876. {
  37877. front: {
  37878. height: math.unit(4 + 11/12, "feet"),
  37879. name: "Front",
  37880. image: {
  37881. source: "./media/characters/monty/front.svg",
  37882. extra: 1479/1209,
  37883. bottom: 0/1479
  37884. }
  37885. },
  37886. },
  37887. [
  37888. {
  37889. name: "Normal",
  37890. height: math.unit(4 + 11/12, "feet"),
  37891. default: true
  37892. },
  37893. ]
  37894. ))
  37895. characterMakers.push(() => makeCharacter(
  37896. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37897. {
  37898. front: {
  37899. height: math.unit(8 + 4/12, "feet"),
  37900. name: "Front",
  37901. image: {
  37902. source: "./media/characters/sterling/front.svg",
  37903. extra: 1420/1236,
  37904. bottom: 27/1447
  37905. }
  37906. },
  37907. },
  37908. [
  37909. {
  37910. name: "Normal",
  37911. height: math.unit(8 + 4/12, "feet"),
  37912. default: true
  37913. },
  37914. ]
  37915. ))
  37916. characterMakers.push(() => makeCharacter(
  37917. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37918. {
  37919. front: {
  37920. height: math.unit(15, "feet"),
  37921. name: "Front",
  37922. image: {
  37923. source: "./media/characters/marble/front.svg",
  37924. extra: 973/937,
  37925. bottom: 32/1005
  37926. }
  37927. },
  37928. },
  37929. [
  37930. {
  37931. name: "Normal",
  37932. height: math.unit(15, "feet"),
  37933. default: true
  37934. },
  37935. ]
  37936. ))
  37937. characterMakers.push(() => makeCharacter(
  37938. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37939. {
  37940. front: {
  37941. height: math.unit(3, "inches"),
  37942. name: "Front",
  37943. image: {
  37944. source: "./media/characters/powder/front.svg",
  37945. extra: 1504/1334,
  37946. bottom: 518/2022
  37947. }
  37948. },
  37949. },
  37950. [
  37951. {
  37952. name: "Normal",
  37953. height: math.unit(3, "inches"),
  37954. default: true
  37955. },
  37956. ]
  37957. ))
  37958. characterMakers.push(() => makeCharacter(
  37959. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37960. {
  37961. front: {
  37962. height: math.unit(4 + 5/12, "feet"),
  37963. name: "Front",
  37964. image: {
  37965. source: "./media/characters/joey-raccoon/front.svg",
  37966. extra: 1273/1197,
  37967. bottom: 0/1273
  37968. }
  37969. },
  37970. },
  37971. [
  37972. {
  37973. name: "Normal",
  37974. height: math.unit(4 + 5/12, "feet"),
  37975. default: true
  37976. },
  37977. ]
  37978. ))
  37979. characterMakers.push(() => makeCharacter(
  37980. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37981. {
  37982. front: {
  37983. height: math.unit(8 + 4/12, "feet"),
  37984. name: "Front",
  37985. image: {
  37986. source: "./media/characters/vick/front.svg",
  37987. extra: 2187/2118,
  37988. bottom: 47/2234
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(8 + 4/12, "feet"),
  37996. default: true
  37997. },
  37998. ]
  37999. ))
  38000. characterMakers.push(() => makeCharacter(
  38001. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38002. {
  38003. front: {
  38004. height: math.unit(5 + 5/12, "feet"),
  38005. name: "Front",
  38006. image: {
  38007. source: "./media/characters/mitsy/front.svg",
  38008. extra: 1842/1695,
  38009. bottom: 0/1842
  38010. }
  38011. },
  38012. },
  38013. [
  38014. {
  38015. name: "Normal",
  38016. height: math.unit(5 + 5/12, "feet"),
  38017. default: true
  38018. },
  38019. ]
  38020. ))
  38021. characterMakers.push(() => makeCharacter(
  38022. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38023. {
  38024. front: {
  38025. height: math.unit(6 + 3/12, "feet"),
  38026. name: "Front",
  38027. image: {
  38028. source: "./media/characters/silvy/front.svg",
  38029. extra: 1995/1836,
  38030. bottom: 225/2220
  38031. }
  38032. },
  38033. },
  38034. [
  38035. {
  38036. name: "Normal",
  38037. height: math.unit(6 + 3/12, "feet"),
  38038. default: true
  38039. },
  38040. ]
  38041. ))
  38042. characterMakers.push(() => makeCharacter(
  38043. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38044. {
  38045. front: {
  38046. height: math.unit(3 + 8/12, "feet"),
  38047. name: "Front",
  38048. image: {
  38049. source: "./media/characters/rodney/front.svg",
  38050. extra: 1956/1747,
  38051. bottom: 31/1987
  38052. }
  38053. },
  38054. frontDressed: {
  38055. height: math.unit(2.9, "feet"),
  38056. name: "Front (Dressed)",
  38057. image: {
  38058. source: "./media/characters/rodney/front-dressed.svg",
  38059. extra: 1382/1241,
  38060. bottom: 385/1767
  38061. }
  38062. },
  38063. },
  38064. [
  38065. {
  38066. name: "Normal",
  38067. height: math.unit(3 + 8/12, "feet"),
  38068. default: true
  38069. },
  38070. ]
  38071. ))
  38072. characterMakers.push(() => makeCharacter(
  38073. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38074. {
  38075. front: {
  38076. height: math.unit(5 + 9/12, "feet"),
  38077. weight: math.unit(194, "lbs"),
  38078. name: "Front",
  38079. image: {
  38080. source: "./media/characters/zakail-sudekai/front.svg",
  38081. extra: 2696/2533,
  38082. bottom: 248/2944
  38083. }
  38084. },
  38085. maw: {
  38086. height: math.unit(1.35, "feet"),
  38087. name: "Maw",
  38088. image: {
  38089. source: "./media/characters/zakail-sudekai/maw.svg"
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Normal",
  38096. height: math.unit(5 + 9/12, "feet"),
  38097. default: true
  38098. },
  38099. ]
  38100. ))
  38101. characterMakers.push(() => makeCharacter(
  38102. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38103. {
  38104. front: {
  38105. height: math.unit(8 + 4/12, "feet"),
  38106. weight: math.unit(1200, "lb"),
  38107. name: "Front",
  38108. image: {
  38109. source: "./media/characters/eleanor/front.svg",
  38110. extra: 1226/1192,
  38111. bottom: 52/1278
  38112. }
  38113. },
  38114. back: {
  38115. height: math.unit(8 + 4/12, "feet"),
  38116. weight: math.unit(1200, "lb"),
  38117. name: "Back",
  38118. image: {
  38119. source: "./media/characters/eleanor/back.svg",
  38120. extra: 1242/1184,
  38121. bottom: 60/1302
  38122. }
  38123. },
  38124. head: {
  38125. height: math.unit(2.62, "feet"),
  38126. name: "Head",
  38127. image: {
  38128. source: "./media/characters/eleanor/head.svg"
  38129. }
  38130. },
  38131. },
  38132. [
  38133. {
  38134. name: "Normal",
  38135. height: math.unit(8 + 4/12, "feet"),
  38136. default: true
  38137. },
  38138. ]
  38139. ))
  38140. characterMakers.push(() => makeCharacter(
  38141. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38142. {
  38143. front: {
  38144. height: math.unit(8 + 4/12, "feet"),
  38145. weight: math.unit(750, "lb"),
  38146. name: "Front",
  38147. image: {
  38148. source: "./media/characters/tanya/front.svg",
  38149. extra: 1749/1615,
  38150. bottom: 33/1782
  38151. }
  38152. },
  38153. },
  38154. [
  38155. {
  38156. name: "Normal",
  38157. height: math.unit(8 + 4/12, "feet"),
  38158. default: true
  38159. },
  38160. ]
  38161. ))
  38162. characterMakers.push(() => makeCharacter(
  38163. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38164. {
  38165. front: {
  38166. height: math.unit(5, "feet"),
  38167. weight: math.unit(225, "lb"),
  38168. name: "Front",
  38169. image: {
  38170. source: "./media/characters/cindy/front.svg",
  38171. extra: 1320/1250,
  38172. bottom: 42/1362
  38173. }
  38174. },
  38175. frontDressed: {
  38176. height: math.unit(5, "feet"),
  38177. weight: math.unit(225, "lb"),
  38178. name: "Front (Dressed)",
  38179. image: {
  38180. source: "./media/characters/cindy/front-dressed.svg",
  38181. extra: 1320/1250,
  38182. bottom: 42/1362
  38183. }
  38184. },
  38185. back: {
  38186. height: math.unit(5, "feet"),
  38187. weight: math.unit(225, "lb"),
  38188. name: "Back",
  38189. image: {
  38190. source: "./media/characters/cindy/back.svg",
  38191. extra: 1384/1346,
  38192. bottom: 14/1398
  38193. }
  38194. },
  38195. },
  38196. [
  38197. {
  38198. name: "Normal",
  38199. height: math.unit(5, "feet"),
  38200. default: true
  38201. },
  38202. ]
  38203. ))
  38204. characterMakers.push(() => makeCharacter(
  38205. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38206. {
  38207. front: {
  38208. height: math.unit(6 + 9/12, "feet"),
  38209. weight: math.unit(440, "lb"),
  38210. name: "Front",
  38211. image: {
  38212. source: "./media/characters/wilbur-owen/front.svg",
  38213. extra: 1575/1448,
  38214. bottom: 72/1647
  38215. }
  38216. },
  38217. back: {
  38218. height: math.unit(6 + 9/12, "feet"),
  38219. weight: math.unit(440, "lb"),
  38220. name: "Back",
  38221. image: {
  38222. source: "./media/characters/wilbur-owen/back.svg",
  38223. extra: 1578/1445,
  38224. bottom: 36/1614
  38225. }
  38226. },
  38227. },
  38228. [
  38229. {
  38230. name: "Normal",
  38231. height: math.unit(6 + 9/12, "feet"),
  38232. default: true
  38233. },
  38234. ]
  38235. ))
  38236. characterMakers.push(() => makeCharacter(
  38237. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38238. {
  38239. front: {
  38240. height: math.unit(6 + 5/12, "feet"),
  38241. weight: math.unit(650, "lb"),
  38242. name: "Front",
  38243. image: {
  38244. source: "./media/characters/keegan/front.svg",
  38245. extra: 2387/2198,
  38246. bottom: 33/2420
  38247. }
  38248. },
  38249. side: {
  38250. height: math.unit(6 + 5/12, "feet"),
  38251. weight: math.unit(650, "lb"),
  38252. name: "Side",
  38253. image: {
  38254. source: "./media/characters/keegan/side.svg",
  38255. extra: 2390/2202,
  38256. bottom: 47/2437
  38257. }
  38258. },
  38259. back: {
  38260. height: math.unit(6 + 5/12, "feet"),
  38261. weight: math.unit(650, "lb"),
  38262. name: "Back",
  38263. image: {
  38264. source: "./media/characters/keegan/back.svg",
  38265. extra: 2418/2268,
  38266. bottom: 15/2433
  38267. }
  38268. },
  38269. frontSfw: {
  38270. height: math.unit(6 + 5/12, "feet"),
  38271. weight: math.unit(650, "lb"),
  38272. name: "Front (SFW)",
  38273. image: {
  38274. source: "./media/characters/keegan/front-sfw.svg",
  38275. extra: 2387/2198,
  38276. bottom: 33/2420
  38277. }
  38278. },
  38279. beans: {
  38280. height: math.unit(1.85, "feet"),
  38281. name: "Beans",
  38282. image: {
  38283. source: "./media/characters/keegan/beans.svg"
  38284. }
  38285. },
  38286. },
  38287. [
  38288. {
  38289. name: "Normal",
  38290. height: math.unit(6 + 5/12, "feet"),
  38291. default: true
  38292. },
  38293. ]
  38294. ))
  38295. characterMakers.push(() => makeCharacter(
  38296. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38297. {
  38298. front: {
  38299. height: math.unit(9, "feet"),
  38300. name: "Front",
  38301. image: {
  38302. source: "./media/characters/colton/front.svg",
  38303. extra: 1589/1326,
  38304. bottom: 139/1728
  38305. }
  38306. },
  38307. },
  38308. [
  38309. {
  38310. name: "Normal",
  38311. height: math.unit(9, "feet"),
  38312. default: true
  38313. },
  38314. ]
  38315. ))
  38316. characterMakers.push(() => makeCharacter(
  38317. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38318. {
  38319. front: {
  38320. height: math.unit(2 + 9/12, "feet"),
  38321. name: "Front",
  38322. image: {
  38323. source: "./media/characters/bora/front.svg",
  38324. extra: 1265/1250,
  38325. bottom: 24/1289
  38326. }
  38327. },
  38328. },
  38329. [
  38330. {
  38331. name: "Normal",
  38332. height: math.unit(2 + 9/12, "feet"),
  38333. default: true
  38334. },
  38335. ]
  38336. ))
  38337. characterMakers.push(() => makeCharacter(
  38338. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38339. {
  38340. front: {
  38341. height: math.unit(8, "feet"),
  38342. name: "Front",
  38343. image: {
  38344. source: "./media/characters/myu-myu/front.svg",
  38345. extra: 1949/1857,
  38346. bottom: 90/2039
  38347. }
  38348. },
  38349. },
  38350. [
  38351. {
  38352. name: "Normal",
  38353. height: math.unit(8, "feet"),
  38354. default: true
  38355. },
  38356. {
  38357. name: "Big",
  38358. height: math.unit(15, "feet")
  38359. },
  38360. {
  38361. name: "BIG",
  38362. height: math.unit(25, "feet")
  38363. },
  38364. ]
  38365. ))
  38366. characterMakers.push(() => makeCharacter(
  38367. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38368. {
  38369. side: {
  38370. height: math.unit(7 + 5/12, "feet"),
  38371. weight: math.unit(2800, "lb"),
  38372. name: "Side",
  38373. image: {
  38374. source: "./media/characters/haloren/side.svg",
  38375. extra: 1793/409,
  38376. bottom: 59/1852
  38377. }
  38378. },
  38379. frontPaw: {
  38380. height: math.unit(2.36, "feet"),
  38381. name: "Front paw",
  38382. image: {
  38383. source: "./media/characters/haloren/front-paw.svg"
  38384. }
  38385. },
  38386. hindPaw: {
  38387. height: math.unit(3.18, "feet"),
  38388. name: "Hind paw",
  38389. image: {
  38390. source: "./media/characters/haloren/hind-paw.svg"
  38391. }
  38392. },
  38393. maw: {
  38394. height: math.unit(5.05, "feet"),
  38395. name: "Maw",
  38396. image: {
  38397. source: "./media/characters/haloren/maw.svg"
  38398. }
  38399. },
  38400. dick: {
  38401. height: math.unit(2.90, "feet"),
  38402. name: "Dick",
  38403. image: {
  38404. source: "./media/characters/haloren/dick.svg"
  38405. }
  38406. },
  38407. },
  38408. [
  38409. {
  38410. name: "Normal",
  38411. height: math.unit(7 + 5/12, "feet"),
  38412. default: true
  38413. },
  38414. {
  38415. name: "Enhanced",
  38416. height: math.unit(14 + 3/12, "feet")
  38417. },
  38418. ]
  38419. ))
  38420. characterMakers.push(() => makeCharacter(
  38421. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38422. {
  38423. front: {
  38424. height: math.unit(171, "cm"),
  38425. name: "Front",
  38426. image: {
  38427. source: "./media/characters/kimmy/front.svg",
  38428. extra: 1491/1435,
  38429. bottom: 53/1544
  38430. }
  38431. },
  38432. },
  38433. [
  38434. {
  38435. name: "Small",
  38436. height: math.unit(9, "cm")
  38437. },
  38438. {
  38439. name: "Normal",
  38440. height: math.unit(171, "cm"),
  38441. default: true
  38442. },
  38443. ]
  38444. ))
  38445. characterMakers.push(() => makeCharacter(
  38446. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38447. {
  38448. front: {
  38449. height: math.unit(8, "feet"),
  38450. weight: math.unit(300, "lb"),
  38451. name: "Front",
  38452. image: {
  38453. source: "./media/characters/galeboomer/front.svg",
  38454. extra: 4651/4415,
  38455. bottom: 162/4813
  38456. }
  38457. },
  38458. back: {
  38459. height: math.unit(8, "feet"),
  38460. weight: math.unit(300, "lb"),
  38461. name: "Back",
  38462. image: {
  38463. source: "./media/characters/galeboomer/back.svg",
  38464. extra: 4544/4314,
  38465. bottom: 16/4560
  38466. }
  38467. },
  38468. frontAlt: {
  38469. height: math.unit(8, "feet"),
  38470. weight: math.unit(300, "lb"),
  38471. name: "Front (Alt)",
  38472. image: {
  38473. source: "./media/characters/galeboomer/front-alt.svg",
  38474. extra: 4458/4228,
  38475. bottom: 68/4526
  38476. }
  38477. },
  38478. maw: {
  38479. height: math.unit(1.2, "feet"),
  38480. name: "Maw",
  38481. image: {
  38482. source: "./media/characters/galeboomer/maw.svg"
  38483. }
  38484. },
  38485. },
  38486. [
  38487. {
  38488. name: "Normal",
  38489. height: math.unit(8, "feet"),
  38490. default: true
  38491. },
  38492. ]
  38493. ))
  38494. characterMakers.push(() => makeCharacter(
  38495. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38496. {
  38497. front: {
  38498. height: math.unit(5 + 9/12, "feet"),
  38499. weight: math.unit(120, "lb"),
  38500. name: "Front",
  38501. image: {
  38502. source: "./media/characters/chyr/front.svg",
  38503. extra: 1323/1254,
  38504. bottom: 63/1386
  38505. }
  38506. },
  38507. back: {
  38508. height: math.unit(5 + 9/12, "feet"),
  38509. weight: math.unit(120, "lb"),
  38510. name: "Back",
  38511. image: {
  38512. source: "./media/characters/chyr/back.svg",
  38513. extra: 1323/1252,
  38514. bottom: 48/1371
  38515. }
  38516. },
  38517. },
  38518. [
  38519. {
  38520. name: "Normal",
  38521. height: math.unit(5 + 9/12, "feet"),
  38522. default: true
  38523. },
  38524. ]
  38525. ))
  38526. characterMakers.push(() => makeCharacter(
  38527. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38528. {
  38529. front: {
  38530. height: math.unit(7, "feet"),
  38531. weight: math.unit(310, "lb"),
  38532. name: "Front",
  38533. image: {
  38534. source: "./media/characters/solarus/front.svg",
  38535. extra: 2415/2021,
  38536. bottom: 103/2518
  38537. }
  38538. },
  38539. back: {
  38540. height: math.unit(7, "feet"),
  38541. weight: math.unit(310, "lb"),
  38542. name: "Back",
  38543. image: {
  38544. source: "./media/characters/solarus/back.svg",
  38545. extra: 2463/2089,
  38546. bottom: 79/2542
  38547. }
  38548. },
  38549. },
  38550. [
  38551. {
  38552. name: "Normal",
  38553. height: math.unit(7, "feet"),
  38554. default: true
  38555. },
  38556. ]
  38557. ))
  38558. characterMakers.push(() => makeCharacter(
  38559. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38560. {
  38561. front: {
  38562. height: math.unit(16, "feet"),
  38563. name: "Front",
  38564. image: {
  38565. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38566. extra: 1844/1780,
  38567. bottom: 58/1902
  38568. }
  38569. },
  38570. winterCoat: {
  38571. height: math.unit(16, "feet"),
  38572. name: "Winter Coat",
  38573. image: {
  38574. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38575. extra: 1807/1775,
  38576. bottom: 69/1876
  38577. }
  38578. },
  38579. },
  38580. [
  38581. {
  38582. name: "Normal",
  38583. height: math.unit(16, "feet"),
  38584. default: true
  38585. },
  38586. {
  38587. name: "Chicago Size",
  38588. height: math.unit(560, "feet")
  38589. },
  38590. ]
  38591. ))
  38592. characterMakers.push(() => makeCharacter(
  38593. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38594. {
  38595. front: {
  38596. height: math.unit(11 + 6/12, "feet"),
  38597. weight: math.unit(1366, "lb"),
  38598. name: "Front",
  38599. image: {
  38600. source: "./media/characters/lexor/front.svg",
  38601. extra: 1560/1481,
  38602. bottom: 211/1771
  38603. }
  38604. },
  38605. back: {
  38606. height: math.unit(11 + 6/12, "feet"),
  38607. weight: math.unit(1366, "lb"),
  38608. name: "Back",
  38609. image: {
  38610. source: "./media/characters/lexor/back.svg",
  38611. extra: 1614/1533,
  38612. bottom: 76/1690
  38613. }
  38614. },
  38615. maw: {
  38616. height: math.unit(3, "feet"),
  38617. name: "Maw",
  38618. image: {
  38619. source: "./media/characters/lexor/maw.svg"
  38620. }
  38621. },
  38622. dick: {
  38623. height: math.unit(2.59, "feet"),
  38624. name: "Dick",
  38625. image: {
  38626. source: "./media/characters/lexor/dick.svg"
  38627. }
  38628. },
  38629. },
  38630. [
  38631. {
  38632. name: "Normal",
  38633. height: math.unit(11 + 6/12, "feet"),
  38634. default: true
  38635. },
  38636. ]
  38637. ))
  38638. characterMakers.push(() => makeCharacter(
  38639. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38640. {
  38641. front: {
  38642. height: math.unit(5 + 8/12, "feet"),
  38643. name: "Front",
  38644. image: {
  38645. source: "./media/characters/magnum/front.svg",
  38646. extra: 942/855,
  38647. bottom: 26/968
  38648. }
  38649. },
  38650. },
  38651. [
  38652. {
  38653. name: "Normal",
  38654. height: math.unit(5 + 8/12, "feet"),
  38655. default: true
  38656. },
  38657. ]
  38658. ))
  38659. characterMakers.push(() => makeCharacter(
  38660. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38661. {
  38662. front: {
  38663. height: math.unit(18 + 4/12, "feet"),
  38664. weight: math.unit(1500, "kg"),
  38665. name: "Front",
  38666. image: {
  38667. source: "./media/characters/solas-sharpsman/front.svg",
  38668. extra: 1698/1589,
  38669. bottom: 0/1698
  38670. }
  38671. },
  38672. },
  38673. [
  38674. {
  38675. name: "Normal",
  38676. height: math.unit(18 + 4/12, "feet"),
  38677. default: true
  38678. },
  38679. ]
  38680. ))
  38681. characterMakers.push(() => makeCharacter(
  38682. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38683. {
  38684. front: {
  38685. height: math.unit(5 + 5/12, "feet"),
  38686. weight: math.unit(180, "lb"),
  38687. name: "Front",
  38688. image: {
  38689. source: "./media/characters/october/front.svg",
  38690. extra: 1800/1650,
  38691. bottom: 0/1800
  38692. }
  38693. },
  38694. frontNsfw: {
  38695. height: math.unit(5 + 5/12, "feet"),
  38696. weight: math.unit(180, "lb"),
  38697. name: "Front (NSFW)",
  38698. image: {
  38699. source: "./media/characters/october/front-nsfw.svg",
  38700. extra: 1392/1307,
  38701. bottom: 42/1434
  38702. }
  38703. },
  38704. },
  38705. [
  38706. {
  38707. name: "Normal",
  38708. height: math.unit(5 + 5/12, "feet"),
  38709. default: true
  38710. },
  38711. ]
  38712. ))
  38713. characterMakers.push(() => makeCharacter(
  38714. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38715. {
  38716. front: {
  38717. height: math.unit(8 + 6/12, "feet"),
  38718. name: "Front",
  38719. image: {
  38720. source: "./media/characters/essynkardi/front.svg",
  38721. extra: 1914/1846,
  38722. bottom: 22/1936
  38723. }
  38724. },
  38725. },
  38726. [
  38727. {
  38728. name: "Normal",
  38729. height: math.unit(8 + 6/12, "feet"),
  38730. default: true
  38731. },
  38732. ]
  38733. ))
  38734. characterMakers.push(() => makeCharacter(
  38735. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38736. {
  38737. front: {
  38738. height: math.unit(6 + 6/12, "feet"),
  38739. weight: math.unit(7, "lb"),
  38740. name: "Front",
  38741. image: {
  38742. source: "./media/characters/icky/front.svg",
  38743. extra: 813/782,
  38744. bottom: 66/879
  38745. }
  38746. },
  38747. back: {
  38748. height: math.unit(6 + 6/12, "feet"),
  38749. weight: math.unit(7, "lb"),
  38750. name: "Back",
  38751. image: {
  38752. source: "./media/characters/icky/back.svg",
  38753. extra: 754/735,
  38754. bottom: 56/810
  38755. }
  38756. },
  38757. },
  38758. [
  38759. {
  38760. name: "Normal",
  38761. height: math.unit(6 + 6/12, "feet"),
  38762. default: true
  38763. },
  38764. ]
  38765. ))
  38766. characterMakers.push(() => makeCharacter(
  38767. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38768. {
  38769. front: {
  38770. height: math.unit(15, "feet"),
  38771. name: "Front",
  38772. image: {
  38773. source: "./media/characters/rojas/front.svg",
  38774. extra: 1462/1408,
  38775. bottom: 95/1557
  38776. }
  38777. },
  38778. back: {
  38779. height: math.unit(15, "feet"),
  38780. name: "Back",
  38781. image: {
  38782. source: "./media/characters/rojas/back.svg",
  38783. extra: 1023/954,
  38784. bottom: 28/1051
  38785. }
  38786. },
  38787. },
  38788. [
  38789. {
  38790. name: "Normal",
  38791. height: math.unit(15, "feet"),
  38792. default: true
  38793. },
  38794. ]
  38795. ))
  38796. characterMakers.push(() => makeCharacter(
  38797. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38798. {
  38799. frontHuman: {
  38800. height: math.unit(5 + 7/12, "feet"),
  38801. name: "Front (Human)",
  38802. image: {
  38803. source: "./media/characters/alek-dryagan/front-human.svg",
  38804. extra: 1687/1667,
  38805. bottom: 69/1756
  38806. }
  38807. },
  38808. backHuman: {
  38809. height: math.unit(5 + 7/12, "feet"),
  38810. name: "Back (Human)",
  38811. image: {
  38812. source: "./media/characters/alek-dryagan/back-human.svg",
  38813. extra: 1670/1649,
  38814. bottom: 65/1735
  38815. }
  38816. },
  38817. frontDemi: {
  38818. height: math.unit(65, "feet"),
  38819. name: "Front (Demi)",
  38820. image: {
  38821. source: "./media/characters/alek-dryagan/front-demi.svg",
  38822. extra: 1669/1642,
  38823. bottom: 49/1718
  38824. }
  38825. },
  38826. backDemi: {
  38827. height: math.unit(65, "feet"),
  38828. name: "Back (Demi)",
  38829. image: {
  38830. source: "./media/characters/alek-dryagan/back-demi.svg",
  38831. extra: 1658/1637,
  38832. bottom: 40/1698
  38833. }
  38834. },
  38835. mawHuman: {
  38836. height: math.unit(0.3, "feet"),
  38837. name: "Maw (Human)",
  38838. image: {
  38839. source: "./media/characters/alek-dryagan/maw-human.svg"
  38840. }
  38841. },
  38842. mawDemi: {
  38843. height: math.unit(3.8, "feet"),
  38844. name: "Maw (Demi)",
  38845. image: {
  38846. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38847. }
  38848. },
  38849. },
  38850. [
  38851. {
  38852. name: "Normal",
  38853. height: math.unit(5 + 7/12, "feet"),
  38854. default: true
  38855. },
  38856. ]
  38857. ))
  38858. characterMakers.push(() => makeCharacter(
  38859. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38860. {
  38861. frontHuman: {
  38862. height: math.unit(5 + 2/12, "feet"),
  38863. name: "Front (Human)",
  38864. image: {
  38865. source: "./media/characters/gen/front-human.svg",
  38866. extra: 1627/1538,
  38867. bottom: 71/1698
  38868. }
  38869. },
  38870. backHuman: {
  38871. height: math.unit(5 + 2/12, "feet"),
  38872. name: "Back (Human)",
  38873. image: {
  38874. source: "./media/characters/gen/back-human.svg",
  38875. extra: 1638/1548,
  38876. bottom: 69/1707
  38877. }
  38878. },
  38879. frontDemi: {
  38880. height: math.unit(5 + 2/12, "feet"),
  38881. name: "Front (Demi)",
  38882. image: {
  38883. source: "./media/characters/gen/front-demi.svg",
  38884. extra: 1627/1538,
  38885. bottom: 71/1698
  38886. }
  38887. },
  38888. backDemi: {
  38889. height: math.unit(5 + 2/12, "feet"),
  38890. name: "Back (Demi)",
  38891. image: {
  38892. source: "./media/characters/gen/back-demi.svg",
  38893. extra: 1638/1548,
  38894. bottom: 69/1707
  38895. }
  38896. },
  38897. },
  38898. [
  38899. {
  38900. name: "Normal",
  38901. height: math.unit(5 + 2/12, "feet"),
  38902. default: true
  38903. },
  38904. ]
  38905. ))
  38906. characterMakers.push(() => makeCharacter(
  38907. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38908. {
  38909. frontImp: {
  38910. height: math.unit(1 + 11/12, "feet"),
  38911. name: "Front (Imp)",
  38912. image: {
  38913. source: "./media/characters/max-kobold/front-imp.svg",
  38914. extra: 1238/1134,
  38915. bottom: 81/1319
  38916. }
  38917. },
  38918. backImp: {
  38919. height: math.unit(1 + 11/12, "feet"),
  38920. name: "Back (Imp)",
  38921. image: {
  38922. source: "./media/characters/max-kobold/back-imp.svg",
  38923. extra: 1334/1175,
  38924. bottom: 34/1368
  38925. }
  38926. },
  38927. frontDemi: {
  38928. height: math.unit(5 + 9/12, "feet"),
  38929. name: "Front (Demi)",
  38930. image: {
  38931. source: "./media/characters/max-kobold/front-demi.svg",
  38932. extra: 1715/1685,
  38933. bottom: 54/1769
  38934. }
  38935. },
  38936. backDemi: {
  38937. height: math.unit(5 + 9/12, "feet"),
  38938. name: "Back (Demi)",
  38939. image: {
  38940. source: "./media/characters/max-kobold/back-demi.svg",
  38941. extra: 1752/1729,
  38942. bottom: 41/1793
  38943. }
  38944. },
  38945. handImp: {
  38946. height: math.unit(0.45, "feet"),
  38947. name: "Hand (Imp)",
  38948. image: {
  38949. source: "./media/characters/max-kobold/hand.svg"
  38950. }
  38951. },
  38952. pawImp: {
  38953. height: math.unit(0.46, "feet"),
  38954. name: "Paw (Imp)",
  38955. image: {
  38956. source: "./media/characters/max-kobold/paw.svg"
  38957. }
  38958. },
  38959. handDemi: {
  38960. height: math.unit(0.80, "feet"),
  38961. name: "Hand (Demi)",
  38962. image: {
  38963. source: "./media/characters/max-kobold/hand.svg"
  38964. }
  38965. },
  38966. pawDemi: {
  38967. height: math.unit(1.1, "feet"),
  38968. name: "Paw (Demi)",
  38969. image: {
  38970. source: "./media/characters/max-kobold/paw.svg"
  38971. }
  38972. },
  38973. headImp: {
  38974. height: math.unit(1.33, "feet"),
  38975. name: "Head (Imp)",
  38976. image: {
  38977. source: "./media/characters/max-kobold/head-imp.svg"
  38978. }
  38979. },
  38980. mawImp: {
  38981. height: math.unit(0.75, "feet"),
  38982. name: "Maw (Imp)",
  38983. image: {
  38984. source: "./media/characters/max-kobold/maw-imp.svg"
  38985. }
  38986. },
  38987. mawDemi: {
  38988. height: math.unit(0.42, "feet"),
  38989. name: "Maw (Demi)",
  38990. image: {
  38991. source: "./media/characters/max-kobold/maw-demi.svg"
  38992. }
  38993. },
  38994. },
  38995. [
  38996. {
  38997. name: "Normal",
  38998. height: math.unit(1 + 11/12, "feet"),
  38999. default: true
  39000. },
  39001. ]
  39002. ))
  39003. characterMakers.push(() => makeCharacter(
  39004. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39005. {
  39006. front: {
  39007. height: math.unit(7 + 5/12, "feet"),
  39008. name: "Front",
  39009. image: {
  39010. source: "./media/characters/carbon/front.svg",
  39011. extra: 1754/1689,
  39012. bottom: 65/1819
  39013. }
  39014. },
  39015. back: {
  39016. height: math.unit(7 + 5/12, "feet"),
  39017. name: "Back",
  39018. image: {
  39019. source: "./media/characters/carbon/back.svg",
  39020. extra: 1762/1695,
  39021. bottom: 24/1786
  39022. }
  39023. },
  39024. frontGigantamax: {
  39025. height: math.unit(150, "feet"),
  39026. name: "Front (Gigantamax)",
  39027. image: {
  39028. source: "./media/characters/carbon/front-gigantamax.svg",
  39029. extra: 1826/1669,
  39030. bottom: 59/1885
  39031. }
  39032. },
  39033. backGigantamax: {
  39034. height: math.unit(150, "feet"),
  39035. name: "Back (Gigantamax)",
  39036. image: {
  39037. source: "./media/characters/carbon/back-gigantamax.svg",
  39038. extra: 1796/1653,
  39039. bottom: 53/1849
  39040. }
  39041. },
  39042. maw: {
  39043. height: math.unit(0.48, "feet"),
  39044. name: "Maw",
  39045. image: {
  39046. source: "./media/characters/carbon/maw.svg"
  39047. }
  39048. },
  39049. mawGigantamax: {
  39050. height: math.unit(7.5, "feet"),
  39051. name: "Maw (Gigantamax)",
  39052. image: {
  39053. source: "./media/characters/carbon/maw-gigantamax.svg"
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Normal",
  39060. height: math.unit(7 + 5/12, "feet"),
  39061. default: true
  39062. },
  39063. ]
  39064. ))
  39065. characterMakers.push(() => makeCharacter(
  39066. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39067. {
  39068. front: {
  39069. height: math.unit(6, "feet"),
  39070. name: "Front",
  39071. image: {
  39072. source: "./media/characters/maverick/front.svg",
  39073. extra: 1672/1661,
  39074. bottom: 85/1757
  39075. }
  39076. },
  39077. back: {
  39078. height: math.unit(6, "feet"),
  39079. name: "Back",
  39080. image: {
  39081. source: "./media/characters/maverick/back.svg",
  39082. extra: 1642/1631,
  39083. bottom: 38/1680
  39084. }
  39085. },
  39086. },
  39087. [
  39088. {
  39089. name: "Normal",
  39090. height: math.unit(6, "feet"),
  39091. default: true
  39092. },
  39093. ]
  39094. ))
  39095. characterMakers.push(() => makeCharacter(
  39096. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39097. {
  39098. front: {
  39099. height: math.unit(15, "feet"),
  39100. weight: math.unit(615, "lb"),
  39101. name: "Front",
  39102. image: {
  39103. source: "./media/characters/grockle/front.svg",
  39104. extra: 1535/1427,
  39105. bottom: 56/1591
  39106. }
  39107. },
  39108. },
  39109. [
  39110. {
  39111. name: "Normal",
  39112. height: math.unit(15, "feet"),
  39113. default: true
  39114. },
  39115. {
  39116. name: "Large",
  39117. height: math.unit(150, "feet")
  39118. },
  39119. {
  39120. name: "Macro",
  39121. height: math.unit(1876, "feet")
  39122. },
  39123. {
  39124. name: "Mega Macro",
  39125. height: math.unit(121940, "feet")
  39126. },
  39127. {
  39128. name: "Giga Macro",
  39129. height: math.unit(750, "km")
  39130. },
  39131. {
  39132. name: "Tera Macro",
  39133. height: math.unit(750000, "km")
  39134. },
  39135. {
  39136. name: "Galactic",
  39137. height: math.unit(1.4e5, "km")
  39138. },
  39139. {
  39140. name: "Godlike",
  39141. height: math.unit(9.8e280, "galaxies")
  39142. },
  39143. ]
  39144. ))
  39145. characterMakers.push(() => makeCharacter(
  39146. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39147. {
  39148. front: {
  39149. height: math.unit(11, "meters"),
  39150. weight: math.unit(20, "tonnes"),
  39151. name: "Front",
  39152. image: {
  39153. source: "./media/characters/alistair/front.svg",
  39154. extra: 1265/1009,
  39155. bottom: 93/1358
  39156. }
  39157. },
  39158. },
  39159. [
  39160. {
  39161. name: "Normal",
  39162. height: math.unit(11, "meters"),
  39163. default: true
  39164. },
  39165. ]
  39166. ))
  39167. characterMakers.push(() => makeCharacter(
  39168. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39169. {
  39170. front: {
  39171. height: math.unit(5 + 8/12, "feet"),
  39172. name: "Front",
  39173. image: {
  39174. source: "./media/characters/haruka/front.svg",
  39175. extra: 2012/1952,
  39176. bottom: 0/2012
  39177. }
  39178. },
  39179. },
  39180. [
  39181. {
  39182. name: "Normal",
  39183. height: math.unit(5 + 8/12, "feet"),
  39184. default: true
  39185. },
  39186. ]
  39187. ))
  39188. characterMakers.push(() => makeCharacter(
  39189. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39190. {
  39191. back: {
  39192. height: math.unit(9, "feet"),
  39193. name: "Back",
  39194. image: {
  39195. source: "./media/characters/vivian-sylveon/back.svg",
  39196. extra: 1853/1714,
  39197. bottom: 0/1853
  39198. }
  39199. },
  39200. },
  39201. [
  39202. {
  39203. name: "Normal",
  39204. height: math.unit(9, "feet"),
  39205. default: true
  39206. },
  39207. {
  39208. name: "Macro",
  39209. height: math.unit(500, "feet")
  39210. },
  39211. {
  39212. name: "Megamacro",
  39213. height: math.unit(600, "miles")
  39214. },
  39215. {
  39216. name: "Gigamacro",
  39217. height: math.unit(30000, "miles")
  39218. },
  39219. ]
  39220. ))
  39221. characterMakers.push(() => makeCharacter(
  39222. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39223. {
  39224. anthro: {
  39225. height: math.unit(5 + 10/12, "feet"),
  39226. weight: math.unit(100, "lb"),
  39227. name: "Anthro",
  39228. image: {
  39229. source: "./media/characters/daiki/anthro.svg",
  39230. extra: 1115/1027,
  39231. bottom: 69/1184
  39232. }
  39233. },
  39234. feral: {
  39235. height: math.unit(200, "feet"),
  39236. name: "Feral",
  39237. image: {
  39238. source: "./media/characters/daiki/feral.svg",
  39239. extra: 1256/313,
  39240. bottom: 39/1295
  39241. }
  39242. },
  39243. feralHead: {
  39244. height: math.unit(171, "feet"),
  39245. name: "Feral Head",
  39246. image: {
  39247. source: "./media/characters/daiki/feral-head.svg"
  39248. }
  39249. },
  39250. manaDragon: {
  39251. height: math.unit(170, "meters"),
  39252. name: "Mana-dragon",
  39253. image: {
  39254. source: "./media/characters/daiki/mana-dragon.svg",
  39255. extra: 763/420,
  39256. bottom: 97/860
  39257. }
  39258. },
  39259. },
  39260. [
  39261. {
  39262. name: "Normal",
  39263. height: math.unit(5 + 10/12, "feet"),
  39264. default: true
  39265. },
  39266. ]
  39267. ))
  39268. characterMakers.push(() => makeCharacter(
  39269. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39270. {
  39271. fullyEquippedFront: {
  39272. height: math.unit(3 + 1/12, "feet"),
  39273. weight: math.unit(24, "lb"),
  39274. name: "Fully Equipped (Front)",
  39275. image: {
  39276. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39277. extra: 687/605,
  39278. bottom: 18/705
  39279. }
  39280. },
  39281. fullyEquippedBack: {
  39282. height: math.unit(3 + 1/12, "feet"),
  39283. weight: math.unit(24, "lb"),
  39284. name: "Fully Equipped (Back)",
  39285. image: {
  39286. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39287. extra: 689/590,
  39288. bottom: 18/707
  39289. }
  39290. },
  39291. dailyWear: {
  39292. height: math.unit(3 + 1/12, "feet"),
  39293. weight: math.unit(24, "lb"),
  39294. name: "Daily Wear",
  39295. image: {
  39296. source: "./media/characters/tea-spot/daily-wear.svg",
  39297. extra: 701/620,
  39298. bottom: 21/722
  39299. }
  39300. },
  39301. maidWork: {
  39302. height: math.unit(3 + 1/12, "feet"),
  39303. weight: math.unit(24, "lb"),
  39304. name: "Maid Work",
  39305. image: {
  39306. source: "./media/characters/tea-spot/maid-work.svg",
  39307. extra: 693/609,
  39308. bottom: 15/708
  39309. }
  39310. },
  39311. },
  39312. [
  39313. {
  39314. name: "Normal",
  39315. height: math.unit(3 + 1/12, "feet"),
  39316. default: true
  39317. },
  39318. ]
  39319. ))
  39320. characterMakers.push(() => makeCharacter(
  39321. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39322. {
  39323. front: {
  39324. height: math.unit(175, "cm"),
  39325. weight: math.unit(75, "kg"),
  39326. name: "Front",
  39327. image: {
  39328. source: "./media/characters/chee/front.svg",
  39329. extra: 1796/1740,
  39330. bottom: 40/1836
  39331. }
  39332. },
  39333. },
  39334. [
  39335. {
  39336. name: "Micro-Micro",
  39337. height: math.unit(1, "nm")
  39338. },
  39339. {
  39340. name: "Micro-erst",
  39341. height: math.unit(1, "micrometer")
  39342. },
  39343. {
  39344. name: "Micro-er",
  39345. height: math.unit(1, "cm")
  39346. },
  39347. {
  39348. name: "Normal",
  39349. height: math.unit(175, "cm"),
  39350. default: true
  39351. },
  39352. {
  39353. name: "Macro",
  39354. height: math.unit(100, "m")
  39355. },
  39356. {
  39357. name: "Macro-er",
  39358. height: math.unit(1, "km")
  39359. },
  39360. {
  39361. name: "Macro-erst",
  39362. height: math.unit(10, "km")
  39363. },
  39364. {
  39365. name: "Macro-Macro",
  39366. height: math.unit(100, "km")
  39367. },
  39368. ]
  39369. ))
  39370. characterMakers.push(() => makeCharacter(
  39371. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39372. {
  39373. front: {
  39374. height: math.unit(11 + 9/12, "feet"),
  39375. weight: math.unit(935, "lb"),
  39376. name: "Front",
  39377. image: {
  39378. source: "./media/characters/kingsley/front.svg",
  39379. extra: 1803/1674,
  39380. bottom: 127/1930
  39381. }
  39382. },
  39383. frontNude: {
  39384. height: math.unit(11 + 9/12, "feet"),
  39385. weight: math.unit(935, "lb"),
  39386. name: "Front (Nude)",
  39387. image: {
  39388. source: "./media/characters/kingsley/front-nude.svg",
  39389. extra: 1803/1674,
  39390. bottom: 127/1930
  39391. }
  39392. },
  39393. },
  39394. [
  39395. {
  39396. name: "Normal",
  39397. height: math.unit(11 + 9/12, "feet"),
  39398. default: true
  39399. },
  39400. ]
  39401. ))
  39402. characterMakers.push(() => makeCharacter(
  39403. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39404. {
  39405. side: {
  39406. height: math.unit(9, "feet"),
  39407. name: "Side",
  39408. image: {
  39409. source: "./media/characters/rymel/side.svg",
  39410. extra: 792/469,
  39411. bottom: 121/913
  39412. }
  39413. },
  39414. maw: {
  39415. height: math.unit(2.4, "meters"),
  39416. name: "Maw",
  39417. image: {
  39418. source: "./media/characters/rymel/maw.svg"
  39419. }
  39420. },
  39421. },
  39422. [
  39423. {
  39424. name: "House Drake",
  39425. height: math.unit(2, "feet")
  39426. },
  39427. {
  39428. name: "Reduced",
  39429. height: math.unit(4.5, "feet")
  39430. },
  39431. {
  39432. name: "Normal",
  39433. height: math.unit(9, "feet"),
  39434. default: true
  39435. },
  39436. ]
  39437. ))
  39438. characterMakers.push(() => makeCharacter(
  39439. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39440. {
  39441. front: {
  39442. height: math.unit(1.74, "meters"),
  39443. weight: math.unit(55, "kg"),
  39444. name: "Front",
  39445. image: {
  39446. source: "./media/characters/rubus/front.svg",
  39447. extra: 1894/1742,
  39448. bottom: 44/1938
  39449. }
  39450. },
  39451. },
  39452. [
  39453. {
  39454. name: "Normal",
  39455. height: math.unit(1.74, "meters"),
  39456. default: true
  39457. },
  39458. ]
  39459. ))
  39460. characterMakers.push(() => makeCharacter(
  39461. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39462. {
  39463. front: {
  39464. height: math.unit(5 + 2/12, "feet"),
  39465. weight: math.unit(112, "lb"),
  39466. name: "Front",
  39467. image: {
  39468. source: "./media/characters/cassie-kingston/front.svg",
  39469. extra: 1438/1390,
  39470. bottom: 47/1485
  39471. }
  39472. },
  39473. },
  39474. [
  39475. {
  39476. name: "Normal",
  39477. height: math.unit(5 + 2/12, "feet"),
  39478. default: true
  39479. },
  39480. {
  39481. name: "Macro",
  39482. height: math.unit(128, "feet")
  39483. },
  39484. {
  39485. name: "Megamacro",
  39486. height: math.unit(2.56, "miles")
  39487. },
  39488. ]
  39489. ))
  39490. characterMakers.push(() => makeCharacter(
  39491. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39492. {
  39493. front: {
  39494. height: math.unit(7, "feet"),
  39495. name: "Front",
  39496. image: {
  39497. source: "./media/characters/fox/front.svg",
  39498. extra: 1798/1703,
  39499. bottom: 55/1853
  39500. }
  39501. },
  39502. back: {
  39503. height: math.unit(7, "feet"),
  39504. name: "Back",
  39505. image: {
  39506. source: "./media/characters/fox/back.svg",
  39507. extra: 1748/1649,
  39508. bottom: 32/1780
  39509. }
  39510. },
  39511. head: {
  39512. height: math.unit(1.95, "feet"),
  39513. name: "Head",
  39514. image: {
  39515. source: "./media/characters/fox/head.svg"
  39516. }
  39517. },
  39518. dick: {
  39519. height: math.unit(1.33, "feet"),
  39520. name: "Dick",
  39521. image: {
  39522. source: "./media/characters/fox/dick.svg"
  39523. }
  39524. },
  39525. foot: {
  39526. height: math.unit(1, "feet"),
  39527. name: "Foot",
  39528. image: {
  39529. source: "./media/characters/fox/foot.svg"
  39530. }
  39531. },
  39532. paw: {
  39533. height: math.unit(0.92, "feet"),
  39534. name: "Paw",
  39535. image: {
  39536. source: "./media/characters/fox/paw.svg"
  39537. }
  39538. },
  39539. },
  39540. [
  39541. {
  39542. name: "Small",
  39543. height: math.unit(3, "inches")
  39544. },
  39545. {
  39546. name: "\"Realistic\"",
  39547. height: math.unit(7, "feet")
  39548. },
  39549. {
  39550. name: "Normal",
  39551. height: math.unit(150, "feet"),
  39552. default: true
  39553. },
  39554. {
  39555. name: "BIG",
  39556. height: math.unit(1200, "feet")
  39557. },
  39558. {
  39559. name: "👀",
  39560. height: math.unit(5, "miles")
  39561. },
  39562. {
  39563. name: "👀👀👀",
  39564. height: math.unit(64, "miles")
  39565. },
  39566. ]
  39567. ))
  39568. characterMakers.push(() => makeCharacter(
  39569. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39570. {
  39571. front: {
  39572. height: math.unit(625, "feet"),
  39573. name: "Front",
  39574. image: {
  39575. source: "./media/characters/asonja-rossa/front.svg",
  39576. extra: 1833/1686,
  39577. bottom: 24/1857
  39578. }
  39579. },
  39580. back: {
  39581. height: math.unit(625, "feet"),
  39582. name: "Back",
  39583. image: {
  39584. source: "./media/characters/asonja-rossa/back.svg",
  39585. extra: 1852/1753,
  39586. bottom: 26/1878
  39587. }
  39588. },
  39589. },
  39590. [
  39591. {
  39592. name: "Macro",
  39593. height: math.unit(625, "feet"),
  39594. default: true
  39595. },
  39596. ]
  39597. ))
  39598. characterMakers.push(() => makeCharacter(
  39599. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39600. {
  39601. side: {
  39602. height: math.unit(8, "feet"),
  39603. name: "Side",
  39604. image: {
  39605. source: "./media/characters/rezukii/side.svg",
  39606. extra: 979/542,
  39607. bottom: 87/1066
  39608. }
  39609. },
  39610. sitting: {
  39611. height: math.unit(14.6, "feet"),
  39612. name: "Sitting",
  39613. image: {
  39614. source: "./media/characters/rezukii/sitting.svg",
  39615. extra: 1023/813,
  39616. bottom: 45/1068
  39617. }
  39618. },
  39619. },
  39620. [
  39621. {
  39622. name: "Tiny",
  39623. height: math.unit(2, "feet")
  39624. },
  39625. {
  39626. name: "Smol",
  39627. height: math.unit(4, "feet")
  39628. },
  39629. {
  39630. name: "Normal",
  39631. height: math.unit(8, "feet"),
  39632. default: true
  39633. },
  39634. {
  39635. name: "Big",
  39636. height: math.unit(12, "feet")
  39637. },
  39638. {
  39639. name: "Macro",
  39640. height: math.unit(30, "feet")
  39641. },
  39642. ]
  39643. ))
  39644. characterMakers.push(() => makeCharacter(
  39645. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39646. {
  39647. front: {
  39648. height: math.unit(14, "feet"),
  39649. weight: math.unit(9.5, "tonnes"),
  39650. name: "Front",
  39651. image: {
  39652. source: "./media/characters/dawnheart/front.svg",
  39653. extra: 2792/2675,
  39654. bottom: 64/2856
  39655. }
  39656. },
  39657. },
  39658. [
  39659. {
  39660. name: "Normal",
  39661. height: math.unit(14, "feet"),
  39662. default: true
  39663. },
  39664. ]
  39665. ))
  39666. characterMakers.push(() => makeCharacter(
  39667. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39668. {
  39669. front: {
  39670. height: math.unit(1.7, "m"),
  39671. name: "Front",
  39672. image: {
  39673. source: "./media/characters/gladi/front.svg",
  39674. extra: 1460/1362,
  39675. bottom: 19/1479
  39676. }
  39677. },
  39678. back: {
  39679. height: math.unit(1.7, "m"),
  39680. name: "Back",
  39681. image: {
  39682. source: "./media/characters/gladi/back.svg",
  39683. extra: 1459/1357,
  39684. bottom: 12/1471
  39685. }
  39686. },
  39687. feral: {
  39688. height: math.unit(2.05, "m"),
  39689. name: "Feral",
  39690. image: {
  39691. source: "./media/characters/gladi/feral.svg",
  39692. extra: 821/557,
  39693. bottom: 91/912
  39694. }
  39695. },
  39696. },
  39697. [
  39698. {
  39699. name: "Shortest",
  39700. height: math.unit(70, "cm")
  39701. },
  39702. {
  39703. name: "Normal",
  39704. height: math.unit(1.7, "m")
  39705. },
  39706. {
  39707. name: "Macro",
  39708. height: math.unit(10, "m"),
  39709. default: true
  39710. },
  39711. {
  39712. name: "Tallest",
  39713. height: math.unit(200, "m")
  39714. },
  39715. ]
  39716. ))
  39717. characterMakers.push(() => makeCharacter(
  39718. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39719. {
  39720. front: {
  39721. height: math.unit(5 + 7/12, "feet"),
  39722. weight: math.unit(2, "tons"),
  39723. name: "Front",
  39724. image: {
  39725. source: "./media/characters/erdno/front.svg",
  39726. extra: 1234/1129,
  39727. bottom: 35/1269
  39728. }
  39729. },
  39730. angled: {
  39731. height: math.unit(5 + 7/12, "feet"),
  39732. weight: math.unit(2, "tons"),
  39733. name: "Angled",
  39734. image: {
  39735. source: "./media/characters/erdno/angled.svg",
  39736. extra: 1185/1139,
  39737. bottom: 36/1221
  39738. }
  39739. },
  39740. side: {
  39741. height: math.unit(5 + 7/12, "feet"),
  39742. weight: math.unit(2, "tons"),
  39743. name: "Side",
  39744. image: {
  39745. source: "./media/characters/erdno/side.svg",
  39746. extra: 1191/1144,
  39747. bottom: 40/1231
  39748. }
  39749. },
  39750. back: {
  39751. height: math.unit(5 + 7/12, "feet"),
  39752. weight: math.unit(2, "tons"),
  39753. name: "Back",
  39754. image: {
  39755. source: "./media/characters/erdno/back.svg",
  39756. extra: 1202/1146,
  39757. bottom: 17/1219
  39758. }
  39759. },
  39760. frontNsfw: {
  39761. height: math.unit(5 + 7/12, "feet"),
  39762. weight: math.unit(2, "tons"),
  39763. name: "Front (NSFW)",
  39764. image: {
  39765. source: "./media/characters/erdno/front-nsfw.svg",
  39766. extra: 1234/1129,
  39767. bottom: 35/1269
  39768. }
  39769. },
  39770. angledNsfw: {
  39771. height: math.unit(5 + 7/12, "feet"),
  39772. weight: math.unit(2, "tons"),
  39773. name: "Angled (NSFW)",
  39774. image: {
  39775. source: "./media/characters/erdno/angled-nsfw.svg",
  39776. extra: 1185/1139,
  39777. bottom: 36/1221
  39778. }
  39779. },
  39780. sideNsfw: {
  39781. height: math.unit(5 + 7/12, "feet"),
  39782. weight: math.unit(2, "tons"),
  39783. name: "Side (NSFW)",
  39784. image: {
  39785. source: "./media/characters/erdno/side-nsfw.svg",
  39786. extra: 1191/1144,
  39787. bottom: 40/1231
  39788. }
  39789. },
  39790. backNsfw: {
  39791. height: math.unit(5 + 7/12, "feet"),
  39792. weight: math.unit(2, "tons"),
  39793. name: "Back (NSFW)",
  39794. image: {
  39795. source: "./media/characters/erdno/back-nsfw.svg",
  39796. extra: 1202/1146,
  39797. bottom: 17/1219
  39798. }
  39799. },
  39800. frontHyper: {
  39801. height: math.unit(5 + 7/12, "feet"),
  39802. weight: math.unit(2, "tons"),
  39803. name: "Front (Hyper)",
  39804. image: {
  39805. source: "./media/characters/erdno/front-hyper.svg",
  39806. extra: 1298/1136,
  39807. bottom: 35/1333
  39808. }
  39809. },
  39810. },
  39811. [
  39812. {
  39813. name: "Normal",
  39814. height: math.unit(5 + 7/12, "feet"),
  39815. default: true
  39816. },
  39817. {
  39818. name: "Big",
  39819. height: math.unit(5.7, "meters")
  39820. },
  39821. {
  39822. name: "Macro",
  39823. height: math.unit(5.7, "kilometers")
  39824. },
  39825. {
  39826. name: "Megamacro",
  39827. height: math.unit(5.7, "earths")
  39828. },
  39829. ]
  39830. ))
  39831. characterMakers.push(() => makeCharacter(
  39832. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39833. {
  39834. front: {
  39835. height: math.unit(5 + 10/12, "feet"),
  39836. weight: math.unit(150, "lb"),
  39837. name: "Front",
  39838. image: {
  39839. source: "./media/characters/jamie/front.svg",
  39840. extra: 1908/1768,
  39841. bottom: 19/1927
  39842. }
  39843. },
  39844. },
  39845. [
  39846. {
  39847. name: "Minimum",
  39848. height: math.unit(2, "cm")
  39849. },
  39850. {
  39851. name: "Micro",
  39852. height: math.unit(3, "inches")
  39853. },
  39854. {
  39855. name: "Normal",
  39856. height: math.unit(5 + 10/12, "feet"),
  39857. default: true
  39858. },
  39859. {
  39860. name: "Macro",
  39861. height: math.unit(150, "feet")
  39862. },
  39863. {
  39864. name: "Megamacro",
  39865. height: math.unit(10000, "m")
  39866. },
  39867. ]
  39868. ))
  39869. characterMakers.push(() => makeCharacter(
  39870. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39871. {
  39872. front: {
  39873. height: math.unit(2, "meters"),
  39874. weight: math.unit(100, "kg"),
  39875. name: "Front",
  39876. image: {
  39877. source: "./media/characters/shiron/front.svg",
  39878. extra: 2103/1985,
  39879. bottom: 98/2201
  39880. }
  39881. },
  39882. back: {
  39883. height: math.unit(2, "meters"),
  39884. weight: math.unit(100, "kg"),
  39885. name: "Back",
  39886. image: {
  39887. source: "./media/characters/shiron/back.svg",
  39888. extra: 2110/2015,
  39889. bottom: 89/2199
  39890. }
  39891. },
  39892. hand: {
  39893. height: math.unit(0.96, "feet"),
  39894. name: "Hand",
  39895. image: {
  39896. source: "./media/characters/shiron/hand.svg"
  39897. }
  39898. },
  39899. foot: {
  39900. height: math.unit(1.464, "feet"),
  39901. name: "Foot",
  39902. image: {
  39903. source: "./media/characters/shiron/foot.svg"
  39904. }
  39905. },
  39906. },
  39907. [
  39908. {
  39909. name: "Normal",
  39910. height: math.unit(2, "meters")
  39911. },
  39912. {
  39913. name: "Macro",
  39914. height: math.unit(500, "meters"),
  39915. default: true
  39916. },
  39917. {
  39918. name: "Megamacro",
  39919. height: math.unit(20, "km")
  39920. },
  39921. ]
  39922. ))
  39923. characterMakers.push(() => makeCharacter(
  39924. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39925. {
  39926. front: {
  39927. height: math.unit(6, "feet"),
  39928. name: "Front",
  39929. image: {
  39930. source: "./media/characters/sam/front.svg",
  39931. extra: 849/826,
  39932. bottom: 19/868
  39933. }
  39934. },
  39935. },
  39936. [
  39937. {
  39938. name: "Normal",
  39939. height: math.unit(6, "feet"),
  39940. default: true
  39941. },
  39942. ]
  39943. ))
  39944. characterMakers.push(() => makeCharacter(
  39945. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39946. {
  39947. front: {
  39948. height: math.unit(8 + 4/12, "feet"),
  39949. weight: math.unit(122, "kg"),
  39950. name: "Front",
  39951. image: {
  39952. source: "./media/characters/namori-kurogawa/front.svg",
  39953. extra: 1894/1576,
  39954. bottom: 34/1928
  39955. }
  39956. },
  39957. },
  39958. [
  39959. {
  39960. name: "Normal",
  39961. height: math.unit(8 + 4/12, "feet"),
  39962. default: true
  39963. },
  39964. ]
  39965. ))
  39966. characterMakers.push(() => makeCharacter(
  39967. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39968. {
  39969. front: {
  39970. height: math.unit(9, "feet"),
  39971. weight: math.unit(621, "lb"),
  39972. name: "Front",
  39973. image: {
  39974. source: "./media/characters/unmru/front.svg",
  39975. extra: 1853/1747,
  39976. bottom: 73/1926
  39977. }
  39978. },
  39979. side: {
  39980. height: math.unit(9, "feet"),
  39981. weight: math.unit(621, "lb"),
  39982. name: "Side",
  39983. image: {
  39984. source: "./media/characters/unmru/side.svg",
  39985. extra: 1781/1671,
  39986. bottom: 127/1908
  39987. }
  39988. },
  39989. back: {
  39990. height: math.unit(9, "feet"),
  39991. weight: math.unit(621, "lb"),
  39992. name: "Back",
  39993. image: {
  39994. source: "./media/characters/unmru/back.svg",
  39995. extra: 1894/1765,
  39996. bottom: 75/1969
  39997. }
  39998. },
  39999. dick: {
  40000. height: math.unit(3, "feet"),
  40001. weight: math.unit(35, "lb"),
  40002. name: "Dick",
  40003. image: {
  40004. source: "./media/characters/unmru/dick.svg"
  40005. }
  40006. },
  40007. },
  40008. [
  40009. {
  40010. name: "Normal",
  40011. height: math.unit(9, "feet")
  40012. },
  40013. {
  40014. name: "Natural",
  40015. height: math.unit(27, "feet"),
  40016. default: true
  40017. },
  40018. {
  40019. name: "Giant",
  40020. height: math.unit(90, "feet")
  40021. },
  40022. {
  40023. name: "Kaiju",
  40024. height: math.unit(270, "feet")
  40025. },
  40026. {
  40027. name: "Macro",
  40028. height: math.unit(900, "feet")
  40029. },
  40030. {
  40031. name: "Macro+",
  40032. height: math.unit(2700, "feet")
  40033. },
  40034. {
  40035. name: "Megamacro",
  40036. height: math.unit(9000, "feet")
  40037. },
  40038. {
  40039. name: "City-Crushing",
  40040. height: math.unit(27000, "feet")
  40041. },
  40042. {
  40043. name: "Mountain-Mashing",
  40044. height: math.unit(90000, "feet")
  40045. },
  40046. {
  40047. name: "Earth-Eclipsing",
  40048. height: math.unit(2.7e8, "feet")
  40049. },
  40050. {
  40051. name: "Sol-Swallowing",
  40052. height: math.unit(9e10, "feet")
  40053. },
  40054. {
  40055. name: "Majoris-Munching",
  40056. height: math.unit(2.7e13, "feet")
  40057. },
  40058. ]
  40059. ))
  40060. characterMakers.push(() => makeCharacter(
  40061. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40062. {
  40063. front: {
  40064. height: math.unit(1, "inch"),
  40065. name: "Front",
  40066. image: {
  40067. source: "./media/characters/squeaks-mouse/front.svg",
  40068. extra: 352/308,
  40069. bottom: 25/377
  40070. }
  40071. },
  40072. },
  40073. [
  40074. {
  40075. name: "Micro",
  40076. height: math.unit(1, "inch"),
  40077. default: true
  40078. },
  40079. ]
  40080. ))
  40081. characterMakers.push(() => makeCharacter(
  40082. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40083. {
  40084. side: {
  40085. height: math.unit(35, "feet"),
  40086. name: "Side",
  40087. image: {
  40088. source: "./media/characters/sayko/side.svg",
  40089. extra: 1697/1021,
  40090. bottom: 82/1779
  40091. }
  40092. },
  40093. head: {
  40094. height: math.unit(16, "feet"),
  40095. name: "Head",
  40096. image: {
  40097. source: "./media/characters/sayko/head.svg"
  40098. }
  40099. },
  40100. forepaw: {
  40101. height: math.unit(7.85, "feet"),
  40102. name: "Forepaw",
  40103. image: {
  40104. source: "./media/characters/sayko/forepaw.svg"
  40105. }
  40106. },
  40107. hindpaw: {
  40108. height: math.unit(8.8, "feet"),
  40109. name: "Hindpaw",
  40110. image: {
  40111. source: "./media/characters/sayko/hindpaw.svg"
  40112. }
  40113. },
  40114. },
  40115. [
  40116. {
  40117. name: "Normal",
  40118. height: math.unit(35, "feet"),
  40119. default: true
  40120. },
  40121. {
  40122. name: "Colossus",
  40123. height: math.unit(100, "meters")
  40124. },
  40125. {
  40126. name: "\"Small\" Deity",
  40127. height: math.unit(1, "km")
  40128. },
  40129. {
  40130. name: "\"Large\" Deity",
  40131. height: math.unit(15, "km")
  40132. },
  40133. ]
  40134. ))
  40135. characterMakers.push(() => makeCharacter(
  40136. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40137. {
  40138. front: {
  40139. height: math.unit(6, "feet"),
  40140. weight: math.unit(250, "lb"),
  40141. name: "Front",
  40142. image: {
  40143. source: "./media/characters/mukiro/front.svg",
  40144. extra: 1368/1310,
  40145. bottom: 34/1402
  40146. }
  40147. },
  40148. },
  40149. [
  40150. {
  40151. name: "Normal",
  40152. height: math.unit(6, "feet"),
  40153. default: true
  40154. },
  40155. ]
  40156. ))
  40157. characterMakers.push(() => makeCharacter(
  40158. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40159. {
  40160. front: {
  40161. height: math.unit(12 + 4/12, "feet"),
  40162. name: "Front",
  40163. image: {
  40164. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40165. extra: 1346/1311,
  40166. bottom: 65/1411
  40167. }
  40168. },
  40169. },
  40170. [
  40171. {
  40172. name: "Base",
  40173. height: math.unit(12 + 4/12, "feet"),
  40174. default: true
  40175. },
  40176. {
  40177. name: "Macro",
  40178. height: math.unit(150, "feet")
  40179. },
  40180. {
  40181. name: "Mega",
  40182. height: math.unit(2, "miles")
  40183. },
  40184. {
  40185. name: "Demi God",
  40186. height: math.unit(4, "AU")
  40187. },
  40188. {
  40189. name: "God Size",
  40190. height: math.unit(1, "universe")
  40191. },
  40192. ]
  40193. ))
  40194. characterMakers.push(() => makeCharacter(
  40195. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40196. {
  40197. front: {
  40198. height: math.unit(3 + 3/12, "feet"),
  40199. weight: math.unit(88, "lb"),
  40200. name: "Front",
  40201. image: {
  40202. source: "./media/characters/trey/front.svg",
  40203. extra: 1815/1509,
  40204. bottom: 60/1875
  40205. }
  40206. },
  40207. },
  40208. [
  40209. {
  40210. name: "Normal",
  40211. height: math.unit(3 + 3/12, "feet"),
  40212. default: true
  40213. },
  40214. ]
  40215. ))
  40216. characterMakers.push(() => makeCharacter(
  40217. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40218. {
  40219. front: {
  40220. height: math.unit(4, "meters"),
  40221. name: "Front",
  40222. image: {
  40223. source: "./media/characters/adelonda/front.svg",
  40224. extra: 1077/982,
  40225. bottom: 39/1116
  40226. }
  40227. },
  40228. back: {
  40229. height: math.unit(4, "meters"),
  40230. name: "Back",
  40231. image: {
  40232. source: "./media/characters/adelonda/back.svg",
  40233. extra: 1105/1003,
  40234. bottom: 25/1130
  40235. }
  40236. },
  40237. feral: {
  40238. height: math.unit(40/1.5, "meters"),
  40239. name: "Feral",
  40240. image: {
  40241. source: "./media/characters/adelonda/feral.svg",
  40242. extra: 597/271,
  40243. bottom: 387/984
  40244. }
  40245. },
  40246. },
  40247. [
  40248. {
  40249. name: "Normal",
  40250. height: math.unit(4, "meters"),
  40251. default: true
  40252. },
  40253. ]
  40254. ))
  40255. characterMakers.push(() => makeCharacter(
  40256. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40257. {
  40258. front: {
  40259. height: math.unit(8 + 4/12, "feet"),
  40260. weight: math.unit(670, "lb"),
  40261. name: "Front",
  40262. image: {
  40263. source: "./media/characters/acadiel/front.svg",
  40264. extra: 1901/1595,
  40265. bottom: 142/2043
  40266. }
  40267. },
  40268. },
  40269. [
  40270. {
  40271. name: "Normal",
  40272. height: math.unit(8 + 4/12, "feet"),
  40273. default: true
  40274. },
  40275. {
  40276. name: "Macro",
  40277. height: math.unit(200, "feet")
  40278. },
  40279. ]
  40280. ))
  40281. characterMakers.push(() => makeCharacter(
  40282. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40283. {
  40284. front: {
  40285. height: math.unit(6 + 2/12, "feet"),
  40286. weight: math.unit(185, "lb"),
  40287. name: "Front",
  40288. image: {
  40289. source: "./media/characters/kayne-ein/front.svg",
  40290. extra: 1780/1560,
  40291. bottom: 81/1861
  40292. }
  40293. },
  40294. },
  40295. [
  40296. {
  40297. name: "Normal",
  40298. height: math.unit(6 + 2/12, "feet"),
  40299. default: true
  40300. },
  40301. {
  40302. name: "Transformation Stage",
  40303. height: math.unit(15, "feet")
  40304. },
  40305. {
  40306. name: "Macro",
  40307. height: math.unit(150, "feet")
  40308. },
  40309. {
  40310. name: "Earth's Shadow",
  40311. height: math.unit(6200, "miles")
  40312. },
  40313. {
  40314. name: "Universal Demon",
  40315. height: math.unit(28e9, "parsecs")
  40316. },
  40317. {
  40318. name: "Multiverse God",
  40319. height: math.unit(3, "multiverses")
  40320. },
  40321. ]
  40322. ))
  40323. characterMakers.push(() => makeCharacter(
  40324. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40325. {
  40326. front: {
  40327. height: math.unit(5 + 5/12, "feet"),
  40328. name: "Front",
  40329. image: {
  40330. source: "./media/characters/fawn/front.svg",
  40331. extra: 1873/1731,
  40332. bottom: 95/1968
  40333. }
  40334. },
  40335. back: {
  40336. height: math.unit(5 + 5/12, "feet"),
  40337. name: "Back",
  40338. image: {
  40339. source: "./media/characters/fawn/back.svg",
  40340. extra: 1813/1700,
  40341. bottom: 14/1827
  40342. }
  40343. },
  40344. hoof: {
  40345. height: math.unit(1.45, "feet"),
  40346. name: "Hoof",
  40347. image: {
  40348. source: "./media/characters/fawn/hoof.svg"
  40349. }
  40350. },
  40351. },
  40352. [
  40353. {
  40354. name: "Normal",
  40355. height: math.unit(5 + 5/12, "feet"),
  40356. default: true
  40357. },
  40358. ]
  40359. ))
  40360. characterMakers.push(() => makeCharacter(
  40361. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40362. {
  40363. front: {
  40364. height: math.unit(2 + 5/12, "feet"),
  40365. name: "Front",
  40366. image: {
  40367. source: "./media/characters/orion/front.svg",
  40368. extra: 1366/1304,
  40369. bottom: 43/1409
  40370. }
  40371. },
  40372. paw: {
  40373. height: math.unit(0.52, "feet"),
  40374. name: "Paw",
  40375. image: {
  40376. source: "./media/characters/orion/paw.svg"
  40377. }
  40378. },
  40379. },
  40380. [
  40381. {
  40382. name: "Normal",
  40383. height: math.unit(2 + 5/12, "feet"),
  40384. default: true
  40385. },
  40386. ]
  40387. ))
  40388. characterMakers.push(() => makeCharacter(
  40389. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40390. {
  40391. front: {
  40392. height: math.unit(5 + 10/12, "feet"),
  40393. name: "Front",
  40394. image: {
  40395. source: "./media/characters/vera/front.svg",
  40396. extra: 1680/1575,
  40397. bottom: 49/1729
  40398. }
  40399. },
  40400. back: {
  40401. height: math.unit(5 + 10/12, "feet"),
  40402. name: "Back",
  40403. image: {
  40404. source: "./media/characters/vera/back.svg",
  40405. extra: 1700/1588,
  40406. bottom: 18/1718
  40407. }
  40408. },
  40409. arcanine: {
  40410. height: math.unit(6 + 8/12, "feet"),
  40411. name: "Arcanine",
  40412. image: {
  40413. source: "./media/characters/vera/arcanine.svg",
  40414. extra: 1590/1511,
  40415. bottom: 71/1661
  40416. }
  40417. },
  40418. maw: {
  40419. height: math.unit(0.82, "feet"),
  40420. name: "Maw",
  40421. image: {
  40422. source: "./media/characters/vera/maw.svg"
  40423. }
  40424. },
  40425. mawArcanine: {
  40426. height: math.unit(0.97, "feet"),
  40427. name: "Maw (Arcanine)",
  40428. image: {
  40429. source: "./media/characters/vera/maw-arcanine.svg"
  40430. }
  40431. },
  40432. paw: {
  40433. height: math.unit(0.75, "feet"),
  40434. name: "Paw",
  40435. image: {
  40436. source: "./media/characters/vera/paw.svg"
  40437. }
  40438. },
  40439. pawprint: {
  40440. height: math.unit(0.52, "feet"),
  40441. name: "Pawprint",
  40442. image: {
  40443. source: "./media/characters/vera/pawprint.svg"
  40444. }
  40445. },
  40446. },
  40447. [
  40448. {
  40449. name: "Normal",
  40450. height: math.unit(5 + 10/12, "feet"),
  40451. default: true
  40452. },
  40453. {
  40454. name: "Macro",
  40455. height: math.unit(75, "feet")
  40456. },
  40457. ]
  40458. ))
  40459. characterMakers.push(() => makeCharacter(
  40460. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40461. {
  40462. front: {
  40463. height: math.unit(4, "feet"),
  40464. weight: math.unit(40, "lb"),
  40465. name: "Front",
  40466. image: {
  40467. source: "./media/characters/orvan-rabbit/front.svg",
  40468. extra: 1896/1642,
  40469. bottom: 29/1925
  40470. }
  40471. },
  40472. },
  40473. [
  40474. {
  40475. name: "Normal",
  40476. height: math.unit(4, "feet"),
  40477. default: true
  40478. },
  40479. ]
  40480. ))
  40481. characterMakers.push(() => makeCharacter(
  40482. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40483. {
  40484. front: {
  40485. height: math.unit(6, "feet"),
  40486. weight: math.unit(168, "lb"),
  40487. name: "Front",
  40488. image: {
  40489. source: "./media/characters/lisa/front.svg",
  40490. extra: 2065/1867,
  40491. bottom: 46/2111
  40492. }
  40493. },
  40494. back: {
  40495. height: math.unit(6, "feet"),
  40496. weight: math.unit(168, "lb"),
  40497. name: "Back",
  40498. image: {
  40499. source: "./media/characters/lisa/back.svg",
  40500. extra: 1982/1838,
  40501. bottom: 29/2011
  40502. }
  40503. },
  40504. maw: {
  40505. height: math.unit(0.81, "feet"),
  40506. name: "Maw",
  40507. image: {
  40508. source: "./media/characters/lisa/maw.svg"
  40509. }
  40510. },
  40511. paw: {
  40512. height: math.unit(0.9, "feet"),
  40513. name: "Paw",
  40514. image: {
  40515. source: "./media/characters/lisa/paw.svg"
  40516. }
  40517. },
  40518. caribousune: {
  40519. height: math.unit(7 + 2/12, "feet"),
  40520. weight: math.unit(268, "lb"),
  40521. name: "Caribousune",
  40522. image: {
  40523. source: "./media/characters/lisa/caribousune.svg",
  40524. extra: 1843/1633,
  40525. bottom: 29/1872
  40526. }
  40527. },
  40528. frontCaribousune: {
  40529. height: math.unit(7 + 2/12, "feet"),
  40530. weight: math.unit(268, "lb"),
  40531. name: "Front (Caribousune)",
  40532. image: {
  40533. source: "./media/characters/lisa/front-caribousune.svg",
  40534. extra: 1818/1638,
  40535. bottom: 52/1870
  40536. }
  40537. },
  40538. sideCaribousune: {
  40539. height: math.unit(7 + 2/12, "feet"),
  40540. weight: math.unit(268, "lb"),
  40541. name: "Side (Caribousune)",
  40542. image: {
  40543. source: "./media/characters/lisa/side-caribousune.svg",
  40544. extra: 1851/1635,
  40545. bottom: 16/1867
  40546. }
  40547. },
  40548. backCaribousune: {
  40549. height: math.unit(7 + 2/12, "feet"),
  40550. weight: math.unit(268, "lb"),
  40551. name: "Back (Caribousune)",
  40552. image: {
  40553. source: "./media/characters/lisa/back-caribousune.svg",
  40554. extra: 1801/1604,
  40555. bottom: 44/1845
  40556. }
  40557. },
  40558. caribou: {
  40559. height: math.unit(7 + 2/12, "feet"),
  40560. weight: math.unit(268, "lb"),
  40561. name: "Caribou",
  40562. image: {
  40563. source: "./media/characters/lisa/caribou.svg",
  40564. extra: 1843/1633,
  40565. bottom: 29/1872
  40566. }
  40567. },
  40568. frontCaribou: {
  40569. height: math.unit(7 + 2/12, "feet"),
  40570. weight: math.unit(268, "lb"),
  40571. name: "Front (Caribou)",
  40572. image: {
  40573. source: "./media/characters/lisa/front-caribou.svg",
  40574. extra: 1818/1638,
  40575. bottom: 52/1870
  40576. }
  40577. },
  40578. sideCaribou: {
  40579. height: math.unit(7 + 2/12, "feet"),
  40580. weight: math.unit(268, "lb"),
  40581. name: "Side (Caribou)",
  40582. image: {
  40583. source: "./media/characters/lisa/side-caribou.svg",
  40584. extra: 1851/1635,
  40585. bottom: 16/1867
  40586. }
  40587. },
  40588. backCaribou: {
  40589. height: math.unit(7 + 2/12, "feet"),
  40590. weight: math.unit(268, "lb"),
  40591. name: "Back (Caribou)",
  40592. image: {
  40593. source: "./media/characters/lisa/back-caribou.svg",
  40594. extra: 1801/1604,
  40595. bottom: 44/1845
  40596. }
  40597. },
  40598. mawCaribou: {
  40599. height: math.unit(1.45, "feet"),
  40600. name: "Maw (Caribou)",
  40601. image: {
  40602. source: "./media/characters/lisa/maw-caribou.svg"
  40603. }
  40604. },
  40605. mawCaribousune: {
  40606. height: math.unit(1.45, "feet"),
  40607. name: "Maw (Caribousune)",
  40608. image: {
  40609. source: "./media/characters/lisa/maw-caribousune.svg"
  40610. }
  40611. },
  40612. pawCaribousune: {
  40613. height: math.unit(1.61, "feet"),
  40614. name: "Paw (Caribou)",
  40615. image: {
  40616. source: "./media/characters/lisa/paw-caribousune.svg"
  40617. }
  40618. },
  40619. },
  40620. [
  40621. {
  40622. name: "Normal",
  40623. height: math.unit(6, "feet")
  40624. },
  40625. {
  40626. name: "God Size",
  40627. height: math.unit(72, "feet"),
  40628. default: true
  40629. },
  40630. {
  40631. name: "Towering",
  40632. height: math.unit(288, "feet")
  40633. },
  40634. {
  40635. name: "City Size",
  40636. height: math.unit(48384, "feet")
  40637. },
  40638. {
  40639. name: "Continental",
  40640. height: math.unit(4200, "miles")
  40641. },
  40642. {
  40643. name: "Planet Eater",
  40644. height: math.unit(42, "earths")
  40645. },
  40646. {
  40647. name: "Star Swallower",
  40648. height: math.unit(42, "solarradii")
  40649. },
  40650. {
  40651. name: "System Swallower",
  40652. height: math.unit(84000, "AU")
  40653. },
  40654. {
  40655. name: "Galaxy Gobbler",
  40656. height: math.unit(42, "galaxies")
  40657. },
  40658. {
  40659. name: "Universe Devourer",
  40660. height: math.unit(42, "universes")
  40661. },
  40662. {
  40663. name: "Multiverse Muncher",
  40664. height: math.unit(42, "multiverses")
  40665. },
  40666. ]
  40667. ))
  40668. characterMakers.push(() => makeCharacter(
  40669. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40670. {
  40671. front: {
  40672. height: math.unit(36, "feet"),
  40673. name: "Front",
  40674. image: {
  40675. source: "./media/characters/shadow-rat/front.svg",
  40676. extra: 1845/1758,
  40677. bottom: 83/1928
  40678. }
  40679. },
  40680. },
  40681. [
  40682. {
  40683. name: "Macro",
  40684. height: math.unit(36, "feet"),
  40685. default: true
  40686. },
  40687. ]
  40688. ))
  40689. characterMakers.push(() => makeCharacter(
  40690. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40691. {
  40692. side: {
  40693. height: math.unit(8, "feet"),
  40694. weight: math.unit(2630, "lb"),
  40695. name: "Side",
  40696. image: {
  40697. source: "./media/characters/torallia/side.svg",
  40698. extra: 2164/2021,
  40699. bottom: 371/2535
  40700. }
  40701. },
  40702. },
  40703. [
  40704. {
  40705. name: "Mortal Interaction",
  40706. height: math.unit(8, "feet")
  40707. },
  40708. {
  40709. name: "Natural",
  40710. height: math.unit(24, "feet"),
  40711. default: true
  40712. },
  40713. {
  40714. name: "Giant",
  40715. height: math.unit(80, "feet")
  40716. },
  40717. {
  40718. name: "Kaiju",
  40719. height: math.unit(240, "feet")
  40720. },
  40721. {
  40722. name: "Macro",
  40723. height: math.unit(800, "feet")
  40724. },
  40725. {
  40726. name: "Macro+",
  40727. height: math.unit(2400, "feet")
  40728. },
  40729. {
  40730. name: "Macro++",
  40731. height: math.unit(8000, "feet")
  40732. },
  40733. {
  40734. name: "City-Crushing",
  40735. height: math.unit(24000, "feet")
  40736. },
  40737. {
  40738. name: "Mountain-Mashing",
  40739. height: math.unit(80000, "feet")
  40740. },
  40741. {
  40742. name: "District Demolisher",
  40743. height: math.unit(240000, "feet")
  40744. },
  40745. {
  40746. name: "Tri-County Terror",
  40747. height: math.unit(800000, "feet")
  40748. },
  40749. {
  40750. name: "State Smasher",
  40751. height: math.unit(2.4e6, "feet")
  40752. },
  40753. {
  40754. name: "Nation Nemesis",
  40755. height: math.unit(8e6, "feet")
  40756. },
  40757. {
  40758. name: "Continent Cracker",
  40759. height: math.unit(2.4e7, "feet")
  40760. },
  40761. {
  40762. name: "Planet-Pillaging",
  40763. height: math.unit(8e7, "feet")
  40764. },
  40765. {
  40766. name: "Earth-Eclipsing",
  40767. height: math.unit(2.4e8, "feet")
  40768. },
  40769. {
  40770. name: "Jovian-Jostling",
  40771. height: math.unit(8e8, "feet")
  40772. },
  40773. {
  40774. name: "Gas Giant Gulper",
  40775. height: math.unit(2.4e9, "feet")
  40776. },
  40777. {
  40778. name: "Astral Annihilator",
  40779. height: math.unit(8e9, "feet")
  40780. },
  40781. {
  40782. name: "Celestial Conqueror",
  40783. height: math.unit(2.4e10, "feet")
  40784. },
  40785. {
  40786. name: "Sol-Swallowing",
  40787. height: math.unit(8e10, "feet")
  40788. },
  40789. {
  40790. name: "Hunter of the Heavens",
  40791. height: math.unit(2.4e13, "feet")
  40792. },
  40793. ]
  40794. ))
  40795. characterMakers.push(() => makeCharacter(
  40796. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40797. {
  40798. front: {
  40799. height: math.unit(6 + 8/12, "feet"),
  40800. weight: math.unit(250, "kilograms"),
  40801. volume: math.unit(28, "liters"),
  40802. name: "Front",
  40803. image: {
  40804. source: "./media/characters/rebecca-pawlson/front.svg",
  40805. extra: 1737/1596,
  40806. bottom: 107/1844
  40807. }
  40808. },
  40809. back: {
  40810. height: math.unit(6 + 8/12, "feet"),
  40811. weight: math.unit(250, "kilograms"),
  40812. volume: math.unit(28, "liters"),
  40813. name: "Back",
  40814. image: {
  40815. source: "./media/characters/rebecca-pawlson/back.svg",
  40816. extra: 1702/1523,
  40817. bottom: 86/1788
  40818. }
  40819. },
  40820. },
  40821. [
  40822. {
  40823. name: "Normal",
  40824. height: math.unit(6 + 8/12, "feet")
  40825. },
  40826. {
  40827. name: "Mini Macro",
  40828. height: math.unit(10, "feet"),
  40829. default: true
  40830. },
  40831. {
  40832. name: "Macro",
  40833. height: math.unit(100, "feet")
  40834. },
  40835. {
  40836. name: "Mega Macro",
  40837. height: math.unit(2500, "feet")
  40838. },
  40839. {
  40840. name: "Giga Macro",
  40841. height: math.unit(50, "miles")
  40842. },
  40843. ]
  40844. ))
  40845. characterMakers.push(() => makeCharacter(
  40846. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40847. {
  40848. front: {
  40849. height: math.unit(7 + 6/12, "feet"),
  40850. weight: math.unit(600, "lb"),
  40851. name: "Front",
  40852. image: {
  40853. source: "./media/characters/moxie-nova/front.svg",
  40854. extra: 1734/1652,
  40855. bottom: 41/1775
  40856. }
  40857. },
  40858. },
  40859. [
  40860. {
  40861. name: "Normal",
  40862. height: math.unit(7 + 6/12, "feet"),
  40863. default: true
  40864. },
  40865. ]
  40866. ))
  40867. characterMakers.push(() => makeCharacter(
  40868. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40869. {
  40870. goat: {
  40871. height: math.unit(4, "feet"),
  40872. weight: math.unit(180, "lb"),
  40873. name: "Goat",
  40874. image: {
  40875. source: "./media/characters/tiffany/goat.svg",
  40876. extra: 1845/1595,
  40877. bottom: 106/1951
  40878. }
  40879. },
  40880. front: {
  40881. height: math.unit(5, "feet"),
  40882. weight: math.unit(150, "lb"),
  40883. name: "Foxcoon",
  40884. image: {
  40885. source: "./media/characters/tiffany/foxcoon.svg",
  40886. extra: 1941/1845,
  40887. bottom: 58/1999
  40888. }
  40889. },
  40890. },
  40891. [
  40892. {
  40893. name: "Normal",
  40894. height: math.unit(5, "feet"),
  40895. default: true
  40896. },
  40897. ]
  40898. ))
  40899. characterMakers.push(() => makeCharacter(
  40900. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40901. {
  40902. front: {
  40903. height: math.unit(8, "feet"),
  40904. weight: math.unit(300, "lb"),
  40905. name: "Front",
  40906. image: {
  40907. source: "./media/characters/raxinath/front.svg",
  40908. extra: 1407/1309,
  40909. bottom: 39/1446
  40910. }
  40911. },
  40912. back: {
  40913. height: math.unit(8, "feet"),
  40914. weight: math.unit(300, "lb"),
  40915. name: "Back",
  40916. image: {
  40917. source: "./media/characters/raxinath/back.svg",
  40918. extra: 1405/1315,
  40919. bottom: 9/1414
  40920. }
  40921. },
  40922. },
  40923. [
  40924. {
  40925. name: "Speck",
  40926. height: math.unit(0.5, "nm")
  40927. },
  40928. {
  40929. name: "Micro",
  40930. height: math.unit(3, "inches")
  40931. },
  40932. {
  40933. name: "Kobold",
  40934. height: math.unit(3, "feet")
  40935. },
  40936. {
  40937. name: "Normal",
  40938. height: math.unit(8, "feet"),
  40939. default: true
  40940. },
  40941. {
  40942. name: "Giant",
  40943. height: math.unit(50, "feet")
  40944. },
  40945. {
  40946. name: "Macro",
  40947. height: math.unit(1000, "feet")
  40948. },
  40949. {
  40950. name: "Megamacro",
  40951. height: math.unit(1, "mile")
  40952. },
  40953. ]
  40954. ))
  40955. characterMakers.push(() => makeCharacter(
  40956. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40957. {
  40958. front: {
  40959. height: math.unit(10, "feet"),
  40960. weight: math.unit(1442, "lb"),
  40961. name: "Front",
  40962. image: {
  40963. source: "./media/characters/mal-dragon/front.svg",
  40964. extra: 1515/1444,
  40965. bottom: 113/1628
  40966. }
  40967. },
  40968. back: {
  40969. height: math.unit(10, "feet"),
  40970. weight: math.unit(1442, "lb"),
  40971. name: "Back",
  40972. image: {
  40973. source: "./media/characters/mal-dragon/back.svg",
  40974. extra: 1527/1434,
  40975. bottom: 25/1552
  40976. }
  40977. },
  40978. },
  40979. [
  40980. {
  40981. name: "Mortal Interaction",
  40982. height: math.unit(10, "feet"),
  40983. default: true
  40984. },
  40985. {
  40986. name: "Large",
  40987. height: math.unit(30, "feet")
  40988. },
  40989. {
  40990. name: "Kaiju",
  40991. height: math.unit(300, "feet")
  40992. },
  40993. {
  40994. name: "Megamacro",
  40995. height: math.unit(10000, "feet")
  40996. },
  40997. {
  40998. name: "Continent Cracker",
  40999. height: math.unit(30000000, "feet")
  41000. },
  41001. {
  41002. name: "Sol-Swallowing",
  41003. height: math.unit(1e11, "feet")
  41004. },
  41005. {
  41006. name: "Light Universal",
  41007. height: math.unit(5, "universes")
  41008. },
  41009. {
  41010. name: "Universe Atoms",
  41011. height: math.unit(1.829e9, "universes")
  41012. },
  41013. {
  41014. name: "Light Multiversal",
  41015. height: math.unit(5, "multiverses")
  41016. },
  41017. {
  41018. name: "Multiverse Atoms",
  41019. height: math.unit(1.829e9, "multiverses")
  41020. },
  41021. {
  41022. name: "Fabric of Time",
  41023. height: math.unit(1e262, "multiverses")
  41024. },
  41025. ]
  41026. ))
  41027. characterMakers.push(() => makeCharacter(
  41028. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41029. {
  41030. front: {
  41031. height: math.unit(9, "feet"),
  41032. weight: math.unit(1050, "lb"),
  41033. name: "Front",
  41034. image: {
  41035. source: "./media/characters/tabitha/front.svg",
  41036. extra: 2083/1994,
  41037. bottom: 68/2151
  41038. }
  41039. },
  41040. },
  41041. [
  41042. {
  41043. name: "Baseline",
  41044. height: math.unit(9, "feet"),
  41045. default: true
  41046. },
  41047. {
  41048. name: "Giant",
  41049. height: math.unit(90, "feet")
  41050. },
  41051. {
  41052. name: "Macro",
  41053. height: math.unit(900, "feet")
  41054. },
  41055. {
  41056. name: "Megamacro",
  41057. height: math.unit(9000, "feet")
  41058. },
  41059. {
  41060. name: "City-Crushing",
  41061. height: math.unit(27000, "feet")
  41062. },
  41063. {
  41064. name: "Mountain-Mashing",
  41065. height: math.unit(90000, "feet")
  41066. },
  41067. {
  41068. name: "Nation Nemesis",
  41069. height: math.unit(9e6, "feet")
  41070. },
  41071. {
  41072. name: "Continent Cracker",
  41073. height: math.unit(27e6, "feet")
  41074. },
  41075. {
  41076. name: "Earth-Eclipsing",
  41077. height: math.unit(2.7e8, "feet")
  41078. },
  41079. {
  41080. name: "Gas Giant Gulper",
  41081. height: math.unit(2.7e9, "feet")
  41082. },
  41083. {
  41084. name: "Sol-Swallowing",
  41085. height: math.unit(9e10, "feet")
  41086. },
  41087. {
  41088. name: "Galaxy Gulper",
  41089. height: math.unit(9, "galaxies")
  41090. },
  41091. {
  41092. name: "Cosmos Churner",
  41093. height: math.unit(9, "universes")
  41094. },
  41095. ]
  41096. ))
  41097. characterMakers.push(() => makeCharacter(
  41098. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41099. {
  41100. front: {
  41101. height: math.unit(160, "cm"),
  41102. weight: math.unit(55, "kg"),
  41103. name: "Front",
  41104. image: {
  41105. source: "./media/characters/tow/front.svg",
  41106. extra: 1751/1722,
  41107. bottom: 74/1825
  41108. }
  41109. },
  41110. },
  41111. [
  41112. {
  41113. name: "Norm",
  41114. height: math.unit(160, "cm")
  41115. },
  41116. {
  41117. name: "Casual",
  41118. height: math.unit(3200, "m"),
  41119. default: true
  41120. },
  41121. {
  41122. name: "Show-Off",
  41123. height: math.unit(160, "km")
  41124. },
  41125. ]
  41126. ))
  41127. characterMakers.push(() => makeCharacter(
  41128. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41129. {
  41130. front: {
  41131. height: math.unit(7 + 11/12, "feet"),
  41132. weight: math.unit(342.8, "lb"),
  41133. name: "Front",
  41134. image: {
  41135. source: "./media/characters/vivian-orca-dragon/front.svg",
  41136. extra: 1890/1865,
  41137. bottom: 28/1918
  41138. }
  41139. },
  41140. },
  41141. [
  41142. {
  41143. name: "Micro",
  41144. height: math.unit(5, "inches")
  41145. },
  41146. {
  41147. name: "Normal",
  41148. height: math.unit(7 + 11/12, "feet"),
  41149. default: true
  41150. },
  41151. {
  41152. name: "Macro",
  41153. height: math.unit(395 + 7/12, "feet")
  41154. },
  41155. ]
  41156. ))
  41157. characterMakers.push(() => makeCharacter(
  41158. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41159. {
  41160. side: {
  41161. height: math.unit(10, "feet"),
  41162. weight: math.unit(1442, "lb"),
  41163. name: "Side",
  41164. image: {
  41165. source: "./media/characters/lotherakon/side.svg",
  41166. extra: 1604/1497,
  41167. bottom: 89/1693
  41168. }
  41169. },
  41170. },
  41171. [
  41172. {
  41173. name: "Mortal Interaction",
  41174. height: math.unit(10, "feet")
  41175. },
  41176. {
  41177. name: "Large",
  41178. height: math.unit(30, "feet"),
  41179. default: true
  41180. },
  41181. {
  41182. name: "Giant",
  41183. height: math.unit(100, "feet")
  41184. },
  41185. {
  41186. name: "Kaiju",
  41187. height: math.unit(300, "feet")
  41188. },
  41189. {
  41190. name: "Macro",
  41191. height: math.unit(1000, "feet")
  41192. },
  41193. {
  41194. name: "Macro+",
  41195. height: math.unit(3000, "feet")
  41196. },
  41197. {
  41198. name: "Megamacro",
  41199. height: math.unit(10000, "feet")
  41200. },
  41201. {
  41202. name: "City-Crushing",
  41203. height: math.unit(30000, "feet")
  41204. },
  41205. {
  41206. name: "Continent Cracker",
  41207. height: math.unit(30e6, "feet")
  41208. },
  41209. {
  41210. name: "Earth Eclipsing",
  41211. height: math.unit(3e8, "feet")
  41212. },
  41213. {
  41214. name: "Gas Giant Gulper",
  41215. height: math.unit(3e9, "feet")
  41216. },
  41217. {
  41218. name: "Sol-Swallowing",
  41219. height: math.unit(1e11, "feet")
  41220. },
  41221. {
  41222. name: "System Swallower",
  41223. height: math.unit(3e14, "feet")
  41224. },
  41225. {
  41226. name: "Galaxy Gulper",
  41227. height: math.unit(10, "galaxies")
  41228. },
  41229. {
  41230. name: "Light Universal",
  41231. height: math.unit(5, "universes")
  41232. },
  41233. {
  41234. name: "Universe Palm",
  41235. height: math.unit(20, "universes")
  41236. },
  41237. {
  41238. name: "Light Multiversal",
  41239. height: math.unit(5, "multiverses")
  41240. },
  41241. {
  41242. name: "Multiverse Palm",
  41243. height: math.unit(20, "multiverses")
  41244. },
  41245. {
  41246. name: "Inferno Incarnate",
  41247. height: math.unit(1e7, "multiverses")
  41248. },
  41249. ]
  41250. ))
  41251. characterMakers.push(() => makeCharacter(
  41252. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41253. {
  41254. front: {
  41255. height: math.unit(8, "feet"),
  41256. weight: math.unit(1200, "lb"),
  41257. name: "Front",
  41258. image: {
  41259. source: "./media/characters/malithee/front.svg",
  41260. extra: 1675/1640,
  41261. bottom: 162/1837
  41262. }
  41263. },
  41264. },
  41265. [
  41266. {
  41267. name: "Mortal Interaction",
  41268. height: math.unit(8, "feet"),
  41269. default: true
  41270. },
  41271. {
  41272. name: "Large",
  41273. height: math.unit(24, "feet")
  41274. },
  41275. {
  41276. name: "Kaiju",
  41277. height: math.unit(240, "feet")
  41278. },
  41279. {
  41280. name: "Megamacro",
  41281. height: math.unit(8000, "feet")
  41282. },
  41283. {
  41284. name: "Continent Cracker",
  41285. height: math.unit(24e6, "feet")
  41286. },
  41287. {
  41288. name: "Earth-Eclipsing",
  41289. height: math.unit(2.4e8, "feet")
  41290. },
  41291. {
  41292. name: "Sol-Swallowing",
  41293. height: math.unit(8e10, "feet")
  41294. },
  41295. {
  41296. name: "Galaxy Gulper",
  41297. height: math.unit(8, "galaxies")
  41298. },
  41299. {
  41300. name: "Light Universal",
  41301. height: math.unit(4, "universes")
  41302. },
  41303. {
  41304. name: "Universe Atoms",
  41305. height: math.unit(1.829e9, "universes")
  41306. },
  41307. {
  41308. name: "Light Multiversal",
  41309. height: math.unit(4, "multiverses")
  41310. },
  41311. {
  41312. name: "Multiverse Atoms",
  41313. height: math.unit(1.829e9, "multiverses")
  41314. },
  41315. {
  41316. name: "Nigh-Omnipresence",
  41317. height: math.unit(8e261, "multiverses")
  41318. },
  41319. ]
  41320. ))
  41321. characterMakers.push(() => makeCharacter(
  41322. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41323. {
  41324. front: {
  41325. height: math.unit(10, "feet"),
  41326. weight: math.unit(1500, "lb"),
  41327. name: "Front",
  41328. image: {
  41329. source: "./media/characters/miles-thestia/front.svg",
  41330. extra: 1812/1727,
  41331. bottom: 86/1898
  41332. }
  41333. },
  41334. back: {
  41335. height: math.unit(10, "feet"),
  41336. weight: math.unit(1500, "lb"),
  41337. name: "Back",
  41338. image: {
  41339. source: "./media/characters/miles-thestia/back.svg",
  41340. extra: 1799/1690,
  41341. bottom: 47/1846
  41342. }
  41343. },
  41344. frontNsfw: {
  41345. height: math.unit(10, "feet"),
  41346. weight: math.unit(1500, "lb"),
  41347. name: "Front (NSFW)",
  41348. image: {
  41349. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41350. extra: 1812/1727,
  41351. bottom: 86/1898
  41352. }
  41353. },
  41354. },
  41355. [
  41356. {
  41357. name: "Mini-Macro",
  41358. height: math.unit(10, "feet"),
  41359. default: true
  41360. },
  41361. ]
  41362. ))
  41363. characterMakers.push(() => makeCharacter(
  41364. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41365. {
  41366. front: {
  41367. height: math.unit(25, "feet"),
  41368. name: "Front",
  41369. image: {
  41370. source: "./media/characters/titan-s-wulf/front.svg",
  41371. extra: 1560/1484,
  41372. bottom: 76/1636
  41373. }
  41374. },
  41375. },
  41376. [
  41377. {
  41378. name: "Smallest",
  41379. height: math.unit(25, "feet"),
  41380. default: true
  41381. },
  41382. {
  41383. name: "Normal",
  41384. height: math.unit(200, "feet")
  41385. },
  41386. {
  41387. name: "Macro",
  41388. height: math.unit(200000, "feet")
  41389. },
  41390. {
  41391. name: "Multiversal Original",
  41392. height: math.unit(10000, "multiverses")
  41393. },
  41394. ]
  41395. ))
  41396. characterMakers.push(() => makeCharacter(
  41397. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41398. {
  41399. front: {
  41400. height: math.unit(8, "feet"),
  41401. weight: math.unit(553, "lb"),
  41402. name: "Front",
  41403. image: {
  41404. source: "./media/characters/tawendeh/front.svg",
  41405. extra: 2365/2268,
  41406. bottom: 83/2448
  41407. }
  41408. },
  41409. frontClothed: {
  41410. height: math.unit(8, "feet"),
  41411. weight: math.unit(553, "lb"),
  41412. name: "Front (Clothed)",
  41413. image: {
  41414. source: "./media/characters/tawendeh/front-clothed.svg",
  41415. extra: 2365/2268,
  41416. bottom: 83/2448
  41417. }
  41418. },
  41419. back: {
  41420. height: math.unit(8, "feet"),
  41421. weight: math.unit(553, "lb"),
  41422. name: "Back",
  41423. image: {
  41424. source: "./media/characters/tawendeh/back.svg",
  41425. extra: 2397/2294,
  41426. bottom: 42/2439
  41427. }
  41428. },
  41429. },
  41430. [
  41431. {
  41432. name: "Mortal Interaction",
  41433. height: math.unit(8, "feet"),
  41434. default: true
  41435. },
  41436. {
  41437. name: "Giant",
  41438. height: math.unit(80, "feet")
  41439. },
  41440. {
  41441. name: "Macro",
  41442. height: math.unit(800, "feet")
  41443. },
  41444. {
  41445. name: "Megamacro",
  41446. height: math.unit(8000, "feet")
  41447. },
  41448. {
  41449. name: "City-Crushing",
  41450. height: math.unit(24000, "feet")
  41451. },
  41452. {
  41453. name: "Mountain-Mashing",
  41454. height: math.unit(80000, "feet")
  41455. },
  41456. {
  41457. name: "Nation Nemesis",
  41458. height: math.unit(8e6, "feet")
  41459. },
  41460. {
  41461. name: "Continent Cracker",
  41462. height: math.unit(24e6, "feet")
  41463. },
  41464. {
  41465. name: "Earth-Eclipsing",
  41466. height: math.unit(2.4e8, "feet")
  41467. },
  41468. {
  41469. name: "Gas Giant Gulper",
  41470. height: math.unit(2.4e9, "feet")
  41471. },
  41472. {
  41473. name: "Sol-Swallowing",
  41474. height: math.unit(8e10, "feet")
  41475. },
  41476. {
  41477. name: "Galaxy Gulper",
  41478. height: math.unit(8, "galaxies")
  41479. },
  41480. {
  41481. name: "Cosmos Churner",
  41482. height: math.unit(8, "universes")
  41483. },
  41484. {
  41485. name: "Omnipotent Otter",
  41486. height: math.unit(80, "universes")
  41487. },
  41488. ]
  41489. ))
  41490. characterMakers.push(() => makeCharacter(
  41491. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41492. {
  41493. front: {
  41494. height: math.unit(2.6, "meters"),
  41495. weight: math.unit(900, "kg"),
  41496. name: "Front",
  41497. image: {
  41498. source: "./media/characters/neesha/front.svg",
  41499. extra: 1803/1653,
  41500. bottom: 128/1931
  41501. }
  41502. },
  41503. },
  41504. [
  41505. {
  41506. name: "Normal",
  41507. height: math.unit(2.6, "meters"),
  41508. default: true
  41509. },
  41510. {
  41511. name: "Macro",
  41512. height: math.unit(50, "meters")
  41513. },
  41514. ]
  41515. ))
  41516. characterMakers.push(() => makeCharacter(
  41517. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41518. {
  41519. front: {
  41520. height: math.unit(5, "feet"),
  41521. weight: math.unit(185, "lb"),
  41522. name: "Front",
  41523. image: {
  41524. source: "./media/characters/kyera/front.svg",
  41525. extra: 1875/1790,
  41526. bottom: 96/1971
  41527. }
  41528. },
  41529. },
  41530. [
  41531. {
  41532. name: "Normal",
  41533. height: math.unit(5, "feet"),
  41534. default: true
  41535. },
  41536. ]
  41537. ))
  41538. characterMakers.push(() => makeCharacter(
  41539. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41540. {
  41541. front: {
  41542. height: math.unit(7 + 6/12, "feet"),
  41543. weight: math.unit(540, "lb"),
  41544. name: "Front",
  41545. image: {
  41546. source: "./media/characters/yuko/front.svg",
  41547. extra: 1282/1222,
  41548. bottom: 101/1383
  41549. }
  41550. },
  41551. frontClothed: {
  41552. height: math.unit(7 + 6/12, "feet"),
  41553. weight: math.unit(540, "lb"),
  41554. name: "Front (Clothed)",
  41555. image: {
  41556. source: "./media/characters/yuko/front-clothed.svg",
  41557. extra: 1282/1222,
  41558. bottom: 101/1383
  41559. }
  41560. },
  41561. },
  41562. [
  41563. {
  41564. name: "Normal",
  41565. height: math.unit(7 + 6/12, "feet"),
  41566. default: true
  41567. },
  41568. {
  41569. name: "Macro",
  41570. height: math.unit(26 + 9/12, "feet")
  41571. },
  41572. {
  41573. name: "Megamacro",
  41574. height: math.unit(300, "feet")
  41575. },
  41576. {
  41577. name: "Gigamacro",
  41578. height: math.unit(5000, "feet")
  41579. },
  41580. {
  41581. name: "Planetary",
  41582. height: math.unit(10000, "miles")
  41583. },
  41584. ]
  41585. ))
  41586. characterMakers.push(() => makeCharacter(
  41587. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41588. {
  41589. front: {
  41590. height: math.unit(8 + 2/12, "feet"),
  41591. weight: math.unit(600, "lb"),
  41592. name: "Front",
  41593. image: {
  41594. source: "./media/characters/deam-nitrel/front.svg",
  41595. extra: 1308/1234,
  41596. bottom: 125/1433
  41597. }
  41598. },
  41599. },
  41600. [
  41601. {
  41602. name: "Normal",
  41603. height: math.unit(8 + 2/12, "feet"),
  41604. default: true
  41605. },
  41606. ]
  41607. ))
  41608. characterMakers.push(() => makeCharacter(
  41609. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41610. {
  41611. front: {
  41612. height: math.unit(6.1, "feet"),
  41613. weight: math.unit(180, "lb"),
  41614. name: "Front",
  41615. image: {
  41616. source: "./media/characters/skyress/front.svg",
  41617. extra: 1045/915,
  41618. bottom: 28/1073
  41619. }
  41620. },
  41621. maw: {
  41622. height: math.unit(1, "feet"),
  41623. name: "Maw",
  41624. image: {
  41625. source: "./media/characters/skyress/maw.svg"
  41626. }
  41627. },
  41628. },
  41629. [
  41630. {
  41631. name: "Normal",
  41632. height: math.unit(6.1, "feet"),
  41633. default: true
  41634. },
  41635. {
  41636. name: "Macro",
  41637. height: math.unit(200, "feet")
  41638. },
  41639. ]
  41640. ))
  41641. characterMakers.push(() => makeCharacter(
  41642. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41643. {
  41644. front: {
  41645. height: math.unit(4 + 2/12, "feet"),
  41646. weight: math.unit(40, "kg"),
  41647. name: "Front",
  41648. image: {
  41649. source: "./media/characters/amethyst-jones/front.svg",
  41650. extra: 1220/1150,
  41651. bottom: 101/1321
  41652. }
  41653. },
  41654. },
  41655. [
  41656. {
  41657. name: "Normal",
  41658. height: math.unit(4 + 2/12, "feet"),
  41659. default: true
  41660. },
  41661. ]
  41662. ))
  41663. characterMakers.push(() => makeCharacter(
  41664. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41665. {
  41666. front: {
  41667. height: math.unit(1.7, "m"),
  41668. weight: math.unit(135, "lb"),
  41669. name: "Front",
  41670. image: {
  41671. source: "./media/characters/jade/front.svg",
  41672. extra: 1818/1767,
  41673. bottom: 32/1850
  41674. }
  41675. },
  41676. back: {
  41677. height: math.unit(1.7, "m"),
  41678. weight: math.unit(135, "lb"),
  41679. name: "Back",
  41680. image: {
  41681. source: "./media/characters/jade/back.svg",
  41682. extra: 1869/1809,
  41683. bottom: 35/1904
  41684. }
  41685. },
  41686. hand: {
  41687. height: math.unit(0.24, "m"),
  41688. name: "Hand",
  41689. image: {
  41690. source: "./media/characters/jade/hand.svg"
  41691. }
  41692. },
  41693. foot: {
  41694. height: math.unit(0.263, "m"),
  41695. name: "Foot",
  41696. image: {
  41697. source: "./media/characters/jade/foot.svg"
  41698. }
  41699. },
  41700. dick: {
  41701. height: math.unit(0.47, "m"),
  41702. name: "Dick",
  41703. image: {
  41704. source: "./media/characters/jade/dick.svg"
  41705. }
  41706. },
  41707. },
  41708. [
  41709. {
  41710. name: "Micro",
  41711. height: math.unit(22, "cm")
  41712. },
  41713. {
  41714. name: "Normal",
  41715. height: math.unit(1.7, "m"),
  41716. default: true
  41717. },
  41718. {
  41719. name: "Macro",
  41720. height: math.unit(152, "m")
  41721. },
  41722. ]
  41723. ))
  41724. characterMakers.push(() => makeCharacter(
  41725. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41726. {
  41727. front: {
  41728. height: math.unit(100, "miles"),
  41729. weight: math.unit(20000, "tons"),
  41730. name: "Front",
  41731. image: {
  41732. source: "./media/characters/cookie/front.svg",
  41733. extra: 1125/1070,
  41734. bottom: 30/1155
  41735. }
  41736. },
  41737. },
  41738. [
  41739. {
  41740. name: "Big",
  41741. height: math.unit(50, "feet")
  41742. },
  41743. {
  41744. name: "Macro",
  41745. height: math.unit(100, "miles"),
  41746. default: true
  41747. },
  41748. {
  41749. name: "Megamacro",
  41750. height: math.unit(90000, "miles")
  41751. },
  41752. ]
  41753. ))
  41754. characterMakers.push(() => makeCharacter(
  41755. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41756. {
  41757. front: {
  41758. height: math.unit(6, "feet"),
  41759. weight: math.unit(145, "lb"),
  41760. name: "Front",
  41761. image: {
  41762. source: "./media/characters/farzian/front.svg",
  41763. extra: 1902/1693,
  41764. bottom: 108/2010
  41765. }
  41766. },
  41767. },
  41768. [
  41769. {
  41770. name: "Macro",
  41771. height: math.unit(500, "feet"),
  41772. default: true
  41773. },
  41774. ]
  41775. ))
  41776. characterMakers.push(() => makeCharacter(
  41777. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41778. {
  41779. front: {
  41780. height: math.unit(3 + 6/12, "feet"),
  41781. weight: math.unit(50, "lb"),
  41782. name: "Front",
  41783. image: {
  41784. source: "./media/characters/kimberly-tilson/front.svg",
  41785. extra: 1400/1322,
  41786. bottom: 36/1436
  41787. }
  41788. },
  41789. back: {
  41790. height: math.unit(3 + 6/12, "feet"),
  41791. weight: math.unit(50, "lb"),
  41792. name: "Back",
  41793. image: {
  41794. source: "./media/characters/kimberly-tilson/back.svg",
  41795. extra: 1370/1307,
  41796. bottom: 20/1390
  41797. }
  41798. },
  41799. },
  41800. [
  41801. {
  41802. name: "Normal",
  41803. height: math.unit(3 + 6/12, "feet"),
  41804. default: true
  41805. },
  41806. ]
  41807. ))
  41808. characterMakers.push(() => makeCharacter(
  41809. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41810. {
  41811. front: {
  41812. height: math.unit(1148, "feet"),
  41813. weight: math.unit(34057, "lb"),
  41814. name: "Front",
  41815. image: {
  41816. source: "./media/characters/harthos/front.svg",
  41817. extra: 1391/1339,
  41818. bottom: 13/1404
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Macro",
  41825. height: math.unit(1148, "feet"),
  41826. default: true
  41827. },
  41828. ]
  41829. ))
  41830. characterMakers.push(() => makeCharacter(
  41831. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41832. {
  41833. front: {
  41834. height: math.unit(15, "feet"),
  41835. name: "Front",
  41836. image: {
  41837. source: "./media/characters/hypatia/front.svg",
  41838. extra: 1653/1591,
  41839. bottom: 79/1732
  41840. }
  41841. },
  41842. },
  41843. [
  41844. {
  41845. name: "Normal",
  41846. height: math.unit(15, "feet")
  41847. },
  41848. {
  41849. name: "Small",
  41850. height: math.unit(300, "feet")
  41851. },
  41852. {
  41853. name: "Macro",
  41854. height: math.unit(2500, "feet"),
  41855. default: true
  41856. },
  41857. {
  41858. name: "Mega Macro",
  41859. height: math.unit(1500, "miles")
  41860. },
  41861. {
  41862. name: "Giga Macro",
  41863. height: math.unit(1.5e6, "miles")
  41864. },
  41865. ]
  41866. ))
  41867. characterMakers.push(() => makeCharacter(
  41868. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41869. {
  41870. front: {
  41871. height: math.unit(6, "feet"),
  41872. weight: math.unit(200, "lb"),
  41873. name: "Front",
  41874. image: {
  41875. source: "./media/characters/wulver/front.svg",
  41876. extra: 1724/1632,
  41877. bottom: 130/1854
  41878. }
  41879. },
  41880. frontNsfw: {
  41881. height: math.unit(6, "feet"),
  41882. weight: math.unit(200, "lb"),
  41883. name: "Front (NSFW)",
  41884. image: {
  41885. source: "./media/characters/wulver/front-nsfw.svg",
  41886. extra: 1724/1632,
  41887. bottom: 130/1854
  41888. }
  41889. },
  41890. },
  41891. [
  41892. {
  41893. name: "Human-Sized",
  41894. height: math.unit(6, "feet")
  41895. },
  41896. {
  41897. name: "Normal",
  41898. height: math.unit(4, "meters"),
  41899. default: true
  41900. },
  41901. {
  41902. name: "Large",
  41903. height: math.unit(6, "m")
  41904. },
  41905. ]
  41906. ))
  41907. characterMakers.push(() => makeCharacter(
  41908. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41909. {
  41910. front: {
  41911. height: math.unit(7, "feet"),
  41912. name: "Front",
  41913. image: {
  41914. source: "./media/characters/maru/front.svg",
  41915. extra: 1595/1570,
  41916. bottom: 0/1595
  41917. }
  41918. },
  41919. },
  41920. [
  41921. {
  41922. name: "Normal",
  41923. height: math.unit(7, "feet"),
  41924. default: true
  41925. },
  41926. {
  41927. name: "Macro",
  41928. height: math.unit(700, "feet")
  41929. },
  41930. {
  41931. name: "Mega Macro",
  41932. height: math.unit(25, "miles")
  41933. },
  41934. ]
  41935. ))
  41936. characterMakers.push(() => makeCharacter(
  41937. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41938. {
  41939. front: {
  41940. height: math.unit(6, "feet"),
  41941. weight: math.unit(170, "lb"),
  41942. name: "Front",
  41943. image: {
  41944. source: "./media/characters/xenon/front.svg",
  41945. extra: 1376/1305,
  41946. bottom: 56/1432
  41947. }
  41948. },
  41949. back: {
  41950. height: math.unit(6, "feet"),
  41951. weight: math.unit(170, "lb"),
  41952. name: "Back",
  41953. image: {
  41954. source: "./media/characters/xenon/back.svg",
  41955. extra: 1328/1259,
  41956. bottom: 95/1423
  41957. }
  41958. },
  41959. maw: {
  41960. height: math.unit(0.52, "feet"),
  41961. name: "Maw",
  41962. image: {
  41963. source: "./media/characters/xenon/maw.svg"
  41964. }
  41965. },
  41966. handLeft: {
  41967. height: math.unit(0.82 * 169 / 153, "feet"),
  41968. name: "Hand (Left)",
  41969. image: {
  41970. source: "./media/characters/xenon/hand-left.svg"
  41971. }
  41972. },
  41973. handRight: {
  41974. height: math.unit(0.82, "feet"),
  41975. name: "Hand (Right)",
  41976. image: {
  41977. source: "./media/characters/xenon/hand-right.svg"
  41978. }
  41979. },
  41980. footLeft: {
  41981. height: math.unit(1.13, "feet"),
  41982. name: "Foot (Left)",
  41983. image: {
  41984. source: "./media/characters/xenon/foot-left.svg"
  41985. }
  41986. },
  41987. footRight: {
  41988. height: math.unit(1.13 * 194 / 196, "feet"),
  41989. name: "Foot (Right)",
  41990. image: {
  41991. source: "./media/characters/xenon/foot-right.svg"
  41992. }
  41993. },
  41994. },
  41995. [
  41996. {
  41997. name: "Micro",
  41998. height: math.unit(0.8, "inches")
  41999. },
  42000. {
  42001. name: "Normal",
  42002. height: math.unit(6, "feet")
  42003. },
  42004. {
  42005. name: "Macro",
  42006. height: math.unit(50, "feet"),
  42007. default: true
  42008. },
  42009. {
  42010. name: "Macro+",
  42011. height: math.unit(250, "feet")
  42012. },
  42013. {
  42014. name: "Megamacro",
  42015. height: math.unit(1500, "feet")
  42016. },
  42017. ]
  42018. ))
  42019. characterMakers.push(() => makeCharacter(
  42020. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42021. {
  42022. front: {
  42023. height: math.unit(7 + 5/12, "feet"),
  42024. name: "Front",
  42025. image: {
  42026. source: "./media/characters/zane/front.svg",
  42027. extra: 1260/1203,
  42028. bottom: 94/1354
  42029. }
  42030. },
  42031. back: {
  42032. height: math.unit(5.05, "feet"),
  42033. name: "Back",
  42034. image: {
  42035. source: "./media/characters/zane/back.svg",
  42036. extra: 893/829,
  42037. bottom: 30/923
  42038. }
  42039. },
  42040. werewolf: {
  42041. height: math.unit(11, "feet"),
  42042. name: "Werewolf",
  42043. image: {
  42044. source: "./media/characters/zane/werewolf.svg",
  42045. extra: 1383/1323,
  42046. bottom: 89/1472
  42047. }
  42048. },
  42049. foot: {
  42050. height: math.unit(1.46, "feet"),
  42051. name: "Foot",
  42052. image: {
  42053. source: "./media/characters/zane/foot.svg"
  42054. }
  42055. },
  42056. footFront: {
  42057. height: math.unit(0.784, "feet"),
  42058. name: "Foot (Front)",
  42059. image: {
  42060. source: "./media/characters/zane/foot-front.svg"
  42061. }
  42062. },
  42063. dick: {
  42064. height: math.unit(1.95, "feet"),
  42065. name: "Dick",
  42066. image: {
  42067. source: "./media/characters/zane/dick.svg"
  42068. }
  42069. },
  42070. dickWerewolf: {
  42071. height: math.unit(3.77, "feet"),
  42072. name: "Dick (Werewolf)",
  42073. image: {
  42074. source: "./media/characters/zane/dick.svg"
  42075. }
  42076. },
  42077. },
  42078. [
  42079. {
  42080. name: "Normal",
  42081. height: math.unit(7 + 5/12, "feet"),
  42082. default: true
  42083. },
  42084. ]
  42085. ))
  42086. characterMakers.push(() => makeCharacter(
  42087. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42088. {
  42089. front: {
  42090. height: math.unit(6 + 2/12, "feet"),
  42091. weight: math.unit(284, "lb"),
  42092. name: "Front",
  42093. image: {
  42094. source: "./media/characters/benni-desparque/front.svg",
  42095. extra: 1353/1126,
  42096. bottom: 69/1422
  42097. }
  42098. },
  42099. },
  42100. [
  42101. {
  42102. name: "Civilian",
  42103. height: math.unit(6 + 2/12, "feet")
  42104. },
  42105. {
  42106. name: "Normal",
  42107. height: math.unit(98, "feet"),
  42108. default: true
  42109. },
  42110. {
  42111. name: "Kaiju Fighter",
  42112. height: math.unit(268, "feet")
  42113. },
  42114. ]
  42115. ))
  42116. characterMakers.push(() => makeCharacter(
  42117. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42118. {
  42119. front: {
  42120. height: math.unit(5, "feet"),
  42121. weight: math.unit(105, "lb"),
  42122. name: "Front",
  42123. image: {
  42124. source: "./media/characters/maxine/front.svg",
  42125. extra: 1386/1250,
  42126. bottom: 71/1457
  42127. }
  42128. },
  42129. },
  42130. [
  42131. {
  42132. name: "Normal",
  42133. height: math.unit(5, "feet"),
  42134. default: true
  42135. },
  42136. ]
  42137. ))
  42138. characterMakers.push(() => makeCharacter(
  42139. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42140. {
  42141. front: {
  42142. height: math.unit(11 + 7/12, "feet"),
  42143. weight: math.unit(9576, "lb"),
  42144. name: "Front",
  42145. image: {
  42146. source: "./media/characters/scaly/front.svg",
  42147. extra: 888/867,
  42148. bottom: 36/924
  42149. }
  42150. },
  42151. },
  42152. [
  42153. {
  42154. name: "Normal",
  42155. height: math.unit(11 + 7/12, "feet"),
  42156. default: true
  42157. },
  42158. ]
  42159. ))
  42160. characterMakers.push(() => makeCharacter(
  42161. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42162. {
  42163. front: {
  42164. height: math.unit(6 + 3/12, "feet"),
  42165. name: "Front",
  42166. image: {
  42167. source: "./media/characters/saelria/front.svg",
  42168. extra: 1243/1138,
  42169. bottom: 46/1289
  42170. }
  42171. },
  42172. },
  42173. [
  42174. {
  42175. name: "Micro",
  42176. height: math.unit(6, "inches"),
  42177. },
  42178. {
  42179. name: "Normal",
  42180. height: math.unit(6 + 3/12, "feet"),
  42181. default: true
  42182. },
  42183. {
  42184. name: "Macro",
  42185. height: math.unit(25, "feet")
  42186. },
  42187. ]
  42188. ))
  42189. characterMakers.push(() => makeCharacter(
  42190. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42191. {
  42192. front: {
  42193. height: math.unit(80, "meters"),
  42194. weight: math.unit(7000, "tonnes"),
  42195. name: "Front",
  42196. image: {
  42197. source: "./media/characters/tef/front.svg",
  42198. extra: 2036/1991,
  42199. bottom: 54/2090
  42200. }
  42201. },
  42202. back: {
  42203. height: math.unit(80, "meters"),
  42204. weight: math.unit(7000, "tonnes"),
  42205. name: "Back",
  42206. image: {
  42207. source: "./media/characters/tef/back.svg",
  42208. extra: 2036/1991,
  42209. bottom: 54/2090
  42210. }
  42211. },
  42212. },
  42213. [
  42214. {
  42215. name: "Macro",
  42216. height: math.unit(80, "meters"),
  42217. default: true
  42218. },
  42219. ]
  42220. ))
  42221. characterMakers.push(() => makeCharacter(
  42222. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42223. {
  42224. front: {
  42225. height: math.unit(13, "feet"),
  42226. weight: math.unit(6, "tons"),
  42227. name: "Front",
  42228. image: {
  42229. source: "./media/characters/rover/front.svg",
  42230. extra: 1233/1156,
  42231. bottom: 50/1283
  42232. }
  42233. },
  42234. back: {
  42235. height: math.unit(13, "feet"),
  42236. weight: math.unit(6, "tons"),
  42237. name: "Back",
  42238. image: {
  42239. source: "./media/characters/rover/back.svg",
  42240. extra: 1327/1258,
  42241. bottom: 39/1366
  42242. }
  42243. },
  42244. },
  42245. [
  42246. {
  42247. name: "Normal",
  42248. height: math.unit(13, "feet"),
  42249. default: true
  42250. },
  42251. {
  42252. name: "Macro",
  42253. height: math.unit(1300, "feet")
  42254. },
  42255. {
  42256. name: "Megamacro",
  42257. height: math.unit(1300, "miles")
  42258. },
  42259. {
  42260. name: "Gigamacro",
  42261. height: math.unit(1300000, "miles")
  42262. },
  42263. ]
  42264. ))
  42265. characterMakers.push(() => makeCharacter(
  42266. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42267. {
  42268. front: {
  42269. height: math.unit(6, "feet"),
  42270. weight: math.unit(150, "lb"),
  42271. name: "Front",
  42272. image: {
  42273. source: "./media/characters/ariz/front.svg",
  42274. extra: 1401/1346,
  42275. bottom: 5/1406
  42276. }
  42277. },
  42278. },
  42279. [
  42280. {
  42281. name: "Normal",
  42282. height: math.unit(10, "feet"),
  42283. default: true
  42284. },
  42285. ]
  42286. ))
  42287. characterMakers.push(() => makeCharacter(
  42288. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42289. {
  42290. front: {
  42291. height: math.unit(6, "feet"),
  42292. weight: math.unit(140, "lb"),
  42293. name: "Front",
  42294. image: {
  42295. source: "./media/characters/sigrun/front.svg",
  42296. extra: 1418/1359,
  42297. bottom: 27/1445
  42298. }
  42299. },
  42300. },
  42301. [
  42302. {
  42303. name: "Macro",
  42304. height: math.unit(35, "feet"),
  42305. default: true
  42306. },
  42307. ]
  42308. ))
  42309. characterMakers.push(() => makeCharacter(
  42310. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42311. {
  42312. front: {
  42313. height: math.unit(6, "feet"),
  42314. weight: math.unit(150, "lb"),
  42315. name: "Front",
  42316. image: {
  42317. source: "./media/characters/numin/front.svg",
  42318. extra: 1433/1388,
  42319. bottom: 12/1445
  42320. }
  42321. },
  42322. },
  42323. [
  42324. {
  42325. name: "Macro",
  42326. height: math.unit(21.5, "km"),
  42327. default: true
  42328. },
  42329. ]
  42330. ))
  42331. characterMakers.push(() => makeCharacter(
  42332. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42333. {
  42334. front: {
  42335. height: math.unit(6, "feet"),
  42336. weight: math.unit(463, "lb"),
  42337. name: "Front",
  42338. image: {
  42339. source: "./media/characters/melwa/front.svg",
  42340. extra: 1307/1248,
  42341. bottom: 93/1400
  42342. }
  42343. },
  42344. },
  42345. [
  42346. {
  42347. name: "Macro",
  42348. height: math.unit(50, "meters"),
  42349. default: true
  42350. },
  42351. ]
  42352. ))
  42353. characterMakers.push(() => makeCharacter(
  42354. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42355. {
  42356. front: {
  42357. height: math.unit(325, "feet"),
  42358. name: "Front",
  42359. image: {
  42360. source: "./media/characters/zorkaiju/front.svg",
  42361. extra: 1955/1814,
  42362. bottom: 40/1995
  42363. }
  42364. },
  42365. frontExtended: {
  42366. height: math.unit(325, "feet"),
  42367. name: "Front (Extended)",
  42368. image: {
  42369. source: "./media/characters/zorkaiju/front-extended.svg",
  42370. extra: 1955/1814,
  42371. bottom: 40/1995
  42372. }
  42373. },
  42374. side: {
  42375. height: math.unit(325, "feet"),
  42376. name: "Side",
  42377. image: {
  42378. source: "./media/characters/zorkaiju/side.svg",
  42379. extra: 1495/1396,
  42380. bottom: 17/1512
  42381. }
  42382. },
  42383. sideExtended: {
  42384. height: math.unit(325, "feet"),
  42385. name: "Side (Extended)",
  42386. image: {
  42387. source: "./media/characters/zorkaiju/side-extended.svg",
  42388. extra: 1495/1396,
  42389. bottom: 17/1512
  42390. }
  42391. },
  42392. back: {
  42393. height: math.unit(325, "feet"),
  42394. name: "Back",
  42395. image: {
  42396. source: "./media/characters/zorkaiju/back.svg",
  42397. extra: 1959/1821,
  42398. bottom: 31/1990
  42399. }
  42400. },
  42401. backExtended: {
  42402. height: math.unit(325, "feet"),
  42403. name: "Back (Extended)",
  42404. image: {
  42405. source: "./media/characters/zorkaiju/back-extended.svg",
  42406. extra: 1959/1821,
  42407. bottom: 31/1990
  42408. }
  42409. },
  42410. hand: {
  42411. height: math.unit(58.4, "feet"),
  42412. name: "Hand",
  42413. image: {
  42414. source: "./media/characters/zorkaiju/hand.svg"
  42415. }
  42416. },
  42417. handExtended: {
  42418. height: math.unit(61.4, "feet"),
  42419. name: "Hand (Extended)",
  42420. image: {
  42421. source: "./media/characters/zorkaiju/hand-extended.svg"
  42422. }
  42423. },
  42424. foot: {
  42425. height: math.unit(95, "feet"),
  42426. name: "Foot",
  42427. image: {
  42428. source: "./media/characters/zorkaiju/foot.svg"
  42429. }
  42430. },
  42431. leftArm: {
  42432. height: math.unit(59, "feet"),
  42433. name: "Left Arm",
  42434. image: {
  42435. source: "./media/characters/zorkaiju/left-arm.svg"
  42436. }
  42437. },
  42438. rightArm: {
  42439. height: math.unit(59, "feet"),
  42440. name: "Right Arm",
  42441. image: {
  42442. source: "./media/characters/zorkaiju/right-arm.svg"
  42443. }
  42444. },
  42445. leftArmExtended: {
  42446. height: math.unit(59 * 1.033546, "feet"),
  42447. name: "Left Arm (Extended)",
  42448. image: {
  42449. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42450. }
  42451. },
  42452. rightArmExtended: {
  42453. height: math.unit(59 * 1.0496, "feet"),
  42454. name: "Right Arm (Extended)",
  42455. image: {
  42456. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42457. }
  42458. },
  42459. tail: {
  42460. height: math.unit(104, "feet"),
  42461. name: "Tail",
  42462. image: {
  42463. source: "./media/characters/zorkaiju/tail.svg"
  42464. }
  42465. },
  42466. tailExtended: {
  42467. height: math.unit(104, "feet"),
  42468. name: "Tail (Extended)",
  42469. image: {
  42470. source: "./media/characters/zorkaiju/tail-extended.svg"
  42471. }
  42472. },
  42473. tailBottom: {
  42474. height: math.unit(104, "feet"),
  42475. name: "Tail Bottom",
  42476. image: {
  42477. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42478. }
  42479. },
  42480. crystal: {
  42481. height: math.unit(27.54, "feet"),
  42482. name: "Crystal",
  42483. image: {
  42484. source: "./media/characters/zorkaiju/crystal.svg"
  42485. }
  42486. },
  42487. },
  42488. [
  42489. {
  42490. name: "Kaiju",
  42491. height: math.unit(325, "feet"),
  42492. default: true
  42493. },
  42494. ]
  42495. ))
  42496. characterMakers.push(() => makeCharacter(
  42497. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42498. {
  42499. front: {
  42500. height: math.unit(6 + 1/12, "feet"),
  42501. weight: math.unit(115, "lb"),
  42502. name: "Front",
  42503. image: {
  42504. source: "./media/characters/bailey-belfry/front.svg",
  42505. extra: 1240/1121,
  42506. bottom: 101/1341
  42507. }
  42508. },
  42509. },
  42510. [
  42511. {
  42512. name: "Normal",
  42513. height: math.unit(6 + 1/12, "feet"),
  42514. default: true
  42515. },
  42516. ]
  42517. ))
  42518. characterMakers.push(() => makeCharacter(
  42519. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42520. {
  42521. side: {
  42522. height: math.unit(4, "meters"),
  42523. weight: math.unit(250, "kg"),
  42524. name: "Side",
  42525. image: {
  42526. source: "./media/characters/blacky/side.svg",
  42527. extra: 1027/919,
  42528. bottom: 43/1070
  42529. }
  42530. },
  42531. maw: {
  42532. height: math.unit(1, "meters"),
  42533. name: "Maw",
  42534. image: {
  42535. source: "./media/characters/blacky/maw.svg"
  42536. }
  42537. },
  42538. paw: {
  42539. height: math.unit(1, "meters"),
  42540. name: "Paw",
  42541. image: {
  42542. source: "./media/characters/blacky/paw.svg"
  42543. }
  42544. },
  42545. },
  42546. [
  42547. {
  42548. name: "Normal",
  42549. height: math.unit(4, "meters"),
  42550. default: true
  42551. },
  42552. ]
  42553. ))
  42554. characterMakers.push(() => makeCharacter(
  42555. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42556. {
  42557. front: {
  42558. height: math.unit(170, "cm"),
  42559. weight: math.unit(66, "kg"),
  42560. name: "Front",
  42561. image: {
  42562. source: "./media/characters/thux-ei/front.svg",
  42563. extra: 1109/1011,
  42564. bottom: 8/1117
  42565. }
  42566. },
  42567. },
  42568. [
  42569. {
  42570. name: "Normal",
  42571. height: math.unit(170, "cm"),
  42572. default: true
  42573. },
  42574. ]
  42575. ))
  42576. characterMakers.push(() => makeCharacter(
  42577. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42578. {
  42579. front: {
  42580. height: math.unit(5, "feet"),
  42581. weight: math.unit(120, "lb"),
  42582. name: "Front",
  42583. image: {
  42584. source: "./media/characters/roxanne-voltaire/front.svg",
  42585. extra: 1901/1779,
  42586. bottom: 53/1954
  42587. }
  42588. },
  42589. },
  42590. [
  42591. {
  42592. name: "Normal",
  42593. height: math.unit(5, "feet"),
  42594. default: true
  42595. },
  42596. {
  42597. name: "Giant",
  42598. height: math.unit(50, "feet")
  42599. },
  42600. {
  42601. name: "Titan",
  42602. height: math.unit(500, "feet")
  42603. },
  42604. {
  42605. name: "Macro",
  42606. height: math.unit(5000, "feet")
  42607. },
  42608. {
  42609. name: "Megamacro",
  42610. height: math.unit(50000, "feet")
  42611. },
  42612. {
  42613. name: "Gigamacro",
  42614. height: math.unit(500000, "feet")
  42615. },
  42616. {
  42617. name: "Teramacro",
  42618. height: math.unit(5e6, "feet")
  42619. },
  42620. ]
  42621. ))
  42622. characterMakers.push(() => makeCharacter(
  42623. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42624. {
  42625. front: {
  42626. height: math.unit(6 + 2/12, "feet"),
  42627. name: "Front",
  42628. image: {
  42629. source: "./media/characters/squeaks/front.svg",
  42630. extra: 1823/1768,
  42631. bottom: 138/1961
  42632. }
  42633. },
  42634. },
  42635. [
  42636. {
  42637. name: "Micro",
  42638. height: math.unit(0.5, "inches")
  42639. },
  42640. {
  42641. name: "Normal",
  42642. height: math.unit(6 + 2/12, "feet"),
  42643. default: true
  42644. },
  42645. {
  42646. name: "Macro",
  42647. height: math.unit(600, "feet")
  42648. },
  42649. ]
  42650. ))
  42651. characterMakers.push(() => makeCharacter(
  42652. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42653. {
  42654. front: {
  42655. height: math.unit(1.72, "meters"),
  42656. name: "Front",
  42657. image: {
  42658. source: "./media/characters/archinger/front.svg",
  42659. extra: 1861/1675,
  42660. bottom: 125/1986
  42661. }
  42662. },
  42663. back: {
  42664. height: math.unit(1.72, "meters"),
  42665. name: "Back",
  42666. image: {
  42667. source: "./media/characters/archinger/back.svg",
  42668. extra: 1844/1701,
  42669. bottom: 104/1948
  42670. }
  42671. },
  42672. cock: {
  42673. height: math.unit(0.59, "feet"),
  42674. name: "Cock",
  42675. image: {
  42676. source: "./media/characters/archinger/cock.svg"
  42677. }
  42678. },
  42679. },
  42680. [
  42681. {
  42682. name: "Normal",
  42683. height: math.unit(1.72, "meters"),
  42684. default: true
  42685. },
  42686. {
  42687. name: "Macro",
  42688. height: math.unit(84, "meters")
  42689. },
  42690. {
  42691. name: "Macro+",
  42692. height: math.unit(112, "meters")
  42693. },
  42694. {
  42695. name: "Macro++",
  42696. height: math.unit(960, "meters")
  42697. },
  42698. {
  42699. name: "Macro+++",
  42700. height: math.unit(4, "km")
  42701. },
  42702. {
  42703. name: "Macro++++",
  42704. height: math.unit(48, "km")
  42705. },
  42706. {
  42707. name: "Macro+++++",
  42708. height: math.unit(4500, "km")
  42709. },
  42710. ]
  42711. ))
  42712. characterMakers.push(() => makeCharacter(
  42713. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42714. {
  42715. front: {
  42716. height: math.unit(5 + 5/12, "feet"),
  42717. name: "Front",
  42718. image: {
  42719. source: "./media/characters/alsnapz/front.svg",
  42720. extra: 1157/1065,
  42721. bottom: 42/1199
  42722. }
  42723. },
  42724. },
  42725. [
  42726. {
  42727. name: "Normal",
  42728. height: math.unit(5 + 5/12, "feet"),
  42729. default: true
  42730. },
  42731. ]
  42732. ))
  42733. characterMakers.push(() => makeCharacter(
  42734. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42735. {
  42736. side: {
  42737. height: math.unit(3.2, "earths"),
  42738. name: "Side",
  42739. image: {
  42740. source: "./media/characters/mag/side.svg",
  42741. extra: 1331/1008,
  42742. bottom: 52/1383
  42743. }
  42744. },
  42745. wing: {
  42746. height: math.unit(1.94, "earths"),
  42747. name: "Wing",
  42748. image: {
  42749. source: "./media/characters/mag/wing.svg"
  42750. }
  42751. },
  42752. dick: {
  42753. height: math.unit(1.8, "earths"),
  42754. name: "Dick",
  42755. image: {
  42756. source: "./media/characters/mag/dick.svg"
  42757. }
  42758. },
  42759. ass: {
  42760. height: math.unit(1.33, "earths"),
  42761. name: "Ass",
  42762. image: {
  42763. source: "./media/characters/mag/ass.svg"
  42764. }
  42765. },
  42766. head: {
  42767. height: math.unit(1.1, "earths"),
  42768. name: "Head",
  42769. image: {
  42770. source: "./media/characters/mag/head.svg"
  42771. }
  42772. },
  42773. maw: {
  42774. height: math.unit(1.62, "earths"),
  42775. name: "Maw",
  42776. image: {
  42777. source: "./media/characters/mag/maw.svg"
  42778. }
  42779. },
  42780. },
  42781. [
  42782. {
  42783. name: "Small",
  42784. height: math.unit(162, "feet")
  42785. },
  42786. {
  42787. name: "Normal",
  42788. height: math.unit(3.2, "earths"),
  42789. default: true
  42790. },
  42791. ]
  42792. ))
  42793. characterMakers.push(() => makeCharacter(
  42794. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42795. {
  42796. front: {
  42797. height: math.unit(512, "feet"),
  42798. weight: math.unit(63509, "tonnes"),
  42799. name: "Front",
  42800. image: {
  42801. source: "./media/characters/vorrel-harroc/front.svg",
  42802. extra: 1075/1063,
  42803. bottom: 62/1137
  42804. }
  42805. },
  42806. },
  42807. [
  42808. {
  42809. name: "Normal",
  42810. height: math.unit(10, "feet")
  42811. },
  42812. {
  42813. name: "Macro",
  42814. height: math.unit(512, "feet"),
  42815. default: true
  42816. },
  42817. {
  42818. name: "Megamacro",
  42819. height: math.unit(256, "miles")
  42820. },
  42821. {
  42822. name: "Gigamacro",
  42823. height: math.unit(4096, "miles")
  42824. },
  42825. ]
  42826. ))
  42827. characterMakers.push(() => makeCharacter(
  42828. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42829. {
  42830. side: {
  42831. height: math.unit(50, "feet"),
  42832. name: "Side",
  42833. image: {
  42834. source: "./media/characters/froimar/side.svg",
  42835. extra: 855/638,
  42836. bottom: 99/954
  42837. }
  42838. },
  42839. },
  42840. [
  42841. {
  42842. name: "Macro",
  42843. height: math.unit(50, "feet"),
  42844. default: true
  42845. },
  42846. ]
  42847. ))
  42848. characterMakers.push(() => makeCharacter(
  42849. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42850. {
  42851. front: {
  42852. height: math.unit(210, "miles"),
  42853. name: "Front",
  42854. image: {
  42855. source: "./media/characters/timothy/front.svg",
  42856. extra: 1007/943,
  42857. bottom: 62/1069
  42858. }
  42859. },
  42860. frontSkirt: {
  42861. height: math.unit(210, "miles"),
  42862. name: "Front (Skirt)",
  42863. image: {
  42864. source: "./media/characters/timothy/front-skirt.svg",
  42865. extra: 1007/943,
  42866. bottom: 62/1069
  42867. }
  42868. },
  42869. frontCoat: {
  42870. height: math.unit(210, "miles"),
  42871. name: "Front (Coat)",
  42872. image: {
  42873. source: "./media/characters/timothy/front-coat.svg",
  42874. extra: 1007/943,
  42875. bottom: 62/1069
  42876. }
  42877. },
  42878. },
  42879. [
  42880. {
  42881. name: "Macro",
  42882. height: math.unit(210, "miles"),
  42883. default: true
  42884. },
  42885. {
  42886. name: "Megamacro",
  42887. height: math.unit(210000, "miles")
  42888. },
  42889. ]
  42890. ))
  42891. characterMakers.push(() => makeCharacter(
  42892. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42893. {
  42894. front: {
  42895. height: math.unit(188, "feet"),
  42896. name: "Front",
  42897. image: {
  42898. source: "./media/characters/pyotr/front.svg",
  42899. extra: 1912/1826,
  42900. bottom: 18/1930
  42901. }
  42902. },
  42903. },
  42904. [
  42905. {
  42906. name: "Macro",
  42907. height: math.unit(188, "feet"),
  42908. default: true
  42909. },
  42910. {
  42911. name: "Megamacro",
  42912. height: math.unit(8, "miles")
  42913. },
  42914. ]
  42915. ))
  42916. characterMakers.push(() => makeCharacter(
  42917. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42918. {
  42919. side: {
  42920. height: math.unit(10, "feet"),
  42921. weight: math.unit(4500, "lb"),
  42922. name: "Side",
  42923. image: {
  42924. source: "./media/characters/ackart/side.svg",
  42925. extra: 1776/1668,
  42926. bottom: 116/1892
  42927. }
  42928. },
  42929. },
  42930. [
  42931. {
  42932. name: "Normal",
  42933. height: math.unit(10, "feet"),
  42934. default: true
  42935. },
  42936. ]
  42937. ))
  42938. characterMakers.push(() => makeCharacter(
  42939. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42940. {
  42941. side: {
  42942. height: math.unit(21, "feet"),
  42943. name: "Side",
  42944. image: {
  42945. source: "./media/characters/nolow/side.svg",
  42946. extra: 1484/1434,
  42947. bottom: 85/1569
  42948. }
  42949. },
  42950. sideErect: {
  42951. height: math.unit(21, "feet"),
  42952. name: "Side-erect",
  42953. image: {
  42954. source: "./media/characters/nolow/side-erect.svg",
  42955. extra: 1484/1434,
  42956. bottom: 85/1569
  42957. }
  42958. },
  42959. },
  42960. [
  42961. {
  42962. name: "Regular",
  42963. height: math.unit(12, "feet")
  42964. },
  42965. {
  42966. name: "Big Chee",
  42967. height: math.unit(21, "feet"),
  42968. default: true
  42969. },
  42970. ]
  42971. ))
  42972. characterMakers.push(() => makeCharacter(
  42973. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42974. {
  42975. front: {
  42976. height: math.unit(7, "feet"),
  42977. weight: math.unit(250, "lb"),
  42978. name: "Front",
  42979. image: {
  42980. source: "./media/characters/nines/front.svg",
  42981. extra: 1741/1607,
  42982. bottom: 41/1782
  42983. }
  42984. },
  42985. side: {
  42986. height: math.unit(7, "feet"),
  42987. weight: math.unit(250, "lb"),
  42988. name: "Side",
  42989. image: {
  42990. source: "./media/characters/nines/side.svg",
  42991. extra: 1854/1735,
  42992. bottom: 93/1947
  42993. }
  42994. },
  42995. back: {
  42996. height: math.unit(7, "feet"),
  42997. weight: math.unit(250, "lb"),
  42998. name: "Back",
  42999. image: {
  43000. source: "./media/characters/nines/back.svg",
  43001. extra: 1748/1615,
  43002. bottom: 20/1768
  43003. }
  43004. },
  43005. },
  43006. [
  43007. {
  43008. name: "Megamacro",
  43009. height: math.unit(99, "km"),
  43010. default: true
  43011. },
  43012. ]
  43013. ))
  43014. characterMakers.push(() => makeCharacter(
  43015. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43016. {
  43017. front: {
  43018. height: math.unit(5 + 10/12, "feet"),
  43019. weight: math.unit(210, "lb"),
  43020. name: "Front",
  43021. image: {
  43022. source: "./media/characters/zenith/front.svg",
  43023. extra: 1531/1452,
  43024. bottom: 198/1729
  43025. }
  43026. },
  43027. back: {
  43028. height: math.unit(5 + 10/12, "feet"),
  43029. weight: math.unit(210, "lb"),
  43030. name: "Back",
  43031. image: {
  43032. source: "./media/characters/zenith/back.svg",
  43033. extra: 1571/1487,
  43034. bottom: 75/1646
  43035. }
  43036. },
  43037. },
  43038. [
  43039. {
  43040. name: "Normal",
  43041. height: math.unit(5 + 10/12, "feet"),
  43042. default: true
  43043. }
  43044. ]
  43045. ))
  43046. characterMakers.push(() => makeCharacter(
  43047. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43048. {
  43049. front: {
  43050. height: math.unit(4, "feet"),
  43051. weight: math.unit(60, "lb"),
  43052. name: "Front",
  43053. image: {
  43054. source: "./media/characters/jasper/front.svg",
  43055. extra: 1450/1379,
  43056. bottom: 19/1469
  43057. }
  43058. },
  43059. },
  43060. [
  43061. {
  43062. name: "Normal",
  43063. height: math.unit(4, "feet"),
  43064. default: true
  43065. },
  43066. ]
  43067. ))
  43068. characterMakers.push(() => makeCharacter(
  43069. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43070. {
  43071. front: {
  43072. height: math.unit(6 + 5/12, "feet"),
  43073. weight: math.unit(290, "lb"),
  43074. name: "Front",
  43075. image: {
  43076. source: "./media/characters/tiberius-thyben/front.svg",
  43077. extra: 757/739,
  43078. bottom: 39/796
  43079. }
  43080. },
  43081. },
  43082. [
  43083. {
  43084. name: "Micro",
  43085. height: math.unit(1.5, "inches")
  43086. },
  43087. {
  43088. name: "Normal",
  43089. height: math.unit(6 + 5/12, "feet"),
  43090. default: true
  43091. },
  43092. {
  43093. name: "Macro",
  43094. height: math.unit(300, "feet")
  43095. },
  43096. ]
  43097. ))
  43098. characterMakers.push(() => makeCharacter(
  43099. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43100. {
  43101. front: {
  43102. height: math.unit(5 + 6/12, "feet"),
  43103. weight: math.unit(60, "kg"),
  43104. name: "Front",
  43105. image: {
  43106. source: "./media/characters/sabre/front.svg",
  43107. extra: 738/671,
  43108. bottom: 27/765
  43109. }
  43110. },
  43111. },
  43112. [
  43113. {
  43114. name: "Teeny",
  43115. height: math.unit(2, "inches")
  43116. },
  43117. {
  43118. name: "Smol",
  43119. height: math.unit(8, "inches")
  43120. },
  43121. {
  43122. name: "Normal",
  43123. height: math.unit(5 + 6/12, "feet"),
  43124. default: true
  43125. },
  43126. {
  43127. name: "Mini-Macro",
  43128. height: math.unit(15, "feet")
  43129. },
  43130. {
  43131. name: "Macro",
  43132. height: math.unit(50, "feet")
  43133. },
  43134. ]
  43135. ))
  43136. characterMakers.push(() => makeCharacter(
  43137. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43138. {
  43139. front: {
  43140. height: math.unit(6 + 4/12, "feet"),
  43141. weight: math.unit(170, "lb"),
  43142. name: "Front",
  43143. image: {
  43144. source: "./media/characters/charlie/front.svg",
  43145. extra: 1348/1228,
  43146. bottom: 15/1363
  43147. }
  43148. },
  43149. },
  43150. [
  43151. {
  43152. name: "Macro",
  43153. height: math.unit(1700, "meters"),
  43154. default: true
  43155. },
  43156. {
  43157. name: "MegaMacro",
  43158. height: math.unit(20400, "meters")
  43159. },
  43160. ]
  43161. ))
  43162. characterMakers.push(() => makeCharacter(
  43163. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43164. {
  43165. front: {
  43166. height: math.unit(6 + 3/12, "feet"),
  43167. weight: math.unit(185, "lb"),
  43168. name: "Front",
  43169. image: {
  43170. source: "./media/characters/susan-grant/front.svg",
  43171. extra: 1351/1327,
  43172. bottom: 26/1377
  43173. }
  43174. },
  43175. },
  43176. [
  43177. {
  43178. name: "Normal",
  43179. height: math.unit(6 + 3/12, "feet"),
  43180. default: true
  43181. },
  43182. {
  43183. name: "Macro",
  43184. height: math.unit(225, "feet")
  43185. },
  43186. {
  43187. name: "Macro+",
  43188. height: math.unit(900, "feet")
  43189. },
  43190. {
  43191. name: "MegaMacro",
  43192. height: math.unit(14400, "feet")
  43193. },
  43194. ]
  43195. ))
  43196. characterMakers.push(() => makeCharacter(
  43197. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43198. {
  43199. front: {
  43200. height: math.unit(5 + 4/12, "feet"),
  43201. weight: math.unit(110, "lb"),
  43202. name: "Front",
  43203. image: {
  43204. source: "./media/characters/axel-isanov/front.svg",
  43205. extra: 1096/1065,
  43206. bottom: 13/1109
  43207. }
  43208. },
  43209. },
  43210. [
  43211. {
  43212. name: "Normal",
  43213. height: math.unit(5 + 4/12, "feet"),
  43214. default: true
  43215. },
  43216. ]
  43217. ))
  43218. characterMakers.push(() => makeCharacter(
  43219. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43220. {
  43221. front: {
  43222. height: math.unit(9, "feet"),
  43223. weight: math.unit(467, "lb"),
  43224. name: "Front",
  43225. image: {
  43226. source: "./media/characters/necahual/front.svg",
  43227. extra: 920/873,
  43228. bottom: 26/946
  43229. }
  43230. },
  43231. back: {
  43232. height: math.unit(9, "feet"),
  43233. weight: math.unit(467, "lb"),
  43234. name: "Back",
  43235. image: {
  43236. source: "./media/characters/necahual/back.svg",
  43237. extra: 930/884,
  43238. bottom: 16/946
  43239. }
  43240. },
  43241. frontUnderwear: {
  43242. height: math.unit(9, "feet"),
  43243. weight: math.unit(467, "lb"),
  43244. name: "Front (Underwear)",
  43245. image: {
  43246. source: "./media/characters/necahual/front-underwear.svg",
  43247. extra: 920/873,
  43248. bottom: 26/946
  43249. }
  43250. },
  43251. frontDressed: {
  43252. height: math.unit(9, "feet"),
  43253. weight: math.unit(467, "lb"),
  43254. name: "Front (Dressed)",
  43255. image: {
  43256. source: "./media/characters/necahual/front-dressed.svg",
  43257. extra: 920/873,
  43258. bottom: 26/946
  43259. }
  43260. },
  43261. },
  43262. [
  43263. {
  43264. name: "Comprsesed",
  43265. height: math.unit(9, "feet")
  43266. },
  43267. {
  43268. name: "Natural",
  43269. height: math.unit(15, "feet"),
  43270. default: true
  43271. },
  43272. {
  43273. name: "Boosted",
  43274. height: math.unit(50, "feet")
  43275. },
  43276. {
  43277. name: "Boosted+",
  43278. height: math.unit(150, "feet")
  43279. },
  43280. {
  43281. name: "Max",
  43282. height: math.unit(500, "feet")
  43283. },
  43284. ]
  43285. ))
  43286. characterMakers.push(() => makeCharacter(
  43287. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43288. {
  43289. front: {
  43290. height: math.unit(22 + 1/12, "feet"),
  43291. weight: math.unit(3200, "lb"),
  43292. name: "Front",
  43293. image: {
  43294. source: "./media/characters/theo-acacia/front.svg",
  43295. extra: 1796/1741,
  43296. bottom: 83/1879
  43297. }
  43298. },
  43299. frontUnderwear: {
  43300. height: math.unit(22 + 1/12, "feet"),
  43301. weight: math.unit(3200, "lb"),
  43302. name: "Front (Underwear)",
  43303. image: {
  43304. source: "./media/characters/theo-acacia/front-underwear.svg",
  43305. extra: 1796/1741,
  43306. bottom: 83/1879
  43307. }
  43308. },
  43309. frontNude: {
  43310. height: math.unit(22 + 1/12, "feet"),
  43311. weight: math.unit(3200, "lb"),
  43312. name: "Front (Nude)",
  43313. image: {
  43314. source: "./media/characters/theo-acacia/front-nude.svg",
  43315. extra: 1796/1741,
  43316. bottom: 83/1879
  43317. }
  43318. },
  43319. },
  43320. [
  43321. {
  43322. name: "Normal",
  43323. height: math.unit(22 + 1/12, "feet"),
  43324. default: true
  43325. },
  43326. ]
  43327. ))
  43328. characterMakers.push(() => makeCharacter(
  43329. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43330. {
  43331. front: {
  43332. height: math.unit(20, "feet"),
  43333. name: "Front",
  43334. image: {
  43335. source: "./media/characters/astra/front.svg",
  43336. extra: 1850/1714,
  43337. bottom: 106/1956
  43338. }
  43339. },
  43340. frontUndressed: {
  43341. height: math.unit(20, "feet"),
  43342. name: "Front (Undressed)",
  43343. image: {
  43344. source: "./media/characters/astra/front-undressed.svg",
  43345. extra: 1926/1749,
  43346. bottom: 0/1926
  43347. }
  43348. },
  43349. hand: {
  43350. height: math.unit(1.53, "feet"),
  43351. name: "Hand",
  43352. image: {
  43353. source: "./media/characters/astra/hand.svg"
  43354. }
  43355. },
  43356. paw: {
  43357. height: math.unit(1.53, "feet"),
  43358. name: "Paw",
  43359. image: {
  43360. source: "./media/characters/astra/paw.svg"
  43361. }
  43362. },
  43363. },
  43364. [
  43365. {
  43366. name: "Smallest",
  43367. height: math.unit(20, "feet")
  43368. },
  43369. {
  43370. name: "Normal",
  43371. height: math.unit(1e9, "miles"),
  43372. default: true
  43373. },
  43374. {
  43375. name: "Larger",
  43376. height: math.unit(5, "multiverses")
  43377. },
  43378. {
  43379. name: "Largest",
  43380. height: math.unit(1e9, "multiverses")
  43381. },
  43382. ]
  43383. ))
  43384. characterMakers.push(() => makeCharacter(
  43385. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43386. {
  43387. front: {
  43388. height: math.unit(8, "feet"),
  43389. name: "Front",
  43390. image: {
  43391. source: "./media/characters/breanna/front.svg",
  43392. extra: 1912/1632,
  43393. bottom: 33/1945
  43394. }
  43395. },
  43396. },
  43397. [
  43398. {
  43399. name: "Smallest",
  43400. height: math.unit(8, "feet")
  43401. },
  43402. {
  43403. name: "Normal",
  43404. height: math.unit(1, "mile"),
  43405. default: true
  43406. },
  43407. {
  43408. name: "Maximum",
  43409. height: math.unit(1500000000000, "lightyears")
  43410. },
  43411. ]
  43412. ))
  43413. characterMakers.push(() => makeCharacter(
  43414. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43415. {
  43416. front: {
  43417. height: math.unit(5 + 11/12, "feet"),
  43418. weight: math.unit(155, "lb"),
  43419. name: "Front",
  43420. image: {
  43421. source: "./media/characters/cai/front.svg",
  43422. extra: 1823/1702,
  43423. bottom: 32/1855
  43424. }
  43425. },
  43426. back: {
  43427. height: math.unit(5 + 11/12, "feet"),
  43428. weight: math.unit(155, "lb"),
  43429. name: "Back",
  43430. image: {
  43431. source: "./media/characters/cai/back.svg",
  43432. extra: 1809/1708,
  43433. bottom: 31/1840
  43434. }
  43435. },
  43436. },
  43437. [
  43438. {
  43439. name: "Normal",
  43440. height: math.unit(5 + 11/12, "feet"),
  43441. default: true
  43442. },
  43443. {
  43444. name: "Big",
  43445. height: math.unit(15, "feet")
  43446. },
  43447. {
  43448. name: "Macro",
  43449. height: math.unit(200, "feet")
  43450. },
  43451. ]
  43452. ))
  43453. characterMakers.push(() => makeCharacter(
  43454. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43455. {
  43456. front: {
  43457. height: math.unit(5 + 6/12, "feet"),
  43458. weight: math.unit(160, "lb"),
  43459. name: "Front",
  43460. image: {
  43461. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43462. extra: 1227/1174,
  43463. bottom: 37/1264
  43464. }
  43465. },
  43466. },
  43467. [
  43468. {
  43469. name: "Macro",
  43470. height: math.unit(444, "meters"),
  43471. default: true
  43472. },
  43473. ]
  43474. ))
  43475. characterMakers.push(() => makeCharacter(
  43476. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43477. {
  43478. front: {
  43479. height: math.unit(18 + 7/12, "feet"),
  43480. name: "Front",
  43481. image: {
  43482. source: "./media/characters/rex/front.svg",
  43483. extra: 1941/1807,
  43484. bottom: 66/2007
  43485. }
  43486. },
  43487. back: {
  43488. height: math.unit(18 + 7/12, "feet"),
  43489. name: "Back",
  43490. image: {
  43491. source: "./media/characters/rex/back.svg",
  43492. extra: 1937/1822,
  43493. bottom: 42/1979
  43494. }
  43495. },
  43496. boot: {
  43497. height: math.unit(3.45, "feet"),
  43498. name: "Boot",
  43499. image: {
  43500. source: "./media/characters/rex/boot.svg"
  43501. }
  43502. },
  43503. paw: {
  43504. height: math.unit(4.17, "feet"),
  43505. name: "Paw",
  43506. image: {
  43507. source: "./media/characters/rex/paw.svg"
  43508. }
  43509. },
  43510. head: {
  43511. height: math.unit(6.728, "feet"),
  43512. name: "Head",
  43513. image: {
  43514. source: "./media/characters/rex/head.svg"
  43515. }
  43516. },
  43517. },
  43518. [
  43519. {
  43520. name: "Nano",
  43521. height: math.unit(18 + 7/12, "feet")
  43522. },
  43523. {
  43524. name: "Micro",
  43525. height: math.unit(1.5, "megameters")
  43526. },
  43527. {
  43528. name: "Normal",
  43529. height: math.unit(440, "megameters"),
  43530. default: true
  43531. },
  43532. {
  43533. name: "Macro",
  43534. height: math.unit(2.5, "gigameters")
  43535. },
  43536. {
  43537. name: "Gigamacro",
  43538. height: math.unit(2, "galaxies")
  43539. },
  43540. ]
  43541. ))
  43542. characterMakers.push(() => makeCharacter(
  43543. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43544. {
  43545. side: {
  43546. height: math.unit(32, "feet"),
  43547. weight: math.unit(250000, "lb"),
  43548. name: "Side",
  43549. image: {
  43550. source: "./media/characters/silverwing/side.svg",
  43551. extra: 1100/1019,
  43552. bottom: 204/1304
  43553. }
  43554. },
  43555. },
  43556. [
  43557. {
  43558. name: "Normal",
  43559. height: math.unit(32, "feet"),
  43560. default: true
  43561. },
  43562. ]
  43563. ))
  43564. characterMakers.push(() => makeCharacter(
  43565. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43566. {
  43567. front: {
  43568. height: math.unit(6 + 6/12, "feet"),
  43569. weight: math.unit(350, "lb"),
  43570. name: "Front",
  43571. image: {
  43572. source: "./media/characters/tristan-hawthorne/front.svg",
  43573. extra: 1159/1124,
  43574. bottom: 37/1196
  43575. },
  43576. form: "labrador",
  43577. default: true
  43578. },
  43579. skunkFront: {
  43580. height: math.unit(4 + 6/12, "feet"),
  43581. weight: math.unit(120, "lb"),
  43582. name: "Front",
  43583. image: {
  43584. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43585. extra: 1609/1551,
  43586. bottom: 169/1778
  43587. },
  43588. form: "skunk",
  43589. default: true
  43590. },
  43591. },
  43592. [
  43593. {
  43594. name: "Normal",
  43595. height: math.unit(6 + 6/12, "feet"),
  43596. form: "labrador",
  43597. default: true
  43598. },
  43599. {
  43600. name: "Normal",
  43601. height: math.unit(4 + 6/12, "feet"),
  43602. form: "skunk",
  43603. default: true
  43604. },
  43605. ],
  43606. {
  43607. "labrador": {
  43608. name: "Labrador",
  43609. default: true
  43610. },
  43611. "skunk": {
  43612. name: "Skunk"
  43613. }
  43614. }
  43615. ))
  43616. characterMakers.push(() => makeCharacter(
  43617. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43618. {
  43619. front: {
  43620. height: math.unit(5 + 11/12, "feet"),
  43621. weight: math.unit(190, "lb"),
  43622. name: "Front",
  43623. image: {
  43624. source: "./media/characters/mizu/front.svg",
  43625. extra: 1988/1788,
  43626. bottom: 14/2002
  43627. }
  43628. },
  43629. },
  43630. [
  43631. {
  43632. name: "Normal",
  43633. height: math.unit(5 + 11/12, "feet"),
  43634. default: true
  43635. },
  43636. ]
  43637. ))
  43638. characterMakers.push(() => makeCharacter(
  43639. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43640. {
  43641. front: {
  43642. height: math.unit(1.7, "feet"),
  43643. weight: math.unit(50, "lb"),
  43644. name: "Front",
  43645. image: {
  43646. source: "./media/characters/dechroma/front.svg",
  43647. extra: 1095/859,
  43648. bottom: 64/1159
  43649. }
  43650. },
  43651. },
  43652. [
  43653. {
  43654. name: "Normal",
  43655. height: math.unit(1.7, "feet"),
  43656. default: true
  43657. },
  43658. ]
  43659. ))
  43660. characterMakers.push(() => makeCharacter(
  43661. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43662. {
  43663. side: {
  43664. height: math.unit(30, "feet"),
  43665. name: "Side",
  43666. image: {
  43667. source: "./media/characters/veluren-thanazel/side.svg",
  43668. extra: 1611/633,
  43669. bottom: 118/1729
  43670. }
  43671. },
  43672. front: {
  43673. height: math.unit(30, "feet"),
  43674. name: "Front",
  43675. image: {
  43676. source: "./media/characters/veluren-thanazel/front.svg",
  43677. extra: 1486/636,
  43678. bottom: 238/1724
  43679. }
  43680. },
  43681. head: {
  43682. height: math.unit(21.4, "feet"),
  43683. name: "Head",
  43684. image: {
  43685. source: "./media/characters/veluren-thanazel/head.svg"
  43686. }
  43687. },
  43688. genitals: {
  43689. height: math.unit(19.4, "feet"),
  43690. name: "Genitals",
  43691. image: {
  43692. source: "./media/characters/veluren-thanazel/genitals.svg"
  43693. }
  43694. },
  43695. },
  43696. [
  43697. {
  43698. name: "Social",
  43699. height: math.unit(6, "feet")
  43700. },
  43701. {
  43702. name: "Play",
  43703. height: math.unit(12, "feet")
  43704. },
  43705. {
  43706. name: "True",
  43707. height: math.unit(30, "feet"),
  43708. default: true
  43709. },
  43710. ]
  43711. ))
  43712. characterMakers.push(() => makeCharacter(
  43713. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43714. {
  43715. front: {
  43716. height: math.unit(7 + 6/12, "feet"),
  43717. weight: math.unit(500, "kg"),
  43718. name: "Front",
  43719. image: {
  43720. source: "./media/characters/arcturas/front.svg",
  43721. extra: 1700/1500,
  43722. bottom: 145/1845
  43723. }
  43724. },
  43725. },
  43726. [
  43727. {
  43728. name: "Normal",
  43729. height: math.unit(7 + 6/12, "feet"),
  43730. default: true
  43731. },
  43732. ]
  43733. ))
  43734. characterMakers.push(() => makeCharacter(
  43735. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43736. {
  43737. side: {
  43738. height: math.unit(6, "feet"),
  43739. weight: math.unit(2, "tons"),
  43740. name: "Side",
  43741. image: {
  43742. source: "./media/characters/vitaen/side.svg",
  43743. extra: 1157/617,
  43744. bottom: 122/1279
  43745. }
  43746. },
  43747. },
  43748. [
  43749. {
  43750. name: "Normal",
  43751. height: math.unit(6, "feet"),
  43752. default: true
  43753. },
  43754. ]
  43755. ))
  43756. characterMakers.push(() => makeCharacter(
  43757. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43758. {
  43759. front: {
  43760. height: math.unit(19, "feet"),
  43761. name: "Front",
  43762. image: {
  43763. source: "./media/characters/fia-dreamweaver/front.svg",
  43764. extra: 1630/1504,
  43765. bottom: 25/1655
  43766. }
  43767. },
  43768. },
  43769. [
  43770. {
  43771. name: "Normal",
  43772. height: math.unit(19, "feet"),
  43773. default: true
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43779. {
  43780. front: {
  43781. height: math.unit(5 + 4/12, "feet"),
  43782. name: "Front",
  43783. image: {
  43784. source: "./media/characters/artan/front.svg",
  43785. extra: 1618/1535,
  43786. bottom: 46/1664
  43787. }
  43788. },
  43789. back: {
  43790. height: math.unit(5 + 4/12, "feet"),
  43791. name: "Back",
  43792. image: {
  43793. source: "./media/characters/artan/back.svg",
  43794. extra: 1618/1543,
  43795. bottom: 31/1649
  43796. }
  43797. },
  43798. },
  43799. [
  43800. {
  43801. name: "Normal",
  43802. height: math.unit(5 + 4/12, "feet"),
  43803. default: true
  43804. },
  43805. ]
  43806. ))
  43807. characterMakers.push(() => makeCharacter(
  43808. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43809. {
  43810. side: {
  43811. height: math.unit(182, "cm"),
  43812. weight: math.unit(1000, "lb"),
  43813. name: "Side",
  43814. image: {
  43815. source: "./media/characters/silver-dragon/side.svg",
  43816. extra: 710/287,
  43817. bottom: 88/798
  43818. }
  43819. },
  43820. },
  43821. [
  43822. {
  43823. name: "Normal",
  43824. height: math.unit(182, "cm"),
  43825. default: true
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43831. {
  43832. side: {
  43833. height: math.unit(6 + 6/12, "feet"),
  43834. weight: math.unit(1.5, "tons"),
  43835. name: "Side",
  43836. image: {
  43837. source: "./media/characters/zephyr/side.svg",
  43838. extra: 1433/586,
  43839. bottom: 109/1542
  43840. }
  43841. },
  43842. },
  43843. [
  43844. {
  43845. name: "Normal",
  43846. height: math.unit(6 + 6/12, "feet"),
  43847. default: true
  43848. },
  43849. ]
  43850. ))
  43851. characterMakers.push(() => makeCharacter(
  43852. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43853. {
  43854. side: {
  43855. height: math.unit(1, "feet"),
  43856. name: "Side",
  43857. image: {
  43858. source: "./media/characters/vixye/side.svg",
  43859. extra: 632/541,
  43860. bottom: 0/632
  43861. }
  43862. },
  43863. },
  43864. [
  43865. {
  43866. name: "Normal",
  43867. height: math.unit(1, "feet"),
  43868. default: true
  43869. },
  43870. {
  43871. name: "True",
  43872. height: math.unit(1e15, "multiverses")
  43873. },
  43874. ]
  43875. ))
  43876. characterMakers.push(() => makeCharacter(
  43877. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43878. {
  43879. front: {
  43880. height: math.unit(8 + 2/12, "feet"),
  43881. weight: math.unit(650, "lb"),
  43882. name: "Front",
  43883. image: {
  43884. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43885. extra: 1174/1137,
  43886. bottom: 82/1256
  43887. }
  43888. },
  43889. back: {
  43890. height: math.unit(8 + 2/12, "feet"),
  43891. weight: math.unit(650, "lb"),
  43892. name: "Back",
  43893. image: {
  43894. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43895. extra: 1204/1157,
  43896. bottom: 46/1250
  43897. }
  43898. },
  43899. },
  43900. [
  43901. {
  43902. name: "Wildform",
  43903. height: math.unit(8 + 2/12, "feet"),
  43904. default: true
  43905. },
  43906. ]
  43907. ))
  43908. characterMakers.push(() => makeCharacter(
  43909. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43910. {
  43911. front: {
  43912. height: math.unit(18, "feet"),
  43913. name: "Front",
  43914. image: {
  43915. source: "./media/characters/cyphin/front.svg",
  43916. extra: 970/886,
  43917. bottom: 42/1012
  43918. }
  43919. },
  43920. back: {
  43921. height: math.unit(18, "feet"),
  43922. name: "Back",
  43923. image: {
  43924. source: "./media/characters/cyphin/back.svg",
  43925. extra: 1009/894,
  43926. bottom: 24/1033
  43927. }
  43928. },
  43929. head: {
  43930. height: math.unit(5.05, "feet"),
  43931. name: "Head",
  43932. image: {
  43933. source: "./media/characters/cyphin/head.svg"
  43934. }
  43935. },
  43936. tailbud: {
  43937. height: math.unit(5, "feet"),
  43938. name: "Tailbud",
  43939. image: {
  43940. source: "./media/characters/cyphin/tailbud.svg"
  43941. }
  43942. },
  43943. },
  43944. [
  43945. ]
  43946. ))
  43947. characterMakers.push(() => makeCharacter(
  43948. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43949. {
  43950. side: {
  43951. height: math.unit(10, "feet"),
  43952. weight: math.unit(6, "tons"),
  43953. name: "Side",
  43954. image: {
  43955. source: "./media/characters/raijin/side.svg",
  43956. extra: 1529/613,
  43957. bottom: 337/1866
  43958. }
  43959. },
  43960. },
  43961. [
  43962. {
  43963. name: "Normal",
  43964. height: math.unit(10, "feet"),
  43965. default: true
  43966. },
  43967. ]
  43968. ))
  43969. characterMakers.push(() => makeCharacter(
  43970. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43971. {
  43972. side: {
  43973. height: math.unit(9, "feet"),
  43974. name: "Side",
  43975. image: {
  43976. source: "./media/characters/nilghais/side.svg",
  43977. extra: 1047/744,
  43978. bottom: 91/1138
  43979. }
  43980. },
  43981. head: {
  43982. height: math.unit(3.14, "feet"),
  43983. name: "Head",
  43984. image: {
  43985. source: "./media/characters/nilghais/head.svg"
  43986. }
  43987. },
  43988. mouth: {
  43989. height: math.unit(4.6, "feet"),
  43990. name: "Mouth",
  43991. image: {
  43992. source: "./media/characters/nilghais/mouth.svg"
  43993. }
  43994. },
  43995. wings: {
  43996. height: math.unit(24, "feet"),
  43997. name: "Wings",
  43998. image: {
  43999. source: "./media/characters/nilghais/wings.svg"
  44000. }
  44001. },
  44002. ass: {
  44003. height: math.unit(6.12, "feet"),
  44004. name: "Ass",
  44005. image: {
  44006. source: "./media/characters/nilghais/ass.svg"
  44007. }
  44008. },
  44009. },
  44010. [
  44011. {
  44012. name: "Normal",
  44013. height: math.unit(9, "feet"),
  44014. default: true
  44015. },
  44016. ]
  44017. ))
  44018. characterMakers.push(() => makeCharacter(
  44019. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44020. {
  44021. regular: {
  44022. height: math.unit(16 + 2/12, "feet"),
  44023. weight: math.unit(2300, "lb"),
  44024. name: "Regular",
  44025. image: {
  44026. source: "./media/characters/zolgar/regular.svg",
  44027. extra: 1246/1004,
  44028. bottom: 124/1370
  44029. }
  44030. },
  44031. boxers: {
  44032. height: math.unit(16 + 2/12, "feet"),
  44033. weight: math.unit(2300, "lb"),
  44034. name: "Boxers",
  44035. image: {
  44036. source: "./media/characters/zolgar/boxers.svg",
  44037. extra: 1246/1004,
  44038. bottom: 124/1370
  44039. }
  44040. },
  44041. armored: {
  44042. height: math.unit(16 + 2/12, "feet"),
  44043. weight: math.unit(2300, "lb"),
  44044. name: "Armored",
  44045. image: {
  44046. source: "./media/characters/zolgar/armored.svg",
  44047. extra: 1246/1004,
  44048. bottom: 124/1370
  44049. }
  44050. },
  44051. goth: {
  44052. height: math.unit(16 + 2/12, "feet"),
  44053. weight: math.unit(2300, "lb"),
  44054. name: "Goth",
  44055. image: {
  44056. source: "./media/characters/zolgar/goth.svg",
  44057. extra: 1246/1004,
  44058. bottom: 124/1370
  44059. }
  44060. },
  44061. },
  44062. [
  44063. {
  44064. name: "Shrunken Down",
  44065. height: math.unit(9 + 2/12, "feet")
  44066. },
  44067. {
  44068. name: "Normal",
  44069. height: math.unit(16 + 2/12, "feet"),
  44070. default: true
  44071. },
  44072. ]
  44073. ))
  44074. characterMakers.push(() => makeCharacter(
  44075. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44076. {
  44077. front: {
  44078. height: math.unit(6, "feet"),
  44079. weight: math.unit(168, "lb"),
  44080. name: "Front",
  44081. image: {
  44082. source: "./media/characters/luca/front.svg",
  44083. extra: 841/667,
  44084. bottom: 102/943
  44085. }
  44086. },
  44087. },
  44088. [
  44089. {
  44090. name: "Normal",
  44091. height: math.unit(6, "feet"),
  44092. default: true
  44093. },
  44094. ]
  44095. ))
  44096. characterMakers.push(() => makeCharacter(
  44097. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44098. {
  44099. side: {
  44100. height: math.unit(7 + 3/12, "feet"),
  44101. weight: math.unit(312, "lb"),
  44102. name: "Side",
  44103. image: {
  44104. source: "./media/characters/zezo/side.svg",
  44105. extra: 1192/1067,
  44106. bottom: 63/1255
  44107. }
  44108. },
  44109. },
  44110. [
  44111. {
  44112. name: "Normal",
  44113. height: math.unit(7 + 3/12, "feet"),
  44114. default: true
  44115. },
  44116. ]
  44117. ))
  44118. characterMakers.push(() => makeCharacter(
  44119. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44120. {
  44121. front: {
  44122. height: math.unit(5 + 5/12, "feet"),
  44123. weight: math.unit(170, "lb"),
  44124. name: "Front",
  44125. image: {
  44126. source: "./media/characters/mayso/front.svg",
  44127. extra: 1215/1108,
  44128. bottom: 16/1231
  44129. }
  44130. },
  44131. },
  44132. [
  44133. {
  44134. name: "Normal",
  44135. height: math.unit(5 + 5/12, "feet"),
  44136. default: true
  44137. },
  44138. ]
  44139. ))
  44140. characterMakers.push(() => makeCharacter(
  44141. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44142. {
  44143. front: {
  44144. height: math.unit(4 + 3/12, "feet"),
  44145. weight: math.unit(80, "lb"),
  44146. name: "Front",
  44147. image: {
  44148. source: "./media/characters/hess/front.svg",
  44149. extra: 1200/1123,
  44150. bottom: 16/1216
  44151. }
  44152. },
  44153. },
  44154. [
  44155. {
  44156. name: "Normal",
  44157. height: math.unit(4 + 3/12, "feet"),
  44158. default: true
  44159. },
  44160. ]
  44161. ))
  44162. characterMakers.push(() => makeCharacter(
  44163. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44164. {
  44165. front: {
  44166. height: math.unit(1.9, "meters"),
  44167. name: "Front",
  44168. image: {
  44169. source: "./media/characters/ashgar/front.svg",
  44170. extra: 1177/1146,
  44171. bottom: 99/1276
  44172. }
  44173. },
  44174. back: {
  44175. height: math.unit(1.9, "meters"),
  44176. name: "Back",
  44177. image: {
  44178. source: "./media/characters/ashgar/back.svg",
  44179. extra: 1201/1183,
  44180. bottom: 53/1254
  44181. }
  44182. },
  44183. feral: {
  44184. height: math.unit(1.4, "meters"),
  44185. name: "Feral",
  44186. image: {
  44187. source: "./media/characters/ashgar/feral.svg",
  44188. extra: 370/345,
  44189. bottom: 45/415
  44190. }
  44191. },
  44192. },
  44193. [
  44194. {
  44195. name: "Normal",
  44196. height: math.unit(1.9, "meters"),
  44197. default: true
  44198. },
  44199. ]
  44200. ))
  44201. characterMakers.push(() => makeCharacter(
  44202. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44203. {
  44204. regular: {
  44205. height: math.unit(6, "feet"),
  44206. weight: math.unit(220, "lb"),
  44207. name: "Regular",
  44208. image: {
  44209. source: "./media/characters/phillip/regular.svg",
  44210. extra: 1373/1277,
  44211. bottom: 75/1448
  44212. }
  44213. },
  44214. dressed: {
  44215. height: math.unit(6, "feet"),
  44216. weight: math.unit(220, "lb"),
  44217. name: "Dressed",
  44218. image: {
  44219. source: "./media/characters/phillip/dressed.svg",
  44220. extra: 1373/1277,
  44221. bottom: 75/1448
  44222. }
  44223. },
  44224. paw: {
  44225. height: math.unit(1.44, "feet"),
  44226. name: "Paw",
  44227. image: {
  44228. source: "./media/characters/phillip/paw.svg"
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(6, "feet"),
  44236. default: true
  44237. },
  44238. ]
  44239. ))
  44240. characterMakers.push(() => makeCharacter(
  44241. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44242. {
  44243. side: {
  44244. height: math.unit(42, "feet"),
  44245. name: "Side",
  44246. image: {
  44247. source: "./media/characters/uvula/side.svg",
  44248. extra: 683/586,
  44249. bottom: 60/743
  44250. }
  44251. },
  44252. front: {
  44253. height: math.unit(42, "feet"),
  44254. name: "Front",
  44255. image: {
  44256. source: "./media/characters/uvula/front.svg",
  44257. extra: 705/613,
  44258. bottom: 54/759
  44259. }
  44260. },
  44261. maw: {
  44262. height: math.unit(23.5, "feet"),
  44263. name: "Maw",
  44264. image: {
  44265. source: "./media/characters/uvula/maw.svg"
  44266. }
  44267. },
  44268. },
  44269. [
  44270. {
  44271. name: "Original Size",
  44272. height: math.unit(14, "inches")
  44273. },
  44274. {
  44275. name: "Human Size",
  44276. height: math.unit(6, "feet")
  44277. },
  44278. {
  44279. name: "Big",
  44280. height: math.unit(42, "feet"),
  44281. default: true
  44282. },
  44283. {
  44284. name: "Bigger",
  44285. height: math.unit(100, "feet")
  44286. },
  44287. ]
  44288. ))
  44289. characterMakers.push(() => makeCharacter(
  44290. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44291. {
  44292. front: {
  44293. height: math.unit(5 + 11/12, "feet"),
  44294. name: "Front",
  44295. image: {
  44296. source: "./media/characters/lannah/front.svg",
  44297. extra: 1208/1113,
  44298. bottom: 97/1305
  44299. }
  44300. },
  44301. },
  44302. [
  44303. {
  44304. name: "Normal",
  44305. height: math.unit(5 + 11/12, "feet"),
  44306. default: true
  44307. },
  44308. ]
  44309. ))
  44310. characterMakers.push(() => makeCharacter(
  44311. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44312. {
  44313. front: {
  44314. height: math.unit(6 + 3/12, "feet"),
  44315. weight: math.unit(3.5, "tons"),
  44316. name: "Front",
  44317. image: {
  44318. source: "./media/characters/emberflame/front.svg",
  44319. extra: 1198/672,
  44320. bottom: 82/1280
  44321. }
  44322. },
  44323. side: {
  44324. height: math.unit(6 + 3/12, "feet"),
  44325. weight: math.unit(3.5, "tons"),
  44326. name: "Side",
  44327. image: {
  44328. source: "./media/characters/emberflame/side.svg",
  44329. extra: 938/527,
  44330. bottom: 56/994
  44331. }
  44332. },
  44333. },
  44334. [
  44335. {
  44336. name: "Normal",
  44337. height: math.unit(6 + 3/12, "feet"),
  44338. default: true
  44339. },
  44340. ]
  44341. ))
  44342. characterMakers.push(() => makeCharacter(
  44343. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44344. {
  44345. side: {
  44346. height: math.unit(17.5, "feet"),
  44347. weight: math.unit(35, "tons"),
  44348. name: "Side",
  44349. image: {
  44350. source: "./media/characters/sophie-ambrose/side.svg",
  44351. extra: 1573/1242,
  44352. bottom: 71/1644
  44353. }
  44354. },
  44355. maw: {
  44356. height: math.unit(7.4, "feet"),
  44357. name: "Maw",
  44358. image: {
  44359. source: "./media/characters/sophie-ambrose/maw.svg"
  44360. }
  44361. },
  44362. },
  44363. [
  44364. {
  44365. name: "Normal",
  44366. height: math.unit(17.5, "feet"),
  44367. default: true
  44368. },
  44369. ]
  44370. ))
  44371. characterMakers.push(() => makeCharacter(
  44372. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44373. {
  44374. front: {
  44375. height: math.unit(280, "feet"),
  44376. weight: math.unit(550, "tons"),
  44377. name: "Front",
  44378. image: {
  44379. source: "./media/characters/king-mugi/front.svg",
  44380. extra: 1102/947,
  44381. bottom: 104/1206
  44382. }
  44383. },
  44384. },
  44385. [
  44386. {
  44387. name: "King Mugi",
  44388. height: math.unit(280, "feet"),
  44389. default: true
  44390. },
  44391. ]
  44392. ))
  44393. characterMakers.push(() => makeCharacter(
  44394. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44395. {
  44396. front: {
  44397. height: math.unit(64, "meters"),
  44398. name: "Front",
  44399. image: {
  44400. source: "./media/characters/nova-fox/front.svg",
  44401. extra: 1310/1246,
  44402. bottom: 65/1375
  44403. }
  44404. },
  44405. },
  44406. [
  44407. {
  44408. name: "Macro",
  44409. height: math.unit(64, "meters"),
  44410. default: true
  44411. },
  44412. ]
  44413. ))
  44414. characterMakers.push(() => makeCharacter(
  44415. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44416. {
  44417. front: {
  44418. height: math.unit(6 + 3/12, "feet"),
  44419. weight: math.unit(170, "lb"),
  44420. name: "Front",
  44421. image: {
  44422. source: "./media/characters/sam-bat/front.svg",
  44423. extra: 1601/1411,
  44424. bottom: 125/1726
  44425. }
  44426. },
  44427. back: {
  44428. height: math.unit(6 + 3/12, "feet"),
  44429. weight: math.unit(170, "lb"),
  44430. name: "Back",
  44431. image: {
  44432. source: "./media/characters/sam-bat/back.svg",
  44433. extra: 1577/1405,
  44434. bottom: 58/1635
  44435. }
  44436. },
  44437. },
  44438. [
  44439. {
  44440. name: "Normal",
  44441. height: math.unit(6 + 3/12, "feet"),
  44442. default: true
  44443. },
  44444. ]
  44445. ))
  44446. characterMakers.push(() => makeCharacter(
  44447. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44448. {
  44449. front: {
  44450. height: math.unit(59, "feet"),
  44451. weight: math.unit(40000, "lb"),
  44452. name: "Front",
  44453. image: {
  44454. source: "./media/characters/inari/front.svg",
  44455. extra: 1884/1350,
  44456. bottom: 95/1979
  44457. }
  44458. },
  44459. },
  44460. [
  44461. {
  44462. name: "Gigantamax",
  44463. height: math.unit(59, "feet"),
  44464. default: true
  44465. },
  44466. ]
  44467. ))
  44468. characterMakers.push(() => makeCharacter(
  44469. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44470. {
  44471. front: {
  44472. height: math.unit(5 + 8/12, "feet"),
  44473. name: "Front",
  44474. image: {
  44475. source: "./media/characters/elizabeth/front.svg",
  44476. extra: 1395/1298,
  44477. bottom: 54/1449
  44478. }
  44479. },
  44480. mouth: {
  44481. height: math.unit(1.97, "feet"),
  44482. name: "Mouth",
  44483. image: {
  44484. source: "./media/characters/elizabeth/mouth.svg"
  44485. }
  44486. },
  44487. foot: {
  44488. height: math.unit(1.17, "feet"),
  44489. name: "Foot",
  44490. image: {
  44491. source: "./media/characters/elizabeth/foot.svg"
  44492. }
  44493. },
  44494. },
  44495. [
  44496. {
  44497. name: "Normal",
  44498. height: math.unit(5 + 8/12, "feet"),
  44499. default: true
  44500. },
  44501. {
  44502. name: "Minimacro",
  44503. height: math.unit(18, "feet")
  44504. },
  44505. {
  44506. name: "Macro",
  44507. height: math.unit(180, "feet")
  44508. },
  44509. ]
  44510. ))
  44511. characterMakers.push(() => makeCharacter(
  44512. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44513. {
  44514. front: {
  44515. height: math.unit(5 + 2/12, "feet"),
  44516. name: "Front",
  44517. image: {
  44518. source: "./media/characters/october-gossamer/front.svg",
  44519. extra: 505/454,
  44520. bottom: 7/512
  44521. }
  44522. },
  44523. back: {
  44524. height: math.unit(5 + 2/12, "feet"),
  44525. name: "Back",
  44526. image: {
  44527. source: "./media/characters/october-gossamer/back.svg",
  44528. extra: 501/454,
  44529. bottom: 11/512
  44530. }
  44531. },
  44532. },
  44533. [
  44534. {
  44535. name: "Normal",
  44536. height: math.unit(5 + 2/12, "feet"),
  44537. default: true
  44538. },
  44539. ]
  44540. ))
  44541. characterMakers.push(() => makeCharacter(
  44542. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44543. {
  44544. front: {
  44545. height: math.unit(5, "feet"),
  44546. name: "Front",
  44547. image: {
  44548. source: "./media/characters/epiglottis/front.svg",
  44549. extra: 923/849,
  44550. bottom: 17/940
  44551. }
  44552. },
  44553. },
  44554. [
  44555. {
  44556. name: "Original Size",
  44557. height: math.unit(10, "inches")
  44558. },
  44559. {
  44560. name: "Human Size",
  44561. height: math.unit(5, "feet"),
  44562. default: true
  44563. },
  44564. {
  44565. name: "Big",
  44566. height: math.unit(25, "feet")
  44567. },
  44568. {
  44569. name: "Bigger",
  44570. height: math.unit(50, "feet")
  44571. },
  44572. {
  44573. name: "oh lawd",
  44574. height: math.unit(75, "feet")
  44575. },
  44576. ]
  44577. ))
  44578. characterMakers.push(() => makeCharacter(
  44579. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44580. {
  44581. front: {
  44582. height: math.unit(2 + 4/12, "feet"),
  44583. weight: math.unit(60, "lb"),
  44584. name: "Front",
  44585. image: {
  44586. source: "./media/characters/lerm/front.svg",
  44587. extra: 796/790,
  44588. bottom: 79/875
  44589. }
  44590. },
  44591. },
  44592. [
  44593. {
  44594. name: "Normal",
  44595. height: math.unit(2 + 4/12, "feet"),
  44596. default: true
  44597. },
  44598. ]
  44599. ))
  44600. characterMakers.push(() => makeCharacter(
  44601. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44602. {
  44603. front: {
  44604. height: math.unit(5.5, "feet"),
  44605. weight: math.unit(130, "lb"),
  44606. name: "Front",
  44607. image: {
  44608. source: "./media/characters/xena-nebadon/front.svg",
  44609. extra: 1828/1730,
  44610. bottom: 79/1907
  44611. }
  44612. },
  44613. },
  44614. [
  44615. {
  44616. name: "Tiny Puppy",
  44617. height: math.unit(3, "inches")
  44618. },
  44619. {
  44620. name: "Normal",
  44621. height: math.unit(5.5, "feet"),
  44622. default: true
  44623. },
  44624. {
  44625. name: "Lotta Lady",
  44626. height: math.unit(12, "feet")
  44627. },
  44628. {
  44629. name: "Pretty Big",
  44630. height: math.unit(100, "feet")
  44631. },
  44632. {
  44633. name: "Big",
  44634. height: math.unit(500, "feet")
  44635. },
  44636. {
  44637. name: "Skyscraper Toys",
  44638. height: math.unit(2500, "feet")
  44639. },
  44640. {
  44641. name: "Plane Catcher",
  44642. height: math.unit(8, "miles")
  44643. },
  44644. {
  44645. name: "Planet Toys",
  44646. height: math.unit(15, "earths")
  44647. },
  44648. {
  44649. name: "Stardust",
  44650. height: math.unit(0.25, "galaxies")
  44651. },
  44652. {
  44653. name: "Snacks",
  44654. height: math.unit(70, "universes")
  44655. },
  44656. ]
  44657. ))
  44658. characterMakers.push(() => makeCharacter(
  44659. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44660. {
  44661. front: {
  44662. height: math.unit(1.6, "meters"),
  44663. weight: math.unit(60, "kg"),
  44664. name: "Front",
  44665. image: {
  44666. source: "./media/characters/bounty/front.svg",
  44667. extra: 1426/1308,
  44668. bottom: 15/1441
  44669. }
  44670. },
  44671. back: {
  44672. height: math.unit(1.6, "meters"),
  44673. weight: math.unit(60, "kg"),
  44674. name: "Back",
  44675. image: {
  44676. source: "./media/characters/bounty/back.svg",
  44677. extra: 1417/1307,
  44678. bottom: 8/1425
  44679. }
  44680. },
  44681. },
  44682. [
  44683. {
  44684. name: "Normal",
  44685. height: math.unit(1.6, "meters"),
  44686. default: true
  44687. },
  44688. {
  44689. name: "Macro",
  44690. height: math.unit(300, "meters")
  44691. },
  44692. ]
  44693. ))
  44694. characterMakers.push(() => makeCharacter(
  44695. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44696. {
  44697. front: {
  44698. height: math.unit(2 + 8/12, "feet"),
  44699. weight: math.unit(15, "lb"),
  44700. name: "Front",
  44701. image: {
  44702. source: "./media/characters/mochi/front.svg",
  44703. extra: 1022/852,
  44704. bottom: 435/1457
  44705. }
  44706. },
  44707. back: {
  44708. height: math.unit(2 + 8/12, "feet"),
  44709. weight: math.unit(15, "lb"),
  44710. name: "Back",
  44711. image: {
  44712. source: "./media/characters/mochi/back.svg",
  44713. extra: 1335/1119,
  44714. bottom: 39/1374
  44715. }
  44716. },
  44717. bird: {
  44718. height: math.unit(2 + 8/12, "feet"),
  44719. weight: math.unit(15, "lb"),
  44720. name: "Bird",
  44721. image: {
  44722. source: "./media/characters/mochi/bird.svg",
  44723. extra: 1251/1113,
  44724. bottom: 178/1429
  44725. }
  44726. },
  44727. kaiju: {
  44728. height: math.unit(154, "feet"),
  44729. weight: math.unit(1e7, "lb"),
  44730. name: "Kaiju",
  44731. image: {
  44732. source: "./media/characters/mochi/kaiju.svg",
  44733. extra: 460/324,
  44734. bottom: 40/500
  44735. }
  44736. },
  44737. head: {
  44738. height: math.unit(1.21, "feet"),
  44739. name: "Head",
  44740. image: {
  44741. source: "./media/characters/mochi/head.svg"
  44742. }
  44743. },
  44744. alternateTail: {
  44745. height: math.unit(2 + 8/12, "feet"),
  44746. weight: math.unit(45, "lb"),
  44747. name: "Alternate Tail",
  44748. image: {
  44749. source: "./media/characters/mochi/alternate-tail.svg",
  44750. extra: 139/76,
  44751. bottom: 45/184
  44752. }
  44753. },
  44754. },
  44755. [
  44756. {
  44757. name: "Micro",
  44758. height: math.unit(2, "inches")
  44759. },
  44760. {
  44761. name: "Normal",
  44762. height: math.unit(2 + 8/12, "feet"),
  44763. default: true
  44764. },
  44765. {
  44766. name: "Macro",
  44767. height: math.unit(106, "feet")
  44768. },
  44769. ]
  44770. ))
  44771. characterMakers.push(() => makeCharacter(
  44772. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44773. {
  44774. front: {
  44775. height: math.unit(5.67, "feet"),
  44776. weight: math.unit(135, "lb"),
  44777. name: "Front",
  44778. image: {
  44779. source: "./media/characters/sarel/front.svg",
  44780. extra: 865/788,
  44781. bottom: 97/962
  44782. }
  44783. },
  44784. back: {
  44785. height: math.unit(5.67, "feet"),
  44786. weight: math.unit(135, "lb"),
  44787. name: "Back",
  44788. image: {
  44789. source: "./media/characters/sarel/back.svg",
  44790. extra: 857/777,
  44791. bottom: 32/889
  44792. }
  44793. },
  44794. chozoan: {
  44795. height: math.unit(5.67, "feet"),
  44796. weight: math.unit(135, "lb"),
  44797. name: "Chozoan",
  44798. image: {
  44799. source: "./media/characters/sarel/chozoan.svg",
  44800. extra: 865/788,
  44801. bottom: 97/962
  44802. }
  44803. },
  44804. current: {
  44805. height: math.unit(5.67, "feet"),
  44806. weight: math.unit(135, "lb"),
  44807. name: "Current",
  44808. image: {
  44809. source: "./media/characters/sarel/current.svg",
  44810. extra: 865/788,
  44811. bottom: 97/962
  44812. }
  44813. },
  44814. head: {
  44815. height: math.unit(1.77, "feet"),
  44816. name: "Head",
  44817. image: {
  44818. source: "./media/characters/sarel/head.svg"
  44819. }
  44820. },
  44821. claws: {
  44822. height: math.unit(1.8, "feet"),
  44823. name: "Claws",
  44824. image: {
  44825. source: "./media/characters/sarel/claws.svg"
  44826. }
  44827. },
  44828. clawsAlt: {
  44829. height: math.unit(1.8, "feet"),
  44830. name: "Claws-alt",
  44831. image: {
  44832. source: "./media/characters/sarel/claws-alt.svg"
  44833. }
  44834. },
  44835. },
  44836. [
  44837. {
  44838. name: "Normal",
  44839. height: math.unit(5.67, "feet"),
  44840. default: true
  44841. },
  44842. ]
  44843. ))
  44844. characterMakers.push(() => makeCharacter(
  44845. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44846. {
  44847. front: {
  44848. height: math.unit(5500, "feet"),
  44849. name: "Front",
  44850. image: {
  44851. source: "./media/characters/alyonia/front.svg",
  44852. extra: 1200/1135,
  44853. bottom: 29/1229
  44854. }
  44855. },
  44856. back: {
  44857. height: math.unit(5500, "feet"),
  44858. name: "Back",
  44859. image: {
  44860. source: "./media/characters/alyonia/back.svg",
  44861. extra: 1205/1138,
  44862. bottom: 10/1215
  44863. }
  44864. },
  44865. },
  44866. [
  44867. {
  44868. name: "Small",
  44869. height: math.unit(10, "feet")
  44870. },
  44871. {
  44872. name: "Macro",
  44873. height: math.unit(500, "feet")
  44874. },
  44875. {
  44876. name: "Mega Macro",
  44877. height: math.unit(5500, "feet"),
  44878. default: true
  44879. },
  44880. {
  44881. name: "Mega Macro+",
  44882. height: math.unit(500000, "feet")
  44883. },
  44884. {
  44885. name: "Giga Macro",
  44886. height: math.unit(3000, "miles")
  44887. },
  44888. {
  44889. name: "Tera Macro",
  44890. height: math.unit(2.8e6, "miles")
  44891. },
  44892. {
  44893. name: "Galactic",
  44894. height: math.unit(120000, "lightyears")
  44895. },
  44896. ]
  44897. ))
  44898. characterMakers.push(() => makeCharacter(
  44899. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44900. {
  44901. werewolf: {
  44902. height: math.unit(8, "feet"),
  44903. weight: math.unit(425, "lb"),
  44904. name: "Werewolf",
  44905. image: {
  44906. source: "./media/characters/autumn/werewolf.svg",
  44907. extra: 2154/2031,
  44908. bottom: 160/2314
  44909. }
  44910. },
  44911. human: {
  44912. height: math.unit(5 + 8/12, "feet"),
  44913. weight: math.unit(150, "lb"),
  44914. name: "Human",
  44915. image: {
  44916. source: "./media/characters/autumn/human.svg",
  44917. extra: 1200/1149,
  44918. bottom: 30/1230
  44919. }
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "Normal",
  44925. height: math.unit(8, "feet"),
  44926. default: true
  44927. },
  44928. ]
  44929. ))
  44930. characterMakers.push(() => makeCharacter(
  44931. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44932. {
  44933. front: {
  44934. height: math.unit(8 + 5/12, "feet"),
  44935. weight: math.unit(825, "lb"),
  44936. name: "Front",
  44937. image: {
  44938. source: "./media/characters/cobalt-charizard/front.svg",
  44939. extra: 1268/1155,
  44940. bottom: 122/1390
  44941. }
  44942. },
  44943. side: {
  44944. height: math.unit(8 + 5/12, "feet"),
  44945. weight: math.unit(825, "lb"),
  44946. name: "Side",
  44947. image: {
  44948. source: "./media/characters/cobalt-charizard/side.svg",
  44949. extra: 1348/1257,
  44950. bottom: 58/1406
  44951. }
  44952. },
  44953. gMax: {
  44954. height: math.unit(134 + 11/12, "feet"),
  44955. name: "G-Max",
  44956. image: {
  44957. source: "./media/characters/cobalt-charizard/g-max.svg",
  44958. extra: 1835/1541,
  44959. bottom: 151/1986
  44960. }
  44961. },
  44962. },
  44963. [
  44964. {
  44965. name: "Normal",
  44966. height: math.unit(8 + 5/12, "feet"),
  44967. default: true
  44968. },
  44969. ]
  44970. ))
  44971. characterMakers.push(() => makeCharacter(
  44972. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44973. {
  44974. front: {
  44975. height: math.unit(6 + 3/12, "feet"),
  44976. weight: math.unit(210, "lb"),
  44977. name: "Front",
  44978. image: {
  44979. source: "./media/characters/stella/front.svg",
  44980. extra: 3549/3335,
  44981. bottom: 51/3600
  44982. }
  44983. },
  44984. },
  44985. [
  44986. {
  44987. name: "Normal",
  44988. height: math.unit(6 + 3/12, "feet"),
  44989. default: true
  44990. },
  44991. ]
  44992. ))
  44993. characterMakers.push(() => makeCharacter(
  44994. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44995. {
  44996. front: {
  44997. height: math.unit(5, "feet"),
  44998. weight: math.unit(90, "lb"),
  44999. name: "Front",
  45000. image: {
  45001. source: "./media/characters/riley-bishop/front.svg",
  45002. extra: 1450/1428,
  45003. bottom: 152/1602
  45004. }
  45005. },
  45006. },
  45007. [
  45008. {
  45009. name: "Normal",
  45010. height: math.unit(5, "feet"),
  45011. default: true
  45012. },
  45013. ]
  45014. ))
  45015. characterMakers.push(() => makeCharacter(
  45016. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45017. {
  45018. side: {
  45019. height: math.unit(8 + 2/12, "feet"),
  45020. weight: math.unit(500, "kg"),
  45021. name: "Side",
  45022. image: {
  45023. source: "./media/characters/theo-arcanine/side.svg",
  45024. extra: 1342/1074,
  45025. bottom: 111/1453
  45026. }
  45027. },
  45028. },
  45029. [
  45030. {
  45031. name: "Normal",
  45032. height: math.unit(8 + 2/12, "feet"),
  45033. default: true
  45034. },
  45035. ]
  45036. ))
  45037. characterMakers.push(() => makeCharacter(
  45038. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45039. {
  45040. front: {
  45041. height: math.unit(4, "feet"),
  45042. name: "Front",
  45043. image: {
  45044. source: "./media/characters/kali/front.svg",
  45045. extra: 1921/1357,
  45046. bottom: 70/1991
  45047. }
  45048. },
  45049. },
  45050. [
  45051. {
  45052. name: "Normal",
  45053. height: math.unit(4, "feet"),
  45054. default: true
  45055. },
  45056. {
  45057. name: "Macro",
  45058. height: math.unit(32, "meters")
  45059. },
  45060. {
  45061. name: "Macro+",
  45062. height: math.unit(150, "meters")
  45063. },
  45064. {
  45065. name: "Megamacro",
  45066. height: math.unit(7500, "meters")
  45067. },
  45068. {
  45069. name: "Megamacro+",
  45070. height: math.unit(80, "kilometers")
  45071. },
  45072. ]
  45073. ))
  45074. characterMakers.push(() => makeCharacter(
  45075. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45076. {
  45077. side: {
  45078. height: math.unit(5 + 11/12, "feet"),
  45079. weight: math.unit(236, "lb"),
  45080. name: "Side",
  45081. image: {
  45082. source: "./media/characters/gapp/side.svg",
  45083. extra: 775/340,
  45084. bottom: 58/833
  45085. }
  45086. },
  45087. mouth: {
  45088. height: math.unit(2.98, "feet"),
  45089. name: "Mouth",
  45090. image: {
  45091. source: "./media/characters/gapp/mouth.svg"
  45092. }
  45093. },
  45094. },
  45095. [
  45096. {
  45097. name: "Normal",
  45098. height: math.unit(5 + 1/12, "feet"),
  45099. default: true
  45100. },
  45101. ]
  45102. ))
  45103. characterMakers.push(() => makeCharacter(
  45104. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45105. {
  45106. front: {
  45107. height: math.unit(6, "feet"),
  45108. name: "Front",
  45109. image: {
  45110. source: "./media/characters/persephone/front.svg",
  45111. extra: 1895/1717,
  45112. bottom: 96/1991
  45113. }
  45114. },
  45115. back: {
  45116. height: math.unit(6, "feet"),
  45117. name: "Back",
  45118. image: {
  45119. source: "./media/characters/persephone/back.svg",
  45120. extra: 1868/1679,
  45121. bottom: 26/1894
  45122. }
  45123. },
  45124. casual: {
  45125. height: math.unit(6, "feet"),
  45126. name: "Casual",
  45127. image: {
  45128. source: "./media/characters/persephone/casual.svg",
  45129. extra: 1713/1541,
  45130. bottom: 76/1789
  45131. }
  45132. },
  45133. },
  45134. [
  45135. {
  45136. name: "Human Size",
  45137. height: math.unit(6, "feet")
  45138. },
  45139. {
  45140. name: "Big Steppy",
  45141. height: math.unit(600, "meters"),
  45142. default: true
  45143. },
  45144. {
  45145. name: "Galaxy Brain",
  45146. height: math.unit(1, "zettameter")
  45147. },
  45148. ]
  45149. ))
  45150. characterMakers.push(() => makeCharacter(
  45151. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45152. {
  45153. front: {
  45154. height: math.unit(1.85, "meters"),
  45155. name: "Front",
  45156. image: {
  45157. source: "./media/characters/riley-foxthing/front.svg",
  45158. extra: 1495/1354,
  45159. bottom: 122/1617
  45160. }
  45161. },
  45162. frontAlt: {
  45163. height: math.unit(1.85, "meters"),
  45164. name: "Front (Alt)",
  45165. image: {
  45166. source: "./media/characters/riley-foxthing/front-alt.svg",
  45167. extra: 1572/1389,
  45168. bottom: 116/1688
  45169. }
  45170. },
  45171. },
  45172. [
  45173. {
  45174. name: "Normal Sized",
  45175. height: math.unit(1.85, "meters"),
  45176. default: true
  45177. },
  45178. {
  45179. name: "Quite Sizable",
  45180. height: math.unit(5, "meters")
  45181. },
  45182. {
  45183. name: "Rather Large",
  45184. height: math.unit(20, "meters")
  45185. },
  45186. {
  45187. name: "Macro",
  45188. height: math.unit(450, "meters")
  45189. },
  45190. {
  45191. name: "Giga",
  45192. height: math.unit(5, "km")
  45193. },
  45194. ]
  45195. ))
  45196. characterMakers.push(() => makeCharacter(
  45197. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45198. {
  45199. front: {
  45200. height: math.unit(6, "feet"),
  45201. weight: math.unit(200, "lb"),
  45202. name: "Front",
  45203. image: {
  45204. source: "./media/characters/blizzard/front.svg",
  45205. extra: 1136/990,
  45206. bottom: 136/1272
  45207. }
  45208. },
  45209. back: {
  45210. height: math.unit(6, "feet"),
  45211. weight: math.unit(200, "lb"),
  45212. name: "Back",
  45213. image: {
  45214. source: "./media/characters/blizzard/back.svg",
  45215. extra: 1175/1034,
  45216. bottom: 97/1272
  45217. }
  45218. },
  45219. sitting: {
  45220. height: math.unit(3.725, "feet"),
  45221. weight: math.unit(200, "lb"),
  45222. name: "Sitting",
  45223. image: {
  45224. source: "./media/characters/blizzard/sitting.svg",
  45225. extra: 581/485,
  45226. bottom: 90/671
  45227. }
  45228. },
  45229. frontWizard: {
  45230. height: math.unit(7.9, "feet"),
  45231. weight: math.unit(200, "lb"),
  45232. name: "Front (Wizard)",
  45233. image: {
  45234. source: "./media/characters/blizzard/front-wizard.svg"
  45235. }
  45236. },
  45237. backWizard: {
  45238. height: math.unit(7.9, "feet"),
  45239. weight: math.unit(200, "lb"),
  45240. name: "Back (Wizard)",
  45241. image: {
  45242. source: "./media/characters/blizzard/back-wizard.svg"
  45243. }
  45244. },
  45245. frontNsfw: {
  45246. height: math.unit(6, "feet"),
  45247. weight: math.unit(200, "lb"),
  45248. name: "Front (NSFW)",
  45249. image: {
  45250. source: "./media/characters/blizzard/front-nsfw.svg",
  45251. extra: 1136/990,
  45252. bottom: 136/1272
  45253. }
  45254. },
  45255. backNsfw: {
  45256. height: math.unit(6, "feet"),
  45257. weight: math.unit(200, "lb"),
  45258. name: "Back (NSFW)",
  45259. image: {
  45260. source: "./media/characters/blizzard/back-nsfw.svg",
  45261. extra: 1175/1034,
  45262. bottom: 97/1272
  45263. }
  45264. },
  45265. sittingNsfw: {
  45266. height: math.unit(3.725, "feet"),
  45267. weight: math.unit(200, "lb"),
  45268. name: "Sitting (NSFW)",
  45269. image: {
  45270. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45271. extra: 581/485,
  45272. bottom: 90/671
  45273. }
  45274. },
  45275. wizardFrontNsfw: {
  45276. height: math.unit(7.9, "feet"),
  45277. weight: math.unit(200, "lb"),
  45278. name: "Wizard (Front, NSFW)",
  45279. image: {
  45280. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45281. }
  45282. },
  45283. },
  45284. [
  45285. {
  45286. name: "Normal",
  45287. height: math.unit(6, "feet"),
  45288. default: true
  45289. },
  45290. ]
  45291. ))
  45292. characterMakers.push(() => makeCharacter(
  45293. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45294. {
  45295. front: {
  45296. height: math.unit(5 + 2/12, "feet"),
  45297. name: "Front",
  45298. image: {
  45299. source: "./media/characters/lumi/front.svg",
  45300. extra: 1328/1268,
  45301. bottom: 103/1431
  45302. }
  45303. },
  45304. back: {
  45305. height: math.unit(5 + 2/12, "feet"),
  45306. name: "Back",
  45307. image: {
  45308. source: "./media/characters/lumi/back.svg",
  45309. extra: 1381/1327,
  45310. bottom: 43/1424
  45311. }
  45312. },
  45313. },
  45314. [
  45315. {
  45316. name: "Normal",
  45317. height: math.unit(5 + 2/12, "feet"),
  45318. default: true
  45319. },
  45320. ]
  45321. ))
  45322. characterMakers.push(() => makeCharacter(
  45323. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45324. {
  45325. front: {
  45326. height: math.unit(5 + 9/12, "feet"),
  45327. name: "Front",
  45328. image: {
  45329. source: "./media/characters/aliya-cotton/front.svg",
  45330. extra: 577/564,
  45331. bottom: 29/606
  45332. }
  45333. },
  45334. },
  45335. [
  45336. {
  45337. name: "Normal",
  45338. height: math.unit(5 + 9/12, "feet"),
  45339. default: true
  45340. },
  45341. ]
  45342. ))
  45343. characterMakers.push(() => makeCharacter(
  45344. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45345. {
  45346. front: {
  45347. height: math.unit(2.7, "meters"),
  45348. weight: math.unit(25000, "lb"),
  45349. name: "Front",
  45350. image: {
  45351. source: "./media/characters/noah-luxray/front.svg",
  45352. extra: 1644/825,
  45353. bottom: 339/1983
  45354. }
  45355. },
  45356. side: {
  45357. height: math.unit(2.97, "meters"),
  45358. weight: math.unit(25000, "lb"),
  45359. name: "Side",
  45360. image: {
  45361. source: "./media/characters/noah-luxray/side.svg",
  45362. extra: 1319/650,
  45363. bottom: 163/1482
  45364. }
  45365. },
  45366. dick: {
  45367. height: math.unit(7.4, "feet"),
  45368. weight: math.unit(2500, "lb"),
  45369. name: "Dick",
  45370. image: {
  45371. source: "./media/characters/noah-luxray/dick.svg"
  45372. }
  45373. },
  45374. dickAlt: {
  45375. height: math.unit(10.83, "feet"),
  45376. weight: math.unit(2500, "lb"),
  45377. name: "Dick-alt",
  45378. image: {
  45379. source: "./media/characters/noah-luxray/dick-alt.svg"
  45380. }
  45381. },
  45382. },
  45383. [
  45384. {
  45385. name: "BIG",
  45386. height: math.unit(2.7, "meters"),
  45387. default: true
  45388. },
  45389. ]
  45390. ))
  45391. characterMakers.push(() => makeCharacter(
  45392. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45393. {
  45394. standing: {
  45395. height: math.unit(183, "cm"),
  45396. weight: math.unit(68, "kg"),
  45397. name: "Standing",
  45398. image: {
  45399. source: "./media/characters/arion/standing.svg",
  45400. extra: 1869/1807,
  45401. bottom: 93/1962
  45402. }
  45403. },
  45404. reclining: {
  45405. height: math.unit(70.5, "cm"),
  45406. weight: math.unit(68, "lb"),
  45407. name: "Reclining",
  45408. image: {
  45409. source: "./media/characters/arion/reclining.svg",
  45410. extra: 937/870,
  45411. bottom: 63/1000
  45412. }
  45413. },
  45414. },
  45415. [
  45416. {
  45417. name: "Colossus Size, Low",
  45418. height: math.unit(33, "meters"),
  45419. default: true
  45420. },
  45421. {
  45422. name: "Colossus Size, Mid",
  45423. height: math.unit(52, "meters")
  45424. },
  45425. {
  45426. name: "Colossus Size, High",
  45427. height: math.unit(60, "meters")
  45428. },
  45429. {
  45430. name: "Titan Size, Low",
  45431. height: math.unit(91, "meters"),
  45432. },
  45433. {
  45434. name: "Titan Size, Mid",
  45435. height: math.unit(122, "meters")
  45436. },
  45437. {
  45438. name: "Titan Size, High",
  45439. height: math.unit(162, "meters")
  45440. },
  45441. ]
  45442. ))
  45443. characterMakers.push(() => makeCharacter(
  45444. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45445. {
  45446. front: {
  45447. height: math.unit(53, "meters"),
  45448. name: "Front",
  45449. image: {
  45450. source: "./media/characters/stellar-marbey/front.svg",
  45451. extra: 1913/1805,
  45452. bottom: 92/2005
  45453. }
  45454. },
  45455. back: {
  45456. height: math.unit(53, "meters"),
  45457. name: "Back",
  45458. image: {
  45459. source: "./media/characters/stellar-marbey/back.svg",
  45460. extra: 1960/1851,
  45461. bottom: 28/1988
  45462. }
  45463. },
  45464. mouth: {
  45465. height: math.unit(3.5, "meters"),
  45466. name: "Mouth",
  45467. image: {
  45468. source: "./media/characters/stellar-marbey/mouth.svg"
  45469. }
  45470. },
  45471. },
  45472. [
  45473. {
  45474. name: "Macro",
  45475. height: math.unit(53, "meters"),
  45476. default: true
  45477. },
  45478. ]
  45479. ))
  45480. characterMakers.push(() => makeCharacter(
  45481. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45482. {
  45483. front: {
  45484. height: math.unit(8 + 1/12, "feet"),
  45485. weight: math.unit(233, "lb"),
  45486. name: "Front",
  45487. image: {
  45488. source: "./media/characters/matsu/front.svg",
  45489. extra: 832/772,
  45490. bottom: 40/872
  45491. }
  45492. },
  45493. back: {
  45494. height: math.unit(8 + 1/12, "feet"),
  45495. weight: math.unit(233, "lb"),
  45496. name: "Back",
  45497. image: {
  45498. source: "./media/characters/matsu/back.svg",
  45499. extra: 839/780,
  45500. bottom: 47/886
  45501. }
  45502. },
  45503. },
  45504. [
  45505. {
  45506. name: "Normal",
  45507. height: math.unit(8 + 1/12, "feet"),
  45508. default: true
  45509. },
  45510. ]
  45511. ))
  45512. characterMakers.push(() => makeCharacter(
  45513. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45514. {
  45515. front: {
  45516. height: math.unit(4, "feet"),
  45517. weight: math.unit(148, "lb"),
  45518. name: "Front",
  45519. image: {
  45520. source: "./media/characters/thiz/front.svg",
  45521. extra: 1913/1748,
  45522. bottom: 62/1975
  45523. }
  45524. },
  45525. },
  45526. [
  45527. {
  45528. name: "Normal",
  45529. height: math.unit(4, "feet"),
  45530. default: true
  45531. },
  45532. ]
  45533. ))
  45534. characterMakers.push(() => makeCharacter(
  45535. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45536. {
  45537. front: {
  45538. height: math.unit(7 + 6/12, "feet"),
  45539. weight: math.unit(267, "lb"),
  45540. name: "Front",
  45541. image: {
  45542. source: "./media/characters/marcel/front.svg",
  45543. extra: 1221/1096,
  45544. bottom: 76/1297
  45545. }
  45546. },
  45547. },
  45548. [
  45549. {
  45550. name: "Normal",
  45551. height: math.unit(7 + 6/12, "feet"),
  45552. default: true
  45553. },
  45554. ]
  45555. ))
  45556. characterMakers.push(() => makeCharacter(
  45557. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45558. {
  45559. side: {
  45560. height: math.unit(42, "meters"),
  45561. name: "Side",
  45562. image: {
  45563. source: "./media/characters/flake/side.svg",
  45564. extra: 1525/1306,
  45565. bottom: 209/1734
  45566. }
  45567. },
  45568. },
  45569. [
  45570. {
  45571. name: "Normal",
  45572. height: math.unit(42, "meters"),
  45573. default: true
  45574. },
  45575. ]
  45576. ))
  45577. characterMakers.push(() => makeCharacter(
  45578. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45579. {
  45580. dressed: {
  45581. height: math.unit(6 + 4/12, "feet"),
  45582. weight: math.unit(520, "lb"),
  45583. name: "Dressed",
  45584. image: {
  45585. source: "./media/characters/someonne/dressed.svg",
  45586. extra: 1020/1010,
  45587. bottom: 178/1198
  45588. }
  45589. },
  45590. undressed: {
  45591. height: math.unit(6 + 4/12, "feet"),
  45592. weight: math.unit(520, "lb"),
  45593. name: "Undressed",
  45594. image: {
  45595. source: "./media/characters/someonne/undressed.svg",
  45596. extra: 1019/1014,
  45597. bottom: 169/1188
  45598. }
  45599. },
  45600. },
  45601. [
  45602. {
  45603. name: "Normal",
  45604. height: math.unit(6 + 4/12, "feet"),
  45605. default: true
  45606. },
  45607. ]
  45608. ))
  45609. characterMakers.push(() => makeCharacter(
  45610. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45611. {
  45612. front: {
  45613. height: math.unit(3, "feet"),
  45614. weight: math.unit(30, "lb"),
  45615. name: "Front",
  45616. image: {
  45617. source: "./media/characters/till/front.svg",
  45618. extra: 892/823,
  45619. bottom: 55/947
  45620. }
  45621. },
  45622. },
  45623. [
  45624. {
  45625. name: "Normal",
  45626. height: math.unit(3, "feet"),
  45627. default: true
  45628. },
  45629. ]
  45630. ))
  45631. characterMakers.push(() => makeCharacter(
  45632. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45633. {
  45634. front: {
  45635. height: math.unit(9 + 8/12, "feet"),
  45636. weight: math.unit(800, "lb"),
  45637. name: "Front",
  45638. image: {
  45639. source: "./media/characters/sydney-heki/front.svg",
  45640. extra: 1360/1300,
  45641. bottom: 22/1382
  45642. }
  45643. },
  45644. back: {
  45645. height: math.unit(9 + 8/12, "feet"),
  45646. weight: math.unit(800, "lb"),
  45647. name: "Back",
  45648. image: {
  45649. source: "./media/characters/sydney-heki/back.svg",
  45650. extra: 1356/1293,
  45651. bottom: 12/1368
  45652. }
  45653. },
  45654. frontDressed: {
  45655. height: math.unit(9 + 8/12, "feet"),
  45656. weight: math.unit(800, "lb"),
  45657. name: "Front-dressed",
  45658. image: {
  45659. source: "./media/characters/sydney-heki/front-dressed.svg",
  45660. extra: 1360/1300,
  45661. bottom: 22/1382
  45662. }
  45663. },
  45664. },
  45665. [
  45666. {
  45667. name: "Normal",
  45668. height: math.unit(9 + 8/12, "feet"),
  45669. default: true
  45670. },
  45671. {
  45672. name: "Macro",
  45673. height: math.unit(500, "feet")
  45674. },
  45675. {
  45676. name: "Megamacro",
  45677. height: math.unit(3.6, "miles")
  45678. },
  45679. ]
  45680. ))
  45681. characterMakers.push(() => makeCharacter(
  45682. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45683. {
  45684. front: {
  45685. height: math.unit(200, "cm"),
  45686. weight: math.unit(250, "lb"),
  45687. name: "Front",
  45688. image: {
  45689. source: "./media/characters/fowler-karlsson/front.svg",
  45690. extra: 897/845,
  45691. bottom: 123/1020
  45692. }
  45693. },
  45694. back: {
  45695. height: math.unit(200, "cm"),
  45696. weight: math.unit(250, "lb"),
  45697. name: "Back",
  45698. image: {
  45699. source: "./media/characters/fowler-karlsson/back.svg",
  45700. extra: 999/944,
  45701. bottom: 26/1025
  45702. }
  45703. },
  45704. dick: {
  45705. height: math.unit(1.92, "feet"),
  45706. weight: math.unit(150, "lb"),
  45707. name: "Dick",
  45708. image: {
  45709. source: "./media/characters/fowler-karlsson/dick.svg"
  45710. }
  45711. },
  45712. },
  45713. [
  45714. {
  45715. name: "Normal",
  45716. height: math.unit(200, "cm"),
  45717. default: true
  45718. },
  45719. {
  45720. name: "Smaller Macro",
  45721. height: math.unit(90, "m")
  45722. },
  45723. {
  45724. name: "Macro",
  45725. height: math.unit(150, "m")
  45726. },
  45727. {
  45728. name: "Bigger Macro",
  45729. height: math.unit(300, "m")
  45730. },
  45731. ]
  45732. ))
  45733. characterMakers.push(() => makeCharacter(
  45734. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45735. {
  45736. side: {
  45737. height: math.unit(8 + 2/12, "feet"),
  45738. weight: math.unit(1, "tonne"),
  45739. name: "Side",
  45740. image: {
  45741. source: "./media/characters/rylide/side.svg",
  45742. extra: 1318/1034,
  45743. bottom: 106/1424
  45744. }
  45745. },
  45746. sitting: {
  45747. height: math.unit(303, "cm"),
  45748. weight: math.unit(1, "tonne"),
  45749. name: "Sitting",
  45750. image: {
  45751. source: "./media/characters/rylide/sitting.svg",
  45752. extra: 1303/1103,
  45753. bottom: 36/1339
  45754. }
  45755. },
  45756. },
  45757. [
  45758. {
  45759. name: "Normal",
  45760. height: math.unit(8 + 2/12, "feet"),
  45761. default: true
  45762. },
  45763. ]
  45764. ))
  45765. characterMakers.push(() => makeCharacter(
  45766. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45767. {
  45768. front: {
  45769. height: math.unit(5 + 10/12, "feet"),
  45770. weight: math.unit(160, "lb"),
  45771. name: "Front",
  45772. image: {
  45773. source: "./media/characters/pudask/front.svg",
  45774. extra: 1616/1590,
  45775. bottom: 161/1777
  45776. }
  45777. },
  45778. },
  45779. [
  45780. {
  45781. name: "Ferret Height",
  45782. height: math.unit(2 + 5/12, "feet")
  45783. },
  45784. {
  45785. name: "Canon Height",
  45786. height: math.unit(5 + 10/12, "feet"),
  45787. default: true
  45788. },
  45789. ]
  45790. ))
  45791. characterMakers.push(() => makeCharacter(
  45792. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45793. {
  45794. front: {
  45795. height: math.unit(3 + 6/12, "feet"),
  45796. weight: math.unit(60, "lb"),
  45797. name: "Front",
  45798. image: {
  45799. source: "./media/characters/ramita/front.svg",
  45800. extra: 1402/1232,
  45801. bottom: 62/1464
  45802. }
  45803. },
  45804. dressed: {
  45805. height: math.unit(3 + 6/12, "feet"),
  45806. weight: math.unit(60, "lb"),
  45807. name: "Dressed",
  45808. image: {
  45809. source: "./media/characters/ramita/dressed.svg",
  45810. extra: 1534/1249,
  45811. bottom: 50/1584
  45812. }
  45813. },
  45814. },
  45815. [
  45816. {
  45817. name: "Normal",
  45818. height: math.unit(3 + 6/12, "feet"),
  45819. default: true
  45820. },
  45821. ]
  45822. ))
  45823. characterMakers.push(() => makeCharacter(
  45824. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45825. {
  45826. front: {
  45827. height: math.unit(8, "feet"),
  45828. name: "Front",
  45829. image: {
  45830. source: "./media/characters/ark/front.svg",
  45831. extra: 772/693,
  45832. bottom: 45/817
  45833. }
  45834. },
  45835. },
  45836. [
  45837. {
  45838. name: "Normal",
  45839. height: math.unit(8, "feet"),
  45840. default: true
  45841. },
  45842. ]
  45843. ))
  45844. characterMakers.push(() => makeCharacter(
  45845. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45846. {
  45847. front: {
  45848. height: math.unit(6, "feet"),
  45849. weight: math.unit(250, "lb"),
  45850. volume: math.unit(5/8, "gallons"),
  45851. name: "Front",
  45852. image: {
  45853. source: "./media/characters/ludwig-horn/front.svg",
  45854. extra: 1782/1635,
  45855. bottom: 96/1878
  45856. }
  45857. },
  45858. back: {
  45859. height: math.unit(6, "feet"),
  45860. weight: math.unit(250, "lb"),
  45861. volume: math.unit(5/8, "gallons"),
  45862. name: "Back",
  45863. image: {
  45864. source: "./media/characters/ludwig-horn/back.svg",
  45865. extra: 1874/1729,
  45866. bottom: 27/1901
  45867. }
  45868. },
  45869. dick: {
  45870. height: math.unit(1.05, "feet"),
  45871. weight: math.unit(15, "lb"),
  45872. volume: math.unit(5/8, "gallons"),
  45873. name: "Dick",
  45874. image: {
  45875. source: "./media/characters/ludwig-horn/dick.svg"
  45876. }
  45877. },
  45878. },
  45879. [
  45880. {
  45881. name: "Small",
  45882. height: math.unit(6, "feet")
  45883. },
  45884. {
  45885. name: "Typical",
  45886. height: math.unit(12, "feet"),
  45887. default: true
  45888. },
  45889. {
  45890. name: "Building",
  45891. height: math.unit(80, "feet")
  45892. },
  45893. {
  45894. name: "Town",
  45895. height: math.unit(800, "feet")
  45896. },
  45897. {
  45898. name: "Kingdom",
  45899. height: math.unit(80000, "feet")
  45900. },
  45901. {
  45902. name: "Planet",
  45903. height: math.unit(8000000, "feet")
  45904. },
  45905. {
  45906. name: "Universe",
  45907. height: math.unit(8000000000, "feet")
  45908. },
  45909. {
  45910. name: "Transcended",
  45911. height: math.unit(8e27, "feet")
  45912. },
  45913. ]
  45914. ))
  45915. characterMakers.push(() => makeCharacter(
  45916. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45917. {
  45918. front: {
  45919. height: math.unit(5, "feet"),
  45920. weight: math.unit(50, "kg"),
  45921. name: "Front",
  45922. image: {
  45923. source: "./media/characters/biot-avery/front.svg",
  45924. extra: 1295/1232,
  45925. bottom: 86/1381
  45926. }
  45927. },
  45928. },
  45929. [
  45930. {
  45931. name: "Normal",
  45932. height: math.unit(5, "feet"),
  45933. default: true
  45934. },
  45935. ]
  45936. ))
  45937. characterMakers.push(() => makeCharacter(
  45938. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45939. {
  45940. front: {
  45941. height: math.unit(6, "feet"),
  45942. name: "Front",
  45943. image: {
  45944. source: "./media/characters/kitsune-kiro/front.svg",
  45945. extra: 1270/1158,
  45946. bottom: 42/1312
  45947. }
  45948. },
  45949. frontAlt: {
  45950. height: math.unit(6, "feet"),
  45951. name: "Front-alt",
  45952. image: {
  45953. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45954. extra: 1130/1081,
  45955. bottom: 36/1166
  45956. }
  45957. },
  45958. },
  45959. [
  45960. {
  45961. name: "Smol",
  45962. height: math.unit(3, "feet")
  45963. },
  45964. {
  45965. name: "Normal",
  45966. height: math.unit(6, "feet"),
  45967. default: true
  45968. },
  45969. ]
  45970. ))
  45971. characterMakers.push(() => makeCharacter(
  45972. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45973. {
  45974. front: {
  45975. height: math.unit(6, "feet"),
  45976. weight: math.unit(125, "lb"),
  45977. name: "Front",
  45978. image: {
  45979. source: "./media/characters/jack-thatcher/front.svg",
  45980. extra: 1474/1370,
  45981. bottom: 26/1500
  45982. }
  45983. },
  45984. back: {
  45985. height: math.unit(6, "feet"),
  45986. weight: math.unit(125, "lb"),
  45987. name: "Back",
  45988. image: {
  45989. source: "./media/characters/jack-thatcher/back.svg",
  45990. extra: 1489/1384,
  45991. bottom: 18/1507
  45992. }
  45993. },
  45994. },
  45995. [
  45996. {
  45997. name: "Normal",
  45998. height: math.unit(6, "feet"),
  45999. default: true
  46000. },
  46001. {
  46002. name: "Macro",
  46003. height: math.unit(75, "feet")
  46004. },
  46005. {
  46006. name: "Macro-er",
  46007. height: math.unit(250, "feet")
  46008. },
  46009. ]
  46010. ))
  46011. characterMakers.push(() => makeCharacter(
  46012. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46013. {
  46014. front: {
  46015. height: math.unit(7, "feet"),
  46016. weight: math.unit(110, "kg"),
  46017. name: "Front",
  46018. image: {
  46019. source: "./media/characters/max-hyper/front.svg",
  46020. extra: 1969/1881,
  46021. bottom: 49/2018
  46022. }
  46023. },
  46024. },
  46025. [
  46026. {
  46027. name: "Normal",
  46028. height: math.unit(7, "feet"),
  46029. default: true
  46030. },
  46031. ]
  46032. ))
  46033. characterMakers.push(() => makeCharacter(
  46034. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46035. {
  46036. front: {
  46037. height: math.unit(5 + 5/12, "feet"),
  46038. weight: math.unit(160, "lb"),
  46039. name: "Front",
  46040. image: {
  46041. source: "./media/characters/spook/front.svg",
  46042. extra: 794/791,
  46043. bottom: 54/848
  46044. }
  46045. },
  46046. back: {
  46047. height: math.unit(5 + 5/12, "feet"),
  46048. weight: math.unit(160, "lb"),
  46049. name: "Back",
  46050. image: {
  46051. source: "./media/characters/spook/back.svg",
  46052. extra: 812/798,
  46053. bottom: 32/844
  46054. }
  46055. },
  46056. },
  46057. [
  46058. {
  46059. name: "Normal",
  46060. height: math.unit(5 + 5/12, "feet"),
  46061. default: true
  46062. },
  46063. ]
  46064. ))
  46065. characterMakers.push(() => makeCharacter(
  46066. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46067. {
  46068. front: {
  46069. height: math.unit(18, "feet"),
  46070. name: "Front",
  46071. image: {
  46072. source: "./media/characters/xeaduulix/front.svg",
  46073. extra: 1380/1166,
  46074. bottom: 110/1490
  46075. }
  46076. },
  46077. back: {
  46078. height: math.unit(18, "feet"),
  46079. name: "Back",
  46080. image: {
  46081. source: "./media/characters/xeaduulix/back.svg",
  46082. extra: 1592/1170,
  46083. bottom: 128/1720
  46084. }
  46085. },
  46086. frontNsfw: {
  46087. height: math.unit(18, "feet"),
  46088. name: "Front (NSFW)",
  46089. image: {
  46090. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46091. extra: 1380/1166,
  46092. bottom: 110/1490
  46093. }
  46094. },
  46095. backNsfw: {
  46096. height: math.unit(18, "feet"),
  46097. name: "Back (NSFW)",
  46098. image: {
  46099. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46100. extra: 1592/1170,
  46101. bottom: 128/1720
  46102. }
  46103. },
  46104. },
  46105. [
  46106. {
  46107. name: "Normal",
  46108. height: math.unit(18, "feet"),
  46109. default: true
  46110. },
  46111. ]
  46112. ))
  46113. characterMakers.push(() => makeCharacter(
  46114. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46115. {
  46116. spreadWings: {
  46117. height: math.unit(20, "feet"),
  46118. name: "Spread Wings",
  46119. image: {
  46120. source: "./media/characters/fledge/spread-wings.svg",
  46121. extra: 693/635,
  46122. bottom: 26/719
  46123. }
  46124. },
  46125. front: {
  46126. height: math.unit(20, "feet"),
  46127. name: "Front",
  46128. image: {
  46129. source: "./media/characters/fledge/front.svg",
  46130. extra: 684/637,
  46131. bottom: 18/702
  46132. }
  46133. },
  46134. frontAlt: {
  46135. height: math.unit(20, "feet"),
  46136. name: "Front (Alt)",
  46137. image: {
  46138. source: "./media/characters/fledge/front-alt.svg",
  46139. extra: 708/664,
  46140. bottom: 13/721
  46141. }
  46142. },
  46143. back: {
  46144. height: math.unit(20, "feet"),
  46145. name: "Back",
  46146. image: {
  46147. source: "./media/characters/fledge/back.svg",
  46148. extra: 718/634,
  46149. bottom: 22/740
  46150. }
  46151. },
  46152. head: {
  46153. height: math.unit(5.55, "feet"),
  46154. name: "Head",
  46155. image: {
  46156. source: "./media/characters/fledge/head.svg"
  46157. }
  46158. },
  46159. headAlt: {
  46160. height: math.unit(5.1, "feet"),
  46161. name: "Head (Alt)",
  46162. image: {
  46163. source: "./media/characters/fledge/head-alt.svg"
  46164. }
  46165. },
  46166. },
  46167. [
  46168. {
  46169. name: "Small",
  46170. height: math.unit(6 + 2/12, "feet")
  46171. },
  46172. {
  46173. name: "Big",
  46174. height: math.unit(20, "feet"),
  46175. default: true
  46176. },
  46177. {
  46178. name: "Giant",
  46179. height: math.unit(100, "feet")
  46180. },
  46181. {
  46182. name: "Macro",
  46183. height: math.unit(200, "feet")
  46184. },
  46185. ]
  46186. ))
  46187. characterMakers.push(() => makeCharacter(
  46188. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46189. {
  46190. front: {
  46191. height: math.unit(1, "meter"),
  46192. name: "Front",
  46193. image: {
  46194. source: "./media/characters/atlas-morenai/front.svg",
  46195. extra: 1275/1043,
  46196. bottom: 19/1294
  46197. }
  46198. },
  46199. back: {
  46200. height: math.unit(1, "meter"),
  46201. name: "Back",
  46202. image: {
  46203. source: "./media/characters/atlas-morenai/back.svg",
  46204. extra: 1141/1001,
  46205. bottom: 25/1166
  46206. }
  46207. },
  46208. },
  46209. [
  46210. {
  46211. name: "Normal",
  46212. height: math.unit(1, "meter"),
  46213. default: true
  46214. },
  46215. {
  46216. name: "Magic-Infused",
  46217. height: math.unit(5, "meters")
  46218. },
  46219. ]
  46220. ))
  46221. characterMakers.push(() => makeCharacter(
  46222. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46223. {
  46224. front: {
  46225. height: math.unit(5, "meters"),
  46226. name: "Front",
  46227. image: {
  46228. source: "./media/characters/cintia/front.svg",
  46229. extra: 1312/1228,
  46230. bottom: 38/1350
  46231. }
  46232. },
  46233. back: {
  46234. height: math.unit(5, "meters"),
  46235. name: "Back",
  46236. image: {
  46237. source: "./media/characters/cintia/back.svg",
  46238. extra: 1260/1166,
  46239. bottom: 98/1358
  46240. }
  46241. },
  46242. frontDick: {
  46243. height: math.unit(5, "meters"),
  46244. name: "Front (Dick)",
  46245. image: {
  46246. source: "./media/characters/cintia/front-dick.svg",
  46247. extra: 1312/1228,
  46248. bottom: 38/1350
  46249. }
  46250. },
  46251. backDick: {
  46252. height: math.unit(5, "meters"),
  46253. name: "Back (Dick)",
  46254. image: {
  46255. source: "./media/characters/cintia/back-dick.svg",
  46256. extra: 1260/1166,
  46257. bottom: 98/1358
  46258. }
  46259. },
  46260. bust: {
  46261. height: math.unit(1.97, "meters"),
  46262. name: "Bust",
  46263. image: {
  46264. source: "./media/characters/cintia/bust.svg",
  46265. extra: 617/565,
  46266. bottom: 0/617
  46267. }
  46268. },
  46269. },
  46270. [
  46271. {
  46272. name: "Normal",
  46273. height: math.unit(5, "meters"),
  46274. default: true
  46275. },
  46276. ]
  46277. ))
  46278. characterMakers.push(() => makeCharacter(
  46279. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46280. {
  46281. side: {
  46282. height: math.unit(100, "feet"),
  46283. name: "Side",
  46284. image: {
  46285. source: "./media/characters/denora/side.svg",
  46286. extra: 875/803,
  46287. bottom: 9/884
  46288. }
  46289. },
  46290. },
  46291. [
  46292. {
  46293. name: "Standard",
  46294. height: math.unit(100, "feet"),
  46295. default: true
  46296. },
  46297. {
  46298. name: "Grand",
  46299. height: math.unit(1000, "feet")
  46300. },
  46301. {
  46302. name: "Conquering",
  46303. height: math.unit(10000, "feet")
  46304. },
  46305. ]
  46306. ))
  46307. characterMakers.push(() => makeCharacter(
  46308. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46309. {
  46310. dressed: {
  46311. height: math.unit(8 + 5/12, "feet"),
  46312. weight: math.unit(700, "lb"),
  46313. name: "Dressed",
  46314. image: {
  46315. source: "./media/characters/kiva/dressed.svg",
  46316. extra: 1102/1055,
  46317. bottom: 60/1162
  46318. }
  46319. },
  46320. nude: {
  46321. height: math.unit(8 + 5/12, "feet"),
  46322. weight: math.unit(700, "lb"),
  46323. name: "Nude",
  46324. image: {
  46325. source: "./media/characters/kiva/nude.svg",
  46326. extra: 1102/1055,
  46327. bottom: 60/1162
  46328. }
  46329. },
  46330. },
  46331. [
  46332. {
  46333. name: "Base Height",
  46334. height: math.unit(8 + 5/12, "feet"),
  46335. default: true
  46336. },
  46337. {
  46338. name: "Macro",
  46339. height: math.unit(100, "feet")
  46340. },
  46341. {
  46342. name: "Max",
  46343. height: math.unit(3280, "feet")
  46344. },
  46345. ]
  46346. ))
  46347. characterMakers.push(() => makeCharacter(
  46348. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46349. {
  46350. front: {
  46351. height: math.unit(6 + 8/12, "feet"),
  46352. weight: math.unit(250, "lb"),
  46353. name: "Front",
  46354. image: {
  46355. source: "./media/characters/ztragon/front.svg",
  46356. extra: 1825/1684,
  46357. bottom: 98/1923
  46358. }
  46359. },
  46360. },
  46361. [
  46362. {
  46363. name: "Normal",
  46364. height: math.unit(6 + 8/12, "feet"),
  46365. default: true
  46366. },
  46367. {
  46368. name: "Macro",
  46369. height: math.unit(80, "feet")
  46370. },
  46371. ]
  46372. ))
  46373. characterMakers.push(() => makeCharacter(
  46374. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46375. {
  46376. front: {
  46377. height: math.unit(10.4, "feet"),
  46378. weight: math.unit(2, "tons"),
  46379. name: "Front",
  46380. image: {
  46381. source: "./media/characters/yesenia/front.svg",
  46382. extra: 1479/1474,
  46383. bottom: 233/1712
  46384. }
  46385. },
  46386. },
  46387. [
  46388. {
  46389. name: "Normal",
  46390. height: math.unit(10.4, "feet"),
  46391. default: true
  46392. },
  46393. ]
  46394. ))
  46395. characterMakers.push(() => makeCharacter(
  46396. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46397. {
  46398. normal: {
  46399. height: math.unit(6 + 1/12, "feet"),
  46400. weight: math.unit(180, "lb"),
  46401. name: "Normal",
  46402. image: {
  46403. source: "./media/characters/leanne-lycheborne/normal.svg",
  46404. extra: 1748/1660,
  46405. bottom: 98/1846
  46406. }
  46407. },
  46408. were: {
  46409. height: math.unit(12, "feet"),
  46410. weight: math.unit(1600, "lb"),
  46411. name: "Were",
  46412. image: {
  46413. source: "./media/characters/leanne-lycheborne/were.svg",
  46414. extra: 1485/1432,
  46415. bottom: 66/1551
  46416. }
  46417. },
  46418. },
  46419. [
  46420. {
  46421. name: "Normal",
  46422. height: math.unit(6 + 1/12, "feet"),
  46423. default: true
  46424. },
  46425. ]
  46426. ))
  46427. characterMakers.push(() => makeCharacter(
  46428. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46429. {
  46430. side: {
  46431. height: math.unit(13, "feet"),
  46432. name: "Side",
  46433. image: {
  46434. source: "./media/characters/kira-tyler/side.svg",
  46435. extra: 693/393,
  46436. bottom: 58/751
  46437. }
  46438. },
  46439. },
  46440. [
  46441. {
  46442. name: "Normal",
  46443. height: math.unit(13, "feet"),
  46444. default: true
  46445. },
  46446. ]
  46447. ))
  46448. characterMakers.push(() => makeCharacter(
  46449. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46450. {
  46451. front: {
  46452. height: math.unit(10.3, "feet"),
  46453. weight: math.unit(150, "lb"),
  46454. name: "Front",
  46455. image: {
  46456. source: "./media/characters/blaze/front.svg",
  46457. extra: 1378/1286,
  46458. bottom: 172/1550
  46459. }
  46460. },
  46461. },
  46462. [
  46463. {
  46464. name: "Normal",
  46465. height: math.unit(10.3, "feet"),
  46466. default: true
  46467. },
  46468. ]
  46469. ))
  46470. characterMakers.push(() => makeCharacter(
  46471. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46472. {
  46473. side: {
  46474. height: math.unit(2, "meters"),
  46475. weight: math.unit(400, "kg"),
  46476. name: "Side",
  46477. image: {
  46478. source: "./media/characters/anu/side.svg",
  46479. extra: 506/394,
  46480. bottom: 18/524
  46481. }
  46482. },
  46483. },
  46484. [
  46485. {
  46486. name: "Humanoid",
  46487. height: math.unit(2, "meters")
  46488. },
  46489. {
  46490. name: "Normal",
  46491. height: math.unit(5, "meters"),
  46492. default: true
  46493. },
  46494. ]
  46495. ))
  46496. characterMakers.push(() => makeCharacter(
  46497. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46498. {
  46499. front: {
  46500. height: math.unit(5 + 5/12, "feet"),
  46501. weight: math.unit(170, "lb"),
  46502. name: "Front",
  46503. image: {
  46504. source: "./media/characters/synx-the-lynx/front.svg",
  46505. extra: 1893/1745,
  46506. bottom: 17/1910
  46507. }
  46508. },
  46509. side: {
  46510. height: math.unit(5 + 5/12, "feet"),
  46511. weight: math.unit(170, "lb"),
  46512. name: "Side",
  46513. image: {
  46514. source: "./media/characters/synx-the-lynx/side.svg",
  46515. extra: 1884/1740,
  46516. bottom: 39/1923
  46517. }
  46518. },
  46519. back: {
  46520. height: math.unit(5 + 5/12, "feet"),
  46521. weight: math.unit(170, "lb"),
  46522. name: "Back",
  46523. image: {
  46524. source: "./media/characters/synx-the-lynx/back.svg",
  46525. extra: 1903/1755,
  46526. bottom: 14/1917
  46527. }
  46528. },
  46529. },
  46530. [
  46531. {
  46532. name: "Normal",
  46533. height: math.unit(5 + 5/12, "feet"),
  46534. default: true
  46535. },
  46536. ]
  46537. ))
  46538. characterMakers.push(() => makeCharacter(
  46539. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46540. {
  46541. back: {
  46542. height: math.unit(15, "feet"),
  46543. name: "Back",
  46544. image: {
  46545. source: "./media/characters/nadezda-fex/back.svg",
  46546. extra: 1695/1481,
  46547. bottom: 25/1720
  46548. }
  46549. },
  46550. },
  46551. [
  46552. {
  46553. name: "Normal",
  46554. height: math.unit(15, "feet"),
  46555. default: true
  46556. },
  46557. {
  46558. name: "Macro",
  46559. height: math.unit(2.5, "miles")
  46560. },
  46561. {
  46562. name: "Goddess",
  46563. height: math.unit(2, "multiverses")
  46564. },
  46565. ]
  46566. ))
  46567. characterMakers.push(() => makeCharacter(
  46568. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46569. {
  46570. front: {
  46571. height: math.unit(216, "cm"),
  46572. name: "Front",
  46573. image: {
  46574. source: "./media/characters/lev/front.svg",
  46575. extra: 1728/1670,
  46576. bottom: 82/1810
  46577. }
  46578. },
  46579. back: {
  46580. height: math.unit(216, "cm"),
  46581. name: "Back",
  46582. image: {
  46583. source: "./media/characters/lev/back.svg",
  46584. extra: 1738/1675,
  46585. bottom: 24/1762
  46586. }
  46587. },
  46588. dressed: {
  46589. height: math.unit(216, "cm"),
  46590. name: "Dressed",
  46591. image: {
  46592. source: "./media/characters/lev/dressed.svg",
  46593. extra: 1397/1351,
  46594. bottom: 73/1470
  46595. }
  46596. },
  46597. head: {
  46598. height: math.unit(0.51, "meter"),
  46599. name: "Head",
  46600. image: {
  46601. source: "./media/characters/lev/head.svg"
  46602. }
  46603. },
  46604. },
  46605. [
  46606. {
  46607. name: "Normal",
  46608. height: math.unit(216, "cm"),
  46609. default: true
  46610. },
  46611. {
  46612. name: "Relatively Macro",
  46613. height: math.unit(80, "meters")
  46614. },
  46615. {
  46616. name: "Megamacro",
  46617. height: math.unit(21600, "meters")
  46618. },
  46619. {
  46620. name: "Megamacro+",
  46621. height: math.unit(64800, "meters")
  46622. },
  46623. ]
  46624. ))
  46625. characterMakers.push(() => makeCharacter(
  46626. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46627. {
  46628. front: {
  46629. height: math.unit(2, "meters"),
  46630. weight: math.unit(80, "kg"),
  46631. name: "Front",
  46632. image: {
  46633. source: "./media/characters/moka/front.svg",
  46634. extra: 1337/1255,
  46635. bottom: 58/1395
  46636. }
  46637. },
  46638. },
  46639. [
  46640. {
  46641. name: "Micro",
  46642. height: math.unit(15, "cm")
  46643. },
  46644. {
  46645. name: "Normal",
  46646. height: math.unit(2, "meters"),
  46647. default: true
  46648. },
  46649. {
  46650. name: "Macro",
  46651. height: math.unit(20, "meters"),
  46652. },
  46653. ]
  46654. ))
  46655. characterMakers.push(() => makeCharacter(
  46656. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46657. {
  46658. front: {
  46659. height: math.unit(9, "feet"),
  46660. weight: math.unit(240, "lb"),
  46661. name: "Front",
  46662. image: {
  46663. source: "./media/characters/kuzco/front.svg",
  46664. extra: 1593/1487,
  46665. bottom: 32/1625
  46666. }
  46667. },
  46668. side: {
  46669. height: math.unit(9, "feet"),
  46670. weight: math.unit(240, "lb"),
  46671. name: "Side",
  46672. image: {
  46673. source: "./media/characters/kuzco/side.svg",
  46674. extra: 1575/1485,
  46675. bottom: 30/1605
  46676. }
  46677. },
  46678. back: {
  46679. height: math.unit(9, "feet"),
  46680. weight: math.unit(240, "lb"),
  46681. name: "Back",
  46682. image: {
  46683. source: "./media/characters/kuzco/back.svg",
  46684. extra: 1603/1514,
  46685. bottom: 14/1617
  46686. }
  46687. },
  46688. },
  46689. [
  46690. {
  46691. name: "Normal",
  46692. height: math.unit(9, "feet"),
  46693. default: true
  46694. },
  46695. ]
  46696. ))
  46697. characterMakers.push(() => makeCharacter(
  46698. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46699. {
  46700. side: {
  46701. height: math.unit(2, "meters"),
  46702. weight: math.unit(300, "kg"),
  46703. name: "Side",
  46704. image: {
  46705. source: "./media/characters/ceruleus/side.svg",
  46706. extra: 1068/974,
  46707. bottom: 126/1194
  46708. }
  46709. },
  46710. },
  46711. [
  46712. {
  46713. name: "Normal",
  46714. height: math.unit(16, "meters"),
  46715. default: true
  46716. },
  46717. ]
  46718. ))
  46719. characterMakers.push(() => makeCharacter(
  46720. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46721. {
  46722. front: {
  46723. height: math.unit(9, "feet"),
  46724. weight: math.unit(500, "kg"),
  46725. name: "Front",
  46726. image: {
  46727. source: "./media/characters/acouya/front.svg",
  46728. extra: 1660/1473,
  46729. bottom: 28/1688
  46730. }
  46731. },
  46732. },
  46733. [
  46734. {
  46735. name: "Normal",
  46736. height: math.unit(9, "feet"),
  46737. default: true
  46738. },
  46739. ]
  46740. ))
  46741. characterMakers.push(() => makeCharacter(
  46742. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46743. {
  46744. front: {
  46745. height: math.unit(5 + 6/12, "feet"),
  46746. weight: math.unit(195, "lb"),
  46747. name: "Front",
  46748. image: {
  46749. source: "./media/characters/vant/front.svg",
  46750. extra: 1396/1320,
  46751. bottom: 20/1416
  46752. }
  46753. },
  46754. back: {
  46755. height: math.unit(5 + 6/12, "feet"),
  46756. weight: math.unit(195, "lb"),
  46757. name: "Back",
  46758. image: {
  46759. source: "./media/characters/vant/back.svg",
  46760. extra: 1396/1320,
  46761. bottom: 20/1416
  46762. }
  46763. },
  46764. maw: {
  46765. height: math.unit(0.75, "feet"),
  46766. name: "Maw",
  46767. image: {
  46768. source: "./media/characters/vant/maw.svg"
  46769. }
  46770. },
  46771. paw: {
  46772. height: math.unit(1.07, "feet"),
  46773. name: "Paw",
  46774. image: {
  46775. source: "./media/characters/vant/paw.svg"
  46776. }
  46777. },
  46778. },
  46779. [
  46780. {
  46781. name: "Micro",
  46782. height: math.unit(0.25, "inches")
  46783. },
  46784. {
  46785. name: "Normal",
  46786. height: math.unit(5 + 6/12, "feet"),
  46787. default: true
  46788. },
  46789. {
  46790. name: "Macro",
  46791. height: math.unit(75, "feet")
  46792. },
  46793. ]
  46794. ))
  46795. characterMakers.push(() => makeCharacter(
  46796. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46797. {
  46798. front: {
  46799. height: math.unit(30, "meters"),
  46800. weight: math.unit(363, "tons"),
  46801. name: "Front",
  46802. image: {
  46803. source: "./media/characters/ahra/front.svg",
  46804. extra: 1914/1814,
  46805. bottom: 46/1960
  46806. }
  46807. },
  46808. },
  46809. [
  46810. {
  46811. name: "Macro",
  46812. height: math.unit(30, "meters"),
  46813. default: true
  46814. },
  46815. ]
  46816. ))
  46817. characterMakers.push(() => makeCharacter(
  46818. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46819. {
  46820. undressed: {
  46821. height: math.unit(2, "m"),
  46822. weight: math.unit(250, "kg"),
  46823. name: "Undressed",
  46824. image: {
  46825. source: "./media/characters/coriander/undressed.svg",
  46826. extra: 1757/1606,
  46827. bottom: 107/1864
  46828. }
  46829. },
  46830. dressed: {
  46831. height: math.unit(2, "m"),
  46832. weight: math.unit(250, "kg"),
  46833. name: "Dressed",
  46834. image: {
  46835. source: "./media/characters/coriander/dressed.svg",
  46836. extra: 1757/1606,
  46837. bottom: 107/1864
  46838. }
  46839. },
  46840. },
  46841. [
  46842. {
  46843. name: "Normal",
  46844. height: math.unit(4, "meters"),
  46845. default: true
  46846. },
  46847. {
  46848. name: "XL",
  46849. height: math.unit(6, "meters")
  46850. },
  46851. {
  46852. name: "XXL",
  46853. height: math.unit(8, "meters")
  46854. },
  46855. ]
  46856. ))
  46857. characterMakers.push(() => makeCharacter(
  46858. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46859. {
  46860. front: {
  46861. height: math.unit(6, "feet"),
  46862. name: "Front",
  46863. image: {
  46864. source: "./media/characters/syrinx/front.svg",
  46865. extra: 1557/1259,
  46866. bottom: 171/1728
  46867. }
  46868. },
  46869. },
  46870. [
  46871. {
  46872. name: "Normal",
  46873. height: math.unit(6 + 3/12, "feet"),
  46874. default: true
  46875. },
  46876. ]
  46877. ))
  46878. characterMakers.push(() => makeCharacter(
  46879. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46880. {
  46881. front: {
  46882. height: math.unit(11 + 6/12, "feet"),
  46883. weight: math.unit(1.5, "tons"),
  46884. name: "Front",
  46885. image: {
  46886. source: "./media/characters/bor/front.svg",
  46887. extra: 1189/1109,
  46888. bottom: 170/1359
  46889. }
  46890. },
  46891. },
  46892. [
  46893. {
  46894. name: "Normal",
  46895. height: math.unit(11 + 6/12, "feet"),
  46896. default: true
  46897. },
  46898. {
  46899. name: "Macro",
  46900. height: math.unit(32 + 9/12, "feet")
  46901. },
  46902. ]
  46903. ))
  46904. characterMakers.push(() => makeCharacter(
  46905. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46906. {
  46907. anthro: {
  46908. height: math.unit(9, "feet"),
  46909. weight: math.unit(2076, "lb"),
  46910. name: "Anthro",
  46911. image: {
  46912. source: "./media/characters/abacus/anthro.svg",
  46913. extra: 1540/1494,
  46914. bottom: 233/1773
  46915. }
  46916. },
  46917. pigeon: {
  46918. height: math.unit(1, "feet"),
  46919. name: "Pigeon",
  46920. image: {
  46921. source: "./media/characters/abacus/pigeon.svg",
  46922. extra: 528/525,
  46923. bottom: 46/574
  46924. }
  46925. },
  46926. },
  46927. [
  46928. {
  46929. name: "Normal",
  46930. height: math.unit(9, "feet"),
  46931. default: true
  46932. },
  46933. ]
  46934. ))
  46935. characterMakers.push(() => makeCharacter(
  46936. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46937. {
  46938. side: {
  46939. height: math.unit(6, "feet"),
  46940. name: "Side",
  46941. image: {
  46942. source: "./media/characters/delkhan/side.svg",
  46943. extra: 1884/1786,
  46944. bottom: 308/2192
  46945. }
  46946. },
  46947. head: {
  46948. height: math.unit(3.38, "feet"),
  46949. name: "Head",
  46950. image: {
  46951. source: "./media/characters/delkhan/head.svg"
  46952. }
  46953. },
  46954. },
  46955. [
  46956. {
  46957. name: "Normal",
  46958. height: math.unit(72, "feet"),
  46959. default: true
  46960. },
  46961. {
  46962. name: "Giant",
  46963. height: math.unit(172, "feet")
  46964. },
  46965. ]
  46966. ))
  46967. characterMakers.push(() => makeCharacter(
  46968. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46969. {
  46970. standing: {
  46971. height: math.unit(6, "feet"),
  46972. name: "Standing",
  46973. image: {
  46974. source: "./media/characters/euchidat/standing.svg",
  46975. extra: 1612/1553,
  46976. bottom: 116/1728
  46977. }
  46978. },
  46979. leaning: {
  46980. height: math.unit(6, "feet"),
  46981. name: "Leaning",
  46982. image: {
  46983. source: "./media/characters/euchidat/leaning.svg",
  46984. extra: 1719/1674,
  46985. bottom: 27/1746
  46986. }
  46987. },
  46988. },
  46989. [
  46990. {
  46991. name: "Normal",
  46992. height: math.unit(175, "feet"),
  46993. default: true
  46994. },
  46995. {
  46996. name: "Megamacro",
  46997. height: math.unit(190, "miles")
  46998. },
  46999. {
  47000. name: "Gigamacro",
  47001. height: math.unit(190000, "miles")
  47002. },
  47003. ]
  47004. ))
  47005. characterMakers.push(() => makeCharacter(
  47006. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47007. {
  47008. front: {
  47009. height: math.unit(6, "feet"),
  47010. weight: math.unit(150, "lb"),
  47011. name: "Front",
  47012. image: {
  47013. source: "./media/characters/rebecca-stack/front.svg",
  47014. extra: 1256/1201,
  47015. bottom: 18/1274
  47016. }
  47017. },
  47018. },
  47019. [
  47020. {
  47021. name: "Normal",
  47022. height: math.unit(5 + 8/12, "feet"),
  47023. default: true
  47024. },
  47025. {
  47026. name: "Demolitionist",
  47027. height: math.unit(200, "feet")
  47028. },
  47029. {
  47030. name: "Out of Control",
  47031. height: math.unit(2, "miles")
  47032. },
  47033. {
  47034. name: "Giga",
  47035. height: math.unit(7200, "miles")
  47036. },
  47037. ]
  47038. ))
  47039. characterMakers.push(() => makeCharacter(
  47040. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47041. {
  47042. front: {
  47043. height: math.unit(6, "feet"),
  47044. weight: math.unit(150, "lb"),
  47045. name: "Front",
  47046. image: {
  47047. source: "./media/characters/jenny-cartwright/front.svg",
  47048. extra: 1384/1376,
  47049. bottom: 58/1442
  47050. }
  47051. },
  47052. },
  47053. [
  47054. {
  47055. name: "Normal",
  47056. height: math.unit(6 + 7/12, "feet"),
  47057. default: true
  47058. },
  47059. {
  47060. name: "Librarian",
  47061. height: math.unit(55, "feet")
  47062. },
  47063. {
  47064. name: "Sightseer",
  47065. height: math.unit(50, "miles")
  47066. },
  47067. {
  47068. name: "Giga",
  47069. height: math.unit(30000, "miles")
  47070. },
  47071. ]
  47072. ))
  47073. characterMakers.push(() => makeCharacter(
  47074. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47075. {
  47076. nude: {
  47077. height: math.unit(8, "feet"),
  47078. weight: math.unit(225, "lb"),
  47079. name: "Nude",
  47080. image: {
  47081. source: "./media/characters/marvy/nude.svg",
  47082. extra: 1900/1683,
  47083. bottom: 89/1989
  47084. }
  47085. },
  47086. dressed: {
  47087. height: math.unit(8, "feet"),
  47088. weight: math.unit(225, "lb"),
  47089. name: "Dressed",
  47090. image: {
  47091. source: "./media/characters/marvy/dressed.svg",
  47092. extra: 1900/1683,
  47093. bottom: 89/1989
  47094. }
  47095. },
  47096. head: {
  47097. height: math.unit(2.85, "feet"),
  47098. name: "Head",
  47099. image: {
  47100. source: "./media/characters/marvy/head.svg"
  47101. }
  47102. },
  47103. },
  47104. [
  47105. {
  47106. name: "Normal",
  47107. height: math.unit(8, "feet"),
  47108. default: true
  47109. },
  47110. ]
  47111. ))
  47112. characterMakers.push(() => makeCharacter(
  47113. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47114. {
  47115. front: {
  47116. height: math.unit(8, "feet"),
  47117. weight: math.unit(250, "lb"),
  47118. name: "Front",
  47119. image: {
  47120. source: "./media/characters/leah/front.svg",
  47121. extra: 1257/1149,
  47122. bottom: 109/1366
  47123. }
  47124. },
  47125. },
  47126. [
  47127. {
  47128. name: "Normal",
  47129. height: math.unit(8, "feet"),
  47130. default: true
  47131. },
  47132. {
  47133. name: "Minimacro",
  47134. height: math.unit(40, "feet")
  47135. },
  47136. {
  47137. name: "Macro",
  47138. height: math.unit(124, "feet")
  47139. },
  47140. {
  47141. name: "Megamacro",
  47142. height: math.unit(850, "feet")
  47143. },
  47144. ]
  47145. ))
  47146. characterMakers.push(() => makeCharacter(
  47147. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47148. {
  47149. side: {
  47150. height: math.unit(13 + 6/12, "feet"),
  47151. weight: math.unit(3200, "lb"),
  47152. name: "Side",
  47153. image: {
  47154. source: "./media/characters/alvir/side.svg",
  47155. extra: 896/589,
  47156. bottom: 26/922
  47157. }
  47158. },
  47159. },
  47160. [
  47161. {
  47162. name: "Normal",
  47163. height: math.unit(13 + 6/12, "feet"),
  47164. default: true
  47165. },
  47166. ]
  47167. ))
  47168. characterMakers.push(() => makeCharacter(
  47169. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47170. {
  47171. front: {
  47172. height: math.unit(5 + 4/12, "feet"),
  47173. weight: math.unit(236, "lb"),
  47174. name: "Front",
  47175. image: {
  47176. source: "./media/characters/zaina-khalil/front.svg",
  47177. extra: 1533/1485,
  47178. bottom: 94/1627
  47179. }
  47180. },
  47181. side: {
  47182. height: math.unit(5 + 4/12, "feet"),
  47183. weight: math.unit(236, "lb"),
  47184. name: "Side",
  47185. image: {
  47186. source: "./media/characters/zaina-khalil/side.svg",
  47187. extra: 1537/1498,
  47188. bottom: 66/1603
  47189. }
  47190. },
  47191. back: {
  47192. height: math.unit(5 + 4/12, "feet"),
  47193. weight: math.unit(236, "lb"),
  47194. name: "Back",
  47195. image: {
  47196. source: "./media/characters/zaina-khalil/back.svg",
  47197. extra: 1546/1494,
  47198. bottom: 89/1635
  47199. }
  47200. },
  47201. },
  47202. [
  47203. {
  47204. name: "Normal",
  47205. height: math.unit(5 + 4/12, "feet"),
  47206. default: true
  47207. },
  47208. ]
  47209. ))
  47210. characterMakers.push(() => makeCharacter(
  47211. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47212. {
  47213. side: {
  47214. height: math.unit(12, "feet"),
  47215. weight: math.unit(4000, "lb"),
  47216. name: "Side",
  47217. image: {
  47218. source: "./media/characters/terry/side.svg",
  47219. extra: 1518/1439,
  47220. bottom: 149/1667
  47221. }
  47222. },
  47223. },
  47224. [
  47225. {
  47226. name: "Normal",
  47227. height: math.unit(12, "feet"),
  47228. default: true
  47229. },
  47230. ]
  47231. ))
  47232. characterMakers.push(() => makeCharacter(
  47233. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47234. {
  47235. front: {
  47236. height: math.unit(12, "feet"),
  47237. weight: math.unit(1500, "lb"),
  47238. name: "Front",
  47239. image: {
  47240. source: "./media/characters/kahea/front.svg",
  47241. extra: 1722/1617,
  47242. bottom: 179/1901
  47243. }
  47244. },
  47245. },
  47246. [
  47247. {
  47248. name: "Normal",
  47249. height: math.unit(12, "feet"),
  47250. default: true
  47251. },
  47252. ]
  47253. ))
  47254. characterMakers.push(() => makeCharacter(
  47255. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47256. {
  47257. demonFront: {
  47258. height: math.unit(36, "feet"),
  47259. name: "Front",
  47260. image: {
  47261. source: "./media/characters/alex-xuria/demon-front.svg",
  47262. extra: 1705/1673,
  47263. bottom: 198/1903
  47264. },
  47265. form: "demon",
  47266. default: true
  47267. },
  47268. demonBack: {
  47269. height: math.unit(36, "feet"),
  47270. name: "Back",
  47271. image: {
  47272. source: "./media/characters/alex-xuria/demon-back.svg",
  47273. extra: 1725/1693,
  47274. bottom: 70/1795
  47275. },
  47276. form: "demon"
  47277. },
  47278. demonHead: {
  47279. height: math.unit(2.14, "meters"),
  47280. name: "Head",
  47281. image: {
  47282. source: "./media/characters/alex-xuria/demon-head.svg"
  47283. },
  47284. form: "demon"
  47285. },
  47286. demonHand: {
  47287. height: math.unit(1.61, "meters"),
  47288. name: "Hand",
  47289. image: {
  47290. source: "./media/characters/alex-xuria/demon-hand.svg"
  47291. },
  47292. form: "demon"
  47293. },
  47294. demonPaw: {
  47295. height: math.unit(1.35, "meters"),
  47296. name: "Paw",
  47297. image: {
  47298. source: "./media/characters/alex-xuria/demon-paw.svg"
  47299. },
  47300. form: "demon"
  47301. },
  47302. demonFoot: {
  47303. height: math.unit(2.2, "meters"),
  47304. name: "Foot",
  47305. image: {
  47306. source: "./media/characters/alex-xuria/demon-foot.svg"
  47307. },
  47308. form: "demon"
  47309. },
  47310. demonCock: {
  47311. height: math.unit(1.74, "meters"),
  47312. name: "Cock",
  47313. image: {
  47314. source: "./media/characters/alex-xuria/demon-cock.svg"
  47315. },
  47316. form: "demon"
  47317. },
  47318. demonTailClosed: {
  47319. height: math.unit(1.47, "meters"),
  47320. name: "Tail (Closed)",
  47321. image: {
  47322. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47323. },
  47324. form: "demon"
  47325. },
  47326. demonTailOpen: {
  47327. height: math.unit(2.85, "meters"),
  47328. name: "Tail (Open)",
  47329. image: {
  47330. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47331. },
  47332. form: "demon"
  47333. },
  47334. incubusFront: {
  47335. height: math.unit(12, "feet"),
  47336. name: "Front",
  47337. image: {
  47338. source: "./media/characters/alex-xuria/incubus-front.svg",
  47339. extra: 1754/1677,
  47340. bottom: 125/1879
  47341. },
  47342. form: "incubus",
  47343. default: true
  47344. },
  47345. incubusBack: {
  47346. height: math.unit(12, "feet"),
  47347. name: "Back",
  47348. image: {
  47349. source: "./media/characters/alex-xuria/incubus-back.svg",
  47350. extra: 1702/1647,
  47351. bottom: 30/1732
  47352. },
  47353. form: "incubus"
  47354. },
  47355. incubusHead: {
  47356. height: math.unit(3.45, "feet"),
  47357. name: "Head",
  47358. image: {
  47359. source: "./media/characters/alex-xuria/incubus-head.svg"
  47360. },
  47361. form: "incubus"
  47362. },
  47363. rabbitFront: {
  47364. height: math.unit(6, "feet"),
  47365. name: "Front",
  47366. image: {
  47367. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47368. extra: 1369/1349,
  47369. bottom: 45/1414
  47370. },
  47371. form: "rabbit",
  47372. default: true
  47373. },
  47374. rabbitSide: {
  47375. height: math.unit(6, "feet"),
  47376. name: "Side",
  47377. image: {
  47378. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47379. extra: 1370/1356,
  47380. bottom: 37/1407
  47381. },
  47382. form: "rabbit"
  47383. },
  47384. rabbitBack: {
  47385. height: math.unit(6, "feet"),
  47386. name: "Back",
  47387. image: {
  47388. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47389. extra: 1375/1358,
  47390. bottom: 43/1418
  47391. },
  47392. form: "rabbit"
  47393. },
  47394. },
  47395. [
  47396. {
  47397. name: "Normal",
  47398. height: math.unit(6, "feet"),
  47399. default: true,
  47400. form: "rabbit"
  47401. },
  47402. {
  47403. name: "Incubus",
  47404. height: math.unit(12, "feet"),
  47405. default: true,
  47406. form: "incubus"
  47407. },
  47408. {
  47409. name: "Demon",
  47410. height: math.unit(36, "feet"),
  47411. default: true,
  47412. form: "demon"
  47413. }
  47414. ],
  47415. {
  47416. "demon": {
  47417. name: "Demon",
  47418. default: true
  47419. },
  47420. "incubus": {
  47421. name: "Incubus",
  47422. },
  47423. "rabbit": {
  47424. name: "Rabbit"
  47425. }
  47426. }
  47427. ))
  47428. characterMakers.push(() => makeCharacter(
  47429. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47430. {
  47431. front: {
  47432. height: math.unit(7 + 5/12, "feet"),
  47433. weight: math.unit(510, "lb"),
  47434. name: "Front",
  47435. image: {
  47436. source: "./media/characters/syrup/front.svg",
  47437. extra: 932/916,
  47438. bottom: 26/958
  47439. }
  47440. },
  47441. },
  47442. [
  47443. {
  47444. name: "Normal",
  47445. height: math.unit(7 + 5/12, "feet"),
  47446. default: true
  47447. },
  47448. {
  47449. name: "Big",
  47450. height: math.unit(50, "feet")
  47451. },
  47452. {
  47453. name: "Macro",
  47454. height: math.unit(300, "feet")
  47455. },
  47456. {
  47457. name: "Megamacro",
  47458. height: math.unit(1, "mile")
  47459. },
  47460. ]
  47461. ))
  47462. characterMakers.push(() => makeCharacter(
  47463. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47464. {
  47465. front: {
  47466. height: math.unit(6 + 9/12, "feet"),
  47467. name: "Front",
  47468. image: {
  47469. source: "./media/characters/zeimne/front.svg",
  47470. extra: 1969/1806,
  47471. bottom: 53/2022
  47472. }
  47473. },
  47474. },
  47475. [
  47476. {
  47477. name: "Normal",
  47478. height: math.unit(6 + 9/12, "feet"),
  47479. default: true
  47480. },
  47481. {
  47482. name: "Giant",
  47483. height: math.unit(550, "feet")
  47484. },
  47485. {
  47486. name: "Mega",
  47487. height: math.unit(3, "miles")
  47488. },
  47489. {
  47490. name: "Giga",
  47491. height: math.unit(250, "miles")
  47492. },
  47493. {
  47494. name: "Tera",
  47495. height: math.unit(1, "AU")
  47496. },
  47497. ]
  47498. ))
  47499. characterMakers.push(() => makeCharacter(
  47500. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47501. {
  47502. front: {
  47503. height: math.unit(5 + 2/12, "feet"),
  47504. name: "Front",
  47505. image: {
  47506. source: "./media/characters/grar/front.svg",
  47507. extra: 1331/1119,
  47508. bottom: 60/1391
  47509. }
  47510. },
  47511. back: {
  47512. height: math.unit(5 + 2/12, "feet"),
  47513. name: "Back",
  47514. image: {
  47515. source: "./media/characters/grar/back.svg",
  47516. extra: 1385/1169,
  47517. bottom: 23/1408
  47518. }
  47519. },
  47520. },
  47521. [
  47522. {
  47523. name: "Normal",
  47524. height: math.unit(5 + 2/12, "feet"),
  47525. default: true
  47526. },
  47527. ]
  47528. ))
  47529. characterMakers.push(() => makeCharacter(
  47530. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47531. {
  47532. front: {
  47533. height: math.unit(13 + 7/12, "feet"),
  47534. weight: math.unit(2200, "lb"),
  47535. name: "Front",
  47536. image: {
  47537. source: "./media/characters/endraya/front.svg",
  47538. extra: 1289/1215,
  47539. bottom: 50/1339
  47540. }
  47541. },
  47542. nude: {
  47543. height: math.unit(13 + 7/12, "feet"),
  47544. weight: math.unit(2200, "lb"),
  47545. name: "Nude",
  47546. image: {
  47547. source: "./media/characters/endraya/nude.svg",
  47548. extra: 1247/1171,
  47549. bottom: 40/1287
  47550. }
  47551. },
  47552. head: {
  47553. height: math.unit(2.6, "feet"),
  47554. name: "Head",
  47555. image: {
  47556. source: "./media/characters/endraya/head.svg"
  47557. }
  47558. },
  47559. slit: {
  47560. height: math.unit(3.4, "feet"),
  47561. name: "Slit",
  47562. image: {
  47563. source: "./media/characters/endraya/slit.svg"
  47564. }
  47565. },
  47566. },
  47567. [
  47568. {
  47569. name: "Normal",
  47570. height: math.unit(13 + 7/12, "feet"),
  47571. default: true
  47572. },
  47573. {
  47574. name: "Macro",
  47575. height: math.unit(200, "feet")
  47576. },
  47577. ]
  47578. ))
  47579. characterMakers.push(() => makeCharacter(
  47580. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47581. {
  47582. front: {
  47583. height: math.unit(1.81, "meters"),
  47584. weight: math.unit(69, "kg"),
  47585. name: "Front",
  47586. image: {
  47587. source: "./media/characters/rodryana/front.svg",
  47588. extra: 2002/1921,
  47589. bottom: 53/2055
  47590. }
  47591. },
  47592. back: {
  47593. height: math.unit(1.81, "meters"),
  47594. weight: math.unit(69, "kg"),
  47595. name: "Back",
  47596. image: {
  47597. source: "./media/characters/rodryana/back.svg",
  47598. extra: 1993/1926,
  47599. bottom: 48/2041
  47600. }
  47601. },
  47602. maw: {
  47603. height: math.unit(0.19769417475, "meters"),
  47604. name: "Maw",
  47605. image: {
  47606. source: "./media/characters/rodryana/maw.svg"
  47607. }
  47608. },
  47609. slit: {
  47610. height: math.unit(0.31631067961, "meters"),
  47611. name: "Slit",
  47612. image: {
  47613. source: "./media/characters/rodryana/slit.svg"
  47614. }
  47615. },
  47616. },
  47617. [
  47618. {
  47619. name: "Normal",
  47620. height: math.unit(1.81, "meters")
  47621. },
  47622. {
  47623. name: "Mini Macro",
  47624. height: math.unit(181, "meters")
  47625. },
  47626. {
  47627. name: "Macro",
  47628. height: math.unit(452, "meters"),
  47629. default: true
  47630. },
  47631. {
  47632. name: "Mega Macro",
  47633. height: math.unit(1.375, "km")
  47634. },
  47635. {
  47636. name: "Giga Macro",
  47637. height: math.unit(13.575, "km")
  47638. },
  47639. ]
  47640. ))
  47641. characterMakers.push(() => makeCharacter(
  47642. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47643. {
  47644. front: {
  47645. height: math.unit(6, "feet"),
  47646. weight: math.unit(1000, "lb"),
  47647. name: "Front",
  47648. image: {
  47649. source: "./media/characters/asaya/front.svg",
  47650. extra: 1460/1200,
  47651. bottom: 71/1531
  47652. }
  47653. },
  47654. },
  47655. [
  47656. {
  47657. name: "Normal",
  47658. height: math.unit(8, "km"),
  47659. default: true
  47660. },
  47661. ]
  47662. ))
  47663. characterMakers.push(() => makeCharacter(
  47664. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47665. {
  47666. front: {
  47667. height: math.unit(3.5, "meters"),
  47668. name: "Front",
  47669. image: {
  47670. source: "./media/characters/sarzu-and-israz/front.svg",
  47671. extra: 1570/1558,
  47672. bottom: 150/1720
  47673. },
  47674. },
  47675. back: {
  47676. height: math.unit(3.5, "meters"),
  47677. name: "Back",
  47678. image: {
  47679. source: "./media/characters/sarzu-and-israz/back.svg",
  47680. extra: 1523/1509,
  47681. bottom: 132/1655
  47682. },
  47683. },
  47684. frontFemale: {
  47685. height: math.unit(3.5, "meters"),
  47686. name: "Front (Female)",
  47687. image: {
  47688. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47689. extra: 1570/1558,
  47690. bottom: 150/1720
  47691. },
  47692. },
  47693. frontHerm: {
  47694. height: math.unit(3.5, "meters"),
  47695. name: "Front (Herm)",
  47696. image: {
  47697. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47698. extra: 1570/1558,
  47699. bottom: 150/1720
  47700. },
  47701. },
  47702. },
  47703. [
  47704. {
  47705. name: "Normal",
  47706. height: math.unit(3.5, "meters"),
  47707. default: true,
  47708. },
  47709. {
  47710. name: "Macro",
  47711. height: math.unit(65.5, "meters"),
  47712. },
  47713. ],
  47714. ))
  47715. characterMakers.push(() => makeCharacter(
  47716. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47717. {
  47718. front: {
  47719. height: math.unit(6, "feet"),
  47720. weight: math.unit(250, "lb"),
  47721. name: "Front",
  47722. image: {
  47723. source: "./media/characters/zenimma/front.svg",
  47724. extra: 1346/1320,
  47725. bottom: 58/1404
  47726. }
  47727. },
  47728. back: {
  47729. height: math.unit(6, "feet"),
  47730. weight: math.unit(250, "lb"),
  47731. name: "Back",
  47732. image: {
  47733. source: "./media/characters/zenimma/back.svg",
  47734. extra: 1324/1308,
  47735. bottom: 44/1368
  47736. }
  47737. },
  47738. dick: {
  47739. height: math.unit(1.44, "feet"),
  47740. name: "Dick",
  47741. image: {
  47742. source: "./media/characters/zenimma/dick.svg"
  47743. }
  47744. },
  47745. },
  47746. [
  47747. {
  47748. name: "Canon Height",
  47749. height: math.unit(66, "miles"),
  47750. default: true
  47751. },
  47752. ]
  47753. ))
  47754. characterMakers.push(() => makeCharacter(
  47755. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47756. {
  47757. nude: {
  47758. height: math.unit(6, "feet"),
  47759. weight: math.unit(150, "lb"),
  47760. name: "Nude",
  47761. image: {
  47762. source: "./media/characters/shavon/nude.svg",
  47763. extra: 1242/1096,
  47764. bottom: 98/1340
  47765. }
  47766. },
  47767. dressed: {
  47768. height: math.unit(6, "feet"),
  47769. weight: math.unit(150, "lb"),
  47770. name: "Dressed",
  47771. image: {
  47772. source: "./media/characters/shavon/dressed.svg",
  47773. extra: 1242/1096,
  47774. bottom: 98/1340
  47775. }
  47776. },
  47777. },
  47778. [
  47779. {
  47780. name: "Macro",
  47781. height: math.unit(255, "feet"),
  47782. default: true
  47783. },
  47784. ]
  47785. ))
  47786. characterMakers.push(() => makeCharacter(
  47787. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47788. {
  47789. front: {
  47790. height: math.unit(6, "feet"),
  47791. name: "Front",
  47792. image: {
  47793. source: "./media/characters/steph/front.svg",
  47794. extra: 1430/1330,
  47795. bottom: 54/1484
  47796. }
  47797. },
  47798. },
  47799. [
  47800. {
  47801. name: "Normal",
  47802. height: math.unit(6, "feet"),
  47803. default: true
  47804. },
  47805. ]
  47806. ))
  47807. characterMakers.push(() => makeCharacter(
  47808. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47809. {
  47810. front: {
  47811. height: math.unit(9, "feet"),
  47812. weight: math.unit(400, "lb"),
  47813. name: "Front",
  47814. image: {
  47815. source: "./media/characters/kil'aman/front.svg",
  47816. extra: 1210/1159,
  47817. bottom: 109/1319
  47818. }
  47819. },
  47820. head: {
  47821. height: math.unit(2.14, "feet"),
  47822. name: "Head",
  47823. image: {
  47824. source: "./media/characters/kil'aman/head.svg"
  47825. }
  47826. },
  47827. maw: {
  47828. height: math.unit(1.21, "feet"),
  47829. name: "Maw",
  47830. image: {
  47831. source: "./media/characters/kil'aman/maw.svg"
  47832. }
  47833. },
  47834. foot: {
  47835. height: math.unit(1.7, "feet"),
  47836. name: "Foot",
  47837. image: {
  47838. source: "./media/characters/kil'aman/foot.svg"
  47839. }
  47840. },
  47841. dick: {
  47842. height: math.unit(2.1, "feet"),
  47843. name: "Dick",
  47844. image: {
  47845. source: "./media/characters/kil'aman/dick.svg"
  47846. }
  47847. },
  47848. },
  47849. [
  47850. {
  47851. name: "Normal",
  47852. height: math.unit(9, "feet")
  47853. },
  47854. {
  47855. name: "Canon Height",
  47856. height: math.unit(10, "miles"),
  47857. default: true
  47858. },
  47859. {
  47860. name: "Maximum",
  47861. height: math.unit(6e9, "miles")
  47862. },
  47863. ]
  47864. ))
  47865. characterMakers.push(() => makeCharacter(
  47866. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47867. {
  47868. front: {
  47869. height: math.unit(90, "feet"),
  47870. weight: math.unit(675000, "lb"),
  47871. name: "Front",
  47872. image: {
  47873. source: "./media/characters/qadan/front.svg",
  47874. extra: 1012/1004,
  47875. bottom: 78/1090
  47876. }
  47877. },
  47878. back: {
  47879. height: math.unit(90, "feet"),
  47880. weight: math.unit(675000, "lb"),
  47881. name: "Back",
  47882. image: {
  47883. source: "./media/characters/qadan/back.svg",
  47884. extra: 1042/1031,
  47885. bottom: 55/1097
  47886. }
  47887. },
  47888. armored: {
  47889. height: math.unit(90, "feet"),
  47890. weight: math.unit(675000, "lb"),
  47891. name: "Armored",
  47892. image: {
  47893. source: "./media/characters/qadan/armored.svg",
  47894. extra: 1047/1037,
  47895. bottom: 48/1095
  47896. }
  47897. },
  47898. },
  47899. [
  47900. {
  47901. name: "Normal",
  47902. height: math.unit(90, "feet"),
  47903. default: true
  47904. },
  47905. ]
  47906. ))
  47907. characterMakers.push(() => makeCharacter(
  47908. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47909. {
  47910. front: {
  47911. height: math.unit(6, "feet"),
  47912. weight: math.unit(225, "lb"),
  47913. name: "Front",
  47914. image: {
  47915. source: "./media/characters/brooke/front.svg",
  47916. extra: 1050/1010,
  47917. bottom: 66/1116
  47918. }
  47919. },
  47920. back: {
  47921. height: math.unit(6, "feet"),
  47922. weight: math.unit(225, "lb"),
  47923. name: "Back",
  47924. image: {
  47925. source: "./media/characters/brooke/back.svg",
  47926. extra: 1053/1013,
  47927. bottom: 41/1094
  47928. }
  47929. },
  47930. dressed: {
  47931. height: math.unit(6, "feet"),
  47932. weight: math.unit(225, "lb"),
  47933. name: "Dressed",
  47934. image: {
  47935. source: "./media/characters/brooke/dressed.svg",
  47936. extra: 1050/1010,
  47937. bottom: 66/1116
  47938. }
  47939. },
  47940. },
  47941. [
  47942. {
  47943. name: "Canon Height",
  47944. height: math.unit(500, "miles"),
  47945. default: true
  47946. },
  47947. ]
  47948. ))
  47949. characterMakers.push(() => makeCharacter(
  47950. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47951. {
  47952. front: {
  47953. height: math.unit(6 + 2/12, "feet"),
  47954. weight: math.unit(210, "lb"),
  47955. name: "Front",
  47956. image: {
  47957. source: "./media/characters/wubs/front.svg",
  47958. extra: 1345/1325,
  47959. bottom: 70/1415
  47960. }
  47961. },
  47962. back: {
  47963. height: math.unit(6 + 2/12, "feet"),
  47964. weight: math.unit(210, "lb"),
  47965. name: "Back",
  47966. image: {
  47967. source: "./media/characters/wubs/back.svg",
  47968. extra: 1296/1275,
  47969. bottom: 58/1354
  47970. }
  47971. },
  47972. },
  47973. [
  47974. {
  47975. name: "Normal",
  47976. height: math.unit(6 + 2/12, "feet"),
  47977. default: true
  47978. },
  47979. {
  47980. name: "Macro",
  47981. height: math.unit(1000, "feet")
  47982. },
  47983. {
  47984. name: "Megamacro",
  47985. height: math.unit(1, "mile")
  47986. },
  47987. ]
  47988. ))
  47989. characterMakers.push(() => makeCharacter(
  47990. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47991. {
  47992. front: {
  47993. height: math.unit(4, "feet"),
  47994. weight: math.unit(120, "lb"),
  47995. name: "Front",
  47996. image: {
  47997. source: "./media/characters/blue/front.svg",
  47998. extra: 1636/1525,
  47999. bottom: 43/1679
  48000. }
  48001. },
  48002. back: {
  48003. height: math.unit(4, "feet"),
  48004. weight: math.unit(120, "lb"),
  48005. name: "Back",
  48006. image: {
  48007. source: "./media/characters/blue/back.svg",
  48008. extra: 1660/1560,
  48009. bottom: 57/1717
  48010. }
  48011. },
  48012. paws: {
  48013. height: math.unit(0.826, "feet"),
  48014. name: "Paws",
  48015. image: {
  48016. source: "./media/characters/blue/paws.svg"
  48017. }
  48018. },
  48019. },
  48020. [
  48021. {
  48022. name: "Micro",
  48023. height: math.unit(3, "inches")
  48024. },
  48025. {
  48026. name: "Normal",
  48027. height: math.unit(4, "feet"),
  48028. default: true
  48029. },
  48030. {
  48031. name: "Femenine Form",
  48032. height: math.unit(14, "feet")
  48033. },
  48034. {
  48035. name: "Werebat Form",
  48036. height: math.unit(18, "feet")
  48037. },
  48038. ]
  48039. ))
  48040. characterMakers.push(() => makeCharacter(
  48041. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48042. {
  48043. female: {
  48044. height: math.unit(7 + 4/12, "feet"),
  48045. weight: math.unit(243, "lb"),
  48046. name: "Female",
  48047. image: {
  48048. source: "./media/characters/kaya/female.svg",
  48049. extra: 975/898,
  48050. bottom: 34/1009
  48051. }
  48052. },
  48053. herm: {
  48054. height: math.unit(7 + 4/12, "feet"),
  48055. weight: math.unit(243, "lb"),
  48056. name: "Herm",
  48057. image: {
  48058. source: "./media/characters/kaya/herm.svg",
  48059. extra: 975/898,
  48060. bottom: 34/1009
  48061. }
  48062. },
  48063. },
  48064. [
  48065. {
  48066. name: "Normal",
  48067. height: math.unit(7 + 4/12, "feet"),
  48068. default: true
  48069. },
  48070. ]
  48071. ))
  48072. characterMakers.push(() => makeCharacter(
  48073. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48074. {
  48075. female: {
  48076. height: math.unit(9 + 4/12, "feet"),
  48077. weight: math.unit(398, "lb"),
  48078. name: "Female",
  48079. image: {
  48080. source: "./media/characters/kassandra/female.svg",
  48081. extra: 908/839,
  48082. bottom: 61/969
  48083. }
  48084. },
  48085. intersex: {
  48086. height: math.unit(9 + 4/12, "feet"),
  48087. weight: math.unit(398, "lb"),
  48088. name: "Intersex",
  48089. image: {
  48090. source: "./media/characters/kassandra/intersex.svg",
  48091. extra: 908/839,
  48092. bottom: 61/969
  48093. }
  48094. },
  48095. },
  48096. [
  48097. {
  48098. name: "Normal",
  48099. height: math.unit(9 + 4/12, "feet"),
  48100. default: true
  48101. },
  48102. ]
  48103. ))
  48104. characterMakers.push(() => makeCharacter(
  48105. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48106. {
  48107. front: {
  48108. height: math.unit(3, "meters"),
  48109. name: "Front",
  48110. image: {
  48111. source: "./media/characters/amy/front.svg",
  48112. extra: 1380/1343,
  48113. bottom: 70/1450
  48114. }
  48115. },
  48116. back: {
  48117. height: math.unit(3, "meters"),
  48118. name: "Back",
  48119. image: {
  48120. source: "./media/characters/amy/back.svg",
  48121. extra: 1380/1347,
  48122. bottom: 66/1446
  48123. }
  48124. },
  48125. },
  48126. [
  48127. {
  48128. name: "Normal",
  48129. height: math.unit(3, "meters"),
  48130. default: true
  48131. },
  48132. ]
  48133. ))
  48134. characterMakers.push(() => makeCharacter(
  48135. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48136. {
  48137. side: {
  48138. height: math.unit(47, "cm"),
  48139. weight: math.unit(10.8, "kg"),
  48140. name: "Side",
  48141. image: {
  48142. source: "./media/characters/alphaschakal/side.svg",
  48143. extra: 1058/568,
  48144. bottom: 62/1120
  48145. }
  48146. },
  48147. back: {
  48148. height: math.unit(78, "cm"),
  48149. weight: math.unit(10.8, "kg"),
  48150. name: "Back",
  48151. image: {
  48152. source: "./media/characters/alphaschakal/back.svg",
  48153. extra: 1102/942,
  48154. bottom: 185/1287
  48155. }
  48156. },
  48157. head: {
  48158. height: math.unit(28, "cm"),
  48159. name: "Head",
  48160. image: {
  48161. source: "./media/characters/alphaschakal/head.svg",
  48162. extra: 696/508,
  48163. bottom: 0/696
  48164. }
  48165. },
  48166. paw: {
  48167. height: math.unit(16, "cm"),
  48168. name: "Paw",
  48169. image: {
  48170. source: "./media/characters/alphaschakal/paw.svg"
  48171. }
  48172. },
  48173. },
  48174. [
  48175. {
  48176. name: "Normal",
  48177. height: math.unit(47, "cm"),
  48178. default: true
  48179. },
  48180. {
  48181. name: "Macro",
  48182. height: math.unit(340, "cm")
  48183. },
  48184. ]
  48185. ))
  48186. characterMakers.push(() => makeCharacter(
  48187. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48188. {
  48189. front: {
  48190. height: math.unit(36, "earths"),
  48191. name: "Front",
  48192. image: {
  48193. source: "./media/characters/ecobyss/front.svg",
  48194. extra: 1282/1215,
  48195. bottom: 11/1293
  48196. }
  48197. },
  48198. back: {
  48199. height: math.unit(36, "earths"),
  48200. name: "Back",
  48201. image: {
  48202. source: "./media/characters/ecobyss/back.svg",
  48203. extra: 1291/1222,
  48204. bottom: 8/1299
  48205. }
  48206. },
  48207. },
  48208. [
  48209. {
  48210. name: "Normal",
  48211. height: math.unit(36, "earths"),
  48212. default: true
  48213. },
  48214. ]
  48215. ))
  48216. characterMakers.push(() => makeCharacter(
  48217. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48218. {
  48219. front: {
  48220. height: math.unit(12, "feet"),
  48221. name: "Front",
  48222. image: {
  48223. source: "./media/characters/vasuk/front.svg",
  48224. extra: 1326/1207,
  48225. bottom: 64/1390
  48226. }
  48227. },
  48228. },
  48229. [
  48230. {
  48231. name: "Normal",
  48232. height: math.unit(12, "feet"),
  48233. default: true
  48234. },
  48235. ]
  48236. ))
  48237. characterMakers.push(() => makeCharacter(
  48238. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48239. {
  48240. side: {
  48241. height: math.unit(100, "feet"),
  48242. name: "Side",
  48243. image: {
  48244. source: "./media/characters/linneaus/side.svg",
  48245. extra: 987/807,
  48246. bottom: 47/1034
  48247. }
  48248. },
  48249. },
  48250. [
  48251. {
  48252. name: "Macro",
  48253. height: math.unit(100, "feet"),
  48254. default: true
  48255. },
  48256. ]
  48257. ))
  48258. characterMakers.push(() => makeCharacter(
  48259. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48260. {
  48261. front: {
  48262. height: math.unit(8, "feet"),
  48263. weight: math.unit(1200, "lb"),
  48264. name: "Front",
  48265. image: {
  48266. source: "./media/characters/nyterious-daligdig/front.svg",
  48267. extra: 1284/1094,
  48268. bottom: 84/1368
  48269. }
  48270. },
  48271. back: {
  48272. height: math.unit(8, "feet"),
  48273. weight: math.unit(1200, "lb"),
  48274. name: "Back",
  48275. image: {
  48276. source: "./media/characters/nyterious-daligdig/back.svg",
  48277. extra: 1301/1121,
  48278. bottom: 129/1430
  48279. }
  48280. },
  48281. mouth: {
  48282. height: math.unit(1.464, "feet"),
  48283. name: "Mouth",
  48284. image: {
  48285. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48286. }
  48287. },
  48288. },
  48289. [
  48290. {
  48291. name: "Small",
  48292. height: math.unit(8, "feet"),
  48293. default: true
  48294. },
  48295. {
  48296. name: "Normal",
  48297. height: math.unit(15, "feet")
  48298. },
  48299. {
  48300. name: "Macro",
  48301. height: math.unit(90, "feet")
  48302. },
  48303. ]
  48304. ))
  48305. characterMakers.push(() => makeCharacter(
  48306. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48307. {
  48308. front: {
  48309. height: math.unit(7 + 4/12, "feet"),
  48310. weight: math.unit(252, "lb"),
  48311. name: "Front",
  48312. image: {
  48313. source: "./media/characters/bandel/front.svg",
  48314. extra: 1946/1775,
  48315. bottom: 26/1972
  48316. }
  48317. },
  48318. back: {
  48319. height: math.unit(7 + 4/12, "feet"),
  48320. weight: math.unit(252, "lb"),
  48321. name: "Back",
  48322. image: {
  48323. source: "./media/characters/bandel/back.svg",
  48324. extra: 1940/1770,
  48325. bottom: 25/1965
  48326. }
  48327. },
  48328. maw: {
  48329. height: math.unit(2.15, "feet"),
  48330. name: "Maw",
  48331. image: {
  48332. source: "./media/characters/bandel/maw.svg"
  48333. }
  48334. },
  48335. stomach: {
  48336. height: math.unit(1.95, "feet"),
  48337. name: "Stomach",
  48338. image: {
  48339. source: "./media/characters/bandel/stomach.svg"
  48340. }
  48341. },
  48342. },
  48343. [
  48344. {
  48345. name: "Normal",
  48346. height: math.unit(7 + 4/12, "feet"),
  48347. default: true
  48348. },
  48349. ]
  48350. ))
  48351. characterMakers.push(() => makeCharacter(
  48352. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48353. {
  48354. front: {
  48355. height: math.unit(10 + 5/12, "feet"),
  48356. weight: math.unit(773.5, "kg"),
  48357. name: "Front",
  48358. image: {
  48359. source: "./media/characters/zed/front.svg",
  48360. extra: 987/941,
  48361. bottom: 52/1039
  48362. }
  48363. },
  48364. },
  48365. [
  48366. {
  48367. name: "Short",
  48368. height: math.unit(5 + 4/12, "feet")
  48369. },
  48370. {
  48371. name: "Average",
  48372. height: math.unit(10 + 5/12, "feet"),
  48373. default: true
  48374. },
  48375. {
  48376. name: "Mini-Macro",
  48377. height: math.unit(24 + 9/12, "feet")
  48378. },
  48379. {
  48380. name: "Macro",
  48381. height: math.unit(249, "feet")
  48382. },
  48383. {
  48384. name: "Mega-Macro",
  48385. height: math.unit(12490, "feet")
  48386. },
  48387. {
  48388. name: "Giga-Macro",
  48389. height: math.unit(24.9, "miles")
  48390. },
  48391. {
  48392. name: "Tera-Macro",
  48393. height: math.unit(24900, "miles")
  48394. },
  48395. {
  48396. name: "Cosmic Scale",
  48397. height: math.unit(38.9, "lightyears")
  48398. },
  48399. {
  48400. name: "Universal Scale",
  48401. height: math.unit(138e12, "lightyears")
  48402. },
  48403. ]
  48404. ))
  48405. characterMakers.push(() => makeCharacter(
  48406. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48407. {
  48408. front: {
  48409. height: math.unit(1561, "inches"),
  48410. name: "Front",
  48411. image: {
  48412. source: "./media/characters/ivan/front.svg",
  48413. extra: 1126/1071,
  48414. bottom: 26/1152
  48415. }
  48416. },
  48417. back: {
  48418. height: math.unit(1561, "inches"),
  48419. name: "Back",
  48420. image: {
  48421. source: "./media/characters/ivan/back.svg",
  48422. extra: 1134/1079,
  48423. bottom: 30/1164
  48424. }
  48425. },
  48426. },
  48427. [
  48428. {
  48429. name: "Normal",
  48430. height: math.unit(1561, "inches"),
  48431. default: true
  48432. },
  48433. ]
  48434. ))
  48435. characterMakers.push(() => makeCharacter(
  48436. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48437. {
  48438. front: {
  48439. height: math.unit(5 + 7/12, "feet"),
  48440. weight: math.unit(150, "lb"),
  48441. name: "Front",
  48442. image: {
  48443. source: "./media/characters/robin-arctic-hare/front.svg",
  48444. extra: 1148/974,
  48445. bottom: 20/1168
  48446. }
  48447. },
  48448. },
  48449. [
  48450. {
  48451. name: "Normal",
  48452. height: math.unit(5 + 7/12, "feet"),
  48453. default: true
  48454. },
  48455. ]
  48456. ))
  48457. characterMakers.push(() => makeCharacter(
  48458. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48459. {
  48460. side: {
  48461. height: math.unit(5, "feet"),
  48462. name: "Side",
  48463. image: {
  48464. source: "./media/characters/birch/side.svg",
  48465. extra: 985/796,
  48466. bottom: 111/1096
  48467. }
  48468. },
  48469. },
  48470. [
  48471. {
  48472. name: "Normal",
  48473. height: math.unit(5, "feet"),
  48474. default: true
  48475. },
  48476. ]
  48477. ))
  48478. characterMakers.push(() => makeCharacter(
  48479. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48480. {
  48481. front: {
  48482. height: math.unit(4, "feet"),
  48483. name: "Front",
  48484. image: {
  48485. source: "./media/characters/rasp/front.svg",
  48486. extra: 561/478,
  48487. bottom: 74/635
  48488. }
  48489. },
  48490. },
  48491. [
  48492. {
  48493. name: "Normal",
  48494. height: math.unit(4, "feet"),
  48495. default: true
  48496. },
  48497. ]
  48498. ))
  48499. characterMakers.push(() => makeCharacter(
  48500. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48501. {
  48502. front: {
  48503. height: math.unit(4 + 6/12, "feet"),
  48504. name: "Front",
  48505. image: {
  48506. source: "./media/characters/agatha/front.svg",
  48507. extra: 947/933,
  48508. bottom: 42/989
  48509. }
  48510. },
  48511. back: {
  48512. height: math.unit(4 + 6/12, "feet"),
  48513. name: "Back",
  48514. image: {
  48515. source: "./media/characters/agatha/back.svg",
  48516. extra: 935/922,
  48517. bottom: 48/983
  48518. }
  48519. },
  48520. },
  48521. [
  48522. {
  48523. name: "Normal",
  48524. height: math.unit(4 + 6 /12, "feet"),
  48525. default: true
  48526. },
  48527. {
  48528. name: "Max Size",
  48529. height: math.unit(500, "feet")
  48530. },
  48531. ]
  48532. ))
  48533. characterMakers.push(() => makeCharacter(
  48534. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48535. {
  48536. side: {
  48537. height: math.unit(30, "feet"),
  48538. name: "Side",
  48539. image: {
  48540. source: "./media/characters/roggy/side.svg",
  48541. extra: 909/643,
  48542. bottom: 63/972
  48543. }
  48544. },
  48545. lounging: {
  48546. height: math.unit(20, "feet"),
  48547. name: "Lounging",
  48548. image: {
  48549. source: "./media/characters/roggy/lounging.svg",
  48550. extra: 643/479,
  48551. bottom: 145/788
  48552. }
  48553. },
  48554. handpaw: {
  48555. height: math.unit(13.1, "feet"),
  48556. name: "Handpaw",
  48557. image: {
  48558. source: "./media/characters/roggy/handpaw.svg"
  48559. }
  48560. },
  48561. footpaw: {
  48562. height: math.unit(15.8, "feet"),
  48563. name: "Footpaw",
  48564. image: {
  48565. source: "./media/characters/roggy/footpaw.svg"
  48566. }
  48567. },
  48568. },
  48569. [
  48570. {
  48571. name: "Menacing",
  48572. height: math.unit(30, "feet"),
  48573. default: true
  48574. },
  48575. ]
  48576. ))
  48577. characterMakers.push(() => makeCharacter(
  48578. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48579. {
  48580. front: {
  48581. height: math.unit(5 + 7/12, "feet"),
  48582. weight: math.unit(135, "lb"),
  48583. name: "Front",
  48584. image: {
  48585. source: "./media/characters/naomi/front.svg",
  48586. extra: 1209/1154,
  48587. bottom: 129/1338
  48588. }
  48589. },
  48590. back: {
  48591. height: math.unit(5 + 7/12, "feet"),
  48592. weight: math.unit(135, "lb"),
  48593. name: "Back",
  48594. image: {
  48595. source: "./media/characters/naomi/back.svg",
  48596. extra: 1252/1190,
  48597. bottom: 23/1275
  48598. }
  48599. },
  48600. },
  48601. [
  48602. {
  48603. name: "Normal",
  48604. height: math.unit(5 + 7 /12, "feet"),
  48605. default: true
  48606. },
  48607. ]
  48608. ))
  48609. characterMakers.push(() => makeCharacter(
  48610. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48611. {
  48612. side: {
  48613. height: math.unit(35, "meters"),
  48614. name: "Side",
  48615. image: {
  48616. source: "./media/characters/kimpi/side.svg",
  48617. extra: 419/382,
  48618. bottom: 63/482
  48619. }
  48620. },
  48621. hand: {
  48622. height: math.unit(8.96, "meters"),
  48623. name: "Hand",
  48624. image: {
  48625. source: "./media/characters/kimpi/hand.svg"
  48626. }
  48627. },
  48628. },
  48629. [
  48630. {
  48631. name: "Normal",
  48632. height: math.unit(35, "meters"),
  48633. default: true
  48634. },
  48635. ]
  48636. ))
  48637. characterMakers.push(() => makeCharacter(
  48638. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48639. {
  48640. front: {
  48641. height: math.unit(4 + 4/12, "feet"),
  48642. name: "Front",
  48643. image: {
  48644. source: "./media/characters/pepper-purrloin/front.svg",
  48645. extra: 1141/1024,
  48646. bottom: 21/1162
  48647. }
  48648. },
  48649. },
  48650. [
  48651. {
  48652. name: "Normal",
  48653. height: math.unit(4 + 4/12, "feet"),
  48654. default: true
  48655. },
  48656. ]
  48657. ))
  48658. characterMakers.push(() => makeCharacter(
  48659. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48660. {
  48661. front: {
  48662. height: math.unit(6 + 2/12, "feet"),
  48663. name: "Front",
  48664. image: {
  48665. source: "./media/characters/raphael/front.svg",
  48666. extra: 1101/962,
  48667. bottom: 59/1160
  48668. }
  48669. },
  48670. },
  48671. [
  48672. {
  48673. name: "Normal",
  48674. height: math.unit(6 + 2/12, "feet"),
  48675. default: true
  48676. },
  48677. ]
  48678. ))
  48679. characterMakers.push(() => makeCharacter(
  48680. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48681. {
  48682. front: {
  48683. height: math.unit(6, "feet"),
  48684. weight: math.unit(150, "lb"),
  48685. name: "Front",
  48686. image: {
  48687. source: "./media/characters/victor-williams/front.svg",
  48688. extra: 1894/1825,
  48689. bottom: 67/1961
  48690. }
  48691. },
  48692. },
  48693. [
  48694. {
  48695. name: "Normal",
  48696. height: math.unit(6, "feet"),
  48697. default: true
  48698. },
  48699. ]
  48700. ))
  48701. characterMakers.push(() => makeCharacter(
  48702. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48703. {
  48704. front: {
  48705. height: math.unit(5 + 8/12, "feet"),
  48706. weight: math.unit(150, "lb"),
  48707. name: "Front",
  48708. image: {
  48709. source: "./media/characters/rachel/front.svg",
  48710. extra: 1902/1787,
  48711. bottom: 46/1948
  48712. }
  48713. },
  48714. },
  48715. [
  48716. {
  48717. name: "Base Height",
  48718. height: math.unit(5 + 8/12, "feet"),
  48719. default: true
  48720. },
  48721. {
  48722. name: "Macro",
  48723. height: math.unit(200, "feet")
  48724. },
  48725. {
  48726. name: "Mega Macro",
  48727. height: math.unit(1, "mile")
  48728. },
  48729. {
  48730. name: "Giga Macro",
  48731. height: math.unit(1500, "miles")
  48732. },
  48733. {
  48734. name: "Tera Macro",
  48735. height: math.unit(8000, "miles")
  48736. },
  48737. {
  48738. name: "Tera Macro+",
  48739. height: math.unit(2e5, "miles")
  48740. },
  48741. ]
  48742. ))
  48743. characterMakers.push(() => makeCharacter(
  48744. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48745. {
  48746. front: {
  48747. height: math.unit(6.5, "feet"),
  48748. name: "Front",
  48749. image: {
  48750. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48751. extra: 860/819,
  48752. bottom: 307/1167
  48753. }
  48754. },
  48755. back: {
  48756. height: math.unit(6.5, "feet"),
  48757. name: "Back",
  48758. image: {
  48759. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48760. extra: 880/837,
  48761. bottom: 395/1275
  48762. }
  48763. },
  48764. sleeping: {
  48765. height: math.unit(2.79, "feet"),
  48766. name: "Sleeping",
  48767. image: {
  48768. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48769. extra: 465/383,
  48770. bottom: 263/728
  48771. }
  48772. },
  48773. maw: {
  48774. height: math.unit(2.52, "feet"),
  48775. name: "Maw",
  48776. image: {
  48777. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48778. }
  48779. },
  48780. },
  48781. [
  48782. {
  48783. name: "Normal",
  48784. height: math.unit(6.5, "feet"),
  48785. default: true
  48786. },
  48787. ]
  48788. ))
  48789. characterMakers.push(() => makeCharacter(
  48790. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48791. {
  48792. front: {
  48793. height: math.unit(5, "feet"),
  48794. name: "Front",
  48795. image: {
  48796. source: "./media/characters/nova-nerium/front.svg",
  48797. extra: 1548/1392,
  48798. bottom: 374/1922
  48799. }
  48800. },
  48801. back: {
  48802. height: math.unit(5, "feet"),
  48803. name: "Back",
  48804. image: {
  48805. source: "./media/characters/nova-nerium/back.svg",
  48806. extra: 1658/1468,
  48807. bottom: 257/1915
  48808. }
  48809. },
  48810. },
  48811. [
  48812. {
  48813. name: "Normal",
  48814. height: math.unit(5, "feet"),
  48815. default: true
  48816. },
  48817. ]
  48818. ))
  48819. characterMakers.push(() => makeCharacter(
  48820. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48821. {
  48822. front: {
  48823. height: math.unit(5 + 4/12, "feet"),
  48824. name: "Front",
  48825. image: {
  48826. source: "./media/characters/ashe-pyriph/front.svg",
  48827. extra: 1935/1747,
  48828. bottom: 60/1995
  48829. }
  48830. },
  48831. },
  48832. [
  48833. {
  48834. name: "Normal",
  48835. height: math.unit(5 + 4/12, "feet"),
  48836. default: true
  48837. },
  48838. ]
  48839. ))
  48840. characterMakers.push(() => makeCharacter(
  48841. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48842. {
  48843. front: {
  48844. height: math.unit(8.7, "feet"),
  48845. name: "Front",
  48846. image: {
  48847. source: "./media/characters/flicker-wisp/front.svg",
  48848. extra: 1835/1613,
  48849. bottom: 449/2284
  48850. }
  48851. },
  48852. side: {
  48853. height: math.unit(8.7, "feet"),
  48854. name: "Side",
  48855. image: {
  48856. source: "./media/characters/flicker-wisp/side.svg",
  48857. extra: 1841/1642,
  48858. bottom: 336/2177
  48859. },
  48860. default: true
  48861. },
  48862. maw: {
  48863. height: math.unit(3.35, "feet"),
  48864. name: "Maw",
  48865. image: {
  48866. source: "./media/characters/flicker-wisp/maw.svg",
  48867. extra: 2338/1506,
  48868. bottom: 0/2338
  48869. }
  48870. },
  48871. ovipositor: {
  48872. height: math.unit(4.95, "feet"),
  48873. name: "Ovipositor",
  48874. image: {
  48875. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48876. }
  48877. },
  48878. egg: {
  48879. height: math.unit(0.385, "feet"),
  48880. weight: math.unit(2, "lb"),
  48881. name: "Egg",
  48882. image: {
  48883. source: "./media/characters/flicker-wisp/egg.svg"
  48884. }
  48885. },
  48886. },
  48887. [
  48888. {
  48889. name: "Normal",
  48890. height: math.unit(8.7, "feet"),
  48891. default: true
  48892. },
  48893. ]
  48894. ))
  48895. characterMakers.push(() => makeCharacter(
  48896. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48897. {
  48898. side: {
  48899. height: math.unit(11, "feet"),
  48900. name: "Side",
  48901. image: {
  48902. source: "./media/characters/faefnul/side.svg",
  48903. extra: 1100/1007,
  48904. bottom: 0/1100
  48905. }
  48906. },
  48907. },
  48908. [
  48909. {
  48910. name: "Normal",
  48911. height: math.unit(11, "feet"),
  48912. default: true
  48913. },
  48914. ]
  48915. ))
  48916. characterMakers.push(() => makeCharacter(
  48917. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48918. {
  48919. front: {
  48920. height: math.unit(6 + 2/12, "feet"),
  48921. name: "Front",
  48922. image: {
  48923. source: "./media/characters/shady/front.svg",
  48924. extra: 502/461,
  48925. bottom: 9/511
  48926. }
  48927. },
  48928. kneeling: {
  48929. height: math.unit(4.6, "feet"),
  48930. name: "Kneeling",
  48931. image: {
  48932. source: "./media/characters/shady/kneeling.svg",
  48933. extra: 1328/1219,
  48934. bottom: 117/1445
  48935. }
  48936. },
  48937. maw: {
  48938. height: math.unit(2, "feet"),
  48939. name: "Maw",
  48940. image: {
  48941. source: "./media/characters/shady/maw.svg"
  48942. }
  48943. },
  48944. },
  48945. [
  48946. {
  48947. name: "Nano",
  48948. height: math.unit(1, "mm")
  48949. },
  48950. {
  48951. name: "Micro",
  48952. height: math.unit(12, "mm")
  48953. },
  48954. {
  48955. name: "Tiny",
  48956. height: math.unit(3, "inches")
  48957. },
  48958. {
  48959. name: "Normal",
  48960. height: math.unit(6 + 2/12, "feet"),
  48961. default: true
  48962. },
  48963. {
  48964. name: "Big",
  48965. height: math.unit(15, "feet")
  48966. },
  48967. {
  48968. name: "Macro",
  48969. height: math.unit(150, "feet")
  48970. },
  48971. {
  48972. name: "Titanic",
  48973. height: math.unit(500, "feet")
  48974. },
  48975. ]
  48976. ))
  48977. characterMakers.push(() => makeCharacter(
  48978. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48979. {
  48980. front: {
  48981. height: math.unit(12, "feet"),
  48982. name: "Front",
  48983. image: {
  48984. source: "./media/characters/fenrir/front.svg",
  48985. extra: 968/875,
  48986. bottom: 22/990
  48987. }
  48988. },
  48989. },
  48990. [
  48991. {
  48992. name: "Big",
  48993. height: math.unit(12, "feet"),
  48994. default: true
  48995. },
  48996. ]
  48997. ))
  48998. characterMakers.push(() => makeCharacter(
  48999. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49000. {
  49001. front: {
  49002. height: math.unit(5 + 4/12, "feet"),
  49003. name: "Front",
  49004. image: {
  49005. source: "./media/characters/makar/front.svg",
  49006. extra: 1181/1112,
  49007. bottom: 78/1259
  49008. }
  49009. },
  49010. },
  49011. [
  49012. {
  49013. name: "Normal",
  49014. height: math.unit(5 + 4/12, "feet"),
  49015. default: true
  49016. },
  49017. ]
  49018. ))
  49019. characterMakers.push(() => makeCharacter(
  49020. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49021. {
  49022. front: {
  49023. height: math.unit(5 + 7/12, "feet"),
  49024. name: "Front",
  49025. image: {
  49026. source: "./media/characters/callow/front.svg",
  49027. extra: 1482/1304,
  49028. bottom: 23/1505
  49029. }
  49030. },
  49031. back: {
  49032. height: math.unit(5 + 7/12, "feet"),
  49033. name: "Back",
  49034. image: {
  49035. source: "./media/characters/callow/back.svg",
  49036. extra: 1484/1296,
  49037. bottom: 25/1509
  49038. }
  49039. },
  49040. },
  49041. [
  49042. {
  49043. name: "Micro",
  49044. height: math.unit(3, "inches"),
  49045. default: true
  49046. },
  49047. {
  49048. name: "Normal",
  49049. height: math.unit(5 + 7/12, "feet")
  49050. },
  49051. ]
  49052. ))
  49053. characterMakers.push(() => makeCharacter(
  49054. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49055. {
  49056. front: {
  49057. height: math.unit(6 + 2/12, "feet"),
  49058. name: "Front",
  49059. image: {
  49060. source: "./media/characters/natel/front.svg",
  49061. extra: 1833/1692,
  49062. bottom: 166/1999
  49063. }
  49064. },
  49065. },
  49066. [
  49067. {
  49068. name: "Normal",
  49069. height: math.unit(6 + 2/12, "feet"),
  49070. default: true
  49071. },
  49072. ]
  49073. ))
  49074. characterMakers.push(() => makeCharacter(
  49075. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49076. {
  49077. front: {
  49078. height: math.unit(1.75, "meters"),
  49079. name: "Front",
  49080. image: {
  49081. source: "./media/characters/misu/front.svg",
  49082. extra: 1690/1558,
  49083. bottom: 234/1924
  49084. }
  49085. },
  49086. back: {
  49087. height: math.unit(1.75, "meters"),
  49088. name: "Back",
  49089. image: {
  49090. source: "./media/characters/misu/back.svg",
  49091. extra: 1762/1618,
  49092. bottom: 146/1908
  49093. }
  49094. },
  49095. frontNude: {
  49096. height: math.unit(1.75, "meters"),
  49097. name: "Front (Nude)",
  49098. image: {
  49099. source: "./media/characters/misu/front-nude.svg",
  49100. extra: 1690/1558,
  49101. bottom: 234/1924
  49102. }
  49103. },
  49104. backNude: {
  49105. height: math.unit(1.75, "meters"),
  49106. name: "Back (Nude)",
  49107. image: {
  49108. source: "./media/characters/misu/back-nude.svg",
  49109. extra: 1762/1618,
  49110. bottom: 146/1908
  49111. }
  49112. },
  49113. frontErect: {
  49114. height: math.unit(1.75, "meters"),
  49115. name: "Front (Erect)",
  49116. image: {
  49117. source: "./media/characters/misu/front-erect.svg",
  49118. extra: 1690/1558,
  49119. bottom: 234/1924
  49120. }
  49121. },
  49122. maw: {
  49123. height: math.unit(0.47, "meters"),
  49124. name: "Maw",
  49125. image: {
  49126. source: "./media/characters/misu/maw.svg"
  49127. }
  49128. },
  49129. head: {
  49130. height: math.unit(0.35, "meters"),
  49131. name: "Head",
  49132. image: {
  49133. source: "./media/characters/misu/head.svg"
  49134. }
  49135. },
  49136. rear: {
  49137. height: math.unit(0.47, "meters"),
  49138. name: "Rear",
  49139. image: {
  49140. source: "./media/characters/misu/rear.svg"
  49141. }
  49142. },
  49143. },
  49144. [
  49145. {
  49146. name: "Normal",
  49147. height: math.unit(1.75, "meters")
  49148. },
  49149. {
  49150. name: "Not good for the people",
  49151. height: math.unit(42, "meters")
  49152. },
  49153. {
  49154. name: "Not good for the neighborhood",
  49155. height: math.unit(135, "meters")
  49156. },
  49157. {
  49158. name: "Bit bigger problem",
  49159. height: math.unit(380, "meters"),
  49160. default: true
  49161. },
  49162. {
  49163. name: "Not good for the city",
  49164. height: math.unit(1.5, "km")
  49165. },
  49166. {
  49167. name: "Not good for the county",
  49168. height: math.unit(5.5, "km")
  49169. },
  49170. {
  49171. name: "Not good for the state",
  49172. height: math.unit(25, "km")
  49173. },
  49174. {
  49175. name: "Not good for the country",
  49176. height: math.unit(125, "km")
  49177. },
  49178. {
  49179. name: "Not good for the continent",
  49180. height: math.unit(2100, "km")
  49181. },
  49182. {
  49183. name: "Not good for the planet",
  49184. height: math.unit(35000, "km")
  49185. },
  49186. {
  49187. name: "Just no",
  49188. height: math.unit(8.5e18, "km")
  49189. },
  49190. ]
  49191. ))
  49192. characterMakers.push(() => makeCharacter(
  49193. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49194. {
  49195. front: {
  49196. height: math.unit(6.5, "feet"),
  49197. name: "Front",
  49198. image: {
  49199. source: "./media/characters/poppy/front.svg",
  49200. extra: 1878/1812,
  49201. bottom: 43/1921
  49202. }
  49203. },
  49204. feet: {
  49205. height: math.unit(1.06, "feet"),
  49206. name: "Feet",
  49207. image: {
  49208. source: "./media/characters/poppy/feet.svg",
  49209. extra: 1083/1083,
  49210. bottom: 87/1170
  49211. }
  49212. },
  49213. },
  49214. [
  49215. {
  49216. name: "Human",
  49217. height: math.unit(6.5, "feet")
  49218. },
  49219. {
  49220. name: "Default",
  49221. height: math.unit(300, "feet"),
  49222. default: true
  49223. },
  49224. {
  49225. name: "Huge",
  49226. height: math.unit(850, "feet")
  49227. },
  49228. {
  49229. name: "Mega",
  49230. height: math.unit(8000, "feet")
  49231. },
  49232. {
  49233. name: "Giga",
  49234. height: math.unit(300, "miles")
  49235. },
  49236. ]
  49237. ))
  49238. characterMakers.push(() => makeCharacter(
  49239. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49240. {
  49241. bipedal: {
  49242. height: math.unit(7, "feet"),
  49243. name: "Bipedal",
  49244. image: {
  49245. source: "./media/characters/zener/bipedal.svg",
  49246. extra: 874/805,
  49247. bottom: 109/983
  49248. }
  49249. },
  49250. quadrupedal: {
  49251. height: math.unit(4.64, "feet"),
  49252. name: "Quadrupedal",
  49253. image: {
  49254. source: "./media/characters/zener/quadrupedal.svg",
  49255. extra: 638/507,
  49256. bottom: 190/828
  49257. }
  49258. },
  49259. cock: {
  49260. height: math.unit(18, "inches"),
  49261. name: "Cock",
  49262. image: {
  49263. source: "./media/characters/zener/cock.svg"
  49264. }
  49265. },
  49266. },
  49267. [
  49268. {
  49269. name: "Normal",
  49270. height: math.unit(7, "feet"),
  49271. default: true
  49272. },
  49273. ]
  49274. ))
  49275. characterMakers.push(() => makeCharacter(
  49276. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49277. {
  49278. nude: {
  49279. height: math.unit(5 + 6/12, "feet"),
  49280. name: "Nude",
  49281. image: {
  49282. source: "./media/characters/charlie-dog/nude.svg",
  49283. extra: 768/734,
  49284. bottom: 26/794
  49285. }
  49286. },
  49287. dressed: {
  49288. height: math.unit(5 + 6/12, "feet"),
  49289. name: "Dressed",
  49290. image: {
  49291. source: "./media/characters/charlie-dog/dressed.svg",
  49292. extra: 768/734,
  49293. bottom: 26/794
  49294. }
  49295. },
  49296. },
  49297. [
  49298. {
  49299. name: "Normal",
  49300. height: math.unit(5 + 6/12, "feet"),
  49301. default: true
  49302. },
  49303. ]
  49304. ))
  49305. characterMakers.push(() => makeCharacter(
  49306. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49307. {
  49308. front: {
  49309. height: math.unit(6 + 4/12, "feet"),
  49310. name: "Front",
  49311. image: {
  49312. source: "./media/characters/ir'istrasz/front.svg",
  49313. extra: 1014/977,
  49314. bottom: 65/1079
  49315. }
  49316. },
  49317. back: {
  49318. height: math.unit(6 + 4/12, "feet"),
  49319. name: "Back",
  49320. image: {
  49321. source: "./media/characters/ir'istrasz/back.svg",
  49322. extra: 1024/992,
  49323. bottom: 34/1058
  49324. }
  49325. },
  49326. },
  49327. [
  49328. {
  49329. name: "Normal",
  49330. height: math.unit(6 + 4/12, "feet"),
  49331. default: true
  49332. },
  49333. ]
  49334. ))
  49335. characterMakers.push(() => makeCharacter(
  49336. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49337. {
  49338. front: {
  49339. height: math.unit(5 + 8/12, "feet"),
  49340. name: "Front",
  49341. image: {
  49342. source: "./media/characters/dee-ditto/front.svg",
  49343. extra: 1874/1785,
  49344. bottom: 68/1942
  49345. }
  49346. },
  49347. back: {
  49348. height: math.unit(5 + 8/12, "feet"),
  49349. name: "Back",
  49350. image: {
  49351. source: "./media/characters/dee-ditto/back.svg",
  49352. extra: 1870/1783,
  49353. bottom: 77/1947
  49354. }
  49355. },
  49356. },
  49357. [
  49358. {
  49359. name: "Normal",
  49360. height: math.unit(5 + 8/12, "feet"),
  49361. default: true
  49362. },
  49363. ]
  49364. ))
  49365. characterMakers.push(() => makeCharacter(
  49366. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49367. {
  49368. front: {
  49369. height: math.unit(7 + 6/12, "feet"),
  49370. name: "Front",
  49371. image: {
  49372. source: "./media/characters/fey/front.svg",
  49373. extra: 995/979,
  49374. bottom: 30/1025
  49375. }
  49376. },
  49377. back: {
  49378. height: math.unit(7 + 6/12, "feet"),
  49379. name: "Back",
  49380. image: {
  49381. source: "./media/characters/fey/back.svg",
  49382. extra: 1079/1008,
  49383. bottom: 5/1084
  49384. }
  49385. },
  49386. dressed: {
  49387. height: math.unit(7 + 6/12, "feet"),
  49388. name: "Dressed",
  49389. image: {
  49390. source: "./media/characters/fey/dressed.svg",
  49391. extra: 995/979,
  49392. bottom: 30/1025
  49393. }
  49394. },
  49395. },
  49396. [
  49397. {
  49398. name: "Normal",
  49399. height: math.unit(7 + 6/12, "feet"),
  49400. default: true
  49401. },
  49402. ]
  49403. ))
  49404. characterMakers.push(() => makeCharacter(
  49405. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49406. {
  49407. standing: {
  49408. height: math.unit(17, "feet"),
  49409. name: "Standing",
  49410. image: {
  49411. source: "./media/characters/aster/standing.svg",
  49412. extra: 1798/1598,
  49413. bottom: 117/1915
  49414. }
  49415. },
  49416. },
  49417. [
  49418. {
  49419. name: "Normal",
  49420. height: math.unit(17, "feet"),
  49421. default: true
  49422. },
  49423. {
  49424. name: "Homewrecker",
  49425. height: math.unit(95, "feet")
  49426. },
  49427. {
  49428. name: "Planet Devourer",
  49429. height: math.unit(1008000, "miles")
  49430. },
  49431. ]
  49432. ))
  49433. characterMakers.push(() => makeCharacter(
  49434. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49435. {
  49436. front: {
  49437. height: math.unit(6 + 5/12, "feet"),
  49438. weight: math.unit(265, "lb"),
  49439. name: "Front",
  49440. image: {
  49441. source: "./media/characters/devon-childs/front.svg",
  49442. extra: 1795/1721,
  49443. bottom: 41/1836
  49444. }
  49445. },
  49446. side: {
  49447. height: math.unit(6 + 5/12, "feet"),
  49448. weight: math.unit(265, "lb"),
  49449. name: "Side",
  49450. image: {
  49451. source: "./media/characters/devon-childs/side.svg",
  49452. extra: 1812/1738,
  49453. bottom: 30/1842
  49454. }
  49455. },
  49456. back: {
  49457. height: math.unit(6 + 5/12, "feet"),
  49458. weight: math.unit(265, "lb"),
  49459. name: "Back",
  49460. image: {
  49461. source: "./media/characters/devon-childs/back.svg",
  49462. extra: 1808/1735,
  49463. bottom: 23/1831
  49464. }
  49465. },
  49466. hand: {
  49467. height: math.unit(1.464, "feet"),
  49468. name: "Hand",
  49469. image: {
  49470. source: "./media/characters/devon-childs/hand.svg"
  49471. }
  49472. },
  49473. foot: {
  49474. height: math.unit(1.6, "feet"),
  49475. name: "Foot",
  49476. image: {
  49477. source: "./media/characters/devon-childs/foot.svg"
  49478. }
  49479. },
  49480. },
  49481. [
  49482. {
  49483. name: "Micro",
  49484. height: math.unit(7, "cm")
  49485. },
  49486. {
  49487. name: "Normal",
  49488. height: math.unit(6 + 5/12, "feet"),
  49489. default: true
  49490. },
  49491. {
  49492. name: "Macro",
  49493. height: math.unit(154, "feet")
  49494. },
  49495. ]
  49496. ))
  49497. characterMakers.push(() => makeCharacter(
  49498. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49499. {
  49500. front: {
  49501. height: math.unit(6, "feet"),
  49502. weight: math.unit(180, "lb"),
  49503. name: "Front",
  49504. image: {
  49505. source: "./media/characters/lydemox-vir/front.svg",
  49506. extra: 1632/1435,
  49507. bottom: 58/1690
  49508. }
  49509. },
  49510. frontSFW: {
  49511. height: math.unit(6, "feet"),
  49512. weight: math.unit(180, "lb"),
  49513. name: "Front (SFW)",
  49514. image: {
  49515. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49516. extra: 1632/1435,
  49517. bottom: 58/1690
  49518. }
  49519. },
  49520. back: {
  49521. height: math.unit(6, "feet"),
  49522. weight: math.unit(180, "lb"),
  49523. name: "Back",
  49524. image: {
  49525. source: "./media/characters/lydemox-vir/back.svg",
  49526. extra: 1593/1408,
  49527. bottom: 31/1624
  49528. }
  49529. },
  49530. paw: {
  49531. height: math.unit(1.85, "feet"),
  49532. name: "Paw",
  49533. image: {
  49534. source: "./media/characters/lydemox-vir/paw.svg"
  49535. }
  49536. },
  49537. dick: {
  49538. height: math.unit(1.8, "feet"),
  49539. name: "Dick",
  49540. image: {
  49541. source: "./media/characters/lydemox-vir/dick.svg"
  49542. }
  49543. },
  49544. },
  49545. [
  49546. {
  49547. name: "Macro",
  49548. height: math.unit(100, "feet"),
  49549. default: true
  49550. },
  49551. {
  49552. name: "Teramacro",
  49553. height: math.unit(1, "earth")
  49554. },
  49555. {
  49556. name: "Planetary",
  49557. height: math.unit(20, "earths")
  49558. },
  49559. ]
  49560. ))
  49561. characterMakers.push(() => makeCharacter(
  49562. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49563. {
  49564. front: {
  49565. height: math.unit(15 + 8/12, "feet"),
  49566. weight: math.unit(1237, "kg"),
  49567. name: "Front",
  49568. image: {
  49569. source: "./media/characters/mia/front.svg",
  49570. extra: 1573/1446,
  49571. bottom: 58/1631
  49572. }
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Small",
  49578. height: math.unit(9 + 5/12, "feet")
  49579. },
  49580. {
  49581. name: "Normal",
  49582. height: math.unit(15 + 8/12, "feet"),
  49583. default: true
  49584. },
  49585. ]
  49586. ))
  49587. characterMakers.push(() => makeCharacter(
  49588. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49589. {
  49590. front: {
  49591. height: math.unit(10 + 6/12, "feet"),
  49592. weight: math.unit(1.3, "tons"),
  49593. name: "Front",
  49594. image: {
  49595. source: "./media/characters/mr-graves/front.svg",
  49596. extra: 1779/1695,
  49597. bottom: 198/1977
  49598. }
  49599. },
  49600. },
  49601. [
  49602. {
  49603. name: "Normal",
  49604. height: math.unit(10 + 6 /12, "feet"),
  49605. default: true
  49606. },
  49607. ]
  49608. ))
  49609. characterMakers.push(() => makeCharacter(
  49610. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49611. {
  49612. dressedFront: {
  49613. height: math.unit(5 + 8/12, "feet"),
  49614. weight: math.unit(125, "lb"),
  49615. name: "Dressed (Front)",
  49616. image: {
  49617. source: "./media/characters/jess/dressed-front.svg",
  49618. extra: 1176/1152,
  49619. bottom: 42/1218
  49620. }
  49621. },
  49622. dressedSide: {
  49623. height: math.unit(5 + 8/12, "feet"),
  49624. weight: math.unit(125, "lb"),
  49625. name: "Dressed (Side)",
  49626. image: {
  49627. source: "./media/characters/jess/dressed-side.svg",
  49628. extra: 1204/1190,
  49629. bottom: 6/1210
  49630. }
  49631. },
  49632. nudeFront: {
  49633. height: math.unit(5 + 8/12, "feet"),
  49634. weight: math.unit(125, "lb"),
  49635. name: "Nude (Front)",
  49636. image: {
  49637. source: "./media/characters/jess/nude-front.svg",
  49638. extra: 1176/1152,
  49639. bottom: 42/1218
  49640. }
  49641. },
  49642. nudeSide: {
  49643. height: math.unit(5 + 8/12, "feet"),
  49644. weight: math.unit(125, "lb"),
  49645. name: "Nude (Side)",
  49646. image: {
  49647. source: "./media/characters/jess/nude-side.svg",
  49648. extra: 1204/1190,
  49649. bottom: 6/1210
  49650. }
  49651. },
  49652. organsFront: {
  49653. height: math.unit(2.83799342105, "feet"),
  49654. name: "Organs (Front)",
  49655. image: {
  49656. source: "./media/characters/jess/organs-front.svg"
  49657. }
  49658. },
  49659. organsSide: {
  49660. height: math.unit(2.64225290474, "feet"),
  49661. name: "Organs (Side)",
  49662. image: {
  49663. source: "./media/characters/jess/organs-side.svg"
  49664. }
  49665. },
  49666. digestiveTractFront: {
  49667. height: math.unit(2.8106580871, "feet"),
  49668. name: "Digestive Tract (Front)",
  49669. image: {
  49670. source: "./media/characters/jess/digestive-tract-front.svg"
  49671. }
  49672. },
  49673. digestiveTractSide: {
  49674. height: math.unit(2.54365045014, "feet"),
  49675. name: "Digestive Tract (Side)",
  49676. image: {
  49677. source: "./media/characters/jess/digestive-tract-side.svg"
  49678. }
  49679. },
  49680. respiratorySystemFront: {
  49681. height: math.unit(1.11196233456, "feet"),
  49682. name: "Respiratory System (Front)",
  49683. image: {
  49684. source: "./media/characters/jess/respiratory-system-front.svg"
  49685. }
  49686. },
  49687. respiratorySystemSide: {
  49688. height: math.unit(0.89327966297, "feet"),
  49689. name: "Respiratory System (Side)",
  49690. image: {
  49691. source: "./media/characters/jess/respiratory-system-side.svg"
  49692. }
  49693. },
  49694. urinaryTractFront: {
  49695. height: math.unit(1.16126356186, "feet"),
  49696. name: "Urinary Tract (Front)",
  49697. image: {
  49698. source: "./media/characters/jess/urinary-tract-front.svg"
  49699. }
  49700. },
  49701. urinaryTractSide: {
  49702. height: math.unit(1.20910039627, "feet"),
  49703. name: "Urinary Tract (Side)",
  49704. image: {
  49705. source: "./media/characters/jess/urinary-tract-side.svg"
  49706. }
  49707. },
  49708. reproductiveOrgansFront: {
  49709. height: math.unit(0.48422591566, "feet"),
  49710. name: "Reproductive Organs (Front)",
  49711. image: {
  49712. source: "./media/characters/jess/reproductive-organs-front.svg"
  49713. }
  49714. },
  49715. reproductiveOrgansSide: {
  49716. height: math.unit(0.61553314481, "feet"),
  49717. name: "Reproductive Organs (Side)",
  49718. image: {
  49719. source: "./media/characters/jess/reproductive-organs-side.svg"
  49720. }
  49721. },
  49722. breastsFront: {
  49723. height: math.unit(0.47690395121, "feet"),
  49724. name: "Breasts (Front)",
  49725. image: {
  49726. source: "./media/characters/jess/breasts-front.svg"
  49727. }
  49728. },
  49729. breastsSide: {
  49730. height: math.unit(0.30556998307, "feet"),
  49731. name: "Breasts (Side)",
  49732. image: {
  49733. source: "./media/characters/jess/breasts-side.svg"
  49734. }
  49735. },
  49736. heartFront: {
  49737. height: math.unit(0.53011022622, "feet"),
  49738. name: "Heart (Front)",
  49739. image: {
  49740. source: "./media/characters/jess/heart-front.svg"
  49741. }
  49742. },
  49743. heartSide: {
  49744. height: math.unit(0.51790695213, "feet"),
  49745. name: "Heart (Side)",
  49746. image: {
  49747. source: "./media/characters/jess/heart-side.svg"
  49748. }
  49749. },
  49750. earsAndNoseFront: {
  49751. height: math.unit(0.29385483995, "feet"),
  49752. name: "Ears and Nose (Front)",
  49753. image: {
  49754. source: "./media/characters/jess/ears-and-nose-front.svg"
  49755. }
  49756. },
  49757. earsAndNoseSide: {
  49758. height: math.unit(0.18109658741, "feet"),
  49759. name: "Ears and Nose (Side)",
  49760. image: {
  49761. source: "./media/characters/jess/ears-and-nose-side.svg"
  49762. }
  49763. },
  49764. },
  49765. [
  49766. {
  49767. name: "Normal",
  49768. height: math.unit(5 + 8/12, "feet"),
  49769. default: true
  49770. },
  49771. ]
  49772. ))
  49773. characterMakers.push(() => makeCharacter(
  49774. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49775. {
  49776. front: {
  49777. height: math.unit(6, "feet"),
  49778. weight: math.unit(6.64467e-7, "grams"),
  49779. name: "Front",
  49780. image: {
  49781. source: "./media/characters/wimpering/front.svg",
  49782. extra: 597/587,
  49783. bottom: 34/631
  49784. }
  49785. },
  49786. },
  49787. [
  49788. {
  49789. name: "Micro",
  49790. height: math.unit(0.4, "mm"),
  49791. default: true
  49792. },
  49793. ]
  49794. ))
  49795. characterMakers.push(() => makeCharacter(
  49796. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49797. {
  49798. front: {
  49799. height: math.unit(5 + 2/12, "feet"),
  49800. weight: math.unit(110, "lb"),
  49801. name: "Front",
  49802. image: {
  49803. source: "./media/characters/keltre/front.svg",
  49804. extra: 1099/1057,
  49805. bottom: 22/1121
  49806. }
  49807. },
  49808. back: {
  49809. height: math.unit(5 + 2/12, "feet"),
  49810. weight: math.unit(110, "lb"),
  49811. name: "Back",
  49812. image: {
  49813. source: "./media/characters/keltre/back.svg",
  49814. extra: 1095/1053,
  49815. bottom: 17/1112
  49816. }
  49817. },
  49818. dressed: {
  49819. height: math.unit(5 + 2/12, "feet"),
  49820. weight: math.unit(110, "lb"),
  49821. name: "Dressed",
  49822. image: {
  49823. source: "./media/characters/keltre/dressed.svg",
  49824. extra: 1099/1057,
  49825. bottom: 22/1121
  49826. }
  49827. },
  49828. winter: {
  49829. height: math.unit(5 + 2/12, "feet"),
  49830. weight: math.unit(110, "lb"),
  49831. name: "Winter",
  49832. image: {
  49833. source: "./media/characters/keltre/winter.svg",
  49834. extra: 1099/1057,
  49835. bottom: 22/1121
  49836. }
  49837. },
  49838. head: {
  49839. height: math.unit(1.61 * 0.86, "feet"),
  49840. name: "Head",
  49841. image: {
  49842. source: "./media/characters/keltre/head.svg",
  49843. extra: 534/421,
  49844. bottom: 0/534
  49845. }
  49846. },
  49847. hand: {
  49848. height: math.unit(1.3 * 0.86, "feet"),
  49849. name: "Hand",
  49850. image: {
  49851. source: "./media/characters/keltre/hand.svg"
  49852. }
  49853. },
  49854. foot: {
  49855. height: math.unit(1.8 * 0.86, "feet"),
  49856. name: "Foot",
  49857. image: {
  49858. source: "./media/characters/keltre/foot.svg"
  49859. }
  49860. },
  49861. },
  49862. [
  49863. {
  49864. name: "Fine",
  49865. height: math.unit(1, "inch")
  49866. },
  49867. {
  49868. name: "Dimnutive",
  49869. height: math.unit(4, "inches")
  49870. },
  49871. {
  49872. name: "Tiny",
  49873. height: math.unit(1, "foot")
  49874. },
  49875. {
  49876. name: "Small",
  49877. height: math.unit(3, "feet")
  49878. },
  49879. {
  49880. name: "Normal",
  49881. height: math.unit(5 + 2/12, "feet"),
  49882. default: true
  49883. },
  49884. ]
  49885. ))
  49886. characterMakers.push(() => makeCharacter(
  49887. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49888. {
  49889. front: {
  49890. height: math.unit(6 + 2/12, "feet"),
  49891. name: "Front",
  49892. image: {
  49893. source: "./media/characters/nox/front.svg",
  49894. extra: 1917/1830,
  49895. bottom: 74/1991
  49896. }
  49897. },
  49898. back: {
  49899. height: math.unit(6 + 2/12, "feet"),
  49900. name: "Back",
  49901. image: {
  49902. source: "./media/characters/nox/back.svg",
  49903. extra: 1896/1815,
  49904. bottom: 21/1917
  49905. }
  49906. },
  49907. head: {
  49908. height: math.unit(1.1, "feet"),
  49909. name: "Head",
  49910. image: {
  49911. source: "./media/characters/nox/head.svg",
  49912. extra: 874/704,
  49913. bottom: 0/874
  49914. }
  49915. },
  49916. tattoo: {
  49917. height: math.unit(0.729, "feet"),
  49918. name: "Tattoo",
  49919. image: {
  49920. source: "./media/characters/nox/tattoo.svg"
  49921. }
  49922. },
  49923. },
  49924. [
  49925. {
  49926. name: "Normal",
  49927. height: math.unit(6 + 2/12, "feet")
  49928. },
  49929. {
  49930. name: "Gigamacro",
  49931. height: math.unit(2, "earths"),
  49932. default: true
  49933. },
  49934. {
  49935. name: "Cosmic",
  49936. height: math.unit(867, "yottameters")
  49937. },
  49938. ]
  49939. ))
  49940. characterMakers.push(() => makeCharacter(
  49941. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49942. {
  49943. front: {
  49944. height: math.unit(6, "feet"),
  49945. weight: math.unit(150, "lb"),
  49946. name: "Front",
  49947. image: {
  49948. source: "./media/characters/caspian/front.svg",
  49949. extra: 1443/1359,
  49950. bottom: 0/1443
  49951. }
  49952. },
  49953. back: {
  49954. height: math.unit(6, "feet"),
  49955. weight: math.unit(150, "lb"),
  49956. name: "Back",
  49957. image: {
  49958. source: "./media/characters/caspian/back.svg",
  49959. extra: 1379/1309,
  49960. bottom: 0/1379
  49961. }
  49962. },
  49963. head: {
  49964. height: math.unit(0.9, "feet"),
  49965. name: "Head",
  49966. image: {
  49967. source: "./media/characters/caspian/head.svg",
  49968. extra: 692/492,
  49969. bottom: 0/692
  49970. }
  49971. },
  49972. headAlt: {
  49973. height: math.unit(0.95, "feet"),
  49974. name: "Head (Alt)",
  49975. image: {
  49976. source: "./media/characters/caspian/head-alt.svg",
  49977. extra: 668/508,
  49978. bottom: 0/668
  49979. }
  49980. },
  49981. hand: {
  49982. height: math.unit(0.8, "feet"),
  49983. name: "Hand",
  49984. image: {
  49985. source: "./media/characters/caspian/hand.svg"
  49986. }
  49987. },
  49988. paw: {
  49989. height: math.unit(0.95, "feet"),
  49990. name: "Paw",
  49991. image: {
  49992. source: "./media/characters/caspian/paw.svg"
  49993. }
  49994. },
  49995. },
  49996. [
  49997. {
  49998. name: "Normal",
  49999. height: math.unit(162, "feet"),
  50000. default: true
  50001. },
  50002. ]
  50003. ))
  50004. characterMakers.push(() => makeCharacter(
  50005. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50006. {
  50007. front: {
  50008. height: math.unit(6, "feet"),
  50009. name: "Front",
  50010. image: {
  50011. source: "./media/characters/myra-aisling/front.svg",
  50012. extra: 1268/1166,
  50013. bottom: 73/1341
  50014. }
  50015. },
  50016. back: {
  50017. height: math.unit(6, "feet"),
  50018. name: "Back",
  50019. image: {
  50020. source: "./media/characters/myra-aisling/back.svg",
  50021. extra: 1249/1149,
  50022. bottom: 79/1328
  50023. }
  50024. },
  50025. dressed: {
  50026. height: math.unit(6, "feet"),
  50027. name: "Dressed",
  50028. image: {
  50029. source: "./media/characters/myra-aisling/dressed.svg",
  50030. extra: 1290/1189,
  50031. bottom: 47/1337
  50032. }
  50033. },
  50034. hand: {
  50035. height: math.unit(1.1, "feet"),
  50036. name: "Hand",
  50037. image: {
  50038. source: "./media/characters/myra-aisling/hand.svg"
  50039. }
  50040. },
  50041. paw: {
  50042. height: math.unit(1.23, "feet"),
  50043. name: "Paw",
  50044. image: {
  50045. source: "./media/characters/myra-aisling/paw.svg"
  50046. }
  50047. },
  50048. },
  50049. [
  50050. {
  50051. name: "Normal",
  50052. height: math.unit(160, "feet"),
  50053. default: true
  50054. },
  50055. ]
  50056. ))
  50057. characterMakers.push(() => makeCharacter(
  50058. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50059. {
  50060. front: {
  50061. height: math.unit(6, "feet"),
  50062. name: "Front",
  50063. image: {
  50064. source: "./media/characters/tenley-sidero/front.svg",
  50065. extra: 1365/1276,
  50066. bottom: 47/1412
  50067. }
  50068. },
  50069. back: {
  50070. height: math.unit(6, "feet"),
  50071. name: "Back",
  50072. image: {
  50073. source: "./media/characters/tenley-sidero/back.svg",
  50074. extra: 1383/1283,
  50075. bottom: 35/1418
  50076. }
  50077. },
  50078. dressed: {
  50079. height: math.unit(6, "feet"),
  50080. name: "Dressed",
  50081. image: {
  50082. source: "./media/characters/tenley-sidero/dressed.svg",
  50083. extra: 1364/1275,
  50084. bottom: 42/1406
  50085. }
  50086. },
  50087. head: {
  50088. height: math.unit(1.47, "feet"),
  50089. name: "Head",
  50090. image: {
  50091. source: "./media/characters/tenley-sidero/head.svg",
  50092. extra: 610/490,
  50093. bottom: 0/610
  50094. }
  50095. },
  50096. },
  50097. [
  50098. {
  50099. name: "Normal",
  50100. height: math.unit(154, "feet"),
  50101. default: true
  50102. },
  50103. ]
  50104. ))
  50105. characterMakers.push(() => makeCharacter(
  50106. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50107. {
  50108. front: {
  50109. height: math.unit(5, "inches"),
  50110. name: "Front",
  50111. image: {
  50112. source: "./media/characters/mallory/front.svg",
  50113. extra: 1919/1678,
  50114. bottom: 29/1948
  50115. }
  50116. },
  50117. hand: {
  50118. height: math.unit(0.73, "inches"),
  50119. name: "Hand",
  50120. image: {
  50121. source: "./media/characters/mallory/hand.svg"
  50122. }
  50123. },
  50124. paw: {
  50125. height: math.unit(0.68, "inches"),
  50126. name: "Paw",
  50127. image: {
  50128. source: "./media/characters/mallory/paw.svg"
  50129. }
  50130. },
  50131. },
  50132. [
  50133. {
  50134. name: "Small",
  50135. height: math.unit(5, "inches"),
  50136. default: true
  50137. },
  50138. ]
  50139. ))
  50140. characterMakers.push(() => makeCharacter(
  50141. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50142. {
  50143. naked: {
  50144. height: math.unit(6, "feet"),
  50145. name: "Naked",
  50146. image: {
  50147. source: "./media/characters/mab/naked.svg",
  50148. extra: 1855/1757,
  50149. bottom: 208/2063
  50150. }
  50151. },
  50152. outside: {
  50153. height: math.unit(6, "feet"),
  50154. name: "Outside",
  50155. image: {
  50156. source: "./media/characters/mab/outside.svg",
  50157. extra: 1855/1757,
  50158. bottom: 208/2063
  50159. }
  50160. },
  50161. party: {
  50162. height: math.unit(6, "feet"),
  50163. name: "Party",
  50164. image: {
  50165. source: "./media/characters/mab/party.svg",
  50166. extra: 1855/1757,
  50167. bottom: 208/2063
  50168. }
  50169. },
  50170. },
  50171. [
  50172. {
  50173. name: "Normal",
  50174. height: math.unit(165, "feet"),
  50175. default: true
  50176. },
  50177. ]
  50178. ))
  50179. characterMakers.push(() => makeCharacter(
  50180. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50181. {
  50182. feral: {
  50183. height: math.unit(12, "feet"),
  50184. weight: math.unit(20000, "lb"),
  50185. name: "Side",
  50186. image: {
  50187. source: "./media/characters/winter/feral.svg",
  50188. extra: 1286/943,
  50189. bottom: 112/1398
  50190. },
  50191. form: "feral",
  50192. default: true
  50193. },
  50194. feralNsfw: {
  50195. height: math.unit(12, "feet"),
  50196. weight: math.unit(20000, "lb"),
  50197. name: "Side (NSFW)",
  50198. image: {
  50199. source: "./media/characters/winter/feral-nsfw.svg",
  50200. extra: 1286/943,
  50201. bottom: 112/1398
  50202. },
  50203. form: "feral"
  50204. },
  50205. dick: {
  50206. height: math.unit(3.79, "feet"),
  50207. name: "Dick",
  50208. image: {
  50209. source: "./media/characters/winter/dick.svg"
  50210. },
  50211. form: "feral"
  50212. },
  50213. anthro: {
  50214. height: math.unit(12, "feet"),
  50215. weight: math.unit(10, "tons"),
  50216. name: "Anthro",
  50217. image: {
  50218. source: "./media/characters/winter/anthro.svg",
  50219. extra: 1701/1553,
  50220. bottom: 64/1765
  50221. },
  50222. form: "anthro",
  50223. default: true
  50224. },
  50225. },
  50226. [
  50227. {
  50228. name: "Big",
  50229. height: math.unit(12, "feet"),
  50230. default: true,
  50231. form: "feral"
  50232. },
  50233. {
  50234. name: "Big",
  50235. height: math.unit(12, "feet"),
  50236. default: true,
  50237. form: "anthro"
  50238. },
  50239. ],
  50240. {
  50241. "feral": {
  50242. name: "Feral",
  50243. default: true
  50244. },
  50245. "anthro": {
  50246. name: "Anthro"
  50247. }
  50248. }
  50249. ))
  50250. characterMakers.push(() => makeCharacter(
  50251. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50252. {
  50253. front: {
  50254. height: math.unit(4.1, "inches"),
  50255. name: "Front",
  50256. image: {
  50257. source: "./media/characters/alto/front.svg",
  50258. extra: 736/627,
  50259. bottom: 90/826
  50260. }
  50261. },
  50262. },
  50263. [
  50264. {
  50265. name: "Normal",
  50266. height: math.unit(4.1, "inches"),
  50267. default: true
  50268. },
  50269. ]
  50270. ))
  50271. characterMakers.push(() => makeCharacter(
  50272. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50273. {
  50274. sitting: {
  50275. height: math.unit(3, "feet"),
  50276. name: "Sitting",
  50277. image: {
  50278. source: "./media/characters/ratstrid-v/sitting.svg",
  50279. extra: 355/310,
  50280. bottom: 136/491
  50281. }
  50282. },
  50283. },
  50284. [
  50285. {
  50286. name: "Normal",
  50287. height: math.unit(3, "feet"),
  50288. default: true
  50289. },
  50290. ]
  50291. ))
  50292. characterMakers.push(() => makeCharacter(
  50293. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50294. {
  50295. back: {
  50296. height: math.unit(6, "feet"),
  50297. weight: math.unit(450, "lb"),
  50298. name: "Back",
  50299. image: {
  50300. source: "./media/characters/siz/back.svg",
  50301. extra: 1449/1274,
  50302. bottom: 13/1462
  50303. }
  50304. },
  50305. },
  50306. [
  50307. {
  50308. name: "Smallest",
  50309. height: math.unit(18 + 3/12, "feet")
  50310. },
  50311. {
  50312. name: "Modest",
  50313. height: math.unit(56 + 8/12, "feet"),
  50314. default: true
  50315. },
  50316. {
  50317. name: "Largest",
  50318. height: math.unit(3590, "feet")
  50319. },
  50320. ]
  50321. ))
  50322. characterMakers.push(() => makeCharacter(
  50323. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50324. {
  50325. front: {
  50326. height: math.unit(5 + 9/12, "feet"),
  50327. weight: math.unit(150, "lb"),
  50328. name: "Front",
  50329. image: {
  50330. source: "./media/characters/ven/front.svg",
  50331. extra: 1372/1320,
  50332. bottom: 73/1445
  50333. }
  50334. },
  50335. side: {
  50336. height: math.unit(5 + 9/12, "feet"),
  50337. weight: math.unit(1150, "lb"),
  50338. name: "Side",
  50339. image: {
  50340. source: "./media/characters/ven/side.svg",
  50341. extra: 1119/1070,
  50342. bottom: 42/1161
  50343. },
  50344. default: true
  50345. },
  50346. },
  50347. [
  50348. {
  50349. name: "Normal",
  50350. height: math.unit(5 + 9/12, "feet"),
  50351. default: true
  50352. },
  50353. ]
  50354. ))
  50355. characterMakers.push(() => makeCharacter(
  50356. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50357. {
  50358. front: {
  50359. height: math.unit(12, "feet"),
  50360. weight: math.unit(1000, "kg"),
  50361. name: "Front",
  50362. image: {
  50363. source: "./media/characters/maple/front.svg",
  50364. extra: 1193/1081,
  50365. bottom: 22/1215
  50366. }
  50367. },
  50368. },
  50369. [
  50370. {
  50371. name: "Compressed",
  50372. height: math.unit(7, "feet")
  50373. },
  50374. {
  50375. name: "Normal",
  50376. height: math.unit(12, "feet"),
  50377. default: true
  50378. },
  50379. ]
  50380. ))
  50381. characterMakers.push(() => makeCharacter(
  50382. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50383. {
  50384. front: {
  50385. height: math.unit(9, "feet"),
  50386. weight: math.unit(1500, "lb"),
  50387. name: "Front",
  50388. image: {
  50389. source: "./media/characters/nora/front.svg",
  50390. extra: 1348/1286,
  50391. bottom: 218/1566
  50392. }
  50393. },
  50394. erect: {
  50395. height: math.unit(9, "feet"),
  50396. weight: math.unit(11500, "lb"),
  50397. name: "Erect",
  50398. image: {
  50399. source: "./media/characters/nora/erect.svg",
  50400. extra: 1488/1433,
  50401. bottom: 133/1621
  50402. }
  50403. },
  50404. },
  50405. [
  50406. {
  50407. name: "Normal",
  50408. height: math.unit(9, "feet"),
  50409. default: true
  50410. },
  50411. ]
  50412. ))
  50413. characterMakers.push(() => makeCharacter(
  50414. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50415. {
  50416. front: {
  50417. height: math.unit(25, "feet"),
  50418. weight: math.unit(27500, "lb"),
  50419. name: "Front",
  50420. image: {
  50421. source: "./media/characters/north-caudin/front.svg",
  50422. extra: 1184/1082,
  50423. bottom: 23/1207
  50424. }
  50425. },
  50426. },
  50427. [
  50428. {
  50429. name: "Compressed",
  50430. height: math.unit(10, "feet")
  50431. },
  50432. {
  50433. name: "Normal",
  50434. height: math.unit(25, "feet"),
  50435. default: true
  50436. },
  50437. ]
  50438. ))
  50439. characterMakers.push(() => makeCharacter(
  50440. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50441. {
  50442. front: {
  50443. height: math.unit(9, "feet"),
  50444. weight: math.unit(1250, "lb"),
  50445. name: "Front",
  50446. image: {
  50447. source: "./media/characters/merrian/front.svg",
  50448. extra: 2393/2304,
  50449. bottom: 40/2433
  50450. }
  50451. },
  50452. },
  50453. [
  50454. {
  50455. name: "Normal",
  50456. height: math.unit(9, "feet"),
  50457. default: true
  50458. },
  50459. ]
  50460. ))
  50461. characterMakers.push(() => makeCharacter(
  50462. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50463. {
  50464. front: {
  50465. height: math.unit(9, "feet"),
  50466. weight: math.unit(1000, "lb"),
  50467. name: "Front",
  50468. image: {
  50469. source: "./media/characters/hazel/front.svg",
  50470. extra: 2351/2298,
  50471. bottom: 38/2389
  50472. }
  50473. },
  50474. },
  50475. [
  50476. {
  50477. name: "Normal",
  50478. height: math.unit(9, "feet"),
  50479. default: true
  50480. },
  50481. ]
  50482. ))
  50483. characterMakers.push(() => makeCharacter(
  50484. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50485. {
  50486. front: {
  50487. height: math.unit(13, "feet"),
  50488. weight: math.unit(3200, "lb"),
  50489. name: "Front",
  50490. image: {
  50491. source: "./media/characters/emma/front.svg",
  50492. extra: 2263/2029,
  50493. bottom: 68/2331
  50494. }
  50495. },
  50496. },
  50497. [
  50498. {
  50499. name: "Normal",
  50500. height: math.unit(13, "feet"),
  50501. default: true
  50502. },
  50503. ]
  50504. ))
  50505. characterMakers.push(() => makeCharacter(
  50506. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50507. {
  50508. front: {
  50509. height: math.unit(11 + 9/12, "feet"),
  50510. weight: math.unit(2500, "lb"),
  50511. name: "Front",
  50512. image: {
  50513. source: "./media/characters/ilumina/front.svg",
  50514. extra: 2248/2209,
  50515. bottom: 164/2412
  50516. }
  50517. },
  50518. },
  50519. [
  50520. {
  50521. name: "Normal",
  50522. height: math.unit(11 + 9/12, "feet"),
  50523. default: true
  50524. },
  50525. ]
  50526. ))
  50527. characterMakers.push(() => makeCharacter(
  50528. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50529. {
  50530. front: {
  50531. height: math.unit(8 + 10/12, "feet"),
  50532. weight: math.unit(1350, "lb"),
  50533. name: "Front",
  50534. image: {
  50535. source: "./media/characters/moonshine/front.svg",
  50536. extra: 2395/2288,
  50537. bottom: 40/2435
  50538. }
  50539. },
  50540. },
  50541. [
  50542. {
  50543. name: "Normal",
  50544. height: math.unit(8 + 10/12, "feet"),
  50545. default: true
  50546. },
  50547. ]
  50548. ))
  50549. characterMakers.push(() => makeCharacter(
  50550. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50551. {
  50552. front: {
  50553. height: math.unit(14, "feet"),
  50554. weight: math.unit(3400, "lb"),
  50555. name: "Front",
  50556. image: {
  50557. source: "./media/characters/aletia/front.svg",
  50558. extra: 1185/1052,
  50559. bottom: 21/1206
  50560. }
  50561. },
  50562. },
  50563. [
  50564. {
  50565. name: "Compressed",
  50566. height: math.unit(8, "feet")
  50567. },
  50568. {
  50569. name: "Normal",
  50570. height: math.unit(14, "feet"),
  50571. default: true
  50572. },
  50573. ]
  50574. ))
  50575. characterMakers.push(() => makeCharacter(
  50576. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50577. {
  50578. front: {
  50579. height: math.unit(17, "feet"),
  50580. weight: math.unit(6500, "lb"),
  50581. name: "Front",
  50582. image: {
  50583. source: "./media/characters/deidra/front.svg",
  50584. extra: 1201/1081,
  50585. bottom: 16/1217
  50586. }
  50587. },
  50588. },
  50589. [
  50590. {
  50591. name: "Compressed",
  50592. height: math.unit(9 + 6/12, "feet")
  50593. },
  50594. {
  50595. name: "Normal",
  50596. height: math.unit(17, "feet"),
  50597. default: true
  50598. },
  50599. ]
  50600. ))
  50601. characterMakers.push(() => makeCharacter(
  50602. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50603. {
  50604. front: {
  50605. height: math.unit(7 + 4/12, "feet"),
  50606. weight: math.unit(280, "lb"),
  50607. name: "Front",
  50608. image: {
  50609. source: "./media/characters/freki-yrmori/front.svg",
  50610. extra: 1286/1182,
  50611. bottom: 29/1315
  50612. }
  50613. },
  50614. maw: {
  50615. height: math.unit(0.9, "feet"),
  50616. name: "Maw",
  50617. image: {
  50618. source: "./media/characters/freki-yrmori/maw.svg"
  50619. }
  50620. },
  50621. },
  50622. [
  50623. {
  50624. name: "Normal",
  50625. height: math.unit(7 + 4/12, "feet"),
  50626. default: true
  50627. },
  50628. {
  50629. name: "Macro",
  50630. height: math.unit(38.5, "meters")
  50631. },
  50632. ]
  50633. ))
  50634. characterMakers.push(() => makeCharacter(
  50635. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50636. {
  50637. side: {
  50638. height: math.unit(47.2, "meters"),
  50639. weight: math.unit(10000, "tons"),
  50640. name: "Side",
  50641. image: {
  50642. source: "./media/characters/aetherios/side.svg",
  50643. extra: 2363/642,
  50644. bottom: 221/2584
  50645. }
  50646. },
  50647. top: {
  50648. height: math.unit(240, "meters"),
  50649. weight: math.unit(10000, "tons"),
  50650. name: "Top",
  50651. image: {
  50652. source: "./media/characters/aetherios/top.svg"
  50653. }
  50654. },
  50655. bottom: {
  50656. height: math.unit(240, "meters"),
  50657. weight: math.unit(10000, "tons"),
  50658. name: "Bottom",
  50659. image: {
  50660. source: "./media/characters/aetherios/bottom.svg"
  50661. }
  50662. },
  50663. head: {
  50664. height: math.unit(38.6, "meters"),
  50665. name: "Head",
  50666. image: {
  50667. source: "./media/characters/aetherios/head.svg",
  50668. extra: 1335/1112,
  50669. bottom: 0/1335
  50670. }
  50671. },
  50672. front: {
  50673. height: math.unit(29, "meters"),
  50674. name: "Front",
  50675. image: {
  50676. source: "./media/characters/aetherios/front.svg",
  50677. extra: 1266/953,
  50678. bottom: 158/1424
  50679. }
  50680. },
  50681. maw: {
  50682. height: math.unit(16.37, "meters"),
  50683. name: "Maw",
  50684. image: {
  50685. source: "./media/characters/aetherios/maw.svg",
  50686. extra: 748/637,
  50687. bottom: 0/748
  50688. },
  50689. extraAttributes: {
  50690. preyCapacity: {
  50691. name: "Capacity",
  50692. power: 3,
  50693. type: "volume",
  50694. base: math.unit(1000, "people")
  50695. },
  50696. tongueSize: {
  50697. name: "Tongue Size",
  50698. power: 2,
  50699. type: "area",
  50700. base: math.unit(21, "m^2")
  50701. }
  50702. }
  50703. },
  50704. forepaw: {
  50705. height: math.unit(18, "meters"),
  50706. name: "Forepaw",
  50707. image: {
  50708. source: "./media/characters/aetherios/forepaw.svg"
  50709. }
  50710. },
  50711. hindpaw: {
  50712. height: math.unit(23, "meters"),
  50713. name: "Hindpaw",
  50714. image: {
  50715. source: "./media/characters/aetherios/hindpaw.svg"
  50716. }
  50717. },
  50718. genitals: {
  50719. height: math.unit(42, "meters"),
  50720. name: "Genitals",
  50721. image: {
  50722. source: "./media/characters/aetherios/genitals.svg"
  50723. }
  50724. },
  50725. },
  50726. [
  50727. {
  50728. name: "Normal",
  50729. height: math.unit(47.2, "meters"),
  50730. default: true
  50731. },
  50732. {
  50733. name: "Macro",
  50734. height: math.unit(160, "meters")
  50735. },
  50736. {
  50737. name: "Mega",
  50738. height: math.unit(1.87, "km")
  50739. },
  50740. {
  50741. name: "Giga",
  50742. height: math.unit(40000, "km")
  50743. },
  50744. {
  50745. name: "Stellar",
  50746. height: math.unit(158000000, "km")
  50747. },
  50748. {
  50749. name: "Cosmic",
  50750. height: math.unit(9.46e12, "km")
  50751. },
  50752. ]
  50753. ))
  50754. characterMakers.push(() => makeCharacter(
  50755. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50756. {
  50757. front: {
  50758. height: math.unit(5 + 4/12, "feet"),
  50759. weight: math.unit(80, "lb"),
  50760. name: "Front",
  50761. image: {
  50762. source: "./media/characters/mizu-gieeg/front.svg",
  50763. extra: 850/709,
  50764. bottom: 52/902
  50765. }
  50766. },
  50767. back: {
  50768. height: math.unit(5 + 4/12, "feet"),
  50769. weight: math.unit(80, "lb"),
  50770. name: "Back",
  50771. image: {
  50772. source: "./media/characters/mizu-gieeg/back.svg",
  50773. extra: 882/745,
  50774. bottom: 25/907
  50775. }
  50776. },
  50777. },
  50778. [
  50779. {
  50780. name: "Normal",
  50781. height: math.unit(5 + 4/12, "feet"),
  50782. default: true
  50783. },
  50784. ]
  50785. ))
  50786. characterMakers.push(() => makeCharacter(
  50787. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50788. {
  50789. front: {
  50790. height: math.unit(6, "feet"),
  50791. name: "Front",
  50792. image: {
  50793. source: "./media/characters/roselle-st-papier/front.svg",
  50794. extra: 1430/1280,
  50795. bottom: 37/1467
  50796. }
  50797. },
  50798. back: {
  50799. height: math.unit(6, "feet"),
  50800. name: "Back",
  50801. image: {
  50802. source: "./media/characters/roselle-st-papier/back.svg",
  50803. extra: 1491/1296,
  50804. bottom: 23/1514
  50805. }
  50806. },
  50807. ear: {
  50808. height: math.unit(1.26, "feet"),
  50809. name: "Ear",
  50810. image: {
  50811. source: "./media/characters/roselle-st-papier/ear.svg"
  50812. }
  50813. },
  50814. },
  50815. [
  50816. {
  50817. name: "Normal",
  50818. height: math.unit(150, "feet"),
  50819. default: true
  50820. },
  50821. ]
  50822. ))
  50823. characterMakers.push(() => makeCharacter(
  50824. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50825. {
  50826. front: {
  50827. height: math.unit(1, "inches"),
  50828. name: "Front",
  50829. image: {
  50830. source: "./media/characters/valargent/front.svg",
  50831. extra: 1825/1694,
  50832. bottom: 62/1887
  50833. }
  50834. },
  50835. back: {
  50836. height: math.unit(1, "inches"),
  50837. name: "Back",
  50838. image: {
  50839. source: "./media/characters/valargent/back.svg",
  50840. extra: 1775/1682,
  50841. bottom: 88/1863
  50842. }
  50843. },
  50844. },
  50845. [
  50846. {
  50847. name: "Micro",
  50848. height: math.unit(1, "inch"),
  50849. default: true
  50850. },
  50851. ]
  50852. ))
  50853. characterMakers.push(() => makeCharacter(
  50854. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50855. {
  50856. front: {
  50857. height: math.unit(3.4, "meters"),
  50858. name: "Front",
  50859. image: {
  50860. source: "./media/characters/zarina/front.svg",
  50861. extra: 1733/1425,
  50862. bottom: 93/1826
  50863. }
  50864. },
  50865. squatting: {
  50866. height: math.unit(2.14, "meters"),
  50867. name: "Squatting",
  50868. image: {
  50869. source: "./media/characters/zarina/squatting.svg",
  50870. extra: 1073/788,
  50871. bottom: 63/1136
  50872. }
  50873. },
  50874. back: {
  50875. height: math.unit(2.14, "meters"),
  50876. name: "Back",
  50877. image: {
  50878. source: "./media/characters/zarina/back.svg",
  50879. extra: 1128/885,
  50880. bottom: 0/1128
  50881. }
  50882. },
  50883. },
  50884. [
  50885. {
  50886. name: "Normal",
  50887. height: math.unit(3.4, "meters"),
  50888. default: true
  50889. },
  50890. {
  50891. name: "Big",
  50892. height: math.unit(5, "meters")
  50893. },
  50894. {
  50895. name: "Macro",
  50896. height: math.unit(110, "meters")
  50897. },
  50898. ]
  50899. ))
  50900. characterMakers.push(() => makeCharacter(
  50901. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50902. {
  50903. front: {
  50904. height: math.unit(7, "feet"),
  50905. name: "Front",
  50906. image: {
  50907. source: "./media/characters/ventus-astro-fox/front.svg",
  50908. extra: 1792/1623,
  50909. bottom: 28/1820
  50910. }
  50911. },
  50912. back: {
  50913. height: math.unit(7, "feet"),
  50914. name: "Back",
  50915. image: {
  50916. source: "./media/characters/ventus-astro-fox/back.svg",
  50917. extra: 1789/1620,
  50918. bottom: 31/1820
  50919. }
  50920. },
  50921. outfit: {
  50922. height: math.unit(7, "feet"),
  50923. name: "Outfit",
  50924. image: {
  50925. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50926. extra: 1054/925,
  50927. bottom: 15/1069
  50928. }
  50929. },
  50930. head: {
  50931. height: math.unit(1.12, "feet"),
  50932. name: "Head",
  50933. image: {
  50934. source: "./media/characters/ventus-astro-fox/head.svg",
  50935. extra: 866/504,
  50936. bottom: 0/866
  50937. }
  50938. },
  50939. hand: {
  50940. height: math.unit(1, "feet"),
  50941. name: "Hand",
  50942. image: {
  50943. source: "./media/characters/ventus-astro-fox/hand.svg"
  50944. }
  50945. },
  50946. paw: {
  50947. height: math.unit(1.5, "feet"),
  50948. name: "Paw",
  50949. image: {
  50950. source: "./media/characters/ventus-astro-fox/paw.svg"
  50951. }
  50952. },
  50953. },
  50954. [
  50955. {
  50956. name: "Normal",
  50957. height: math.unit(7, "feet"),
  50958. default: true
  50959. },
  50960. {
  50961. name: "Macro",
  50962. height: math.unit(200, "feet")
  50963. },
  50964. {
  50965. name: "Cosmic",
  50966. height: math.unit(3, "universes")
  50967. },
  50968. ]
  50969. ))
  50970. characterMakers.push(() => makeCharacter(
  50971. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50972. {
  50973. front: {
  50974. height: math.unit(3, "meters"),
  50975. weight: math.unit(7000, "lb"),
  50976. name: "Front",
  50977. image: {
  50978. source: "./media/characters/core-t/front.svg",
  50979. extra: 5729/4941,
  50980. bottom: 1129/6858
  50981. }
  50982. },
  50983. },
  50984. [
  50985. {
  50986. name: "Big",
  50987. height: math.unit(3, "meters"),
  50988. default: true
  50989. },
  50990. ]
  50991. ))
  50992. characterMakers.push(() => makeCharacter(
  50993. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50994. {
  50995. normal: {
  50996. height: math.unit(6 + 6/12, "feet"),
  50997. weight: math.unit(275, "lb"),
  50998. name: "Front",
  50999. image: {
  51000. source: "./media/characters/cadbunny/normal.svg",
  51001. extra: 1129/947,
  51002. bottom: 93/1222
  51003. },
  51004. default: true,
  51005. form: "normal"
  51006. },
  51007. gigantamax: {
  51008. height: math.unit(26, "feet"),
  51009. weight: math.unit(16000, "lb"),
  51010. name: "Front",
  51011. image: {
  51012. source: "./media/characters/cadbunny/gigantamax.svg",
  51013. extra: 1133/944,
  51014. bottom: 90/1223
  51015. },
  51016. default: true,
  51017. form: "gigantamax"
  51018. },
  51019. },
  51020. [
  51021. {
  51022. name: "Normal",
  51023. height: math.unit(6 + 6/12, "feet"),
  51024. default: true,
  51025. form: "normal"
  51026. },
  51027. {
  51028. name: "Small",
  51029. height: math.unit(26, "feet"),
  51030. default: true,
  51031. form: "gigantamax"
  51032. },
  51033. {
  51034. name: "Large",
  51035. height: math.unit(78, "feet"),
  51036. form: "gigantamax"
  51037. },
  51038. ],
  51039. {
  51040. "normal": {
  51041. name: "Normal",
  51042. default: true
  51043. },
  51044. "gigantamax": {
  51045. name: "Gigantamax"
  51046. }
  51047. }
  51048. ))
  51049. characterMakers.push(() => makeCharacter(
  51050. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51051. {
  51052. anthroFront: {
  51053. height: math.unit(8, "feet"),
  51054. weight: math.unit(300, "lb"),
  51055. name: "Front",
  51056. image: {
  51057. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51058. extra: 1272/1176,
  51059. bottom: 53/1325
  51060. },
  51061. form: "anthro",
  51062. default: true
  51063. },
  51064. feralSide: {
  51065. height: math.unit(4, "feet"),
  51066. weight: math.unit(250, "lb"),
  51067. name: "Side",
  51068. image: {
  51069. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51070. extra: 731/621,
  51071. bottom: 0/731
  51072. },
  51073. form: "feral",
  51074. default: true
  51075. },
  51076. },
  51077. [
  51078. {
  51079. name: "Regular",
  51080. height: math.unit(8, "feet"),
  51081. form: "anthro"
  51082. },
  51083. {
  51084. name: "Macro",
  51085. height: math.unit(250, "feet"),
  51086. form: "anthro",
  51087. default: true
  51088. },
  51089. {
  51090. name: "Regular",
  51091. height: math.unit(4, "feet"),
  51092. form: "feral"
  51093. },
  51094. {
  51095. name: "Macro",
  51096. height: math.unit(125, "feet"),
  51097. form: "feral",
  51098. default: true
  51099. },
  51100. ],
  51101. {
  51102. "anthro": {
  51103. name: "Anthro",
  51104. default: true
  51105. },
  51106. "feral": {
  51107. name: "Feral",
  51108. },
  51109. }
  51110. ))
  51111. characterMakers.push(() => makeCharacter(
  51112. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51113. {
  51114. front: {
  51115. height: math.unit(11 + 10/12, "feet"),
  51116. weight: math.unit(1587, "kg"),
  51117. name: "Front",
  51118. image: {
  51119. source: "./media/characters/maple-javira-dragon/front.svg",
  51120. extra: 1136/744,
  51121. bottom: 73/1209
  51122. }
  51123. },
  51124. side: {
  51125. height: math.unit(11 + 10/12, "feet"),
  51126. weight: math.unit(1587, "kg"),
  51127. name: "Side",
  51128. image: {
  51129. source: "./media/characters/maple-javira-dragon/side.svg",
  51130. extra: 712/505,
  51131. bottom: 17/729
  51132. }
  51133. },
  51134. head: {
  51135. height: math.unit(8.05, "feet"),
  51136. name: "Head",
  51137. image: {
  51138. source: "./media/characters/maple-javira-dragon/head.svg",
  51139. extra: 1420/1344,
  51140. bottom: 0/1420
  51141. }
  51142. },
  51143. },
  51144. [
  51145. {
  51146. name: "Normal",
  51147. height: math.unit(11 + 10/12, "feet"),
  51148. default: true
  51149. },
  51150. ]
  51151. ))
  51152. characterMakers.push(() => makeCharacter(
  51153. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51154. {
  51155. front: {
  51156. height: math.unit(117, "cm"),
  51157. weight: math.unit(50, "kg"),
  51158. name: "Front",
  51159. image: {
  51160. source: "./media/characters/sonia-wyverntail/front.svg",
  51161. extra: 708/592,
  51162. bottom: 25/733
  51163. }
  51164. },
  51165. },
  51166. [
  51167. {
  51168. name: "Normal",
  51169. height: math.unit(117, "cm"),
  51170. default: true
  51171. },
  51172. ]
  51173. ))
  51174. characterMakers.push(() => makeCharacter(
  51175. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51176. {
  51177. front: {
  51178. height: math.unit(6 + 5/12, "feet"),
  51179. name: "Front",
  51180. image: {
  51181. source: "./media/characters/micah/front.svg",
  51182. extra: 1758/1546,
  51183. bottom: 214/1972
  51184. }
  51185. },
  51186. },
  51187. [
  51188. {
  51189. name: "Normal",
  51190. height: math.unit(6 + 5/12, "feet"),
  51191. default: true
  51192. },
  51193. ]
  51194. ))
  51195. characterMakers.push(() => makeCharacter(
  51196. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51197. {
  51198. front: {
  51199. height: math.unit(5 + 10/12, "feet"),
  51200. weight: math.unit(220, "lb"),
  51201. name: "Front",
  51202. image: {
  51203. source: "./media/characters/zarya/front.svg",
  51204. extra: 593/572,
  51205. bottom: 50/643
  51206. }
  51207. },
  51208. back: {
  51209. height: math.unit(5 + 10/12, "feet"),
  51210. weight: math.unit(220, "lb"),
  51211. name: "Back",
  51212. image: {
  51213. source: "./media/characters/zarya/back.svg",
  51214. extra: 603/582,
  51215. bottom: 38/641
  51216. }
  51217. },
  51218. },
  51219. [
  51220. {
  51221. name: "Normal",
  51222. height: math.unit(5 + 10/12, "feet"),
  51223. default: true
  51224. },
  51225. ]
  51226. ))
  51227. characterMakers.push(() => makeCharacter(
  51228. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51229. {
  51230. front: {
  51231. height: math.unit(7.5, "feet"),
  51232. name: "Front",
  51233. image: {
  51234. source: "./media/characters/sven-hatisson/front.svg",
  51235. extra: 917/857,
  51236. bottom: 42/959
  51237. }
  51238. },
  51239. back: {
  51240. height: math.unit(7.5, "feet"),
  51241. name: "Back",
  51242. image: {
  51243. source: "./media/characters/sven-hatisson/back.svg",
  51244. extra: 903/856,
  51245. bottom: 15/918
  51246. }
  51247. },
  51248. },
  51249. [
  51250. {
  51251. name: "Base Height",
  51252. height: math.unit(7.5, "feet")
  51253. },
  51254. {
  51255. name: "Usual Height",
  51256. height: math.unit(13.5, "feet"),
  51257. default: true
  51258. },
  51259. {
  51260. name: "Smaller Macro",
  51261. height: math.unit(85, "feet")
  51262. },
  51263. {
  51264. name: "Moderate Macro",
  51265. height: math.unit(320, "feet")
  51266. },
  51267. {
  51268. name: "Large Macro",
  51269. height: math.unit(1000, "feet")
  51270. },
  51271. {
  51272. name: "Largest Size",
  51273. height: math.unit(2, "miles")
  51274. },
  51275. ]
  51276. ))
  51277. characterMakers.push(() => makeCharacter(
  51278. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51279. {
  51280. side: {
  51281. height: math.unit(1.8, "meters"),
  51282. weight: math.unit(275, "kg"),
  51283. name: "Side",
  51284. image: {
  51285. source: "./media/characters/terra/side.svg",
  51286. extra: 1273/1147,
  51287. bottom: 0/1273
  51288. }
  51289. },
  51290. },
  51291. [
  51292. {
  51293. name: "Normal",
  51294. height: math.unit(16.2, "meters"),
  51295. default: true
  51296. },
  51297. ]
  51298. ))
  51299. characterMakers.push(() => makeCharacter(
  51300. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51301. {
  51302. borzoiFront: {
  51303. height: math.unit(6 + 9/12, "feet"),
  51304. name: "Front",
  51305. image: {
  51306. source: "./media/characters/rae/borzoi-front.svg",
  51307. extra: 1161/1098,
  51308. bottom: 31/1192
  51309. },
  51310. form: "borzoi",
  51311. default: true
  51312. },
  51313. werewolfFront: {
  51314. height: math.unit(8 + 7/12, "feet"),
  51315. name: "Front",
  51316. image: {
  51317. source: "./media/characters/rae/werewolf-front.svg",
  51318. extra: 1411/1334,
  51319. bottom: 127/1538
  51320. },
  51321. form: "werewolf",
  51322. default: true
  51323. },
  51324. },
  51325. [
  51326. {
  51327. name: "Normal",
  51328. height: math.unit(6 + 9/12, "feet"),
  51329. default: true,
  51330. form: "borzoi"
  51331. },
  51332. {
  51333. name: "Normal",
  51334. height: math.unit(8 + 7/12, "feet"),
  51335. default: true,
  51336. form: "werewolf"
  51337. },
  51338. ],
  51339. {
  51340. "borzoi": {
  51341. name: "Borzoi",
  51342. default: true
  51343. },
  51344. "werewolf": {
  51345. name: "Werewolf",
  51346. },
  51347. }
  51348. ))
  51349. characterMakers.push(() => makeCharacter(
  51350. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51351. {
  51352. front: {
  51353. height: math.unit(8 + 7/12, "feet"),
  51354. weight: math.unit(482, "lb"),
  51355. name: "Front",
  51356. image: {
  51357. source: "./media/characters/kit/front.svg",
  51358. extra: 1247/1103,
  51359. bottom: 41/1288
  51360. }
  51361. },
  51362. back: {
  51363. height: math.unit(8 + 7/12, "feet"),
  51364. weight: math.unit(482, "lb"),
  51365. name: "Back",
  51366. image: {
  51367. source: "./media/characters/kit/back.svg",
  51368. extra: 1252/1123,
  51369. bottom: 21/1273
  51370. }
  51371. },
  51372. paw: {
  51373. height: math.unit(1.46, "feet"),
  51374. name: "Paw",
  51375. image: {
  51376. source: "./media/characters/kit/paw.svg"
  51377. }
  51378. },
  51379. },
  51380. [
  51381. {
  51382. name: "Normal",
  51383. height: math.unit(2.61, "meters"),
  51384. default: true
  51385. },
  51386. {
  51387. name: "\"Tall\"",
  51388. height: math.unit(8.21, "meters")
  51389. },
  51390. {
  51391. name: "Tall",
  51392. height: math.unit(19.6, "meters")
  51393. },
  51394. {
  51395. name: "Very Tall",
  51396. height: math.unit(57.91, "meters")
  51397. },
  51398. {
  51399. name: "Semi-Macro",
  51400. height: math.unit(138.64, "meters")
  51401. },
  51402. {
  51403. name: "Macro",
  51404. height: math.unit(831.99, "meters")
  51405. },
  51406. {
  51407. name: "EX-Macro",
  51408. height: math.unit(96451121, "meters")
  51409. },
  51410. {
  51411. name: "S1-Omnipotent",
  51412. height: math.unit(4.42074e+9, "meters")
  51413. },
  51414. {
  51415. name: "S2-Omnipotent",
  51416. height: math.unit(9.42074e+17, "meters")
  51417. },
  51418. {
  51419. name: "Omnipotent",
  51420. height: math.unit(4.23112e+24, "meters")
  51421. },
  51422. {
  51423. name: "Hypergod",
  51424. height: math.unit(5.05176e+27, "meters")
  51425. },
  51426. {
  51427. name: "Hypergod-EX",
  51428. height: math.unit(9.45532e+49, "meters")
  51429. },
  51430. {
  51431. name: "Hypergod-SP",
  51432. height: math.unit(9.45532e+195, "meters")
  51433. },
  51434. ]
  51435. ))
  51436. characterMakers.push(() => makeCharacter(
  51437. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51438. {
  51439. side: {
  51440. height: math.unit(0.6, "meters"),
  51441. weight: math.unit(24, "kg"),
  51442. name: "Side",
  51443. image: {
  51444. source: "./media/characters/celeste/side.svg",
  51445. extra: 810/517,
  51446. bottom: 53/863
  51447. }
  51448. },
  51449. },
  51450. [
  51451. {
  51452. name: "Velociraptor",
  51453. height: math.unit(0.6, "meters"),
  51454. default: true
  51455. },
  51456. {
  51457. name: "Utahraptor",
  51458. height: math.unit(1.8, "meters")
  51459. },
  51460. {
  51461. name: "Gallimimus",
  51462. height: math.unit(4.0, "meters")
  51463. },
  51464. {
  51465. name: "Large",
  51466. height: math.unit(20, "meters")
  51467. },
  51468. {
  51469. name: "Planetary",
  51470. height: math.unit(50, "megameters")
  51471. },
  51472. {
  51473. name: "Stellar",
  51474. height: math.unit(1.5, "gigameters")
  51475. },
  51476. {
  51477. name: "Galactic",
  51478. height: math.unit(100, "exameters")
  51479. },
  51480. ]
  51481. ))
  51482. characterMakers.push(() => makeCharacter(
  51483. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51484. {
  51485. front: {
  51486. height: math.unit(6, "feet"),
  51487. weight: math.unit(210, "lb"),
  51488. name: "Front",
  51489. image: {
  51490. source: "./media/characters/glacia/front.svg",
  51491. extra: 958/901,
  51492. bottom: 45/1003
  51493. }
  51494. },
  51495. },
  51496. [
  51497. {
  51498. name: "Macro",
  51499. height: math.unit(1000, "meters"),
  51500. default: true
  51501. },
  51502. ]
  51503. ))
  51504. characterMakers.push(() => makeCharacter(
  51505. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51506. {
  51507. front: {
  51508. height: math.unit(4, "meters"),
  51509. name: "Front",
  51510. image: {
  51511. source: "./media/characters/giri/front.svg",
  51512. extra: 966/894,
  51513. bottom: 21/987
  51514. }
  51515. },
  51516. },
  51517. [
  51518. {
  51519. name: "Normal",
  51520. height: math.unit(4, "meters"),
  51521. default: true
  51522. },
  51523. ]
  51524. ))
  51525. characterMakers.push(() => makeCharacter(
  51526. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51527. {
  51528. back: {
  51529. height: math.unit(4, "feet"),
  51530. weight: math.unit(37, "lb"),
  51531. name: "Back",
  51532. image: {
  51533. source: "./media/characters/tin/back.svg",
  51534. extra: 845/780,
  51535. bottom: 28/873
  51536. }
  51537. },
  51538. },
  51539. [
  51540. {
  51541. name: "Normal",
  51542. height: math.unit(4, "feet"),
  51543. default: true
  51544. },
  51545. ]
  51546. ))
  51547. characterMakers.push(() => makeCharacter(
  51548. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51549. {
  51550. front: {
  51551. height: math.unit(25, "feet"),
  51552. name: "Front",
  51553. image: {
  51554. source: "./media/characters/cadenza-vivace/front.svg",
  51555. extra: 1842/1578,
  51556. bottom: 30/1872
  51557. }
  51558. },
  51559. },
  51560. [
  51561. {
  51562. name: "Macro",
  51563. height: math.unit(25, "feet"),
  51564. default: true
  51565. },
  51566. ]
  51567. ))
  51568. characterMakers.push(() => makeCharacter(
  51569. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51570. {
  51571. front: {
  51572. height: math.unit(10, "feet"),
  51573. weight: math.unit(625, "kg"),
  51574. name: "Front",
  51575. image: {
  51576. source: "./media/characters/zain/front.svg",
  51577. extra: 1682/1498,
  51578. bottom: 223/1905
  51579. }
  51580. },
  51581. back: {
  51582. height: math.unit(10, "feet"),
  51583. weight: math.unit(625, "kg"),
  51584. name: "Back",
  51585. image: {
  51586. source: "./media/characters/zain/back.svg",
  51587. extra: 1814/1657,
  51588. bottom: 152/1966
  51589. }
  51590. },
  51591. head: {
  51592. height: math.unit(10, "feet"),
  51593. weight: math.unit(625, "kg"),
  51594. name: "Head",
  51595. image: {
  51596. source: "./media/characters/zain/head.svg",
  51597. extra: 1059/762,
  51598. bottom: 0/1059
  51599. }
  51600. },
  51601. },
  51602. [
  51603. {
  51604. name: "Normal",
  51605. height: math.unit(10, "feet"),
  51606. default: true
  51607. },
  51608. ]
  51609. ))
  51610. characterMakers.push(() => makeCharacter(
  51611. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51612. {
  51613. front: {
  51614. height: math.unit(6 + 5/12, "feet"),
  51615. weight: math.unit(750, "lb"),
  51616. name: "Front",
  51617. image: {
  51618. source: "./media/characters/ruchex/front.svg",
  51619. extra: 877/820,
  51620. bottom: 17/894
  51621. },
  51622. extraAttributes: {
  51623. "width": {
  51624. name: "Width",
  51625. power: 1,
  51626. type: "length",
  51627. base: math.unit(4.757, "feet")
  51628. },
  51629. }
  51630. },
  51631. },
  51632. [
  51633. {
  51634. name: "Normal",
  51635. height: math.unit(6 + 5/12, "feet"),
  51636. default: true
  51637. },
  51638. ]
  51639. ))
  51640. characterMakers.push(() => makeCharacter(
  51641. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51642. {
  51643. dressedFront: {
  51644. height: math.unit(191, "cm"),
  51645. weight: math.unit(80, "kg"),
  51646. name: "Front",
  51647. image: {
  51648. source: "./media/characters/buster/dressed-front.svg",
  51649. extra: 1022/973,
  51650. bottom: 69/1091
  51651. }
  51652. },
  51653. dressedBack: {
  51654. height: math.unit(191, "cm"),
  51655. weight: math.unit(80, "kg"),
  51656. name: "Back",
  51657. image: {
  51658. source: "./media/characters/buster/dressed-back.svg",
  51659. extra: 1018/970,
  51660. bottom: 55/1073
  51661. }
  51662. },
  51663. nudeFront: {
  51664. height: math.unit(191, "cm"),
  51665. weight: math.unit(80, "kg"),
  51666. name: "Front (Nude)",
  51667. image: {
  51668. source: "./media/characters/buster/nude-front.svg",
  51669. extra: 1022/973,
  51670. bottom: 69/1091
  51671. }
  51672. },
  51673. nudeBack: {
  51674. height: math.unit(191, "cm"),
  51675. weight: math.unit(80, "kg"),
  51676. name: "Back (Nude)",
  51677. image: {
  51678. source: "./media/characters/buster/nude-back.svg",
  51679. extra: 1018/970,
  51680. bottom: 55/1073
  51681. }
  51682. },
  51683. dick: {
  51684. height: math.unit(2.59, "feet"),
  51685. name: "Dick",
  51686. image: {
  51687. source: "./media/characters/buster/dick.svg"
  51688. }
  51689. },
  51690. ass: {
  51691. height: math.unit(1.2, "feet"),
  51692. name: "Ass",
  51693. image: {
  51694. source: "./media/characters/buster/ass.svg"
  51695. }
  51696. },
  51697. },
  51698. [
  51699. {
  51700. name: "Normal",
  51701. height: math.unit(191, "cm"),
  51702. default: true
  51703. },
  51704. ]
  51705. ))
  51706. characterMakers.push(() => makeCharacter(
  51707. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51708. {
  51709. side: {
  51710. height: math.unit(8.1, "feet"),
  51711. weight: math.unit(3500, "lb"),
  51712. name: "Side",
  51713. image: {
  51714. source: "./media/characters/sonya/side.svg",
  51715. extra: 1730/1317,
  51716. bottom: 86/1816
  51717. }
  51718. },
  51719. },
  51720. [
  51721. {
  51722. name: "Normal",
  51723. height: math.unit(8.1, "feet"),
  51724. default: true
  51725. },
  51726. ]
  51727. ))
  51728. characterMakers.push(() => makeCharacter(
  51729. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51730. {
  51731. front: {
  51732. height: math.unit(6, "feet"),
  51733. weight: math.unit(150, "lb"),
  51734. name: "Front",
  51735. image: {
  51736. source: "./media/characters/cadence-andrysiak/front.svg",
  51737. extra: 1164/1121,
  51738. bottom: 60/1224
  51739. }
  51740. },
  51741. back: {
  51742. height: math.unit(6, "feet"),
  51743. weight: math.unit(150, "lb"),
  51744. name: "Back",
  51745. image: {
  51746. source: "./media/characters/cadence-andrysiak/back.svg",
  51747. extra: 1200/1165,
  51748. bottom: 9/1209
  51749. }
  51750. },
  51751. dressed: {
  51752. height: math.unit(6, "feet"),
  51753. weight: math.unit(150, "lb"),
  51754. name: "Dressed",
  51755. image: {
  51756. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51757. extra: 1164/1121,
  51758. bottom: 60/1224
  51759. }
  51760. },
  51761. },
  51762. [
  51763. {
  51764. name: "Micro",
  51765. height: math.unit(1, "mm")
  51766. },
  51767. {
  51768. name: "Normal",
  51769. height: math.unit(6, "feet"),
  51770. default: true
  51771. },
  51772. ]
  51773. ))
  51774. characterMakers.push(() => makeCharacter(
  51775. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51776. {
  51777. front: {
  51778. height: math.unit(60, "inches"),
  51779. weight: math.unit(16, "lb"),
  51780. preyCapacity: math.unit(80, "liters"),
  51781. name: "Front",
  51782. image: {
  51783. source: "./media/characters/penny-lynx/front.svg",
  51784. extra: 1959/1769,
  51785. bottom: 49/2008
  51786. }
  51787. },
  51788. },
  51789. [
  51790. {
  51791. name: "Nokia",
  51792. height: math.unit(2, "inches")
  51793. },
  51794. {
  51795. name: "Desktop",
  51796. height: math.unit(24, "inches")
  51797. },
  51798. {
  51799. name: "TV",
  51800. height: math.unit(60, "inches")
  51801. },
  51802. {
  51803. name: "Jumbotron",
  51804. height: math.unit(12, "feet")
  51805. },
  51806. {
  51807. name: "Billboard",
  51808. height: math.unit(48, "feet"),
  51809. default: true
  51810. },
  51811. {
  51812. name: "IMAX",
  51813. height: math.unit(96, "feet")
  51814. },
  51815. {
  51816. name: "SINGULARITY",
  51817. height: math.unit(864938, "miles")
  51818. },
  51819. ]
  51820. ))
  51821. characterMakers.push(() => makeCharacter(
  51822. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51823. {
  51824. front: {
  51825. height: math.unit(5 + 4/12, "feet"),
  51826. weight: math.unit(230, "lb"),
  51827. name: "Front",
  51828. image: {
  51829. source: "./media/characters/sukebe/front.svg",
  51830. extra: 2130/2038,
  51831. bottom: 90/2220
  51832. }
  51833. },
  51834. back: {
  51835. height: math.unit(3.48, "feet"),
  51836. weight: math.unit(230, "lb"),
  51837. name: "Back",
  51838. image: {
  51839. source: "./media/characters/sukebe/back.svg",
  51840. extra: 1670/1604,
  51841. bottom: 0/1670
  51842. }
  51843. },
  51844. },
  51845. [
  51846. {
  51847. name: "Normal",
  51848. height: math.unit(5 + 4/12, "feet"),
  51849. default: true
  51850. },
  51851. ]
  51852. ))
  51853. characterMakers.push(() => makeCharacter(
  51854. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51855. {
  51856. front: {
  51857. height: math.unit(6, "feet"),
  51858. name: "Front",
  51859. image: {
  51860. source: "./media/characters/nylla/front.svg",
  51861. extra: 1868/1699,
  51862. bottom: 97/1965
  51863. }
  51864. },
  51865. back: {
  51866. height: math.unit(6, "feet"),
  51867. name: "Back",
  51868. image: {
  51869. source: "./media/characters/nylla/back.svg",
  51870. extra: 1889/1712,
  51871. bottom: 93/1982
  51872. }
  51873. },
  51874. frontNsfw: {
  51875. height: math.unit(6, "feet"),
  51876. name: "Front (NSFW)",
  51877. image: {
  51878. source: "./media/characters/nylla/front-nsfw.svg",
  51879. extra: 1868/1699,
  51880. bottom: 97/1965
  51881. },
  51882. extraAttributes: {
  51883. "dickLength": {
  51884. name: "Dick Length",
  51885. power: 1,
  51886. type: "length",
  51887. base: math.unit(1.4, "feet")
  51888. },
  51889. "cumVolume": {
  51890. name: "Cum Volume",
  51891. power: 3,
  51892. type: "volume",
  51893. base: math.unit(100, "mL")
  51894. },
  51895. }
  51896. },
  51897. backNsfw: {
  51898. height: math.unit(6, "feet"),
  51899. name: "Back (NSFW)",
  51900. image: {
  51901. source: "./media/characters/nylla/back-nsfw.svg",
  51902. extra: 1889/1712,
  51903. bottom: 93/1982
  51904. }
  51905. },
  51906. maw: {
  51907. height: math.unit(2.10, "feet"),
  51908. name: "Maw",
  51909. image: {
  51910. source: "./media/characters/nylla/maw.svg"
  51911. }
  51912. },
  51913. paws: {
  51914. height: math.unit(2.06, "feet"),
  51915. name: "Paws",
  51916. image: {
  51917. source: "./media/characters/nylla/paws.svg"
  51918. }
  51919. },
  51920. muzzle: {
  51921. height: math.unit(0.61, "feet"),
  51922. name: "Muzzle",
  51923. image: {
  51924. source: "./media/characters/nylla/muzzle.svg"
  51925. }
  51926. },
  51927. sheath: {
  51928. height: math.unit(1.305, "feet"),
  51929. name: "Sheath",
  51930. image: {
  51931. source: "./media/characters/nylla/sheath.svg"
  51932. }
  51933. },
  51934. },
  51935. [
  51936. {
  51937. name: "Micro",
  51938. height: math.unit(7.5, "inches")
  51939. },
  51940. {
  51941. name: "Normal",
  51942. height: math.unit(7, "feet"),
  51943. default: true
  51944. },
  51945. {
  51946. name: "Macro",
  51947. height: math.unit(60, "feet")
  51948. },
  51949. {
  51950. name: "Mega",
  51951. height: math.unit(200, "feet")
  51952. },
  51953. ]
  51954. ))
  51955. characterMakers.push(() => makeCharacter(
  51956. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51957. {
  51958. front: {
  51959. height: math.unit(10, "feet"),
  51960. weight: math.unit(2300, "lb"),
  51961. name: "Front",
  51962. image: {
  51963. source: "./media/characters/hunt3r/front.svg",
  51964. extra: 1909/1742,
  51965. bottom: 46/1955
  51966. }
  51967. },
  51968. },
  51969. [
  51970. {
  51971. name: "Normal",
  51972. height: math.unit(10, "feet"),
  51973. default: true
  51974. },
  51975. ]
  51976. ))
  51977. characterMakers.push(() => makeCharacter(
  51978. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51979. {
  51980. dressed: {
  51981. height: math.unit(11, "feet"),
  51982. weight: math.unit(18500, "lb"),
  51983. preyCapacity: math.unit(9, "people"),
  51984. name: "Dressed",
  51985. image: {
  51986. source: "./media/characters/cylphis/dressed.svg",
  51987. extra: 1028/1003,
  51988. bottom: 75/1103
  51989. },
  51990. },
  51991. undressed: {
  51992. height: math.unit(11, "feet"),
  51993. weight: math.unit(18500, "lb"),
  51994. preyCapacity: math.unit(9, "people"),
  51995. name: "Undressed",
  51996. image: {
  51997. source: "./media/characters/cylphis/undressed.svg",
  51998. extra: 1028/1003,
  51999. bottom: 75/1103
  52000. }
  52001. },
  52002. full: {
  52003. height: math.unit(11, "feet"),
  52004. weight: math.unit(18500 + 150*9, "lb"),
  52005. preyCapacity: math.unit(9, "people"),
  52006. name: "Full",
  52007. image: {
  52008. source: "./media/characters/cylphis/full.svg",
  52009. extra: 1028/1003,
  52010. bottom: 75/1103
  52011. }
  52012. },
  52013. },
  52014. [
  52015. {
  52016. name: "Small",
  52017. height: math.unit(8, "feet")
  52018. },
  52019. {
  52020. name: "Normal",
  52021. height: math.unit(11, "feet"),
  52022. default: true
  52023. },
  52024. ]
  52025. ))
  52026. characterMakers.push(() => makeCharacter(
  52027. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52028. {
  52029. front: {
  52030. height: math.unit(2 + 7/12, "feet"),
  52031. name: "Front",
  52032. image: {
  52033. source: "./media/characters/orishan/front.svg",
  52034. extra: 1058/1023,
  52035. bottom: 23/1081
  52036. }
  52037. },
  52038. back: {
  52039. height: math.unit(2 + 7/12, "feet"),
  52040. name: "Back",
  52041. image: {
  52042. source: "./media/characters/orishan/back.svg",
  52043. extra: 1058/1023,
  52044. bottom: 23/1081
  52045. }
  52046. },
  52047. },
  52048. [
  52049. {
  52050. name: "Micro",
  52051. height: math.unit(2, "cm")
  52052. },
  52053. {
  52054. name: "Normal",
  52055. height: math.unit(2 + 7/12, "feet"),
  52056. default: true
  52057. },
  52058. ]
  52059. ))
  52060. characterMakers.push(() => makeCharacter(
  52061. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52062. {
  52063. front: {
  52064. height: math.unit(3, "meters"),
  52065. weight: math.unit(508, "kg"),
  52066. name: "Front",
  52067. image: {
  52068. source: "./media/characters/seranis/front.svg",
  52069. extra: 1478/1454,
  52070. bottom: 41/1519
  52071. }
  52072. },
  52073. },
  52074. [
  52075. {
  52076. name: "Normal",
  52077. height: math.unit(3, "meters"),
  52078. default: true
  52079. },
  52080. {
  52081. name: "Macro",
  52082. height: math.unit(108, "meters")
  52083. },
  52084. {
  52085. name: "Megamacro",
  52086. height: math.unit(1250, "meters")
  52087. },
  52088. ]
  52089. ))
  52090. characterMakers.push(() => makeCharacter(
  52091. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52092. {
  52093. undressed: {
  52094. height: math.unit(5 + 3/12, "feet"),
  52095. name: "Undressed",
  52096. image: {
  52097. source: "./media/characters/ankou/undressed.svg",
  52098. extra: 1301/1213,
  52099. bottom: 87/1388
  52100. }
  52101. },
  52102. dressed: {
  52103. height: math.unit(5 + 3/12, "feet"),
  52104. name: "Dressed",
  52105. image: {
  52106. source: "./media/characters/ankou/dressed.svg",
  52107. extra: 1301/1213,
  52108. bottom: 87/1388
  52109. }
  52110. },
  52111. head: {
  52112. height: math.unit(1.61, "feet"),
  52113. name: "Head",
  52114. image: {
  52115. source: "./media/characters/ankou/head.svg"
  52116. }
  52117. },
  52118. },
  52119. [
  52120. {
  52121. name: "Normal",
  52122. height: math.unit(5 + 3/12, "feet"),
  52123. default: true
  52124. },
  52125. ]
  52126. ))
  52127. characterMakers.push(() => makeCharacter(
  52128. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52129. {
  52130. side: {
  52131. height: math.unit(6 + 3/12, "feet"),
  52132. weight: math.unit(200, "kg"),
  52133. name: "Side",
  52134. image: {
  52135. source: "./media/characters/juniper-skunktaur/side.svg",
  52136. extra: 1574/1229,
  52137. bottom: 38/1612
  52138. }
  52139. },
  52140. front: {
  52141. height: math.unit(6 + 3/12, "feet"),
  52142. weight: math.unit(200, "kg"),
  52143. name: "Front",
  52144. image: {
  52145. source: "./media/characters/juniper-skunktaur/front.svg",
  52146. extra: 1337/1278,
  52147. bottom: 22/1359
  52148. }
  52149. },
  52150. back: {
  52151. height: math.unit(6 + 3/12, "feet"),
  52152. weight: math.unit(200, "kg"),
  52153. name: "Back",
  52154. image: {
  52155. source: "./media/characters/juniper-skunktaur/back.svg",
  52156. extra: 1618/1273,
  52157. bottom: 13/1631
  52158. }
  52159. },
  52160. top: {
  52161. height: math.unit(2.62, "feet"),
  52162. weight: math.unit(200, "kg"),
  52163. name: "Top",
  52164. image: {
  52165. source: "./media/characters/juniper-skunktaur/top.svg"
  52166. }
  52167. },
  52168. },
  52169. [
  52170. {
  52171. name: "Normal",
  52172. height: math.unit(6 + 3/12, "feet"),
  52173. default: true
  52174. },
  52175. ]
  52176. ))
  52177. characterMakers.push(() => makeCharacter(
  52178. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52179. {
  52180. front: {
  52181. height: math.unit(20.5, "feet"),
  52182. name: "Front",
  52183. image: {
  52184. source: "./media/characters/rei/front.svg",
  52185. extra: 1349/1195,
  52186. bottom: 31/1380
  52187. }
  52188. },
  52189. back: {
  52190. height: math.unit(20.5, "feet"),
  52191. name: "Back",
  52192. image: {
  52193. source: "./media/characters/rei/back.svg",
  52194. extra: 1358/1204,
  52195. bottom: 22/1380
  52196. }
  52197. },
  52198. pawsDigi: {
  52199. height: math.unit(3.45, "feet"),
  52200. name: "Paws (Digi)",
  52201. image: {
  52202. source: "./media/characters/rei/paws-digi.svg"
  52203. }
  52204. },
  52205. pawsPlanti: {
  52206. height: math.unit(3.45, "feet"),
  52207. name: "Paws (Planti)",
  52208. image: {
  52209. source: "./media/characters/rei/paws-planti.svg"
  52210. }
  52211. },
  52212. },
  52213. [
  52214. {
  52215. name: "Normal",
  52216. height: math.unit(20.5, "feet"),
  52217. default: true
  52218. },
  52219. ]
  52220. ))
  52221. characterMakers.push(() => makeCharacter(
  52222. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52223. {
  52224. front: {
  52225. height: math.unit(5 + 11/12, "feet"),
  52226. name: "Front",
  52227. image: {
  52228. source: "./media/characters/carina/front.svg",
  52229. extra: 1720/1449,
  52230. bottom: 14/1734
  52231. }
  52232. },
  52233. back: {
  52234. height: math.unit(5 + 11/12, "feet"),
  52235. name: "Back",
  52236. image: {
  52237. source: "./media/characters/carina/back.svg",
  52238. extra: 1493/1445,
  52239. bottom: 17/1510
  52240. }
  52241. },
  52242. paw: {
  52243. height: math.unit(0.92, "feet"),
  52244. name: "Paw",
  52245. image: {
  52246. source: "./media/characters/carina/paw.svg"
  52247. }
  52248. },
  52249. },
  52250. [
  52251. {
  52252. name: "Normal",
  52253. height: math.unit(5 + 11/12, "feet"),
  52254. default: true
  52255. },
  52256. ]
  52257. ))
  52258. characterMakers.push(() => makeCharacter(
  52259. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52260. {
  52261. front: {
  52262. height: math.unit(4.88, "meters"),
  52263. name: "Front",
  52264. image: {
  52265. source: "./media/characters/maya/front.svg",
  52266. extra: 1222/1145,
  52267. bottom: 57/1279
  52268. }
  52269. },
  52270. },
  52271. [
  52272. {
  52273. name: "Normal",
  52274. height: math.unit(4.88, "meters"),
  52275. default: true
  52276. },
  52277. {
  52278. name: "Macro",
  52279. height: math.unit(38.1, "meters")
  52280. },
  52281. {
  52282. name: "Macro+",
  52283. height: math.unit(152.4, "meters")
  52284. },
  52285. {
  52286. name: "Macro++",
  52287. height: math.unit(16.09, "km")
  52288. },
  52289. {
  52290. name: "Mega-macro",
  52291. height: math.unit(700, "megameters")
  52292. },
  52293. ]
  52294. ))
  52295. characterMakers.push(() => makeCharacter(
  52296. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52297. {
  52298. front: {
  52299. height: math.unit(6 + 2/12, "feet"),
  52300. weight: math.unit(500, "lb"),
  52301. preyCapacity: math.unit(4, "people"),
  52302. name: "Front",
  52303. image: {
  52304. source: "./media/characters/yepir/front.svg"
  52305. }
  52306. },
  52307. side: {
  52308. height: math.unit(6 + 2/12, "feet"),
  52309. weight: math.unit(500, "lb"),
  52310. preyCapacity: math.unit(4, "people"),
  52311. name: "Side",
  52312. image: {
  52313. source: "./media/characters/yepir/side.svg"
  52314. }
  52315. },
  52316. paw: {
  52317. height: math.unit(1.05, "feet"),
  52318. name: "Paw",
  52319. image: {
  52320. source: "./media/characters/yepir/paw.svg"
  52321. }
  52322. },
  52323. },
  52324. [
  52325. {
  52326. name: "Normal",
  52327. height: math.unit(6 + 2/12, "feet"),
  52328. default: true
  52329. },
  52330. ]
  52331. ))
  52332. characterMakers.push(() => makeCharacter(
  52333. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52334. {
  52335. front: {
  52336. height: math.unit(5 + 4/12, "feet"),
  52337. name: "Front",
  52338. image: {
  52339. source: "./media/characters/russec/front.svg",
  52340. extra: 1926/1626,
  52341. bottom: 72/1998
  52342. }
  52343. },
  52344. back: {
  52345. height: math.unit(5 + 4/12, "feet"),
  52346. name: "Back",
  52347. image: {
  52348. source: "./media/characters/russec/back.svg",
  52349. extra: 1910/1591,
  52350. bottom: 48/1958
  52351. }
  52352. },
  52353. },
  52354. [
  52355. {
  52356. name: "Small",
  52357. height: math.unit(5 + 4/12, "feet")
  52358. },
  52359. {
  52360. name: "Normal",
  52361. height: math.unit(72, "feet"),
  52362. default: true
  52363. },
  52364. ]
  52365. ))
  52366. characterMakers.push(() => makeCharacter(
  52367. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52368. {
  52369. side: {
  52370. height: math.unit(12, "feet"),
  52371. name: "Side",
  52372. image: {
  52373. source: "./media/characters/cianus/side.svg",
  52374. extra: 808/526,
  52375. bottom: 61/869
  52376. }
  52377. },
  52378. },
  52379. [
  52380. {
  52381. name: "Normal",
  52382. height: math.unit(12, "feet"),
  52383. default: true
  52384. },
  52385. ]
  52386. ))
  52387. characterMakers.push(() => makeCharacter(
  52388. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52389. {
  52390. front: {
  52391. height: math.unit(9 + 6/12, "feet"),
  52392. weight: math.unit(300, "lb"),
  52393. name: "Front",
  52394. image: {
  52395. source: "./media/characters/ahab/front.svg",
  52396. extra: 1897/1868,
  52397. bottom: 121/2018
  52398. }
  52399. },
  52400. frontNsfw: {
  52401. height: math.unit(9 + 6/12, "feet"),
  52402. weight: math.unit(300, "lb"),
  52403. name: "Front-nsfw",
  52404. image: {
  52405. source: "./media/characters/ahab/front-nsfw.svg",
  52406. extra: 1897/1868,
  52407. bottom: 121/2018
  52408. }
  52409. },
  52410. },
  52411. [
  52412. {
  52413. name: "Normal",
  52414. height: math.unit(9 + 6/12, "feet")
  52415. },
  52416. {
  52417. name: "Macro",
  52418. height: math.unit(657, "feet"),
  52419. default: true
  52420. },
  52421. ]
  52422. ))
  52423. characterMakers.push(() => makeCharacter(
  52424. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52425. {
  52426. front: {
  52427. height: math.unit(2.69, "meters"),
  52428. weight: math.unit(132, "kg"),
  52429. name: "Front",
  52430. image: {
  52431. source: "./media/characters/aarkus/front.svg",
  52432. extra: 1400/1231,
  52433. bottom: 34/1434
  52434. }
  52435. },
  52436. back: {
  52437. height: math.unit(2.69, "meters"),
  52438. weight: math.unit(132, "kg"),
  52439. name: "Back",
  52440. image: {
  52441. source: "./media/characters/aarkus/back.svg",
  52442. extra: 1381/1218,
  52443. bottom: 30/1411
  52444. }
  52445. },
  52446. frontNsfw: {
  52447. height: math.unit(2.69, "meters"),
  52448. weight: math.unit(132, "kg"),
  52449. name: "Front (NSFW)",
  52450. image: {
  52451. source: "./media/characters/aarkus/front-nsfw.svg",
  52452. extra: 1400/1231,
  52453. bottom: 34/1434
  52454. }
  52455. },
  52456. foot: {
  52457. height: math.unit(1.45, "feet"),
  52458. name: "Foot",
  52459. image: {
  52460. source: "./media/characters/aarkus/foot.svg"
  52461. }
  52462. },
  52463. head: {
  52464. height: math.unit(2.85, "feet"),
  52465. name: "Head",
  52466. image: {
  52467. source: "./media/characters/aarkus/head.svg"
  52468. }
  52469. },
  52470. headAlt: {
  52471. height: math.unit(3.07, "feet"),
  52472. name: "Head (Alt)",
  52473. image: {
  52474. source: "./media/characters/aarkus/head-alt.svg"
  52475. }
  52476. },
  52477. mouth: {
  52478. height: math.unit(1.25, "feet"),
  52479. name: "Mouth",
  52480. image: {
  52481. source: "./media/characters/aarkus/mouth.svg"
  52482. }
  52483. },
  52484. dick: {
  52485. height: math.unit(1.77, "feet"),
  52486. name: "Dick",
  52487. image: {
  52488. source: "./media/characters/aarkus/dick.svg"
  52489. }
  52490. },
  52491. },
  52492. [
  52493. {
  52494. name: "Normal",
  52495. height: math.unit(2.69, "meters"),
  52496. default: true
  52497. },
  52498. {
  52499. name: "Macro",
  52500. height: math.unit(269, "meters")
  52501. },
  52502. {
  52503. name: "Macro+",
  52504. height: math.unit(672.5, "meters")
  52505. },
  52506. {
  52507. name: "Megamacro",
  52508. height: math.unit(2.017, "km")
  52509. },
  52510. ]
  52511. ))
  52512. characterMakers.push(() => makeCharacter(
  52513. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52514. {
  52515. front: {
  52516. height: math.unit(23.47, "cm"),
  52517. weight: math.unit(600, "grams"),
  52518. name: "Front",
  52519. image: {
  52520. source: "./media/characters/diode/front.svg",
  52521. extra: 1778/1396,
  52522. bottom: 95/1873
  52523. }
  52524. },
  52525. side: {
  52526. height: math.unit(23.47, "cm"),
  52527. weight: math.unit(600, "grams"),
  52528. name: "Side",
  52529. image: {
  52530. source: "./media/characters/diode/side.svg",
  52531. extra: 1831/1404,
  52532. bottom: 86/1917
  52533. }
  52534. },
  52535. wings: {
  52536. height: math.unit(0.683, "feet"),
  52537. name: "Wings",
  52538. image: {
  52539. source: "./media/characters/diode/wings.svg"
  52540. }
  52541. },
  52542. },
  52543. [
  52544. {
  52545. name: "Normal",
  52546. height: math.unit(23.47, "cm"),
  52547. default: true
  52548. },
  52549. ]
  52550. ))
  52551. characterMakers.push(() => makeCharacter(
  52552. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52553. {
  52554. front: {
  52555. height: math.unit(6 + 3/12, "feet"),
  52556. weight: math.unit(250, "lb"),
  52557. name: "Front",
  52558. image: {
  52559. source: "./media/characters/reika/front.svg",
  52560. extra: 1120/1078,
  52561. bottom: 86/1206
  52562. }
  52563. },
  52564. },
  52565. [
  52566. {
  52567. name: "Normal",
  52568. height: math.unit(6 + 3/12, "feet"),
  52569. default: true
  52570. },
  52571. ]
  52572. ))
  52573. characterMakers.push(() => makeCharacter(
  52574. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52575. {
  52576. front: {
  52577. height: math.unit(16 + 8/12, "feet"),
  52578. weight: math.unit(9000, "lb"),
  52579. name: "Front",
  52580. image: {
  52581. source: "./media/characters/lokuto-takama/front.svg",
  52582. extra: 1774/1632,
  52583. bottom: 147/1921
  52584. },
  52585. extraAttributes: {
  52586. "bustWidth": {
  52587. name: "Bust Width",
  52588. power: 1,
  52589. type: "length",
  52590. base: math.unit(2.4, "meters")
  52591. },
  52592. "breastWeight": {
  52593. name: "Breast Weight",
  52594. power: 3,
  52595. type: "mass",
  52596. base: math.unit(1000, "kg")
  52597. },
  52598. }
  52599. },
  52600. },
  52601. [
  52602. {
  52603. name: "Normal",
  52604. height: math.unit(16 + 8/12, "feet"),
  52605. default: true
  52606. },
  52607. ]
  52608. ))
  52609. characterMakers.push(() => makeCharacter(
  52610. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52611. {
  52612. front: {
  52613. height: math.unit(10, "cm"),
  52614. weight: math.unit(850, "grams"),
  52615. name: "Front",
  52616. image: {
  52617. source: "./media/characters/owak-bone/front.svg",
  52618. extra: 1965/1801,
  52619. bottom: 31/1996
  52620. }
  52621. },
  52622. },
  52623. [
  52624. {
  52625. name: "Normal",
  52626. height: math.unit(10, "cm"),
  52627. default: true
  52628. },
  52629. ]
  52630. ))
  52631. characterMakers.push(() => makeCharacter(
  52632. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52633. {
  52634. front: {
  52635. height: math.unit(2 + 6/12, "feet"),
  52636. weight: math.unit(9, "lb"),
  52637. name: "Front",
  52638. image: {
  52639. source: "./media/characters/muffin/front.svg",
  52640. extra: 1220/1195,
  52641. bottom: 84/1304
  52642. }
  52643. },
  52644. },
  52645. [
  52646. {
  52647. name: "Normal",
  52648. height: math.unit(2 + 6/12, "feet"),
  52649. default: true
  52650. },
  52651. ]
  52652. ))
  52653. characterMakers.push(() => makeCharacter(
  52654. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52655. {
  52656. front: {
  52657. height: math.unit(7, "feet"),
  52658. name: "Front",
  52659. image: {
  52660. source: "./media/characters/chimera/front.svg",
  52661. extra: 1752/1614,
  52662. bottom: 68/1820
  52663. }
  52664. },
  52665. },
  52666. [
  52667. {
  52668. name: "Normal",
  52669. height: math.unit(7, "feet")
  52670. },
  52671. {
  52672. name: "Gigamacro",
  52673. height: math.unit(2.9, "gigameters"),
  52674. default: true
  52675. },
  52676. {
  52677. name: "Universal",
  52678. height: math.unit(1.56e26, "yottameters")
  52679. },
  52680. ]
  52681. ))
  52682. characterMakers.push(() => makeCharacter(
  52683. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52684. {
  52685. front: {
  52686. height: math.unit(3, "feet"),
  52687. weight: math.unit(20, "lb"),
  52688. name: "Front",
  52689. image: {
  52690. source: "./media/characters/kit-fennec-fox/front.svg",
  52691. extra: 1027/932,
  52692. bottom: 16/1043
  52693. }
  52694. },
  52695. back: {
  52696. height: math.unit(3, "feet"),
  52697. weight: math.unit(20, "lb"),
  52698. name: "Back",
  52699. image: {
  52700. source: "./media/characters/kit-fennec-fox/back.svg",
  52701. extra: 1027/932,
  52702. bottom: 16/1043
  52703. }
  52704. },
  52705. },
  52706. [
  52707. {
  52708. name: "Normal",
  52709. height: math.unit(3, "feet"),
  52710. default: true
  52711. },
  52712. ]
  52713. ))
  52714. characterMakers.push(() => makeCharacter(
  52715. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52716. {
  52717. front: {
  52718. height: math.unit(167, "cm"),
  52719. name: "Front",
  52720. image: {
  52721. source: "./media/characters/blue-otter/front.svg",
  52722. extra: 1951/1920,
  52723. bottom: 31/1982
  52724. }
  52725. },
  52726. },
  52727. [
  52728. {
  52729. name: "Otter-Sized",
  52730. height: math.unit(100, "cm")
  52731. },
  52732. {
  52733. name: "Normal",
  52734. height: math.unit(167, "cm"),
  52735. default: true
  52736. },
  52737. ]
  52738. ))
  52739. characterMakers.push(() => makeCharacter(
  52740. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52741. {
  52742. front: {
  52743. height: math.unit(4 + 4/12, "feet"),
  52744. name: "Front",
  52745. image: {
  52746. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52747. extra: 1072/1067,
  52748. bottom: 117/1189
  52749. }
  52750. },
  52751. back: {
  52752. height: math.unit(4 + 4/12, "feet"),
  52753. name: "Back",
  52754. image: {
  52755. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52756. extra: 1135/1129,
  52757. bottom: 57/1192
  52758. }
  52759. },
  52760. head: {
  52761. height: math.unit(1.77, "feet"),
  52762. name: "Head",
  52763. image: {
  52764. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52765. }
  52766. },
  52767. },
  52768. [
  52769. {
  52770. name: "Normal",
  52771. height: math.unit(4 + 4/12, "feet"),
  52772. default: true
  52773. },
  52774. ]
  52775. ))
  52776. characterMakers.push(() => makeCharacter(
  52777. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52778. {
  52779. front: {
  52780. height: math.unit(2, "inches"),
  52781. name: "Front",
  52782. image: {
  52783. source: "./media/characters/carley-hartford/front.svg",
  52784. extra: 1035/988,
  52785. bottom: 23/1058
  52786. }
  52787. },
  52788. back: {
  52789. height: math.unit(2, "inches"),
  52790. name: "Back",
  52791. image: {
  52792. source: "./media/characters/carley-hartford/back.svg",
  52793. extra: 1035/988,
  52794. bottom: 23/1058
  52795. }
  52796. },
  52797. dressed: {
  52798. height: math.unit(2, "inches"),
  52799. name: "Dressed",
  52800. image: {
  52801. source: "./media/characters/carley-hartford/dressed.svg",
  52802. extra: 651/620,
  52803. bottom: 0/651
  52804. }
  52805. },
  52806. },
  52807. [
  52808. {
  52809. name: "Micro",
  52810. height: math.unit(2, "inches"),
  52811. default: true
  52812. },
  52813. {
  52814. name: "Macro",
  52815. height: math.unit(6 + 3/12, "feet")
  52816. },
  52817. ]
  52818. ))
  52819. characterMakers.push(() => makeCharacter(
  52820. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52821. {
  52822. front: {
  52823. height: math.unit(2 + 3/12, "feet"),
  52824. weight: math.unit(15 + 7/16, "lb"),
  52825. name: "Front",
  52826. image: {
  52827. source: "./media/characters/duke/front.svg",
  52828. extra: 910/815,
  52829. bottom: 30/940
  52830. }
  52831. },
  52832. },
  52833. [
  52834. {
  52835. name: "Normal",
  52836. height: math.unit(2 + 3/12, "feet"),
  52837. default: true
  52838. },
  52839. ]
  52840. ))
  52841. characterMakers.push(() => makeCharacter(
  52842. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52843. {
  52844. front: {
  52845. height: math.unit(5 + 4/12, "feet"),
  52846. weight: math.unit(156, "lb"),
  52847. name: "Front",
  52848. image: {
  52849. source: "./media/characters/dein/front.svg",
  52850. extra: 855/815,
  52851. bottom: 48/903
  52852. }
  52853. },
  52854. side: {
  52855. height: math.unit(5 + 4/12, "feet"),
  52856. weight: math.unit(156, "lb"),
  52857. name: "side",
  52858. image: {
  52859. source: "./media/characters/dein/side.svg",
  52860. extra: 846/803,
  52861. bottom: 25/871
  52862. }
  52863. },
  52864. maw: {
  52865. height: math.unit(1.45, "feet"),
  52866. name: "Maw",
  52867. image: {
  52868. source: "./media/characters/dein/maw.svg"
  52869. }
  52870. },
  52871. },
  52872. [
  52873. {
  52874. name: "Ferret Sized",
  52875. height: math.unit(2 + 5/12, "feet")
  52876. },
  52877. {
  52878. name: "Normal",
  52879. height: math.unit(5 + 4/12, "feet"),
  52880. default: true
  52881. },
  52882. ]
  52883. ))
  52884. characterMakers.push(() => makeCharacter(
  52885. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52886. {
  52887. front: {
  52888. height: math.unit(84 + 8/12, "feet"),
  52889. weight: math.unit(942180, "lb"),
  52890. name: "Front",
  52891. image: {
  52892. source: "./media/characters/daurine-arima/front.svg",
  52893. extra: 1989/1782,
  52894. bottom: 37/2026
  52895. }
  52896. },
  52897. side: {
  52898. height: math.unit(84 + 8/12, "feet"),
  52899. weight: math.unit(942180, "lb"),
  52900. name: "Side",
  52901. image: {
  52902. source: "./media/characters/daurine-arima/side.svg",
  52903. extra: 1997/1790,
  52904. bottom: 21/2018
  52905. }
  52906. },
  52907. back: {
  52908. height: math.unit(84 + 8/12, "feet"),
  52909. weight: math.unit(942180, "lb"),
  52910. name: "Back",
  52911. image: {
  52912. source: "./media/characters/daurine-arima/back.svg",
  52913. extra: 1992/1800,
  52914. bottom: 12/2004
  52915. }
  52916. },
  52917. head: {
  52918. height: math.unit(15.5, "feet"),
  52919. name: "Head",
  52920. image: {
  52921. source: "./media/characters/daurine-arima/head.svg"
  52922. }
  52923. },
  52924. headAlt: {
  52925. height: math.unit(19.19, "feet"),
  52926. name: "Head (Alt)",
  52927. image: {
  52928. source: "./media/characters/daurine-arima/head-alt.svg"
  52929. }
  52930. },
  52931. },
  52932. [
  52933. {
  52934. name: "Minimum height",
  52935. height: math.unit(8 + 10/12, "feet")
  52936. },
  52937. {
  52938. name: "Comfort height",
  52939. height: math.unit(19 + 6 /12, "feet")
  52940. },
  52941. {
  52942. name: "\"Normal\" height",
  52943. height: math.unit(28 + 10/12, "feet")
  52944. },
  52945. {
  52946. name: "Base height",
  52947. height: math.unit(84 + 8/12, "feet"),
  52948. default: true
  52949. },
  52950. {
  52951. name: "Mini-macro",
  52952. height: math.unit(2360, "feet")
  52953. },
  52954. {
  52955. name: "Macro",
  52956. height: math.unit(10, "miles")
  52957. },
  52958. {
  52959. name: "Goddess",
  52960. height: math.unit(9.99e40, "yottameters")
  52961. },
  52962. ]
  52963. ))
  52964. characterMakers.push(() => makeCharacter(
  52965. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52966. {
  52967. front: {
  52968. height: math.unit(2.3, "meters"),
  52969. name: "Front",
  52970. image: {
  52971. source: "./media/characters/cilenomon/front.svg",
  52972. extra: 1963/1778,
  52973. bottom: 54/2017
  52974. }
  52975. },
  52976. },
  52977. [
  52978. {
  52979. name: "Normal",
  52980. height: math.unit(2.3, "meters"),
  52981. default: true
  52982. },
  52983. {
  52984. name: "Big",
  52985. height: math.unit(5, "meters")
  52986. },
  52987. {
  52988. name: "Macro",
  52989. height: math.unit(30, "meters")
  52990. },
  52991. {
  52992. name: "True",
  52993. height: math.unit(1, "universe")
  52994. },
  52995. ]
  52996. ))
  52997. characterMakers.push(() => makeCharacter(
  52998. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52999. {
  53000. front: {
  53001. height: math.unit(5, "feet"),
  53002. name: "Front",
  53003. image: {
  53004. source: "./media/characters/sen-mink/front.svg",
  53005. extra: 1727/1675,
  53006. bottom: 35/1762
  53007. }
  53008. },
  53009. },
  53010. [
  53011. {
  53012. name: "Normal",
  53013. height: math.unit(5, "feet"),
  53014. default: true
  53015. },
  53016. ]
  53017. ))
  53018. characterMakers.push(() => makeCharacter(
  53019. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53020. {
  53021. front: {
  53022. height: math.unit(5.42999, "feet"),
  53023. weight: math.unit(100, "lb"),
  53024. name: "Front",
  53025. image: {
  53026. source: "./media/characters/ophois/front.svg",
  53027. extra: 1429/1286,
  53028. bottom: 60/1489
  53029. }
  53030. },
  53031. },
  53032. [
  53033. {
  53034. name: "Normal",
  53035. height: math.unit(5.42999, "feet"),
  53036. default: true
  53037. },
  53038. ]
  53039. ))
  53040. characterMakers.push(() => makeCharacter(
  53041. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53042. {
  53043. front: {
  53044. height: math.unit(2, "meters"),
  53045. name: "Front",
  53046. image: {
  53047. source: "./media/characters/riley/front.svg",
  53048. extra: 1779/1754,
  53049. bottom: 139/1918
  53050. }
  53051. },
  53052. },
  53053. [
  53054. {
  53055. name: "Normal",
  53056. height: math.unit(2, "meters"),
  53057. default: true
  53058. },
  53059. ]
  53060. ))
  53061. characterMakers.push(() => makeCharacter(
  53062. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53063. {
  53064. front: {
  53065. height: math.unit(6 + 2/12, "feet"),
  53066. weight: math.unit(195, "lb"),
  53067. preyCapacity: math.unit(6, "people"),
  53068. name: "Front",
  53069. image: {
  53070. source: "./media/characters/shuken-flash/front.svg",
  53071. extra: 1905/1739,
  53072. bottom: 65/1970
  53073. }
  53074. },
  53075. back: {
  53076. height: math.unit(6 + 2/12, "feet"),
  53077. weight: math.unit(195, "lb"),
  53078. preyCapacity: math.unit(6, "people"),
  53079. name: "Back",
  53080. image: {
  53081. source: "./media/characters/shuken-flash/back.svg",
  53082. extra: 1912/1751,
  53083. bottom: 13/1925
  53084. }
  53085. },
  53086. },
  53087. [
  53088. {
  53089. name: "Normal",
  53090. height: math.unit(6 + 2/12, "feet"),
  53091. default: true
  53092. },
  53093. ]
  53094. ))
  53095. characterMakers.push(() => makeCharacter(
  53096. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53097. {
  53098. front: {
  53099. height: math.unit(5 + 9/12, "feet"),
  53100. weight: math.unit(150, "lb"),
  53101. name: "Front",
  53102. image: {
  53103. source: "./media/characters/plat/front.svg",
  53104. extra: 1816/1703,
  53105. bottom: 43/1859
  53106. }
  53107. },
  53108. side: {
  53109. height: math.unit(5 + 9/12, "feet"),
  53110. weight: math.unit(300, "lb"),
  53111. name: "Side",
  53112. image: {
  53113. source: "./media/characters/plat/side.svg",
  53114. extra: 1824/1699,
  53115. bottom: 18/1842
  53116. }
  53117. },
  53118. },
  53119. [
  53120. {
  53121. name: "Normal",
  53122. height: math.unit(5 + 9/12, "feet"),
  53123. default: true
  53124. },
  53125. ]
  53126. ))
  53127. characterMakers.push(() => makeCharacter(
  53128. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53129. {
  53130. front: {
  53131. height: math.unit(9, "feet"),
  53132. weight: math.unit(1800, "lb"),
  53133. name: "Front",
  53134. image: {
  53135. source: "./media/characters/elaine/front.svg",
  53136. extra: 1833/1354,
  53137. bottom: 25/1858
  53138. }
  53139. },
  53140. back: {
  53141. height: math.unit(8.8, "feet"),
  53142. weight: math.unit(1800, "lb"),
  53143. name: "Back",
  53144. image: {
  53145. source: "./media/characters/elaine/back.svg",
  53146. extra: 1641/1233,
  53147. bottom: 53/1694
  53148. }
  53149. },
  53150. },
  53151. [
  53152. {
  53153. name: "Normal",
  53154. height: math.unit(9, "feet"),
  53155. default: true
  53156. },
  53157. ]
  53158. ))
  53159. characterMakers.push(() => makeCharacter(
  53160. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53161. {
  53162. front: {
  53163. height: math.unit(17 + 9/12, "feet"),
  53164. weight: math.unit(8000, "lb"),
  53165. name: "Front",
  53166. image: {
  53167. source: "./media/characters/vera-raven/front.svg",
  53168. extra: 1457/1412,
  53169. bottom: 121/1578
  53170. }
  53171. },
  53172. side: {
  53173. height: math.unit(17 + 9/12, "feet"),
  53174. weight: math.unit(8000, "lb"),
  53175. name: "Side",
  53176. image: {
  53177. source: "./media/characters/vera-raven/side.svg",
  53178. extra: 1510/1464,
  53179. bottom: 54/1564
  53180. }
  53181. },
  53182. },
  53183. [
  53184. {
  53185. name: "Normal",
  53186. height: math.unit(17 + 9/12, "feet"),
  53187. default: true
  53188. },
  53189. ]
  53190. ))
  53191. characterMakers.push(() => makeCharacter(
  53192. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53193. {
  53194. dressed: {
  53195. height: math.unit(6 + 9/12, "feet"),
  53196. name: "Dressed",
  53197. image: {
  53198. source: "./media/characters/nakisha/dressed.svg",
  53199. extra: 1909/1757,
  53200. bottom: 48/1957
  53201. }
  53202. },
  53203. nude: {
  53204. height: math.unit(6 + 9/12, "feet"),
  53205. name: "Nude",
  53206. image: {
  53207. source: "./media/characters/nakisha/nude.svg",
  53208. extra: 1917/1765,
  53209. bottom: 34/1951
  53210. }
  53211. },
  53212. },
  53213. [
  53214. {
  53215. name: "Normal",
  53216. height: math.unit(6 + 9/12, "feet"),
  53217. default: true
  53218. },
  53219. ]
  53220. ))
  53221. characterMakers.push(() => makeCharacter(
  53222. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53223. {
  53224. front: {
  53225. height: math.unit(87, "meters"),
  53226. name: "Front",
  53227. image: {
  53228. source: "./media/characters/serafin/front.svg",
  53229. extra: 1919/1776,
  53230. bottom: 65/1984
  53231. }
  53232. },
  53233. },
  53234. [
  53235. {
  53236. name: "Normal",
  53237. height: math.unit(87, "meters"),
  53238. default: true
  53239. },
  53240. ]
  53241. ))
  53242. characterMakers.push(() => makeCharacter(
  53243. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53244. {
  53245. front: {
  53246. height: math.unit(6, "feet"),
  53247. weight: math.unit(200, "lb"),
  53248. name: "Front",
  53249. image: {
  53250. source: "./media/characters/poptart/front.svg",
  53251. extra: 615/583,
  53252. bottom: 23/638
  53253. }
  53254. },
  53255. back: {
  53256. height: math.unit(6, "feet"),
  53257. weight: math.unit(200, "lb"),
  53258. name: "Back",
  53259. image: {
  53260. source: "./media/characters/poptart/back.svg",
  53261. extra: 617/584,
  53262. bottom: 22/639
  53263. }
  53264. },
  53265. frontNsfw: {
  53266. height: math.unit(6, "feet"),
  53267. weight: math.unit(200, "lb"),
  53268. name: "Front (NSFW)",
  53269. image: {
  53270. source: "./media/characters/poptart/front-nsfw.svg",
  53271. extra: 615/583,
  53272. bottom: 23/638
  53273. }
  53274. },
  53275. backNsfw: {
  53276. height: math.unit(6, "feet"),
  53277. weight: math.unit(200, "lb"),
  53278. name: "Back (NSFW)",
  53279. image: {
  53280. source: "./media/characters/poptart/back-nsfw.svg",
  53281. extra: 617/584,
  53282. bottom: 22/639
  53283. }
  53284. },
  53285. hand: {
  53286. height: math.unit(1.14, "feet"),
  53287. name: "Hand",
  53288. image: {
  53289. source: "./media/characters/poptart/hand.svg"
  53290. }
  53291. },
  53292. foot: {
  53293. height: math.unit(1.5, "feet"),
  53294. name: "Foot",
  53295. image: {
  53296. source: "./media/characters/poptart/foot.svg"
  53297. }
  53298. },
  53299. },
  53300. [
  53301. {
  53302. name: "Normal",
  53303. height: math.unit(6, "feet"),
  53304. default: true
  53305. },
  53306. {
  53307. name: "Grande",
  53308. height: math.unit(350, "feet")
  53309. },
  53310. {
  53311. name: "Massif",
  53312. height: math.unit(967, "feet")
  53313. },
  53314. ]
  53315. ))
  53316. characterMakers.push(() => makeCharacter(
  53317. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53318. {
  53319. hyenaSide: {
  53320. height: math.unit(120, "cm"),
  53321. weight: math.unit(120, "lb"),
  53322. name: "Side",
  53323. image: {
  53324. source: "./media/characters/trance/hyena-side.svg",
  53325. extra: 998/904,
  53326. bottom: 76/1074
  53327. }
  53328. },
  53329. },
  53330. [
  53331. {
  53332. name: "Normal",
  53333. height: math.unit(120, "cm"),
  53334. default: true
  53335. },
  53336. {
  53337. name: "Dire",
  53338. height: math.unit(230, "cm")
  53339. },
  53340. {
  53341. name: "Macro",
  53342. height: math.unit(37, "feet")
  53343. },
  53344. ]
  53345. ))
  53346. characterMakers.push(() => makeCharacter(
  53347. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53348. {
  53349. front: {
  53350. height: math.unit(6 + 3/12, "feet"),
  53351. name: "Front",
  53352. image: {
  53353. source: "./media/characters/michael-berretta/front.svg",
  53354. extra: 515/494,
  53355. bottom: 20/535
  53356. }
  53357. },
  53358. back: {
  53359. height: math.unit(6 + 3/12, "feet"),
  53360. name: "Back",
  53361. image: {
  53362. source: "./media/characters/michael-berretta/back.svg",
  53363. extra: 520/497,
  53364. bottom: 21/541
  53365. }
  53366. },
  53367. frontNsfw: {
  53368. height: math.unit(6 + 3/12, "feet"),
  53369. name: "Front (NSFW)",
  53370. image: {
  53371. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53372. extra: 515/494,
  53373. bottom: 20/535
  53374. }
  53375. },
  53376. dick: {
  53377. height: math.unit(1, "feet"),
  53378. name: "Dick",
  53379. image: {
  53380. source: "./media/characters/michael-berretta/dick.svg"
  53381. }
  53382. },
  53383. },
  53384. [
  53385. {
  53386. name: "Normal",
  53387. height: math.unit(6 + 3/12, "feet"),
  53388. default: true
  53389. },
  53390. {
  53391. name: "Big",
  53392. height: math.unit(12, "feet")
  53393. },
  53394. {
  53395. name: "Macro",
  53396. height: math.unit(187.5, "feet")
  53397. },
  53398. ]
  53399. ))
  53400. characterMakers.push(() => makeCharacter(
  53401. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53402. {
  53403. front: {
  53404. height: math.unit(9 + 9/12, "feet"),
  53405. weight: math.unit(1244, "lb"),
  53406. name: "Front",
  53407. image: {
  53408. source: "./media/characters/stella-edgecomb/front.svg",
  53409. extra: 1835/1706,
  53410. bottom: 49/1884
  53411. }
  53412. },
  53413. pen: {
  53414. height: math.unit(0.95, "feet"),
  53415. name: "Pen",
  53416. image: {
  53417. source: "./media/characters/stella-edgecomb/pen.svg"
  53418. }
  53419. },
  53420. },
  53421. [
  53422. {
  53423. name: "Cozy Bear",
  53424. height: math.unit(0.5, "inches")
  53425. },
  53426. {
  53427. name: "Normal",
  53428. height: math.unit(9 + 9/12, "feet"),
  53429. default: true
  53430. },
  53431. {
  53432. name: "Giga Bear",
  53433. height: math.unit(1, "mile")
  53434. },
  53435. {
  53436. name: "Great Bear",
  53437. height: math.unit(53, "miles")
  53438. },
  53439. {
  53440. name: "Goddess Bear",
  53441. height: math.unit(40000, "miles")
  53442. },
  53443. {
  53444. name: "Sun Bear",
  53445. height: math.unit(900000, "miles")
  53446. },
  53447. ]
  53448. ))
  53449. characterMakers.push(() => makeCharacter(
  53450. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53451. {
  53452. anthroFront: {
  53453. height: math.unit(556, "cm"),
  53454. weight: math.unit(2650, "kg"),
  53455. preyCapacity: math.unit(3, "people"),
  53456. name: "Front",
  53457. image: {
  53458. source: "./media/characters/ash´iika/front.svg",
  53459. extra: 710/673,
  53460. bottom: 15/725
  53461. },
  53462. form: "anthro",
  53463. default: true
  53464. },
  53465. anthroSide: {
  53466. height: math.unit(556, "cm"),
  53467. weight: math.unit(2650, "kg"),
  53468. preyCapacity: math.unit(3, "people"),
  53469. name: "Side",
  53470. image: {
  53471. source: "./media/characters/ash´iika/side.svg",
  53472. extra: 696/676,
  53473. bottom: 13/709
  53474. },
  53475. form: "anthro"
  53476. },
  53477. anthroDressed: {
  53478. height: math.unit(556, "cm"),
  53479. weight: math.unit(2650, "kg"),
  53480. preyCapacity: math.unit(3, "people"),
  53481. name: "Dressed",
  53482. image: {
  53483. source: "./media/characters/ash´iika/dressed.svg",
  53484. extra: 710/673,
  53485. bottom: 15/725
  53486. },
  53487. form: "anthro"
  53488. },
  53489. anthroHead: {
  53490. height: math.unit(3.5, "feet"),
  53491. name: "Head",
  53492. image: {
  53493. source: "./media/characters/ash´iika/head.svg",
  53494. extra: 348/291,
  53495. bottom: 45/393
  53496. },
  53497. form: "anthro"
  53498. },
  53499. feralSide: {
  53500. height: math.unit(870, "cm"),
  53501. weight: math.unit(17500, "kg"),
  53502. preyCapacity: math.unit(15, "people"),
  53503. name: "Side",
  53504. image: {
  53505. source: "./media/characters/ash´iika/feral.svg",
  53506. extra: 595/199,
  53507. bottom: 7/602
  53508. },
  53509. form: "feral",
  53510. default: true,
  53511. },
  53512. },
  53513. [
  53514. {
  53515. name: "Normal",
  53516. height: math.unit(556, "cm"),
  53517. default: true,
  53518. form: "anthro"
  53519. },
  53520. {
  53521. name: "Macro",
  53522. height: math.unit(88, "meters"),
  53523. form: "anthro"
  53524. },
  53525. {
  53526. name: "Normal",
  53527. height: math.unit(870, "cm"),
  53528. default: true,
  53529. form: "feral"
  53530. },
  53531. {
  53532. name: "Large",
  53533. height: math.unit(25, "meters"),
  53534. form: "feral"
  53535. },
  53536. ],
  53537. {
  53538. "anthro": {
  53539. name: "Anthro",
  53540. default: true
  53541. },
  53542. "feral": {
  53543. name: "Feral",
  53544. },
  53545. }
  53546. ))
  53547. characterMakers.push(() => makeCharacter(
  53548. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53549. {
  53550. front: {
  53551. height: math.unit(10, "feet"),
  53552. weight: math.unit(800, "lb"),
  53553. name: "Front",
  53554. image: {
  53555. source: "./media/characters/yen/front.svg",
  53556. extra: 443/411,
  53557. bottom: 6/449
  53558. }
  53559. },
  53560. sleeping: {
  53561. height: math.unit(10, "feet"),
  53562. weight: math.unit(800, "lb"),
  53563. name: "Sleeping",
  53564. image: {
  53565. source: "./media/characters/yen/sleeping.svg",
  53566. extra: 470/422,
  53567. bottom: 0/470
  53568. }
  53569. },
  53570. head: {
  53571. height: math.unit(2.2, "feet"),
  53572. name: "Head",
  53573. image: {
  53574. source: "./media/characters/yen/head.svg"
  53575. }
  53576. },
  53577. headAlt: {
  53578. height: math.unit(2.1, "feet"),
  53579. name: "Head (Alt)",
  53580. image: {
  53581. source: "./media/characters/yen/head-alt.svg"
  53582. }
  53583. },
  53584. },
  53585. [
  53586. {
  53587. name: "Normal",
  53588. height: math.unit(10, "feet"),
  53589. default: true
  53590. },
  53591. ]
  53592. ))
  53593. characterMakers.push(() => makeCharacter(
  53594. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53595. {
  53596. front: {
  53597. height: math.unit(12, "feet"),
  53598. name: "Front",
  53599. image: {
  53600. source: "./media/characters/citra/front.svg",
  53601. extra: 1950/1710,
  53602. bottom: 47/1997
  53603. }
  53604. },
  53605. },
  53606. [
  53607. {
  53608. name: "Normal",
  53609. height: math.unit(12, "feet"),
  53610. default: true
  53611. },
  53612. ]
  53613. ))
  53614. characterMakers.push(() => makeCharacter(
  53615. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53616. {
  53617. side: {
  53618. height: math.unit(7 + 10/12, "feet"),
  53619. name: "Side",
  53620. image: {
  53621. source: "./media/characters/sholstim/side.svg",
  53622. extra: 786/682,
  53623. bottom: 40/826
  53624. }
  53625. },
  53626. },
  53627. [
  53628. {
  53629. name: "Normal",
  53630. height: math.unit(7 + 10/12, "feet"),
  53631. default: true
  53632. },
  53633. ]
  53634. ))
  53635. characterMakers.push(() => makeCharacter(
  53636. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53637. {
  53638. front: {
  53639. height: math.unit(3.10, "meters"),
  53640. name: "Front",
  53641. image: {
  53642. source: "./media/characters/aggyn/front.svg",
  53643. extra: 1188/963,
  53644. bottom: 24/1212
  53645. }
  53646. },
  53647. },
  53648. [
  53649. {
  53650. name: "Normal",
  53651. height: math.unit(3.10, "meters"),
  53652. default: true
  53653. },
  53654. ]
  53655. ))
  53656. characterMakers.push(() => makeCharacter(
  53657. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53658. {
  53659. front: {
  53660. height: math.unit(7 + 5/12, "feet"),
  53661. weight: math.unit(687, "lb"),
  53662. name: "Front",
  53663. image: {
  53664. source: "./media/characters/alsandair-hergenroether/front.svg",
  53665. extra: 1251/1186,
  53666. bottom: 75/1326
  53667. }
  53668. },
  53669. back: {
  53670. height: math.unit(7 + 5/12, "feet"),
  53671. weight: math.unit(687, "lb"),
  53672. name: "Back",
  53673. image: {
  53674. source: "./media/characters/alsandair-hergenroether/back.svg",
  53675. extra: 1290/1229,
  53676. bottom: 17/1307
  53677. }
  53678. },
  53679. },
  53680. [
  53681. {
  53682. name: "Max Compression",
  53683. height: math.unit(7 + 5/12, "feet"),
  53684. default: true
  53685. },
  53686. {
  53687. name: "\"Normal\"",
  53688. height: math.unit(2, "universes")
  53689. },
  53690. ]
  53691. ))
  53692. characterMakers.push(() => makeCharacter(
  53693. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53694. {
  53695. front: {
  53696. height: math.unit(4 + 1/12, "feet"),
  53697. weight: math.unit(92, "lb"),
  53698. name: "Front",
  53699. image: {
  53700. source: "./media/characters/ie/front.svg",
  53701. extra: 1585/1352,
  53702. bottom: 91/1676
  53703. }
  53704. },
  53705. },
  53706. [
  53707. {
  53708. name: "Normal",
  53709. height: math.unit(4 + 1/12, "feet"),
  53710. default: true
  53711. },
  53712. ]
  53713. ))
  53714. characterMakers.push(() => makeCharacter(
  53715. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53716. {
  53717. anthro: {
  53718. height: math.unit(6, "feet"),
  53719. weight: math.unit(150, "lb"),
  53720. name: "Front",
  53721. image: {
  53722. source: "./media/characters/willow/anthro.svg",
  53723. extra: 1073/986,
  53724. bottom: 34/1107
  53725. },
  53726. form: "anthro",
  53727. default: true
  53728. },
  53729. taur: {
  53730. height: math.unit(6, "feet"),
  53731. weight: math.unit(150, "lb"),
  53732. name: "Side",
  53733. image: {
  53734. source: "./media/characters/willow/taur.svg",
  53735. extra: 647/512,
  53736. bottom: 136/783
  53737. },
  53738. form: "taur",
  53739. default: true
  53740. },
  53741. },
  53742. [
  53743. {
  53744. name: "Humanoid",
  53745. height: math.unit(2.7, "meters"),
  53746. form: "anthro"
  53747. },
  53748. {
  53749. name: "Normal",
  53750. height: math.unit(9, "meters"),
  53751. form: "anthro",
  53752. default: true
  53753. },
  53754. {
  53755. name: "Humanoid",
  53756. height: math.unit(2.1, "meters"),
  53757. form: "taur"
  53758. },
  53759. {
  53760. name: "Normal",
  53761. height: math.unit(7, "meters"),
  53762. form: "taur",
  53763. default: true
  53764. },
  53765. ],
  53766. {
  53767. "anthro": {
  53768. name: "Anthro",
  53769. default: true
  53770. },
  53771. "taur": {
  53772. name: "Taur",
  53773. },
  53774. }
  53775. ))
  53776. characterMakers.push(() => makeCharacter(
  53777. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53778. {
  53779. front: {
  53780. height: math.unit(2 + 5/12, "feet"),
  53781. name: "Front",
  53782. image: {
  53783. source: "./media/characters/kyan/front.svg",
  53784. extra: 460/334,
  53785. bottom: 23/483
  53786. },
  53787. extraAttributes: {
  53788. "toeLength": {
  53789. name: "Toe Length",
  53790. power: 1,
  53791. type: "length",
  53792. base: math.unit(7, "cm")
  53793. },
  53794. "toeclawLength": {
  53795. name: "Toeclaw Length",
  53796. power: 1,
  53797. type: "length",
  53798. base: math.unit(4.7, "cm")
  53799. },
  53800. "earHeight": {
  53801. name: "Ear Height",
  53802. power: 1,
  53803. type: "length",
  53804. base: math.unit(14.1, "cm")
  53805. },
  53806. }
  53807. },
  53808. paws: {
  53809. height: math.unit(0.45, "feet"),
  53810. name: "Paws",
  53811. image: {
  53812. source: "./media/characters/kyan/paws.svg",
  53813. extra: 581/581,
  53814. bottom: 114/695
  53815. }
  53816. },
  53817. },
  53818. [
  53819. {
  53820. name: "Normal",
  53821. height: math.unit(2 + 5/12, "feet"),
  53822. default: true
  53823. },
  53824. ]
  53825. ))
  53826. characterMakers.push(() => makeCharacter(
  53827. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53828. {
  53829. front: {
  53830. height: math.unit(2 + 2/3, "feet"),
  53831. name: "Front",
  53832. image: {
  53833. source: "./media/characters/xazzon/front.svg",
  53834. extra: 1109/984,
  53835. bottom: 42/1151
  53836. }
  53837. },
  53838. back: {
  53839. height: math.unit(2 + 2/3, "feet"),
  53840. name: "Back",
  53841. image: {
  53842. source: "./media/characters/xazzon/back.svg",
  53843. extra: 1095/971,
  53844. bottom: 23/1118
  53845. }
  53846. },
  53847. },
  53848. [
  53849. {
  53850. name: "Normal",
  53851. height: math.unit(2 + 2/3, "feet"),
  53852. default: true
  53853. },
  53854. ]
  53855. ))
  53856. characterMakers.push(() => makeCharacter(
  53857. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53858. {
  53859. dressed: {
  53860. height: math.unit(5 + 7/12, "feet"),
  53861. weight: math.unit(173, "lb"),
  53862. name: "Dressed",
  53863. image: {
  53864. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53865. extra: 3262/2862,
  53866. bottom: 188/3450
  53867. }
  53868. },
  53869. undressed: {
  53870. height: math.unit(5 + 7/12, "feet"),
  53871. weight: math.unit(173, "lb"),
  53872. name: "Undressed",
  53873. image: {
  53874. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53875. extra: 3262/2862,
  53876. bottom: 188/3450
  53877. }
  53878. },
  53879. },
  53880. [
  53881. {
  53882. name: "The void",
  53883. height: math.unit(7.29193e-34, "angstroms")
  53884. },
  53885. {
  53886. name: "Uh-Oh.",
  53887. height: math.unit(5.734e-7, "angstroms")
  53888. },
  53889. {
  53890. name: "Pico",
  53891. height: math.unit(0.876, "angstroms")
  53892. },
  53893. {
  53894. name: "Nano",
  53895. height: math.unit(0.000134200, "mm")
  53896. },
  53897. {
  53898. name: "Micro",
  53899. height: math.unit(0.0673020, "mm")
  53900. },
  53901. {
  53902. name: "Tiny",
  53903. height: math.unit(2.4, "mm")
  53904. },
  53905. {
  53906. name: "Actual Normal",
  53907. height: math.unit(3, "inches"),
  53908. default: true
  53909. },
  53910. {
  53911. name: "Normal",
  53912. height: math.unit(5 + 8/12, "feet")
  53913. },
  53914. {
  53915. name: "Giant",
  53916. height: math.unit(12, "feet")
  53917. },
  53918. {
  53919. name: "City Ruler",
  53920. height: math.unit(270, "meters")
  53921. },
  53922. {
  53923. name: "Giga",
  53924. height: math.unit(1117.6, "km")
  53925. },
  53926. {
  53927. name: "All-Powerful Queen",
  53928. height: math.unit(70.8, "gigameters")
  53929. },
  53930. {
  53931. name: "'Goddess'",
  53932. height: math.unit(600, "yottameters")
  53933. },
  53934. {
  53935. name: "Biggest!",
  53936. height: math.unit(4.23e5, "yottameters")
  53937. },
  53938. ]
  53939. ))
  53940. characterMakers.push(() => makeCharacter(
  53941. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53942. {
  53943. front: {
  53944. height: math.unit(8, "feet"),
  53945. weight: math.unit(300, "lb"),
  53946. name: "Front",
  53947. image: {
  53948. source: "./media/characters/khyla-shadowsong/front.svg",
  53949. extra: 861/798,
  53950. bottom: 32/893
  53951. }
  53952. },
  53953. side: {
  53954. height: math.unit(8, "feet"),
  53955. weight: math.unit(300, "lb"),
  53956. name: "Side",
  53957. image: {
  53958. source: "./media/characters/khyla-shadowsong/side.svg",
  53959. extra: 790/750,
  53960. bottom: 87/877
  53961. }
  53962. },
  53963. back: {
  53964. height: math.unit(8, "feet"),
  53965. weight: math.unit(300, "lb"),
  53966. name: "Back",
  53967. image: {
  53968. source: "./media/characters/khyla-shadowsong/back.svg",
  53969. extra: 855/808,
  53970. bottom: 14/869
  53971. }
  53972. },
  53973. head: {
  53974. height: math.unit(2.7, "feet"),
  53975. name: "Head",
  53976. image: {
  53977. source: "./media/characters/khyla-shadowsong/head.svg"
  53978. }
  53979. },
  53980. },
  53981. [
  53982. {
  53983. name: "Micro",
  53984. height: math.unit(6, "inches")
  53985. },
  53986. {
  53987. name: "Normal",
  53988. height: math.unit(8, "feet"),
  53989. default: true
  53990. },
  53991. ]
  53992. ))
  53993. characterMakers.push(() => makeCharacter(
  53994. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53995. {
  53996. hyperFront: {
  53997. height: math.unit(9 + 4/12, "feet"),
  53998. weight: math.unit(2000, "lb"),
  53999. name: "Front",
  54000. image: {
  54001. source: "./media/characters/tiden/hyper-front.svg",
  54002. extra: 400/382,
  54003. bottom: 6/406
  54004. },
  54005. form: "hyper",
  54006. },
  54007. regularFront: {
  54008. height: math.unit(7 + 10/12, "feet"),
  54009. weight: math.unit(470, "lb"),
  54010. name: "Front",
  54011. image: {
  54012. source: "./media/characters/tiden/regular-front.svg",
  54013. extra: 468/442,
  54014. bottom: 6/474
  54015. },
  54016. form: "regular",
  54017. },
  54018. },
  54019. [
  54020. {
  54021. name: "Normal",
  54022. height: math.unit(9 + 4/12, "feet"),
  54023. default: true,
  54024. form: "hyper"
  54025. },
  54026. {
  54027. name: "Normal",
  54028. height: math.unit(7 + 10/12, "feet"),
  54029. default: true,
  54030. form: "regular"
  54031. },
  54032. ],
  54033. {
  54034. "hyper": {
  54035. name: "Hyper",
  54036. default: true
  54037. },
  54038. "regular": {
  54039. name: "Regular",
  54040. },
  54041. }
  54042. ))
  54043. characterMakers.push(() => makeCharacter(
  54044. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54045. {
  54046. side: {
  54047. height: math.unit(6, "feet"),
  54048. weight: math.unit(150, "lb"),
  54049. name: "Side",
  54050. image: {
  54051. source: "./media/characters/jason-crowe/side.svg",
  54052. extra: 1771/766,
  54053. bottom: 219/1990
  54054. }
  54055. },
  54056. },
  54057. [
  54058. {
  54059. name: "Pocket Gryphon",
  54060. height: math.unit(6, "cm")
  54061. },
  54062. {
  54063. name: "Raven",
  54064. height: math.unit(60, "cm")
  54065. },
  54066. {
  54067. name: "Normal",
  54068. height: math.unit(1, "meter"),
  54069. default: true
  54070. },
  54071. ]
  54072. ))
  54073. characterMakers.push(() => makeCharacter(
  54074. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54075. {
  54076. front: {
  54077. height: math.unit(9 + 6/12, "feet"),
  54078. weight: math.unit(1100, "lb"),
  54079. name: "Front",
  54080. image: {
  54081. source: "./media/characters/django/front.svg",
  54082. extra: 1231/1136,
  54083. bottom: 34/1265
  54084. }
  54085. },
  54086. side: {
  54087. height: math.unit(9 + 6/12, "feet"),
  54088. weight: math.unit(1100, "lb"),
  54089. name: "Side",
  54090. image: {
  54091. source: "./media/characters/django/side.svg",
  54092. extra: 1267/1174,
  54093. bottom: 9/1276
  54094. }
  54095. },
  54096. },
  54097. [
  54098. {
  54099. name: "Normal",
  54100. height: math.unit(9 + 6/12, "feet"),
  54101. default: true
  54102. },
  54103. {
  54104. name: "Macro 1",
  54105. height: math.unit(50, "feet")
  54106. },
  54107. {
  54108. name: "Macro 2",
  54109. height: math.unit(500, "feet")
  54110. },
  54111. {
  54112. name: "Mega Macro",
  54113. height: math.unit(5300, "feet")
  54114. },
  54115. ]
  54116. ))
  54117. characterMakers.push(() => makeCharacter(
  54118. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54119. {
  54120. frontSfw: {
  54121. height: math.unit(120, "cm"),
  54122. weight: math.unit(15, "kg"),
  54123. name: "Front (SFW)",
  54124. image: {
  54125. source: "./media/characters/eri/front-sfw.svg",
  54126. extra: 1014/939,
  54127. bottom: 37/1051
  54128. },
  54129. form: "moth",
  54130. },
  54131. frontNsfw: {
  54132. height: math.unit(120, "cm"),
  54133. weight: math.unit(15, "kg"),
  54134. name: "Front (NSFW)",
  54135. image: {
  54136. source: "./media/characters/eri/front-nsfw.svg",
  54137. extra: 1014/939,
  54138. bottom: 37/1051
  54139. },
  54140. form: "moth",
  54141. default: true
  54142. },
  54143. egg: {
  54144. height: math.unit(10, "cm"),
  54145. name: "Egg",
  54146. image: {
  54147. source: "./media/characters/eri/egg.svg"
  54148. },
  54149. form: "egg",
  54150. default: true
  54151. },
  54152. },
  54153. [
  54154. {
  54155. name: "Normal",
  54156. height: math.unit(120, "cm"),
  54157. default: true,
  54158. form: "moth"
  54159. },
  54160. {
  54161. name: "Normal",
  54162. height: math.unit(10, "cm"),
  54163. default: true,
  54164. form: "egg"
  54165. },
  54166. ],
  54167. {
  54168. "moth": {
  54169. name: "Moth",
  54170. default: true
  54171. },
  54172. "egg": {
  54173. name: "Egg",
  54174. },
  54175. }
  54176. ))
  54177. characterMakers.push(() => makeCharacter(
  54178. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54179. {
  54180. front: {
  54181. height: math.unit(200, "feet"),
  54182. name: "Front",
  54183. image: {
  54184. source: "./media/characters/bishop-dowser/front.svg",
  54185. extra: 933/868,
  54186. bottom: 106/1039
  54187. }
  54188. },
  54189. },
  54190. [
  54191. {
  54192. name: "Giant",
  54193. height: math.unit(200, "feet"),
  54194. default: true
  54195. },
  54196. ]
  54197. ))
  54198. characterMakers.push(() => makeCharacter(
  54199. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54200. {
  54201. front: {
  54202. height: math.unit(2, "meters"),
  54203. preyCapacity: math.unit(3, "people"),
  54204. name: "Front",
  54205. image: {
  54206. source: "./media/characters/fryra/front.svg",
  54207. extra: 1025/948,
  54208. bottom: 30/1055
  54209. },
  54210. extraAttributes: {
  54211. "breastVolume": {
  54212. name: "Breast Volume",
  54213. power: 3,
  54214. type: "volume",
  54215. base: math.unit(8, "liters")
  54216. },
  54217. }
  54218. },
  54219. back: {
  54220. height: math.unit(2, "meters"),
  54221. preyCapacity: math.unit(3, "people"),
  54222. name: "Back",
  54223. image: {
  54224. source: "./media/characters/fryra/back.svg",
  54225. extra: 993/938,
  54226. bottom: 38/1031
  54227. },
  54228. extraAttributes: {
  54229. "breastVolume": {
  54230. name: "Breast Volume",
  54231. power: 3,
  54232. type: "volume",
  54233. base: math.unit(8, "liters")
  54234. },
  54235. }
  54236. },
  54237. head: {
  54238. height: math.unit(1.33, "feet"),
  54239. name: "Head",
  54240. image: {
  54241. source: "./media/characters/fryra/head.svg"
  54242. }
  54243. },
  54244. maw: {
  54245. height: math.unit(0.56, "feet"),
  54246. name: "Maw",
  54247. image: {
  54248. source: "./media/characters/fryra/maw.svg"
  54249. }
  54250. },
  54251. },
  54252. [
  54253. {
  54254. name: "Micro",
  54255. height: math.unit(5, "cm")
  54256. },
  54257. {
  54258. name: "Normal",
  54259. height: math.unit(2, "meters"),
  54260. default: true
  54261. },
  54262. {
  54263. name: "Small Macro",
  54264. height: math.unit(8, "meters")
  54265. },
  54266. {
  54267. name: "Macro",
  54268. height: math.unit(50, "meters")
  54269. },
  54270. {
  54271. name: "Megamacro",
  54272. height: math.unit(1, "km")
  54273. },
  54274. {
  54275. name: "Planetary",
  54276. height: math.unit(300000, "km")
  54277. },
  54278. {
  54279. name: "Universal",
  54280. height: math.unit(250, "lightyears")
  54281. },
  54282. {
  54283. name: "Fabric of Reality",
  54284. height: math.unit(1000, "multiverses")
  54285. },
  54286. ]
  54287. ))
  54288. characterMakers.push(() => makeCharacter(
  54289. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54290. {
  54291. frontDressed: {
  54292. height: math.unit(6 + 2/12, "feet"),
  54293. name: "Front (Dressed)",
  54294. image: {
  54295. source: "./media/characters/fiera/front-dressed.svg",
  54296. extra: 1883/1793,
  54297. bottom: 70/1953
  54298. }
  54299. },
  54300. backDressed: {
  54301. height: math.unit(6 + 2/12, "feet"),
  54302. name: "Back (Dressed)",
  54303. image: {
  54304. source: "./media/characters/fiera/back-dressed.svg",
  54305. extra: 1847/1780,
  54306. bottom: 70/1917
  54307. }
  54308. },
  54309. frontNude: {
  54310. height: math.unit(6 + 2/12, "feet"),
  54311. name: "Front (Nude)",
  54312. image: {
  54313. source: "./media/characters/fiera/front-nude.svg",
  54314. extra: 1875/1785,
  54315. bottom: 66/1941
  54316. }
  54317. },
  54318. backNude: {
  54319. height: math.unit(6 + 2/12, "feet"),
  54320. name: "Back (Nude)",
  54321. image: {
  54322. source: "./media/characters/fiera/back-nude.svg",
  54323. extra: 1855/1788,
  54324. bottom: 44/1899
  54325. }
  54326. },
  54327. maw: {
  54328. height: math.unit(1.3, "feet"),
  54329. name: "Maw",
  54330. image: {
  54331. source: "./media/characters/fiera/maw.svg"
  54332. }
  54333. },
  54334. paw: {
  54335. height: math.unit(1, "feet"),
  54336. name: "Paw",
  54337. image: {
  54338. source: "./media/characters/fiera/paw.svg"
  54339. }
  54340. },
  54341. shoe: {
  54342. height: math.unit(1.05, "feet"),
  54343. name: "Shoe",
  54344. image: {
  54345. source: "./media/characters/fiera/shoe.svg"
  54346. }
  54347. },
  54348. },
  54349. [
  54350. {
  54351. name: "Normal",
  54352. height: math.unit(6 + 2/12, "feet"),
  54353. default: true
  54354. },
  54355. {
  54356. name: "Size Difference",
  54357. height: math.unit(13, "feet")
  54358. },
  54359. {
  54360. name: "Macro",
  54361. height: math.unit(60, "feet")
  54362. },
  54363. {
  54364. name: "Mega Macro",
  54365. height: math.unit(200, "feet")
  54366. },
  54367. ]
  54368. ))
  54369. characterMakers.push(() => makeCharacter(
  54370. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54371. {
  54372. back: {
  54373. height: math.unit(6, "feet"),
  54374. name: "Back",
  54375. image: {
  54376. source: "./media/characters/flare/back.svg",
  54377. extra: 1883/1765,
  54378. bottom: 32/1915
  54379. }
  54380. },
  54381. },
  54382. [
  54383. {
  54384. name: "Normal",
  54385. height: math.unit(6 + 2/12, "feet"),
  54386. default: true
  54387. },
  54388. {
  54389. name: "Size Difference",
  54390. height: math.unit(13, "feet")
  54391. },
  54392. {
  54393. name: "Macro",
  54394. height: math.unit(60, "feet")
  54395. },
  54396. {
  54397. name: "Macro 2",
  54398. height: math.unit(100, "feet")
  54399. },
  54400. {
  54401. name: "Mega Macro",
  54402. height: math.unit(200, "feet")
  54403. },
  54404. ]
  54405. ))
  54406. characterMakers.push(() => makeCharacter(
  54407. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54408. {
  54409. front: {
  54410. height: math.unit(2.2, "m"),
  54411. weight: math.unit(300, "kg"),
  54412. name: "Front",
  54413. image: {
  54414. source: "./media/characters/hanna/front.svg",
  54415. extra: 1696/1502,
  54416. bottom: 206/1902
  54417. }
  54418. },
  54419. },
  54420. [
  54421. {
  54422. name: "Humanoid",
  54423. height: math.unit(2.2, "meters")
  54424. },
  54425. {
  54426. name: "Normal",
  54427. height: math.unit(4.8, "meters"),
  54428. default: true
  54429. },
  54430. ]
  54431. ))
  54432. characterMakers.push(() => makeCharacter(
  54433. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54434. {
  54435. front: {
  54436. height: math.unit(2.8, "meters"),
  54437. name: "Front",
  54438. image: {
  54439. source: "./media/characters/argo/front.svg",
  54440. extra: 731/518,
  54441. bottom: 84/815
  54442. }
  54443. },
  54444. },
  54445. [
  54446. {
  54447. name: "Normal",
  54448. height: math.unit(3, "meters"),
  54449. default: true
  54450. },
  54451. ]
  54452. ))
  54453. characterMakers.push(() => makeCharacter(
  54454. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54455. {
  54456. side: {
  54457. height: math.unit(3.8, "meters"),
  54458. name: "Side",
  54459. image: {
  54460. source: "./media/characters/sybil/side.svg",
  54461. extra: 382/361,
  54462. bottom: 25/407
  54463. }
  54464. },
  54465. },
  54466. [
  54467. {
  54468. name: "Normal",
  54469. height: math.unit(3.8, "meters"),
  54470. default: true
  54471. },
  54472. ]
  54473. ))
  54474. characterMakers.push(() => makeCharacter(
  54475. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54476. {
  54477. side: {
  54478. height: math.unit(6, "meters"),
  54479. name: "Side",
  54480. image: {
  54481. source: "./media/characters/plum/side.svg",
  54482. extra: 858/755,
  54483. bottom: 45/903
  54484. },
  54485. form: "taur",
  54486. default: true
  54487. },
  54488. back: {
  54489. height: math.unit(6.3, "meters"),
  54490. name: "Back",
  54491. image: {
  54492. source: "./media/characters/plum/back.svg",
  54493. extra: 887/813,
  54494. bottom: 32/919
  54495. },
  54496. form: "taur",
  54497. },
  54498. feral: {
  54499. height: math.unit(5.5, "meter"),
  54500. name: "Front",
  54501. image: {
  54502. source: "./media/characters/plum/feral.svg",
  54503. extra: 568/403,
  54504. bottom: 51/619
  54505. },
  54506. form: "feral",
  54507. default: true
  54508. },
  54509. head: {
  54510. height: math.unit(1.46, "meter"),
  54511. name: "Head",
  54512. image: {
  54513. source: "./media/characters/plum/head.svg"
  54514. },
  54515. form: "taur"
  54516. },
  54517. tailTop: {
  54518. height: math.unit(5.6, "meter"),
  54519. name: "Tail (Top)",
  54520. image: {
  54521. source: "./media/characters/plum/tail-top.svg"
  54522. },
  54523. form: "taur",
  54524. },
  54525. tailBottom: {
  54526. height: math.unit(5.6, "meter"),
  54527. name: "Tail (Bottom)",
  54528. image: {
  54529. source: "./media/characters/plum/tail-bottom.svg"
  54530. },
  54531. form: "taur",
  54532. },
  54533. feralHead: {
  54534. height: math.unit(2.56549521, "meter"),
  54535. name: "Head",
  54536. image: {
  54537. source: "./media/characters/plum/head.svg"
  54538. },
  54539. form: "feral"
  54540. },
  54541. feralTailTop: {
  54542. height: math.unit(5.44728435, "meter"),
  54543. name: "Tail (Top)",
  54544. image: {
  54545. source: "./media/characters/plum/tail-top.svg"
  54546. },
  54547. form: "feral",
  54548. },
  54549. feralTailBottom: {
  54550. height: math.unit(5.44728435, "meter"),
  54551. name: "Tail (Bottom)",
  54552. image: {
  54553. source: "./media/characters/plum/tail-bottom.svg"
  54554. },
  54555. form: "feral",
  54556. },
  54557. },
  54558. [
  54559. {
  54560. name: "Normal",
  54561. height: math.unit(6, "meters"),
  54562. default: true,
  54563. form: "taur"
  54564. },
  54565. {
  54566. name: "Normal",
  54567. height: math.unit(5.5, "meters"),
  54568. default: true,
  54569. form: "feral"
  54570. },
  54571. ],
  54572. {
  54573. "taur": {
  54574. name: "Taur",
  54575. default: true
  54576. },
  54577. "feral": {
  54578. name: "Feral",
  54579. },
  54580. }
  54581. ))
  54582. characterMakers.push(() => makeCharacter(
  54583. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54584. {
  54585. front: {
  54586. height: math.unit(6, "feet"),
  54587. weight: math.unit(115, "lb"),
  54588. name: "Front",
  54589. image: {
  54590. source: "./media/characters/celeste-kitsune/front.svg",
  54591. extra: 393/366,
  54592. bottom: 7/400
  54593. }
  54594. },
  54595. side: {
  54596. height: math.unit(6, "feet"),
  54597. weight: math.unit(115, "lb"),
  54598. name: "Side",
  54599. image: {
  54600. source: "./media/characters/celeste-kitsune/side.svg",
  54601. extra: 818/765,
  54602. bottom: 40/858
  54603. }
  54604. },
  54605. },
  54606. [
  54607. {
  54608. name: "Megamacro",
  54609. height: math.unit(1500, "miles"),
  54610. default: true
  54611. },
  54612. ]
  54613. ))
  54614. characterMakers.push(() => makeCharacter(
  54615. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54616. {
  54617. front: {
  54618. height: math.unit(8, "meters"),
  54619. name: "Front",
  54620. image: {
  54621. source: "./media/characters/io/front.svg",
  54622. extra: 865/722,
  54623. bottom: 58/923
  54624. }
  54625. },
  54626. back: {
  54627. height: math.unit(8, "meters"),
  54628. name: "Back",
  54629. image: {
  54630. source: "./media/characters/io/back.svg",
  54631. extra: 920/776,
  54632. bottom: 42/962
  54633. }
  54634. },
  54635. head: {
  54636. height: math.unit(5.09, "meters"),
  54637. name: "Head",
  54638. image: {
  54639. source: "./media/characters/io/head.svg"
  54640. }
  54641. },
  54642. hand: {
  54643. height: math.unit(1.6, "meters"),
  54644. name: "Hand",
  54645. image: {
  54646. source: "./media/characters/io/hand.svg"
  54647. }
  54648. },
  54649. foot: {
  54650. height: math.unit(2.4, "meters"),
  54651. name: "Foot",
  54652. image: {
  54653. source: "./media/characters/io/foot.svg"
  54654. }
  54655. },
  54656. },
  54657. [
  54658. {
  54659. name: "Normal",
  54660. height: math.unit(8, "meters"),
  54661. default: true
  54662. },
  54663. ]
  54664. ))
  54665. characterMakers.push(() => makeCharacter(
  54666. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54667. {
  54668. side: {
  54669. height: math.unit(6 + 3/12, "feet"),
  54670. weight: math.unit(225, "lb"),
  54671. name: "Side",
  54672. image: {
  54673. source: "./media/characters/silas/side.svg",
  54674. extra: 703/653,
  54675. bottom: 23/726
  54676. },
  54677. extraAttributes: {
  54678. "pawLength": {
  54679. name: "Paw Length",
  54680. power: 1,
  54681. type: "length",
  54682. base: math.unit(12, "inches")
  54683. },
  54684. "pawWidth": {
  54685. name: "Paw Width",
  54686. power: 1,
  54687. type: "length",
  54688. base: math.unit(4.5, "inches")
  54689. },
  54690. "pawArea": {
  54691. name: "Paw Area",
  54692. power: 2,
  54693. type: "area",
  54694. base: math.unit(12 * 4.5, "inches^2")
  54695. },
  54696. }
  54697. },
  54698. },
  54699. [
  54700. {
  54701. name: "Normal",
  54702. height: math.unit(6 + 3/12, "feet"),
  54703. default: true
  54704. },
  54705. ]
  54706. ))
  54707. characterMakers.push(() => makeCharacter(
  54708. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54709. {
  54710. back: {
  54711. height: math.unit(1.6, "meters"),
  54712. weight: math.unit(150, "lb"),
  54713. name: "Back",
  54714. image: {
  54715. source: "./media/characters/zari/back.svg",
  54716. extra: 424/411,
  54717. bottom: 32/456
  54718. },
  54719. extraAttributes: {
  54720. "bladderCapacity": {
  54721. name: "Bladder Size",
  54722. power: 3,
  54723. type: "volume",
  54724. base: math.unit(500, "mL")
  54725. },
  54726. "bladderFlow": {
  54727. name: "Flow Rate",
  54728. power: 3,
  54729. type: "volume",
  54730. base: math.unit(25, "mL")
  54731. },
  54732. }
  54733. },
  54734. },
  54735. [
  54736. {
  54737. name: "Normal",
  54738. height: math.unit(1.6, "meters"),
  54739. default: true
  54740. },
  54741. ]
  54742. ))
  54743. characterMakers.push(() => makeCharacter(
  54744. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54745. {
  54746. front: {
  54747. height: math.unit(25, "feet"),
  54748. weight: math.unit(5, "tons"),
  54749. name: "Front",
  54750. image: {
  54751. source: "./media/characters/charlie-human/front.svg",
  54752. extra: 1870/1740,
  54753. bottom: 102/1972
  54754. },
  54755. extraAttributes: {
  54756. "dickLength": {
  54757. name: "Dick Length",
  54758. power: 1,
  54759. type: "length",
  54760. base: math.unit(9, "feet")
  54761. },
  54762. }
  54763. },
  54764. back: {
  54765. height: math.unit(25, "feet"),
  54766. weight: math.unit(5, "tons"),
  54767. name: "Back",
  54768. image: {
  54769. source: "./media/characters/charlie-human/back.svg",
  54770. extra: 1858/1733,
  54771. bottom: 105/1963
  54772. },
  54773. extraAttributes: {
  54774. "dickLength": {
  54775. name: "Dick Length",
  54776. power: 1,
  54777. type: "length",
  54778. base: math.unit(9, "feet")
  54779. },
  54780. }
  54781. },
  54782. },
  54783. [
  54784. {
  54785. name: "\"Normal\"",
  54786. height: math.unit(6 + 4/12, "feet")
  54787. },
  54788. {
  54789. name: "Big",
  54790. height: math.unit(25, "feet"),
  54791. default: true
  54792. },
  54793. ]
  54794. ))
  54795. characterMakers.push(() => makeCharacter(
  54796. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54797. {
  54798. front: {
  54799. height: math.unit(6 + 4/12, "feet"),
  54800. weight: math.unit(320, "lb"),
  54801. name: "Front",
  54802. image: {
  54803. source: "./media/characters/ookitsu/front.svg",
  54804. extra: 1160/976,
  54805. bottom: 38/1198
  54806. }
  54807. },
  54808. frontNsfw: {
  54809. height: math.unit(6 + 4/12, "feet"),
  54810. weight: math.unit(320, "lb"),
  54811. name: "Front (NSFW)",
  54812. image: {
  54813. source: "./media/characters/ookitsu/front-nsfw.svg",
  54814. extra: 1160/976,
  54815. bottom: 38/1198
  54816. }
  54817. },
  54818. back: {
  54819. height: math.unit(6 + 4/12, "feet"),
  54820. weight: math.unit(320, "lb"),
  54821. name: "Back",
  54822. image: {
  54823. source: "./media/characters/ookitsu/back.svg",
  54824. extra: 1030/975,
  54825. bottom: 70/1100
  54826. }
  54827. },
  54828. head: {
  54829. height: math.unit(1.79, "feet"),
  54830. name: "Head",
  54831. image: {
  54832. source: "./media/characters/ookitsu/head.svg"
  54833. }
  54834. },
  54835. hand: {
  54836. height: math.unit(0.92, "feet"),
  54837. name: "Hand",
  54838. image: {
  54839. source: "./media/characters/ookitsu/hand.svg"
  54840. }
  54841. },
  54842. tails: {
  54843. height: math.unit(3.3, "feet"),
  54844. name: "Tails",
  54845. image: {
  54846. source: "./media/characters/ookitsu/tails.svg"
  54847. }
  54848. },
  54849. dick: {
  54850. height: math.unit(1.10833, "feet"),
  54851. name: "Dick",
  54852. image: {
  54853. source: "./media/characters/ookitsu/dick.svg"
  54854. }
  54855. },
  54856. },
  54857. [
  54858. {
  54859. name: "Normal",
  54860. height: math.unit(6 + 4/12, "feet"),
  54861. default: true
  54862. },
  54863. {
  54864. name: "Macro",
  54865. height: math.unit(30, "feet")
  54866. },
  54867. ]
  54868. ))
  54869. characterMakers.push(() => makeCharacter(
  54870. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54871. {
  54872. anthroFront: {
  54873. height: math.unit(6, "feet"),
  54874. weight: math.unit(250, "lb"),
  54875. name: "Front",
  54876. image: {
  54877. source: "./media/characters/jhusky/anthro-front.svg",
  54878. extra: 474/439,
  54879. bottom: 7/481
  54880. },
  54881. form: "anthro",
  54882. default: true
  54883. },
  54884. taurSideSfw: {
  54885. height: math.unit(6 + 4/12, "feet"),
  54886. weight: math.unit(500, "lb"),
  54887. name: "Side (SFW)",
  54888. image: {
  54889. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54890. extra: 1741/1629,
  54891. bottom: 196/1937
  54892. },
  54893. form: "taur",
  54894. default: true
  54895. },
  54896. taurSideNsfw: {
  54897. height: math.unit(6 + 4/12, "feet"),
  54898. weight: math.unit(500, "lb"),
  54899. name: "Taur (NSFW)",
  54900. image: {
  54901. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54902. extra: 1741/1629,
  54903. bottom: 196/1937
  54904. },
  54905. form: "taur",
  54906. },
  54907. },
  54908. [
  54909. {
  54910. name: "Huge",
  54911. height: math.unit(500, "feet"),
  54912. form: "anthro"
  54913. },
  54914. {
  54915. name: "Macro",
  54916. height: math.unit(1000, "feet"),
  54917. default: true,
  54918. form: "anthro"
  54919. },
  54920. {
  54921. name: "Megamacro",
  54922. height: math.unit(10000, "feet"),
  54923. form: "anthro"
  54924. },
  54925. {
  54926. name: "Huge",
  54927. height: math.unit(528, "feet"),
  54928. form: "taur"
  54929. },
  54930. {
  54931. name: "Macro",
  54932. height: math.unit(1056, "feet"),
  54933. default: true,
  54934. form: "taur"
  54935. },
  54936. {
  54937. name: "Megamacro",
  54938. height: math.unit(10556, "feet"),
  54939. form: "taur"
  54940. },
  54941. ],
  54942. {
  54943. "anthro": {
  54944. name: "Anthro",
  54945. default: true
  54946. },
  54947. "taur": {
  54948. name: "Taur",
  54949. },
  54950. }
  54951. ))
  54952. characterMakers.push(() => makeCharacter(
  54953. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54954. {
  54955. front: {
  54956. height: math.unit(8, "feet"),
  54957. weight: math.unit(500, "lb"),
  54958. name: "Front",
  54959. image: {
  54960. source: "./media/characters/armail/front.svg",
  54961. extra: 1753/1669,
  54962. bottom: 155/1908
  54963. }
  54964. },
  54965. back: {
  54966. height: math.unit(8, "feet"),
  54967. weight: math.unit(500, "lb"),
  54968. name: "Back",
  54969. image: {
  54970. source: "./media/characters/armail/back.svg",
  54971. extra: 1872/1803,
  54972. bottom: 63/1935
  54973. }
  54974. },
  54975. },
  54976. [
  54977. {
  54978. name: "Micro",
  54979. height: math.unit(0.25, "feet")
  54980. },
  54981. {
  54982. name: "Normal",
  54983. height: math.unit(8, "feet"),
  54984. default: true
  54985. },
  54986. {
  54987. name: "Mini-macro",
  54988. height: math.unit(30, "feet")
  54989. },
  54990. {
  54991. name: "Macro",
  54992. height: math.unit(400, "feet")
  54993. },
  54994. {
  54995. name: "Mega-macro",
  54996. height: math.unit(6000, "feet")
  54997. },
  54998. ]
  54999. ))
  55000. characterMakers.push(() => makeCharacter(
  55001. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55002. {
  55003. front: {
  55004. height: math.unit(6 + 7/12, "feet"),
  55005. weight: math.unit(210, "lb"),
  55006. name: "Front",
  55007. image: {
  55008. source: "./media/characters/wilfred-t-buxton/front.svg",
  55009. extra: 1068/882,
  55010. bottom: 28/1096
  55011. }
  55012. },
  55013. },
  55014. [
  55015. {
  55016. name: "Normal",
  55017. height: math.unit(6 + 7/12, "feet"),
  55018. default: true
  55019. },
  55020. ]
  55021. ))
  55022. characterMakers.push(() => makeCharacter(
  55023. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55024. {
  55025. front: {
  55026. height: math.unit(5 + 2/12, "feet"),
  55027. weight: math.unit(120, "lb"),
  55028. name: "Front",
  55029. image: {
  55030. source: "./media/characters/leighton-marrow/front.svg",
  55031. extra: 441/409,
  55032. bottom: 37/478
  55033. }
  55034. },
  55035. },
  55036. [
  55037. {
  55038. name: "Normal",
  55039. height: math.unit(5 + 2/12, "feet"),
  55040. default: true
  55041. },
  55042. ]
  55043. ))
  55044. characterMakers.push(() => makeCharacter(
  55045. { name: "Licos", species: ["werewolf"], tags: ["anthro"] },
  55046. {
  55047. front: {
  55048. height: math.unit(4, "meters"),
  55049. weight: math.unit(1200, "kg"),
  55050. name: "Front",
  55051. image: {
  55052. source: "./media/characters/licos/front.svg",
  55053. extra: 1727/1604,
  55054. bottom: 101/1828
  55055. }
  55056. },
  55057. },
  55058. [
  55059. {
  55060. name: "Normal",
  55061. height: math.unit(4, "meters"),
  55062. default: true
  55063. },
  55064. ]
  55065. ))
  55066. characterMakers.push(() => makeCharacter(
  55067. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55068. {
  55069. front: {
  55070. height: math.unit(10 + 3/12, "feet"),
  55071. name: "Front",
  55072. image: {
  55073. source: "./media/characters/theo-monkey/front.svg",
  55074. extra: 1735/1658,
  55075. bottom: 73/1808
  55076. }
  55077. },
  55078. back: {
  55079. height: math.unit(10 + 3/12, "feet"),
  55080. name: "Back",
  55081. image: {
  55082. source: "./media/characters/theo-monkey/back.svg",
  55083. extra: 1742/1664,
  55084. bottom: 33/1775
  55085. }
  55086. },
  55087. head: {
  55088. height: math.unit(2.29, "feet"),
  55089. name: "Head",
  55090. image: {
  55091. source: "./media/characters/theo-monkey/head.svg"
  55092. }
  55093. },
  55094. handPalm: {
  55095. height: math.unit(1.73, "feet"),
  55096. name: "Hand (Palm)",
  55097. image: {
  55098. source: "./media/characters/theo-monkey/hand-palm.svg"
  55099. }
  55100. },
  55101. handBack: {
  55102. height: math.unit(1.63, "feet"),
  55103. name: "Hand (Back)",
  55104. image: {
  55105. source: "./media/characters/theo-monkey/hand-back.svg"
  55106. }
  55107. },
  55108. footSole: {
  55109. height: math.unit(2.15, "feet"),
  55110. name: "Foot (Sole)",
  55111. image: {
  55112. source: "./media/characters/theo-monkey/foot-sole.svg"
  55113. }
  55114. },
  55115. footSide: {
  55116. height: math.unit(1.6, "feet"),
  55117. name: "Foot (Side)",
  55118. image: {
  55119. source: "./media/characters/theo-monkey/foot-side.svg"
  55120. }
  55121. },
  55122. },
  55123. [
  55124. {
  55125. name: "Normal",
  55126. height: math.unit(10 + 3/12, "feet"),
  55127. default: true
  55128. },
  55129. ]
  55130. ))
  55131. characterMakers.push(() => makeCharacter(
  55132. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55133. {
  55134. front: {
  55135. height: math.unit(11, "feet"),
  55136. weight: math.unit(3000, "lb"),
  55137. preyCapacity: math.unit(10, "people"),
  55138. name: "Front",
  55139. image: {
  55140. source: "./media/characters/brook/front.svg",
  55141. extra: 909/835,
  55142. bottom: 108/1017
  55143. }
  55144. },
  55145. back: {
  55146. height: math.unit(11, "feet"),
  55147. weight: math.unit(3000, "lb"),
  55148. preyCapacity: math.unit(10, "people"),
  55149. name: "Back",
  55150. image: {
  55151. source: "./media/characters/brook/back.svg",
  55152. extra: 976/916,
  55153. bottom: 34/1010
  55154. }
  55155. },
  55156. backAlt: {
  55157. height: math.unit(11, "feet"),
  55158. weight: math.unit(3000, "lb"),
  55159. preyCapacity: math.unit(10, "people"),
  55160. name: "Back (Alt)",
  55161. image: {
  55162. source: "./media/characters/brook/back-alt.svg",
  55163. extra: 1283/1213,
  55164. bottom: 35/1318
  55165. }
  55166. },
  55167. bust: {
  55168. height: math.unit(9.0859030837, "feet"),
  55169. weight: math.unit(3000, "lb"),
  55170. preyCapacity: math.unit(10, "people"),
  55171. name: "Bust",
  55172. image: {
  55173. source: "./media/characters/brook/bust.svg",
  55174. extra: 2043/1923,
  55175. bottom: 0/2043
  55176. }
  55177. },
  55178. },
  55179. [
  55180. {
  55181. name: "Small",
  55182. height: math.unit(11, "feet"),
  55183. default: true
  55184. },
  55185. {
  55186. name: "Towering",
  55187. height: math.unit(5, "km")
  55188. },
  55189. {
  55190. name: "Enormous",
  55191. height: math.unit(25, "earths")
  55192. },
  55193. ]
  55194. ))
  55195. characterMakers.push(() => makeCharacter(
  55196. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55197. {
  55198. front: {
  55199. height: math.unit(4, "feet"),
  55200. weight: math.unit(150, "lb"),
  55201. name: "Front",
  55202. image: {
  55203. source: "./media/characters/squishi/front.svg",
  55204. extra: 1428/1271,
  55205. bottom: 30/1458
  55206. },
  55207. extraAttributes: {
  55208. "pawSize": {
  55209. name: "Paw Size",
  55210. power: 1,
  55211. type: "length",
  55212. base: math.unit(14, "ShoeSizeMensUS"),
  55213. defaultUnit: "ShoeSizeMensUS"
  55214. },
  55215. }
  55216. },
  55217. side: {
  55218. height: math.unit(4, "feet"),
  55219. weight: math.unit(150, "lb"),
  55220. name: "Side",
  55221. image: {
  55222. source: "./media/characters/squishi/side.svg",
  55223. extra: 1428/1271,
  55224. bottom: 30/1458
  55225. },
  55226. extraAttributes: {
  55227. "pawSize": {
  55228. name: "Paw Size",
  55229. power: 1,
  55230. type: "length",
  55231. base: math.unit(14, "ShoeSizeMensUS"),
  55232. defaultUnit: "ShoeSizeMensUS"
  55233. },
  55234. }
  55235. },
  55236. back: {
  55237. height: math.unit(4, "feet"),
  55238. weight: math.unit(150, "lb"),
  55239. name: "Back",
  55240. image: {
  55241. source: "./media/characters/squishi/back.svg",
  55242. extra: 1428/1271,
  55243. bottom: 30/1458
  55244. },
  55245. extraAttributes: {
  55246. "pawSize": {
  55247. name: "Paw Size",
  55248. power: 1,
  55249. type: "length",
  55250. base: math.unit(14, "ShoeSizeMensUS"),
  55251. defaultUnit: "ShoeSizeMensUS"
  55252. },
  55253. }
  55254. },
  55255. },
  55256. [
  55257. {
  55258. name: "Normal",
  55259. height: math.unit(4, "feet"),
  55260. default: true
  55261. },
  55262. ]
  55263. ))
  55264. characterMakers.push(() => makeCharacter(
  55265. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55266. {
  55267. front: {
  55268. height: math.unit(7 + 8/12, "feet"),
  55269. weight: math.unit(333, "lb"),
  55270. name: "Front",
  55271. image: {
  55272. source: "./media/characters/vincent-vasroc/front.svg",
  55273. extra: 1962/1860,
  55274. bottom: 41/2003
  55275. }
  55276. },
  55277. back: {
  55278. height: math.unit(7 + 8/12, "feet"),
  55279. weight: math.unit(333, "lb"),
  55280. name: "Back",
  55281. image: {
  55282. source: "./media/characters/vincent-vasroc/back.svg",
  55283. extra: 1952/1815,
  55284. bottom: 33/1985
  55285. }
  55286. },
  55287. paw: {
  55288. height: math.unit(1.24, "feet"),
  55289. name: "Paw",
  55290. image: {
  55291. source: "./media/characters/vincent-vasroc/paw.svg"
  55292. }
  55293. },
  55294. ear: {
  55295. height: math.unit(0.75, "feet"),
  55296. name: "Ear",
  55297. image: {
  55298. source: "./media/characters/vincent-vasroc/ear.svg"
  55299. }
  55300. },
  55301. },
  55302. [
  55303. {
  55304. name: "Nano",
  55305. height: math.unit(92, "micrometers")
  55306. },
  55307. {
  55308. name: "Normal",
  55309. height: math.unit(7 + 8/12, "feet"),
  55310. default: true
  55311. },
  55312. ]
  55313. ))
  55314. characterMakers.push(() => makeCharacter(
  55315. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55316. {
  55317. frontNsfw: {
  55318. height: math.unit(40, "feet"),
  55319. weight: math.unit(58, "tons"),
  55320. name: "Front (NSFW)",
  55321. image: {
  55322. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55323. extra: 1265/965,
  55324. bottom: 155/1420
  55325. }
  55326. },
  55327. frontSfw: {
  55328. height: math.unit(40, "feet"),
  55329. weight: math.unit(58, "tons"),
  55330. name: "Front (SFW)",
  55331. image: {
  55332. source: "./media/characters/ru-kahn/front-sfw.svg",
  55333. extra: 1265/965,
  55334. bottom: 80/1345
  55335. }
  55336. },
  55337. },
  55338. [
  55339. {
  55340. name: "Small",
  55341. height: math.unit(4, "feet")
  55342. },
  55343. {
  55344. name: "Normal",
  55345. height: math.unit(40, "feet"),
  55346. default: true
  55347. },
  55348. {
  55349. name: "Macro",
  55350. height: math.unit(400, "feet")
  55351. },
  55352. ]
  55353. ))
  55354. characterMakers.push(() => makeCharacter(
  55355. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55356. {
  55357. frontNude: {
  55358. height: math.unit(6 + 5/12, "feet"),
  55359. name: "Front (Nude)",
  55360. image: {
  55361. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55362. extra: 1369/1366,
  55363. bottom: 68/1437
  55364. }
  55365. },
  55366. frontDressed: {
  55367. height: math.unit(6 + 5/12, "feet"),
  55368. name: "Front (Dressed)",
  55369. image: {
  55370. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55371. extra: 1369/1366,
  55372. bottom: 68/1437
  55373. }
  55374. },
  55375. },
  55376. [
  55377. {
  55378. name: "Normal",
  55379. height: math.unit(6 + 5/12, "feet"),
  55380. default: true
  55381. },
  55382. {
  55383. name: "Maximum",
  55384. height: math.unit(1930, "feet")
  55385. },
  55386. ]
  55387. ))
  55388. characterMakers.push(() => makeCharacter(
  55389. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55390. {
  55391. front: {
  55392. height: math.unit(5 + 6/12, "feet"),
  55393. name: "Front",
  55394. image: {
  55395. source: "./media/characters/kaja/front.svg",
  55396. extra: 1874/1514,
  55397. bottom: 117/1991
  55398. }
  55399. },
  55400. },
  55401. [
  55402. {
  55403. name: "Normal",
  55404. height: math.unit(5 + 6/12, "feet"),
  55405. default: true
  55406. },
  55407. ]
  55408. ))
  55409. characterMakers.push(() => makeCharacter(
  55410. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55411. {
  55412. front: {
  55413. height: math.unit(5 + 9/12, "feet"),
  55414. weight: math.unit(200, "lb"),
  55415. name: "Front",
  55416. image: {
  55417. source: "./media/characters/mark-smith/front.svg",
  55418. extra: 1004/943,
  55419. bottom: 58/1062
  55420. }
  55421. },
  55422. back: {
  55423. height: math.unit(5 + 9/12, "feet"),
  55424. weight: math.unit(200, "lb"),
  55425. name: "Back",
  55426. image: {
  55427. source: "./media/characters/mark-smith/back.svg",
  55428. extra: 1023/953,
  55429. bottom: 24/1047
  55430. }
  55431. },
  55432. head: {
  55433. height: math.unit(1.82, "feet"),
  55434. name: "Head",
  55435. image: {
  55436. source: "./media/characters/mark-smith/head.svg"
  55437. }
  55438. },
  55439. hand: {
  55440. height: math.unit(1.4, "feet"),
  55441. name: "Hand",
  55442. image: {
  55443. source: "./media/characters/mark-smith/hand.svg"
  55444. }
  55445. },
  55446. paw: {
  55447. height: math.unit(1.69, "feet"),
  55448. name: "Paw",
  55449. image: {
  55450. source: "./media/characters/mark-smith/paw.svg"
  55451. }
  55452. },
  55453. },
  55454. [
  55455. {
  55456. name: "Micro",
  55457. height: math.unit(0.25, "inches")
  55458. },
  55459. {
  55460. name: "Normal",
  55461. height: math.unit(5 + 9/12, "feet"),
  55462. default: true
  55463. },
  55464. {
  55465. name: "Macro",
  55466. height: math.unit(500, "feet")
  55467. },
  55468. ]
  55469. ))
  55470. characterMakers.push(() => makeCharacter(
  55471. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55472. {
  55473. frontNude: {
  55474. height: math.unit(6, "feet"),
  55475. name: "Front (Nude)",
  55476. image: {
  55477. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55478. extra: 1384/1321,
  55479. bottom: 57/1441
  55480. }
  55481. },
  55482. frontDressed: {
  55483. height: math.unit(6, "feet"),
  55484. name: "Front (Dressed)",
  55485. image: {
  55486. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55487. extra: 1384/1321,
  55488. bottom: 57/1441
  55489. }
  55490. },
  55491. },
  55492. [
  55493. {
  55494. name: "Normal",
  55495. height: math.unit(6, "feet"),
  55496. default: true
  55497. },
  55498. {
  55499. name: "Maximum",
  55500. height: math.unit(1776, "feet")
  55501. },
  55502. ]
  55503. ))
  55504. characterMakers.push(() => makeCharacter(
  55505. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55506. {
  55507. front: {
  55508. height: math.unit(2 + 4/12, "feet"),
  55509. weight: math.unit(350, "lb"),
  55510. name: "Front",
  55511. image: {
  55512. source: "./media/characters/devos/front.svg",
  55513. extra: 958/852,
  55514. bottom: 143/1101
  55515. }
  55516. },
  55517. },
  55518. [
  55519. {
  55520. name: "Base",
  55521. height: math.unit(2 + 4/12, "feet"),
  55522. default: true
  55523. },
  55524. ]
  55525. ))
  55526. characterMakers.push(() => makeCharacter(
  55527. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55528. {
  55529. front: {
  55530. height: math.unit(9 + 2/12, "feet"),
  55531. name: "Front",
  55532. image: {
  55533. source: "./media/characters/hiveheart/front.svg",
  55534. extra: 394/364,
  55535. bottom: 65/459
  55536. }
  55537. },
  55538. back: {
  55539. height: math.unit(9 + 2/12, "feet"),
  55540. name: "Back",
  55541. image: {
  55542. source: "./media/characters/hiveheart/back.svg",
  55543. extra: 374/357,
  55544. bottom: 63/437
  55545. }
  55546. },
  55547. },
  55548. [
  55549. {
  55550. name: "Base",
  55551. height: math.unit(9 + 2/12, "feet"),
  55552. default: true
  55553. },
  55554. ]
  55555. ))
  55556. characterMakers.push(() => makeCharacter(
  55557. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55558. {
  55559. front: {
  55560. height: math.unit(2.5, "inches"),
  55561. weight: math.unit(0.6, "oz"),
  55562. name: "Front",
  55563. image: {
  55564. source: "./media/characters/bryn/front.svg",
  55565. extra: 1480/1205,
  55566. bottom: 27/1507
  55567. }
  55568. },
  55569. back: {
  55570. height: math.unit(2.5, "inches"),
  55571. weight: math.unit(0.6, "oz"),
  55572. name: "Back",
  55573. image: {
  55574. source: "./media/characters/bryn/back.svg",
  55575. extra: 1475/1201,
  55576. bottom: 39/1514
  55577. }
  55578. },
  55579. foot: {
  55580. height: math.unit(0.4, "inches"),
  55581. name: "Foot",
  55582. image: {
  55583. source: "./media/characters/bryn/foot.svg"
  55584. }
  55585. },
  55586. },
  55587. [
  55588. {
  55589. name: "Normal",
  55590. height: math.unit(2.5, "inches"),
  55591. default: true
  55592. },
  55593. ]
  55594. ))
  55595. characterMakers.push(() => makeCharacter(
  55596. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55597. {
  55598. side: {
  55599. height: math.unit(7, "feet"),
  55600. weight: math.unit(657, "kg"),
  55601. name: "Side",
  55602. image: {
  55603. source: "./media/characters/delta/side.svg",
  55604. extra: 781/212,
  55605. bottom: 7/788
  55606. },
  55607. extraAttributes: {
  55608. "wingspan": {
  55609. name: "Wingspan",
  55610. power: 1,
  55611. type: "length",
  55612. base: math.unit(48, "feet")
  55613. },
  55614. "length": {
  55615. name: "Length",
  55616. power: 1,
  55617. type: "length",
  55618. base: math.unit(21, "feet")
  55619. },
  55620. "pawSize": {
  55621. name: "Paw Size",
  55622. power: 2,
  55623. type: "area",
  55624. base: math.unit(1.5*1.4, "feet^2")
  55625. },
  55626. }
  55627. },
  55628. },
  55629. [
  55630. {
  55631. name: "Normal",
  55632. height: math.unit(6, "feet"),
  55633. default: true
  55634. },
  55635. ]
  55636. ))
  55637. characterMakers.push(() => makeCharacter(
  55638. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55639. {
  55640. front: {
  55641. height: math.unit(6, "feet"),
  55642. name: "Front",
  55643. image: {
  55644. source: "./media/characters/pyrow/front.svg",
  55645. extra: 513/486,
  55646. bottom: 14/527
  55647. }
  55648. },
  55649. frontWing: {
  55650. height: math.unit(6, "feet"),
  55651. name: "Front (Wing)",
  55652. image: {
  55653. source: "./media/characters/pyrow/front-wing.svg",
  55654. extra: 539/383,
  55655. bottom: 20/559
  55656. }
  55657. },
  55658. back: {
  55659. height: math.unit(6, "feet"),
  55660. name: "Back",
  55661. image: {
  55662. source: "./media/characters/pyrow/back.svg",
  55663. extra: 500/473,
  55664. bottom: 9/509
  55665. }
  55666. },
  55667. },
  55668. [
  55669. {
  55670. name: "Normal",
  55671. height: math.unit(6, "feet"),
  55672. default: true
  55673. },
  55674. ]
  55675. ))
  55676. characterMakers.push(() => makeCharacter(
  55677. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55678. {
  55679. front: {
  55680. height: math.unit(5, "meters"),
  55681. weight: math.unit(3, "tonnes"),
  55682. name: "Front",
  55683. image: {
  55684. source: "./media/characters/velikan/front.svg",
  55685. extra: 867/744,
  55686. bottom: 71/938
  55687. },
  55688. extraAttributes: {
  55689. "shoeSize": {
  55690. name: "Shoe Size",
  55691. power: 1,
  55692. type: "length",
  55693. base: math.unit(135, "ShoeSizeUK"),
  55694. defaultUnit: "ShoeSizeUK"
  55695. },
  55696. }
  55697. },
  55698. },
  55699. [
  55700. {
  55701. name: "Normal",
  55702. height: math.unit(5, "meters"),
  55703. default: true
  55704. },
  55705. {
  55706. name: "Macro",
  55707. height: math.unit(1, "km")
  55708. },
  55709. {
  55710. name: "Mega Macro",
  55711. height: math.unit(100, "km")
  55712. },
  55713. {
  55714. name: "Giga Macro",
  55715. height: math.unit(2, "megameters")
  55716. },
  55717. {
  55718. name: "Planetary",
  55719. height: math.unit(22, "megameters")
  55720. },
  55721. {
  55722. name: "Solar",
  55723. height: math.unit(8, "gigameters")
  55724. },
  55725. {
  55726. name: "Cosmic",
  55727. height: math.unit(10, "zettameters")
  55728. },
  55729. {
  55730. name: "Omni",
  55731. height: math.unit(9e260, "multiverses")
  55732. },
  55733. ]
  55734. ))
  55735. characterMakers.push(() => makeCharacter(
  55736. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55737. {
  55738. front: {
  55739. height: math.unit(4 + 3/12, "feet"),
  55740. weight: math.unit(90, "lb"),
  55741. name: "Front",
  55742. image: {
  55743. source: "./media/characters/sabiki/front.svg",
  55744. extra: 1662/1423,
  55745. bottom: 65/1727
  55746. }
  55747. },
  55748. },
  55749. [
  55750. {
  55751. name: "Normal",
  55752. height: math.unit(4 + 3/12, "feet"),
  55753. default: true
  55754. },
  55755. ]
  55756. ))
  55757. characterMakers.push(() => makeCharacter(
  55758. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55759. {
  55760. frontSfw: {
  55761. height: math.unit(2, "mm"),
  55762. name: "Front (SFW)",
  55763. image: {
  55764. source: "./media/characters/carmel/front-sfw.svg",
  55765. extra: 1131/1006,
  55766. bottom: 66/1197
  55767. }
  55768. },
  55769. frontNsfw: {
  55770. height: math.unit(2, "mm"),
  55771. name: "Front (NSFW)",
  55772. image: {
  55773. source: "./media/characters/carmel/front-nsfw.svg",
  55774. extra: 1131/1006,
  55775. bottom: 66/1197
  55776. }
  55777. },
  55778. foot: {
  55779. height: math.unit(0.3, "mm"),
  55780. name: "Foot",
  55781. image: {
  55782. source: "./media/characters/carmel/foot.svg"
  55783. }
  55784. },
  55785. tongue: {
  55786. height: math.unit(0.71, "mm"),
  55787. name: "Tongue",
  55788. image: {
  55789. source: "./media/characters/carmel/tongue.svg"
  55790. }
  55791. },
  55792. dick: {
  55793. height: math.unit(0.085, "mm"),
  55794. name: "Dick",
  55795. image: {
  55796. source: "./media/characters/carmel/dick.svg"
  55797. }
  55798. },
  55799. },
  55800. [
  55801. {
  55802. name: "Micro",
  55803. height: math.unit(2, "mm"),
  55804. default: true
  55805. },
  55806. {
  55807. name: "Normal",
  55808. height: math.unit(4 + 8/12, "feet")
  55809. },
  55810. {
  55811. name: "Mega Macro",
  55812. height: math.unit(250, "feet")
  55813. },
  55814. {
  55815. name: "BIGGER",
  55816. height: math.unit(1000, "feet")
  55817. },
  55818. {
  55819. name: "BIGGEST",
  55820. height: math.unit(2, "miles")
  55821. },
  55822. ]
  55823. ))
  55824. characterMakers.push(() => makeCharacter(
  55825. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55826. {
  55827. front: {
  55828. height: math.unit(6.5, "feet"),
  55829. weight: math.unit(198, "lb"),
  55830. name: "Front",
  55831. image: {
  55832. source: "./media/characters/tamani/anthro.svg",
  55833. extra: 930/890,
  55834. bottom: 34/964
  55835. },
  55836. form: "anthro",
  55837. default: true
  55838. },
  55839. side: {
  55840. height: math.unit(6, "feet"),
  55841. weight: math.unit(198*2, "lb"),
  55842. name: "Side",
  55843. image: {
  55844. source: "./media/characters/tamani/feral.svg",
  55845. extra: 559/519,
  55846. bottom: 43/602
  55847. },
  55848. form: "feral"
  55849. },
  55850. },
  55851. [
  55852. {
  55853. name: "Normal",
  55854. height: math.unit(6.5, "feet"),
  55855. default: true,
  55856. form: "anthro"
  55857. },
  55858. {
  55859. name: "Normal",
  55860. height: math.unit(6, "feet"),
  55861. default: true,
  55862. form: "feral"
  55863. },
  55864. ],
  55865. {
  55866. "anthro": {
  55867. name: "Anthro",
  55868. default: true
  55869. },
  55870. "feral": {
  55871. name: "Feral",
  55872. },
  55873. }
  55874. ))
  55875. characterMakers.push(() => makeCharacter(
  55876. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  55877. {
  55878. front: {
  55879. height: math.unit(4 + 1/12, "feet"),
  55880. weight: math.unit(114, "lb"),
  55881. name: "Front",
  55882. image: {
  55883. source: "./media/characters/dex/front.svg",
  55884. extra: 787/680,
  55885. bottom: 18/805
  55886. }
  55887. },
  55888. side: {
  55889. height: math.unit(4 + 1/12, "feet"),
  55890. weight: math.unit(114, "lb"),
  55891. name: "Side",
  55892. image: {
  55893. source: "./media/characters/dex/side.svg",
  55894. extra: 785/680,
  55895. bottom: 12/797
  55896. }
  55897. },
  55898. back: {
  55899. height: math.unit(4 + 1/12, "feet"),
  55900. weight: math.unit(114, "lb"),
  55901. name: "Back",
  55902. image: {
  55903. source: "./media/characters/dex/back.svg",
  55904. extra: 785/681,
  55905. bottom: 17/802
  55906. }
  55907. },
  55908. loungewear: {
  55909. height: math.unit(4 + 1/12, "feet"),
  55910. weight: math.unit(114, "lb"),
  55911. name: "Loungewear",
  55912. image: {
  55913. source: "./media/characters/dex/loungewear.svg",
  55914. extra: 787/680,
  55915. bottom: 18/805
  55916. }
  55917. },
  55918. workout: {
  55919. height: math.unit(4 + 1/12, "feet"),
  55920. weight: math.unit(114, "lb"),
  55921. name: "Workout",
  55922. image: {
  55923. source: "./media/characters/dex/workout.svg",
  55924. extra: 787/680,
  55925. bottom: 18/805
  55926. }
  55927. },
  55928. schoolUniform: {
  55929. height: math.unit(4 + 1/12, "feet"),
  55930. weight: math.unit(114, "lb"),
  55931. name: "School-uniform",
  55932. image: {
  55933. source: "./media/characters/dex/school-uniform.svg",
  55934. extra: 787/680,
  55935. bottom: 18/805
  55936. }
  55937. },
  55938. maw: {
  55939. height: math.unit(0.55, "feet"),
  55940. name: "Maw",
  55941. image: {
  55942. source: "./media/characters/dex/maw.svg"
  55943. }
  55944. },
  55945. paw: {
  55946. height: math.unit(0.87, "feet"),
  55947. name: "Paw",
  55948. image: {
  55949. source: "./media/characters/dex/paw.svg"
  55950. }
  55951. },
  55952. bust: {
  55953. height: math.unit(1.67, "feet"),
  55954. name: "Bust",
  55955. image: {
  55956. source: "./media/characters/dex/bust.svg"
  55957. }
  55958. },
  55959. },
  55960. [
  55961. {
  55962. name: "Normal",
  55963. height: math.unit(4 + 1/12, "feet"),
  55964. default: true
  55965. },
  55966. ]
  55967. ))
  55968. //characters
  55969. function makeCharacters() {
  55970. const results = [];
  55971. characterMakers.forEach(character => {
  55972. results.push(character());
  55973. });
  55974. return results;
  55975. }